diff --git a/Sklearn/sklearn-cookbook-zh/0 概述.md b/Sklearn/sklearn-cookbook-zh/0 概述.md index 7bcb8ca1..c059c535 100644 --- a/Sklearn/sklearn-cookbook-zh/0 概述.md +++ b/Sklearn/sklearn-cookbook-zh/0 概述.md @@ -47,7 +47,7 @@ y = iris.target # 获得样本label ![](image/2021-03-21-17-19-54.png) -``` +```py from sklearn.datasets.samples_generator import make_classification X, y = make_classification(n_samples=6, n_features=5, n_informative=2, diff --git a/Sklearn/sklearn-cookbook-zh/test.py b/Sklearn/sklearn-cookbook-zh/test.py new file mode 100644 index 00000000..447e7c53 --- /dev/null +++ b/Sklearn/sklearn-cookbook-zh/test.py @@ -0,0 +1,19 @@ +#%% 加载数据 + +from sklearn import datasets +boston = datasets.load_boston() +X,y = boston.data,boston.target + +X.shape +# %% 标准归一化 +print(X[:,:3].mean(axis=0)) +print(X[:,:3].std(axis=0)) + + +from sklearn import preprocessing + +my_scaler = preprocessing.StandardScaler() +my_scaler.fit(X[:,:3]) +result = my_scaler.transform(X[:,:3]) +# 值特别小,近似为0 +print(result[:,:3].mean(axis=0)) diff --git a/Sklearn/sklearn-doc-zh/examples/book.json b/Sklearn/sklearn-doc-zh/examples/book.json deleted file mode 100644 index 7c4e8b00..00000000 --- a/Sklearn/sklearn-doc-zh/examples/book.json +++ /dev/null @@ -1,176 +0,0 @@ -{ - "title" : "sklearn 中文文档", - "author" : "ApacheCN", - "description" : "sklearn 中文文档: 教程和文档", - "language" : "zh-hans", - "plugins": [ - "github", - "github-buttons", - "-sharing", - "insert-logo", - "sharing-plus", - "back-to-top-button", - "code", - "copy-code-button", - "katex", - "pageview-count", - "edit-link", - "emphasize", - "alerts", - "auto-scroll-table", - "popup", - "hide-element", - "page-toc-button", - "tbfed-pagefooter", - "sitemap", - "advanced-emoji", - "expandable-chapters", - "splitter", - "search-pro" - ], - "pluginsConfig": { - "github": { - "url": "https://github.com/apachecn/sklearn-doc-zh" - }, - "github-buttons": { - "buttons": [ - { - "user": "apachecn", - "repo": "sklearn-doc-zh", - "type": "star", - "count": true, - "size": "small" - } - ] - }, - "insert-logo": { - "url": "http://data.apachecn.org/img/logo.jpg", - "style": "background: none; max-height: 150px; min-height: 150px" - }, - "hide-element": { - "elements": [".gitbook-link"] - }, - "edit-link": { - "base": "https://github.com/apachecn/sklearn-doc-zh/blob/master/docs/examples", - "label": "编辑本页" - }, - "sharing": { - "qzone": true, - "weibo": true, - "twitter": false, - "facebook": false, - "google": false, - "qq": false, - "line": false, - "whatsapp": false, - "douban": false, - "all": [ - "qq", "douban", "facebook", "google", "linkedin", "twitter", "weibo", "whatsapp" - ] - }, - "page-toc-button": { - "maxTocDepth": 4, - "minTocSize": 4 - }, - "tbfed-pagefooter": { - "copyright":"Copyright © ibooker.org.cn 2019", - "modify_label": "该文件修订时间: ", - "modify_format": "YYYY-MM-DD HH:mm:ss" - }, - "sitemap": { - "hostname": "http://sklearn.apachecn.org" - } - }, - "my_links" : { - "sidebar" : { - "Home" : "https://www.baidu.com" - } - }, - "my_plugins": [ - "donate", - "todo", - "-lunr", - "-search", - "expandable-chapters-small", - "chapter-fold", - "expandable-chapters", - "expandable-chapters-small", - "back-to-top-button", - "ga", - "baidu", - "sitemap", - "tbfed-pagefooter", - "advanced-emoji", - "sectionx", - "page-treeview", - "simple-page-toc", - "ancre-navigation", - "theme-apachecn@git+https://github.com/apachecn/theme-apachecn#HEAD", - "pagefooter-apachecn@git+https://github.com/apachecn/gitbook-plugin-pagefooter-apachecn#HEAD" - ], - "my_pluginsConfig": { - "github-buttons": { - "buttons": [ - { - "user": "apachecn", - "repo": "sklearn-doc-zh", - "type": "star", - "count": true, - "size": "small" - }, - { - "user": "apachecn", - "width": "160", - "type": "follow", - "count": true, - "size": "small" - } - ] - }, - "ignores": ["node_modules"], - "simple-page-toc": { - "maxDepth": 3, - "skipFirstH1": true - }, - "page-toc-button": { - "maxTocDepth": 2, - "minTocSize": 2 - }, - "page-treeview": { - "copyright": "Copyright © aleen42", - "minHeaderCount": "2", - "minHeaderDeep": "2" - }, - "donate": { - "wechat": "微信收款的二维码URL", - "alipay": "支付宝收款的二维码URL", - "title": "", - "button": "赏", - "alipayText": "支付宝打赏", - "wechatText": "微信打赏" - }, - "page-copyright": { - "description": "modified at", - "signature": "你的签名", - "wisdom": "Designer, Frontend Developer & overall web enthusiast", - "format": "YYYY-MM-dd hh:mm:ss", - "copyright": "Copyright © 你的名字", - "timeColor": "#666", - "copyrightColor": "#666", - "utcOffset": "8", - "style": "normal", - "noPowered": false - }, - "ga": { - "token": "UA-102475051-10" - }, - "baidu": { - "token": "75439e2cbd22bdd813226000e9dcc12f" - }, - "pagefooter-apachecn": { - "copyright":"Copyright © ibooker.org.cn 2019", - "modify_label": "该文件修订时间: ", - "modify_format": "YYYY-MM-DD HH:mm:ss" - } - } -} diff --git a/Tensorflow/TensorFlow2.0/002.md b/Tensorflow/TensorFlow2.0/002.md deleted file mode 100644 index 194ca390..00000000 --- a/Tensorflow/TensorFlow2.0/002.md +++ /dev/null @@ -1,69 +0,0 @@ -# 初学者的 TensorFlow 2.0 教程 - -> 原文:[https://tensorflow.google.cn/tutorials/quickstart/beginner](https://tensorflow.google.cn/tutorials/quickstart/beginner) - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -这是一个 [Google Colaboratory](https://colab.research.google.com/notebooks/welcome.ipynb) 笔记本文件。 Python 程序可以直接在浏览器中运行,这是学习 Tensorflow 的绝佳方式。想要学习该教程,请点击此页面顶部的按钮,在 Google Colab 中运行笔记本。 - -1. 在 Colab 中, 连接到 Python 运行环境: 在菜单条的右上方, 选择 *CONNECT*。 -2. 运行所有的代码块: 选择 *Runtime* > *Run all*。 - -下载并安装 TensorFlow 2.0 测试版包。将 TensorFlow 载入你的程序: - -```py -# 安装 TensorFlow - -import tensorflow as tf -``` - -载入并准备好 [MNIST 数据集](http://yann.lecun.com/exdb/mnist/)。将样本从整数转换为浮点数: - -```py -mnist = tf.keras.datasets.mnist - -(x_train, y_train), (x_test, y_test) = mnist.load_data() -x_train, x_test = x_train / 255.0, x_test / 255.0 -``` - -将模型的各层堆叠起来,以搭建 [`tf.keras.Sequential`](https://tensorflow.google.cn/api_docs/python/tf/keras/Sequential) 模型。为训练选择优化器和损失函数: - -```py -model = tf.keras.models.Sequential([ - tf.keras.layers.Flatten(input_shape=(28, 28)), - tf.keras.layers.Dense(128, activation='relu'), - tf.keras.layers.Dropout(0.2), - tf.keras.layers.Dense(10, activation='softmax') -]) - -model.compile(optimizer='adam', - loss='sparse_categorical_crossentropy', - metrics=['accuracy']) -``` - -训练并验证模型: - -```py -model.fit(x_train, y_train, epochs=5) - -model.evaluate(x_test, y_test, verbose=2) -``` - -```py -Epoch 1/5 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.2962 - accuracy: 0.9155 -Epoch 2/5 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.1420 - accuracy: 0.9581 -Epoch 3/5 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.1064 - accuracy: 0.9672 -Epoch 4/5 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.0885 - accuracy: 0.9730 -Epoch 5/5 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.0749 - accuracy: 0.9765 -313/313 - 0s - loss: 0.0748 - accuracy: 0.9778 - -[0.07484959065914154, 0.9778000116348267] - -``` - -现在,这个照片分类器的准确度已经达到 98%。想要了解更多,请阅读 [TensorFlow 教程](https://tensorflow.google.cn/tutorials/)。 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/003.md b/Tensorflow/TensorFlow2.0/003.md deleted file mode 100644 index d52949a4..00000000 --- a/Tensorflow/TensorFlow2.0/003.md +++ /dev/null @@ -1,148 +0,0 @@ -# 针对专业人员的 TensorFlow 2.0 入门 - -> 原文:[https://tensorflow.google.cn/tutorials/quickstart/advanced](https://tensorflow.google.cn/tutorials/quickstart/advanced) - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -这是一个 [Google Colaboratory](https://colab.research.google.com/notebooks/welcome.ipynb) 笔记本(notebook)文件。Python 程序直接在浏览器中运行——这是一种学习和使用 Tensorflow 的好方法。要学习本教程,请单击本页顶部按钮,在 Google Colab 中运行笔记本(notebook). - -1. 在 Colab 中,连接到 Python 运行时:在菜单栏右上角,选择*连接(CONNECT)*。 -2. 运行所有笔记本(notebook)代码单元格:选择*运行时(Runtime)* > *运行所有(Run all)*。 - -下载并安装 TensorFlow 2.0 Beta 软件包: - -将 Tensorflow 导入您的程序: - -```py -import tensorflow as tf - -from tensorflow.keras.layers import Dense, Flatten, Conv2D -from tensorflow.keras import Model -``` - -加载并准备 [MNIST 数据集](http://yann.lecun.com/exdb/mnist/)。 - -```py -mnist = tf.keras.datasets.mnist - -(x_train, y_train), (x_test, y_test) = mnist.load_data() -x_train, x_test = x_train / 255.0, x_test / 255.0 - -# Add a channels dimension -x_train = x_train[..., tf.newaxis] -x_test = x_test[..., tf.newaxis] -``` - -使用 [`tf.data`](https://tensorflow.google.cn/api_docs/python/tf/data) 来将数据集切分为 batch 以及混淆数据集: - -```py -train_ds = tf.data.Dataset.from_tensor_slices( - (x_train, y_train)).shuffle(10000).batch(32) -test_ds = tf.data.Dataset.from_tensor_slices((x_test, y_test)).batch(32) -``` - -使用 Keras [模型子类化(model subclassing) API](https://tensorflow.google.cn/guide/keras#model_subclassing) 构建 [`tf.keras`](https://tensorflow.google.cn/api_docs/python/tf/keras) 模型: - -```py -class MyModel(Model): - def __init__(self): - super(MyModel, self).__init__() - self.conv1 = Conv2D(32, 3, activation='relu') - self.flatten = Flatten() - self.d1 = Dense(128, activation='relu') - self.d2 = Dense(10, activation='softmax') - - def call(self, x): - x = self.conv1(x) - x = self.flatten(x) - x = self.d1(x) - return self.d2(x) - -model = MyModel() -``` - -为训练选择优化器与损失函数: - -```py -loss_object = tf.keras.losses.SparseCategoricalCrossentropy() - -optimizer = tf.keras.optimizers.Adam() -``` - -选择衡量指标来度量模型的损失值(loss)和准确率(accuracy)。这些指标在 epoch 上累积值,然后打印出整体结果。 - -```py -train_loss = tf.keras.metrics.Mean(name='train_loss') -train_accuracy = tf.keras.metrics.SparseCategoricalAccuracy(name='train_accuracy') - -test_loss = tf.keras.metrics.Mean(name='test_loss') -test_accuracy = tf.keras.metrics.SparseCategoricalAccuracy(name='test_accuracy') -``` - -使用 [`tf.GradientTape`](https://tensorflow.google.cn/api_docs/python/tf/GradientTape) 来训练模型: - -```py -@tf.function -def train_step(images, labels): - with tf.GradientTape() as tape: - predictions = model(images) - loss = loss_object(labels, predictions) - gradients = tape.gradient(loss, model.trainable_variables) - optimizer.apply_gradients(zip(gradients, model.trainable_variables)) - - train_loss(loss) - train_accuracy(labels, predictions) -``` - -测试模型: - -```py -@tf.function -def test_step(images, labels): - predictions = model(images) - t_loss = loss_object(labels, predictions) - - test_loss(t_loss) - test_accuracy(labels, predictions) -``` - -```py -EPOCHS = 5 - -for epoch in range(EPOCHS): - # 在下一个 epoch 开始时,重置评估指标 - train_loss.reset_states() - train_accuracy.reset_states() - test_loss.reset_states() - test_accuracy.reset_states() - - for images, labels in train_ds: - train_step(images, labels) - - for test_images, test_labels in test_ds: - test_step(test_images, test_labels) - - template = 'Epoch {}, Loss: {}, Accuracy: {}, Test Loss: {}, Test Accuracy: {}' - print (template.format(epoch+1, - train_loss.result(), - train_accuracy.result()*100, - test_loss.result(), - test_accuracy.result()*100)) -``` - -```py -WARNING:tensorflow:Layer my_model is casting an input tensor from dtype float64 to the layer's dtype of float32, which is new behavior in TensorFlow 2\. The layer has dtype float32 because its dtype defaults to floatx. - -If you intended to run this layer in float32, you can safely ignore this warning. If in doubt, this warning is likely only an issue if you are porting a TensorFlow 1.X model to TensorFlow 2. - -To change all layers to have dtype float64 by default, call `tf.keras.backend.set_floatx('float64')`. To change just this layer, pass dtype='float64' to the layer constructor. If you are the author of this layer, you can disable autocasting by passing autocast=False to the base Layer constructor. - -Epoch 1, Loss: 0.13825324177742004, Accuracy: 95.89166259765625, Test Loss: 0.07461485266685486, Test Accuracy: 97.47999572753906 -Epoch 2, Loss: 0.04554400220513344, Accuracy: 98.61666870117188, Test Loss: 0.05126383528113365, Test Accuracy: 98.29000091552734 -Epoch 3, Loss: 0.024927066639065742, Accuracy: 99.18500518798828, Test Loss: 0.05301696062088013, Test Accuracy: 98.30999755859375 -Epoch 4, Loss: 0.014068767428398132, Accuracy: 99.52832794189453, Test Loss: 0.051672786474227905, Test Accuracy: 98.58000183105469 -Epoch 5, Loss: 0.009344187565147877, Accuracy: 99.69166564941406, Test Loss: 0.06102905049920082, Test Accuracy: 98.25 - -``` - -该图片分类器现在在此数据集上训练得到了接近 98% 的准确率(accuracy)。要了解更多信息,请阅读 [TensorFlow 教程](https://tensorflow.google.cn/tutorials/keras)。 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/006.md b/Tensorflow/TensorFlow2.0/006.md deleted file mode 100644 index 1c051ab2..00000000 --- a/Tensorflow/TensorFlow2.0/006.md +++ /dev/null @@ -1,489 +0,0 @@ -# 基本分类:对服装图像进行分类 - -> 原文:[https://tensorflow.google.cn/tutorials/keras/classification](https://tensorflow.google.cn/tutorials/keras/classification) - -本指南将训练一个神经网络模型,对运动鞋和衬衫等服装图像进行分类。即使您不理解所有细节也没关系;这只是对完整 TensorFlow 程序的快速概述,详细内容会在您实际操作的同时进行介绍。 - -本指南使用了 [tf.keras](https://tensorflow.google.cn/guide/keras),它是 TensorFlow 中用来构建和训练模型的高级 API。 - -```py -# TensorFlow and tf.keras -import tensorflow as tf -from tensorflow import keras - -# Helper libraries -import numpy as np -import matplotlib.pyplot as plt - -print(tf.__version__) -``` - -```py -2.3.0 - -``` - -## 导入 Fashion MNIST 数据集 - -本指南使用 [Fashion MNIST](https://github.com/zalandoresearch/fashion-mnist) 数据集,该数据集包含 10 个类别的 70,000 个灰度图像。这些图像以低分辨率(28x28 像素)展示了单件衣物,如下所示: - -| ![Fashion MNIST sprite](img/8a26efaab988f8c9054ea977baabb45a.png) | -| **图 1.** [Fashion-MNIST 样本](https://github.com/zalandoresearch/fashion-mnist)(由 Zalando 提供,MIT 许可)。 - | - -Fashion MNIST 旨在临时替代经典 [MNIST](http://yann.lecun.com/exdb/mnist/) 数据集,后者常被用作计算机视觉机器学习程序的“Hello, World”。MNIST 数据集包含手写数字(0、1、2 等)的图像,其格式与您将使用的衣物图像的格式相同。 - -本指南使用 Fashion MNIST 来实现多样化,因为它比常规 MNIST 更具挑战性。这两个数据集都相对较小,都用于验证某个算法是否按预期工作。对于代码的测试和调试,它们都是很好的起点。 - -在本指南中,我们使用 60,000 个图像来训练网络,使用 10,000 个图像来评估网络学习对图像分类的准确率。您可以直接从 TensorFlow 访问 Fashion MNIST。请运行以下代码,直接从 TensorFlow 中导入和加载 Fashion MNIST 数据: - -```py -fashion_mnist = keras.datasets.fashion_mnist - -(train_images, train_labels), (test_images, test_labels) = fashion_mnist.load_data() -``` - -加载数据集会返回四个 NumPy 数组: - -* `train_images` 和 `train_labels` 数组是*训练集*,即模型用于学习的数据。 -* *测试集*、`test_images` 和 `test_labels` 数组会被用来对模型进行测试。 - -图像是 28x28 的 NumPy 数组,像素值介于 0 到 255 之间。*标签*是整数数组,介于 0 到 9 之间。这些标签对应于图像所代表的服装*类*: - -| 标签 | 类 | -| 0 | T 恤/上衣 | -| 1 | 裤子 | -| 2 | 套头衫 | -| 3 | 连衣裙 | -| 4 | 外套 | -| 5 | 凉鞋 | -| 6 | 衬衫 | -| 7 | 运动鞋 | -| 8 | 包 | -| 9 | 短靴 | - -每个图像都会被映射到一个标签。由于数据集不包括*类名称*,请将它们存储在下方,供稍后绘制图像时使用: - -```py -class_names = ['T-shirt/top', 'Trouser', 'Pullover', 'Dress', 'Coat', - 'Sandal', 'Shirt', 'Sneaker', 'Bag', 'Ankle boot'] -``` - -## 浏览数据 - -在训练模型之前,我们先浏览一下数据集的格式。以下代码显示训练集中有 60,000 个图像,每个图像由 28 x 28 的像素表示: - -```py -train_images.shape -``` - -```py -(60000, 28, 28) - -``` - -同样,训练集中有 60,000 个标签: - -```py -len(train_labels) -``` - -```py -60000 - -``` - -每个标签都是一个 0 到 9 之间的整数: - -```py -train_labels -``` - -```py -array([9, 0, 0, ..., 3, 0, 5], dtype=uint8) - -``` - -测试集中有 10,000 个图像。同样,每个图像都由 28x28 个像素表示: - -```py -test_images.shape -``` - -```py -(10000, 28, 28) - -``` - -测试集包含 10,000 个图像标签: - -```py -len(test_labels) -``` - -```py -10000 - -``` - -## 预处理数据 - -在训练网络之前,必须对数据进行预处理。如果您检查训练集中的第一个图像,您会看到像素值处于 0 到 255 之间: - -```py -plt.figure() -plt.imshow(train_images[0]) -plt.colorbar() -plt.grid(False) -plt.show() -``` - -![png](img/07fde30d678eaceba2bf9695ee89c403.png) - -将这些值缩小至 0 到 1 之间,然后将其馈送到神经网络模型。为此,请将这些值除以 255。请务必以相同的方式对*训练集*和*测试集*进行预处理: - -```py -train_images = train_images / 255.0 - -test_images = test_images / 255.0 -``` - -为了验证数据的格式是否正确,以及您是否已准备好构建和训练网络,让我们显示*训练集*中的前 25 个图像,并在每个图像下方显示类名称。 - -```py -plt.figure(figsize=(10,10)) -for i in range(25): - plt.subplot(5,5,i+1) - plt.xticks([]) - plt.yticks([]) - plt.grid(False) - plt.imshow(train_images[i], cmap=plt.cm.binary) - plt.xlabel(class_names[train_labels[i]]) -plt.show() -``` - -![png](img/0fc5058e71e5828192048ef6a6b9a595.png) - -## 构建模型 - -构建神经网络需要先配置模型的层,然后再编译模型。 - -### 设置层 - -神经网络的基本组成部分是*层*。层会从向其馈送的数据中提取表示形式。希望这些表示形式有助于解决手头上的问题。 - -大多数深度学习都包括将简单的层链接在一起。大多数层(如 [`tf.keras.layers.Dense`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Dense))都具有在训练期间才会学习的参数。 - -```py -model = keras.Sequential([ - keras.layers.Flatten(input_shape=(28, 28)), - keras.layers.Dense(128, activation='relu'), - keras.layers.Dense(10) -]) -``` - -该网络的第一层 [`tf.keras.layers.Flatten`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Flatten) 将图像格式从二维数组(28 x 28 像素)转换成一维数组(28 x 28 = 784 像素)。将该层视为图像中未堆叠的像素行并将其排列起来。该层没有要学习的参数,它只会重新格式化数据。 - -展平像素后,网络会包括两个 [`tf.keras.layers.Dense`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Dense) 层的序列。它们是密集连接或全连接神经层。第一个 `Dense` 层有 128 个节点(或神经元)。第二个(也是最后一个)层会返回一个长度为 10 的 logits 数组。每个节点都包含一个得分,用来表示当前图像属于 10 个类中的哪一类。 - -### 编译模型 - -在准备对模型进行训练之前,还需要再对其进行一些设置。以下内容是在模型的*编译*步骤中添加的: - -* *损失函数* - 用于测量模型在训练期间的准确率。您会希望最小化此函数,以便将模型“引导”到正确的方向上。 -* *优化器* - 决定模型如何根据其看到的数据和自身的损失函数进行更新。 -* *指标* - 用于监控训练和测试步骤。以下示例使用了*准确率*,即被正确分类的图像的比率。 - -```py -model.compile(optimizer='adam', - loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True), - metrics=['accuracy']) -``` - -## 训练模型 - -训练神经网络模型需要执行以下步骤: - -1. 将训练数据馈送给模型。在本例中,训练数据位于 `train_images` 和 `train_labels` 数组中。 -2. 模型学习将图像和标签关联起来。 -3. 要求模型对测试集(在本例中为 `test_images` 数组)进行预测。 -4. 验证预测是否与 `test_labels` 数组中的标签相匹配。 - -### 向模型馈送数据 - -要开始训练,请调用 `model.fit` 方法,这样命名是因为该方法会将模型与训练数据进行“拟合”: - -```py -model.fit(train_images, train_labels, epochs=10) -``` - -```py -Epoch 1/10 -1875/1875 [==============================] - 3s 1ms/step - loss: 0.4924 - accuracy: 0.8265 -Epoch 2/10 -1875/1875 [==============================] - 3s 1ms/step - loss: 0.3698 - accuracy: 0.8669 -Epoch 3/10 -1875/1875 [==============================] - 3s 1ms/step - loss: 0.3340 - accuracy: 0.8781 -Epoch 4/10 -1875/1875 [==============================] - 3s 1ms/step - loss: 0.3110 - accuracy: 0.8863 -Epoch 5/10 -1875/1875 [==============================] - 3s 1ms/step - loss: 0.2924 - accuracy: 0.8936 -Epoch 6/10 -1875/1875 [==============================] - 3s 1ms/step - loss: 0.2776 - accuracy: 0.8972 -Epoch 7/10 -1875/1875 [==============================] - 3s 1ms/step - loss: 0.2659 - accuracy: 0.9021 -Epoch 8/10 -1875/1875 [==============================] - 3s 1ms/step - loss: 0.2543 - accuracy: 0.9052 -Epoch 9/10 -1875/1875 [==============================] - 3s 1ms/step - loss: 0.2453 - accuracy: 0.9084 -Epoch 10/10 -1875/1875 [==============================] - 3s 1ms/step - loss: 0.2366 - accuracy: 0.9122 - - - -``` - -在模型训练期间,会显示损失和准确率指标。此模型在训练数据上的准确率达到了 0.91(或 91%)左右。 - -### 评估准确率 - -接下来,比较模型在测试数据集上的表现: - -```py -test_loss, test_acc = model.evaluate(test_images, test_labels, verbose=2) - -print('\nTest accuracy:', test_acc) -``` - -```py -313/313 - 0s - loss: 0.3726 - accuracy: 0.8635 - -Test accuracy: 0.8634999990463257 - -``` - -结果表明,模型在测试数据集上的准确率略低于训练数据集。训练准确率和测试准确率之间的差距代表*过拟合*。过拟合是指机器学习模型在新的、以前未曾见过的输入上的表现不如在训练数据上的表现。过拟合的模型会“记住”训练数据集中的噪声和细节,从而对模型在新数据上的表现产生负面影响。有关更多信息,请参阅以下内容: - -* [演示过拟合](https://tensorflow.google.cn/tutorials/keras/overfit_and_underfit#demonstrate_overfitting) -* [避免过拟合的策略](https://tensorflow.google.cn/tutorials/keras/overfit_and_underfit#strategies_to_prevent_overfitting) - -### 进行预测 - -在模型经过训练后,您可以使用它对一些图像进行预测。模型具有线性输出,即 [logits](https://developers.google.cn/machine-learning/glossary#logits)。您可以附加一个 softmax 层,将 logits 转换成更容易理解的概率。 - -```py -probability_model = tf.keras.Sequential([model, - tf.keras.layers.Softmax()]) -``` - -```py -predictions = probability_model.predict(test_images) -``` - -在上例中,模型预测了测试集中每个图像的标签。我们来看看第一个预测结果: - -```py -predictions[0] -``` - -```py -array([6.9982241e-07, 5.5403369e-08, 1.8353174e-07, 1.4761626e-07, - 2.4380807e-07, 1.9273469e-04, 1.8122660e-06, 6.5027133e-02, - 1.7891599e-06, 9.3477517e-01], dtype=float32) - -``` - -预测结果是一个包含 10 个数字的数组。它们代表模型对 10 种不同服装中每种服装的“置信度”。您可以看到哪个标签的置信度值最大: - -```py -np.argmax(predictions[0]) -``` - -```py -9 - -``` - -因此,该模型非常确信这个图像是短靴,或 `class_names[9]`。通过检查测试标签发现这个分类是正确的: - -```py -test_labels[0] -``` - -```py -9 - -``` - -您可以将其绘制成图表,看看模型对于全部 10 个类的预测。 - -```py -def plot_image(i, predictions_array, true_label, img): - predictions_array, true_label, img = predictions_array, true_label[i], img[i] - plt.grid(False) - plt.xticks([]) - plt.yticks([]) - - plt.imshow(img, cmap=plt.cm.binary) - - predicted_label = np.argmax(predictions_array) - if predicted_label == true_label: - color = 'blue' - else: - color = 'red' - - plt.xlabel("{} {:2.0f}% ({})".format(class_names[predicted_label], - 100*np.max(predictions_array), - class_names[true_label]), - color=color) - -def plot_value_array(i, predictions_array, true_label): - predictions_array, true_label = predictions_array, true_label[i] - plt.grid(False) - plt.xticks(range(10)) - plt.yticks([]) - thisplot = plt.bar(range(10), predictions_array, color="#777777") - plt.ylim([0, 1]) - predicted_label = np.argmax(predictions_array) - - thisplot[predicted_label].set_color('red') - thisplot[true_label].set_color('blue') -``` - -### 验证预测结果 - -在模型经过训练后,您可以使用它对一些图像进行预测。 - -我们来看看第 0 个图像、预测结果和预测数组。正确的预测标签为蓝色,错误的预测标签为红色。数字表示预测标签的百分比(总计为 100)。 - -```py -i = 0 -plt.figure(figsize=(6,3)) -plt.subplot(1,2,1) -plot_image(i, predictions[i], test_labels, test_images) -plt.subplot(1,2,2) -plot_value_array(i, predictions[i], test_labels) -plt.show() -``` - -![png](img/55d2924ed5a33ffad4b9f727cd335194.png) - -```py -i = 12 -plt.figure(figsize=(6,3)) -plt.subplot(1,2,1) -plot_image(i, predictions[i], test_labels, test_images) -plt.subplot(1,2,2) -plot_value_array(i, predictions[i], test_labels) -plt.show() -``` - -![png](img/0c7474d216a51a2b258a81a689920596.png) - -让我们用模型的预测绘制几张图像。请注意,即使置信度很高,模型也可能出错。 - -```py -# Plot the first X test images, their predicted labels, and the true labels. -# Color correct predictions in blue and incorrect predictions in red. -num_rows = 5 -num_cols = 3 -num_images = num_rows*num_cols -plt.figure(figsize=(2*2*num_cols, 2*num_rows)) -for i in range(num_images): - plt.subplot(num_rows, 2*num_cols, 2*i+1) - plot_image(i, predictions[i], test_labels, test_images) - plt.subplot(num_rows, 2*num_cols, 2*i+2) - plot_value_array(i, predictions[i], test_labels) -plt.tight_layout() -plt.show() -``` - -![png](img/8f40b70083328d6f68f1d2c5821927d1.png) - -## 使用训练好的模型 - -最后,使用训练好的模型对单个图像进行预测。 - -```py -# Grab an image from the test dataset. -img = test_images[1] - -print(img.shape) -``` - -```py -(28, 28) - -``` - -[`tf.keras`](https://tensorflow.google.cn/api_docs/python/tf/keras) 模型经过了优化,可同时对一个*批*或一组样本进行预测。因此,即便您只使用一个图像,您也需要将其添加到列表中: - -```py -# Add the image to a batch where it's the only member. -img = (np.expand_dims(img,0)) - -print(img.shape) -``` - -```py -(1, 28, 28) - -``` - -现在预测这个图像的正确标签: - -```py -predictions_single = probability_model.predict(img) - -print(predictions_single) -``` - -```py -[[1.0675135e-05 2.4023437e-12 9.9772269e-01 1.3299730e-09 1.2968916e-03 - 8.7469149e-14 9.6970733e-04 5.4669354e-19 2.4514609e-11 1.8405429e-12]] - -``` - -```py -plot_value_array(1, predictions_single[0], test_labels) -_ = plt.xticks(range(10), class_names, rotation=45) -``` - -![png](img/35aea8e2802acf908920febe4776fbf0.png) - -[`keras.Model.predict`](https://tensorflow.google.cn/api_docs/python/tf/keras/Model#predict) 会返回一组列表,每个列表对应一批数据中的每个图像。在批次中获取对我们(唯一)图像的预测: - -```py -np.argmax(predictions_single[0]) -``` - -```py -2 - -``` - -该模型会按照预期预测标签。 - -```py -# MIT License -# -# Copyright (c) 2017 François Chollet -# -# Permission is hereby granted, free of charge, to any person obtaining a -# copy of this software and associated documentation files (the "Software"), -# to deal in the Software without restriction, including without limitation -# the rights to use, copy, modify, merge, publish, distribute, sublicense, -# and/or sell copies of the Software, and to permit persons to whom the -# Software is furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -# DEALINGS IN THE SOFTWARE. -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/007.md b/Tensorflow/TensorFlow2.0/007.md deleted file mode 100644 index a40bfe89..00000000 --- a/Tensorflow/TensorFlow2.0/007.md +++ /dev/null @@ -1,467 +0,0 @@ -# 电影评论文本分类 - -> 原文:[https://tensorflow.google.cn/tutorials/keras/text_classification](https://tensorflow.google.cn/tutorials/keras/text_classification) - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -此笔记本(notebook)使用评论文本将影评分为*积极(positive)*或*消极(nagetive)*两类。这是一个*二元(binary)*或者二分类问题,一种重要且应用广泛的机器学习问题。 - -我们将使用来源于[网络电影数据库(Internet Movie Database)](https://www.imdb.com/)的 [IMDB 数据集(IMDB dataset)](https://tensorflow.google.cn/api_docs/python/tf/keras/datasets/imdb),其包含 50,000 条影评文本。从该数据集切割出的 25,000 条评论用作训练,另外 25,000 条用作测试。训练集与测试集是*平衡的(balanced)*,意味着它们包含相等数量的积极和消极评论。 - -此笔记本(notebook)使用了 [tf.keras](https://tensorflow.google.cn/guide/keras),它是一个 Tensorflow 中用于构建和训练模型的高级 API。有关使用 [`tf.keras`](https://tensorflow.google.cn/api_docs/python/tf/keras) 进行文本分类的更高级教程,请参阅 [MLCC 文本分类指南(MLCC Text Classification Guide)](https://developers.google.cn/machine-learning/guides/text-classification/)。 - -```py -import tensorflow as tf -from tensorflow import keras - -import numpy as np - -print(tf.__version__) -``` - -```py -2.3.0 - -``` - -## 下载 IMDB 数据集 - -IMDB 数据集已经打包在 Tensorflow 中。该数据集已经经过预处理,评论(单词序列)已经被转换为整数序列,其中每个整数表示字典中的特定单词。 - -以下代码将下载 IMDB 数据集到您的机器上(如果您已经下载过将从缓存中复制): - -```py -imdb = keras.datasets.imdb - -(train_data, train_labels), (test_data, test_labels) = imdb.load_data(num_words=10000) -``` - -```py -Downloading data from https://storage.googleapis.com/tensorflow/tf-keras-datasets/imdb.npz -17465344/17464789 [==============================] - 0s 0us/step - -``` - -参数 `num_words=10000` 保留了训练数据中最常出现的 10,000 个单词。为了保持数据规模的可管理性,低频词将被丢弃。 - -## 探索数据 - -让我们花一点时间来了解数据格式。该数据集是经过预处理的:每个样本都是一个表示影评中词汇的整数数组。每个标签都是一个值为 0 或 1 的整数值,其中 0 代表消极评论,1 代表积极评论。 - -```py -print("Training entries: {}, labels: {}".format(len(train_data), len(train_labels))) -``` - -```py -Training entries: 25000, labels: 25000 - -``` - -评论文本被转换为整数值,其中每个整数代表词典中的一个单词。首条评论是这样的: - -```py -print(train_data[0]) -``` - -```py -[1, 14, 22, 16, 43, 530, 973, 1622, 1385, 65, 458, 4468, 66, 3941, 4, 173, 36, 256, 5, 25, 100, 43, 838, 112, 50, 670, 2, 9, 35, 480, 284, 5, 150, 4, 172, 112, 167, 2, 336, 385, 39, 4, 172, 4536, 1111, 17, 546, 38, 13, 447, 4, 192, 50, 16, 6, 147, 2025, 19, 14, 22, 4, 1920, 4613, 469, 4, 22, 71, 87, 12, 16, 43, 530, 38, 76, 15, 13, 1247, 4, 22, 17, 515, 17, 12, 16, 626, 18, 2, 5, 62, 386, 12, 8, 316, 8, 106, 5, 4, 2223, 5244, 16, 480, 66, 3785, 33, 4, 130, 12, 16, 38, 619, 5, 25, 124, 51, 36, 135, 48, 25, 1415, 33, 6, 22, 12, 215, 28, 77, 52, 5, 14, 407, 16, 82, 2, 8, 4, 107, 117, 5952, 15, 256, 4, 2, 7, 3766, 5, 723, 36, 71, 43, 530, 476, 26, 400, 317, 46, 7, 4, 2, 1029, 13, 104, 88, 4, 381, 15, 297, 98, 32, 2071, 56, 26, 141, 6, 194, 7486, 18, 4, 226, 22, 21, 134, 476, 26, 480, 5, 144, 30, 5535, 18, 51, 36, 28, 224, 92, 25, 104, 4, 226, 65, 16, 38, 1334, 88, 12, 16, 283, 5, 16, 4472, 113, 103, 32, 15, 16, 5345, 19, 178, 32] - -``` - -电影评论可能具有不同的长度。以下代码显示了第一条和第二条评论的中单词数量。由于神经网络的输入必须是统一的长度,我们稍后需要解决这个问题。 - -```py -len(train_data[0]), len(train_data[1]) -``` - -```py -(218, 189) - -``` - -### 将整数转换回单词 - -了解如何将整数转换回文本对您可能是有帮助的。这里我们将创建一个辅助函数来查询一个包含了整数到字符串映射的字典对象: - -```py -# 一个映射单词到整数索引的词典 -word_index = imdb.get_word_index() - -# 保留第一个索引 -word_index = {k:(v+3) for k,v in word_index.items()} -word_index[""] = 0 -word_index[""] = 1 -word_index[""] = 2 # unknown -word_index[""] = 3 - -reverse_word_index = dict([(value, key) for (key, value) in word_index.items()]) - -def decode_review(text): - return ' '.join([reverse_word_index.get(i, '?') for i in text]) -``` - -```py -Downloading data from https://storage.googleapis.com/tensorflow/tf-keras-datasets/imdb_word_index.json -1646592/1641221 [==============================] - 0s 0us/step - -``` - -现在我们可以使用 `decode_review` 函数来显示首条评论的文本: - -```py -decode_review(train_data[0]) -``` - -```py -" this film was just brilliant casting location scenery story direction everyone's really suited the part they played and you could just imagine being there robert is an amazing actor and now the same being director father came from the same scottish island as myself so i loved the fact there was a real connection with this film the witty remarks throughout the film were great it was just brilliant so much that i bought the film as soon as it was released for and would recommend it to everyone to watch and the fly fishing was amazing really cried at the end it was so sad and you know what they say if you cry at a film it must have been good and this definitely was also to the two little boy's that played the of norman and paul they were just brilliant children are often left out of the list i think because the stars that play them all grown up are such a big profile for the whole film but these children are amazing and should be praised for what they have done don't you think the whole story was so lovely because it was true and was someone's life after all that was shared with us all" - -``` - -## 准备数据 - -影评——即整数数组必须在输入神经网络之前转换为张量。这种转换可以通过以下两种方式来完成: - -* 将数组转换为表示单词出现与否的由 0 和 1 组成的向量,类似于 one-hot 编码。例如,序列[3, 5]将转换为一个 10,000 维的向量,该向量除了索引为 3 和 5 的位置是 1 以外,其他都为 0。然后,将其作为网络的首层——一个可以处理浮点型向量数据的稠密层。不过,这种方法需要大量的内存,需要一个大小为 `num_words * num_reviews` 的矩阵。 - -* 或者,我们可以填充数组来保证输入数据具有相同的长度,然后创建一个大小为 `max_length * num_reviews` 的整型张量。我们可以使用能够处理此形状数据的嵌入层作为网络中的第一层。 - -在本教程中,我们将使用第二种方法。 - -由于电影评论长度必须相同,我们将使用 [pad_sequences](https://tensorflow.google.cn/api_docs/python/tf/keras/preprocessing/sequence/pad_sequences) 函数来使长度标准化: - -```py -train_data = keras.preprocessing.sequence.pad_sequences(train_data, - value=word_index[""], - padding='post', - maxlen=256) - -test_data = keras.preprocessing.sequence.pad_sequences(test_data, - value=word_index[""], - padding='post', - maxlen=256) -``` - -现在让我们看下样本的长度: - -```py -len(train_data[0]), len(train_data[1]) -``` - -```py -(256, 256) - -``` - -并检查一下首条评论(当前已经填充): - -```py -print(train_data[0]) -``` - -```py -[ 1 14 22 16 43 530 973 1622 1385 65 458 4468 66 3941 - 4 173 36 256 5 25 100 43 838 112 50 670 2 9 - 35 480 284 5 150 4 172 112 167 2 336 385 39 4 - 172 4536 1111 17 546 38 13 447 4 192 50 16 6 147 - 2025 19 14 22 4 1920 4613 469 4 22 71 87 12 16 - 43 530 38 76 15 13 1247 4 22 17 515 17 12 16 - 626 18 2 5 62 386 12 8 316 8 106 5 4 2223 - 5244 16 480 66 3785 33 4 130 12 16 38 619 5 25 - 124 51 36 135 48 25 1415 33 6 22 12 215 28 77 - 52 5 14 407 16 82 2 8 4 107 117 5952 15 256 - 4 2 7 3766 5 723 36 71 43 530 476 26 400 317 - 46 7 4 2 1029 13 104 88 4 381 15 297 98 32 - 2071 56 26 141 6 194 7486 18 4 226 22 21 134 476 - 26 480 5 144 30 5535 18 51 36 28 224 92 25 104 - 4 226 65 16 38 1334 88 12 16 283 5 16 4472 113 - 103 32 15 16 5345 19 178 32 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0] - -``` - -## 构建模型 - -神经网络由堆叠的层来构建,这需要从两个主要方面来进行体系结构决策: - -* 模型里有多少层? -* 每个层里有多少*隐层单元(hidden units)*? - -在此样本中,输入数据包含一个单词索引的数组。要预测的标签为 0 或 1。让我们来为该问题构建一个模型: - -```py -# 输入形状是用于电影评论的词汇数目(10,000 词) -vocab_size = 10000 - -model = keras.Sequential() -model.add(keras.layers.Embedding(vocab_size, 16)) -model.add(keras.layers.GlobalAveragePooling1D()) -model.add(keras.layers.Dense(16, activation='relu')) -model.add(keras.layers.Dense(1, activation='sigmoid')) - -model.summary() -``` - -```py -Model: "sequential" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -embedding (Embedding) (None, None, 16) 160000 -_________________________________________________________________ -global_average_pooling1d (Gl (None, 16) 0 -_________________________________________________________________ -dense (Dense) (None, 16) 272 -_________________________________________________________________ -dense_1 (Dense) (None, 1) 17 -================================================================= -Total params: 160,289 -Trainable params: 160,289 -Non-trainable params: 0 -_________________________________________________________________ - -``` - -层按顺序堆叠以构建分类器: - -1. 第一层是`嵌入(Embedding)`层。该层采用整数编码的词汇表,并查找每个词索引的嵌入向量(embedding vector)。这些向量是通过模型训练学习到的。向量向输出数组增加了一个维度。得到的维度为:`(batch, sequence, embedding)`。 -2. 接下来,`GlobalAveragePooling1D` 将通过对序列维度求平均值来为每个样本返回一个定长输出向量。这允许模型以尽可能最简单的方式处理变长输入。 -3. 该定长输出向量通过一个有 16 个隐层单元的全连接(`Dense`)层传输。 -4. 最后一层与单个输出结点密集连接。使用 `Sigmoid` 激活函数,其函数值为介于 0 与 1 之间的浮点数,表示概率或置信度。 - -### 隐层单元 - -上述模型在输入输出之间有两个中间层或“隐藏层”。输出(单元,结点或神经元)的数量即为层表示空间的维度。换句话说,是学习内部表示时网络所允许的自由度。 - -如果模型具有更多的隐层单元(更高维度的表示空间)和/或更多层,则可以学习到更复杂的表示。但是,这会使网络的计算成本更高,并且可能导致学习到不需要的模式——一些能够在训练数据上而不是测试数据上改善性能的模式。这被称为*过拟合(overfitting)*,我们稍后会对此进行探究。 - -### 损失函数与优化器 - -一个模型需要损失函数和优化器来进行训练。由于这是一个二分类问题且模型输出概率值(一个使用 sigmoid 激活函数的单一单元层),我们将使用 `binary_crossentropy` 损失函数。 - -这不是损失函数的唯一选择,例如,您可以选择 `mean_squared_error` 。但是,一般来说 `binary_crossentropy` 更适合处理概率——它能够度量概率分布之间的“距离”,或者在我们的示例中,指的是度量 ground-truth 分布与预测值之间的“距离”。 - -稍后,当我们研究回归问题(例如,预测房价)时,我们将介绍如何使用另一种叫做均方误差的损失函数。 - -现在,配置模型来使用优化器和损失函数: - -```py -model.compile(optimizer='adam', - loss='binary_crossentropy', - metrics=['accuracy']) -``` - -## 创建一个验证集 - -在训练时,我们想要检查模型在未见过的数据上的准确率(accuracy)。通过从原始训练数据中分离 10,000 个样本来创建一个*验证集*。(为什么现在不使用测试集?我们的目标是只使用训练数据来开发和调整模型,然后只使用一次测试数据来评估准确率(accuracy))。 - -```py -x_val = train_data[:10000] -partial_x_train = train_data[10000:] - -y_val = train_labels[:10000] -partial_y_train = train_labels[10000:] -``` - -## 训练模型 - -以 512 个样本的 mini-batch 大小迭代 40 个 epoch 来训练模型。这是指对 `x_train` 和 `y_train` 张量中所有样本的的 40 次迭代。在训练过程中,监测来自验证集的 10,000 个样本上的损失值(loss)和准确率(accuracy): - -```py -history = model.fit(partial_x_train, - partial_y_train, - epochs=40, - batch_size=512, - validation_data=(x_val, y_val), - verbose=1) -``` - -```py -Epoch 1/40 -30/30 [==============================] - 1s 18ms/step - loss: 0.6924 - accuracy: 0.5173 - val_loss: 0.6911 - val_accuracy: 0.5699 -Epoch 2/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.6886 - accuracy: 0.5734 - val_loss: 0.6863 - val_accuracy: 0.6309 -Epoch 3/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.6810 - accuracy: 0.6439 - val_loss: 0.6766 - val_accuracy: 0.7367 -Epoch 4/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.6667 - accuracy: 0.7411 - val_loss: 0.6595 - val_accuracy: 0.7328 -Epoch 5/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.6431 - accuracy: 0.7602 - val_loss: 0.6327 - val_accuracy: 0.7677 -Epoch 6/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.6086 - accuracy: 0.7896 - val_loss: 0.5968 - val_accuracy: 0.7894 -Epoch 7/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.5654 - accuracy: 0.8147 - val_loss: 0.5550 - val_accuracy: 0.8102 -Epoch 8/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.5180 - accuracy: 0.8337 - val_loss: 0.5115 - val_accuracy: 0.8230 -Epoch 9/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.4709 - accuracy: 0.8535 - val_loss: 0.4705 - val_accuracy: 0.8356 -Epoch 10/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.4269 - accuracy: 0.8655 - val_loss: 0.4342 - val_accuracy: 0.8454 -Epoch 11/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.3887 - accuracy: 0.8763 - val_loss: 0.4040 - val_accuracy: 0.8545 -Epoch 12/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.3566 - accuracy: 0.8843 - val_loss: 0.3799 - val_accuracy: 0.8598 -Epoch 13/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.3299 - accuracy: 0.8911 - val_loss: 0.3608 - val_accuracy: 0.8660 -Epoch 14/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.3070 - accuracy: 0.8975 - val_loss: 0.3458 - val_accuracy: 0.8702 -Epoch 15/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.2876 - accuracy: 0.9021 - val_loss: 0.3334 - val_accuracy: 0.8727 -Epoch 16/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.2708 - accuracy: 0.9073 - val_loss: 0.3234 - val_accuracy: 0.8753 -Epoch 17/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.2558 - accuracy: 0.9130 - val_loss: 0.3154 - val_accuracy: 0.8773 -Epoch 18/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.2428 - accuracy: 0.9175 - val_loss: 0.3102 - val_accuracy: 0.8782 -Epoch 19/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.2308 - accuracy: 0.9214 - val_loss: 0.3032 - val_accuracy: 0.8812 -Epoch 20/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.2194 - accuracy: 0.9246 - val_loss: 0.2988 - val_accuracy: 0.8818 -Epoch 21/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.2093 - accuracy: 0.9280 - val_loss: 0.2956 - val_accuracy: 0.8821 -Epoch 22/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.2000 - accuracy: 0.9321 - val_loss: 0.2921 - val_accuracy: 0.8838 -Epoch 23/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.1912 - accuracy: 0.9357 - val_loss: 0.2901 - val_accuracy: 0.8846 -Epoch 24/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.1829 - accuracy: 0.9396 - val_loss: 0.2885 - val_accuracy: 0.8847 -Epoch 25/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.1756 - accuracy: 0.9439 - val_loss: 0.2874 - val_accuracy: 0.8844 -Epoch 26/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.1681 - accuracy: 0.9465 - val_loss: 0.2864 - val_accuracy: 0.8855 -Epoch 27/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.1617 - accuracy: 0.9481 - val_loss: 0.2867 - val_accuracy: 0.8844 -Epoch 28/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.1548 - accuracy: 0.9519 - val_loss: 0.2865 - val_accuracy: 0.8861 -Epoch 29/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.1485 - accuracy: 0.9543 - val_loss: 0.2872 - val_accuracy: 0.8849 -Epoch 30/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.1426 - accuracy: 0.9561 - val_loss: 0.2881 - val_accuracy: 0.8854 -Epoch 31/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.1372 - accuracy: 0.9587 - val_loss: 0.2895 - val_accuracy: 0.8851 -Epoch 32/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.1320 - accuracy: 0.9609 - val_loss: 0.2899 - val_accuracy: 0.8856 -Epoch 33/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.1267 - accuracy: 0.9625 - val_loss: 0.2911 - val_accuracy: 0.8851 -Epoch 34/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.1219 - accuracy: 0.9649 - val_loss: 0.2931 - val_accuracy: 0.8851 -Epoch 35/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.1173 - accuracy: 0.9666 - val_loss: 0.2948 - val_accuracy: 0.8863 -Epoch 36/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.1127 - accuracy: 0.9685 - val_loss: 0.2985 - val_accuracy: 0.8851 -Epoch 37/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.1086 - accuracy: 0.9688 - val_loss: 0.2998 - val_accuracy: 0.8860 -Epoch 38/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.1045 - accuracy: 0.9716 - val_loss: 0.3033 - val_accuracy: 0.8839 -Epoch 39/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.1007 - accuracy: 0.9723 - val_loss: 0.3049 - val_accuracy: 0.8847 -Epoch 40/40 -30/30 [==============================] - 0s 10ms/step - loss: 0.0967 - accuracy: 0.9737 - val_loss: 0.3087 - val_accuracy: 0.8832 - -``` - -## 评估模型 - -我们来看一下模型的性能如何。将返回两个值。损失值(loss)(一个表示误差的数字,值越低越好)与准确率(accuracy)。 - -```py -results = model.evaluate(test_data, test_labels, verbose=2) - -print(results) -``` - -```py -782/782 - 1s - loss: 0.3298 - accuracy: 0.8729 -[0.32977813482284546, 0.8728799819946289] - -``` - -这种十分朴素的方法得到了约 87% 的准确率(accuracy)。若采用更好的方法,模型的准确率应当接近 95%。 - -## 创建一个准确率(accuracy)和损失值(loss)随时间变化的图表 - -`model.fit()` 返回一个 `History` 对象,该对象包含一个字典,其中包含训练阶段所发生的一切事件: - -```py -history_dict = history.history -history_dict.keys() -``` - -```py -dict_keys(['loss', 'accuracy', 'val_loss', 'val_accuracy']) - -``` - -有四个条目:在训练和验证期间,每个条目对应一个监控指标。我们可以使用这些条目来绘制训练与验证过程的损失值(loss)和准确率(accuracy),以便进行比较。 - -```py -import matplotlib.pyplot as plt - -acc = history_dict['accuracy'] -val_acc = history_dict['val_accuracy'] -loss = history_dict['loss'] -val_loss = history_dict['val_loss'] - -epochs = range(1, len(acc) + 1) - -# “bo”代表 "蓝点" -plt.plot(epochs, loss, 'bo', label='Training loss') -# b 代表“蓝色实线” -plt.plot(epochs, val_loss, 'b', label='Validation loss') -plt.title('Training and validation loss') -plt.xlabel('Epochs') -plt.ylabel('Loss') -plt.legend() - -plt.show() -``` - -![png](img/9c459926609b3f3452425d5e76209223.png) - -```py -plt.clf() # 清除数字 - -plt.plot(epochs, acc, 'bo', label='Training acc') -plt.plot(epochs, val_acc, 'b', label='Validation acc') -plt.title('Training and validation accuracy') -plt.xlabel('Epochs') -plt.ylabel('Accuracy') -plt.legend() - -plt.show() -``` - -![png](img/6cd4981eb3c80dc3045b45bd7fd0e7ea.png) - -在该图中,点代表训练损失值(loss)与准确率(accuracy),实线代表验证损失值(loss)与准确率(accuracy)。 - -注意训练损失值随每一个 epoch *下降*而训练准确率(accuracy)随每一个 epoch *上升*。这在使用梯度下降优化时是可预期的——理应在每次迭代中最小化期望值。 - -验证过程的损失值(loss)与准确率(accuracy)的情况却并非如此——它们似乎在 20 个 epoch 后达到峰值。这是过拟合的一个实例:模型在训练数据上的表现比在以前从未见过的数据上的表现要更好。在此之后,模型过度优化并学习*特定*于训练数据的表示,而不能够*泛化*到测试数据。 - -对于这种特殊情况,我们可以通过在 20 个左右的 epoch 后停止训练来避免过拟合。稍后,您将看到如何通过回调自动执行此操作。 - -```py -# MIT License -# -# Copyright (c) 2017 François Chollet -# -# Permission is hereby granted, free of charge, to any person obtaining a -# copy of this software and associated documentation files (the "Software"), -# to deal in the Software without restriction, including without limitation -# the rights to use, copy, modify, merge, publish, distribute, sublicense, -# and/or sell copies of the Software, and to permit persons to whom the -# Software is furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -# DEALINGS IN THE SOFTWARE. -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/008.md b/Tensorflow/TensorFlow2.0/008.md deleted file mode 100644 index 89602096..00000000 --- a/Tensorflow/TensorFlow2.0/008.md +++ /dev/null @@ -1,308 +0,0 @@ -# 使用 Keras 和 Tensorflow Hub 对电影评论进行文本分类 - -> 原文:[https://tensorflow.google.cn/tutorials/keras/text_classification_with_hub](https://tensorflow.google.cn/tutorials/keras/text_classification_with_hub) - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -此笔记本(notebook)使用评论文本将影评分为*积极(positive)*或*消极(nagetive)*两类。这是一个*二元(binary)*或者二分类问题,一种重要且应用广泛的机器学习问题。 - -本教程演示了使用 Tensorflow Hub 和 Keras 进行迁移学习的基本应用。 - -我们将使用来源于[网络电影数据库(Internet Movie Database)](https://www.imdb.com/)的 [IMDB 数据集(IMDB dataset)](https://tensorflow.google.cn/api_docs/python/tf/keras/datasets/imdb),其包含 50,000 条影评文本。从该数据集切割出的 25,000 条评论用作训练,另外 25,000 条用作测试。训练集与测试集是*平衡的(balanced)*,意味着它们包含相等数量的积极和消极评论。 - -此笔记本(notebook)使用了 [tf.keras](https://tensorflow.google.cn/guide/keras),它是一个 Tensorflow 中用于构建和训练模型的高级 API,此外还使用了 [TensorFlow Hub](https://tensorflow.google.cn/hub),一个用于迁移学习的库和平台。有关使用 [`tf.keras`](https://tensorflow.google.cn/api_docs/python/tf/keras) 进行文本分类的更高级教程,请参阅 [MLCC 文本分类指南(MLCC Text Classification Guide)](https://developers.google.cn/machine-learning/guides/text-classification/)。 - -```py -import numpy as np - -import tensorflow as tf - -!pip install -q tensorflow-hub -!pip install -q tfds-nightly -import tensorflow_hub as hub -import tensorflow_datasets as tfds - -print("Version: ", tf.__version__) -print("Eager mode: ", tf.executing_eagerly()) -print("Hub version: ", hub.__version__) -print("GPU is", "available" if tf.config.experimental.list_physical_devices("GPU") else "NOT AVAILABLE") -``` - -```py -WARNING: You are using pip version 20.2.2; however, version 20.2.3 is available. -You should consider upgrading via the '/tmpfs/src/tf_docs_env/bin/python -m pip install --upgrade pip' command. -WARNING: You are using pip version 20.2.2; however, version 20.2.3 is available. -You should consider upgrading via the '/tmpfs/src/tf_docs_env/bin/python -m pip install --upgrade pip' command. -Version: 2.3.0 -Eager mode: True -Hub version: 0.9.0 -GPU is available - -``` - -## 下载 IMDB 数据集 - -IMDB 数据集可以在 [Tensorflow 数据集](https://github.com/tensorflow/datasets)处获取。以下代码将 IMDB 数据集下载至您的机器(或 colab 运行时环境)中: - -```py -# 将训练集分割成 60% 和 40%,从而最终我们将得到 15,000 个训练样本 -# 10,000 个验证样本以及 25,000 个测试样本。 -train_data, validation_data, test_data = tfds.load( - name="imdb_reviews", - split=('train[:60%]', 'train[60%:]', 'test'), - as_supervised=True) -``` - -```py -Downloading and preparing dataset imdb_reviews/plain_text/1.0.0 (download: 80.23 MiB, generated: Unknown size, total: 80.23 MiB) to /home/kbuilder/tensorflow_datasets/imdb_reviews/plain_text/1.0.0... -Shuffling and writing examples to /home/kbuilder/tensorflow_datasets/imdb_reviews/plain_text/1.0.0.incompleteZDZ3AR/imdb_reviews-train.tfrecord -Shuffling and writing examples to /home/kbuilder/tensorflow_datasets/imdb_reviews/plain_text/1.0.0.incompleteZDZ3AR/imdb_reviews-test.tfrecord -Shuffling and writing examples to /home/kbuilder/tensorflow_datasets/imdb_reviews/plain_text/1.0.0.incompleteZDZ3AR/imdb_reviews-unsupervised.tfrecord -Dataset imdb_reviews downloaded and prepared to /home/kbuilder/tensorflow_datasets/imdb_reviews/plain_text/1.0.0\. Subsequent calls will reuse this data. - -``` - -## 探索数据 - -让我们花一点时间来了解数据的格式。每一个样本都是一个表示电影评论和相应标签的句子。该句子不以任何方式进行预处理。标签是一个值为 0 或 1 的整数,其中 0 代表消极评论,1 代表积极评论。 - -我们来打印下前十个样本。 - -```py -train_examples_batch, train_labels_batch = next(iter(train_data.batch(10))) -train_examples_batch -``` - -```py -
But come on Hollywood - a Mountie telling the people of Dawson City, Yukon to elect themselves a marshal (yes a marshal!) and to enforce the law themselves, then gunfighters battling it out on the streets for control of the town?

Nothing even remotely resembling that happened on the Canadian side of the border during the Klondike gold rush. Mr. Mann and company appear to have mistaken Dawson City for Deadwood, the Canadian North for the American Wild West.

Canadian viewers be prepared for a Reefer Madness type of enjoyable howl with this ludicrous plot, or, to shake your head in disgust.', - b'This is the kind of film for a snowy Sunday afternoon when the rest of the world can go ahead with its own business as you descend into a big arm-chair and mellow for a couple of hours. Wonderful performances from Cher and Nicolas Cage (as always) gently row the plot along. There are no rapids to cross, no dangerous waters, just a warm and witty paddle through New York life at its best. A family film in every sense and one that deserves the praise it received.', - b'As others have mentioned, all the women that go nude in this film are mostly absolutely gorgeous. The plot very ably shows the hypocrisy of the female libido. When men are around they want to be pursued, but when no "men" are around, they become the pursuers of a 14 year old boy. And the boy becomes a man really fast (we should all be so lucky at this age!). He then gets up the courage to pursue his true love.', - b"This is a film which should be seen by anybody interested in, effected by, or suffering from an eating disorder. It is an amazingly accurate and sensitive portrayal of bulimia in a teenage girl, its causes and its symptoms. The girl is played by one of the most brilliant young actresses working in cinema today, Alison Lohman, who was later so spectacular in 'Where the Truth Lies'. I would recommend that this film be shown in all schools, as you will never see a better on this subject. Alison Lohman is absolutely outstanding, and one marvels at her ability to convey the anguish of a girl suffering from this compulsive disorder. If barometers tell us the air pressure, Alison Lohman tells us the emotional pressure with the same degree of accuracy. Her emotional range is so precise, each scene could be measured microscopically for its gradations of trauma, on a scale of rising hysteria and desperation which reaches unbearable intensity. Mare Winningham is the perfect choice to play her mother, and does so with immense sympathy and a range of emotions just as finely tuned as Lohman's. Together, they make a pair of sensitive emotional oscillators vibrating in resonance with one another. This film is really an astonishing achievement, and director Katt Shea should be proud of it. The only reason for not seeing it is if you are not interested in people. But even if you like nature films best, this is after all animal behaviour at the sharp edge. Bulimia is an extreme version of how a tormented soul can destroy her own body in a frenzy of despair. And if we don't sympathise with people suffering from the depths of despair, then we are dead inside.", - b'Okay, you have:

Penelope Keith as Miss Herringbone-Tweed, B.B.E. (Backbone of England.) She\'s killed off in the first scene - that\'s right, folks; this show has no backbone!

Peter O\'Toole as Ol\' Colonel Cricket from The First War and now the emblazered Lord of the Manor.

Joanna Lumley as the ensweatered Lady of the Manor, 20 years younger than the colonel and 20 years past her own prime but still glamourous (Brit spelling, not mine) enough to have a toy-boy on the side. It\'s alright, they have Col. Cricket\'s full knowledge and consent (they guy even comes \'round for Christmas!) Still, she\'s considerate of the colonel enough to have said toy-boy her own age (what a gal!)

David McCallum as said toy-boy, equally as pointlessly glamourous as his squeeze. Pilcher couldn\'t come up with any cover for him within the story, so she gave him a hush-hush job at the Circus.

and finally:

Susan Hampshire as Miss Polonia Teacups, Venerable Headmistress of the Venerable Girls\' Boarding-School, serving tea in her office with a dash of deep, poignant advice for life in the outside world just before graduation. Her best bit of advice: "I\'ve only been to Nancherrow (the local Stately Home of England) once. I thought it was very beautiful but, somehow, not part of the real world." Well, we can\'t say they didn\'t warn us.

Ah, Susan - time was, your character would have been running the whole show. They don\'t write \'em like that any more. Our loss, not yours.

So - with a cast and setting like this, you have the re-makings of "Brideshead Revisited," right?

Wrong! They took these 1-dimensional supporting roles because they paid so well. After all, acting is one of the oldest temp-jobs there is (YOU name another!)

First warning sign: lots and lots of backlighting. They get around it by shooting outdoors - "hey, it\'s just the sunlight!"

Second warning sign: Leading Lady cries a lot. When not crying, her eyes are moist. That\'s the law of romance novels: Leading Lady is "dewy-eyed."

Henceforth, Leading Lady shall be known as L.L.

Third warning sign: L.L. actually has stars in her eyes when she\'s in love. Still, I\'ll give Emily Mortimer an award just for having to act with that spotlight in her eyes (I wonder . did they use contacts?)

And lastly, fourth warning sign: no on-screen female character is "Mrs." She\'s either "Miss" or "Lady."

When all was said and done, I still couldn\'t tell you who was pursuing whom and why. I couldn\'t even tell you what was said and done.

To sum up: they all live through World War II without anything happening to them at all.

OK, at the end, L.L. finds she\'s lost her parents to the Japanese prison camps and baby sis comes home catatonic. Meanwhile (there\'s always a "meanwhile,") some young guy L.L. had a crush on (when, I don\'t know) comes home from some wartime tough spot and is found living on the street by Lady of the Manor (must be some street if SHE\'s going to find him there.) Both war casualties are whisked away to recover at Nancherrow (SOMEBODY has to be "whisked away" SOMEWHERE in these romance stories!)

Great drama.', - b'The film is based on a genuine 1950s novel.

Journalist Colin McInnes wrote a set of three "London novels": "Absolute Beginners", "City of Spades" and "Mr Love and Justice". I have read all three. The first two are excellent. The last, perhaps an experiment that did not come off. But McInnes\'s work is highly acclaimed; and rightly so. This musical is the novelist\'s ultimate nightmare - to see the fruits of one\'s mind being turned into a glitzy, badly-acted, soporific one-dimensional apology of a film that says it captures the spirit of 1950s London, and does nothing of the sort.

Thank goodness Colin McInnes wasn\'t alive to witness it.', - b'I really love the sexy action and sci-fi films of the sixties and its because of the actress\'s that appeared in them. They found the sexiest women to be in these films and it didn\'t matter if they could act (Remember "Candy"?). The reason I was disappointed by this film was because it wasn\'t nostalgic enough. The story here has a European sci-fi film called "Dragonfly" being made and the director is fired. So the producers decide to let a young aspiring filmmaker (Jeremy Davies) to complete the picture. They\'re is one real beautiful woman in the film who plays Dragonfly but she\'s barely in it. Film is written and directed by Roman Coppola who uses some of his fathers exploits from his early days and puts it into the script. I wish the film could have been an homage to those early films. They could have lots of cameos by actors who appeared in them. There is one actor in this film who was popular from the sixties and its John Phillip Law (Barbarella). Gerard Depardieu, Giancarlo Giannini and Dean Stockwell appear as well. I guess I\'m going to have to continue waiting for a director to make a good homage to the films of the sixties. If any are reading this, "Make it as sexy as you can"! I\'ll be waiting!', - b'Sure, this one isn\'t really a blockbuster, nor does it target such a position. "Dieter" is the first name of a quite popular German musician, who is either loved or hated for his kind of acting and thats exactly what this movie is about. It is based on the autobiography "Dieter Bohlen" wrote a few years ago but isn\'t meant to be accurate on that. The movie is filled with some sexual offensive content (at least for American standard) which is either amusing (not for the other "actors" of course) or dumb - it depends on your individual kind of humor or on you being a "Bohlen"-Fan or not. Technically speaking there isn\'t much to criticize. Speaking of me I find this movie to be an OK-movie.'], - dtype=object)> - -``` - -我们再打印下前十个标签。 - -```py -train_labels_batch -``` - -```py - - -``` - -## 构建模型 - -神经网络由堆叠的层来构建,这需要从三个主要方面来进行体系结构决策: - -* 如何表示文本? -* 模型里有多少层? -* 每个层里有多少*隐层单元(hidden units)*? - -本示例中,输入数据由句子组成。预测的标签为 0 或 1。 - -表示文本的一种方式是将句子转换为嵌入向量(embeddings vectors)。我们可以使用一个预先训练好的文本嵌入(text embedding)作为首层,这将具有三个优点: - -* 我们不必担心文本预处理 -* 我们可以从迁移学习中受益 -* 嵌入具有固定长度,更易于处理 - -针对此示例我们将使用 [TensorFlow Hub](https://tensorflow.google.cn/hub) 中名为 [google/tf2-preview/gnews-swivel-20dim/1](https://hub.tensorflow.google.cn/google/tf2-preview/gnews-swivel-20dim/1) 的一种**预训练文本嵌入(text embedding)模型** 。 - -为了达到本教程的目的还有其他三种预训练模型可供测试: - -* [google/tf2-preview/gnews-swivel-20dim-with-oov/1](https://hub.tensorflow.google.cn/google/tf2-preview/gnews-swivel-20dim-with-oov/1) ——类似 [google/tf2-preview/gnews-swivel-20dim/1](https://hub.tensorflow.google.cn/google/tf2-preview/gnews-swivel-20dim/1),但 2.5%的词汇转换为未登录词桶(OOV buckets)。如果任务的词汇与模型的词汇没有完全重叠,这将会有所帮助。 -* [google/tf2-preview/nnlm-en-dim50/1](https://hub.tensorflow.google.cn/google/tf2-preview/nnlm-en-dim50/1) ——一个拥有约 1M 词汇量且维度为 50 的更大的模型。 -* [google/tf2-preview/nnlm-en-dim128/1](https://hub.tensorflow.google.cn/google/tf2-preview/nnlm-en-dim128/1) ——拥有约 1M 词汇量且维度为 128 的更大的模型。 - -让我们首先创建一个使用 Tensorflow Hub 模型嵌入(embed)语句的 Keras 层,并在几个输入样本中进行尝试。请注意无论输入文本的长度如何,嵌入(embeddings)输出的形状都是:`(num_examples, embedding_dimension)`。 - -```py -embedding = "https://hub.tensorflow.google.cn/google/tf2-preview/gnews-swivel-20dim/1" -hub_layer = hub.KerasLayer(embedding, input_shape=[], - dtype=tf.string, trainable=True) -hub_layer(train_examples_batch[:3]) -``` - -```py - - -``` - -现在让我们构建完整模型: - -```py -model = tf.keras.Sequential() -model.add(hub_layer) -model.add(tf.keras.layers.Dense(16, activation='relu')) -model.add(tf.keras.layers.Dense(1)) - -model.summary() -``` - -```py -Model: "sequential" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -keras_layer (KerasLayer) (None, 20) 400020 -_________________________________________________________________ -dense (Dense) (None, 16) 336 -_________________________________________________________________ -dense_1 (Dense) (None, 1) 17 -================================================================= -Total params: 400,373 -Trainable params: 400,373 -Non-trainable params: 0 -_________________________________________________________________ - -``` - -层按顺序堆叠以构建分类器: - -1. 第一层是 Tensorflow Hub 层。这一层使用一个预训练的保存好的模型来将句子映射为嵌入向量(embedding vector)。我们所使用的预训练文本嵌入(embedding)模型([google/tf2-preview/gnews-swivel-20dim/1](https://hub.tensorflow.google.cn/google/tf2-preview/gnews-swivel-20dim/1))将句子切割为符号,嵌入(embed)每个符号然后进行合并。最终得到的维度是:`(num_examples, embedding_dimension)`。 -2. 该定长输出向量通过一个有 16 个隐层单元的全连接层(`Dense`)进行管道传输。 -3. 最后一层与单个输出结点紧密相连。使用 `Sigmoid` 激活函数,其函数值为介于 0 与 1 之间的浮点数,表示概率或置信水平。 - -让我们编译模型。 - -### 损失函数与优化器 - -一个模型需要损失函数和优化器来进行训练。由于这是一个二分类问题且模型输出概率值(一个使用 sigmoid 激活函数的单一单元层),我们将使用 `binary_crossentropy` 损失函数。 - -这不是损失函数的唯一选择,例如,您可以选择 `mean_squared_error` 。但是,一般来说 `binary_crossentropy` 更适合处理概率——它能够度量概率分布之间的“距离”,或者在我们的示例中,指的是度量 ground-truth 分布与预测值之间的“距离”。 - -稍后,当我们研究回归问题(例如,预测房价)时,我们将介绍如何使用另一种叫做均方误差的损失函数。 - -现在,配置模型来使用优化器和损失函数: - -```py -model.compile(optimizer='adam', - loss=tf.keras.losses.BinaryCrossentropy(from_logits=True), - metrics=['accuracy']) -``` - -## 训练模型 - -以 512 个样本的 mini-batch 大小迭代 20 个 epoch 来训练模型。 这是指对 `x_train` 和 `y_train` 张量中所有样本的的 20 次迭代。在训练过程中,监测来自验证集的 10,000 个样本上的损失值(loss)和准确率(accuracy): - -```py -history = model.fit(train_data.shuffle(10000).batch(512), - epochs=20, - validation_data=validation_data.batch(512), - verbose=1) -``` - -```py -Epoch 1/20 -30/30 [==============================] - 2s 64ms/step - loss: 1.5444 - accuracy: 0.4965 - val_loss: 0.9259 - val_accuracy: 0.4705 -Epoch 2/20 -30/30 [==============================] - 2s 59ms/step - loss: 0.7667 - accuracy: 0.4990 - val_loss: 0.7017 - val_accuracy: 0.5327 -Epoch 3/20 -30/30 [==============================] - 2s 58ms/step - loss: 0.6631 - accuracy: 0.5799 - val_loss: 0.6387 - val_accuracy: 0.6238 -Epoch 4/20 -30/30 [==============================] - 2s 58ms/step - loss: 0.6156 - accuracy: 0.6327 - val_loss: 0.6051 - val_accuracy: 0.6390 -Epoch 5/20 -30/30 [==============================] - 2s 57ms/step - loss: 0.5819 - accuracy: 0.6623 - val_loss: 0.5761 - val_accuracy: 0.6639 -Epoch 6/20 -30/30 [==============================] - 2s 57ms/step - loss: 0.5492 - accuracy: 0.6983 - val_loss: 0.5475 - val_accuracy: 0.6873 -Epoch 7/20 -30/30 [==============================] - 2s 58ms/step - loss: 0.5159 - accuracy: 0.7294 - val_loss: 0.5176 - val_accuracy: 0.7277 -Epoch 8/20 -30/30 [==============================] - 2s 58ms/step - loss: 0.4813 - accuracy: 0.7609 - val_loss: 0.4884 - val_accuracy: 0.7490 -Epoch 9/20 -30/30 [==============================] - 2s 58ms/step - loss: 0.4472 - accuracy: 0.7869 - val_loss: 0.4602 - val_accuracy: 0.7747 -Epoch 10/20 -30/30 [==============================] - 2s 58ms/step - loss: 0.4141 - accuracy: 0.8113 - val_loss: 0.4352 - val_accuracy: 0.7983 -Epoch 11/20 -30/30 [==============================] - 2s 57ms/step - loss: 0.3837 - accuracy: 0.8312 - val_loss: 0.4113 - val_accuracy: 0.8074 -Epoch 12/20 -30/30 [==============================] - 2s 58ms/step - loss: 0.3558 - accuracy: 0.8482 - val_loss: 0.3910 - val_accuracy: 0.8152 -Epoch 13/20 -30/30 [==============================] - 2s 57ms/step - loss: 0.3305 - accuracy: 0.8611 - val_loss: 0.3727 - val_accuracy: 0.8270 -Epoch 14/20 -30/30 [==============================] - 2s 58ms/step - loss: 0.3071 - accuracy: 0.8746 - val_loss: 0.3602 - val_accuracy: 0.8455 -Epoch 15/20 -30/30 [==============================] - 2s 58ms/step - loss: 0.2872 - accuracy: 0.8840 - val_loss: 0.3445 - val_accuracy: 0.8462 -Epoch 16/20 -30/30 [==============================] - 2s 58ms/step - loss: 0.2678 - accuracy: 0.8942 - val_loss: 0.3333 - val_accuracy: 0.8538 -Epoch 17/20 -30/30 [==============================] - 2s 58ms/step - loss: 0.2505 - accuracy: 0.9010 - val_loss: 0.3243 - val_accuracy: 0.8557 -Epoch 18/20 -30/30 [==============================] - 2s 57ms/step - loss: 0.2351 - accuracy: 0.9073 - val_loss: 0.3172 - val_accuracy: 0.8634 -Epoch 19/20 -30/30 [==============================] - 2s 58ms/step - loss: 0.2209 - accuracy: 0.9154 - val_loss: 0.3108 - val_accuracy: 0.8660 -Epoch 20/20 -30/30 [==============================] - 2s 57ms/step - loss: 0.2082 - accuracy: 0.9224 - val_loss: 0.3058 - val_accuracy: 0.8676 - -``` - -## 评估模型 - -我们来看下模型的表现如何。将返回两个值。损失值(loss)(一个表示误差的数字,值越低越好)与准确率(accuracy)。 - -```py -results = model.evaluate(test_data.batch(512), verbose=2) - -for name, value in zip(model.metrics_names, results): - print("%s: %.3f" % (name, value)) -``` - -```py -49/49 - 1s - loss: 0.3208 - accuracy: 0.8546 -loss: 0.321 -accuracy: 0.855 - -``` - -这种十分朴素的方法得到了约 87% 的准确率(accuracy)。若采用更好的方法,模型的准确率应当接近 95%。 - -## 进一步阅读 - -有关使用字符串输入的更一般方法,以及对训练期间准确率(accuracy)和损失值(loss)更详细的分析,请参阅[此处](https://tensorflow.google.cn/tutorials/keras/basic_text_classification)。 - -```py -# MIT License -# -# Copyright (c) 2017 François Chollet -# -# Permission is hereby granted, free of charge, to any person obtaining a -# copy of this software and associated documentation files (the "Software"), -# to deal in the Software without restriction, including without limitation -# the rights to use, copy, modify, merge, publish, distribute, sublicense, -# and/or sell copies of the Software, and to permit persons to whom the -# Software is furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -# DEALINGS IN THE SOFTWARE. -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/009.md b/Tensorflow/TensorFlow2.0/009.md deleted file mode 100644 index 9fa25b7c..00000000 --- a/Tensorflow/TensorFlow2.0/009.md +++ /dev/null @@ -1,444 +0,0 @@ -# Basic regression: Predict fuel efficiency - -> 原文:[https://tensorflow.google.cn/tutorials/keras/regression](https://tensorflow.google.cn/tutorials/keras/regression) - - - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -在 *回归 (regression)* 问题中,我们的目的是预测出如价格或概率这样连续值的输出。相对于*分类(classification)* 问题,*分类(classification)* 的目的是从一系列的分类出选择出一个分类 (如,给出一张包含苹果或橘子的图片,识别出图片中是哪种水果)。 - -本 notebook 使用经典的 [Auto MPG](https://archive.ics.uci.edu/ml/datasets/auto+mpg) 数据集,构建了一个用来预测 70 年代末到 80 年代初汽车燃油效率的模型。为了做到这一点,我们将为该模型提供许多那个时期的汽车描述。这个描述包含:气缸数,排量,马力以及重量。 - -本示例使用 [`tf.keras`](https://tensorflow.google.cn/api_docs/python/tf/keras) API,相关细节请参阅 [本指南](https://tensorflow.google.cn/guide/keras)。 - -```py -# 使用 seaborn 绘制矩阵图 (pairplot) -pip install -q seaborn - -``` - -```py -WARNING: You are using pip version 20.2.2; however, version 20.2.3 is available. -You should consider upgrading via the '/tmpfs/src/tf_docs_env/bin/python -m pip install --upgrade pip' command. - -``` - -```py -import pathlib - -import matplotlib.pyplot as plt -import pandas as pd -import seaborn as sns - -import tensorflow as tf - -from tensorflow import keras -from tensorflow.keras import layers - -print(tf.__version__) -``` - -```py -2.3.0 - -``` - -## Auto MPG 数据集 - -该数据集可以从 [UCI 机器学习库](https://archive.ics.uci.edu/ml/) 中获取. - -### 获取数据 - -首先下载数据集。 - -```py -dataset_path = keras.utils.get_file("auto-mpg.data", "http://archive.ics.uci.edu/ml/machine-learning-databases/auto-mpg/auto-mpg.data") -dataset_path -``` - -```py -Downloading data from http://archive.ics.uci.edu/ml/machine-learning-databases/auto-mpg/auto-mpg.data -32768/30286 [================================] - 0s 1us/step - -'/home/kbuilder/.keras/datasets/auto-mpg.data' - -``` - -使用 pandas 导入数据集。 - -```py -column_names = ['MPG','Cylinders','Displacement','Horsepower','Weight', - 'Acceleration', 'Model Year', 'Origin'] -raw_dataset = pd.read_csv(dataset_path, names=column_names, - na_values = "?", comment='\t', - sep=" ", skipinitialspace=True) - -dataset = raw_dataset.copy() -dataset.tail() -``` - - - -### 数据清洗 - -数据集中包括一些未知值。 - -```py -dataset.isna().sum() -``` - -```py -MPG 0 -Cylinders 0 -Displacement 0 -Horsepower 6 -Weight 0 -Acceleration 0 -Model Year 0 -Origin 0 -dtype: int64 - -``` - -为了保证这个初始示例的简单性,删除这些行。 - -```py -dataset = dataset.dropna() -``` - -`"Origin"` 列实际上代表分类,而不仅仅是一个数字。所以把它转换为独热码 (one-hot): - -```py -origin = dataset.pop('Origin') -``` - -```py -dataset['USA'] = (origin == 1)*1.0 -dataset['Europe'] = (origin == 2)*1.0 -dataset['Japan'] = (origin == 3)*1.0 -dataset.tail() -``` - -### 拆分训练数据集和测试数据集 - -现在需要将数据集拆分为一个训练数据集和一个测试数据集。 - -我们最后将使用测试数据集对模型进行评估。 - -```py -train_dataset = dataset.sample(frac=0.8,random_state=0) -test_dataset = dataset.drop(train_dataset.index) -``` - -### 数据检查 - -快速查看训练集中几对列的联合分布。 - -```py -sns.pairplot(train_dataset[["MPG", "Cylinders", "Displacement", "Weight"]], diag_kind="kde") -``` - -```py - - -``` - -![png](img/4a4c68a2d8914e8b1b75bed4a9b81a5b.png) - -也可以查看总体的数据统计: - -```py -train_stats = train_dataset.describe() -train_stats.pop("MPG") -train_stats = train_stats.transpose() -train_stats -``` - -### 从标签中分离特征 - -将特征值从目标值或者"标签"中分离。 这个标签是你使用训练模型进行预测的值。 - -```py -train_labels = train_dataset.pop('MPG') -test_labels = test_dataset.pop('MPG') -``` - -### 数据规范化 - -再次审视下上面的 `train_stats` 部分,并注意每个特征的范围有什么不同。 - -使用不同的尺度和范围对特征归一化是好的实践。尽管模型*可能* 在没有特征归一化的情况下收敛,它会使得模型训练更加复杂,并会造成生成的模型依赖输入所使用的单位选择。 - -注意:尽管我们仅仅从训练集中有意生成这些统计数据,但是这些统计信息也会用于归一化的测试数据集。我们需要这样做,将测试数据集放入到与已经训练过的模型相同的分布中。 - -```py -def norm(x): - return (x - train_stats['mean']) / train_stats['std'] -normed_train_data = norm(train_dataset) -normed_test_data = norm(test_dataset) -``` - -我们将会使用这个已经归一化的数据来训练模型。 - -警告: 用于归一化输入的数据统计(均值和标准差)需要反馈给模型从而应用于任何其他数据,以及我们之前所获得独热码。这些数据包含测试数据集以及生产环境中所使用的实时数据。 - -## 模型 - -### 构建模型 - -让我们来构建我们自己的模型。这里,我们将会使用一个“顺序”模型,其中包含两个紧密相连的隐藏层,以及返回单个、连续值得输出层。模型的构建步骤包含于一个名叫 'build_model' 的函数中,稍后我们将会创建第二个模型。 两个密集连接的隐藏层。 - -```py -def build_model(): - model = keras.Sequential([ - layers.Dense(64, activation='relu', input_shape=[len(train_dataset.keys())]), - layers.Dense(64, activation='relu'), - layers.Dense(1) - ]) - - optimizer = tf.keras.optimizers.RMSprop(0.001) - - model.compile(loss='mse', - optimizer=optimizer, - metrics=['mae', 'mse']) - return model -``` - -```py -model = build_model() -``` - -### 检查模型 - -使用 `.summary` 方法来打印该模型的简单描述。 - -```py -model.summary() -``` - -```py -Model: "sequential" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -dense (Dense) (None, 64) 640 -_________________________________________________________________ -dense_1 (Dense) (None, 64) 4160 -_________________________________________________________________ -dense_2 (Dense) (None, 1) 65 -================================================================= -Total params: 4,865 -Trainable params: 4,865 -Non-trainable params: 0 -_________________________________________________________________ - -``` - -现在试用下这个模型。从训练数据中批量获取‘10’条例子并对这些例子调用 `model.predict` 。 - -```py -example_batch = normed_train_data[:10] -example_result = model.predict(example_batch) -example_result -``` - -```py -array([[0.15074062], - [0.0973136 ], - [0.17310914], - [0.08873479], - [0.52456 ], - [0.05311462], - [0.49406645], - [0.04333409], - [0.12005241], - [0.6703117 ]], dtype=float32) - -``` - -它似乎在工作,并产生了预期的形状和类型的结果 - -### 训练模型 - -对模型进行 1000 个周期的训练,并在 `history` 对象中记录训练和验证的准确性。 - -```py -# 通过为每个完成的时期打印一个点来显示训练进度 -class PrintDot(keras.callbacks.Callback): - def on_epoch_end(self, epoch, logs): - if epoch % 100 == 0: print('') - print('.', end='') - -EPOCHS = 1000 - -history = model.fit( - normed_train_data, train_labels, - epochs=EPOCHS, validation_split = 0.2, verbose=0, - callbacks=[PrintDot()]) -``` - -```py - -.................................................................................................... -.................................................................................................... -.................................................................................................... -.................................................................................................... -.................................................................................................... -.................................................................................................... -.................................................................................................... -.................................................................................................... -.................................................................................................... -.................................................................................................... - -``` - -使用 `history` 对象中存储的统计信息可视化模型的训练进度。 - -```py -hist = pd.DataFrame(history.history) -hist['epoch'] = history.epoch -hist.tail() -``` - -```py -def plot_history(history): - hist = pd.DataFrame(history.history) - hist['epoch'] = history.epoch - - plt.figure() - plt.xlabel('Epoch') - plt.ylabel('Mean Abs Error [MPG]') - plt.plot(hist['epoch'], hist['mae'], - label='Train Error') - plt.plot(hist['epoch'], hist['val_mae'], - label = 'Val Error') - plt.ylim([0,5]) - plt.legend() - - plt.figure() - plt.xlabel('Epoch') - plt.ylabel('Mean Square Error [$MPG^2$]') - plt.plot(hist['epoch'], hist['mse'], - label='Train Error') - plt.plot(hist['epoch'], hist['val_mse'], - label = 'Val Error') - plt.ylim([0,20]) - plt.legend() - plt.show() - -plot_history(history) -``` - -![png](img/7fe4fe0b14735050369dc31f05672d65.png) - -![png](img/29af7886a5834acb3b056b86d97b4128.png) - -该图表显示在约 100 个 epochs 之后误差非但没有改进,反而出现恶化。 让我们更新 `model.fit` 调用,当验证值没有提高上是自动停止训练。 我们将使用一个 *EarlyStopping callback* 来测试每个 epoch 的训练条件。如果经过一定数量的 epochs 后没有改进,则自动停止训练。 - -你可以从[这里](https://tensorflow.google.cn/versions/master/api_docs/python/tf/keras/callbacks/EarlyStopping)学习到更多的回调。 - -```py -model = build_model() - -# patience 值用来检查改进 epochs 的数量 -early_stop = keras.callbacks.EarlyStopping(monitor='val_loss', patience=10) - -history = model.fit(normed_train_data, train_labels, epochs=EPOCHS, - validation_split = 0.2, verbose=0, callbacks=[early_stop, PrintDot()]) - -plot_history(history) -``` - -```py - -.................................................................................................... -........................... - -``` - -![png](img/253f679c0d56ad236d24246ddb70d466.png) - -![png](img/0f98889f249aed7e8f8f5e90e5432e08.png) - -如图所示,验证集中的平均的误差通常在 +/- 2 MPG 左右。 这个结果好么? 我们将决定权留给你。 - -让我们看看通过使用 **测试集** 来泛化模型的效果如何,我们在训练模型时没有使用测试集。这告诉我们,当我们在现实世界中使用这个模型时,我们可以期望它预测得有多好。 - -```py -loss, mae, mse = model.evaluate(normed_test_data, test_labels, verbose=2) - -print("Testing set Mean Abs Error: {:5.2f} MPG".format(mae)) -``` - -```py -3/3 - 0s - loss: 5.9941 - mae: 1.8809 - mse: 5.9941 -Testing set Mean Abs Error: 1.88 MPG - -``` - -### 做预测 - -最后,使用测试集中的数据预测 MPG 值: - -```py -test_predictions = model.predict(normed_test_data).flatten() - -plt.scatter(test_labels, test_predictions) -plt.xlabel('True Values [MPG]') -plt.ylabel('Predictions [MPG]') -plt.axis('equal') -plt.axis('square') -plt.xlim([0,plt.xlim()[1]]) -plt.ylim([0,plt.ylim()[1]]) -_ = plt.plot([-100, 100], [-100, 100]) -``` - -![png](img/54c9e1f17ab75ca37c6360c3e5230475.png) - -这看起来我们的模型预测得相当好。我们来看下误差分布。 - -```py -error = test_predictions - test_labels -plt.hist(error, bins = 25) -plt.xlabel("Prediction Error [MPG]") -_ = plt.ylabel("Count") -``` - -![png](img/25091cb1e90c92e9948c6c6cb9d0238b.png) - -它不是完全的高斯分布,但我们可以推断出,这是因为样本的数量很小所导致的。 - -## 结论 - -本笔记本 (notebook) 介绍了一些处理回归问题的技术。 - -* 均方误差(MSE)是用于回归问题的常见损失函数(分类问题中使用不同的损失函数)。 -* 类似的,用于回归的评估指标与分类不同。 常见的回归指标是平均绝对误差(MAE)。 -* 当数字输入数据特征的值存在不同范围时,每个特征应独立缩放到相同范围。 -* 如果训练数据不多,一种方法是选择隐藏层较少的小网络,以避免过度拟合。 -* 早期停止是一种防止过度拟合的有效技术。 - -```py -# MIT License -# -# Copyright (c) 2017 François Chollet -# -# Permission is hereby granted, free of charge, to any person obtaining a -# copy of this software and associated documentation files (the "Software"), -# to deal in the Software without restriction, including without limitation -# the rights to use, copy, modify, merge, publish, distribute, sublicense, -# and/or sell copies of the Software, and to permit persons to whom the -# Software is furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -# DEALINGS IN THE SOFTWARE. -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/010.md b/Tensorflow/TensorFlow2.0/010.md deleted file mode 100644 index 622a0587..00000000 --- a/Tensorflow/TensorFlow2.0/010.md +++ /dev/null @@ -1,915 +0,0 @@ -# Overfit and underfit - -> 原文:[https://tensorflow.google.cn/tutorials/keras/overfit_and_underfit](https://tensorflow.google.cn/tutorials/keras/overfit_and_underfit) - -As always, the code in this example will use the [`tf.keras`](https://tensorflow.google.cn/api_docs/python/tf/keras) API, which you can learn more about in the TensorFlow [Keras guide](https://tensorflow.google.cn/guide/keras). - -In both of the previous examples—[classifying text](https://tensorflow.google.cn/tutorials/keras/text_classification_with_hub) and [predicting fuel efficiency](https://tensorflow.google.cn/tutorials/keras/regression) — we saw that the accuracy of our model on the validation data would peak after training for a number of epochs, and would then stagnate or start decreasing. - -In other words, our model would *overfit* to the training data. Learning how to deal with overfitting is important. Although it's often possible to achieve high accuracy on the *training set*, what we really want is to develop models that generalize well to a *testing set* (or data they haven't seen before). - -The opposite of overfitting is *underfitting*. Underfitting occurs when there is still room for improvement on the train data. This can happen for a number of reasons: If the model is not powerful enough, is over-regularized, or has simply not been trained long enough. This means the network has not learned the relevant patterns in the training data. - -If you train for too long though, the model will start to overfit and learn patterns from the training data that don't generalize to the test data. We need to strike a balance. Understanding how to train for an appropriate number of epochs as we'll explore below is a useful skill. - -To prevent overfitting, the best solution is to use more complete training data. The dataset should cover the full range of inputs that the model is expected to handle. Additional data may only be useful if it covers new and interesting cases. - -A model trained on more complete data will naturally generalize better. When that is no longer possible, the next best solution is to use techniques like regularization. These place constraints on the quantity and type of information your model can store. If a network can only afford to memorize a small number of patterns, the optimization process will force it to focus on the most prominent patterns, which have a better chance of generalizing well. - -In this notebook, we'll explore several common regularization techniques, and use them to improve on a classification model. - -## Setup - -Before getting started, import the necessary packages: - -```py -import tensorflow as tf - -from tensorflow.keras import layers -from tensorflow.keras import regularizers - -print(tf.__version__) -``` - -```py -2.3.1 - -``` - -```py -!pip install -q git+https://github.com/tensorflow/docs - -import tensorflow_docs as tfdocs -import tensorflow_docs.modeling -import tensorflow_docs.plots -``` - -```py -from IPython import display -from matplotlib import pyplot as plt - -import numpy as np - -import pathlib -import shutil -import tempfile -``` - -```py -logdir = pathlib.Path(tempfile.mkdtemp())/"tensorboard_logs" -shutil.rmtree(logdir, ignore_errors=True) -``` - -## The Higgs Dataset - -The goal of this tutorial is not to do particle physics, so don't dwell on the details of the dataset. It contains 11 000 000 examples, each with 28 features, and a binary class label. - -```py -gz = tf.keras.utils.get_file('HIGGS.csv.gz', 'http://mlphysics.ics.uci.edu/data/higgs/HIGGS.csv.gz') -``` - -```py -Downloading data from http://mlphysics.ics.uci.edu/data/higgs/HIGGS.csv.gz -2816409600/2816407858 [==============================] - 230s 0us/step - -``` - -```py -FEATURES = 28 -``` - -The [`tf.data.experimental.CsvDataset`](https://tensorflow.google.cn/api_docs/python/tf/data/experimental/CsvDataset) class can be used to read csv records directly from a gzip file with no intermediate decompression step. - -```py -ds = tf.data.experimental.CsvDataset(gz,[float(),]*(FEATURES+1), compression_type="GZIP") -``` - -That csv reader class returns a list of scalars for each record. The following function repacks that list of scalars into a (feature_vector, label) pair. - -```py -def pack_row(*row): - label = row[0] - features = tf.stack(row[1:],1) - return features, label -``` - -TensorFlow is most efficient when operating on large batches of data. - -So instead of repacking each row individually make a new `Dataset` that takes batches of 10000-examples, applies the `pack_row` function to each batch, and then splits the batches back up into individual records: - -```py -packed_ds = ds.batch(10000).map(pack_row).unbatch() -``` - -Have a look at some of the records from this new `packed_ds`. - -The features are not perfectly normalized, but this is sufficient for this tutorial. - -```py -for features,label in packed_ds.batch(1000).take(1): - print(features[0]) - plt.hist(features.numpy().flatten(), bins = 101) -``` - -```py -tf.Tensor( -[ 0.8692932 -0.6350818 0.22569026 0.32747006 -0.6899932 0.75420225 - -0.24857314 -1.0920639 0\. 1.3749921 -0.6536742 0.9303491 - 1.1074361 1.1389043 -1.5781983 -1.0469854 0\. 0.65792954 - -0.01045457 -0.04576717 3.1019614 1.35376 0.9795631 0.97807616 - 0.92000484 0.72165745 0.98875093 0.87667835], shape=(28,), dtype=float32) - -``` - -![png](img/b4bcda4ec74a98071e75941c07503a6c.png) - -To keep this tutorial relatively short use just the first 1000 samples for validation, and the next 10 000 for training: - -```py -N_VALIDATION = int(1e3) -N_TRAIN = int(1e4) -BUFFER_SIZE = int(1e4) -BATCH_SIZE = 500 -STEPS_PER_EPOCH = N_TRAIN//BATCH_SIZE -``` - -The [`Dataset.skip`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#skip) and [`Dataset.take`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#take) methods make this easy. - -At the same time, use the [`Dataset.cache`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#cache) method to ensure that the loader doesn't need to re-read the data from the file on each epoch: - -```py -validate_ds = packed_ds.take(N_VALIDATION).cache() -train_ds = packed_ds.skip(N_VALIDATION).take(N_TRAIN).cache() -``` - -```py -train_ds -``` - -```py - - -``` - -These datasets return individual examples. Use the `.batch` method to create batches of an appropriate size for training. Before batching also remember to `.shuffle` and `.repeat` the training set. - -```py -validate_ds = validate_ds.batch(BATCH_SIZE) -train_ds = train_ds.shuffle(BUFFER_SIZE).repeat().batch(BATCH_SIZE) -``` - -## Demonstrate overfitting - -The simplest way to prevent overfitting is to start with a small model: A model with a small number of learnable parameters (which is determined by the number of layers and the number of units per layer). In deep learning, the number of learnable parameters in a model is often referred to as the model's "capacity". - -Intuitively, a model with more parameters will have more "memorization capacity" and therefore will be able to easily learn a perfect dictionary-like mapping between training samples and their targets, a mapping without any generalization power, but this would be useless when making predictions on previously unseen data. - -Always keep this in mind: deep learning models tend to be good at fitting to the training data, but the real challenge is generalization, not fitting. - -On the other hand, if the network has limited memorization resources, it will not be able to learn the mapping as easily. To minimize its loss, it will have to learn compressed representations that have more predictive power. At the same time, if you make your model too small, it will have difficulty fitting to the training data. There is a balance between "too much capacity" and "not enough capacity". - -Unfortunately, there is no magical formula to determine the right size or architecture of your model (in terms of the number of layers, or the right size for each layer). You will have to experiment using a series of different architectures. - -To find an appropriate model size, it's best to start with relatively few layers and parameters, then begin increasing the size of the layers or adding new layers until you see diminishing returns on the validation loss. - -Start with a simple model using only [`layers.Dense`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Dense) as a baseline, then create larger versions, and compare them. - -### Training procedure - -Many models train better if you gradually reduce the learning rate during training. Use [`optimizers.schedules`](https://tensorflow.google.cn/api_docs/python/tf/keras/optimizers/schedules) to reduce the learning rate over time: - -```py -lr_schedule = tf.keras.optimizers.schedules.InverseTimeDecay( - 0.001, - decay_steps=STEPS_PER_EPOCH*1000, - decay_rate=1, - staircase=False) - -def get_optimizer(): - return tf.keras.optimizers.Adam(lr_schedule) -``` - -The code above sets a [`schedules.InverseTimeDecay`](https://tensorflow.google.cn/api_docs/python/tf/keras/optimizers/schedules/InverseTimeDecay) to hyperbolically decrease the learning rate to 1/2 of the base rate at 1000 epochs, 1/3 at 2000 epochs and so on. - -```py -step = np.linspace(0,100000) -lr = lr_schedule(step) -plt.figure(figsize = (8,6)) -plt.plot(step/STEPS_PER_EPOCH, lr) -plt.ylim([0,max(plt.ylim())]) -plt.xlabel('Epoch') -_ = plt.ylabel('Learning Rate') -``` - -![png](img/1d906c8d5397ad3e918d2a91fcfbb78e.png) - -Each model in this tutorial will use the same training configuration. So set these up in a reusable way, starting with the list of callbacks. - -The training for this tutorial runs for many short epochs. To reduce the logging noise use the `tfdocs.EpochDots` which simply prints a `.` for each epoch, and a full set of metrics every 100 epochs. - -Next include [`callbacks.EarlyStopping`](https://tensorflow.google.cn/api_docs/python/tf/keras/callbacks/EarlyStopping) to avoid long and unnecessary training times. Note that this callback is set to monitor the `val_binary_crossentropy`, not the `val_loss`. This difference will be important later. - -Use [`callbacks.TensorBoard`](https://tensorflow.google.cn/api_docs/python/tf/keras/callbacks/TensorBoard) to generate TensorBoard logs for the training. - -```py -def get_callbacks(name): - return [ - tfdocs.modeling.EpochDots(), - tf.keras.callbacks.EarlyStopping(monitor='val_binary_crossentropy', patience=200), - tf.keras.callbacks.TensorBoard(logdir/name), - ] -``` - -Similarly each model will use the same [`Model.compile`](https://tensorflow.google.cn/api_docs/python/tf/keras/Model#compile) and [`Model.fit`](https://tensorflow.google.cn/api_docs/python/tf/keras/Model#fit) settings: - -```py -def compile_and_fit(model, name, optimizer=None, max_epochs=10000): - if optimizer is None: - optimizer = get_optimizer() - model.compile(optimizer=optimizer, - loss=tf.keras.losses.BinaryCrossentropy(from_logits=True), - metrics=[ - tf.keras.losses.BinaryCrossentropy( - from_logits=True, name='binary_crossentropy'), - 'accuracy']) - - model.summary() - - history = model.fit( - train_ds, - steps_per_epoch = STEPS_PER_EPOCH, - epochs=max_epochs, - validation_data=validate_ds, - callbacks=get_callbacks(name), - verbose=0) - return history -``` - -### Tiny model - -Start by training a model: - -```py -tiny_model = tf.keras.Sequential([ - layers.Dense(16, activation='elu', input_shape=(FEATURES,)), - layers.Dense(1) -]) -``` - -```py -size_histories = {} -``` - -```py -size_histories['Tiny'] = compile_and_fit(tiny_model, 'sizes/Tiny') -``` - -```py -Model: "sequential" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -dense (Dense) (None, 16) 464 -_________________________________________________________________ -dense_1 (Dense) (None, 1) 17 -================================================================= -Total params: 481 -Trainable params: 481 -Non-trainable params: 0 -_________________________________________________________________ -WARNING:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/ops/summary_ops_v2.py:1277: stop (from tensorflow.python.eager.profiler) is deprecated and will be removed after 2020-07-01. -Instructions for updating: -use `tf.profiler.experimental.stop` instead. -WARNING:tensorflow:Callbacks method `on_train_batch_end` is slow compared to the batch time (batch time: 0.0032s vs `on_train_batch_end` time: 0.0255s). Check your callbacks. - -Epoch: 0, accuracy:0.5092, binary_crossentropy:0.7752, loss:0.7752, val_accuracy:0.5110, val_binary_crossentropy:0.7376, val_loss:0.7376, -.................................................................................................... -Epoch: 100, accuracy:0.6028, binary_crossentropy:0.6251, loss:0.6251, val_accuracy:0.5680, val_binary_crossentropy:0.6271, val_loss:0.6271, -.................................................................................................... -Epoch: 200, accuracy:0.6231, binary_crossentropy:0.6137, loss:0.6137, val_accuracy:0.5920, val_binary_crossentropy:0.6146, val_loss:0.6146, -.................................................................................................... -Epoch: 300, accuracy:0.6356, binary_crossentropy:0.6038, loss:0.6038, val_accuracy:0.6190, val_binary_crossentropy:0.6051, val_loss:0.6051, -.................................................................................................... -Epoch: 400, accuracy:0.6470, binary_crossentropy:0.5963, loss:0.5963, val_accuracy:0.6330, val_binary_crossentropy:0.5968, val_loss:0.5968, -.................................................................................................... -Epoch: 500, accuracy:0.6619, binary_crossentropy:0.5909, loss:0.5909, val_accuracy:0.6280, val_binary_crossentropy:0.5939, val_loss:0.5939, -.................................................................................................... -Epoch: 600, accuracy:0.6618, binary_crossentropy:0.5872, loss:0.5872, val_accuracy:0.6630, val_binary_crossentropy:0.5910, val_loss:0.5910, -.................................................................................................... -Epoch: 700, accuracy:0.6655, binary_crossentropy:0.5847, loss:0.5847, val_accuracy:0.6290, val_binary_crossentropy:0.5940, val_loss:0.5940, -.................................................................................................... -Epoch: 800, accuracy:0.6683, binary_crossentropy:0.5819, loss:0.5819, val_accuracy:0.6510, val_binary_crossentropy:0.5908, val_loss:0.5908, -.................................................................................................... -Epoch: 900, accuracy:0.6722, binary_crossentropy:0.5797, loss:0.5797, val_accuracy:0.6620, val_binary_crossentropy:0.5907, val_loss:0.5907, -.................................................................................................... -Epoch: 1000, accuracy:0.6761, binary_crossentropy:0.5779, loss:0.5779, val_accuracy:0.6470, val_binary_crossentropy:0.5910, val_loss:0.5910, -............................... - -``` - -Now check how the model did: - -```py -plotter = tfdocs.plots.HistoryPlotter(metric = 'binary_crossentropy', smoothing_std=10) -plotter.plot(size_histories) -plt.ylim([0.5, 0.7]) -``` - -```py -(0.5, 0.7) - -``` - -![png](img/f865018e54d4c67ed60313c72d71e99c.png) - -### Small model - -To see if you can beat the performance of the small model, progressively train some larger models. - -Try two hidden layers with 16 units each: - -```py -small_model = tf.keras.Sequential([ - # `input_shape` is only required here so that `.summary` works. - layers.Dense(16, activation='elu', input_shape=(FEATURES,)), - layers.Dense(16, activation='elu'), - layers.Dense(1) -]) -``` - -```py -size_histories['Small'] = compile_and_fit(small_model, 'sizes/Small') -``` - -```py -Model: "sequential_1" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -dense_2 (Dense) (None, 16) 464 -_________________________________________________________________ -dense_3 (Dense) (None, 16) 272 -_________________________________________________________________ -dense_4 (Dense) (None, 1) 17 -================================================================= -Total params: 753 -Trainable params: 753 -Non-trainable params: 0 -_________________________________________________________________ -WARNING:tensorflow:Callbacks method `on_train_batch_end` is slow compared to the batch time (batch time: 0.0037s vs `on_train_batch_end` time: 0.0530s). Check your callbacks. - -Epoch: 0, accuracy:0.5029, binary_crossentropy:0.7257, loss:0.7257, val_accuracy:0.4720, val_binary_crossentropy:0.6927, val_loss:0.6927, -.................................................................................................... -Epoch: 100, accuracy:0.6153, binary_crossentropy:0.6185, loss:0.6185, val_accuracy:0.6290, val_binary_crossentropy:0.6112, val_loss:0.6112, -.................................................................................................... -Epoch: 200, accuracy:0.6551, binary_crossentropy:0.5940, loss:0.5940, val_accuracy:0.6540, val_binary_crossentropy:0.5941, val_loss:0.5941, -.................................................................................................... -Epoch: 300, accuracy:0.6678, binary_crossentropy:0.5824, loss:0.5824, val_accuracy:0.6680, val_binary_crossentropy:0.5904, val_loss:0.5904, -.................................................................................................... -Epoch: 400, accuracy:0.6731, binary_crossentropy:0.5754, loss:0.5754, val_accuracy:0.6630, val_binary_crossentropy:0.5872, val_loss:0.5872, -.................................................................................................... -Epoch: 500, accuracy:0.6836, binary_crossentropy:0.5679, loss:0.5679, val_accuracy:0.6740, val_binary_crossentropy:0.5834, val_loss:0.5834, -.................................................................................................... -Epoch: 600, accuracy:0.6839, binary_crossentropy:0.5617, loss:0.5617, val_accuracy:0.6760, val_binary_crossentropy:0.5849, val_loss:0.5849, -.................................................................................................... - -``` - -### Medium model - -Now try 3 hidden layers with 64 units each: - -```py -medium_model = tf.keras.Sequential([ - layers.Dense(64, activation='elu', input_shape=(FEATURES,)), - layers.Dense(64, activation='elu'), - layers.Dense(64, activation='elu'), - layers.Dense(1) -]) -``` - -And train the model using the same data: - -```py -size_histories['Medium'] = compile_and_fit(medium_model, "sizes/Medium") -``` - -```py -Model: "sequential_2" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -dense_5 (Dense) (None, 64) 1856 -_________________________________________________________________ -dense_6 (Dense) (None, 64) 4160 -_________________________________________________________________ -dense_7 (Dense) (None, 64) 4160 -_________________________________________________________________ -dense_8 (Dense) (None, 1) 65 -================================================================= -Total params: 10,241 -Trainable params: 10,241 -Non-trainable params: 0 -_________________________________________________________________ -WARNING:tensorflow:Callbacks method `on_train_batch_end` is slow compared to the batch time (batch time: 0.0039s vs `on_train_batch_end` time: 0.0548s). Check your callbacks. - -Epoch: 0, accuracy:0.5027, binary_crossentropy:0.6936, loss:0.6936, val_accuracy:0.5150, val_binary_crossentropy:0.6758, val_loss:0.6758, -.................................................................................................... -Epoch: 100, accuracy:0.7075, binary_crossentropy:0.5382, loss:0.5382, val_accuracy:0.6670, val_binary_crossentropy:0.6027, val_loss:0.6027, -.................................................................................................... -Epoch: 200, accuracy:0.7705, binary_crossentropy:0.4498, loss:0.4498, val_accuracy:0.6200, val_binary_crossentropy:0.6833, val_loss:0.6833, -................................................................... - -``` - -### Large model - -As an exercise, you can create an even larger model, and see how quickly it begins overfitting. Next, let's add to this benchmark a network that has much more capacity, far more than the problem would warrant: - -```py -large_model = tf.keras.Sequential([ - layers.Dense(512, activation='elu', input_shape=(FEATURES,)), - layers.Dense(512, activation='elu'), - layers.Dense(512, activation='elu'), - layers.Dense(512, activation='elu'), - layers.Dense(1) -]) -``` - -And, again, train the model using the same data: - -```py -size_histories['large'] = compile_and_fit(large_model, "sizes/large") -``` - -```py -Model: "sequential_3" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -dense_9 (Dense) (None, 512) 14848 -_________________________________________________________________ -dense_10 (Dense) (None, 512) 262656 -_________________________________________________________________ -dense_11 (Dense) (None, 512) 262656 -_________________________________________________________________ -dense_12 (Dense) (None, 512) 262656 -_________________________________________________________________ -dense_13 (Dense) (None, 1) 513 -================================================================= -Total params: 803,329 -Trainable params: 803,329 -Non-trainable params: 0 -_________________________________________________________________ -WARNING:tensorflow:Callbacks method `on_train_batch_end` is slow compared to the batch time (batch time: 0.0041s vs `on_train_batch_end` time: 0.0613s). Check your callbacks. - -Epoch: 0, accuracy:0.5072, binary_crossentropy:0.8249, loss:0.8249, val_accuracy:0.4810, val_binary_crossentropy:0.6884, val_loss:0.6884, -.................................................................................................... -Epoch: 100, accuracy:1.0000, binary_crossentropy:0.0025, loss:0.0025, val_accuracy:0.6590, val_binary_crossentropy:1.8242, val_loss:1.8242, -.................................................................................................... -Epoch: 200, accuracy:1.0000, binary_crossentropy:0.0001, loss:0.0001, val_accuracy:0.6590, val_binary_crossentropy:2.5014, val_loss:2.5014, -...................... - -``` - -### Plot the training and validation losses - -The solid lines show the training loss, and the dashed lines show the validation loss (remember: a lower validation loss indicates a better model). - -While building a larger model gives it more power, if this power is not constrained somehow it can easily overfit to the training set. - -In this example, typically, only the `"Tiny"` model manages to avoid overfitting altogether, and each of the larger models overfit the data more quickly. This becomes so severe for the `"large"` model that you need to switch the plot to a log-scale to really see what's happening. - -This is apparent if you plot and compare the validation metrics to the training metrics. - -* It's normal for there to be a small difference. -* If both metrics are moving in the same direction, everything is fine. -* If the validation metric begins to stagnate while the training metric continues to improve, you are probably close to overfitting. -* If the validation metric is going in the wrong direction, the model is clearly overfitting. - -```py -plotter.plot(size_histories) -a = plt.xscale('log') -plt.xlim([5, max(plt.xlim())]) -plt.ylim([0.5, 0.7]) -plt.xlabel("Epochs [Log Scale]") -``` - -```py -Text(0.5, 0, 'Epochs [Log Scale]') - -``` - -![png](img/4c173dbd57644fa57c04cf1d62ca75e4.png) - -**Note:** All the above training runs used the [`callbacks.EarlyStopping`](https://tensorflow.google.cn/api_docs/python/tf/keras/callbacks/EarlyStopping) to end the training once it was clear the model was not making progress. - -### View in TensorBoard - -These models all wrote TensorBoard logs during training. - -Open an embedded TensorBoard viewer inside a notebook: - -```py - # Load the TensorBoard notebook extension -%load_ext tensorboard - -# Open an embedded TensorBoard viewer -%tensorboard --logdir {logdir}/sizes -``` - -You can view the [results of a previous run](https://tensorboard.dev/experiment/vW7jmmF9TmKmy3rbheMQpw/#scalars&_smoothingWeight=0.97) of this notebook on [TensorBoard.dev](https://tensorboard.dev/). - -TensorBoard.dev is a managed experience for hosting, tracking, and sharing ML experiments with everyone. - -It's also included in an ` - -If you want to share TensorBoard results you can upload the logs to [TensorBoard.dev](https://tensorboard.dev/) by copying the following into a code-cell. - -**Note:** This step requires a Google account. - -```py -tensorboard dev upload --logdir {logdir}/sizes - -``` - -**Caution:** This command does not terminate. It's designed to continuously upload the results of long-running experiments. Once your data is uploaded you need to stop it using the "interrupt execution" option in your notebook tool. - -## Strategies to prevent overfitting - -Before getting into the content of this section copy the training logs from the `"Tiny"` model above, to use as a baseline for comparison. - -```py -shutil.rmtree(logdir/'regularizers/Tiny', ignore_errors=True) -shutil.copytree(logdir/'sizes/Tiny', logdir/'regularizers/Tiny') -``` - -```py -PosixPath('/tmp/tmp9n203dpq/tensorboard_logs/regularizers/Tiny') - -``` - -```py -regularizer_histories = {} -regularizer_histories['Tiny'] = size_histories['Tiny'] -``` - -### Add weight regularization - -You may be familiar with Occam's Razor principle: given two explanations for something, the explanation most likely to be correct is the "simplest" one, the one that makes the least amount of assumptions. This also applies to the models learned by neural networks: given some training data and a network architecture, there are multiple sets of weights values (multiple models) that could explain the data, and simpler models are less likely to overfit than complex ones. - -A "simple model" in this context is a model where the distribution of parameter values has less entropy (or a model with fewer parameters altogether, as we saw in the section above). Thus a common way to mitigate overfitting is to put constraints on the complexity of a network by forcing its weights only to take small values, which makes the distribution of weight values more "regular". This is called "weight regularization", and it is done by adding to the loss function of the network a cost associated with having large weights. This cost comes in two flavors: - -* [L1 regularization](https://developers.google.cn/machine-learning/glossary/#L1_regularization), where the cost added is proportional to the absolute value of the weights coefficients (i.e. to what is called the "L1 norm" of the weights). - -* [L2 regularization](https://developers.google.cn/machine-learning/glossary/#L2_regularization), where the cost added is proportional to the square of the value of the weights coefficients (i.e. to what is called the squared "L2 norm" of the weights). L2 regularization is also called weight decay in the context of neural networks. Don't let the different name confuse you: weight decay is mathematically the exact same as L2 regularization. - -L1 regularization pushes weights towards exactly zero encouraging a sparse model. L2 regularization will penalize the weights parameters without making them sparse since the penalty goes to zero for small weights. one reason why L2 is more common. - -In [`tf.keras`](https://tensorflow.google.cn/api_docs/python/tf/keras), weight regularization is added by passing weight regularizer instances to layers as keyword arguments. Let's add L2 weight regularization now. - -```py -l2_model = tf.keras.Sequential([ - layers.Dense(512, activation='elu', - kernel_regularizer=regularizers.l2(0.001), - input_shape=(FEATURES,)), - layers.Dense(512, activation='elu', - kernel_regularizer=regularizers.l2(0.001)), - layers.Dense(512, activation='elu', - kernel_regularizer=regularizers.l2(0.001)), - layers.Dense(512, activation='elu', - kernel_regularizer=regularizers.l2(0.001)), - layers.Dense(1) -]) - -regularizer_histories['l2'] = compile_and_fit(l2_model, "regularizers/l2") -``` - -```py -Model: "sequential_4" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -dense_14 (Dense) (None, 512) 14848 -_________________________________________________________________ -dense_15 (Dense) (None, 512) 262656 -_________________________________________________________________ -dense_16 (Dense) (None, 512) 262656 -_________________________________________________________________ -dense_17 (Dense) (None, 512) 262656 -_________________________________________________________________ -dense_18 (Dense) (None, 1) 513 -================================================================= -Total params: 803,329 -Trainable params: 803,329 -Non-trainable params: 0 -_________________________________________________________________ -WARNING:tensorflow:Callbacks method `on_train_batch_end` is slow compared to the batch time (batch time: 0.0040s vs `on_train_batch_end` time: 0.0613s). Check your callbacks. - -Epoch: 0, accuracy:0.5087, binary_crossentropy:0.8160, loss:2.3363, val_accuracy:0.4770, val_binary_crossentropy:0.6979, val_loss:2.1441, -.................................................................................................... -Epoch: 100, accuracy:0.6607, binary_crossentropy:0.5920, loss:0.6163, val_accuracy:0.6530, val_binary_crossentropy:0.5831, val_loss:0.6076, -.................................................................................................... -Epoch: 200, accuracy:0.6820, binary_crossentropy:0.5789, loss:0.6033, val_accuracy:0.6690, val_binary_crossentropy:0.5799, val_loss:0.6044, -.................................................................................................... -Epoch: 300, accuracy:0.6865, binary_crossentropy:0.5696, loss:0.5947, val_accuracy:0.6360, val_binary_crossentropy:0.5839, val_loss:0.6088, -.................................................................................................... -Epoch: 400, accuracy:0.6908, binary_crossentropy:0.5639, loss:0.5908, val_accuracy:0.6840, val_binary_crossentropy:0.5898, val_loss:0.6167, -.......................................... - -``` - -`l2(0.001)` means that every coefficient in the weight matrix of the layer will add `0.001 * weight_coefficient_value**2` to the total **loss** of the network. - -That is why we're monitoring the `binary_crossentropy` directly. Because it doesn't have this regularization component mixed in. - -So, that same `"Large"` model with an `L2` regularization penalty performs much better: - -```py -plotter.plot(regularizer_histories) -plt.ylim([0.5, 0.7]) -``` - -```py -(0.5, 0.7) - -``` - -![png](img/87e59b9663f1f875cba8bbc04b3ec8d7.png) - -As you can see, the `"L2"` regularized model is now much more competitive with the the `"Tiny"` model. This `"L2"` model is also much more resistant to overfitting than the `"Large"` model it was based on despite having the same number of parameters. - -#### More info - -There are two important things to note about this sort of regularization. - -**First:** if you are writing your own training loop, then you need to be sure to ask the model for its regularization losses. - -```py -result = l2_model(features) -regularization_loss=tf.add_n(l2_model.losses) -``` - -**Second:** This implementation works by adding the weight penalties to the model's loss, and then applying a standard optimization procedure after that. - -There is a second approach that instead only runs the optimizer on the raw loss, and then while applying the calculated step the optimizer also applies some weight decay. This "Decoupled Weight Decay" is seen in optimizers like `optimizers.FTRL` and [`optimizers.AdamW`](https://tensorflow.google.cn/addons/api_docs/python/tfa/optimizers/AdamW). - -### Add dropout - -Dropout is one of the most effective and most commonly used regularization techniques for neural networks, developed by Hinton and his students at the University of Toronto. - -The intuitive explanation for dropout is that because individual nodes in the network cannot rely on the output of the others, each node must output features that are useful on their own. - -Dropout, applied to a layer, consists of randomly "dropping out" (i.e. set to zero) a number of output features of the layer during training. Let's say a given layer would normally have returned a vector [0.2, 0.5, 1.3, 0.8, 1.1] for a given input sample during training; after applying dropout, this vector will have a few zero entries distributed at random, e.g. [0, 0.5, 1.3, 0, 1.1]. - -The "dropout rate" is the fraction of the features that are being zeroed-out; it is usually set between 0.2 and 0.5\. At test time, no units are dropped out, and instead the layer's output values are scaled down by a factor equal to the dropout rate, so as to balance for the fact that more units are active than at training time. - -In [`tf.keras`](https://tensorflow.google.cn/api_docs/python/tf/keras) you can introduce dropout in a network via the Dropout layer, which gets applied to the output of layer right before. - -Let's add two Dropout layers in our network to see how well they do at reducing overfitting: - -```py -dropout_model = tf.keras.Sequential([ - layers.Dense(512, activation='elu', input_shape=(FEATURES,)), - layers.Dropout(0.5), - layers.Dense(512, activation='elu'), - layers.Dropout(0.5), - layers.Dense(512, activation='elu'), - layers.Dropout(0.5), - layers.Dense(512, activation='elu'), - layers.Dropout(0.5), - layers.Dense(1) -]) - -regularizer_histories['dropout'] = compile_and_fit(dropout_model, "regularizers/dropout") -``` - -```py -Model: "sequential_5" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -dense_19 (Dense) (None, 512) 14848 -_________________________________________________________________ -dropout (Dropout) (None, 512) 0 -_________________________________________________________________ -dense_20 (Dense) (None, 512) 262656 -_________________________________________________________________ -dropout_1 (Dropout) (None, 512) 0 -_________________________________________________________________ -dense_21 (Dense) (None, 512) 262656 -_________________________________________________________________ -dropout_2 (Dropout) (None, 512) 0 -_________________________________________________________________ -dense_22 (Dense) (None, 512) 262656 -_________________________________________________________________ -dropout_3 (Dropout) (None, 512) 0 -_________________________________________________________________ -dense_23 (Dense) (None, 1) 513 -================================================================= -Total params: 803,329 -Trainable params: 803,329 -Non-trainable params: 0 -_________________________________________________________________ -WARNING:tensorflow:Callbacks method `on_train_batch_end` is slow compared to the batch time (batch time: 0.0040s vs `on_train_batch_end` time: 0.0632s). Check your callbacks. - -Epoch: 0, accuracy:0.5073, binary_crossentropy:0.7984, loss:0.7984, val_accuracy:0.5200, val_binary_crossentropy:0.6761, val_loss:0.6761, -.................................................................................................... -Epoch: 100, accuracy:0.6576, binary_crossentropy:0.5965, loss:0.5965, val_accuracy:0.6730, val_binary_crossentropy:0.5833, val_loss:0.5833, -.................................................................................................... -Epoch: 200, accuracy:0.6861, binary_crossentropy:0.5554, loss:0.5554, val_accuracy:0.6790, val_binary_crossentropy:0.5830, val_loss:0.5830, -.................................................................................................... -Epoch: 300, accuracy:0.7280, binary_crossentropy:0.5102, loss:0.5102, val_accuracy:0.6860, val_binary_crossentropy:0.6088, val_loss:0.6088, -................ - -``` - -```py -plotter.plot(regularizer_histories) -plt.ylim([0.5, 0.7]) -``` - -```py -(0.5, 0.7) - -``` - -![png](img/b5a9ca25aab20c2b09a25fdab4c2b92b.png) - -It's clear from this plot that both of these regularization approaches improve the behavior of the `"Large"` model. But this still doesn't beat even the `"Tiny"` baseline. - -Next try them both, together, and see if that does better. - -### Combined L2 + dropout - -```py -combined_model = tf.keras.Sequential([ - layers.Dense(512, kernel_regularizer=regularizers.l2(0.0001), - activation='elu', input_shape=(FEATURES,)), - layers.Dropout(0.5), - layers.Dense(512, kernel_regularizer=regularizers.l2(0.0001), - activation='elu'), - layers.Dropout(0.5), - layers.Dense(512, kernel_regularizer=regularizers.l2(0.0001), - activation='elu'), - layers.Dropout(0.5), - layers.Dense(512, kernel_regularizer=regularizers.l2(0.0001), - activation='elu'), - layers.Dropout(0.5), - layers.Dense(1) -]) - -regularizer_histories['combined'] = compile_and_fit(combined_model, "regularizers/combined") -``` - -```py -Model: "sequential_6" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -dense_24 (Dense) (None, 512) 14848 -_________________________________________________________________ -dropout_4 (Dropout) (None, 512) 0 -_________________________________________________________________ -dense_25 (Dense) (None, 512) 262656 -_________________________________________________________________ -dropout_5 (Dropout) (None, 512) 0 -_________________________________________________________________ -dense_26 (Dense) (None, 512) 262656 -_________________________________________________________________ -dropout_6 (Dropout) (None, 512) 0 -_________________________________________________________________ -dense_27 (Dense) (None, 512) 262656 -_________________________________________________________________ -dropout_7 (Dropout) (None, 512) 0 -_________________________________________________________________ -dense_28 (Dense) (None, 1) 513 -================================================================= -Total params: 803,329 -Trainable params: 803,329 -Non-trainable params: 0 -_________________________________________________________________ -WARNING:tensorflow:Callbacks method `on_train_batch_end` is slow compared to the batch time (batch time: 0.0046s vs `on_train_batch_end` time: 0.0686s). Check your callbacks. - -Epoch: 0, accuracy:0.5034, binary_crossentropy:0.8003, loss:0.9588, val_accuracy:0.5040, val_binary_crossentropy:0.6752, val_loss:0.8330, -.................................................................................................... -Epoch: 100, accuracy:0.6514, binary_crossentropy:0.6067, loss:0.6373, val_accuracy:0.6470, val_binary_crossentropy:0.5868, val_loss:0.6173, -.................................................................................................... -Epoch: 200, accuracy:0.6664, binary_crossentropy:0.5900, loss:0.6158, val_accuracy:0.6510, val_binary_crossentropy:0.5795, val_loss:0.6053, -.................................................................................................... -Epoch: 300, accuracy:0.6690, binary_crossentropy:0.5822, loss:0.6104, val_accuracy:0.6940, val_binary_crossentropy:0.5611, val_loss:0.5892, -.................................................................................................... -Epoch: 400, accuracy:0.6773, binary_crossentropy:0.5764, loss:0.6063, val_accuracy:0.6820, val_binary_crossentropy:0.5539, val_loss:0.5839, -.................................................................................................... -Epoch: 500, accuracy:0.6840, binary_crossentropy:0.5695, loss:0.6012, val_accuracy:0.6870, val_binary_crossentropy:0.5500, val_loss:0.5818, -.................................................................................................... -Epoch: 600, accuracy:0.6821, binary_crossentropy:0.5692, loss:0.6023, val_accuracy:0.6850, val_binary_crossentropy:0.5456, val_loss:0.5787, -.................................................................................................... -Epoch: 700, accuracy:0.6836, binary_crossentropy:0.5678, loss:0.6021, val_accuracy:0.6870, val_binary_crossentropy:0.5502, val_loss:0.5846, -.................................................................................................... -Epoch: 800, accuracy:0.6908, binary_crossentropy:0.5585, loss:0.5940, val_accuracy:0.7000, val_binary_crossentropy:0.5424, val_loss:0.5780, -.................................................................................................... -Epoch: 900, accuracy:0.6931, binary_crossentropy:0.5583, loss:0.5948, val_accuracy:0.6860, val_binary_crossentropy:0.5447, val_loss:0.5813, -.................................................................................................... -Epoch: 1000, accuracy:0.6919, binary_crossentropy:0.5563, loss:0.5940, val_accuracy:0.7100, val_binary_crossentropy:0.5422, val_loss:0.5799, -.................................................................................................... -Epoch: 1100, accuracy:0.6914, binary_crossentropy:0.5545, loss:0.5935, val_accuracy:0.6940, val_binary_crossentropy:0.5375, val_loss:0.5765, -.................................................................................................... -Epoch: 1200, accuracy:0.7012, binary_crossentropy:0.5466, loss:0.5867, val_accuracy:0.6970, val_binary_crossentropy:0.5429, val_loss:0.5831, -.................................................................................................... -Epoch: 1300, accuracy:0.6939, binary_crossentropy:0.5491, loss:0.5903, val_accuracy:0.6950, val_binary_crossentropy:0.5477, val_loss:0.5890, -.. - -``` - -```py -plotter.plot(regularizer_histories) -plt.ylim([0.5, 0.7]) -``` - -```py -(0.5, 0.7) - -``` - -![png](img/77a7189086e1a02a870dbf630c311e5d.png) - -This model with the `"Combined"` regularization is obviously the best one so far. - -### View in TensorBoard - -These models also recorded TensorBoard logs. - -To open an embedded tensorboard viewer inside a notebook, copy the following into a code-cell: - -```py -%tensorboard --logdir {logdir}/regularizers -``` - -You can view the [results of a previous run](https://tensorboard.dev/experiment/fGInKDo8TXes1z7HQku9mw/#scalars&_smoothingWeight=0.97) of this notebook on [TensorDoard.dev](https://tensorboard.dev/). - -It's also included in an ` - -This was uploaded with: - -```py -tensorboard dev upload --logdir {logdir}/regularizers - -``` - -## Conclusions - -To recap: here are the most common ways to prevent overfitting in neural networks: - -* Get more training data. -* Reduce the capacity of the network. -* Add weight regularization. -* Add dropout. - -Two important approaches not covered in this guide are: - -* data-augmentation -* batch normalization - -Remember that each method can help on its own, but often combining them can be even more effective. - -```py -# MIT License -# -# Copyright (c) 2017 François Chollet -# -# Permission is hereby granted, free of charge, to any person obtaining a -# copy of this software and associated documentation files (the "Software"), -# to deal in the Software without restriction, including without limitation -# the rights to use, copy, modify, merge, publish, distribute, sublicense, -# and/or sell copies of the Software, and to permit persons to whom the -# Software is furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -# DEALINGS IN THE SOFTWARE. -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/011.md b/Tensorflow/TensorFlow2.0/011.md deleted file mode 100644 index 616ca1de..00000000 --- a/Tensorflow/TensorFlow2.0/011.md +++ /dev/null @@ -1,610 +0,0 @@ -# 保存和恢复模型 - -> 原文:[https://tensorflow.google.cn/tutorials/keras/save_and_load](https://tensorflow.google.cn/tutorials/keras/save_and_load) - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -模型可以在训练期间和训练完成后进行保存。这意味着模型可以从任意中断中恢复,并避免耗费比较长的时间在训练上。保存也意味着您可以共享您的模型,而其他人可以通过您的模型来重新创建工作。在发布研究模型和技术时,大多数机器学习从业者分享: - -* 用于创建模型的代码 -* 模型训练的权重 (weight) 和参数 (parameters) 。 - -共享数据有助于其他人了解模型的工作原理,并使用新数据自行尝试。 - -注意:小心不受信任的代码——Tensorflow 模型是代码。有关详细信息,请参阅 [安全使用 Tensorflow](https://github.com/tensorflow/tensorflow/blob/master/SECURITY.md)。 - -### 选项 - -保存 Tensorflow 的模型有许多方法——具体取决于您使用的 API。本指南使用 [tf.keras](https://tensorflow.google.cn/guide/keras), 一个高级 API 用于在 Tensorflow 中构建和训练模型。有关其他方法的实现,请参阅 TensorFlow [保存和恢复](https://tensorflow.google.cn/guide/saved_model)指南或[保存到 eager](https://tensorflow.google.cn/guide/eager#object-based_saving)。 - -## 配置 - -### 安装并导入 - -安装并导入 Tensorflow 和依赖项: - -```py -pip install -q pyyaml h5py # 以 HDF5 格式保存模型所必须 - -``` - -```py -WARNING: You are using pip version 20.2.2; however, version 20.2.3 is available. -You should consider upgrading via the '/tmpfs/src/tf_docs_env/bin/python -m pip install --upgrade pip' command. - -``` - -```py -import os - -import tensorflow as tf -from tensorflow import keras - -print(tf.version.VERSION) -``` - -```py -2.3.0 - -``` - -### 获取示例数据集 - -要演示如何保存和加载权重,您将使用 [MNIST 数据集](http://yann.lecun.com/exdb/mnist/). 要加快运行速度,请使用前 1000 个示例: - -```py -(train_images, train_labels), (test_images, test_labels) = tf.keras.datasets.mnist.load_data() - -train_labels = train_labels[:1000] -test_labels = test_labels[:1000] - -train_images = train_images[:1000].reshape(-1, 28 * 28) / 255.0 -test_images = test_images[:1000].reshape(-1, 28 * 28) / 255.0 -``` - -### 定义模型 - -首先构建一个简单的序列(sequential)模型: - -```py -# 定义一个简单的序列模型 -def create_model(): - model = tf.keras.models.Sequential([ - keras.layers.Dense(512, activation='relu', input_shape=(784,)), - keras.layers.Dropout(0.2), - keras.layers.Dense(10) - ]) - - model.compile(optimizer='adam', - loss=tf.losses.SparseCategoricalCrossentropy(from_logits=True), - metrics=['accuracy']) - - return model - -# 创建一个基本的模型实例 -model = create_model() - -# 显示模型的结构 -model.summary() -``` - -```py -Model: "sequential" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -dense (Dense) (None, 512) 401920 -_________________________________________________________________ -dropout (Dropout) (None, 512) 0 -_________________________________________________________________ -dense_1 (Dense) (None, 10) 5130 -================================================================= -Total params: 407,050 -Trainable params: 407,050 -Non-trainable params: 0 -_________________________________________________________________ - -``` - -## 在训练期间保存模型(以 checkpoints 形式保存) - -您可以使用训练好的模型而无需从头开始重新训练,或在您打断的地方开始训练,以防止训练过程没有保存。 [`tf.keras.callbacks.ModelCheckpoint`](https://tensorflow.google.cn/api_docs/python/tf/keras/callbacks/ModelCheckpoint) 允许在训练的*过程中*和*结束时*回调保存的模型。 - -### Checkpoint 回调用法 - -创建一个只在训练期间保存权重的 [`tf.keras.callbacks.ModelCheckpoint`](https://tensorflow.google.cn/api_docs/python/tf/keras/callbacks/ModelCheckpoint) 回调: - -```py -checkpoint_path = "training_1/cp.ckpt" -checkpoint_dir = os.path.dirname(checkpoint_path) - -# 创建一个保存模型权重的回调 -cp_callback = tf.keras.callbacks.ModelCheckpoint(filepath=checkpoint_path, - save_weights_only=True, - verbose=1) - -# 使用新的回调训练模型 -model.fit(train_images, - train_labels, - epochs=10, - validation_data=(test_images,test_labels), - callbacks=[cp_callback]) # 通过回调训练 - -# 这可能会生成与保存优化程序状态相关的警告。 -# 这些警告(以及整个笔记本中的类似警告) -# 是防止过时使用,可以忽略。 -``` - -```py -Epoch 1/10 -29/32 [==========================>...] - ETA: 0s - loss: 1.1844 - accuracy: 0.6595 -Epoch 00001: saving model to training_1/cp.ckpt -32/32 [==============================] - 0s 8ms/step - loss: 1.1300 - accuracy: 0.6770 - val_loss: 0.7189 - val_accuracy: 0.7780 -Epoch 2/10 -30/32 [===========================>..] - ETA: 0s - loss: 0.4232 - accuracy: 0.8792 -Epoch 00002: saving model to training_1/cp.ckpt -32/32 [==============================] - 0s 5ms/step - loss: 0.4216 - accuracy: 0.8800 - val_loss: 0.5160 - val_accuracy: 0.8470 -Epoch 3/10 -29/32 [==========================>...] - ETA: 0s - loss: 0.2964 - accuracy: 0.9149 -Epoch 00003: saving model to training_1/cp.ckpt -32/32 [==============================] - 0s 4ms/step - loss: 0.2988 - accuracy: 0.9170 - val_loss: 0.4753 - val_accuracy: 0.8560 -Epoch 4/10 -29/32 [==========================>...] - ETA: 0s - loss: 0.2057 - accuracy: 0.9494 -Epoch 00004: saving model to training_1/cp.ckpt -32/32 [==============================] - 0s 4ms/step - loss: 0.2086 - accuracy: 0.9500 - val_loss: 0.4375 - val_accuracy: 0.8600 -Epoch 5/10 -29/32 [==========================>...] - ETA: 0s - loss: 0.1512 - accuracy: 0.9666 -Epoch 00005: saving model to training_1/cp.ckpt -32/32 [==============================] - 0s 4ms/step - loss: 0.1488 - accuracy: 0.9680 - val_loss: 0.4275 - val_accuracy: 0.8660 -Epoch 6/10 -30/32 [===========================>..] - ETA: 0s - loss: 0.1130 - accuracy: 0.9823 -Epoch 00006: saving model to training_1/cp.ckpt -32/32 [==============================] - 0s 4ms/step - loss: 0.1134 - accuracy: 0.9820 - val_loss: 0.4309 - val_accuracy: 0.8630 -Epoch 7/10 -29/32 [==========================>...] - ETA: 0s - loss: 0.0829 - accuracy: 0.9925 -Epoch 00007: saving model to training_1/cp.ckpt -32/32 [==============================] - 0s 4ms/step - loss: 0.0838 - accuracy: 0.9920 - val_loss: 0.4079 - val_accuracy: 0.8680 -Epoch 8/10 -29/32 [==========================>...] - ETA: 0s - loss: 0.0624 - accuracy: 0.9946 -Epoch 00008: saving model to training_1/cp.ckpt -32/32 [==============================] - 0s 4ms/step - loss: 0.0627 - accuracy: 0.9950 - val_loss: 0.4176 - val_accuracy: 0.8690 -Epoch 9/10 -29/32 [==========================>...] - ETA: 0s - loss: 0.0520 - accuracy: 0.9946 -Epoch 00009: saving model to training_1/cp.ckpt -32/32 [==============================] - 0s 4ms/step - loss: 0.0508 - accuracy: 0.9950 - val_loss: 0.4600 - val_accuracy: 0.8450 -Epoch 10/10 -29/32 [==========================>...] - ETA: 0s - loss: 0.0462 - accuracy: 0.9968 -Epoch 00010: saving model to training_1/cp.ckpt -32/32 [==============================] - 0s 4ms/step - loss: 0.0459 - accuracy: 0.9970 - val_loss: 0.4378 - val_accuracy: 0.8660 - - - -``` - -这将创建一个 TensorFlow checkpoint 文件集合,这些文件在每个 epoch 结束时更新: - -```py -ls {checkpoint_dir} - -``` - -```py -checkpoint cp.ckpt.data-00000-of-00001 cp.ckpt.index - -``` - -创建一个新的未经训练的模型。仅恢复模型的权重时,必须具有与原始模型具有相同网络结构的模型。由于模型具有相同的结构,您可以共享权重,尽管它是模型的不同*实例*。 现在重建一个新的未经训练的模型,并在测试集上进行评估。未经训练的模型将在机会水平(chance levels)上执行(准确度约为 10%): - -```py -# 创建一个基本模型实例 -model = create_model() - -# 评估模型 -loss, acc = model.evaluate(test_images, test_labels, verbose=2) -print("Untrained model, accuracy: {:5.2f}%".format(100*acc)) -``` - -```py -32/32 - 0s - loss: 2.3734 - accuracy: 0.0990 -Untrained model, accuracy: 9.90% - -``` - -然后从 checkpoint 加载权重并重新评估: - -```py -# 加载权重 -model.load_weights(checkpoint_path) - -# 重新评估模型 -loss,acc = model.evaluate(test_images, test_labels, verbose=2) -print("Restored model, accuracy: {:5.2f}%".format(100*acc)) -``` - -```py -32/32 - 0s - loss: 0.4378 - accuracy: 0.8660 -Restored model, accuracy: 86.60% - -``` - -### checkpoint 回调选项 - -回调提供了几个选项,为 checkpoint 提供唯一名称并调整 checkpoint 频率。 - -训练一个新模型,每五个 epochs 保存一次唯一命名的 checkpoint : - -```py -# 在文件名中包含 epoch (使用 `str.format`) -checkpoint_path = "training_2/cp-{epoch:04d}.ckpt" -checkpoint_dir = os.path.dirname(checkpoint_path) - -# 创建一个回调,每 5 个 epochs 保存模型的权重 -cp_callback = tf.keras.callbacks.ModelCheckpoint( - filepath=checkpoint_path, - verbose=1, - save_weights_only=True, - period=5) - -# 创建一个新的模型实例 -model = create_model() - -# 使用 `checkpoint_path` 格式保存权重 -model.save_weights(checkpoint_path.format(epoch=0)) - -# 使用新的回调训练模型 -model.fit(train_images, - train_labels, - epochs=50, - callbacks=[cp_callback], - validation_data=(test_images,test_labels), - verbose=0) -``` - -```py -WARNING:tensorflow:`period` argument is deprecated. Please use `save_freq` to specify the frequency in number of batches seen. -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer.iter -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer.beta_1 -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer.beta_2 -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer.decay -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer.learning_rate -WARNING:tensorflow:A checkpoint was restored (e.g. tf.train.Checkpoint.restore or tf.keras.Model.load_weights) but not all checkpointed values were used. See above for specific issues. Use expect_partial() on the load status object, e.g. tf.train.Checkpoint.restore(...).expect_partial(), to silence these warnings, or use assert_consumed() to make the check explicit. See https://www.tensorflow.org/guide/checkpoint#loading_mechanics for details. - -Epoch 00005: saving model to training_2/cp-0005.ckpt - -Epoch 00010: saving model to training_2/cp-0010.ckpt - -Epoch 00015: saving model to training_2/cp-0015.ckpt - -Epoch 00020: saving model to training_2/cp-0020.ckpt - -Epoch 00025: saving model to training_2/cp-0025.ckpt - -Epoch 00030: saving model to training_2/cp-0030.ckpt - -Epoch 00035: saving model to training_2/cp-0035.ckpt - -Epoch 00040: saving model to training_2/cp-0040.ckpt - -Epoch 00045: saving model to training_2/cp-0045.ckpt - -Epoch 00050: saving model to training_2/cp-0050.ckpt - - - -``` - -现在查看生成的 checkpoint 并选择最新的 checkpoint : - -```py -ls {checkpoint_dir} - -``` - -```py -checkpoint cp-0025.ckpt.index -cp-0000.ckpt.data-00000-of-00001 cp-0030.ckpt.data-00000-of-00001 -cp-0000.ckpt.index cp-0030.ckpt.index -cp-0005.ckpt.data-00000-of-00001 cp-0035.ckpt.data-00000-of-00001 -cp-0005.ckpt.index cp-0035.ckpt.index -cp-0010.ckpt.data-00000-of-00001 cp-0040.ckpt.data-00000-of-00001 -cp-0010.ckpt.index cp-0040.ckpt.index -cp-0015.ckpt.data-00000-of-00001 cp-0045.ckpt.data-00000-of-00001 -cp-0015.ckpt.index cp-0045.ckpt.index -cp-0020.ckpt.data-00000-of-00001 cp-0050.ckpt.data-00000-of-00001 -cp-0020.ckpt.index cp-0050.ckpt.index -cp-0025.ckpt.data-00000-of-00001 - -``` - -```py -latest = tf.train.latest_checkpoint(checkpoint_dir) -latest -``` - -```py -'training_2/cp-0050.ckpt' - -``` - -注意: 默认的 tensorflow 格式仅保存最近的 5 个 checkpoint 。 - -如果要进行测试,请重置模型并加载最新的 checkpoint : - -```py -# 创建一个新的模型实例 -model = create_model() - -# 加载以前保存的权重 -model.load_weights(latest) - -# 重新评估模型 -loss, acc = model.evaluate(test_images, test_labels, verbose=2) -print("Restored model, accuracy: {:5.2f}%".format(100*acc)) -``` - -```py -32/32 - 0s - loss: 0.4836 - accuracy: 0.8750 -Restored model, accuracy: 87.50% - -``` - -## 这些文件是什么? - -上述代码将权重存储到 [checkpoint](https://tensorflow.google.cn/guide/saved_model#save_and_restore_variables)—— 格式化文件的集合中,这些文件仅包含二进制格式的训练权重。 Checkpoints 包含: - -* 一个或多个包含模型权重的分片。 -* 索引文件,指示哪些权重存储在哪个分片中。 - -如果你只在一台机器上训练一个模型,你将有一个带有后缀的碎片: `.data-00000-of-00001` - -## 手动保存权重 - -您将了解如何将权重加载到模型中。使用 [`Model.save_weights`](https://tensorflow.google.cn/api_docs/python/tf/keras/Model#save_weights) 方法手动保存它们同样简单。默认情况下, [`tf.keras`](https://tensorflow.google.cn/api_docs/python/tf/keras) 和 `save_weights` 特别使用 TensorFlow [checkpoints](https://tensorflow.google.cn/guide/keras/checkpoints) 格式 `.ckpt` 扩展名和 ( 保存在 [HDF5](https://js.tensorflow.org/tutorials/import-keras.html) 扩展名为 `.h5` [保存并序列化模型](https://tensorflow.google.cn/guide/keras/save_and_serialize#weights_only_saving_in_savedmodel_format) ): - -```py -# 保存权重 -model.save_weights('./checkpoints/my_checkpoint') - -# 创建模型实例 -model = create_model() - -# 恢复权重 -model.load_weights('./checkpoints/my_checkpoint') - -# 评估模型 -loss,acc = model.evaluate(test_images, test_labels, verbose=2) -print("Restored model, accuracy: {:5.2f}%".format(100*acc)) -``` - -```py -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer.iter -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer.beta_1 -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer.beta_2 -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer.decay -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer.learning_rate -WARNING:tensorflow:A checkpoint was restored (e.g. tf.train.Checkpoint.restore or tf.keras.Model.load_weights) but not all checkpointed values were used. See above for specific issues. Use expect_partial() on the load status object, e.g. tf.train.Checkpoint.restore(...).expect_partial(), to silence these warnings, or use assert_consumed() to make the check explicit. See https://www.tensorflow.org/guide/checkpoint#loading_mechanics for details. -32/32 - 0s - loss: 0.4836 - accuracy: 0.8750 -Restored model, accuracy: 87.50% - -``` - -## 保存整个模型 - -调用 [`model.save`](https://tensorflow.google.cn/api_docs/python/tf/keras/Model#save) 将保存模型的结构,权重和训练配置保存在单个文件/文件夹中。这可以让您导出模型,以便在不访问原始 Python 代码*的情况下使用它。因为优化器状态(optimizer-state)已经恢复,您可以从中断的位置恢复训练。 - -整个模型可以以两种不同的文件格式(`SavedModel` 和 `HDF5`)进行保存。需要注意的是 TensorFlow 的 `SavedModel` 格式是 TF2.x. 中的默认文件格式。但是,模型仍可以以 `HDF5` 格式保存。下面介绍了以两种文件格式保存整个模型的更多详细信息。 - -保存完整模型会非常有用——您可以在 TensorFlow.js([Saved Model](https://tensorflow.google.cn/js/tutorials/conversion/import_saved_model), [HDF5](https://tensorflow.google.cn/js/tutorials/conversion/import_keras))加载它们,然后在 web 浏览器中训练和运行它们,或者使用 TensorFlow Lite 将它们转换为在移动设备上运行([Saved Model](https://tensorflow.google.cn/lite/convert/python_api#converting_a_savedmodel_), [HDF5](https://tensorflow.google.cn/lite/convert/python_api#converting_a_keras_model_)) - -*自定义对象(例如,子类化模型或层)在保存和加载时需要特别注意。请参阅下面的**保存自定义对象**部分 - -### SavedModel 格式 - -SavedModel 格式是序列化模型的另一种方法。以这种格式保存的模型,可以使用 [`tf.keras.models.load_model`](https://tensorflow.google.cn/api_docs/python/tf/keras/models/load_model) 还原,并且模型与 TensorFlow Serving 兼容。[SavedModel 指南](https://tensorflow.google.cn/guide/saved_model)详细介绍了如何提供/检查 SavedModel。以下部分说明了保存和还原模型的步骤。 - -```py -# 创建并训练一个新的模型实例。 -model = create_model() -model.fit(train_images, train_labels, epochs=5) - -# 将整个模型另存为 SavedModel。 -!mkdir -p saved_model -model.save('saved_model/my_model') -``` - -```py -Epoch 1/5 -32/32 [==============================] - 0s 2ms/step - loss: 1.1705 - accuracy: 0.6690 -Epoch 2/5 -32/32 [==============================] - 0s 2ms/step - loss: 0.4326 - accuracy: 0.8780 -Epoch 3/5 -32/32 [==============================] - 0s 2ms/step - loss: 0.2910 - accuracy: 0.9190 -Epoch 4/5 -32/32 [==============================] - 0s 2ms/step - loss: 0.2045 - accuracy: 0.9520 -Epoch 5/5 -32/32 [==============================] - 0s 2ms/step - loss: 0.1538 - accuracy: 0.9650 -WARNING:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/training/tracking/tracking.py:111: Model.state_updates (from tensorflow.python.keras.engine.training) is deprecated and will be removed in a future version. -Instructions for updating: -This property should not be used in TensorFlow 2.0, as updates are applied automatically. -WARNING:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/training/tracking/tracking.py:111: Layer.updates (from tensorflow.python.keras.engine.base_layer) is deprecated and will be removed in a future version. -Instructions for updating: -This property should not be used in TensorFlow 2.0, as updates are applied automatically. -INFO:tensorflow:Assets written to: saved_model/my_model/assets - -``` - -SavedModel 格式是一个包含 protobuf 二进制文件和 Tensorflow 检查点(checkpoint)的目录。检查保存的模型目录: - -```py -# my_model 文件夹 -ls saved_model - -# 包含一个 assets 文件夹,saved_model.pb,和变量文件夹。 -ls saved_model/my_model - -``` - -```py -my_model -assets saved_model.pb variables - -``` - -从保存的模型重新加载新的 Keras 模型: - -```py -new_model = tf.keras.models.load_model('saved_model/my_model') - -# 检查其架构 -new_model.summary() -``` - -```py -Model: "sequential_5" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -dense_10 (Dense) (None, 512) 401920 -_________________________________________________________________ -dropout_5 (Dropout) (None, 512) 0 -_________________________________________________________________ -dense_11 (Dense) (None, 10) 5130 -================================================================= -Total params: 407,050 -Trainable params: 407,050 -Non-trainable params: 0 -_________________________________________________________________ - -``` - -还原的模型使用与原始模型相同的参数进行编译。 尝试使用加载的模型运行评估和预测: - -```py -# 评估还原的模型 -loss, acc = new_model.evaluate(test_images, test_labels, verbose=2) -print('Restored model, accuracy: {:5.2f}%'.format(100*acc)) - -print(new_model.predict(test_images).shape) -``` - -```py -32/32 - 0s - loss: 0.4630 - accuracy: 0.0890 -Restored model, accuracy: 8.90% -(1000, 10) - -``` - -### HDF5 格式 - -Keras 使用 [HDF5](https://en.wikipedia.org/wiki/Hierarchical_Data_Format) 标准提供了一种基本的保存格式。 - -```py -# 创建并训练一个新的模型实例 -model = create_model() -model.fit(train_images, train_labels, epochs=5) - -# 将整个模型保存为 HDF5 文件。 -# '.h5' 扩展名指示应将模型保存到 HDF5。 -model.save('my_model.h5') -``` - -```py -Epoch 1/5 -32/32 [==============================] - 0s 2ms/step - loss: 1.1465 - accuracy: 0.6560 -Epoch 2/5 -32/32 [==============================] - 0s 2ms/step - loss: 0.4152 - accuracy: 0.8850 -Epoch 3/5 -32/32 [==============================] - 0s 2ms/step - loss: 0.2801 - accuracy: 0.9280 -Epoch 4/5 -32/32 [==============================] - 0s 2ms/step - loss: 0.2108 - accuracy: 0.9480 -Epoch 5/5 -32/32 [==============================] - 0s 2ms/step - loss: 0.1520 - accuracy: 0.9660 - -``` - -现在,从该文件重新创建模型: - -```py -# 重新创建完全相同的模型,包括其权重和优化程序 -new_model = tf.keras.models.load_model('my_model.h5') - -# 显示网络结构 -new_model.summary() -``` - -```py -Model: "sequential_6" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -dense_12 (Dense) (None, 512) 401920 -_________________________________________________________________ -dropout_6 (Dropout) (None, 512) 0 -_________________________________________________________________ -dense_13 (Dense) (None, 10) 5130 -================================================================= -Total params: 407,050 -Trainable params: 407,050 -Non-trainable params: 0 -_________________________________________________________________ - -``` - -检查其准确率(accuracy): - -```py -loss, acc = new_model.evaluate(test_images, test_labels, verbose=2) -print('Restored model, accuracy: {:5.2f}%'.format(100*acc)) -``` - -```py -32/32 - 0s - loss: 0.4639 - accuracy: 0.0840 -Restored model, accuracy: 8.40% - -``` - -Keras 通过检查网络结构来保存模型。这项技术可以保存一切: - -* 权重值 -* 模型的架构 -* 模型的训练配置(您传递给编译的内容) -* 优化器及其状态(如果有的话)(这使您可以在中断的地方重新开始训练) - -Keras 无法保存 `v1.x` 优化器(来自 [`tf.compat.v1.train`](https://tensorflow.google.cn/api_docs/python/tf/compat/v1/train)),因为它们与检查点不兼容。对于 v1.x 优化器,您需要在加载-失去优化器的状态后,重新编译模型。 - -### 保存自定义对象 - -如果使用的是 SavedModel 格式,则可以跳过此部分。HDF5 和 SavedModel 之间的主要区别在于,HDF5 使用对象配置保存模型结构,而 SavedModel 保存执行图。因此,SavedModel 能够保存自定义对象,例如子类化模型和自定义层,而无需原始代码。 - -要将自定义对象保存到 HDF5,必须执行以下操作: - -1. 在对象中定义一个 `get_config` 方法,以及可选的 `from_config` 类方法。 - * `get_config(self)` 返回重新创建对象所需的参数的 JSON 可序列化字典。 - * `from_config(cls, config)` 使用从 get_config 返回的 config 来创建一个新对象。默认情况下,此函数将使用 config 作为初始化 kwargs(`return cls(**config)`)。 -2. 加载模型时,将对象传递给 `custom_objects` 参数。参数必须是将字符串类名称映射到 Python 类的字典。例如,`tf.keras.models.load_model(path, custom_objects={'CustomLayer': CustomLayer})` - -有关自定义对象和 `get_config` 的示例,请参见[从头开始编写层和模型](https://tensorflow.google.cn/guide/keras/custom_layers_and_models)教程。 - -```py -# MIT License -# -# Copyright (c) 2017 François Chollet -# -# Permission is hereby granted, free of charge, to any person obtaining a -# copy of this software and associated documentation files (the "Software"), -# to deal in the Software without restriction, including without limitation -# the rights to use, copy, modify, merge, publish, distribute, sublicense, -# and/or sell copies of the Software, and to permit persons to whom the -# Software is furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -# DEALINGS IN THE SOFTWARE. -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/012.md b/Tensorflow/TensorFlow2.0/012.md deleted file mode 100644 index 466f1be0..00000000 --- a/Tensorflow/TensorFlow2.0/012.md +++ /dev/null @@ -1,180 +0,0 @@ -# Introduction to the Keras Tuner - -> 原文:[https://tensorflow.google.cn/tutorials/keras/keras_tuner](https://tensorflow.google.cn/tutorials/keras/keras_tuner) - -## Overview - -The Keras Tuner is a library that helps you pick the optimal set of hyperparameters for your TensorFlow program. The process of selecting the right set of hyperparameters for your machine learning (ML) application is called *hyperparameter tuning* or *hypertuning*. - -Hyperparameters are the variables that govern the training process and the topology of an ML model. These variables remain constant over the training process and directly impact the performance of your ML program. Hyperparameters are of two types: - -1. **Model hyperparameters** which influence model selection such as the number and width of hidden layers -2. **Algorithm hyperparameters** which influence the speed and quality of the learning algorithm such as the learning rate for Stochastic Gradient Descent (SGD) and the number of nearest neighbors for a k Nearest Neighbors (KNN) classifier - -In this tutorial, you will use the Keras Tuner to perform hypertuning for an image classification application. - -## Setup - -```py -import tensorflow as tf -from tensorflow import keras - -import IPython -``` - -Install and import the Keras Tuner. - -```py -!pip install -q -U keras-tuner -import kerastuner as kt -``` - -```py -WARNING: You are using pip version 20.2.2; however, version 20.2.3 is available. -You should consider upgrading via the '/tmpfs/src/tf_docs_env/bin/python -m pip install --upgrade pip' command. - -``` - -## Download and prepare the dataset - -In this tutorial, you will use the Keras Tuner to find the best hyperparameters for a machine learning model that classifies images of clothing from the [Fashion MNIST dataset](https://github.com/zalandoresearch/fashion-mnist). - -Load the data. - -```py -(img_train, label_train), (img_test, label_test) = keras.datasets.fashion_mnist.load_data() -``` - -```py -# Normalize pixel values between 0 and 1 -img_train = img_train.astype('float32') / 255.0 -img_test = img_test.astype('float32') / 255.0 -``` - -## Define the model - -When you build a model for hypertuning, you also define the hyperparameter search space in addition to the model architecture. The model you set up for hypertuning is called a *hypermodel*. - -You can define a hypermodel through two approaches: - -* By using a model builder function -* By subclassing the `HyperModel` class of the Keras Tuner API - -You can also use two pre-defined `HyperModel` classes - [HyperXception](https://keras-team.github.io/keras-tuner/documentation/hypermodels/#hyperxception-class) and [HyperResNet](https://keras-team.github.io/keras-tuner/documentation/hypermodels/#hyperresnet-class) for computer vision applications. - -In this tutorial, you use a model builder function to define the image classification model. The model builder function returns a compiled model and uses hyperparameters you define inline to hypertune the model. - -```py -def model_builder(hp): - model = keras.Sequential() - model.add(keras.layers.Flatten(input_shape=(28, 28))) - - # Tune the number of units in the first Dense layer - # Choose an optimal value between 32-512 - hp_units = hp.Int('units', min_value = 32, max_value = 512, step = 32) - model.add(keras.layers.Dense(units = hp_units, activation = 'relu')) - model.add(keras.layers.Dense(10)) - - # Tune the learning rate for the optimizer - # Choose an optimal value from 0.01, 0.001, or 0.0001 - hp_learning_rate = hp.Choice('learning_rate', values = [1e-2, 1e-3, 1e-4]) - - model.compile(optimizer = keras.optimizers.Adam(learning_rate = hp_learning_rate), - loss = keras.losses.SparseCategoricalCrossentropy(from_logits = True), - metrics = ['accuracy']) - - return model -``` - -## Instantiate the tuner and perform hypertuning - -Instantiate the tuner to perform the hypertuning. The Keras Tuner has four tuners available - `RandomSearch`, `Hyperband`, `BayesianOptimization`, and `Sklearn`. In this tutorial, you use the [Hyperband](https://arxiv.org/pdf/1603.06560.pdf) tuner. - -To instantiate the Hyperband tuner, you must specify the hypermodel, the `objective` to optimize and the maximum number of epochs to train (`max_epochs`). - -```py -tuner = kt.Hyperband(model_builder, - objective = 'val_accuracy', - max_epochs = 10, - factor = 3, - directory = 'my_dir', - project_name = 'intro_to_kt') -``` - -The Hyperband tuning algorithm uses adaptive resource allocation and early-stopping to quickly converge on a high-performing model. This is done using a sports championship style bracket. The algorithm trains a large number of models for a few epochs and carries forward only the top-performing half of models to the next round. Hyperband determines the number of models to train in a bracket by computing 1 + log`factor`(`max_epochs`) and rounding it up to the nearest integer. - -Before running the hyperparameter search, define a callback to clear the training outputs at the end of every training step. - -```py -class ClearTrainingOutput(tf.keras.callbacks.Callback): - def on_train_end(*args, **kwargs): - IPython.display.clear_output(wait = True) -``` - -Run the hyperparameter search. The arguments for the search method are the same as those used for `tf.keras.model.fit` in addition to the callback above. - -```py -tuner.search(img_train, label_train, epochs = 10, validation_data = (img_test, label_test), callbacks = [ClearTrainingOutput()]) - -# Get the optimal hyperparameters -best_hps = tuner.get_best_hyperparameters(num_trials = 1)[0] - -print(f""" -The hyperparameter search is complete. The optimal number of units in the first densely-connected -layer is {best_hps.get('units')} and the optimal learning rate for the optimizer -is {best_hps.get('learning_rate')}. -""") -``` - - - -```py -Epoch 3/4 - 911/1875 [=============>................] - ETA: 1s - loss: 0.5757 - accuracy: 0.8040 - -``` - -To finish this tutorial, retrain the model with the optimal hyperparameters from the search. - -```py -# Build the model with the optimal hyperparameters and train it on the data -model = tuner.hypermodel.build(best_hps) -model.fit(img_train, label_train, epochs = 10, validation_data = (img_test, label_test)) -``` - -```py -Epoch 1/10 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.4787 - accuracy: 0.8303 - val_loss: 0.4199 - val_accuracy: 0.8509 -Epoch 2/10 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.3600 - accuracy: 0.8684 - val_loss: 0.3902 - val_accuracy: 0.8570 -Epoch 3/10 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.3253 - accuracy: 0.8794 - val_loss: 0.3670 - val_accuracy: 0.8689 -Epoch 4/10 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.3038 - accuracy: 0.8874 - val_loss: 0.3714 - val_accuracy: 0.8684 -Epoch 5/10 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.2842 - accuracy: 0.8939 - val_loss: 0.3527 - val_accuracy: 0.8758 -Epoch 6/10 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.2678 - accuracy: 0.9005 - val_loss: 0.3334 - val_accuracy: 0.8785 -Epoch 7/10 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.2533 - accuracy: 0.9055 - val_loss: 0.3277 - val_accuracy: 0.8834 -Epoch 8/10 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.2445 - accuracy: 0.9089 - val_loss: 0.3487 - val_accuracy: 0.8768 -Epoch 9/10 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.2352 - accuracy: 0.9116 - val_loss: 0.3352 - val_accuracy: 0.8843 -Epoch 10/10 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.2260 - accuracy: 0.9145 - val_loss: 0.3457 - val_accuracy: 0.8814 - - - -``` - -The `my_dir/intro_to_kt` directory contains detailed logs and checkpoints for every trial (model configuration) run during the hyperparameter search. If you re-run the hyperparameter search, the Keras Tuner uses the existing state from these logs to resume the search. To disable this behavior, pass an additional `overwrite = True` argument while instantiating the tuner. - -## Summary - -In this tutorial, you learned how to use the Keras Tuner to tune hyperparameters for a model. To learn more about the Keras Tuner, check out these additional resources: - -* [Keras Tuner on the TensorFlow blog](https://blog.tensorflow.org/2020/01/hyperparameter-tuning-with-keras-tuner.html) -* [Keras Tuner website](https://keras-team.github.io/keras-tuner/) - -Also check out the [HParams Dashboard](https://tensorflow.google.cn/tensorboard/hyperparameter_tuning_with_hparams) in TensorBoard to interactively tune your model hyperparameters. \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/013.md b/Tensorflow/TensorFlow2.0/013.md deleted file mode 100644 index e2a98697..00000000 --- a/Tensorflow/TensorFlow2.0/013.md +++ /dev/null @@ -1 +0,0 @@ -# 加载和预处理数据 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/014.md b/Tensorflow/TensorFlow2.0/014.md deleted file mode 100644 index 77fcec85..00000000 --- a/Tensorflow/TensorFlow2.0/014.md +++ /dev/null @@ -1,872 +0,0 @@ -# 用 tf.data 加载图片 - -> 原文:[https://tensorflow.google.cn/tutorials/load_data/images](https://tensorflow.google.cn/tutorials/load_data/images) - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -本教程提供一个如何使用 [`tf.data`](https://tensorflow.google.cn/api_docs/python/tf/data) 加载图片的简单例子。 - -本例中使用的数据集分布在图片文件夹中,一个文件夹含有一类图片。 - -## 配置 - -```py -import tensorflow as tf -``` - -```py -AUTOTUNE = tf.data.experimental.AUTOTUNE -``` - -## 下载并检查数据集 - -### 检索图片 - -在你开始任何训练之前,你将需要一组图片来教会网络你想要训练的新类别。你已经创建了一个文件夹,存储了最初使用的拥有创作共用许可的花卉照片。 - -```py -import pathlib -data_root_orig = tf.keras.utils.get_file(origin='https://storage.googleapis.com/download.tensorflow.org/example_images/flower_photos.tgz', - fname='flower_photos', untar=True) -data_root = pathlib.Path(data_root_orig) -print(data_root) -``` - -```py -Downloading data from https://storage.googleapis.com/download.tensorflow.org/example_images/flower_photos.tgz -228818944/228813984 [==============================] - 2s 0us/step -/home/kbuilder/.keras/datasets/flower_photos - -``` - -下载了 218 MB 之后,你现在应该有花卉照片副本: - -```py -for item in data_root.iterdir(): - print(item) -``` - -```py -/home/kbuilder/.keras/datasets/flower_photos/sunflowers -/home/kbuilder/.keras/datasets/flower_photos/daisy -/home/kbuilder/.keras/datasets/flower_photos/LICENSE.txt -/home/kbuilder/.keras/datasets/flower_photos/roses -/home/kbuilder/.keras/datasets/flower_photos/tulips -/home/kbuilder/.keras/datasets/flower_photos/dandelion - -``` - -```py -import random -all_image_paths = list(data_root.glob('*/*')) -all_image_paths = [str(path) for path in all_image_paths] -random.shuffle(all_image_paths) - -image_count = len(all_image_paths) -image_count -``` - -```py -3670 - -``` - -```py -all_image_paths[:10] -``` - -```py -['/home/kbuilder/.keras/datasets/flower_photos/daisy/4820415253_15bc3b6833_n.jpg', - '/home/kbuilder/.keras/datasets/flower_photos/roses/14172324538_2147808483_n.jpg', - '/home/kbuilder/.keras/datasets/flower_photos/sunflowers/15054866658_c1a6223403_m.jpg', - '/home/kbuilder/.keras/datasets/flower_photos/daisy/422094774_28acc69a8b_n.jpg', - '/home/kbuilder/.keras/datasets/flower_photos/roses/22982871191_ec61e36939_n.jpg', - '/home/kbuilder/.keras/datasets/flower_photos/tulips/8673416166_620fc18e2f_n.jpg', - '/home/kbuilder/.keras/datasets/flower_photos/tulips/16582481123_06e8e6b966_n.jpg', - '/home/kbuilder/.keras/datasets/flower_photos/daisy/5434914569_e9b982fde0_n.jpg', - '/home/kbuilder/.keras/datasets/flower_photos/sunflowers/184682652_c927a49226_m.jpg', - '/home/kbuilder/.keras/datasets/flower_photos/dandelion/3021333497_b927cd8596.jpg'] - -``` - -### 检查图片 - -现在让我们快速浏览几张图片,这样你知道你在处理什么: - -```py -import os -attributions = (data_root/"LICENSE.txt").open(encoding='utf-8').readlines()[4:] -attributions = [line.split(' CC-BY') for line in attributions] -attributions = dict(attributions) -``` - -```py -import IPython.display as display - -def caption_image(image_path): - image_rel = pathlib.Path(image_path).relative_to(data_root) - return "Image (CC BY 2.0) " + ' - '.join(attributions[str(image_rel)].split(' - ')[:-1]) -``` - -```py -for n in range(3): - image_path = random.choice(all_image_paths) - display.display(display.Image(image_path)) - print(caption_image(image_path)) - print() -``` - -![jpeg](img/e954331a93f7da6b3ebeb6d2c90586f4.png) - -```py -Image (CC BY 2.0) by Pavlina Jane - -``` - -![jpeg](img/82eeef92c3c39a6fc38d679c9e4c37fa.png) - -```py -Image (CC BY 2.0) by Samantha Forsberg - -``` - -![jpeg](img/13fa130027f8343fe8d952fec8dd0555.png) - -```py -Image (CC BY 2.0) by Manu - -``` - -### 确定每张图片的标签 - -列出可用的标签: - -```py -label_names = sorted(item.name for item in data_root.glob('*/') if item.is_dir()) -label_names -``` - -```py -['daisy', 'dandelion', 'roses', 'sunflowers', 'tulips'] - -``` - -为每个标签分配索引: - -```py -label_to_index = dict((name, index) for index, name in enumerate(label_names)) -label_to_index -``` - -```py -{'daisy': 0, 'dandelion': 1, 'roses': 2, 'sunflowers': 3, 'tulips': 4} - -``` - -创建一个列表,包含每个文件的标签索引: - -```py -all_image_labels = [label_to_index[pathlib.Path(path).parent.name] - for path in all_image_paths] - -print("First 10 labels indices: ", all_image_labels[:10]) -``` - -```py -First 10 labels indices: [0, 2, 3, 0, 2, 4, 4, 0, 3, 1] - -``` - -### 加载和格式化图片 - -TensorFlow 包含加载和处理图片时你需要的所有工具: - -```py -img_path = all_image_paths[0] -img_path -``` - -```py -'/home/kbuilder/.keras/datasets/flower_photos/daisy/4820415253_15bc3b6833_n.jpg' - -``` - -以下是原始数据: - -```py -img_raw = tf.io.read_file(img_path) -print(repr(img_raw)[:100]+"...") -``` - -```py - - -``` - -根据你的模型调整其大小: - -```py -img_final = tf.image.resize(img_tensor, [192, 192]) -img_final = img_final/255.0 -print(img_final.shape) -print(img_final.numpy().min()) -print(img_final.numpy().max()) -``` - -```py -(192, 192, 3) -0.0 -1.0 - -``` - -将这些包装在一个简单的函数里,以备后用。 - -```py -def preprocess_image(image): - image = tf.image.decode_jpeg(image, channels=3) - image = tf.image.resize(image, [192, 192]) - image /= 255.0 # normalize to [0,1] range - - return image -``` - -```py -def load_and_preprocess_image(path): - image = tf.io.read_file(path) - return preprocess_image(image) -``` - -```py -import matplotlib.pyplot as plt - -image_path = all_image_paths[0] -label = all_image_labels[0] - -plt.imshow(load_and_preprocess_image(img_path)) -plt.grid(False) -plt.xlabel(caption_image(img_path)) -plt.title(label_names[label].title()) -print() -``` - -![png](img/d99736f992ec3e1883b57ef705221367.png) - -## 构建一个 [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) - -### 一个图片数据集 - -构建 [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) 最简单的方法就是使用 `from_tensor_slices` 方法。 - -将字符串数组切片,得到一个字符串数据集: - -```py -path_ds = tf.data.Dataset.from_tensor_slices(all_image_paths) -``` - -`shapes(维数)` 和 `types(类型)` 描述数据集里每个数据项的内容。在这里是一组标量二进制字符串。 - -```py -print(path_ds) -``` - -```py - - -``` - -现在创建一个新的数据集,通过在路径数据集上映射 `preprocess_image` 来动态加载和格式化图片。 - -```py -image_ds = path_ds.map(load_and_preprocess_image, num_parallel_calls=AUTOTUNE) -``` - -```py -import matplotlib.pyplot as plt - -plt.figure(figsize=(8,8)) -for n, image in enumerate(image_ds.take(4)): - plt.subplot(2,2,n+1) - plt.imshow(image) - plt.grid(False) - plt.xticks([]) - plt.yticks([]) - plt.xlabel(caption_image(all_image_paths[n])) - plt.show() -``` - -![png](img/87f405a26e039fc527ac7f2dd59de28d.png) - -![png](img/309f23cd3db44be87a1c9d9d25619301.png) - -![png](img/461f849577ccb00ee49683e824e095cf.png) - -![png](img/187f414e1afde064024f6898871831da.png) - -### 一个`(图片, 标签)`对数据集 - -使用同样的 `from_tensor_slices` 方法你可以创建一个标签数据集: - -```py -label_ds = tf.data.Dataset.from_tensor_slices(tf.cast(all_image_labels, tf.int64)) -``` - -```py -for label in label_ds.take(10): - print(label_names[label.numpy()]) -``` - -```py -daisy -roses -sunflowers -daisy -roses -tulips -tulips -daisy -sunflowers -dandelion - -``` - -由于这些数据集顺序相同,你可以将他们打包在一起得到一个`(图片, 标签)`对数据集: - -```py -image_label_ds = tf.data.Dataset.zip((image_ds, label_ds)) -``` - -这个新数据集的 `shapes(维数)` 和 `types(类型)` 也是维数和类型的元组,用来描述每个字段: - -```py -print(image_label_ds) -``` - -```py - - -``` - -注意:当你拥有形似 `all_image_labels` 和 `all_image_paths` 的数组,`tf.data.dataset.Dataset.zip` 的替代方法是将这对数组切片。 - -```py -ds = tf.data.Dataset.from_tensor_slices((all_image_paths, all_image_labels)) - -# 元组被解压缩到映射函数的位置参数中 -def load_and_preprocess_from_path_label(path, label): - return load_and_preprocess_image(path), label - -image_label_ds = ds.map(load_and_preprocess_from_path_label) -image_label_ds -``` - -```py - - -``` - -### 训练的基本方法 - -要使用此数据集训练模型,你将会想要数据: - -* 被充分打乱。 -* 被分割为 batch。 -* 永远重复。 -* 尽快提供 batch。 - -使用 [`tf.data`](https://tensorflow.google.cn/api_docs/python/tf/data) api 可以轻松添加这些功能。 - -```py -BATCH_SIZE = 32 - -# 设置一个和数据集大小一致的 shuffle buffer size(随机缓冲区大小)以保证数据 -# 被充分打乱。 -ds = image_label_ds.shuffle(buffer_size=image_count) -ds = ds.repeat() -ds = ds.batch(BATCH_SIZE) -# 当模型在训练的时候,`prefetch` 使数据集在后台取得 batch。 -ds = ds.prefetch(buffer_size=AUTOTUNE) -ds -``` - -```py - - -``` - -这里有一些注意事项: - -1. 顺序很重要。 - - * 在 `.repeat` 之后 `.shuffle`,会在 epoch 之间打乱数据(当有些数据出现两次的时候,其他数据还没有出现过)。 - - * 在 `.batch` 之后 `.shuffle`,会打乱 batch 的顺序,但是不会在 batch 之间打乱数据。 - -2. 你在完全打乱中使用和数据集大小一样的 `buffer_size(缓冲区大小)`。较大的缓冲区大小提供更好的随机化,但使用更多的内存,直到超过数据集大小。 - -3. 在从随机缓冲区中拉取任何元素前,要先填满它。所以当你的 `Dataset(数据集)`启动的时候一个大的 `buffer_size(缓冲区大小)`可能会引起延迟。 - -4. 在随机缓冲区完全为空之前,被打乱的数据集不会报告数据集的结尾。`Dataset(数据集)`由 `.repeat` 重新启动,导致需要再次等待随机缓冲区被填满。 - -最后一点可以通过使用 [`tf.data.Dataset.apply`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#apply) 方法和融合过的 [`tf.data.experimental.shuffle_and_repeat`](https://tensorflow.google.cn/api_docs/python/tf/data/experimental/shuffle_and_repeat) 函数来解决: - -```py -ds = image_label_ds.apply( - tf.data.experimental.shuffle_and_repeat(buffer_size=image_count)) -ds = ds.batch(BATCH_SIZE) -ds = ds.prefetch(buffer_size=AUTOTUNE) -ds -``` - -```py -WARNING:tensorflow:From :2: shuffle_and_repeat (from tensorflow.python.data.experimental.ops.shuffle_ops) is deprecated and will be removed in a future version. -Instructions for updating: -Use `tf.data.Dataset.shuffle(buffer_size, seed)` followed by `tf.data.Dataset.repeat(count)`. Static tf.data optimizations will take care of using the fused implementation. - - - -``` - -### 传递数据集至模型 - -从 [`tf.keras.applications`](https://tensorflow.google.cn/api_docs/python/tf/keras/applications) 取得 MobileNet v2 副本。 - -该模型副本会被用于一个简单的迁移学习例子。 - -设置 MobileNet 的权重为不可训练: - -```py -mobile_net = tf.keras.applications.MobileNetV2(input_shape=(192, 192, 3), include_top=False) -mobile_net.trainable=False -``` - -```py -Downloading data from https://storage.googleapis.com/tensorflow/keras-applications/mobilenet_v2/mobilenet_v2_weights_tf_dim_ordering_tf_kernels_1.0_192_no_top.h5 -9412608/9406464 [==============================] - 0s 0us/step - -``` - -该模型期望它的输出被标准化至 `[-1,1]` 范围内: - -```py -help(keras_applications.mobilenet_v2.preprocess_input) -``` - -```py -…… -该函数使用“Inception”预处理,将 -RGB 值从 [0, 255] 转化为 [-1, 1] -…… - -``` - -在你将输出传递给 MobilNet 模型之前,你需要将其范围从 `[0,1]` 转化为 `[-1,1]`: - -```py -def change_range(image,label): - return 2*image-1, label - -keras_ds = ds.map(change_range) -``` - -MobileNet 为每张图片的特征返回一个 `6x6` 的空间网格。 - -传递一个 batch 的图片给它,查看结果: - -```py -# 数据集可能需要几秒来启动,因为要填满其随机缓冲区。 -image_batch, label_batch = next(iter(keras_ds)) -``` - -```py -feature_map_batch = mobile_net(image_batch) -print(feature_map_batch.shape) -``` - -```py -(32, 6, 6, 1280) - -``` - -构建一个包装了 MobileNet 的模型并在 [`tf.keras.layers.Dense`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Dense) 输出层之前使用 [`tf.keras.layers.GlobalAveragePooling2D`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/GlobalAveragePooling2D) 来平均那些空间向量: - -```py -model = tf.keras.Sequential([ - mobile_net, - tf.keras.layers.GlobalAveragePooling2D(), - tf.keras.layers.Dense(len(label_names), activation = 'softmax')]) -``` - -现在它产出符合预期 shape(维数)的输出: - -```py -logit_batch = model(image_batch).numpy() - -print("min logit:", logit_batch.min()) -print("max logit:", logit_batch.max()) -print() - -print("Shape:", logit_batch.shape) -``` - -```py -min logit: 0.0039403443 -max logit: 0.82328725 - -Shape: (32, 5) - -``` - -编译模型以描述训练过程: - -```py -model.compile(optimizer=tf.keras.optimizers.Adam(), - loss='sparse_categorical_crossentropy', - metrics=["accuracy"]) -``` - -此处有两个可训练的变量 —— Dense 层中的 `weights(权重)` 和 `bias(偏差)`: - -```py -len(model.trainable_variables) -``` - -```py -2 - -``` - -```py -model.summary() -``` - -```py -Model: "sequential" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -mobilenetv2_1.00_192 (Functi (None, 6, 6, 1280) 2257984 -_________________________________________________________________ -global_average_pooling2d (Gl (None, 1280) 0 -_________________________________________________________________ -dense (Dense) (None, 5) 6405 -================================================================= -Total params: 2,264,389 -Trainable params: 6,405 -Non-trainable params: 2,257,984 -_________________________________________________________________ - -``` - -你已经准备好来训练模型了。 - -注意,出于演示目的每一个 epoch 中你将只运行 3 step,但一般来说在传递给 `model.fit()` 之前你会指定 step 的真实数量,如下所示: - -```py -steps_per_epoch=tf.math.ceil(len(all_image_paths)/BATCH_SIZE).numpy() -steps_per_epoch -``` - -```py -115.0 - -``` - -```py -model.fit(ds, epochs=1, steps_per_epoch=3) -``` - -```py -3/3 [==============================] - 0s 31ms/step - loss: 1.8837 - accuracy: 0.2812 - - - -``` - -## 性能 - -注意:这部分只是展示一些可能帮助提升性能的简单技巧。深入指南,请看:[输入 pipeline(管道)的性能](https://tensorflow.google.cn/guide/performance/datasets)。 - -上面使用的简单 pipeline(管道)在每个 epoch 中单独读取每个文件。在本地使用 CPU 训练时这个方法是可行的,但是可能不足以进行 GPU 训练并且完全不适合任何形式的分布式训练。 - -要研究这点,首先构建一个简单的函数来检查数据集的性能: - -```py -import time -default_timeit_steps = 2*steps_per_epoch+1 - -def timeit(ds, steps=default_timeit_steps): - overall_start = time.time() - # 在开始计时之前 - # 取得单个 batch 来填充 pipeline(管道)(填充随机缓冲区) - it = iter(ds.take(steps+1)) - next(it) - - start = time.time() - for i,(images,labels) in enumerate(it): - if i%10 == 0: - print('.',end='') - print() - end = time.time() - - duration = end-start - print("{} batches: {} s".format(steps, duration)) - print("{:0.5f} Images/s".format(BATCH_SIZE*steps/duration)) - print("Total time: {}s".format(end-overall_start)) -``` - -当前数据集的性能是: - -```py -ds = image_label_ds.apply( - tf.data.experimental.shuffle_and_repeat(buffer_size=image_count)) -ds = ds.batch(BATCH_SIZE).prefetch(buffer_size=AUTOTUNE) -ds -``` - -```py - - -``` - -```py -timeit(ds) -``` - -```py -........................ -231.0 batches: 14.869637966156006 s -497.12037 Images/s -Total time: 21.789817333221436s - -``` - -### 缓存 - -使用 [`tf.data.Dataset.cache`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#cache) 在 epoch 之间轻松缓存计算结果。这是非常高效的,特别是当内存能容纳全部数据时。 - -在被预处理之后(解码和调整大小),图片在此被缓存了: - -```py -ds = image_label_ds.cache() -ds = ds.apply( - tf.data.experimental.shuffle_and_repeat(buffer_size=image_count)) -ds = ds.batch(BATCH_SIZE).prefetch(buffer_size=AUTOTUNE) -ds -``` - -```py - - -``` - -```py -timeit(ds) -``` - -```py -........................ -231.0 batches: 0.5994970798492432 s -12330.33529 Images/s -Total time: 7.475242614746094s - -``` - -使用内存缓存的一个缺点是必须在每次运行时重建缓存,这使得每次启动数据集时有相同的启动延迟: - -```py -timeit(ds) -``` - -```py -........................ -231.0 batches: 0.6120779514312744 s -12076.89312 Images/s -Total time: 0.6253445148468018s - -``` - -如果内存不够容纳数据,使用一个缓存文件: - -```py -ds = image_label_ds.cache(filename='./cache.tf-data') -ds = ds.apply( - tf.data.experimental.shuffle_and_repeat(buffer_size=image_count)) -ds = ds.batch(BATCH_SIZE).prefetch(1) -ds -``` - -```py - - -``` - -```py -timeit(ds) -``` - -```py -........................ -231.0 batches: 3.0341720581054688 s -2436.24945 Images/s -Total time: 12.044088363647461s - -``` - -这个缓存文件也有可快速重启数据集而无需重建缓存的优点。注意第二次快了多少: - -```py -timeit(ds) -``` - -```py -........................ -231.0 batches: 2.358055353164673 s -3134.78646 Images/s -Total time: 3.105525493621826s - -``` - -### TFRecord 文件 - -#### 原始图片数据 - -TFRecord 文件是一种用来存储一串二进制 blob 的简单格式。通过将多个示例打包进同一个文件内,TensorFlow 能够一次性读取多个示例,当使用一个远程存储服务,如 GCS 时,这对性能来说尤其重要。 - -首先,从原始图片数据中构建出一个 TFRecord 文件: - -```py -image_ds = tf.data.Dataset.from_tensor_slices(all_image_paths).map(tf.io.read_file) -tfrec = tf.data.experimental.TFRecordWriter('images.tfrec') -tfrec.write(image_ds) -``` - -接着,构建一个从 TFRecord 文件读取的数据集,并使用你之前定义的 `preprocess_image` 函数对图像进行解码/重新格式化: - -```py -image_ds = tf.data.TFRecordDataset('images.tfrec').map(preprocess_image) -``` - -压缩该数据集和你之前定义的标签数据集以得到期望的 `(图片,标签)` 对: - -```py -ds = tf.data.Dataset.zip((image_ds, label_ds)) -ds = ds.apply( - tf.data.experimental.shuffle_and_repeat(buffer_size=image_count)) -ds=ds.batch(BATCH_SIZE).prefetch(AUTOTUNE) -ds -``` - -```py - - -``` - -```py -timeit(ds) -``` - -```py -........................ -231.0 batches: 14.661343574523926 s -504.18299 Images/s -Total time: 21.57948637008667s - -``` - -这比 `缓存` 版本慢,因为你还没有缓存预处理。 - -#### 序列化的 Tensor(张量) - -要为 TFRecord 文件省去一些预处理过程,首先像之前一样制作一个处理过的图片数据集: - -```py -paths_ds = tf.data.Dataset.from_tensor_slices(all_image_paths) -image_ds = paths_ds.map(load_and_preprocess_image) -image_ds -``` - -```py - - -``` - -现在你有一个 tensor(张量)数据集,而不是一个 `.jpeg` 字符串数据集。 - -要将此序列化至一个 TFRecord 文件你首先将该 tensor(张量)数据集转化为一个字符串数据集: - -```py -ds = image_ds.map(tf.io.serialize_tensor) -ds -``` - -```py - - -``` - -```py -tfrec = tf.data.experimental.TFRecordWriter('images.tfrec') -tfrec.write(ds) -``` - -有了被缓存的预处理,就能从 TFrecord 文件高效地加载数据——只需记得在使用它之前反序列化: - -```py -ds = tf.data.TFRecordDataset('images.tfrec') - -def parse(x): - result = tf.io.parse_tensor(x, out_type=tf.float32) - result = tf.reshape(result, [192, 192, 3]) - return result - -ds = ds.map(parse, num_parallel_calls=AUTOTUNE) -ds -``` - -```py - - -``` - -现在,像之前一样添加标签和进行相同的标准操作: - -```py -ds = tf.data.Dataset.zip((ds, label_ds)) -ds = ds.apply( - tf.data.experimental.shuffle_and_repeat(buffer_size=image_count)) -ds=ds.batch(BATCH_SIZE).prefetch(AUTOTUNE) -ds -``` - -```py - - -``` - -```py -timeit(ds) -``` - -```py -........................ -231.0 batches: 1.8890972137451172 s -3912.98020 Images/s -Total time: 2.7021732330322266s - -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/015.md b/Tensorflow/TensorFlow2.0/015.md deleted file mode 100644 index 27a9fade..00000000 --- a/Tensorflow/TensorFlow2.0/015.md +++ /dev/null @@ -1,291 +0,0 @@ -# 使用 tf.data 加载文本数据 - -> 原文:[https://tensorflow.google.cn/tutorials/load_data/text](https://tensorflow.google.cn/tutorials/load_data/text) - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -本教程为你提供了一个如何使用 [`tf.data.TextLineDataset`](https://tensorflow.google.cn/api_docs/python/tf/data/TextLineDataset) 来加载文本文件的示例。`TextLineDataset` 通常被用来以文本文件构建数据集(原文件中的一行为一个样本) 。这适用于大多数的基于行的文本数据(例如,诗歌或错误日志) 。下面我们将使用相同作品(荷马的伊利亚特)三个不同版本的英文翻译,然后训练一个模型来通过单行文本确定译者。 - -## 环境搭建 - -```py -import tensorflow as tf - -import tensorflow_datasets as tfds -import os -``` - -三个版本的翻译分别来自于: - -* [William Cowper](https://en.wikipedia.org/wiki/William_Cowper) — [text](https://storage.googleapis.com/download.tensorflow.org/data/illiad/cowper.txt) - -* [Edward, Earl of Derby](https://en.wikipedia.org/wiki/Edward_Smith-Stanley,_14th_Earl_of_Derby) — [text](https://storage.googleapis.com/download.tensorflow.org/data/illiad/derby.txt) - -* [Samuel Butler](https://en.wikipedia.org/wiki/Samuel_Butler_%28novelist%29) — [text](https://storage.googleapis.com/download.tensorflow.org/data/illiad/butler.txt) - -本教程中使用的文本文件已经进行过一些典型的预处理,主要包括删除了文档页眉和页脚,行号,章节标题。请下载这些已经被局部改动过的文件。 - -```py -DIRECTORY_URL = 'https://storage.googleapis.com/download.tensorflow.org/data/illiad/' -FILE_NAMES = ['cowper.txt', 'derby.txt', 'butler.txt'] - -for name in FILE_NAMES: - text_dir = tf.keras.utils.get_file(name, origin=DIRECTORY_URL+name) - -parent_dir = os.path.dirname(text_dir) - -parent_dir -``` - -```py -Downloading data from https://storage.googleapis.com/download.tensorflow.org/data/illiad/cowper.txt -819200/815980 [==============================] - 0s 0us/step -Downloading data from https://storage.googleapis.com/download.tensorflow.org/data/illiad/derby.txt -811008/809730 [==============================] - 0s 0us/step -Downloading data from https://storage.googleapis.com/download.tensorflow.org/data/illiad/butler.txt -811008/807992 [==============================] - 0s 0us/step - -'/home/kbuilder/.keras/datasets' - -``` - -## 将文本加载到数据集中 - -迭代整个文件,将整个文件加载到自己的数据集中。 - -每个样本都需要单独标记,所以请使用 [`tf.data.Dataset.map`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#map) 来为每个样本设定标签。这将迭代数据集中的每一个样本并且返回( `example, label` )对。 - -```py -def labeler(example, index): - return example, tf.cast(index, tf.int64) - -labeled_data_sets = [] - -for i, file_name in enumerate(FILE_NAMES): - lines_dataset = tf.data.TextLineDataset(os.path.join(parent_dir, file_name)) - labeled_dataset = lines_dataset.map(lambda ex: labeler(ex, i)) - labeled_data_sets.append(labeled_dataset) -``` - -将这些标记的数据集合并到一个数据集中,然后对其进行随机化操作。 - -```py -BUFFER_SIZE = 50000 -BATCH_SIZE = 64 -TAKE_SIZE = 5000 -``` - -```py -all_labeled_data = labeled_data_sets[0] -for labeled_dataset in labeled_data_sets[1:]: - all_labeled_data = all_labeled_data.concatenate(labeled_dataset) - -all_labeled_data = all_labeled_data.shuffle( - BUFFER_SIZE, reshuffle_each_iteration=False) -``` - -你可以使用 [`tf.data.Dataset.take`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#take) 与 `print` 来查看 `(example, label)` 对的外观。`numpy` 属性显示每个 Tensor 的值。 - -```py -for ex in all_labeled_data.take(5): - print(ex) -``` - -```py -(, ) -(, ) -(, ) -(, ) -(, ) - -``` - -## 将文本编码成数字 - -机器学习基于的是数字而非文本,所以字符串需要被转化成数字列表。 为了达到此目的,我们需要构建文本与整数的一一映射。 - -### 建立词汇表 - -首先,通过将文本标记为单独的单词集合来构建词汇表。在 TensorFlow 和 Python 中均有很多方法来达成这一目的。在本教程中: - -1. 迭代每个样本的 `numpy` 值。 -2. 使用 `tfds.features.text.Tokenizer` 来将其分割成 `token`。 -3. 将这些 `token` 放入一个 Python 集合中,借此来清除重复项。 -4. 获取该词汇表的大小以便于以后使用。 - -```py -tokenizer = tfds.features.text.Tokenizer() - -vocabulary_set = set() -for text_tensor, _ in all_labeled_data: - some_tokens = tokenizer.tokenize(text_tensor.numpy()) - vocabulary_set.update(some_tokens) - -vocab_size = len(vocabulary_set) -vocab_size -``` - -```py -17178 - -``` - -### 样本编码 - -通过传递 `vocabulary_set` 到 `tfds.features.text.TokenTextEncoder` 来构建一个编码器。编码器的 `encode` 方法传入一行文本,返回一个整数列表。 - -```py -encoder = tfds.features.text.TokenTextEncoder(vocabulary_set) -``` - -你可以尝试运行这一行代码并查看输出的样式。 - -```py -example_text = next(iter(all_labeled_data))[0].numpy() -print(example_text) -``` - -```py -b'To Ida; in his presence once arrived,' - -``` - -```py -encoded_example = encoder.encode(example_text) -print(encoded_example) -``` - -```py -[15746, 11433, 8394, 9006, 379, 3463, 17072] - -``` - -现在,在数据集上运行编码器(通过将编码器打包到 [`tf.py_function`](https://tensorflow.google.cn/api_docs/python/tf/py_function) 并且传参至数据集的 `map` 方法的方式来运行)。 - -```py -def encode(text_tensor, label): - encoded_text = encoder.encode(text_tensor.numpy()) - return encoded_text, label - -def encode_map_fn(text, label): - # py_func doesn't set the shape of the returned tensors. - encoded_text, label = tf.py_function(encode, - inp=[text, label], - Tout=(tf.int64, tf.int64)) - - # `tf.data.Datasets` work best if all components have a shape set - # so set the shapes manually: - encoded_text.set_shape([None]) - label.set_shape([]) - - return encoded_text, label - -all_encoded_data = all_labeled_data.map(encode_map_fn) -``` - -## 将数据集分割为测试集和训练集且进行分支 - -使用 [`tf.data.Dataset.take`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#take) 和 [`tf.data.Dataset.skip`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#skip) 来建立一个小一些的测试数据集和稍大一些的训练数据集。 - -在数据集被传入模型之前,数据集需要被分批。最典型的是,每个分支中的样本大小与格式需要一致。但是数据集中样本并不全是相同大小的(每行文本字数并不相同)。因此,使用 [`tf.data.Dataset.padded_batch`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#padded_batch)(而不是 `batch` )将样本填充到相同的大小。 - -```py -train_data = all_encoded_data.skip(TAKE_SIZE).shuffle(BUFFER_SIZE) -train_data = train_data.padded_batch(BATCH_SIZE) - -test_data = all_encoded_data.take(TAKE_SIZE) -test_data = test_data.padded_batch(BATCH_SIZE) -``` - -现在,test_data 和 train_data 不是( `example, label` )对的集合,而是批次的集合。每个批次都是一对(*多样本*, *多标签* ),表示为数组。 - -```py -sample_text, sample_labels = next(iter(test_data)) - -sample_text[0], sample_labels[0] -``` - -```py -(, - ) - -``` - -由于我们引入了一个新的 token 来编码(填充零),因此词汇表大小增加了一个。 - -```py -vocab_size += 1 -``` - -## 建立模型 - -```py -model = tf.keras.Sequential() -``` - -第一层将整数表示转换为密集矢量嵌入。更多内容请查阅 [Word Embeddings](https://tensorflow.google.cn/tutorials/sequences/word_embeddings) 教程。 - -```py -model.add(tf.keras.layers.Embedding(vocab_size, 64)) -``` - -下一层是 [LSTM](http://colah.github.io/posts/2015-08-Understanding-LSTMs/) 层,它允许模型利用上下文中理解单词含义。 LSTM 上的双向包装器有助于模型理解当前数据点与其之前和之后的数据点的关系。 - -```py -model.add(tf.keras.layers.Bidirectional(tf.keras.layers.LSTM(64))) -``` - -最后,我们将获得一个或多个紧密连接的层,其中最后一层是输出层。输出层输出样本属于各个标签的概率,最后具有最高概率的分类标签即为最终预测结果。 - -```py -# 一个或多个紧密连接的层 -# 编辑 `for` 行的列表去检测层的大小 -for units in [64, 64]: - model.add(tf.keras.layers.Dense(units, activation='relu')) - -# 输出层。第一个参数是标签个数。 -model.add(tf.keras.layers.Dense(3, activation='softmax')) -``` - -最后,编译这个模型。对于一个 softmax 分类模型来说,通常使用 `sparse_categorical_crossentropy` 作为其损失函数。你可以尝试其他的优化器,但是 `adam` 是最常用的。 - -```py -model.compile(optimizer='adam', - loss='sparse_categorical_crossentropy', - metrics=['accuracy']) -``` - -## 训练模型 - -利用提供的数据训练出的模型有着不错的精度(大约 83% )。 - -```py -model.fit(train_data, epochs=3, validation_data=test_data) -``` - -```py -Epoch 1/3 -697/697 [==============================] - 10s 14ms/step - loss: 0.5181 - accuracy: 0.7457 - val_loss: 0.3855 - val_accuracy: 0.8222 -Epoch 2/3 -697/697 [==============================] - 9s 13ms/step - loss: 0.2985 - accuracy: 0.8685 - val_loss: 0.3635 - val_accuracy: 0.8350 -Epoch 3/3 -697/697 [==============================] - 9s 13ms/step - loss: 0.2242 - accuracy: 0.9027 - val_loss: 0.3794 - val_accuracy: 0.8246 - - - -``` - -```py -eval_loss, eval_acc = model.evaluate(test_data) - -print('\nEval loss: {}, Eval accuracy: {}'.format(eval_loss, eval_acc)) -``` - -```py -79/79 [==============================] - 1s 18ms/step - loss: 0.3794 - accuracy: 0.8246 - -Eval loss: 0.3794495761394501, Eval accuracy: 0.8245999813079834 - -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/016.md b/Tensorflow/TensorFlow2.0/016.md deleted file mode 100644 index 093ccb8e..00000000 --- a/Tensorflow/TensorFlow2.0/016.md +++ /dev/null @@ -1,367 +0,0 @@ -# 用 tf.data 加载 CSV 数据 - -> 原文:[https://tensorflow.google.cn/tutorials/load_data/csv](https://tensorflow.google.cn/tutorials/load_data/csv) - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -这篇教程通过一个示例展示了怎样将 CSV 格式的数据加载进 [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset)。 - -这篇教程使用的是泰坦尼克号乘客的数据。模型会根据乘客的年龄、性别、票务舱和是否独自旅行等特征来预测乘客生还的可能性。 - -## 设置 - -```py -import functools - -import numpy as np -import tensorflow as tf -import tensorflow_datasets as tfds -``` - -```py -TRAIN_DATA_URL = "https://storage.googleapis.com/tf-datasets/titanic/train.csv" -TEST_DATA_URL = "https://storage.googleapis.com/tf-datasets/titanic/eval.csv" - -train_file_path = tf.keras.utils.get_file("train.csv", TRAIN_DATA_URL) -test_file_path = tf.keras.utils.get_file("eval.csv", TEST_DATA_URL) -``` - -```py -Downloading data from https://storage.googleapis.com/tf-datasets/titanic/train.csv -32768/30874 [===============================] - 0s 0us/step -Downloading data from https://storage.googleapis.com/tf-datasets/titanic/eval.csv -16384/13049 [=====================================] - 0s 0us/step - -``` - -```py -# 让 numpy 数据更易读。 -np.set_printoptions(precision=3, suppress=True) -``` - -## 加载数据 - -开始的时候,我们通过打印 CSV 文件的前几行来了解文件的格式。 - -```py -head {train_file_path} - -``` - -```py -survived,sex,age,n_siblings_spouses,parch,fare,class,deck,embark_town,alone -0,male,22.0,1,0,7.25,Third,unknown,Southampton,n -1,female,38.0,1,0,71.2833,First,C,Cherbourg,n -1,female,26.0,0,0,7.925,Third,unknown,Southampton,y -1,female,35.0,1,0,53.1,First,C,Southampton,n -0,male,28.0,0,0,8.4583,Third,unknown,Queenstown,y -0,male,2.0,3,1,21.075,Third,unknown,Southampton,n -1,female,27.0,0,2,11.1333,Third,unknown,Southampton,n -1,female,14.0,1,0,30.0708,Second,unknown,Cherbourg,n -1,female,4.0,1,1,16.7,Third,G,Southampton,n - -``` - -正如你看到的那样,CSV 文件的每列都会有一个列名。dataset 的构造函数会自动识别这些列名。如果你使用的文件的第一行不包含列名,那么需要将列名通过字符串列表传给 `make_csv_dataset` 函数的 `column_names` 参数。 - -```py - CSV_COLUMNS = ['survived', 'sex', 'age', 'n_siblings_spouses', 'parch', 'fare', 'class', 'deck', 'embark_town', 'alone'] - -dataset = tf.data.experimental.make_csv_dataset( - ..., - column_names=CSV_COLUMNS, - ...) -``` - -这个示例使用了所有的列。如果你需要忽略数据集中的某些列,创建一个包含你需要使用的列的列表,然后传给构造器的(可选)参数 `select_columns`。 - -```py - dataset = tf.data.experimental.make_csv_dataset( - ..., - select_columns = columns_to_use, - ...) -``` - -对于包含模型需要预测的值的列是你需要显式指定的。 - -```py -LABEL_COLUMN = 'survived' -LABELS = [0, 1] -``` - -现在从文件中读取 CSV 数据并且创建 dataset。 - -(完整的文档,参考 [`tf.data.experimental.make_csv_dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/experimental/make_csv_dataset)) - -```py -def get_dataset(file_path): - dataset = tf.data.experimental.make_csv_dataset( - file_path, - batch_size=12, # 为了示例更容易展示,手动设置较小的值 - label_name=LABEL_COLUMN, - na_value="?", - num_epochs=1, - ignore_errors=True) - return dataset - -raw_train_data = get_dataset(train_file_path) -raw_test_data = get_dataset(test_file_path) -``` - -dataset 中的每个条目都是一个批次,用一个元组(*多个样本*,*多个标签*)表示。样本中的数据组织形式是以列为主的张量(而不是以行为主的张量),每条数据中包含的元素个数就是批次大小(这个示例中是 12)。 - -阅读下面的示例有助于你的理解。 - -```py -examples, labels = next(iter(raw_train_data)) # 第一个批次 -print("EXAMPLES: \n", examples, "\n") -print("LABELS: \n", labels) -``` - -```py -EXAMPLES: - OrderedDict([('sex', ), ('age', ), ('n_siblings_spouses', ), ('parch', ), ('fare', ), ('class', ), ('deck', ), ('embark_town', ), ('alone', )]) - -LABELS: - tf.Tensor([0 0 0 0 0 1 0 1 0 0 0 1], shape=(12,), dtype=int32) - -``` - -## 数据预处理 - -### 分类数据 - -CSV 数据中的有些列是分类的列。也就是说,这些列只能在有限的集合中取值。 - -使用 [`tf.feature_column`](https://tensorflow.google.cn/api_docs/python/tf/feature_column) API 创建一个 [`tf.feature_column.indicator_column`](https://tensorflow.google.cn/api_docs/python/tf/feature_column/indicator_column) 集合,每个 [`tf.feature_column.indicator_column`](https://tensorflow.google.cn/api_docs/python/tf/feature_column/indicator_column) 对应一个分类的列。 - -```py -CATEGORIES = { - 'sex': ['male', 'female'], - 'class' : ['First', 'Second', 'Third'], - 'deck' : ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J'], - 'embark_town' : ['Cherbourg', 'Southhampton', 'Queenstown'], - 'alone' : ['y', 'n'] -} -``` - -```py -categorical_columns = [] -for feature, vocab in CATEGORIES.items(): - cat_col = tf.feature_column.categorical_column_with_vocabulary_list( - key=feature, vocabulary_list=vocab) - categorical_columns.append(tf.feature_column.indicator_column(cat_col)) -``` - -```py -# 你刚才创建的内容 -categorical_columns -``` - -```py -[IndicatorColumn(categorical_column=VocabularyListCategoricalColumn(key='sex', vocabulary_list=('male', 'female'), dtype=tf.string, default_value=-1, num_oov_buckets=0)), - IndicatorColumn(categorical_column=VocabularyListCategoricalColumn(key='class', vocabulary_list=('First', 'Second', 'Third'), dtype=tf.string, default_value=-1, num_oov_buckets=0)), - IndicatorColumn(categorical_column=VocabularyListCategoricalColumn(key='deck', vocabulary_list=('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J'), dtype=tf.string, default_value=-1, num_oov_buckets=0)), - IndicatorColumn(categorical_column=VocabularyListCategoricalColumn(key='embark_town', vocabulary_list=('Cherbourg', 'Southhampton', 'Queenstown'), dtype=tf.string, default_value=-1, num_oov_buckets=0)), - IndicatorColumn(categorical_column=VocabularyListCategoricalColumn(key='alone', vocabulary_list=('y', 'n'), dtype=tf.string, default_value=-1, num_oov_buckets=0))] - -``` - -这将是后续构建模型时处理输入数据的一部分。 - -### 连续数据 - -连续数据需要标准化。 - -写一个函数标准化这些值,然后将这些值改造成 2 维的张量。 - -```py -def process_continuous_data(mean, data): - # 标准化数据 - data = tf.cast(data, tf.float32) * 1/(2*mean) - return tf.reshape(data, [-1, 1]) -``` - -现在创建一个数值列的集合。`tf.feature_columns.numeric_column` API 会使用 `normalizer_fn` 参数。在传参的时候使用 [`functools.partial`](https://docs.python.org/3/library/functools.html#functools.partial),`functools.partial` 由使用每个列的均值进行标准化的函数构成。 - -```py -MEANS = { - 'age' : 29.631308, - 'n_siblings_spouses' : 0.545455, - 'parch' : 0.379585, - 'fare' : 34.385399 -} - -numerical_columns = [] - -for feature in MEANS.keys(): - num_col = tf.feature_column.numeric_column(feature, normalizer_fn=functools.partial(process_continuous_data, MEANS[feature])) - numerical_columns.append(num_col) -``` - -```py -# 你刚才创建的内容。 -numerical_columns -``` - -```py -[NumericColumn(key='age', shape=(1,), default_value=None, dtype=tf.float32, normalizer_fn=functools.partial(, 29.631308)), - NumericColumn(key='n_siblings_spouses', shape=(1,), default_value=None, dtype=tf.float32, normalizer_fn=functools.partial(, 0.545455)), - NumericColumn(key='parch', shape=(1,), default_value=None, dtype=tf.float32, normalizer_fn=functools.partial(, 0.379585)), - NumericColumn(key='fare', shape=(1,), default_value=None, dtype=tf.float32, normalizer_fn=functools.partial(, 34.385399))] - -``` - -这里使用标准化的方法需要提前知道每列的均值。如果需要计算连续的数据流的标准化的值可以使用 [TensorFlow Transform](https://tensorflow.google.cn/tfx/transform/get_started)。 - -### 创建预处理层 - -将这两个特征列的集合相加,并且传给 [`tf.keras.layers.DenseFeatures`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/DenseFeatures) 从而创建一个进行预处理的输入层。 - -```py -preprocessing_layer = tf.keras.layers.DenseFeatures(categorical_columns+numerical_columns) -``` - -## 构建模型 - -从 `preprocessing_layer` 开始构建 [`tf.keras.Sequential`](https://tensorflow.google.cn/api_docs/python/tf/keras/Sequential)。 - -```py -model = tf.keras.Sequential([ - preprocessing_layer, - tf.keras.layers.Dense(128, activation='relu'), - tf.keras.layers.Dense(128, activation='relu'), - tf.keras.layers.Dense(1, activation='sigmoid'), -]) - -model.compile( - loss='binary_crossentropy', - optimizer='adam', - metrics=['accuracy']) -``` - -## 训练、评估和预测 - -现在可以实例化和训练模型。 - -```py -train_data = raw_train_data.shuffle(500) -test_data = raw_test_data -``` - -```py -model.fit(train_data, epochs=20) -``` - -```py -Epoch 1/20 -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: OrderedDict([('sex', ), ('age', ), ('n_siblings_spouses', ), ('parch', ), ('fare', ), ('class', ), ('deck', ), ('embark_town', ), ('alone', )]) -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: OrderedDict([('sex', ), ('age', ), ('n_siblings_spouses', ), ('parch', ), ('fare', ), ('class', ), ('deck', ), ('embark_town', ), ('alone', )]) -Consider rewriting this model with the Functional API. -53/53 [==============================] - 0s 4ms/step - loss: 0.5501 - accuracy: 0.7225 -Epoch 2/20 -53/53 [==============================] - 0s 3ms/step - loss: 0.4399 - accuracy: 0.8102 -Epoch 3/20 -53/53 [==============================] - 0s 3ms/step - loss: 0.4158 - accuracy: 0.8150 -Epoch 4/20 -53/53 [==============================] - 0s 3ms/step - loss: 0.4137 - accuracy: 0.8118 -Epoch 5/20 -53/53 [==============================] - 0s 3ms/step - loss: 0.4011 - accuracy: 0.8278 -Epoch 6/20 -53/53 [==============================] - 0s 3ms/step - loss: 0.3953 - accuracy: 0.8198 -Epoch 7/20 -53/53 [==============================] - 0s 3ms/step - loss: 0.3834 - accuracy: 0.8325 -Epoch 8/20 -53/53 [==============================] - 0s 3ms/step - loss: 0.3831 - accuracy: 0.8309 -Epoch 9/20 -53/53 [==============================] - 0s 3ms/step - loss: 0.3768 - accuracy: 0.8453 -Epoch 10/20 -53/53 [==============================] - 0s 3ms/step - loss: 0.3710 - accuracy: 0.8437 -Epoch 11/20 -53/53 [==============================] - 0s 3ms/step - loss: 0.3704 - accuracy: 0.8389 -Epoch 12/20 -53/53 [==============================] - 0s 3ms/step - loss: 0.3670 - accuracy: 0.8325 -Epoch 13/20 -53/53 [==============================] - 0s 3ms/step - loss: 0.3603 - accuracy: 0.8517 -Epoch 14/20 -53/53 [==============================] - 0s 3ms/step - loss: 0.3548 - accuracy: 0.8501 -Epoch 15/20 -53/53 [==============================] - 0s 3ms/step - loss: 0.3554 - accuracy: 0.8469 -Epoch 16/20 -53/53 [==============================] - 0s 3ms/step - loss: 0.3519 - accuracy: 0.8453 -Epoch 17/20 -53/53 [==============================] - 0s 3ms/step - loss: 0.3472 - accuracy: 0.8596 -Epoch 18/20 -53/53 [==============================] - 0s 3ms/step - loss: 0.3513 - accuracy: 0.8581 -Epoch 19/20 -53/53 [==============================] - 0s 3ms/step - loss: 0.3448 - accuracy: 0.8469 -Epoch 20/20 -53/53 [==============================] - 0s 3ms/step - loss: 0.3390 - accuracy: 0.8581 - - - -``` - -当模型训练完成的时候,你可以在测试集 `test_data` 上检查准确性。 - -```py -test_loss, test_accuracy = model.evaluate(test_data) - -print('\n\nTest Loss {}, Test Accuracy {}'.format(test_loss, test_accuracy)) -``` - -```py -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: OrderedDict([('sex', ), ('age', ), ('n_siblings_spouses', ), ('parch', ), ('fare', ), ('class', ), ('deck', ), ('embark_town', ), ('alone', )]) -Consider rewriting this model with the Functional API. -22/22 [==============================] - 0s 3ms/step - loss: 0.4596 - accuracy: 0.7992 - -Test Loss 0.45956382155418396, Test Accuracy 0.7992424368858337 - -``` - -使用 [`tf.keras.Model.predict`](https://tensorflow.google.cn/api_docs/python/tf/keras/Model#predict) 推断一个批次或多个批次的标签。 - -```py -predictions = model.predict(test_data) - -# 显示部分结果 -for prediction, survived in zip(predictions[:10], list(test_data)[0][1][:10]): - print("Predicted survival: {:.2%}".format(prediction[0]), - " | Actual outcome: ", - ("SURVIVED" if bool(survived) else "DIED")) -``` - -```py -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: OrderedDict([('sex', ), ('age', ), ('n_siblings_spouses', ), ('parch', ), ('fare', ), ('class', ), ('deck', ), ('embark_town', ), ('alone', )]) -Consider rewriting this model with the Functional API. -Predicted survival: 99.81% | Actual outcome: DIED -Predicted survival: 14.77% | Actual outcome: SURVIVED -Predicted survival: 11.87% | Actual outcome: DIED -Predicted survival: 6.05% | Actual outcome: DIED -Predicted survival: 10.83% | Actual outcome: DIED -Predicted survival: 29.45% | Actual outcome: SURVIVED -Predicted survival: 92.37% | Actual outcome: SURVIVED -Predicted survival: 4.18% | Actual outcome: SURVIVED -Predicted survival: 14.32% | Actual outcome: DIED -Predicted survival: 4.36% | Actual outcome: SURVIVED - -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/017.md b/Tensorflow/TensorFlow2.0/017.md deleted file mode 100644 index b7f8d227..00000000 --- a/Tensorflow/TensorFlow2.0/017.md +++ /dev/null @@ -1,104 +0,0 @@ -# 使用 tf.data 加载 NumPy 数据 - -> 原文:[https://tensorflow.google.cn/tutorials/load_data/numpy](https://tensorflow.google.cn/tutorials/load_data/numpy) - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -本教程提供了将数据从 NumPy 数组加载到 [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) 的示例 本示例从一个 `.npz` 文件中加载 MNIST 数据集。但是,本实例中 NumPy 数据的来源并不重要。 - -## 安装 - -```py - import numpy as np -import tensorflow as tf -import tensorflow_datasets as tfds -``` - -### 从 `.npz` 文件中加载 - -```py -DATA_URL = 'https://storage.googleapis.com/tensorflow/tf-keras-datasets/mnist.npz' - -path = tf.keras.utils.get_file('mnist.npz', DATA_URL) -with np.load(path) as data: - train_examples = data['x_train'] - train_labels = data['y_train'] - test_examples = data['x_test'] - test_labels = data['y_test'] -``` - -## 使用 [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) 加载 NumPy 数组 - -假设您有一个示例数组和相应的标签数组,请将两个数组作为元组传递给 [`tf.data.Dataset.from_tensor_slices`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#from_tensor_slices) 以创建 [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) 。 - -```py -train_dataset = tf.data.Dataset.from_tensor_slices((train_examples, train_labels)) -test_dataset = tf.data.Dataset.from_tensor_slices((test_examples, test_labels)) -``` - -## 使用该数据集 - -### 打乱和批次化数据集 - -```py -BATCH_SIZE = 64 -SHUFFLE_BUFFER_SIZE = 100 - -train_dataset = train_dataset.shuffle(SHUFFLE_BUFFER_SIZE).batch(BATCH_SIZE) -test_dataset = test_dataset.batch(BATCH_SIZE) -``` - -### 建立和训练模型 - -```py -model = tf.keras.Sequential([ - tf.keras.layers.Flatten(input_shape=(28, 28)), - tf.keras.layers.Dense(128, activation='relu'), - tf.keras.layers.Dense(10, activation='softmax') -]) - -model.compile(optimizer=tf.keras.optimizers.RMSprop(), - loss=tf.keras.losses.SparseCategoricalCrossentropy(), - metrics=[tf.keras.metrics.SparseCategoricalAccuracy()]) -``` - -```py -model.fit(train_dataset, epochs=10) -``` - -```py -Epoch 1/10 -938/938 [==============================] - 2s 2ms/step - loss: 3.1713 - sparse_categorical_accuracy: 0.8769 -Epoch 2/10 -938/938 [==============================] - 2s 2ms/step - loss: 0.5085 - sparse_categorical_accuracy: 0.9271 -Epoch 3/10 -938/938 [==============================] - 2s 2ms/step - loss: 0.3764 - sparse_categorical_accuracy: 0.9466 -Epoch 4/10 -938/938 [==============================] - 2s 2ms/step - loss: 0.3165 - sparse_categorical_accuracy: 0.9550 -Epoch 5/10 -938/938 [==============================] - 2s 2ms/step - loss: 0.2812 - sparse_categorical_accuracy: 0.9599 -Epoch 6/10 -938/938 [==============================] - 2s 2ms/step - loss: 0.2587 - sparse_categorical_accuracy: 0.9645 -Epoch 7/10 -938/938 [==============================] - 2s 2ms/step - loss: 0.2530 - sparse_categorical_accuracy: 0.9674 -Epoch 8/10 -938/938 [==============================] - 2s 2ms/step - loss: 0.2192 - sparse_categorical_accuracy: 0.9707 -Epoch 9/10 -938/938 [==============================] - 2s 2ms/step - loss: 0.2116 - sparse_categorical_accuracy: 0.9721 -Epoch 10/10 -938/938 [==============================] - 2s 2ms/step - loss: 0.2014 - sparse_categorical_accuracy: 0.9747 - - - -``` - -```py -model.evaluate(test_dataset) -``` - -```py -157/157 [==============================] - 0s 2ms/step - loss: 0.5586 - sparse_categorical_accuracy: 0.9568 - -[0.5586389303207397, 0.9567999839782715] - -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/018.md b/Tensorflow/TensorFlow2.0/018.md deleted file mode 100644 index 3e25bc3e..00000000 --- a/Tensorflow/TensorFlow2.0/018.md +++ /dev/null @@ -1,297 +0,0 @@ -# 使用 tf.data 加载 pandas dataframes - -> 原文:[https://tensorflow.google.cn/tutorials/load_data/pandas_dataframe](https://tensorflow.google.cn/tutorials/load_data/pandas_dataframe) - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -本教程提供了如何将 pandas dataframes 加载到 [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset)。 - -本教程使用了一个小型[数据集](https://archive.ics.uci.edu/ml/datasets/heart+Disease),由克利夫兰诊所心脏病基金会(Cleveland Clinic Foundation for Heart Disease)提供. 此数据集中有几百行 CSV。每行表示一个患者,每列表示一个属性(describe)。我们将使用这些信息来预测患者是否患有心脏病,这是一个二分类问题。 - -## 使用 pandas 读取数据 - -```py -!pip install -q tensorflow-gpu==2.0.0-rc1 -import pandas as pd -import tensorflow as tf -``` - -```py -WARNING: You are using pip version 20.2.2; however, version 20.2.3 is available. -You should consider upgrading via the '/tmpfs/src/tf_docs_env/bin/python -m pip install --upgrade pip' command. - -``` - -下载包含心脏数据集的 csv 文件。 - -```py -csv_file = tf.keras.utils.get_file('heart.csv', 'https://storage.googleapis.com/applied-dl/heart.csv') -``` - -使用 pandas 读取 csv 文件。 - -```py -df = pd.read_csv(csv_file) -``` - -```py -df.head() -``` - - - -```py -df.dtypes -``` - -```py -age int64 -sex int64 -cp int64 -trestbps int64 -chol int64 -fbs int64 -restecg int64 -thalach int64 -exang int64 -oldpeak float64 -slope int64 -ca int64 -thal object -target int64 -dtype: object - -``` - -将 `thal` 列(数据帧(dataframe)中的 `object` )转换为离散数值。 - -```py -df['thal'] = pd.Categorical(df['thal']) -df['thal'] = df.thal.cat.codes -``` - -```py -df.head() -``` - - - -## 使用 [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) 读取数据 - -使用 [`tf.data.Dataset.from_tensor_slices`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#from_tensor_slices) 从 pandas dataframe 中读取数值。 - -使用 [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) 的其中一个优势是可以允许您写一些简单而又高效的数据管道(data pipelines)。从 [loading data guide](https://tensorflow.google.cn/guide/data) 可以了解更多。 - -```py -target = df.pop('target') -``` - -```py -dataset = tf.data.Dataset.from_tensor_slices((df.values, target.values)) -``` - -```py -for feat, targ in dataset.take(5): - print ('Features: {}, Target: {}'.format(feat, targ)) -``` - -```py -Features: [ 63\. 1\. 1\. 145\. 233\. 1\. 2\. 150\. 0\. 2.3 3\. 0. - - 2\. ], Target: 0 -Features: [ 67\. 1\. 4\. 160\. 286\. 0\. 2\. 108\. 1\. 1.5 2\. 3. - 3\. ], Target: 1 -Features: [ 67\. 1\. 4\. 120\. 229\. 0\. 2\. 129\. 1\. 2.6 2\. 2. - 4\. ], Target: 0 -Features: [ 37\. 1\. 3\. 130\. 250\. 0\. 0\. 187\. 0\. 3.5 3\. 0. - 3\. ], Target: 0 -Features: [ 41\. 0\. 2\. 130\. 204\. 0\. 2\. 172\. 0\. 1.4 1\. 0. - 3\. ], Target: 0 - -``` - -由于 `pd.Series` 实现了 `__array__` 协议,因此几乎可以在任何使用 `np.array` 或 [`tf.Tensor`](https://tensorflow.google.cn/api_docs/python/tf/Tensor) 的地方透明地使用它。 - -```py -tf.constant(df['thal']) -``` - -```py - - -``` - -随机读取(shuffle)并批量处理数据集。 - -```py -train_dataset = dataset.shuffle(len(df)).batch(1) -``` - -## 创建并训练模型 - -```py -def get_compiled_model(): - model = tf.keras.Sequential([ - tf.keras.layers.Dense(10, activation='relu'), - tf.keras.layers.Dense(10, activation='relu'), - tf.keras.layers.Dense(1, activation='sigmoid') - ]) - - model.compile(optimizer='adam', - loss='binary_crossentropy', - metrics=['accuracy']) - return model -``` - -```py -model = get_compiled_model() -model.fit(train_dataset, epochs=15) -``` - -```py -WARNING:tensorflow:Layer sequential is casting an input tensor from dtype float64 to the layer's dtype of float32, which is new behavior in TensorFlow 2\. The layer has dtype float32 because it's dtype defaults to floatx. - -If you intended to run this layer in float32, you can safely ignore this warning. If in doubt, this warning is likely only an issue if you are porting a TensorFlow 1.X model to TensorFlow 2. - -To change all layers to have dtype float64 by default, call `tf.keras.backend.set_floatx('float64')`. To change just this layer, pass dtype='float64' to the layer constructor. If you are the author of this layer, you can disable autocasting by passing autocast=False to the base Layer constructor. - -Epoch 1/15 -WARNING:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow_core/python/ops/nn_impl.py:183: where (from tensorflow.python.ops.array_ops) is deprecated and will be removed in a future version. -Instructions for updating: -Use tf.where in 2.0, which has the same broadcast rule as np.where -WARNING:tensorflow:Entity .initialize_variables at 0x7f3d7029f620> could not be transformed and will be executed as-is. Please report this to the AutoGraph team. When filing the bug, set the verbosity to 10 (on Linux, `export AUTOGRAPH_VERBOSITY=10`) and attach the full output. Cause: module 'gast' has no attribute 'Num' -WARNING: Entity .initialize_variables at 0x7f3d7029f620> could not be transformed and will be executed as-is. Please report this to the AutoGraph team. When filing the bug, set the verbosity to 10 (on Linux, `export AUTOGRAPH_VERBOSITY=10`) and attach the full output. Cause: module 'gast' has no attribute 'Num' -303/303 [==============================] - 1s 4ms/step - loss: 3.8214 - accuracy: 0.5149 -Epoch 2/15 -303/303 [==============================] - 0s 1ms/step - loss: 0.9302 - accuracy: 0.6766 -Epoch 3/15 -303/303 [==============================] - 0s 1ms/step - loss: 0.8203 - accuracy: 0.6964 -Epoch 4/15 -303/303 [==============================] - 0s 1ms/step - loss: 0.7565 - accuracy: 0.7162 -Epoch 5/15 -303/303 [==============================] - 0s 1ms/step - loss: 0.6607 - accuracy: 0.7162 -Epoch 6/15 -303/303 [==============================] - 0s 1ms/step - loss: 0.6804 - accuracy: 0.6931 -Epoch 7/15 -303/303 [==============================] - 0s 1ms/step - loss: 0.5967 - accuracy: 0.7525 -Epoch 8/15 -303/303 [==============================] - 0s 1ms/step - loss: 0.6198 - accuracy: 0.7228 -Epoch 9/15 -303/303 [==============================] - 0s 1ms/step - loss: 0.5584 - accuracy: 0.7624 -Epoch 10/15 -303/303 [==============================] - 0s 1ms/step - loss: 0.5611 - accuracy: 0.7756 -Epoch 11/15 -303/303 [==============================] - 0s 1ms/step - loss: 0.5364 - accuracy: 0.7492 -Epoch 12/15 -303/303 [==============================] - 0s 1ms/step - loss: 0.5042 - accuracy: 0.7822 -Epoch 13/15 -303/303 [==============================] - 0s 1ms/step - loss: 0.5168 - accuracy: 0.7624 -Epoch 14/15 -303/303 [==============================] - 0s 1ms/step - loss: 0.4560 - accuracy: 0.8053 -Epoch 15/15 -303/303 [==============================] - 0s 1ms/step - loss: 0.4350 - accuracy: 0.7987 - - - -``` - -## 代替特征列 - -将字典作为输入传输给模型就像创建 [`tf.keras.layers.Input`](https://tensorflow.google.cn/api_docs/python/tf/keras/Input) 层的匹配字典一样简单,应用任何预处理并使用 [functional api](https://tensorflow.google.cn/guide/keras/functional)。 您可以使用它作为 [feature columns](https://tensorflow.google.cn/tutorials/keras/feature_columns) 的替代方法。 - -```py -inputs = {key: tf.keras.layers.Input(shape=(), name=key) for key in df.keys()} -x = tf.stack(list(inputs.values()), axis=-1) - -x = tf.keras.layers.Dense(10, activation='relu')(x) -output = tf.keras.layers.Dense(1, activation='sigmoid')(x) - -model_func = tf.keras.Model(inputs=inputs, outputs=output) - -model_func.compile(optimizer='adam', - loss='binary_crossentropy', - metrics=['accuracy']) -``` - -与 [`tf.data`](https://tensorflow.google.cn/api_docs/python/tf/data) 一起使用时,保存 `pd.DataFrame` 列结构的最简单方法是将 `pd.DataFrame` 转换为 `dict` ,并对该字典进行切片。 - -```py -dict_slices = tf.data.Dataset.from_tensor_slices((df.to_dict('list'), target.values)).batch(16) -``` - -```py -for dict_slice in dict_slices.take(1): - print (dict_slice) -``` - -```py -({'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': }, ) - -``` - -```py -model_func.fit(dict_slices, epochs=15) -``` - -```py -Epoch 1/15 -WARNING:tensorflow:Entity .initialize_variables at 0x7f3d2c33a510> could not be transformed and will be executed as-is. Please report this to the AutoGraph team. When filing the bug, set the verbosity to 10 (on Linux, `export AUTOGRAPH_VERBOSITY=10`) and attach the full output. Cause: module 'gast' has no attribute 'Num' -WARNING: Entity .initialize_variables at 0x7f3d2c33a510> could not be transformed and will be executed as-is. Please report this to the AutoGraph team. When filing the bug, set the verbosity to 10 (on Linux, `export AUTOGRAPH_VERBOSITY=10`) and attach the full output. Cause: module 'gast' has no attribute 'Num' -19/19 [==============================] - 1s 30ms/step - loss: 17.3744 - accuracy: 0.7261 -Epoch 2/15 -19/19 [==============================] - 0s 3ms/step - loss: 9.7210 - accuracy: 0.7261 -Epoch 3/15 -19/19 [==============================] - 0s 3ms/step - loss: 5.0425 - accuracy: 0.6106 -Epoch 4/15 -19/19 [==============================] - 0s 3ms/step - loss: 4.8356 - accuracy: 0.5182 -Epoch 5/15 -19/19 [==============================] - 0s 3ms/step - loss: 4.4312 - accuracy: 0.5743 -Epoch 6/15 -19/19 [==============================] - 0s 3ms/step - loss: 4.2668 - accuracy: 0.5644 -Epoch 7/15 -19/19 [==============================] - 0s 3ms/step - loss: 4.1296 - accuracy: 0.5776 -Epoch 8/15 -19/19 [==============================] - 0s 3ms/step - loss: 4.0027 - accuracy: 0.5776 -Epoch 9/15 -19/19 [==============================] - 0s 3ms/step - loss: 3.8945 - accuracy: 0.5776 -Epoch 10/15 -19/19 [==============================] - 0s 3ms/step - loss: 3.7877 - accuracy: 0.5776 -Epoch 11/15 -19/19 [==============================] - 0s 3ms/step - loss: 3.6851 - accuracy: 0.5776 -Epoch 12/15 -19/19 [==============================] - 0s 3ms/step - loss: 3.5828 - accuracy: 0.5743 -Epoch 13/15 -19/19 [==============================] - 0s 3ms/step - loss: 3.4813 - accuracy: 0.5776 -Epoch 14/15 -19/19 [==============================] - 0s 3ms/step - loss: 3.3808 - accuracy: 0.5842 -Epoch 15/15 -19/19 [==============================] - 0s 3ms/step - loss: 3.2814 - accuracy: 0.5842 - - - -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/019.md b/Tensorflow/TensorFlow2.0/019.md deleted file mode 100644 index 87f6fb23..00000000 --- a/Tensorflow/TensorFlow2.0/019.md +++ /dev/null @@ -1,444 +0,0 @@ -# Unicode 字符串 - -> 原文:[https://tensorflow.google.cn/tutorials/load_data/unicode](https://tensorflow.google.cn/tutorials/load_data/unicode) - -## 简介 - -处理自然语言的模型通常使用不同的字符集来处理不同的语言。*Unicode* 是一种标准的编码系统,用于表示几乎所有语言的字符。每个字符使用 `0` 和 `0x10FFFF` 之间的唯一整数[码位](https://en.wikipedia.org/wiki/Code_point)进行编码。*Unicode 字符串*是由零个或更多码位组成的序列。 - -本教程介绍了如何在 TensorFlow 中表示 Unicode 字符串,以及如何使用标准字符串运算的 Unicode 等效项对其进行操作。它会根据字符体系检测将 Unicode 字符串划分为不同词例。 - -```py -import tensorflow as tf -``` - -## [`tf.string`](https://tensorflow.google.cn/api_docs/python/tf#string) 数据类型 - -您可以使用基本的 TensorFlow [`tf.string`](https://tensorflow.google.cn/api_docs/python/tf#string) `dtype` 构建字节字符串张量。Unicode 字符串默认使用 UTF-8 编码。 - -``` -tf.constant(u"Thanks 😊") -```py - -``` - - -```py - -[`tf.string`](https://tensorflow.google.cn/api_docs/python/tf#string) 张量可以容纳不同长度的字节字符串,因为字节字符串会被视为原子单元。字符串长度不包括在张量维度中。 - -``` -tf.constant([u"You're", u"welcome!"]).shape -```py - -``` -TensorShape([2]) - -```py - -注:使用 Python 构造字符串时,v2 和 v3 对 Unicode 的处理方式有所不同。在 v2 中,Unicode 字符串用前缀“u”表示(如上所示)。在 v3 中,字符串默认使用 Unicode 编码。 - -## 表示 Unicode - -在 TensorFlow 中有两种表示 Unicode 字符串的标准方式: - -* `string` 标量 - 使用已知[字符编码](https://en.wikipedia.org/wiki/Character_encoding)对码位序列进行编码。 -* `int32` 向量 - 每个位置包含单个码位。 - -例如,以下三个值均表示 Unicode 字符串 `"语言处理"`: - -``` -# Unicode string, represented as a UTF-8 encoded string scalar. -text_utf8 = tf.constant(u"语言处理") -text_utf8 -```py - -``` - - -```py - -``` -# Unicode string, represented as a UTF-16-BE encoded string scalar. -text_utf16be = tf.constant(u"语言处理".encode("UTF-16-BE")) -text_utf16be -```py - -``` - - -```py - -``` -# Unicode string, represented as a vector of Unicode code points. -text_chars = tf.constant([ord(char) for char in u"语言处理"]) -text_chars -```py - -``` - - -```py - -### 在不同表示之间进行转换 - -TensorFlow 提供了在下列不同表示之间进行转换的运算: - -* [`tf.strings.unicode_decode`](https://tensorflow.google.cn/api_docs/python/tf/strings/unicode_decode):将编码的字符串标量转换为码位的向量。 -* [`tf.strings.unicode_encode`](https://tensorflow.google.cn/api_docs/python/tf/strings/unicode_encode):将码位的向量转换为编码的字符串标量。 -* [`tf.strings.unicode_transcode`](https://tensorflow.google.cn/api_docs/python/tf/strings/unicode_transcode):将编码的字符串标量转换为其他编码。 - -``` -tf.strings.unicode_decode(text_utf8, - input_encoding='UTF-8') -```py - -``` - - -```py - -``` -tf.strings.unicode_encode(text_chars, - output_encoding='UTF-8') -```py - -``` - - -```py - -``` -tf.strings.unicode_transcode(text_utf8, - input_encoding='UTF8', - output_encoding='UTF-16-BE') -```py - -``` - - -```py - -### 批次维度 - -解码多个字符串时,每个字符串中的字符数可能不相等。返回结果是 [`tf.RaggedTensor`](https://tensorflow.google.cn/guide/ragged_tensor),其中最里面的维度的长度会根据每个字符串中的字符数而变化: - -``` -# A batch of Unicode strings, each represented as a UTF8-encoded string. -batch_utf8 = [s.encode('UTF-8') for s in - [u'hÃllo', u'What is the weather tomorrow', u'Göödnight', u'😊']] -batch_chars_ragged = tf.strings.unicode_decode(batch_utf8, - input_encoding='UTF-8') -for sentence_chars in batch_chars_ragged.to_list(): - print(sentence_chars) -```py - -``` -[104, 195, 108, 108, 111] -[87, 104, 97, 116, 32, 105, 115, 32, 116, 104, 101, 32, 119, 101, 97, 116, 104, 101, 114, 32, 116, 111, 109, 111, 114, 114, 111, 119] -[71, 246, 246, 100, 110, 105, 103, 104, 116] -[128522] - -```py - -您可以直接使用此 [`tf.RaggedTensor`](https://tensorflow.google.cn/api_docs/python/tf/RaggedTensor),也可以使用 [`tf.RaggedTensor.to_tensor`](https://tensorflow.google.cn/api_docs/python/tf/RaggedTensor#to_tensor) 和 [`tf.RaggedTensor.to_sparse`](https://tensorflow.google.cn/api_docs/python/tf/RaggedTensor#to_sparse) 方法将其转换为带有填充的密集 [`tf.Tensor`](https://tensorflow.google.cn/api_docs/python/tf/Tensor) 或 [`tf.SparseTensor`](https://tensorflow.google.cn/api_docs/python/tf/sparse/SparseTensor)。 - -``` -batch_chars_padded = batch_chars_ragged.to_tensor(default_value=-1) -print(batch_chars_padded.numpy()) -```py - -``` -[[ 104 195 108 108 111 -1 -1 -1 -1 -1 - -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - -1 -1 -1 -1 -1 -1 -1 -1] - [ 87 104 97 116 32 105 115 32 116 104 - 101 32 119 101 97 116 104 101 114 32 - 116 111 109 111 114 114 111 119] - [ 71 246 246 100 110 105 103 104 116 -1 - -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - -1 -1 -1 -1 -1 -1 -1 -1] - [128522 -1 -1 -1 -1 -1 -1 -1 -1 -1 - -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - -1 -1 -1 -1 -1 -1 -1 -1]] - -```py - -``` -batch_chars_sparse = batch_chars_ragged.to_sparse() -```py - -在对多个具有相同长度的字符串进行编码时,可以将 [`tf.Tensor`](https://tensorflow.google.cn/api_docs/python/tf/Tensor) 用作输入: - -``` -tf.strings.unicode_encode([[99, 97, 116], [100, 111, 103], [ 99, 111, 119]], - output_encoding='UTF-8') -```py - -``` - - -```py - -当对多个具有不同长度的字符串进行编码时,应将 [`tf.RaggedTensor`](https://tensorflow.google.cn/api_docs/python/tf/RaggedTensor) 用作输入: - -``` -tf.strings.unicode_encode(batch_chars_ragged, output_encoding='UTF-8') -```py - -``` - - -```py - -如果您的张量具有填充或稀疏格式的多个字符串,请在调用 `unicode_encode` 之前将其转换为 [`tf.RaggedTensor`](https://tensorflow.google.cn/api_docs/python/tf/RaggedTensor): - -``` -tf.strings.unicode_encode( - tf.RaggedTensor.from_sparse(batch_chars_sparse), - output_encoding='UTF-8') -```py - -``` - - -```py - -``` -tf.strings.unicode_encode( - tf.RaggedTensor.from_tensor(batch_chars_padded, padding=-1), - output_encoding='UTF-8') -```py - -``` - - -```py - -## Unicode 运算 - -### 字符长度 - -[`tf.strings.length`](https://tensorflow.google.cn/api_docs/python/tf/strings/length) 运算具有 `unit` 参数,该参数表示计算长度的方式。`unit` 默认为 `"BYTE"`,但也可以将其设置为其他值(例如 `"UTF8_CHAR"` 或 `"UTF16_CHAR"`),以确定每个已编码 `string` 中的 Unicode 码位数量。 - -``` -# Note that the final character takes up 4 bytes in UTF8. -thanks = u'Thanks 😊'.encode('UTF-8') -num_bytes = tf.strings.length(thanks).numpy() -num_chars = tf.strings.length(thanks, unit='UTF8_CHAR').numpy() -print('{} bytes; {} UTF-8 characters'.format(num_bytes, num_chars)) -```py - -``` -11 bytes; 8 UTF-8 characters - -```py - -### 字符子字符串 - -类似地,[`tf.strings.substr`](https://tensorflow.google.cn/api_docs/python/tf/strings/substr) 运算会接受 "`unit`" 参数,并用它来确定 "`pos`" 和 "`len`" 参数包含的偏移类型。 - -``` -# default: unit='BYTE'. With len=1, we return a single byte. -tf.strings.substr(thanks, pos=7, len=1).numpy() -```py - -``` -b'\xf0' - -```py - -``` -# Specifying unit='UTF8_CHAR', we return a single character, which in this case -# is 4 bytes. -print(tf.strings.substr(thanks, pos=7, len=1, unit='UTF8_CHAR').numpy()) -```py - -``` -b'\xf0\x9f\x98\x8a' - -```py - -### 拆分 Unicode 字符串 - -[`tf.strings.unicode_split`](https://tensorflow.google.cn/api_docs/python/tf/strings/unicode_split) 运算会将 Unicode 字符串拆分为单个字符的子字符串: - -``` -tf.strings.unicode_split(thanks, 'UTF-8').numpy() -```py - -``` -array([b'T', b'h', b'a', b'n', b'k', b's', b' ', b'\xf0\x9f\x98\x8a'], - dtype=object) - -```py - -### 字符的字节偏移量 - -为了将 [`tf.strings.unicode_decode`](https://tensorflow.google.cn/api_docs/python/tf/strings/unicode_decode) 生成的字符张量与原始字符串对齐,了解每个字符开始位置的偏移量很有用。方法 [`tf.strings.unicode_decode_with_offsets`](https://tensorflow.google.cn/api_docs/python/tf/strings/unicode_decode_with_offsets) 与 `unicode_decode` 类似,不同的是它会返回包含每个字符起始偏移量的第二张量。 - -``` -codepoints, offsets = tf.strings.unicode_decode_with_offsets(u"🎈🎉🎊", 'UTF-8') - -for (codepoint, offset) in zip(codepoints.numpy(), offsets.numpy()): - print("At byte offset {}: codepoint {}".format(offset, codepoint)) -```py - -``` -At byte offset 0: codepoint 127880 -At byte offset 4: codepoint 127881 -At byte offset 8: codepoint 127882 - -```py - -## Unicode 字符体系 - -每个 Unicode 码位都属于某个码位集合,这些集合被称作[字符体系](https://en.wikipedia.org/wiki/Script_%28Unicode%29)。某个字符的字符体系有助于确定该字符可能所属的语言。例如,已知 'Б' 属于西里尔字符体系,表明包含该字符的现代文本很可能来自某个斯拉夫语种(如俄语或乌克兰语)。 - -TensorFlow 提供了 [`tf.strings.unicode_script`](https://tensorflow.google.cn/api_docs/python/tf/strings/unicode_script) 运算来确定某一给定码位使用的是哪个字符体系。字符体系代码是对应于[国际 Unicode 组件](http://site.icu-project.org/home) (ICU) [`UScriptCode`](http://icu-project.org/apiref/icu4c/uscript_8h.html) 值的 `int32` 值。 - -``` -uscript = tf.strings.unicode_script([33464, 1041]) # ['芸', 'Б'] - -print(uscript.numpy()) # [17, 8] == [USCRIPT_HAN, USCRIPT_CYRILLIC] -```py - -``` -[17 8] - -```py - -[`tf.strings.unicode_script`](https://tensorflow.google.cn/api_docs/python/tf/strings/unicode_script) 运算还可以应用于码位的多维 [`tf.Tensor`](https://tensorflow.google.cn/api_docs/python/tf/Tensor) 或 [`tf.RaggedTensor`](https://tensorflow.google.cn/api_docs/python/tf/RaggedTensor): - -``` -print(tf.strings.unicode_script(batch_chars_ragged)) -```py - -``` - - -```py - -## 示例:简单分词 - -分词是将文本拆分为类似单词的单元的任务。当使用空格字符分隔单词时,这通常很容易,但是某些语言(如中文和日语)不使用空格,而某些语言(如德语)中存在长复合词,必须进行拆分才能分析其含义。在网页文本中,不同语言和字符体系常常混合在一起,例如“NY 株価”(纽约证券交易所)。 - -我们可以利用字符体系的变化进行粗略分词(不实现任何 ML 模型),从而估算词边界。这对类似上面“NY 株価”示例的字符串都有效。这种方法对大多数使用空格的语言也都有效,因为各种字符体系中的空格字符都归类为 USCRIPT_COMMON,这是一种特殊的字符体系代码,不同于任何实际文本。 - -``` -# dtype: string; shape: [num_sentences] -# -# The sentences to process. Edit this line to try out different inputs! -sentence_texts = [u'Hello, world.', u'世界こんにちは'] -```py - -首先,我们将句子解码为字符码位,然后查找每个字符的字符体系标识符。 - -``` -# dtype: int32; shape: [num_sentences, (num_chars_per_sentence)] -# -# sentence_char_codepoint[i, j] is the codepoint for the j'th character in -# the i'th sentence. -sentence_char_codepoint = tf.strings.unicode_decode(sentence_texts, 'UTF-8') -print(sentence_char_codepoint) - -# dtype: int32; shape: [num_sentences, (num_chars_per_sentence)] -# -# sentence_char_scripts[i, j] is the unicode script of the j'th character in -# the i'th sentence. -sentence_char_script = tf.strings.unicode_script(sentence_char_codepoint) -print(sentence_char_script) -```py - -``` - - - -```py - -接下来,我们使用这些字符体系标识符来确定添加词边界的位置。我们在每个句子的开头添加一个词边界;如果某个字符与前一个字符属于不同的字符体系,也为该字符添加词边界。 - -``` -# dtype: bool; shape: [num_sentences, (num_chars_per_sentence)] -# -# sentence_char_starts_word[i, j] is True if the j'th character in the i'th -# sentence is the start of a word. -sentence_char_starts_word = tf.concat( - [tf.fill([sentence_char_script.nrows(), 1], True), - tf.not_equal(sentence_char_script[:, 1:], sentence_char_script[:, :-1])], - axis=1) - -# dtype: int64; shape: [num_words] -# -# word_starts[i] is the index of the character that starts the i'th word (in -# the flattened list of characters from all sentences). -word_starts = tf.squeeze(tf.where(sentence_char_starts_word.values), axis=1) -print(word_starts) -```py - -``` -tf.Tensor([ 0 5 7 12 13 15], shape=(6,), dtype=int64) - -```py - -然后,我们可以使用这些起始偏移量来构建 `RaggedTensor`,它包含了所有批次的单词列表: - -``` -# dtype: int32; shape: [num_words, (num_chars_per_word)] -# -# word_char_codepoint[i, j] is the codepoint for the j'th character in the -# i'th word. -word_char_codepoint = tf.RaggedTensor.from_row_starts( - values=sentence_char_codepoint.values, - row_starts=word_starts) -print(word_char_codepoint) -```py - -``` - - -```py - -最后,我们可以将词码位 `RaggedTensor` 划分回句子中: - -``` -# dtype: int64; shape: [num_sentences] -# -# sentence_num_words[i] is the number of words in the i'th sentence. -sentence_num_words = tf.reduce_sum( - tf.cast(sentence_char_starts_word, tf.int64), - axis=1) - -# dtype: int32; shape: [num_sentences, (num_words_per_sentence), (num_chars_per_word)] -# -# sentence_word_char_codepoint[i, j, k] is the codepoint for the k'th character -# in the j'th word in the i'th sentence. -sentence_word_char_codepoint = tf.RaggedTensor.from_row_lengths( - values=word_char_codepoint, - row_lengths=sentence_num_words) -print(sentence_word_char_codepoint) -```py - -``` - - -```py - -为了使最终结果更易于阅读,我们可以将其重新编码为 UTF-8 字符串: - -``` -tf.strings.unicode_encode(sentence_word_char_codepoint, 'UTF-8').to_list() -```py - -``` -[[b'Hello', b', ', b'world', b'.'], - [b'\xe4\xb8\x96\xe7\x95\x8c', - b'\xe3\x81\x93\xe3\x82\x93\xe3\x81\xab\xe3\x81\xa1\xe3\x81\xaf']] - -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/020.md b/Tensorflow/TensorFlow2.0/020.md deleted file mode 100644 index d3859380..00000000 --- a/Tensorflow/TensorFlow2.0/020.md +++ /dev/null @@ -1,198 +0,0 @@ -# TF.Text - -> 原文:[https://tensorflow.google.cn/tutorials/tensorflow_text/intro](https://tensorflow.google.cn/tutorials/tensorflow_text/intro) - -## Introduction - -TensorFlow Text provides a collection of text related classes and ops ready to use with TensorFlow 2.0\. The library can perform the preprocessing regularly required by text-based models, and includes other features useful for sequence modeling not provided by core TensorFlow. - -The benefit of using these ops in your text preprocessing is that they are done in the TensorFlow graph. You do not need to worry about tokenization in training being different than the tokenization at inference, or managing preprocessing scripts. - -## Eager Execution - -TensorFlow Text requires TensorFlow 2.0, and is fully compatible with eager mode and graph mode. - -* * * - -**Note:** On rare occassions, this import may fail looking for the TF library. Please reset the runtime and rerun the pip install -q above. - -```py -!pip install -q tensorflow-text -``` - -```py -DEPRECATION: Python 3.4 support has been deprecated. pip 19.1 will be the last one supporting it. Please upgrade your Python as Python 3.4 won't be maintained after March 2019 (cf PEP 429). - -``` - -```py -import tensorflow as tf -import tensorflow_text as text -``` - -## Unicode - -Most ops expect that the strings are in UTF-8\. If you're using a different encoding, you can use the core tensorflow transcode op to transcode into UTF-8\. You can also use the same op to coerce your string to structurally valid UTF-8 if your input could be invalid. - -```py -docs = tf.constant([u'Everything not saved will be lost.'.encode('UTF-16-BE'), u'Sad☹'.encode('UTF-16-BE')]) -utf8_docs = tf.strings.unicode_transcode(docs, input_encoding='UTF-16-BE', output_encoding='UTF-8') -``` - -## Tokenization - -Tokenization is the process of breaking up a string into tokens. Commonly, these tokens are words, numbers, and/or punctuation. - -The main interfaces are `Tokenizer` and `TokenizerWithOffsets` which each have a single method `tokenize` and `tokenize_with_offsets` respectively. There are multiple tokenizers available now. Each of these implement `TokenizerWithOffsets` (which extends `Tokenizer`) which includes an option for getting byte offsets into the original string. This allows the caller to know the bytes in the original string the token was created from. - -All of the tokenizers return RaggedTensors with the inner-most dimension of tokens mapping to the original individual strings. As a result, the resulting shape's rank is increased by one. Please review the ragged tensor guide if you are unfamiliar with them. https://www.tensorflow.org/guide/ragged_tensors - -### WhitespaceTokenizer - -This is a basic tokenizer that splits UTF-8 strings on ICU defined whitespace characters (eg. space, tab, new line). - -```py -tokenizer = text.WhitespaceTokenizer() -tokens = tokenizer.tokenize(['everything not saved will be lost.', u'Sad☹'.encode('UTF-8')]) -print(tokens.to_list()) -``` - -```py -WARNING: Logging before flag parsing goes to stderr. -W0701 13:16:14.667488 140633166759744 deprecation.py:323] From /tmpfs/src/tf_docs_env/lib/python3.4/site-packages/tensorflow/python/util/dispatch.py:180: batch_gather (from tensorflow.python.ops.array_ops) is deprecated and will be removed after 2017-10-25. -Instructions for updating: -`tf.batch_gather` is deprecated, please use `tf.gather` with `batch_dims` instead. -W0701 13:16:14.671800 140633166759744 deprecation.py:323] From /tmpfs/src/tf_docs_env/lib/python3.4/site-packages/tensorflow/python/ops/array_ops.py:1340: add_dispatch_support..wrapper (from tensorflow.python.ops.array_ops) is deprecated and will be removed in a future version. -Instructions for updating: -Use tf.where in 2.0, which has the same broadcast rule as np.where - -[[b'everything', b'not', b'saved', b'will', b'be', b'lost.'], [b'Sad\xe2\x98\xb9']] - -``` - -### UnicodeScriptTokenizer - -This tokenizer splits UTF-8 strings based on Unicode script boundaries. The script codes used correspond to International Components for Unicode (ICU) UScriptCode values. See: http://icu-project.org/apiref/icu4c/uscript_8h.html - -In practice, this is similar to the `WhitespaceTokenizer` with the most apparent difference being that it will split punctuation (USCRIPT_COMMON) from language texts (eg. USCRIPT_LATIN, USCRIPT_CYRILLIC, etc) while also separating language texts from each other. - -```py -tokenizer = text.UnicodeScriptTokenizer() -tokens = tokenizer.tokenize(['everything not saved will be lost.', u'Sad☹'.encode('UTF-8')]) -print(tokens.to_list()) -``` - -```py -[[b'everything', b'not', b'saved', b'will', b'be', b'lost', b'.'], [b'Sad', b'\xe2\x98\xb9']] - -``` - -### Unicode split - -When tokenizing languages without whitespace to segment words, it is common to just split by character, which can be accomplished using the [unicode_split](https://tensorflow.google.cn/api_docs/python/tf/strings/unicode_split) op found in core. - -```py -tokens = tf.strings.unicode_split([u"仅今年前".encode('UTF-8')], 'UTF-8') -print(tokens.to_list()) -``` - -```py -[[b'\xe4\xbb\x85', b'\xe4\xbb\x8a', b'\xe5\xb9\xb4', b'\xe5\x89\x8d']] - -``` - -### Offsets - -When tokenizing strings, it is often desired to know where in the original string the token originated from. For this reason, each tokenizer which implements `TokenizerWithOffsets` has a *tokenize_with_offsets* method that will return the byte offsets along with the tokens. The offset_starts lists the bytes in the original string each token starts at, and the offset_limits lists the bytes where each token ends. - -```py -tokenizer = text.UnicodeScriptTokenizer() -(tokens, offset_starts, offset_limits) = tokenizer.tokenize_with_offsets(['everything not saved will be lost.', u'Sad☹'.encode('UTF-8')]) -print(tokens.to_list()) -print(offset_starts.to_list()) -print(offset_limits.to_list()) -``` - -```py -[[b'everything', b'not', b'saved', b'will', b'be', b'lost', b'.'], [b'Sad', b'\xe2\x98\xb9']] -[[0, 11, 15, 21, 26, 29, 33], [0, 3]] -[[10, 14, 20, 25, 28, 33, 34], [3, 6]] - -``` - -### TF.Data Example - -Tokenizers work as expected with the tf.data API. A simple example is provided below. - -```py -docs = tf.data.Dataset.from_tensor_slices([['Never tell me the odds.'], ["It's a trap!"]]) -tokenizer = text.WhitespaceTokenizer() -tokenized_docs = docs.map(lambda x: tokenizer.tokenize(x)) -iterator = iter(tokenized_docs) -print(next(iterator).to_list()) -print(next(iterator).to_list()) -``` - -```py -[[b'Never', b'tell', b'me', b'the', b'odds.']] -[[b"It's", b'a', b'trap!']] - -``` - -## Other Text Ops - -TF.Text packages other useful preprocessing ops. We will review a couple below. - -### Wordshape - -A common feature used in some natural language understanding models is to see if the text string has a certain property. For example, a sentence breaking model might contain features which check for word capitalization or if a punctuation character is at the end of a string. - -Wordshape defines a variety of useful regular expression based helper functions for matching various relevant patterns in your input text. Here are a few examples. - -```py -tokenizer = text.WhitespaceTokenizer() -tokens = tokenizer.tokenize(['Everything not saved will be lost.', u'Sad☹'.encode('UTF-8')]) - -# Is capitalized? -f1 = text.wordshape(tokens, text.WordShape.HAS_TITLE_CASE) -# Are all letters uppercased? -f2 = text.wordshape(tokens, text.WordShape.IS_UPPERCASE) -# Does the token contain punctuation? -f3 = text.wordshape(tokens, text.WordShape.HAS_SOME_PUNCT_OR_SYMBOL) -# Is the token a number? -f4 = text.wordshape(tokens, text.WordShape.IS_NUMERIC_VALUE) - -print(f1.to_list()) -print(f2.to_list()) -print(f3.to_list()) -print(f4.to_list()) -``` - -```py -[[True, False, False, False, False, False], [True]] -[[False, False, False, False, False, False], [False]] -[[False, False, False, False, False, True], [True]] -[[False, False, False, False, False, False], [False]] - -``` - -### N-grams & Sliding Window - -N-grams are sequential words given a sliding window size of *n*. When combining the tokens, there are three reduction mechanisms supported. For text, you would want to use `Reduction.STRING_JOIN` which appends the strings to each other. The default separator character is a space, but this can be changed with the string_separater argument. - -The other two reduction methods are most often used with numerical values, and these are `Reduction.SUM` and `Reduction.MEAN`. - -```py -tokenizer = text.WhitespaceTokenizer() -tokens = tokenizer.tokenize(['Everything not saved will be lost.', u'Sad☹'.encode('UTF-8')]) - -# Ngrams, in this case bi-gram (n = 2) -bigrams = text.ngrams(tokens, 2, reduction_type=text.Reduction.STRING_JOIN) - -print(bigrams.to_list()) -``` - -```py -[[b'Everything not', b'not saved', b'saved will', b'will be', b'be lost.'], []] - -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/021.md b/Tensorflow/TensorFlow2.0/021.md deleted file mode 100644 index 973362e4..00000000 --- a/Tensorflow/TensorFlow2.0/021.md +++ /dev/null @@ -1,721 +0,0 @@ -# TFRecord 和 tf.Example - -> 原文:[https://tensorflow.google.cn/tutorials/load_data/tfrecord](https://tensorflow.google.cn/tutorials/load_data/tfrecord) - -为了高效地读取数据,比较有帮助的一种做法是对数据进行序列化并将其存储在一组可线性读取的文件(每个文件 100-200MB)中。这尤其适用于通过网络进行流式传输的数据。这种做法对缓冲任何数据预处理也十分有用。 - -TFRecord 格式是一种用于存储二进制记录序列的简单格式。 - -[协议缓冲区](https://developers.google.cn/protocol-buffers/)是一个跨平台、跨语言的库,用于高效地序列化结构化数据。 - -协议消息由 `.proto` 文件定义,这通常是了解消息类型最简单的方法。 - -`tf.Example` 消息(或 protobuf)是一种灵活的消息类型,表示 `{"string": value}` 映射。它专为 TensorFlow 而设计,并被用于 [TFX](https://tensorflow.google.cn/tfx/) 等高级 API。 - -本笔记本将演示如何创建、解析和使用 `tf.Example` 消息,以及如何在 `.tfrecord` 文件之间对 `tf.Example` 消息进行序列化、写入和读取。 - -注:这些结构虽然有用,但并不是强制的。您无需转换现有代码即可使用 TFRecord,除非您正在使用 [tf.data](https://tensorflow.google.cn/guide/datasets) 且读取数据仍是训练的瓶颈。有关数据集性能的提示,请参阅[数据输入流水线性能](https://tensorflow.google.cn/guide/performance/datasets)。 - -## 设置 - -```py -import tensorflow as tf - -import numpy as np -import IPython.display as display -``` - -## `tf.Example` - -### `tf.Example` 的数据类型 - -从根本上讲,`tf.Example` 是 `{"string": tf.train.Feature}` 映射。 - -[`tf.train.Feature`](https://tensorflow.google.cn/api_docs/python/tf/train/Feature) 消息类型可以接受以下三种类型(请参阅 [`.proto` 文件](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/core/example/feature.proto))。大多数其他通用类型也可以强制转换成下面的其中一种: - -1. [`tf.train.BytesList`](https://tensorflow.google.cn/api_docs/python/tf/train/BytesList)(可强制转换自以下类型) - -* `string` -* `byte` - -1. [`tf.train.FloatList`](https://tensorflow.google.cn/api_docs/python/tf/train/FloatList)(可强制转换自以下类型) - -* `float` (`float32`) -* `double` (`float64`) - -1. [`tf.train.Int64List`](https://tensorflow.google.cn/api_docs/python/tf/train/Int64List)(可强制转换自以下类型) - -* `bool` -* `enum` -* `int32` -* `uint32` -* `int64` -* `uint64` - -为了将标准 TensorFlow 类型转换为兼容 `tf.Example` 的 [`tf.train.Feature`](https://tensorflow.google.cn/api_docs/python/tf/train/Feature),可以使用下面的快捷函数。请注意,每个函数会接受标量输入值并返回包含上述三种 `list` 类型之一的 [`tf.train.Feature`](https://tensorflow.google.cn/api_docs/python/tf/train/Feature): - -```py -# The following functions can be used to convert a value to a type compatible -# with tf.Example. - -def _bytes_feature(value): - """Returns a bytes_list from a string / byte.""" - if isinstance(value, type(tf.constant(0))): - value = value.numpy() # BytesList won't unpack a string from an EagerTensor. - return tf.train.Feature(bytes_list=tf.train.BytesList(value=[value])) - -def _float_feature(value): - """Returns a float_list from a float / double.""" - return tf.train.Feature(float_list=tf.train.FloatList(value=[value])) - -def _int64_feature(value): - """Returns an int64_list from a bool / enum / int / uint.""" - return tf.train.Feature(int64_list=tf.train.Int64List(value=[value])) -``` - -注:为了简单起见,本示例仅使用标量输入。要处理非标量特征,最简单的方法是使用 [`tf.io.serialize_tensor`](https://tensorflow.google.cn/api_docs/python/tf/io/serialize_tensor) 将张量转换为二进制字符串。在 TensorFlow 中,字符串是标量。使用 [`tf.io.parse_tensor`](https://tensorflow.google.cn/api_docs/python/tf/io/parse_tensor) 可将二进制字符串转换回张量。 - -下面是有关这些函数如何工作的一些示例。请注意不同的输入类型和标准化的输出类型。如果函数的输入类型与上述可强制转换的类型均不匹配,则该函数将引发异常(例如,`_int64_feature(1.0)` 将出错,因为 `1.0` 是浮点数,应该用于 `_float_feature` 函数): - -```py -print(_bytes_feature(b'test_string')) -print(_bytes_feature(u'test_bytes'.encode('utf-8'))) - -print(_float_feature(np.exp(1))) - -print(_int64_feature(True)) -print(_int64_feature(1)) -``` - -```py -bytes_list { - value: "test_string" -} - -bytes_list { - value: "test_bytes" -} - -float_list { - value: 2.7182817459106445 -} - -int64_list { - value: 1 -} - -int64_list { - value: 1 -} - -``` - -可以使用 `.SerializeToString` 方法将所有协议消息序列化为二进制字符串: - -```py -feature = _float_feature(np.exp(1)) - -feature.SerializeToString() -``` - -```py -b'\x12\x06\n\x04T\xf8-@' - -``` - -### 创建 `tf.Example` 消息 - -假设您要根据现有数据创建 `tf.Example` 消息。在实践中,数据集可能来自任何地方,但是从单个观测值创建 `tf.Example` 消息的过程相同: - -1. 在每个观测结果中,需要使用上述其中一种函数,将每个值转换为包含三种兼容类型之一的 [`tf.train.Feature`](https://tensorflow.google.cn/api_docs/python/tf/train/Feature)。 - -2. 创建一个从特征名称字符串到第 1 步中生成的编码特征值的映射(字典)。 - -3. 将第 2 步中生成的映射转换为 [`Features` 消息](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/core/example/feature.proto#L85)。 - -在此笔记本中,您将使用 NumPy 创建一个数据集。 - -此数据集将具有 4 个特征: - -* 具有相等 `False` 或 `True` 概率的布尔特征 -* 从 `[0, 5]` 均匀随机选择的整数特征 -* 通过将整数特征作为索引从字符串表生成的字符串特征 -* 来自标准正态分布的浮点特征 - -请思考一个样本,其中包含来自上述每个分布的 10,000 个独立且分布相同的观测值: - -```py -# The number of observations in the dataset. -n_observations = int(1e4) - -# Boolean feature, encoded as False or True. -feature0 = np.random.choice([False, True], n_observations) - -# Integer feature, random from 0 to 4. -feature1 = np.random.randint(0, 5, n_observations) - -# String feature -strings = np.array([b'cat', b'dog', b'chicken', b'horse', b'goat']) -feature2 = strings[feature1] - -# Float feature, from a standard normal distribution -feature3 = np.random.randn(n_observations) -``` - -您可以使用 `_bytes_feature`、`_float_feature` 或 `_int64_feature` 将下面的每个特征强制转换为兼容 `tf.Example` 的类型。然后,可以通过下面的已编码特征创建 `tf.Example` 消息: - -```py -def serialize_example(feature0, feature1, feature2, feature3): - """ - Creates a tf.Example message ready to be written to a file. - """ - # Create a dictionary mapping the feature name to the tf.Example-compatible - # data type. - feature = { - 'feature0': _int64_feature(feature0), - 'feature1': _int64_feature(feature1), - 'feature2': _bytes_feature(feature2), - 'feature3': _float_feature(feature3), - } - - # Create a Features message using tf.train.Example. - - example_proto = tf.train.Example(features=tf.train.Features(feature=feature)) - return example_proto.SerializeToString() -``` - -例如,假设您从数据集中获得了一个观测值 `[False, 4, bytes('goat'), 0.9876]`。您可以使用 `create_message()` 创建和打印此观测值的 `tf.Example` 消息。如上所述,每个观测值将被写为一条 `Features` 消息。请注意,`tf.Example` [消息](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/core/example/example.proto#L88)只是 `Features` 消息外围的包装器: - -```py -# This is an example observation from the dataset. - -example_observation = [] - -serialized_example = serialize_example(False, 4, b'goat', 0.9876) -serialized_example -``` - -```py -b'\nR\n\x14\n\x08feature3\x12\x08\x12\x06\n\x04[\xd3|?\n\x14\n\x08feature2\x12\x08\n\x06\n\x04goat\n\x11\n\x08feature0\x12\x05\x1a\x03\n\x01\x00\n\x11\n\x08feature1\x12\x05\x1a\x03\n\x01\x04' - -``` - -要解码消息,请使用 [`tf.train.Example.FromString`](https://tensorflow.google.cn/api_docs/python/tf/train/Example#FromString) 方法。 - -```py -example_proto = tf.train.Example.FromString(serialized_example) -example_proto -``` - -```py -features { - feature { - key: "feature0" - value { - int64_list { - value: 0 - } - } - } - feature { - key: "feature1" - value { - int64_list { - value: 4 - } - } - } - feature { - key: "feature2" - value { - bytes_list { - value: "goat" - } - } - } - feature { - key: "feature3" - value { - float_list { - value: 0.9876000285148621 - } - } - } -} - -``` - -## TFRecords 格式详细信息 - -TFRecord 文件包含一系列记录。该文件只能按顺序读取。 - -每条记录包含一个字节字符串(用于数据有效负载),外加数据长度,以及用于完整性检查的 CRC32C(使用 Castagnoli 多项式的 32 位 CRC)哈希值。 - -每条记录会存储为以下格式: - -```py -uint64 length uint32 masked_crc32_of_length byte data[length] uint32 masked_crc32_of_data -``` - -将记录连接起来以生成文件。[此处](https://en.wikipedia.org/wiki/Cyclic_redundancy_check)对 CRC 进行了说明,且 CRC 的掩码为: - -```py -masked_crc = ((crc >> 15) | (crc << 17)) + 0xa282ead8ul -``` - -注:不需要在 TFRecord 文件中使用 `tf.Example`。`tf.Example` 只是将字典序列化为字节字符串的一种方法。文本行、编码的图像数据,或序列化的张量(使用 [`tf.io.serialize_tensor`](https://tensorflow.google.cn/api_docs/python/tf/io/serialize_tensor),或在加载时使用 [`tf.io.parse_tensor`](https://tensorflow.google.cn/api_docs/python/tf/io/parse_tensor))。有关更多选项,请参阅 [`tf.io`](https://tensorflow.google.cn/api_docs/python/tf/io) 模块。 - -## 使用 [`tf.data`](https://tensorflow.google.cn/api_docs/python/tf/data) 的 TFRecord 文件 - -[`tf.data`](https://tensorflow.google.cn/api_docs/python/tf/data) 模块还提供用于在 TensorFlow 中读取和写入数据的工具。 - -### 写入 TFRecord 文件 - -要将数据放入数据集中,最简单的方式是使用 `from_tensor_slices` 方法。 - -若应用于数组,将返回标量数据集: - -```py -tf.data.Dataset.from_tensor_slices(feature1) -``` - -```py - - -``` - -若应用于数组的元组,将返回元组的数据集: - -```py -features_dataset = tf.data.Dataset.from_tensor_slices((feature0, feature1, feature2, feature3)) -features_dataset -``` - -```py - - -``` - -```py -# Use `take(1)` to only pull one example from the dataset. -for f0,f1,f2,f3 in features_dataset.take(1): - print(f0) - print(f1) - print(f2) - print(f3) -``` - -```py -tf.Tensor(False, shape=(), dtype=bool) -tf.Tensor(1, shape=(), dtype=int64) -tf.Tensor(b'dog', shape=(), dtype=string) -tf.Tensor(-0.07658295354196158, shape=(), dtype=float64) - -``` - -使用 [`tf.data.Dataset.map`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#map) 方法可将函数应用于 `Dataset` 的每个元素。 - -映射函数必须在 TensorFlow 计算图模式下进行运算(它必须在 `tf.Tensors` 上运算并返回)。可以使用 [`tf.py_function`](https://tensorflow.google.cn/api_docs/python/tf/py_function) 包装非张量函数(如 `serialize_example`)以使其兼容。 - -使用 [`tf.py_function`](https://tensorflow.google.cn/api_docs/python/tf/py_function) 需要指定形状和类型信息,否则它将不可用: - -```py -def tf_serialize_example(f0,f1,f2,f3): - tf_string = tf.py_function( - serialize_example, - (f0,f1,f2,f3), # pass these args to the above function. - tf.string) # the return type is `tf.string`. - return tf.reshape(tf_string, ()) # The result is a scalar -``` - -```py -tf_serialize_example(f0,f1,f2,f3) -``` - -```py - - -``` - -将此函数应用于数据集中的每个元素: - -```py -serialized_features_dataset = features_dataset.map(tf_serialize_example) -serialized_features_dataset -``` - -```py - - -``` - -```py -def generator(): - for features in features_dataset: - yield serialize_example(*features) -``` - -```py -serialized_features_dataset = tf.data.Dataset.from_generator( - generator, output_types=tf.string, output_shapes=()) -``` - -```py -serialized_features_dataset -``` - -```py - - -``` - -并将它们写入 TFRecord 文件: - -```py -filename = 'test.tfrecord' -writer = tf.data.experimental.TFRecordWriter(filename) -writer.write(serialized_features_dataset) -``` - -### 读取 TFRecord 文件 - -您还可以使用 [`tf.data.TFRecordDataset`](https://tensorflow.google.cn/api_docs/python/tf/data/TFRecordDataset) 类来读取 TFRecord 文件。 - -有关通过 [`tf.data`](https://tensorflow.google.cn/api_docs/python/tf/data) 使用 TFRecord 文件的详细信息,请参见[此处](https://tensorflow.google.cn/guide/datasets#consuming_tfrecord_data)。 - -使用 `TFRecordDataset` 对于标准化输入数据和优化性能十分有用。 - -```py -filenames = [filename] -raw_dataset = tf.data.TFRecordDataset(filenames) -raw_dataset -``` - -```py - - -``` - -此时,数据集包含序列化的 [`tf.train.Example`](https://tensorflow.google.cn/api_docs/python/tf/train/Example) 消息。迭代时,它会将其作为标量字符串张量返回。 - -使用 `.take` 方法仅显示前 10 条记录。 - -注:在 [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) 上进行迭代仅在启用了 Eager Execution 时有效。 - -```py -for raw_record in raw_dataset.take(10): - print(repr(raw_record)) -``` - -```py - - - - - - -\n\x11\n\x08feature0\x12\x05\x1a\x03\n\x01\x00\n\x11\n\x08feature1\x12\x05\x1a\x03\n\x01\x00'> - - - - -``` - -可以使用以下函数对这些张量进行解析。请注意,这里的 `feature_description` 是必需的,因为数据集使用计算图执行,并且需要以下描述来构建它们的形状和类型签名: - -```py -# Create a description of the features. -feature_description = { - 'feature0': tf.io.FixedLenFeature([], tf.int64, default_value=0), - 'feature1': tf.io.FixedLenFeature([], tf.int64, default_value=0), - 'feature2': tf.io.FixedLenFeature([], tf.string, default_value=''), - 'feature3': tf.io.FixedLenFeature([], tf.float32, default_value=0.0), -} - -def _parse_function(example_proto): - # Parse the input `tf.Example` proto using the dictionary above. - return tf.io.parse_single_example(example_proto, feature_description) -``` - -或者,使用 `tf.parse example` 一次解析整个批次。使用 [`tf.data.Dataset.map`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#map) 方法将此函数应用于数据集中的每一项: - -```py -parsed_dataset = raw_dataset.map(_parse_function) -parsed_dataset -``` - -```py - - -``` - -使用 Eager Execution 在数据集中显示观测值。此数据集中有 10,000 个观测值,但只会显示前 10 个。数据会作为特征字典进行显示。每一项都是一个 [`tf.Tensor`](https://tensorflow.google.cn/api_docs/python/tf/Tensor),此张量的 `numpy` 元素会显示特征的值: - -```py -for parsed_record in parsed_dataset.take(10): - print(repr(parsed_record)) -``` - -```py -{'feature0': , 'feature1': , 'feature2': , 'feature3': } -{'feature0': , 'feature1': , 'feature2': , 'feature3': } -{'feature0': , 'feature1': , 'feature2': , 'feature3': } -{'feature0': , 'feature1': , 'feature2': , 'feature3': } -{'feature0': , 'feature1': , 'feature2': , 'feature3': } -{'feature0': , 'feature1': , 'feature2': , 'feature3': } -{'feature0': , 'feature1': , 'feature2': , 'feature3': } -{'feature0': , 'feature1': , 'feature2': , 'feature3': } -{'feature0': , 'feature1': , 'feature2': , 'feature3': } -{'feature0': , 'feature1': , 'feature2': , 'feature3': } - -``` - -在这里,`tf.parse_example` 函数会将 `tf.Example` 字段解压缩为标准张量。 - -## Python 中的 TFRecord 文件 - -[`tf.io`](https://tensorflow.google.cn/api_docs/python/tf/io) 模块还包含用于读取和写入 TFRecord 文件的纯 Python 函数。 - -### 写入 TFRecord 文件 - -接下来,将 10,000 个观测值写入文件 `test.tfrecord`。每个观测值都将转换为一条 `tf.Example` 消息,然后被写入文件。随后,您可以验证是否已创建 `test.tfrecord` 文件: - -```py -# Write the `tf.Example` observations to the file. -with tf.io.TFRecordWriter(filename) as writer: - for i in range(n_observations): - example = serialize_example(feature0[i], feature1[i], feature2[i], feature3[i]) - writer.write(example) -``` - -```py -du -sh {filename} - -``` - -```py -984K test.tfrecord - -``` - -### 读取 TFRecord 文件 - -您可以使用 [`tf.train.Example.ParseFromString`](https://tensorflow.google.cn/api_docs/python/tf/train/Example#ParseFromString) 轻松解析以下序列化张量: - -```py -filenames = [filename] -raw_dataset = tf.data.TFRecordDataset(filenames) -raw_dataset -``` - -```py - - -``` - -```py -for raw_record in raw_dataset.take(1): - example = tf.train.Example() - example.ParseFromString(raw_record.numpy()) - print(example) -``` - -```py -features { - feature { - key: "feature0" - value { - int64_list { - value: 0 - } - } - } - feature { - key: "feature1" - value { - int64_list { - value: 1 - } - } - } - feature { - key: "feature2" - value { - bytes_list { - value: "dog" - } - } - } - feature { - key: "feature3" - value { - float_list { - value: -0.07658295333385468 - } - } - } -} - -``` - -## 演练:读取和写入图像数据 - -下面是关于如何使用 TFRecord 读取和写入图像数据的端到端示例。您将使用图像作为输入数据,将数据写入 TFRecord 文件,然后将文件读取回来并显示图像。 - -如果您想在同一个输入数据集上使用多个模型,这种做法会很有用。您可以不以原始格式存储图像,而是将图像预处理为 TFRecord 格式,然后将其用于所有后续的处理和建模中。 - -首先,让我们下载雪中的猫的[图像](https://commons.wikimedia.org/wiki/File:Felis_catus-cat_on_snow.jpg),以及施工中的纽约威廉斯堡大桥的[照片](https://upload.wikimedia.org/wikipedia/commons/f/fe/New_East_River_Bridge_from_Brooklyn_det.4a09796u.jpg)。 - -### 提取图像 - -```py -cat_in_snow = tf.keras.utils.get_file('320px-Felis_catus-cat_on_snow.jpg', 'https://storage.googleapis.com/download.tensorflow.org/example_images/320px-Felis_catus-cat_on_snow.jpg') -williamsburg_bridge = tf.keras.utils.get_file('194px-New_East_River_Bridge_from_Brooklyn_det.4a09796u.jpg','https://storage.googleapis.com/download.tensorflow.org/example_images/194px-New_East_River_Bridge_from_Brooklyn_det.4a09796u.jpg') -``` - -```py -Downloading data from https://storage.googleapis.com/download.tensorflow.org/example_images/320px-Felis_catus-cat_on_snow.jpg -24576/17858 [=========================================] - 0s 0us/step -Downloading data from https://storage.googleapis.com/download.tensorflow.org/example_images/194px-New_East_River_Bridge_from_Brooklyn_det.4a09796u.jpg -16384/15477 [===============================] - 0s 0us/step - -``` - -```py -display.display(display.Image(filename=cat_in_snow)) -display.display(display.HTML('Image cc-by: <a "href=https://commons.wikimedia.org/wiki/File:Felis_catus-cat_on_snow.jpg">Von.grzanka</a>')) -``` - -![jpeg](img/e8d23da7a633c8eaa5878bca988b63f3.png) - - - -```py -display.display(display.Image(filename=williamsburg_bridge)) -display.display(display.HTML('<a "href=https://commons.wikimedia.org/wiki/File:New_East_River_Bridge_from_Brooklyn_det.4a09796u.jpg">From Wikimedia</a>')) -``` - -![jpeg](img/47e128c5852147da0f7b0158465fe752.png) - - - -### 写入 TFRecord 文件 - -和以前一样,将特征编码为与 `tf.Example` 兼容的类型。这将存储原始图像字符串特征,以及高度、宽度、深度和任意 `label` 特征。后者会在您写入文件以区分猫和桥的图像时使用。将 `0` 用于猫的图像,将 `1` 用于桥的图像: - -```py -image_labels = { - cat_in_snow : 0, - williamsburg_bridge : 1, -} -``` - -```py -# This is an example, just using the cat image. -image_string = open(cat_in_snow, 'rb').read() - -label = image_labels[cat_in_snow] - -# Create a dictionary with features that may be relevant. -def image_example(image_string, label): - image_shape = tf.image.decode_jpeg(image_string).shape - - feature = { - 'height': _int64_feature(image_shape[0]), - 'width': _int64_feature(image_shape[1]), - 'depth': _int64_feature(image_shape[2]), - 'label': _int64_feature(label), - 'image_raw': _bytes_feature(image_string), - } - - return tf.train.Example(features=tf.train.Features(feature=feature)) - -for line in str(image_example(image_string, label)).split('\n')[:15]: - print(line) -print('...') -``` - -```py -features { - feature { - key: "depth" - value { - int64_list { - value: 3 - } - } - } - feature { - key: "height" - value { - int64_list { - value: 213 - } -... - -``` - -请注意,所有特征现在都存储在 `tf.Example` 消息中。接下来,函数化上面的代码,并将示例消息写入名为 `images.tfrecords` 的文件: - -```py -# Write the raw image files to `images.tfrecords`. -# First, process the two images into `tf.Example` messages. -# Then, write to a `.tfrecords` file. -record_file = 'images.tfrecords' -with tf.io.TFRecordWriter(record_file) as writer: - for filename, label in image_labels.items(): - image_string = open(filename, 'rb').read() - tf_example = image_example(image_string, label) - writer.write(tf_example.SerializeToString()) -``` - -```py -du -sh {record_file} - -``` - -```py -36K images.tfrecords - -``` - -### 读取 TFRecord 文件 - -现在,您有文件 `images.tfrecords`,并可以迭代其中的记录以将您写入的内容读取回来。因为在此示例中您只需重新生成图像,所以您只需要原始图像字符串这一个特征。使用上面描述的 getter 方法(即 `example.features.feature['image_raw'].bytes_list.value[0]`)提取该特征。您还可以使用标签来确定哪个记录是猫,哪个记录是桥: - -```py -raw_image_dataset = tf.data.TFRecordDataset('images.tfrecords') - -# Create a dictionary describing the features. -image_feature_description = { - 'height': tf.io.FixedLenFeature([], tf.int64), - 'width': tf.io.FixedLenFeature([], tf.int64), - 'depth': tf.io.FixedLenFeature([], tf.int64), - 'label': tf.io.FixedLenFeature([], tf.int64), - 'image_raw': tf.io.FixedLenFeature([], tf.string), -} - -def _parse_image_function(example_proto): - # Parse the input tf.Example proto using the dictionary above. - return tf.io.parse_single_example(example_proto, image_feature_description) - -parsed_image_dataset = raw_image_dataset.map(_parse_image_function) -parsed_image_dataset -``` - -```py - - -``` - -从 TFRecord 文件中恢复图像: - -```py -for image_features in parsed_image_dataset: - image_raw = image_features['image_raw'].numpy() - display.display(display.Image(data=image_raw)) -``` - -![jpeg](img/36943305bc87e9d7bacdd3122d2620ca.png) - -![jpeg](img/9a244f6224055e7727787fe289c2ca7c.png) \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/022.md b/Tensorflow/TensorFlow2.0/022.md deleted file mode 100644 index 943515fa..00000000 --- a/Tensorflow/TensorFlow2.0/022.md +++ /dev/null @@ -1 +0,0 @@ -# Estimator \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/023.md b/Tensorflow/TensorFlow2.0/023.md deleted file mode 100644 index 2f6d7866..00000000 --- a/Tensorflow/TensorFlow2.0/023.md +++ /dev/null @@ -1,410 +0,0 @@ -# 预创建的 Estimators - -> 原文:[https://tensorflow.google.cn/tutorials/estimator/premade](https://tensorflow.google.cn/tutorials/estimator/premade) - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -本教程将向您展示如何使用 Estimators 解决 Tensorflow 中的鸢尾花(Iris)分类问题。Estimator 是 Tensorflow 完整模型的高级表示,它被设计用于轻松扩展和异步训练。更多细节请参阅 [Estimators](https://tensorflow.google.cn/guide/estimator)。 - -请注意,在 Tensorflow 2.0 中,[Keras API](https://tensorflow.google.cn/guide/keras) 可以完成许多相同的任务,而且被认为是一个更易学习的 API。如果您刚刚开始入门,我们建议您从 Keras 开始。有关 Tensorflow 2.0 中可用高级 API 的更多信息,请参阅 [Keras 标准化](https://medium.com/tensorflow/standardizing-on-keras-guidance-on-high-level-apis-in-tensorflow-2-0-bad2b04c819a)。 - -## 首先要做的事 - -为了开始,您将首先导入 Tensorflow 和一系列您需要的库。 - -```py -import tensorflow as tf - -import pandas as pd -``` - -## 数据集 - -本文档中的示例程序构建并测试了一个模型,该模型根据[花萼](https://en.wikipedia.org/wiki/Sepal)和[花瓣](https://en.wikipedia.org/wiki/Petal)的大小将鸢尾花分成三种物种。 - -您将使用鸢尾花数据集训练模型。该数据集包括四个特征和一个[标签](https://developers.google.cn/machine-learning/glossary/#label)。这四个特征确定了单个鸢尾花的以下植物学特征: - -* 花萼长度 -* 花萼宽度 -* 花瓣长度 -* 花瓣宽度 - -根据这些信息,您可以定义一些有用的常量来解析数据: - -```py -CSV_COLUMN_NAMES = ['SepalLength', 'SepalWidth', 'PetalLength', 'PetalWidth', 'Species'] -SPECIES = ['Setosa', 'Versicolor', 'Virginica'] -``` - -接下来,使用 Keras 与 Pandas 下载并解析鸢尾花数据集。注意为训练和测试保留不同的数据集。 - -```py -train_path = tf.keras.utils.get_file( - "iris_training.csv", "https://storage.googleapis.com/download.tensorflow.org/data/iris_training.csv") -test_path = tf.keras.utils.get_file( - "iris_test.csv", "https://storage.googleapis.com/download.tensorflow.org/data/iris_test.csv") - -train = pd.read_csv(train_path, names=CSV_COLUMN_NAMES, header=0) -test = pd.read_csv(test_path, names=CSV_COLUMN_NAMES, header=0) -``` - -通过检查数据您可以发现有四列浮点型特征和一列 int32 型标签。 - -```py -train.head() -``` - - - -对于每个数据集都分割出标签,模型将被训练来预测这些标签。 - -```py -train_y = train.pop('Species') -test_y = test.pop('Species') - -# 标签列现已从数据中删除 -train.head() -``` - - - -## Estimator 编程概述 - -现在您已经设定好了数据,您可以使用 Tensorflow Estimator 定义模型。Estimator 是从 [`tf.estimator.Estimator`](https://tensorflow.google.cn/api_docs/python/tf/estimator/Estimator) 中派生的任何类。Tensorflow 提供了一组[`tf.estimator`](https://tensorflow.google.cn/api_docs/python/tf/estimator)(例如,`LinearRegressor`)来实现常见的机器学习算法。此外,您可以编写您自己的[自定义 Estimator](https://tensorflow.google.cn/guide/custom_estimators)。入门阶段我们建议使用预创建的 Estimator。 - -为了编写基于预创建的 Estimator 的 Tensorflow 项目,您必须完成以下工作: - -* 创建一个或多个输入函数 -* 定义模型的特征列 -* 实例化一个 Estimator,指定特征列和各种超参数。 -* 在 Estimator 对象上调用一个或多个方法,传递合适的输入函数以作为数据源。 - -我们来看看这些任务是如何在鸢尾花分类中实现的。 - -## 创建输入函数 - -您必须创建输入函数来提供用于训练、评估和预测的数据。 - -**输入函数**是一个返回 [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) 对象的函数,此对象会输出下列含两个元素的元组: - -* [`features`](https://developers.google.cn/machine-learning/glossary/#feature)——Python 字典,其中: - * 每个键都是特征名称 - * 每个值都是包含此特征所有值的数组 -* `label` 包含每个样本的[标签](https://developers.google.cn/machine-learning/glossary/#label)的值的数组。 - -为了向您展示输入函数的格式,请查看下面这个简单的实现: - -```py -def input_evaluation_set(): - features = {'SepalLength': np.array([6.4, 5.0]), - 'SepalWidth': np.array([2.8, 2.3]), - 'PetalLength': np.array([5.6, 3.3]), - 'PetalWidth': np.array([2.2, 1.0])} - labels = np.array([2, 1]) - return features, labels -``` - -您的输入函数可以以您喜欢的方式生成 `features` 字典与 `label` 列表。但是,我们建议使用 Tensorflow 的 [Dataset API](https://tensorflow.google.cn/guide/datasets),该 API 可以用来解析各种类型的数据。 - -Dataset API 可以为您处理很多常见情况。例如,使用 Dataset API,您可以轻松地从大量文件中并行读取记录,并将它们合并为单个数据流。 - -为了简化此示例,我们将使用 [pandas](https://pandas.pydata.org/) 加载数据,并利用此内存数据构建输入管道。 - -```py -def input_fn(features, labels, training=True, batch_size=256): - """An input function for training or evaluating""" - # 将输入转换为数据集。 - dataset = tf.data.Dataset.from_tensor_slices((dict(features), labels)) - - # 如果在训练模式下混淆并重复数据。 - if training: - dataset = dataset.shuffle(1000).repeat() - - return dataset.batch(batch_size) -``` - -## 定义特征列(feature columns) - -[**特征列(feature columns)**](https://developers.google.cn/machine-learning/glossary/#feature_columns)是一个对象,用于描述模型应该如何使用特征字典中的原始输入数据。当您构建一个 Estimator 模型的时候,您会向其传递一个特征列的列表,其中包含您希望模型使用的每个特征。[`tf.feature_column`](https://tensorflow.google.cn/api_docs/python/tf/feature_column) 模块提供了许多为模型表示数据的选项。 - -对于鸢尾花问题,4 个原始特征是数值,因此我们将构建一个特征列的列表,以告知 Estimator 模型将 4 个特征都表示为 32 位浮点值。故创建特征列的代码如下所示: - -```py -# 特征列描述了如何使用输入。 -my_feature_columns = [] -for key in train.keys(): - my_feature_columns.append(tf.feature_column.numeric_column(key=key)) -``` - -特征列可能比上述示例复杂得多。您可以从[指南](https://tensorflow.google.cn/guide/feature_columns)获取更多关于特征列的信息。 - -我们已经介绍了如何使模型表示原始特征,现在您可以构建 Estimator 了。 - -## 实例化 Estimator - -鸢尾花为题是一个经典的分类问题。幸运的是,Tensorflow 提供了几个预创建的 Estimator 分类器,其中包括: - -* [`tf.estimator.DNNClassifier`](https://tensorflow.google.cn/api_docs/python/tf/estimator/DNNClassifier) 用于多类别分类的深度模型 -* [`tf.estimator.DNNLinearCombinedClassifier`](https://tensorflow.google.cn/api_docs/python/tf/estimator/DNNLinearCombinedClassifier) 用于广度与深度模型 -* [`tf.estimator.LinearClassifier`](https://tensorflow.google.cn/api_docs/python/tf/estimator/LinearClassifier) 用于基于线性模型的分类器 - -对于鸢尾花问题,[`tf.estimator.DNNClassifier`](https://tensorflow.google.cn/api_docs/python/tf/estimator/DNNClassifier) 似乎是最好的选择。您可以这样实例化该 Estimator: - -```py -# 构建一个拥有两个隐层,隐藏节点分别为 30 和 10 的深度神经网络。 -classifier = tf.estimator.DNNClassifier( - feature_columns=my_feature_columns, - # 隐层所含结点数量分别为 30 和 10. - hidden_units=[30, 10], - # 模型必须从三个类别中做出选择。 - n_classes=3) -``` - -```py -INFO:tensorflow:Using default config. -WARNING:tensorflow:Using temporary folder as model directory: /tmp/tmpkhwws8ja -INFO:tensorflow:Using config: {'_model_dir': '/tmp/tmpkhwws8ja', '_tf_random_seed': None, '_save_summary_steps': 100, '_save_checkpoints_steps': None, '_save_checkpoints_secs': 600, '_session_config': allow_soft_placement: true -graph_options { - rewrite_options { - meta_optimizer_iterations: ONE - } -} -, '_keep_checkpoint_max': 5, '_keep_checkpoint_every_n_hours': 10000, '_log_step_count_steps': 100, '_train_distribute': None, '_device_fn': None, '_protocol': None, '_eval_distribute': None, '_experimental_distribute': None, '_experimental_max_worker_delay_secs': None, '_session_creation_timeout_secs': 7200, '_service': None, '_cluster_spec': ClusterSpec({}), '_task_type': 'worker', '_task_id': 0, '_global_id_in_cluster': 0, '_master': '', '_evaluation_master': '', '_is_chief': True, '_num_ps_replicas': 0, '_num_worker_replicas': 1} - -``` - -## 训练、评估和预测 - -我们已经有一个 Estimator 对象,现在可以调用方法来执行下列操作: - -* 训练模型。 -* 评估经过训练的模型。 -* 使用经过训练的模型进行预测。 - -### 训练模型 - -通过调用 Estimator 的 `Train` 方法来训练模型,如下所示: - -```py -# 训练模型。 -classifier.train( - input_fn=lambda: input_fn(train, train_y, training=True), - steps=5000) -``` - -```py -WARNING:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/training/training_util.py:236: Variable.initialized_value (from tensorflow.python.ops.variables) is deprecated and will be removed in a future version. -Instructions for updating: -Use Variable.read_value. Variables in 2.X are initialized automatically both in eager and graph (inside tf.defun) contexts. -INFO:tensorflow:Calling model_fn. -WARNING:tensorflow:Layer dnn is casting an input tensor from dtype float64 to the layer's dtype of float32, which is new behavior in TensorFlow 2\. The layer has dtype float32 because its dtype defaults to floatx. - -If you intended to run this layer in float32, you can safely ignore this warning. If in doubt, this warning is likely only an issue if you are porting a TensorFlow 1.X model to TensorFlow 2. - -To change all layers to have dtype float64 by default, call `tf.keras.backend.set_floatx('float64')`. To change just this layer, pass dtype='float64' to the layer constructor. If you are the author of this layer, you can disable autocasting by passing autocast=False to the base Layer constructor. - -Warning:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/keras/optimizer_v2/adagrad.py:83: calling Constant.__init__ (from tensorflow.python.ops.init_ops) with dtype is deprecated and will be removed in a future version. -Instructions for updating: -Call initializer instance with the dtype argument instead of passing it to the constructor -INFO:tensorflow:Done calling model_fn. -INFO:tensorflow:Create CheckpointSaverHook. -INFO:tensorflow:Graph was finalized. -INFO:tensorflow:Running local_init_op. -INFO:tensorflow:Done running local_init_op. -INFO:tensorflow:Calling checkpoint listeners before saving checkpoint 0... -INFO:tensorflow:Saving checkpoints for 0 into /tmp/tmpkhwws8ja/model.ckpt. -INFO:tensorflow:Calling checkpoint listeners after saving checkpoint 0... -INFO:tensorflow:loss = 1.6968713, step = 0 -INFO:tensorflow:global_step/sec: 308.34 -INFO:tensorflow:loss = 1.1691835, step = 100 (0.325 sec) -INFO:tensorflow:global_step/sec: 365.112 -INFO:tensorflow:loss = 1.0332501, step = 200 (0.274 sec) -INFO:tensorflow:global_step/sec: 365.44 -INFO:tensorflow:loss = 0.9807229, step = 300 (0.274 sec) -INFO:tensorflow:global_step/sec: 364.789 -INFO:tensorflow:loss = 0.9437329, step = 400 (0.274 sec) -INFO:tensorflow:global_step/sec: 368.124 -INFO:tensorflow:loss = 0.94162637, step = 500 (0.272 sec) -INFO:tensorflow:global_step/sec: 366.689 -INFO:tensorflow:loss = 0.9129944, step = 600 (0.273 sec) -INFO:tensorflow:global_step/sec: 368.813 -INFO:tensorflow:loss = 0.91519016, step = 700 (0.271 sec) -INFO:tensorflow:global_step/sec: 369.377 -INFO:tensorflow:loss = 0.8866866, step = 800 (0.271 sec) -INFO:tensorflow:global_step/sec: 371.999 -INFO:tensorflow:loss = 0.88594323, step = 900 (0.269 sec) -INFO:tensorflow:global_step/sec: 372.481 -INFO:tensorflow:loss = 0.8859284, step = 1000 (0.269 sec) -INFO:tensorflow:global_step/sec: 369.793 -INFO:tensorflow:loss = 0.87800217, step = 1100 (0.270 sec) -INFO:tensorflow:global_step/sec: 364.966 -INFO:tensorflow:loss = 0.8652306, step = 1200 (0.274 sec) -INFO:tensorflow:global_step/sec: 368.742 -INFO:tensorflow:loss = 0.8569569, step = 1300 (0.271 sec) -INFO:tensorflow:global_step/sec: 368.955 -INFO:tensorflow:loss = 0.8538004, step = 1400 (0.271 sec) -INFO:tensorflow:global_step/sec: 371.44 -INFO:tensorflow:loss = 0.8501439, step = 1500 (0.269 sec) -INFO:tensorflow:global_step/sec: 369.55 -INFO:tensorflow:loss = 0.8453819, step = 1600 (0.271 sec) -INFO:tensorflow:global_step/sec: 366 -INFO:tensorflow:loss = 0.83854586, step = 1700 (0.273 sec) -INFO:tensorflow:global_step/sec: 370.695 -INFO:tensorflow:loss = 0.81984085, step = 1800 (0.270 sec) -INFO:tensorflow:global_step/sec: 371.791 -INFO:tensorflow:loss = 0.8254725, step = 1900 (0.271 sec) -INFO:tensorflow:global_step/sec: 363.724 -INFO:tensorflow:loss = 0.839285, step = 2000 (0.273 sec) -INFO:tensorflow:global_step/sec: 366.998 -INFO:tensorflow:loss = 0.81192434, step = 2100 (0.273 sec) -INFO:tensorflow:global_step/sec: 362.578 -INFO:tensorflow:loss = 0.80626756, step = 2200 (0.276 sec) -INFO:tensorflow:global_step/sec: 370.678 -INFO:tensorflow:loss = 0.8144733, step = 2300 (0.270 sec) -INFO:tensorflow:global_step/sec: 367.415 -INFO:tensorflow:loss = 0.80486006, step = 2400 (0.272 sec) -INFO:tensorflow:global_step/sec: 363.869 -INFO:tensorflow:loss = 0.7996403, step = 2500 (0.275 sec) -INFO:tensorflow:global_step/sec: 366.247 -INFO:tensorflow:loss = 0.78972137, step = 2600 (0.273 sec) -INFO:tensorflow:global_step/sec: 366.514 -INFO:tensorflow:loss = 0.7898851, step = 2700 (0.273 sec) -INFO:tensorflow:global_step/sec: 363.635 -INFO:tensorflow:loss = 0.7798088, step = 2800 (0.275 sec) -INFO:tensorflow:global_step/sec: 371.201 -INFO:tensorflow:loss = 0.7830296, step = 2900 (0.269 sec) -INFO:tensorflow:global_step/sec: 372.843 -INFO:tensorflow:loss = 0.78415155, step = 3000 (0.268 sec) -INFO:tensorflow:global_step/sec: 370.754 -INFO:tensorflow:loss = 0.7710204, step = 3100 (0.270 sec) -INFO:tensorflow:global_step/sec: 373.092 -INFO:tensorflow:loss = 0.7817295, step = 3200 (0.268 sec) -INFO:tensorflow:global_step/sec: 369.337 -INFO:tensorflow:loss = 0.78129435, step = 3300 (0.271 sec) -INFO:tensorflow:global_step/sec: 368.646 -INFO:tensorflow:loss = 0.78726315, step = 3400 (0.271 sec) -INFO:tensorflow:global_step/sec: 367.989 -INFO:tensorflow:loss = 0.76692796, step = 3500 (0.273 sec) -INFO:tensorflow:global_step/sec: 365.108 -INFO:tensorflow:loss = 0.7719732, step = 3600 (0.272 sec) -INFO:tensorflow:global_step/sec: 370.532 -INFO:tensorflow:loss = 0.76764953, step = 3700 (0.270 sec) -INFO:tensorflow:global_step/sec: 362.993 -INFO:tensorflow:loss = 0.75807786, step = 3800 (0.277 sec) -INFO:tensorflow:global_step/sec: 365.707 -INFO:tensorflow:loss = 0.7590251, step = 3900 (0.272 sec) -INFO:tensorflow:global_step/sec: 368.977 -INFO:tensorflow:loss = 0.7478892, step = 4000 (0.271 sec) -INFO:tensorflow:global_step/sec: 370.263 -INFO:tensorflow:loss = 0.74537545, step = 4100 (0.270 sec) -INFO:tensorflow:global_step/sec: 370.648 -INFO:tensorflow:loss = 0.7506561, step = 4200 (0.270 sec) -INFO:tensorflow:global_step/sec: 372.419 -INFO:tensorflow:loss = 0.74983096, step = 4300 (0.268 sec) -INFO:tensorflow:global_step/sec: 370.771 -INFO:tensorflow:loss = 0.74485517, step = 4400 (0.270 sec) -INFO:tensorflow:global_step/sec: 371.489 -INFO:tensorflow:loss = 0.74746263, step = 4500 (0.269 sec) -INFO:tensorflow:global_step/sec: 370.063 -INFO:tensorflow:loss = 0.7356381, step = 4600 (0.270 sec) -INFO:tensorflow:global_step/sec: 370.305 -INFO:tensorflow:loss = 0.74623525, step = 4700 (0.270 sec) -INFO:tensorflow:global_step/sec: 365.488 -INFO:tensorflow:loss = 0.7425093, step = 4800 (0.274 sec) -INFO:tensorflow:global_step/sec: 370.235 -INFO:tensorflow:loss = 0.7342787, step = 4900 (0.270 sec) -INFO:tensorflow:Calling checkpoint listeners before saving checkpoint 5000... -INFO:tensorflow:Saving checkpoints for 5000 into /tmp/tmpkhwws8ja/model.ckpt. -INFO:tensorflow:Calling checkpoint listeners after saving checkpoint 5000... -INFO:tensorflow:Loss for final step: 0.7211363. - - - -``` - -注意将 `input_fn` 调用封装在 [`lambda`](https://docs.python.org/3/tutorial/controlflow.html) 中以获取参数,同时提供不带参数的输入函数,如 Estimator 所预期的那样。`step` 参数告知该方法在训练多少步后停止训练。 - -### 评估经过训练的模型 - -现在模型已经经过训练,您可以获取一些关于模型性能的统计信息。代码块将在测试数据上对经过训练的模型的准确率(accuracy)进行评估: - -```py -eval_result = classifier.evaluate( - input_fn=lambda: input_fn(test, test_y, training=False)) - -print('\nTest set accuracy: {accuracy:0.3f}\n'.format(**eval_result)) -``` - -```py -INFO:tensorflow:Calling model_fn. -WARNING:tensorflow:Layer dnn is casting an input tensor from dtype float64 to the layer's dtype of float32, which is new behavior in TensorFlow 2\. The layer has dtype float32 because its dtype defaults to floatx. - -If you intended to run this layer in float32, you can safely ignore this warning. If in doubt, this warning is likely only an issue if you are porting a TensorFlow 1.X model to TensorFlow 2. - -To change all layers to have dtype float64 by default, call `tf.keras.backend.set_floatx('float64')`. To change just this layer, pass dtype='float64' to the layer constructor. If you are the author of this layer, you can disable autocasting by passing autocast=False to the base Layer constructor. - -INFO:tensorflow:Done calling model_fn. -INFO:tensorflow:Starting evaluation at 2020-09-22T19:58:23Z -INFO:tensorflow:Graph was finalized. -INFO:tensorflow:Restoring parameters from /tmp/tmpkhwws8ja/model.ckpt-5000 -INFO:tensorflow:Running local_init_op. -INFO:tensorflow:Done running local_init_op. -INFO:tensorflow:Inference Time : 0.20579s -INFO:tensorflow:Finished evaluation at 2020-09-22-19:58:23 -INFO:tensorflow:Saving dict for global step 5000: accuracy = 0.53333336, average_loss = 0.760622, global_step = 5000, loss = 0.760622 -INFO:tensorflow:Saving 'checkpoint_path' summary for global step 5000: /tmp/tmpkhwws8ja/model.ckpt-5000 - -Test set accuracy: 0.533 - -``` - -与对 `train` 方法的调用不同,我们没有传递 `steps` 参数来进行评估。用于评估的 `input_fn` 只生成一个 [epoch](https://developers.google.cn/machine-learning/glossary/#epoch) 的数据。 - -`eval_result` 字典亦包含 `average_loss`(每个样本的平均误差),`loss`(每个 mini-batch 的平均误差)与 Estimator 的 `global_step`(经历的训练迭代次数)值。 - -### 利用经过训练的模型进行预测(推理) - -我们已经有一个经过训练的模型,可以生成准确的评估结果。我们现在可以使用经过训练的模型,根据一些无标签测量结果预测鸢尾花的品种。与训练和评估一样,我们使用单个函数调用进行预测: - -```py -# 由模型生成预测 -expected = ['Setosa', 'Versicolor', 'Virginica'] -predict_x = { - 'SepalLength': [5.1, 5.9, 6.9], - 'SepalWidth': [3.3, 3.0, 3.1], - 'PetalLength': [1.7, 4.2, 5.4], - 'PetalWidth': [0.5, 1.5, 2.1], -} - -def input_fn(features, batch_size=256): - """An input function for prediction.""" - # 将输入转换为无标签数据集。 - return tf.data.Dataset.from_tensor_slices(dict(features)).batch(batch_size) - -predictions = classifier.predict( - input_fn=lambda: input_fn(predict_x)) -``` - -`predict` 方法返回一个 Python 可迭代对象,为每个样本生成一个预测结果字典。以下代码输出了一些预测及其概率: - -```py -for pred_dict, expec in zip(predictions, expected): - class_id = pred_dict['class_ids'][0] - probability = pred_dict['probabilities'][class_id] - - print('Prediction is "{}" ({:.1f}%), expected "{}"'.format( - SPECIES[class_id], 100 * probability, expec)) -``` - -```py -INFO:tensorflow:Calling model_fn. -INFO:tensorflow:Done calling model_fn. -INFO:tensorflow:Graph was finalized. -INFO:tensorflow:Restoring parameters from /tmp/tmpkhwws8ja/model.ckpt-5000 -INFO:tensorflow:Running local_init_op. -INFO:tensorflow:Done running local_init_op. -Prediction is "Versicolor" (36.6%), expected "Setosa" -Prediction is "Virginica" (50.9%), expected "Versicolor" -Prediction is "Virginica" (62.6%), expected "Virginica" - -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/024.md b/Tensorflow/TensorFlow2.0/024.md deleted file mode 100644 index 185efaeb..00000000 --- a/Tensorflow/TensorFlow2.0/024.md +++ /dev/null @@ -1,340 +0,0 @@ -# Build a linear model with Estimators - -> 原文:[https://tensorflow.google.cn/tutorials/estimator/linear](https://tensorflow.google.cn/tutorials/estimator/linear) - -## Overview - -This end-to-end walkthrough trains a logistic regression model using the [`tf.estimator`](https://tensorflow.google.cn/api_docs/python/tf/estimator) API. The model is often used as a baseline for other, more complex, algorithms. - -## Setup - -```py -pip install -q sklearn - -``` - -```py -WARNING: You are using pip version 20.2.2; however, version 20.2.3 is available. -You should consider upgrading via the '/tmpfs/src/tf_docs_env/bin/python -m pip install --upgrade pip' command. - -``` - -```py -import os -import sys - -import numpy as np -import pandas as pd -import matplotlib.pyplot as plt -from IPython.display import clear_output -from six.moves import urllib -``` - -## Load the titanic dataset - -You will use the Titanic dataset with the (rather morbid) goal of predicting passenger survival, given characteristics such as gender, age, class, etc. - -```py -import tensorflow.compat.v2.feature_column as fc - -import tensorflow as tf -``` - -```py -# Load dataset. -dftrain = pd.read_csv('https://storage.googleapis.com/tf-datasets/titanic/train.csv') -dfeval = pd.read_csv('https://storage.googleapis.com/tf-datasets/titanic/eval.csv') -y_train = dftrain.pop('survived') -y_eval = dfeval.pop('survived') -``` - -## Explore the data - -The dataset contains the following features - -```py -dftrain.head() -``` - - - -```py -dftrain.describe() -``` - - - -There are 627 and 264 examples in the training and evaluation sets, respectively. - -```py -dftrain.shape[0], dfeval.shape[0] -``` - -```py -(627, 264) - -``` - -The majority of passengers are in their 20's and 30's. - -```py -dftrain.age.hist(bins=20) -``` - -```py - - -``` - -![png](img/7d1de3cd2c94ab5fb2b9e44445a2fa6b.png) - -There are approximately twice as many male passengers as female passengers aboard. - -```py -dftrain.sex.value_counts().plot(kind='barh') -``` - -```py - - -``` - -![png](img/2ab61e10f9f53c1738f397150ea65f3d.png) - -The majority of passengers were in the "third" class. - -```py -dftrain['class'].value_counts().plot(kind='barh') -``` - -```py - - -``` - -![png](img/90c153ba31f6c32d7d760bc031b5d956.png) - -Females have a much higher chance of surviving versus males. This is clearly a predictive feature for the model. - -```py -pd.concat([dftrain, y_train], axis=1).groupby('sex').survived.mean().plot(kind='barh').set_xlabel('% survive') -``` - -```py -Text(0.5, 0, '% survive') - -``` - -![png](img/aaf0cfc73c7f275786e66d759ad26df6.png) - -## Feature Engineering for the Model - -Estimators use a system called [feature columns](https://tensorflow.google.cn/guide/feature_columns) to describe how the model should interpret each of the raw input features. An Estimator expects a vector of numeric inputs, and *feature columns* describe how the model should convert each feature. - -Selecting and crafting the right set of feature columns is key to learning an effective model. A feature column can be either one of the raw inputs in the original features `dict` (a *base feature column*), or any new columns created using transformations defined over one or multiple base columns (a *derived feature columns*). - -The linear estimator uses both numeric and categorical features. Feature columns work with all TensorFlow estimators and their purpose is to define the features used for modeling. Additionally, they provide some feature engineering capabilities like one-hot-encoding, normalization, and bucketization. - -### Base Feature Columns - -```py -CATEGORICAL_COLUMNS = ['sex', 'n_siblings_spouses', 'parch', 'class', 'deck', - 'embark_town', 'alone'] -NUMERIC_COLUMNS = ['age', 'fare'] - -feature_columns = [] -for feature_name in CATEGORICAL_COLUMNS: - vocabulary = dftrain[feature_name].unique() - feature_columns.append(tf.feature_column.categorical_column_with_vocabulary_list(feature_name, vocabulary)) - -for feature_name in NUMERIC_COLUMNS: - feature_columns.append(tf.feature_column.numeric_column(feature_name, dtype=tf.float32)) -``` - -The `input_function` specifies how data is converted to a [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) that feeds the input pipeline in a streaming fashion. [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) can take in multiple sources such as a dataframe, a csv-formatted file, and more. - -```py -def make_input_fn(data_df, label_df, num_epochs=10, shuffle=True, batch_size=32): - def input_function(): - ds = tf.data.Dataset.from_tensor_slices((dict(data_df), label_df)) - if shuffle: - ds = ds.shuffle(1000) - ds = ds.batch(batch_size).repeat(num_epochs) - return ds - return input_function - -train_input_fn = make_input_fn(dftrain, y_train) -eval_input_fn = make_input_fn(dfeval, y_eval, num_epochs=1, shuffle=False) -``` - -You can inspect the dataset: - -```py -ds = make_input_fn(dftrain, y_train, batch_size=10)() -for feature_batch, label_batch in ds.take(1): - print('Some feature keys:', list(feature_batch.keys())) - print() - print('A batch of class:', feature_batch['class'].numpy()) - print() - print('A batch of Labels:', label_batch.numpy()) -``` - -```py -Some feature keys: ['sex', 'age', 'n_siblings_spouses', 'parch', 'fare', 'class', 'deck', 'embark_town', 'alone'] - -A batch of class: [b'Third' b'Third' b'Third' b'Third' b'First' b'Third' b'Third' b'First' - b'Third' b'Third'] - -A batch of Labels: [1 0 0 0 1 0 0 0 0 0] - -``` - -You can also inspect the result of a specific feature column using the [`tf.keras.layers.DenseFeatures`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/DenseFeatures) layer: - -```py -age_column = feature_columns[7] -tf.keras.layers.DenseFeatures([age_column])(feature_batch).numpy() -``` - -```py -WARNING:tensorflow:Layer dense_features is casting an input tensor from dtype float64 to the layer's dtype of float32, which is new behavior in TensorFlow 2\. The layer has dtype float32 because its dtype defaults to floatx. - -If you intended to run this layer in float32, you can safely ignore this warning. If in doubt, this warning is likely only an issue if you are porting a TensorFlow 1.X model to TensorFlow 2. - -To change all layers to have dtype float64 by default, call `tf.keras.backend.set_floatx('float64')`. To change just this layer, pass dtype='float64' to the layer constructor. If you are the author of this layer, you can disable autocasting by passing autocast=False to the base Layer constructor. - -array([[27.], - [28.], - [30.], - [18.], - [32.], - [26.], - [61.], - [37.], - [28.], - [40.]], dtype=float32) - -``` - -`DenseFeatures` only accepts dense tensors, to inspect a categorical column you need to transform that to a indicator column first: - -```py -gender_column = feature_columns[0] -tf.keras.layers.DenseFeatures([tf.feature_column.indicator_column(gender_column)])(feature_batch).numpy() -``` - -```py -WARNING:tensorflow:Layer dense_features_1 is casting an input tensor from dtype float64 to the layer's dtype of float32, which is new behavior in TensorFlow 2\. The layer has dtype float32 because its dtype defaults to floatx. - -If you intended to run this layer in float32, you can safely ignore this warning. If in doubt, this warning is likely only an issue if you are porting a TensorFlow 1.X model to TensorFlow 2. - -To change all layers to have dtype float64 by default, call `tf.keras.backend.set_floatx('float64')`. To change just this layer, pass dtype='float64' to the layer constructor. If you are the author of this layer, you can disable autocasting by passing autocast=False to the base Layer constructor. - -array([[1., 0.], - [1., 0.], - [1., 0.], - [0., 1.], - [1., 0.], - [1., 0.], - [1., 0.], - [1., 0.], - [1., 0.], - [1., 0.]], dtype=float32) - -``` - -After adding all the base features to the model, let's train the model. Training a model is just a single command using the [`tf.estimator`](https://tensorflow.google.cn/api_docs/python/tf/estimator) API: - -```py -linear_est = tf.estimator.LinearClassifier(feature_columns=feature_columns) -linear_est.train(train_input_fn) -result = linear_est.evaluate(eval_input_fn) - -clear_output() -print(result) -``` - -```py -{'accuracy': 0.7613636, 'accuracy_baseline': 0.625, 'auc': 0.809244, 'auc_precision_recall': 0.75609726, 'average_loss': 0.5452906, 'label/mean': 0.375, 'loss': 0.5347039, 'precision': 0.75, 'prediction/mean': 0.27201703, 'recall': 0.54545456, 'global_step': 200} - -``` - -### Derived Feature Columns - -Now you reached an accuracy of 75%. Using each base feature column separately may not be enough to explain the data. For example, the correlation between gender and the label may be different for different gender. Therefore, if you only learn a single model weight for `gender="Male"` and `gender="Female"`, you won't capture every age-gender combination (e.g. distinguishing between `gender="Male"` AND `age="30"` AND `gender="Male"` AND `age="40"`). - -To learn the differences between different feature combinations, you can add *crossed feature columns* to the model (you can also bucketize age column before the cross column): - -```py -age_x_gender = tf.feature_column.crossed_column(['age', 'sex'], hash_bucket_size=100) -``` - -After adding the combination feature to the model, let's train the model again: - -```py -derived_feature_columns = [age_x_gender] -linear_est = tf.estimator.LinearClassifier(feature_columns=feature_columns+derived_feature_columns) -linear_est.train(train_input_fn) -result = linear_est.evaluate(eval_input_fn) - -clear_output() -print(result) -``` - -```py -{'accuracy': 0.7613636, 'accuracy_baseline': 0.625, 'auc': 0.84352624, 'auc_precision_recall': 0.78346276, 'average_loss': 0.48114488, 'label/mean': 0.375, 'loss': 0.4756022, 'precision': 0.65789473, 'prediction/mean': 0.4285249, 'recall': 0.75757575, 'global_step': 200} - -``` - -It now achieves an accuracy of 77.6%, which is slightly better than only trained in base features. You can try using more features and transformations to see if you can do better! - -Now you can use the train model to make predictions on a passenger from the evaluation set. TensorFlow models are optimized to make predictions on a batch, or collection, of examples at once. Earlier, the `eval_input_fn` was defined using the entire evaluation set. - -```py -pred_dicts = list(linear_est.predict(eval_input_fn)) -probs = pd.Series([pred['probabilities'][1] for pred in pred_dicts]) - -probs.plot(kind='hist', bins=20, title='predicted probabilities') -``` - -```py -INFO:tensorflow:Calling model_fn. -WARNING:tensorflow:Layer linear/linear_model is casting an input tensor from dtype float64 to the layer's dtype of float32, which is new behavior in TensorFlow 2\. The layer has dtype float32 because its dtype defaults to floatx. - -If you intended to run this layer in float32, you can safely ignore this warning. If in doubt, this warning is likely only an issue if you are porting a TensorFlow 1.X model to TensorFlow 2. - -To change all layers to have dtype float64 by default, call `tf.keras.backend.set_floatx('float64')`. To change just this layer, pass dtype='float64' to the layer constructor. If you are the author of this layer, you can disable autocasting by passing autocast=False to the base Layer constructor. - -INFO:tensorflow:Done calling model_fn. -INFO:tensorflow:Graph was finalized. -INFO:tensorflow:Restoring parameters from /tmp/tmpg17o3o7e/model.ckpt-200 -INFO:tensorflow:Running local_init_op. -INFO:tensorflow:Done running local_init_op. - - - -``` - -![png](img/5fcd4749c7b37cf8714bd83753d1da5b.png) - -Finally, look at the receiver operating characteristic (ROC) of the results, which will give us a better idea of the tradeoff between the true positive rate and false positive rate. - -```py -from sklearn.metrics import roc_curve -from matplotlib import pyplot as plt - -fpr, tpr, _ = roc_curve(y_eval, probs) -plt.plot(fpr, tpr) -plt.title('ROC curve') -plt.xlabel('false positive rate') -plt.ylabel('true positive rate') -plt.xlim(0,) -plt.ylim(0,) -``` - -```py -(0.0, 1.05) - -``` - -![png](img/2230343d999d9f0dd8b71b8bf390e82f.png) \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/025.md b/Tensorflow/TensorFlow2.0/025.md deleted file mode 100644 index cfeba579..00000000 --- a/Tensorflow/TensorFlow2.0/025.md +++ /dev/null @@ -1,302 +0,0 @@ -# 在 Tensorflow 中训练提升树(Boosted Trees)模型 - -> 原文:[https://tensorflow.google.cn/tutorials/estimator/boosted_trees](https://tensorflow.google.cn/tutorials/estimator/boosted_trees) - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -本教程是使用基于 [`tf.estimator`](https://tensorflow.google.cn/api_docs/python/tf/estimator) API 的决策树来训练梯度提升模型的端到端演示。提升树(Boosted Trees)模型是回归和分类问题中最受欢迎并最有效的机器学习方法之一。这是一种融合技术,它结合了几个(10 个,100 个或者甚至 1000 个)树模型的预测值。 - -提升树(Boosted Trees)模型受到许多机器学习从业者的欢迎,因为它们可以通过最小化的超参数调整获得令人印象深刻的性能。 - -## 加载泰坦尼克数据集 - -您将使用泰坦尼克数据集,该数据集的目标是在给出性别、年龄、阶级等特征的条件下预测乘客幸存与否。 - -```py -import numpy as np -import pandas as pd -from IPython.display import clear_output -from matplotlib import pyplot as plt - -# 加载数据集。 -dftrain = pd.read_csv('https://storage.googleapis.com/tf-datasets/titanic/train.csv') -dfeval = pd.read_csv('https://storage.googleapis.com/tf-datasets/titanic/eval.csv') -y_train = dftrain.pop('survived') -y_eval = dfeval.pop('survived') -``` - -```py -import tensorflow as tf -tf.random.set_seed(123) -``` - -数据集由训练集和验证集组成: - -* `dftrain` 与 `y_train` 是*训练集*——模型用来学习的数据。 -* 模型根据*评估集*,`dfeval` 和 `y_eval` 进行测试。 - -您将使用以下特征来进行训练: - -| 特征名称 | 描述 | -| sex | 乘客的性别 | -| age | 乘客的年龄 | -| n_siblings_spouses | 船上的兄弟姐妹与伙伴 | -| parch | 船上的父母与孩子 | -| fare | 乘客所支付的票价 | -| class | 乘客在船上的舱室等级 | -| deck | 哪个甲板上的乘客 | -| embark_town | 乘客是从哪个城镇上船的 | -| alone | 是否乘客独自一人 | - -## 探索数据 - -让我们首先预览一些数据,并在训练集上创建摘要统计。 - -```py -dftrain.head() -``` - - - -```py -dftrain.describe() -``` - - - -训练集和评估集分别有 627 和 264 个样本。 - -```py -dftrain.shape[0], dfeval.shape[0] -``` - -```py -(627, 264) - -``` - -大多数乘客在 20 岁或 30 岁。 - -```py -dftrain.age.hist(bins=20) -plt.show() -``` - -![png](img/58d9d20121aa86120aded9afa9cfff6d.png) - -男乘客大约是女乘客的两倍。 - -```py -dftrain.sex.value_counts().plot(kind='barh') -plt.show() -``` - -![png](img/3c3d7b5efcc814913b1fdc4d8ab17c2c.png) - -大多数乘客都在“三等”舱。 - -```py -dftrain['class'].value_counts().plot(kind='barh') -plt.show() -``` - -![png](img/4630405ff1451bfc3979433eb4bb7a43.png) - -大多数乘客从南安普顿出发。 - -```py -dftrain['embark_town'].value_counts().plot(kind='barh') -plt.show() -``` - -![png](img/a3920eb34218a65a21b046a30c7d3808.png) - -与男性相比,女性存活的几率要高得多。这显然是该模型的预测特征。 - -```py -pd.concat([dftrain, y_train], axis=1).groupby('sex').survived.mean().plot(kind='barh').set_xlabel('% survive') -plt.show() -``` - -![png](img/2c848f6027c084a244c86c336c02ce35.png) - -## 创建特征列与输入函数 - -梯度提升(Gradient Boosting) Estimator 可以利用数值和分类特征。特征列适用于所有的 Tensorflow estimator,其目的是定义用于建模的特征。此外,它们还提供一些特征工程功能,如独热编码(one-hot-encoding)、标准化(normalization)和桶化(bucketization)。在本教程中,`CATEGORICAL_COLUMNS` 中的字段从分类列转换为独热编码列([指标列](https://tensorflow.google.cn/api_docs/python/tf/feature_column/indicator_column)): - -```py -fc = tf.feature_column -CATEGORICAL_COLUMNS = ['sex', 'n_siblings_spouses', 'parch', 'class', 'deck', - 'embark_town', 'alone'] -NUMERIC_COLUMNS = ['age', 'fare'] - -def one_hot_cat_column(feature_name, vocab): - return tf.feature_column.indicator_column( - tf.feature_column.categorical_column_with_vocabulary_list(feature_name, - vocab)) -feature_columns = [] -for feature_name in CATEGORICAL_COLUMNS: - # Need to one-hot encode categorical features. - vocabulary = dftrain[feature_name].unique() - feature_columns.append(one_hot_cat_column(feature_name, vocabulary)) - -for feature_name in NUMERIC_COLUMNS: - feature_columns.append(tf.feature_column.numeric_column(feature_name, - dtype=tf.float32)) -``` - -您可以查看特征列生成的转换。例如,以下是在单个样本中使用 `indicator_column` 的输出: - -```py -example = dict(dftrain.head(1)) -class_fc = tf.feature_column.indicator_column(tf.feature_column.categorical_column_with_vocabulary_list('class', ('First', 'Second', 'Third'))) -print('Feature value: "{}"'.format(example['class'].iloc[0])) -print('One-hot encoded: ', tf.keras.layers.DenseFeatures([class_fc])(example).numpy()) -``` - -```py -Feature value: "Third" -One-hot encoded: [[ 0\. 0\. 1.]] - -``` - -此外,您还可以一起查看所有特征列的转换: - -```py -tf.keras.layers.DenseFeatures(feature_columns)(example).numpy() -``` - -```py -array([[ 22\. , 1\. , 0\. , 1\. , 0\. , 0\. , 1\. , 0\. , - - 0\. , 0\. , 0\. , 0\. , 0\. , 0\. , 1\. , 0\. , - 0\. , 0\. , 7.25, 1\. , 0\. , 0\. , 0\. , 0\. , - 0\. , 0\. , 1\. , 0\. , 0\. , 0\. , 0\. , 0\. , - 1\. , 0\. ]], dtype=float32) - -``` - -接下来,您需要创建输入函数。这些将指定如何将数据读入到我们的模型中以供训练与推理。您将使用 [`tf.data`](https://tensorflow.google.cn/api_docs/python/tf/data)API 中的 `from_tensor_slices` 方法直接从 Pandas 中读取数据。这适用于较小的内存数据集。对于较大的数据集,tf.data API 支持各种文件格式(包括 [csv](https://tensorflow.google.cn/api_docs/python/tf/data/experimental/make_csv_dataset)),以便您能处理那些不适合放入内存中的数据集。 - -```py -# 使用大小为全部数据的 batch ,因为数据规模非常小. -NUM_EXAMPLES = len(y_train) - -def make_input_fn(X, y, n_epochs=None, shuffle=True): - def input_fn(): - dataset = tf.data.Dataset.from_tensor_slices((dict(X), y)) - if shuffle: - dataset = dataset.shuffle(NUM_EXAMPLES) - # 对于训练,可以按需多次循环数据集(n_epochs=None)。 - dataset = dataset.repeat(n_epochs) - # 在内存中训练不使用 batch。 - dataset = dataset.batch(NUM_EXAMPLES) - return dataset - return input_fn - -# 训练与评估的输入函数。 -train_input_fn = make_input_fn(dftrain, y_train) -eval_input_fn = make_input_fn(dfeval, y_eval, shuffle=False, n_epochs=1) -``` - -## 训练与评估模型 - -您将执行以下步骤: - -1. 初始化模型,指定特征和超参数。 -2. 使用 `train_input_fn` 将训练数据输入模型,使用 `train` 函数训练模型。 -3. 您将使用此示例中的评估集评估模型性能,即 `dfeval` DataFrame。您将验证预测是否与 `y_eval` 数组中的标签匹配。 - -在训练提升树(Boosted Trees)模型之前,让我们先训练一个线性分类器(逻辑回归模型)。最好的做法是从更简单的模型开始建立基准。 - -```py -linear_est = tf.estimator.LinearClassifier(feature_columns) - -# 训练模型。 -linear_est.train(train_input_fn, max_steps=100) - -# 评估。 -result = linear_est.evaluate(eval_input_fn) -clear_output() -print(pd.Series(result)) -``` - -```py -accuracy 0.765152 -accuracy_baseline 0.625000 -auc 0.832844 -auc_precision_recall 0.789631 -average_loss 0.478908 -global_step 100.000000 -label/mean 0.375000 -loss 0.478908 -precision 0.703297 -prediction/mean 0.350790 -recall 0.646465 -dtype: float64 - -``` - -下面让我们训练提升树(Boosted Trees)模型。提升树(Boosted Trees)是支持回归(`BoostedTreesRegressor`)和分类(`BoostedTreesClassifier`)的。由于目标是预测一个生存与否的标签,您将使用 `BoostedTreesClassifier`。 - -```py -# 由于数据存入内存中,在每层使用全部数据会更快。 -# 上面一个 batch 定义为整个数据集。 -n_batches = 1 -est = tf.estimator.BoostedTreesClassifier(feature_columns, - n_batches_per_layer=n_batches) - -# 一旦建立了指定数量的树,模型将停止训练, -# 而不是基于训练步数。 -est.train(train_input_fn, max_steps=100) - -# 评估。 -result = est.evaluate(eval_input_fn) -clear_output() -print(pd.Series(result)) -``` - -```py -accuracy 0.829545 -accuracy_baseline 0.625000 -auc 0.872788 -auc_precision_recall 0.857807 -average_loss 0.411839 -global_step 100.000000 -label/mean 0.375000 -loss 0.411839 -precision 0.793478 -prediction/mean 0.381942 -recall 0.737374 -dtype: float64 - -``` - -现在您可以使用训练的模型从评估集上对乘客进行预测了。Tensorflow 模型经过优化,可以同时在一个 batch 或一个集合的样本上进行预测。之前,`eval_inout_fn` 是使用整个评估集定义的。 - -```py -pred_dicts = list(est.predict(eval_input_fn)) -probs = pd.Series([pred['probabilities'][1] for pred in pred_dicts]) - -probs.plot(kind='hist', bins=20, title='predicted probabilities') -plt.show() -``` - -![png](img/56a137f761015af5a025d2d0cc2a9985.png) - -最后,您还可以查看结果的受试者工作特征曲线(ROC),这将使我们更好地了解真阳性率与假阴性率之间的权衡。 - -```py -from sklearn.metrics import roc_curve - -fpr, tpr, _ = roc_curve(y_eval, probs) -plt.plot(fpr, tpr) -plt.title('ROC curve') -plt.xlabel('false positive rate') -plt.ylabel('true positive rate') -plt.xlim(0,) -plt.ylim(0,) -plt.show() -``` - -![png](img/bf058b152584cc8e8c3987a57eb7331f.png) \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/026.md b/Tensorflow/TensorFlow2.0/026.md deleted file mode 100644 index 58a949e7..00000000 --- a/Tensorflow/TensorFlow2.0/026.md +++ /dev/null @@ -1,801 +0,0 @@ -# 梯度提升树(Gradient Boosted Trees):模型理解 - -> 原文:[https://tensorflow.google.cn/tutorials/estimator/boosted_trees_model_understanding](https://tensorflow.google.cn/tutorials/estimator/boosted_trees_model_understanding) - - - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -对于梯度提升模型(Gradient Boosting model)的端到端演示(end-to-end walkthrough),请查阅[在 Tensorflow 中训练提升树(Boosted Trees)模型](https://tensorflow.google.cn/tutorials/estimator/boosted_trees)。在本教程中,您将: - -* 学习到如何对提升树模型(Boosted Trees model)进行*局部解释*和*全局解释* -* 了解到提升树模型在数据集上的表现。 - -## 如何对提升树模型(Boosted Trees model)进行局部解释和全局解释 - -局部可解释性指模型的预测在单一样例层面上的理解程度,而全局可解释性指模型作为一个整体的理解能力。这种技术可以帮助使用机器学习的人在模型开发阶段检测偏差(bias)和 bug。 - -对于局部可解释性,您将了解到如何创造并可视化每个实例(per-instance)的贡献度。区别于特征重要性,这种贡献被称为 DFCs(定向特征贡献,directional feature contributions)。 - -对于全局可解释性,您将学习并可视化基于增益的特征重要性(gain-based feature importances),排列特征重要性([permutation feature importances](https://www.stat.berkeley.edu/%7Ebreiman/randomforest2001.pdf))和总 DFCs。 - -## 加载泰坦尼克数据集(titanic) - -本教程使用泰坦尼克数据集,旨在已知乘客的性别,年龄和客舱等级等特征的情况下预测的存活率。 - -```py -import numpy as np -import pandas as pd -from IPython.display import clear_output - -# 加载数据集。 -dftrain = pd.read_csv('https://storage.googleapis.com/tf-datasets/titanic/train.csv') -dfeval = pd.read_csv('https://storage.googleapis.com/tf-datasets/titanic/eval.csv') -y_train = dftrain.pop('survived') -y_eval = dfeval.pop('survived') -``` - -```py -import tensorflow as tf -tf.random.set_seed(123) -``` - -```py -TensorFlow 2.x selected. - -``` - -有关特征的描述,请参阅之前的教程。 - -## 创建特征列, 输入函数并训练 estimator - -### 数据预处理 - -特征处理,使用原始的数值特征和独热编码(one-hot-encoding)处理过的非数值特征(如性别,舱位)别建立数据集。 - -```py -fc = tf.feature_column -CATEGORICAL_COLUMNS = ['sex', 'n_siblings_spouses', 'parch', 'class', 'deck', - 'embark_town', 'alone'] -NUMERIC_COLUMNS = ['age', 'fare'] - -def one_hot_cat_column(feature_name, vocab): - return fc.indicator_column( - fc.categorical_column_with_vocabulary_list(feature_name, - vocab)) -feature_columns = [] -for feature_name in CATEGORICAL_COLUMNS: - # 需要使用独热编码(one-hot-encoding)处理非数值特征。 - vocabulary = dftrain[feature_name].unique() - feature_columns.append(one_hot_cat_column(feature_name, vocabulary)) - -for feature_name in NUMERIC_COLUMNS: - feature_columns.append(fc.numeric_column(feature_name, - dtype=tf.float32)) -``` - -### 构建输入 pipeline - -使用 API [`tf.data`](https://tensorflow.google.cn/api_docs/python/tf/data) 中的 `from_tensor_slices` 方法建立输入方程来从 Pandas 中直接读取数据。 - -```py -# 当数据集小的时候,将整个数据集作为一个 batch。 -NUM_EXAMPLES = len(y_train) - -def make_input_fn(X, y, n_epochs=None, shuffle=True): - def input_fn(): - dataset = tf.data.Dataset.from_tensor_slices((X.to_dict(orient='list'), y)) - if shuffle: - dataset = dataset.shuffle(NUM_EXAMPLES) - # 训练时让数据迭代尽可能多次 (n_epochs=None)。 - dataset = (dataset - .repeat(n_epochs) - .batch(NUM_EXAMPLES)) - return dataset - return input_fn - -# 训练并评估输入函数。 -train_input_fn = make_input_fn(dftrain, y_train) -eval_input_fn = make_input_fn(dfeval, y_eval, shuffle=False, n_epochs=1) -``` - -### 训练模型 - -```py -params = { - 'n_trees': 50, - 'max_depth': 3, - 'n_batches_per_layer': 1, - # 为了得到 DFCs,请设置 center_bias = True。这将强制 - # 模型在使用特征(例如:回归中训练集标签的均值,分类中使 - # 用交叉熵损失函数时的对数几率)前做一个初始预测。 - 'center_bias': True -} - -est = tf.estimator.BoostedTreesClassifier(feature_columns, **params) -# 训练模型。 -est.train(train_input_fn, max_steps=100) - -# 评估。 -results = est.evaluate(eval_input_fn) -clear_output() -pd.Series(results).to_frame() -``` - - - -出于性能方面的原因,当您的数据是内存数据集时,我们推荐您使用 `boosted_trees_classifier_train_in_memory` 函数。此外,如果您对训练时间没有要求抑或是您的数据集很大且不愿做分布式训练,请使用上面显示的 `tf.estimator.BoostedTrees` API。 - -当您使用此方法时,请不要对数据分批(batch),而是对整个数据集进行操作。 - -```py -in_memory_params = dict(params) -in_memory_params['n_batches_per_layer'] = 1 -# 在内存中的输入方程请不要对数据分批。 -def make_inmemory_train_input_fn(X, y): - y = np.expand_dims(y, axis=1) - def input_fn(): - return dict(X), y - return input_fn -train_input_fn = make_inmemory_train_input_fn(dftrain, y_train) - -# 训练模型。 -est = tf.estimator.BoostedTreesClassifier( - feature_columns, - train_in_memory=True, - **in_memory_params) - -est.train(train_input_fn) -print(est.evaluate(eval_input_fn)) -``` - -```py -INFO:tensorflow:Using default config. -WARNING:tensorflow:Using temporary folder as model directory: /tmp/tmpec8e696f -INFO:tensorflow:Using config: {'_model_dir': '/tmp/tmpec8e696f', '_tf_random_seed': None, '_save_summary_steps': 100, '_save_checkpoints_steps': None, '_save_checkpoints_secs': 600, '_session_config': allow_soft_placement: true -graph_options { - rewrite_options { - meta_optimizer_iterations: ONE - } -} -, '_keep_checkpoint_max': 5, '_keep_checkpoint_every_n_hours': 10000, '_log_step_count_steps': 100, '_train_distribute': None, '_device_fn': None, '_protocol': None, '_eval_distribute': None, '_experimental_distribute': None, '_experimental_max_worker_delay_secs': None, '_session_creation_timeout_secs': 7200, '_service': None, '_cluster_spec': ClusterSpec({}), '_task_type': 'worker', '_task_id': 0, '_global_id_in_cluster': 0, '_master': '', '_evaluation_master': '', '_is_chief': True, '_num_ps_replicas': 0, '_num_worker_replicas': 1} -INFO:tensorflow:Calling model_fn. -INFO:tensorflow:Done calling model_fn. -INFO:tensorflow:Create CheckpointSaverHook. -WARNING:tensorflow:Issue encountered when serializing resources. -Type is unsupported, or the types of the items don't match field type in CollectionDef. Note this is a warning and probably safe to ignore. -'_Resource' object has no attribute 'name' -INFO:tensorflow:Graph was finalized. -INFO:tensorflow:Running local_init_op. -INFO:tensorflow:Done running local_init_op. -WARNING:tensorflow:Issue encountered when serializing resources. -Type is unsupported, or the types of the items don't match field type in CollectionDef. Note this is a warning and probably safe to ignore. -'_Resource' object has no attribute 'name' -INFO:tensorflow:Saving checkpoints for 0 into /tmp/tmpec8e696f/model.ckpt. -WARNING:tensorflow:Issue encountered when serializing resources. -Type is unsupported, or the types of the items don't match field type in CollectionDef. Note this is a warning and probably safe to ignore. -'_Resource' object has no attribute 'name' -INFO:tensorflow:loss = 0.6931472, step = 0 -WARNING:tensorflow:It seems that global step (tf.train.get_global_step) has not been increased. Current value (could be stable): 0 vs previous value: 0\. You could increase the global step by passing tf.train.get_global_step() to Optimizer.apply_gradients or Optimizer.minimize. -INFO:tensorflow:global_step/sec: 80.2732 -INFO:tensorflow:loss = 0.34654337, step = 99 (1.249 sec) -INFO:tensorflow:Saving checkpoints for 153 into /tmp/tmpec8e696f/model.ckpt. -WARNING:tensorflow:Issue encountered when serializing resources. -Type is unsupported, or the types of the items don't match field type in CollectionDef. Note this is a warning and probably safe to ignore. -'_Resource' object has no attribute 'name' -INFO:tensorflow:Loss for final step: 0.31796658. -INFO:tensorflow:Calling model_fn. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -INFO:tensorflow:Done calling model_fn. -INFO:tensorflow:Starting evaluation at 2020-03-09T21:21:14Z -INFO:tensorflow:Graph was finalized. -INFO:tensorflow:Restoring parameters from /tmp/tmpec8e696f/model.ckpt-153 -INFO:tensorflow:Running local_init_op. -INFO:tensorflow:Done running local_init_op. -INFO:tensorflow:Inference Time : 0.55945s -INFO:tensorflow:Finished evaluation at 2020-03-09-21:21:15 -INFO:tensorflow:Saving dict for global step 153: accuracy = 0.8030303, accuracy_baseline = 0.625, auc = 0.8679216, auc_precision_recall = 0.8527449, average_loss = 0.4203342, global_step = 153, label/mean = 0.375, loss = 0.4203342, precision = 0.7473684, prediction/mean = 0.38673538, recall = 0.7171717 -WARNING:tensorflow:Issue encountered when serializing resources. -Type is unsupported, or the types of the items don't match field type in CollectionDef. Note this is a warning and probably safe to ignore. -'_Resource' object has no attribute 'name' -INFO:tensorflow:Saving 'checkpoint_path' summary for global step 153: /tmp/tmpec8e696f/model.ckpt-153 -{'accuracy': 0.8030303, 'accuracy_baseline': 0.625, 'auc': 0.8679216, 'auc_precision_recall': 0.8527449, 'average_loss': 0.4203342, 'label/mean': 0.375, 'loss': 0.4203342, 'precision': 0.7473684, 'prediction/mean': 0.38673538, 'recall': 0.7171717, 'global_step': 153} - -``` - -## 模型说明与绘制 - -```py -import matplotlib.pyplot as plt -import seaborn as sns -sns_colors = sns.color_palette('colorblind') -``` - -## 局部可解释性(Local interpretability) - -接下来,您将输出定向特征贡献(DFCs)来解释单个预测。输出依据 [Palczewska et al](https://arxiv.org/pdf/1312.1121.pdf) 和 Saabas 在 [解释随机森林(Interpreting Random Forests)](http://blog.datadive.net/interpreting-random-forests/) 中提出的方法产生(scikit-learn 中随机森林相关的包 [`treeinterpreter`](https://github.com/andosa/treeinterpreter) 使用原理相同的远离). 使用以下语句输出 DFCs: - -`pred_dicts = list(est.experimental_predict_with_explanations(pred_input_fn))` - -(注意:带 “experimental” 前缀为实验版本(开发中),在正式版发布前可能对其修改。) - -```py -pred_dicts = list(est.experimental_predict_with_explanations(eval_input_fn)) -``` - -```py -INFO:tensorflow:Using config: {'_model_dir': '/tmp/tmpec8e696f', '_tf_random_seed': None, '_save_summary_steps': 100, '_save_checkpoints_steps': None, '_save_checkpoints_secs': 600, '_session_config': allow_soft_placement: true -graph_options { - rewrite_options { - meta_optimizer_iterations: ONE - } -} -, '_keep_checkpoint_max': 5, '_keep_checkpoint_every_n_hours': 10000, '_log_step_count_steps': 100, '_train_distribute': None, '_device_fn': None, '_protocol': None, '_eval_distribute': None, '_experimental_distribute': None, '_experimental_max_worker_delay_secs': None, '_session_creation_timeout_secs': 7200, '_service': None, '_cluster_spec': ClusterSpec({}), '_task_type': 'worker', '_task_id': 0, '_global_id_in_cluster': 0, '_master': '', '_evaluation_master': '', '_is_chief': True, '_num_ps_replicas': 0, '_num_worker_replicas': 1} -INFO:tensorflow:Calling model_fn. -INFO:tensorflow:Done calling model_fn. -INFO:tensorflow:Graph was finalized. -INFO:tensorflow:Restoring parameters from /tmp/tmpec8e696f/model.ckpt-153 -INFO:tensorflow:Running local_init_op. -INFO:tensorflow:Done running local_init_op. - -``` - -```py -# 创建 DFCs 的 DataFrame。 -labels = y_eval.values -probs = pd.Series([pred['probabilities'][1] for pred in pred_dicts]) -df_dfc = pd.DataFrame([pred['dfc'] for pred in pred_dicts]) -df_dfc.describe().T -``` - - - -DFCs 有个不错的特性:贡献和 + 偏差(bias) = 给出样例的预测值。 - -```py -# DFCs 的和 + 偏差(bias) == 可能性 -bias = pred_dicts[0]['bias'] -dfc_prob = df_dfc.sum(axis=1) + bias -np.testing.assert_almost_equal(dfc_prob.values, - probs.values) -``` - -为单个乘客绘制 DFCs,绘图时按贡献的方向性对其进行涂色并添加特征的值。 - -```py -# 绘制模版 :) -def _get_color(value): - """正的 DFCs 标为绿色,负的为红色。""" - green, red = sns.color_palette()[2:4] - if value >= 0: return green - return red - -def _add_feature_values(feature_values, ax): - """在图的左侧显示特征的值""" - x_coord = ax.get_xlim()[0] - OFFSET = 0.15 - for y_coord, (feat_name, feat_val) in enumerate(feature_values.items()): - t = plt.text(x_coord, y_coord - OFFSET, '{}'.format(feat_val), size=12) - t.set_bbox(dict(facecolor='white', alpha=0.5)) - from matplotlib.font_manager import FontProperties - font = FontProperties() - font.set_weight('bold') - t = plt.text(x_coord, y_coord + 1 - OFFSET, 'feature\nvalue', - fontproperties=font, size=12) - -def plot_example(example): - TOP_N = 8 # 显示前 8 个特征。 - sorted_ix = example.abs().sort_values()[-TOP_N:].index # 按值排序。 - example = example[sorted_ix] - colors = example.map(_get_color).tolist() - ax = example.to_frame().plot(kind='barh', - color=[colors], - legend=None, - alpha=0.75, - figsize=(10,6)) - ax.grid(False, axis='y') - ax.set_yticklabels(ax.get_yticklabels(), size=14) - - # 添加特征的值。 - _add_feature_values(dfeval.iloc[ID][sorted_ix], ax) - return ax -``` - -```py -# 绘制结果。 -ID = 182 -example = df_dfc.iloc[ID] # 从评估集中选择第 i 个样例。 -TOP_N = 8 # 显示前 8 个特征。 -sorted_ix = example.abs().sort_values()[-TOP_N:].index -ax = plot_example(example) -ax.set_title('Feature contributions for example {}\n pred: {:1.2f}; label: {}'.format(ID, probs[ID], labels[ID])) -ax.set_xlabel('Contribution to predicted probability', size=14) -plt.show() -``` - -![png](img/982e1307bbc8145644b791d775fcc2c7.png) - -更大的贡献值意味着对模型的预测有更大的影响。负的贡献表示此样例该特征的值减小了减小了模型的预测,正贡献值表示增加了模型的预测。 - -您也可以使用小提琴图(violin plot)来绘制该样例的 DFCs 并与整体分布比较。 - -```py -# 绘制代码模版。 -def dist_violin_plot(df_dfc, ID): - # 初始化画布。 - fig, ax = plt.subplots(1, 1, figsize=(10, 6)) - - # 创建样例 DataFrame。 - TOP_N = 8 # 显示前 8 个特征。 - example = df_dfc.iloc[ID] - ix = example.abs().sort_values()[-TOP_N:].index - example = example[ix] - example_df = example.to_frame(name='dfc') - - # 添加整个分布的贡献。 - parts=ax.violinplot([df_dfc[w] for w in ix], - vert=False, - showextrema=False, - widths=0.7, - positions=np.arange(len(ix))) - face_color = sns_colors[0] - alpha = 0.15 - for pc in parts['bodies']: - pc.set_facecolor(face_color) - pc.set_alpha(alpha) - - # 添加特征的值。 - _add_feature_values(dfeval.iloc[ID][sorted_ix], ax) - - # 添加局部贡献。 - ax.scatter(example, - np.arange(example.shape[0]), - color=sns.color_palette()[2], - s=100, - marker="s", - label='contributions for example') - - # 图例。 - # 生成小提琴图的详细图例。 - ax.plot([0,0], [1,1], label='eval set contributions\ndistributions', - color=face_color, alpha=alpha, linewidth=10) - legend = ax.legend(loc='lower right', shadow=True, fontsize='x-large', - frameon=True) - legend.get_frame().set_facecolor('white') - - # 调整格式。 - ax.set_yticks(np.arange(example.shape[0])) - ax.set_yticklabels(example.index) - ax.grid(False, axis='y') - ax.set_xlabel('Contribution to predicted probability', size=14) -``` - -绘制此样例。 - -```py -dist_violin_plot(df_dfc, ID) -plt.title('Feature contributions for example {}\n pred: {:1.2f}; label: {}'.format(ID, probs[ID], labels[ID])) -plt.show() -``` - -![png](img/c91d625a0312bd25acf8dab10ecb51ed.png) - -最后,第三方的工具,如:[LIME](https://github.com/marcotcr/lime) 和 [shap](https://github.com/slundberg/shap) 也可以帮助理解模型的各个预测。 - -## 全局特征重要性(Global feature importances) - -此外,您或许想了解模型这个整体而不是单个预测。接下来,您将计算并使用: - -* 通过 `est.experimental_feature_importances` 得到基于增益的特征重要性(Gain-based feature importances) -* 排列特征重要性(Permutation feature importances) -* 使用 `est.experimental_predict_with_explanations` 得到总 DFCs。 - -基于增益的特征重要性在分离特定特征时测量损失的变化。而排列特征重要性是在评估集上通过每次打乱一个特征后观察模型性能的变化计算而出。 - -一般来说,排列特征重要性要优于基于增益的特征重要性,尽管这两种方法在潜在预测变量的测量范围或类别数量不确定时和特征相关联时不可信([来源](https://bmcbioinformatics.biomedcentral.com/articles/10.1186/1471-2105-9-307))。 对不同种类特征重要性的更透彻概括和更翔实讨论请参考 [这篇文章](http://explained.ai/rf-importance/index.html) 。 - -### 基于增益的特征重要性(Gain-based feature importances) - -TensorFlow 的提升树估算器(estimator)内置了函数 `est.experimental_feature_importances` 用于计算基于增益的特征重要性。 - -```py -importances = est.experimental_feature_importances(normalize=True) -df_imp = pd.Series(importances) - -# 可视化重要性。 -N = 8 -ax = (df_imp.iloc[0:N][::-1] - .plot(kind='barh', - color=sns_colors[0], - title='Gain feature importances', - figsize=(10, 6))) -ax.grid(False, axis='y') -``` - -![png](img/11c5fe9ef9f8ed2389fe40e5fa1ccbb7.png) - -### 平均绝对 DFCs - -您还可以得到绝对 DFCs 的平均值来从全局的角度分析影响。 - -```py -# 绘图。 -dfc_mean = df_dfc.abs().mean() -N = 8 -sorted_ix = dfc_mean.abs().sort_values()[-N:].index # 求平均并按绝对值排序。 -ax = dfc_mean[sorted_ix].plot(kind='barh', - color=sns_colors[1], - title='Mean |directional feature contributions|', - figsize=(10, 6)) -ax.grid(False, axis='y') -``` - -![png](img/edb8cf06303c60cf812dce4865e8d331.png) - -您可以看到 DFCs 如何随特征的值变化而变化。 - -```py -FEATURE = 'fare' -feature = pd.Series(df_dfc[FEATURE].values, index=dfeval[FEATURE].values).sort_index() -ax = sns.regplot(feature.index.values, feature.values, lowess=True) -ax.set_ylabel('contribution') -ax.set_xlabel(FEATURE) -ax.set_xlim(0, 100) -plt.show() -``` - -![png](img/dbd4a3a9bd5a14a61bcaf558a2231993.png) - -### 排列特征重要性(Permutation feature importances) - -```py -def permutation_importances(est, X_eval, y_eval, metric, features): - """ - 分别对每列,打散列中的值并观察其对评估集的影响。 - - 在训练过程中,有一种类似的方法,请参阅文章(来源:http://explained.ai/rf-importance/index.html) - 中有关 “Drop-column importance” 的部分。 - """ - baseline = metric(est, X_eval, y_eval) - imp = [] - for col in features: - save = X_eval[col].copy() - X_eval[col] = np.random.permutation(X_eval[col]) - m = metric(est, X_eval, y_eval) - X_eval[col] = save - imp.append(baseline - m) - return np.array(imp) - -def accuracy_metric(est, X, y): - """TensorFlow 估算器精度""" - eval_input_fn = make_input_fn(X, - y=y, - shuffle=False, - n_epochs=1) - return est.evaluate(input_fn=eval_input_fn)['accuracy'] -features = CATEGORICAL_COLUMNS + NUMERIC_COLUMNS -importances = permutation_importances(est, dfeval, y_eval, accuracy_metric, - features) -df_imp = pd.Series(importances, index=features) - -sorted_ix = df_imp.abs().sort_values().index -ax = df_imp[sorted_ix][-5:].plot(kind='barh', color=sns_colors[2], figsize=(10, 6)) -ax.grid(False, axis='y') -ax.set_title('Permutation feature importance') -plt.show() -``` - -```py -INFO:tensorflow:Calling model_fn. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -INFO:tensorflow:Done calling model_fn. -INFO:tensorflow:Starting evaluation at 2020-03-09T21:21:18Z -INFO:tensorflow:Graph was finalized. -INFO:tensorflow:Restoring parameters from /tmp/tmpec8e696f/model.ckpt-153 -INFO:tensorflow:Running local_init_op. -INFO:tensorflow:Done running local_init_op. -INFO:tensorflow:Inference Time : 0.56113s -INFO:tensorflow:Finished evaluation at 2020-03-09-21:21:18 -INFO:tensorflow:Saving dict for global step 153: accuracy = 0.8030303, accuracy_baseline = 0.625, auc = 0.8679216, auc_precision_recall = 0.8527449, average_loss = 0.4203342, global_step = 153, label/mean = 0.375, loss = 0.4203342, precision = 0.7473684, prediction/mean = 0.38673538, recall = 0.7171717 -INFO:tensorflow:Saving 'checkpoint_path' summary for global step 153: /tmp/tmpec8e696f/model.ckpt-153 -INFO:tensorflow:Calling model_fn. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -INFO:tensorflow:Done calling model_fn. -INFO:tensorflow:Starting evaluation at 2020-03-09T21:21:19Z -INFO:tensorflow:Graph was finalized. -INFO:tensorflow:Restoring parameters from /tmp/tmpec8e696f/model.ckpt-153 -INFO:tensorflow:Running local_init_op. -INFO:tensorflow:Done running local_init_op. -INFO:tensorflow:Inference Time : 0.57949s -INFO:tensorflow:Finished evaluation at 2020-03-09-21:21:19 -INFO:tensorflow:Saving dict for global step 153: accuracy = 0.6060606, accuracy_baseline = 0.625, auc = 0.64355683, auc_precision_recall = 0.5400543, average_loss = 0.74337494, global_step = 153, label/mean = 0.375, loss = 0.74337494, precision = 0.47524753, prediction/mean = 0.39103043, recall = 0.4848485 -INFO:tensorflow:Saving 'checkpoint_path' summary for global step 153: /tmp/tmpec8e696f/model.ckpt-153 -INFO:tensorflow:Calling model_fn. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -INFO:tensorflow:Done calling model_fn. -INFO:tensorflow:Starting evaluation at 2020-03-09T21:21:20Z -INFO:tensorflow:Graph was finalized. -INFO:tensorflow:Restoring parameters from /tmp/tmpec8e696f/model.ckpt-153 -INFO:tensorflow:Running local_init_op. -INFO:tensorflow:Done running local_init_op. -INFO:tensorflow:Inference Time : 0.58528s -INFO:tensorflow:Finished evaluation at 2020-03-09-21:21:21 -INFO:tensorflow:Saving dict for global step 153: accuracy = 0.7916667, accuracy_baseline = 0.625, auc = 0.8624732, auc_precision_recall = 0.8392693, average_loss = 0.43363357, global_step = 153, label/mean = 0.375, loss = 0.43363357, precision = 0.7244898, prediction/mean = 0.38975066, recall = 0.7171717 -INFO:tensorflow:Saving 'checkpoint_path' summary for global step 153: /tmp/tmpec8e696f/model.ckpt-153 -INFO:tensorflow:Calling model_fn. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -INFO:tensorflow:Done calling model_fn. -INFO:tensorflow:Starting evaluation at 2020-03-09T21:21:21Z -INFO:tensorflow:Graph was finalized. -INFO:tensorflow:Restoring parameters from /tmp/tmpec8e696f/model.ckpt-153 -INFO:tensorflow:Running local_init_op. -INFO:tensorflow:Done running local_init_op. -INFO:tensorflow:Inference Time : 0.55600s -INFO:tensorflow:Finished evaluation at 2020-03-09-21:21:22 -INFO:tensorflow:Saving dict for global step 153: accuracy = 0.8068182, accuracy_baseline = 0.625, auc = 0.8674931, auc_precision_recall = 0.85280114, average_loss = 0.4206087, global_step = 153, label/mean = 0.375, loss = 0.4206087, precision = 0.75, prediction/mean = 0.38792592, recall = 0.72727275 -INFO:tensorflow:Saving 'checkpoint_path' summary for global step 153: /tmp/tmpec8e696f/model.ckpt-153 -INFO:tensorflow:Calling model_fn. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -INFO:tensorflow:Done calling model_fn. -INFO:tensorflow:Starting evaluation at 2020-03-09T21:21:22Z -INFO:tensorflow:Graph was finalized. -INFO:tensorflow:Restoring parameters from /tmp/tmpec8e696f/model.ckpt-153 -INFO:tensorflow:Running local_init_op. -INFO:tensorflow:Done running local_init_op. -INFO:tensorflow:Inference Time : 0.54454s -INFO:tensorflow:Finished evaluation at 2020-03-09-21:21:23 -INFO:tensorflow:Saving dict for global step 153: accuracy = 0.72727275, accuracy_baseline = 0.625, auc = 0.76737064, auc_precision_recall = 0.62659556, average_loss = 0.6019534, global_step = 153, label/mean = 0.375, loss = 0.6019534, precision = 0.6626506, prediction/mean = 0.3688063, recall = 0.5555556 -INFO:tensorflow:Saving 'checkpoint_path' summary for global step 153: /tmp/tmpec8e696f/model.ckpt-153 -INFO:tensorflow:Calling model_fn. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -INFO:tensorflow:Done calling model_fn. -INFO:tensorflow:Starting evaluation at 2020-03-09T21:21:24Z -INFO:tensorflow:Graph was finalized. -INFO:tensorflow:Restoring parameters from /tmp/tmpec8e696f/model.ckpt-153 -INFO:tensorflow:Running local_init_op. -INFO:tensorflow:Done running local_init_op. -INFO:tensorflow:Inference Time : 0.53149s -INFO:tensorflow:Finished evaluation at 2020-03-09-21:21:24 -INFO:tensorflow:Saving dict for global step 153: accuracy = 0.7878788, accuracy_baseline = 0.625, auc = 0.8389348, auc_precision_recall = 0.8278463, average_loss = 0.45054114, global_step = 153, label/mean = 0.375, loss = 0.45054114, precision = 0.7263158, prediction/mean = 0.3912348, recall = 0.6969697 -INFO:tensorflow:Saving 'checkpoint_path' summary for global step 153: /tmp/tmpec8e696f/model.ckpt-153 -INFO:tensorflow:Calling model_fn. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -INFO:tensorflow:Done calling model_fn. -INFO:tensorflow:Starting evaluation at 2020-03-09T21:21:25Z -INFO:tensorflow:Graph was finalized. -INFO:tensorflow:Restoring parameters from /tmp/tmpec8e696f/model.ckpt-153 -INFO:tensorflow:Running local_init_op. -INFO:tensorflow:Done running local_init_op. -INFO:tensorflow:Inference Time : 0.54399s -INFO:tensorflow:Finished evaluation at 2020-03-09-21:21:25 -INFO:tensorflow:Saving dict for global step 153: accuracy = 0.8030303, accuracy_baseline = 0.625, auc = 0.862565, auc_precision_recall = 0.84412414, average_loss = 0.42553493, global_step = 153, label/mean = 0.375, loss = 0.42553493, precision = 0.75268817, prediction/mean = 0.37500647, recall = 0.7070707 -INFO:tensorflow:Saving 'checkpoint_path' summary for global step 153: /tmp/tmpec8e696f/model.ckpt-153 -INFO:tensorflow:Calling model_fn. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -INFO:tensorflow:Done calling model_fn. -INFO:tensorflow:Starting evaluation at 2020-03-09T21:21:26Z -INFO:tensorflow:Graph was finalized. -INFO:tensorflow:Restoring parameters from /tmp/tmpec8e696f/model.ckpt-153 -INFO:tensorflow:Running local_init_op. -INFO:tensorflow:Done running local_init_op. -INFO:tensorflow:Inference Time : 0.56776s -INFO:tensorflow:Finished evaluation at 2020-03-09-21:21:26 -INFO:tensorflow:Saving dict for global step 153: accuracy = 0.8030303, accuracy_baseline = 0.625, auc = 0.8679216, auc_precision_recall = 0.8527449, average_loss = 0.4203342, global_step = 153, label/mean = 0.375, loss = 0.4203342, precision = 0.7473684, prediction/mean = 0.38673538, recall = 0.7171717 -INFO:tensorflow:Saving 'checkpoint_path' summary for global step 153: /tmp/tmpec8e696f/model.ckpt-153 -INFO:tensorflow:Calling model_fn. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -INFO:tensorflow:Done calling model_fn. -INFO:tensorflow:Starting evaluation at 2020-03-09T21:21:27Z -INFO:tensorflow:Graph was finalized. -INFO:tensorflow:Restoring parameters from /tmp/tmpec8e696f/model.ckpt-153 -INFO:tensorflow:Running local_init_op. -INFO:tensorflow:Done running local_init_op. -INFO:tensorflow:Inference Time : 0.56329s -INFO:tensorflow:Finished evaluation at 2020-03-09-21:21:28 -INFO:tensorflow:Saving dict for global step 153: accuracy = 0.79924244, accuracy_baseline = 0.625, auc = 0.8132232, auc_precision_recall = 0.7860318, average_loss = 0.4787808, global_step = 153, label/mean = 0.375, loss = 0.4787808, precision = 0.7613636, prediction/mean = 0.37704408, recall = 0.67676765 -INFO:tensorflow:Saving 'checkpoint_path' summary for global step 153: /tmp/tmpec8e696f/model.ckpt-153 -INFO:tensorflow:Calling model_fn. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -WARNING:tensorflow:Trapezoidal rule is known to produce incorrect PR-AUCs; please switch to "careful_interpolation" instead. -INFO:tensorflow:Done calling model_fn. -INFO:tensorflow:Starting evaluation at 2020-03-09T21:21:28Z -INFO:tensorflow:Graph was finalized. -INFO:tensorflow:Restoring parameters from /tmp/tmpec8e696f/model.ckpt-153 -INFO:tensorflow:Running local_init_op. -INFO:tensorflow:Done running local_init_op. -INFO:tensorflow:Inference Time : 0.60489s -INFO:tensorflow:Finished evaluation at 2020-03-09-21:21:29 -INFO:tensorflow:Saving dict for global step 153: accuracy = 0.8030303, accuracy_baseline = 0.625, auc = 0.8360882, auc_precision_recall = 0.7940172, average_loss = 0.45960733, global_step = 153, label/mean = 0.375, loss = 0.45960733, precision = 0.7473684, prediction/mean = 0.38010252, recall = 0.7171717 -INFO:tensorflow:Saving 'checkpoint_path' summary for global step 153: /tmp/tmpec8e696f/model.ckpt-153 - -``` - -![png](img/3b5e2e711798f7ff0d6ff949ea4f54f3.png) - -## 可视化模型拟合过程 - -首先,使用以下公式构建训练数据: - -$$z=x* e^{-x^2 - y^2}$$ - -其中, (z) 是您要试着预测的值(因变量),(x) 和 (y) 是特征。 - -```py -from numpy.random import uniform, seed -from scipy.interpolate import griddata - -# 生成数据。 -seed(0) -npts = 5000 -x = uniform(-2, 2, npts) -y = uniform(-2, 2, npts) -z = x*np.exp(-x**2 - y**2) -xy = np.zeros((2,np.size(x))) -xy[0] = x -xy[1] = y -xy = xy.T -``` - -```py -# 准备用于训练的数据。 -df = pd.DataFrame({'x': x, 'y': y, 'z': z}) - -xi = np.linspace(-2.0, 2.0, 200), -yi = np.linspace(-2.1, 2.1, 210), -xi,yi = np.meshgrid(xi, yi) - -df_predict = pd.DataFrame({ - 'x' : xi.flatten(), - 'y' : yi.flatten(), -}) -predict_shape = xi.shape -``` - -```py -def plot_contour(x, y, z, **kwargs): - # 准备用于训练的数据。 - plt.figure(figsize=(10, 8)) - # 绘制等值线图,标出非均匀数据点。 - CS = plt.contour(x, y, z, 15, linewidths=0.5, colors='k') - CS = plt.contourf(x, y, z, 15, - vmax=abs(zi).max(), vmin=-abs(zi).max(), cmap='RdBu_r') - plt.colorbar() # 绘制颜色图例。 - # 绘制数据点。 - plt.xlim(-2, 2) - plt.ylim(-2, 2) -``` - -您可以可视化这个方程,红色代表较大的值。 - -```py -zi = griddata(xy, z, (xi, yi), method='linear', fill_value='0') -plot_contour(xi, yi, zi) -plt.scatter(df.x, df.y, marker='.') -plt.title('Contour on training data') -plt.show() -``` - -![png](img/02b2fc97a46c88c22ee2d11e8c28bf0d.png) - -```py -fc = [tf.feature_column.numeric_column('x'), - tf.feature_column.numeric_column('y')] -``` - -```py -def predict(est): - """已有估算器给出的预测""" - predict_input_fn = lambda: tf.data.Dataset.from_tensors(dict(df_predict)) - preds = np.array([p['predictions'][0] for p in est.predict(predict_input_fn)]) - return preds.reshape(predict_shape) -``` - -首先,我们尝试用线性模型拟合数据。 - -```py -train_input_fn = make_input_fn(df, df.z) -est = tf.estimator.LinearRegressor(fc) -est.train(train_input_fn, max_steps=500); -``` - -```py -INFO:tensorflow:Using default config. -WARNING:tensorflow:Using temporary folder as model directory: /tmp/tmpd4fqobc9 -INFO:tensorflow:Using config: {'_model_dir': '/tmp/tmpd4fqobc9', '_tf_random_seed': None, '_save_summary_steps': 100, '_save_checkpoints_steps': None, '_save_checkpoints_secs': 600, '_session_config': allow_soft_placement: true -graph_options { - rewrite_options { - meta_optimizer_iterations: ONE - } -} -, '_keep_checkpoint_max': 5, '_keep_checkpoint_every_n_hours': 10000, '_log_step_count_steps': 100, '_train_distribute': None, '_device_fn': None, '_protocol': None, '_eval_distribute': None, '_experimental_distribute': None, '_experimental_max_worker_delay_secs': None, '_session_creation_timeout_secs': 7200, '_service': None, '_cluster_spec': ClusterSpec({}), '_task_type': 'worker', '_task_id': 0, '_global_id_in_cluster': 0, '_master': '', '_evaluation_master': '', '_is_chief': True, '_num_ps_replicas': 0, '_num_worker_replicas': 1} -INFO:tensorflow:Calling model_fn. -WARNING:tensorflow:From /tensorflow-2.1.0/python3.6/tensorflow_core/python/feature_column/feature_column_v2.py:518: Layer.add_variable (from tensorflow.python.keras.engine.base_layer) is deprecated and will be removed in a future version. -Instructions for updating: -Please use `layer.add_weight` method instead. -WARNING:tensorflow:From /tensorflow-2.1.0/python3.6/tensorflow_core/python/keras/optimizer_v2/ftrl.py:143: calling Constant.__init__ (from tensorflow.python.ops.init_ops) with dtype is deprecated and will be removed in a future version. -Instructions for updating: -Call initializer instance with the dtype argument instead of passing it to the constructor -INFO:tensorflow:Done calling model_fn. -INFO:tensorflow:Create CheckpointSaverHook. -INFO:tensorflow:Graph was finalized. -INFO:tensorflow:Running local_init_op. -INFO:tensorflow:Done running local_init_op. -INFO:tensorflow:Saving checkpoints for 0 into /tmp/tmpd4fqobc9/model.ckpt. -INFO:tensorflow:loss = 0.023290718, step = 0 -INFO:tensorflow:global_step/sec: 267.329 -INFO:tensorflow:loss = 0.017512696, step = 100 (0.377 sec) -INFO:tensorflow:global_step/sec: 312.355 -INFO:tensorflow:loss = 0.018098738, step = 200 (0.321 sec) -INFO:tensorflow:global_step/sec: 341.77 -INFO:tensorflow:loss = 0.019927984, step = 300 (0.291 sec) -INFO:tensorflow:global_step/sec: 307.825 -INFO:tensorflow:loss = 0.01797011, step = 400 (0.327 sec) -INFO:tensorflow:Saving checkpoints for 500 into /tmp/tmpd4fqobc9/model.ckpt. -INFO:tensorflow:Loss for final step: 0.019703189. - -``` - -```py -plot_contour(xi, yi, predict(est)) -``` - -```py -INFO:tensorflow:Calling model_fn. -WARNING:tensorflow:Layer linear/linear_model is casting an input tensor from dtype float64 to the layer's dtype of float32, which is new behavior in TensorFlow 2\. The layer has dtype float32 because it's dtype defaults to floatx. - -If you intended to run this layer in float32, you can safely ignore this warning. If in doubt, this warning is likely only an issue if you are porting a TensorFlow 1.X model to TensorFlow 2. - -To change all layers to have dtype float64 by default, call `tf.keras.backend.set_floatx('float64')`. To change just this layer, pass dtype='float64' to the layer constructor. If you are the author of this layer, you can disable autocasting by passing autocast=False to the base Layer constructor. - -INFO:tensorflow:Done calling model_fn. -INFO:tensorflow:Graph was finalized. -INFO:tensorflow:Restoring parameters from /tmp/tmpd4fqobc9/model.ckpt-500 -INFO:tensorflow:Running local_init_op. -INFO:tensorflow:Done running local_init_op. - -``` - -![png](img/2bc3a9da8c0e479bf906dd0c765549f4.png) - -可见,拟合效果并不好。接下来,我们试着用 GBDT 模型拟合并了解模型是如何拟合方程的。 - -```py -n_trees = 37 - -est = tf.estimator.BoostedTreesRegressor(fc, n_batches_per_layer=1, n_trees=n_trees) -est.train(train_input_fn, max_steps=500) -clear_output() -plot_contour(xi, yi, predict(est)) -plt.text(-1.8, 2.1, '# trees: {}'.format(n_trees), color='w', backgroundcolor='black', size=20) -plt.show() -``` - -```py -INFO:tensorflow:Calling model_fn. -INFO:tensorflow:Done calling model_fn. -INFO:tensorflow:Graph was finalized. -INFO:tensorflow:Restoring parameters from /tmp/tmp3jae7fgc/model.ckpt-222 -INFO:tensorflow:Running local_init_op. -INFO:tensorflow:Done running local_init_op. - -``` - -![png](img/60960a15d5ca50a1486f3c3f8c200635.png) - -随着树的数量增加,模型的预测越来越接近真实方程。 - -![](img/cb18ad8212a0648018238babc8fe2325.png) - -## 总结 - -本文介绍了如何使用定向特征贡献(DFCs)及几种特征重要性来解释提升树模型。这些方法可以帮助您了解特征是如何影响模型的预测。 最后,您还可以通过观察其他模型的超平面(decision surface)并结合本文内容来学习提升树模型是如何拟合方程的。 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/027.md b/Tensorflow/TensorFlow2.0/027.md deleted file mode 100644 index 5a0eeffe..00000000 --- a/Tensorflow/TensorFlow2.0/027.md +++ /dev/null @@ -1,383 +0,0 @@ -# 通过 Keras 模型创建 Estimator - -> 原文:[https://tensorflow.google.cn/tutorials/estimator/keras_model_to_estimator](https://tensorflow.google.cn/tutorials/estimator/keras_model_to_estimator) - -## 概述 - -TensorFlow 完全支持 TensorFlow Estimator,可以从新的和现有的 [`tf.keras`](https://tensorflow.google.cn/api_docs/python/tf/keras) 模型创建 Estimator。本教程包含了该过程完整且最为简短的示例。 - -## 设置 - -```py -import tensorflow as tf - -import numpy as np -import tensorflow_datasets as tfds -``` - -### 创建一个简单的 Keras 模型。 - -在 Keras 中,需要通过组装*层*来构建*模型*。模型(通常)是由层构成的计算图。最常见的模型类型是一种叠加层:[`tf.keras.Sequential`](https://tensorflow.google.cn/api_docs/python/tf/keras/Sequential) 模型。 - -构建一个简单的全连接网络(即多层感知器): - -```py -model = tf.keras.models.Sequential([ - tf.keras.layers.Dense(16, activation='relu', input_shape=(4,)), - tf.keras.layers.Dropout(0.2), - tf.keras.layers.Dense(3) -]) -``` - -编译模型并获取摘要。 - -```py -model.compile(loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True), - optimizer='adam') -model.summary() -``` - -```py -Model: "sequential" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -dense (Dense) (None, 16) 80 -_________________________________________________________________ -dropout (Dropout) (None, 16) 0 -_________________________________________________________________ -dense_1 (Dense) (None, 3) 51 -================================================================= -Total params: 131 -Trainable params: 131 -Non-trainable params: 0 -_________________________________________________________________ - -``` - -### 创建输入函数 - -使用 [Datasets API](https://tensorflow.google.cn/guide/data) 可以扩展到大型数据集或多设备训练。 - -Estimator 需要控制构建输入流水线的时间和方式。为此,它们需要一个“输入函数”或 `input_fn`。`Estimator` 将不使用任何参数调用此函数。`input_fn` 必须返回 [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset)。 - -```py -def input_fn(): - split = tfds.Split.TRAIN - dataset = tfds.load('iris', split=split, as_supervised=True) - dataset = dataset.map(lambda features, labels: ({'dense_input':features}, labels)) - dataset = dataset.batch(32).repeat() - return dataset -``` - -测试您的 `input_fn` - -```py -for features_batch, labels_batch in input_fn().take(1): - print(features_batch) - print(labels_batch) -``` - -```py -Downloading and preparing dataset iris/2.0.0 (download: 4.44 KiB, generated: Unknown size, total: 4.44 KiB) to /home/kbuilder/tensorflow_datasets/iris/2.0.0... -Shuffling and writing examples to /home/kbuilder/tensorflow_datasets/iris/2.0.0.incompleteQ29ZWS/iris-train.tfrecord -Dataset iris downloaded and prepared to /home/kbuilder/tensorflow_datasets/iris/2.0.0\. Subsequent calls will reuse this data. -{'dense_input': } -tf.Tensor([0 2 1 2 0 1 1 1 0 2 1 0 2 0 0 0 0 0 2 2 2 2 2 0 2 0 2 1 1 1 1 1], shape=(32,), dtype=int64) - -``` - -### 通过 tf.keras 模型创建 Estimator。 - -可以使用 [`tf.estimator`](https://tensorflow.google.cn/api_docs/python/tf/estimator) API 来训练 [`tf.keras.Model`](https://tensorflow.google.cn/api_docs/python/tf/keras/Model),方法是使用 [`tf.keras.estimator.model_to_estimator`](https://tensorflow.google.cn/api_docs/python/tf/keras/estimator/model_to_estimator) 将模型转换为 [`tf.estimator.Estimator`](https://tensorflow.google.cn/api_docs/python/tf/estimator/Estimator) 对象。 - -```py -import tempfile -model_dir = tempfile.mkdtemp() -keras_estimator = tf.keras.estimator.model_to_estimator( - keras_model=model, model_dir=model_dir) -``` - -```py -INFO:tensorflow:Using default config. - -INFO:tensorflow:Using default config. - -INFO:tensorflow:Using the Keras model provided. - -INFO:tensorflow:Using the Keras model provided. - -Warning:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow_estimator/python/estimator/keras.py:220: set_learning_phase (from tensorflow.python.keras.backend) is deprecated and will be removed after 2020-10-11. -Instructions for updating: -Simply pass a True/False value to the `training` argument of the `__call__` method of your layer or model. - -Warning:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow_estimator/python/estimator/keras.py:220: set_learning_phase (from tensorflow.python.keras.backend) is deprecated and will be removed after 2020-10-11. -Instructions for updating: -Simply pass a True/False value to the `training` argument of the `__call__` method of your layer or model. - -INFO:tensorflow:Using config: {'_model_dir': '/tmp/tmp13998n2j', '_tf_random_seed': None, '_save_summary_steps': 100, '_save_checkpoints_steps': None, '_save_checkpoints_secs': 600, '_session_config': allow_soft_placement: true -graph_options { - rewrite_options { - meta_optimizer_iterations: ONE - } -} -, '_keep_checkpoint_max': 5, '_keep_checkpoint_every_n_hours': 10000, '_log_step_count_steps': 100, '_train_distribute': None, '_device_fn': None, '_protocol': None, '_eval_distribute': None, '_experimental_distribute': None, '_experimental_max_worker_delay_secs': None, '_session_creation_timeout_secs': 7200, '_service': None, '_cluster_spec': ClusterSpec({}), '_task_type': 'worker', '_task_id': 0, '_global_id_in_cluster': 0, '_master': '', '_evaluation_master': '', '_is_chief': True, '_num_ps_replicas': 0, '_num_worker_replicas': 1} - -INFO:tensorflow:Using config: {'_model_dir': '/tmp/tmp13998n2j', '_tf_random_seed': None, '_save_summary_steps': 100, '_save_checkpoints_steps': None, '_save_checkpoints_secs': 600, '_session_config': allow_soft_placement: true -graph_options { - rewrite_options { - meta_optimizer_iterations: ONE - } -} -, '_keep_checkpoint_max': 5, '_keep_checkpoint_every_n_hours': 10000, '_log_step_count_steps': 100, '_train_distribute': None, '_device_fn': None, '_protocol': None, '_eval_distribute': None, '_experimental_distribute': None, '_experimental_max_worker_delay_secs': None, '_session_creation_timeout_secs': 7200, '_service': None, '_cluster_spec': ClusterSpec({}), '_task_type': 'worker', '_task_id': 0, '_global_id_in_cluster': 0, '_master': '', '_evaluation_master': '', '_is_chief': True, '_num_ps_replicas': 0, '_num_worker_replicas': 1} - -``` - -训练和评估 Estimator。 - -```py -keras_estimator.train(input_fn=input_fn, steps=500) -eval_result = keras_estimator.evaluate(input_fn=input_fn, steps=10) -print('Eval result: {}'.format(eval_result)) -``` - -```py -WARNING:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/training/training_util.py:236: Variable.initialized_value (from tensorflow.python.ops.variables) is deprecated and will be removed in a future version. -Instructions for updating: -Use Variable.read_value. Variables in 2.X are initialized automatically both in eager and graph (inside tf.defun) contexts. - -Warning:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/training/training_util.py:236: Variable.initialized_value (from tensorflow.python.ops.variables) is deprecated and will be removed in a future version. -Instructions for updating: -Use Variable.read_value. Variables in 2.X are initialized automatically both in eager and graph (inside tf.defun) contexts. - -INFO:tensorflow:Calling model_fn. - -INFO:tensorflow:Calling model_fn. - -INFO:tensorflow:Done calling model_fn. - -INFO:tensorflow:Done calling model_fn. - -INFO:tensorflow:Warm-starting with WarmStartSettings: WarmStartSettings(ckpt_to_initialize_from='/tmp/tmp13998n2j/keras/keras_model.ckpt', vars_to_warm_start='.*', var_name_to_vocab_info={}, var_name_to_prev_var_name={}) - -INFO:tensorflow:Warm-starting with WarmStartSettings: WarmStartSettings(ckpt_to_initialize_from='/tmp/tmp13998n2j/keras/keras_model.ckpt', vars_to_warm_start='.*', var_name_to_vocab_info={}, var_name_to_prev_var_name={}) - -INFO:tensorflow:Warm-starting from: /tmp/tmp13998n2j/keras/keras_model.ckpt - -INFO:tensorflow:Warm-starting from: /tmp/tmp13998n2j/keras/keras_model.ckpt - -INFO:tensorflow:Warm-starting variables only in TRAINABLE_VARIABLES. - -INFO:tensorflow:Warm-starting variables only in TRAINABLE_VARIABLES. - -INFO:tensorflow:Warm-started 4 variables. - -INFO:tensorflow:Warm-started 4 variables. - -INFO:tensorflow:Create CheckpointSaverHook. - -INFO:tensorflow:Create CheckpointSaverHook. - -INFO:tensorflow:Graph was finalized. - -INFO:tensorflow:Graph was finalized. - -INFO:tensorflow:Running local_init_op. - -INFO:tensorflow:Running local_init_op. - -INFO:tensorflow:Done running local_init_op. - -INFO:tensorflow:Done running local_init_op. - -INFO:tensorflow:Calling checkpoint listeners before saving checkpoint 0... - -INFO:tensorflow:Calling checkpoint listeners before saving checkpoint 0... - -INFO:tensorflow:Saving checkpoints for 0 into /tmp/tmp13998n2j/model.ckpt. - -INFO:tensorflow:Saving checkpoints for 0 into /tmp/tmp13998n2j/model.ckpt. - -INFO:tensorflow:Calling checkpoint listeners after saving checkpoint 0... - -INFO:tensorflow:Calling checkpoint listeners after saving checkpoint 0... - -INFO:tensorflow:loss = 1.5731332, step = 0 - -INFO:tensorflow:loss = 1.5731332, step = 0 - -INFO:tensorflow:global_step/sec: 444.326 - -INFO:tensorflow:global_step/sec: 444.326 - -INFO:tensorflow:loss = 0.79164267, step = 100 (0.227 sec) - -INFO:tensorflow:loss = 0.79164267, step = 100 (0.227 sec) - -INFO:tensorflow:global_step/sec: 515.459 - -INFO:tensorflow:global_step/sec: 515.459 - -INFO:tensorflow:loss = 0.5765847, step = 200 (0.193 sec) - -INFO:tensorflow:loss = 0.5765847, step = 200 (0.193 sec) - -INFO:tensorflow:global_step/sec: 518.855 - -INFO:tensorflow:global_step/sec: 518.855 - -INFO:tensorflow:loss = 0.48571444, step = 300 (0.193 sec) - -INFO:tensorflow:loss = 0.48571444, step = 300 (0.193 sec) - -INFO:tensorflow:global_step/sec: 527.318 - -INFO:tensorflow:global_step/sec: 527.318 - -INFO:tensorflow:loss = 0.3836534, step = 400 (0.190 sec) - -INFO:tensorflow:loss = 0.3836534, step = 400 (0.190 sec) - -INFO:tensorflow:Calling checkpoint listeners before saving checkpoint 500... - -INFO:tensorflow:Calling checkpoint listeners before saving checkpoint 500... - -INFO:tensorflow:Saving checkpoints for 500 into /tmp/tmp13998n2j/model.ckpt. - -INFO:tensorflow:Saving checkpoints for 500 into /tmp/tmp13998n2j/model.ckpt. - -INFO:tensorflow:Calling checkpoint listeners after saving checkpoint 500... - -INFO:tensorflow:Calling checkpoint listeners after saving checkpoint 500... - -INFO:tensorflow:Loss for final step: 0.46023262. - -INFO:tensorflow:Loss for final step: 0.46023262. - -INFO:tensorflow:Calling model_fn. - -INFO:tensorflow:Calling model_fn. - -Warning:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/keras/engine/training_v1.py:2048: Model.state_updates (from tensorflow.python.keras.engine.training) is deprecated and will be removed in a future version. -Instructions for updating: -This property should not be used in TensorFlow 2.0, as updates are applied automatically. - -Warning:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/keras/engine/training_v1.py:2048: Model.state_updates (from tensorflow.python.keras.engine.training) is deprecated and will be removed in a future version. -Instructions for updating: -This property should not be used in TensorFlow 2.0, as updates are applied automatically. - -INFO:tensorflow:Done calling model_fn. - -INFO:tensorflow:Done calling model_fn. - -INFO:tensorflow:Starting evaluation at 2020-09-22T19:57:20Z - -INFO:tensorflow:Starting evaluation at 2020-09-22T19:57:20Z - -INFO:tensorflow:Graph was finalized. - -INFO:tensorflow:Graph was finalized. - -INFO:tensorflow:Restoring parameters from /tmp/tmp13998n2j/model.ckpt-500 - -INFO:tensorflow:Restoring parameters from /tmp/tmp13998n2j/model.ckpt-500 - -INFO:tensorflow:Running local_init_op. - -INFO:tensorflow:Running local_init_op. - -INFO:tensorflow:Done running local_init_op. - -INFO:tensorflow:Done running local_init_op. - -INFO:tensorflow:Evaluation [1/10] - -INFO:tensorflow:Evaluation [1/10] - -INFO:tensorflow:Evaluation [2/10] - -INFO:tensorflow:Evaluation [2/10] - -INFO:tensorflow:Evaluation [3/10] - -INFO:tensorflow:Evaluation [3/10] - -INFO:tensorflow:Evaluation [4/10] - -INFO:tensorflow:Evaluation [4/10] - -INFO:tensorflow:Evaluation [5/10] - -INFO:tensorflow:Evaluation [5/10] - -INFO:tensorflow:Evaluation [6/10] - -INFO:tensorflow:Evaluation [6/10] - -INFO:tensorflow:Evaluation [7/10] - -INFO:tensorflow:Evaluation [7/10] - -INFO:tensorflow:Evaluation [8/10] - -INFO:tensorflow:Evaluation [8/10] - -INFO:tensorflow:Evaluation [9/10] - -INFO:tensorflow:Evaluation [9/10] - -INFO:tensorflow:Evaluation [10/10] - -INFO:tensorflow:Evaluation [10/10] - -INFO:tensorflow:Inference Time : 0.16498s - -INFO:tensorflow:Inference Time : 0.16498s - -INFO:tensorflow:Finished evaluation at 2020-09-22-19:57:20 - -INFO:tensorflow:Finished evaluation at 2020-09-22-19:57:20 - -INFO:tensorflow:Saving dict for global step 500: global_step = 500, loss = 0.33660004 - -INFO:tensorflow:Saving dict for global step 500: global_step = 500, loss = 0.33660004 - -INFO:tensorflow:Saving 'checkpoint_path' summary for global step 500: /tmp/tmp13998n2j/model.ckpt-500 - -INFO:tensorflow:Saving 'checkpoint_path' summary for global step 500: /tmp/tmp13998n2j/model.ckpt-500 - -Eval result: {'loss': 0.33660004, 'global_step': 500} - -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/028.md b/Tensorflow/TensorFlow2.0/028.md deleted file mode 100644 index 961991fe..00000000 --- a/Tensorflow/TensorFlow2.0/028.md +++ /dev/null @@ -1 +0,0 @@ -# 高级 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/029.md b/Tensorflow/TensorFlow2.0/029.md deleted file mode 100644 index 997d7697..00000000 --- a/Tensorflow/TensorFlow2.0/029.md +++ /dev/null @@ -1 +0,0 @@ -# 自定义 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/030.md b/Tensorflow/TensorFlow2.0/030.md deleted file mode 100644 index 8bab7da8..00000000 --- a/Tensorflow/TensorFlow2.0/030.md +++ /dev/null @@ -1,230 +0,0 @@ -# Customization basics: tensors and operations - -> 原文:[https://tensorflow.google.cn/tutorials/customization/basics](https://tensorflow.google.cn/tutorials/customization/basics) - -This is an introductory TensorFlow tutorial that shows how to: - -* Import the required package -* Create and use tensors -* Use GPU acceleration -* Demonstrate [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) - -## Import TensorFlow - -To get started, import the `tensorflow` module. As of TensorFlow 2, eager execution is turned on by default. This enables a more interactive frontend to TensorFlow, the details of which we will discuss much later. - -```py -import tensorflow as tf -``` - -## Tensors - -A Tensor is a multi-dimensional array. Similar to NumPy `ndarray` objects, [`tf.Tensor`](https://tensorflow.google.cn/api_docs/python/tf/Tensor) objects have a data type and a shape. Additionally, [`tf.Tensor`](https://tensorflow.google.cn/api_docs/python/tf/Tensor)s can reside in accelerator memory (like a GPU). TensorFlow offers a rich library of operations ([tf.add](https://tensorflow.google.cn/api_docs/python/tf/add), [tf.matmul](https://tensorflow.google.cn/api_docs/python/tf/matmul), [tf.linalg.inv](https://tensorflow.google.cn/api_docs/python/tf/linalg/inv) etc.) that consume and produce [`tf.Tensor`](https://tensorflow.google.cn/api_docs/python/tf/Tensor)s. These operations automatically convert native Python types, for example: - -```py -print(tf.add(1, 2)) -print(tf.add([1, 2], [3, 4])) -print(tf.square(5)) -print(tf.reduce_sum([1, 2, 3])) - -# Operator overloading is also supported -print(tf.square(2) + tf.square(3)) -``` - -```py -tf.Tensor(3, shape=(), dtype=int32) -tf.Tensor([4 6], shape=(2,), dtype=int32) -tf.Tensor(25, shape=(), dtype=int32) -tf.Tensor(6, shape=(), dtype=int32) -tf.Tensor(13, shape=(), dtype=int32) - -``` - -Each [`tf.Tensor`](https://tensorflow.google.cn/api_docs/python/tf/Tensor) has a shape and a datatype: - -```py -x = tf.matmul([[1]], [[2, 3]]) -print(x) -print(x.shape) -print(x.dtype) -``` - -```py -tf.Tensor([[2 3]], shape=(1, 2), dtype=int32) -(1, 2) - - -``` - -The most obvious differences between NumPy arrays and [`tf.Tensor`](https://tensorflow.google.cn/api_docs/python/tf/Tensor)s are: - -1. Tensors can be backed by accelerator memory (like GPU, TPU). -2. Tensors are immutable. - -### NumPy Compatibility - -Converting between a TensorFlow [`tf.Tensor`](https://tensorflow.google.cn/api_docs/python/tf/Tensor)s and a NumPy `ndarray` is easy: - -* TensorFlow operations automatically convert NumPy ndarrays to Tensors. -* NumPy operations automatically convert Tensors to NumPy ndarrays. - -Tensors are explicitly converted to NumPy ndarrays using their `.numpy()` method. These conversions are typically cheap since the array and [`tf.Tensor`](https://tensorflow.google.cn/api_docs/python/tf/Tensor) share the underlying memory representation, if possible. However, sharing the underlying representation isn't always possible since the [`tf.Tensor`](https://tensorflow.google.cn/api_docs/python/tf/Tensor) may be hosted in GPU memory while NumPy arrays are always backed by host memory, and the conversion involves a copy from GPU to host memory. - -```py -import numpy as np - -ndarray = np.ones([3, 3]) - -print("TensorFlow operations convert numpy arrays to Tensors automatically") -tensor = tf.multiply(ndarray, 42) -print(tensor) - -print("And NumPy operations convert Tensors to numpy arrays automatically") -print(np.add(tensor, 1)) - -print("The .numpy() method explicitly converts a Tensor to a numpy array") -print(tensor.numpy()) -``` - -```py -TensorFlow operations convert numpy arrays to Tensors automatically -tf.Tensor( -[[42\. 42\. 42.] - [42\. 42\. 42.] - [42\. 42\. 42.]], shape=(3, 3), dtype=float64) -And NumPy operations convert Tensors to numpy arrays automatically -[[43\. 43\. 43.] - [43\. 43\. 43.] - [43\. 43\. 43.]] -The .numpy() method explicitly converts a Tensor to a numpy array -[[42\. 42\. 42.] - [42\. 42\. 42.] - [42\. 42\. 42.]] - -``` - -## GPU acceleration - -Many TensorFlow operations are accelerated using the GPU for computation. Without any annotations, TensorFlow automatically decides whether to use the GPU or CPU for an operation—copying the tensor between CPU and GPU memory, if necessary. Tensors produced by an operation are typically backed by the memory of the device on which the operation executed, for example: - -```py -x = tf.random.uniform([3, 3]) - -print("Is there a GPU available: "), -print(tf.config.experimental.list_physical_devices("GPU")) - -print("Is the Tensor on GPU #0: "), -print(x.device.endswith('GPU:0')) -``` - -```py -Is there a GPU available: -[PhysicalDevice(name='/physical_device:GPU:0', device_type='GPU')] -Is the Tensor on GPU #0: -True - -``` - -### Device Names - -The [`Tensor.device`](https://tensorflow.google.cn/api_docs/python/tf/Tensor#device) property provides a fully qualified string name of the device hosting the contents of the tensor. This name encodes many details, such as an identifier of the network address of the host on which this program is executing and the device within that host. This is required for distributed execution of a TensorFlow program. The string ends with `GPU:` if the tensor is placed on the `N`-th GPU on the host. - -### Explicit Device Placement - -In TensorFlow, *placement* refers to how individual operations are assigned (placed on) a device for execution. As mentioned, when there is no explicit guidance provided, TensorFlow automatically decides which device to execute an operation and copies tensors to that device, if needed. However, TensorFlow operations can be explicitly placed on specific devices using the [`tf.device`](https://tensorflow.google.cn/api_docs/python/tf/device) context manager, for example: - -```py -import time - -def time_matmul(x): - start = time.time() - for loop in range(10): - tf.matmul(x, x) - - result = time.time()-start - - print("10 loops: {:0.2f}ms".format(1000*result)) - -# Force execution on CPU -print("On CPU:") -with tf.device("CPU:0"): - x = tf.random.uniform([1000, 1000]) - assert x.device.endswith("CPU:0") - time_matmul(x) - -# Force execution on GPU #0 if available -if tf.config.experimental.list_physical_devices("GPU"): - print("On GPU:") - with tf.device("GPU:0"): # Or GPU:1 for the 2nd GPU, GPU:2 for the 3rd etc. - x = tf.random.uniform([1000, 1000]) - assert x.device.endswith("GPU:0") - time_matmul(x) -``` - -```py -On CPU: -10 loops: 102.06ms -On GPU: -10 loops: 231.87ms - -``` - -## Datasets - -This section uses the [`tf.data.Dataset` API](https://tensorflow.google.cn/guide/datasets) to build a pipeline for feeding data to your model. The [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) API is used to build performant, complex input pipelines from simple, re-usable pieces that will feed your model's training or evaluation loops. - -### Create a source `Dataset` - -Create a *source* dataset using one of the factory functions like [`Dataset.from_tensors`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#from_tensors), [`Dataset.from_tensor_slices`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#from_tensor_slices), or using objects that read from files like [`TextLineDataset`](https://tensorflow.google.cn/api_docs/python/tf/data/TextLineDataset) or [`TFRecordDataset`](https://tensorflow.google.cn/api_docs/python/tf/data/TFRecordDataset). See the [TensorFlow Dataset guide](https://tensorflow.google.cn/guide/datasets#reading_input_data) for more information. - -```py -ds_tensors = tf.data.Dataset.from_tensor_slices([1, 2, 3, 4, 5, 6]) - -# Create a CSV file -import tempfile -_, filename = tempfile.mkstemp() - -with open(filename, 'w') as f: - f.write("""Line 1 -Line 2 -Line 3 - """) - -ds_file = tf.data.TextLineDataset(filename) -``` - -### Apply transformations - -Use the transformations functions like [`map`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#map), [`batch`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#batch), and [`shuffle`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#shuffle) to apply transformations to dataset records. - -```py -ds_tensors = ds_tensors.map(tf.square).shuffle(2).batch(2) - -ds_file = ds_file.batch(2) -``` - -### Iterate - -[`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) objects support iteration to loop over records: - -```py -print('Elements of ds_tensors:') -for x in ds_tensors: - print(x) - -print('\nElements in ds_file:') -for x in ds_file: - print(x) -``` - -```py -Elements of ds_tensors: -tf.Tensor([1 4], shape=(2,), dtype=int32) -tf.Tensor([16 9], shape=(2,), dtype=int32) -tf.Tensor([25 36], shape=(2,), dtype=int32) - -Elements in ds_file: -tf.Tensor([b'Line 1' b'Line 2'], shape=(2,), dtype=string) -tf.Tensor([b'Line 3' b' '], shape=(2,), dtype=string) - -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/031.md b/Tensorflow/TensorFlow2.0/031.md deleted file mode 100644 index ad82eb1b..00000000 --- a/Tensorflow/TensorFlow2.0/031.md +++ /dev/null @@ -1,308 +0,0 @@ -# Custom layers - -> 原文:[https://tensorflow.google.cn/tutorials/customization/custom_layers](https://tensorflow.google.cn/tutorials/customization/custom_layers) - -We recommend using [`tf.keras`](https://tensorflow.google.cn/api_docs/python/tf/keras) as a high-level API for building neural networks. That said, most TensorFlow APIs are usable with eager execution. - -```py -import tensorflow as tf -``` - -```py -print(tf.test.is_gpu_available()) -``` - -```py -WARNING:tensorflow:From :1: is_gpu_available (from tensorflow.python.framework.test_util) is deprecated and will be removed in a future version. -Instructions for updating: -Use `tf.config.list_physical_devices('GPU')` instead. -True - -``` - -## Layers: common sets of useful operations - -Most of the time when writing code for machine learning models you want to operate at a higher level of abstraction than individual operations and manipulation of individual variables. - -Many machine learning models are expressible as the composition and stacking of relatively simple layers, and TensorFlow provides both a set of many common layers as a well as easy ways for you to write your own application-specific layers either from scratch or as the composition of existing layers. - -TensorFlow includes the full [Keras](https://keras.io) API in the tf.keras package, and the Keras layers are very useful when building your own models. - -```py -# In the tf.keras.layers package, layers are objects. To construct a layer, -# simply construct the object. Most layers take as a first argument the number -# of output dimensions / channels. -layer = tf.keras.layers.Dense(100) -# The number of input dimensions is often unnecessary, as it can be inferred -# the first time the layer is used, but it can be provided if you want to -# specify it manually, which is useful in some complex models. -layer = tf.keras.layers.Dense(10, input_shape=(None, 5)) -``` - -The full list of pre-existing layers can be seen in [the documentation](https://tensorflow.google.cn/api_docs/python/tf/keras/layers). It includes Dense (a fully-connected layer), Conv2D, LSTM, BatchNormalization, Dropout, and many others. - -```py -# To use a layer, simply call it. -layer(tf.zeros([10, 5])) -``` - -```py - - -``` - -```py -# Layers have many useful methods. For example, you can inspect all variables -# in a layer using `layer.variables` and trainable variables using -# `layer.trainable_variables`. In this case a fully-connected layer -# will have variables for weights and biases. -layer.variables -``` - -```py -[, - ] - -``` - -```py -# The variables are also accessible through nice accessors -layer.kernel, layer.bias -``` - -```py -(, - ) - -``` - -## Implementing custom layers - -The best way to implement your own layer is extending the tf.keras.Layer class and implementing: - -1. `__init__` , where you can do all input-independent initialization -2. `build`, where you know the shapes of the input tensors and can do the rest of the initialization -3. `call`, where you do the forward computation - -Note that you don't have to wait until `build` is called to create your variables, you can also create them in `__init__`. However, the advantage of creating them in `build` is that it enables late variable creation based on the shape of the inputs the layer will operate on. On the other hand, creating variables in `__init__` would mean that shapes required to create the variables will need to be explicitly specified. - -```py -class MyDenseLayer(tf.keras.layers.Layer): - def __init__(self, num_outputs): - super(MyDenseLayer, self).__init__() - self.num_outputs = num_outputs - - def build(self, input_shape): - self.kernel = self.add_weight("kernel", - shape=[int(input_shape[-1]), - self.num_outputs]) - - def call(self, input): - return tf.matmul(input, self.kernel) - -layer = MyDenseLayer(10) -``` - -```py -_ = layer(tf.zeros([10, 5])) # Calling the layer `.builds` it. -``` - -```py -print([var.name for var in layer.trainable_variables]) -``` - -```py -['my_dense_layer/kernel:0'] - -``` - -Overall code is easier to read and maintain if it uses standard layers whenever possible, as other readers will be familiar with the behavior of standard layers. If you want to use a layer which is not present in [`tf.keras.layers`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers), consider filing a [github issue](http://github.com/tensorflow/tensorflow/issues/new) or, even better, sending us a pull request! - -## Models: Composing layers - -Many interesting layer-like things in machine learning models are implemented by composing existing layers. For example, each residual block in a resnet is a composition of convolutions, batch normalizations, and a shortcut. Layers can be nested inside other layers. - -Typically you inherit from [`keras.Model`](https://tensorflow.google.cn/api_docs/python/tf/keras/Model) when you need the model methods like: [`Model.fit`](https://tensorflow.google.cn/api_docs/python/tf/keras/Model#fit),[`Model.evaluate`](https://tensorflow.google.cn/api_docs/python/tf/keras/Model#evaluate), and [`Model.save`](https://tensorflow.google.cn/api_docs/python/tf/keras/Model#save) (see [Custom Keras layers and models](https://tensorflow.google.cn/guide/keras/custom_layers_and_models) for details). - -One other feature provided by [`keras.Model`](https://tensorflow.google.cn/api_docs/python/tf/keras/Model) (instead of [`keras.layers.Layer`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Layer)) is that in addition to tracking variables, a [`keras.Model`](https://tensorflow.google.cn/api_docs/python/tf/keras/Model) also tracks its internal layers, making them easier to inspect. - -For example here is a ResNet block: - -```py -class ResnetIdentityBlock(tf.keras.Model): - def __init__(self, kernel_size, filters): - super(ResnetIdentityBlock, self).__init__(name='') - filters1, filters2, filters3 = filters - - self.conv2a = tf.keras.layers.Conv2D(filters1, (1, 1)) - self.bn2a = tf.keras.layers.BatchNormalization() - - self.conv2b = tf.keras.layers.Conv2D(filters2, kernel_size, padding='same') - self.bn2b = tf.keras.layers.BatchNormalization() - - self.conv2c = tf.keras.layers.Conv2D(filters3, (1, 1)) - self.bn2c = tf.keras.layers.BatchNormalization() - - def call(self, input_tensor, training=False): - x = self.conv2a(input_tensor) - x = self.bn2a(x, training=training) - x = tf.nn.relu(x) - - x = self.conv2b(x) - x = self.bn2b(x, training=training) - x = tf.nn.relu(x) - - x = self.conv2c(x) - x = self.bn2c(x, training=training) - - x += input_tensor - return tf.nn.relu(x) - -block = ResnetIdentityBlock(1, [1, 2, 3]) -``` - -```py -_ = block(tf.zeros([1, 2, 3, 3])) -``` - -```py -block.layers -``` - -```py -[, - , - , - , - , - ] - -``` - -```py -len(block.variables) -``` - -```py -18 - -``` - -```py -block.summary() -``` - -```py -Model: "resnet_identity_block" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -conv2d (Conv2D) multiple 4 -_________________________________________________________________ -batch_normalization (BatchNo multiple 4 -_________________________________________________________________ -conv2d_1 (Conv2D) multiple 4 -_________________________________________________________________ -batch_normalization_1 (Batch multiple 8 -_________________________________________________________________ -conv2d_2 (Conv2D) multiple 9 -_________________________________________________________________ -batch_normalization_2 (Batch multiple 12 -================================================================= -Total params: 41 -Trainable params: 29 -Non-trainable params: 12 -_________________________________________________________________ - -``` - -Much of the time, however, models which compose many layers simply call one layer after the other. This can be done in very little code using [`tf.keras.Sequential`](https://tensorflow.google.cn/api_docs/python/tf/keras/Sequential): - -```py -my_seq = tf.keras.Sequential([tf.keras.layers.Conv2D(1, (1, 1), - input_shape=( - None, None, 3)), - tf.keras.layers.BatchNormalization(), - tf.keras.layers.Conv2D(2, 1, - padding='same'), - tf.keras.layers.BatchNormalization(), - tf.keras.layers.Conv2D(3, (1, 1)), - tf.keras.layers.BatchNormalization()]) -my_seq(tf.zeros([1, 2, 3, 3])) -``` - -```py - - -``` - -```py -my_seq.summary() -``` - -```py -Model: "sequential" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -conv2d_3 (Conv2D) (None, None, None, 1) 4 -_________________________________________________________________ -batch_normalization_3 (Batch (None, None, None, 1) 4 -_________________________________________________________________ -conv2d_4 (Conv2D) (None, None, None, 2) 4 -_________________________________________________________________ -batch_normalization_4 (Batch (None, None, None, 2) 8 -_________________________________________________________________ -conv2d_5 (Conv2D) (None, None, None, 3) 9 -_________________________________________________________________ -batch_normalization_5 (Batch (None, None, None, 3) 12 -================================================================= -Total params: 41 -Trainable params: 29 -Non-trainable params: 12 -_________________________________________________________________ - -``` - -# Next steps - -Now you can go back to the previous notebook and adapt the linear regression example to use layers and models to be better structured. \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/032.md b/Tensorflow/TensorFlow2.0/032.md deleted file mode 100644 index 6c37305c..00000000 --- a/Tensorflow/TensorFlow2.0/032.md +++ /dev/null @@ -1,626 +0,0 @@ -# 自定义训练: 演示 - -> 原文:[https://tensorflow.google.cn/tutorials/customization/custom_training_walkthrough](https://tensorflow.google.cn/tutorials/customization/custom_training_walkthrough) - -这个教程将利用机器学习的手段来对鸢尾花按照物种进行分类。本教程将利用 TensorFlow 来进行以下操作: - -1. 构建一个模型, -2. 用样例数据集对模型进行训练,以及 -3. 利用该模型对未知数据进行预测。 - -## TensorFlow 编程 - -本指南采用了以下高级 TensorFlow 概念: - -* 使用 TensorFlow 默认的 [eager execution](https://tensorflow.google.cn/guide/eager) 开发环境, -* 使用 [Datasets API](https://tensorflow.google.cn/guide/datasets) 导入数据, -* 使用 TensorFlow 的 [Keras API](https://keras.io/getting-started/sequential-model-guide/) 来构建各层以及整个模型。 - -本教程的结构同很多 TensorFlow 程序相似: - -1. 数据集的导入与解析 -2. 选择模型类型 -3. 对模型进行训练 -4. 评估模型效果 -5. 使用训练过的模型进行预测 - -## 环境的搭建 - -### 配置导入 - -导入 TensorFlow 以及其他需要的 Python 库。 默认情况下,TensorFlow 用 [eager execution](https://tensorflow.google.cn/guide/eager) 来实时评估操作, 返回具体值而不是建立一个稍后执行的[计算图](https://tensorflow.google.cn/guide/graphs)。 如果您习惯使用 REPL 或 python 交互控制台, 对此您会感觉得心应手。 - -```py -import os -import matplotlib.pyplot as plt -``` - -```py -import tensorflow as tf -``` - -```py -print("TensorFlow version: {}".format(tf.__version__)) -print("Eager execution: {}".format(tf.executing_eagerly())) -``` - -```py -TensorFlow version: 2.3.0 -Eager execution: True - -``` - -## 鸢尾花分类问题 - -想象一下,您是一名植物学家,正在寻找一种能够对所发现的每株鸢尾花进行自动归类的方法。机器学习可提供多种从统计学上分类花卉的算法。例如,一个复杂的机器学习程序可以根据照片对花卉进行分类。我们的要求并不高 - 我们将根据鸢尾花花萼和花瓣的长度和宽度对其进行分类。 - -鸢尾属约有 300 个品种,但我们的程序将仅对下列三个品种进行分类: - -* 山鸢尾 -* 维吉尼亚鸢尾 -* 变色鸢尾 - -| ![Petal geometry compared for three iris species: Iris setosa, Iris virginica, and Iris versicolor](img/bb63d10882d3aa9a631d3cf50ff7f21e.png) | -| **Figure 1.** [山鸢尾](https://commons.wikimedia.org/w/index.php?curid=170298) (by [Radomil](https://commons.wikimedia.org/wiki/User:Radomil), CC BY-SA 3.0), [变色鸢尾](https://commons.wikimedia.org/w/index.php?curid=248095), (by [Dlanglois](https://commons.wikimedia.org/wiki/User:Dlanglois), CC BY-SA 3.0), and [维吉尼亚鸢尾](https://www.flickr.com/photos/33397993@N05/3352169862) (by [Frank Mayfield](https://www.flickr.com/photos/33397993@N05), CC BY-SA 2.0). -  | - -幸运的是,有人已经创建了一个包含有花萼和花瓣的测量值的[120 株鸢尾花的数据集](https://en.wikipedia.org/wiki/Iris_flower_data_set)。这是一个在入门级机器学习分类问题中经常使用的经典数据集。 - -## 导入和解析训练数据集 - -下载数据集文件并将其转换为可供此 Python 程序使用的结构。 - -### 下载数据集 - -使用 [tf.keras.utils.get_file](https://tensorflow.google.cn/api_docs/python/tf/keras/utils/get_file) 函数下载训练数据集文件。该函数会返回下载文件的文件路径: - -```py -train_dataset_url = "https://storage.googleapis.com/download.tensorflow.org/data/iris_training.csv" - -train_dataset_fp = tf.keras.utils.get_file(fname=os.path.basename(train_dataset_url), - origin=train_dataset_url) - -print("Local copy of the dataset file: {}".format(train_dataset_fp)) -``` - -```py -Downloading data from https://storage.googleapis.com/download.tensorflow.org/data/iris_training.csv -8192/2194 [================================================================================================================] - 0s 0us/step -Local copy of the dataset file: /home/kbuilder/.keras/datasets/iris_training.csv - -``` - -### 检查数据 - -数据集 `iris_training.csv` 是一个纯文本文件,其中存储了逗号分隔值 (CSV) 格式的表格式数据.请使用 `head -n5` 命令查看前 5 个条目: - -```py -head -n5 {train_dataset_fp} - -``` - -```py -120,4,setosa,versicolor,virginica -6.4,2.8,5.6,2.2,2 -5.0,2.3,3.3,1.0,1 -4.9,2.5,4.5,1.7,2 -4.9,3.1,1.5,0.1,0 - -``` - -我们可以从该数据集视图中注意到以下信息: - -1. 第一行是表头,其中包含数据集信息: - -* 共有 120 个样本。每个样本都有四个特征和一个标签名称,标签名称有三种可能。 -* 后面的行是数据记录,每个[样本](https://developers.google.cn/machine-learning/glossary/#example)各占一行,其中: - * 前四个字段是[特征](https://developers.google.cn/machine-learning/glossary/#feature): 这四个字段代表的是样本的特点。在此数据集中,这些字段存储的是代表花卉测量值的浮点数。 - * 最后一列是[标签](https://developers.google.cn/machine-learning/glossary/#label):即我们想要预测的值。对于此数据集,该值为 0、1 或 2 中的某个整数值(每个值分别对应一个花卉名称)。 - -我们用代码表示出来: - -```py -# CSV 文件中列的顺序 -column_names = ['sepal_length', 'sepal_width', 'petal_length', 'petal_width', 'species'] - -feature_names = column_names[:-1] -label_name = column_names[-1] - -print("Features: {}".format(feature_names)) -print("Label: {}".format(label_name)) -``` - -```py -Features: ['sepal_length', 'sepal_width', 'petal_length', 'petal_width'] -Label: species - -``` - -每个标签都分别与一个字符串名称(例如 “setosa” )相关联,但机器学习通常依赖于数字值。标签编号会映射到一个指定的表示法,例如: - -* `0` : 山鸢尾 -* `1` : 变色鸢尾 -* `2` : 维吉尼亚鸢尾 - -如需详细了解特征和标签,请参阅 [《机器学习速成课程》的“机器学习术语”部分](https://developers.google.cn/machine-learning/crash-course/framing/ml-terminology). - -```py -class_names = ['Iris setosa', 'Iris versicolor', 'Iris virginica'] -``` - -### 创建一个 [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) - -TensorFlow 的 [Dataset API](https://tensorflow.google.cn/guide/datasets) 可处理在向模型加载数据时遇到的许多常见情况。这是一种高阶 API ,用于读取数据并将其转换为可供训练使用的格式。如需了解详情,请参阅[数据集快速入门指南](https://tensorflow.google.cn/get_started/datasets_quickstart) - -由于数据集是 CSV 格式的文本文件,请使用 [make_csv_dataset](https://tensorflow.google.cn/api_docs/python/tf/data/experimental/make_csv_dataset) 函数将数据解析为合适的格式。由于此函数为训练模型生成数据,默认行为是对数据进行随机处理 (`shuffle=True, shuffle_buffer_size=10000`),并且无限期重复数据集(`num_epochs=None`)。 我们还设置了 [batch_size](https://developers.google.cn/machine-learning/glossary/#batch_size) 参数: - -```py -batch_size = 32 - -train_dataset = tf.data.experimental.make_csv_dataset( - train_dataset_fp, - batch_size, - column_names=column_names, - label_name=label_name, - num_epochs=1) -``` - -`make_csv_dataset` 返回一个`(features, label)` 对构建的 [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) ,其中 `features` 是一个字典: `{'feature_name': value}` - -这些 `Dataset` 对象是可迭代的。 我们来看看下面的一些特征: - -```py -features, labels = next(iter(train_dataset)) - -print(features) -``` - -```py -OrderedDict([('sepal_length', ), ('sepal_width', ), ('petal_length', ), ('petal_width', )]) - -``` - -注意到具有相似特征的样本会归为一组,即分为一批。更改 `batch_size` 可以设置存储在这些特征数组中的样本数。 - -绘制该批次中的几个特征后,就会开始看到一些集群现象: - -```py -plt.scatter(features['petal_length'], - features['sepal_length'], - c=labels, - cmap='viridis') - -plt.xlabel("Petal length") -plt.ylabel("Sepal length") -plt.show() -``` - -![png](img/6396c35912fab965e30d9adf6c7c8981.png) - -要简化模型构建步骤,请创建一个函数以将特征字典重新打包为形状为 `(batch_size, num_features)` 的单个数组。 - -此函数使用 [tf.stack](https://tensorflow.google.cn/api_docs/python/tf/stack) 方法,该方法从张量列表中获取值,并创建指定维度的组合张量: - -```py -def pack_features_vector(features, labels): - """将特征打包到一个数组中""" - features = tf.stack(list(features.values()), axis=1) - return features, labels -``` - -然后使用 [tf.data.Dataset.map](https://tensorflow.google.cn/api_docs/python/tf/data/dataset/map) 方法将每个 `(features,label)` 对中的 `features` 打包到训练数据集中: - -```py -train_dataset = train_dataset.map(pack_features_vector) -``` - -`Dataset` 的特征元素被构成了形如 `(batch_size, num_features)` 的数组。我们来看看前几个样本: - -```py -features, labels = next(iter(train_dataset)) - -print(features[:5]) -``` - -```py -tf.Tensor( -[[5\. 3.5 1.3 0.3] - [4.8 3.1 1.6 0.2] - [6.3 2.7 4.9 1.8] - [7.4 2.8 6.1 1.9] - [5\. 3.2 1.2 0.2]], shape=(5, 4), dtype=float32) - -``` - -## 选择模型类型 - -### 为何要使用模型? - -[模型](https://developers.google.cn/machine-learning/crash-course/glossary#model)是指特征与标签之间的关系。对于鸢尾花分类问题,模型定义了花萼和花瓣测量值与预测的鸢尾花品种之间的关系。一些简单的模型可以用几行代数进行描述,但复杂的机器学习模型拥有大量难以汇总的参数。 - -您能否在不使用机器学习的情况下确定四个特征与鸢尾花品种之间的关系?也就是说,您能否使用传统编程技巧(例如大量条件语句)创建模型?也许能,前提是反复分析该数据集,并最终确定花瓣和花萼测量值与特定品种的关系。对于更复杂的数据集来说,这会变得非常困难,或许根本就做不到。一个好的机器学习方法可为您确定模型。如果您将足够多的代表性样本馈送到正确类型的机器学习模型中,该程序便会为您找出相应的关系。 - -### 选择模型 - -我们需要选择要进行训练的模型类型。模型具有许多类型,挑选合适的类型需要一定的经验。本教程使用神经网络来解决鸢尾花分类问题。[神经网络](https://developers.google.cn/machine-learning/glossary/#neural_network)可以发现特征与标签之间的复杂关系。神经网络是一个高度结构化的图,其中包含一个或多个[隐含层](https://developers.google.cn/machine-learning/glossary/#hidden_layer)。每个隐含层都包含一个或多个[神经元](https://developers.google.cn/machine-learning/glossary/#neuron)。 神经网络有多种类别,该程序使用的是密集型神经网络,也称为[全连接神经网络](https://developers.google.cn/machine-learning/glossary/#fully_connected_layer) : 一个层中的神经元将从上一层中的每个神经元获取输入连接。例如,图 2 显示了一个密集型神经网络,其中包含 1 个输入层、2 个隐藏层以及 1 个输出层: - -| ![网络结构示意图: 输入层, 2 隐含层, 输出层](img/d6c8610603858ddd864cc7f024f16e40.png) | -| **图 2.** 包含特征、隐藏层和预测的神经网络 -  | - -当图 2 中的模型经过训练并获得无标签样本后,它会产生 3 个预测结果:相应鸢尾花属于指定品种的可能性。这种预测称为[推理](https://developers.google.cn/machine-learning/crash-course/glossary#inference)。对于该示例,输出预测结果的总和是 1.0。在图 2 中,该预测结果分解如下:山鸢尾为 0.02,变色鸢尾为 0.95,维吉尼亚鸢尾为 0.03。这意味着该模型预测某个无标签鸢尾花样本是变色鸢尾的概率为 95%。 - -### 使用 Keras 创建模型 - -TensorFlow [tf.keras](https://tensorflow.google.cn/api_docs/python/tf/keras) API 是创建模型和层的首选方式。通过该 API,您可以轻松地构建模型并进行实验,而将所有部分连接在一起的复杂工作则由 Keras 处理。 - -[tf.keras.Sequential](https://tensorflow.google.cn/api_docs/python/tf/keras/Sequential) 模型是层的线性堆叠。该模型的构造函数会采用一系列层实例;在本示例中,采用的是 2 个[密集层](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Dense)(各自包含 10 个节点),以及 1 个输出层(包含 3 个代表标签预测的节点。第一个层的 `input_shape` 参数对应该数据集中的特征数量,它是一项必需参数: - -```py -model = tf.keras.Sequential([ - tf.keras.layers.Dense(10, activation=tf.nn.relu, input_shape=(4,)), # 需要给出输入的形式 - tf.keras.layers.Dense(10, activation=tf.nn.relu), - tf.keras.layers.Dense(3) -]) -``` - -[激活函数](https://developers.google.cn/machine-learning/crash-course/glossary#activation_function)可决定层中每个节点的输出形式。 这些非线性关系很重要,如果没有它们,模型将等同于单个层。[激活函数](https://tensorflow.google.cn/api_docs/python/tf/keras/activations)有很多种,但隐藏层通常使用 [ReLU](https://developers.google.cn/machine-learning/crash-course/glossary#ReLU)。 - -隐藏层和神经元的理想数量取决于问题和数据集。与机器学习的多个方面一样,选择最佳的神经网络形状需要一定的知识水平和实验基础。一般来说,增加隐藏层和神经元的数量通常会产生更强大的模型,而这需要更多数据才能有效地进行训练。 - -### 使用模型 - -我们快速了解一下此模型如何处理一批特征: - -```py -predictions = model(features) -predictions[:5] -``` - -```py - - -``` - -在此示例中,每个样本针对每个类别返回一个 [logit](https://developers.google.cn/machine-learning/crash-course/glossary#logits)。 - -要将这些对数转换为每个类别的概率,请使用 [softmax](https://developers.google.cn/machine-learning/crash-course/glossary#softmax) 函数: - -```py -tf.nn.softmax(predictions[:5]) -``` - -```py - - -``` - -对每个类别执行 [`tf.argmax`](https://tensorflow.google.cn/api_docs/python/tf/math/argmax) 运算可得出预测的类别索引。不过,该模型尚未接受训练,因此这些预测并不理想。 - -```py -print("Prediction: {}".format(tf.argmax(predictions, axis=1))) -print(" Labels: {}".format(labels)) -``` - -```py -Prediction: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] - Labels: [0 0 2 2 0 2 0 1 0 0 1 1 0 1 0 0 2 2 1 1 0 2 2 0 0 2 1 0 0 0 2 2] - -``` - -## 训练模型 - -[训练](https://developers.google.cn/machine-learning/crash-course/glossary#training) 是一个机器学习阶段,在此阶段中,模型会逐渐得到优化,也就是说,模型会了解数据集。目标是充分了解训练数据集的结构,以便对未见过的数据进行预测。如果您从训练数据集中获得了过多的信息,预测便会仅适用于模型见过的数据,但是无法泛化。此问题被称之为[过拟合](https://developers.google.cn/machine-learning/crash-course/glossary#overfitting)—就好比将答案死记硬背下来,而不去理解问题的解决方式。 - -鸢尾花分类问题是[监督式机器学习](https://developers.google.cn/machine-learning/glossary/#supervised_machine_learning)的一个示例: 模型通过包含标签的样本加以训练。 而在[非监督式机器学习](https://developers.google.cn/machine-learning/glossary/#unsupervised_machine_learning)中,样本不包含标签。相反,模型通常会在特征中发现一些规律。 - -### 定义损失和梯度函数 - -在训练和评估阶段,我们都需要计算模型的[损失](https://developers.google.cn/machine-learning/crash-course/glossary#loss)。 这样可以衡量模型的预测结果与预期标签有多大偏差,也就是说,模型的效果有多差。我们希望尽可能减小或优化这个值。 - -我们的模型会使用 [`tf.keras.losses.SparseCategoricalCrossentropy`](https://tensorflow.google.cn/api_docs/python/tf/keras/losses/SparseCategoricalCrossentropy) 函数计算其损失,此函数会接受模型的类别概率预测结果和预期标签,然后返回样本的平均损失。 - -```py -loss_object = tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True) -``` - -```py -def loss(model, x, y): - y_ = model(x) - - return loss_object(y_true=y, y_pred=y_) - -l = loss(model, features, labels) -print("Loss test: {}".format(l)) -``` - -```py -Loss test: 1.6707830429077148 - -``` - -使用 [tf.GradientTape](https://tensorflow.google.cn/api_docs/python/tf/GradientTape) 的前后关系来计算[梯度](https://developers.google.cn/machine-learning/crash-course/glossary#gradient)以优化你的模型: - -```py -def grad(model, inputs, targets): - with tf.GradientTape() as tape: - loss_value = loss(model, inputs, targets) - return loss_value, tape.gradient(loss_value, model.trainable_variables) -``` - -### 创建优化器 - -[优化器](https://developers.google.cn/machine-learning/crash-course/glossary#optimizer) 会将计算出的梯度应用于模型的变量,以使 `loss` 函数最小化。您可以将损失函数想象为一个曲面(见图 3),我们希望通过到处走动找到该曲面的最低点。梯度指向最高速上升的方向,因此我们将沿相反的方向向下移动。我们以迭代方式计算每个批次的损失和梯度,以在训练过程中调整模型。模型会逐渐找到权重和偏差的最佳组合,从而将损失降至最低。损失越低,模型的预测效果就越好。 - -| ![Optimization algorithms visualized over time in 3D space.](img/fb0bdd5ec0ad3a81aa686b46a6fa16d7.png) | -| **图 3.** 优化算法在三维空间中随时间推移而变化的可视化效果。 -(来源: [斯坦福大学 CS231n 课程](http://cs231n.github.io/neural-networks-3/),MIT 许可证,Image credit: [Alec Radford](https://twitter.com/alecrad)) | - -TensorFlow 有许多可用于训练的[优化算法](https://tensorflow.google.cn/api_guides/python/train)。此模型使用的是 [tf.train.GradientDescentOptimizer](https://tensorflow.google.cn/api_docs/python/tf/train/GradientDescentOptimizer) , 它可以实现[随机梯度下降法](https://developers.google.cn/machine-learning/crash-course/glossary#gradient_descent)(SGD)。`learning_rate` 被用于设置每次迭代(向下行走)的步长。 这是一个 *超参数* ,您通常需要调整此参数以获得更好的结果。 - -我们来设置优化器: - -```py -optimizer = tf.keras.optimizers.Adam(learning_rate=0.01) -``` - -我们将使用它来计算单个优化步骤: - -```py -loss_value, grads = grad(model, features, labels) - -print("Step: {}, Initial Loss: {}".format(optimizer.iterations.numpy(), - loss_value.numpy())) - -optimizer.apply_gradients(zip(grads, model.trainable_variables)) - -print("Step: {}, Loss: {}".format(optimizer.iterations.numpy(), - loss(model, features, labels).numpy())) -``` - -```py -Step: 0, Initial Loss: 1.6707830429077148 -Step: 1, Loss: 1.447718620300293 - -``` - -### 训练循环 - -一切准备就绪后,就可以开始训练模型了!训练循环会将数据集样本馈送到模型中,以帮助模型做出更好的预测。以下代码块可设置这些训练步骤: - -1. 迭代每个周期。通过一次数据集即为一个周期。 -2. 在一个周期中,遍历训练 `Dataset` 中的每个样本,并获取样本的*特征*(`x`)和*标签*(`y`)。 -3. 根据样本的特征进行预测,并比较预测结果和标签。衡量预测结果的不准确性,并使用所得的值计算模型的损失和梯度。 -4. 使用 `optimizer` 更新模型的变量。 -5. 跟踪一些统计信息以进行可视化。 -6. 对每个周期重复执行以上步骤。 - -`num_epochs` 变量是遍历数据集集合的次数。与直觉恰恰相反的是,训练模型的时间越长,并不能保证模型就越好。`num_epochs` 是一个可以调整的[超参数](https://developers.google.cn/machine-learning/glossary/#hyperparameter)。选择正确的次数通常需要一定的经验和实验基础。 - -```py -## Note: 使用相同的模型变量重新运行此单元 - -# 保留结果用于绘制 -train_loss_results = [] -train_accuracy_results = [] - -num_epochs = 201 - -for epoch in range(num_epochs): - epoch_loss_avg = tf.keras.metrics.Mean() - epoch_accuracy = tf.keras.metrics.SparseCategoricalAccuracy() - - # Training loop - using batches of 32 - for x, y in train_dataset: - # 优化模型 - loss_value, grads = grad(model, x, y) - optimizer.apply_gradients(zip(grads, model.trainable_variables)) - - # 追踪进度 - epoch_loss_avg(loss_value) # 添加当前的 batch loss - # 比较预测标签与真实标签 - epoch_accuracy(y, model(x)) - - # 循环结束 - train_loss_results.append(epoch_loss_avg.result()) - train_accuracy_results.append(epoch_accuracy.result()) - - if epoch % 50 == 0: - print("Epoch {:03d}: Loss: {:.3f}, Accuracy: {:.3%}".format(epoch, - epoch_loss_avg.result(), - epoch_accuracy.result())) -``` - -```py -Epoch 000: Loss: 1.470, Accuracy: 35.833% -Epoch 050: Loss: 0.112, Accuracy: 96.667% -Epoch 100: Loss: 0.055, Accuracy: 98.333% -Epoch 150: Loss: 0.065, Accuracy: 98.333% -Epoch 200: Loss: 0.053, Accuracy: 98.333% - -``` - -### 可视化损失函数随时间推移而变化的情况 - -虽然输出模型的训练过程有帮助,但查看这一过程往往*更有帮助*。 [TensorBoard](https://tensorflow.google.cn/guide/summaries_and_tensorboard) 是与 TensorFlow 封装在一起的出色可视化工具,不过我们可以使用 `matplotlib` 模块创建基本图表。 - -解读这些图表需要一定的经验,不过您确实希望看到*损失*下降且*准确率*上升。 - -```py -fig, axes = plt.subplots(2, sharex=True, figsize=(12, 8)) -fig.suptitle('Training Metrics') - -axes[0].set_ylabel("Loss", fontsize=14) -axes[0].plot(train_loss_results) - -axes[1].set_ylabel("Accuracy", fontsize=14) -axes[1].set_xlabel("Epoch", fontsize=14) -axes[1].plot(train_accuracy_results) -plt.show() -``` - -![png](img/4123df32a452f5e3727c6372cf1fa755.png) - -## 评估模型的效果 - -模型已经过训练,现在我们可以获取一些关于其效果的统计信息了。 - -*评估* 指的是确定模型做出预测的效果。要确定模型在鸢尾花分类方面的效果,请将一些花萼和花瓣测量值传递给模型,并要求模型预测它们所代表的鸢尾花品种。然后,将模型的预测结果与实际标签进行比较。例如,如果模型对一半输入样本的品种预测正确,则 [准确率](https://developers.google.cn/machine-learning/glossary/#accuracy) 为 `0.5` 。 图 4 显示的是一个效果更好一些的模型,该模型做出 5 次预测,其中有 4 次正确,准确率为 80%: - - -| 样本特征 | 标签 | 模型预测 | -| 5.9 | 3.0 | 4.3 | 1.5 | 1 | 1 | -| 6.9 | 3.1 | 5.4 | 2.1 | 2 | 2 | -| 5.1 | 3.3 | 1.7 | 0.5 | 0 | 0 | -| 6.0 | 3.4 | 4.5 | 1.6 | 1 | 2 | -| 5.5 | 2.5 | 4.0 | 1.3 | 1 | 1 | -| **图 4.** 准确率为 80% 的鸢尾花分类器 -  | - -### 建立测试数据集 - -评估模型与训练模型相似。最大的区别在于,样本来自一个单独的[测试集](https://developers.google.cn/machine-learning/crash-course/glossary#test_set),而不是训练集。为了公正地评估模型的效果,用于评估模型的样本务必与用于训练模型的样本不同。 - -测试 `Dataset` 的建立与训练 `Dataset` 相似。下载 CSV 文本文件并解析相应的值,然后对数据稍加随机化处理: - -```py -test_url = "https://storage.googleapis.com/download.tensorflow.org/data/iris_test.csv" - -test_fp = tf.keras.utils.get_file(fname=os.path.basename(test_url), - origin=test_url) -``` - -```py -Downloading data from https://storage.googleapis.com/download.tensorflow.org/data/iris_test.csv -8192/573 [============================================================================================================================================================================================================================================================================================================================================================================================================================================] - 0s 0us/step - -``` - -```py -test_dataset = tf.data.experimental.make_csv_dataset( - test_fp, - batch_size, - column_names=column_names, - label_name='species', - num_epochs=1, - shuffle=False) - -test_dataset = test_dataset.map(pack_features_vector) -``` - -### 根据测试数据集评估模型 - -与训练阶段不同,模型仅评估测试数据的一个[周期](https://developers.google.cn/machine-learning/glossary/#epoch)。在以下代码单元格中,我们会遍历测试集中的每个样本,然后将模型的预测结果与实际标签进行比较。这是为了衡量模型在整个测试集中的准确率。 - -```py -test_accuracy = tf.keras.metrics.Accuracy() - -for (x, y) in test_dataset: - logits = model(x) - prediction = tf.argmax(logits, axis=1, output_type=tf.int32) - test_accuracy(prediction, y) - -print("Test set accuracy: {:.3%}".format(test_accuracy.result())) -``` - -```py -Test set accuracy: 96.667% - -``` - -例如,我们可以看到对于最后一批数据,该模型通常预测正确: - -```py -tf.stack([y,prediction],axis=1) -``` - -```py - - -``` - -## 使用经过训练的模型进行预测 - -我们已经训练了一个模型并“证明”它是有效的,但在对鸢尾花品种进行分类方面,这还不够。现在,我们使用经过训练的模型对 [无标签样本](https://developers.google.cn/machine-learning/glossary/#unlabeled_example)(即包含特征但不包含标签的样本)进行一些预测。 - -在现实生活中,无标签样本可能来自很多不同的来源,包括应用、CSV 文件和数据 Feed。暂时我们将手动提供三个无标签样本以预测其标签。回想一下,标签编号会映射到一个指定的表示法: - -* `0`: 山鸢尾 -* `1`: 变色鸢尾 -* `2`: 维吉尼亚鸢尾 - -```py -predict_dataset = tf.convert_to_tensor([ - [5.1, 3.3, 1.7, 0.5,], - [5.9, 3.0, 4.2, 1.5,], - [6.9, 3.1, 5.4, 2.1] -]) - -predictions = model(predict_dataset) - -for i, logits in enumerate(predictions): - class_idx = tf.argmax(logits).numpy() - p = tf.nn.softmax(logits)[class_idx] - name = class_names[class_idx] - print("Example {} prediction: {} ({:4.1f}%)".format(i, name, 100*p)) -``` - -```py -Example 0 prediction: Iris setosa (99.9%) -Example 1 prediction: Iris versicolor (99.8%) -Example 2 prediction: Iris virginica (99.6%) - -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/033.md b/Tensorflow/TensorFlow2.0/033.md deleted file mode 100644 index dc3921ef..00000000 --- a/Tensorflow/TensorFlow2.0/033.md +++ /dev/null @@ -1 +0,0 @@ -# 分布式训练 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/034.md b/Tensorflow/TensorFlow2.0/034.md deleted file mode 100644 index acc35f3b..00000000 --- a/Tensorflow/TensorFlow2.0/034.md +++ /dev/null @@ -1,450 +0,0 @@ -# Keras 的分布式训练 - -> 原文:[https://tensorflow.google.cn/tutorials/distribute/keras](https://tensorflow.google.cn/tutorials/distribute/keras) - - - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -## 概述 - -[`tf.distribute.Strategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy) API 提供了一个抽象的 API ,用于跨多个处理单元(processing units)分布式训练。它的目的是允许用户使用现有模型和训练代码,只需要很少的修改,就可以启用分布式训练。 - -本教程使用 [`tf.distribute.MirroredStrategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/MirroredStrategy),这是在一台计算机上的多 GPU(单机多卡)进行同时训练的图形内复制(in-graph replication)。事实上,它会将所有模型的变量复制到每个处理器上,然后,通过使用 [all-reduce](http://mpitutorial.com/tutorials/mpi-reduce-and-allreduce/) 去整合所有处理器的梯度(gradients),并将整合的结果应用于所有副本之中。 - -`MirroredStategy` 是 tensorflow 中可用的几种分发策略之一。 您可以在 [分发策略指南](https://tensorflow.google.cn/guide/distribute_strategy) 中阅读更多分发策略。 - -### Keras API - -这个例子使用 [`tf.keras`](https://tensorflow.google.cn/api_docs/python/tf/keras) API 去构建和训练模型。 关于自定义训练模型,请参阅 [tf.distribute.Strategy with training loops](/tutorials/distribute/training_loops) 教程。 - -## 导入依赖 - -```py -# 导入 TensorFlow 和 TensorFlow 数据集 - -import tensorflow_datasets as tfds -import tensorflow as tf -tfds.disable_progress_bar() - -import os -``` - -```py -print(tf.__version__) -``` - -```py -2.3.0 - -``` - -## 下载数据集 - -下载 MNIST 数据集并从 [TensorFlow Datasets](https://tensorflow.google.cn/datasets) 加载。 这会返回 [`tf.data`](https://tensorflow.google.cn/api_docs/python/tf/data) 格式的数据集。 - -将 `with_info` 设置为 `True` 会包含整个数据集的元数据,其中这些数据集将保存在 `info` 中。 除此之外,该元数据对象包括训练和测试示例的数量。 - -```py -datasets, info = tfds.load(name='mnist', with_info=True, as_supervised=True) - -mnist_train, mnist_test = datasets['train'], datasets['test'] -``` - -## 定义分配策略 - -创建一个 `MirroredStrategy` 对象。这将处理分配策略,并提供一个上下文管理器([`tf.distribute.MirroredStrategy.scope`](https://tensorflow.google.cn/api_docs/python/tf/distribute/MirroredStrategy#scope))来构建你的模型。 - -```py -strategy = tf.distribute.MirroredStrategy() -``` - -```py -INFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:GPU:0',) - -INFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:GPU:0',) - -``` - -```py -print('Number of devices: {}'.format(strategy.num_replicas_in_sync)) -``` - -```py -Number of devices: 1 - -``` - -## 设置输入管道(pipeline) - -在训练具有多个 GPU 的模型时,您可以通过增加批量大小(batch size)来有效地使用额外的计算能力。通常来说,使用适合 GPU 内存的最大批量大小(batch size),并相应地调整学习速率。 - -```py -# 您还可以执行 info.splits.total_num_examples 来获取总数 -# 数据集中的样例数量。 - -num_train_examples = info.splits['train'].num_examples -num_test_examples = info.splits['test'].num_examples - -BUFFER_SIZE = 10000 - -BATCH_SIZE_PER_REPLICA = 64 -BATCH_SIZE = BATCH_SIZE_PER_REPLICA * strategy.num_replicas_in_sync -``` - -0-255 的像素值, [必须标准化到 0-1 范围](https://en.wikipedia.org/wiki/Feature_scaling)。在函数中定义标准化。 - -```py -def scale(image, label): - image = tf.cast(image, tf.float32) - image /= 255 - - return image, label -``` - -将此功能应用于训练和测试数据,随机打乱训练数据,并[批量训练](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#batch)。 请注意,我们还保留了训练数据的内存缓存以提高性能。 - -```py -train_dataset = mnist_train.map(scale).cache().shuffle(BUFFER_SIZE).batch(BATCH_SIZE) -eval_dataset = mnist_test.map(scale).batch(BATCH_SIZE) -``` - -## 生成模型 - -在 `strategy.scope` 的上下文中创建和编译 Keras 模型。 - -```py -with strategy.scope(): - model = tf.keras.Sequential([ - tf.keras.layers.Conv2D(32, 3, activation='relu', input_shape=(28, 28, 1)), - tf.keras.layers.MaxPooling2D(), - tf.keras.layers.Flatten(), - tf.keras.layers.Dense(64, activation='relu'), - tf.keras.layers.Dense(10) - ]) - - model.compile(loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True), - optimizer=tf.keras.optimizers.Adam(), - metrics=['accuracy']) -``` - -## 定义回调(callback) - -这里使用的回调(callbacks)是: - -* *TensorBoard*: 此回调(callbacks)为 TensorBoard 写入日志,允许您可视化图形。 -* *Model Checkpoint*: 此回调(callbacks)在每个 epoch 后保存模型。 -* *Learning Rate Scheduler*: 使用此回调(callbacks),您可以安排学习率在每个 epoch/batch 之后更改。 - -为了便于说明,添加打印回调(callbacks)以在笔记本中显示*学习率*。 - -```py -# 定义检查点(checkpoint)目录以存储检查点(checkpoints) - -checkpoint_dir = './training_checkpoints' -# 检查点(checkpoint)文件的名称 -checkpoint_prefix = os.path.join(checkpoint_dir, "ckpt_{epoch}") -``` - -```py -# 衰减学习率的函数。 -# 您可以定义所需的任何衰减函数。 -def decay(epoch): - if epoch < 3: - return 1e-3 - elif epoch >= 3 and epoch < 7: - return 1e-4 - else: - return 1e-5 -``` - -```py -# 在每个 epoch 结束时打印 LR 的回调(callbacks)。 -class PrintLR(tf.keras.callbacks.Callback): - def on_epoch_end(self, epoch, logs=None): - print('\nLearning rate for epoch {} is {}'.format(epoch + 1, - model.optimizer.lr.numpy())) -``` - -```py -callbacks = [ - tf.keras.callbacks.TensorBoard(log_dir='./logs'), - tf.keras.callbacks.ModelCheckpoint(filepath=checkpoint_prefix, - save_weights_only=True), - tf.keras.callbacks.LearningRateScheduler(decay), - PrintLR() -] -``` - -## 训练和评估 - -在该部分,以普通的方式训练模型,在模型上调用 `fit` 并传入在教程开始时创建的数据集。 无论您是否分布式训练,此步骤都是相同的。 - -```py -model.fit(train_dataset, epochs=12, callbacks=callbacks) -``` - -```py -Epoch 1/12 -WARNING:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/data/ops/multi_device_iterator_ops.py:601: get_next_as_optional (from tensorflow.python.data.ops.iterator_ops) is deprecated and will be removed in a future version. -Instructions for updating: -Use `tf.data.Iterator.get_next_as_optional()` instead. - -Warning:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/data/ops/multi_device_iterator_ops.py:601: get_next_as_optional (from tensorflow.python.data.ops.iterator_ops) is deprecated and will be removed in a future version. -Instructions for updating: -Use `tf.data.Iterator.get_next_as_optional()` instead. - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - - 1/938 [..............................] - ETA: 0s - loss: 2.3194 - accuracy: 0.0938WARNING:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/ops/summary_ops_v2.py:1277: stop (from tensorflow.python.eager.profiler) is deprecated and will be removed after 2020-07-01. -Instructions for updating: -use `tf.profiler.experimental.stop` instead. - -Warning:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/ops/summary_ops_v2.py:1277: stop (from tensorflow.python.eager.profiler) is deprecated and will be removed after 2020-07-01. -Instructions for updating: -use `tf.profiler.experimental.stop` instead. - -Warning:tensorflow:Callbacks method `on_train_batch_end` is slow compared to the batch time (batch time: 0.0046s vs `on_train_batch_end` time: 0.0296s). Check your callbacks. - -Warning:tensorflow:Callbacks method `on_train_batch_end` is slow compared to the batch time (batch time: 0.0046s vs `on_train_batch_end` time: 0.0296s). Check your callbacks. - -932/938 [============================>.] - ETA: 0s - loss: 0.2055 - accuracy: 0.9422 -Learning rate for epoch 1 is 0.0010000000474974513 -938/938 [==============================] - 4s 5ms/step - loss: 0.2049 - accuracy: 0.9424 -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -Epoch 2/12 -922/938 [============================>.] - ETA: 0s - loss: 0.0681 - accuracy: 0.9797 -Learning rate for epoch 2 is 0.0010000000474974513 -938/938 [==============================] - 3s 3ms/step - loss: 0.0680 - accuracy: 0.9798 -Epoch 3/12 -930/938 [============================>.] - ETA: 0s - loss: 0.0484 - accuracy: 0.9855 -Learning rate for epoch 3 is 0.0010000000474974513 -938/938 [==============================] - 3s 3ms/step - loss: 0.0484 - accuracy: 0.9855 -Epoch 4/12 -920/938 [============================>.] - ETA: 0s - loss: 0.0277 - accuracy: 0.9925 -Learning rate for epoch 4 is 9.999999747378752e-05 -938/938 [==============================] - 3s 3ms/step - loss: 0.0276 - accuracy: 0.9926 -Epoch 5/12 -931/938 [============================>.] - ETA: 0s - loss: 0.0248 - accuracy: 0.9935 -Learning rate for epoch 5 is 9.999999747378752e-05 -938/938 [==============================] - 3s 3ms/step - loss: 0.0247 - accuracy: 0.9936 -Epoch 6/12 -931/938 [============================>.] - ETA: 0s - loss: 0.0231 - accuracy: 0.9938 -Learning rate for epoch 6 is 9.999999747378752e-05 -938/938 [==============================] - 3s 3ms/step - loss: 0.0230 - accuracy: 0.9938 -Epoch 7/12 -936/938 [============================>.] - ETA: 0s - loss: 0.0217 - accuracy: 0.9941 -Learning rate for epoch 7 is 9.999999747378752e-05 -938/938 [==============================] - 3s 3ms/step - loss: 0.0216 - accuracy: 0.9941 -Epoch 8/12 -932/938 [============================>.] - ETA: 0s - loss: 0.0189 - accuracy: 0.9952 -Learning rate for epoch 8 is 9.999999747378752e-06 -938/938 [==============================] - 3s 3ms/step - loss: 0.0189 - accuracy: 0.9952 -Epoch 9/12 -932/938 [============================>.] - ETA: 0s - loss: 0.0188 - accuracy: 0.9953 -Learning rate for epoch 9 is 9.999999747378752e-06 -938/938 [==============================] - 3s 3ms/step - loss: 0.0187 - accuracy: 0.9953 -Epoch 10/12 -932/938 [============================>.] - ETA: 0s - loss: 0.0185 - accuracy: 0.9953 -Learning rate for epoch 10 is 9.999999747378752e-06 -938/938 [==============================] - 3s 3ms/step - loss: 0.0185 - accuracy: 0.9953 -Epoch 11/12 -934/938 [============================>.] - ETA: 0s - loss: 0.0183 - accuracy: 0.9953 -Learning rate for epoch 11 is 9.999999747378752e-06 -938/938 [==============================] - 3s 3ms/step - loss: 0.0184 - accuracy: 0.9953 -Epoch 12/12 -931/938 [============================>.] - ETA: 0s - loss: 0.0183 - accuracy: 0.9954 -Learning rate for epoch 12 is 9.999999747378752e-06 -938/938 [==============================] - 3s 3ms/step - loss: 0.0182 - accuracy: 0.9955 - - - -``` - -如下所示,检查点(checkpoint)将被保存。 - -```py -# 检查检查点(checkpoint)目录 -ls {checkpoint_dir} - -``` - -```py -checkpoint ckpt_4.data-00000-of-00001 -ckpt_1.data-00000-of-00001 ckpt_4.index -ckpt_1.index ckpt_5.data-00000-of-00001 -ckpt_10.data-00000-of-00001 ckpt_5.index -ckpt_10.index ckpt_6.data-00000-of-00001 -ckpt_11.data-00000-of-00001 ckpt_6.index -ckpt_11.index ckpt_7.data-00000-of-00001 -ckpt_12.data-00000-of-00001 ckpt_7.index -ckpt_12.index ckpt_8.data-00000-of-00001 -ckpt_2.data-00000-of-00001 ckpt_8.index -ckpt_2.index ckpt_9.data-00000-of-00001 -ckpt_3.data-00000-of-00001 ckpt_9.index -ckpt_3.index - -``` - -要查看模型的执行方式,请加载最新的检查点(checkpoint)并在测试数据上调用 `evaluate` 。 - -使用适当的数据集调用 `evaluate` 。 - -```py -model.load_weights(tf.train.latest_checkpoint(checkpoint_dir)) - -eval_loss, eval_acc = model.evaluate(eval_dataset) - -print('Eval loss: {}, Eval Accuracy: {}'.format(eval_loss, eval_acc)) -``` - -```py -157/157 [==============================] - 1s 6ms/step - loss: 0.0399 - accuracy: 0.9861 -Eval loss: 0.03988004848361015, Eval Accuracy: 0.9861000180244446 - -``` - -要查看输出,您可以在终端下载并查看 TensorBoard 日志。 - -```py -$ tensorboard --logdir=path/to/log-directory -``` - -```py -ls -sh ./logs - -``` - -```py -total 4.0K -4.0K train - -``` - -## 导出到 SavedModel - -将图形和变量导出为与平台无关的 SavedModel 格式。 保存模型后,可以在有或没有 scope 的情况下加载模型。 - -```py -path = 'saved_model/' -``` - -```py -model.save(path, save_format='tf') -``` - -```py -WARNING:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/training/tracking/tracking.py:111: Model.state_updates (from tensorflow.python.keras.engine.training) is deprecated and will be removed in a future version. -Instructions for updating: -This property should not be used in TensorFlow 2.0, as updates are applied automatically. - -Warning:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/training/tracking/tracking.py:111: Model.state_updates (from tensorflow.python.keras.engine.training) is deprecated and will be removed in a future version. -Instructions for updating: -This property should not be used in TensorFlow 2.0, as updates are applied automatically. - -Warning:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/training/tracking/tracking.py:111: Layer.updates (from tensorflow.python.keras.engine.base_layer) is deprecated and will be removed in a future version. -Instructions for updating: -This property should not be used in TensorFlow 2.0, as updates are applied automatically. - -Warning:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/training/tracking/tracking.py:111: Layer.updates (from tensorflow.python.keras.engine.base_layer) is deprecated and will be removed in a future version. -Instructions for updating: -This property should not be used in TensorFlow 2.0, as updates are applied automatically. - -INFO:tensorflow:Assets written to: saved_model/assets - -INFO:tensorflow:Assets written to: saved_model/assets - -``` - -在无需 `strategy.scope` 加载模型。 - -```py -unreplicated_model = tf.keras.models.load_model(path) - -unreplicated_model.compile( - loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True), - optimizer=tf.keras.optimizers.Adam(), - metrics=['accuracy']) - -eval_loss, eval_acc = unreplicated_model.evaluate(eval_dataset) - -print('Eval loss: {}, Eval Accuracy: {}'.format(eval_loss, eval_acc)) -``` - -```py -157/157 [==============================] - 1s 3ms/step - loss: 0.0399 - accuracy: 0.9861 -Eval loss: 0.03988004848361015, Eval Accuracy: 0.9861000180244446 - -``` - -在含 `strategy.scope` 加载模型。 - -```py -with strategy.scope(): - replicated_model = tf.keras.models.load_model(path) - replicated_model.compile(loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True), - optimizer=tf.keras.optimizers.Adam(), - metrics=['accuracy']) - - eval_loss, eval_acc = replicated_model.evaluate(eval_dataset) - print ('Eval loss: {}, Eval Accuracy: {}'.format(eval_loss, eval_acc)) -``` - -```py -157/157 [==============================] - 1s 5ms/step - loss: 0.0399 - accuracy: 0.9861 -Eval loss: 0.03988004848361015, Eval Accuracy: 0.9861000180244446 - -``` - -### 示例和教程 - -以下是使用 keras fit/compile 分布式策略的一些示例: - -1. 使用[`tf.distribute.MirroredStrategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/MirroredStrategy) 训练 [Transformer](https://github.com/tensorflow/models/blob/master/official/nlp/transformer/transformer_main.py) 的示例。 -2. 使用[`tf.distribute.MirroredStrategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/MirroredStrategy) 训练 [NCF](https://github.com/tensorflow/models/blob/master/official/recommendation/ncf_keras_main.py) 的示例。 - -[分布式策略指南](https://tensorflow.google.cn/guide/distribute_strategy#examples_and_tutorials)中列出的更多示例 - -## 下一步 - -* 阅读[分布式策略指南](https://tensorflow.google.cn/guide/distribute_strategy)。 -* 阅读[自定义训练的分布式训练](/tutorials/distribute/training_loops)教程。 - -注意:[`tf.distribute.Strategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy) 正在积极开发中,我们将在不久的将来添加更多示例和教程。欢迎您进行尝试。我们欢迎您通过 [GitHub 上的 issue](https://github.com/tensorflow/tensorflow/issues/new) 提供反馈。 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/035.md b/Tensorflow/TensorFlow2.0/035.md deleted file mode 100644 index 8534fb4a..00000000 --- a/Tensorflow/TensorFlow2.0/035.md +++ /dev/null @@ -1,447 +0,0 @@ -# 使用 tf.distribute.Strategy 进行自定义训练 - -> 原文:[https://tensorflow.google.cn/tutorials/distribute/custom_training](https://tensorflow.google.cn/tutorials/distribute/custom_training) - -本教程演示了如何使用 [`tf.distribute.Strategy`](https://tensorflow.google.cn/guide/distribute_strategy) 来进行自定义训练循环。 我们将在流行的 MNIST 数据集上训练一个简单的 CNN 模型。 流行的 MNIST 数据集包含了 60000 张尺寸为 28 x 28 的训练图像和 10000 张尺寸为 28 x 28 的测试图像。 - -我们用自定义训练循环来训练我们的模型是因为它们在训练的过程中为我们提供了灵活性和在训练过程中更好的控制。而且,使它们调试模型和训练循环的时候更容易。 - -```py -# 导入 TensorFlow -import tensorflow as tf - -# 帮助库 -import numpy as np -import os - -print(tf.__version__) -``` - -```py -2.3.0 - -``` - -## 下载流行的 MNIST 数据集 - -```py -fashion_mnist = tf.keras.datasets.fashion_mnist - -(train_images, train_labels), (test_images, test_labels) = fashion_mnist.load_data() - -# 向数组添加维度 -> 新的维度 == (28, 28, 1) -# 我们这样做是因为我们模型中的第一层是卷积层 -# 而且它需要一个四维的输入 (批大小, 高, 宽, 通道). -# 批大小维度稍后将添加。 -train_images = train_images[..., None] -test_images = test_images[..., None] - -# 获取[0,1]范围内的图像。 -train_images = train_images / np.float32(255) -test_images = test_images / np.float32(255) -``` - -```py -Downloading data from https://storage.googleapis.com/tensorflow/tf-keras-datasets/train-labels-idx1-ubyte.gz -32768/29515 [=================================] - 0s 0us/step -Downloading data from https://storage.googleapis.com/tensorflow/tf-keras-datasets/train-images-idx3-ubyte.gz -26427392/26421880 [==============================] - 0s 0us/step -Downloading data from https://storage.googleapis.com/tensorflow/tf-keras-datasets/t10k-labels-idx1-ubyte.gz -8192/5148 [===============================================] - 0s 0us/step -Downloading data from https://storage.googleapis.com/tensorflow/tf-keras-datasets/t10k-images-idx3-ubyte.gz -4423680/4422102 [==============================] - 0s 0us/step - -``` - -## 创建一个分发变量和图形的策略 - -[`tf.distribute.MirroredStrategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/MirroredStrategy) 策略是如何运作的? - -* 所有变量和模型图都复制在副本上。 -* 输入都均匀分布在副本中。 -* 每个副本在收到输入后计算输入的损失和梯度。 -* 通过求和,每一个副本上的梯度都能同步。 -* 同步后,每个副本上的复制的变量都可以同样更新。 - -注意:您可以将下面的所有代码放在一个单独单元内。 我们将它分成几个代码单元用于说明目的。 - -```py -# 如果设备未在 `tf.distribute.MirroredStrategy` 的指定列表中,它会被自动检测到。 -strategy = tf.distribute.MirroredStrategy() -``` - -```py -INFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:GPU:0',) - -``` - -```py -print ('Number of devices: {}'.format(strategy.num_replicas_in_sync)) -``` - -```py -Number of devices: 1 - -``` - -## 设置输入流水线 - -将图形和变量导出成平台不可识别的 SavedModel 格式。在你的模型保存后,你可以在有或没有范围的情况下载入它。 - -```py -BUFFER_SIZE = len(train_images) - -BATCH_SIZE_PER_REPLICA = 64 -GLOBAL_BATCH_SIZE = BATCH_SIZE_PER_REPLICA * strategy.num_replicas_in_sync - -EPOCHS = 10 -``` - -创建数据集并分发它们: - -```py -train_dataset = tf.data.Dataset.from_tensor_slices((train_images, train_labels)).shuffle(BUFFER_SIZE).batch(GLOBAL_BATCH_SIZE) -test_dataset = tf.data.Dataset.from_tensor_slices((test_images, test_labels)).batch(GLOBAL_BATCH_SIZE) - -train_dist_dataset = strategy.experimental_distribute_dataset(train_dataset) -test_dist_dataset = strategy.experimental_distribute_dataset(test_dataset) -``` - -## 创建模型 - -使用 [`tf.keras.Sequential`](https://tensorflow.google.cn/api_docs/python/tf/keras/Sequential) 创建一个模型。你也可以使用模型子类化 API 来完成这个。 - -```py -def create_model(): - model = tf.keras.Sequential([ - tf.keras.layers.Conv2D(32, 3, activation='relu'), - tf.keras.layers.MaxPooling2D(), - tf.keras.layers.Conv2D(64, 3, activation='relu'), - tf.keras.layers.MaxPooling2D(), - tf.keras.layers.Flatten(), - tf.keras.layers.Dense(64, activation='relu'), - tf.keras.layers.Dense(10, activation='softmax') - ]) - - return model -``` - -```py -# 创建检查点目录以存储检查点。 -checkpoint_dir = './training_checkpoints' -checkpoint_prefix = os.path.join(checkpoint_dir, "ckpt") -``` - -## 定义损失函数 - -通常,在一台只有一个 GPU / CPU 的机器上,损失需要除去输入批量中的示例数。 - -*那么,使用 [`tf.distribute.Strategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy) 时应该如何计算损失?* - -* 举一个例子,假设您有 4 个 GPU,批量大小为 64\. 输入的一个批次分布在各个副本(4 个 GPU)上,每个副本获得的输入大小为 16。 - -* 每个副本上的模型使用其各自的输入执行正向传递并计算损失。 现在,相较于将损耗除以其各自输入中的示例数(BATCH_SIZE_PER_REPLICA = 16),应将损失除以 GLOBAL_BATCH_SIZE(64)。 - -*为什么这样做?* - -* 需要这样做是因为在每个副本上计算梯度之后,它们通过 **summing** 来使得在自身在各个副本之间同步。 - -*如何在 TensorFlow 中执行此操作?* - -* 如果您正在编写自定义训练循环,如本教程中所示,您应该将每个示例损失相加并将总和除以 GLOBAL_BATCH_SIZE : `scale_loss = tf.reduce_sum(loss) * (1\. / GLOBAL_BATCH_SIZE)` 或者你可以使用`tf.nn.compute_average_loss` 来获取每个示例的损失,可选的样本权重,将 GLOBAL_BATCH_SIZE 作为参数,并返回缩放的损失。 - -* 如果您在模型中使用正则化损失,则需要进行缩放多个副本的损失。 您可以使用[`tf.nn.scale_regularization_loss`](https://tensorflow.google.cn/api_docs/python/tf/nn/scale_regularization_loss)函数执行此操作。 - -* 建议不要使用[`tf.reduce_mean`](https://tensorflow.google.cn/api_docs/python/tf/math/reduce_mean)。 这样做会将损失除以实际的每个副本中每一步都会改变的批次大小。 - -* 这种缩小和缩放是在 keras 中 `modelcompile`和`model.fit`中自动完成的 - -* 如果使用[`tf.keras.losses`](https://tensorflow.google.cn/api_docs/python/tf/keras/losses)类(如下面这个例子所示),则需要将损失减少明确指定为“NONE”或者“SUM”。 使用 [`tf.distribute.Strategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy) 时,`AUTO`和`SUM_OVER_BATCH_SIZE` 是不能使用的。 不能使用 `AUTO` 是因为用户应明确考虑到在分布式情况下他们想做的哪些减少是正确的。不能使用`SUM_OVER_BATCH_SIZE`是因为目前它只按每个副本批次大小进行划分,并按照用户的副本数进行划分,这导致了它们很容易丢失。 因此,我们要求用户要明确这些减少。 - -```py -with strategy.scope(): - # 将减少设置为“无”,以便我们可以在之后进行这个减少并除以全局批量大小。 - loss_object = tf.keras.losses.SparseCategoricalCrossentropy( - reduction=tf.keras.losses.Reduction.NONE) - # 或者使用 loss_fn = tf.keras.losses.sparse_categorical_crossentropy - def compute_loss(labels, predictions): - per_example_loss = loss_object(labels, predictions) - return tf.nn.compute_average_loss(per_example_loss, global_batch_size=GLOBAL_BATCH_SIZE) -``` - -## 定义衡量指标以跟踪损失和准确性 - -这些指标可以跟踪测试的损失,训练和测试的准确性。 您可以使用`.result()`随时获取累积的统计信息。 - -```py -with strategy.scope(): - test_loss = tf.keras.metrics.Mean(name='test_loss') - - train_accuracy = tf.keras.metrics.SparseCategoricalAccuracy( - name='train_accuracy') - test_accuracy = tf.keras.metrics.SparseCategoricalAccuracy( - name='test_accuracy') -``` - -## 训练循环 - -```py -# 必须在`strategy.scope`下创建模型和优化器。 -with strategy.scope(): - model = create_model() - - optimizer = tf.keras.optimizers.Adam() - - checkpoint = tf.train.Checkpoint(optimizer=optimizer, model=model) -``` - -```py -with strategy.scope(): - def train_step(inputs): - images, labels = inputs - - with tf.GradientTape() as tape: - predictions = model(images, training=True) - loss = compute_loss(labels, predictions) - - gradients = tape.gradient(loss, model.trainable_variables) - optimizer.apply_gradients(zip(gradients, model.trainable_variables)) - - train_accuracy.update_state(labels, predictions) - return loss - - def test_step(inputs): - images, labels = inputs - - predictions = model(images, training=False) - t_loss = loss_object(labels, predictions) - - test_loss.update_state(t_loss) - test_accuracy.update_state(labels, predictions) -``` - -```py -with strategy.scope(): - # `experimental_run_v2`将复制提供的计算并使用分布式输入运行它。 - @tf.function - def distributed_train_step(dataset_inputs): - per_replica_losses = strategy.experimental_run_v2(train_step, - args=(dataset_inputs,)) - return strategy.reduce(tf.distribute.ReduceOp.SUM, per_replica_losses, - axis=None) - - @tf.function - def distributed_test_step(dataset_inputs): - return strategy.experimental_run_v2(test_step, args=(dataset_inputs,)) - - for epoch in range(EPOCHS): - # 训练循环 - total_loss = 0.0 - num_batches = 0 - for x in train_dist_dataset: - total_loss += distributed_train_step(x) - num_batches += 1 - train_loss = total_loss / num_batches - - # 测试循环 - for x in test_dist_dataset: - distributed_test_step(x) - - if epoch % 2 == 0: - checkpoint.save(checkpoint_prefix) - - template = ("Epoch {}, Loss: {}, Accuracy: {}, Test Loss: {}, " - "Test Accuracy: {}") - print (template.format(epoch+1, train_loss, - train_accuracy.result()*100, test_loss.result(), - test_accuracy.result()*100)) - - test_loss.reset_states() - train_accuracy.reset_states() - test_accuracy.reset_states() -``` - -```py -WARNING:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/data/ops/multi_device_iterator_ops.py:601: get_next_as_optional (from tensorflow.python.data.ops.iterator_ops) is deprecated and will be removed in a future version. -Instructions for updating: -Use `tf.data.Iterator.get_next_as_optional()` instead. -WARNING:tensorflow:From :5: StrategyBase.experimental_run_v2 (from tensorflow.python.distribute.distribute_lib) is deprecated and will be removed in a future version. -Instructions for updating: -renamed to `run` -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). -Epoch 1, Loss: 0.5272247791290283, Accuracy: 80.95500183105469, Test Loss: 0.39799919724464417, Test Accuracy: 86.08000183105469 -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). -Epoch 2, Loss: 0.3536641597747803, Accuracy: 87.19000244140625, Test Loss: 0.3652512729167938, Test Accuracy: 86.79999542236328 -Epoch 3, Loss: 0.30651605129241943, Accuracy: 88.96333312988281, Test Loss: 0.35199666023254395, Test Accuracy: 86.76000213623047 -Epoch 4, Loss: 0.2756423354148865, Accuracy: 89.99333190917969, Test Loss: 0.2974560558795929, Test Accuracy: 89.1500015258789 -Epoch 5, Loss: 0.24928639829158783, Accuracy: 90.86833953857422, Test Loss: 0.28945034742355347, Test Accuracy: 89.31999969482422 -Epoch 6, Loss: 0.22822219133377075, Accuracy: 91.66999816894531, Test Loss: 0.2690503001213074, Test Accuracy: 90.13999938964844 -Epoch 7, Loss: 0.21215270459651947, Accuracy: 92.19833374023438, Test Loss: 0.2673594057559967, Test Accuracy: 90.37000274658203 -Epoch 8, Loss: 0.19466665387153625, Accuracy: 92.86500549316406, Test Loss: 0.280720591545105, Test Accuracy: 90.36000061035156 -Epoch 9, Loss: 0.1819683462381363, Accuracy: 93.4000015258789, Test Loss: 0.2655133008956909, Test Accuracy: 90.54000091552734 -Epoch 10, Loss: 0.16936612129211426, Accuracy: 93.711669921875, Test Loss: 0.26561689376831055, Test Accuracy: 90.55999755859375 - -``` - -以上示例中需要注意的事项: - -* 我们使用`for x in ...`迭代构造`train_dist_dataset`和`test_dist_dataset`。 -* 缩放损失是`distributed_train_step`的返回值。 这个值会在各个副本使用[`tf.distribute.Strategy.reduce`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy#reduce)的时候合并,然后通过[`tf.distribute.Strategy.reduce`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy#reduce)叠加各个返回值来跨批次。 -* 在执行`tf.distribute.Strategy.experimental_run_v2`时,`tf.keras.Metrics`应在`train_step`和`test_step`中更新。 -* `tf.distribute.Strategy.experimental_run_v2`返回策略中每个本地副本的结果,并且有多种方法可以处理此结果。 您可以执行[`tf.distribute.Strategy.reduce`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy#reduce)来获取汇总值。 您还可以执行[`tf.distribute.Strategy.experimental_local_results`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy#experimental_local_results)来获取每个本地副本中结果中包含的值列表。 - -## 恢复最新的检查点并进行测试 - -一个模型使用了[`tf.distribute.Strategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy)的检查点可以使用策略或者不使用策略进行恢复。 - -```py -eval_accuracy = tf.keras.metrics.SparseCategoricalAccuracy( - name='eval_accuracy') - -new_model = create_model() -new_optimizer = tf.keras.optimizers.Adam() - -test_dataset = tf.data.Dataset.from_tensor_slices((test_images, test_labels)).batch(GLOBAL_BATCH_SIZE) -``` - -```py -@tf.function -def eval_step(images, labels): - predictions = new_model(images, training=False) - eval_accuracy(labels, predictions) -``` - -```py -checkpoint = tf.train.Checkpoint(optimizer=new_optimizer, model=new_model) -checkpoint.restore(tf.train.latest_checkpoint(checkpoint_dir)) - -for images, labels in test_dataset: - eval_step(images, labels) - -print ('Accuracy after restoring the saved model without strategy: {}'.format( - eval_accuracy.result()*100)) -``` - -```py -Accuracy after restoring the saved model without strategy: 90.54000091552734 - -``` - -## 迭代一个数据集的替代方法 - -### 使用迭代器 - -如果你想要迭代一个已经给定步骤数量而不需要整个遍历的数据集,你可以创建一个迭代器并在迭代器上调用`iter`和显式调用`next`。 您可以选择在 tf.function 内部和外部迭代数据集。 这是一个小片段,演示了使用迭代器在 tf.function 外部迭代数据集。 - -```py -with strategy.scope(): - for _ in range(EPOCHS): - total_loss = 0.0 - num_batches = 0 - train_iter = iter(train_dist_dataset) - - for _ in range(10): - total_loss += distributed_train_step(next(train_iter)) - num_batches += 1 - average_train_loss = total_loss / num_batches - - template = ("Epoch {}, Loss: {}, Accuracy: {}") - print (template.format(epoch+1, average_train_loss, train_accuracy.result()*100)) - train_accuracy.reset_states() -``` - -```py -Epoch 10, Loss: 0.17099234461784363, Accuracy: 93.75 -Epoch 10, Loss: 0.12641692161560059, Accuracy: 95.9375 -Epoch 10, Loss: 0.11636483669281006, Accuracy: 96.09375 -Epoch 10, Loss: 0.1404765546321869, Accuracy: 95.0 -Epoch 10, Loss: 0.16838286817073822, Accuracy: 92.5 -Epoch 10, Loss: 0.1905607134103775, Accuracy: 93.125 -Epoch 10, Loss: 0.12706035375595093, Accuracy: 95.78125 -Epoch 10, Loss: 0.14852401614189148, Accuracy: 93.59375 -Epoch 10, Loss: 0.11990274488925934, Accuracy: 95.9375 -Epoch 10, Loss: 0.1237613782286644, Accuracy: 95.9375 - -``` - -### 在 tf.function 中迭代 - -您还可以使用`for x in ...`构造在 tf.function 内部迭代整个输入`train_dist_dataset`,或者像上面那样创建迭代器。下面的例子演示了在 tf.function 中包装一个 epoch 并在功能内迭代`train_dist_dataset`。 - -```py -with strategy.scope(): - @tf.function - def distributed_train_epoch(dataset): - total_loss = 0.0 - num_batches = 0 - for x in dataset: - per_replica_losses = strategy.experimental_run_v2(train_step, - args=(x,)) - total_loss += strategy.reduce( - tf.distribute.ReduceOp.SUM, per_replica_losses, axis=None) - num_batches += 1 - return total_loss / tf.cast(num_batches, dtype=tf.float32) - - for epoch in range(EPOCHS): - train_loss = distributed_train_epoch(train_dist_dataset) - - template = ("Epoch {}, Loss: {}, Accuracy: {}") - print (template.format(epoch+1, train_loss, train_accuracy.result()*100)) - - train_accuracy.reset_states() -``` - -```py -Epoch 1, Loss: 0.1545342057943344, Accuracy: 94.34666442871094 -Epoch 2, Loss: 0.14368833601474762, Accuracy: 94.76666259765625 -Epoch 3, Loss: 0.13302761316299438, Accuracy: 95.22833251953125 -Epoch 4, Loss: 0.12302733212709427, Accuracy: 95.51499938964844 -Epoch 5, Loss: 0.11504675447940826, Accuracy: 95.7300033569336 -Epoch 6, Loss: 0.10611504316329956, Accuracy: 96.02000427246094 -Epoch 7, Loss: 0.09776321798563004, Accuracy: 96.3566665649414 -Epoch 8, Loss: 0.0923474133014679, Accuracy: 96.54166412353516 -Epoch 9, Loss: 0.08583918958902359, Accuracy: 96.85833740234375 -Epoch 10, Loss: 0.0784970372915268, Accuracy: 97.12332916259766 - -``` - -### 跟踪副本中的训练的损失 - -注意:作为通用的规则,您应该使用`tf.keras.Metrics`来跟踪每个样本的值以避免它们在副本中合并。 - -我们 *不* 建议使用[`tf.metrics.Mean`](https://tensorflow.google.cn/api_docs/python/tf/keras/metrics/Mean) 来跟踪不同副本的训练损失,因为在执行过程中会进行损失缩放计算。 - -例如,如果您运行具有以下特点的训练作业: - -* 两个副本 -* 在每个副本上处理两个例子 -* 产生的损失值:每个副本为[2,3]和[4,5] -* 全局批次大小 = 4 - -通过损失缩放,您可以通过添加损失值来计算每个副本上的每个样本的损失值,然后除以全局批量大小。 在这种情况下:`(2 + 3)/ 4 = 1.25`和`(4 + 5)/ 4 = 2.25`。 - -如果您使用 [`tf.metrics.Mean`](https://tensorflow.google.cn/api_docs/python/tf/keras/metrics/Mean) 来跟踪两个副本的损失,结果会有所不同。 在这个例子中,你最终得到一个`total`为 3.50 和`count`为 2 的结果,当调用`result()`时,你将得到`total` /`count` = 1.75。 使用`tf.keras.Metrics`计算损失时会通过一个等于同步副本数量的额外因子来缩放。 - -### 例子和教程 - -以下是一些使用自定义训练循环来分发策略的示例: - -1. [教程](/tutorials/distribute/training_loops) 使用 `MirroredStrategy` 来训练 MNIST 。 -2. [DenseNet](https://github.com/tensorflow/examples/blob/master/tensorflow_examples/models/densenet/distributed_train.py) 使用 `MirroredStrategy`的例子。 -3. [BERT](https://github.com/tensorflow/models/blob/master/official/nlp/bert/run_classifier.py) 使用 `MirroredStrategy` 和`TPUStrategy`来训练的例子。 此示例对于了解如何在分发训练过程中如何载入一个检测点和定期生成检查点特别有帮助。 -4. [NCF](https://github.com/tensorflow/models/blob/master/official/recommendation/ncf_keras_main.py) 使用 `MirroredStrategy` 来启用 `keras_use_ctl` 标记。 -5. [NMT](https://github.com/tensorflow/examples/blob/master/tensorflow_examples/models/nmt_with_attention/distributed_train.py) 使用 `MirroredStrategy`来训练的例子。 - -更多的例子列在 [分发策略指南](https://tensorflow.google.cn/guide/distribute_strategy#examples_and_tutorials)。 - -## 下一步 - -在你的模型上尝试新的[`tf.distribute.Strategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy) API。 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/036.md b/Tensorflow/TensorFlow2.0/036.md deleted file mode 100644 index a76b5bda..00000000 --- a/Tensorflow/TensorFlow2.0/036.md +++ /dev/null @@ -1,265 +0,0 @@ -# 利用 Keras 来训练多工作器(worker) - -> 原文:[https://tensorflow.google.cn/tutorials/distribute/multi_worker_with_keras](https://tensorflow.google.cn/tutorials/distribute/multi_worker_with_keras) - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -## 概述 - -本教程使用 [`tf.distribute.Strategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy) API 演示了使用 Keras 模型的多工作器(worker)分布式培训。借助专为多工作器(worker)训练而设计的策略,设计在单一工作器(worker)上运行的 Keras 模型可以在最少的代码更改的情况下无缝地处理多个工作器。 - -[TensorFlow 中的分布式培训](https://tensorflow.google.cn/guide/distribute_strategy)指南可用于概述 TensorFlow 支持的分布式策略,并想要更深入理解[`tf.distribute.Strategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy) API 感兴趣的人。 - -## 配置 - -首先,设置 TensorFlow 和必要的导入。 - -```py -!pip install -q tf-nightly -import tensorflow_datasets as tfds -import tensorflow as tf -tfds.disable_progress_bar() -``` - -```py -WARNING: You are using pip version 20.2.2; however, version 20.2.3 is available. -You should consider upgrading via the '/tmpfs/src/tf_docs_env/bin/python -m pip install --upgrade pip' command. - -``` - -## 准备数据集 - -现在,让我们从 [TensorFlow 数据集](https://tensorflow.google.cn/datasets) 中准备 MNIST 数据集。 [MNIST 数据集](http://yann.lecun.com/exdb/mnist/) 包括 60,000 个训练样本和 10,000 个手写数字 0-9 的测试示例,格式为 28x28 像素单色图像。 - -```py -BUFFER_SIZE = 10000 -BATCH_SIZE = 64 - -def make_datasets_unbatched(): - # 将 MNIST 数据从 (0, 255] 缩放到 (0., 1.] - def scale(image, label): - image = tf.cast(image, tf.float32) - image /= 255 - return image, label - - datasets, info = tfds.load(name='mnist', - with_info=True, - as_supervised=True) - - return datasets['train'].map(scale).cache().shuffle(BUFFER_SIZE) - -train_datasets = make_datasets_unbatched().batch(BATCH_SIZE) -``` - -## 构建 Keras 模型 - -在这里,我们使用[`tf.keras.Sequential`](https://tensorflow.google.cn/api_docs/python/tf/keras/Sequential) API 来构建和编译一个简单的卷积神经网络 Keras 模型,用我们的 MNIST 数据集进行训练。 - -注意:有关构建 Keras 模型的详细训练说明,请参阅[TensorFlow Keras 指南](https://tensorflow.google.cn/guide/keras#sequential_model)。 - -```py -def build_and_compile_cnn_model(): - model = tf.keras.Sequential([ - tf.keras.layers.Conv2D(32, 3, activation='relu', input_shape=(28, 28, 1)), - tf.keras.layers.MaxPooling2D(), - tf.keras.layers.Flatten(), - tf.keras.layers.Dense(64, activation='relu'), - tf.keras.layers.Dense(10) - ]) - model.compile( - loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True), - optimizer=tf.keras.optimizers.SGD(learning_rate=0.001), - metrics=['accuracy']) - return model -``` - -让我们首先尝试用少量的 epoch 来训练模型,并在单个工作器(worker)中观察结果,以确保一切正常。 随着训练的迭代,您应该会看到损失(loss)下降和准确度(accuracy)接近 1.0。 - -```py -single_worker_model = build_and_compile_cnn_model() -single_worker_model.fit(x=train_datasets, epochs=3, steps_per_epoch=5) -``` - -```py -Epoch 1/3 -5/5 [==============================] - 1s 15ms/step - loss: 2.3390 - accuracy: 0.0211 -Epoch 2/3 -5/5 [==============================] - 0s 14ms/step - loss: 2.3315 - accuracy: 0.0368 -Epoch 3/3 -5/5 [==============================] - 0s 13ms/step - loss: 2.3271 - accuracy: 0.0484 - - - -``` - -## 多工作器(worker)配置 - -现在让我们进入多工作器(worker)训练的世界。在 TensorFlow 中,需要 `TF_CONFIG` 环境变量来训练多台机器,每台机器可能具有不同的角色。 `TF_CONFIG`用于指定作为集群一部分的每个 worker 的集群配置。 - -`TF_CONFIG` 有两个组件:`cluster` 和 `task` 。 `cluster` 提供有关训练集群的信息,这是一个由不同类型的工作组成的字典,例如 `worker` 。在多工作器(worker)培训中,除了常规的“工作器”之外,通常还有一个“工人”承担更多责任,比如保存检查点和为 TensorBoard 编写摘要文件。这样的工作器(worker)被称为“主要”工作者,习惯上`worker` 中 `index` 0 被指定为主要的 `worker`(事实上这就是[`tf.distribute.Strategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy)的实现方式)。 另一方面,`task` 提供当前任务的信息。 - -在这个例子中,我们将任务 `type` 设置为 `"worker"` 并将任务 `index` 设置为 `0` 。这意味着具有这种设置的机器是第一个工作器,它将被指定为主要工作器并且要比其他工作器做更多的工作。请注意,其他机器也需要设置 `TF_CONFIG` 环境变量,它应该具有相同的 `cluster` 字典,但是不同的任务`type` 或 `index` 取决于这些机器的角色。 - -为了便于说明,本教程展示了如何在 `localhost` 上设置一个带有 2 个工作器的`TF_CONFIG`。 实际上,用户会在外部 IP 地址/端口上创建多个工作器,并在每个工作器上适当地设置`TF_CONFIG`。 - -警告:不要在 Colab 中执行以下代码。TensorFlow 的运行时将尝试在指定的 IP 地址和端口创建 gRPC 服务器,这可能会失败。 - -```py -os.environ['TF_CONFIG'] = json.dumps({ - 'cluster': { - 'worker': ["localhost:12345", "localhost:23456"] - }, - 'task': {'type': 'worker', 'index': 0} -}) -``` - -注意,虽然在该示例中学习速率是固定的,但是通常可能需要基于全局批量大小来调整学习速率。 - -## 选择正确的策略 - -在 TensorFlow 中,分布式训练包括同步训练(其中训练步骤跨工作器和副本同步)、异步训练(训练步骤未严格同步)。 - -`MultiWorkerMirroredStrategy` 是同步多工作器训练的推荐策略,将在本指南中进行演示。 - -要训练模型,请使用 [`tf.distribute.experimental.MultiWorkerMirroredStrategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/experimental/MultiWorkerMirroredStrategy) 的实例。 `MultiWorkerMirroredStrategy` 在所有工作器的每台设备上创建模型层中所有变量的副本。 它使用 `CollectiveOps` ,一个用于集体通信的 TensorFlow 操作,来聚合梯度并使变量保持同步。 [`tf.distribute.Strategy`指南](https://tensorflow.google.cn/guide/distribute_strategy)有关于此策略的更多详细信息。 - -```py -strategy = tf.distribute.experimental.MultiWorkerMirroredStrategy() -``` - -```py -WARNING:tensorflow:Collective ops is not configured at program startup. Some performance features may not be enabled. - -Warning:tensorflow:Collective ops is not configured at program startup. Some performance features may not be enabled. - -INFO:tensorflow:Using MirroredStrategy with devices ('/device:CPU:0',) - -INFO:tensorflow:Using MirroredStrategy with devices ('/device:CPU:0',) - -INFO:tensorflow:Single-worker MultiWorkerMirroredStrategy with local_devices = ('/device:CPU:0',), communication = CollectiveCommunication.AUTO - -INFO:tensorflow:Single-worker MultiWorkerMirroredStrategy with local_devices = ('/device:CPU:0',), communication = CollectiveCommunication.AUTO - -``` - -注意:解析 `TF_CONFIG` 并且在调用 [`MultiWorkerMirroredStrategy.**init**()`](https://tensorflow.google.cn/api_docs/python/tf/distribute/experimental/MultiWorkerMirroredStrategy#__init__) 时启动 TensorFlow 的 GRPC 服务器,因此必须在创建[`tf.distribute.Strategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy)实例之前设置 `TF_CONFIG` 环境变量。 - -`MultiWorkerMirroredStrategy` 通过[`CollectiveCommunication`](https://github.com/tensorflow/tensorflow/blob/a385a286a930601211d78530734368ccb415bee4/tensorflow/python/distribute/cross_device_ops.py#L928)参数提供多个实现。`RING` 使用 gRPC 作为跨主机通信层实现基于环的集合。`NCCL` 使用[Nvidia 的 NCCL](https://developer.nvidia.com/nccl)来实现集体。 `AUTO` 将选择推迟到运行时。 集体实现的最佳选择取决于 GPU 的数量和种类以及群集中的网络互连。 - -## 使用 MultiWorkerMirroredStrategy 训练模型 - -通过将 [`tf.distribute.Strategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy) API 集成到 [`tf.keras`](https://tensorflow.google.cn/api_docs/python/tf/keras) 中,将训练分发给多人的唯一更改就是将模型进行构建和 `model.compile()` 调用封装在 `strategy.scope()` 内部。 分发策略的范围决定了如何创建变量以及在何处创建变量,对于 MultiWorkerMirroredStrategy 而言,创建的变量为 MirroredVariable ,并且将它们复制到每个工作器上。 - -注意:在此 Colab 中,以下代码可以按预期结果运行,但是由于未设置`TF_CONFIG`,因此这实际上是单机训练。 在您自己的示例中设置了 `TF_CONFIG` 后,您应该期望在多台机器上进行培训可以提高速度。 - -```py -NUM_WORKERS = 2 -# 由于 `tf.data.Dataset.batch` 需要全局的批处理大小, -# 因此此处的批处理大小按工作器数量增加。 -# 以前我们使用 64,现在变成 128。 -GLOBAL_BATCH_SIZE = 64 * NUM_WORKERS - -# 创建数据集需要在 MultiWorkerMirroredStrategy 对象 -# 实例化后。 -train_datasets = make_datasets_unbatched().batch(GLOBAL_BATCH_SIZE) -with strategy.scope(): - # 模型的建立/编译需要在 `strategy.scope()` 内部。 - multi_worker_model = build_and_compile_cnn_model() - -# Keras 的 `model.fit()` 以特定的时期数和每时期的步数训练模型。 -# 注意此处的数量仅用于演示目的,并不足以产生高质量的模型。 -multi_worker_model.fit(x=train_datasets, epochs=3, steps_per_epoch=5) -``` - -```py -Epoch 1/3 -5/5 [==============================] - 3s 23ms/step - loss: 2.3042 - accuracy: 0.1243 -Epoch 2/3 -5/5 [==============================] - 0s 18ms/step - loss: 2.3129 - accuracy: 0.0801 -Epoch 3/3 -5/5 [==============================] - 0s 19ms/step - loss: 2.2974 - accuracy: 0.1253 - - - -``` - -### 数据集分片和批(batch)大小 - -在多工作器训练中,需要将数据分片为多个部分,以确保融合和性能。 但是,请注意,在上面的代码片段中,数据集直接发送到`model.fit()`,而无需分片; 这是因为[`tf.distribute.Strategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy) API 在多工作器训练中会自动处理数据集分片。 - -如果您喜欢手动分片进行训练,则可以通过[`tf.data.experimental.DistributeOptions`](https://tensorflow.google.cn/api_docs/python/tf/data/experimental/DistributeOptions) API 关闭自动分片。 - -```py -options = tf.data.Options() -options.experimental_distribute.auto_shard_policy = tf.data.experimental.AutoShardPolicy.OFF -train_datasets_no_auto_shard = train_datasets.with_options(options) -``` - -要注意的另一件事是 `datasets` 的批处理大小。 在上面的代码片段中,我们使用 `GLOBAL_BATCH_SIZE = 64 * NUM_WORKERS` ,这是单个工作器的大小的 `NUM_WORKERS` 倍,因为每个工作器的有效批量大小是全局批量大小(参数从 [`tf.data.Dataset.batch()`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#batch) 传入)除以工作器的数量,通过此更改,我们使每个工作器的批处理大小与以前相同。 - -## 性能 - -现在,您已经有了一个 Keras 模型,该模型全部通过 `MultiWorkerMirroredStrategy` 运行在多个工作器中。 您可以尝试以下技术来调整多工作器训练的效果。 - -* `MultiWorkerMirroredStrategy` 提供了多个[集体通信实现][collective communication implementations](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/distribute/cross_device_ops.py). `RING` 使用 gRPC 作为跨主机通信层实现基于环的集合。 `NCCL` 使用 [Nvidia's NCCL](https://developer.nvidia.com/nccl) 来实现集合。 `AUTO` 将推迟到运行时选择。集体实施的最佳选择取决于 GPU 的数量和种类以及集群中的网络互连。 要覆盖自动选择,请为 `MultiWorkerMirroredStrategy` 的构造函数的 `communication` 参数指定一个有效值,例如: `communication=tf.distribute.experimental.CollectiveCommunication.NCCL`. -* 如果可能的话,将变量强制转换为 `tf.float`。ResNet 的官方模型包括如何完成此操作的[示例](https://github.com/tensorflow/models/blob/8367cf6dabe11adf7628541706b660821f397dce/official/resnet/resnet_model.py#L466)。 - -## 容错能力 - -在同步训练中,如果其中一个工作器出现故障并且不存在故障恢复机制,则集群将失败。 在工作器退出或不稳定的情况下,将 Keras 与 [`tf.distribute.Strategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy) 一起使用会具有容错的优势。 我们通过在您选择的分布式文件系统中保留训练状态来做到这一点,以便在重新启动先前失败或被抢占的实例后,将恢复训练状态。 - -由于所有工作器在训练 epochs 和 steps 方面保持同步,因此其他工作器将需要等待失败或被抢占的工作器重新启动才能继续。 - -### ModelCheckpoint 回调 - -要在多工作器训练中利用容错功能,请在调用 [`tf.keras.Model.fit()`](https://tensorflow.google.cn/api_docs/python/tf/keras/Model#fit) 时提供一个 [`tf.keras.callbacks.ModelCheckpoint`](https://tensorflow.google.cn/api_docs/python/tf/keras/callbacks/ModelCheckpoint) 实例。 回调会将检查点和训练状态存储在与 `ModelCheckpoint` 的 `filepath` 参数相对应的目录中。 - -```py -# 将 `filepath` 参数替换为在文件系统中所有工作器都能访问的路径。 -callbacks = [tf.keras.callbacks.ModelCheckpoint(filepath='/tmp/keras-ckpt')] -with strategy.scope(): - multi_worker_model = build_and_compile_cnn_model() -multi_worker_model.fit(x=train_datasets, - epochs=3, - steps_per_epoch=5, - callbacks=callbacks) -``` - -```py -Epoch 1/3 -4/5 [=======================>......] - ETA: 0s - loss: 2.2830 - accuracy: 0.1810 -/tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/keras/engine/training.py:2289: UserWarning: `Model.state_updates` will be removed in a future version. This property should not be used in TensorFlow 2.0, as `updates` are applied automatically. - warnings.warn('`Model.state_updates` will be removed in a future version. ' -/tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/keras/engine/base_layer.py:1377: UserWarning: `layer.updates` will be removed in a future version. This property should not be used in TensorFlow 2.0, as `updates` are applied automatically. - warnings.warn('`layer.updates` will be removed in a future version. ' - -INFO:tensorflow:Assets written to: /tmp/keras-ckpt/assets - -INFO:tensorflow:Assets written to: /tmp/keras-ckpt/assets - -5/5 [==============================] - 4s 170ms/step - loss: 2.2852 - accuracy: 0.1790 -Epoch 2/3 -4/5 [=======================>......] - ETA: 0s - loss: 2.2871 - accuracy: 0.1758INFO:tensorflow:Assets written to: /tmp/keras-ckpt/assets - -INFO:tensorflow:Assets written to: /tmp/keras-ckpt/assets - -5/5 [==============================] - 1s 155ms/step - loss: 2.2869 - accuracy: 0.1797 -Epoch 3/3 -4/5 [=======================>......] - ETA: 0s - loss: 2.2876 - accuracy: 0.2041INFO:tensorflow:Assets written to: /tmp/keras-ckpt/assets - -INFO:tensorflow:Assets written to: /tmp/keras-ckpt/assets - -5/5 [==============================] - 1s 155ms/step - loss: 2.2872 - accuracy: 0.2064 - - - -``` - -如果某个工作线程被抢占,则整个集群将暂停,直到重新启动被抢占的工作线程为止。工作器重新加入集群后,其他工作器也将重新启动。 现在,每个工作器都将读取先前保存的检查点文件,并获取其以前的状态,从而使群集能够恢复同步,然后继续训练。 - -如果检查包含在`ModelCheckpoint` 中指定的 `filepath` 的目录,则可能会注意到一些临时生成的检查点文件。 这些文件是恢复以前丢失的实例所必需的,并且在成功退出多工作器训练后,这些文件将在 [`tf.keras.Model.fit()`](https://tensorflow.google.cn/api_docs/python/tf/keras/Model#fit) 的末尾被库删除。 - -## 您可以查阅 - -1. [Distributed Training in TensorFlow](https://tensorflow.google.cn/guide/distribute_strategy) 该指南概述了可用的分布式策略。 -2. [ResNet50](https://github.com/tensorflow/models/blob/master/official/resnet/imagenet_main.py) 官方模型,该模型可以使用 `MirroredStrategy` 或 `MultiWorkerMirroredStrategy` 进行训练 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/037.md b/Tensorflow/TensorFlow2.0/037.md deleted file mode 100644 index cf80ebef..00000000 --- a/Tensorflow/TensorFlow2.0/037.md +++ /dev/null @@ -1,427 +0,0 @@ -# 利用 Estimator 进行多工作器训练 - -> 原文:[https://tensorflow.google.cn/tutorials/distribute/multi_worker_with_estimator](https://tensorflow.google.cn/tutorials/distribute/multi_worker_with_estimator) - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -## 概述 - -本教程展示了在训练分布式多工作器(worker)时,如何使用 [`tf.distribute.Strategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy)。如果你的代码使用了 [`tf.estimator`](https://tensorflow.google.cn/api_docs/python/tf/estimator),而且你也对拓展单机以获取高性能有兴趣,那么这个教程就是为你准备的。 - -在开始之前,请先阅读 [`tf.distribute.Strategy` 指南](https://tensorflow.google.cn/guide/distribute_strategy)。同样相关的还有 [使用多 GPU 训练教程](https://tensorflow.google.cn/tutorials/distribute/keras),因为在这个教程里也使用了相同的模型。 - -## 创建 - -首先,设置好 TensorFlow 以及将会用到的输入模块。 - -```py -import tensorflow_datasets as tfds -import tensorflow as tf -tfds.disable_progress_bar() - -import os, json -``` - -## 输入函数 - -本教程里我们使用的是 [TensorFlow 数据集(TensorFlow Datasets)](https://tensorflow.google.cn/datasets)里的 MNIST 数据集。本教程里的代码和 [使用多 GPU 训练教程](https://tensorflow.google.cn/tutorials/distribute/keras) 类似,但有一个主要区别:当我们使用 Estimator 进行多工作器训练时,需要根据工作器的数量对数据集进行拆分,以确保模型收敛。输入的数据根据工作器其自身的索引来拆分,因此每个工作器各自负责处理该数据集 `1/num_workers` 个不同部分。 - -```py -BUFFER_SIZE = 10000 -BATCH_SIZE = 64 - -def input_fn(mode, input_context=None): - datasets, info = tfds.load(name='mnist', - with_info=True, - as_supervised=True) - mnist_dataset = (datasets['train'] if mode == tf.estimator.ModeKeys.TRAIN else - datasets['test']) - - def scale(image, label): - image = tf.cast(image, tf.float32) - image /= 255 - return image, label - - if input_context: - mnist_dataset = mnist_dataset.shard(input_context.num_input_pipelines, - input_context.input_pipeline_id) - return mnist_dataset.map(scale).shuffle(BUFFER_SIZE).batch(BATCH_SIZE) -``` - -使模型收敛的另一种合理方式是在每个工作器上设置不同的随机种子,然后对数据集进行随机重排。 - -## 多工作器配置 - -本教程主要的不同(区别于[使用多 GPU 训练教程](https://tensorflow.google.cn/tutorials/distribute/keras))在于多工作器的创建。明确集群中每个工作器的配置的标准方式是设置环境变量 `TF_CONFIG` 。 - -`TF_CONFIG` 里包括了两个部分:`cluster` 和 `task`。`cluster` 提供了关于整个集群的信息,也就是集群中的工作器和参数服务器(parameter server)。`task` 提供了关于当前任务的信息。在本例中,任务的类型(type)是 worker 且该任务的索引(index)是 0。 - -出于演示的目的,本教程展示了怎么将 `TF_CONFIG` 设置成两个本地的工作器。在实践中,你可以在外部的 IP 地址和端口上创建多个工作器,并为每个工作器正确地配置好 `TF_CONFIG` 变量,也就是更改任务的索引。 - -警告:不要在 Colab 里执行以下代码。TensorFlow 的运行程序会试图在指定的 IP 地址和端口创建 gRPC 服务器,这会导致创建失败。 - -```py -os.environ['TF_CONFIG'] = json.dumps({ - 'cluster': { - 'worker': ["localhost:12345", "localhost:23456"] - }, - 'task': {'type': 'worker', 'index': 0} -}) -``` - -## 定义模型 - -定义训练中用到的层,优化器和损失函数。本教程使用 Keras layers 定义模型,同[使用多 GPU 训练教程](https://tensorflow.google.cn/tutorials/distribute/keras)类似。 - -```py -LEARNING_RATE = 1e-4 -def model_fn(features, labels, mode): - model = tf.keras.Sequential([ - tf.keras.layers.Conv2D(32, 3, activation='relu', input_shape=(28, 28, 1)), - tf.keras.layers.MaxPooling2D(), - tf.keras.layers.Flatten(), - tf.keras.layers.Dense(64, activation='relu'), - tf.keras.layers.Dense(10, activation='softmax') - ]) - logits = model(features, training=False) - - if mode == tf.estimator.ModeKeys.PREDICT: - predictions = {'logits': logits} - return tf.estimator.EstimatorSpec(labels=labels, predictions=predictions) - - optimizer = tf.compat.v1.train.GradientDescentOptimizer( - learning_rate=LEARNING_RATE) - loss = tf.keras.losses.SparseCategoricalCrossentropy( - from_logits=True, reduction=tf.keras.losses.Reduction.NONE)(labels, logits) - loss = tf.reduce_sum(loss) * (1\. / BATCH_SIZE) - if mode == tf.estimator.ModeKeys.EVAL: - return tf.estimator.EstimatorSpec(mode, loss=loss) - - return tf.estimator.EstimatorSpec( - mode=mode, - loss=loss, - train_op=optimizer.minimize( - loss, tf.compat.v1.train.get_or_create_global_step())) -``` - -注意:尽管在本例中学习率是固定的,但是通常情况下可能有必要基于全局的批次大小对学习率进行调整。 - -## MultiWorkerMirroredStrategy - -为训练模型,需要使用 [`tf.distribute.experimental.MultiWorkerMirroredStrategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/experimental/MultiWorkerMirroredStrategy) 实例。`MultiWorkerMirroredStrategy` 创建了每个设备中模型层里所有变量的拷贝,且是跨工作器的。其用到了 `CollectiveOps`,这是 TensorFlow 里的一种操作,用来整合梯度以及确保变量同步。该策略的更多细节可以在 [`tf.distribute.Strategy` 指南](https://tensorflow.google.cn/guide/distribute_strategy)中找到。 - -```py -strategy = tf.distribute.experimental.MultiWorkerMirroredStrategy() -``` - -```py -INFO:tensorflow:Using MirroredStrategy with devices ('/device:GPU:0',) -INFO:tensorflow:Single-worker MultiWorkerMirroredStrategy with local_devices = ('/device:GPU:0',), communication = CollectiveCommunication.AUTO - -``` - -## 训练和评估模型 - -接下来,在 `RunConfig` 中为 estimator 指明分布式策略,同时通过调用 [`tf.estimator.train_and_evaluate`](https://tensorflow.google.cn/api_docs/python/tf/estimator/train_and_evaluate) 训练和评估模型。本教程只通过指明 `train_distribute` 进行分布式训练。但是也同样也可以通过指明 `eval_distribute` 来进行分布式评估。 - -```py -config = tf.estimator.RunConfig(train_distribute=strategy) - -classifier = tf.estimator.Estimator( - model_fn=model_fn, model_dir='/tmp/multiworker', config=config) -tf.estimator.train_and_evaluate( - classifier, - train_spec=tf.estimator.TrainSpec(input_fn=input_fn), - eval_spec=tf.estimator.EvalSpec(input_fn=input_fn) -) -``` - -```py -INFO:tensorflow:Initializing RunConfig with distribution strategies. -INFO:tensorflow:Not using Distribute Coordinator. -INFO:tensorflow:Using config: {'_model_dir': '/tmp/multiworker', '_tf_random_seed': None, '_save_summary_steps': 100, '_save_checkpoints_steps': None, '_save_checkpoints_secs': 600, '_session_config': allow_soft_placement: true -graph_options { - rewrite_options { - meta_optimizer_iterations: ONE - } -} -, '_keep_checkpoint_max': 5, '_keep_checkpoint_every_n_hours': 10000, '_log_step_count_steps': 100, '_train_distribute': , '_device_fn': None, '_protocol': None, '_eval_distribute': None, '_experimental_distribute': None, '_experimental_max_worker_delay_secs': None, '_session_creation_timeout_secs': 7200, '_service': None, '_cluster_spec': ClusterSpec({}), '_task_type': 'worker', '_task_id': 0, '_global_id_in_cluster': 0, '_master': '', '_evaluation_master': '', '_is_chief': True, '_num_ps_replicas': 0, '_num_worker_replicas': 1, '_distribute_coordinator_mode': None} -INFO:tensorflow:Not using Distribute Coordinator. -INFO:tensorflow:Running training and evaluation locally (non-distributed). -INFO:tensorflow:Start train and evaluate loop. The evaluate will happen after every checkpoint. Checkpoint frequency is determined based on RunConfig arguments: save_checkpoints_steps None or save_checkpoints_secs 600. -INFO:tensorflow:The `input_fn` accepts an `input_context` which will be given by DistributionStrategy -WARNING:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/data/ops/multi_device_iterator_ops.py:339: get_next_as_optional (from tensorflow.python.data.ops.iterator_ops) is deprecated and will be removed in a future version. -Instructions for updating: -Use `tf.data.Iterator.get_next_as_optional()` instead. - -Warning:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/data/ops/multi_device_iterator_ops.py:339: get_next_as_optional (from tensorflow.python.data.ops.iterator_ops) is deprecated and will be removed in a future version. -Instructions for updating: -Use `tf.data.Iterator.get_next_as_optional()` instead. - -INFO:tensorflow:Calling model_fn. - -INFO:tensorflow:Calling model_fn. - -INFO:tensorflow:Done calling model_fn. - -INFO:tensorflow:Done calling model_fn. - -Warning:tensorflow:AutoGraph could not transform . at 0x7f975c181c80> and will run it as-is. -Cause: could not parse the source code: - - lambda scaffold: scaffold.ready_op, args=(grouped_scaffold,)) - -This error may be avoided by creating the lambda in a standalone statement. - -To silence this warning, decorate the function with @tf.autograph.experimental.do_not_convert - -Warning:tensorflow:AutoGraph could not transform . at 0x7f975c181c80> and will run it as-is. -Cause: could not parse the source code: - - lambda scaffold: scaffold.ready_op, args=(grouped_scaffold,)) - -This error may be avoided by creating the lambda in a standalone statement. - -To silence this warning, decorate the function with @tf.autograph.experimental.do_not_convert - -Warning: AutoGraph could not transform . at 0x7f975c181c80> and will run it as-is. -Cause: could not parse the source code: - - lambda scaffold: scaffold.ready_op, args=(grouped_scaffold,)) - -This error may be avoided by creating the lambda in a standalone statement. - -To silence this warning, decorate the function with @tf.autograph.experimental.do_not_convert -INFO:tensorflow:Create CheckpointSaverHook. - -INFO:tensorflow:Create CheckpointSaverHook. - -Warning:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow_estimator/python/estimator/util.py:96: DistributedIteratorV1.initialize (from tensorflow.python.distribute.input_lib) is deprecated and will be removed in a future version. -Instructions for updating: -Use the iterator's `initializer` property instead. - -Warning:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow_estimator/python/estimator/util.py:96: DistributedIteratorV1.initialize (from tensorflow.python.distribute.input_lib) is deprecated and will be removed in a future version. -Instructions for updating: -Use the iterator's `initializer` property instead. - -INFO:tensorflow:Graph was finalized. - -INFO:tensorflow:Graph was finalized. - -INFO:tensorflow:Running local_init_op. - -INFO:tensorflow:Running local_init_op. - -INFO:tensorflow:Done running local_init_op. - -INFO:tensorflow:Done running local_init_op. - -INFO:tensorflow:Calling checkpoint listeners before saving checkpoint 0... - -INFO:tensorflow:Calling checkpoint listeners before saving checkpoint 0... - -INFO:tensorflow:Saving checkpoints for 0 into /tmp/multiworker/model.ckpt. - -INFO:tensorflow:Saving checkpoints for 0 into /tmp/multiworker/model.ckpt. - -INFO:tensorflow:Calling checkpoint listeners after saving checkpoint 0... - -INFO:tensorflow:Calling checkpoint listeners after saving checkpoint 0... - -INFO:tensorflow:loss = 2.3033497, step = 0 - -INFO:tensorflow:loss = 2.3033497, step = 0 - -INFO:tensorflow:global_step/sec: 195.373 - -INFO:tensorflow:global_step/sec: 195.373 - -INFO:tensorflow:loss = 2.3039753, step = 100 (0.514 sec) - -INFO:tensorflow:loss = 2.3039753, step = 100 (0.514 sec) - -INFO:tensorflow:global_step/sec: 214.711 - -INFO:tensorflow:global_step/sec: 214.711 - -INFO:tensorflow:loss = 2.3031363, step = 200 (0.465 sec) - -INFO:tensorflow:loss = 2.3031363, step = 200 (0.465 sec) - -INFO:tensorflow:global_step/sec: 217.488 - -INFO:tensorflow:global_step/sec: 217.488 - -INFO:tensorflow:loss = 2.3034592, step = 300 (0.460 sec) - -INFO:tensorflow:loss = 2.3034592, step = 300 (0.460 sec) - -INFO:tensorflow:global_step/sec: 218.917 - -INFO:tensorflow:global_step/sec: 218.917 - -INFO:tensorflow:loss = 2.3013198, step = 400 (0.457 sec) - -INFO:tensorflow:loss = 2.3013198, step = 400 (0.457 sec) - -INFO:tensorflow:global_step/sec: 219.726 - -INFO:tensorflow:global_step/sec: 219.726 - -INFO:tensorflow:loss = 2.3037362, step = 500 (0.455 sec) - -INFO:tensorflow:loss = 2.3037362, step = 500 (0.455 sec) - -INFO:tensorflow:global_step/sec: 219.401 - -INFO:tensorflow:global_step/sec: 219.401 - -INFO:tensorflow:loss = 2.3062348, step = 600 (0.455 sec) - -INFO:tensorflow:loss = 2.3062348, step = 600 (0.455 sec) - -INFO:tensorflow:global_step/sec: 220.068 - -INFO:tensorflow:global_step/sec: 220.068 - -INFO:tensorflow:loss = 2.300187, step = 700 (0.455 sec) - -INFO:tensorflow:loss = 2.300187, step = 700 (0.455 sec) - -INFO:tensorflow:global_step/sec: 246.384 - -INFO:tensorflow:global_step/sec: 246.384 - -INFO:tensorflow:loss = 2.30475, step = 800 (0.405 sec) - -INFO:tensorflow:loss = 2.30475, step = 800 (0.405 sec) - -INFO:tensorflow:global_step/sec: 587.13 - -INFO:tensorflow:global_step/sec: 587.13 - -INFO:tensorflow:loss = 2.3031988, step = 900 (0.170 sec) - -INFO:tensorflow:loss = 2.3031988, step = 900 (0.170 sec) - -INFO:tensorflow:Calling checkpoint listeners before saving checkpoint 938... - -INFO:tensorflow:Calling checkpoint listeners before saving checkpoint 938... - -INFO:tensorflow:Saving checkpoints for 938 into /tmp/multiworker/model.ckpt. - -INFO:tensorflow:Saving checkpoints for 938 into /tmp/multiworker/model.ckpt. - -INFO:tensorflow:Calling checkpoint listeners after saving checkpoint 938... - -INFO:tensorflow:Calling checkpoint listeners after saving checkpoint 938... - -INFO:tensorflow:Calling model_fn. - -INFO:tensorflow:Calling model_fn. - -INFO:tensorflow:Done calling model_fn. - -INFO:tensorflow:Done calling model_fn. - -INFO:tensorflow:Starting evaluation at 2020-09-22T19:53:28Z - -INFO:tensorflow:Starting evaluation at 2020-09-22T19:53:28Z - -INFO:tensorflow:Graph was finalized. - -INFO:tensorflow:Graph was finalized. - -INFO:tensorflow:Restoring parameters from /tmp/multiworker/model.ckpt-938 - -INFO:tensorflow:Restoring parameters from /tmp/multiworker/model.ckpt-938 - -INFO:tensorflow:Running local_init_op. - -INFO:tensorflow:Running local_init_op. - -INFO:tensorflow:Done running local_init_op. - -INFO:tensorflow:Done running local_init_op. - -INFO:tensorflow:Evaluation [10/100] - -INFO:tensorflow:Evaluation [10/100] - -INFO:tensorflow:Evaluation [20/100] - -INFO:tensorflow:Evaluation [20/100] - -INFO:tensorflow:Evaluation [30/100] - -INFO:tensorflow:Evaluation [30/100] - -INFO:tensorflow:Evaluation [40/100] - -INFO:tensorflow:Evaluation [40/100] - -INFO:tensorflow:Evaluation [50/100] - -INFO:tensorflow:Evaluation [50/100] - -INFO:tensorflow:Evaluation [60/100] - -INFO:tensorflow:Evaluation [60/100] - -INFO:tensorflow:Evaluation [70/100] - -INFO:tensorflow:Evaluation [70/100] - -INFO:tensorflow:Evaluation [80/100] - -INFO:tensorflow:Evaluation [80/100] - -INFO:tensorflow:Evaluation [90/100] - -INFO:tensorflow:Evaluation [90/100] - -INFO:tensorflow:Evaluation [100/100] - -INFO:tensorflow:Evaluation [100/100] - -INFO:tensorflow:Inference Time : 0.98988s - -INFO:tensorflow:Inference Time : 0.98988s - -INFO:tensorflow:Finished evaluation at 2020-09-22-19:53:29 - -INFO:tensorflow:Finished evaluation at 2020-09-22-19:53:29 - -INFO:tensorflow:Saving dict for global step 938: global_step = 938, loss = 2.3031592 - -INFO:tensorflow:Saving dict for global step 938: global_step = 938, loss = 2.3031592 - -INFO:tensorflow:Saving 'checkpoint_path' summary for global step 938: /tmp/multiworker/model.ckpt-938 - -INFO:tensorflow:Saving 'checkpoint_path' summary for global step 938: /tmp/multiworker/model.ckpt-938 - -INFO:tensorflow:Loss for final step: 1.1519132. - -INFO:tensorflow:Loss for final step: 1.1519132. - -({'loss': 2.3031592, 'global_step': 938}, []) - -``` - -# 优化训练后的模型性能 - -现在你已经有了由 [`tf.distribute.Strategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy) 的模型和能支持多工作器的 Estimator。你可以尝试使用下列技巧来优化多工作器训练的性能。 - -* *增加单批次的大小:* 此处的批次大小指的是每个 GPU 上的批次大小。通常来说,最大的批次大小应该适应 GPU 的内存大小。 -* *变量转换:* 尽可能将变量转换成 `tf.float`。官方的 ResNet 模型包括了如何完成的[样例](https://github.com/tensorflow/models/blob/8367cf6dabe11adf7628541706b660821f397dce/official/resnet/resnet_model.py#L466)。 -* *使用集群通信:* `MultiWorkerMirroredStrategy` 提供了好几种[集群通信的实现](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/distribute/cross_device_ops.py). - * `RING` 实现了基于环状的集群,使用了 gRPC 作为跨主机通讯层。 - * `NCCL` 使用了 [英伟达的 NCCL](https://developer.nvidia.com/nccl) 来实现集群。 - * `AUTO` 将选择延后至运行时。 - -集群实现的最优选择不仅基于 GPU 的数量和种类,也基于集群间的通信网络。想要覆盖自动的选项,需要指明 `MultiWorkerMirroredStrategy` 的构造器里的 `communication` 参数,例如让 `communication=tf.distribute.experimental.CollectiveCommunication.NCCL` 。 - -## 更多的代码示例 - -1. [端到端的示例](https://github.com/tensorflow/ecosystem/tree/master/distribution_strategy)里使用了 Kubernetes 模板。在这个例子里我们一开始使用了 Keras 模型,并使用了 [`tf.keras.estimator.model_to_estimator`](https://tensorflow.google.cn/api_docs/python/tf/keras/estimator/model_to_estimator) API 将其转换成了 Estimator。 -2. 官方的 [ResNet50](https://github.com/tensorflow/models/blob/master/official/resnet/imagenet_main.py) 模型,我们可以使用 `MirroredStrategy` 或 `MultiWorkerMirroredStrategy` 来训练它。 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/038.md b/Tensorflow/TensorFlow2.0/038.md deleted file mode 100644 index 42f9c185..00000000 --- a/Tensorflow/TensorFlow2.0/038.md +++ /dev/null @@ -1,524 +0,0 @@ -# 使用分布策略保存和加载模型 - -> 原文:[https://tensorflow.google.cn/tutorials/distribute/save_and_load](https://tensorflow.google.cn/tutorials/distribute/save_and_load) - -## 概述 - -在训练期间一般需要保存和加载模型。有两组用于保存和加载 Keras 模型的 API:高级 API 和低级 API。本教程演示了在使用 [`tf.distribute.Strategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy) 时如何使用 SavedModel API。要了解 SavedModel 和序列化的相关概况,请参阅[保存的模型指南](https://tensorflow.google.cn/guide/saved_model)和 [Keras 模型序列化指南](https://tensorflow.google.cn/guide/keras/save_and_serialize)。让我们从一个简单的示例开始: - -导入依赖项: - -```py -import tensorflow_datasets as tfds - -import tensorflow as tf -tfds.disable_progress_bar() -``` - -使用 [`tf.distribute.Strategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy) 准备数据和模型: - -```py -mirrored_strategy = tf.distribute.MirroredStrategy() - -def get_data(): - datasets, ds_info = tfds.load(name='mnist', with_info=True, as_supervised=True) - mnist_train, mnist_test = datasets['train'], datasets['test'] - - BUFFER_SIZE = 10000 - - BATCH_SIZE_PER_REPLICA = 64 - BATCH_SIZE = BATCH_SIZE_PER_REPLICA * mirrored_strategy.num_replicas_in_sync - - def scale(image, label): - image = tf.cast(image, tf.float32) - image /= 255 - - return image, label - - train_dataset = mnist_train.map(scale).cache().shuffle(BUFFER_SIZE).batch(BATCH_SIZE) - eval_dataset = mnist_test.map(scale).batch(BATCH_SIZE) - - return train_dataset, eval_dataset - -def get_model(): - with mirrored_strategy.scope(): - model = tf.keras.Sequential([ - tf.keras.layers.Conv2D(32, 3, activation='relu', input_shape=(28, 28, 1)), - tf.keras.layers.MaxPooling2D(), - tf.keras.layers.Flatten(), - tf.keras.layers.Dense(64, activation='relu'), - tf.keras.layers.Dense(10) - ]) - - model.compile(loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True), - optimizer=tf.keras.optimizers.Adam(), - metrics=['accuracy']) - return model -``` - -```py -INFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:GPU:0',) - -``` - -训练模型: - -```py -model = get_model() -train_dataset, eval_dataset = get_data() -model.fit(train_dataset, epochs=2) -``` - -```py -Epoch 1/2 -WARNING:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/data/ops/multi_device_iterator_ops.py:601: get_next_as_optional (from tensorflow.python.data.ops.iterator_ops) is deprecated and will be removed in a future version. -Instructions for updating: -Use `tf.data.Iterator.get_next_as_optional()` instead. - -Warning:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/data/ops/multi_device_iterator_ops.py:601: get_next_as_optional (from tensorflow.python.data.ops.iterator_ops) is deprecated and will be removed in a future version. -Instructions for updating: -Use `tf.data.Iterator.get_next_as_optional()` instead. - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -938/938 [==============================] - 4s 5ms/step - loss: 0.1971 - accuracy: 0.9421 -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -INFO:tensorflow:Reduce to /job:localhost/replica:0/task:0/device:CPU:0 then broadcast to ('/job:localhost/replica:0/task:0/device:CPU:0',). - -Epoch 2/2 -938/938 [==============================] - 3s 3ms/step - loss: 0.0662 - accuracy: 0.9801 - - - -``` - -## 保存和加载模型 - -现在,您已经有一个简单的模型可供使用,让我们了解一下如何保存/加载 API。有两组可用的 API: - -* 高级 Keras `model.save` 和 [`tf.keras.models.load_model`](https://tensorflow.google.cn/api_docs/python/tf/keras/models/load_model) -* 低级 [`tf.saved_model.save`](https://tensorflow.google.cn/api_docs/python/tf/saved_model/save) 和 [`tf.saved_model.load`](https://tensorflow.google.cn/api_docs/python/tf/saved_model/load) - -### Keras API - -以下为使用 Keras API 保存和加载模型的示例: - -```py -keras_model_path = "/tmp/keras_save" -model.save(keras_model_path) # save() should be called out of strategy scope -``` - -```py -WARNING:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/training/tracking/tracking.py:111: Model.state_updates (from tensorflow.python.keras.engine.training) is deprecated and will be removed in a future version. -Instructions for updating: -This property should not be used in TensorFlow 2.0, as updates are applied automatically. - -Warning:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/training/tracking/tracking.py:111: Model.state_updates (from tensorflow.python.keras.engine.training) is deprecated and will be removed in a future version. -Instructions for updating: -This property should not be used in TensorFlow 2.0, as updates are applied automatically. - -Warning:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/training/tracking/tracking.py:111: Layer.updates (from tensorflow.python.keras.engine.base_layer) is deprecated and will be removed in a future version. -Instructions for updating: -This property should not be used in TensorFlow 2.0, as updates are applied automatically. - -Warning:tensorflow:From /tmpfs/src/tf_docs_env/lib/python3.6/site-packages/tensorflow/python/training/tracking/tracking.py:111: Layer.updates (from tensorflow.python.keras.engine.base_layer) is deprecated and will be removed in a future version. -Instructions for updating: -This property should not be used in TensorFlow 2.0, as updates are applied automatically. - -INFO:tensorflow:Assets written to: /tmp/keras_save/assets - -INFO:tensorflow:Assets written to: /tmp/keras_save/assets - -``` - -恢复无 [`tf.distribute.Strategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy) 的模型: - -```py -restored_keras_model = tf.keras.models.load_model(keras_model_path) -restored_keras_model.fit(train_dataset, epochs=2) -``` - -```py -Epoch 1/2 -938/938 [==============================] - 3s 3ms/step - loss: 0.0480 - accuracy: 0.0990 -Epoch 2/2 -938/938 [==============================] - 2s 2ms/step - loss: 0.0334 - accuracy: 0.0989 - - - -``` - -恢复模型后,您可以继续在它上面进行训练,甚至无需再次调用 `compile()`,因为在保存之前已经对其进行了编译。模型以 TensorFlow 的标准 `SavedModel` proto 格式保存。有关更多信息,请参阅 [`saved_model` 格式指南](https://tensorflow.google.cn/guide/saved_model)。 - -现在,加载模型并使用 [`tf.distribute.Strategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy) 进行训练: - -```py -another_strategy = tf.distribute.OneDeviceStrategy("/cpu:0") -with another_strategy.scope(): - restored_keras_model_ds = tf.keras.models.load_model(keras_model_path) - restored_keras_model_ds.fit(train_dataset, epochs=2) -``` - -```py -Epoch 1/2 -938/938 [==============================] - 9s 9ms/step - loss: 0.0481 - accuracy: 0.0989 -Epoch 2/2 -938/938 [==============================] - 9s 9ms/step - loss: 0.0329 - accuracy: 0.0990 - -``` - -如您所见, [`tf.distribute.Strategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy) 可以按预期进行加载。此处使用的策略不必与保存前所用策略相同。 - -### [`tf.saved_model`](https://tensorflow.google.cn/api_docs/python/tf/saved_model) API - -现在,让我们看一下较低级别的 API。保存模型与 Keras API 类似: - -```py -model = get_model() # get a fresh model -saved_model_path = "/tmp/tf_save" -tf.saved_model.save(model, saved_model_path) -``` - -```py -INFO:tensorflow:Assets written to: /tmp/tf_save/assets - -INFO:tensorflow:Assets written to: /tmp/tf_save/assets - -``` - -可以使用 [`tf.saved_model.load()`](https://tensorflow.google.cn/api_docs/python/tf/saved_model/load) 进行加载。但是,由于该 API 级别较低(因此用例范围更广泛),所以不会返回 Keras 模型。相反,它返回一个对象,其中包含可用于进行推断的函数。例如: - -```py -DEFAULT_FUNCTION_KEY = "serving_default" -loaded = tf.saved_model.load(saved_model_path) -inference_func = loaded.signatures[DEFAULT_FUNCTION_KEY] -``` - -加载的对象可能包含多个函数,每个函数与一个键关联。`"serving_default"` 是使用已保存的 Keras 模型的推断函数的默认键。要使用此函数进行推断,请运行以下代码: - -```py -predict_dataset = eval_dataset.map(lambda image, label: image) -for batch in predict_dataset.take(1): - print(inference_func(batch)) -``` - -```py -{'dense_3': } - -``` - -您还可以采用分布式方式加载和进行推断: - -```py -another_strategy = tf.distribute.MirroredStrategy() -with another_strategy.scope(): - loaded = tf.saved_model.load(saved_model_path) - inference_func = loaded.signatures[DEFAULT_FUNCTION_KEY] - - dist_predict_dataset = another_strategy.experimental_distribute_dataset( - predict_dataset) - - # Calling the function in a distributed manner - for batch in dist_predict_dataset: - another_strategy.run(inference_func,args=(batch,)) -``` - -```py -INFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:GPU:0',) - -INFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:GPU:0',) - -Warning:tensorflow:Using MirroredStrategy eagerly has significant overhead currently. We will be working on improving this in the future, but for now please wrap `call_for_each_replica` or `experimental_run` or `experimental_run_v2` inside a tf.function to get the best performance. - -Warning:tensorflow:Using MirroredStrategy eagerly has significant overhead currently. We will be working on improving this in the future, but for now please wrap `call_for_each_replica` or `experimental_run` or `experimental_run_v2` inside a tf.function to get the best performance. - -Warning:tensorflow:Using MirroredStrategy eagerly has significant overhead currently. We will be working on improving this in the future, but for now please wrap `call_for_each_replica` or `experimental_run` or `experimental_run_v2` inside a tf.function to get the best performance. - -Warning:tensorflow:Using MirroredStrategy eagerly has significant overhead currently. We will be working on improving this in the future, but for now please wrap `call_for_each_replica` or `experimental_run` or `experimental_run_v2` inside a tf.function to get the best performance. - -Warning:tensorflow:Using MirroredStrategy eagerly has significant overhead currently. We will be working on improving this in the future, but for now please wrap `call_for_each_replica` or `experimental_run` or `experimental_run_v2` inside a tf.function to get the best performance. - -Warning:tensorflow:Using MirroredStrategy eagerly has significant overhead currently. We will be working on improving this in the future, but for now please wrap `call_for_each_replica` or `experimental_run` or `experimental_run_v2` inside a tf.function to get the best performance. - -Warning:tensorflow:Using MirroredStrategy eagerly has significant overhead currently. We will be working on improving this in the future, but for now please wrap `call_for_each_replica` or `experimental_run` or `experimental_run_v2` inside a tf.function to get the best performance. - -Warning:tensorflow:Using MirroredStrategy eagerly has significant overhead currently. We will be working on improving this in the future, but for now please wrap `call_for_each_replica` or `experimental_run` or `experimental_run_v2` inside a tf.function to get the best performance. - -Warning:tensorflow:Using MirroredStrategy eagerly has significant overhead currently. We will be working on improving this in the future, but for now please wrap `call_for_each_replica` or `experimental_run` or `experimental_run_v2` inside a tf.function to get the best performance. - -Warning:tensorflow:Using MirroredStrategy eagerly has significant overhead currently. We will be working on improving this in the future, but for now please wrap `call_for_each_replica` or `experimental_run` or `experimental_run_v2` inside a tf.function to get the best performance. - -``` - -调用已恢复的函数只是基于已保存模型的前向传递(预测)。如果您想继续训练加载的函数,或者将加载的函数嵌入到更大的模型中,应如何操作? 通常的做法是将此加载对象包装到 Keras 层以实现此目的。幸运的是,[TF Hub](https://tensorflow.google.cn/hub) 为此提供了 [hub.KerasLayer](https://github.com/tensorflow/hub/blob/master/tensorflow_hub/keras_layer.py),如下所示: - -```py -import tensorflow_hub as hub - -def build_model(loaded): - x = tf.keras.layers.Input(shape=(28, 28, 1), name='input_x') - # Wrap what's loaded to a KerasLayer - keras_layer = hub.KerasLayer(loaded, trainable=True)(x) - model = tf.keras.Model(x, keras_layer) - return model - -another_strategy = tf.distribute.MirroredStrategy() -with another_strategy.scope(): - loaded = tf.saved_model.load(saved_model_path) - model = build_model(loaded) - - model.compile(loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True), - optimizer=tf.keras.optimizers.Adam(), - metrics=['accuracy']) - model.fit(train_dataset, epochs=2) -``` - -```py -INFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:GPU:0',) - -INFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:GPU:0',) - -Epoch 1/2 -938/938 [==============================] - 3s 3ms/step - loss: 0.2059 - accuracy: 0.9393 -Epoch 2/2 -938/938 [==============================] - 3s 3ms/step - loss: 0.0681 - accuracy: 0.9799 - -``` - -如您所见,[`hub.KerasLayer`](https://tensorflow.google.cn/hub/api_docs/python/hub/KerasLayer) 可将从 [`tf.saved_model.load()`](https://tensorflow.google.cn/api_docs/python/tf/saved_model/load) 加载回的结果包装到可供构建其他模型的 Keras 层。这对于迁移学习非常实用。 - -### 我应使用哪种 API? - -对于保存,如果您使用的是 Keras 模型,那么始终建议使用 Keras 的 `model.save()` API。如果您所保存的不是 Keras 模型,那么您只能选择使用较低级的 API。 - -对于加载,使用哪种 API 取决于您要从加载的 API 中获得什么。如果您无法或不想获取 Keras 模型,请使用 [`tf.saved_model.load()`](https://tensorflow.google.cn/api_docs/python/tf/saved_model/load)。否则,请使用 [`tf.keras.models.load_model()`](https://tensorflow.google.cn/api_docs/python/tf/keras/models/load_model)。请注意,只有保存 Keras 模型后,才能恢复 Keras 模型。 - -可以混合使用 API。您可以使用 `model.save` 保存 Keras 模型,并使用低级 API [`tf.saved_model.load`](https://tensorflow.google.cn/api_docs/python/tf/saved_model/load) 加载非 Keras 模型。 - -```py -model = get_model() - -# Saving the model using Keras's save() API -model.save(keras_model_path) - -another_strategy = tf.distribute.MirroredStrategy() -# Loading the model using lower level API -with another_strategy.scope(): - loaded = tf.saved_model.load(keras_model_path) -``` - -```py -INFO:tensorflow:Assets written to: /tmp/keras_save/assets - -INFO:tensorflow:Assets written to: /tmp/keras_save/assets - -INFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:GPU:0',) - -INFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:GPU:0',) - -``` - -### 警告 - -有一种特殊情况,您的 Keras 模型没有明确定义的输入。例如,可以创建没有任何输入形状的序贯模型 (`Sequential([Dense(3), ...]`)。子类化模型在初始化后也没有明确定义的输入。在这种情况下,在保存和加载时都应坚持使用较低级别的 API,否则会出现错误。 - -要检查您的模型是否具有明确定义的输入,只需检查 `model.inputs` 是否为 `None`。如果非 `None`,则一切正常。在 `.fit`、`.evaluate`、`.predict` 中使用模型,或调用模型 (`model(inputs)`) 时,输入形状将自动定义。 - -以下为示例: - -```py -class SubclassedModel(tf.keras.Model): - - output_name = 'output_layer' - - def __init__(self): - super(SubclassedModel, self).__init__() - self._dense_layer = tf.keras.layers.Dense( - 5, dtype=tf.dtypes.float32, name=self.output_name) - - def call(self, inputs): - return self._dense_layer(inputs) - -my_model = SubclassedModel() -# my_model.save(keras_model_path) # ERROR! -tf.saved_model.save(my_model, saved_model_path) -``` - -```py -WARNING:tensorflow:Skipping full serialization of Keras layer <__main__.SubclassedModel object at 0x7f96b1c92320>, because it is not built. - -Warning:tensorflow:Skipping full serialization of Keras layer <__main__.SubclassedModel object at 0x7f96b1c92320>, because it is not built. - -Warning:tensorflow:Skipping full serialization of Keras layer , because it is not built. - -Warning:tensorflow:Skipping full serialization of Keras layer , because it is not built. - -INFO:tensorflow:Assets written to: /tmp/tf_save/assets - -INFO:tensorflow:Assets written to: /tmp/tf_save/assets - -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/039.md b/Tensorflow/TensorFlow2.0/039.md deleted file mode 100644 index b2995dda..00000000 --- a/Tensorflow/TensorFlow2.0/039.md +++ /dev/null @@ -1,2216 +0,0 @@ -# Distributed Input - -> 原文:[https://tensorflow.google.cn/tutorials/distribute/input](https://tensorflow.google.cn/tutorials/distribute/input) - -The [tf.distribute](https://tensorflow.google.cn/guide/distributed_training) APIs provide an easy way for users to scale their training from a single machine to multiple machines. When scaling their model, users also have to distribute their input across multiple devices. [`tf.distribute`](https://tensorflow.google.cn/api_docs/python/tf/distribute) provides APIs using which you can automatically distribute your input across devices. - -This guide will show you the different ways in which you can create distributed dataset and iterators using [`tf.distribute`](https://tensorflow.google.cn/api_docs/python/tf/distribute) APIs. Additionally, the following topics will be covered: - -* Usage, sharding and batching options when using [`tf.distribute.Strategy.experimental_distribute_dataset`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy#experimental_distribute_dataset) and `tf.distribute.Strategy.experimental_distribute_datasets_from_function`. -* Different ways in which you can iterate over the distributed dataset. -* Differences between [`tf.distribute.Strategy.experimental_distribute_dataset`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy#experimental_distribute_dataset)/`tf.distribute.Strategy.experimental_distribute_datasets_from_function` APIs and [`tf.data`](https://tensorflow.google.cn/api_docs/python/tf/data) APIs as well any limitations that users may come across in their usage. - -This guide does not cover usage of distributed input with Keras APIs. - -## Distributed Datasets - -To use [`tf.distribute`](https://tensorflow.google.cn/api_docs/python/tf/distribute) APIs to scale, it is recommended that users use [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) to represent their input. [`tf.distribute`](https://tensorflow.google.cn/api_docs/python/tf/distribute) has been made to work efficiently with [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) (for example, automatic prefetch of data onto each accelerator device) with performance optimizations being regularly incorporated into the implementation. If you have a use case for using something other than [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset), please refer a later [section](/tutorials/distribute/%22tensorinputs%22) in this guide. In a non distributed training loop, users first create a [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) instance and then iterate over the elements. For example: - -```py -import tensorflow as tf - -# Helper libraries -import numpy as np -import os - -print(tf.__version__) -``` - -```py -2.4.0 - -``` - -```py -global_batch_size = 16 -# Create a tf.data.Dataset object. -dataset = tf.data.Dataset.from_tensors(([1.], [1.])).repeat(100).batch(global_batch_size) - -@tf.function -def train_step(inputs): - features, labels = inputs - return labels - 0.3 * features - -# Iterate over the dataset using the for..in construct. -for inputs in dataset: - print(train_step(inputs)) -``` - -```py -tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7]], shape=(4, 1), dtype=float32) - -``` - -To allow users to use [`tf.distribute`](https://tensorflow.google.cn/api_docs/python/tf/distribute) strategy with minimal changes to a user’s existing code, two APIs were introduced which would distribute a [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) instance and return a distributed dataset object. A user could then iterate over this distributed dataset instance and train their model as before. Let us now look at the two APIs - [`tf.distribute.Strategy.experimental_distribute_dataset`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy#experimental_distribute_dataset) and `tf.distribute.Strategy.experimental_distribute_datasets_from_function` in more detail: - -### [`tf.distribute.Strategy.experimental_distribute_dataset`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy#experimental_distribute_dataset) - -#### Usage - -This API takes a [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) instance as input and returns a [`tf.distribute.DistributedDataset`](https://tensorflow.google.cn/api_docs/python/tf/distribute/DistributedDataset) instance. You should batch the input dataset with a value that is equal to the global batch size. This global batch size is the number of samples that you want to process across all devices in 1 step. You can iterate over this distributed dataset in a Pythonic fashion or create an iterator using `iter`. The returned object is not a [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) instance and does not support any other APIs that transform or inspect the dataset in any way. This is the recommended API if you don’t have specific ways in which you want to shard your input over different replicas. - -```py -global_batch_size = 16 -mirrored_strategy = tf.distribute.MirroredStrategy() - -dataset = tf.data.Dataset.from_tensors(([1.], [1.])).repeat(100).batch(global_batch_size) -# Distribute input using the `experimental_distribute_dataset`. -dist_dataset = mirrored_strategy.experimental_distribute_dataset(dataset) -# 1 global batch of data fed to the model in 1 step. -print(next(iter(dist_dataset))) -``` - -```py -INFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:GPU:0',) -(, ) - -``` - -#### Properties - -##### Batching - -[`tf.distribute`](https://tensorflow.google.cn/api_docs/python/tf/distribute) rebatches the input [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) instance with a new batch size that is equal to the global batch size divided by the number of replicas in sync. The number of replicas in sync is equal to the number of devices that are taking part in the gradient allreduce during training. When a user calls `next` on the distributed iterator, a per replica batch size of data is returned on each replica. The rebatched dataset cardinality will always be a multiple of the number of replicas. Here are a couple of examples: - -* `tf.data.Dataset.range(6).batch(4, drop_remainder=False)` - - * Without distribution: - * Batch 1: [0, 1, 2, 3] - * Batch 2: [4, 5] - * With distribution over 2 replicas. The last batch ([4, 5]) is split between 2 replicas. - - * Batch 1: - - * Replica 1:[0, 1] - * Replica 2:[2, 3] - * Batch 2: - - * Replica 2: [4] - * Replica 2: [5] -* `tf.data.Dataset.range(4).batch(4)` - - * Without distribution: - * Batch 1: [[0], [1], [2], [3]] - * With distribution over 5 replicas: - * Batch 1: - * Replica 1: [0] - * Replica 2: [1] - * Replica 3: [2] - * Replica 4: [3] - * Replica 5: [] -* `tf.data.Dataset.range(8).batch(4)` - - * Without distribution: - * Batch 1: [0, 1, 2, 3] - * Batch 2: [4, 5, 6, 7] - * With distribution over 3 replicas: - * Batch 1: - * Replica 1: [0, 1] - * Replica 2: [2, 3] - * Replica 3: [] - * Batch 2: - * Replica 1: [4, 5] - * Replica 2: [6, 7] - * Replica 3: [] - -**Note:** The above examples only illustrate how a global batch is split on different replicas. It is not advisable to depend on the actual values that might end up on each replica as it can change depending on the implementation. - -Rebatching the dataset has a space complexity that increases linearly with the number of replicas. This means that for the multi worker training use case the input pipeline can run into OOM errors. - -##### Sharding - -[`tf.distribute`](https://tensorflow.google.cn/api_docs/python/tf/distribute) also autoshards the input dataset in multi worker training with `MultiWorkerMirroredStrategy` and `TPUStrategy`. Each dataset is created on the CPU device of the worker. Autosharding a dataset over a set of workers means that each worker is assigned a subset of the entire dataset (if the right [`tf.data.experimental.AutoShardPolicy`](https://tensorflow.google.cn/api_docs/python/tf/data/experimental/AutoShardPolicy) is set). This is to ensure that at each step, a global batch size of non overlapping dataset elements will be processed by each worker. Autosharding has a couple of different options that can be specified using [`tf.data.experimental.DistributeOptions`](https://tensorflow.google.cn/api_docs/python/tf/data/experimental/DistributeOptions). Note that there is no autosharding in multi worker training with `ParameterServerStrategy`, and more information on dataset creation with this strategy can be found in the [Parameter Server Strategy tutorial](/tutorials/distribute/parameter_server_training). - -```py -dataset = tf.data.Dataset.from_tensors(([1.],[1.])).repeat(64).batch(16) -options = tf.data.Options() -options.experimental_distribute.auto_shard_policy = tf.data.experimental.AutoShardPolicy.DATA -dataset = dataset.with_options(options) -``` - -There are three different options that you can set for the [`tf.data.experimental.AutoShardPolicy`](https://tensorflow.google.cn/api_docs/python/tf/data/experimental/AutoShardPolicy): - -* AUTO: This is the default option which means an attempt will be made to shard by FILE. The attempt to shard by FILE fails if a file-based dataset is not detected. [`tf.distribute`](https://tensorflow.google.cn/api_docs/python/tf/distribute) will then fall back to sharding by DATA. Note that if the input dataset is file-based but the number of files is less than the number of workers, an `InvalidArgumentError` will be raised. If this happens, explicitly set the policy to [`AutoShardPolicy.DATA`](https://tensorflow.google.cn/api_docs/python/tf/data/experimental/AutoShardPolicy#DATA), or split your input source into smaller files such that number of files is greater than number of workers. -* FILE: This is the option if you want to shard the input files over all the workers. You should use this option if the number of input files is much larger than the number of workers and the data in the files is evenly distributed. The downside of this option is having idle workers if the data in the files is not evenly distributed. If the number of files is less than the number of workers, an `InvalidArgumentError` will be raised. If this happens, explicitly set the policy to [`AutoShardPolicy.DATA`](https://tensorflow.google.cn/api_docs/python/tf/data/experimental/AutoShardPolicy#DATA). For example, let us distribute 2 files over 2 workers with 1 replica each. File 1 contains [0, 1, 2, 3, 4, 5] and File 2 contains [6, 7, 8, 9, 10, 11]. Let the total number of replicas in sync be 2 and global batch size be 4. - - * Worker 0: - * Batch 1 = Replica 1: [0, 1] - * Batch 2 = Replica 1: [2, 3] - * Batch 3 = Replica 1: [4] - * Batch 4 = Replica 1: [5] - * Worker 1: - * Batch 1 = Replica 2: [6, 7] - * Batch 2 = Replica 2: [8, 9] - * Batch 3 = Replica 2: [10] - * Batch 4 = Replica 2: [11] -* DATA: This will autoshard the elements across all the workers. Each of the workers will read the entire dataset and only process the shard assigned to it. All other shards will be discarded. This is generally used if the number of input files is less than the number of workers and you want better sharding of data across all workers. The downside is that the entire dataset will be read on each worker. For example, let us distribute 1 files over 2 workers. File 1 contains [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]. Let the total number of replicas in sync be 2. - - * Worker 0: - * Batch 1 = Replica 1: [0, 1] - * Batch 2 = Replica 1: [4, 5] - * Batch 3 = Replica 1: [8, 9] - * Worker 1: - * Batch 1 = Replica 2: [2, 3] - * Batch 2 = Replica 2: [6, 7] - * Batch 3 = Replica 2: [10, 11] -* OFF: If you turn off autosharding, each worker will process all the data. For example, let us distribute 1 files over 2 workers. File 1 contains [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]. Let the total number of replicas in sync be 2\. Then each worker will see the following distribution: - - * Worker 0: - * Batch 1 = Replica 1: [0, 1] - * Batch 2 = Replica 1: [2, 3] - * Batch 3 = Replica 1: [4, 5] - * Batch 4 = Replica 1: [6, 7] - * Batch 5 = Replica 1: [8, 9] - * Batch 6 = Replica 1: [10, 11] - - * Worker 1: - - * Batch 1 = Replica 2: [0, 1] - - * Batch 2 = Replica 2: [2, 3] - - * Batch 3 = Replica 2: [4, 5] - - * Batch 4 = Replica 2: [6, 7] - - * Batch 5 = Replica 2: [8, 9] - - * Batch 6 = Replica 2: [10, 11] - -##### Prefetching - -By default, [`tf.distribute`](https://tensorflow.google.cn/api_docs/python/tf/distribute) adds a prefetch transformation at the end of the user provided [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) instance. The argument to the prefetch transformation which is `buffer_size` is equal to the number of replicas in sync. - -### `tf.distribute.Strategy.experimental_distribute_datasets_from_function` - -#### Usage - -This API takes an input function and returns a [`tf.distribute.DistributedDataset`](https://tensorflow.google.cn/api_docs/python/tf/distribute/DistributedDataset) instance. The input function that users pass in has a [`tf.distribute.InputContext`](https://tensorflow.google.cn/api_docs/python/tf/distribute/InputContext) argument and should return a [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) instance. With this API, [`tf.distribute`](https://tensorflow.google.cn/api_docs/python/tf/distribute) does not make any further changes to the user’s [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) instance returned from the input function. It is the responsibility of the user to batch and shard the dataset. [`tf.distribute`](https://tensorflow.google.cn/api_docs/python/tf/distribute) calls the input function on the CPU device of each of the workers. Apart from allowing users to specify their own batching and sharding logic, this API also demonstrates better scalability and performance compared to [`tf.distribute.Strategy.experimental_distribute_dataset`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy#experimental_distribute_dataset) when used for multi worker training. - -```py -mirrored_strategy = tf.distribute.MirroredStrategy() - -def dataset_fn(input_context): - batch_size = input_context.get_per_replica_batch_size(global_batch_size) - dataset = tf.data.Dataset.from_tensors(([1.],[1.])).repeat(64).batch(16) - dataset = dataset.shard( - input_context.num_input_pipelines, input_context.input_pipeline_id) - dataset = dataset.batch(batch_size) - dataset = dataset.prefetch(2) # This prefetches 2 batches per device. - return dataset - -dist_dataset = mirrored_strategy.experimental_distribute_datasets_from_function(dataset_fn) -``` - -```py -INFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:GPU:0',) -WARNING:tensorflow:From :12: StrategyBase.experimental_distribute_datasets_from_function (from tensorflow.python.distribute.distribute_lib) is deprecated and will be removed in a future version. -Instructions for updating: -rename to distribute_datasets_from_function - -``` - -#### Properties - -##### Batching - -The [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) instance that is the return value of the input function should be batched using the per replica batch size. The per replica batch size is the global batch size divided by the number of replicas that are taking part in sync training. This is because [`tf.distribute`](https://tensorflow.google.cn/api_docs/python/tf/distribute) calls the input function on the CPU device of each of the workers. The dataset that is created on a given worker should be ready to use by all the replicas on that worker. - -##### Sharding - -The [`tf.distribute.InputContext`](https://tensorflow.google.cn/api_docs/python/tf/distribute/InputContext) object that is implicitly passed as an argument to the user’s input function is created by [`tf.distribute`](https://tensorflow.google.cn/api_docs/python/tf/distribute) under the hood. It has information about the number of workers, current worker id etc. This input function can handle sharding as per policies set by the user using these properties that are part of the [`tf.distribute.InputContext`](https://tensorflow.google.cn/api_docs/python/tf/distribute/InputContext) object. - -##### Prefetching - -[`tf.distribute`](https://tensorflow.google.cn/api_docs/python/tf/distribute) does not add a prefetch transformation at the end of the [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) returned by the user provided input function. - -**Note:** Both [`tf.distribute.Strategy.experimental_distribute_dataset`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy#experimental_distribute_dataset) and `tf.distribute.Strategy.experimental_distribute_datasets_from_function` return **[`tf.distribute.DistributedDataset`](https://tensorflow.google.cn/api_docs/python/tf/distribute/DistributedDataset) instances that are not of type [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset)**. You can iterate over these instances (as shown in the Distributed Iterators section) and use the `element_spec` property. - -## Distributed Iterators - -Similar to non-distributed [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) instances, you will need to create an iterator on the [`tf.distribute.DistributedDataset`](https://tensorflow.google.cn/api_docs/python/tf/distribute/DistributedDataset) instances to iterate over it and access the elements in the [`tf.distribute.DistributedDataset`](https://tensorflow.google.cn/api_docs/python/tf/distribute/DistributedDataset). The following are the ways in which you can create an [`tf.distribute.DistributedIterator`](https://tensorflow.google.cn/api_docs/python/tf/distribute/DistributedIterator) and use it to train your model: - -### Usages - -#### Use a Pythonic for loop construct - -You can use a user friendly Pythonic loop to iterate over the [`tf.distribute.DistributedDataset`](https://tensorflow.google.cn/api_docs/python/tf/distribute/DistributedDataset). The elements returned from the [`tf.distribute.DistributedIterator`](https://tensorflow.google.cn/api_docs/python/tf/distribute/DistributedIterator) can be a single [`tf.Tensor`](https://tensorflow.google.cn/api_docs/python/tf/Tensor) or a [`tf.distribute.DistributedValues`](https://tensorflow.google.cn/api_docs/python/tf/distribute/DistributedValues) which contains a value per replica. Placing the loop inside a [`tf.function`](https://tensorflow.google.cn/api_docs/python/tf/function) will give a performance boost. However, `break` and `return` are currently not supported for a loop over a [`tf.distribute.DistributedDataset`](https://tensorflow.google.cn/api_docs/python/tf/distribute/DistributedDataset) that is placed inside of a [`tf.function`](https://tensorflow.google.cn/api_docs/python/tf/function). - -```py -global_batch_size = 16 -mirrored_strategy = tf.distribute.MirroredStrategy() - -dataset = tf.data.Dataset.from_tensors(([1.],[1.])).repeat(100).batch(global_batch_size) -dist_dataset = mirrored_strategy.experimental_distribute_dataset(dataset) - -@tf.function -def train_step(inputs): - features, labels = inputs - return labels - 0.3 * features - -for x in dist_dataset: - # train_step trains the model using the dataset elements - loss = mirrored_strategy.run(train_step, args=(x,)) - print("Loss is ", loss) -``` - -```py -INFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:GPU:0',) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7]], shape=(4, 1), dtype=float32) - -``` - -#### Use `iter` to create an explicit iterator - -To iterate over the elements in a [`tf.distribute.DistributedDataset`](https://tensorflow.google.cn/api_docs/python/tf/distribute/DistributedDataset) instance, you can create a [`tf.distribute.DistributedIterator`](https://tensorflow.google.cn/api_docs/python/tf/distribute/DistributedIterator) using the `iter` API on it. With an explicit iterator, you can iterate for a fixed number of steps. In order to get the next element from an [`tf.distribute.DistributedIterator`](https://tensorflow.google.cn/api_docs/python/tf/distribute/DistributedIterator) instance `dist_iterator`, you can call `next(dist_iterator)`, `dist_iterator.get_next()`, or `dist_iterator.get_next_as_optional()`. The former two are essentially the same: - -```py -num_epochs = 10 -steps_per_epoch = 5 -for epoch in range(num_epochs): - dist_iterator = iter(dist_dataset) - for step in range(steps_per_epoch): - # train_step trains the model using the dataset elements - loss = mirrored_strategy.run(train_step, args=(next(dist_iterator),)) - # which is the same as - # loss = mirrored_strategy.run(train_step, args=(dist_iterator.get_next(),)) - print("Loss is ", loss) -``` - -```py -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) -Loss is tf.Tensor( -[[0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7] - [0.7]], shape=(16, 1), dtype=float32) - -``` - -With `next()` or [`tf.distribute.DistributedIterator.get_next()`](https://tensorflow.google.cn/api_docs/python/tf/distribute/DistributedIterator#get_next), if the [`tf.distribute.DistributedIterator`](https://tensorflow.google.cn/api_docs/python/tf/distribute/DistributedIterator) has reached its end, an OutOfRange error will be thrown. The client can catch the error on python side and continue doing other work such as checkpointing and evaluation. However, this will not work if you are using a host training loop (i.e., run multiple steps per [`tf.function`](https://tensorflow.google.cn/api_docs/python/tf/function)), which looks like: - -```py -@tf.function -def train_fn(iterator): - for _ in tf.range(steps_per_loop): - strategy.run(step_fn, args=(next(iterator),)) -``` - -`train_fn` contains multiple steps by wrapping the step body inside a [`tf.range`](https://tensorflow.google.cn/api_docs/python/tf/range). In this case, different iterations in the loop with no dependency could start in parallel, so an OutOfRange error can be triggered in later iterations before the computation of previous iterations finishes. Once an OutOfRange error is thrown, all the ops in the function will be terminated right away. If this is some case that you would like to avoid, an alternative that does not throw an OutOfRange error is [`tf.distribute.DistributedIterator.get_next_as_optional()`](https://tensorflow.google.cn/api_docs/python/tf/distribute/DistributedIterator#get_next_as_optional). `get_next_as_optional` returns a [`tf.experimental.Optional`](https://tensorflow.google.cn/api_docs/python/tf/experimental/Optional) which contains the next element or no value if the [`tf.distribute.DistributedIterator`](https://tensorflow.google.cn/api_docs/python/tf/distribute/DistributedIterator) has reached to an end. - -```py -# You can break the loop with get_next_as_optional by checking if the Optional contains value -global_batch_size = 4 -steps_per_loop = 5 -strategy = tf.distribute.MirroredStrategy(devices=["GPU:0", "CPU:0"]) - -dataset = tf.data.Dataset.range(9).batch(global_batch_size) -distributed_iterator = iter(strategy.experimental_distribute_dataset(dataset)) - -@tf.function -def train_fn(distributed_iterator): - for _ in tf.range(steps_per_loop): - optional_data = distributed_iterator.get_next_as_optional() - if not optional_data.has_value(): - break - per_replica_results = strategy.run(lambda x:x, args=(optional_data.get_value(),)) - tf.print(strategy.experimental_local_results(per_replica_results)) -train_fn(distributed_iterator) -``` - -```py -WARNING:tensorflow:There are non-GPU devices in `tf.distribute.Strategy`, not using nccl allreduce. -INFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:GPU:0', '/job:localhost/replica:0/task:0/device:CPU:0') -([0 1], [2 3]) -([4 5], [6 7]) -([8], []) - -``` - -## Using `element_spec` property - -If you pass the elements of a distributed dataset to a [`tf.function`](https://tensorflow.google.cn/api_docs/python/tf/function) and want a [`tf.TypeSpec`](https://tensorflow.google.cn/api_docs/python/tf/TypeSpec) guarantee, you can specify the `input_signature` argument of the [`tf.function`](https://tensorflow.google.cn/api_docs/python/tf/function). The output of a distributed dataset is [`tf.distribute.DistributedValues`](https://tensorflow.google.cn/api_docs/python/tf/distribute/DistributedValues) which can represent the input to a single device or multiple devices. To get the [`tf.TypeSpec`](https://tensorflow.google.cn/api_docs/python/tf/TypeSpec) corresponding to this distributed value you can use the `element_spec` property of the distributed dataset or distributed iterator object. - -```py -global_batch_size = 16 -epochs = 5 -steps_per_epoch = 5 -mirrored_strategy = tf.distribute.MirroredStrategy() - -dataset = tf.data.Dataset.from_tensors(([1.],[1.])).repeat(100).batch(global_batch_size) -dist_dataset = mirrored_strategy.experimental_distribute_dataset(dataset) - -@tf.function(input_signature=[dist_dataset.element_spec]) -def train_step(per_replica_inputs): - def step_fn(inputs): - return 2 * inputs - - return mirrored_strategy.run(step_fn, args=(per_replica_inputs,)) - -for _ in range(epochs): - iterator = iter(dist_dataset) - for _ in range(steps_per_epoch): - output = train_step(next(iterator)) - tf.print(output) -``` - -```py -INFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:GPU:0',) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) -([[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]], [[1] - [1] - [1] - ... - [1] - [1] - [1]]) - -``` - -## Partial Batches - -Partial batches are encountered when [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) instances that users create may contain batch sizes that are not evenly divisible by the number of replicas or when the cardinality of the dataset instance is not divisible by the batch size. This means that when the dataset is distributed over multiple replicas, the `next` call on some iterators will result in an OutOfRangeError. To handle this use case, [`tf.distribute`](https://tensorflow.google.cn/api_docs/python/tf/distribute) returns dummy batches of batch size 0 on replicas that do not have any more data to process. - -For the single worker case, if data is not returned by the `next` call on the iterator, dummy batches of 0 batch size are created and used along with the real data in the dataset. In the case of partial batches, the last global batch of data will contain real data alongside dummy batches of data. The stopping condition for processing data now checks if any of the replicas have data. If there is no data on any of the replicas, an OutOfRange error is thrown. - -For the multi worker case, the boolean value representing presence of data on each of the workers is aggregated using cross replica communication and this is used to identify if all the workers have finished processing the distributed dataset. Since this involves cross worker communication there is some performance penalty involved. - -## Caveats - -* When using [`tf.distribute.Strategy.experimental_distribute_dataset`](https://tensorflow.google.cn/api_docs/python/tf/distribute/Strategy#experimental_distribute_dataset) APIs with a multiple worker setup, users pass a [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) that reads from files. If the [`tf.data.experimental.AutoShardPolicy`](https://tensorflow.google.cn/api_docs/python/tf/data/experimental/AutoShardPolicy) is set to `AUTO` or `FILE`, the actual per step batch size may be smaller than the user defined global batch size. This can happen when the remaining elements in the file are less than the global batch size. Users can either exhaust the dataset without depending on the number of steps to run or set [`tf.data.experimental.AutoShardPolicy`](https://tensorflow.google.cn/api_docs/python/tf/data/experimental/AutoShardPolicy) to `DATA` to work around it. - -* Stateful dataset transformations are currently not supported with [`tf.distribute`](https://tensorflow.google.cn/api_docs/python/tf/distribute) and any stateful ops that the dataset may have are currently ignored. For example, if your dataset has a `map_fn` that uses [`tf.random.uniform`](https://tensorflow.google.cn/api_docs/python/tf/random/uniform) to rotate an image, then you have a dataset graph that depends on state (i.e the random seed) on the local machine where the python process is being executed. - -* Experimental [`tf.data.experimental.OptimizationOptions`](https://tensorflow.google.cn/api_docs/python/tf/data/experimental/OptimizationOptions) that are disabled by default can in certain contexts -- such as when used together with [`tf.distribute`](https://tensorflow.google.cn/api_docs/python/tf/distribute) -- cause a performance degradation. You should only enable them after you validate that they benefit the performance of your workload in a distribute setting. - -* Please refer to [this guide](https://tensorflow.google.cn/guide/data_performance) for how to optimize your input pipeline with [`tf.data`](https://tensorflow.google.cn/api_docs/python/tf/data) in general. A few additional tips: - - * If you have multiple workers and are using [`tf.data.Dataset.list_files`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#list_files) to create a dataset from all files matching one or more glob patterns, remember to set the `seed` argument or set `shuffle=False` so that each worker shard the file consistently. - - * If your input pipeline includes both shuffling the data on record level and parsing the data, unless the unparsed data is significantly larger than the parsed data (which is usually not the case), shuffle first and then parse, as shown in the following example. This may benefit memory usage and performance. - -```py -d = tf.data.Dataset.list_files(pattern, shuffle=False) -d = d.shard(num_workers, worker_index) -d = d.repeat(num_epochs) -d = d.shuffle(shuffle_buffer_size) -d = d.interleave(tf.data.TFRecordDataset, - cycle_length=num_readers, block_length=1) -d = d.map(parser_fn, num_parallel_calls=num_map_threads) -``` - -* [`tf.data.Dataset.shuffle(buffer_size, seed=None, reshuffle_each_iteration=None)`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#shuffle) maintain an internal buffer of `buffer_size` elements, and thus reducing `buffer_size` could aleviate OOM issue. - -* The order in which the data is processed by the workers when using `tf.distribute.experimental_distribute_dataset` or `tf.distribute.experimental_distribute_datasets_from_function` is not guaranteed. This is typically required if you are using [`tf.distribute`](https://tensorflow.google.cn/api_docs/python/tf/distribute) to scale prediction. You can however insert an index for each element in the batch and order outputs accordingly. The following snippet is an example of how to order outputs. - -**Note:** [`tf.distribute.MirroredStrategy()`](https://tensorflow.google.cn/api_docs/python/tf/distribute/MirroredStrategy) is used here for the sake of convenience. We only need to reorder inputs when we are using multiple workers and [`tf.distribute.MirroredStrategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/MirroredStrategy) is used to distribute training on a single worker. - -```py -mirrored_strategy = tf.distribute.MirroredStrategy() -dataset_size = 24 -batch_size = 6 -dataset = tf.data.Dataset.range(dataset_size).enumerate().batch(batch_size) -dist_dataset = mirrored_strategy.experimental_distribute_dataset(dataset) - -def predict(index, inputs): - outputs = 2 * inputs - return index, outputs - -result = {} -for index, inputs in dist_dataset: - output_index, outputs = mirrored_strategy.run(predict, args=(index, inputs)) - indices = list(mirrored_strategy.experimental_local_results(output_index)) - rindices = [] - for a in indices: - rindices.extend(a.numpy()) - outputs = list(mirrored_strategy.experimental_local_results(outputs)) - routputs = [] - for a in outputs: - routputs.extend(a.numpy()) - for i, value in zip(rindices, routputs): - result[i] = value - -print(result) -``` - -```py -INFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:GPU:0',) -WARNING:tensorflow:Using MirroredStrategy eagerly has significant overhead currently. We will be working on improving this in the future, but for now please wrap `call_for_each_replica` or `experimental_run` or `run` inside a tf.function to get the best performance. -WARNING:tensorflow:Using MirroredStrategy eagerly has significant overhead currently. We will be working on improving this in the future, but for now please wrap `call_for_each_replica` or `experimental_run` or `run` inside a tf.function to get the best performance. -WARNING:tensorflow:Using MirroredStrategy eagerly has significant overhead currently. We will be working on improving this in the future, but for now please wrap `call_for_each_replica` or `experimental_run` or `run` inside a tf.function to get the best performance. -WARNING:tensorflow:Using MirroredStrategy eagerly has significant overhead currently. We will be working on improving this in the future, but for now please wrap `call_for_each_replica` or `experimental_run` or `run` inside a tf.function to get the best performance. -{0: 0, 1: 2, 2: 4, 3: 6, 4: 8, 5: 10, 6: 12, 7: 14, 8: 16, 9: 18, 10: 20, 11: 22, 12: 24, 13: 26, 14: 28, 15: 30, 16: 32, 17: 34, 18: 36, 19: 38, 20: 40, 21: 42, 22: 44, 23: 46} - -``` - -## How do I distribute my data if I am not using a canonical tf.data.Dataset instance? - -Sometimes users cannot use a [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) to represent their input and subsequently the above mentioned APIs to distribute the dataset to multiple devices. In such cases you can use raw tensors or inputs from a generator. - -### Use experimental_distribute_values_from_function for arbitrary tensor inputs - -`strategy.run` accepts [`tf.distribute.DistributedValues`](https://tensorflow.google.cn/api_docs/python/tf/distribute/DistributedValues) which is the output of `next(iterator)`. To pass the tensor values, use `experimental_distribute_values_from_function` to construct [`tf.distribute.DistributedValues`](https://tensorflow.google.cn/api_docs/python/tf/distribute/DistributedValues) from raw tensors. - -```py -mirrored_strategy = tf.distribute.MirroredStrategy() -worker_devices = mirrored_strategy.extended.worker_devices - -def value_fn(ctx): - return tf.constant(1.0) - -distributed_values = mirrored_strategy.experimental_distribute_values_from_function(value_fn) -for _ in range(4): - result = mirrored_strategy.run(lambda x:x, args=(distributed_values,)) - print(result) -``` - -```py -INFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:GPU:0',) -WARNING:tensorflow:Using MirroredStrategy eagerly has significant overhead currently. We will be working on improving this in the future, but for now please wrap `call_for_each_replica` or `experimental_run` or `run` inside a tf.function to get the best performance. -tf.Tensor(1.0, shape=(), dtype=float32) -tf.Tensor(1.0, shape=(), dtype=float32) -tf.Tensor(1.0, shape=(), dtype=float32) -tf.Tensor(1.0, shape=(), dtype=float32) - -``` - -### Use tf.data.Dataset.from_generator if your input is from a generator - -If you have a generator function that you want to use, you can create a [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) instance using the `from_generator` API. - -**Note:** This is currently not supported for [`tf.distribute.TPUStrategy`](https://tensorflow.google.cn/api_docs/python/tf/distribute/TPUStrategy). - -```py -mirrored_strategy = tf.distribute.MirroredStrategy() -def input_gen(): - while True: - yield np.random.rand(4) - -# use Dataset.from_generator -dataset = tf.data.Dataset.from_generator( - input_gen, output_types=(tf.float32), output_shapes=tf.TensorShape([4])) -dist_dataset = mirrored_strategy.experimental_distribute_dataset(dataset) -iterator = iter(dist_dataset) -for _ in range(4): - mirrored_strategy.run(lambda x:x, args=(next(iterator),)) -``` - -```py -INFO:tensorflow:Using MirroredStrategy with devices ('/job:localhost/replica:0/task:0/device:GPU:0',) - -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/040.md b/Tensorflow/TensorFlow2.0/040.md deleted file mode 100644 index b580f28c..00000000 --- a/Tensorflow/TensorFlow2.0/040.md +++ /dev/null @@ -1 +0,0 @@ -# 图像 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/041.md b/Tensorflow/TensorFlow2.0/041.md deleted file mode 100644 index 2c2e17a8..00000000 --- a/Tensorflow/TensorFlow2.0/041.md +++ /dev/null @@ -1,207 +0,0 @@ -# 卷积神经网络(Convolutional Neural Network, CNN) - -> 原文:[https://tensorflow.google.cn/tutorials/images/cnn](https://tensorflow.google.cn/tutorials/images/cnn) - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs-l10n](https://github.com/tensorflow/docs-l10n) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -### 导入 TensorFlow - -```py -import tensorflow as tf - -from tensorflow.keras import datasets, layers, models -import matplotlib.pyplot as plt -``` - -### 下载并准备 CIFAR10 数据集 - -CIFAR10 数据集包含 10 类,共 60000 张彩色图片,每类图片有 6000 张。此数据集中 50000 个样例被作为训练集,剩余 10000 个样例作为测试集。类之间相互度立,不存在重叠的部分。 - -```py -(train_images, train_labels), (test_images, test_labels) = datasets.cifar10.load_data() - -# 将像素的值标准化至 0 到 1 的区间内。 -train_images, test_images = train_images / 255.0, test_images / 255.0 -``` - -### 验证数据 - -我们将测试集的前 25 张图片和类名打印出来,来确保数据集被正确加载。 - -```py -class_names = ['airplane', 'automobile', 'bird', 'cat', 'deer', - 'dog', 'frog', 'horse', 'ship', 'truck'] - -plt.figure(figsize=(10,10)) -for i in range(25): - plt.subplot(5,5,i+1) - plt.xticks([]) - plt.yticks([]) - plt.grid(False) - plt.imshow(train_images[i], cmap=plt.cm.binary) - # 由于 CIFAR 的标签是 array, - # 因此您需要额外的索引(index)。 - plt.xlabel(class_names[train_labels[i][0]]) -plt.show() -``` - -![png](img/25a15211c7a5c4ce6da843197b4b85eb.png) - -### 构造卷积神经网络模型 - -下方展示的 6 行代码声明了了一个常见卷积神经网络,由几个 [Conv2D](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Conv2D) 和 [MaxPooling2D](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/MaxPool2D) 层组成。 - -CNN 的输入是张量 (Tensor) 形式的 (image_height, image_width, color_channels),包含了图像高度、宽度及颜色信息。不需要输入 batch size。如果您不熟悉图像处理,颜色信息建议您使用 RGB 色彩模式,此模式下,`color_channels` 为 `(R,G,B)` 分别对应 RGB 的三个颜色通道(color channel)。在此示例中,我们的 CNN 输入,CIFAR 数据集中的图片,形状是 `(32, 32, 3)`。您可以在声明第一层时将形状赋值给参数 `input_shape` 。 - -```py -model = models.Sequential() -model.add(layers.Conv2D(32, (3, 3), activation='relu', input_shape=(32, 32, 3))) -model.add(layers.MaxPooling2D((2, 2))) -model.add(layers.Conv2D(64, (3, 3), activation='relu')) -model.add(layers.MaxPooling2D((2, 2))) -model.add(layers.Conv2D(64, (3, 3), activation='relu')) -``` - -我们声明的 CNN 结构是: - -```py -model.summary() -``` - -```py -Model: "sequential" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -conv2d (Conv2D) (None, 30, 30, 32) 896 -_________________________________________________________________ -max_pooling2d (MaxPooling2D) (None, 15, 15, 32) 0 -_________________________________________________________________ -conv2d_1 (Conv2D) (None, 13, 13, 64) 18496 -_________________________________________________________________ -max_pooling2d_1 (MaxPooling2 (None, 6, 6, 64) 0 -_________________________________________________________________ -conv2d_2 (Conv2D) (None, 4, 4, 64) 36928 -================================================================= -Total params: 56,320 -Trainable params: 56,320 -Non-trainable params: 0 -_________________________________________________________________ - -``` - -在上面的结构中,您可以看到每个 Conv2D 和 MaxPooling2D 层的输出都是一个三维的张量 (Tensor),其形状描述了 (height, width, channels)。越深的层中,宽度和高度都会收缩。每个 Conv2D 层输出的通道数量 (channels) 取决于声明层时的第一个参数(如:上面代码中的 32 或 64)。这样,由于宽度和高度的收缩,您便可以(从运算的角度)增加每个 Conv2D 层输出的通道数量 (channels)。 - -### 增加 Dense 层 - -*Dense 层等同于全连接 (Full Connected) 层。* -在模型的最后,您将把卷积后的输出张量(本例中形状为 (4, 4, 64))传给一个或多个 Dense 层来完成分类。Dense 层的输入为向量(一维),但前面层的输出是 3 维的张量 (Tensor)。因此您需要将三维张量展开 (flatten) 到 1 维,之后再传入一个或多个 Dense 层。CIFAR 数据集有 10 个类,因此您最终的 Dense 层需要 10 个输出及一个 softmax 激活函数。 - -```py -model.add(layers.Flatten()) -model.add(layers.Dense(64, activation='relu')) -model.add(layers.Dense(10)) -``` - -查看完整的 CNN 结构: - -```py -model.summary() -``` - -```py -Model: "sequential" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -conv2d (Conv2D) (None, 30, 30, 32) 896 -_________________________________________________________________ -max_pooling2d (MaxPooling2D) (None, 15, 15, 32) 0 -_________________________________________________________________ -conv2d_1 (Conv2D) (None, 13, 13, 64) 18496 -_________________________________________________________________ -max_pooling2d_1 (MaxPooling2 (None, 6, 6, 64) 0 -_________________________________________________________________ -conv2d_2 (Conv2D) (None, 4, 4, 64) 36928 -_________________________________________________________________ -flatten (Flatten) (None, 1024) 0 -_________________________________________________________________ -dense (Dense) (None, 64) 65600 -_________________________________________________________________ -dense_1 (Dense) (None, 10) 650 -================================================================= -Total params: 122,570 -Trainable params: 122,570 -Non-trainable params: 0 -_________________________________________________________________ - -``` - -可以看出,在被传入两个 Dense 层之前,形状为 (4, 4, 64) 的输出被展平成了形状为 (1024) 的向量。 - -### 编译并训练模型 - -```py -model.compile(optimizer='adam', - loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True), - metrics=['accuracy']) - -history = model.fit(train_images, train_labels, epochs=10, - validation_data=(test_images, test_labels)) -``` - -```py -Epoch 1/10 -1563/1563 [==============================] - 5s 3ms/step - loss: 1.5143 - accuracy: 0.4469 - val_loss: 1.2281 - val_accuracy: 0.5585 -Epoch 2/10 -1563/1563 [==============================] - 5s 3ms/step - loss: 1.1625 - accuracy: 0.5855 - val_loss: 1.2102 - val_accuracy: 0.5660 -Epoch 3/10 -1563/1563 [==============================] - 5s 3ms/step - loss: 1.0049 - accuracy: 0.6458 - val_loss: 0.9935 - val_accuracy: 0.6511 -Epoch 4/10 -1563/1563 [==============================] - 5s 3ms/step - loss: 0.9089 - accuracy: 0.6801 - val_loss: 0.9658 - val_accuracy: 0.6536 -Epoch 5/10 -1563/1563 [==============================] - 5s 3ms/step - loss: 0.8341 - accuracy: 0.7066 - val_loss: 0.9890 - val_accuracy: 0.6581 -Epoch 6/10 -1563/1563 [==============================] - 5s 3ms/step - loss: 0.7797 - accuracy: 0.7272 - val_loss: 0.8948 - val_accuracy: 0.6891 -Epoch 7/10 -1563/1563 [==============================] - 5s 3ms/step - loss: 0.7287 - accuracy: 0.7437 - val_loss: 0.9004 - val_accuracy: 0.6947 -Epoch 8/10 -1563/1563 [==============================] - 5s 3ms/step - loss: 0.6858 - accuracy: 0.7609 - val_loss: 0.8284 - val_accuracy: 0.7191 -Epoch 9/10 -1563/1563 [==============================] - 5s 3ms/step - loss: 0.6448 - accuracy: 0.7736 - val_loss: 0.8752 - val_accuracy: 0.7096 -Epoch 10/10 -1563/1563 [==============================] - 5s 3ms/step - loss: 0.6117 - accuracy: 0.7855 - val_loss: 0.8524 - val_accuracy: 0.7204 - -``` - -### 评估模型 - -```py -plt.plot(history.history['accuracy'], label='accuracy') -plt.plot(history.history['val_accuracy'], label = 'val_accuracy') -plt.xlabel('Epoch') -plt.ylabel('Accuracy') -plt.ylim([0.5, 1]) -plt.legend(loc='lower right') -plt.show() - -test_loss, test_acc = model.evaluate(test_images, test_labels, verbose=2) -``` - -![png](img/9564eb108080dfcb0a0231e7db795b06.png) - -```py -313/313 - 1s - loss: 0.8524 - accuracy: 0.7204 - -``` - -```py -print(test_acc) -``` - -```py -0.7203999757766724 - -``` - -我们搭建的简单的 CNN 模型在测试集上可以达到 70% 的准确率。对于只有几行的代码来说效果不错!对于另一种 CNN 结构可参考另一个使用的基于 Keras 子类 API 和 [`tf.GradientTape`](https://tensorflow.google.cn/api_docs/python/tf/GradientTape) 的样例 [here](https://tensorflow.google.cn/tutorials/quickstart/advanced)。 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/042.md b/Tensorflow/TensorFlow2.0/042.md deleted file mode 100644 index 570f292a..00000000 --- a/Tensorflow/TensorFlow2.0/042.md +++ /dev/null @@ -1,603 +0,0 @@ -# Image classification - -> 原文:[https://tensorflow.google.cn/tutorials/images/classification](https://tensorflow.google.cn/tutorials/images/classification) - -This tutorial shows how to classify images of flowers. It creates an image classifier using a [`keras.Sequential`](https://tensorflow.google.cn/api_docs/python/tf/keras/Sequential) model, and loads data using [`preprocessing.image_dataset_from_directory`](https://tensorflow.google.cn/api_docs/python/tf/keras/preprocessing/image_dataset_from_directory). You will gain practical experience with the following concepts: - -* Efficiently loading a dataset off disk. -* Identifying overfitting and applying techniques to mitigate it, including data augmentation and Dropout. - -This tutorial follows a basic machine learning workflow: - -1. Examine and understand data -2. Build an input pipeline -3. Build the model -4. Train the model -5. Test the model -6. Improve the model and repeat the process - -## Import TensorFlow and other libraries - -```py -import matplotlib.pyplot as plt -import numpy as np -import os -import PIL -import tensorflow as tf - -from tensorflow import keras -from tensorflow.keras import layers -from tensorflow.keras.models import Sequential -``` - -## Download and explore the dataset - -This tutorial uses a dataset of about 3,700 photos of flowers. The dataset contains 5 sub-directories, one per class: - -```py -flower_photo/ - daisy/ - dandelion/ - roses/ - sunflowers/ - tulips/ -``` - -```py -import pathlib -dataset_url = "https://storage.googleapis.com/download.tensorflow.org/example_images/flower_photos.tgz" -data_dir = tf.keras.utils.get_file('flower_photos', origin=dataset_url, untar=True) -data_dir = pathlib.Path(data_dir) -``` - -```py -Downloading data from https://storage.googleapis.com/download.tensorflow.org/example_images/flower_photos.tgz -228818944/228813984 [==============================] - 5s 0us/step - -``` - -After downloading, you should now have a copy of the dataset available. There are 3,670 total images: - -```py -image_count = len(list(data_dir.glob('*/*.jpg'))) -print(image_count) -``` - -```py -3670 - -``` - -Here are some roses: - -```py -roses = list(data_dir.glob('roses/*')) -PIL.Image.open(str(roses[0])) -``` - -![png](img/87abb24bd5c5230158bc1ff3b3bb5624.png) - -```py -PIL.Image.open(str(roses[1])) -``` - -![png](img/c5f05439bb7e2eb354fda7f89beadeb3.png) - -And some tulips: - -```py -tulips = list(data_dir.glob('tulips/*')) -PIL.Image.open(str(tulips[0])) -``` - -![png](img/dcd2e24d351259809e8bd2dfe61f3f59.png) - -```py -PIL.Image.open(str(tulips[1])) -``` - -![png](img/25794664318bbd0dc1284a9ea6754d14.png) - -# Load using keras.preprocessing - -Let's load these images off disk using the helpful [image_dataset_from_directory](https://tensorflow.google.cn/api_docs/python/tf/keras/preprocessing/image_dataset_from_directory) utility. This will take you from a directory of images on disk to a [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) in just a couple lines of code. If you like, you can also write your own data loading code from scratch by visiting the [load images](https://tensorflow.google.cn/tutorials/load_data/images) tutorial. - -## Create a dataset - -Define some parameters for the loader: - -```py -batch_size = 32 -img_height = 180 -img_width = 180 -``` - -It's good practice to use a validation split when developing your model. Let's use 80% of the images for training, and 20% for validation. - -```py -train_ds = tf.keras.preprocessing.image_dataset_from_directory( - data_dir, - validation_split=0.2, - subset="training", - seed=123, - image_size=(img_height, img_width), - batch_size=batch_size) -``` - -```py -Found 3670 files belonging to 5 classes. -Using 2936 files for training. - -``` - -```py -val_ds = tf.keras.preprocessing.image_dataset_from_directory( - data_dir, - validation_split=0.2, - subset="validation", - seed=123, - image_size=(img_height, img_width), - batch_size=batch_size) -``` - -```py -Found 3670 files belonging to 5 classes. -Using 734 files for validation. - -``` - -You can find the class names in the `class_names` attribute on these datasets. These correspond to the directory names in alphabetical order. - -```py -class_names = train_ds.class_names -print(class_names) -``` - -```py -['daisy', 'dandelion', 'roses', 'sunflowers', 'tulips'] - -``` - -## Visualize the data - -Here are the first 9 images from the training dataset. - -```py -import matplotlib.pyplot as plt - -plt.figure(figsize=(10, 10)) -for images, labels in train_ds.take(1): - for i in range(9): - ax = plt.subplot(3, 3, i + 1) - plt.imshow(images[i].numpy().astype("uint8")) - plt.title(class_names[labels[i]]) - plt.axis("off") -``` - -![png](img/01e618f7715193d849381e8d78c78c09.png) - -You will train a model using these datasets by passing them to `model.fit` in a moment. If you like, you can also manually iterate over the dataset and retrieve batches of images: - -```py -for image_batch, labels_batch in train_ds: - print(image_batch.shape) - print(labels_batch.shape) - break -``` - -```py -(32, 180, 180, 3) -(32,) - -``` - -The `image_batch` is a tensor of the shape `(32, 180, 180, 3)`. This is a batch of 32 images of shape `180x180x3` (the last dimension refers to color channels RGB). The `label_batch` is a tensor of the shape `(32,)`, these are corresponding labels to the 32 images. - -You can call `.numpy()` on the `image_batch` and `labels_batch` tensors to convert them to a `numpy.ndarray`. - -## Configure the dataset for performance - -Let's make sure to use buffered prefetching so you can yield data from disk without having I/O become blocking. These are two important methods you should use when loading data. - -[`Dataset.cache()`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#cache) keeps the images in memory after they're loaded off disk during the first epoch. This will ensure the dataset does not become a bottleneck while training your model. If your dataset is too large to fit into memory, you can also use this method to create a performant on-disk cache. - -[`Dataset.prefetch()`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#prefetch) overlaps data preprocessing and model execution while training. - -Interested readers can learn more about both methods, as well as how to cache data to disk in the [data performance guide](https://tensorflow.google.cn/guide/data_performance#prefetching). - -```py -AUTOTUNE = tf.data.experimental.AUTOTUNE - -train_ds = train_ds.cache().shuffle(1000).prefetch(buffer_size=AUTOTUNE) -val_ds = val_ds.cache().prefetch(buffer_size=AUTOTUNE) -``` - -## Standardize the data - -The RGB channel values are in the `[0, 255]` range. This is not ideal for a neural network; in general you should seek to make your input values small. Here, you will standardize values to be in the `[0, 1]` range by using a Rescaling layer. - -```py -normalization_layer = layers.experimental.preprocessing.Rescaling(1./255) -``` - -**Note:** The Keras Preprocessing utilities and layers introduced in this section are currently experimental and may change. - -There are two ways to use this layer. You can apply it to the dataset by calling map: - -```py -normalized_ds = train_ds.map(lambda x, y: (normalization_layer(x), y)) -image_batch, labels_batch = next(iter(normalized_ds)) -first_image = image_batch[0] -# Notice the pixels values are now in `[0,1]`. -print(np.min(first_image), np.max(first_image)) -``` - -```py -0.006427039 0.99052274 - -``` - -Or, you can include the layer inside your model definition, which can simplify deployment. Let's use the second approach here. - -**Note:** you previously resized images using the `image_size` argument of `image_dataset_from_directory`. If you want to include the resizing logic in your model as well, you can use the [Resizing](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/experimental/preprocessing/Resizing) layer. - -# Create the model - -The model consists of three convolution blocks with a max pool layer in each of them. There's a fully connected layer with 128 units on top of it that is activated by a `relu` activation function. This model has not been tuned for high accuracy, the goal of this tutorial is to show a standard approach. - -```py -num_classes = 5 - -model = Sequential([ - layers.experimental.preprocessing.Rescaling(1./255, input_shape=(img_height, img_width, 3)), - layers.Conv2D(16, 3, padding='same', activation='relu'), - layers.MaxPooling2D(), - layers.Conv2D(32, 3, padding='same', activation='relu'), - layers.MaxPooling2D(), - layers.Conv2D(64, 3, padding='same', activation='relu'), - layers.MaxPooling2D(), - layers.Flatten(), - layers.Dense(128, activation='relu'), - layers.Dense(num_classes) -]) -``` - -## Compile the model - -For this tutorial, choose the [`optimizers.Adam`](https://tensorflow.google.cn/api_docs/python/tf/keras/optimizers/Adam) optimizer and [`losses.SparseCategoricalCrossentropy`](https://tensorflow.google.cn/api_docs/python/tf/keras/losses/SparseCategoricalCrossentropy) loss function. To view training and validation accuracy for each training epoch, pass the `metrics` argument. - -```py -model.compile(optimizer='adam', - loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True), - metrics=['accuracy']) -``` - -## Model summary - -View all the layers of the network using the model's `summary` method: - -```py -model.summary() -``` - -```py -Model: "sequential" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -rescaling_1 (Rescaling) (None, 180, 180, 3) 0 -_________________________________________________________________ -conv2d (Conv2D) (None, 180, 180, 16) 448 -_________________________________________________________________ -max_pooling2d (MaxPooling2D) (None, 90, 90, 16) 0 -_________________________________________________________________ -conv2d_1 (Conv2D) (None, 90, 90, 32) 4640 -_________________________________________________________________ -max_pooling2d_1 (MaxPooling2 (None, 45, 45, 32) 0 -_________________________________________________________________ -conv2d_2 (Conv2D) (None, 45, 45, 64) 18496 -_________________________________________________________________ -max_pooling2d_2 (MaxPooling2 (None, 22, 22, 64) 0 -_________________________________________________________________ -flatten (Flatten) (None, 30976) 0 -_________________________________________________________________ -dense (Dense) (None, 128) 3965056 -_________________________________________________________________ -dense_1 (Dense) (None, 5) 645 -================================================================= -Total params: 3,989,285 -Trainable params: 3,989,285 -Non-trainable params: 0 -_________________________________________________________________ - -``` - -## Train the model - -```py -epochs=10 -history = model.fit( - train_ds, - validation_data=val_ds, - epochs=epochs -) -``` - -```py -Epoch 1/10 -92/92 [==============================] - 3s 27ms/step - loss: 1.3816 - accuracy: 0.4077 - val_loss: 1.0884 - val_accuracy: 0.5518 -Epoch 2/10 -92/92 [==============================] - 1s 10ms/step - loss: 1.0222 - accuracy: 0.6039 - val_loss: 0.9661 - val_accuracy: 0.5872 -Epoch 3/10 -92/92 [==============================] - 1s 10ms/step - loss: 0.8417 - accuracy: 0.6778 - val_loss: 0.8763 - val_accuracy: 0.6417 -Epoch 4/10 -92/92 [==============================] - 1s 10ms/step - loss: 0.6234 - accuracy: 0.7691 - val_loss: 0.8961 - val_accuracy: 0.6444 -Epoch 5/10 -92/92 [==============================] - 1s 10ms/step - loss: 0.4066 - accuracy: 0.8580 - val_loss: 0.9164 - val_accuracy: 0.6717 -Epoch 6/10 -92/92 [==============================] - 1s 10ms/step - loss: 0.2379 - accuracy: 0.9234 - val_loss: 1.1665 - val_accuracy: 0.6417 -Epoch 7/10 -92/92 [==============================] - 1s 10ms/step - loss: 0.1372 - accuracy: 0.9571 - val_loss: 1.3581 - val_accuracy: 0.6621 -Epoch 8/10 -92/92 [==============================] - 1s 10ms/step - loss: 0.0802 - accuracy: 0.9789 - val_loss: 1.5392 - val_accuracy: 0.6526 -Epoch 9/10 -92/92 [==============================] - 1s 10ms/step - loss: 0.0405 - accuracy: 0.9918 - val_loss: 1.7072 - val_accuracy: 0.6730 -Epoch 10/10 -92/92 [==============================] - 1s 10ms/step - loss: 0.0311 - accuracy: 0.9925 - val_loss: 1.7984 - val_accuracy: 0.6458 - -``` - -## Visualize training results - -Create plots of loss and accuracy on the training and validation sets. - -```py -acc = history.history['accuracy'] -val_acc = history.history['val_accuracy'] - -loss = history.history['loss'] -val_loss = history.history['val_loss'] - -epochs_range = range(epochs) - -plt.figure(figsize=(8, 8)) -plt.subplot(1, 2, 1) -plt.plot(epochs_range, acc, label='Training Accuracy') -plt.plot(epochs_range, val_acc, label='Validation Accuracy') -plt.legend(loc='lower right') -plt.title('Training and Validation Accuracy') - -plt.subplot(1, 2, 2) -plt.plot(epochs_range, loss, label='Training Loss') -plt.plot(epochs_range, val_loss, label='Validation Loss') -plt.legend(loc='upper right') -plt.title('Training and Validation Loss') -plt.show() -``` - -![png](img/14fce8d9f2fd98077c5bf9a8db1f25ec.png) - -As you can see from the plots, training accuracy and validation accuracy are off by large margin and the model has achieved only around 60% accuracy on the validation set. - -Let's look at what went wrong and try to increase the overall performance of the model. - -## Overfitting - -In the plots above, the training accuracy is increasing linearly over time, whereas validation accuracy stalls around 60% in the training process. Also, the difference in accuracy between training and validation accuracy is noticeable—a sign of [overfitting](https://tensorflow.google.cn/tutorials/keras/overfit_and_underfit). - -When there are a small number of training examples, the model sometimes learns from noises or unwanted details from training examples—to an extent that it negatively impacts the performance of the model on new examples. This phenomenon is known as overfitting. It means that the model will have a difficult time generalizing on a new dataset. - -There are multiple ways to fight overfitting in the training process. In this tutorial, you'll use *data augmentation* and add *Dropout* to your model. - -## Data augmentation - -Overfitting generally occurs when there are a small number of training examples. [Data augmentation](https://tensorflow.google.cn/tutorials/images/data_augmentation) takes the approach of generating additional training data from your existing examples by augmenting them using random transformations that yield believable-looking images. This helps expose the model to more aspects of the data and generalize better. - -You will implement data augmentation using experimental [Keras Preprocessing Layers](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/experimental/preprocessing/?version=nightly). These can be included inside your model like other layers, and run on the GPU. - -```py -data_augmentation = keras.Sequential( - [ - layers.experimental.preprocessing.RandomFlip("horizontal", - input_shape=(img_height, - img_width, - 3)), - layers.experimental.preprocessing.RandomRotation(0.1), - layers.experimental.preprocessing.RandomZoom(0.1), - ] -) -``` - -Let's visualize what a few augmented examples look like by applying data augmentation to the same image several times: - -```py -plt.figure(figsize=(10, 10)) -for images, _ in train_ds.take(1): - for i in range(9): - augmented_images = data_augmentation(images) - ax = plt.subplot(3, 3, i + 1) - plt.imshow(augmented_images[0].numpy().astype("uint8")) - plt.axis("off") -``` - -![png](img/696df8a523ce550bf177c7051cef2c75.png) - -You will use data augmentation to train a model in a moment. - -## Dropout - -Another technique to reduce overfitting is to introduce [Dropout](https://developers.google.cn/machine-learning/glossary#dropout_regularization) to the network, a form of *regularization*. - -When you apply Dropout to a layer it randomly drops out (by setting the activation to zero) a number of output units from the layer during the training process. Dropout takes a fractional number as its input value, in the form such as 0.1, 0.2, 0.4, etc. This means dropping out 10%, 20% or 40% of the output units randomly from the applied layer. - -Let's create a new neural network using [`layers.Dropout`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Dropout), then train it using augmented images. - -```py -model = Sequential([ - data_augmentation, - layers.experimental.preprocessing.Rescaling(1./255), - layers.Conv2D(16, 3, padding='same', activation='relu'), - layers.MaxPooling2D(), - layers.Conv2D(32, 3, padding='same', activation='relu'), - layers.MaxPooling2D(), - layers.Conv2D(64, 3, padding='same', activation='relu'), - layers.MaxPooling2D(), - layers.Dropout(0.2), - layers.Flatten(), - layers.Dense(128, activation='relu'), - layers.Dense(num_classes) -]) -``` - -## Compile and train the model - -```py -model.compile(optimizer='adam', - loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True), - metrics=['accuracy']) -``` - -```py -model.summary() -``` - -```py -Model: "sequential_2" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -sequential_1 (Sequential) (None, 180, 180, 3) 0 -_________________________________________________________________ -rescaling_2 (Rescaling) (None, 180, 180, 3) 0 -_________________________________________________________________ -conv2d_3 (Conv2D) (None, 180, 180, 16) 448 -_________________________________________________________________ -max_pooling2d_3 (MaxPooling2 (None, 90, 90, 16) 0 -_________________________________________________________________ -conv2d_4 (Conv2D) (None, 90, 90, 32) 4640 -_________________________________________________________________ -max_pooling2d_4 (MaxPooling2 (None, 45, 45, 32) 0 -_________________________________________________________________ -conv2d_5 (Conv2D) (None, 45, 45, 64) 18496 -_________________________________________________________________ -max_pooling2d_5 (MaxPooling2 (None, 22, 22, 64) 0 -_________________________________________________________________ -dropout (Dropout) (None, 22, 22, 64) 0 -_________________________________________________________________ -flatten_1 (Flatten) (None, 30976) 0 -_________________________________________________________________ -dense_2 (Dense) (None, 128) 3965056 -_________________________________________________________________ -dense_3 (Dense) (None, 5) 645 -================================================================= -Total params: 3,989,285 -Trainable params: 3,989,285 -Non-trainable params: 0 -_________________________________________________________________ - -``` - -```py -epochs = 15 -history = model.fit( - train_ds, - validation_data=val_ds, - epochs=epochs -) -``` - -```py -Epoch 1/15 -92/92 [==============================] - 1s 13ms/step - loss: 1.4326 - accuracy: 0.3760 - val_loss: 1.1774 - val_accuracy: 0.5123 -Epoch 2/15 -92/92 [==============================] - 1s 12ms/step - loss: 1.1058 - accuracy: 0.5525 - val_loss: 0.9981 - val_accuracy: 0.5967 -Epoch 3/15 -92/92 [==============================] - 1s 12ms/step - loss: 1.0014 - accuracy: 0.5937 - val_loss: 0.9525 - val_accuracy: 0.6185 -Epoch 4/15 -92/92 [==============================] - 1s 12ms/step - loss: 0.9205 - accuracy: 0.6383 - val_loss: 0.9474 - val_accuracy: 0.6376 -Epoch 5/15 -92/92 [==============================] - 1s 12ms/step - loss: 0.8813 - accuracy: 0.6594 - val_loss: 0.9383 - val_accuracy: 0.6417 -Epoch 6/15 -92/92 [==============================] - 1s 12ms/step - loss: 0.8366 - accuracy: 0.6734 - val_loss: 0.8468 - val_accuracy: 0.6512 -Epoch 7/15 -92/92 [==============================] - 1s 12ms/step - loss: 0.7955 - accuracy: 0.6979 - val_loss: 0.8837 - val_accuracy: 0.6717 -Epoch 8/15 -92/92 [==============================] - 1s 12ms/step - loss: 0.7485 - accuracy: 0.7163 - val_loss: 0.8417 - val_accuracy: 0.6730 -Epoch 9/15 -92/92 [==============================] - 1s 12ms/step - loss: 0.7276 - accuracy: 0.7282 - val_loss: 0.8505 - val_accuracy: 0.6826 -Epoch 10/15 -92/92 [==============================] - 1s 12ms/step - loss: 0.6981 - accuracy: 0.7374 - val_loss: 0.7679 - val_accuracy: 0.6948 -Epoch 11/15 -92/92 [==============================] - 1s 12ms/step - loss: 0.6755 - accuracy: 0.7446 - val_loss: 0.7863 - val_accuracy: 0.6948 -Epoch 12/15 -92/92 [==============================] - 1s 12ms/step - loss: 0.6375 - accuracy: 0.7585 - val_loss: 0.7911 - val_accuracy: 0.7044 -Epoch 13/15 -92/92 [==============================] - 1s 12ms/step - loss: 0.6095 - accuracy: 0.7790 - val_loss: 0.7403 - val_accuracy: 0.7139 -Epoch 14/15 -92/92 [==============================] - 1s 12ms/step - loss: 0.6116 - accuracy: 0.7681 - val_loss: 0.7794 - val_accuracy: 0.7153 -Epoch 15/15 -92/92 [==============================] - 1s 12ms/step - loss: 0.5818 - accuracy: 0.7762 - val_loss: 0.7729 - val_accuracy: 0.7044 - -``` - -## Visualize training results - -After applying data augmentation and Dropout, there is less overfitting than before, and training and validation accuracy are closer aligned. - -```py -acc = history.history['accuracy'] -val_acc = history.history['val_accuracy'] - -loss = history.history['loss'] -val_loss = history.history['val_loss'] - -epochs_range = range(epochs) - -plt.figure(figsize=(8, 8)) -plt.subplot(1, 2, 1) -plt.plot(epochs_range, acc, label='Training Accuracy') -plt.plot(epochs_range, val_acc, label='Validation Accuracy') -plt.legend(loc='lower right') -plt.title('Training and Validation Accuracy') - -plt.subplot(1, 2, 2) -plt.plot(epochs_range, loss, label='Training Loss') -plt.plot(epochs_range, val_loss, label='Validation Loss') -plt.legend(loc='upper right') -plt.title('Training and Validation Loss') -plt.show() -``` - -![png](img/2127fb93f97c5aaf91e991540bbe84ed.png) - -## Predict on new data - -Finally, let's use our model to classify an image that wasn't included in the training or validation sets. - -**Note:** Data augmentation and Dropout layers are inactive at inference time. - -```py -sunflower_url = "https://storage.googleapis.com/download.tensorflow.org/example_images/592px-Red_sunflower.jpg" -sunflower_path = tf.keras.utils.get_file('Red_sunflower', origin=sunflower_url) - -img = keras.preprocessing.image.load_img( - sunflower_path, target_size=(img_height, img_width) -) -img_array = keras.preprocessing.image.img_to_array(img) -img_array = tf.expand_dims(img_array, 0) # Create a batch - -predictions = model.predict(img_array) -score = tf.nn.softmax(predictions[0]) - -print( - "This image most likely belongs to {} with a {:.2f} percent confidence." - .format(class_names[np.argmax(score)], 100 * np.max(score)) -) -``` - -```py -Downloading data from https://storage.googleapis.com/download.tensorflow.org/example_images/592px-Red_sunflower.jpg -122880/117948 [===============================] - 0s 0us/step -This image most likely belongs to sunflowers with a 99.45 percent confidence. - -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/043.md b/Tensorflow/TensorFlow2.0/043.md deleted file mode 100644 index 651432d1..00000000 --- a/Tensorflow/TensorFlow2.0/043.md +++ /dev/null @@ -1,1004 +0,0 @@ -# Transfer learning and fine-tuning - -> 原文:[https://tensorflow.google.cn/tutorials/images/transfer_learning](https://tensorflow.google.cn/tutorials/images/transfer_learning) - -In this tutorial, you will learn how to classify images of cats and dogs by using transfer learning from a pre-trained network. - -A pre-trained model is a saved network that was previously trained on a large dataset, typically on a large-scale image-classification task. You either use the pretrained model as is or use transfer learning to customize this model to a given task. - -The intuition behind transfer learning for image classification is that if a model is trained on a large and general enough dataset, this model will effectively serve as a generic model of the visual world. You can then take advantage of these learned feature maps without having to start from scratch by training a large model on a large dataset. - -In this notebook, you will try two ways to customize a pretrained model: - -1. Feature Extraction: Use the representations learned by a previous network to extract meaningful features from new samples. You simply add a new classifier, which will be trained from scratch, on top of the pretrained model so that you can repurpose the feature maps learned previously for the dataset. - - You do not need to (re)train the entire model. The base convolutional network already contains features that are generically useful for classifying pictures. However, the final, classification part of the pretrained model is specific to the original classification task, and subsequently specific to the set of classes on which the model was trained. - -2. Fine-Tuning: Unfreeze a few of the top layers of a frozen model base and jointly train both the newly-added classifier layers and the last layers of the base model. This allows us to "fine-tune" the higher-order feature representations in the base model in order to make them more relevant for the specific task. - -You will follow the general machine learning workflow. - -1. Examine and understand the data -2. Build an input pipeline, in this case using Keras ImageDataGenerator -3. Compose the model - * Load in the pretrained base model (and pretrained weights) - * Stack the classification layers on top -4. Train the model -5. Evaluate model - -```py -pip install -q tf-nightly - -``` - -```py -WARNING: You are using pip version 20.2.2; however, version 20.2.3 is available. -You should consider upgrading via the '/tmpfs/src/tf_docs_env/bin/python -m pip install --upgrade pip' command. - -``` - -```py -import matplotlib.pyplot as plt -import numpy as np -import os -import tensorflow as tf - -from tensorflow.keras.preprocessing import image_dataset_from_directory -``` - -## Data preprocessing - -### Data download - -In this tutorial, you will use a dataset containing several thousand images of cats and dogs. Download and extract a zip file containing the images, then create a [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) for training and validation using the [`tf.keras.preprocessing.image_dataset_from_directory`](https://tensorflow.google.cn/api_docs/python/tf/keras/preprocessing/image_dataset_from_directory) utility. You can learn more about loading images in this [tutorial](https://tensorflow.google.cn/tutorials/load_data/images). - -```py -_URL = 'https://storage.googleapis.com/mledu-datasets/cats_and_dogs_filtered.zip' -path_to_zip = tf.keras.utils.get_file('cats_and_dogs.zip', origin=_URL, extract=True) -PATH = os.path.join(os.path.dirname(path_to_zip), 'cats_and_dogs_filtered') - -train_dir = os.path.join(PATH, 'train') -validation_dir = os.path.join(PATH, 'validation') - -BATCH_SIZE = 32 -IMG_SIZE = (160, 160) - -train_dataset = image_dataset_from_directory(train_dir, - shuffle=True, - batch_size=BATCH_SIZE, - image_size=IMG_SIZE) -``` - -```py -Downloading data from https://storage.googleapis.com/mledu-datasets/cats_and_dogs_filtered.zip -68608000/68606236 [==============================] - 1s 0us/step -Found 2000 files belonging to 2 classes. - -``` - -```py -validation_dataset = image_dataset_from_directory(validation_dir, - shuffle=True, - batch_size=BATCH_SIZE, - image_size=IMG_SIZE) -``` - -```py -Found 1000 files belonging to 2 classes. - -``` - -Show the first nine images and labels from the training set: - -```py -class_names = train_dataset.class_names - -plt.figure(figsize=(10, 10)) -for images, labels in train_dataset.take(1): - for i in range(9): - ax = plt.subplot(3, 3, i + 1) - plt.imshow(images[i].numpy().astype("uint8")) - plt.title(class_names[labels[i]]) - plt.axis("off") -``` - -![png](img/2a2da1f076940ee9e540d308733418d2.png) - -As the original dataset doesn't contains a test set, you will create one. To do so, determine how many batches of data are available in the validation set using `tf.data.experimental.cardinality`, then move 20% of them to a test set. - -```py -val_batches = tf.data.experimental.cardinality(validation_dataset) -test_dataset = validation_dataset.take(val_batches // 5) -validation_dataset = validation_dataset.skip(val_batches // 5) -``` - -```py -print('Number of validation batches: %d' % tf.data.experimental.cardinality(validation_dataset)) -print('Number of test batches: %d' % tf.data.experimental.cardinality(test_dataset)) -``` - -```py -Number of validation batches: 26 -Number of test batches: 6 - -``` - -### Configure the dataset for performance - -Use buffered prefetching to load images from disk without having I/O become blocking. To learn more about this method see the [data performance](https://tensorflow.google.cn/guide/data_performance) guide. - -```py -AUTOTUNE = tf.data.experimental.AUTOTUNE - -train_dataset = train_dataset.prefetch(buffer_size=AUTOTUNE) -validation_dataset = validation_dataset.prefetch(buffer_size=AUTOTUNE) -test_dataset = test_dataset.prefetch(buffer_size=AUTOTUNE) -``` - -### Use data augmentation - -When you don't have a large image dataset, it's a good practice to artificially introduce sample diversity by applying random, yet realistic, transformations to the training images, such as rotation and horizontal flipping. This helps expose the model to different aspects of the training data and reduce [overfitting](https://tensorflow.google.cn/tutorials/keras/overfit_and_underfit). You can learn more about data augmentation in this [tutorial](https://tensorflow.google.cn/tutorials/images/data_augmentation). - -```py -data_augmentation = tf.keras.Sequential([ - tf.keras.layers.experimental.preprocessing.RandomFlip('horizontal'), - tf.keras.layers.experimental.preprocessing.RandomRotation(0.2), -]) -``` - -**Note:** These layers are active only during training, when you call `model.fit`. They are inactive when the model is used in inference mode in `model.evaulate` or `model.fit`. - -Let's repeatedly apply these layers to the same image and see the result. - -```py -for image, _ in train_dataset.take(1): - plt.figure(figsize=(10, 10)) - first_image = image[0] - for i in range(9): - ax = plt.subplot(3, 3, i + 1) - augmented_image = data_augmentation(tf.expand_dims(first_image, 0)) - plt.imshow(augmented_image[0] / 255) - plt.axis('off') -``` - -![png](img/a208fe52aacc14e668b9b681805d8302.png) - -### Rescale pixel values - -In a moment, you will download `tf.keras.applications.MobileNetV2` for use as your base model. This model expects pixel vaues in `[-1,1]`, but at this point, the pixel values in your images are in `[0-255]`. To rescale them, use the preprocessing method included with the model. - -```py -preprocess_input = tf.keras.applications.mobilenet_v2.preprocess_input -``` - -**Note:** Alternatively, you could rescale pixel values from `[0,255]` to `[-1, 1]` using a [Rescaling](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/experimental/preprocessing/Rescaling) layer. - -```py -rescale = tf.keras.layers.experimental.preprocessing.Rescaling(1./127.5, offset= -1) -``` - -**Note:** If using other `tf.keras.applications`, be sure to check the API doc to determine if they expect pixels in `[-1,1]` or `[0,1]`, or use the included `preprocess_input` function. - -## Create the base model from the pre-trained convnets - -You will create the base model from the **MobileNet V2** model developed at Google. This is pre-trained on the ImageNet dataset, a large dataset consisting of 1.4M images and 1000 classes. ImageNet is a research training dataset with a wide variety of categories like `jackfruit` and `syringe`. This base of knowledge will help us classify cats and dogs from our specific dataset. - -First, you need to pick which layer of MobileNet V2 you will use for feature extraction. The very last classification layer (on "top", as most diagrams of machine learning models go from bottom to top) is not very useful. Instead, you will follow the common practice to depend on the very last layer before the flatten operation. This layer is called the "bottleneck layer". The bottleneck layer features retain more generality as compared to the final/top layer. - -First, instantiate a MobileNet V2 model pre-loaded with weights trained on ImageNet. By specifying the **include_top=False** argument, you load a network that doesn't include the classification layers at the top, which is ideal for feature extraction. - -```py -# Create the base model from the pre-trained model MobileNet V2 -IMG_SHAPE = IMG_SIZE + (3,) -base_model = tf.keras.applications.MobileNetV2(input_shape=IMG_SHAPE, - include_top=False, - weights='imagenet') -``` - -```py -Downloading data from https://storage.googleapis.com/tensorflow/keras-applications/mobilenet_v2/mobilenet_v2_weights_tf_dim_ordering_tf_kernels_1.0_160_no_top.h5 -9412608/9406464 [==============================] - 1s 0us/step - -``` - -This feature extractor converts each `160x160x3` image into a `5x5x1280` block of features. Let's see what it does to an example batch of images: - -```py -image_batch, label_batch = next(iter(train_dataset)) -feature_batch = base_model(image_batch) -print(feature_batch.shape) -``` - -```py -(32, 5, 5, 1280) - -``` - -## Feature extraction - -In this step, you will freeze the convolutional base created from the previous step and to use as a feature extractor. Additionally, you add a classifier on top of it and train the top-level classifier. - -### Freeze the convolutional base - -It is important to freeze the convolutional base before you compile and train the model. Freezing (by setting layer.trainable = False) prevents the weights in a given layer from being updated during training. MobileNet V2 has many layers, so setting the entire model's `trainable` flag to False will freeze all of them. - -```py -base_model.trainable = False -``` - -### Important note about BatchNormalization layers - -Many models contain `tf.keras.layers.BatchNormalization` layers. This layer is a special case and precautions should be taken in the context of fine-tuning, as shown later in this tutorial. - -When you set `layer.trainable = False`, the `BatchNormalization` layer will run in inference mode, and will not update its mean and variance statistics. - -When you unfreeze a model that contains BatchNormalization layers in order to do fine-tuning, you should keep the BatchNormalization layers in inference mode by passing `training = False` when calling the base model. Otherwise, the updates applied to the non-trainable weights will destroy what the model has learned. - -For details, see the [Transfer learning guide](https://tensorflow.google.cn/guide/keras/transfer_learning). - -```py -# Let's take a look at the base model architecture -base_model.summary() -``` - -```py -Model: "mobilenetv2_1.00_160" -__________________________________________________________________________________________________ -Layer (type) Output Shape Param # Connected to -================================================================================================== -input_1 (InputLayer) [(None, 160, 160, 3) 0 -__________________________________________________________________________________________________ -Conv1 (Conv2D) (None, 80, 80, 32) 864 input_1[0][0] -__________________________________________________________________________________________________ -bn_Conv1 (BatchNormalization) (None, 80, 80, 32) 128 Conv1[0][0] -__________________________________________________________________________________________________ -Conv1_relu (ReLU) (None, 80, 80, 32) 0 bn_Conv1[0][0] -__________________________________________________________________________________________________ -expanded_conv_depthwise (Depthw (None, 80, 80, 32) 288 Conv1_relu[0][0] -__________________________________________________________________________________________________ -expanded_conv_depthwise_BN (Bat (None, 80, 80, 32) 128 expanded_conv_depthwise[0][0] -__________________________________________________________________________________________________ -expanded_conv_depthwise_relu (R (None, 80, 80, 32) 0 expanded_conv_depthwise_BN[0][0] -__________________________________________________________________________________________________ -expanded_conv_project (Conv2D) (None, 80, 80, 16) 512 expanded_conv_depthwise_relu[0][0 -__________________________________________________________________________________________________ -expanded_conv_project_BN (Batch (None, 80, 80, 16) 64 expanded_conv_project[0][0] -__________________________________________________________________________________________________ -block_1_expand (Conv2D) (None, 80, 80, 96) 1536 expanded_conv_project_BN[0][0] -__________________________________________________________________________________________________ -block_1_expand_BN (BatchNormali (None, 80, 80, 96) 384 block_1_expand[0][0] -__________________________________________________________________________________________________ -block_1_expand_relu (ReLU) (None, 80, 80, 96) 0 block_1_expand_BN[0][0] -__________________________________________________________________________________________________ -block_1_pad (ZeroPadding2D) (None, 81, 81, 96) 0 block_1_expand_relu[0][0] -__________________________________________________________________________________________________ -block_1_depthwise (DepthwiseCon (None, 40, 40, 96) 864 block_1_pad[0][0] -__________________________________________________________________________________________________ -block_1_depthwise_BN (BatchNorm (None, 40, 40, 96) 384 block_1_depthwise[0][0] -__________________________________________________________________________________________________ -block_1_depthwise_relu (ReLU) (None, 40, 40, 96) 0 block_1_depthwise_BN[0][0] -__________________________________________________________________________________________________ -block_1_project (Conv2D) (None, 40, 40, 24) 2304 block_1_depthwise_relu[0][0] -__________________________________________________________________________________________________ -block_1_project_BN (BatchNormal (None, 40, 40, 24) 96 block_1_project[0][0] -__________________________________________________________________________________________________ -block_2_expand (Conv2D) (None, 40, 40, 144) 3456 block_1_project_BN[0][0] -__________________________________________________________________________________________________ -block_2_expand_BN (BatchNormali (None, 40, 40, 144) 576 block_2_expand[0][0] -__________________________________________________________________________________________________ -block_2_expand_relu (ReLU) (None, 40, 40, 144) 0 block_2_expand_BN[0][0] -__________________________________________________________________________________________________ -block_2_depthwise (DepthwiseCon (None, 40, 40, 144) 1296 block_2_expand_relu[0][0] -__________________________________________________________________________________________________ -block_2_depthwise_BN (BatchNorm (None, 40, 40, 144) 576 block_2_depthwise[0][0] -__________________________________________________________________________________________________ -block_2_depthwise_relu (ReLU) (None, 40, 40, 144) 0 block_2_depthwise_BN[0][0] -__________________________________________________________________________________________________ -block_2_project (Conv2D) (None, 40, 40, 24) 3456 block_2_depthwise_relu[0][0] -__________________________________________________________________________________________________ -block_2_project_BN (BatchNormal (None, 40, 40, 24) 96 block_2_project[0][0] -__________________________________________________________________________________________________ -block_2_add (Add) (None, 40, 40, 24) 0 block_1_project_BN[0][0] - block_2_project_BN[0][0] -__________________________________________________________________________________________________ -block_3_expand (Conv2D) (None, 40, 40, 144) 3456 block_2_add[0][0] -__________________________________________________________________________________________________ -block_3_expand_BN (BatchNormali (None, 40, 40, 144) 576 block_3_expand[0][0] -__________________________________________________________________________________________________ -block_3_expand_relu (ReLU) (None, 40, 40, 144) 0 block_3_expand_BN[0][0] -__________________________________________________________________________________________________ -block_3_pad (ZeroPadding2D) (None, 41, 41, 144) 0 block_3_expand_relu[0][0] -__________________________________________________________________________________________________ -block_3_depthwise (DepthwiseCon (None, 20, 20, 144) 1296 block_3_pad[0][0] -__________________________________________________________________________________________________ -block_3_depthwise_BN (BatchNorm (None, 20, 20, 144) 576 block_3_depthwise[0][0] -__________________________________________________________________________________________________ -block_3_depthwise_relu (ReLU) (None, 20, 20, 144) 0 block_3_depthwise_BN[0][0] -__________________________________________________________________________________________________ -block_3_project (Conv2D) (None, 20, 20, 32) 4608 block_3_depthwise_relu[0][0] -__________________________________________________________________________________________________ -block_3_project_BN (BatchNormal (None, 20, 20, 32) 128 block_3_project[0][0] -__________________________________________________________________________________________________ -block_4_expand (Conv2D) (None, 20, 20, 192) 6144 block_3_project_BN[0][0] -__________________________________________________________________________________________________ -block_4_expand_BN (BatchNormali (None, 20, 20, 192) 768 block_4_expand[0][0] -__________________________________________________________________________________________________ -block_4_expand_relu (ReLU) (None, 20, 20, 192) 0 block_4_expand_BN[0][0] -__________________________________________________________________________________________________ -block_4_depthwise (DepthwiseCon (None, 20, 20, 192) 1728 block_4_expand_relu[0][0] -__________________________________________________________________________________________________ -block_4_depthwise_BN (BatchNorm (None, 20, 20, 192) 768 block_4_depthwise[0][0] -__________________________________________________________________________________________________ -block_4_depthwise_relu (ReLU) (None, 20, 20, 192) 0 block_4_depthwise_BN[0][0] -__________________________________________________________________________________________________ -block_4_project (Conv2D) (None, 20, 20, 32) 6144 block_4_depthwise_relu[0][0] -__________________________________________________________________________________________________ -block_4_project_BN (BatchNormal (None, 20, 20, 32) 128 block_4_project[0][0] -__________________________________________________________________________________________________ -block_4_add (Add) (None, 20, 20, 32) 0 block_3_project_BN[0][0] - block_4_project_BN[0][0] -__________________________________________________________________________________________________ -block_5_expand (Conv2D) (None, 20, 20, 192) 6144 block_4_add[0][0] -__________________________________________________________________________________________________ -block_5_expand_BN (BatchNormali (None, 20, 20, 192) 768 block_5_expand[0][0] -__________________________________________________________________________________________________ -block_5_expand_relu (ReLU) (None, 20, 20, 192) 0 block_5_expand_BN[0][0] -__________________________________________________________________________________________________ -block_5_depthwise (DepthwiseCon (None, 20, 20, 192) 1728 block_5_expand_relu[0][0] -__________________________________________________________________________________________________ -block_5_depthwise_BN (BatchNorm (None, 20, 20, 192) 768 block_5_depthwise[0][0] -__________________________________________________________________________________________________ -block_5_depthwise_relu (ReLU) (None, 20, 20, 192) 0 block_5_depthwise_BN[0][0] -__________________________________________________________________________________________________ -block_5_project (Conv2D) (None, 20, 20, 32) 6144 block_5_depthwise_relu[0][0] -__________________________________________________________________________________________________ -block_5_project_BN (BatchNormal (None, 20, 20, 32) 128 block_5_project[0][0] -__________________________________________________________________________________________________ -block_5_add (Add) (None, 20, 20, 32) 0 block_4_add[0][0] - block_5_project_BN[0][0] -__________________________________________________________________________________________________ -block_6_expand (Conv2D) (None, 20, 20, 192) 6144 block_5_add[0][0] -__________________________________________________________________________________________________ -block_6_expand_BN (BatchNormali (None, 20, 20, 192) 768 block_6_expand[0][0] -__________________________________________________________________________________________________ -block_6_expand_relu (ReLU) (None, 20, 20, 192) 0 block_6_expand_BN[0][0] -__________________________________________________________________________________________________ -block_6_pad (ZeroPadding2D) (None, 21, 21, 192) 0 block_6_expand_relu[0][0] -__________________________________________________________________________________________________ -block_6_depthwise (DepthwiseCon (None, 10, 10, 192) 1728 block_6_pad[0][0] -__________________________________________________________________________________________________ -block_6_depthwise_BN (BatchNorm (None, 10, 10, 192) 768 block_6_depthwise[0][0] -__________________________________________________________________________________________________ -block_6_depthwise_relu (ReLU) (None, 10, 10, 192) 0 block_6_depthwise_BN[0][0] -__________________________________________________________________________________________________ -block_6_project (Conv2D) (None, 10, 10, 64) 12288 block_6_depthwise_relu[0][0] -__________________________________________________________________________________________________ -block_6_project_BN (BatchNormal (None, 10, 10, 64) 256 block_6_project[0][0] -__________________________________________________________________________________________________ -block_7_expand (Conv2D) (None, 10, 10, 384) 24576 block_6_project_BN[0][0] -__________________________________________________________________________________________________ -block_7_expand_BN (BatchNormali (None, 10, 10, 384) 1536 block_7_expand[0][0] -__________________________________________________________________________________________________ -block_7_expand_relu (ReLU) (None, 10, 10, 384) 0 block_7_expand_BN[0][0] -__________________________________________________________________________________________________ -block_7_depthwise (DepthwiseCon (None, 10, 10, 384) 3456 block_7_expand_relu[0][0] -__________________________________________________________________________________________________ -block_7_depthwise_BN (BatchNorm (None, 10, 10, 384) 1536 block_7_depthwise[0][0] -__________________________________________________________________________________________________ -block_7_depthwise_relu (ReLU) (None, 10, 10, 384) 0 block_7_depthwise_BN[0][0] -__________________________________________________________________________________________________ -block_7_project (Conv2D) (None, 10, 10, 64) 24576 block_7_depthwise_relu[0][0] -__________________________________________________________________________________________________ -block_7_project_BN (BatchNormal (None, 10, 10, 64) 256 block_7_project[0][0] -__________________________________________________________________________________________________ -block_7_add (Add) (None, 10, 10, 64) 0 block_6_project_BN[0][0] - block_7_project_BN[0][0] -__________________________________________________________________________________________________ -block_8_expand (Conv2D) (None, 10, 10, 384) 24576 block_7_add[0][0] -__________________________________________________________________________________________________ -block_8_expand_BN (BatchNormali (None, 10, 10, 384) 1536 block_8_expand[0][0] -__________________________________________________________________________________________________ -block_8_expand_relu (ReLU) (None, 10, 10, 384) 0 block_8_expand_BN[0][0] -__________________________________________________________________________________________________ -block_8_depthwise (DepthwiseCon (None, 10, 10, 384) 3456 block_8_expand_relu[0][0] -__________________________________________________________________________________________________ -block_8_depthwise_BN (BatchNorm (None, 10, 10, 384) 1536 block_8_depthwise[0][0] -__________________________________________________________________________________________________ -block_8_depthwise_relu (ReLU) (None, 10, 10, 384) 0 block_8_depthwise_BN[0][0] -__________________________________________________________________________________________________ -block_8_project (Conv2D) (None, 10, 10, 64) 24576 block_8_depthwise_relu[0][0] -__________________________________________________________________________________________________ -block_8_project_BN (BatchNormal (None, 10, 10, 64) 256 block_8_project[0][0] -__________________________________________________________________________________________________ -block_8_add (Add) (None, 10, 10, 64) 0 block_7_add[0][0] - block_8_project_BN[0][0] -__________________________________________________________________________________________________ -block_9_expand (Conv2D) (None, 10, 10, 384) 24576 block_8_add[0][0] -__________________________________________________________________________________________________ -block_9_expand_BN (BatchNormali (None, 10, 10, 384) 1536 block_9_expand[0][0] -__________________________________________________________________________________________________ -block_9_expand_relu (ReLU) (None, 10, 10, 384) 0 block_9_expand_BN[0][0] -__________________________________________________________________________________________________ -block_9_depthwise (DepthwiseCon (None, 10, 10, 384) 3456 block_9_expand_relu[0][0] -__________________________________________________________________________________________________ -block_9_depthwise_BN (BatchNorm (None, 10, 10, 384) 1536 block_9_depthwise[0][0] -__________________________________________________________________________________________________ -block_9_depthwise_relu (ReLU) (None, 10, 10, 384) 0 block_9_depthwise_BN[0][0] -__________________________________________________________________________________________________ -block_9_project (Conv2D) (None, 10, 10, 64) 24576 block_9_depthwise_relu[0][0] -__________________________________________________________________________________________________ -block_9_project_BN (BatchNormal (None, 10, 10, 64) 256 block_9_project[0][0] -__________________________________________________________________________________________________ -block_9_add (Add) (None, 10, 10, 64) 0 block_8_add[0][0] - block_9_project_BN[0][0] -__________________________________________________________________________________________________ -block_10_expand (Conv2D) (None, 10, 10, 384) 24576 block_9_add[0][0] -__________________________________________________________________________________________________ -block_10_expand_BN (BatchNormal (None, 10, 10, 384) 1536 block_10_expand[0][0] -__________________________________________________________________________________________________ -block_10_expand_relu (ReLU) (None, 10, 10, 384) 0 block_10_expand_BN[0][0] -__________________________________________________________________________________________________ -block_10_depthwise (DepthwiseCo (None, 10, 10, 384) 3456 block_10_expand_relu[0][0] -__________________________________________________________________________________________________ -block_10_depthwise_BN (BatchNor (None, 10, 10, 384) 1536 block_10_depthwise[0][0] -__________________________________________________________________________________________________ -block_10_depthwise_relu (ReLU) (None, 10, 10, 384) 0 block_10_depthwise_BN[0][0] -__________________________________________________________________________________________________ -block_10_project (Conv2D) (None, 10, 10, 96) 36864 block_10_depthwise_relu[0][0] -__________________________________________________________________________________________________ -block_10_project_BN (BatchNorma (None, 10, 10, 96) 384 block_10_project[0][0] -__________________________________________________________________________________________________ -block_11_expand (Conv2D) (None, 10, 10, 576) 55296 block_10_project_BN[0][0] -__________________________________________________________________________________________________ -block_11_expand_BN (BatchNormal (None, 10, 10, 576) 2304 block_11_expand[0][0] -__________________________________________________________________________________________________ -block_11_expand_relu (ReLU) (None, 10, 10, 576) 0 block_11_expand_BN[0][0] -__________________________________________________________________________________________________ -block_11_depthwise (DepthwiseCo (None, 10, 10, 576) 5184 block_11_expand_relu[0][0] -__________________________________________________________________________________________________ -block_11_depthwise_BN (BatchNor (None, 10, 10, 576) 2304 block_11_depthwise[0][0] -__________________________________________________________________________________________________ -block_11_depthwise_relu (ReLU) (None, 10, 10, 576) 0 block_11_depthwise_BN[0][0] -__________________________________________________________________________________________________ -block_11_project (Conv2D) (None, 10, 10, 96) 55296 block_11_depthwise_relu[0][0] -__________________________________________________________________________________________________ -block_11_project_BN (BatchNorma (None, 10, 10, 96) 384 block_11_project[0][0] -__________________________________________________________________________________________________ -block_11_add (Add) (None, 10, 10, 96) 0 block_10_project_BN[0][0] - block_11_project_BN[0][0] -__________________________________________________________________________________________________ -block_12_expand (Conv2D) (None, 10, 10, 576) 55296 block_11_add[0][0] -__________________________________________________________________________________________________ -block_12_expand_BN (BatchNormal (None, 10, 10, 576) 2304 block_12_expand[0][0] -__________________________________________________________________________________________________ -block_12_expand_relu (ReLU) (None, 10, 10, 576) 0 block_12_expand_BN[0][0] -__________________________________________________________________________________________________ -block_12_depthwise (DepthwiseCo (None, 10, 10, 576) 5184 block_12_expand_relu[0][0] -__________________________________________________________________________________________________ -block_12_depthwise_BN (BatchNor (None, 10, 10, 576) 2304 block_12_depthwise[0][0] -__________________________________________________________________________________________________ -block_12_depthwise_relu (ReLU) (None, 10, 10, 576) 0 block_12_depthwise_BN[0][0] -__________________________________________________________________________________________________ -block_12_project (Conv2D) (None, 10, 10, 96) 55296 block_12_depthwise_relu[0][0] -__________________________________________________________________________________________________ -block_12_project_BN (BatchNorma (None, 10, 10, 96) 384 block_12_project[0][0] -__________________________________________________________________________________________________ -block_12_add (Add) (None, 10, 10, 96) 0 block_11_add[0][0] - block_12_project_BN[0][0] -__________________________________________________________________________________________________ -block_13_expand (Conv2D) (None, 10, 10, 576) 55296 block_12_add[0][0] -__________________________________________________________________________________________________ -block_13_expand_BN (BatchNormal (None, 10, 10, 576) 2304 block_13_expand[0][0] -__________________________________________________________________________________________________ -block_13_expand_relu (ReLU) (None, 10, 10, 576) 0 block_13_expand_BN[0][0] -__________________________________________________________________________________________________ -block_13_pad (ZeroPadding2D) (None, 11, 11, 576) 0 block_13_expand_relu[0][0] -__________________________________________________________________________________________________ -block_13_depthwise (DepthwiseCo (None, 5, 5, 576) 5184 block_13_pad[0][0] -__________________________________________________________________________________________________ -block_13_depthwise_BN (BatchNor (None, 5, 5, 576) 2304 block_13_depthwise[0][0] -__________________________________________________________________________________________________ -block_13_depthwise_relu (ReLU) (None, 5, 5, 576) 0 block_13_depthwise_BN[0][0] -__________________________________________________________________________________________________ -block_13_project (Conv2D) (None, 5, 5, 160) 92160 block_13_depthwise_relu[0][0] -__________________________________________________________________________________________________ -block_13_project_BN (BatchNorma (None, 5, 5, 160) 640 block_13_project[0][0] -__________________________________________________________________________________________________ -block_14_expand (Conv2D) (None, 5, 5, 960) 153600 block_13_project_BN[0][0] -__________________________________________________________________________________________________ -block_14_expand_BN (BatchNormal (None, 5, 5, 960) 3840 block_14_expand[0][0] -__________________________________________________________________________________________________ -block_14_expand_relu (ReLU) (None, 5, 5, 960) 0 block_14_expand_BN[0][0] -__________________________________________________________________________________________________ -block_14_depthwise (DepthwiseCo (None, 5, 5, 960) 8640 block_14_expand_relu[0][0] -__________________________________________________________________________________________________ -block_14_depthwise_BN (BatchNor (None, 5, 5, 960) 3840 block_14_depthwise[0][0] -__________________________________________________________________________________________________ -block_14_depthwise_relu (ReLU) (None, 5, 5, 960) 0 block_14_depthwise_BN[0][0] -__________________________________________________________________________________________________ -block_14_project (Conv2D) (None, 5, 5, 160) 153600 block_14_depthwise_relu[0][0] -__________________________________________________________________________________________________ -block_14_project_BN (BatchNorma (None, 5, 5, 160) 640 block_14_project[0][0] -__________________________________________________________________________________________________ -block_14_add (Add) (None, 5, 5, 160) 0 block_13_project_BN[0][0] - block_14_project_BN[0][0] -__________________________________________________________________________________________________ -block_15_expand (Conv2D) (None, 5, 5, 960) 153600 block_14_add[0][0] -__________________________________________________________________________________________________ -block_15_expand_BN (BatchNormal (None, 5, 5, 960) 3840 block_15_expand[0][0] -__________________________________________________________________________________________________ -block_15_expand_relu (ReLU) (None, 5, 5, 960) 0 block_15_expand_BN[0][0] -__________________________________________________________________________________________________ -block_15_depthwise (DepthwiseCo (None, 5, 5, 960) 8640 block_15_expand_relu[0][0] -__________________________________________________________________________________________________ -block_15_depthwise_BN (BatchNor (None, 5, 5, 960) 3840 block_15_depthwise[0][0] -__________________________________________________________________________________________________ -block_15_depthwise_relu (ReLU) (None, 5, 5, 960) 0 block_15_depthwise_BN[0][0] -__________________________________________________________________________________________________ -block_15_project (Conv2D) (None, 5, 5, 160) 153600 block_15_depthwise_relu[0][0] -__________________________________________________________________________________________________ -block_15_project_BN (BatchNorma (None, 5, 5, 160) 640 block_15_project[0][0] -__________________________________________________________________________________________________ -block_15_add (Add) (None, 5, 5, 160) 0 block_14_add[0][0] - block_15_project_BN[0][0] -__________________________________________________________________________________________________ -block_16_expand (Conv2D) (None, 5, 5, 960) 153600 block_15_add[0][0] -__________________________________________________________________________________________________ -block_16_expand_BN (BatchNormal (None, 5, 5, 960) 3840 block_16_expand[0][0] -__________________________________________________________________________________________________ -block_16_expand_relu (ReLU) (None, 5, 5, 960) 0 block_16_expand_BN[0][0] -__________________________________________________________________________________________________ -block_16_depthwise (DepthwiseCo (None, 5, 5, 960) 8640 block_16_expand_relu[0][0] -__________________________________________________________________________________________________ -block_16_depthwise_BN (BatchNor (None, 5, 5, 960) 3840 block_16_depthwise[0][0] -__________________________________________________________________________________________________ -block_16_depthwise_relu (ReLU) (None, 5, 5, 960) 0 block_16_depthwise_BN[0][0] -__________________________________________________________________________________________________ -block_16_project (Conv2D) (None, 5, 5, 320) 307200 block_16_depthwise_relu[0][0] -__________________________________________________________________________________________________ -block_16_project_BN (BatchNorma (None, 5, 5, 320) 1280 block_16_project[0][0] -__________________________________________________________________________________________________ -Conv_1 (Conv2D) (None, 5, 5, 1280) 409600 block_16_project_BN[0][0] -__________________________________________________________________________________________________ -Conv_1_bn (BatchNormalization) (None, 5, 5, 1280) 5120 Conv_1[0][0] -__________________________________________________________________________________________________ -out_relu (ReLU) (None, 5, 5, 1280) 0 Conv_1_bn[0][0] -================================================================================================== -Total params: 2,257,984 -Trainable params: 0 -Non-trainable params: 2,257,984 -__________________________________________________________________________________________________ - -``` - -### Add a classification head - -To generate predictions from the block of features, average over the spatial `5x5` spatial locations, using a `tf.keras.layers.GlobalAveragePooling2D` layer to convert the features to a single 1280-element vector per image. - -```py -global_average_layer = tf.keras.layers.GlobalAveragePooling2D() -feature_batch_average = global_average_layer(feature_batch) -print(feature_batch_average.shape) -``` - -```py -(32, 1280) - -``` - -Apply a `tf.keras.layers.Dense` layer to convert these features into a single prediction per image. You don't need an activation function here because this prediction will be treated as a `logit`, or a raw prediction value. Positive numbers predict class 1, negative numbers predict class 0. - -```py -prediction_layer = tf.keras.layers.Dense(1) -prediction_batch = prediction_layer(feature_batch_average) -print(prediction_batch.shape) -``` - -```py -(32, 1) - -``` - -Build a model by chaining together the data augmentation, rescaling, base_model and feature extractor layers using the [Keras Functional API](https://tensorflow.google.cn/guide/keras/functional). As previously mentioned, use training=False as our model contains a BatchNormalization layer. - -```py -inputs = tf.keras.Input(shape=(160, 160, 3)) -x = data_augmentation(inputs) -x = preprocess_input(x) -x = base_model(x, training=False) -x = global_average_layer(x) -x = tf.keras.layers.Dropout(0.2)(x) -outputs = prediction_layer(x) -model = tf.keras.Model(inputs, outputs) -``` - -### Compile the model - -Compile the model before training it. Since there are two classes, use a binary cross-entropy loss with `from_logits=True` since the model provides a linear output. - -```py -base_learning_rate = 0.0001 -model.compile(optimizer=tf.keras.optimizers.Adam(lr=base_learning_rate), - loss=tf.keras.losses.BinaryCrossentropy(from_logits=True), - metrics=['accuracy']) -``` - -```py -model.summary() -``` - -```py -Model: "model" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -input_2 (InputLayer) [(None, 160, 160, 3)] 0 -_________________________________________________________________ -sequential (Sequential) (None, 160, 160, 3) 0 -_________________________________________________________________ -tf.math.truediv (TFOpLambda) (None, 160, 160, 3) 0 -_________________________________________________________________ -tf.math.subtract (TFOpLambda (None, 160, 160, 3) 0 -_________________________________________________________________ -mobilenetv2_1.00_160 (Functi (None, 5, 5, 1280) 2257984 -_________________________________________________________________ -global_average_pooling2d (Gl (None, 1280) 0 -_________________________________________________________________ -dropout (Dropout) (None, 1280) 0 -_________________________________________________________________ -dense (Dense) (None, 1) 1281 -================================================================= -Total params: 2,259,265 -Trainable params: 1,281 -Non-trainable params: 2,257,984 -_________________________________________________________________ - -``` - -The 2.5M parameters in MobileNet are frozen, but there are 1.2K *trainable* parameters in the Dense layer. These are divided between two `tf.Variable` objects, the weights and biases. - -```py -len(model.trainable_variables) -``` - -```py -2 - -``` - -### Train the model - -After training for 10 epochs, you should see ~94% accuracy on the validation set. - -```py -initial_epochs = 10 - -loss0, accuracy0 = model.evaluate(validation_dataset) -``` - -```py -26/26 [==============================] - 7s 199ms/step - loss: 0.9126 - accuracy: 0.3857 - -``` - -```py -print("initial loss: {:.2f}".format(loss0)) -print("initial accuracy: {:.2f}".format(accuracy0)) -``` - -```py -initial loss: 0.91 -initial accuracy: 0.38 - -``` - -```py -history = model.fit(train_dataset, - epochs=initial_epochs, - validation_data=validation_dataset) -``` - -```py -Epoch 1/10 -63/63 [==============================] - 22s 306ms/step - loss: 0.7643 - accuracy: 0.5285 - val_loss: 0.6197 - val_accuracy: 0.6324 -Epoch 2/10 -63/63 [==============================] - 19s 301ms/step - loss: 0.5608 - accuracy: 0.6780 - val_loss: 0.4556 - val_accuracy: 0.7710 -Epoch 3/10 -63/63 [==============================] - 19s 305ms/step - loss: 0.4410 - accuracy: 0.7810 - val_loss: 0.3487 - val_accuracy: 0.8428 -Epoch 4/10 -63/63 [==============================] - 19s 300ms/step - loss: 0.3661 - accuracy: 0.8270 - val_loss: 0.2757 - val_accuracy: 0.8948 -Epoch 5/10 -63/63 [==============================] - 19s 297ms/step - loss: 0.3097 - accuracy: 0.8680 - val_loss: 0.2295 - val_accuracy: 0.9134 -Epoch 6/10 -63/63 [==============================] - 19s 298ms/step - loss: 0.2851 - accuracy: 0.8795 - val_loss: 0.2078 - val_accuracy: 0.9257 -Epoch 7/10 -63/63 [==============================] - 21s 329ms/step - loss: 0.2658 - accuracy: 0.8865 - val_loss: 0.1758 - val_accuracy: 0.9418 -Epoch 8/10 -63/63 [==============================] - 19s 304ms/step - loss: 0.2432 - accuracy: 0.8990 - val_loss: 0.1697 - val_accuracy: 0.9369 -Epoch 9/10 -63/63 [==============================] - 19s 302ms/step - loss: 0.2305 - accuracy: 0.9025 - val_loss: 0.1516 - val_accuracy: 0.9468 -Epoch 10/10 -63/63 [==============================] - 20s 307ms/step - loss: 0.2104 - accuracy: 0.9170 - val_loss: 0.1451 - val_accuracy: 0.9493 - -``` - -### Learning curves - -Let's take a look at the learning curves of the training and validation accuracy/loss when using the MobileNet V2 base model as a fixed feature extractor. - -```py -acc = history.history['accuracy'] -val_acc = history.history['val_accuracy'] - -loss = history.history['loss'] -val_loss = history.history['val_loss'] - -plt.figure(figsize=(8, 8)) -plt.subplot(2, 1, 1) -plt.plot(acc, label='Training Accuracy') -plt.plot(val_acc, label='Validation Accuracy') -plt.legend(loc='lower right') -plt.ylabel('Accuracy') -plt.ylim([min(plt.ylim()),1]) -plt.title('Training and Validation Accuracy') - -plt.subplot(2, 1, 2) -plt.plot(loss, label='Training Loss') -plt.plot(val_loss, label='Validation Loss') -plt.legend(loc='upper right') -plt.ylabel('Cross Entropy') -plt.ylim([0,1.0]) -plt.title('Training and Validation Loss') -plt.xlabel('epoch') -plt.show() -``` - -![png](img/cd8127c26455c518a827f0ce6a07b1e0.png) - -**Note:** If you are wondering why the validation metrics are clearly better than the training metrics, the main factor is because layers like `tf.keras.layers.BatchNormalization` and `tf.keras.layers.Dropout` affect accuracy during training. They are turned off when calculating validation loss. - -To a lesser extent, it is also because training metrics report the average for an epoch, while validation metrics are evaluated after the epoch, so validation metrics see a model that has trained slightly longer. - -## Fine tuning - -In the feature extraction experiment, you were only training a few layers on top of an MobileNet V2 base model. The weights of the pre-trained network were **not** updated during training. - -One way to increase performance even further is to train (or "fine-tune") the weights of the top layers of the pre-trained model alongside the training of the classifier you added. The training process will force the weights to be tuned from generic feature maps to features associated specifically with the dataset. - -**Note:** This should only be attempted after you have trained the top-level classifier with the pre-trained model set to non-trainable. If you add a randomly initialized classifier on top of a pre-trained model and attempt to train all layers jointly, the magnitude of the gradient updates will be too large (due to the random weights from the classifier) and your pre-trained model will forget what it has learned. - -Also, you should try to fine-tune a small number of top layers rather than the whole MobileNet model. In most convolutional networks, the higher up a layer is, the more specialized it is. The first few layers learn very simple and generic features that generalize to almost all types of images. As you go higher up, the features are increasingly more specific to the dataset on which the model was trained. The goal of fine-tuning is to adapt these specialized features to work with the new dataset, rather than overwrite the generic learning. - -### Un-freeze the top layers of the model - -All you need to do is unfreeze the `base_model` and set the bottom layers to be un-trainable. Then, you should recompile the model (necessary for these changes to take effect), and resume training. - -```py -base_model.trainable = True -``` - -```py -# Let's take a look to see how many layers are in the base model -print("Number of layers in the base model: ", len(base_model.layers)) - -# Fine-tune from this layer onwards -fine_tune_at = 100 - -# Freeze all the layers before the `fine_tune_at` layer -for layer in base_model.layers[:fine_tune_at]: - layer.trainable = False -``` - -```py -Number of layers in the base model: 154 - -``` - -### Compile the model - -As you are training a much larger model and want to readapt the pretrained weights, it is important to use a lower learning rate at this stage. Otherwise, your model could overfit very quickly. - -```py -model.compile(loss=tf.keras.losses.BinaryCrossentropy(from_logits=True), - optimizer = tf.keras.optimizers.RMSprop(lr=base_learning_rate/10), - metrics=['accuracy']) -``` - -```py -model.summary() -``` - -```py -Model: "model" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -input_2 (InputLayer) [(None, 160, 160, 3)] 0 -_________________________________________________________________ -sequential (Sequential) (None, 160, 160, 3) 0 -_________________________________________________________________ -tf.math.truediv (TFOpLambda) (None, 160, 160, 3) 0 -_________________________________________________________________ -tf.math.subtract (TFOpLambda (None, 160, 160, 3) 0 -_________________________________________________________________ -mobilenetv2_1.00_160 (Functi (None, 5, 5, 1280) 2257984 -_________________________________________________________________ -global_average_pooling2d (Gl (None, 1280) 0 -_________________________________________________________________ -dropout (Dropout) (None, 1280) 0 -_________________________________________________________________ -dense (Dense) (None, 1) 1281 -================================================================= -Total params: 2,259,265 -Trainable params: 1,862,721 -Non-trainable params: 396,544 -_________________________________________________________________ - -``` - -```py -len(model.trainable_variables) -``` - -```py -56 - -``` - -### Continue training the model - -If you trained to convergence earlier, this step will improve your accuracy by a few percentage points. - -```py -fine_tune_epochs = 10 -total_epochs = initial_epochs + fine_tune_epochs - -history_fine = model.fit(train_dataset, - epochs=total_epochs, - initial_epoch=history.epoch[-1], - validation_data=validation_dataset) -``` - -```py -Epoch 10/20 -63/63 [==============================] - 31s 426ms/step - loss: 0.1810 - accuracy: 0.9288 - val_loss: 0.0674 - val_accuracy: 0.9752 -Epoch 11/20 -63/63 [==============================] - 26s 406ms/step - loss: 0.1221 - accuracy: 0.9494 - val_loss: 0.0592 - val_accuracy: 0.9827 -Epoch 12/20 -63/63 [==============================] - 26s 402ms/step - loss: 0.1116 - accuracy: 0.9529 - val_loss: 0.0732 - val_accuracy: 0.9666 -Epoch 13/20 -63/63 [==============================] - 26s 402ms/step - loss: 0.0950 - accuracy: 0.9586 - val_loss: 0.0467 - val_accuracy: 0.9790 -Epoch 14/20 -63/63 [==============================] - 25s 396ms/step - loss: 0.1075 - accuracy: 0.9556 - val_loss: 0.0487 - val_accuracy: 0.9814 -Epoch 15/20 -63/63 [==============================] - 25s 396ms/step - loss: 0.0664 - accuracy: 0.9741 - val_loss: 0.0435 - val_accuracy: 0.9827 -Epoch 16/20 -63/63 [==============================] - 25s 398ms/step - loss: 0.0860 - accuracy: 0.9681 - val_loss: 0.0428 - val_accuracy: 0.9790 -Epoch 17/20 -63/63 [==============================] - 25s 394ms/step - loss: 0.0709 - accuracy: 0.9740 - val_loss: 0.0662 - val_accuracy: 0.9691 -Epoch 18/20 -63/63 [==============================] - 25s 394ms/step - loss: 0.0787 - accuracy: 0.9685 - val_loss: 0.0390 - val_accuracy: 0.9827 -Epoch 19/20 -63/63 [==============================] - 25s 394ms/step - loss: 0.0733 - accuracy: 0.9734 - val_loss: 0.0577 - val_accuracy: 0.9728 -Epoch 20/20 -63/63 [==============================] - 25s 395ms/step - loss: 0.0642 - accuracy: 0.9739 - val_loss: 0.0403 - val_accuracy: 0.9802 - -``` - -Let's take a look at the learning curves of the training and validation accuracy/loss when fine-tuning the last few layers of the MobileNet V2 base model and training the classifier on top of it. The validation loss is much higher than the training loss, so you may get some overfitting. - -You may also get some overfitting as the new training set is relatively small and similar to the original MobileNet V2 datasets. - -After fine tuning the model nearly reaches 98% accuracy on the validation set. - -```py -acc += history_fine.history['accuracy'] -val_acc += history_fine.history['val_accuracy'] - -loss += history_fine.history['loss'] -val_loss += history_fine.history['val_loss'] -``` - -```py -plt.figure(figsize=(8, 8)) -plt.subplot(2, 1, 1) -plt.plot(acc, label='Training Accuracy') -plt.plot(val_acc, label='Validation Accuracy') -plt.ylim([0.8, 1]) -plt.plot([initial_epochs-1,initial_epochs-1], - plt.ylim(), label='Start Fine Tuning') -plt.legend(loc='lower right') -plt.title('Training and Validation Accuracy') - -plt.subplot(2, 1, 2) -plt.plot(loss, label='Training Loss') -plt.plot(val_loss, label='Validation Loss') -plt.ylim([0, 1.0]) -plt.plot([initial_epochs-1,initial_epochs-1], - plt.ylim(), label='Start Fine Tuning') -plt.legend(loc='upper right') -plt.title('Training and Validation Loss') -plt.xlabel('epoch') -plt.show() -``` - -![png](img/ac978eb483a5f2c471a3cbeb70bb6784.png) - -### Evaluation and prediction - -Finaly you can verify the performance of the model on new data using test set. - -```py -loss, accuracy = model.evaluate(test_dataset) -print('Test accuracy :', accuracy) -``` - -```py -6/6 [==============================] - 1s 188ms/step - loss: 0.0559 - accuracy: 0.9792 -Test accuracy : 0.9791666865348816 - -``` - -And now you are all set to use this model to predict if your pet is a cat or dog. - -```py -#Retrieve a batch of images from the test set -image_batch, label_batch = test_dataset.as_numpy_iterator().next() -predictions = model.predict_on_batch(image_batch).flatten() - -# Apply a sigmoid since our model returns logits -predictions = tf.nn.sigmoid(predictions) -predictions = tf.where(predictions < 0.5, 0, 1) - -print('Predictions:\n', predictions.numpy()) -print('Labels:\n', label_batch) - -plt.figure(figsize=(10, 10)) -for i in range(9): - ax = plt.subplot(3, 3, i + 1) - plt.imshow(image_batch[i].astype("uint8")) - plt.title(class_names[predictions[i]]) - plt.axis("off") -``` - -```py -Predictions: - [0 1 0 0 1 1 1 1 1 0 0 1 0 1 1 1 0 0 1 0 1 0 1 1 0 1 1 0 1 0 0 0] -Labels: - [0 1 0 0 1 1 1 1 1 0 0 1 0 1 1 1 0 0 1 0 1 0 1 0 0 1 1 0 1 0 0 0] - -``` - -![png](img/968128f6d4f50734ad92597399dacd79.png) - -## Summary - -* **Using a pre-trained model for feature extraction**: When working with a small dataset, it is a common practice to take advantage of features learned by a model trained on a larger dataset in the same domain. This is done by instantiating the pre-trained model and adding a fully-connected classifier on top. The pre-trained model is "frozen" and only the weights of the classifier get updated during training. In this case, the convolutional base extracted all the features associated with each image and you just trained a classifier that determines the image class given that set of extracted features. - -* **Fine-tuning a pre-trained model**: To further improve performance, one might want to repurpose the top-level layers of the pre-trained models to the new dataset via fine-tuning. In this case, you tuned your weights such that your model learned high-level features specific to the dataset. This technique is usually recommended when the training dataset is large and very similar to the original dataset that the pre-trained model was trained on. - -To learn more, visit the [Transfer learning guide](https://tensorflow.google.cn/guide/keras/transfer_learning). - -```py -# MIT License -# -# Copyright (c) 2017 François Chollet # IGNORE_COPYRIGHT: cleared by OSS licensing -# -# Permission is hereby granted, free of charge, to any person obtaining a -# copy of this software and associated documentation files (the "Software"), -# to deal in the Software without restriction, including without limitation -# the rights to use, copy, modify, merge, publish, distribute, sublicense, -# and/or sell copies of the Software, and to permit persons to whom the -# Software is furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -# DEALINGS IN THE SOFTWARE. -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/044.md b/Tensorflow/TensorFlow2.0/044.md deleted file mode 100644 index 8ff46660..00000000 --- a/Tensorflow/TensorFlow2.0/044.md +++ /dev/null @@ -1,38 +0,0 @@ -# Transfer learning with TensorFlow Hub - -> 原文:[https://tensorflow.google.cn/tutorials/images/transfer_learning_with_hub](https://tensorflow.google.cn/tutorials/images/transfer_learning_with_hub) - -[TensorFlow Hub](https://hub.tensorflow.google.cn/) is a repository of pre-trained TensorFlow models. - -This tutorial demonstrates how to: - -1. Use models from TensorFlow Hub with [`tf.keras`](https://tensorflow.google.cn/api_docs/python/tf/keras) -2. Use an image classification model from TensorFlow Hub -3. Do simple transfer learning to fine-tune a model for your own image classes - -## Setup - -```py -import numpy as np -import time - -import PIL.Image as Image -import matplotlib.pylab as plt - -import tensorflow as tf -import tensorflow_hub as hub -``` - -## An ImageNet classifier - -You'll start by using a pretrained classifer model to take an image and predict what it's an image of - no training required! - -### Download the classifier - -Use [`hub.KerasLayer`](https://tensorflow.google.cn/hub/api_docs/python/hub/KerasLayer) to load a [MobileNetV2 model](https://hub.tensorflow.google.cn/google/tf2-preview/mobilenet_v2/classification/2) from TensorFlow Hub. Any [compatible image classifier model](https://hub.tensorflow.google.cn/s?q=tf2&module-type=image-classification) from hub.tensorflow.google.cn will work here. - - - -```py -classifier_model ="https://hub.tensorflow.google.cn/google/tf2-preview/mobilenet_v2/classification/4" -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/045.md b/Tensorflow/TensorFlow2.0/045.md deleted file mode 100644 index 801f8cb7..00000000 --- a/Tensorflow/TensorFlow2.0/045.md +++ /dev/null @@ -1,500 +0,0 @@ -# Data augmentation - -> 原文:[https://tensorflow.google.cn/tutorials/images/data_augmentation](https://tensorflow.google.cn/tutorials/images/data_augmentation) - -## Overview - -This tutorial demonstrates data augmentation: a technique to increase the diversity of your training set by applying random (but realistic) transformations such as image rotation. You will learn how to apply data augmentation in two ways. First, you will use [Keras Preprocessing Layers](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/experimental/preprocessing/). Next, you will use [`tf.image`](https://tensorflow.google.cn/api_docs/python/tf/image). - -## Setup - -```py -pip install -q tf-nightly - -``` - -```py -WARNING: You are using pip version 20.2.2; however, version 20.2.3 is available. -You should consider upgrading via the '/tmpfs/src/tf_docs_env/bin/python -m pip install --upgrade pip' command. - -``` - -```py -import matplotlib.pyplot as plt -import numpy as np -import tensorflow as tf -import tensorflow_datasets as tfds - -from tensorflow.keras import layers -from tensorflow.keras.datasets import mnist -``` - -## Download a dataset - -This tutorial uses the [tf_flowers](https://tensorflow.google.cn/datasets/catalog/tf_flowers) dataset. For convenience, download the dataset using [TensorFlow Datasets](https://tensorflow.google.cn/datasets). If you would like to learn about others ways of importing data, see the [load images](https://tensorflow.google.cn/tutorials/load_data/images) tutorial. - -```py -(train_ds, val_ds, test_ds), metadata = tfds.load( - 'tf_flowers', - split=['train[:80%]', 'train[80%:90%]', 'train[90%:]'], - with_info=True, - as_supervised=True, -) -``` - -```py -Downloading and preparing dataset tf_flowers/3.0.1 (download: 218.21 MiB, generated: 221.83 MiB, total: 440.05 MiB) to /home/kbuilder/tensorflow_datasets/tf_flowers/3.0.1... - -Warning:absl:Dataset tf_flowers is hosted on GCS. It will automatically be downloaded to your -local data directory. If you'd instead prefer to read directly from our public -GCS bucket (recommended if you're running on GCP), you can instead pass -`try_gcs=True` to `tfds.load` or set `data_dir=gs://tfds-data/datasets`. - -Dataset tf_flowers downloaded and prepared to /home/kbuilder/tensorflow_datasets/tf_flowers/3.0.1\. Subsequent calls will reuse this data. - -``` - -The flowers dataset has five classes. - -```py -num_classes = metadata.features['label'].num_classes -print(num_classes) -``` - -```py -5 - -``` - -Let's retrieve an image from the dataset and use it to demonstrate data augmentation. - -```py -get_label_name = metadata.features['label'].int2str - -image, label = next(iter(train_ds)) -_ = plt.imshow(image) -_ = plt.title(get_label_name(label)) -``` - -![png](img/aa45f39cd51486760afc706f90cf0afa.png) - -## Use Keras preprocessing layers - -**Note:** The [Keras Preprocesing Layers](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/experimental/preprocessing) introduced in this section are currently experimental. - -### Resizing and rescaling - -You can use preprocessing layers to [resize](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/experimental/preprocessing/Resizing) your images to a consistent shape, and to [rescale](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/experimental/preprocessing/Rescaling) pixel values. - -```py -IMG_SIZE = 180 - -resize_and_rescale = tf.keras.Sequential([ - layers.experimental.preprocessing.Resizing(IMG_SIZE, IMG_SIZE), - layers.experimental.preprocessing.Rescaling(1./255) -]) -``` - -**Note:** the rescaling layer above standardizes pixel values to `[0,1]`. If instead you wanted `[-1,1]`, you would write `Rescaling(1./127.5, offset=-1)`. - -You can see the result of applying these layers to an image. - -```py -result = resize_and_rescale(image) -_ = plt.imshow(result) -``` - -![png](img/35228c04a07ff13d63e7c28043db3950.png) - -You can verify the pixels are in `[0-1]`. - -```py -print("Min and max pixel values:", result.numpy().min(), result.numpy().max()) -``` - -```py -Min and max pixel values: 0.0 1.0 - -``` - -### Data augmentation - -You can use preprocessing layers for data augmentation as well. - -Let's create a few preprocessing layers and apply them repeatedly to the same image. - -```py -data_augmentation = tf.keras.Sequential([ - layers.experimental.preprocessing.RandomFlip("horizontal_and_vertical"), - layers.experimental.preprocessing.RandomRotation(0.2), -]) -``` - -```py -# Add the image to a batch -image = tf.expand_dims(image, 0) -``` - -```py -plt.figure(figsize=(10, 10)) -for i in range(9): - augmented_image = data_augmentation(image) - ax = plt.subplot(3, 3, i + 1) - plt.imshow(augmented_image[0]) - plt.axis("off") -``` - -![png](img/30586460013d859e496dd27ce6b18cbc.png) - -There are a variety of preprocessing [layers](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/experimental/preprocessing) you can use for data augmentation including `layers.RandomContrast`, `layers.RandomCrop`, `layers.RandomZoom`, and others. - -### Two options to use the preprocessing layers - -There are two ways you can use these preprocessing layers, with important tradeoffs. - -#### Option 1: Make the preprocessing layers part of your model - -```py -model = tf.keras.Sequential([ - resize_and_rescale, - data_augmentation, - layers.Conv2D(16, 3, padding='same', activation='relu'), - layers.MaxPooling2D(), - # Rest of your model -]) -``` - -There are two important points to be aware of in this case: - -* Data augmentation will run on-device, synchronously with the rest of your layers, and benefit from GPU acceleration. - -* When you export your model using `model.save`, the preprocessing layers will be saved along with the rest of your model. If you later deploy this model, it will automatically standardize images (according to the configuration of your layers). This can save you from the effort of having to reimplement that logic server-side. - -**Note:** Data augmentation is inactive at test time so input images will only be augmented during calls to `model.fit` (not `model.evaluate` or `model.predict`). - -#### Option 2: Apply the preprocessing layers to your dataset - -```py -aug_ds = train_ds.map( - lambda x, y: (resize_and_rescale(x, training=True), y)) -``` - -With this approach, you use [`Dataset.map`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#map) to create a dataset that yields batches of augmented images. In this case: - -* Data augmentation will happen asynchronously on the CPU, and is non-blocking. You can overlap the training of your model on the GPU with data preprocessing, using [`Dataset.prefetch`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#prefetch), shown below. -* In this case the prepreprocessing layers will not be exported with the model when you call `model.save`. You will need to attach them to your model before saving it or reimplement them server-side. After training, you can attach the preprocessing layers before export. - -You can find an example of the first option in the [image classification](https://tensorflow.google.cn/tutorials/images/classification) tutorial. Let's demonstrate the second option here. - -### Apply the preprocessing layers to the datasets - -Configure the train, validation, and test datasets with the preprocessing layers you created above. You will also configure the datasets for performance, using parallel reads and buffered prefetching to yield batches from disk without I/O become blocking. You can learn more dataset performance in the [Better performance with the tf.data API](https://tensorflow.google.cn/guide/data_performance) guide. - -**Note:** data augmentation should only be applied to the training set. - -```py -batch_size = 32 -AUTOTUNE = tf.data.experimental.AUTOTUNE - -def prepare(ds, shuffle=False, augment=False): - # Resize and rescale all datasets - ds = ds.map(lambda x, y: (resize_and_rescale(x), y), - num_parallel_calls=AUTOTUNE) - - if shuffle: - ds = ds.shuffle(1000) - - # Batch all datasets - ds = ds.batch(batch_size) - - # Use data augmentation only on the training set - if augment: - ds = ds.map(lambda x, y: (data_augmentation(x, training=True), y), - num_parallel_calls=AUTOTUNE) - - # Use buffered prefecting on all datasets - return ds.prefetch(buffer_size=AUTOTUNE) -``` - -```py -train_ds = prepare(train_ds, shuffle=True, augment=True) -val_ds = prepare(val_ds) -test_ds = prepare(test_ds) -``` - -### Train a model - -For completeness, you will now train a model using these datasets. This model has not been tuned for accuracy (the goal is to show you the mechanics). - -```py -model = tf.keras.Sequential([ - layers.Conv2D(16, 3, padding='same', activation='relu'), - layers.MaxPooling2D(), - layers.Conv2D(32, 3, padding='same', activation='relu'), - layers.MaxPooling2D(), - layers.Conv2D(64, 3, padding='same', activation='relu'), - layers.MaxPooling2D(), - layers.Flatten(), - layers.Dense(128, activation='relu'), - layers.Dense(num_classes) -]) -``` - -```py -model.compile(optimizer='adam', - loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True), - metrics=['accuracy']) -``` - -```py -epochs=5 -history = model.fit( - train_ds, - validation_data=val_ds, - epochs=epochs -) -``` - -```py -Epoch 1/5 -92/92 [==============================] - 30s 315ms/step - loss: 1.5078 - accuracy: 0.3428 - val_loss: 1.0809 - val_accuracy: 0.6240 -Epoch 2/5 -92/92 [==============================] - 28s 303ms/step - loss: 1.0781 - accuracy: 0.5724 - val_loss: 0.9762 - val_accuracy: 0.6322 -Epoch 3/5 -92/92 [==============================] - 28s 295ms/step - loss: 1.0083 - accuracy: 0.5900 - val_loss: 0.9570 - val_accuracy: 0.6376 -Epoch 4/5 -92/92 [==============================] - 28s 300ms/step - loss: 0.9537 - accuracy: 0.6116 - val_loss: 0.9081 - val_accuracy: 0.6485 -Epoch 5/5 -92/92 [==============================] - 28s 301ms/step - loss: 0.8816 - accuracy: 0.6525 - val_loss: 0.8353 - val_accuracy: 0.6594 - -``` - -```py -loss, acc = model.evaluate(test_ds) -print("Accuracy", acc) -``` - -```py -12/12 [==============================] - 1s 83ms/step - loss: 0.8226 - accuracy: 0.6567 -Accuracy 0.6566757559776306 - -``` - -### Custom data augmentation - -You can also create custom data augmenation layers. This tutorial shows two ways of doing so. First, you will create a [`layers.Lambda`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Lambda) layer. This is a good way to write concise code. Next, you will write a new layer via [subclassing](https://tensorflow.google.cn/guide/keras/custom_layers_and_models), which gives you more control. Both layers will randomly invert the colors in an image, accoring to some probability. - -```py -def random_invert_img(x, p=0.5): - if tf.random.uniform([]) < p: - x = (255-x) - else: - x - return x -``` - -```py -def random_invert(factor=0.5): - return layers.Lambda(lambda x: random_invert_img(x, factor)) - -random_invert = random_invert() -``` - -```py -plt.figure(figsize=(10, 10)) -for i in range(9): - augmented_image = random_invert(image) - ax = plt.subplot(3, 3, i + 1) - plt.imshow(augmented_image[0].numpy().astype("uint8")) - plt.axis("off") -``` - -![png](img/5c6f6f5e851c052e9e53969cd0419cbb.png) - -Next, implement a custom layer by [subclassing](https://tensorflow.google.cn/guide/keras/custom_layers_and_models). - -```py -class RandomInvert(layers.Layer): - def __init__(self, factor=0.5, **kwargs): - super().__init__(**kwargs) - self.factor = factor - - def call(self, x): - return random_invert_img(x) -``` - -```py -_ = plt.imshow(RandomInvert()(image)[0]) -``` - -![png](img/8142c6b01c1a35d86e4ace60827bcce8.png) - -Both of these layers can be used as described in options 1 and 2 above. - -## Using tf.image - -The above `layers.preprocessing` utilities are convenient. For finer control, you can write your own data augmentation pipelines or layers using [`tf.data`](https://tensorflow.google.cn/api_docs/python/tf/data) and [`tf.image`](https://tensorflow.google.cn/api_docs/python/tf/image). You may also want to check out [TensorFlow Addons Image: Operations](https://tensorflow.google.cn/addons/tutorials/image_ops) and [TensorFlow I/O: Color Space Conversions](https://tensorflow.google.cn/io/tutorials/colorspace) - -Since the flowers dataset was previously configured with data augmentation, let's reimport it to start fresh. - -```py -(train_ds, val_ds, test_ds), metadata = tfds.load( - 'tf_flowers', - split=['train[:80%]', 'train[80%:90%]', 'train[90%:]'], - with_info=True, - as_supervised=True, -) -``` - -Retrieve an image to work with. - -```py -image, label = next(iter(train_ds)) -_ = plt.imshow(image) -_ = plt.title(get_label_name(label)) -``` - -![png](img/cfa82b128c103151f142dae7b5ddecda.png) - -Let's use the following function to visualize and compare the original and augmented images side-by-side. - -```py -def visualize(original, augmented): - fig = plt.figure() - plt.subplot(1,2,1) - plt.title('Original image') - plt.imshow(original) - - plt.subplot(1,2,2) - plt.title('Augmented image') - plt.imshow(augmented) -``` - -### Data augmentation - -### Flipping the image - -Flip the image either vertically or horizontally. - -```py -flipped = tf.image.flip_left_right(image) -visualize(image, flipped) -``` - -![png](img/dda6acab76c9a017bbe16c3bebb8e54c.png) - -### Grayscale the image - -Grayscale an image. - -```py -grayscaled = tf.image.rgb_to_grayscale(image) -visualize(image, tf.squeeze(grayscaled)) -_ = plt.colorbar() -``` - -![png](img/1d2f7cb104afa8ee05f37076045f9195.png) - -### Saturate the image - -Saturate an image by providing a saturation factor. - -```py -saturated = tf.image.adjust_saturation(image, 3) -visualize(image, saturated) -``` - -![png](img/7ef992617c160736f94c086cc0a754d5.png) - -### Change image brightness - -Change the brightness of image by providing a brightness factor. - -```py -bright = tf.image.adjust_brightness(image, 0.4) -visualize(image, bright) -``` - -![png](img/e46db7cde2b53be53d302c4b00d582a5.png) - -### Center crop the image - -Crop the image from center up to the image part you desire. - -```py -cropped = tf.image.central_crop(image, central_fraction=0.5) -visualize(image,cropped) -``` - -![png](img/fe72873df8e5156872c578827579ba34.png) - -### Rotate the image - -Rotate an image by 90 degrees. - -```py -rotated = tf.image.rot90(image) -visualize(image, rotated) -``` - -![png](img/f769d692ddcca3810cad6e32307d9b3a.png) - -### Apply augmentation to a dataset - -As before, apply data augmentation to a dataset using [`Dataset.map`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#map). - -```py -def resize_and_rescale(image, label): - image = tf.cast(image, tf.float32) - image = tf.image.resize(image, [IMG_SIZE, IMG_SIZE]) - image = (image / 255.0) - return image, label -``` - -```py -def augment(image,label): - image, label = resize_and_rescale(image, label) - # Add 6 pixels of padding - image = tf.image.resize_with_crop_or_pad(image, IMG_SIZE + 6, IMG_SIZE + 6) - # Random crop back to the original size - image = tf.image.random_crop(image, size=[IMG_SIZE, IMG_SIZE, 3]) - image = tf.image.random_brightness(image, max_delta=0.5) # Random brightness - image = tf.clip_by_value(image, 0, 1) - return image, label -``` - -### Configure the datasets - -```py -train_ds = ( - train_ds - .shuffle(1000) - .map(augment, num_parallel_calls=AUTOTUNE) - .batch(batch_size) - .prefetch(AUTOTUNE) -) -``` - -```py -val_ds = ( - val_ds - .map(resize_and_rescale, num_parallel_calls=AUTOTUNE) - .batch(batch_size) - .prefetch(AUTOTUNE) -) -``` - -```py -test_ds = ( - test_ds - .map(resize_and_rescale, num_parallel_calls=AUTOTUNE) - .batch(batch_size) - .prefetch(AUTOTUNE) -) -``` - -These datasets can now be used to train a model as shown previously. - -## Next steps - -This tutorial demonstrated data augmentation using [Keras Preprocessing Layers](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/experimental/preprocessing/) and [`tf.image`](https://tensorflow.google.cn/api_docs/python/tf/image). To learn how to include preprocessing layers inside your model, see the [Image classification](https://tensorflow.google.cn/tutorials/images/classification) tutorial. You may also be interested in learning how preprocessing layers can help you classify text, as shown in the [Basic text classification](https://tensorflow.google.cn/tutorials/keras/text_classification) tutorial. You can learn more about [`tf.data`](https://tensorflow.google.cn/api_docs/python/tf/data) in this [guide](https://tensorflow.google.cn/guide/data), and you can learn how to configure your input pipelines for performance [here](https://tensorflow.google.cn/guide/data_performance). \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/046.md b/Tensorflow/TensorFlow2.0/046.md deleted file mode 100644 index 15780f1f..00000000 --- a/Tensorflow/TensorFlow2.0/046.md +++ /dev/null @@ -1,326 +0,0 @@ -# 图像分割 - -> 原文:[https://tensorflow.google.cn/tutorials/images/segmentation](https://tensorflow.google.cn/tutorials/images/segmentation) - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -这篇教程将重点讨论图像分割任务,使用的是改进版的 [U-Net](https://lmb.informatik.uni-freiburg.de/people/ronneber/u-net/)。 - -## 什么是图像分割? - -目前你已经了解在图像分类中,神经网络的任务是给每张输入图像分配一个标签或者类别。但是,有时你想知道一个物体在一张图像中的位置、这个物体的形状、以及哪个像素属于哪个物体等等。这种情况下你会希望分割图像,也就是给图像中的每个像素各分配一个标签。因此,图像分割的任务是训练一个神经网络来输出该图像对每一个像素的掩码。这对从更底层,即像素层级,来理解图像很有帮助。图像分割在例如医疗图像、自动驾驶车辆以及卫星图像等领域有很多应用。 - -本教程将使用的数据集是 [Oxford-IIIT Pet 数据集](https://www.robots.ox.ac.uk/%7Evgg/data/pets/),由 Parkhi *et al.* 创建。该数据集由图像、图像所对应的标签、以及对像素逐一标记的掩码组成。掩码其实就是给每个像素的标签。每个像素分别属于以下三个类别中的一个: - -* 类别 1:像素是宠物的一部分。 -* 类别 2:像素是宠物的轮廓。 -* 类别 3:以上都不是/外围像素。 - -```py -pip install -q git+https://github.com/tensorflow/examples.git - -``` - -```py -WARNING: You are using pip version 20.2.2; however, version 20.2.3 is available. -You should consider upgrading via the '/tmpfs/src/tf_docs_env/bin/python -m pip install --upgrade pip' command. - -``` - -```py -import tensorflow as tf -``` - -```py -from tensorflow_examples.models.pix2pix import pix2pix - -import tensorflow_datasets as tfds -tfds.disable_progress_bar() - -from IPython.display import clear_output -import matplotlib.pyplot as plt -``` - -## 下载 Oxford-IIIT Pets 数据集 - -这个数据集已经集成在 Tensorflow datasets 中,只需下载即可。图像分割掩码在版本 3.0.0 中才被加入,因此我们特别选用这个版本。 - -```py -dataset, info = tfds.load('oxford_iiit_pet:3.*.*', with_info=True) -``` - -```py -Downloading and preparing dataset oxford_iiit_pet/3.2.0 (download: 773.52 MiB, generated: 774.69 MiB, total: 1.51 GiB) to /home/kbuilder/tensorflow_datasets/oxford_iiit_pet/3.2.0... -Shuffling and writing examples to /home/kbuilder/tensorflow_datasets/oxford_iiit_pet/3.2.0.incompleteXSR11A/oxford_iiit_pet-train.tfrecord -Shuffling and writing examples to /home/kbuilder/tensorflow_datasets/oxford_iiit_pet/3.2.0.incompleteXSR11A/oxford_iiit_pet-test.tfrecord -Dataset oxford_iiit_pet downloaded and prepared to /home/kbuilder/tensorflow_datasets/oxford_iiit_pet/3.2.0\. Subsequent calls will reuse this data. - -``` - -下面的代码进行了一个简单的图像翻转扩充。然后,将图像标准化到 [0,1]。最后,如上文提到的,像素点在图像分割掩码中被标记为 {1, 2, 3} 中的一个。为了方便起见,我们将分割掩码都减 1,得到了以下的标签:{0, 1, 2}。 - -```py -def normalize(input_image, input_mask): - input_image = tf.cast(input_image, tf.float32) / 255.0 - input_mask -= 1 - return input_image, input_mask -``` - -```py -@tf.function -def load_image_train(datapoint): - input_image = tf.image.resize(datapoint['image'], (128, 128)) - input_mask = tf.image.resize(datapoint['segmentation_mask'], (128, 128)) - - if tf.random.uniform(()) > 0.5: - input_image = tf.image.flip_left_right(input_image) - input_mask = tf.image.flip_left_right(input_mask) - - input_image, input_mask = normalize(input_image, input_mask) - - return input_image, input_mask -``` - -```py -def load_image_test(datapoint): - input_image = tf.image.resize(datapoint['image'], (128, 128)) - input_mask = tf.image.resize(datapoint['segmentation_mask'], (128, 128)) - - input_image, input_mask = normalize(input_image, input_mask) - - return input_image, input_mask -``` - -数据集已经包含了所需的测试集和训练集划分,所以我们也延续使用相同的划分。 - -```py -TRAIN_LENGTH = info.splits['train'].num_examples -BATCH_SIZE = 64 -BUFFER_SIZE = 1000 -STEPS_PER_EPOCH = TRAIN_LENGTH // BATCH_SIZE -``` - -```py -train = dataset['train'].map(load_image_train, num_parallel_calls=tf.data.experimental.AUTOTUNE) -test = dataset['test'].map(load_image_test) -``` - -```py -train_dataset = train.cache().shuffle(BUFFER_SIZE).batch(BATCH_SIZE).repeat() -train_dataset = train_dataset.prefetch(buffer_size=tf.data.experimental.AUTOTUNE) -test_dataset = test.batch(BATCH_SIZE) -``` - -我们来看一下数据集中的一例图像以及它所对应的掩码。 - -```py -def display(display_list): - plt.figure(figsize=(15, 15)) - - title = ['Input Image', 'True Mask', 'Predicted Mask'] - - for i in range(len(display_list)): - plt.subplot(1, len(display_list), i+1) - plt.title(title[i]) - plt.imshow(tf.keras.preprocessing.image.array_to_img(display_list[i])) - plt.axis('off') - plt.show() -``` - -```py -for image, mask in train.take(1): - sample_image, sample_mask = image, mask -display([sample_image, sample_mask]) -``` - -![png](img/a8a6734d5e53ebf66610af0af887bc96.png) - -## 定义模型 - -这里用到的模型是一个改版的 U-Net。U-Net 由一个编码器(下采样器(downsampler))和一个解码器(上采样器(upsampler))组成。为了学习到鲁棒的特征,同时减少可训练参数的数量,这里可以使用一个预训练模型作为编码器。因此,这项任务中的编码器将使用一个预训练的 MobileNetV2 模型,它的中间输出值将被使用。解码器将使用在 TensorFlow Examples 中的 [Pix2pix tutorial](https://github.com/tensorflow/examples/blob/master/tensorflow_examples/models/pix2pix/pix2pix.py) 里实施过的升频取样模块。 - -输出信道数量为 3 是因为每个像素有三种可能的标签。把这想象成一个多类别分类,每个像素都将被分到三个类别当中。 - -```py -OUTPUT_CHANNELS = 3 -``` - -如之前提到的,编码器是一个预训练的 MobileNetV2 模型,它在 [tf.keras.applications](https://tensorflow.google.cn/versions/r2.0/api_docs/python/tf/keras/applications) 中已被准备好并可以直接使用。编码器中包含模型中间层的一些特定输出。注意编码器在模型的训练过程中是不会被训练的。 - -```py -base_model = tf.keras.applications.MobileNetV2(input_shape=[128, 128, 3], include_top=False) - -# 使用这些层的激活设置 -layer_names = [ - 'block_1_expand_relu', # 64x64 - 'block_3_expand_relu', # 32x32 - 'block_6_expand_relu', # 16x16 - 'block_13_expand_relu', # 8x8 - 'block_16_project', # 4x4 -] -layers = [base_model.get_layer(name).output for name in layer_names] - -# 创建特征提取模型 -down_stack = tf.keras.Model(inputs=base_model.input, outputs=layers) - -down_stack.trainable = False -``` - -```py -Downloading data from https://storage.googleapis.com/tensorflow/keras-applications/mobilenet_v2/mobilenet_v2_weights_tf_dim_ordering_tf_kernels_1.0_128_no_top.h5 -9412608/9406464 [==============================] - 0s 0us/step - -``` - -解码器/升频取样器是简单的一系列升频取样模块,在 TensorFlow examples 中曾被实施过。 - -```py -up_stack = [ - pix2pix.upsample(512, 3), # 4x4 -> 8x8 - pix2pix.upsample(256, 3), # 8x8 -> 16x16 - pix2pix.upsample(128, 3), # 16x16 -> 32x32 - pix2pix.upsample(64, 3), # 32x32 -> 64x64 -] -``` - -```py -def unet_model(output_channels): - inputs = tf.keras.layers.Input(shape=[128, 128, 3]) - x = inputs - - # 在模型中降频取样 - skips = down_stack(x) - x = skips[-1] - skips = reversed(skips[:-1]) - - # 升频取样然后建立跳跃连接 - for up, skip in zip(up_stack, skips): - x = up(x) - concat = tf.keras.layers.Concatenate() - x = concat([x, skip]) - - # 这是模型的最后一层 - last = tf.keras.layers.Conv2DTranspose( - output_channels, 3, strides=2, - padding='same') #64x64 -> 128x128 - - x = last(x) - - return tf.keras.Model(inputs=inputs, outputs=x) -``` - -## 训练模型 - -现在,要做的只剩下编译和训练模型了。这里用到的损失函数是 losses.sparse_categorical_crossentropy。使用这个损失函数是因为神经网络试图给每一个像素分配一个标签,和多类别预测是一样的。在正确的分割掩码中,每个像素点的值是 {0,1,2} 中的一个。同时神经网络也输出三个信道。本质上,每个信道都在尝试学习预测一个类别,而 losses.sparse_categorical_crossentropy 正是这一情形下推荐使用的损失函数。根据神经网络的输出值,分配给每个像素的标签为输出值最高的信道所表示的那一类。这就是 create_mask 函数所做的工作。 - -```py -model = unet_model(OUTPUT_CHANNELS) -model.compile(optimizer='adam', - loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True), - metrics=['accuracy']) -``` - -快速浏览一下最终的模型架构: - -```py -tf.keras.utils.plot_model(model, show_shapes=True) -``` - -![png](img/fc1492a9c4124dcf0d9fb207c0a323d0.png) - -我们试着运行一下模型,看看它在训练之前给出的预测值。 - -```py -def create_mask(pred_mask): - pred_mask = tf.argmax(pred_mask, axis=-1) - pred_mask = pred_mask[..., tf.newaxis] - return pred_mask[0] -``` - -```py -def show_predictions(dataset=None, num=1): - if dataset: - for image, mask in dataset.take(num): - pred_mask = model.predict(image) - display([image[0], mask[0], create_mask(pred_mask)]) - else: - display([sample_image, sample_mask, - create_mask(model.predict(sample_image[tf.newaxis, ...]))]) -``` - -```py -show_predictions() -``` - -![png](img/79de81de8fa8f26b206d9f7e2e29232f.png) - -我们来观察模型是怎样随着训练而改善的。为达成这一目的,下面将定义一个 callback 函数。 - -```py -class DisplayCallback(tf.keras.callbacks.Callback): - def on_epoch_end(self, epoch, logs=None): - clear_output(wait=True) - show_predictions() - print ('\nSample Prediction after epoch {}\n'.format(epoch+1)) -``` - -```py -EPOCHS = 20 -VAL_SUBSPLITS = 5 -VALIDATION_STEPS = info.splits['test'].num_examples//BATCH_SIZE//VAL_SUBSPLITS - -model_history = model.fit(train_dataset, epochs=EPOCHS, - steps_per_epoch=STEPS_PER_EPOCH, - validation_steps=VALIDATION_STEPS, - validation_data=test_dataset, - callbacks=[DisplayCallback()]) -``` - -![png](img/dd1b792428257ee1ffcb4e02d4e81c11.png) - -```py - -Sample Prediction after epoch 20 - -57/57 [==============================] - 3s 54ms/step - loss: 0.1308 - accuracy: 0.9401 - val_loss: 0.3246 - val_accuracy: 0.8903 - -``` - -```py -loss = model_history.history['loss'] -val_loss = model_history.history['val_loss'] - -epochs = range(EPOCHS) - -plt.figure() -plt.plot(epochs, loss, 'r', label='Training loss') -plt.plot(epochs, val_loss, 'bo', label='Validation loss') -plt.title('Training and Validation Loss') -plt.xlabel('Epoch') -plt.ylabel('Loss Value') -plt.ylim([0, 1]) -plt.legend() -plt.show() -``` - -![png](img/12bbad2792cbf9031cf0f5c0e54b36a3.png) - -## 做出预测 - -我们来做几个预测。为了节省时间,这里只使用很少的周期(epoch)数,但是你可以设置更多的数量以获得更准确的结果。 - -```py -show_predictions(test_dataset, 3) -``` - -![png](img/a3923a442896cffee97920f98141a84c.png) - -![png](img/8fcdc694ecba49a443b3d3fa3db737c8.png) - -![png](img/58c58ebd47eeea7849c83cacae4000e9.png) - -## 接下来 - -现在你已经对图像分割是什么以及它的工作原理有所了解。你可以在本教程里尝试使用不同的中间层输出值,或者甚至使用不同的预训练模型。你也可以去 Kaggle 举办的 [Carvana](https://www.kaggle.com/c/carvana-image-masking-challenge/overview) 图像分割挑战赛上挑战自己。 - -你也可以看看 [Tensorflow Object Detection API](https://github.com/tensorflow/models/tree/master/research/object_detection) 上面其他的你可以使用自己数据进行再训练的模型。 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/047.md b/Tensorflow/TensorFlow2.0/047.md deleted file mode 100644 index 584a81a7..00000000 --- a/Tensorflow/TensorFlow2.0/047.md +++ /dev/null @@ -1 +0,0 @@ -# 文本 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/048.md b/Tensorflow/TensorFlow2.0/048.md deleted file mode 100644 index ab522b00..00000000 --- a/Tensorflow/TensorFlow2.0/048.md +++ /dev/null @@ -1,367 +0,0 @@ -# 单词嵌入向量 - -> 原文:[https://tensorflow.google.cn/tutorials/text/word_embeddings](https://tensorflow.google.cn/tutorials/text/word_embeddings) - -本教程将介绍单词嵌入向量。包含完整的代码,可在小型数据集上从头开始训练单词嵌入向量,并使用 [Embedding Projector](http://projector.tensorflow.org)(如下图所示)可视化这些嵌入向量。 - -![Screenshot of the embedding projector](img/16ea92d12fa8170f3e79e4c56f9affd1.png) - -## 用数字表示文本 - -机器学习模型将向量(数字数组)作为输入。在处理文本时,我们必须先想出一种策略,将字符串转换为数字(或将文本“向量化”),然后再其馈入模型。在本部分中,我们将探究实现这一目标的三种策略。 - -### 独热编码 - -作为第一个想法,我们可以对词汇表中的每个单词进行“独热”编码。考虑这样一句话:“The cat sat on the mat”。这句话中的词汇(或唯一单词)是(cat、mat、on、sat、the)。为了表示每个单词,我们将创建一个长度等于词汇量的零向量,然后在与该单词对应的索引中放置一个 1。下图显示了这种方法。 - -![Diagram of one-hot encodings](img/717d3c9c631162f5b991acff83eda7bc.png) - -为了创建一个包含句子编码的向量,我们可以将每个单词的独热向量连接起来。 - -要点:这种方法效率低下。一个独热编码向量十分稀疏(这意味着大多数索引为零)。假设我们的词汇表中有 10,000 个单词。为了对每个单词进行独热编码,我们将创建一个其中 99.99% 的元素都为零的向量。 - -### 用一个唯一的数字编码每个单词 - -我们可以尝试的第二种方法是使用唯一的数字来编码每个单词。继续上面的示例,我们可以将 1 分配给“cat”,将 2 分配给“mat”,依此类推。然后,我们可以将句子“The cat sat on the mat”编码为一个密集向量,例如 [5, 1, 4, 3, 5, 2]。这种方法是高效的。现在,我们有了一个密集向量(所有元素均已满),而不是稀疏向量。 - -但是,这种方法有两个缺点: - -* 整数编码是任意的(它不会捕获单词之间的任何关系)。 - -* 对于要解释的模型而言,整数编码颇具挑战。例如,线性分类器针对每个特征学习一个权重。由于任何两个单词的相似性与其编码的相似性之间都没有关系,因此这种特征权重组合没有意义。 - -### 单词嵌入向量 - -单词嵌入向量为我们提供了一种使用高效、密集表示的方法,其中相似的单词具有相似的编码。重要的是,我们不必手动指定此编码。嵌入向量是浮点值的密集向量(向量的长度是您指定的参数)。它们是可以训练的参数(模型在训练过程中学习的权重,与模型学习密集层权重的方法相同),无需手动为嵌入向量指定值。8 维的单词嵌入向量(对于小型数据集)比较常见,而在处理大型数据集时最多可达 1024 维。维度更高的嵌入向量可以捕获单词之间的细粒度关系,但需要更多的数据来学习。 - -![Diagram of an embedding](img/4341c4ebffdd0a35a50322abd93518de.png) - -上面是一个单词嵌入向量的示意图。每个单词都表示为浮点值的 4 维向量。还可以将嵌入向量视为“查找表”。学习完这些权重后,我们可以通过在表中查找对应的密集向量来编码每个单词。 - -## 设置 - -```py -import tensorflow as tf -``` - -```py -from tensorflow import keras -from tensorflow.keras import layers - -import tensorflow_datasets as tfds -tfds.disable_progress_bar() -``` - -## 使用嵌入向量层 - -Keras 让使用单词嵌入向量变得轻而易举。我们来看一下[嵌入向量](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Embedding)层。 - -可以将嵌入向量层理解为一个从整数索引(代表特定单词)映射到密集向量(其嵌入向量)的查找表。嵌入向量的维数(或宽度)是一个参数,您可以试验它的数值,以了解多少维度适合您的问题,这与您试验密集层中神经元数量的方式非常相似。 - -```py -embedding_layer = layers.Embedding(1000, 5) -``` - -创建嵌入向量层时,嵌入向量的权重会随机初始化(就像其他任何层一样)。在训练过程中,通过反向传播来逐渐调整这些权重。训练后,学习到的单词嵌入向量将粗略地编码单词之间的相似性(因为它们是针对训练模型的特定问题而学习的)。 - -如果将整数传递给嵌入向量层,结果会将每个整数替换为嵌入向量表中的向量: - -```py -result = embedding_layer(tf.constant([1,2,3])) -result.numpy() -``` - -```py -array([[ 0.02629578, 0.0097797 , -0.04365711, 0.03760537, 0.0260709 ], - [ 0.03876719, 0.01541508, -0.0483237 , 0.03976549, 0.04153169], - [ 0.03035608, 0.0410546 , -0.03654389, -0.01073235, 0.02143143]], - dtype=float32) - -``` - -对于文本或序列问题,嵌入向量层采用整数组成的 2D 张量,其形状为 `(samples, sequence_length)`,其中每个条目都是一个整数序列。它可以嵌入可变长度的序列。您可以在形状为 `(32, 10)`(32 个长度为 10 的序列组成的批次)或 `(64, 15)`(64 个长度为 15 的序列组成的批次)的批次上方馈入嵌入向量层。 - -返回的张量比输入多一个轴,嵌入向量沿新的最后一个轴对齐。向其传递 `(2, 3)` 输入批次,输出为 `(2, 3, N)` - -```py -result = embedding_layer(tf.constant([[0,1,2],[3,4,5]])) -result.shape -``` - -```py -TensorShape([2, 3, 5]) - -``` - -当给定一个序列批次作为输入时,嵌入向量层将返回形状为 `(samples, sequence_length, embedding_dimensionality)` 的 3D 浮点张量。为了从可变长度的序列转换为固定表示,有多种标准方法。您可以先使用 RNN、注意力或池化层,然后再将其传递给密集层。本教程使用池化,因为它最简单。接下来,学习[使用 RNN 进行文本分类](/tutorials/text/text_classification_rnn)教程是一个不错的选择。 - -## 从头开始学习嵌入向量 - -在本教程中,您将基于 IMDB 电影评论来训练情感分类器。在此过程中,模型将从头开始学习嵌入向量。我们将使用经过预处理的数据集。 - -要从头开始加载文本数据集,请参阅[加载文本教程](https://tensorflow.google.cn/tutorials/load_data/text)。 - -```py -(train_data, test_data), info = tfds.load( - 'imdb_reviews/subwords8k', - split = (tfds.Split.TRAIN, tfds.Split.TEST), - with_info=True, as_supervised=True) -``` - -```py -WARNING:absl:TFDS datasets with text encoding are deprecated and will be removed in a future version. Instead, you should use the plain text version and tokenize the text using `tensorflow_text` (See: https://www.tensorflow.org/tutorials/tensorflow_text/intro#tfdata_example) - -``` - -获取编码器 (`tfds.features.text.SubwordTextEncoder`),并快速浏览词汇表。 - -词汇表中的“*”代表空格。请注意词汇表如何包含完整单词(以“*”结尾)以及可用于构建更大单词的部分单词: - -```py -encoder = info.features['text'].encoder -encoder.subwords[:20] -``` - -```py -['the_', - ', ', - '. ', - 'a_', - 'and_', - 'of_', - 'to_', - 's_', - 'is_', - 'br', - 'in_', - 'I_', - 'that_', - 'this_', - 'it_', - ' /><', - ' />', - 'was_', - 'The_', - 'as_'] - -``` - -电影评论的长度可以不同。我们将使用 `padded_batch` 方法来标准化评论的长度。 - -```py -train_batches = train_data.shuffle(1000).padded_batch(10) -test_batches = test_data.shuffle(1000).padded_batch(10) -``` - -导入时,评论的文本是整数编码的(每个整数代表词汇表中的特定单词或单词部分)。 - -请注意尾随零,因为批次会填充为最长的示例。 - -```py -train_batch, train_labels = next(iter(train_batches)) -train_batch.numpy() -``` - -```py -array([[5739, 46, 674, ..., 0, 0, 0], - [ 274, 2732, 1289, ..., 0, 0, 0], - [ 19, 118, 874, ..., 0, 0, 0], - ..., - [ 324, 12, 118, ..., 0, 0, 0], - [ 12, 31, 165, ..., 0, 0, 0], - [ 131, 196, 7968, ..., 0, 0, 0]]) - -``` - -### 创建一个简单模型 - -我们将使用 [Keras 序列式 API](https://tensorflow.google.cn/guide/keras) 定义模型。在这种情况下,它是一个“连续词袋”样式的模型。 - -* 接下来,嵌入向量层将采用整数编码的词汇表,并查找每个单词索引的嵌入向量。在模型训练时会学习这些向量。向量会向输出数组添加维度。得到的维度为:`(batch, sequence, embedding)`。 - -* 接下来,通过对序列维度求平均值,GlobalAveragePooling1D 层会返回每个样本的固定长度输出向量。这让模型能够以最简单的方式处理可变长度的输入。 - -* 此固定长度输出向量通过一个包含 16 个隐藏单元的完全连接(密集)层进行流水线传输。 - -* 最后一层与单个输出节点密集连接。利用 Sigmoid 激活函数,得出此值是 0 到 1 之间的浮点数,表示评论为正面的概率(或置信度)。 - -小心:此模型不使用遮盖,而是使用零填充作为输入的一部分,因此填充长度可能会影响输出。要解决此问题,请参阅[遮盖和填充指南](https://tensorflow.google.cn/guide/keras/masking_and_padding)。 - -```py -embedding_dim=16 - -model = keras.Sequential([ - layers.Embedding(encoder.vocab_size, embedding_dim), - layers.GlobalAveragePooling1D(), - layers.Dense(16, activation='relu'), - layers.Dense(1) -]) - -model.summary() -``` - -```py -Model: "sequential" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -embedding_1 (Embedding) (None, None, 16) 130960 -_________________________________________________________________ -global_average_pooling1d (Gl (None, 16) 0 -_________________________________________________________________ -dense (Dense) (None, 16) 272 -_________________________________________________________________ -dense_1 (Dense) (None, 1) 17 -================================================================= -Total params: 131,249 -Trainable params: 131,249 -Non-trainable params: 0 -_________________________________________________________________ - -``` - -### 编译和训练模型 - -```py -model.compile(optimizer='adam', - loss=tf.keras.losses.BinaryCrossentropy(from_logits=True), - metrics=['accuracy']) - -history = model.fit( - train_batches, - epochs=10, - validation_data=test_batches, validation_steps=20) -``` - -```py -Epoch 1/10 -2500/2500 [==============================] - 10s 4ms/step - loss: 0.4984 - accuracy: 0.7022 - val_loss: 0.3781 - val_accuracy: 0.8550 -Epoch 2/10 -2500/2500 [==============================] - 10s 4ms/step - loss: 0.2807 - accuracy: 0.8854 - val_loss: 0.3049 - val_accuracy: 0.8600 -Epoch 3/10 -2500/2500 [==============================] - 10s 4ms/step - loss: 0.2288 - accuracy: 0.9100 - val_loss: 0.3979 - val_accuracy: 0.8550 -Epoch 4/10 -2500/2500 [==============================] - 10s 4ms/step - loss: 0.1971 - accuracy: 0.9245 - val_loss: 0.4573 - val_accuracy: 0.8500 -Epoch 5/10 -2500/2500 [==============================] - 10s 4ms/step - loss: 0.1747 - accuracy: 0.9340 - val_loss: 0.3457 - val_accuracy: 0.8550 -Epoch 6/10 -2500/2500 [==============================] - 10s 4ms/step - loss: 0.1571 - accuracy: 0.9423 - val_loss: 0.4098 - val_accuracy: 0.8550 -Epoch 7/10 -2500/2500 [==============================] - 10s 4ms/step - loss: 0.1414 - accuracy: 0.9489 - val_loss: 0.4089 - val_accuracy: 0.8550 -Epoch 8/10 -2500/2500 [==============================] - 10s 4ms/step - loss: 0.1319 - accuracy: 0.9517 - val_loss: 0.5068 - val_accuracy: 0.7900 -Epoch 9/10 -2500/2500 [==============================] - 10s 4ms/step - loss: 0.1189 - accuracy: 0.9578 - val_loss: 0.4304 - val_accuracy: 0.8500 -Epoch 10/10 -2500/2500 [==============================] - 10s 4ms/step - loss: 0.1110 - accuracy: 0.9619 - val_loss: 0.6972 - val_accuracy: 0.8250 - -``` - -通过这种方法,我们的模型可以达到约 88% 的验证准确率(请注意,该模型过度拟合,因此训练准确率要高得多)。 - -```py -import matplotlib.pyplot as plt - -history_dict = history.history - -acc = history_dict['accuracy'] -val_acc = history_dict['val_accuracy'] -loss=history_dict['loss'] -val_loss=history_dict['val_loss'] - -epochs = range(1, len(acc) + 1) - -plt.figure(figsize=(12,9)) -plt.plot(epochs, loss, 'bo', label='Training loss') -plt.plot(epochs, val_loss, 'b', label='Validation loss') -plt.title('Training and validation loss') -plt.xlabel('Epochs') -plt.ylabel('Loss') -plt.legend() -plt.show() - -plt.figure(figsize=(12,9)) -plt.plot(epochs, acc, 'bo', label='Training acc') -plt.plot(epochs, val_acc, 'b', label='Validation acc') -plt.title('Training and validation accuracy') -plt.xlabel('Epochs') -plt.ylabel('Accuracy') -plt.legend(loc='lower right') -plt.ylim((0.5,1)) -plt.show() -``` - -![png](img/815371be4cdb93da43df2c0cb17bb929.png) - -![png](img/f9f505f9e0bb94757eb576cd0aa1c1f3.png) - -## 检索学习的嵌入向量 - -接下来,我们检索在训练期间学习的单词嵌入向量。这将是一个形状为 `(vocab_size, embedding-dimension)` 的矩阵。 - -```py -e = model.layers[0] -weights = e.get_weights()[0] -print(weights.shape) # shape: (vocab_size, embedding_dim) -``` - -```py -(8185, 16) - -``` - -现在,我们将权重写入磁盘。要使用 [Embedding Projector](http://projector.tensorflow.org),我们将以制表符分隔的格式上传两个文件:一个向量文件(包含嵌入向量)和一个元数据文件(包含单词)。 - -```py -import io - -encoder = info.features['text'].encoder - -out_v = io.open('vecs.tsv', 'w', encoding='utf-8') -out_m = io.open('meta.tsv', 'w', encoding='utf-8') - -for num, word in enumerate(encoder.subwords): - vec = weights[num+1] # skip 0, it's padding. - out_m.write(word + "\n") - out_v.write('\t'.join([str(x) for x in vec]) + "\n") -out_v.close() -out_m.close() -``` - -如果您正在 [Colaboratory](https://colab.research.google.com) 中运行本教程,则可以使用以下代码段将这些文件下载到本地计算机上(或使用文件浏览器,*View -> Table of contents -> File browser*)。 - -```py -try: - from google.colab import files -except ImportError: - pass -else: - files.download('vecs.tsv') - files.download('meta.tsv') -``` - -## 可视化嵌入向量 - -为了可视化嵌入向量,我们将它们上传到 Embedding Projector。 - -打开 [Embedding Projector](http://projector.tensorflow.org/)(也可以在本地 TensorBoard 实例中运行)。 - -* 点击“Load data”。 - -* 上传我们在上面创建的两个文件:`vecs.tsv` 和 `meta.tsv`。 - -现在将显示您已训练的嵌入向量。您可以搜索单词以查找其最邻近。例如,尝试搜索“beautiful”,您可能会看到“wonderful”等相邻单词。 - -注:您的结果可能会略有不同,具体取决于训练嵌入向量层之前如何随机初始化权重。 - -注:您可以试验性地使用更简单的模型来生成更多可解释的嵌入向量。尝试删除 `Dense(16)` 层,重新训练模型,然后再次可视化嵌入向量。 - -![Screenshot of the embedding projector](img/16ea92d12fa8170f3e79e4c56f9affd1.png) - -## 后续步骤 - -本教程向您展示了如何在小数据集上从头开始训练和可视化单词嵌入向量。 - -* 要了解循环网络,请参阅 [Keras RNN 指南](https://tensorflow.google.cn/guide/keras/rnn)。 - -* 要详细了解文本分类(包括整个工作流,以及如果您对何时使用嵌入向量还是独热编码感到好奇),我们建议您阅读这篇实用的文本分类[指南](https://developers.google.cn/machine-learning/guides/text-classification/step-2-5)。 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/049.md b/Tensorflow/TensorFlow2.0/049.md deleted file mode 100644 index 3b901e95..00000000 --- a/Tensorflow/TensorFlow2.0/049.md +++ /dev/null @@ -1,368 +0,0 @@ -# 使用 RNN 进行文本分类 - -> 原文:[https://tensorflow.google.cn/tutorials/text/text_classification_rnn](https://tensorflow.google.cn/tutorials/text/text_classification_rnn) - -此文本分类教程将在 [IMDB 大型电影评论数据集](http://ai.stanford.edu/%7Eamaas/data/sentiment/)上训练[循环神经网络](https://developers.google.cn/machine-learning/glossary/#recurrent_neural_network),以进行情感分析。 - -## 设置 - -```py -import tensorflow_datasets as tfds -import tensorflow as tf -``` - -导入 `matplotlib` 并创建一个辅助函数来绘制计算图: - -```py -import matplotlib.pyplot as plt - -def plot_graphs(history, metric): - plt.plot(history.history[metric]) - plt.plot(history.history['val_'+metric], '') - plt.xlabel("Epochs") - plt.ylabel(metric) - plt.legend([metric, 'val_'+metric]) - plt.show() -``` - -## 设置输入流水线 - -IMDB 大型电影评论数据集是一个*二进制分类*数据集——所有评论都具有*正面*或*负面*情绪。 - -使用 [TFDS](https://tensorflow.google.cn/datasets) 下载数据集。 - -```py -dataset, info = tfds.load('imdb_reviews/subwords8k', with_info=True, - as_supervised=True) -train_dataset, test_dataset = dataset['train'], dataset['test'] -``` - -```py -WARNING:absl:TFDS datasets with text encoding are deprecated and will be removed in a future version. Instead, you should use the plain text version and tokenize the text using `tensorflow_text` (See: https://www.tensorflow.org/tutorials/tensorflow_text/intro#tfdata_example) - -Downloading and preparing dataset imdb_reviews/subwords8k/1.0.0 (download: 80.23 MiB, generated: Unknown size, total: 80.23 MiB) to /home/kbuilder/tensorflow_datasets/imdb_reviews/subwords8k/1.0.0... -Shuffling and writing examples to /home/kbuilder/tensorflow_datasets/imdb_reviews/subwords8k/1.0.0.incomplete7GBYY4/imdb_reviews-train.tfrecord -Shuffling and writing examples to /home/kbuilder/tensorflow_datasets/imdb_reviews/subwords8k/1.0.0.incomplete7GBYY4/imdb_reviews-test.tfrecord -Shuffling and writing examples to /home/kbuilder/tensorflow_datasets/imdb_reviews/subwords8k/1.0.0.incomplete7GBYY4/imdb_reviews-unsupervised.tfrecord -Dataset imdb_reviews downloaded and prepared to /home/kbuilder/tensorflow_datasets/imdb_reviews/subwords8k/1.0.0\. Subsequent calls will reuse this data. - -``` - -数据集 `info` 包括编码器 (`tfds.features.text.SubwordTextEncoder`)。 - -```py -encoder = info.features['text'].encoder -``` - -```py -print('Vocabulary size: {}'.format(encoder.vocab_size)) -``` - -```py -Vocabulary size: 8185 - -``` - -此文本编码器将以可逆方式对任何字符串进行编码,并在必要时退回到字节编码。 - -```py -sample_string = 'Hello TensorFlow.' - -encoded_string = encoder.encode(sample_string) -print('Encoded string is {}'.format(encoded_string)) - -original_string = encoder.decode(encoded_string) -print('The original string: "{}"'.format(original_string)) -``` - -```py -Encoded string is [4025, 222, 6307, 2327, 4043, 2120, 7975] -The original string: "Hello TensorFlow." - -``` - -```py -assert original_string == sample_string -``` - -```py -for index in encoded_string: - print('{} ----> {}'.format(index, encoder.decode([index]))) -``` - -```py -4025 ----> Hell -222 ----> o -6307 ----> Ten -2327 ----> sor -4043 ----> Fl -2120 ----> ow -7975 ----> . - -``` - -## 准备用于训练的数据 - -接下来,创建这些编码字符串的批次。使用 `padded_batch` 方法将序列零填充至批次中最长字符串的长度: - -```py -BUFFER_SIZE = 10000 -BATCH_SIZE = 64 -``` - -```py -train_dataset = train_dataset.shuffle(BUFFER_SIZE) -train_dataset = train_dataset.padded_batch(BATCH_SIZE) - -test_dataset = test_dataset.padded_batch(BATCH_SIZE) -``` - -## 创建模型 - -构建一个 [`tf.keras.Sequential`](https://tensorflow.google.cn/api_docs/python/tf/keras/Sequential) 模型并从嵌入向量层开始。嵌入向量层每个单词存储一个向量。调用时,它会将单词索引序列转换为向量序列。这些向量是可训练的。(在足够的数据上)训练后,具有相似含义的单词通常具有相似的向量。 - -与通过 [`tf.keras.layers.Dense`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Dense) 层传递独热编码向量的等效运算相比,这种索引查找方法要高效得多。 - -循环神经网络 (RNN) 通过遍历元素来处理序列输入。RNN 将输出从一个时间步骤传递到其输入,然后传递到下一个步骤。 - -[`tf.keras.layers.Bidirectional`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Bidirectional) 包装器也可以与 RNN 层一起使用。这将通过 RNN 层向前和向后传播输入,然后连接输出。这有助于 RNN 学习长程依赖关系。 - -```py -model = tf.keras.Sequential([ - tf.keras.layers.Embedding(encoder.vocab_size, 64), - tf.keras.layers.Bidirectional(tf.keras.layers.LSTM(64)), - tf.keras.layers.Dense(64, activation='relu'), - tf.keras.layers.Dense(1) -]) -``` - -请注意,我们在这里选择 Keras 序贯模型,因为模型中的所有层都只有单个输入并产生单个输出。如果要使用有状态 RNN 层,则可能需要使用 Keras 函数式 API 或模型子类化来构建模型,以便可以检索和重用 RNN 层状态。有关更多详细信息,请参阅 [Keras RNN 指南](https://tensorflow.google.cn/guide/keras/rnn#rnn_state_reuse)。 - -编译 Keras 模型以配置训练过程: - -```py -model.compile(loss=tf.keras.losses.BinaryCrossentropy(from_logits=True), - optimizer=tf.keras.optimizers.Adam(1e-4), - metrics=['accuracy']) -``` - -## 训练模型 - -```py -history = model.fit(train_dataset, epochs=10, - validation_data=test_dataset, - validation_steps=30) -``` - -```py -Epoch 1/10 -391/391 [==============================] - 41s 105ms/step - loss: 0.6363 - accuracy: 0.5736 - val_loss: 0.4592 - val_accuracy: 0.8010 -Epoch 2/10 -391/391 [==============================] - 41s 105ms/step - loss: 0.3426 - accuracy: 0.8556 - val_loss: 0.3710 - val_accuracy: 0.8417 -Epoch 3/10 -391/391 [==============================] - 42s 107ms/step - loss: 0.2520 - accuracy: 0.9047 - val_loss: 0.3444 - val_accuracy: 0.8719 -Epoch 4/10 -391/391 [==============================] - 41s 105ms/step - loss: 0.2103 - accuracy: 0.9228 - val_loss: 0.3348 - val_accuracy: 0.8625 -Epoch 5/10 -391/391 [==============================] - 42s 106ms/step - loss: 0.1803 - accuracy: 0.9360 - val_loss: 0.3591 - val_accuracy: 0.8552 -Epoch 6/10 -391/391 [==============================] - 42s 106ms/step - loss: 0.1589 - accuracy: 0.9450 - val_loss: 0.4146 - val_accuracy: 0.8635 -Epoch 7/10 -391/391 [==============================] - 41s 105ms/step - loss: 0.1466 - accuracy: 0.9505 - val_loss: 0.3780 - val_accuracy: 0.8484 -Epoch 8/10 -391/391 [==============================] - 41s 106ms/step - loss: 0.1463 - accuracy: 0.9485 - val_loss: 0.4074 - val_accuracy: 0.8156 -Epoch 9/10 -391/391 [==============================] - 41s 106ms/step - loss: 0.1327 - accuracy: 0.9555 - val_loss: 0.4608 - val_accuracy: 0.8589 -Epoch 10/10 -391/391 [==============================] - 41s 105ms/step - loss: 0.1666 - accuracy: 0.9404 - val_loss: 0.4364 - val_accuracy: 0.8422 - -``` - -```py -test_loss, test_acc = model.evaluate(test_dataset) - -print('Test Loss: {}'.format(test_loss)) -print('Test Accuracy: {}'.format(test_acc)) -``` - -```py -391/391 [==============================] - 17s 43ms/step - loss: 0.4305 - accuracy: 0.8477 -Test Loss: 0.43051090836524963 -Test Accuracy: 0.8476799726486206 - -``` - -上面的模型没有遮盖应用于序列的填充。如果在填充序列上进行训练并在未填充序列上进行测试,则可能导致倾斜。理想情况下,您可以[使用遮盖](https://tensorflow.google.cn/guide/keras/masking_and_padding)来避免这种情况,但是正如您在下面看到的那样,它只会对输出产生很小的影响。 - -如果预测 >= 0.5,则为正,否则为负。 - -```py -def pad_to_size(vec, size): - zeros = [0] * (size - len(vec)) - vec.extend(zeros) - return vec -``` - -```py -def sample_predict(sample_pred_text, pad): - encoded_sample_pred_text = encoder.encode(sample_pred_text) - - if pad: - encoded_sample_pred_text = pad_to_size(encoded_sample_pred_text, 64) - encoded_sample_pred_text = tf.cast(encoded_sample_pred_text, tf.float32) - predictions = model.predict(tf.expand_dims(encoded_sample_pred_text, 0)) - - return (predictions) -``` - -```py -# predict on a sample text without padding. - -sample_pred_text = ('The movie was cool. The animation and the graphics ' - 'were out of this world. I would recommend this movie.') -predictions = sample_predict(sample_pred_text, pad=False) -print(predictions) -``` - -```py -[[-0.11829309]] - -``` - -```py -# predict on a sample text with padding - -sample_pred_text = ('The movie was cool. The animation and the graphics ' - 'were out of this world. I would recommend this movie.') -predictions = sample_predict(sample_pred_text, pad=True) -print(predictions) -``` - -```py -[[-1.162545]] - -``` - -```py -plot_graphs(history, 'accuracy') -``` - -![png](img/267bdfdd72740285a56d6dbc3f34c679.png) - -```py -plot_graphs(history, 'loss') -``` - -![png](img/ae60ced5a9a18ef2a947912ada799ca0.png) - -## 堆叠两个或更多 LSTM 层 - -Keras 循环层有两种可用的模式,这些模式由 `return_sequences` 构造函数参数控制: - -* 返回每个时间步骤的连续输出的完整序列(形状为 `(batch_size, timesteps, output_features)` 的 3D 张量)。 -* 仅返回每个输入序列的最后一个输出(形状为 (batch_size, output_features) 的 2D 张量)。 - -```py -model = tf.keras.Sequential([ - tf.keras.layers.Embedding(encoder.vocab_size, 64), - tf.keras.layers.Bidirectional(tf.keras.layers.LSTM(64, return_sequences=True)), - tf.keras.layers.Bidirectional(tf.keras.layers.LSTM(32)), - tf.keras.layers.Dense(64, activation='relu'), - tf.keras.layers.Dropout(0.5), - tf.keras.layers.Dense(1) -]) -``` - -```py -model.compile(loss=tf.keras.losses.BinaryCrossentropy(from_logits=True), - optimizer=tf.keras.optimizers.Adam(1e-4), - metrics=['accuracy']) -``` - -```py -history = model.fit(train_dataset, epochs=10, - validation_data=test_dataset, - validation_steps=30) -``` - -```py -Epoch 1/10 -391/391 [==============================] - 75s 192ms/step - loss: 0.6484 - accuracy: 0.5630 - val_loss: 0.4876 - val_accuracy: 0.7464 -Epoch 2/10 -391/391 [==============================] - 74s 190ms/step - loss: 0.3603 - accuracy: 0.8528 - val_loss: 0.3533 - val_accuracy: 0.8490 -Epoch 3/10 -391/391 [==============================] - 75s 191ms/step - loss: 0.2666 - accuracy: 0.9018 - val_loss: 0.3393 - val_accuracy: 0.8703 -Epoch 4/10 -391/391 [==============================] - 75s 193ms/step - loss: 0.2151 - accuracy: 0.9267 - val_loss: 0.3451 - val_accuracy: 0.8604 -Epoch 5/10 -391/391 [==============================] - 76s 194ms/step - loss: 0.1806 - accuracy: 0.9422 - val_loss: 0.3687 - val_accuracy: 0.8708 -Epoch 6/10 -391/391 [==============================] - 75s 193ms/step - loss: 0.1623 - accuracy: 0.9495 - val_loss: 0.3836 - val_accuracy: 0.8594 -Epoch 7/10 -391/391 [==============================] - 76s 193ms/step - loss: 0.1382 - accuracy: 0.9598 - val_loss: 0.4173 - val_accuracy: 0.8573 -Epoch 8/10 -391/391 [==============================] - 76s 194ms/step - loss: 0.1227 - accuracy: 0.9664 - val_loss: 0.4586 - val_accuracy: 0.8542 -Epoch 9/10 -391/391 [==============================] - 76s 194ms/step - loss: 0.0997 - accuracy: 0.9749 - val_loss: 0.4939 - val_accuracy: 0.8547 -Epoch 10/10 -391/391 [==============================] - 76s 194ms/step - loss: 0.0973 - accuracy: 0.9748 - val_loss: 0.5222 - val_accuracy: 0.8526 - -``` - -```py -test_loss, test_acc = model.evaluate(test_dataset) - -print('Test Loss: {}'.format(test_loss)) -print('Test Accuracy: {}'.format(test_acc)) -``` - -```py -391/391 [==============================] - 30s 78ms/step - loss: 0.5205 - accuracy: 0.8572 -Test Loss: 0.5204932689666748 -Test Accuracy: 0.857200026512146 - -``` - -```py -# predict on a sample text without padding. - -sample_pred_text = ('The movie was not good. The animation and the graphics ' - 'were terrible. I would not recommend this movie.') -predictions = sample_predict(sample_pred_text, pad=False) -print(predictions) -``` - -```py -[[-2.6377363]] - -``` - -```py -# predict on a sample text with padding - -sample_pred_text = ('The movie was not good. The animation and the graphics ' - 'were terrible. I would not recommend this movie.') -predictions = sample_predict(sample_pred_text, pad=True) -print(predictions) -``` - -```py -[[-3.0502243]] - -``` - -```py -plot_graphs(history, 'accuracy') -``` - -![png](img/ee3ae6c62d5acf6adfea6458312bcb02.png) - -```py -plot_graphs(history, 'loss') -``` - -![png](img/f2f53e7a4522a77ce6e821a299a77c76.png) - -检查其他现有循环层,例如 [GRU 层](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/GRU)。 - -如果您对构建自定义 RNN 感兴趣,请参阅 [Keras RNN 指南](https://tensorflow.google.cn/guide/keras/rnn)。 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/050.md b/Tensorflow/TensorFlow2.0/050.md deleted file mode 100644 index 1c102aae..00000000 --- a/Tensorflow/TensorFlow2.0/050.md +++ /dev/null @@ -1,841 +0,0 @@ -# 循环神经网络(RNN)文本生成 - -> 原文:[https://tensorflow.google.cn/tutorials/text/text_generation](https://tensorflow.google.cn/tutorials/text/text_generation) - - - -本教程演示如何使用基于字符的 RNN 生成文本。我们将使用 Andrej Karpathy 在[《循环神经网络不合理的有效性》](http://karpathy.github.io/2015/05/21/rnn-effectiveness/)一文中提供的莎士比亚作品数据集。给定此数据中的一个字符序列 (“Shakespear”),训练一个模型以预测该序列的下一个字符(“e”)。通过重复调用该模型,可以生成更长的文本序列。 - -请注意:启用 GPU 加速可以更快地执行此笔记本。在 Colab 中依次选择:*运行时 > 更改运行时类型 > 硬件加速器 > GPU*。如果在本地运行,请确保 TensorFlow 的版本为 1.11 或更高。 - -本教程包含使用 [tf.keras](https://tensorflow.google.cn/programmers_guide/keras) 和 [eager execution](https://tensorflow.google.cn/programmers_guide/eager) 实现的可运行代码。以下是当本教程中的模型训练 30 个周期 (epoch),并以字符串 “Q” 开头时的示例输出: - -```py -QUEENE: -I had thought thou hadst a Roman; for the oracle, -Thus by All bids the man against the word, -Which are so weak of care, by old care done; -Your children were in your holy love, -And the precipitation through the bleeding throne. - -BISHOP OF ELY: -Marry, and will, my lord, to weep in such a one were prettiest; -Yet now I was adopted heir -Of the world's lamentable day, -To watch the next way with his father with his face? - -ESCALUS: -The cause why then we are all resolved more sons. - -VOLUMNIA: -O, no, no, no, no, no, no, no, no, no, no, no, no, no, no, no, no, no, no, no, no, it is no sin it should be dead, -And love and pale as any will to that word. - -QUEEN ELIZABETH: -But how long have I heard the soul for this world, -And show his hands of life be proved to stand. - -PETRUCHIO: -I say he look'd on, if I must be content -To stay him from the fatal of our country's bliss. -His lordship pluck'd from this sentence then for prey, -And then let us twain, being the moon, -were she such a case as fills m - -``` - -虽然有些句子符合语法规则,但是大多数句子没有意义。这个模型尚未学习到单词的含义,但请考虑以下几点: - -* 此模型是基于字符的。训练开始时,模型不知道如何拼写一个英文单词,甚至不知道单词是文本的一个单位。 - -* 输出文本的结构类似于剧本 -- 文本块通常以讲话者的名字开始;而且与数据集类似,讲话者的名字采用全大写字母。 - -* 如下文所示,此模型由小批次 (batch) 文本训练而成(每批 100 个字符)。即便如此,此模型仍然能生成更长的文本序列,并且结构连贯。 - -## 设置 - -### 导入 TensorFlow 和其他库 - -```py -import tensorflow as tf - -import numpy as np -import os -import time -``` - -### 下载莎士比亚数据集 - -修改下面一行代码,在你自己的数据上运行此代码。 - -```py -path_to_file = tf.keras.utils.get_file('shakespeare.txt', 'https://storage.googleapis.com/download.tensorflow.org/data/shakespeare.txt') -``` - -```py -Downloading data from https://storage.googleapis.com/download.tensorflow.org/data/shakespeare.txt -1122304/1115394 [==============================] - 0s 0us/step - -``` - -### 读取数据 - -首先,看一看文本: - -```py -# 读取并为 py2 compat 解码 -text = open(path_to_file, 'rb').read().decode(encoding='utf-8') - -# 文本长度是指文本中的字符个数 -print ('Length of text: {} characters'.format(len(text))) -``` - -```py -Length of text: 1115394 characters - -``` - -```py -# 看一看文本中的前 250 个字符 -print(text[:250]) -``` - -```py -First Citizen: -Before we proceed any further, hear me speak. - -All: -Speak, speak. - -First Citizen: -You are all resolved rather to die than to famish? - -All: -Resolved. resolved. - -First Citizen: -First, you know Caius Marcius is chief enemy to the people. - -``` - -```py -# 文本中的非重复字符 -vocab = sorted(set(text)) -print ('{} unique characters'.format(len(vocab))) -``` - -```py -65 unique characters - -``` - -## 处理文本 - -### 向量化文本 - -在训练之前,我们需要将字符串映射到数字表示值。创建两个查找表格:一个将字符映射到数字,另一个将数字映射到字符。 - -```py -# 创建从非重复字符到索引的映射 -char2idx = {u:i for i, u in enumerate(vocab)} -idx2char = np.array(vocab) - -text_as_int = np.array([char2idx[c] for c in text]) -``` - -现在,每个字符都有一个整数表示值。请注意,我们将字符映射至索引 0 至 `len(unique)`. - -```py -print('{') -for char,_ in zip(char2idx, range(20)): - print(' {:4s}: {:3d},'.format(repr(char), char2idx[char])) -print(' ...\n}') -``` - -```py -{ - '\n': 0, - ' ' : 1, - '!' : 2, - '$' : 3, - '&' : 4, - "'" : 5, - ',' : 6, - '-' : 7, - '.' : 8, - '3' : 9, - ':' : 10, - ';' : 11, - '?' : 12, - 'A' : 13, - 'B' : 14, - 'C' : 15, - 'D' : 16, - 'E' : 17, - 'F' : 18, - 'G' : 19, - ... -} - -``` - -```py -# 显示文本首 13 个字符的整数映射 -print ('{} ---- characters mapped to int ---- > {}'.format(repr(text[:13]), text_as_int[:13])) -``` - -```py -'First Citizen' ---- characters mapped to int ---- > [18 47 56 57 58 1 15 47 58 47 64 43 52] - -``` - -### 预测任务 - -给定一个字符或者一个字符序列,下一个最可能出现的字符是什么?这就是我们训练模型要执行的任务。输入进模型的是一个字符序列,我们训练这个模型来预测输出 -- 每个时间步(time step)预测下一个字符是什么。 - -由于 RNN 是根据前面看到的元素维持内部状态,那么,给定此时计算出的所有字符,下一个字符是什么? - -### 创建训练样本和目标 - -接下来,将文本划分为样本序列。每个输入序列包含文本中的 `seq_length` 个字符。 - -对于每个输入序列,其对应的目标包含相同长度的文本,但是向右顺移一个字符。 - -将文本拆分为长度为 `seq_length+1` 的文本块。例如,假设 `seq_length` 为 4 而且文本为 “Hello”, 那么输入序列将为 “Hell”,目标序列将为 “ello”。 - -为此,首先使用 [`tf.data.Dataset.from_tensor_slices`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#from_tensor_slices) 函数把文本向量转换为字符索引流。 - -```py -# 设定每个输入句子长度的最大值 -seq_length = 100 -examples_per_epoch = len(text)//seq_length - -# 创建训练样本 / 目标 -char_dataset = tf.data.Dataset.from_tensor_slices(text_as_int) - -for i in char_dataset.take(5): - print(idx2char[i.numpy()]) -``` - -```py -F -i -r -s -t - -``` - -`batch` 方法使我们能轻松把单个字符转换为所需长度的序列。 - -```py -sequences = char_dataset.batch(seq_length+1, drop_remainder=True) - -for item in sequences.take(5): - print(repr(''.join(idx2char[item.numpy()]))) -``` - -```py -'First Citizen:\nBefore we proceed any further, hear me speak.\n\nAll:\nSpeak, speak.\n\nFirst Citizen:\nYou ' -'are all resolved rather to die than to famish?\n\nAll:\nResolved. resolved.\n\nFirst Citizen:\nFirst, you k' -"now Caius Marcius is chief enemy to the people.\n\nAll:\nWe know't, we know't.\n\nFirst Citizen:\nLet us ki" -"ll him, and we'll have corn at our own price.\nIs't a verdict?\n\nAll:\nNo more talking on't; let it be d" -'one: away, away!\n\nSecond Citizen:\nOne word, good citizens.\n\nFirst Citizen:\nWe are accounted poor citi' - -``` - -对于每个序列,使用 `map` 方法先复制再顺移,以创建输入文本和目标文本。`map` 方法可以将一个简单的函数应用到每一个批次 (batch)。 - -```py -def split_input_target(chunk): - input_text = chunk[:-1] - target_text = chunk[1:] - return input_text, target_text - -dataset = sequences.map(split_input_target) -``` - -打印第一批样本的输入与目标值: - -```py -for input_example, target_example in dataset.take(1): - print ('Input data: ', repr(''.join(idx2char[input_example.numpy()]))) - print ('Target data:', repr(''.join(idx2char[target_example.numpy()]))) -``` - -```py -Input data: 'First Citizen:\nBefore we proceed any further, hear me speak.\n\nAll:\nSpeak, speak.\n\nFirst Citizen:\nYou' -Target data: 'irst Citizen:\nBefore we proceed any further, hear me speak.\n\nAll:\nSpeak, speak.\n\nFirst Citizen:\nYou ' - -``` - -这些向量的每个索引均作为一个时间步来处理。作为时间步 0 的输入,模型接收到 “F” 的索引,并尝试预测 “i” 的索引为下一个字符。在下一个时间步,模型执行相同的操作,但是 `RNN` 不仅考虑当前的输入字符,还会考虑上一步的信息。 - -```py -for i, (input_idx, target_idx) in enumerate(zip(input_example[:5], target_example[:5])): - print("Step {:4d}".format(i)) - print(" input: {} ({:s})".format(input_idx, repr(idx2char[input_idx]))) - print(" expected output: {} ({:s})".format(target_idx, repr(idx2char[target_idx]))) -``` - -```py -Step 0 - input: 18 ('F') - expected output: 47 ('i') -Step 1 - input: 47 ('i') - expected output: 56 ('r') -Step 2 - input: 56 ('r') - expected output: 57 ('s') -Step 3 - input: 57 ('s') - expected output: 58 ('t') -Step 4 - input: 58 ('t') - expected output: 1 (' ') - -``` - -### 创建训练批次 - -前面我们使用 [`tf.data`](https://tensorflow.google.cn/api_docs/python/tf/data) 将文本拆分为可管理的序列。但是在把这些数据输送至模型之前,我们需要将数据重新排列 (shuffle) 并打包为批次。 - -```py -# 批大小 -BATCH_SIZE = 64 - -# 设定缓冲区大小,以重新排列数据集 -# (TF 数据被设计为可以处理可能是无限的序列, -# 所以它不会试图在内存中重新排列整个序列。相反, -# 它维持一个缓冲区,在缓冲区重新排列元素。) -BUFFER_SIZE = 10000 - -dataset = dataset.shuffle(BUFFER_SIZE).batch(BATCH_SIZE, drop_remainder=True) - -dataset -``` - -```py - - -``` - -## 创建模型 - -使用 [`tf.keras.Sequential`](https://tensorflow.google.cn/api_docs/python/tf/keras/Sequential) 定义模型。在这个简单的例子中,我们使用了三个层来定义模型: - -* [`tf.keras.layers.Embedding`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Embedding):输入层。一个可训练的对照表,它会将每个字符的数字映射到一个 `embedding_dim` 维度的向量。 -* [`tf.keras.layers.GRU`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/GRU):一种 RNN 类型,其大小由 `units=rnn_units` 指定(这里你也可以使用一个 LSTM 层)。 -* [`tf.keras.layers.Dense`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Dense):输出层,带有 `vocab_size` 个输出。 - -```py -# 词集的长度 -vocab_size = len(vocab) - -# 嵌入的维度 -embedding_dim = 256 - -# RNN 的单元数量 -rnn_units = 1024 -``` - -```py -def build_model(vocab_size, embedding_dim, rnn_units, batch_size): - model = tf.keras.Sequential([ - tf.keras.layers.Embedding(vocab_size, embedding_dim, - batch_input_shape=[batch_size, None]), - tf.keras.layers.GRU(rnn_units, - return_sequences=True, - stateful=True, - recurrent_initializer='glorot_uniform'), - tf.keras.layers.Dense(vocab_size) - ]) - return model -``` - -```py -model = build_model( - vocab_size = len(vocab), - embedding_dim=embedding_dim, - rnn_units=rnn_units, - batch_size=BATCH_SIZE) -``` - -对于每个字符,模型会查找嵌入,把嵌入当作输入运行 GRU 一个时间步,并用密集层生成逻辑回归 (logits),预测下一个字符的对数可能性。 ![数据在模型中传输的示意图](img/643d654e7e1e3d928041b42363e0f099.png) - -## 试试这个模型 - -现在运行这个模型,看看它是否按预期运行。 - -首先检查输出的形状: - -```py -for input_example_batch, target_example_batch in dataset.take(1): - example_batch_predictions = model(input_example_batch) - print(example_batch_predictions.shape, "# (batch_size, sequence_length, vocab_size)") -``` - -```py -(64, 100, 65) # (batch_size, sequence_length, vocab_size) - -``` - -在上面的例子中,输入的序列长度为 `100`, 但是这个模型可以在任何长度的输入上运行: - -```py -model.summary() -``` - -```py -Model: "sequential" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -embedding (Embedding) (64, None, 256) 16640 -_________________________________________________________________ -gru (GRU) (64, None, 1024) 3938304 -_________________________________________________________________ -dense (Dense) (64, None, 65) 66625 -================================================================= -Total params: 4,021,569 -Trainable params: 4,021,569 -Non-trainable params: 0 -_________________________________________________________________ - -``` - -为了获得模型的实际预测,我们需要从输出分布中抽样,以获得实际的字符索引。这个分布是根据对字符集的逻辑回归定义的。 - -请注意:从这个分布中 *抽样* 很重要,因为取分布的 *最大值自变量点集(argmax)* 很容易使模型卡在循环中。 - -试试这个批次中的第一个样本: - -```py -sampled_indices = tf.random.categorical(example_batch_predictions[0], num_samples=1) -sampled_indices = tf.squeeze(sampled_indices,axis=-1).numpy() -``` - -这使我们得到每个时间步预测的下一个字符的索引。 - -```py -sampled_indices -``` - -```py -array([ 3, 19, 11, 8, 17, 50, 14, 5, 16, 57, 51, 53, 17, 54, 9, 11, 22, - 13, 36, 57, 57, 50, 47, 22, 5, 7, 1, 59, 3, 26, 52, 2, 62, 30, - 54, 18, 62, 9, 63, 2, 22, 11, 18, 12, 63, 0, 13, 16, 38, 49, 21, - 25, 22, 53, 39, 63, 3, 26, 39, 15, 21, 56, 49, 39, 20, 55, 5, 39, - 61, 29, 21, 39, 39, 63, 48, 11, 27, 42, 59, 0, 19, 58, 57, 27, 40, - 13, 53, 13, 7, 4, 21, 32, 10, 57, 18, 30, 54, 36, 12, 3]) - -``` - -解码它们,以查看此未经训练的模型预测的文本: - -```py -print("Input: \n", repr("".join(idx2char[input_example_batch[0]]))) -print() -print("Next Char Predictions: \n", repr("".join(idx2char[sampled_indices ]))) -``` - -```py -Input: - 'e, I say! madam! sweet-heart! why, bride!\nWhat, not a word? you take your pennyworths now;\nSleep for' - -Next Char Predictions: - "$G;.ElB'DsmoEp3;JAXssliJ'- u$Nn!xRpFx3y!J;F?y\nADZkIMJoay$NaCIrkaHq'awQIaayj;Odu\nGtsObAoA-&IT:sFRpX?$" - -``` - -## 训练模型 - -此时,这个问题可以被视为一个标准的分类问题:给定先前的 RNN 状态和这一时间步的输入,预测下一个字符的类别。 - -### 添加优化器和损失函数 - -标准的 [`tf.keras.losses.sparse_categorical_crossentropy`](https://tensorflow.google.cn/api_docs/python/tf/keras/losses/sparse_categorical_crossentropy) 损失函数在这里适用,因为它被应用于预测的最后一个维度。 - -因为我们的模型返回逻辑回归,所以我们需要设定命令行参数 `from_logits`。 - -```py -def loss(labels, logits): - return tf.keras.losses.sparse_categorical_crossentropy(labels, logits, from_logits=True) - -example_batch_loss = loss(target_example_batch, example_batch_predictions) -print("Prediction shape: ", example_batch_predictions.shape, " # (batch_size, sequence_length, vocab_size)") -print("scalar_loss: ", example_batch_loss.numpy().mean()) -``` - -```py -Prediction shape: (64, 100, 65) # (batch_size, sequence_length, vocab_size) -scalar_loss: 4.1736827 - -``` - -使用 [`tf.keras.Model.compile`](https://tensorflow.google.cn/api_docs/python/tf/keras/Model#compile) 方法配置训练步骤。我们将使用 [`tf.keras.optimizers.Adam`](https://tensorflow.google.cn/api_docs/python/tf/keras/optimizers/Adam) 并采用默认参数,以及损失函数。 - -```py -model.compile(optimizer='adam', loss=loss) -``` - -### 配置检查点 - -使用 [`tf.keras.callbacks.ModelCheckpoint`](https://tensorflow.google.cn/api_docs/python/tf/keras/callbacks/ModelCheckpoint) 来确保训练过程中保存检查点。 - -```py -# 检查点保存至的目录 -checkpoint_dir = './training_checkpoints' - -# 检查点的文件名 -checkpoint_prefix = os.path.join(checkpoint_dir, "ckpt_{epoch}") - -checkpoint_callback=tf.keras.callbacks.ModelCheckpoint( - filepath=checkpoint_prefix, - save_weights_only=True) -``` - -### 执行训练 - -为保持训练时间合理,使用 10 个周期来训练模型。在 Colab 中,将运行时设置为 GPU 以加速训练。 - -```py -EPOCHS=10 -``` - -```py -history = model.fit(dataset, epochs=EPOCHS, callbacks=[checkpoint_callback]) -``` - -```py -Epoch 1/10 -172/172 [==============================] - 5s 27ms/step - loss: 2.6663 -Epoch 2/10 -172/172 [==============================] - 5s 27ms/step - loss: 1.9452 -Epoch 3/10 -172/172 [==============================] - 5s 27ms/step - loss: 1.6797 -Epoch 4/10 -172/172 [==============================] - 5s 27ms/step - loss: 1.5355 -Epoch 5/10 -172/172 [==============================] - 5s 27ms/step - loss: 1.4493 -Epoch 6/10 -172/172 [==============================] - 5s 27ms/step - loss: 1.3900 -Epoch 7/10 -172/172 [==============================] - 5s 27ms/step - loss: 1.3457 -Epoch 8/10 -172/172 [==============================] - 5s 26ms/step - loss: 1.3076 -Epoch 9/10 -172/172 [==============================] - 5s 27ms/step - loss: 1.2732 -Epoch 10/10 -172/172 [==============================] - 5s 27ms/step - loss: 1.2412 - -``` - -## 生成文本 - -### 恢复最新的检查点 - -为保持此次预测步骤简单,将批大小设定为 1。 - -由于 RNN 状态从时间步传递到时间步的方式,模型建立好之后只接受固定的批大小。 - -若要使用不同的 `batch_size` 来运行模型,我们需要重建模型并从检查点中恢复权重。 - -```py -tf.train.latest_checkpoint(checkpoint_dir) -``` - -```py -'./training_checkpoints/ckpt_10' - -``` - -```py -model = build_model(vocab_size, embedding_dim, rnn_units, batch_size=1) - -model.load_weights(tf.train.latest_checkpoint(checkpoint_dir)) - -model.build(tf.TensorShape([1, None])) -``` - -```py -model.summary() -``` - -```py -Model: "sequential_1" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -embedding_1 (Embedding) (1, None, 256) 16640 -_________________________________________________________________ -gru_1 (GRU) (1, None, 1024) 3938304 -_________________________________________________________________ -dense_1 (Dense) (1, None, 65) 66625 -================================================================= -Total params: 4,021,569 -Trainable params: 4,021,569 -Non-trainable params: 0 -_________________________________________________________________ - -``` - -### 预测循环 - -下面的代码块生成文本: - -* 首先设置起始字符串,初始化 RNN 状态并设置要生成的字符个数。 - -* 用起始字符串和 RNN 状态,获取下一个字符的预测分布。 - -* 然后,用分类分布计算预测字符的索引。把这个预测字符当作模型的下一个输入。 - -* 模型返回的 RNN 状态被输送回模型。现在,模型有更多上下文可以学习,而非只有一个字符。在预测出下一个字符后,更改过的 RNN 状态被再次输送回模型。模型就是这样,通过不断从前面预测的字符获得更多上下文,进行学习。 - -![为生成文本,模型的输出被输送回模型作为输入](img/6ae78bb4c1ad3a2e0ade4489d4fdf706.png) - -查看生成的文本,你会发现这个模型知道什么时候使用大写字母,什么时候分段,而且模仿出了莎士比亚式的词汇。由于训练的周期小,模型尚未学会生成连贯的句子。 - -```py -def generate_text(model, start_string): - # 评估步骤(用学习过的模型生成文本) - - # 要生成的字符个数 - num_generate = 1000 - - # 将起始字符串转换为数字(向量化) - input_eval = [char2idx[s] for s in start_string] - input_eval = tf.expand_dims(input_eval, 0) - - # 空字符串用于存储结果 - text_generated = [] - - # 低温度会生成更可预测的文本 - # 较高温度会生成更令人惊讶的文本 - # 可以通过试验以找到最好的设定 - temperature = 1.0 - - # 这里批大小为 1 - model.reset_states() - for i in range(num_generate): - predictions = model(input_eval) - # 删除批次的维度 - predictions = tf.squeeze(predictions, 0) - - # 用分类分布预测模型返回的字符 - predictions = predictions / temperature - predicted_id = tf.random.categorical(predictions, num_samples=1)[-1,0].numpy() - - # 把预测字符和前面的隐藏状态一起传递给模型作为下一个输入 - input_eval = tf.expand_dims([predicted_id], 0) - - text_generated.append(idx2char[predicted_id]) - - return (start_string + ''.join(text_generated)) -``` - -```py -print(generate_text(model, start_string=u"ROMEO: ")) -``` - -```py -ROMEO: in't, Romeo rather -say, bid me not say, the adden, and you man for all. -Now, good Cart, or do held. Well, leaving her son, -Some stomacame, brother, Edommen. - -PROSPERO: -My lord Hastings, for death, -Or as believell you be accoment. - -TRANIO: -Mistraising? come, get abseng house: -The that was a life upon none of the equard sud, -Great Aufidius any joy; -For well a fool, and loveth one stay, -To whom Gare his moved me of Marcius shoulded. -Pite o'erposens to him. - -KING RICHARD II: -Come, civil and live, if wet to help and raisen fellow. - -CORIOLANUS: -Mark, here, sir. But the palace-hate will be at him in -some wondering danger, my bestilent. - -DUKE OF AUMERLE: -You, my lord? my dearly uncles for, -If't be fown'd for truth enough not him, -He talk of youngest young princely sake. - -ROMEO: -This let me have a still before the queen -First worthy angel. Would yes, by return. - -BAPTISTA: -You have dan, -Dies, renown awrifes; I'll say you. - -Provost: -And, come, make it out. - -LEONTES: -They call thee, hangions, -Not - -``` - -若想改进结果,最简单的方式是延长训练时间 (试试 `EPOCHS=30`)。 - -你还可以试验使用不同的起始字符串,或者尝试增加另一个 RNN 层以提高模型的准确率,亦或调整温度参数以生成更多或者更少的随机预测。 - -## 高级:自定义训练 - -上面的训练步骤简单,但是能控制的地方不多。 - -至此,你已经知道如何手动运行模型。现在,让我们打开训练循环,并自己实现它。这是一些任务的起点,例如实现 *课程学习* 以帮助稳定模型的开环输出。 - -你将使用 [`tf.GradientTape`](https://tensorflow.google.cn/api_docs/python/tf/GradientTape) 跟踪梯度。关于此方法的更多信息请参阅 [eager execution 指南](https://tensorflow.google.cn/guide/eager)。 - -步骤如下: - -* 首先,初始化 RNN 状态,使用 [`tf.keras.Model.reset_states`](https://tensorflow.google.cn/api_docs/python/tf/keras/Model#reset_states) 方法。 - -* 然后,迭代数据集(逐批次)并计算每次迭代对应的 *预测*。 - -* 打开一个 [`tf.GradientTape`](https://tensorflow.google.cn/api_docs/python/tf/GradientTape) 并计算该上下文时的预测和损失。 - -* 使用 `tf.GradientTape.grads` 方法,计算当前模型变量情况下的损失梯度。 - -* 最后,使用优化器的 `tf.train.Optimizer.apply_gradients` 方法向下迈出一步。 - -```py -model = build_model( - vocab_size = len(vocab), - embedding_dim=embedding_dim, - rnn_units=rnn_units, - batch_size=BATCH_SIZE) -``` - -```py -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer.iter -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer.beta_1 -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer.beta_2 -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer.decay -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer.learning_rate -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer's state 'm' for (root).layer_with_weights-0.embeddings -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer's state 'm' for (root).layer_with_weights-2.kernel -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer's state 'm' for (root).layer_with_weights-2.bias -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer's state 'm' for (root).layer_with_weights-1.cell.kernel -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer's state 'm' for (root).layer_with_weights-1.cell.recurrent_kernel -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer's state 'm' for (root).layer_with_weights-1.cell.bias -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer's state 'v' for (root).layer_with_weights-0.embeddings -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer's state 'v' for (root).layer_with_weights-2.kernel -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer's state 'v' for (root).layer_with_weights-2.bias -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer's state 'v' for (root).layer_with_weights-1.cell.kernel -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer's state 'v' for (root).layer_with_weights-1.cell.recurrent_kernel -WARNING:tensorflow:Unresolved object in checkpoint: (root).optimizer's state 'v' for (root).layer_with_weights-1.cell.bias -WARNING:tensorflow:A checkpoint was restored (e.g. tf.train.Checkpoint.restore or tf.keras.Model.load_weights) but not all checkpointed values were used. See above for specific issues. Use expect_partial() on the load status object, e.g. tf.train.Checkpoint.restore(...).expect_partial(), to silence these warnings, or use assert_consumed() to make the check explicit. See https://www.tensorflow.org/guide/checkpoint#loading_mechanics for details. - -``` - -```py -optimizer = tf.keras.optimizers.Adam() -``` - -```py -@tf.function -def train_step(inp, target): - with tf.GradientTape() as tape: - predictions = model(inp) - loss = tf.reduce_mean( - tf.keras.losses.sparse_categorical_crossentropy( - target, predictions, from_logits=True)) - grads = tape.gradient(loss, model.trainable_variables) - optimizer.apply_gradients(zip(grads, model.trainable_variables)) - - return loss -``` - -```py -# 训练步骤 -EPOCHS = 10 - -for epoch in range(EPOCHS): - start = time.time() - - # 在每个训练周期开始时,初始化隐藏状态 - # 隐藏状态最初为 None - hidden = model.reset_states() - - for (batch_n, (inp, target)) in enumerate(dataset): - loss = train_step(inp, target) - - if batch_n % 100 == 0: - template = 'Epoch {} Batch {} Loss {}' - print(template.format(epoch+1, batch_n, loss)) - - # 每 5 个训练周期,保存(检查点)1 次模型 - if (epoch + 1) % 5 == 0: - model.save_weights(checkpoint_prefix.format(epoch=epoch)) - - print ('Epoch {} Loss {:.4f}'.format(epoch+1, loss)) - print ('Time taken for 1 epoch {} sec\n'.format(time.time() - start)) - -model.save_weights(checkpoint_prefix.format(epoch=epoch)) -``` - -```py -Epoch 1 Batch 0 Loss 4.173541069030762 -Epoch 1 Batch 100 Loss 2.3451342582702637 -Epoch 1 Loss 2.1603 -Time taken for 1 epoch 6.5293896198272705 sec - -Epoch 2 Batch 0 Loss 2.1137943267822266 -Epoch 2 Batch 100 Loss 1.9266924858093262 -Epoch 2 Loss 1.7417 -Time taken for 1 epoch 5.6192779541015625 sec - -Epoch 3 Batch 0 Loss 1.775771975517273 -Epoch 3 Batch 100 Loss 1.657868504524231 -Epoch 3 Loss 1.5520 -Time taken for 1 epoch 5.231291770935059 sec - -Epoch 4 Batch 0 Loss 1.543768048286438 -Epoch 4 Batch 100 Loss 1.5487240552902222 -Epoch 4 Loss 1.4920 -Time taken for 1 epoch 5.363192319869995 sec - -Epoch 5 Batch 0 Loss 1.4550749063491821 -Epoch 5 Batch 100 Loss 1.4589751958847046 -Epoch 5 Loss 1.4171 -Time taken for 1 epoch 5.297640085220337 sec - -Epoch 6 Batch 0 Loss 1.376267671585083 -Epoch 6 Batch 100 Loss 1.3637677431106567 -Epoch 6 Loss 1.3818 -Time taken for 1 epoch 5.299052476882935 sec - -Epoch 7 Batch 0 Loss 1.2916797399520874 -Epoch 7 Batch 100 Loss 1.3284915685653687 -Epoch 7 Loss 1.3983 -Time taken for 1 epoch 5.277729749679565 sec - -Epoch 8 Batch 0 Loss 1.2573177814483643 -Epoch 8 Batch 100 Loss 1.2979872226715088 -Epoch 8 Loss 1.3120 -Time taken for 1 epoch 5.250093460083008 sec - -Epoch 9 Batch 0 Loss 1.3046417236328125 -Epoch 9 Batch 100 Loss 1.2858468294143677 -Epoch 9 Loss 1.3266 -Time taken for 1 epoch 5.280868291854858 sec - -Epoch 10 Batch 0 Loss 1.1859409809112549 -Epoch 10 Batch 100 Loss 1.2690430879592896 -Epoch 10 Loss 1.2733 -Time taken for 1 epoch 5.34737491607666 sec - -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/051.md b/Tensorflow/TensorFlow2.0/051.md deleted file mode 100644 index 33131cb0..00000000 --- a/Tensorflow/TensorFlow2.0/051.md +++ /dev/null @@ -1,716 +0,0 @@ -# 基于注意力的神经机器翻译 - -> 原文:[https://tensorflow.google.cn/tutorials/text/nmt_with_attention](https://tensorflow.google.cn/tutorials/text/nmt_with_attention) - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -此笔记本训练一个将西班牙语翻译为英语的序列到序列(sequence to sequence,简写为 seq2seq)模型。此例子难度较高,需要对序列到序列模型的知识有一定了解。 - -训练完此笔记本中的模型后,你将能够输入一个西班牙语句子,例如 *"¿todavia estan en casa?"*,并返回其英语翻译 *"are you still at home?"* - -对于一个简单的例子来说,翻译质量令人满意。但是更有趣的可能是生成的注意力图:它显示在翻译过程中,输入句子的哪些部分受到了模型的注意。 - -![spanish-english attention plot](img/295a20785cb201af0f19ee7414550082.png) - -请注意:运行这个例子用一个 P100 GPU 需要花大约 10 分钟。 - -```py -import tensorflow as tf - -import matplotlib.pyplot as plt -import matplotlib.ticker as ticker -from sklearn.model_selection import train_test_split - -import unicodedata -import re -import numpy as np -import os -import io -import time -``` - -## 下载和准备数据集 - -我们将使用 [http://www.manythings.org/anki/](http://www.manythings.org/anki/) 提供的一个语言数据集。这个数据集包含如下格式的语言翻译对: - -```py -May I borrow this book? ¿Puedo tomar prestado este libro? -``` - -这个数据集中有很多种语言可供选择。我们将使用英语 - 西班牙语数据集。为方便使用,我们在谷歌云上提供了此数据集的一份副本。但是你也可以自己下载副本。下载完数据集后,我们将采取下列步骤准备数据: - -1. 给每个句子添加一个 *开始* 和一个 *结束* 标记(token)。 -2. 删除特殊字符以清理句子。 -3. 创建一个单词索引和一个反向单词索引(即一个从单词映射至 id 的词典和一个从 id 映射至单词的词典)。 -4. 将每个句子填充(pad)到最大长度。 - -```py -# 下载文件 -path_to_zip = tf.keras.utils.get_file( - 'spa-eng.zip', origin='http://storage.googleapis.com/download.tensorflow.org/data/spa-eng.zip', - extract=True) - -path_to_file = os.path.dirname(path_to_zip)+"/spa-eng/spa.txt" -``` - -```py -Downloading data from http://storage.googleapis.com/download.tensorflow.org/data/spa-eng.zip -2646016/2638744 [==============================] - 0s 0us/step - -``` - -```py -# 将 unicode 文件转换为 ascii -def unicode_to_ascii(s): - return ''.join(c for c in unicodedata.normalize('NFD', s) - if unicodedata.category(c) != 'Mn') - -def preprocess_sentence(w): - w = unicode_to_ascii(w.lower().strip()) - - # 在单词与跟在其后的标点符号之间插入一个空格 - # 例如: "he is a boy." => "he is a boy ." - # 参考:https://stackoverflow.com/questions/3645931/python-padding-punctuation-with-white-spaces-keeping-punctuation - w = re.sub(r"([?.!,¿])", r" \1 ", w) - w = re.sub(r'[" "]+', " ", w) - - # 除了 (a-z, A-Z, ".", "?", "!", ","),将所有字符替换为空格 - w = re.sub(r"[^a-zA-Z?.!,¿]+", " ", w) - - w = w.rstrip().strip() - - # 给句子加上开始和结束标记 - # 以便模型知道何时开始和结束预测 - w = ' ' + w + ' ' - return w -``` - -```py -en_sentence = u"May I borrow this book?" -sp_sentence = u"¿Puedo tomar prestado este libro?" -print(preprocess_sentence(en_sentence)) -print(preprocess_sentence(sp_sentence).encode('utf-8')) -``` - -```py - may i borrow this book ? -b' \xc2\xbf puedo tomar prestado este libro ? ' - -``` - -```py -# 1\. 去除重音符号 -# 2\. 清理句子 -# 3\. 返回这样格式的单词对:[ENGLISH, SPANISH] -def create_dataset(path, num_examples): - lines = io.open(path, encoding='UTF-8').read().strip().split('\n') - - word_pairs = [[preprocess_sentence(w) for w in l.split('\t')] for l in lines[:num_examples]] - - return zip(*word_pairs) -``` - -```py -en, sp = create_dataset(path_to_file, None) -print(en[-1]) -print(sp[-1]) -``` - -```py - if you want to sound like a native speaker , you must be willing to practice saying the same sentence over and over in the same way that banjo players practice the same phrase over and over until they can play it correctly and at the desired tempo . - si quieres sonar como un hablante nativo , debes estar dispuesto a practicar diciendo la misma frase una y otra vez de la misma manera en que un musico de banjo practica el mismo fraseo una y otra vez hasta que lo puedan tocar correctamente y en el tiempo esperado . - -``` - -```py -def max_length(tensor): - return max(len(t) for t in tensor) -``` - -```py -def tokenize(lang): - lang_tokenizer = tf.keras.preprocessing.text.Tokenizer( - filters='') - lang_tokenizer.fit_on_texts(lang) - - tensor = lang_tokenizer.texts_to_sequences(lang) - - tensor = tf.keras.preprocessing.sequence.pad_sequences(tensor, - padding='post') - - return tensor, lang_tokenizer -``` - -```py -def load_dataset(path, num_examples=None): - # 创建清理过的输入输出对 - targ_lang, inp_lang = create_dataset(path, num_examples) - - input_tensor, inp_lang_tokenizer = tokenize(inp_lang) - target_tensor, targ_lang_tokenizer = tokenize(targ_lang) - - return input_tensor, target_tensor, inp_lang_tokenizer, targ_lang_tokenizer -``` - -### 限制数据集的大小以加快实验速度(可选) - -在超过 10 万个句子的完整数据集上训练需要很长时间。为了更快地训练,我们可以将数据集的大小限制为 3 万个句子(当然,翻译质量也会随着数据的减少而降低): - -```py -# 尝试实验不同大小的数据集 -num_examples = 30000 -input_tensor, target_tensor, inp_lang, targ_lang = load_dataset(path_to_file, num_examples) - -# 计算目标张量的最大长度 (max_length) -max_length_targ, max_length_inp = max_length(target_tensor), max_length(input_tensor) -``` - -```py -# 采用 80 - 20 的比例切分训练集和验证集 -input_tensor_train, input_tensor_val, target_tensor_train, target_tensor_val = train_test_split(input_tensor, target_tensor, test_size=0.2) - -# 显示长度 -print(len(input_tensor_train), len(target_tensor_train), len(input_tensor_val), len(target_tensor_val)) -``` - -```py -24000 24000 6000 6000 - -``` - -```py -def convert(lang, tensor): - for t in tensor: - if t!=0: - print ("%d ----> %s" % (t, lang.index_word[t])) -``` - -```py -print ("Input Language; index to word mapping") -convert(inp_lang, input_tensor_train[0]) -print () -print ("Target Language; index to word mapping") -convert(targ_lang, target_tensor_train[0]) -``` - -```py -Input Language; index to word mapping -1 ----> -13 ----> la -1999 ----> belleza -7 ----> es -8096 ----> subjetiva -3 ----> . -2 ----> - -Target Language; index to word mapping -1 ----> -1148 ----> beauty -8 ----> is -4299 ----> subjective -3 ----> . -2 ----> - -``` - -### 创建一个 tf.data 数据集 - -```py -BUFFER_SIZE = len(input_tensor_train) -BATCH_SIZE = 64 -steps_per_epoch = len(input_tensor_train)//BATCH_SIZE -embedding_dim = 256 -units = 1024 -vocab_inp_size = len(inp_lang.word_index)+1 -vocab_tar_size = len(targ_lang.word_index)+1 - -dataset = tf.data.Dataset.from_tensor_slices((input_tensor_train, target_tensor_train)).shuffle(BUFFER_SIZE) -dataset = dataset.batch(BATCH_SIZE, drop_remainder=True) -``` - -```py -example_input_batch, example_target_batch = next(iter(dataset)) -example_input_batch.shape, example_target_batch.shape -``` - -```py -(TensorShape([64, 16]), TensorShape([64, 11])) - -``` - -## 编写编码器 (encoder) 和解码器 (decoder) 模型 - -实现一个基于注意力的编码器 - 解码器模型。关于这种模型,你可以阅读 TensorFlow 的 [神经机器翻译 (序列到序列) 教程](https://github.com/tensorflow/nmt)。本示例采用一组更新的 API。此笔记本实现了上述序列到序列教程中的 [注意力方程式](https://github.com/tensorflow/nmt#background-on-the-attention-mechanism)。下图显示了注意力机制为每个输入单词分配一个权重,然后解码器将这个权重用于预测句子中的下一个单词。下图和公式是 [Luong 的论文](https://arxiv.org/abs/1508.04025v5)中注意力机制的一个例子。 - -![attention mechanism](img/b8397a070205f9293fbc989d8421eec5.png) - -输入经过编码器模型,编码器模型为我们提供形状为 *(批大小,最大长度,隐藏层大小)* 的编码器输出和形状为 *(批大小,隐藏层大小)* 的编码器隐藏层状态。 - -下面是所实现的方程式: - -![attention equation 0](img/20fad379e19d0355132a97db41137f4b.png) ![attention equation 1](img/9c9248a99f6346e02b6be5c21e5ab7be.png) - -本教程的编码器采用 [Bahdanau 注意力](https://arxiv.org/pdf/1409.0473.pdf)。在用简化形式编写之前,让我们先决定符号: - -* FC = 完全连接(密集)层 -* EO = 编码器输出 -* H = 隐藏层状态 -* X = 解码器输入 - -以及伪代码: - -* `score = FC(tanh(FC(EO) + FC(H)))` -* `attention weights = softmax(score, axis = 1)`。 Softmax 默认被应用于最后一个轴,但是这里我们想将它应用于 *第一个轴*, 因为分数 (score) 的形状是 *(批大小,最大长度,隐藏层大小)*。最大长度 (`max_length`) 是我们的输入的长度。因为我们想为每个输入分配一个权重,所以 softmax 应该用在这个轴上。 -* `context vector = sum(attention weights * EO, axis = 1)`。选择第一个轴的原因同上。 -* `embedding output` = 解码器输入 X 通过一个嵌入层。 -* `merged vector = concat(embedding output, context vector)` -* 此合并后的向量随后被传送到 GRU - -每个步骤中所有向量的形状已在代码的注释中阐明: - -```py -class Encoder(tf.keras.Model): - def __init__(self, vocab_size, embedding_dim, enc_units, batch_sz): - super(Encoder, self).__init__() - self.batch_sz = batch_sz - self.enc_units = enc_units - self.embedding = tf.keras.layers.Embedding(vocab_size, embedding_dim) - self.gru = tf.keras.layers.GRU(self.enc_units, - return_sequences=True, - return_state=True, - recurrent_initializer='glorot_uniform') - - def call(self, x, hidden): - x = self.embedding(x) - output, state = self.gru(x, initial_state = hidden) - return output, state - - def initialize_hidden_state(self): - return tf.zeros((self.batch_sz, self.enc_units)) -``` - -```py -encoder = Encoder(vocab_inp_size, embedding_dim, units, BATCH_SIZE) - -# 样本输入 -sample_hidden = encoder.initialize_hidden_state() -sample_output, sample_hidden = encoder(example_input_batch, sample_hidden) -print ('Encoder output shape: (batch size, sequence length, units) {}'.format(sample_output.shape)) -print ('Encoder Hidden state shape: (batch size, units) {}'.format(sample_hidden.shape)) -``` - -```py -Encoder output shape: (batch size, sequence length, units) (64, 16, 1024) -Encoder Hidden state shape: (batch size, units) (64, 1024) - -``` - -```py -class BahdanauAttention(tf.keras.layers.Layer): - def __init__(self, units): - super(BahdanauAttention, self).__init__() - self.W1 = tf.keras.layers.Dense(units) - self.W2 = tf.keras.layers.Dense(units) - self.V = tf.keras.layers.Dense(1) - - def call(self, query, values): - # 隐藏层的形状 == (批大小,隐藏层大小) - # hidden_with_time_axis 的形状 == (批大小,1,隐藏层大小) - # 这样做是为了执行加法以计算分数 - hidden_with_time_axis = tf.expand_dims(query, 1) - - # 分数的形状 == (批大小,最大长度,1) - # 我们在最后一个轴上得到 1, 因为我们把分数应用于 self.V - # 在应用 self.V 之前,张量的形状是(批大小,最大长度,单位) - score = self.V(tf.nn.tanh( - self.W1(values) + self.W2(hidden_with_time_axis))) - - # 注意力权重 (attention_weights) 的形状 == (批大小,最大长度,1) - attention_weights = tf.nn.softmax(score, axis=1) - - # 上下文向量 (context_vector) 求和之后的形状 == (批大小,隐藏层大小) - context_vector = attention_weights * values - context_vector = tf.reduce_sum(context_vector, axis=1) - - return context_vector, attention_weights -``` - -```py -attention_layer = BahdanauAttention(10) -attention_result, attention_weights = attention_layer(sample_hidden, sample_output) - -print("Attention result shape: (batch size, units) {}".format(attention_result.shape)) -print("Attention weights shape: (batch_size, sequence_length, 1) {}".format(attention_weights.shape)) -``` - -```py -Attention result shape: (batch size, units) (64, 1024) -Attention weights shape: (batch_size, sequence_length, 1) (64, 16, 1) - -``` - -```py -class Decoder(tf.keras.Model): - def __init__(self, vocab_size, embedding_dim, dec_units, batch_sz): - super(Decoder, self).__init__() - self.batch_sz = batch_sz - self.dec_units = dec_units - self.embedding = tf.keras.layers.Embedding(vocab_size, embedding_dim) - self.gru = tf.keras.layers.GRU(self.dec_units, - return_sequences=True, - return_state=True, - recurrent_initializer='glorot_uniform') - self.fc = tf.keras.layers.Dense(vocab_size) - - # 用于注意力 - self.attention = BahdanauAttention(self.dec_units) - - def call(self, x, hidden, enc_output): - # 编码器输出 (enc_output) 的形状 == (批大小,最大长度,隐藏层大小) - context_vector, attention_weights = self.attention(hidden, enc_output) - - # x 在通过嵌入层后的形状 == (批大小,1,嵌入维度) - x = self.embedding(x) - - # x 在拼接 (concatenation) 后的形状 == (批大小,1,嵌入维度 + 隐藏层大小) - x = tf.concat([tf.expand_dims(context_vector, 1), x], axis=-1) - - # 将合并后的向量传送到 GRU - output, state = self.gru(x) - - # 输出的形状 == (批大小 * 1,隐藏层大小) - output = tf.reshape(output, (-1, output.shape[2])) - - # 输出的形状 == (批大小,vocab) - x = self.fc(output) - - return x, state, attention_weights -``` - -```py -decoder = Decoder(vocab_tar_size, embedding_dim, units, BATCH_SIZE) - -sample_decoder_output, _, _ = decoder(tf.random.uniform((64, 1)), - sample_hidden, sample_output) - -print ('Decoder output shape: (batch_size, vocab size) {}'.format(sample_decoder_output.shape)) -``` - -```py -Decoder output shape: (batch_size, vocab size) (64, 4935) - -``` - -## 定义优化器和损失函数 - -```py -optimizer = tf.keras.optimizers.Adam() -loss_object = tf.keras.losses.SparseCategoricalCrossentropy( - from_logits=True, reduction='none') - -def loss_function(real, pred): - mask = tf.math.logical_not(tf.math.equal(real, 0)) - loss_ = loss_object(real, pred) - - mask = tf.cast(mask, dtype=loss_.dtype) - loss_ *= mask - - return tf.reduce_mean(loss_) -``` - -## 检查点(基于对象保存) - -```py -checkpoint_dir = './training_checkpoints' -checkpoint_prefix = os.path.join(checkpoint_dir, "ckpt") -checkpoint = tf.train.Checkpoint(optimizer=optimizer, - encoder=encoder, - decoder=decoder) -``` - -## 训练 - -1. 将 *输入* 传送至 *编码器*,编码器返回 *编码器输出* 和 *编码器隐藏层状态*。 -2. 将编码器输出、编码器隐藏层状态和解码器输入(即 *开始标记*)传送至解码器。 -3. 解码器返回 *预测* 和 *解码器隐藏层状态*。 -4. 解码器隐藏层状态被传送回模型,预测被用于计算损失。 -5. 使用 *教师强制 (teacher forcing)* 决定解码器的下一个输入。 -6. *教师强制* 是将 *目标词* 作为 *下一个输入* 传送至解码器的技术。 -7. 最后一步是计算梯度,并将其应用于优化器和反向传播。 - -```py -@tf.function -def train_step(inp, targ, enc_hidden): - loss = 0 - - with tf.GradientTape() as tape: - enc_output, enc_hidden = encoder(inp, enc_hidden) - - dec_hidden = enc_hidden - - dec_input = tf.expand_dims([targ_lang.word_index['']] * BATCH_SIZE, 1) - - # 教师强制 - 将目标词作为下一个输入 - for t in range(1, targ.shape[1]): - # 将编码器输出 (enc_output) 传送至解码器 - predictions, dec_hidden, _ = decoder(dec_input, dec_hidden, enc_output) - - loss += loss_function(targ[:, t], predictions) - - # 使用教师强制 - dec_input = tf.expand_dims(targ[:, t], 1) - - batch_loss = (loss / int(targ.shape[1])) - - variables = encoder.trainable_variables + decoder.trainable_variables - - gradients = tape.gradient(loss, variables) - - optimizer.apply_gradients(zip(gradients, variables)) - - return batch_loss -``` - -```py -EPOCHS = 10 - -for epoch in range(EPOCHS): - start = time.time() - - enc_hidden = encoder.initialize_hidden_state() - total_loss = 0 - - for (batch, (inp, targ)) in enumerate(dataset.take(steps_per_epoch)): - batch_loss = train_step(inp, targ, enc_hidden) - total_loss += batch_loss - - if batch % 100 == 0: - print('Epoch {} Batch {} Loss {:.4f}'.format(epoch + 1, - batch, - batch_loss.numpy())) - # 每 2 个周期(epoch),保存(检查点)一次模型 - if (epoch + 1) % 2 == 0: - checkpoint.save(file_prefix = checkpoint_prefix) - - print('Epoch {} Loss {:.4f}'.format(epoch + 1, - total_loss / steps_per_epoch)) - print('Time taken for 1 epoch {} sec\n'.format(time.time() - start)) -``` - -```py -Epoch 1 Batch 0 Loss 4.6508 -Epoch 1 Batch 100 Loss 2.1923 -Epoch 1 Batch 200 Loss 1.7957 -Epoch 1 Batch 300 Loss 1.7889 -Epoch 1 Loss 2.0564 -Time taken for 1 epoch 28.358328819274902 sec - -Epoch 2 Batch 0 Loss 1.5558 -Epoch 2 Batch 100 Loss 1.5256 -Epoch 2 Batch 200 Loss 1.4604 -Epoch 2 Batch 300 Loss 1.3006 -Epoch 2 Loss 1.4770 -Time taken for 1 epoch 16.062172651290894 sec - -Epoch 3 Batch 0 Loss 1.1928 -Epoch 3 Batch 100 Loss 1.1909 -Epoch 3 Batch 200 Loss 1.0559 -Epoch 3 Batch 300 Loss 0.9279 -Epoch 3 Loss 1.1305 -Time taken for 1 epoch 15.620810270309448 sec - -Epoch 4 Batch 0 Loss 0.8910 -Epoch 4 Batch 100 Loss 0.7890 -Epoch 4 Batch 200 Loss 0.8234 -Epoch 4 Batch 300 Loss 0.8448 -Epoch 4 Loss 0.8080 -Time taken for 1 epoch 15.983836889266968 sec - -Epoch 5 Batch 0 Loss 0.4728 -Epoch 5 Batch 100 Loss 0.7090 -Epoch 5 Batch 200 Loss 0.6280 -Epoch 5 Batch 300 Loss 0.5421 -Epoch 5 Loss 0.5710 -Time taken for 1 epoch 15.588238716125488 sec - -Epoch 6 Batch 0 Loss 0.4209 -Epoch 6 Batch 100 Loss 0.3995 -Epoch 6 Batch 200 Loss 0.4426 -Epoch 6 Batch 300 Loss 0.4470 -Epoch 6 Loss 0.4063 -Time taken for 1 epoch 15.882423639297485 sec - -Epoch 7 Batch 0 Loss 0.2503 -Epoch 7 Batch 100 Loss 0.3373 -Epoch 7 Batch 200 Loss 0.3342 -Epoch 7 Batch 300 Loss 0.2955 -Epoch 7 Loss 0.2938 -Time taken for 1 epoch 15.601640939712524 sec - -Epoch 8 Batch 0 Loss 0.1662 -Epoch 8 Batch 100 Loss 0.1923 -Epoch 8 Batch 200 Loss 0.2131 -Epoch 8 Batch 300 Loss 0.2464 -Epoch 8 Loss 0.2175 -Time taken for 1 epoch 15.917790412902832 sec - -Epoch 9 Batch 0 Loss 0.1450 -Epoch 9 Batch 100 Loss 0.1351 -Epoch 9 Batch 200 Loss 0.2102 -Epoch 9 Batch 300 Loss 0.2188 -Epoch 9 Loss 0.1659 -Time taken for 1 epoch 15.727098941802979 sec - -Epoch 10 Batch 0 Loss 0.0995 -Epoch 10 Batch 100 Loss 0.1190 -Epoch 10 Batch 200 Loss 0.1444 -Epoch 10 Batch 300 Loss 0.1280 -Epoch 10 Loss 0.1294 -Time taken for 1 epoch 15.857161045074463 sec - -``` - -## 翻译 - -* 评估函数类似于训练循环,不同之处在于在这里我们不使用 *教师强制*。每个时间步的解码器输入是其先前的预测、隐藏层状态和编码器输出。 -* 当模型预测 *结束标记* 时停止预测。 -* 存储 *每个时间步的注意力权重*。 - -请注意:对于一个输入,编码器输出仅计算一次。 - -```py -def evaluate(sentence): - attention_plot = np.zeros((max_length_targ, max_length_inp)) - - sentence = preprocess_sentence(sentence) - - inputs = [inp_lang.word_index[i] for i in sentence.split(' ')] - inputs = tf.keras.preprocessing.sequence.pad_sequences([inputs], - maxlen=max_length_inp, - padding='post') - inputs = tf.convert_to_tensor(inputs) - - result = '' - - hidden = [tf.zeros((1, units))] - enc_out, enc_hidden = encoder(inputs, hidden) - - dec_hidden = enc_hidden - dec_input = tf.expand_dims([targ_lang.word_index['']], 0) - - for t in range(max_length_targ): - predictions, dec_hidden, attention_weights = decoder(dec_input, - dec_hidden, - enc_out) - - # 存储注意力权重以便后面制图 - attention_weights = tf.reshape(attention_weights, (-1, )) - attention_plot[t] = attention_weights.numpy() - - predicted_id = tf.argmax(predictions[0]).numpy() - - result += targ_lang.index_word[predicted_id] + ' ' - - if targ_lang.index_word[predicted_id] == '': - return result, sentence, attention_plot - - # 预测的 ID 被输送回模型 - dec_input = tf.expand_dims([predicted_id], 0) - - return result, sentence, attention_plot -``` - -```py -# 注意力权重制图函数 -def plot_attention(attention, sentence, predicted_sentence): - fig = plt.figure(figsize=(10,10)) - ax = fig.add_subplot(1, 1, 1) - ax.matshow(attention, cmap='viridis') - - fontdict = {'fontsize': 14} - - ax.set_xticklabels([''] + sentence, fontdict=fontdict, rotation=90) - ax.set_yticklabels([''] + predicted_sentence, fontdict=fontdict) - - ax.xaxis.set_major_locator(ticker.MultipleLocator(1)) - ax.yaxis.set_major_locator(ticker.MultipleLocator(1)) - - plt.show() -``` - -```py -def translate(sentence): - result, sentence, attention_plot = evaluate(sentence) - - print('Input: %s' % (sentence)) - print('Predicted translation: {}'.format(result)) - - attention_plot = attention_plot[:len(result.split(' ')), :len(sentence.split(' '))] - plot_attention(attention_plot, sentence.split(' '), result.split(' ')) -``` - -## 恢复最新的检查点并验证 - -```py -# 恢复检查点目录 (checkpoint_dir) 中最新的检查点 -checkpoint.restore(tf.train.latest_checkpoint(checkpoint_dir)) -``` - -```py - - -``` - -```py -translate(u'hace mucho frio aqui.') -``` - -```py -Input: hace mucho frio aqui . -Predicted translation: it s very cold here . - -``` - -![png](img/86f4e22b402c9e48d76da7068ace2175.png) - -```py -translate(u'esta es mi vida.') -``` - -```py -Input: esta es mi vida . -Predicted translation: this is my life . - -``` - -![png](img/5ae7b3b0f94a71db86b4168d116179ff.png) - -```py -translate(u'¿todavia estan en casa?') -``` - -```py -Input: ¿ todavia estan en casa ? -Predicted translation: are you still at home ? - -``` - -![png](img/3e8e9f9ba0ac0f802575b228ffa360c0.png) - -```py -# 错误的翻译 -translate(u'trata de averiguarlo.') -``` - -```py -Input: trata de averiguarlo . -Predicted translation: try to be coming . - -``` - -![png](img/996d41e44b9998dc439ec88b9b370cec.png) - -## 下一步 - -* [下载一个不同的数据集](http://www.manythings.org/anki/)实验翻译,例如英语到德语或者英语到法语。 -* 实验在更大的数据集上训练,或者增加训练周期。 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/052.md b/Tensorflow/TensorFlow2.0/052.md deleted file mode 100644 index 2ab62756..00000000 --- a/Tensorflow/TensorFlow2.0/052.md +++ /dev/null @@ -1,819 +0,0 @@ -# Image captioning with visual attention - -> 原文:[https://tensorflow.google.cn/tutorials/text/image_captioning](https://tensorflow.google.cn/tutorials/text/image_captioning) - - - -Given an image like the example below, our goal is to generate a caption such as "a surfer riding on a wave". - -![Man Surfing](img/72fcb6a7bcc602106e2c60268d3642c5.png) - -*[Image Source](https://commons.wikimedia.org/wiki/Surfing#/media/File:Surfing_in_Hawaii.jpg); License: Public Domain* - -To accomplish this, you'll use an attention-based model, which enables us to see what parts of the image the model focuses on as it generates a caption. - -![Prediction](img/7534c154062dc8f522f01d83838f3161.png) - -The model architecture is similar to [Show, Attend and Tell: Neural Image Caption Generation with Visual Attention](https://arxiv.org/abs/1502.03044). - -This notebook is an end-to-end example. When you run the notebook, it downloads the [MS-COCO](http://cocodataset.org/#home) dataset, preprocesses and caches a subset of images using Inception V3, trains an encoder-decoder model, and generates captions on new images using the trained model. - -In this example, you will train a model on a relatively small amount of data—the first 30,000 captions for about 20,000 images (because there are multiple captions per image in the dataset). - -```py -import tensorflow as tf - -# You'll generate plots of attention in order to see which parts of an image -# our model focuses on during captioning -import matplotlib.pyplot as plt - -# Scikit-learn includes many helpful utilities -from sklearn.model_selection import train_test_split -from sklearn.utils import shuffle - -import collections -import random -import re -import numpy as np -import os -import time -import json -from glob import glob -from PIL import Image -import pickle -``` - -## Download and prepare the MS-COCO dataset - -You will use the [MS-COCO dataset](http://cocodataset.org/#home) to train our model. The dataset contains over 82,000 images, each of which has at least 5 different caption annotations. The code below downloads and extracts the dataset automatically. - -**Caution:** large download ahead**. You'll use the training set, which is a 13GB file. - -```py -# Download caption annotation files -annotation_folder = '/annotations/' -if not os.path.exists(os.path.abspath('.') + annotation_folder): - annotation_zip = tf.keras.utils.get_file('captions.zip', - cache_subdir=os.path.abspath('.'), - origin = 'http://images.cocodataset.org/annotations/annotations_trainval2014.zip', - extract = True) - annotation_file = os.path.dirname(annotation_zip)+'/annotations/captions_train2014.json' - os.remove(annotation_zip) - -# Download image files -image_folder = '/train2014/' -if not os.path.exists(os.path.abspath('.') + image_folder): - image_zip = tf.keras.utils.get_file('train2014.zip', - cache_subdir=os.path.abspath('.'), - origin = 'http://images.cocodataset.org/zips/train2014.zip', - extract = True) - PATH = os.path.dirname(image_zip) + image_folder - os.remove(image_zip) -else: - PATH = os.path.abspath('.') + image_folder -``` - -```py -Downloading data from http://images.cocodataset.org/annotations/annotations_trainval2014.zip -252878848/252872794 [==============================] - 7s 0us/step -Downloading data from http://images.cocodataset.org/zips/train2014.zip -13510574080/13510573713 [==============================] - 374s 0us/step - -``` - -## Optional: limit the size of the training set - -To speed up training for this tutorial, you'll use a subset of 30,000 captions and their corresponding images to train our model. Choosing to use more data would result in improved captioning quality. - -```py -with open(annotation_file, 'r') as f: - annotations = json.load(f) -``` - -```py -# Group all captions together having the same image ID. -image_path_to_caption = collections.defaultdict(list) -for val in annotations['annotations']: - caption = f" {val['caption']} " - image_path = PATH + 'COCO_train2014_' + '%012d.jpg' % (val['image_id']) - image_path_to_caption[image_path].append(caption) -``` - -```py -image_paths = list(image_path_to_caption.keys()) -random.shuffle(image_paths) - -# Select the first 6000 image_paths from the shuffled set. -# Approximately each image id has 5 captions associated with it, so that will -# lead to 30,000 examples. -train_image_paths = image_paths[:6000] -print(len(train_image_paths)) -``` - -```py -6000 - -``` - -```py -train_captions = [] -img_name_vector = [] - -for image_path in train_image_paths: - caption_list = image_path_to_caption[image_path] - train_captions.extend(caption_list) - img_name_vector.extend([image_path] * len(caption_list)) -``` - -```py -print(train_captions[0]) -Image.open(img_name_vector[0]) -``` - -```py - a woman in a blue dress is playing tennis - -``` - -![png](img/77a9a1e4b542e966076c493155a71253.png) - -## Preprocess the images using InceptionV3 - -Next, you will use InceptionV3 (which is pretrained on Imagenet) to classify each image. You will extract features from the last convolutional layer. - -First, you will convert the images into InceptionV3's expected format by: - -* Resizing the image to 299px by 299px -* [Preprocess the images](https://cloud.google.com/tpu/docs/inception-v3-advanced#preprocessing_stage) using the [preprocess_input](https://tensorflow.google.cn/api_docs/python/tf/keras/applications/inception_v3/preprocess_input) method to normalize the image so that it contains pixels in the range of -1 to 1, which matches the format of the images used to train InceptionV3. - -```py -def load_image(image_path): - img = tf.io.read_file(image_path) - img = tf.image.decode_jpeg(img, channels=3) - img = tf.image.resize(img, (299, 299)) - img = tf.keras.applications.inception_v3.preprocess_input(img) - return img, image_path -``` - -## Initialize InceptionV3 and load the pretrained Imagenet weights - -Now you'll create a tf.keras model where the output layer is the last convolutional layer in the InceptionV3 architecture. The shape of the output of this layer is `8x8x2048`. You use the last convolutional layer because you are using attention in this example. You don't perform this initialization during training because it could become a bottleneck. - -* You forward each image through the network and store the resulting vector in a dictionary (image_name --> feature_vector). -* After all the images are passed through the network, you pickle the dictionary and save it to disk. - -```py -image_model = tf.keras.applications.InceptionV3(include_top=False, - weights='imagenet') -new_input = image_model.input -hidden_layer = image_model.layers[-1].output - -image_features_extract_model = tf.keras.Model(new_input, hidden_layer) -``` - -```py -Downloading data from https://storage.googleapis.com/tensorflow/keras-applications/inception_v3/inception_v3_weights_tf_dim_ordering_tf_kernels_notop.h5 -87916544/87910968 [==============================] - 1s 0us/step - -``` - -## Caching the features extracted from InceptionV3 - -You will pre-process each image with InceptionV3 and cache the output to disk. Caching the output in RAM would be faster but also memory intensive, requiring 8 * 8 * 2048 floats per image. At the time of writing, this exceeds the memory limitations of Colab (currently 12GB of memory). - -Performance could be improved with a more sophisticated caching strategy (for example, by sharding the images to reduce random access disk I/O), but that would require more code. - -The caching will take about 10 minutes to run in Colab with a GPU. If you'd like to see a progress bar, you can: - -1. install [tqdm](https://github.com/tqdm/tqdm): - - `!pip install -q tqdm` - -2. Import tqdm: - - `from tqdm import tqdm` - -3. Change the following line: - - `for img, path in image_dataset:` - - to: - - `for img, path in tqdm(image_dataset):` - -```py -# Get unique images -encode_train = sorted(set(img_name_vector)) - -# Feel free to change batch_size according to your system configuration -image_dataset = tf.data.Dataset.from_tensor_slices(encode_train) -image_dataset = image_dataset.map( - load_image, num_parallel_calls=tf.data.experimental.AUTOTUNE).batch(16) - -for img, path in image_dataset: - batch_features = image_features_extract_model(img) - batch_features = tf.reshape(batch_features, - (batch_features.shape[0], -1, batch_features.shape[3])) - - for bf, p in zip(batch_features, path): - path_of_feature = p.numpy().decode("utf-8") - np.save(path_of_feature, bf.numpy()) -``` - -## Preprocess and tokenize the captions - -* First, you'll tokenize the captions (for example, by splitting on spaces). This gives us a vocabulary of all of the unique words in the data (for example, "surfing", "football", and so on). -* Next, you'll limit the vocabulary size to the top 5,000 words (to save memory). You'll replace all other words with the token "UNK" (unknown). -* You then create word-to-index and index-to-word mappings. -* Finally, you pad all sequences to be the same length as the longest one. - -```py -# Find the maximum length of any caption in our dataset -def calc_max_length(tensor): - return max(len(t) for t in tensor) -``` - -```py -# Choose the top 5000 words from the vocabulary -top_k = 5000 -tokenizer = tf.keras.preprocessing.text.Tokenizer(num_words=top_k, - oov_token="", - filters='!"#$%&()*+.,-/:;=?@[\]^_`{|}~ ') -tokenizer.fit_on_texts(train_captions) -train_seqs = tokenizer.texts_to_sequences(train_captions) -``` - -```py -tokenizer.word_index[''] = 0 -tokenizer.index_word[0] = '' -``` - -```py -# Create the tokenized vectors -train_seqs = tokenizer.texts_to_sequences(train_captions) -``` - -```py -# Pad each vector to the max_length of the captions -# If you do not provide a max_length value, pad_sequences calculates it automatically -cap_vector = tf.keras.preprocessing.sequence.pad_sequences(train_seqs, padding='post') -``` - -```py -# Calculates the max_length, which is used to store the attention weights -max_length = calc_max_length(train_seqs) -``` - -## Split the data into training and testing - -```py -img_to_cap_vector = collections.defaultdict(list) -for img, cap in zip(img_name_vector, cap_vector): - img_to_cap_vector[img].append(cap) - -# Create training and validation sets using an 80-20 split randomly. -img_keys = list(img_to_cap_vector.keys()) -random.shuffle(img_keys) - -slice_index = int(len(img_keys)*0.8) -img_name_train_keys, img_name_val_keys = img_keys[:slice_index], img_keys[slice_index:] - -img_name_train = [] -cap_train = [] -for imgt in img_name_train_keys: - capt_len = len(img_to_cap_vector[imgt]) - img_name_train.extend([imgt] * capt_len) - cap_train.extend(img_to_cap_vector[imgt]) - -img_name_val = [] -cap_val = [] -for imgv in img_name_val_keys: - capv_len = len(img_to_cap_vector[imgv]) - img_name_val.extend([imgv] * capv_len) - cap_val.extend(img_to_cap_vector[imgv]) -``` - -```py -len(img_name_train), len(cap_train), len(img_name_val), len(cap_val) -``` - -```py -(24009, 24009, 6001, 6001) - -``` - -## Create a tf.data dataset for training - -Our images and captions are ready! Next, let's create a tf.data dataset to use for training our model. - -```py -# Feel free to change these parameters according to your system's configuration - -BATCH_SIZE = 64 -BUFFER_SIZE = 1000 -embedding_dim = 256 -units = 512 -vocab_size = top_k + 1 -num_steps = len(img_name_train) // BATCH_SIZE -# Shape of the vector extracted from InceptionV3 is (64, 2048) -# These two variables represent that vector shape -features_shape = 2048 -attention_features_shape = 64 -``` - -```py -# Load the numpy files -def map_func(img_name, cap): - img_tensor = np.load(img_name.decode('utf-8')+'.npy') - return img_tensor, cap -``` - -```py -dataset = tf.data.Dataset.from_tensor_slices((img_name_train, cap_train)) - -# Use map to load the numpy files in parallel -dataset = dataset.map(lambda item1, item2: tf.numpy_function( - map_func, [item1, item2], [tf.float32, tf.int32]), - num_parallel_calls=tf.data.experimental.AUTOTUNE) - -# Shuffle and batch -dataset = dataset.shuffle(BUFFER_SIZE).batch(BATCH_SIZE) -dataset = dataset.prefetch(buffer_size=tf.data.experimental.AUTOTUNE) -``` - -## Model - -Fun fact: the decoder below is identical to the one in the example for [Neural Machine Translation with Attention](https://tensorflow.google.cn/tutorials/sequences/nmt_with_attention). - -The model architecture is inspired by the [Show, Attend and Tell](https://arxiv.org/pdf/1502.03044.pdf) paper. - -* In this example, you extract the features from the lower convolutional layer of InceptionV3 giving us a vector of shape (8, 8, 2048). -* You squash that to a shape of (64, 2048). -* This vector is then passed through the CNN Encoder (which consists of a single Fully connected layer). -* The RNN (here GRU) attends over the image to predict the next word. - -```py -class BahdanauAttention(tf.keras.Model): - def __init__(self, units): - super(BahdanauAttention, self).__init__() - self.W1 = tf.keras.layers.Dense(units) - self.W2 = tf.keras.layers.Dense(units) - self.V = tf.keras.layers.Dense(1) - - def call(self, features, hidden): - # features(CNN_encoder output) shape == (batch_size, 64, embedding_dim) - - # hidden shape == (batch_size, hidden_size) - # hidden_with_time_axis shape == (batch_size, 1, hidden_size) - hidden_with_time_axis = tf.expand_dims(hidden, 1) - - # attention_hidden_layer shape == (batch_size, 64, units) - attention_hidden_layer = (tf.nn.tanh(self.W1(features) + - self.W2(hidden_with_time_axis))) - - # score shape == (batch_size, 64, 1) - # This gives you an unnormalized score for each image feature. - score = self.V(attention_hidden_layer) - - # attention_weights shape == (batch_size, 64, 1) - attention_weights = tf.nn.softmax(score, axis=1) - - # context_vector shape after sum == (batch_size, hidden_size) - context_vector = attention_weights * features - context_vector = tf.reduce_sum(context_vector, axis=1) - - return context_vector, attention_weights -``` - -```py -class CNN_Encoder(tf.keras.Model): - # Since you have already extracted the features and dumped it using pickle - # This encoder passes those features through a Fully connected layer - def __init__(self, embedding_dim): - super(CNN_Encoder, self).__init__() - # shape after fc == (batch_size, 64, embedding_dim) - self.fc = tf.keras.layers.Dense(embedding_dim) - - def call(self, x): - x = self.fc(x) - x = tf.nn.relu(x) - return x -``` - -```py -class RNN_Decoder(tf.keras.Model): - def __init__(self, embedding_dim, units, vocab_size): - super(RNN_Decoder, self).__init__() - self.units = units - - self.embedding = tf.keras.layers.Embedding(vocab_size, embedding_dim) - self.gru = tf.keras.layers.GRU(self.units, - return_sequences=True, - return_state=True, - recurrent_initializer='glorot_uniform') - self.fc1 = tf.keras.layers.Dense(self.units) - self.fc2 = tf.keras.layers.Dense(vocab_size) - - self.attention = BahdanauAttention(self.units) - - def call(self, x, features, hidden): - # defining attention as a separate model - context_vector, attention_weights = self.attention(features, hidden) - - # x shape after passing through embedding == (batch_size, 1, embedding_dim) - x = self.embedding(x) - - # x shape after concatenation == (batch_size, 1, embedding_dim + hidden_size) - x = tf.concat([tf.expand_dims(context_vector, 1), x], axis=-1) - - # passing the concatenated vector to the GRU - output, state = self.gru(x) - - # shape == (batch_size, max_length, hidden_size) - x = self.fc1(output) - - # x shape == (batch_size * max_length, hidden_size) - x = tf.reshape(x, (-1, x.shape[2])) - - # output shape == (batch_size * max_length, vocab) - x = self.fc2(x) - - return x, state, attention_weights - - def reset_state(self, batch_size): - return tf.zeros((batch_size, self.units)) -``` - -```py -encoder = CNN_Encoder(embedding_dim) -decoder = RNN_Decoder(embedding_dim, units, vocab_size) -``` - -```py -optimizer = tf.keras.optimizers.Adam() -loss_object = tf.keras.losses.SparseCategoricalCrossentropy( - from_logits=True, reduction='none') - -def loss_function(real, pred): - mask = tf.math.logical_not(tf.math.equal(real, 0)) - loss_ = loss_object(real, pred) - - mask = tf.cast(mask, dtype=loss_.dtype) - loss_ *= mask - - return tf.reduce_mean(loss_) -``` - -## Checkpoint - -```py -checkpoint_path = "./checkpoints/train" -ckpt = tf.train.Checkpoint(encoder=encoder, - decoder=decoder, - optimizer = optimizer) -ckpt_manager = tf.train.CheckpointManager(ckpt, checkpoint_path, max_to_keep=5) -``` - -```py -start_epoch = 0 -if ckpt_manager.latest_checkpoint: - start_epoch = int(ckpt_manager.latest_checkpoint.split('-')[-1]) - # restoring the latest checkpoint in checkpoint_path - ckpt.restore(ckpt_manager.latest_checkpoint) -``` - -## Training - -* You extract the features stored in the respective `.npy` files and then pass those features through the encoder. -* The encoder output, hidden state(initialized to 0) and the decoder input (which is the start token) is passed to the decoder. -* The decoder returns the predictions and the decoder hidden state. -* The decoder hidden state is then passed back into the model and the predictions are used to calculate the loss. -* Use teacher forcing to decide the next input to the decoder. -* Teacher forcing is the technique where the target word is passed as the next input to the decoder. -* The final step is to calculate the gradients and apply it to the optimizer and backpropagate. - -```py -# adding this in a separate cell because if you run the training cell -# many times, the loss_plot array will be reset -loss_plot = [] -``` - -```py -@tf.function -def train_step(img_tensor, target): - loss = 0 - - # initializing the hidden state for each batch - # because the captions are not related from image to image - hidden = decoder.reset_state(batch_size=target.shape[0]) - - dec_input = tf.expand_dims([tokenizer.word_index['']] * target.shape[0], 1) - - with tf.GradientTape() as tape: - features = encoder(img_tensor) - - for i in range(1, target.shape[1]): - # passing the features through the decoder - predictions, hidden, _ = decoder(dec_input, features, hidden) - - loss += loss_function(target[:, i], predictions) - - # using teacher forcing - dec_input = tf.expand_dims(target[:, i], 1) - - total_loss = (loss / int(target.shape[1])) - - trainable_variables = encoder.trainable_variables + decoder.trainable_variables - - gradients = tape.gradient(loss, trainable_variables) - - optimizer.apply_gradients(zip(gradients, trainable_variables)) - - return loss, total_loss -``` - -```py -EPOCHS = 20 - -for epoch in range(start_epoch, EPOCHS): - start = time.time() - total_loss = 0 - - for (batch, (img_tensor, target)) in enumerate(dataset): - batch_loss, t_loss = train_step(img_tensor, target) - total_loss += t_loss - - if batch % 100 == 0: - print ('Epoch {} Batch {} Loss {:.4f}'.format( - epoch + 1, batch, batch_loss.numpy() / int(target.shape[1]))) - # storing the epoch end loss value to plot later - loss_plot.append(total_loss / num_steps) - - if epoch % 5 == 0: - ckpt_manager.save() - - print ('Epoch {} Loss {:.6f}'.format(epoch + 1, - total_loss/num_steps)) - print ('Time taken for 1 epoch {} sec\n'.format(time.time() - start)) -``` - -```py -Epoch 1 Batch 0 Loss 2.0618 -Epoch 1 Batch 100 Loss 1.1516 -Epoch 1 Batch 200 Loss 0.9201 -Epoch 1 Batch 300 Loss 0.8922 -Epoch 1 Loss 1.040854 -Time taken for 1 epoch 100.07987594604492 sec - -Epoch 2 Batch 0 Loss 0.8678 -Epoch 2 Batch 100 Loss 0.8257 -Epoch 2 Batch 200 Loss 0.8268 -Epoch 2 Batch 300 Loss 0.7109 -Epoch 2 Loss 0.786627 -Time taken for 1 epoch 36.52699089050293 sec - -Epoch 3 Batch 0 Loss 0.7747 -Epoch 3 Batch 100 Loss 0.7220 -Epoch 3 Batch 200 Loss 0.7071 -Epoch 3 Batch 300 Loss 0.7065 -Epoch 3 Loss 0.708941 -Time taken for 1 epoch 36.67209577560425 sec - -Epoch 4 Batch 0 Loss 0.7542 -Epoch 4 Batch 100 Loss 0.6422 -Epoch 4 Batch 200 Loss 0.6024 -Epoch 4 Batch 300 Loss 0.7107 -Epoch 4 Loss 0.657265 -Time taken for 1 epoch 36.70520520210266 sec - -Epoch 5 Batch 0 Loss 0.6684 -Epoch 5 Batch 100 Loss 0.6549 -Epoch 5 Batch 200 Loss 0.6364 -Epoch 5 Batch 300 Loss 0.6250 -Epoch 5 Loss 0.616459 -Time taken for 1 epoch 36.51219129562378 sec - -Epoch 6 Batch 0 Loss 0.6531 -Epoch 6 Batch 100 Loss 0.5622 -Epoch 6 Batch 200 Loss 0.5688 -Epoch 6 Batch 300 Loss 0.6302 -Epoch 6 Loss 0.581336 -Time taken for 1 epoch 37.36966156959534 sec - -Epoch 7 Batch 0 Loss 0.5335 -Epoch 7 Batch 100 Loss 0.5362 -Epoch 7 Batch 200 Loss 0.5960 -Epoch 7 Batch 300 Loss 0.5382 -Epoch 7 Loss 0.558110 -Time taken for 1 epoch 36.8504319190979 sec - -Epoch 8 Batch 0 Loss 0.5242 -Epoch 8 Batch 100 Loss 0.5142 -Epoch 8 Batch 200 Loss 0.5458 -Epoch 8 Batch 300 Loss 0.4814 -Epoch 8 Loss 0.523847 -Time taken for 1 epoch 36.90491819381714 sec - -Epoch 9 Batch 0 Loss 0.5318 -Epoch 9 Batch 100 Loss 0.4869 -Epoch 9 Batch 200 Loss 0.4791 -Epoch 9 Batch 300 Loss 0.4719 -Epoch 9 Loss 0.496363 -Time taken for 1 epoch 36.52782845497131 sec - -Epoch 10 Batch 0 Loss 0.4707 -Epoch 10 Batch 100 Loss 0.4642 -Epoch 10 Batch 200 Loss 0.4685 -Epoch 10 Batch 300 Loss 0.4659 -Epoch 10 Loss 0.470341 -Time taken for 1 epoch 36.24022054672241 sec - -Epoch 11 Batch 0 Loss 0.4530 -Epoch 11 Batch 100 Loss 0.4947 -Epoch 11 Batch 200 Loss 0.4457 -Epoch 11 Batch 300 Loss 0.4617 -Epoch 11 Loss 0.447154 -Time taken for 1 epoch 36.481024980545044 sec - -Epoch 12 Batch 0 Loss 0.4359 -Epoch 12 Batch 100 Loss 0.4257 -Epoch 12 Batch 200 Loss 0.4124 -Epoch 12 Batch 300 Loss 0.4302 -Epoch 12 Loss 0.424052 -Time taken for 1 epoch 37.11701226234436 sec - -Epoch 13 Batch 0 Loss 0.4531 -Epoch 13 Batch 100 Loss 0.4064 -Epoch 13 Batch 200 Loss 0.3677 -Epoch 13 Batch 300 Loss 0.3942 -Epoch 13 Loss 0.402709 -Time taken for 1 epoch 36.868356466293335 sec - -Epoch 14 Batch 0 Loss 0.3967 -Epoch 14 Batch 100 Loss 0.3455 -Epoch 14 Batch 200 Loss 0.3742 -Epoch 14 Batch 300 Loss 0.3905 -Epoch 14 Loss 0.382572 -Time taken for 1 epoch 36.95557117462158 sec - -Epoch 15 Batch 0 Loss 0.3754 -Epoch 15 Batch 100 Loss 0.3721 -Epoch 15 Batch 200 Loss 0.3633 -Epoch 15 Batch 300 Loss 0.3830 -Epoch 15 Loss 0.364831 -Time taken for 1 epoch 36.37884545326233 sec - -Epoch 16 Batch 0 Loss 0.3873 -Epoch 16 Batch 100 Loss 0.3499 -Epoch 16 Batch 200 Loss 0.3437 -Epoch 16 Batch 300 Loss 0.3232 -Epoch 16 Loss 0.346227 -Time taken for 1 epoch 36.44292426109314 sec - -Epoch 17 Batch 0 Loss 0.3250 -Epoch 17 Batch 100 Loss 0.3218 -Epoch 17 Batch 200 Loss 0.3703 -Epoch 17 Batch 300 Loss 0.2849 -Epoch 17 Loss 0.328413 -Time taken for 1 epoch 36.11301136016846 sec - -Epoch 18 Batch 0 Loss 0.3032 -Epoch 18 Batch 100 Loss 0.3321 -Epoch 18 Batch 200 Loss 0.3112 -Epoch 18 Batch 300 Loss 0.3129 -Epoch 18 Loss 0.315071 -Time taken for 1 epoch 36.2520546913147 sec - -Epoch 19 Batch 0 Loss 0.3005 -Epoch 19 Batch 100 Loss 0.3190 -Epoch 19 Batch 200 Loss 0.3243 -Epoch 19 Batch 300 Loss 0.2861 -Epoch 19 Loss 0.301502 -Time taken for 1 epoch 36.188610553741455 sec - -Epoch 20 Batch 0 Loss 0.3263 -Epoch 20 Batch 100 Loss 0.3182 -Epoch 20 Batch 200 Loss 0.2885 -Epoch 20 Batch 300 Loss 0.2923 -Epoch 20 Loss 0.285932 -Time taken for 1 epoch 36.192723989486694 sec - -``` - -```py -plt.plot(loss_plot) -plt.xlabel('Epochs') -plt.ylabel('Loss') -plt.title('Loss Plot') -plt.show() -``` - -![png](img/f40a6da0d8471d4b9b979d456cb09d0d.png) - -## Caption! - -* The evaluate function is similar to the training loop, except you don't use teacher forcing here. The input to the decoder at each time step is its previous predictions along with the hidden state and the encoder output. -* Stop predicting when the model predicts the end token. -* And store the attention weights for every time step. - -```py -def evaluate(image): - attention_plot = np.zeros((max_length, attention_features_shape)) - - hidden = decoder.reset_state(batch_size=1) - - temp_input = tf.expand_dims(load_image(image)[0], 0) - img_tensor_val = image_features_extract_model(temp_input) - img_tensor_val = tf.reshape(img_tensor_val, (img_tensor_val.shape[0], -1, img_tensor_val.shape[3])) - - features = encoder(img_tensor_val) - - dec_input = tf.expand_dims([tokenizer.word_index['']], 0) - result = [] - - for i in range(max_length): - predictions, hidden, attention_weights = decoder(dec_input, features, hidden) - - attention_plot[i] = tf.reshape(attention_weights, (-1, )).numpy() - - predicted_id = tf.random.categorical(predictions, 1)[0][0].numpy() - result.append(tokenizer.index_word[predicted_id]) - - if tokenizer.index_word[predicted_id] == '': - return result, attention_plot - - dec_input = tf.expand_dims([predicted_id], 0) - - attention_plot = attention_plot[:len(result), :] - return result, attention_plot -``` - -```py -def plot_attention(image, result, attention_plot): - temp_image = np.array(Image.open(image)) - - fig = plt.figure(figsize=(10, 10)) - - len_result = len(result) - for l in range(len_result): - temp_att = np.resize(attention_plot[l], (8, 8)) - ax = fig.add_subplot(len_result//2, len_result//2, l+1) - ax.set_title(result[l]) - img = ax.imshow(temp_image) - ax.imshow(temp_att, cmap='gray', alpha=0.6, extent=img.get_extent()) - - plt.tight_layout() - plt.show() -``` - -```py -# captions on the validation set -rid = np.random.randint(0, len(img_name_val)) -image = img_name_val[rid] -real_caption = ' '.join([tokenizer.index_word[i] for i in cap_val[rid] if i not in [0]]) -result, attention_plot = evaluate(image) - -print ('Real Caption:', real_caption) -print ('Prediction Caption:', ' '.join(result)) -plot_attention(image, result, attention_plot) -``` - -```py -Real Caption: a clock is on display on the surface of a building -Prediction Caption: a metal wall with a brick in the middle is that has some brown wall that looks out the ground - -``` - -![png](img/9cada0d075f4e1a104766ddd3754aba4.png) - -## Try it on your own images - -For fun, below we've provided a method you can use to caption your own images with the model we've just trained. Keep in mind, it was trained on a relatively small amount of data, and your images may be different from the training data (so be prepared for weird results!) - -```py -image_url = 'https://tensorflow.org/images/surf.jpg' -image_extension = image_url[-4:] -image_path = tf.keras.utils.get_file('image'+image_extension, - origin=image_url) - -result, attention_plot = evaluate(image_path) -print ('Prediction Caption:', ' '.join(result)) -plot_attention(image_path, result, attention_plot) -# opening the image -Image.open(image_path) -``` - -```py -Downloading data from https://tensorflow.org/images/surf.jpg -65536/64400 [==============================] - 0s 2us/step -Prediction Caption: a kid in their best to fall - -``` - -![png](img/e3e3424830f874b566c07a0e86696a13.png) - -![png](img/17877a5940e1f7245c707d3ecf9783e3.png) - -# Next steps - -Congrats! You've just trained an image captioning model with attention. Next, take a look at this example [Neural Machine Translation with Attention](https://tensorflow.google.cn/tutorials/sequences/nmt_with_attention). It uses a similar architecture to translate between Spanish and English sentences. You can also experiment with training the code in this notebook on a different dataset. \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/053.md b/Tensorflow/TensorFlow2.0/053.md deleted file mode 100644 index c49b1a16..00000000 --- a/Tensorflow/TensorFlow2.0/053.md +++ /dev/null @@ -1,1591 +0,0 @@ -# 理解语言的 Transformer 模型 - -> 原文:[https://tensorflow.google.cn/tutorials/text/transformer](https://tensorflow.google.cn/tutorials/text/transformer) - - - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn) - -本教程训练了一个 [Transformer 模型](https://arxiv.org/abs/1706.03762) 用于将葡萄牙语翻译成英语。这是一个高级示例,假定您具备[文本生成(text generation)](/tutorials/text/text_generation)和 [注意力机制(attention)](/tutorials/text/nmt_with_attention) 的知识。 - -Transformer 模型的核心思想是*自注意力机制(self-attention)*——能注意输入序列的不同位置以计算该序列的表示的能力。Transformer 创建了多层自注意力层(self-attetion layers)组成的堆栈,下文的*按比缩放的点积注意力(Scaled dot product attention)*和*多头注意力(Multi-head attention)*部分对此进行了说明。 - -一个 transformer 模型用自注意力层而非 [RNNs](/tutorials/text/text_classification_rnn) 或 [CNNs](https://tensorflow.google.cn/tutorials/images/intro_to_cnns) 来处理变长的输入。这种通用架构有一系列的优势: - -* 它不对数据间的时间/空间关系做任何假设。这是处理一组对象(objects)的理想选择(例如,[星际争霸单位(StarCraft units)](https://deepmind.com/blog/alphastar-mastering-real-time-strategy-game-starcraft-ii/#block-8))。 -* 层输出可以并行计算,而非像 RNN 这样的序列计算。 -* 远距离项可以影响彼此的输出,而无需经过许多 RNN 步骤或卷积层(例如,参见[场景记忆 Transformer(Scene Memory Transformer)](https://arxiv.org/pdf/1903.03878.pdf)) -* 它能学习长距离的依赖。在许多序列任务中,这是一项挑战。 - -该架构的缺点是: - -* 对于时间序列,一个单位时间的输出是从*整个历史记录*计算的,而非仅从输入和当前的隐含状态计算得到。这*可能*效率较低。 -* 如果输入*确实*有时间/空间的关系,像文本,则必须加入一些位置编码,否则模型将有效地看到一堆单词。 - -在此 notebook 中训练完模型后,您将能输入葡萄牙语句子,得到其英文翻译。 - -![Attention heatmap](img/f8876684e2b6e5576c9f4dc1029bb237.png) - -```py -import tensorflow_datasets as tfds -import tensorflow as tf - -import time -import numpy as np -import matplotlib.pyplot as plt -``` - -## 设置输入流水线(input pipeline) - -使用 [TFDS](https://tensorflow.google.cn/datasets) 来导入 [葡萄牙语-英语翻译数据集](https://github.com/neulab/word-embeddings-for-nmt),该数据集来自于 [TED 演讲开放翻译项目](https://www.ted.com/participate/translate). - -该数据集包含来约 50000 条训练样本,1100 条验证样本,以及 2000 条测试样本。 - -```py -examples, metadata = tfds.load('ted_hrlr_translate/pt_to_en', with_info=True, - as_supervised=True) -train_examples, val_examples = examples['train'], examples['validation'] -``` - -```py -Downloading and preparing dataset ted_hrlr_translate/pt_to_en/1.0.0 (download: 124.94 MiB, generated: Unknown size, total: 124.94 MiB) to /home/kbuilder/tensorflow_datasets/ted_hrlr_translate/pt_to_en/1.0.0... -Shuffling and writing examples to /home/kbuilder/tensorflow_datasets/ted_hrlr_translate/pt_to_en/1.0.0.incomplete3YLR59/ted_hrlr_translate-train.tfrecord -Shuffling and writing examples to /home/kbuilder/tensorflow_datasets/ted_hrlr_translate/pt_to_en/1.0.0.incomplete3YLR59/ted_hrlr_translate-validation.tfrecord -Shuffling and writing examples to /home/kbuilder/tensorflow_datasets/ted_hrlr_translate/pt_to_en/1.0.0.incomplete3YLR59/ted_hrlr_translate-test.tfrecord -Dataset ted_hrlr_translate downloaded and prepared to /home/kbuilder/tensorflow_datasets/ted_hrlr_translate/pt_to_en/1.0.0\. Subsequent calls will reuse this data. - -``` - -从训练数据集创建自定义子词分词器(subwords tokenizer)。 - -```py -tokenizer_en = tfds.features.text.SubwordTextEncoder.build_from_corpus( - (en.numpy() for pt, en in train_examples), target_vocab_size=2**13) - -tokenizer_pt = tfds.features.text.SubwordTextEncoder.build_from_corpus( - (pt.numpy() for pt, en in train_examples), target_vocab_size=2**13) -``` - -```py -sample_string = 'Transformer is awesome.' - -tokenized_string = tokenizer_en.encode(sample_string) -print ('Tokenized string is {}'.format(tokenized_string)) - -original_string = tokenizer_en.decode(tokenized_string) -print ('The original string: {}'.format(original_string)) - -assert original_string == sample_string -``` - -```py -Tokenized string is [7915, 1248, 7946, 7194, 13, 2799, 7877] -The original string: Transformer is awesome. - -``` - -如果单词不在词典中,则分词器(tokenizer)通过将单词分解为子词来对字符串进行编码。 - -```py -for ts in tokenized_string: - print ('{} ----> {}'.format(ts, tokenizer_en.decode([ts]))) -``` - -```py -7915 ----> T -1248 ----> ran -7946 ----> s -7194 ----> former -13 ----> is -2799 ----> awesome -7877 ----> . - -``` - -```py -BUFFER_SIZE = 20000 -BATCH_SIZE = 64 -``` - -将开始和结束标记(token)添加到输入和目标。 - -```py -def encode(lang1, lang2): - lang1 = [tokenizer_pt.vocab_size] + tokenizer_pt.encode( - lang1.numpy()) + [tokenizer_pt.vocab_size+1] - - lang2 = [tokenizer_en.vocab_size] + tokenizer_en.encode( - lang2.numpy()) + [tokenizer_en.vocab_size+1] - - return lang1, lang2 -``` - -Note:为了使本示例较小且相对较快,删除长度大于 40 个标记的样本。 - -```py -MAX_LENGTH = 40 -``` - -```py -def filter_max_length(x, y, max_length=MAX_LENGTH): - return tf.logical_and(tf.size(x) <= max_length, - tf.size(y) <= max_length) -``` - -`.map()` 内部的操作以图模式(graph mode)运行,`.map()` 接收一个不具有 numpy 属性的图张量(graph tensor)。该`分词器(tokenizer)`需要将一个字符串或 Unicode 符号,编码成整数。因此,您需要在 [`tf.py_function`](https://tensorflow.google.cn/api_docs/python/tf/py_function) 内部运行编码过程,[`tf.py_function`](https://tensorflow.google.cn/api_docs/python/tf/py_function) 接收一个 eager 张量,该 eager 张量有一个包含字符串值的 numpy 属性。 - -```py -def tf_encode(pt, en): - result_pt, result_en = tf.py_function(encode, [pt, en], [tf.int64, tf.int64]) - result_pt.set_shape([None]) - result_en.set_shape([None]) - - return result_pt, result_en -``` - -```py -train_dataset = train_examples.map(tf_encode) -train_dataset = train_dataset.filter(filter_max_length) -# 将数据集缓存到内存中以加快读取速度。 -train_dataset = train_dataset.cache() -train_dataset = train_dataset.shuffle(BUFFER_SIZE).padded_batch(BATCH_SIZE) -train_dataset = train_dataset.prefetch(tf.data.experimental.AUTOTUNE) - -val_dataset = val_examples.map(tf_encode) -val_dataset = val_dataset.filter(filter_max_length).padded_batch(BATCH_SIZE) -``` - -```py -pt_batch, en_batch = next(iter(val_dataset)) -pt_batch, en_batch -``` - -```py -(, - ) - -``` - -## 位置编码(Positional encoding) - -因为该模型并不包括任何的循环(recurrence)或卷积,所以模型添加了位置编码,为模型提供一些关于单词在句子中相对位置的信息。 - -位置编码向量被加到嵌入(embedding)向量中。嵌入表示一个 d 维空间的标记,在 d 维空间中有着相似含义的标记会离彼此更近。但是,嵌入并没有对在一句话中的词的相对位置进行编码。因此,当加上位置编码后,词将基于*它们含义的相似度以及它们在句子中的位置*,在 d 维空间中离彼此更近。 - -参看 [位置编码](https://github.com/tensorflow/examples/blob/master/community/en/position_encoding.ipynb) 的 notebook 了解更多信息。计算位置编码的公式如下: - -$$\Large{PE_{(pos, 2i)} = sin(pos / 10000^{2i / d_{model} })} $$$$\Large{PE_{(pos, 2i+1)} = cos(pos / 10000^{2i / d_{model} })} $$ - -```py -def get_angles(pos, i, d_model): - angle_rates = 1 / np.power(10000, (2 * (i//2)) / np.float32(d_model)) - return pos * angle_rates -``` - -```py -def positional_encoding(position, d_model): - angle_rads = get_angles(np.arange(position)[:, np.newaxis], - np.arange(d_model)[np.newaxis, :], - d_model) - - # 将 sin 应用于数组中的偶数索引(indices);2i - angle_rads[:, 0::2] = np.sin(angle_rads[:, 0::2]) - - # 将 cos 应用于数组中的奇数索引;2i+1 - angle_rads[:, 1::2] = np.cos(angle_rads[:, 1::2]) - - pos_encoding = angle_rads[np.newaxis, ...] - - return tf.cast(pos_encoding, dtype=tf.float32) -``` - -```py -pos_encoding = positional_encoding(50, 512) -print (pos_encoding.shape) - -plt.pcolormesh(pos_encoding[0], cmap='RdBu') -plt.xlabel('Depth') -plt.xlim((0, 512)) -plt.ylabel('Position') -plt.colorbar() -plt.show() -``` - -```py -(1, 50, 512) - -``` - -![png](img/0dda76c01237658213cec93698233a22.png) - -## 遮挡(Masking) - -遮挡一批序列中所有的填充标记(pad tokens)。这确保了模型不会将填充作为输入。该 mask 表明填充值 `0` 出现的位置:在这些位置 mask 输出 `1`,否则输出 `0`。 - -```py -def create_padding_mask(seq): - seq = tf.cast(tf.math.equal(seq, 0), tf.float32) - - # 添加额外的维度来将填充加到 - # 注意力对数(logits)。 - return seq[:, tf.newaxis, tf.newaxis, :] # (batch_size, 1, 1, seq_len) -``` - -```py -x = tf.constant([[7, 6, 0, 0, 1], [1, 2, 3, 0, 0], [0, 0, 0, 4, 5]]) -create_padding_mask(x) -``` - -```py - - -``` - -前瞻遮挡(look-ahead mask)用于遮挡一个序列中的后续标记(future tokens)。换句话说,该 mask 表明了不应该使用的条目。 - -这意味着要预测第三个词,将仅使用第一个和第二个词。与此类似,预测第四个词,仅使用第一个,第二个和第三个词,依此类推。 - -```py -def create_look_ahead_mask(size): - mask = 1 - tf.linalg.band_part(tf.ones((size, size)), -1, 0) - return mask # (seq_len, seq_len) -``` - -```py -x = tf.random.uniform((1, 3)) -temp = create_look_ahead_mask(x.shape[1]) -temp -``` - -```py - - -``` - -## 按比缩放的点积注意力(Scaled dot product attention) - -![scaled_dot_product_attention](img/0eda1b45396cd1c02a76bd76397b9a76.png) - -Transformer 使用的注意力函数有三个输入:Q(请求(query))、K(主键(key))、V(数值(value))。用于计算注意力权重的等式为: - -$$\Large{Attention(Q, K, V) = softmax_k(\frac{QK^T}{\sqrt{d_k} }) V} $$ - -点积注意力被缩小了深度的平方根倍。这样做是因为对于较大的深度值,点积的大小会增大,从而推动 softmax 函数往仅有很小的梯度的方向靠拢,导致了一种很硬的(hard)softmax。 - -例如,假设 `Q` 和 `K` 的均值为 0,方差为 1。它们的矩阵乘积将有均值为 0,方差为 `dk`。因此,*`dk` 的平方根*被用于缩放(而非其他数值),因为,`Q` 和 `K` 的矩阵乘积的均值本应该为 0,方差本应该为 1,这样会获得一个更平缓的 softmax。 - -遮挡(mask)与 -1e9(接近于负无穷)相乘。这样做是因为遮挡与缩放的 Q 和 K 的矩阵乘积相加,并在 softmax 之前立即应用。目标是将这些单元归零,因为 softmax 的较大负数输入在输出中接近于零。 - -```py -def scaled_dot_product_attention(q, k, v, mask): - """计算注意力权重。 - q, k, v 必须具有匹配的前置维度。 - k, v 必须有匹配的倒数第二个维度,例如:seq_len_k = seq_len_v。 - 虽然 mask 根据其类型(填充或前瞻)有不同的形状, - 但是 mask 必须能进行广播转换以便求和。 - - 参数: - q: 请求的形状 == (..., seq_len_q, depth) - k: 主键的形状 == (..., seq_len_k, depth) - v: 数值的形状 == (..., seq_len_v, depth_v) - mask: Float 张量,其形状能转换成 - (..., seq_len_q, seq_len_k)。默认为 None。 - - 返回值: - 输出,注意力权重 - """ - - matmul_qk = tf.matmul(q, k, transpose_b=True) # (..., seq_len_q, seq_len_k) - - # 缩放 matmul_qk - dk = tf.cast(tf.shape(k)[-1], tf.float32) - scaled_attention_logits = matmul_qk / tf.math.sqrt(dk) - - # 将 mask 加入到缩放的张量上。 - if mask is not None: - scaled_attention_logits += (mask * -1e9) - - # softmax 在最后一个轴(seq_len_k)上归一化,因此分数 - # 相加等于 1。 - attention_weights = tf.nn.softmax(scaled_attention_logits, axis=-1) # (..., seq_len_q, seq_len_k) - - output = tf.matmul(attention_weights, v) # (..., seq_len_q, depth_v) - - return output, attention_weights -``` - -当 softmax 在 K 上进行归一化后,它的值决定了分配到 Q 的重要程度。 - -输出表示注意力权重和 V(数值)向量的乘积。这确保了要关注的词保持原样,而无关的词将被清除掉。 - -```py -def print_out(q, k, v): - temp_out, temp_attn = scaled_dot_product_attention( - q, k, v, None) - print ('Attention weights are:') - print (temp_attn) - print ('Output is:') - print (temp_out) -``` - -```py -np.set_printoptions(suppress=True) - -temp_k = tf.constant([[10,0,0], - [0,10,0], - [0,0,10], - [0,0,10]], dtype=tf.float32) # (4, 3) - -temp_v = tf.constant([[ 1,0], - [ 10,0], - [ 100,5], - [1000,6]], dtype=tf.float32) # (4, 2) - -# 这条 `请求(query)符合第二个`主键(key)`, -# 因此返回了第二个`数值(value)`。 -temp_q = tf.constant([[0, 10, 0]], dtype=tf.float32) # (1, 3) -print_out(temp_q, temp_k, temp_v) -``` - -```py -Attention weights are: -tf.Tensor([[0\. 1\. 0\. 0.]], shape=(1, 4), dtype=float32) -Output is: -tf.Tensor([[10\. 0.]], shape=(1, 2), dtype=float32) - -``` - -```py -# 这条请求符合重复出现的主键(第三第四个), -# 因此,对所有的相关数值取了平均。 -temp_q = tf.constant([[0, 0, 10]], dtype=tf.float32) # (1, 3) -print_out(temp_q, temp_k, temp_v) -``` - -```py -Attention weights are: -tf.Tensor([[0\. 0\. 0.5 0.5]], shape=(1, 4), dtype=float32) -Output is: -tf.Tensor([[550\. 5.5]], shape=(1, 2), dtype=float32) - -``` - -```py -# 这条请求符合第一和第二条主键, -# 因此,对它们的数值去了平均。 -temp_q = tf.constant([[10, 10, 0]], dtype=tf.float32) # (1, 3) -print_out(temp_q, temp_k, temp_v) -``` - -```py -Attention weights are: -tf.Tensor([[0.5 0.5 0\. 0\. ]], shape=(1, 4), dtype=float32) -Output is: -tf.Tensor([[5.5 0\. ]], shape=(1, 2), dtype=float32) - -``` - -将所有请求一起*传递*。 - -```py -temp_q = tf.constant([[0, 0, 10], [0, 10, 0], [10, 10, 0]], dtype=tf.float32) # (3, 3) -print_out(temp_q, temp_k, temp_v) -``` - -```py -Attention weights are: -tf.Tensor( -[[0\. 0\. 0.5 0.5] - [0\. 1\. 0\. 0\. ] - [0.5 0.5 0\. 0\. ]], shape=(3, 4), dtype=float32) -Output is: -tf.Tensor( -[[550\. 5.5] - [ 10\. 0\. ] - [ 5.5 0\. ]], shape=(3, 2), dtype=float32) - -``` - -## 多头注意力(Multi-head attention) - -![multi-head attention](img/2f1f2fc54135afd798139d45c013ef1f.png) - -多头注意力由四部分组成: - -* 线性层并分拆成多头。 -* 按比缩放的点积注意力。 -* 多头及联。 -* 最后一层线性层。 - -每个多头注意力块有三个输入:Q(请求)、K(主键)、V(数值)。这些输入经过线性(Dense)层,并分拆成多头。 - -将上面定义的 `scaled_dot_product_attention` 函数应用于每个头(进行了广播(broadcasted)以提高效率)。注意力这步必须使用一个恰当的 mask。然后将每个头的注意力输出连接起来(用[`tf.transpose`](https://tensorflow.google.cn/api_docs/python/tf/transpose) 和 [`tf.reshape`](https://tensorflow.google.cn/api_docs/python/tf/reshape)),并放入最后的 `Dense` 层。 - -Q、K、和 V 被拆分到了多个头,而非单个的注意力头,因为多头允许模型共同注意来自不同表示空间的不同位置的信息。在分拆后,每个头部的维度减少,因此总的计算成本与有着全部维度的单个注意力头相同。 - -```py -class MultiHeadAttention(tf.keras.layers.Layer): - def __init__(self, d_model, num_heads): - super(MultiHeadAttention, self).__init__() - self.num_heads = num_heads - self.d_model = d_model - - assert d_model % self.num_heads == 0 - - self.depth = d_model // self.num_heads - - self.wq = tf.keras.layers.Dense(d_model) - self.wk = tf.keras.layers.Dense(d_model) - self.wv = tf.keras.layers.Dense(d_model) - - self.dense = tf.keras.layers.Dense(d_model) - - def split_heads(self, x, batch_size): - """分拆最后一个维度到 (num_heads, depth). - 转置结果使得形状为 (batch_size, num_heads, seq_len, depth) - """ - x = tf.reshape(x, (batch_size, -1, self.num_heads, self.depth)) - return tf.transpose(x, perm=[0, 2, 1, 3]) - - def call(self, v, k, q, mask): - batch_size = tf.shape(q)[0] - - q = self.wq(q) # (batch_size, seq_len, d_model) - k = self.wk(k) # (batch_size, seq_len, d_model) - v = self.wv(v) # (batch_size, seq_len, d_model) - - q = self.split_heads(q, batch_size) # (batch_size, num_heads, seq_len_q, depth) - k = self.split_heads(k, batch_size) # (batch_size, num_heads, seq_len_k, depth) - v = self.split_heads(v, batch_size) # (batch_size, num_heads, seq_len_v, depth) - - # scaled_attention.shape == (batch_size, num_heads, seq_len_q, depth) - # attention_weights.shape == (batch_size, num_heads, seq_len_q, seq_len_k) - scaled_attention, attention_weights = scaled_dot_product_attention( - q, k, v, mask) - - scaled_attention = tf.transpose(scaled_attention, perm=[0, 2, 1, 3]) # (batch_size, seq_len_q, num_heads, depth) - - concat_attention = tf.reshape(scaled_attention, - (batch_size, -1, self.d_model)) # (batch_size, seq_len_q, d_model) - - output = self.dense(concat_attention) # (batch_size, seq_len_q, d_model) - - return output, attention_weights -``` - -创建一个 `MultiHeadAttention` 层进行尝试。在序列中的每个位置 `y`,`MultiHeadAttention` 在序列中的所有其他位置运行所有 8 个注意力头,在每个位置 y,返回一个新的同样长度的向量。 - -```py -temp_mha = MultiHeadAttention(d_model=512, num_heads=8) -y = tf.random.uniform((1, 60, 512)) # (batch_size, encoder_sequence, d_model) -out, attn = temp_mha(y, k=y, q=y, mask=None) -out.shape, attn.shape -``` - -```py -(TensorShape([1, 60, 512]), TensorShape([1, 8, 60, 60])) - -``` - -## 点式前馈网络(Point wise feed forward network) - -点式前馈网络由两层全联接层组成,两层之间有一个 ReLU 激活函数。 - -```py -def point_wise_feed_forward_network(d_model, dff): - return tf.keras.Sequential([ - tf.keras.layers.Dense(dff, activation='relu'), # (batch_size, seq_len, dff) - tf.keras.layers.Dense(d_model) # (batch_size, seq_len, d_model) - ]) -``` - -```py -sample_ffn = point_wise_feed_forward_network(512, 2048) -sample_ffn(tf.random.uniform((64, 50, 512))).shape -``` - -```py -TensorShape([64, 50, 512]) - -``` - -## 编码与解码(Encoder and decoder) - -![transformer](img/9c9dba05c6503363ec77df2a3d25a70b.png) - -Transformer 模型与标准的[具有注意力机制的序列到序列模型(sequence to sequence with attention model)](/tutorials/text/nmt_with_attention),遵循相同的一般模式。 - -* 输入语句经过 `N` 个编码器层,为序列中的每个词/标记生成一个输出。 -* 解码器关注编码器的输出以及它自身的输入(自注意力)来预测下一个词。 - -### 编码器层(Encoder layer) - -每个编码器层包括以下子层: - -1. 多头注意力(有填充遮挡) -2. 点式前馈网络(Point wise feed forward networks)。 - -每个子层在其周围有一个残差连接,然后进行层归一化。残差连接有助于避免深度网络中的梯度消失问题。 - -每个子层的输出是 `LayerNorm(x + Sublayer(x))`。归一化是在 `d_model`(最后一个)维度完成的。Transformer 中有 N 个编码器层。 - -```py -class EncoderLayer(tf.keras.layers.Layer): - def __init__(self, d_model, num_heads, dff, rate=0.1): - super(EncoderLayer, self).__init__() - - self.mha = MultiHeadAttention(d_model, num_heads) - self.ffn = point_wise_feed_forward_network(d_model, dff) - - self.layernorm1 = tf.keras.layers.LayerNormalization(epsilon=1e-6) - self.layernorm2 = tf.keras.layers.LayerNormalization(epsilon=1e-6) - - self.dropout1 = tf.keras.layers.Dropout(rate) - self.dropout2 = tf.keras.layers.Dropout(rate) - - def call(self, x, training, mask): - - attn_output, _ = self.mha(x, x, x, mask) # (batch_size, input_seq_len, d_model) - attn_output = self.dropout1(attn_output, training=training) - out1 = self.layernorm1(x + attn_output) # (batch_size, input_seq_len, d_model) - - ffn_output = self.ffn(out1) # (batch_size, input_seq_len, d_model) - ffn_output = self.dropout2(ffn_output, training=training) - out2 = self.layernorm2(out1 + ffn_output) # (batch_size, input_seq_len, d_model) - - return out2 -``` - -```py -sample_encoder_layer = EncoderLayer(512, 8, 2048) - -sample_encoder_layer_output = sample_encoder_layer( - tf.random.uniform((64, 43, 512)), False, None) - -sample_encoder_layer_output.shape # (batch_size, input_seq_len, d_model) -``` - -```py -TensorShape([64, 43, 512]) - -``` - -### 解码器层(Decoder layer) - -每个解码器层包括以下子层: - -1. 遮挡的多头注意力(前瞻遮挡和填充遮挡) -2. 多头注意力(用填充遮挡)。V(数值)和 K(主键)接收*编码器输出*作为输入。Q(请求)接收*遮挡的多头注意力子层的输出*。 -3. 点式前馈网络 - -每个子层在其周围有一个残差连接,然后进行层归一化。每个子层的输出是 `LayerNorm(x + Sublayer(x))`。归一化是在 `d_model`(最后一个)维度完成的。 - -Transformer 中共有 N 个解码器层。 - -当 Q 接收到解码器的第一个注意力块的输出,并且 K 接收到编码器的输出时,注意力权重表示根据编码器的输出赋予解码器输入的重要性。换一种说法,解码器通过查看编码器输出和对其自身输出的自注意力,预测下一个词。参看按比缩放的点积注意力部分的演示。 - -```py -class DecoderLayer(tf.keras.layers.Layer): - def __init__(self, d_model, num_heads, dff, rate=0.1): - super(DecoderLayer, self).__init__() - - self.mha1 = MultiHeadAttention(d_model, num_heads) - self.mha2 = MultiHeadAttention(d_model, num_heads) - - self.ffn = point_wise_feed_forward_network(d_model, dff) - - self.layernorm1 = tf.keras.layers.LayerNormalization(epsilon=1e-6) - self.layernorm2 = tf.keras.layers.LayerNormalization(epsilon=1e-6) - self.layernorm3 = tf.keras.layers.LayerNormalization(epsilon=1e-6) - - self.dropout1 = tf.keras.layers.Dropout(rate) - self.dropout2 = tf.keras.layers.Dropout(rate) - self.dropout3 = tf.keras.layers.Dropout(rate) - - def call(self, x, enc_output, training, - look_ahead_mask, padding_mask): - # enc_output.shape == (batch_size, input_seq_len, d_model) - - attn1, attn_weights_block1 = self.mha1(x, x, x, look_ahead_mask) # (batch_size, target_seq_len, d_model) - attn1 = self.dropout1(attn1, training=training) - out1 = self.layernorm1(attn1 + x) - - attn2, attn_weights_block2 = self.mha2( - enc_output, enc_output, out1, padding_mask) # (batch_size, target_seq_len, d_model) - attn2 = self.dropout2(attn2, training=training) - out2 = self.layernorm2(attn2 + out1) # (batch_size, target_seq_len, d_model) - - ffn_output = self.ffn(out2) # (batch_size, target_seq_len, d_model) - ffn_output = self.dropout3(ffn_output, training=training) - out3 = self.layernorm3(ffn_output + out2) # (batch_size, target_seq_len, d_model) - - return out3, attn_weights_block1, attn_weights_block2 -``` - -```py -sample_decoder_layer = DecoderLayer(512, 8, 2048) - -sample_decoder_layer_output, _, _ = sample_decoder_layer( - tf.random.uniform((64, 50, 512)), sample_encoder_layer_output, - False, None, None) - -sample_decoder_layer_output.shape # (batch_size, target_seq_len, d_model) -``` - -```py -TensorShape([64, 50, 512]) - -``` - -### 编码器(Encoder) - -`编码器` 包括: - -1. 输入嵌入(Input Embedding) -2. 位置编码(Positional Encoding) -3. N 个编码器层(encoder layers) - -输入经过嵌入(embedding)后,该嵌入与位置编码相加。该加法结果的输出是编码器层的输入。编码器的输出是解码器的输入。 - -```py -class Encoder(tf.keras.layers.Layer): - def __init__(self, num_layers, d_model, num_heads, dff, input_vocab_size, - maximum_position_encoding, rate=0.1): - super(Encoder, self).__init__() - - self.d_model = d_model - self.num_layers = num_layers - - self.embedding = tf.keras.layers.Embedding(input_vocab_size, d_model) - self.pos_encoding = positional_encoding(maximum_position_encoding, - self.d_model) - - self.enc_layers = [EncoderLayer(d_model, num_heads, dff, rate) - for _ in range(num_layers)] - - self.dropout = tf.keras.layers.Dropout(rate) - - def call(self, x, training, mask): - - seq_len = tf.shape(x)[1] - - # 将嵌入和位置编码相加。 - x = self.embedding(x) # (batch_size, input_seq_len, d_model) - x *= tf.math.sqrt(tf.cast(self.d_model, tf.float32)) - x += self.pos_encoding[:, :seq_len, :] - - x = self.dropout(x, training=training) - - for i in range(self.num_layers): - x = self.enc_layers[i](x, training, mask) - - return x # (batch_size, input_seq_len, d_model) -``` - -```py -sample_encoder = Encoder(num_layers=2, d_model=512, num_heads=8, - dff=2048, input_vocab_size=8500, - maximum_position_encoding=10000) - -sample_encoder_output = sample_encoder(tf.random.uniform((64, 62)), - training=False, mask=None) - -print (sample_encoder_output.shape) # (batch_size, input_seq_len, d_model) -``` - -```py -(64, 62, 512) - -``` - -### 解码器(Decoder) - -`解码器`包括: - -1. 输出嵌入(Output Embedding) -2. 位置编码(Positional Encoding) -3. N 个解码器层(decoder layers) - -目标(target)经过一个嵌入后,该嵌入和位置编码相加。该加法结果是解码器层的输入。解码器的输出是最后的线性层的输入。 - -```py -class Decoder(tf.keras.layers.Layer): - def __init__(self, num_layers, d_model, num_heads, dff, target_vocab_size, - maximum_position_encoding, rate=0.1): - super(Decoder, self).__init__() - - self.d_model = d_model - self.num_layers = num_layers - - self.embedding = tf.keras.layers.Embedding(target_vocab_size, d_model) - self.pos_encoding = positional_encoding(maximum_position_encoding, d_model) - - self.dec_layers = [DecoderLayer(d_model, num_heads, dff, rate) - for _ in range(num_layers)] - self.dropout = tf.keras.layers.Dropout(rate) - - def call(self, x, enc_output, training, - look_ahead_mask, padding_mask): - - seq_len = tf.shape(x)[1] - attention_weights = {} - - x = self.embedding(x) # (batch_size, target_seq_len, d_model) - x *= tf.math.sqrt(tf.cast(self.d_model, tf.float32)) - x += self.pos_encoding[:, :seq_len, :] - - x = self.dropout(x, training=training) - - for i in range(self.num_layers): - x, block1, block2 = self.dec_layers[i](x, enc_output, training, - look_ahead_mask, padding_mask) - - attention_weights['decoder_layer{}_block1'.format(i+1)] = block1 - attention_weights['decoder_layer{}_block2'.format(i+1)] = block2 - - # x.shape == (batch_size, target_seq_len, d_model) - return x, attention_weights -``` - -```py -sample_decoder = Decoder(num_layers=2, d_model=512, num_heads=8, - dff=2048, target_vocab_size=8000, - maximum_position_encoding=5000) - -output, attn = sample_decoder(tf.random.uniform((64, 26)), - enc_output=sample_encoder_output, - training=False, look_ahead_mask=None, - padding_mask=None) - -output.shape, attn['decoder_layer2_block2'].shape -``` - -```py -(TensorShape([64, 26, 512]), TensorShape([64, 8, 26, 62])) - -``` - -## 创建 Transformer - -Transformer 包括编码器,解码器和最后的线性层。解码器的输出是线性层的输入,返回线性层的输出。 - -```py -class Transformer(tf.keras.Model): - def __init__(self, num_layers, d_model, num_heads, dff, input_vocab_size, - target_vocab_size, pe_input, pe_target, rate=0.1): - super(Transformer, self).__init__() - - self.encoder = Encoder(num_layers, d_model, num_heads, dff, - input_vocab_size, pe_input, rate) - - self.decoder = Decoder(num_layers, d_model, num_heads, dff, - target_vocab_size, pe_target, rate) - - self.final_layer = tf.keras.layers.Dense(target_vocab_size) - - def call(self, inp, tar, training, enc_padding_mask, - look_ahead_mask, dec_padding_mask): - - enc_output = self.encoder(inp, training, enc_padding_mask) # (batch_size, inp_seq_len, d_model) - - # dec_output.shape == (batch_size, tar_seq_len, d_model) - dec_output, attention_weights = self.decoder( - tar, enc_output, training, look_ahead_mask, dec_padding_mask) - - final_output = self.final_layer(dec_output) # (batch_size, tar_seq_len, target_vocab_size) - - return final_output, attention_weights -``` - -```py -sample_transformer = Transformer( - num_layers=2, d_model=512, num_heads=8, dff=2048, - input_vocab_size=8500, target_vocab_size=8000, - pe_input=10000, pe_target=6000) - -temp_input = tf.random.uniform((64, 62)) -temp_target = tf.random.uniform((64, 26)) - -fn_out, _ = sample_transformer(temp_input, temp_target, training=False, - enc_padding_mask=None, - look_ahead_mask=None, - dec_padding_mask=None) - -fn_out.shape # (batch_size, tar_seq_len, target_vocab_size) -``` - -```py -TensorShape([64, 26, 8000]) - -``` - -## 配置超参数(hyperparameters) - -为了让本示例小且相对较快,已经减小了*num_layers、 d_model 和 dff* 的值。 - -Transformer 的基础模型使用的数值为:*num_layers=6*,*d_model = 512*,*dff = 2048*。关于所有其他版本的 Transformer,请查阅[论文](https://arxiv.org/abs/1706.03762)。 - -Note:通过改变以下数值,您可以获得在许多任务上达到最先进水平的模型。 - -```py -num_layers = 4 -d_model = 128 -dff = 512 -num_heads = 8 - -input_vocab_size = tokenizer_pt.vocab_size + 2 -target_vocab_size = tokenizer_en.vocab_size + 2 -dropout_rate = 0.1 -``` - -## 优化器(Optimizer) - -根据[论文](https://arxiv.org/abs/1706.03762)中的公式,将 Adam 优化器与自定义的学习速率调度程序(scheduler)配合使用。 - -$$\Large{lrate = d_{model}^{-0.5} * min(step{\_}num^{-0.5}, step{\_}num * warmup{\_}steps^{-1.5})}$$ - -```py -class CustomSchedule(tf.keras.optimizers.schedules.LearningRateSchedule): - def __init__(self, d_model, warmup_steps=4000): - super(CustomSchedule, self).__init__() - - self.d_model = d_model - self.d_model = tf.cast(self.d_model, tf.float32) - - self.warmup_steps = warmup_steps - - def __call__(self, step): - arg1 = tf.math.rsqrt(step) - arg2 = step * (self.warmup_steps ** -1.5) - - return tf.math.rsqrt(self.d_model) * tf.math.minimum(arg1, arg2) -``` - -```py -learning_rate = CustomSchedule(d_model) - -optimizer = tf.keras.optimizers.Adam(learning_rate, beta_1=0.9, beta_2=0.98, - epsilon=1e-9) -``` - -```py -temp_learning_rate_schedule = CustomSchedule(d_model) - -plt.plot(temp_learning_rate_schedule(tf.range(40000, dtype=tf.float32))) -plt.ylabel("Learning Rate") -plt.xlabel("Train Step") -``` - -```py -Text(0.5, 0, 'Train Step') - -``` - -![png](img/852e0228b5aebca16dfadf758d11e902.png) - -## 损失函数与指标(Loss and metrics) - -由于目标序列是填充(padded)过的,因此在计算损失函数时,应用填充遮挡非常重要。 - -```py -loss_object = tf.keras.losses.SparseCategoricalCrossentropy( - from_logits=True, reduction='none') -``` - -```py -def loss_function(real, pred): - mask = tf.math.logical_not(tf.math.equal(real, 0)) - loss_ = loss_object(real, pred) - - mask = tf.cast(mask, dtype=loss_.dtype) - loss_ *= mask - - return tf.reduce_mean(loss_) -``` - -```py -train_loss = tf.keras.metrics.Mean(name='train_loss') -train_accuracy = tf.keras.metrics.SparseCategoricalAccuracy( - name='train_accuracy') -``` - -## 训练与检查点(Training and checkpointing) - -```py -transformer = Transformer(num_layers, d_model, num_heads, dff, - input_vocab_size, target_vocab_size, - pe_input=input_vocab_size, - pe_target=target_vocab_size, - rate=dropout_rate) -``` - -```py -def create_masks(inp, tar): - # 编码器填充遮挡 - enc_padding_mask = create_padding_mask(inp) - - # 在解码器的第二个注意力模块使用。 - # 该填充遮挡用于遮挡编码器的输出。 - dec_padding_mask = create_padding_mask(inp) - - # 在解码器的第一个注意力模块使用。 - # 用于填充(pad)和遮挡(mask)解码器获取到的输入的后续标记(future tokens)。 - look_ahead_mask = create_look_ahead_mask(tf.shape(tar)[1]) - dec_target_padding_mask = create_padding_mask(tar) - combined_mask = tf.maximum(dec_target_padding_mask, look_ahead_mask) - - return enc_padding_mask, combined_mask, dec_padding_mask -``` - -创建检查点的路径和检查点管理器(manager)。这将用于在每 `n` 个周期(epochs)保存检查点。 - -```py -checkpoint_path = "./checkpoints/train" - -ckpt = tf.train.Checkpoint(transformer=transformer, - optimizer=optimizer) - -ckpt_manager = tf.train.CheckpointManager(ckpt, checkpoint_path, max_to_keep=5) - -# 如果检查点存在,则恢复最新的检查点。 -if ckpt_manager.latest_checkpoint: - ckpt.restore(ckpt_manager.latest_checkpoint) - print ('Latest checkpoint restored!!') -``` - -目标(target)被分成了 tar_inp 和 tar_real。tar_inp 作为输入传递到解码器。`tar_real` 是位移了 1 的同一个输入:在 `tar_inp` 中的每个位置,`tar_real` 包含了应该被预测到的下一个标记(token)。 - -例如,`sentence` = "SOS A lion in the jungle is sleeping EOS" - -`tar_inp` = "SOS A lion in the jungle is sleeping" - -`tar_real` = "A lion in the jungle is sleeping EOS" - -Transformer 是一个自回归(auto-regressive)模型:它一次作一个部分的预测,然后使用到目前为止的自身的输出来决定下一步要做什么。 - -在训练过程中,本示例使用了 teacher-forcing 的方法(就像[文本生成教程](https://tensorflow.google.cn/tutorials/text/text_generation)中一样)。无论模型在当前时间步骤下预测出什么,teacher-forcing 方法都会将真实的输出传递到下一个时间步骤上。 - -当 transformer 预测每个词时,*自注意力(self-attention)*功能使它能够查看输入序列中前面的单词,从而更好地预测下一个单词。 - -为了防止模型在期望的输出上达到峰值,模型使用了前瞻遮挡(look-ahead mask)。 - -```py -EPOCHS = 20 -``` - -```py -# 该 @tf.function 将追踪-编译 train_step 到 TF 图中,以便更快地 -# 执行。该函数专用于参数张量的精确形状。为了避免由于可变序列长度或可变 -# 批次大小(最后一批次较小)导致的再追踪,使用 input_signature 指定 -# 更多的通用形状。 - -train_step_signature = [ - tf.TensorSpec(shape=(None, None), dtype=tf.int64), - tf.TensorSpec(shape=(None, None), dtype=tf.int64), -] - -@tf.function(input_signature=train_step_signature) -def train_step(inp, tar): - tar_inp = tar[:, :-1] - tar_real = tar[:, 1:] - - enc_padding_mask, combined_mask, dec_padding_mask = create_masks(inp, tar_inp) - - with tf.GradientTape() as tape: - predictions, _ = transformer(inp, tar_inp, - True, - enc_padding_mask, - combined_mask, - dec_padding_mask) - loss = loss_function(tar_real, predictions) - - gradients = tape.gradient(loss, transformer.trainable_variables) - optimizer.apply_gradients(zip(gradients, transformer.trainable_variables)) - - train_loss(loss) - train_accuracy(tar_real, predictions) -``` - -葡萄牙语作为输入语言,英语为目标语言。 - -```py -for epoch in range(EPOCHS): - start = time.time() - - train_loss.reset_states() - train_accuracy.reset_states() - - # inp -> portuguese, tar -> english - for (batch, (inp, tar)) in enumerate(train_dataset): - train_step(inp, tar) - - if batch % 50 == 0: - print ('Epoch {} Batch {} Loss {:.4f} Accuracy {:.4f}'.format( - epoch + 1, batch, train_loss.result(), train_accuracy.result())) - - if (epoch + 1) % 5 == 0: - ckpt_save_path = ckpt_manager.save() - print ('Saving checkpoint for epoch {} at {}'.format(epoch+1, - ckpt_save_path)) - - print ('Epoch {} Loss {:.4f} Accuracy {:.4f}'.format(epoch + 1, - train_loss.result(), - train_accuracy.result())) - - print ('Time taken for 1 epoch: {} secs\n'.format(time.time() - start)) -``` - -```py -Epoch 1 Batch 0 Loss 4.3163 Accuracy 0.0004 -Epoch 1 Batch 50 Loss 4.2825 Accuracy 0.0018 -Epoch 1 Batch 100 Loss 4.2022 Accuracy 0.0134 -Epoch 1 Batch 150 Loss 4.1526 Accuracy 0.0180 -Epoch 1 Batch 200 Loss 4.0717 Accuracy 0.0204 -Epoch 1 Batch 250 Loss 3.9939 Accuracy 0.0224 -Epoch 1 Batch 300 Loss 3.9193 Accuracy 0.0242 -Epoch 1 Batch 350 Loss 3.8341 Accuracy 0.0264 -Epoch 1 Batch 400 Loss 3.7555 Accuracy 0.0301 -Epoch 1 Batch 450 Loss 3.6772 Accuracy 0.0335 -Epoch 1 Batch 500 Loss 3.6066 Accuracy 0.0367 -Epoch 1 Batch 550 Loss 3.5419 Accuracy 0.0403 -Epoch 1 Batch 600 Loss 3.4774 Accuracy 0.0440 -Epoch 1 Batch 650 Loss 3.4262 Accuracy 0.0476 -Epoch 1 Batch 700 Loss 3.3708 Accuracy 0.0510 -Epoch 1 Loss 3.3693 Accuracy 0.0512 -Time taken for 1 epoch: 60.16580581665039 secs - -Epoch 2 Batch 0 Loss 2.5117 Accuracy 0.1003 -Epoch 2 Batch 50 Loss 2.5981 Accuracy 0.1028 -Epoch 2 Batch 100 Loss 2.5820 Accuracy 0.1058 -Epoch 2 Batch 150 Loss 2.5412 Accuracy 0.1078 -Epoch 2 Batch 200 Loss 2.5172 Accuracy 0.1099 -Epoch 2 Batch 250 Loss 2.4793 Accuracy 0.1118 -Epoch 2 Batch 300 Loss 2.4630 Accuracy 0.1138 -Epoch 2 Batch 350 Loss 2.4430 Accuracy 0.1156 -Epoch 2 Batch 400 Loss 2.4333 Accuracy 0.1174 -Epoch 2 Batch 450 Loss 2.4241 Accuracy 0.1191 -Epoch 2 Batch 500 Loss 2.4140 Accuracy 0.1207 -Epoch 2 Batch 550 Loss 2.4004 Accuracy 0.1220 -Epoch 2 Batch 600 Loss 2.3853 Accuracy 0.1232 -Epoch 2 Batch 650 Loss 2.3757 Accuracy 0.1244 -Epoch 2 Batch 700 Loss 2.3634 Accuracy 0.1255 -Epoch 2 Loss 2.3630 Accuracy 0.1255 -Time taken for 1 epoch: 31.393303871154785 secs - -Epoch 3 Batch 0 Loss 2.0532 Accuracy 0.1424 -Epoch 3 Batch 50 Loss 2.1493 Accuracy 0.1433 -Epoch 3 Batch 100 Loss 2.1437 Accuracy 0.1437 -Epoch 3 Batch 150 Loss 2.1445 Accuracy 0.1448 -Epoch 3 Batch 200 Loss 2.1471 Accuracy 0.1451 -Epoch 3 Batch 250 Loss 2.1426 Accuracy 0.1458 -Epoch 3 Batch 300 Loss 2.1416 Accuracy 0.1466 -Epoch 3 Batch 350 Loss 2.1400 Accuracy 0.1476 -Epoch 3 Batch 400 Loss 2.1315 Accuracy 0.1480 -Epoch 3 Batch 450 Loss 2.1271 Accuracy 0.1483 -Epoch 3 Batch 500 Loss 2.1217 Accuracy 0.1488 -Epoch 3 Batch 550 Loss 2.1167 Accuracy 0.1492 -Epoch 3 Batch 600 Loss 2.1111 Accuracy 0.1497 -Epoch 3 Batch 650 Loss 2.1069 Accuracy 0.1502 -Epoch 3 Batch 700 Loss 2.1020 Accuracy 0.1509 -Epoch 3 Loss 2.1011 Accuracy 0.1509 -Time taken for 1 epoch: 31.126026153564453 secs - -Epoch 4 Batch 0 Loss 1.8764 Accuracy 0.1534 -Epoch 4 Batch 50 Loss 1.9276 Accuracy 0.1609 -Epoch 4 Batch 100 Loss 1.9371 Accuracy 0.1636 -Epoch 4 Batch 150 Loss 1.9392 Accuracy 0.1644 -Epoch 4 Batch 200 Loss 1.9391 Accuracy 0.1654 -Epoch 4 Batch 250 Loss 1.9351 Accuracy 0.1660 -Epoch 4 Batch 300 Loss 1.9323 Accuracy 0.1669 -Epoch 4 Batch 350 Loss 1.9289 Accuracy 0.1675 -Epoch 4 Batch 400 Loss 1.9238 Accuracy 0.1684 -Epoch 4 Batch 450 Loss 1.9193 Accuracy 0.1692 -Epoch 4 Batch 500 Loss 1.9146 Accuracy 0.1704 -Epoch 4 Batch 550 Loss 1.9124 Accuracy 0.1714 -Epoch 4 Batch 600 Loss 1.9038 Accuracy 0.1726 -Epoch 4 Batch 650 Loss 1.8971 Accuracy 0.1735 -Epoch 4 Batch 700 Loss 1.8924 Accuracy 0.1747 -Epoch 4 Loss 1.8911 Accuracy 0.1746 -Time taken for 1 epoch: 31.81874442100525 secs - -Epoch 5 Batch 0 Loss 1.7212 Accuracy 0.1915 -Epoch 5 Batch 50 Loss 1.7288 Accuracy 0.1948 -Epoch 5 Batch 100 Loss 1.7079 Accuracy 0.1925 -Epoch 5 Batch 150 Loss 1.7059 Accuracy 0.1940 -Epoch 5 Batch 200 Loss 1.7098 Accuracy 0.1947 -Epoch 5 Batch 250 Loss 1.7009 Accuracy 0.1953 -Epoch 5 Batch 300 Loss 1.7049 Accuracy 0.1967 -Epoch 5 Batch 350 Loss 1.7009 Accuracy 0.1975 -Epoch 5 Batch 400 Loss 1.6954 Accuracy 0.1979 -Epoch 5 Batch 450 Loss 1.6900 Accuracy 0.1985 -Epoch 5 Batch 500 Loss 1.6858 Accuracy 0.1993 -Epoch 5 Batch 550 Loss 1.6856 Accuracy 0.2002 -Epoch 5 Batch 600 Loss 1.6810 Accuracy 0.2009 -Epoch 5 Batch 650 Loss 1.6746 Accuracy 0.2016 -Epoch 5 Batch 700 Loss 1.6698 Accuracy 0.2022 -Saving checkpoint for epoch 5 at ./checkpoints/train/ckpt-1 -Epoch 5 Loss 1.6697 Accuracy 0.2022 -Time taken for 1 epoch: 31.367265462875366 secs - -Epoch 6 Batch 0 Loss 1.4858 Accuracy 0.2155 -Epoch 6 Batch 50 Loss 1.4763 Accuracy 0.2153 -Epoch 6 Batch 100 Loss 1.4967 Accuracy 0.2173 -Epoch 6 Batch 150 Loss 1.4930 Accuracy 0.2183 -Epoch 6 Batch 200 Loss 1.4938 Accuracy 0.2190 -Epoch 6 Batch 250 Loss 1.5026 Accuracy 0.2205 -Epoch 6 Batch 300 Loss 1.5025 Accuracy 0.2208 -Epoch 6 Batch 350 Loss 1.4974 Accuracy 0.2208 -Epoch 6 Batch 400 Loss 1.4984 Accuracy 0.2214 -Epoch 6 Batch 450 Loss 1.4972 Accuracy 0.2220 -Epoch 6 Batch 500 Loss 1.4940 Accuracy 0.2222 -Epoch 6 Batch 550 Loss 1.4911 Accuracy 0.2223 -Epoch 6 Batch 600 Loss 1.4896 Accuracy 0.2227 -Epoch 6 Batch 650 Loss 1.4849 Accuracy 0.2231 -Epoch 6 Batch 700 Loss 1.4819 Accuracy 0.2237 -Epoch 6 Loss 1.4821 Accuracy 0.2237 -Time taken for 1 epoch: 31.269275426864624 secs - -Epoch 7 Batch 0 Loss 1.5062 Accuracy 0.2517 -Epoch 7 Batch 50 Loss 1.3157 Accuracy 0.2398 -Epoch 7 Batch 100 Loss 1.3275 Accuracy 0.2426 -Epoch 7 Batch 150 Loss 1.3256 Accuracy 0.2413 -Epoch 7 Batch 200 Loss 1.3212 Accuracy 0.2413 -Epoch 7 Batch 250 Loss 1.3213 Accuracy 0.2424 -Epoch 7 Batch 300 Loss 1.3195 Accuracy 0.2424 -Epoch 7 Batch 350 Loss 1.3158 Accuracy 0.2425 -Epoch 7 Batch 400 Loss 1.3112 Accuracy 0.2430 -Epoch 7 Batch 450 Loss 1.3050 Accuracy 0.2432 -Epoch 7 Batch 500 Loss 1.3025 Accuracy 0.2436 -Epoch 7 Batch 550 Loss 1.3013 Accuracy 0.2441 -Epoch 7 Batch 600 Loss 1.2981 Accuracy 0.2447 -Epoch 7 Batch 650 Loss 1.2952 Accuracy 0.2447 -Epoch 7 Batch 700 Loss 1.2947 Accuracy 0.2452 -Epoch 7 Loss 1.2947 Accuracy 0.2453 -Time taken for 1 epoch: 31.002289056777954 secs - -Epoch 8 Batch 0 Loss 1.0162 Accuracy 0.2484 -Epoch 8 Batch 50 Loss 1.1310 Accuracy 0.2597 -Epoch 8 Batch 100 Loss 1.1398 Accuracy 0.2611 -Epoch 8 Batch 150 Loss 1.1428 Accuracy 0.2607 -Epoch 8 Batch 200 Loss 1.1476 Accuracy 0.2613 -Epoch 8 Batch 250 Loss 1.1415 Accuracy 0.2614 -Epoch 8 Batch 300 Loss 1.1396 Accuracy 0.2620 -Epoch 8 Batch 350 Loss 1.1410 Accuracy 0.2625 -Epoch 8 Batch 400 Loss 1.1397 Accuracy 0.2627 -Epoch 8 Batch 450 Loss 1.1400 Accuracy 0.2629 -Epoch 8 Batch 500 Loss 1.1387 Accuracy 0.2629 -Epoch 8 Batch 550 Loss 1.1365 Accuracy 0.2632 -Epoch 8 Batch 600 Loss 1.1360 Accuracy 0.2632 -Epoch 8 Batch 650 Loss 1.1364 Accuracy 0.2636 -Epoch 8 Batch 700 Loss 1.1345 Accuracy 0.2638 -Epoch 8 Loss 1.1345 Accuracy 0.2638 -Time taken for 1 epoch: 31.10622811317444 secs - -Epoch 9 Batch 0 Loss 1.0940 Accuracy 0.3234 -Epoch 9 Batch 50 Loss 1.0242 Accuracy 0.2814 -Epoch 9 Batch 100 Loss 1.0237 Accuracy 0.2809 -Epoch 9 Batch 150 Loss 1.0214 Accuracy 0.2797 -Epoch 9 Batch 200 Loss 1.0180 Accuracy 0.2790 -Epoch 9 Batch 250 Loss 1.0185 Accuracy 0.2787 -Epoch 9 Batch 300 Loss 1.0184 Accuracy 0.2786 -Epoch 9 Batch 350 Loss 1.0166 Accuracy 0.2780 -Epoch 9 Batch 400 Loss 1.0162 Accuracy 0.2780 -Epoch 9 Batch 450 Loss 1.0146 Accuracy 0.2775 -Epoch 9 Batch 500 Loss 1.0163 Accuracy 0.2775 -Epoch 9 Batch 550 Loss 1.0183 Accuracy 0.2778 -Epoch 9 Batch 600 Loss 1.0188 Accuracy 0.2780 -Epoch 9 Batch 650 Loss 1.0199 Accuracy 0.2781 -Epoch 9 Batch 700 Loss 1.0234 Accuracy 0.2785 -Epoch 9 Loss 1.0232 Accuracy 0.2785 -Time taken for 1 epoch: 30.981273889541626 secs - -Epoch 10 Batch 0 Loss 0.8119 Accuracy 0.2732 -Epoch 10 Batch 50 Loss 0.9071 Accuracy 0.2880 -Epoch 10 Batch 100 Loss 0.9160 Accuracy 0.2894 -Epoch 10 Batch 150 Loss 0.9165 Accuracy 0.2896 -Epoch 10 Batch 200 Loss 0.9201 Accuracy 0.2897 -Epoch 10 Batch 250 Loss 0.9230 Accuracy 0.2895 -Epoch 10 Batch 300 Loss 0.9252 Accuracy 0.2900 -Epoch 10 Batch 350 Loss 0.9270 Accuracy 0.2900 -Epoch 10 Batch 400 Loss 0.9254 Accuracy 0.2899 -Epoch 10 Batch 450 Loss 0.9267 Accuracy 0.2895 -Epoch 10 Batch 500 Loss 0.9302 Accuracy 0.2890 -Epoch 10 Batch 550 Loss 0.9307 Accuracy 0.2889 -Epoch 10 Batch 600 Loss 0.9322 Accuracy 0.2890 -Epoch 10 Batch 650 Loss 0.9352 Accuracy 0.2892 -Epoch 10 Batch 700 Loss 0.9375 Accuracy 0.2890 -Saving checkpoint for epoch 10 at ./checkpoints/train/ckpt-2 -Epoch 10 Loss 0.9379 Accuracy 0.2891 -Time taken for 1 epoch: 31.26957678794861 secs - -Epoch 11 Batch 0 Loss 0.8713 Accuracy 0.2925 -Epoch 11 Batch 50 Loss 0.8490 Accuracy 0.3006 -Epoch 11 Batch 100 Loss 0.8531 Accuracy 0.3021 -Epoch 11 Batch 150 Loss 0.8443 Accuracy 0.3002 -Epoch 11 Batch 200 Loss 0.8487 Accuracy 0.3003 -Epoch 11 Batch 250 Loss 0.8535 Accuracy 0.2998 -Epoch 11 Batch 300 Loss 0.8542 Accuracy 0.2999 -Epoch 11 Batch 350 Loss 0.8569 Accuracy 0.2995 -Epoch 11 Batch 400 Loss 0.8586 Accuracy 0.2991 -Epoch 11 Batch 450 Loss 0.8596 Accuracy 0.2987 -Epoch 11 Batch 500 Loss 0.8608 Accuracy 0.2984 -Epoch 11 Batch 550 Loss 0.8628 Accuracy 0.2982 -Epoch 11 Batch 600 Loss 0.8642 Accuracy 0.2980 -Epoch 11 Batch 650 Loss 0.8671 Accuracy 0.2981 -Epoch 11 Batch 700 Loss 0.8693 Accuracy 0.2982 -Epoch 11 Loss 0.8693 Accuracy 0.2982 -Time taken for 1 epoch: 32.054973125457764 secs - -Epoch 12 Batch 0 Loss 0.7781 Accuracy 0.3277 -Epoch 12 Batch 50 Loss 0.7705 Accuracy 0.3061 -Epoch 12 Batch 100 Loss 0.7835 Accuracy 0.3090 -Epoch 12 Batch 150 Loss 0.7882 Accuracy 0.3070 -Epoch 12 Batch 200 Loss 0.7926 Accuracy 0.3069 -Epoch 12 Batch 250 Loss 0.7952 Accuracy 0.3075 -Epoch 12 Batch 300 Loss 0.7989 Accuracy 0.3073 -Epoch 12 Batch 350 Loss 0.8016 Accuracy 0.3069 -Epoch 12 Batch 400 Loss 0.8045 Accuracy 0.3073 -Epoch 12 Batch 450 Loss 0.8063 Accuracy 0.3070 -Epoch 12 Batch 500 Loss 0.8068 Accuracy 0.3066 -Epoch 12 Batch 550 Loss 0.8099 Accuracy 0.3064 -Epoch 12 Batch 600 Loss 0.8112 Accuracy 0.3060 -Epoch 12 Batch 650 Loss 0.8122 Accuracy 0.3058 -Epoch 12 Batch 700 Loss 0.8144 Accuracy 0.3057 -Epoch 12 Loss 0.8140 Accuracy 0.3056 -Time taken for 1 epoch: 30.988539934158325 secs - -Epoch 13 Batch 0 Loss 0.6429 Accuracy 0.3097 -Epoch 13 Batch 50 Loss 0.7236 Accuracy 0.3075 -Epoch 13 Batch 100 Loss 0.7323 Accuracy 0.3110 -Epoch 13 Batch 150 Loss 0.7314 Accuracy 0.3106 -Epoch 13 Batch 200 Loss 0.7346 Accuracy 0.3115 -Epoch 13 Batch 250 Loss 0.7388 Accuracy 0.3119 -Epoch 13 Batch 300 Loss 0.7461 Accuracy 0.3129 -Epoch 13 Batch 350 Loss 0.7477 Accuracy 0.3129 -Epoch 13 Batch 400 Loss 0.7488 Accuracy 0.3127 -Epoch 13 Batch 450 Loss 0.7526 Accuracy 0.3126 -Epoch 13 Batch 500 Loss 0.7566 Accuracy 0.3129 -Epoch 13 Batch 550 Loss 0.7606 Accuracy 0.3127 -Epoch 13 Batch 600 Loss 0.7626 Accuracy 0.3124 -Epoch 13 Batch 650 Loss 0.7644 Accuracy 0.3121 -Epoch 13 Batch 700 Loss 0.7657 Accuracy 0.3122 -Epoch 13 Loss 0.7658 Accuracy 0.3122 -Time taken for 1 epoch: 31.11562490463257 secs - -Epoch 14 Batch 0 Loss 0.6303 Accuracy 0.3125 -Epoch 14 Batch 50 Loss 0.6793 Accuracy 0.3209 -Epoch 14 Batch 100 Loss 0.6850 Accuracy 0.3220 -Epoch 14 Batch 150 Loss 0.6885 Accuracy 0.3205 -Epoch 14 Batch 200 Loss 0.6975 Accuracy 0.3208 -Epoch 14 Batch 250 Loss 0.7003 Accuracy 0.3199 -Epoch 14 Batch 300 Loss 0.7045 Accuracy 0.3197 -Epoch 14 Batch 350 Loss 0.7081 Accuracy 0.3205 -Epoch 14 Batch 400 Loss 0.7095 Accuracy 0.3197 -Epoch 14 Batch 450 Loss 0.7120 Accuracy 0.3189 -Epoch 14 Batch 500 Loss 0.7135 Accuracy 0.3186 -Epoch 14 Batch 550 Loss 0.7167 Accuracy 0.3186 -Epoch 14 Batch 600 Loss 0.7191 Accuracy 0.3183 -Epoch 14 Batch 650 Loss 0.7215 Accuracy 0.3182 -Epoch 14 Batch 700 Loss 0.7234 Accuracy 0.3179 -Epoch 14 Loss 0.7238 Accuracy 0.3179 -Time taken for 1 epoch: 30.928674936294556 secs - -Epoch 15 Batch 0 Loss 0.5921 Accuracy 0.3298 -Epoch 15 Batch 50 Loss 0.6525 Accuracy 0.3265 -Epoch 15 Batch 100 Loss 0.6511 Accuracy 0.3255 -Epoch 15 Batch 150 Loss 0.6618 Accuracy 0.3250 -Epoch 15 Batch 200 Loss 0.6659 Accuracy 0.3244 -Epoch 15 Batch 250 Loss 0.6658 Accuracy 0.3243 -Epoch 15 Batch 300 Loss 0.6666 Accuracy 0.3241 -Epoch 15 Batch 350 Loss 0.6695 Accuracy 0.3236 -Epoch 15 Batch 400 Loss 0.6723 Accuracy 0.3237 -Epoch 15 Batch 450 Loss 0.6759 Accuracy 0.3235 -Epoch 15 Batch 500 Loss 0.6783 Accuracy 0.3238 -Epoch 15 Batch 550 Loss 0.6800 Accuracy 0.3230 -Epoch 15 Batch 600 Loss 0.6826 Accuracy 0.3226 -Epoch 15 Batch 650 Loss 0.6850 Accuracy 0.3226 -Epoch 15 Batch 700 Loss 0.6884 Accuracy 0.3225 -Saving checkpoint for epoch 15 at ./checkpoints/train/ckpt-3 -Epoch 15 Loss 0.6887 Accuracy 0.3225 -Time taken for 1 epoch: 31.319037675857544 secs - -Epoch 16 Batch 0 Loss 0.5955 Accuracy 0.3319 -Epoch 16 Batch 50 Loss 0.6032 Accuracy 0.3275 -Epoch 16 Batch 100 Loss 0.6082 Accuracy 0.3308 -Epoch 16 Batch 150 Loss 0.6231 Accuracy 0.3322 -Epoch 16 Batch 200 Loss 0.6284 Accuracy 0.3314 -Epoch 16 Batch 250 Loss 0.6318 Accuracy 0.3313 -Epoch 16 Batch 300 Loss 0.6353 Accuracy 0.3306 -Epoch 16 Batch 350 Loss 0.6387 Accuracy 0.3304 -Epoch 16 Batch 400 Loss 0.6411 Accuracy 0.3302 -Epoch 16 Batch 450 Loss 0.6445 Accuracy 0.3294 -Epoch 16 Batch 500 Loss 0.6467 Accuracy 0.3288 -Epoch 16 Batch 550 Loss 0.6497 Accuracy 0.3289 -Epoch 16 Batch 600 Loss 0.6527 Accuracy 0.3286 -Epoch 16 Batch 650 Loss 0.6545 Accuracy 0.3283 -Epoch 16 Batch 700 Loss 0.6580 Accuracy 0.3280 -Epoch 16 Loss 0.6579 Accuracy 0.3280 -Time taken for 1 epoch: 31.29152202606201 secs - -Epoch 17 Batch 0 Loss 0.6259 Accuracy 0.3560 -Epoch 17 Batch 50 Loss 0.5865 Accuracy 0.3384 -Epoch 17 Batch 100 Loss 0.5974 Accuracy 0.3386 -Epoch 17 Batch 150 Loss 0.5999 Accuracy 0.3366 -Epoch 17 Batch 200 Loss 0.6053 Accuracy 0.3362 -Epoch 17 Batch 250 Loss 0.6058 Accuracy 0.3349 -Epoch 17 Batch 300 Loss 0.6092 Accuracy 0.3351 -Epoch 17 Batch 350 Loss 0.6106 Accuracy 0.3350 -Epoch 17 Batch 400 Loss 0.6127 Accuracy 0.3342 -Epoch 17 Batch 450 Loss 0.6141 Accuracy 0.3338 -Epoch 17 Batch 500 Loss 0.6171 Accuracy 0.3333 -Epoch 17 Batch 550 Loss 0.6198 Accuracy 0.3327 -Epoch 17 Batch 600 Loss 0.6224 Accuracy 0.3323 -Epoch 17 Batch 650 Loss 0.6248 Accuracy 0.3319 -Epoch 17 Batch 700 Loss 0.6276 Accuracy 0.3318 -Epoch 17 Loss 0.6277 Accuracy 0.3319 -Time taken for 1 epoch: 31.021020889282227 secs - -Epoch 18 Batch 0 Loss 0.5560 Accuracy 0.3509 -Epoch 18 Batch 50 Loss 0.5549 Accuracy 0.3416 -Epoch 18 Batch 100 Loss 0.5651 Accuracy 0.3412 -Epoch 18 Batch 150 Loss 0.5679 Accuracy 0.3397 -Epoch 18 Batch 200 Loss 0.5743 Accuracy 0.3396 -Epoch 18 Batch 250 Loss 0.5788 Accuracy 0.3399 -Epoch 18 Batch 300 Loss 0.5830 Accuracy 0.3405 -Epoch 18 Batch 350 Loss 0.5842 Accuracy 0.3387 -Epoch 18 Batch 400 Loss 0.5885 Accuracy 0.3385 -Epoch 18 Batch 450 Loss 0.5893 Accuracy 0.3379 -Epoch 18 Batch 500 Loss 0.5921 Accuracy 0.3380 -Epoch 18 Batch 550 Loss 0.5953 Accuracy 0.3371 -Epoch 18 Batch 600 Loss 0.5979 Accuracy 0.3365 -Epoch 18 Batch 650 Loss 0.6012 Accuracy 0.3363 -Epoch 18 Batch 700 Loss 0.6036 Accuracy 0.3358 -Epoch 18 Loss 0.6037 Accuracy 0.3358 -Time taken for 1 epoch: 31.022820949554443 secs - -Epoch 19 Batch 0 Loss 0.5412 Accuracy 0.3710 -Epoch 19 Batch 50 Loss 0.5427 Accuracy 0.3460 -Epoch 19 Batch 100 Loss 0.5431 Accuracy 0.3452 -Epoch 19 Batch 150 Loss 0.5443 Accuracy 0.3421 -Epoch 19 Batch 200 Loss 0.5474 Accuracy 0.3419 -Epoch 19 Batch 250 Loss 0.5527 Accuracy 0.3418 -Epoch 19 Batch 300 Loss 0.5561 Accuracy 0.3414 -Epoch 19 Batch 350 Loss 0.5596 Accuracy 0.3413 -Epoch 19 Batch 400 Loss 0.5640 Accuracy 0.3412 -Epoch 19 Batch 450 Loss 0.5658 Accuracy 0.3407 -Epoch 19 Batch 500 Loss 0.5694 Accuracy 0.3403 -Epoch 19 Batch 550 Loss 0.5720 Accuracy 0.3404 -Epoch 19 Batch 600 Loss 0.5744 Accuracy 0.3400 -Epoch 19 Batch 650 Loss 0.5780 Accuracy 0.3402 -Epoch 19 Batch 700 Loss 0.5803 Accuracy 0.3403 -Epoch 19 Loss 0.5802 Accuracy 0.3403 -Time taken for 1 epoch: 30.98587203025818 secs - -Epoch 20 Batch 0 Loss 0.5481 Accuracy 0.3458 -Epoch 20 Batch 50 Loss 0.5221 Accuracy 0.3459 -Epoch 20 Batch 100 Loss 0.5201 Accuracy 0.3470 -Epoch 20 Batch 150 Loss 0.5273 Accuracy 0.3471 -Epoch 20 Batch 200 Loss 0.5294 Accuracy 0.3463 -Epoch 20 Batch 250 Loss 0.5363 Accuracy 0.3454 -Epoch 20 Batch 300 Loss 0.5384 Accuracy 0.3446 -Epoch 20 Batch 350 Loss 0.5398 Accuracy 0.3441 -Epoch 20 Batch 400 Loss 0.5422 Accuracy 0.3441 -Epoch 20 Batch 450 Loss 0.5454 Accuracy 0.3439 -Epoch 20 Batch 500 Loss 0.5480 Accuracy 0.3440 -Epoch 20 Batch 550 Loss 0.5516 Accuracy 0.3441 -Epoch 20 Batch 600 Loss 0.5544 Accuracy 0.3434 -Epoch 20 Batch 650 Loss 0.5572 Accuracy 0.3432 -Epoch 20 Batch 700 Loss 0.5595 Accuracy 0.3428 -Saving checkpoint for epoch 20 at ./checkpoints/train/ckpt-4 -Epoch 20 Loss 0.5597 Accuracy 0.3427 -Time taken for 1 epoch: 31.170108795166016 secs - -``` - -## 评估(Evaluate) - -以下步骤用于评估: - -* 用葡萄牙语分词器(`tokenizer_pt`)编码输入语句。此外,添加开始和结束标记,这样输入就与模型训练的内容相同。这是编码器输入。 -* 解码器输入为 `start token == tokenizer_en.vocab_size`。 -* 计算填充遮挡和前瞻遮挡。 -* `解码器`通过查看`编码器输出`和它自身的输出(自注意力)给出预测。 -* 选择最后一个词并计算它的 argmax。 -* 将预测的词连接到解码器输入,然后传递给解码器。 -* 在这种方法中,解码器根据它预测的之前的词预测下一个。 - -Note:这里使用的模型具有较小的能力以保持相对较快,因此预测可能不太正确。要复现论文中的结果,请使用全部数据集,并通过修改上述超参数来使用基础 transformer 模型或者 transformer XL。 - -```py -def evaluate(inp_sentence): - start_token = [tokenizer_pt.vocab_size] - end_token = [tokenizer_pt.vocab_size + 1] - - # 输入语句是葡萄牙语,增加开始和结束标记 - inp_sentence = start_token + tokenizer_pt.encode(inp_sentence) + end_token - encoder_input = tf.expand_dims(inp_sentence, 0) - - # 因为目标是英语,输入 transformer 的第一个词应该是 - # 英语的开始标记。 - decoder_input = [tokenizer_en.vocab_size] - output = tf.expand_dims(decoder_input, 0) - - for i in range(MAX_LENGTH): - enc_padding_mask, combined_mask, dec_padding_mask = create_masks( - encoder_input, output) - - # predictions.shape == (batch_size, seq_len, vocab_size) - predictions, attention_weights = transformer(encoder_input, - output, - False, - enc_padding_mask, - combined_mask, - dec_padding_mask) - - # 从 seq_len 维度选择最后一个词 - predictions = predictions[: ,-1:, :] # (batch_size, 1, vocab_size) - - predicted_id = tf.cast(tf.argmax(predictions, axis=-1), tf.int32) - - # 如果 predicted_id 等于结束标记,就返回结果 - if predicted_id == tokenizer_en.vocab_size+1: - return tf.squeeze(output, axis=0), attention_weights - - # 连接 predicted_id 与输出,作为解码器的输入传递到解码器。 - output = tf.concat([output, predicted_id], axis=-1) - - return tf.squeeze(output, axis=0), attention_weights -``` - -```py -def plot_attention_weights(attention, sentence, result, layer): - fig = plt.figure(figsize=(16, 8)) - - sentence = tokenizer_pt.encode(sentence) - - attention = tf.squeeze(attention[layer], axis=0) - - for head in range(attention.shape[0]): - ax = fig.add_subplot(2, 4, head+1) - - # 画出注意力权重 - ax.matshow(attention[head][:-1, :], cmap='viridis') - - fontdict = {'fontsize': 10} - - ax.set_xticks(range(len(sentence)+2)) - ax.set_yticks(range(len(result))) - - ax.set_ylim(len(result)-1.5, -0.5) - - ax.set_xticklabels( - ['']+[tokenizer_pt.decode([i]) for i in sentence]+[''], - fontdict=fontdict, rotation=90) - - ax.set_yticklabels([tokenizer_en.decode([i]) for i in result - if i < tokenizer_en.vocab_size], - fontdict=fontdict) - - ax.set_xlabel('Head {}'.format(head+1)) - - plt.tight_layout() - plt.show() -``` - -```py -def translate(sentence, plot=''): - result, attention_weights = evaluate(sentence) - - predicted_sentence = tokenizer_en.decode([i for i in result - if i < tokenizer_en.vocab_size]) - - print('Input: {}'.format(sentence)) - print('Predicted translation: {}'.format(predicted_sentence)) - - if plot: - plot_attention_weights(attention_weights, sentence, result, plot) -``` - -```py -translate("este é um problema que temos que resolver.") -print ("Real translation: this is a problem we have to solve .") -``` - -```py -Input: este é um problema que temos que resolver. -Predicted translation: this is a problem that we have to solve the united states is that we have to solve the world . -Real translation: this is a problem we have to solve . - -``` - -```py -translate("os meus vizinhos ouviram sobre esta ideia.") -print ("Real translation: and my neighboring homes heard about this idea .") -``` - -```py -Input: os meus vizinhos ouviram sobre esta ideia. -Predicted translation: my neighbors heard about this idea . -Real translation: and my neighboring homes heard about this idea . - -``` - -```py -translate("vou então muito rapidamente partilhar convosco algumas histórias de algumas coisas mágicas que aconteceram.") -print ("Real translation: so i 'll just share with you some stories very quickly of some magical things that have happened .") -``` - -```py -Input: vou então muito rapidamente partilhar convosco algumas histórias de algumas coisas mágicas que aconteceram. -Predicted translation: so i 'm going to share with you a couple of exciting stories of some magical things that happened . -Real translation: so i 'll just share with you some stories very quickly of some magical things that have happened . - -``` - -您可以为 `plot` 参数传递不同的层和解码器的注意力模块。 - -```py -translate("este é o primeiro livro que eu fiz.", plot='decoder_layer4_block2') -print ("Real translation: this is the first book i've ever done.") -``` - -```py -Input: este é o primeiro livro que eu fiz. -Predicted translation: this is the first book that i made . - -``` - -![png](img/8317a6a03bbf1bff4913755d5d89c9c6.png) - -```py -Real translation: this is the first book i've ever done. - -``` - -## 总结 - -在本教程中,您已经学习了位置编码,多头注意力,遮挡的重要性以及如何创建一个 transformer。 - -尝试使用一个不同的数据集来训练 transformer。您可也可以通过修改上述的超参数来创建基础 transformer 或者 transformer XL。您也可以使用这里定义的层来创建 [BERT](https://arxiv.org/abs/1810.04805) 并训练最先进的模型。此外,您可以实现 beam search 得到更好的预测。 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/054.md b/Tensorflow/TensorFlow2.0/054.md deleted file mode 100644 index 4fd3a519..00000000 --- a/Tensorflow/TensorFlow2.0/054.md +++ /dev/null @@ -1,996 +0,0 @@ -# Fine-tuning a BERT model - -> 原文:[https://tensorflow.google.cn/official_models/fine_tuning_bert](https://tensorflow.google.cn/official_models/fine_tuning_bert) - -In this example, we will work through fine-tuning a BERT model using the tensorflow-models PIP package. - -The pretrained BERT model this tutorial is based on is also available on [TensorFlow Hub](https://tensorflow.org/hub), to see how to use it refer to the [Hub Appendix](#hub_bert) - -## Setup - -### Install the TensorFlow Model Garden pip package - -* `tf-models-official` is the stable Model Garden package. Note that it may not include the latest changes in the `tensorflow_models` github repo. To include latest changes, you may install `tf-models-nightly`, which is the nightly Model Garden package created daily automatically. -* pip will install all models and dependencies automatically. - -```py -pip install -q tf-models-official==2.3.0 - -``` - -```py -WARNING: You are using pip version 20.2.3; however, version 20.2.4 is available. -You should consider upgrading via the '/tmpfs/src/tf_docs_env/bin/python -m pip install --upgrade pip' command. - -``` - -### Imports - -```py -import os - -import numpy as np -import matplotlib.pyplot as plt - -import tensorflow as tf - -import tensorflow_hub as hub -import tensorflow_datasets as tfds -tfds.disable_progress_bar() - -from official.modeling import tf_utils -from official import nlp -from official.nlp import bert - -# Load the required submodules -import official.nlp.optimization -import official.nlp.bert.bert_models -import official.nlp.bert.configs -import official.nlp.bert.run_classifier -import official.nlp.bert.tokenization -import official.nlp.data.classifier_data_lib -import official.nlp.modeling.losses -import official.nlp.modeling.models -import official.nlp.modeling.networks -``` - -### Resources - -This directory contains the configuration, vocabulary, and a pre-trained checkpoint used in this tutorial: - -```py -gs_folder_bert = "gs://cloud-tpu-checkpoints/bert/keras_bert/uncased_L-12_H-768_A-12" -tf.io.gfile.listdir(gs_folder_bert) -``` - -```py -['bert_config.json', - 'bert_model.ckpt.data-00000-of-00001', - 'bert_model.ckpt.index', - 'vocab.txt'] - -``` - -You can get a pre-trained BERT encoder from [TensorFlow Hub](https://hub.tensorflow.google.cn/tensorflow/bert_en_uncased_L-12_H-768_A-12/2): - -```py -hub_url_bert = "https://hub.tensorflow.google.cn/tensorflow/bert_en_uncased_L-12_H-768_A-12/2" -``` - -## The data - -For this example we used the [GLUE MRPC dataset from TFDS](https://tensorflow.google.cn/datasets/catalog/glue#gluemrpc). - -This dataset is not set up so that it can be directly fed into the BERT model, so this section also handles the necessary preprocessing. - -### Get the dataset from TensorFlow Datasets - -The Microsoft Research Paraphrase Corpus (Dolan & Brockett, 2005) is a corpus of sentence pairs automatically extracted from online news sources, with human annotations for whether the sentences in the pair are semantically equivalent. - -* Number of labels: 2. -* Size of training dataset: 3668. -* Size of evaluation dataset: 408. -* Maximum sequence length of training and evaluation dataset: 128. - -```py -glue, info = tfds.load('glue/mrpc', with_info=True, - # It's small, load the whole dataset - batch_size=-1) -``` - -```py -Downloading and preparing dataset glue/mrpc/1.0.0 (download: 1.43 MiB, generated: Unknown size, total: 1.43 MiB) to /home/kbuilder/tensorflow_datasets/glue/mrpc/1.0.0... -Shuffling and writing examples to /home/kbuilder/tensorflow_datasets/glue/mrpc/1.0.0.incompleteKZIBN9/glue-train.tfrecord -Shuffling and writing examples to /home/kbuilder/tensorflow_datasets/glue/mrpc/1.0.0.incompleteKZIBN9/glue-validation.tfrecord -Shuffling and writing examples to /home/kbuilder/tensorflow_datasets/glue/mrpc/1.0.0.incompleteKZIBN9/glue-test.tfrecord -Dataset glue downloaded and prepared to /home/kbuilder/tensorflow_datasets/glue/mrpc/1.0.0\. Subsequent calls will reuse this data. - -``` - -```py -list(glue.keys()) -``` - -```py -['test', 'train', 'validation'] - -``` - -The `info` object describes the dataset and it's features: - -```py -info.features -``` - -```py -FeaturesDict({ - 'idx': tf.int32, - 'label': ClassLabel(shape=(), dtype=tf.int64, num_classes=2), - 'sentence1': Text(shape=(), dtype=tf.string), - 'sentence2': Text(shape=(), dtype=tf.string), -}) - -``` - -The two classes are: - -```py -info.features['label'].names -``` - -```py -['not_equivalent', 'equivalent'] - -``` - -Here is one example from the training set: - -```py -glue_train = glue['train'] - -for key, value in glue_train.items(): - print(f"{key:9s}: {value[0].numpy()}") -``` - -```py -idx : 1680 -label : 0 -sentence1: b'The identical rovers will act as robotic geologists , searching for evidence of past water .' -sentence2: b'The rovers act as robotic geologists , moving on six wheels .' - -``` - -### The BERT tokenizer - -To fine tune a pre-trained model you need to be sure that you're using exactly the same tokenization, vocabulary, and index mapping as you used during training. - -The BERT tokenizer used in this tutorial is written in pure Python (It's not built out of TensorFlow ops). So you can't just plug it into your model as a `keras.layer` like you can with [`preprocessing.TextVectorization`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/experimental/preprocessing/TextVectorization). - -The following code rebuilds the tokenizer that was used by the base model: - -```py -# Set up tokenizer to generate Tensorflow dataset -tokenizer = bert.tokenization.FullTokenizer( - vocab_file=os.path.join(gs_folder_bert, "vocab.txt"), - do_lower_case=True) - -print("Vocab size:", len(tokenizer.vocab)) -``` - -```py -Vocab size: 30522 - -``` - -Tokenize a sentence: - -```py -tokens = tokenizer.tokenize("Hello TensorFlow!") -print(tokens) -ids = tokenizer.convert_tokens_to_ids(tokens) -print(ids) -``` - -```py -['hello', 'tensor', '##flow', '!'] -[7592, 23435, 12314, 999] - -``` - -### Preprocess the data - -The section manually preprocessed the dataset into the format expected by the model. - -This dataset is small, so preprocessing can be done quickly and easily in memory. For larger datasets the `tf_models` library includes some tools for preprocessing and re-serializing a dataset. See [Appendix: Re-encoding a large dataset](#re_encoding_tools) for details. - -#### Encode the sentences - -The model expects its two inputs sentences to be concatenated together. This input is expected to start with a `[CLS]` "This is a classification problem" token, and each sentence should end with a `[SEP]` "Separator" token: - -```py -tokenizer.convert_tokens_to_ids(['[CLS]', '[SEP]']) -``` - -```py -[101, 102] - -``` - -Start by encoding all the sentences while appending a `[SEP]` token, and packing them into ragged-tensors: - -```py -def encode_sentence(s): - tokens = list(tokenizer.tokenize(s.numpy())) - tokens.append('[SEP]') - return tokenizer.convert_tokens_to_ids(tokens) - -sentence1 = tf.ragged.constant([ - encode_sentence(s) for s in glue_train["sentence1"]]) -sentence2 = tf.ragged.constant([ - encode_sentence(s) for s in glue_train["sentence2"]]) -``` - -```py -print("Sentence1 shape:", sentence1.shape.as_list()) -print("Sentence2 shape:", sentence2.shape.as_list()) -``` - -```py -Sentence1 shape: [3668, None] -Sentence2 shape: [3668, None] - -``` - -Now prepend a `[CLS]` token, and concatenate the ragged tensors to form a single `input_word_ids` tensor for each example. [`RaggedTensor.to_tensor()`](https://tensorflow.google.cn/api_docs/python/tf/RaggedTensor#to_tensor) zero pads to the longest sequence. - -```py -cls = [tokenizer.convert_tokens_to_ids(['[CLS]'])]*sentence1.shape[0] -input_word_ids = tf.concat([cls, sentence1, sentence2], axis=-1) -_ = plt.pcolormesh(input_word_ids.to_tensor()) -``` - -![png](img/10d71bce93ec45ba7076ef15a37bcb28.png) - -#### Mask and input type - -The model expects two additional inputs: - -* The input mask -* The input type - -The mask allows the model to cleanly differentiate between the content and the padding. The mask has the same shape as the `input_word_ids`, and contains a `1` anywhere the `input_word_ids` is not padding. - -```py -input_mask = tf.ones_like(input_word_ids).to_tensor() - -plt.pcolormesh(input_mask) -``` - -```py - - -``` - -![png](img/1f9a0765029471b20952ac80887f73a4.png) - -The "input type" also has the same shape, but inside the non-padded region, contains a `0` or a `1` indicating which sentence the token is a part of. - -```py -type_cls = tf.zeros_like(cls) -type_s1 = tf.zeros_like(sentence1) -type_s2 = tf.ones_like(sentence2) -input_type_ids = tf.concat([type_cls, type_s1, type_s2], axis=-1).to_tensor() - -plt.pcolormesh(input_type_ids) -``` - -```py - - -``` - -![png](img/e06760b4112e8fd989cdb1f7a948bc17.png) - -#### Put it all together - -Collect the above text parsing code into a single function, and apply it to each split of the `glue/mrpc` dataset. - -```py -def encode_sentence(s, tokenizer): - tokens = list(tokenizer.tokenize(s)) - tokens.append('[SEP]') - return tokenizer.convert_tokens_to_ids(tokens) - -def bert_encode(glue_dict, tokenizer): - num_examples = len(glue_dict["sentence1"]) - - sentence1 = tf.ragged.constant([ - encode_sentence(s, tokenizer) - for s in np.array(glue_dict["sentence1"])]) - sentence2 = tf.ragged.constant([ - encode_sentence(s, tokenizer) - for s in np.array(glue_dict["sentence2"])]) - - cls = [tokenizer.convert_tokens_to_ids(['[CLS]'])]*sentence1.shape[0] - input_word_ids = tf.concat([cls, sentence1, sentence2], axis=-1) - - input_mask = tf.ones_like(input_word_ids).to_tensor() - - type_cls = tf.zeros_like(cls) - type_s1 = tf.zeros_like(sentence1) - type_s2 = tf.ones_like(sentence2) - input_type_ids = tf.concat( - [type_cls, type_s1, type_s2], axis=-1).to_tensor() - - inputs = { - 'input_word_ids': input_word_ids.to_tensor(), - 'input_mask': input_mask, - 'input_type_ids': input_type_ids} - - return inputs -``` - -```py -glue_train = bert_encode(glue['train'], tokenizer) -glue_train_labels = glue['train']['label'] - -glue_validation = bert_encode(glue['validation'], tokenizer) -glue_validation_labels = glue['validation']['label'] - -glue_test = bert_encode(glue['test'], tokenizer) -glue_test_labels = glue['test']['label'] -``` - -Each subset of the data has been converted to a dictionary of features, and a set of labels. Each feature in the input dictionary has the same shape, and the number of labels should match: - -```py -for key, value in glue_train.items(): - print(f'{key:15s} shape: {value.shape}') - -print(f'glue_train_labels shape: {glue_train_labels.shape}') -``` - -```py -input_word_ids shape: (3668, 103) -input_mask shape: (3668, 103) -input_type_ids shape: (3668, 103) -glue_train_labels shape: (3668,) - -``` - -## The model - -### Build the model - -The first step is to download the configuration for the pre-trained model. - -```py -import json - -bert_config_file = os.path.join(gs_folder_bert, "bert_config.json") -config_dict = json.loads(tf.io.gfile.GFile(bert_config_file).read()) - -bert_config = bert.configs.BertConfig.from_dict(config_dict) - -config_dict -``` - -```py -{'attention_probs_dropout_prob': 0.1, - 'hidden_act': 'gelu', - 'hidden_dropout_prob': 0.1, - 'hidden_size': 768, - 'initializer_range': 0.02, - 'intermediate_size': 3072, - 'max_position_embeddings': 512, - 'num_attention_heads': 12, - 'num_hidden_layers': 12, - 'type_vocab_size': 2, - 'vocab_size': 30522} - -``` - -The `config` defines the core BERT Model, which is a Keras model to predict the outputs of `num_classes` from the inputs with maximum sequence length `max_seq_length`. - -This function returns both the encoder and the classifier. - -```py -bert_classifier, bert_encoder = bert.bert_models.classifier_model( - bert_config, num_labels=2) -``` - -The classifier has three inputs and one output: - -```py -tf.keras.utils.plot_model(bert_classifier, show_shapes=True, dpi=48) -``` - -![png](img/906a04e5434908ec33033e39f2e83f6b.png) - -Run it on a test batch of data 10 examples from the training set. The output is the logits for the two classes: - -```py -glue_batch = {key: val[:10] for key, val in glue_train.items()} - -bert_classifier( - glue_batch, training=True -).numpy() -``` - -```py -array([[ 0.08382261, 0.34465584], - [ 0.02057236, 0.24053624], - [ 0.04930754, 0.1117427 ], - [ 0.17041089, 0.20810834], - [ 0.21667874, 0.2840511 ], - [ 0.02325345, 0.33799925], - [-0.06198866, 0.13532838], - [ 0.084592 , 0.20711854], - [-0.04323687, 0.17096342], - [ 0.23759182, 0.16801538]], dtype=float32) - -``` - -The `TransformerEncoder` in the center of the classifier above **is** the `bert_encoder`. - -Inspecting the encoder, we see its stack of `Transformer` layers connected to those same three inputs: - -```py -tf.keras.utils.plot_model(bert_encoder, show_shapes=True, dpi=48) -``` - -![png](img/6d5e829de3a867f7bb56dff003b7e217.png) - -### Restore the encoder weights - -When built the encoder is randomly initialized. Restore the encoder's weights from the checkpoint: - -```py -checkpoint = tf.train.Checkpoint(model=bert_encoder) -checkpoint.restore( - os.path.join(gs_folder_bert, 'bert_model.ckpt')).assert_consumed() -``` - -```py - - -``` - -**Note:** The pretrained `TransformerEncoder` is also available on [TensorFlow Hub](https://tensorflow.org/hub). See the [Hub appendix](#hub_bert) for details. - -### Set up the optimizer - -BERT adopts the Adam optimizer with weight decay (aka "[AdamW](https://arxiv.org/abs/1711.05101)"). It also employs a learning rate schedule that firstly warms up from 0 and then decays to 0. - -```py -# Set up epochs and steps -epochs = 3 -batch_size = 32 -eval_batch_size = 32 - -train_data_size = len(glue_train_labels) -steps_per_epoch = int(train_data_size / batch_size) -num_train_steps = steps_per_epoch * epochs -warmup_steps = int(epochs * train_data_size * 0.1 / batch_size) - -# creates an optimizer with learning rate schedule -optimizer = nlp.optimization.create_optimizer( - 2e-5, num_train_steps=num_train_steps, num_warmup_steps=warmup_steps) -``` - -This returns an `AdamWeightDecay` optimizer with the learning rate schedule set: - -```py -type(optimizer) -``` - -```py -official.nlp.optimization.AdamWeightDecay - -``` - -To see an example of how to customize the optimizer and it's schedule, see the [Optimizer schedule appendix](#optiizer_schedule). - -### Train the model - -The metric is accuracy and we use sparse categorical cross-entropy as loss. - -```py -metrics = [tf.keras.metrics.SparseCategoricalAccuracy('accuracy', dtype=tf.float32)] -loss = tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True) - -bert_classifier.compile( - optimizer=optimizer, - loss=loss, - metrics=metrics) - -bert_classifier.fit( - glue_train, glue_train_labels, - validation_data=(glue_validation, glue_validation_labels), - batch_size=32, - epochs=epochs) -``` - -```py -Epoch 1/3 -115/115 [==============================] - 26s 222ms/step - loss: 0.6151 - accuracy: 0.6611 - val_loss: 0.5462 - val_accuracy: 0.7451 -Epoch 2/3 -115/115 [==============================] - 24s 212ms/step - loss: 0.4447 - accuracy: 0.8010 - val_loss: 0.4150 - val_accuracy: 0.8309 -Epoch 3/3 -115/115 [==============================] - 24s 213ms/step - loss: 0.2830 - accuracy: 0.8964 - val_loss: 0.3697 - val_accuracy: 0.8480 - - - -``` - -Now run the fine-tuned model on a custom example to see that it works. - -Start by encoding some sentence pairs: - -```py -my_examples = bert_encode( - glue_dict = { - 'sentence1':[ - 'The rain in Spain falls mainly on the plain.', - 'Look I fine tuned BERT.'], - 'sentence2':[ - 'It mostly rains on the flat lands of Spain.', - 'Is it working? This does not match.'] - }, - tokenizer=tokenizer) -``` - -The model should report class `1` "match" for the first example and class `0` "no-match" for the second: - -```py -result = bert_classifier(my_examples, training=False) - -result = tf.argmax(result).numpy() -result -``` - -```py -array([1, 0]) - -``` - -```py -np.array(info.features['label'].names)[result] -``` - -```py -array(['equivalent', 'not_equivalent'], dtype=', - 'dropout_rate': 0.1, - 'initializer': , - 'max_sequence_length': 512, - 'num_layers': 12} - -``` - -```py -manual_encoder = nlp.modeling.networks.TransformerEncoder(**transformer_config) -``` - -Restore the weights: - -```py -checkpoint = tf.train.Checkpoint(model=manual_encoder) -checkpoint.restore( - os.path.join(gs_folder_bert, 'bert_model.ckpt')).assert_consumed() -``` - -```py - - -``` - -Test run it: - -```py -result = manual_encoder(my_examples, training=True) - -print("Sequence output shape:", result[0].shape) -print("Pooled output shape:", result[1].shape) -``` - -```py -Sequence output shape: (2, 23, 768) -Pooled output shape: (2, 768) - -``` - -Wrap it in a classifier: - -```py -manual_classifier = nlp.modeling.models.BertClassifier( - bert_encoder, - num_classes=2, - dropout_rate=transformer_config['dropout_rate'], - initializer=tf.keras.initializers.TruncatedNormal( - stddev=bert_config.initializer_range)) -``` - -```py -manual_classifier(my_examples, training=True).numpy() -``` - -```py -array([[ 0.07863025, -0.02940944], - [ 0.30274656, 0.27299827]], dtype=float32) - -``` - -### Optimizers and schedules - -The optimizer used to train the model was created using the `nlp.optimization.create_optimizer` function: - -```py -optimizer = nlp.optimization.create_optimizer( - 2e-5, num_train_steps=num_train_steps, num_warmup_steps=warmup_steps) -``` - -That high level wrapper sets up the learning rate schedules and the optimizer. - -The base learning rate schedule used here is a linear decay to zero over the training run: - -```py -epochs = 3 -batch_size = 32 -eval_batch_size = 32 - -train_data_size = len(glue_train_labels) -steps_per_epoch = int(train_data_size / batch_size) -num_train_steps = steps_per_epoch * epochs -``` - -```py -decay_schedule = tf.keras.optimizers.schedules.PolynomialDecay( - initial_learning_rate=2e-5, - decay_steps=num_train_steps, - end_learning_rate=0) - -plt.plot([decay_schedule(n) for n in range(num_train_steps)]) -``` - -```py -[] - -``` - -![png](img/868f946086995ef931b7b454d904e14b.png) - -This, in turn is wrapped in a `WarmUp` schedule that linearly increases the learning rate to the target value over the first 10% of training: - -```py -warmup_steps = num_train_steps * 0.1 - -warmup_schedule = nlp.optimization.WarmUp( - initial_learning_rate=2e-5, - decay_schedule_fn=decay_schedule, - warmup_steps=warmup_steps) - -# The warmup overshoots, because it warms up to the `initial_learning_rate` -# following the original implementation. You can set -# `initial_learning_rate=decay_schedule(warmup_steps)` if you don't like the -# overshoot. -plt.plot([warmup_schedule(n) for n in range(num_train_steps)]) -``` - -```py -[] - -``` - -![png](img/c542bc6784512a8abdc2e3a85a1e1905.png) - -Then create the `nlp.optimization.AdamWeightDecay` using that schedule, configured for the BERT model: - -```py -optimizer = nlp.optimization.AdamWeightDecay( - learning_rate=warmup_schedule, - weight_decay_rate=0.01, - epsilon=1e-6, - exclude_from_weight_decay=['LayerNorm', 'layer_norm', 'bias']) -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/055.md b/Tensorflow/TensorFlow2.0/055.md deleted file mode 100644 index 26d06b71..00000000 --- a/Tensorflow/TensorFlow2.0/055.md +++ /dev/null @@ -1 +0,0 @@ -# 结构化数据 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/056.md b/Tensorflow/TensorFlow2.0/056.md deleted file mode 100644 index a6ffa462..00000000 --- a/Tensorflow/TensorFlow2.0/056.md +++ /dev/null @@ -1,16973 +0,0 @@ -# 对结构化数据进行分类 - -> 原文:[https://tensorflow.google.cn/tutorials/structured_data/feature_columns](https://tensorflow.google.cn/tutorials/structured_data/feature_columns) - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -本教程演示了如何对结构化数据进行分类(例如,CSV 中的表格数据)。我们将使用 [Keras](https://tensorflow.google.cn/guide/keras) 来定义模型,将[特征列(feature columns)](https://tensorflow.google.cn/guide/feature_columns) 作为从 CSV 中的列(columns)映射到用于训练模型的特征(features)的桥梁。本教程包括了以下内容的完整代码: - -* 用 [Pandas](https://pandas.pydata.org/) 导入 CSV 文件。 -* 用 [tf.data](https://tensorflow.google.cn/guide/datasets) 建立了一个输入流水线(pipeline),用于对行进行分批(batch)和随机排序(shuffle)。 -* 用特征列将 CSV 中的列映射到用于训练模型的特征。 -* 用 Keras 构建,训练并评估模型。 - -## 数据集 - -我们将使用一个小型 [数据集](https://archive.ics.uci.edu/ml/datasets/heart+Disease),该数据集由克利夫兰心脏病诊所基金会(Cleveland Clinic Foundation for Heart Disease)提供。CSV 中有几百行数据。每行描述了一个病人(patient),每列描述了一个属性(attribute)。我们将使用这些信息来预测一位病人是否患有心脏病,这是在该数据集上的二分类任务。 - -下面是该数据集的[描述](https://archive.ics.uci.edu/ml/machine-learning-databases/heart-disease/heart-disease.names)。 请注意,有数值(numeric)和类别(categorical)类型的列。 - -> | 列 | 描述 | 特征类型 | 数据类型 | -> | --- | --- | --- | --- | -> | Age | 年龄以年为单位 | Numerical | integer | -> | Sex | (1 = 男;0 = 女) | Categorical | integer | -> | CP | 胸痛类型(0,1,2,3,4) | Categorical | integer | -> | Trestbpd | 静息血压(入院时,以 mm Hg 计) | Numerical | integer | -> | Chol | 血清胆固醇(mg/dl) | Numerical | integer | -> | FBS | (空腹血糖> 120 mg/dl)(1 = true;0 = false) | Categorical | integer | -> | RestECG | 静息心电图结果(0,1,2) | Categorical | integer | -> | Thalach | 达到的最大心率 | Numerical | integer | -> | Exang | 运动诱发心绞痛(1 =是;0 =否) | Categorical | integer | -> | Oldpeak | 与休息时相比由运动引起的 ST 节段下降 | Numerical | integer | -> | Slope | 在运动高峰 ST 段的斜率 | Numerical | float | -> | CA | 荧光透视法染色的大血管动脉(0-3)的数量 | Numerical | integer | -> | Thal | 3 =正常;6 =固定缺陷;7 =可逆缺陷 | Categorical | string | -> | Target | 心脏病诊断(1 = true;0 = false) | Classification | integer | - -## 导入 TensorFlow 和其他库 - -```py -pip install -q sklearn - -``` - -```py -WARNING: You are using pip version 20.2.2; however, version 20.2.3 is available. -You should consider upgrading via the '/tmpfs/src/tf_docs_env/bin/python -m pip install --upgrade pip' command. - -``` - -```py -import numpy as np -import pandas as pd - -import tensorflow as tf - -from tensorflow import feature_column -from tensorflow.keras import layers -from sklearn.model_selection import train_test_split -``` - -## 使用 Pandas 创建一个 dataframe - -[Pandas](https://pandas.pydata.org/) 是一个 Python 库,它有许多有用的实用程序,用于加载和处理结构化数据。我们将使用 Pandas 从 URL 下载数据集,并将其加载到 dataframe 中。 - -```py -URL = 'https://storage.googleapis.com/applied-dl/heart.csv' -dataframe = pd.read_csv(URL) -dataframe.head() -``` - - - -## 将 dataframe 拆分为训练、验证和测试集 - -我们下载的数据集是一个 CSV 文件。 我们将其拆分为训练、验证和测试集。 - -```py -train, test = train_test_split(dataframe, test_size=0.2) -train, val = train_test_split(train, test_size=0.2) -print(len(train), 'train examples') -print(len(val), 'validation examples') -print(len(test), 'test examples') -``` - -```py -193 train examples -49 validation examples -61 test examples - -``` - -## 用 tf.data 创建输入流水线 - -接下来,我们将使用 [tf.data](https://tensorflow.google.cn/guide/datasets) 包装 dataframe。这让我们能将特征列作为一座桥梁,该桥梁将 Pandas dataframe 中的列映射到用于训练模型的特征。如果我们使用一个非常大的 CSV 文件(非常大以至于它不能放入内存),我们将使用 tf.data 直接从磁盘读取它。本教程不涉及这一点。 - -```py -# 一种从 Pandas Dataframe 创建 tf.data 数据集的实用程序方法(utility method) -def df_to_dataset(dataframe, shuffle=True, batch_size=32): - dataframe = dataframe.copy() - labels = dataframe.pop('target') - ds = tf.data.Dataset.from_tensor_slices((dict(dataframe), labels)) - if shuffle: - ds = ds.shuffle(buffer_size=len(dataframe)) - ds = ds.batch(batch_size) - return ds -``` - -```py -batch_size = 5 # 小批量大小用于演示 -train_ds = df_to_dataset(train, batch_size=batch_size) -val_ds = df_to_dataset(val, shuffle=False, batch_size=batch_size) -test_ds = df_to_dataset(test, shuffle=False, batch_size=batch_size) -``` - -## 理解输入流水线 - -现在我们已经创建了输入流水线,让我们调用它来查看它返回的数据的格式。 我们使用了一小批量大小来保持输出的可读性。 - -```py -for feature_batch, label_batch in train_ds.take(1): - print('Every feature:', list(feature_batch.keys())) - print('A batch of ages:', feature_batch['age']) - print('A batch of targets:', label_batch ) -``` - -```py -Every feature: ['age', 'sex', 'cp', 'trestbps', 'chol', 'fbs', 'restecg', 'thalach', 'exang', 'oldpeak', 'slope', 'ca', 'thal'] -A batch of ages: tf.Tensor([58 44 44 50 54], shape=(5,), dtype=int64) -A batch of targets: tf.Tensor([0 1 0 0 1], shape=(5,), dtype=int64) - -``` - -我们可以看到数据集返回了一个字典,该字典从列名称(来自 dataframe)映射到 dataframe 中行的列值。 - -## 演示几种特征列 - -TensorFlow 提供了多种特征列。本节中,我们将创建几类特征列,并演示特征列如何转换 dataframe 中的列。 - -```py -# 我们将使用该批数据演示几种特征列 -example_batch = next(iter(train_ds))[0] -``` - -```py -# 用于创建一个特征列 -# 并转换一批次数据的一个实用程序方法 -def demo(feature_column): - feature_layer = layers.DenseFeatures(feature_column) - print(feature_layer(example_batch).numpy()) -``` - -### 数值列 - -一个特征列的输出将成为模型的输入(使用上面定义的 demo 函数,我们将能准确地看到 dataframe 中的每列的转换方式)。 [数值列(numeric column)](https://tensorflow.google.cn/api_docs/python/tf/feature_column/numeric_column) 是最简单的列类型。它用于表示实数特征。使用此列时,模型将从 dataframe 中接收未更改的列值。 - -```py -age = feature_column.numeric_column("age") -demo(age) -``` - -```py -WARNING:tensorflow:Layer dense_features is casting an input tensor from dtype float64 to the layer's dtype of float32, which is new behavior in TensorFlow 2\. The layer has dtype float32 because its dtype defaults to floatx. - -If you intended to run this layer in float32, you can safely ignore this warning. If in doubt, this warning is likely only an issue if you are porting a TensorFlow 1.X model to TensorFlow 2. - -To change all layers to have dtype float64 by default, call `tf.keras.backend.set_floatx('float64')`. To change just this layer, pass dtype='float64' to the layer constructor. If you are the author of this layer, you can disable autocasting by passing autocast=False to the base Layer constructor. - -[[63.] - [62.] - [59.] - [74.] - [68.]] - -``` - -在这个心脏病数据集中,dataframe 中的大多数列都是数值列。 - -### 分桶列 - -通常,您不希望将数字直接输入模型,而是根据数值范围将其值分成不同的类别。考虑代表一个人年龄的原始数据。我们可以用 [分桶列(bucketized column)](https://tensorflow.google.cn/api_docs/python/tf/feature_column/bucketized_column)将年龄分成几个分桶(buckets),而不是将年龄表示成数值列。请注意下面的 one-hot 数值表示每行匹配的年龄范围。 - -```py -age_buckets = feature_column.bucketized_column(age, boundaries=[18, 25, 30, 35, 40, 45, 50, 55, 60, 65]) -demo(age_buckets) -``` - -```py -WARNING:tensorflow:Layer dense_features_1 is casting an input tensor from dtype float64 to the layer's dtype of float32, which is new behavior in TensorFlow 2\. The layer has dtype float32 because its dtype defaults to floatx. - -If you intended to run this layer in float32, you can safely ignore this warning. If in doubt, this warning is likely only an issue if you are porting a TensorFlow 1.X model to TensorFlow 2. - -To change all layers to have dtype float64 by default, call `tf.keras.backend.set_floatx('float64')`. To change just this layer, pass dtype='float64' to the layer constructor. If you are the author of this layer, you can disable autocasting by passing autocast=False to the base Layer constructor. - -[[0\. 0\. 0\. 0\. 0\. 0\. 0\. 0\. 0\. 1\. 0.] - [0\. 0\. 0\. 0\. 0\. 0\. 0\. 0\. 0\. 1\. 0.] - [0\. 0\. 0\. 0\. 0\. 0\. 0\. 0\. 1\. 0\. 0.] - [0\. 0\. 0\. 0\. 0\. 0\. 0\. 0\. 0\. 0\. 1.] - [0\. 0\. 0\. 0\. 0\. 0\. 0\. 0\. 0\. 0\. 1.]] - -``` - -### 分类列 - -在此数据集中,thal 用字符串表示(如 'fixed','normal',或 'reversible')。我们无法直接将字符串提供给模型。相反,我们必须首先将它们映射到数值。分类词汇列(categorical vocabulary columns)提供了一种用 one-hot 向量表示字符串的方法(就像您在上面看到的年龄分桶一样)。词汇表可以用 [categorical_column_with_vocabulary_list](https://tensorflow.google.cn/api_docs/python/tf/feature_column/categorical_column_with_vocabulary_list) 作为 list 传递,或者用 [categorical_column_with_vocabulary_file](https://tensorflow.google.cn/api_docs/python/tf/feature_column/categorical_column_with_vocabulary_file) 从文件中加载。 - -```py -thal = feature_column.categorical_column_with_vocabulary_list( - 'thal', ['fixed', 'normal', 'reversible']) - -thal_one_hot = feature_column.indicator_column(thal) -demo(thal_one_hot) -``` - -```py -WARNING:tensorflow:Layer dense_features_2 is casting an input tensor from dtype float64 to the layer's dtype of float32, which is new behavior in TensorFlow 2\. The layer has dtype float32 because its dtype defaults to floatx. - -If you intended to run this layer in float32, you can safely ignore this warning. If in doubt, this warning is likely only an issue if you are porting a TensorFlow 1.X model to TensorFlow 2. - -To change all layers to have dtype float64 by default, call `tf.keras.backend.set_floatx('float64')`. To change just this layer, pass dtype='float64' to the layer constructor. If you are the author of this layer, you can disable autocasting by passing autocast=False to the base Layer constructor. - -[[0\. 0\. 1.] - [0\. 0\. 1.] - [1\. 0\. 0.] - [0\. 1\. 0.] - [0\. 0\. 1.]] - -``` - -在更复杂的数据集中,许多列都是分类列(如 strings)。在处理分类数据时,特征列最有价值。尽管在该数据集中只有一列分类列,但我们将使用它来演示在处理其他数据集时,可以使用的几种重要的特征列。 - -### 嵌入列 - -假设我们不是只有几个可能的字符串,而是每个类别有数千(或更多)值。 由于多种原因,随着类别数量的增加,使用 one-hot 编码训练神经网络变得不可行。我们可以使用嵌入列来克服此限制。[嵌入列(embedding column)](https://tensorflow.google.cn/api_docs/python/tf/feature_column/embedding_column)将数据表示为一个低维度密集向量,而非多维的 one-hot 向量,该低维度密集向量可以包含任何数,而不仅仅是 0 或 1。嵌入的大小(在下面的示例中为 8)是必须调整的参数。 - -关键点:当分类列具有许多可能的值时,最好使用嵌入列。我们在这里使用嵌入列用于演示目的,为此您有一个完整的示例,以在将来可以修改用于其他数据集。 - -```py -# 注意到嵌入列的输入是我们之前创建的类别列 -thal_embedding = feature_column.embedding_column(thal, dimension=8) -demo(thal_embedding) -``` - -```py -WARNING:tensorflow:Layer dense_features_3 is casting an input tensor from dtype float64 to the layer's dtype of float32, which is new behavior in TensorFlow 2\. The layer has dtype float32 because its dtype defaults to floatx. - -If you intended to run this layer in float32, you can safely ignore this warning. If in doubt, this warning is likely only an issue if you are porting a TensorFlow 1.X model to TensorFlow 2. - -To change all layers to have dtype float64 by default, call `tf.keras.backend.set_floatx('float64')`. To change just this layer, pass dtype='float64' to the layer constructor. If you are the author of this layer, you can disable autocasting by passing autocast=False to the base Layer constructor. - -[[ 0.00543996 -0.5059579 0.0389499 -0.20236802 0.11128058 0.59121 - 0.14891742 -0.11942385] - [ 0.00543996 -0.5059579 0.0389499 -0.20236802 0.11128058 0.59121 - 0.14891742 -0.11942385] - [ 0.09787773 -0.5861865 -0.3713007 -0.1747458 -0.01538717 0.55458224 - 0.12537968 -0.11748305] - [-0.00701649 0.28291813 0.23547529 -0.5102454 -0.5388726 0.5154376 - 0.12235989 0.44484815] - [ 0.00543996 -0.5059579 0.0389499 -0.20236802 0.11128058 0.59121 - 0.14891742 -0.11942385]] - -``` - -### 经过哈希处理的特征列 - -表示具有大量数值的分类列的另一种方法是使用 [categorical_column_with_hash_bucket](https://tensorflow.google.cn/api_docs/python/tf/feature_column/categorical_column_with_hash_bucket)。该特征列计算输入的一个哈希值,然后选择一个 `hash_bucket_size` 分桶来编码字符串。使用此列时,您不需要提供词汇表,并且可以选择使 hash_buckets 的数量远远小于实际类别的数量以节省空间。 - -关键点:该技术的一个重要缺点是可能存在冲突,不同的字符串被映射到同一个范围。实际上,无论如何,经过哈希处理的特征列对某些数据集都有效。 - -```py -thal_hashed = feature_column.categorical_column_with_hash_bucket( - 'thal', hash_bucket_size=1000) -demo(feature_column.indicator_column(thal_hashed)) -``` - -```py -WARNING:tensorflow:Layer dense_features_4 is casting an input tensor from dtype float64 to the layer's dtype of float32, which is new behavior in TensorFlow 2\. The layer has dtype float32 because its dtype defaults to floatx. - -If you intended to run this layer in float32, you can safely ignore this warning. If in doubt, this warning is likely only an issue if you are porting a TensorFlow 1.X model to TensorFlow 2. - -To change all layers to have dtype float64 by default, call `tf.keras.backend.set_floatx('float64')`. To change just this layer, pass dtype='float64' to the layer constructor. If you are the author of this layer, you can disable autocasting by passing autocast=False to the base Layer constructor. - -[[0\. 0\. 0\. ... 0\. 0\. 0.] - [0\. 0\. 0\. ... 0\. 0\. 0.] - [0\. 0\. 0\. ... 0\. 0\. 0.] - [0\. 0\. 0\. ... 0\. 0\. 0.] - [0\. 0\. 0\. ... 0\. 0\. 0.]] - -``` - -### 组合的特征列 - -将多种特征组合到一个特征中,称为[特征组合(feature crosses)](https://developers.google.cn/machine-learning/glossary/#feature_cross),它让模型能够为每种特征组合学习单独的权重。此处,我们将创建一个 age 和 thal 组合的新特征。请注意,`crossed_column` 不会构建所有可能组合的完整列表(可能非常大)。相反,它由 `hashed_column` 支持,因此您可以选择表的大小。 - -```py -crossed_feature = feature_column.crossed_column([age_buckets, thal], hash_bucket_size=1000) -demo(feature_column.indicator_column(crossed_feature)) -``` - -```py -WARNING:tensorflow:Layer dense_features_5 is casting an input tensor from dtype float64 to the layer's dtype of float32, which is new behavior in TensorFlow 2\. The layer has dtype float32 because its dtype defaults to floatx. - -If you intended to run this layer in float32, you can safely ignore this warning. If in doubt, this warning is likely only an issue if you are porting a TensorFlow 1.X model to TensorFlow 2. - -To change all layers to have dtype float64 by default, call `tf.keras.backend.set_floatx('float64')`. To change just this layer, pass dtype='float64' to the layer constructor. If you are the author of this layer, you can disable autocasting by passing autocast=False to the base Layer constructor. - -[[0\. 0\. 0\. ... 0\. 0\. 0.] - [0\. 0\. 0\. ... 0\. 0\. 0.] - [0\. 0\. 0\. ... 0\. 0\. 0.] - [0\. 0\. 0\. ... 0\. 0\. 0.] - [0\. 0\. 0\. ... 0\. 0\. 0.]] - -``` - -## 选择要使用的列 - -我们已经了解了如何使用几种类型的特征列。 现在我们将使用它们来训练模型。本教程的目标是向您展示使用特征列所需的完整代码(例如,机制)。我们任意地选择了几列来训练我们的模型。 - -关键点:如果您的目标是建立一个准确的模型,请尝试使用您自己的更大的数据集,并仔细考虑哪些特征最有意义,以及如何表示它们。 - -```py -feature_columns = [] - -# 数值列 -for header in ['age', 'trestbps', 'chol', 'thalach', 'oldpeak', 'slope', 'ca']: - feature_columns.append(feature_column.numeric_column(header)) - -# 分桶列 -age_buckets = feature_column.bucketized_column(age, boundaries=[18, 25, 30, 35, 40, 45, 50, 55, 60, 65]) -feature_columns.append(age_buckets) - -# 分类列 -thal = feature_column.categorical_column_with_vocabulary_list( - 'thal', ['fixed', 'normal', 'reversible']) -thal_one_hot = feature_column.indicator_column(thal) -feature_columns.append(thal_one_hot) - -# 嵌入列 -thal_embedding = feature_column.embedding_column(thal, dimension=8) -feature_columns.append(thal_embedding) - -# 组合列 -crossed_feature = feature_column.crossed_column([age_buckets, thal], hash_bucket_size=1000) -crossed_feature = feature_column.indicator_column(crossed_feature) -feature_columns.append(crossed_feature) -``` - -### 建立一个新的特征层 - -现在我们已经定义了我们的特征列,我们将使用[密集特征(DenseFeatures)](https://tensorflow.google.cn/versions/r2.0/api_docs/python/tf/keras/layers/DenseFeatures)层将特征列输入到我们的 Keras 模型中。 - -```py -feature_layer = tf.keras.layers.DenseFeatures(feature_columns) -``` - -之前,我们使用一个小批量大小来演示特征列如何运转。我们将创建一个新的更大批量的输入流水线。 - -```py -batch_size = 32 -train_ds = df_to_dataset(train, batch_size=batch_size) -val_ds = df_to_dataset(val, shuffle=False, batch_size=batch_size) -test_ds = df_to_dataset(test, shuffle=False, batch_size=batch_size) -``` - -## 创建,编译和训练模型 - -```py -model = tf.keras.Sequential([ - feature_layer, - layers.Dense(128, activation='relu'), - layers.Dense(128, activation='relu'), - layers.Dense(1, activation='sigmoid') -]) - -model.compile(optimizer='adam', - loss='binary_crossentropy', - metrics=['accuracy'], - run_eagerly=True) - -model.fit(train_ds, - validation_data=val_ds, - epochs=5) -``` - -```py -Epoch 1/5 -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layer dense_features_6 is casting an input tensor from dtype float64 to the layer's dtype of float32, which is new behavior in TensorFlow 2\. The layer has dtype float32 because its dtype defaults to floatx. - -If you intended to run this layer in float32, you can safely ignore this warning. If in doubt, this warning is likely only an issue if you are porting a TensorFlow 1.X model to TensorFlow 2. - -To change all layers to have dtype float64 by default, call `tf.keras.backend.set_floatx('float64')`. To change just this layer, pass dtype='float64' to the layer constructor. If you are the author of this layer, you can disable autocasting by passing autocast=False to the base Layer constructor. - -1/7 [===>..........................] - ETA: 0s - loss: 1.9156 - accuracy: 0.8438WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -3/7 [===========>..................] - ETA: 0s - loss: 2.4590 - accuracy: 0.6354WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -5/7 [====================>.........] - ETA: 0s - loss: 2.0828 - accuracy: 0.5938WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -7/7 [==============================] - ETA: 0s - loss: 2.0670 - accuracy: 0.6062WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -7/7 [==============================] - 0s 44ms/step - loss: 2.0670 - accuracy: 0.6062 - val_loss: 1.8843 - val_accuracy: 0.7347 -Epoch 2/5 -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -1/7 [===>..........................] - ETA: 0s - loss: 2.3728 - accuracy: 0.6875WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -3/7 [===========>..................] - ETA: 0s - loss: 2.1748 - accuracy: 0.6562WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -5/7 [====================>.........] - ETA: 0s - loss: 1.5868 - accuracy: 0.6313WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -7/7 [==============================] - ETA: 0s - loss: 1.5046 - accuracy: 0.5803WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -7/7 [==============================] - 0s 42ms/step - loss: 1.5046 - accuracy: 0.5803 - val_loss: 0.5387 - val_accuracy: 0.7551 -Epoch 3/5 -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -1/7 [===>..........................] - ETA: 0s - loss: 0.4726 - accuracy: 0.7500WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -3/7 [===========>..................] - ETA: 0s - loss: 0.9738 - accuracy: 0.6979WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -5/7 [====================>.........] - ETA: 0s - loss: 1.0254 - accuracy: 0.7188WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -7/7 [==============================] - ETA: 0s - loss: 1.0386 - accuracy: 0.6995WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -7/7 [==============================] - 0s 42ms/step - loss: 1.0386 - accuracy: 0.6995 - val_loss: 0.6039 - val_accuracy: 0.6531 -Epoch 4/5 -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -1/7 [===>..........................] - ETA: 0s - loss: 0.5663 - accuracy: 0.6875WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -3/7 [===========>..................] - ETA: 0s - loss: 0.6564 - accuracy: 0.6562WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -5/7 [====================>.........] - ETA: 0s - loss: 0.6322 - accuracy: 0.6750WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -7/7 [==============================] - ETA: 0s - loss: 0.6209 - accuracy: 0.6943WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -7/7 [==============================] - 0s 43ms/step - loss: 0.6209 - accuracy: 0.6943 - val_loss: 0.6867 - val_accuracy: 0.7347 -Epoch 5/5 -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -1/7 [===>..........................] - ETA: 0s - loss: 0.8235 - accuracy: 0.6562WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -3/7 [===========>..................] - ETA: 0s - loss: 0.7040 - accuracy: 0.6979WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -5/7 [====================>.........] - ETA: 0s - loss: 0.6946 - accuracy: 0.7000WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -7/7 [==============================] - ETA: 0s - loss: 0.6719 - accuracy: 0.7098WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -7/7 [==============================] - 0s 41ms/step - loss: 0.6719 - accuracy: 0.7098 - val_loss: 0.5845 - val_accuracy: 0.7347 - - - -``` - -```py -loss, accuracy = model.evaluate(test_ds) -print("Accuracy", accuracy) -``` - -```py -WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -1/2 [==============>...............] - ETA: 0s - loss: 0.3588 - accuracy: 0.8125WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: {'age': , 'sex': , 'cp': , 'trestbps': , 'chol': , 'fbs': , 'restecg': , 'thalach': , 'exang': , 'oldpeak': , 'slope': , 'ca': , 'thal': } -Consider rewriting this model with the Functional API. -2/2 [==============================] - 0s 14ms/step - loss: 0.4201 - accuracy: 0.8197 -Accuracy 0.8196721076965332 - -``` - -关键点:通常使用更大更复杂的数据集进行深度学习,您将看到最佳结果。使用像这样的小数据集时,我们建议使用决策树或随机森林作为强有力的基准。本教程的目的不是训练一个准确的模型,而是演示处理结构化数据的机制,这样,在将来使用自己的数据集时,您有可以使用的代码作为起点。 - -### 下一步 - -了解有关分类结构化数据的更多信息的最佳方法是亲自尝试。我们建议寻找另一个可以使用的数据集,并使用和上面相似的代码,训练一个模型,对其分类。要提高准确率,请仔细考虑模型中包含哪些特征,以及如何表示这些特征。 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/057.md b/Tensorflow/TensorFlow2.0/057.md deleted file mode 100644 index 5f42c422..00000000 --- a/Tensorflow/TensorFlow2.0/057.md +++ /dev/null @@ -1,1278 +0,0 @@ -# Classification on imbalanced data - -> 原文:[https://tensorflow.google.cn/tutorials/structured_data/imbalanced_data](https://tensorflow.google.cn/tutorials/structured_data/imbalanced_data) - - - -This tutorial demonstrates how to classify a highly imbalanced dataset in which the number of examples in one class greatly outnumbers the examples in another. You will work with the [Credit Card Fraud Detection](https://www.kaggle.com/mlg-ulb/creditcardfraud) dataset hosted on Kaggle. The aim is to detect a mere 492 fraudulent transactions from 284,807 transactions in total. You will use [Keras](https://tensorflow.google.cn/guide/keras/overview) to define the model and [class weights](https://tensorflow.google.cn/versions/r2.0/api_docs/python/tf/keras/Model) to help the model learn from the imbalanced data. . - -This tutorial contains complete code to: - -* Load a CSV file using Pandas. -* Create train, validation, and test sets. -* Define and train a model using Keras (including setting class weights). -* Evaluate the model using various metrics (including precision and recall). -* Try common techniques for dealing with imbalanced data like: - * Class weighting - * Oversampling - -## Setup - -```py -import tensorflow as tf -from tensorflow import keras - -import os -import tempfile - -import matplotlib as mpl -import matplotlib.pyplot as plt -import numpy as np -import pandas as pd -import seaborn as sns - -import sklearn -from sklearn.metrics import confusion_matrix -from sklearn.model_selection import train_test_split -from sklearn.preprocessing import StandardScaler -``` - -```py -mpl.rcParams['figure.figsize'] = (12, 10) -colors = plt.rcParams['axes.prop_cycle'].by_key()['color'] -``` - -## Data processing and exploration - -### Download the Kaggle Credit Card Fraud data set - -Pandas is a Python library with many helpful utilities for loading and working with structured data and can be used to download CSVs into a dataframe. - -**Note:** This dataset has been collected and analysed during a research collaboration of Worldline and the [Machine Learning Group](http://mlg.ulb.ac.be) of ULB (Université Libre de Bruxelles) on big data mining and fraud detection. More details on current and past projects on related topics are available [here](https://www.researchgate.net/project/Fraud-detection-5) and the page of the [DefeatFraud](https://mlg.ulb.ac.be/wordpress/portfolio_page/defeatfraud-assessment-and-validation-of-deep-feature-engineering-and-learning-solutions-for-fraud-detection/) project - -```py -file = tf.keras.utils -raw_df = pd.read_csv('https://storage.googleapis.com/download.tensorflow.org/data/creditcard.csv') -raw_df.head() -``` - - - -```py -raw_df[['Time', 'V1', 'V2', 'V3', 'V4', 'V5', 'V26', 'V27', 'V28', 'Amount', 'Class']].describe() -``` - - - -### Examine the class label imbalance - -Let's look at the dataset imbalance: - -```py -neg, pos = np.bincount(raw_df['Class']) -total = neg + pos -print('Examples:\n Total: {}\n Positive: {} ({:.2f}% of total)\n'.format( - total, pos, 100 * pos / total)) -``` - -```py -Examples: - Total: 284807 - Positive: 492 (0.17% of total) - -``` - -This shows the small fraction of positive samples. - -### Clean, split and normalize the data - -The raw data has a few issues. First the `Time` and `Amount` columns are too variable to use directly. Drop the `Time` column (since it's not clear what it means) and take the log of the `Amount` column to reduce its range. - -```py -cleaned_df = raw_df.copy() - -# You don't want the `Time` column. -cleaned_df.pop('Time') - -# The `Amount` column covers a huge range. Convert to log-space. -eps = 0.001 # 0 => 0.1¢ -cleaned_df['Log Ammount'] = np.log(cleaned_df.pop('Amount')+eps) -``` - -Split the dataset into train, validation, and test sets. The validation set is used during the model fitting to evaluate the loss and any metrics, however the model is not fit with this data. The test set is completely unused during the training phase and is only used at the end to evaluate how well the model generalizes to new data. This is especially important with imbalanced datasets where [overfitting](https://developers.google.cn/machine-learning/crash-course/generalization/peril-of-overfitting) is a significant concern from the lack of training data. - -```py -# Use a utility from sklearn to split and shuffle our dataset. -train_df, test_df = train_test_split(cleaned_df, test_size=0.2) -train_df, val_df = train_test_split(train_df, test_size=0.2) - -# Form np arrays of labels and features. -train_labels = np.array(train_df.pop('Class')) -bool_train_labels = train_labels != 0 -val_labels = np.array(val_df.pop('Class')) -test_labels = np.array(test_df.pop('Class')) - -train_features = np.array(train_df) -val_features = np.array(val_df) -test_features = np.array(test_df) -``` - -Normalize the input features using the sklearn StandardScaler. This will set the mean to 0 and standard deviation to 1. - -**Note:** The `StandardScaler` is only fit using the `train_features` to be sure the model is not peeking at the validation or test sets. - -```py -scaler = StandardScaler() -train_features = scaler.fit_transform(train_features) - -val_features = scaler.transform(val_features) -test_features = scaler.transform(test_features) - -train_features = np.clip(train_features, -5, 5) -val_features = np.clip(val_features, -5, 5) -test_features = np.clip(test_features, -5, 5) - -print('Training labels shape:', train_labels.shape) -print('Validation labels shape:', val_labels.shape) -print('Test labels shape:', test_labels.shape) - -print('Training features shape:', train_features.shape) -print('Validation features shape:', val_features.shape) -print('Test features shape:', test_features.shape) -``` - -```py -Training labels shape: (182276,) -Validation labels shape: (45569,) -Test labels shape: (56962,) -Training features shape: (182276, 29) -Validation features shape: (45569, 29) -Test features shape: (56962, 29) - -``` - -**Caution:** If you want to deploy a model, it's critical that you preserve the preprocessing calculations. The easiest way to implement them as layers, and attach them to your model before export. - -### Look at the data distribution - -Next compare the distributions of the positive and negative examples over a few features. Good questions to ask yourself at this point are: - -* Do these distributions make sense? - * Yes. You've normalized the input and these are mostly concentrated in the `+/- 2` range. -* Can you see the difference between the distributions? - * Yes the positive examples contain a much higher rate of extreme values. - -```py -pos_df = pd.DataFrame(train_features[ bool_train_labels], columns=train_df.columns) -neg_df = pd.DataFrame(train_features[~bool_train_labels], columns=train_df.columns) - -sns.jointplot(pos_df['V5'], pos_df['V6'], - kind='hex', xlim=(-5,5), ylim=(-5,5)) -plt.suptitle("Positive distribution") - -sns.jointplot(neg_df['V5'], neg_df['V6'], - kind='hex', xlim=(-5,5), ylim=(-5,5)) -_ = plt.suptitle("Negative distribution") -``` - -```py -/home/kbuilder/.local/lib/python3.6/site-packages/seaborn/_decorators.py:43: FutureWarning: Pass the following variables as keyword args: x, y. From version 0.12, the only valid positional argument will be `data`, and passing other arguments without an explicit keyword will result in an error or misinterpretation. - FutureWarning -/home/kbuilder/.local/lib/python3.6/site-packages/seaborn/_decorators.py:43: FutureWarning: Pass the following variables as keyword args: x, y. From version 0.12, the only valid positional argument will be `data`, and passing other arguments without an explicit keyword will result in an error or misinterpretation. - FutureWarning - -``` - -![png](img/72de951dda8439ddee9fe72a64a9ed2e.png) - -![png](img/67c5e6fec9fd9b11f792765822fbb538.png) - -## Define the model and metrics - -Define a function that creates a simple neural network with a densly connected hidden layer, a [dropout](https://developers.google.cn/machine-learning/glossary/#dropout_regularization) layer to reduce overfitting, and an output sigmoid layer that returns the probability of a transaction being fraudulent: - -```py -METRICS = [ - keras.metrics.TruePositives(name='tp'), - keras.metrics.FalsePositives(name='fp'), - keras.metrics.TrueNegatives(name='tn'), - keras.metrics.FalseNegatives(name='fn'), - keras.metrics.BinaryAccuracy(name='accuracy'), - keras.metrics.Precision(name='precision'), - keras.metrics.Recall(name='recall'), - keras.metrics.AUC(name='auc'), -] - -def make_model(metrics=METRICS, output_bias=None): - if output_bias is not None: - output_bias = tf.keras.initializers.Constant(output_bias) - model = keras.Sequential([ - keras.layers.Dense( - 16, activation='relu', - input_shape=(train_features.shape[-1],)), - keras.layers.Dropout(0.5), - keras.layers.Dense(1, activation='sigmoid', - bias_initializer=output_bias), - ]) - - model.compile( - optimizer=keras.optimizers.Adam(lr=1e-3), - loss=keras.losses.BinaryCrossentropy(), - metrics=metrics) - - return model -``` - -### Understanding useful metrics - -Notice that there are a few metrics defined above that can be computed by the model that will be helpful when evaluating the performance. - -* **False** negatives and **false** positives are samples that were **incorrectly** classified -* **True** negatives and **true** positives are samples that were **correctly** classified -* **Accuracy** is the percentage of examples correctly classified > $\frac{\text{true samples} }{\text{total samples} }$ -* **Precision** is the percentage of **predicted** positives that were correctly classified > $\frac{\text{true positives} }{\text{true positives + false positives} }$ -* **Recall** is the percentage of **actual** positives that were correctly classified > $\frac{\text{true positives} }{\text{true positives + false negatives} }$ -* **AUC** refers to the Area Under the Curve of a Receiver Operating Characteristic curve (ROC-AUC). This metric is equal to the probability that a classifier will rank a random positive sample higher than a random negative sample. - -**Note:** Accuracy is not a helpful metric for this task. You can 99.8%+ accuracy on this task by predicting False all the time. - -Read more: - -* [True vs. False and Positive vs. Negative](https://developers.google.cn/machine-learning/crash-course/classification/true-false-positive-negative) -* [Accuracy](https://developers.google.cn/machine-learning/crash-course/classification/accuracy) -* [Precision and Recall](https://developers.google.cn/machine-learning/crash-course/classification/precision-and-recall) -* [ROC-AUC](https://developers.google.cn/machine-learning/crash-course/classification/roc-and-auc) - -## Baseline model - -### Build the model - -Now create and train your model using the function that was defined earlier. Notice that the model is fit using a larger than default batch size of 2048, this is important to ensure that each batch has a decent chance of containing a few positive samples. If the batch size was too small, they would likely have no fraudulent transactions to learn from. - -**Note:** this model will not handle the class imbalance well. You will improve it later in this tutorial. - -```py -EPOCHS = 100 -BATCH_SIZE = 2048 - -early_stopping = tf.keras.callbacks.EarlyStopping( - monitor='val_auc', - verbose=1, - patience=10, - mode='max', - restore_best_weights=True) -``` - -```py -model = make_model() -model.summary() -``` - -```py -Model: "sequential" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -dense (Dense) (None, 16) 480 -_________________________________________________________________ -dropout (Dropout) (None, 16) 0 -_________________________________________________________________ -dense_1 (Dense) (None, 1) 17 -================================================================= -Total params: 497 -Trainable params: 497 -Non-trainable params: 0 -_________________________________________________________________ - -``` - -Test run the model: - -```py -model.predict(train_features[:10]) -``` - -```py -array([[0.14155667], - [0.08245954], - [0.14218365], - [0.09784216], - [0.15547438], - [0.04696527], - [0.20200476], - [0.16137381], - [0.08730176], - [0.04467227]], dtype=float32) - -``` - -### Optional: Set the correct initial bias. - -These initial guesses are not great. You know the dataset is imbalanced. Set the output layer's bias to reflect that (See: [A Recipe for Training Neural Networks: "init well"](http://karpathy.github.io/2019/04/25/recipe/#2-set-up-the-end-to-end-trainingevaluation-skeleton--get-dumb-baselines)). This can help with initial convergence. - -With the default bias initialization the loss should be about [`math.log(2) = 0.69314`](https://tensorflow.google.cn/api_docs/python/tf/math/log) - -```py -results = model.evaluate(train_features, train_labels, batch_size=BATCH_SIZE, verbose=0) -print("Loss: {:0.4f}".format(results[0])) -``` - -```py -Loss: 0.1159 - -``` - -The correct bias to set can be derived from: - -$$ p_0 = pos/(pos + neg) = 1/(1+e^{-b_0}) $$$$ b_0 = -log_e(1/p_0 - 1) $$$$ b_0 = log_e(pos/neg)$$ - -```py -initial_bias = np.log([pos/neg]) -initial_bias -``` - -```py -array([-6.35935934]) - -``` - -Set that as the initial bias, and the model will give much more reasonable initial guesses. - -It should be near: `pos/total = 0.0018` - -```py -model = make_model(output_bias=initial_bias) -model.predict(train_features[:10]) -``` - -```py -array([[0.00172629], - [0.00338373], - [0.00397264], - [0.00406079], - [0.00449285], - [0.00492807], - [0.00254243], - [0.00370109], - [0.01771316], - [0.0022068 ]], dtype=float32) - -``` - -With this initialization the initial loss should be approximately: - -$$-p_0log(p_0)-(1-p_0)log(1-p_0) = 0.01317$$ - -```py -results = model.evaluate(train_features, train_labels, batch_size=BATCH_SIZE, verbose=0) -print("Loss: {:0.4f}".format(results[0])) -``` - -```py -Loss: 0.0141 - -``` - -This initial loss is about 50 times less than if would have been with naive initialization. - -This way the model doesn't need to spend the first few epochs just learning that positive examples are unlikely. This also makes it easier to read plots of the loss during training. - -### Checkpoint the initial weights - -To make the various training runs more comparable, keep this initial model's weights in a checkpoint file, and load them into each model before training. - -```py -initial_weights = os.path.join(tempfile.mkdtemp(), 'initial_weights') -model.save_weights(initial_weights) -``` - -### Confirm that the bias fix helps - -Before moving on, confirm quick that the careful bias initialization actually helped. - -Train the model for 20 epochs, with and without this careful initialization, and compare the losses: - -```py -model = make_model() -model.load_weights(initial_weights) -model.layers[-1].bias.assign([0.0]) -zero_bias_history = model.fit( - train_features, - train_labels, - batch_size=BATCH_SIZE, - epochs=20, - validation_data=(val_features, val_labels), - verbose=0) -``` - -```py -model = make_model() -model.load_weights(initial_weights) -careful_bias_history = model.fit( - train_features, - train_labels, - batch_size=BATCH_SIZE, - epochs=20, - validation_data=(val_features, val_labels), - verbose=0) -``` - -```py -def plot_loss(history, label, n): - # Use a log scale to show the wide range of values. - plt.semilogy(history.epoch, history.history['loss'], - color=colors[n], label='Train '+label) - plt.semilogy(history.epoch, history.history['val_loss'], - color=colors[n], label='Val '+label, - linestyle="--") - plt.xlabel('Epoch') - plt.ylabel('Loss') - - plt.legend() -``` - -```py -plot_loss(zero_bias_history, "Zero Bias", 0) -plot_loss(careful_bias_history, "Careful Bias", 1) -``` - -![png](img/9ec1c5121631fabdd2734d5a380b07fc.png) - -The above figure makes it clear: In terms of validation loss, on this problem, this careful initialization gives a clear advantage. - -### Train the model - -```py -model = make_model() -model.load_weights(initial_weights) -baseline_history = model.fit( - train_features, - train_labels, - batch_size=BATCH_SIZE, - epochs=EPOCHS, - callbacks=[early_stopping], - validation_data=(val_features, val_labels)) -``` - -```py -Epoch 1/100 -90/90 [==============================] - 1s 14ms/step - loss: 0.0127 - tp: 93.0000 - fp: 90.0000 - tn: 227362.0000 - fn: 300.0000 - accuracy: 0.9983 - precision: 0.5082 - recall: 0.2366 - auc: 0.8002 - val_loss: 0.0066 - val_tp: 8.0000 - val_fp: 4.0000 - val_tn: 45489.0000 - val_fn: 68.0000 - val_accuracy: 0.9984 - val_precision: 0.6667 - val_recall: 0.1053 - val_auc: 0.9394 -Epoch 2/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0081 - tp: 99.0000 - fp: 25.0000 - tn: 181934.0000 - fn: 218.0000 - accuracy: 0.9987 - precision: 0.7984 - recall: 0.3123 - auc: 0.8446 - val_loss: 0.0044 - val_tp: 40.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 36.0000 - val_accuracy: 0.9991 - val_precision: 0.8696 - val_recall: 0.5263 - val_auc: 0.9471 -Epoch 3/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0067 - tp: 147.0000 - fp: 29.0000 - tn: 181930.0000 - fn: 170.0000 - accuracy: 0.9989 - precision: 0.8352 - recall: 0.4637 - auc: 0.8739 - val_loss: 0.0036 - val_tp: 45.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 31.0000 - val_accuracy: 0.9992 - val_precision: 0.8824 - val_recall: 0.5921 - val_auc: 0.9472 -Epoch 4/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0061 - tp: 151.0000 - fp: 32.0000 - tn: 181927.0000 - fn: 166.0000 - accuracy: 0.9989 - precision: 0.8251 - recall: 0.4763 - auc: 0.8867 - val_loss: 0.0031 - val_tp: 50.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 26.0000 - val_accuracy: 0.9993 - val_precision: 0.8929 - val_recall: 0.6579 - val_auc: 0.9472 -Epoch 5/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0059 - tp: 162.0000 - fp: 35.0000 - tn: 181924.0000 - fn: 155.0000 - accuracy: 0.9990 - precision: 0.8223 - recall: 0.5110 - auc: 0.8970 - val_loss: 0.0028 - val_tp: 53.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 23.0000 - val_accuracy: 0.9994 - val_precision: 0.8983 - val_recall: 0.6974 - val_auc: 0.9538 -Epoch 6/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0056 - tp: 167.0000 - fp: 34.0000 - tn: 181925.0000 - fn: 150.0000 - accuracy: 0.9990 - precision: 0.8308 - recall: 0.5268 - auc: 0.8942 - val_loss: 0.0026 - val_tp: 53.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 23.0000 - val_accuracy: 0.9994 - val_precision: 0.8983 - val_recall: 0.6974 - val_auc: 0.9670 -Epoch 7/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0051 - tp: 179.0000 - fp: 32.0000 - tn: 181927.0000 - fn: 138.0000 - accuracy: 0.9991 - precision: 0.8483 - recall: 0.5647 - auc: 0.9023 - val_loss: 0.0024 - val_tp: 58.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 18.0000 - val_accuracy: 0.9995 - val_precision: 0.9062 - val_recall: 0.7632 - val_auc: 0.9669 -Epoch 8/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0049 - tp: 181.0000 - fp: 29.0000 - tn: 181930.0000 - fn: 136.0000 - accuracy: 0.9991 - precision: 0.8619 - recall: 0.5710 - auc: 0.9040 - val_loss: 0.0023 - val_tp: 59.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 17.0000 - val_accuracy: 0.9995 - val_precision: 0.9077 - val_recall: 0.7763 - val_auc: 0.9735 -Epoch 9/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0050 - tp: 181.0000 - fp: 36.0000 - tn: 181923.0000 - fn: 136.0000 - accuracy: 0.9991 - precision: 0.8341 - recall: 0.5710 - auc: 0.9025 - val_loss: 0.0022 - val_tp: 56.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 20.0000 - val_accuracy: 0.9994 - val_precision: 0.9032 - val_recall: 0.7368 - val_auc: 0.9735 -Epoch 10/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0048 - tp: 179.0000 - fp: 32.0000 - tn: 181927.0000 - fn: 138.0000 - accuracy: 0.9991 - precision: 0.8483 - recall: 0.5647 - auc: 0.9041 - val_loss: 0.0021 - val_tp: 57.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 19.0000 - val_accuracy: 0.9995 - val_precision: 0.9048 - val_recall: 0.7500 - val_auc: 0.9735 -Epoch 11/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0044 - tp: 188.0000 - fp: 29.0000 - tn: 181930.0000 - fn: 129.0000 - accuracy: 0.9991 - precision: 0.8664 - recall: 0.5931 - auc: 0.9246 - val_loss: 0.0020 - val_tp: 57.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 19.0000 - val_accuracy: 0.9995 - val_precision: 0.9048 - val_recall: 0.7500 - val_auc: 0.9735 -Epoch 12/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0047 - tp: 168.0000 - fp: 34.0000 - tn: 181925.0000 - fn: 149.0000 - accuracy: 0.9990 - precision: 0.8317 - recall: 0.5300 - auc: 0.9184 - val_loss: 0.0019 - val_tp: 63.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 13.0000 - val_accuracy: 0.9996 - val_precision: 0.9130 - val_recall: 0.8289 - val_auc: 0.9735 -Epoch 13/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0045 - tp: 186.0000 - fp: 32.0000 - tn: 181927.0000 - fn: 131.0000 - accuracy: 0.9991 - precision: 0.8532 - recall: 0.5868 - auc: 0.9105 - val_loss: 0.0019 - val_tp: 63.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 13.0000 - val_accuracy: 0.9996 - val_precision: 0.9130 - val_recall: 0.8289 - val_auc: 0.9735 -Epoch 14/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0043 - tp: 199.0000 - fp: 37.0000 - tn: 181922.0000 - fn: 118.0000 - accuracy: 0.9991 - precision: 0.8432 - recall: 0.6278 - auc: 0.9217 - val_loss: 0.0019 - val_tp: 59.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 17.0000 - val_accuracy: 0.9995 - val_precision: 0.9077 - val_recall: 0.7763 - val_auc: 0.9735 -Epoch 15/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0045 - tp: 180.0000 - fp: 28.0000 - tn: 181931.0000 - fn: 137.0000 - accuracy: 0.9991 - precision: 0.8654 - recall: 0.5678 - auc: 0.9216 - val_loss: 0.0019 - val_tp: 63.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 13.0000 - val_accuracy: 0.9996 - val_precision: 0.9130 - val_recall: 0.8289 - val_auc: 0.9801 -Epoch 16/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0044 - tp: 188.0000 - fp: 41.0000 - tn: 181918.0000 - fn: 129.0000 - accuracy: 0.9991 - precision: 0.8210 - recall: 0.5931 - auc: 0.9200 - val_loss: 0.0019 - val_tp: 52.0000 - val_fp: 3.0000 - val_tn: 45490.0000 - val_fn: 24.0000 - val_accuracy: 0.9994 - val_precision: 0.9455 - val_recall: 0.6842 - val_auc: 0.9735 -Epoch 17/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0045 - tp: 178.0000 - fp: 29.0000 - tn: 181930.0000 - fn: 139.0000 - accuracy: 0.9991 - precision: 0.8599 - recall: 0.5615 - auc: 0.9153 - val_loss: 0.0018 - val_tp: 66.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 10.0000 - val_accuracy: 0.9996 - val_precision: 0.9167 - val_recall: 0.8684 - val_auc: 0.9801 -Epoch 18/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0043 - tp: 186.0000 - fp: 33.0000 - tn: 181926.0000 - fn: 131.0000 - accuracy: 0.9991 - precision: 0.8493 - recall: 0.5868 - auc: 0.9248 - val_loss: 0.0018 - val_tp: 65.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 11.0000 - val_accuracy: 0.9996 - val_precision: 0.9155 - val_recall: 0.8553 - val_auc: 0.9735 -Epoch 19/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0044 - tp: 188.0000 - fp: 28.0000 - tn: 181931.0000 - fn: 129.0000 - accuracy: 0.9991 - precision: 0.8704 - recall: 0.5931 - auc: 0.9091 - val_loss: 0.0018 - val_tp: 66.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 10.0000 - val_accuracy: 0.9996 - val_precision: 0.9167 - val_recall: 0.8684 - val_auc: 0.9801 -Epoch 20/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0042 - tp: 189.0000 - fp: 30.0000 - tn: 181929.0000 - fn: 128.0000 - accuracy: 0.9991 - precision: 0.8630 - recall: 0.5962 - auc: 0.9249 - val_loss: 0.0018 - val_tp: 63.0000 - val_fp: 5.0000 - val_tn: 45488.0000 - val_fn: 13.0000 - val_accuracy: 0.9996 - val_precision: 0.9265 - val_recall: 0.8289 - val_auc: 0.9735 -Epoch 21/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0042 - tp: 185.0000 - fp: 35.0000 - tn: 181924.0000 - fn: 132.0000 - accuracy: 0.9991 - precision: 0.8409 - recall: 0.5836 - auc: 0.9248 - val_loss: 0.0017 - val_tp: 66.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 10.0000 - val_accuracy: 0.9996 - val_precision: 0.9167 - val_recall: 0.8684 - val_auc: 0.9801 -Epoch 22/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0042 - tp: 188.0000 - fp: 31.0000 - tn: 181928.0000 - fn: 129.0000 - accuracy: 0.9991 - precision: 0.8584 - recall: 0.5931 - auc: 0.9249 - val_loss: 0.0017 - val_tp: 64.0000 - val_fp: 5.0000 - val_tn: 45488.0000 - val_fn: 12.0000 - val_accuracy: 0.9996 - val_precision: 0.9275 - val_recall: 0.8421 - val_auc: 0.9801 -Epoch 23/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0045 - tp: 175.0000 - fp: 39.0000 - tn: 181920.0000 - fn: 142.0000 - accuracy: 0.9990 - precision: 0.8178 - recall: 0.5521 - auc: 0.9169 - val_loss: 0.0017 - val_tp: 65.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 11.0000 - val_accuracy: 0.9996 - val_precision: 0.9155 - val_recall: 0.8553 - val_auc: 0.9801 -Epoch 24/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0043 - tp: 188.0000 - fp: 31.0000 - tn: 181928.0000 - fn: 129.0000 - accuracy: 0.9991 - precision: 0.8584 - recall: 0.5931 - auc: 0.9122 - val_loss: 0.0017 - val_tp: 64.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 12.0000 - val_accuracy: 0.9996 - val_precision: 0.9143 - val_recall: 0.8421 - val_auc: 0.9801 -Epoch 25/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0043 - tp: 179.0000 - fp: 29.0000 - tn: 181930.0000 - fn: 138.0000 - accuracy: 0.9991 - precision: 0.8606 - recall: 0.5647 - auc: 0.9311 - val_loss: 0.0017 - val_tp: 64.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 12.0000 - val_accuracy: 0.9996 - val_precision: 0.9143 - val_recall: 0.8421 - val_auc: 0.9801 -Epoch 26/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0041 - tp: 189.0000 - fp: 32.0000 - tn: 181927.0000 - fn: 128.0000 - accuracy: 0.9991 - precision: 0.8552 - recall: 0.5962 - auc: 0.9218 - val_loss: 0.0017 - val_tp: 66.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 10.0000 - val_accuracy: 0.9996 - val_precision: 0.9167 - val_recall: 0.8684 - val_auc: 0.9801 -Epoch 27/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0040 - tp: 193.0000 - fp: 27.0000 - tn: 181932.0000 - fn: 124.0000 - accuracy: 0.9992 - precision: 0.8773 - recall: 0.6088 - auc: 0.9202 - val_loss: 0.0017 - val_tp: 66.0000 - val_fp: 6.0000 - val_tn: 45487.0000 - val_fn: 10.0000 - val_accuracy: 0.9996 - val_precision: 0.9167 - val_recall: 0.8684 - val_auc: 0.9801 -Epoch 28/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0041 - tp: 189.0000 - fp: 31.0000 - tn: 181928.0000 - fn: 128.0000 - accuracy: 0.9991 - precision: 0.8591 - recall: 0.5962 - auc: 0.9187 - val_loss: 0.0017 - val_tp: 62.0000 - val_fp: 3.0000 - val_tn: 45490.0000 - val_fn: 14.0000 - val_accuracy: 0.9996 - val_precision: 0.9538 - val_recall: 0.8158 - val_auc: 0.9801 -Epoch 29/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0041 - tp: 173.0000 - fp: 35.0000 - tn: 181924.0000 - fn: 144.0000 - accuracy: 0.9990 - precision: 0.8317 - recall: 0.5457 - auc: 0.9233 - val_loss: 0.0017 - val_tp: 64.0000 - val_fp: 4.0000 - val_tn: 45489.0000 - val_fn: 12.0000 - val_accuracy: 0.9996 - val_precision: 0.9412 - val_recall: 0.8421 - val_auc: 0.9801 -Epoch 30/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0041 - tp: 193.0000 - fp: 36.0000 - tn: 181923.0000 - fn: 124.0000 - accuracy: 0.9991 - precision: 0.8428 - recall: 0.6088 - auc: 0.9218 - val_loss: 0.0017 - val_tp: 62.0000 - val_fp: 3.0000 - val_tn: 45490.0000 - val_fn: 14.0000 - val_accuracy: 0.9996 - val_precision: 0.9538 - val_recall: 0.8158 - val_auc: 0.9801 -Epoch 31/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0044 - tp: 190.0000 - fp: 35.0000 - tn: 181924.0000 - fn: 127.0000 - accuracy: 0.9991 - precision: 0.8444 - recall: 0.5994 - auc: 0.9122 - val_loss: 0.0017 - val_tp: 60.0000 - val_fp: 3.0000 - val_tn: 45490.0000 - val_fn: 16.0000 - val_accuracy: 0.9996 - val_precision: 0.9524 - val_recall: 0.7895 - val_auc: 0.9801 -Epoch 32/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0043 - tp: 184.0000 - fp: 33.0000 - tn: 181926.0000 - fn: 133.0000 - accuracy: 0.9991 - precision: 0.8479 - recall: 0.5804 - auc: 0.9186 - val_loss: 0.0017 - val_tp: 61.0000 - val_fp: 3.0000 - val_tn: 45490.0000 - val_fn: 15.0000 - val_accuracy: 0.9996 - val_precision: 0.9531 - val_recall: 0.8026 - val_auc: 0.9801 -Epoch 33/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0041 - tp: 188.0000 - fp: 36.0000 - tn: 181923.0000 - fn: 129.0000 - accuracy: 0.9991 - precision: 0.8393 - recall: 0.5931 - auc: 0.9218 - val_loss: 0.0016 - val_tp: 62.0000 - val_fp: 3.0000 - val_tn: 45490.0000 - val_fn: 14.0000 - val_accuracy: 0.9996 - val_precision: 0.9538 - val_recall: 0.8158 - val_auc: 0.9801 -Epoch 34/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0039 - tp: 196.0000 - fp: 37.0000 - tn: 181922.0000 - fn: 121.0000 - accuracy: 0.9991 - precision: 0.8412 - recall: 0.6183 - auc: 0.9297 - val_loss: 0.0017 - val_tp: 62.0000 - val_fp: 3.0000 - val_tn: 45490.0000 - val_fn: 14.0000 - val_accuracy: 0.9996 - val_precision: 0.9538 - val_recall: 0.8158 - val_auc: 0.9801 -Epoch 35/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0040 - tp: 189.0000 - fp: 39.0000 - tn: 181920.0000 - fn: 128.0000 - accuracy: 0.9991 - precision: 0.8289 - recall: 0.5962 - auc: 0.9281 - val_loss: 0.0017 - val_tp: 60.0000 - val_fp: 3.0000 - val_tn: 45490.0000 - val_fn: 16.0000 - val_accuracy: 0.9996 - val_precision: 0.9524 - val_recall: 0.7895 - val_auc: 0.9801 -Epoch 36/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0039 - tp: 197.0000 - fp: 29.0000 - tn: 181930.0000 - fn: 120.0000 - accuracy: 0.9992 - precision: 0.8717 - recall: 0.6215 - auc: 0.9203 - val_loss: 0.0016 - val_tp: 65.0000 - val_fp: 3.0000 - val_tn: 45490.0000 - val_fn: 11.0000 - val_accuracy: 0.9997 - val_precision: 0.9559 - val_recall: 0.8553 - val_auc: 0.9801 -Epoch 37/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0039 - tp: 195.0000 - fp: 26.0000 - tn: 181933.0000 - fn: 122.0000 - accuracy: 0.9992 - precision: 0.8824 - recall: 0.6151 - auc: 0.9234 - val_loss: 0.0016 - val_tp: 62.0000 - val_fp: 3.0000 - val_tn: 45490.0000 - val_fn: 14.0000 - val_accuracy: 0.9996 - val_precision: 0.9538 - val_recall: 0.8158 - val_auc: 0.9801 -Epoch 38/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0038 - tp: 197.0000 - fp: 40.0000 - tn: 181919.0000 - fn: 120.0000 - accuracy: 0.9991 - precision: 0.8312 - recall: 0.6215 - auc: 0.9329 - val_loss: 0.0017 - val_tp: 59.0000 - val_fp: 3.0000 - val_tn: 45490.0000 - val_fn: 17.0000 - val_accuracy: 0.9996 - val_precision: 0.9516 - val_recall: 0.7763 - val_auc: 0.9801 -Epoch 39/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0040 - tp: 195.0000 - fp: 34.0000 - tn: 181925.0000 - fn: 122.0000 - accuracy: 0.9991 - precision: 0.8515 - recall: 0.6151 - auc: 0.9343 - val_loss: 0.0016 - val_tp: 62.0000 - val_fp: 3.0000 - val_tn: 45490.0000 - val_fn: 14.0000 - val_accuracy: 0.9996 - val_precision: 0.9538 - val_recall: 0.8158 - val_auc: 0.9801 -Epoch 40/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.0039 - tp: 199.0000 - fp: 35.0000 - tn: 181924.0000 - fn: 118.0000 - accuracy: 0.9992 - precision: 0.8504 - recall: 0.6278 - auc: 0.9250 - val_loss: 0.0016 - val_tp: 60.0000 - val_fp: 3.0000 - val_tn: 45490.0000 - val_fn: 16.0000 - val_accuracy: 0.9996 - val_precision: 0.9524 - val_recall: 0.7895 - val_auc: 0.9801 -Epoch 41/100 -88/90 [============================>.] - ETA: 0s - loss: 0.0041 - tp: 185.0000 - fp: 35.0000 - tn: 179875.0000 - fn: 129.0000 - accuracy: 0.9991 - precision: 0.8409 - recall: 0.5892 - auc: 0.9305Restoring model weights from the end of the best epoch. -90/90 [==============================] - 1s 6ms/step - loss: 0.0041 - tp: 186.0000 - fp: 35.0000 - tn: 181924.0000 - fn: 131.0000 - accuracy: 0.9991 - precision: 0.8416 - recall: 0.5868 - auc: 0.9295 - val_loss: 0.0016 - val_tp: 65.0000 - val_fp: 5.0000 - val_tn: 45488.0000 - val_fn: 11.0000 - val_accuracy: 0.9996 - val_precision: 0.9286 - val_recall: 0.8553 - val_auc: 0.9801 -Epoch 00041: early stopping - -``` - -### Check training history - -In this section, you will produce plots of your model's accuracy and loss on the training and validation set. These are useful to check for overfitting, which you can learn more about in this [tutorial](https://tensorflow.google.cn/tutorials/keras/overfit_and_underfit). - -Additionally, you can produce these plots for any of the metrics you created above. False negatives are included as an example. - -```py -def plot_metrics(history): - metrics = ['loss', 'auc', 'precision', 'recall'] - for n, metric in enumerate(metrics): - name = metric.replace("_"," ").capitalize() - plt.subplot(2,2,n+1) - plt.plot(history.epoch, history.history[metric], color=colors[0], label='Train') - plt.plot(history.epoch, history.history['val_'+metric], - color=colors[0], linestyle="--", label='Val') - plt.xlabel('Epoch') - plt.ylabel(name) - if metric == 'loss': - plt.ylim([0, plt.ylim()[1]]) - elif metric == 'auc': - plt.ylim([0.8,1]) - else: - plt.ylim([0,1]) - - plt.legend() -``` - -```py -plot_metrics(baseline_history) -``` - -![png](img/f021b204e92d0e77d8439a03a43bb21e.png) - -**Note:** That the validation curve generally performs better than the training curve. This is mainly caused by the fact that the dropout layer is not active when evaluating the model. - -### Evaluate metrics - -You can use a [confusion matrix](https://developers.google.cn/machine-learning/glossary/#confusion_matrix) to summarize the actual vs. predicted labels where the X axis is the predicted label and the Y axis is the actual label. - -```py -train_predictions_baseline = model.predict(train_features, batch_size=BATCH_SIZE) -test_predictions_baseline = model.predict(test_features, batch_size=BATCH_SIZE) -``` - -```py -def plot_cm(labels, predictions, p=0.5): - cm = confusion_matrix(labels, predictions > p) - plt.figure(figsize=(5,5)) - sns.heatmap(cm, annot=True, fmt="d") - plt.title('Confusion matrix @{:.2f}'.format(p)) - plt.ylabel('Actual label') - plt.xlabel('Predicted label') - - print('Legitimate Transactions Detected (True Negatives): ', cm[0][0]) - print('Legitimate Transactions Incorrectly Detected (False Positives): ', cm[0][1]) - print('Fraudulent Transactions Missed (False Negatives): ', cm[1][0]) - print('Fraudulent Transactions Detected (True Positives): ', cm[1][1]) - print('Total Fraudulent Transactions: ', np.sum(cm[1])) -``` - -Evaluate your model on the test dataset and display the results for the metrics you created above. - -```py -baseline_results = model.evaluate(test_features, test_labels, - batch_size=BATCH_SIZE, verbose=0) -for name, value in zip(model.metrics_names, baseline_results): - print(name, ': ', value) -print() - -plot_cm(test_labels, test_predictions_baseline) -``` - -```py -loss : 0.002797449706122279 -tp : 68.0 -fp : 3.0 -tn : 56860.0 -fn : 31.0 -accuracy : 0.9994031190872192 -precision : 0.9577465057373047 -recall : 0.6868686676025391 -auc : 0.949228823184967 - -Legitimate Transactions Detected (True Negatives): 56860 -Legitimate Transactions Incorrectly Detected (False Positives): 3 -Fraudulent Transactions Missed (False Negatives): 31 -Fraudulent Transactions Detected (True Positives): 68 -Total Fraudulent Transactions: 99 - -``` - -![png](img/85d63bf8a53bc6d25baa38c0e3e2dde0.png) - -If the model had predicted everything perfectly, this would be a [diagonal matrix](https://en.wikipedia.org/wiki/Diagonal_matrix) where values off the main diagonal, indicating incorrect predictions, would be zero. In this case the matrix shows that you have relatively few false positives, meaning that there were relatively few legitimate transactions that were incorrectly flagged. However, you would likely want to have even fewer false negatives despite the cost of increasing the number of false positives. This trade off may be preferable because false negatives would allow fraudulent transactions to go through, whereas false positives may cause an email to be sent to a customer to ask them to verify their card activity. - -### Plot the ROC - -Now plot the [ROC](https://developers.google.cn/machine-learning/glossary#ROC). This plot is useful because it shows, at a glance, the range of performance the model can reach just by tuning the output threshold. - -```py -def plot_roc(name, labels, predictions, **kwargs): - fp, tp, _ = sklearn.metrics.roc_curve(labels, predictions) - - plt.plot(100*fp, 100*tp, label=name, linewidth=2, **kwargs) - plt.xlabel('False positives [%]') - plt.ylabel('True positives [%]') - plt.xlim([-0.5,20]) - plt.ylim([80,100.5]) - plt.grid(True) - ax = plt.gca() - ax.set_aspect('equal') -``` - -```py -plot_roc("Train Baseline", train_labels, train_predictions_baseline, color=colors[0]) -plot_roc("Test Baseline", test_labels, test_predictions_baseline, color=colors[0], linestyle='--') -plt.legend(loc='lower right') -``` - -```py - - -``` - -![png](img/74badb10696c0ffbba886121ce004be0.png) - -It looks like the precision is relatively high, but the recall and the area under the ROC curve (AUC) aren't as high as you might like. Classifiers often face challenges when trying to maximize both precision and recall, which is especially true when working with imbalanced datasets. It is important to consider the costs of different types of errors in the context of the problem you care about. In this example, a false negative (a fraudulent transaction is missed) may have a financial cost, while a false positive (a transaction is incorrectly flagged as fraudulent) may decrease user happiness. - -## Class weights - -### Calculate class weights - -The goal is to identify fraudulent transactions, but you don't have very many of those positive samples to work with, so you would want to have the classifier heavily weight the few examples that are available. You can do this by passing Keras weights for each class through a parameter. These will cause the model to "pay more attention" to examples from an under-represented class. - -```py -# Scaling by total/2 helps keep the loss to a similar magnitude. -# The sum of the weights of all examples stays the same. -weight_for_0 = (1 / neg)*(total)/2.0 -weight_for_1 = (1 / pos)*(total)/2.0 - -class_weight = {0: weight_for_0, 1: weight_for_1} - -print('Weight for class 0: {:.2f}'.format(weight_for_0)) -print('Weight for class 1: {:.2f}'.format(weight_for_1)) -``` - -```py -Weight for class 0: 0.50 -Weight for class 1: 289.44 - -``` - -### Train a model with class weights - -Now try re-training and evaluating the model with class weights to see how that affects the predictions. - -**Note:** Using `class_weights` changes the range of the loss. This may affect the stability of the training depending on the optimizer. Optimizers whose step size is dependent on the magnitude of the gradient, like [`optimizers.SGD`](https://tensorflow.google.cn/api_docs/python/tf/keras/optimizers/SGD), may fail. The optimizer used here, [`optimizers.Adam`](https://tensorflow.google.cn/api_docs/python/tf/keras/optimizers/Adam), is unaffected by the scaling change. Also note that because of the weighting, the total losses are not comparable between the two models. - -```py -weighted_model = make_model() -weighted_model.load_weights(initial_weights) - -weighted_history = weighted_model.fit( - train_features, - train_labels, - batch_size=BATCH_SIZE, - epochs=EPOCHS, - callbacks=[early_stopping], - validation_data=(val_features, val_labels), - # The class weights go here - class_weight=class_weight) -``` - -```py -Epoch 1/100 -90/90 [==============================] - 1s 14ms/step - loss: 2.0102 - tp: 135.0000 - fp: 420.0000 - tn: 238402.0000 - fn: 281.0000 - accuracy: 0.9971 - precision: 0.2432 - recall: 0.3245 - auc: 0.8079 - val_loss: 0.0111 - val_tp: 45.0000 - val_fp: 51.0000 - val_tn: 45442.0000 - val_fn: 31.0000 - val_accuracy: 0.9982 - val_precision: 0.4688 - val_recall: 0.5921 - val_auc: 0.9314 -Epoch 2/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.9256 - tp: 178.0000 - fp: 793.0000 - tn: 181166.0000 - fn: 139.0000 - accuracy: 0.9949 - precision: 0.1833 - recall: 0.5615 - auc: 0.8662 - val_loss: 0.0164 - val_tp: 66.0000 - val_fp: 108.0000 - val_tn: 45385.0000 - val_fn: 10.0000 - val_accuracy: 0.9974 - val_precision: 0.3793 - val_recall: 0.8684 - val_auc: 0.9468 -Epoch 3/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.7136 - tp: 215.0000 - fp: 1377.0000 - tn: 180582.0000 - fn: 102.0000 - accuracy: 0.9919 - precision: 0.1351 - recall: 0.6782 - auc: 0.8811 - val_loss: 0.0238 - val_tp: 68.0000 - val_fp: 174.0000 - val_tn: 45319.0000 - val_fn: 8.0000 - val_accuracy: 0.9960 - val_precision: 0.2810 - val_recall: 0.8947 - val_auc: 0.9866 -Epoch 4/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.5158 - tp: 240.0000 - fp: 2141.0000 - tn: 179818.0000 - fn: 77.0000 - accuracy: 0.9878 - precision: 0.1008 - recall: 0.7571 - auc: 0.9124 - val_loss: 0.0334 - val_tp: 69.0000 - val_fp: 257.0000 - val_tn: 45236.0000 - val_fn: 7.0000 - val_accuracy: 0.9942 - val_precision: 0.2117 - val_recall: 0.9079 - val_auc: 0.9951 -Epoch 5/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.4060 - tp: 256.0000 - fp: 3039.0000 - tn: 178920.0000 - fn: 61.0000 - accuracy: 0.9830 - precision: 0.0777 - recall: 0.8076 - auc: 0.9329 - val_loss: 0.0439 - val_tp: 72.0000 - val_fp: 364.0000 - val_tn: 45129.0000 - val_fn: 4.0000 - val_accuracy: 0.9919 - val_precision: 0.1651 - val_recall: 0.9474 - val_auc: 0.9965 -Epoch 6/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.4045 - tp: 255.0000 - fp: 4034.0000 - tn: 177925.0000 - fn: 62.0000 - accuracy: 0.9775 - precision: 0.0595 - recall: 0.8044 - auc: 0.9289 - val_loss: 0.0557 - val_tp: 73.0000 - val_fp: 572.0000 - val_tn: 44921.0000 - val_fn: 3.0000 - val_accuracy: 0.9874 - val_precision: 0.1132 - val_recall: 0.9605 - val_auc: 0.9969 -Epoch 7/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2990 - tp: 267.0000 - fp: 5024.0000 - tn: 176935.0000 - fn: 50.0000 - accuracy: 0.9722 - precision: 0.0505 - recall: 0.8423 - auc: 0.9544 - val_loss: 0.0723 - val_tp: 74.0000 - val_fp: 825.0000 - val_tn: 44668.0000 - val_fn: 2.0000 - val_accuracy: 0.9819 - val_precision: 0.0823 - val_recall: 0.9737 - val_auc: 0.9971 -Epoch 8/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.3124 - tp: 267.0000 - fp: 6321.0000 - tn: 175638.0000 - fn: 50.0000 - accuracy: 0.9650 - precision: 0.0405 - recall: 0.8423 - auc: 0.9493 - val_loss: 0.0886 - val_tp: 74.0000 - val_fp: 1043.0000 - val_tn: 44450.0000 - val_fn: 2.0000 - val_accuracy: 0.9771 - val_precision: 0.0662 - val_recall: 0.9737 - val_auc: 0.9971 -Epoch 9/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2856 - tp: 276.0000 - fp: 6879.0000 - tn: 175080.0000 - fn: 41.0000 - accuracy: 0.9620 - precision: 0.0386 - recall: 0.8707 - auc: 0.9536 - val_loss: 0.0963 - val_tp: 74.0000 - val_fp: 1120.0000 - val_tn: 44373.0000 - val_fn: 2.0000 - val_accuracy: 0.9754 - val_precision: 0.0620 - val_recall: 0.9737 - val_auc: 0.9972 -Epoch 10/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2871 - tp: 272.0000 - fp: 7610.0000 - tn: 174349.0000 - fn: 45.0000 - accuracy: 0.9580 - precision: 0.0345 - recall: 0.8580 - auc: 0.9545 - val_loss: 0.1053 - val_tp: 74.0000 - val_fp: 1219.0000 - val_tn: 44274.0000 - val_fn: 2.0000 - val_accuracy: 0.9732 - val_precision: 0.0572 - val_recall: 0.9737 - val_auc: 0.9972 -Epoch 11/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2646 - tp: 273.0000 - fp: 8061.0000 - tn: 173898.0000 - fn: 44.0000 - accuracy: 0.9555 - precision: 0.0328 - recall: 0.8612 - auc: 0.9602 - val_loss: 0.1079 - val_tp: 74.0000 - val_fp: 1242.0000 - val_tn: 44251.0000 - val_fn: 2.0000 - val_accuracy: 0.9727 - val_precision: 0.0562 - val_recall: 0.9737 - val_auc: 0.9973 -Epoch 12/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2574 - tp: 277.0000 - fp: 8239.0000 - tn: 173720.0000 - fn: 40.0000 - accuracy: 0.9546 - precision: 0.0325 - recall: 0.8738 - auc: 0.9621 - val_loss: 0.1086 - val_tp: 74.0000 - val_fp: 1223.0000 - val_tn: 44270.0000 - val_fn: 2.0000 - val_accuracy: 0.9731 - val_precision: 0.0571 - val_recall: 0.9737 - val_auc: 0.9973 -Epoch 13/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2525 - tp: 279.0000 - fp: 7925.0000 - tn: 174034.0000 - fn: 38.0000 - accuracy: 0.9563 - precision: 0.0340 - recall: 0.8801 - auc: 0.9604 - val_loss: 0.1032 - val_tp: 74.0000 - val_fp: 1153.0000 - val_tn: 44340.0000 - val_fn: 2.0000 - val_accuracy: 0.9747 - val_precision: 0.0603 - val_recall: 0.9737 - val_auc: 0.9974 -Epoch 14/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2712 - tp: 273.0000 - fp: 8290.0000 - tn: 173669.0000 - fn: 44.0000 - accuracy: 0.9543 - precision: 0.0319 - recall: 0.8612 - auc: 0.9572 - val_loss: 0.1083 - val_tp: 74.0000 - val_fp: 1193.0000 - val_tn: 44300.0000 - val_fn: 2.0000 - val_accuracy: 0.9738 - val_precision: 0.0584 - val_recall: 0.9737 - val_auc: 0.9973 -Epoch 15/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2324 - tp: 283.0000 - fp: 8182.0000 - tn: 173777.0000 - fn: 34.0000 - accuracy: 0.9549 - precision: 0.0334 - recall: 0.8927 - auc: 0.9668 - val_loss: 0.1017 - val_tp: 74.0000 - val_fp: 1131.0000 - val_tn: 44362.0000 - val_fn: 2.0000 - val_accuracy: 0.9751 - val_precision: 0.0614 - val_recall: 0.9737 - val_auc: 0.9974 -Epoch 16/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2605 - tp: 277.0000 - fp: 7798.0000 - tn: 174161.0000 - fn: 40.0000 - accuracy: 0.9570 - precision: 0.0343 - recall: 0.8738 - auc: 0.9585 - val_loss: 0.1030 - val_tp: 74.0000 - val_fp: 1134.0000 - val_tn: 44359.0000 - val_fn: 2.0000 - val_accuracy: 0.9751 - val_precision: 0.0613 - val_recall: 0.9737 - val_auc: 0.9973 -Epoch 17/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2235 - tp: 281.0000 - fp: 7994.0000 - tn: 173965.0000 - fn: 36.0000 - accuracy: 0.9559 - precision: 0.0340 - recall: 0.8864 - auc: 0.9696 - val_loss: 0.1029 - val_tp: 74.0000 - val_fp: 1127.0000 - val_tn: 44366.0000 - val_fn: 2.0000 - val_accuracy: 0.9752 - val_precision: 0.0616 - val_recall: 0.9737 - val_auc: 0.9973 -Epoch 18/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2455 - tp: 278.0000 - fp: 7706.0000 - tn: 174253.0000 - fn: 39.0000 - accuracy: 0.9575 - precision: 0.0348 - recall: 0.8770 - auc: 0.9633 - val_loss: 0.1010 - val_tp: 74.0000 - val_fp: 1099.0000 - val_tn: 44394.0000 - val_fn: 2.0000 - val_accuracy: 0.9758 - val_precision: 0.0631 - val_recall: 0.9737 - val_auc: 0.9973 -Epoch 19/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1759 - tp: 285.0000 - fp: 7766.0000 - tn: 174193.0000 - fn: 32.0000 - accuracy: 0.9572 - precision: 0.0354 - recall: 0.8991 - auc: 0.9813 - val_loss: 0.1001 - val_tp: 74.0000 - val_fp: 1079.0000 - val_tn: 44414.0000 - val_fn: 2.0000 - val_accuracy: 0.9763 - val_precision: 0.0642 - val_recall: 0.9737 - val_auc: 0.9973 -Epoch 20/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2220 - tp: 283.0000 - fp: 7554.0000 - tn: 174405.0000 - fn: 34.0000 - accuracy: 0.9584 - precision: 0.0361 - recall: 0.8927 - auc: 0.9669 - val_loss: 0.0944 - val_tp: 74.0000 - val_fp: 1009.0000 - val_tn: 44484.0000 - val_fn: 2.0000 - val_accuracy: 0.9778 - val_precision: 0.0683 - val_recall: 0.9737 - val_auc: 0.9973 -Epoch 21/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2329 - tp: 282.0000 - fp: 7369.0000 - tn: 174590.0000 - fn: 35.0000 - accuracy: 0.9594 - precision: 0.0369 - recall: 0.8896 - auc: 0.9657 - val_loss: 0.0942 - val_tp: 74.0000 - val_fp: 1011.0000 - val_tn: 44482.0000 - val_fn: 2.0000 - val_accuracy: 0.9778 - val_precision: 0.0682 - val_recall: 0.9737 - val_auc: 0.9973 -Epoch 22/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2317 - tp: 281.0000 - fp: 7563.0000 - tn: 174396.0000 - fn: 36.0000 - accuracy: 0.9583 - precision: 0.0358 - recall: 0.8864 - auc: 0.9658 - val_loss: 0.0936 - val_tp: 74.0000 - val_fp: 993.0000 - val_tn: 44500.0000 - val_fn: 2.0000 - val_accuracy: 0.9782 - val_precision: 0.0694 - val_recall: 0.9737 - val_auc: 0.9974 -Epoch 23/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2109 - tp: 284.0000 - fp: 7520.0000 - tn: 174439.0000 - fn: 33.0000 - accuracy: 0.9586 - precision: 0.0364 - recall: 0.8959 - auc: 0.9702 - val_loss: 0.0940 - val_tp: 74.0000 - val_fp: 1003.0000 - val_tn: 44490.0000 - val_fn: 2.0000 - val_accuracy: 0.9779 - val_precision: 0.0687 - val_recall: 0.9737 - val_auc: 0.9974 -Epoch 24/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2089 - tp: 283.0000 - fp: 7119.0000 - tn: 174840.0000 - fn: 34.0000 - accuracy: 0.9608 - precision: 0.0382 - recall: 0.8927 - auc: 0.9731 - val_loss: 0.0898 - val_tp: 74.0000 - val_fp: 939.0000 - val_tn: 44554.0000 - val_fn: 2.0000 - val_accuracy: 0.9793 - val_precision: 0.0731 - val_recall: 0.9737 - val_auc: 0.9974 -Epoch 25/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2062 - tp: 280.0000 - fp: 7392.0000 - tn: 174567.0000 - fn: 37.0000 - accuracy: 0.9592 - precision: 0.0365 - recall: 0.8833 - auc: 0.9749 - val_loss: 0.0969 - val_tp: 74.0000 - val_fp: 1035.0000 - val_tn: 44458.0000 - val_fn: 2.0000 - val_accuracy: 0.9772 - val_precision: 0.0667 - val_recall: 0.9737 - val_auc: 0.9973 -Epoch 26/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2006 - tp: 284.0000 - fp: 7149.0000 - tn: 174810.0000 - fn: 33.0000 - accuracy: 0.9606 - precision: 0.0382 - recall: 0.8959 - auc: 0.9754 - val_loss: 0.0949 - val_tp: 74.0000 - val_fp: 1004.0000 - val_tn: 44489.0000 - val_fn: 2.0000 - val_accuracy: 0.9779 - val_precision: 0.0686 - val_recall: 0.9737 - val_auc: 0.9973 -Epoch 27/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2169 - tp: 281.0000 - fp: 7592.0000 - tn: 174367.0000 - fn: 36.0000 - accuracy: 0.9582 - precision: 0.0357 - recall: 0.8864 - auc: 0.9727 - val_loss: 0.0969 - val_tp: 74.0000 - val_fp: 1038.0000 - val_tn: 44455.0000 - val_fn: 2.0000 - val_accuracy: 0.9772 - val_precision: 0.0665 - val_recall: 0.9737 - val_auc: 0.9974 -Epoch 28/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2110 - tp: 285.0000 - fp: 6957.0000 - tn: 175002.0000 - fn: 32.0000 - accuracy: 0.9617 - precision: 0.0394 - recall: 0.8991 - auc: 0.9697 - val_loss: 0.0922 - val_tp: 74.0000 - val_fp: 988.0000 - val_tn: 44505.0000 - val_fn: 2.0000 - val_accuracy: 0.9783 - val_precision: 0.0697 - val_recall: 0.9737 - val_auc: 0.9974 -Epoch 29/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2234 - tp: 280.0000 - fp: 7030.0000 - tn: 174929.0000 - fn: 37.0000 - accuracy: 0.9612 - precision: 0.0383 - recall: 0.8833 - auc: 0.9679 - val_loss: 0.0942 - val_tp: 74.0000 - val_fp: 1024.0000 - val_tn: 44469.0000 - val_fn: 2.0000 - val_accuracy: 0.9775 - val_precision: 0.0674 - val_recall: 0.9737 - val_auc: 0.9974 -Epoch 30/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1889 - tp: 288.0000 - fp: 7228.0000 - tn: 174731.0000 - fn: 29.0000 - accuracy: 0.9602 - precision: 0.0383 - recall: 0.9085 - auc: 0.9771 - val_loss: 0.0895 - val_tp: 74.0000 - val_fp: 954.0000 - val_tn: 44539.0000 - val_fn: 2.0000 - val_accuracy: 0.9790 - val_precision: 0.0720 - val_recall: 0.9737 - val_auc: 0.9974 -Epoch 31/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1824 - tp: 286.0000 - fp: 6703.0000 - tn: 175256.0000 - fn: 31.0000 - accuracy: 0.9631 - precision: 0.0409 - recall: 0.9022 - auc: 0.9789 - val_loss: 0.0898 - val_tp: 74.0000 - val_fp: 957.0000 - val_tn: 44536.0000 - val_fn: 2.0000 - val_accuracy: 0.9790 - val_precision: 0.0718 - val_recall: 0.9737 - val_auc: 0.9974 -Epoch 32/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2014 - tp: 279.0000 - fp: 6918.0000 - tn: 175041.0000 - fn: 38.0000 - accuracy: 0.9618 - precision: 0.0388 - recall: 0.8801 - auc: 0.9756 - val_loss: 0.0933 - val_tp: 74.0000 - val_fp: 993.0000 - val_tn: 44500.0000 - val_fn: 2.0000 - val_accuracy: 0.9782 - val_precision: 0.0694 - val_recall: 0.9737 - val_auc: 0.9974 -Epoch 33/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2153 - tp: 283.0000 - fp: 6885.0000 - tn: 175074.0000 - fn: 34.0000 - accuracy: 0.9620 - precision: 0.0395 - recall: 0.8927 - auc: 0.9708 - val_loss: 0.0905 - val_tp: 74.0000 - val_fp: 949.0000 - val_tn: 44544.0000 - val_fn: 2.0000 - val_accuracy: 0.9791 - val_precision: 0.0723 - val_recall: 0.9737 - val_auc: 0.9974 -Epoch 34/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1970 - tp: 283.0000 - fp: 6969.0000 - tn: 174990.0000 - fn: 34.0000 - accuracy: 0.9616 - precision: 0.0390 - recall: 0.8927 - auc: 0.9769 - val_loss: 0.0958 - val_tp: 74.0000 - val_fp: 1018.0000 - val_tn: 44475.0000 - val_fn: 2.0000 - val_accuracy: 0.9776 - val_precision: 0.0678 - val_recall: 0.9737 - val_auc: 0.9975 -Epoch 35/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1737 - tp: 290.0000 - fp: 7040.0000 - tn: 174919.0000 - fn: 27.0000 - accuracy: 0.9612 - precision: 0.0396 - recall: 0.9148 - auc: 0.9806 - val_loss: 0.0907 - val_tp: 74.0000 - val_fp: 948.0000 - val_tn: 44545.0000 - val_fn: 2.0000 - val_accuracy: 0.9792 - val_precision: 0.0724 - val_recall: 0.9737 - val_auc: 0.9975 -Epoch 36/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1906 - tp: 288.0000 - fp: 6663.0000 - tn: 175296.0000 - fn: 29.0000 - accuracy: 0.9633 - precision: 0.0414 - recall: 0.9085 - auc: 0.9764 - val_loss: 0.0872 - val_tp: 74.0000 - val_fp: 904.0000 - val_tn: 44589.0000 - val_fn: 2.0000 - val_accuracy: 0.9801 - val_precision: 0.0757 - val_recall: 0.9737 - val_auc: 0.9975 -Epoch 37/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2071 - tp: 284.0000 - fp: 6688.0000 - tn: 175271.0000 - fn: 33.0000 - accuracy: 0.9631 - precision: 0.0407 - recall: 0.8959 - auc: 0.9727 - val_loss: 0.0905 - val_tp: 74.0000 - val_fp: 939.0000 - val_tn: 44554.0000 - val_fn: 2.0000 - val_accuracy: 0.9793 - val_precision: 0.0731 - val_recall: 0.9737 - val_auc: 0.9975 -Epoch 38/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1813 - tp: 283.0000 - fp: 6784.0000 - tn: 175175.0000 - fn: 34.0000 - accuracy: 0.9626 - precision: 0.0400 - recall: 0.8927 - auc: 0.9817 - val_loss: 0.0913 - val_tp: 74.0000 - val_fp: 951.0000 - val_tn: 44542.0000 - val_fn: 2.0000 - val_accuracy: 0.9791 - val_precision: 0.0722 - val_recall: 0.9737 - val_auc: 0.9975 -Epoch 39/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1897 - tp: 289.0000 - fp: 6872.0000 - tn: 175087.0000 - fn: 28.0000 - accuracy: 0.9621 - precision: 0.0404 - recall: 0.9117 - auc: 0.9767 - val_loss: 0.0916 - val_tp: 74.0000 - val_fp: 959.0000 - val_tn: 44534.0000 - val_fn: 2.0000 - val_accuracy: 0.9789 - val_precision: 0.0716 - val_recall: 0.9737 - val_auc: 0.9975 -Epoch 40/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1546 - tp: 295.0000 - fp: 6584.0000 - tn: 175375.0000 - fn: 22.0000 - accuracy: 0.9638 - precision: 0.0429 - recall: 0.9306 - auc: 0.9858 - val_loss: 0.0904 - val_tp: 74.0000 - val_fp: 948.0000 - val_tn: 44545.0000 - val_fn: 2.0000 - val_accuracy: 0.9792 - val_precision: 0.0724 - val_recall: 0.9737 - val_auc: 0.9976 -Epoch 41/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2263 - tp: 278.0000 - fp: 6677.0000 - tn: 175282.0000 - fn: 39.0000 - accuracy: 0.9632 - precision: 0.0400 - recall: 0.8770 - auc: 0.9676 - val_loss: 0.0908 - val_tp: 74.0000 - val_fp: 955.0000 - val_tn: 44538.0000 - val_fn: 2.0000 - val_accuracy: 0.9790 - val_precision: 0.0719 - val_recall: 0.9737 - val_auc: 0.9975 -Epoch 42/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2033 - tp: 281.0000 - fp: 6777.0000 - tn: 175182.0000 - fn: 36.0000 - accuracy: 0.9626 - precision: 0.0398 - recall: 0.8864 - auc: 0.9756 - val_loss: 0.0953 - val_tp: 74.0000 - val_fp: 1029.0000 - val_tn: 44464.0000 - val_fn: 2.0000 - val_accuracy: 0.9774 - val_precision: 0.0671 - val_recall: 0.9737 - val_auc: 0.9975 -Epoch 43/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1865 - tp: 283.0000 - fp: 6824.0000 - tn: 175135.0000 - fn: 34.0000 - accuracy: 0.9624 - precision: 0.0398 - recall: 0.8927 - auc: 0.9792 - val_loss: 0.0945 - val_tp: 74.0000 - val_fp: 1019.0000 - val_tn: 44474.0000 - val_fn: 2.0000 - val_accuracy: 0.9776 - val_precision: 0.0677 - val_recall: 0.9737 - val_auc: 0.9976 -Epoch 44/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1857 - tp: 286.0000 - fp: 6655.0000 - tn: 175304.0000 - fn: 31.0000 - accuracy: 0.9633 - precision: 0.0412 - recall: 0.9022 - auc: 0.9781 - val_loss: 0.0927 - val_tp: 74.0000 - val_fp: 975.0000 - val_tn: 44518.0000 - val_fn: 2.0000 - val_accuracy: 0.9786 - val_precision: 0.0705 - val_recall: 0.9737 - val_auc: 0.9977 -Epoch 45/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1874 - tp: 282.0000 - fp: 6595.0000 - tn: 175364.0000 - fn: 35.0000 - accuracy: 0.9636 - precision: 0.0410 - recall: 0.8896 - auc: 0.9810 - val_loss: 0.0934 - val_tp: 74.0000 - val_fp: 974.0000 - val_tn: 44519.0000 - val_fn: 2.0000 - val_accuracy: 0.9786 - val_precision: 0.0706 - val_recall: 0.9737 - val_auc: 0.9977 -Epoch 46/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1641 - tp: 291.0000 - fp: 6532.0000 - tn: 175427.0000 - fn: 26.0000 - accuracy: 0.9640 - precision: 0.0426 - recall: 0.9180 - auc: 0.9837 - val_loss: 0.0868 - val_tp: 74.0000 - val_fp: 885.0000 - val_tn: 44608.0000 - val_fn: 2.0000 - val_accuracy: 0.9805 - val_precision: 0.0772 - val_recall: 0.9737 - val_auc: 0.9976 -Epoch 47/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1909 - tp: 285.0000 - fp: 6662.0000 - tn: 175297.0000 - fn: 32.0000 - accuracy: 0.9633 - precision: 0.0410 - recall: 0.8991 - auc: 0.9780 - val_loss: 0.0874 - val_tp: 74.0000 - val_fp: 899.0000 - val_tn: 44594.0000 - val_fn: 2.0000 - val_accuracy: 0.9802 - val_precision: 0.0761 - val_recall: 0.9737 - val_auc: 0.9978 -Epoch 48/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1687 - tp: 287.0000 - fp: 6627.0000 - tn: 175332.0000 - fn: 30.0000 - accuracy: 0.9635 - precision: 0.0415 - recall: 0.9054 - auc: 0.9836 - val_loss: 0.0875 - val_tp: 74.0000 - val_fp: 899.0000 - val_tn: 44594.0000 - val_fn: 2.0000 - val_accuracy: 0.9802 - val_precision: 0.0761 - val_recall: 0.9737 - val_auc: 0.9977 -Epoch 49/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1740 - tp: 291.0000 - fp: 6522.0000 - tn: 175437.0000 - fn: 26.0000 - accuracy: 0.9641 - precision: 0.0427 - recall: 0.9180 - auc: 0.9794 - val_loss: 0.0848 - val_tp: 74.0000 - val_fp: 866.0000 - val_tn: 44627.0000 - val_fn: 2.0000 - val_accuracy: 0.9810 - val_precision: 0.0787 - val_recall: 0.9737 - val_auc: 0.9978 -Epoch 50/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1773 - tp: 292.0000 - fp: 6370.0000 - tn: 175589.0000 - fn: 25.0000 - accuracy: 0.9649 - precision: 0.0438 - recall: 0.9211 - auc: 0.9785 - val_loss: 0.0794 - val_tp: 74.0000 - val_fp: 791.0000 - val_tn: 44702.0000 - val_fn: 2.0000 - val_accuracy: 0.9826 - val_precision: 0.0855 - val_recall: 0.9737 - val_auc: 0.9978 -Epoch 51/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1828 - tp: 289.0000 - fp: 5870.0000 - tn: 176089.0000 - fn: 28.0000 - accuracy: 0.9676 - precision: 0.0469 - recall: 0.9117 - auc: 0.9789 - val_loss: 0.0791 - val_tp: 74.0000 - val_fp: 807.0000 - val_tn: 44686.0000 - val_fn: 2.0000 - val_accuracy: 0.9822 - val_precision: 0.0840 - val_recall: 0.9737 - val_auc: 0.9980 -Epoch 52/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1567 - tp: 290.0000 - fp: 5704.0000 - tn: 176255.0000 - fn: 27.0000 - accuracy: 0.9686 - precision: 0.0484 - recall: 0.9148 - auc: 0.9860 - val_loss: 0.0772 - val_tp: 74.0000 - val_fp: 765.0000 - val_tn: 44728.0000 - val_fn: 2.0000 - val_accuracy: 0.9832 - val_precision: 0.0882 - val_recall: 0.9737 - val_auc: 0.9979 -Epoch 53/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1752 - tp: 290.0000 - fp: 6278.0000 - tn: 175681.0000 - fn: 27.0000 - accuracy: 0.9654 - precision: 0.0442 - recall: 0.9148 - auc: 0.9808 - val_loss: 0.0854 - val_tp: 74.0000 - val_fp: 873.0000 - val_tn: 44620.0000 - val_fn: 2.0000 - val_accuracy: 0.9808 - val_precision: 0.0781 - val_recall: 0.9737 - val_auc: 0.9979 -Epoch 54/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1644 - tp: 289.0000 - fp: 6298.0000 - tn: 175661.0000 - fn: 28.0000 - accuracy: 0.9653 - precision: 0.0439 - recall: 0.9117 - auc: 0.9833 - val_loss: 0.0875 - val_tp: 74.0000 - val_fp: 904.0000 - val_tn: 44589.0000 - val_fn: 2.0000 - val_accuracy: 0.9801 - val_precision: 0.0757 - val_recall: 0.9737 - val_auc: 0.9979 -Epoch 55/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1721 - tp: 290.0000 - fp: 6318.0000 - tn: 175641.0000 - fn: 27.0000 - accuracy: 0.9652 - precision: 0.0439 - recall: 0.9148 - auc: 0.9816 - val_loss: 0.0827 - val_tp: 74.0000 - val_fp: 844.0000 - val_tn: 44649.0000 - val_fn: 2.0000 - val_accuracy: 0.9814 - val_precision: 0.0806 - val_recall: 0.9737 - val_auc: 0.9979 -Epoch 56/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1841 - tp: 284.0000 - fp: 6052.0000 - tn: 175907.0000 - fn: 33.0000 - accuracy: 0.9666 - precision: 0.0448 - recall: 0.8959 - auc: 0.9798 - val_loss: 0.0872 - val_tp: 74.0000 - val_fp: 911.0000 - val_tn: 44582.0000 - val_fn: 2.0000 - val_accuracy: 0.9800 - val_precision: 0.0751 - val_recall: 0.9737 - val_auc: 0.9977 -Epoch 57/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1710 - tp: 289.0000 - fp: 6593.0000 - tn: 175366.0000 - fn: 28.0000 - accuracy: 0.9637 - precision: 0.0420 - recall: 0.9117 - auc: 0.9824 - val_loss: 0.0856 - val_tp: 74.0000 - val_fp: 890.0000 - val_tn: 44603.0000 - val_fn: 2.0000 - val_accuracy: 0.9804 - val_precision: 0.0768 - val_recall: 0.9737 - val_auc: 0.9978 -Epoch 58/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1649 - tp: 287.0000 - fp: 6478.0000 - tn: 175481.0000 - fn: 30.0000 - accuracy: 0.9643 - precision: 0.0424 - recall: 0.9054 - auc: 0.9836 - val_loss: 0.0797 - val_tp: 74.0000 - val_fp: 817.0000 - val_tn: 44676.0000 - val_fn: 2.0000 - val_accuracy: 0.9820 - val_precision: 0.0831 - val_recall: 0.9737 - val_auc: 0.9980 -Epoch 59/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1752 - tp: 285.0000 - fp: 5981.0000 - tn: 175978.0000 - fn: 32.0000 - accuracy: 0.9670 - precision: 0.0455 - recall: 0.8991 - auc: 0.9827 - val_loss: 0.0813 - val_tp: 74.0000 - val_fp: 842.0000 - val_tn: 44651.0000 - val_fn: 2.0000 - val_accuracy: 0.9815 - val_precision: 0.0808 - val_recall: 0.9737 - val_auc: 0.9980 -Epoch 60/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1374 - tp: 298.0000 - fp: 5910.0000 - tn: 176049.0000 - fn: 19.0000 - accuracy: 0.9675 - precision: 0.0480 - recall: 0.9401 - auc: 0.9884 - val_loss: 0.0760 - val_tp: 74.0000 - val_fp: 764.0000 - val_tn: 44729.0000 - val_fn: 2.0000 - val_accuracy: 0.9832 - val_precision: 0.0883 - val_recall: 0.9737 - val_auc: 0.9980 -Epoch 61/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.1655 - tp: 288.0000 - fp: 5872.0000 - tn: 176087.0000 - fn: 29.0000 - accuracy: 0.9676 - precision: 0.0468 - recall: 0.9085 - auc: 0.9838 - val_loss: 0.0795 - val_tp: 74.0000 - val_fp: 819.0000 - val_tn: 44674.0000 - val_fn: 2.0000 - val_accuracy: 0.9820 - val_precision: 0.0829 - val_recall: 0.9737 - val_auc: 0.9979 -Epoch 62/100 -90/90 [==============================] - 1s 6ms/step - loss: 0.2024 - tp: 281.0000 - fp: 6087.0000 - tn: 175872.0000 - fn: 36.0000 - accuracy: 0.9664 - precision: 0.0441 - recall: 0.8864 - auc: 0.9758 - val_loss: 0.0841 - val_tp: 74.0000 - val_fp: 872.0000 - val_tn: 44621.0000 - val_fn: 2.0000 - val_accuracy: 0.9808 - val_precision: 0.0782 - val_recall: 0.9737 - val_auc: 0.9979 -Epoch 63/100 -90/90 [==============================] - 1s 7ms/step - loss: 0.1624 - tp: 288.0000 - fp: 6407.0000 - tn: 175552.0000 - fn: 29.0000 - accuracy: 0.9647 - precision: 0.0430 - recall: 0.9085 - auc: 0.9855 - val_loss: 0.0836 - val_tp: 74.0000 - val_fp: 876.0000 - val_tn: 44617.0000 - val_fn: 2.0000 - val_accuracy: 0.9807 - val_precision: 0.0779 - val_recall: 0.9737 - val_auc: 0.9979 -Epoch 64/100 -90/90 [==============================] - 1s 7ms/step - loss: 0.1757 - tp: 287.0000 - fp: 6419.0000 - tn: 175540.0000 - fn: 30.0000 - accuracy: 0.9646 - precision: 0.0428 - recall: 0.9054 - auc: 0.9812 - val_loss: 0.0803 - val_tp: 74.0000 - val_fp: 832.0000 - val_tn: 44661.0000 - val_fn: 2.0000 - val_accuracy: 0.9817 - val_precision: 0.0817 - val_recall: 0.9737 - val_auc: 0.9979 -Epoch 65/100 -90/90 [==============================] - 1s 7ms/step - loss: 0.1609 - tp: 287.0000 - fp: 6008.0000 - tn: 175951.0000 - fn: 30.0000 - accuracy: 0.9669 - precision: 0.0456 - recall: 0.9054 - auc: 0.9854 - val_loss: 0.0805 - val_tp: 74.0000 - val_fp: 838.0000 - val_tn: 44655.0000 - val_fn: 2.0000 - val_accuracy: 0.9816 - val_precision: 0.0811 - val_recall: 0.9737 - val_auc: 0.9980 -Epoch 66/100 -90/90 [==============================] - 1s 7ms/step - loss: 0.1593 - tp: 290.0000 - fp: 6104.0000 - tn: 175855.0000 - fn: 27.0000 - accuracy: 0.9664 - precision: 0.0454 - recall: 0.9148 - auc: 0.9838 - val_loss: 0.0801 - val_tp: 74.0000 - val_fp: 822.0000 - val_tn: 44671.0000 - val_fn: 2.0000 - val_accuracy: 0.9819 - val_precision: 0.0826 - val_recall: 0.9737 - val_auc: 0.9980 -Epoch 67/100 -90/90 [==============================] - 1s 8ms/step - loss: 0.1600 - tp: 292.0000 - fp: 5888.0000 - tn: 176071.0000 - fn: 25.0000 - accuracy: 0.9676 - precision: 0.0472 - recall: 0.9211 - auc: 0.9823 - val_loss: 0.0766 - val_tp: 74.0000 - val_fp: 786.0000 - val_tn: 44707.0000 - val_fn: 2.0000 - val_accuracy: 0.9827 - val_precision: 0.0860 - val_recall: 0.9737 - val_auc: 0.9981 -Epoch 68/100 -90/90 [==============================] - 1s 8ms/step - loss: 0.1803 - tp: 286.0000 - fp: 5871.0000 - tn: 176088.0000 - fn: 31.0000 - accuracy: 0.9676 - precision: 0.0465 - recall: 0.9022 - auc: 0.9792 - val_loss: 0.0785 - val_tp: 74.0000 - val_fp: 788.0000 - val_tn: 44705.0000 - val_fn: 2.0000 - val_accuracy: 0.9827 - val_precision: 0.0858 - val_recall: 0.9737 - val_auc: 0.9980 -Epoch 69/100 -90/90 [==============================] - 1s 7ms/step - loss: 0.1873 - tp: 284.0000 - fp: 5685.0000 - tn: 176274.0000 - fn: 33.0000 - accuracy: 0.9686 - precision: 0.0476 - recall: 0.8959 - auc: 0.9773 - val_loss: 0.0779 - val_tp: 74.0000 - val_fp: 786.0000 - val_tn: 44707.0000 - val_fn: 2.0000 - val_accuracy: 0.9827 - val_precision: 0.0860 - val_recall: 0.9737 - val_auc: 0.9979 -Epoch 70/100 -90/90 [==============================] - 1s 7ms/step - loss: 0.1525 - tp: 289.0000 - fp: 6048.0000 - tn: 175911.0000 - fn: 28.0000 - accuracy: 0.9667 - precision: 0.0456 - recall: 0.9117 - auc: 0.9857 - val_loss: 0.0791 - val_tp: 74.0000 - val_fp: 803.0000 - val_tn: 44690.0000 - val_fn: 2.0000 - val_accuracy: 0.9823 - val_precision: 0.0844 - val_recall: 0.9737 - val_auc: 0.9979 -Epoch 71/100 -90/90 [==============================] - 1s 7ms/step - loss: 0.1971 - tp: 284.0000 - fp: 5980.0000 - tn: 175979.0000 - fn: 33.0000 - accuracy: 0.9670 - precision: 0.0453 - recall: 0.8959 - auc: 0.9753 - val_loss: 0.0811 - val_tp: 74.0000 - val_fp: 837.0000 - val_tn: 44656.0000 - val_fn: 2.0000 - val_accuracy: 0.9816 - val_precision: 0.0812 - val_recall: 0.9737 - val_auc: 0.9980 -Epoch 72/100 -90/90 [==============================] - 1s 7ms/step - loss: 0.1695 - tp: 286.0000 - fp: 6341.0000 - tn: 175618.0000 - fn: 31.0000 - accuracy: 0.9650 - precision: 0.0432 - recall: 0.9022 - auc: 0.9845 - val_loss: 0.0846 - val_tp: 74.0000 - val_fp: 896.0000 - val_tn: 44597.0000 - val_fn: 2.0000 - val_accuracy: 0.9803 - val_precision: 0.0763 - val_recall: 0.9737 - val_auc: 0.9979 -Epoch 73/100 -90/90 [==============================] - 1s 7ms/step - loss: 0.1766 - tp: 287.0000 - fp: 6297.0000 - tn: 175662.0000 - fn: 30.0000 - accuracy: 0.9653 - precision: 0.0436 - recall: 0.9054 - auc: 0.9818 - val_loss: 0.0824 - val_tp: 74.0000 - val_fp: 865.0000 - val_tn: 44628.0000 - val_fn: 2.0000 - val_accuracy: 0.9810 - val_precision: 0.0788 - val_recall: 0.9737 - val_auc: 0.9980 -Epoch 74/100 -90/90 [==============================] - 1s 7ms/step - loss: 0.1623 - tp: 289.0000 - fp: 6086.0000 - tn: 175873.0000 - fn: 28.0000 - accuracy: 0.9665 - precision: 0.0453 - recall: 0.9117 - auc: 0.9851 - val_loss: 0.0805 - val_tp: 74.0000 - val_fp: 829.0000 - val_tn: 44664.0000 - val_fn: 2.0000 - val_accuracy: 0.9818 - val_precision: 0.0819 - val_recall: 0.9737 - val_auc: 0.9979 -Epoch 75/100 -90/90 [==============================] - 1s 7ms/step - loss: 0.1746 - tp: 286.0000 - fp: 6430.0000 - tn: 175529.0000 - fn: 31.0000 - accuracy: 0.9646 - precision: 0.0426 - recall: 0.9022 - auc: 0.9826 - val_loss: 0.0851 - val_tp: 74.0000 - val_fp: 920.0000 - val_tn: 44573.0000 - val_fn: 2.0000 - val_accuracy: 0.9798 - val_precision: 0.0744 - val_recall: 0.9737 - val_auc: 0.9979 -Epoch 76/100 -90/90 [==============================] - 1s 7ms/step - loss: 0.1439 - tp: 294.0000 - fp: 6075.0000 - tn: 175884.0000 - fn: 23.0000 - accuracy: 0.9665 - precision: 0.0462 - recall: 0.9274 - auc: 0.9877 - val_loss: 0.0818 - val_tp: 74.0000 - val_fp: 872.0000 - val_tn: 44621.0000 - val_fn: 2.0000 - val_accuracy: 0.9808 - val_precision: 0.0782 - val_recall: 0.9737 - val_auc: 0.9979 -Epoch 77/100 -82/90 [==========================>...] - ETA: 0s - loss: 0.1624 - tp: 266.0000 - fp: 5807.0000 - tn: 161834.0000 - fn: 29.0000 - accuracy: 0.9652 - precision: 0.0438 - recall: 0.9017 - auc: 0.9853Restoring model weights from the end of the best epoch. -90/90 [==============================] - 1s 7ms/step - loss: 0.1554 - tp: 288.0000 - fp: 6332.0000 - tn: 175627.0000 - fn: 29.0000 - accuracy: 0.9651 - precision: 0.0435 - recall: 0.9085 - auc: 0.9862 - val_loss: 0.0818 - val_tp: 74.0000 - val_fp: 875.0000 - val_tn: 44618.0000 - val_fn: 2.0000 - val_accuracy: 0.9808 - val_precision: 0.0780 - val_recall: 0.9737 - val_auc: 0.9979 -Epoch 00077: early stopping - -``` - -### Check training history - -```py -plot_metrics(weighted_history) -``` - -![png](img/677f173984390980c5f4af3a22313c24.png) - -### Evaluate metrics - -```py -train_predictions_weighted = weighted_model.predict(train_features, batch_size=BATCH_SIZE) -test_predictions_weighted = weighted_model.predict(test_features, batch_size=BATCH_SIZE) -``` - -```py -weighted_results = weighted_model.evaluate(test_features, test_labels, - batch_size=BATCH_SIZE, verbose=0) -for name, value in zip(weighted_model.metrics_names, weighted_results): - print(name, ': ', value) -print() - -plot_cm(test_labels, test_predictions_weighted) -``` - -```py -loss : 0.07622280716896057 -tp : 90.0 -fp : 998.0 -tn : 55865.0 -fn : 9.0 -accuracy : 0.982321560382843 -precision : 0.08272058516740799 -recall : 0.9090909361839294 -auc : 0.9769566059112549 - -Legitimate Transactions Detected (True Negatives): 55865 -Legitimate Transactions Incorrectly Detected (False Positives): 998 -Fraudulent Transactions Missed (False Negatives): 9 -Fraudulent Transactions Detected (True Positives): 90 -Total Fraudulent Transactions: 99 - -``` - -![png](img/00fbc45eaf75c4132a6ea862403f4be4.png) - -Here you can see that with class weights the accuracy and precision are lower because there are more false positives, but conversely the recall and AUC are higher because the model also found more true positives. Despite having lower accuracy, this model has higher recall (and identifies more fraudulent transactions). Of course, there is a cost to both types of error (you wouldn't want to bug users by flagging too many legitimate transactions as fraudulent, either). Carefully consider the trade-offs between these different types of errors for your application. - -### Plot the ROC - -```py -plot_roc("Train Baseline", train_labels, train_predictions_baseline, color=colors[0]) -plot_roc("Test Baseline", test_labels, test_predictions_baseline, color=colors[0], linestyle='--') - -plot_roc("Train Weighted", train_labels, train_predictions_weighted, color=colors[1]) -plot_roc("Test Weighted", test_labels, test_predictions_weighted, color=colors[1], linestyle='--') - -plt.legend(loc='lower right') -``` - -```py - - -``` - -![png](img/13a6ef1c7f66c4208c56677c5ddd6506.png) - -## Oversampling - -### Oversample the minority class - -A related approach would be to resample the dataset by oversampling the minority class. - -```py -pos_features = train_features[bool_train_labels] -neg_features = train_features[~bool_train_labels] - -pos_labels = train_labels[bool_train_labels] -neg_labels = train_labels[~bool_train_labels] -``` - -#### Using NumPy - -You can balance the dataset manually by choosing the right number of random indices from the positive examples: - -```py -ids = np.arange(len(pos_features)) -choices = np.random.choice(ids, len(neg_features)) - -res_pos_features = pos_features[choices] -res_pos_labels = pos_labels[choices] - -res_pos_features.shape -``` - -```py -(181959, 29) - -``` - -```py -resampled_features = np.concatenate([res_pos_features, neg_features], axis=0) -resampled_labels = np.concatenate([res_pos_labels, neg_labels], axis=0) - -order = np.arange(len(resampled_labels)) -np.random.shuffle(order) -resampled_features = resampled_features[order] -resampled_labels = resampled_labels[order] - -resampled_features.shape -``` - -```py -(363918, 29) - -``` - -#### Using [`tf.data`](https://tensorflow.google.cn/api_docs/python/tf/data) - -If you're using [`tf.data`](https://tensorflow.google.cn/api_docs/python/tf/data) the easiest way to produce balanced examples is to start with a `positive` and a `negative` dataset, and merge them. See [the tf.data guide](https://tensorflow.google.cn/guide/data) for more examples. - -```py -BUFFER_SIZE = 100000 - -def make_ds(features, labels): - ds = tf.data.Dataset.from_tensor_slices((features, labels))#.cache() - ds = ds.shuffle(BUFFER_SIZE).repeat() - return ds - -pos_ds = make_ds(pos_features, pos_labels) -neg_ds = make_ds(neg_features, neg_labels) -``` - -Each dataset provides `(feature, label)` pairs: - -```py -for features, label in pos_ds.take(1): - print("Features:\n", features.numpy()) - print() - print("Label: ", label.numpy()) -``` - -```py -Features: - [-1.72731925 1.77656615 -3.74269876 2.74253414 -1.32668397 -1.34677584 - -4.46175762 2.0139002 -2.59309618 -5\. 4.12736453 -5. - 0.02274489 -5\. -0.32786349 -5\. -5\. -2.96360886 - 2.89835815 0.75463714 1.2022707 -0.14114195 -0.95544067 -1.22935903 - 0.18671861 -0.27928716 3.04376109 0.29779937 -1.45688482] - -Label: 1 - -``` - -Merge the two together using [`experimental.sample_from_datasets`](https://tensorflow.google.cn/api_docs/python/tf/data/experimental/sample_from_datasets): - -```py -resampled_ds = tf.data.experimental.sample_from_datasets([pos_ds, neg_ds], weights=[0.5, 0.5]) -resampled_ds = resampled_ds.batch(BATCH_SIZE).prefetch(2) -``` - -```py -for features, label in resampled_ds.take(1): - print(label.numpy().mean()) -``` - -```py -0.50537109375 - -``` - -To use this dataset, you'll need the number of steps per epoch. - -The definition of "epoch" in this case is less clear. Say it's the number of batches required to see each negative example once: - -```py -resampled_steps_per_epoch = np.ceil(2.0*neg/BATCH_SIZE) -resampled_steps_per_epoch -``` - -```py -278.0 - -``` - -### Train on the oversampled data - -Now try training the model with the resampled data set instead of using class weights to see how these methods compare. - -**Note:** Because the data was balanced by replicating the positive examples, the total dataset size is larger, and each epoch runs for more training steps. - -```py -resampled_model = make_model() -resampled_model.load_weights(initial_weights) - -# Reset the bias to zero, since this dataset is balanced. -output_layer = resampled_model.layers[-1] -output_layer.bias.assign([0]) - -val_ds = tf.data.Dataset.from_tensor_slices((val_features, val_labels)).cache() -val_ds = val_ds.batch(BATCH_SIZE).prefetch(2) - -resampled_history = resampled_model.fit( - resampled_ds, - epochs=EPOCHS, - steps_per_epoch=resampled_steps_per_epoch, - callbacks=[early_stopping], - validation_data=val_ds) -``` - -```py -Epoch 1/100 -278/278 [==============================] - 7s 25ms/step - loss: 0.4377 - tp: 243925.0000 - fp: 88309.0000 - tn: 253494.0000 - fn: 40578.0000 - accuracy: 0.7942 - precision: 0.7342 - recall: 0.8574 - auc: 0.9062 - val_loss: 0.2355 - val_tp: 75.0000 - val_fp: 1532.0000 - val_tn: 43961.0000 - val_fn: 1.0000 - val_accuracy: 0.9664 - val_precision: 0.0467 - val_recall: 0.9868 - val_auc: 0.9984 -Epoch 2/100 -278/278 [==============================] - 7s 24ms/step - loss: 0.2055 - tp: 258676.0000 - fp: 18235.0000 - tn: 266800.0000 - fn: 25633.0000 - accuracy: 0.9229 - precision: 0.9341 - recall: 0.9098 - auc: 0.9741 - val_loss: 0.1247 - val_tp: 74.0000 - val_fp: 1074.0000 - val_tn: 44419.0000 - val_fn: 2.0000 - val_accuracy: 0.9764 - val_precision: 0.0645 - val_recall: 0.9737 - val_auc: 0.9981 -Epoch 3/100 -278/278 [==============================] - 7s 24ms/step - loss: 0.1640 - tp: 263104.0000 - fp: 12413.0000 - tn: 272291.0000 - fn: 21536.0000 - accuracy: 0.9404 - precision: 0.9549 - recall: 0.9243 - auc: 0.9834 - val_loss: 0.0981 - val_tp: 74.0000 - val_fp: 937.0000 - val_tn: 44556.0000 - val_fn: 2.0000 - val_accuracy: 0.9794 - val_precision: 0.0732 - val_recall: 0.9737 - val_auc: 0.9980 -Epoch 4/100 -278/278 [==============================] - 7s 24ms/step - loss: 0.1417 - tp: 265623.0000 - fp: 10539.0000 - tn: 274390.0000 - fn: 18792.0000 - accuracy: 0.9485 - precision: 0.9618 - recall: 0.9339 - auc: 0.9882 - val_loss: 0.0842 - val_tp: 74.0000 - val_fp: 866.0000 - val_tn: 44627.0000 - val_fn: 2.0000 - val_accuracy: 0.9810 - val_precision: 0.0787 - val_recall: 0.9737 - val_auc: 0.9979 -Epoch 5/100 -278/278 [==============================] - 7s 24ms/step - loss: 0.1275 - tp: 267112.0000 - fp: 9551.0000 - tn: 275482.0000 - fn: 17199.0000 - accuracy: 0.9530 - precision: 0.9655 - recall: 0.9395 - auc: 0.9909 - val_loss: 0.0745 - val_tp: 74.0000 - val_fp: 822.0000 - val_tn: 44671.0000 - val_fn: 2.0000 - val_accuracy: 0.9819 - val_precision: 0.0826 - val_recall: 0.9737 - val_auc: 0.9978 -Epoch 6/100 -278/278 [==============================] - 7s 24ms/step - loss: 0.1175 - tp: 268432.0000 - fp: 8918.0000 - tn: 276042.0000 - fn: 15952.0000 - accuracy: 0.9563 - precision: 0.9678 - recall: 0.9439 - auc: 0.9926 - val_loss: 0.0663 - val_tp: 74.0000 - val_fp: 750.0000 - val_tn: 44743.0000 - val_fn: 2.0000 - val_accuracy: 0.9835 - val_precision: 0.0898 - val_recall: 0.9737 - val_auc: 0.9972 -Epoch 7/100 -278/278 [==============================] - 7s 24ms/step - loss: 0.1088 - tp: 269482.0000 - fp: 8208.0000 - tn: 276504.0000 - fn: 15150.0000 - accuracy: 0.9590 - precision: 0.9704 - recall: 0.9468 - auc: 0.9938 - val_loss: 0.0595 - val_tp: 74.0000 - val_fp: 703.0000 - val_tn: 44790.0000 - val_fn: 2.0000 - val_accuracy: 0.9845 - val_precision: 0.0952 - val_recall: 0.9737 - val_auc: 0.9969 -Epoch 8/100 -278/278 [==============================] - 7s 24ms/step - loss: 0.1040 - tp: 269902.0000 - fp: 7829.0000 - tn: 276891.0000 - fn: 14722.0000 - accuracy: 0.9604 - precision: 0.9718 - recall: 0.9483 - auc: 0.9943 - val_loss: 0.0527 - val_tp: 74.0000 - val_fp: 634.0000 - val_tn: 44859.0000 - val_fn: 2.0000 - val_accuracy: 0.9860 - val_precision: 0.1045 - val_recall: 0.9737 - val_auc: 0.9962 -Epoch 9/100 -278/278 [==============================] - 7s 24ms/step - loss: 0.0992 - tp: 271117.0000 - fp: 7567.0000 - tn: 276382.0000 - fn: 14278.0000 - accuracy: 0.9616 - precision: 0.9728 - recall: 0.9500 - auc: 0.9948 - val_loss: 0.0509 - val_tp: 74.0000 - val_fp: 651.0000 - val_tn: 44842.0000 - val_fn: 2.0000 - val_accuracy: 0.9857 - val_precision: 0.1021 - val_recall: 0.9737 - val_auc: 0.9959 -Epoch 10/100 -278/278 [==============================] - 7s 24ms/step - loss: 0.0960 - tp: 270783.0000 - fp: 7337.0000 - tn: 277379.0000 - fn: 13845.0000 - accuracy: 0.9628 - precision: 0.9736 - recall: 0.9514 - auc: 0.9950 - val_loss: 0.0467 - val_tp: 74.0000 - val_fp: 612.0000 - val_tn: 44881.0000 - val_fn: 2.0000 - val_accuracy: 0.9865 - val_precision: 0.1079 - val_recall: 0.9737 - val_auc: 0.9959 -Epoch 11/100 -278/278 [==============================] - ETA: 0s - loss: 0.0927 - tp: 271368.0000 - fp: 7017.0000 - tn: 277337.0000 - fn: 13622.0000 - accuracy: 0.9637 - precision: 0.9748 - recall: 0.9522 - auc: 0.9954Restoring model weights from the end of the best epoch. -278/278 [==============================] - 7s 25ms/step - loss: 0.0927 - tp: 271368.0000 - fp: 7017.0000 - tn: 277337.0000 - fn: 13622.0000 - accuracy: 0.9637 - precision: 0.9748 - recall: 0.9522 - auc: 0.9954 - val_loss: 0.0434 - val_tp: 74.0000 - val_fp: 555.0000 - val_tn: 44938.0000 - val_fn: 2.0000 - val_accuracy: 0.9878 - val_precision: 0.1176 - val_recall: 0.9737 - val_auc: 0.9957 -Epoch 00011: early stopping - -``` - -If the training process were considering the whole dataset on each gradient update, this oversampling would be basically identical to the class weighting. - -But when training the model batch-wise, as you did here, the oversampled data provides a smoother gradient signal: Instead of each positive example being shown in one batch with a large weight, they're shown in many different batches each time with a small weight. - -This smoother gradient signal makes it easier to train the model. - -### Check training history - -Note that the distributions of metrics will be different here, because the training data has a totally different distribution from the validation and test data. - -```py -plot_metrics(resampled_history) -``` - -![png](img/6e877844629f2888009486ac2f5ece0b.png) - -### Re-train - -Because training is easier on the balanced data, the above training procedure may overfit quickly. - -So break up the epochs to give the [`callbacks.EarlyStopping`](https://tensorflow.google.cn/api_docs/python/tf/keras/callbacks/EarlyStopping) finer control over when to stop training. - -```py -resampled_model = make_model() -resampled_model.load_weights(initial_weights) - -# Reset the bias to zero, since this dataset is balanced. -output_layer = resampled_model.layers[-1] -output_layer.bias.assign([0]) - -resampled_history = resampled_model.fit( - resampled_ds, - # These are not real epochs - steps_per_epoch=20, - epochs=10*EPOCHS, - callbacks=[early_stopping], - validation_data=(val_ds)) -``` - -```py -Epoch 1/1000 -20/20 [==============================] - 1s 56ms/step - loss: 0.9282 - tp: 14181.0000 - fp: 14018.0000 - tn: 51871.0000 - fn: 6459.0000 - accuracy: 0.7634 - precision: 0.5029 - recall: 0.6871 - auc: 0.8612 - val_loss: 0.9177 - val_tp: 68.0000 - val_fp: 32432.0000 - val_tn: 13061.0000 - val_fn: 8.0000 - val_accuracy: 0.2881 - val_precision: 0.0021 - val_recall: 0.8947 - val_auc: 0.8450 -Epoch 2/1000 -20/20 [==============================] - 1s 26ms/step - loss: 0.7143 - tp: 16471.0000 - fp: 12416.0000 - tn: 7841.0000 - fn: 4232.0000 - accuracy: 0.5936 - precision: 0.5702 - recall: 0.7956 - auc: 0.7514 - val_loss: 0.8173 - val_tp: 70.0000 - val_fp: 28250.0000 - val_tn: 17243.0000 - val_fn: 6.0000 - val_accuracy: 0.3799 - val_precision: 0.0025 - val_recall: 0.9211 - val_auc: 0.9056 -Epoch 3/1000 -20/20 [==============================] - 1s 26ms/step - loss: 0.5979 - tp: 17119.0000 - fp: 11055.0000 - tn: 9528.0000 - fn: 3258.0000 - accuracy: 0.6506 - precision: 0.6076 - recall: 0.8401 - auc: 0.8194 - val_loss: 0.7158 - val_tp: 70.0000 - val_fp: 22377.0000 - val_tn: 23116.0000 - val_fn: 6.0000 - val_accuracy: 0.5088 - val_precision: 0.0031 - val_recall: 0.9211 - val_auc: 0.9283 -Epoch 4/1000 -20/20 [==============================] - 1s 28ms/step - loss: 0.5265 - tp: 17496.0000 - fp: 9591.0000 - tn: 10955.0000 - fn: 2918.0000 - accuracy: 0.6946 - precision: 0.6459 - recall: 0.8571 - auc: 0.8542 - val_loss: 0.6276 - val_tp: 72.0000 - val_fp: 16226.0000 - val_tn: 29267.0000 - val_fn: 4.0000 - val_accuracy: 0.6438 - val_precision: 0.0044 - val_recall: 0.9474 - val_auc: 0.9576 -Epoch 5/1000 -20/20 [==============================] - 1s 28ms/step - loss: 0.4682 - tp: 17653.0000 - fp: 8002.0000 - tn: 12532.0000 - fn: 2773.0000 - accuracy: 0.7369 - precision: 0.6881 - recall: 0.8642 - auc: 0.8793 - val_loss: 0.5534 - val_tp: 75.0000 - val_fp: 10889.0000 - val_tn: 34604.0000 - val_fn: 1.0000 - val_accuracy: 0.7610 - val_precision: 0.0068 - val_recall: 0.9868 - val_auc: 0.9848 -Epoch 6/1000 -20/20 [==============================] - 1s 28ms/step - loss: 0.4174 - tp: 17837.0000 - fp: 6635.0000 - tn: 13890.0000 - fn: 2598.0000 - accuracy: 0.7746 - precision: 0.7289 - recall: 0.8729 - auc: 0.9003 - val_loss: 0.4905 - val_tp: 75.0000 - val_fp: 6493.0000 - val_tn: 39000.0000 - val_fn: 1.0000 - val_accuracy: 0.8575 - val_precision: 0.0114 - val_recall: 0.9868 - val_auc: 0.9922 -Epoch 7/1000 -20/20 [==============================] - 1s 28ms/step - loss: 0.3787 - tp: 17939.0000 - fp: 5276.0000 - tn: 15251.0000 - fn: 2494.0000 - accuracy: 0.8103 - precision: 0.7727 - recall: 0.8779 - auc: 0.9162 - val_loss: 0.4380 - val_tp: 75.0000 - val_fp: 4314.0000 - val_tn: 41179.0000 - val_fn: 1.0000 - val_accuracy: 0.9053 - val_precision: 0.0171 - val_recall: 0.9868 - val_auc: 0.9954 -Epoch 8/1000 -20/20 [==============================] - 1s 28ms/step - loss: 0.3537 - tp: 18025.0000 - fp: 4431.0000 - tn: 15994.0000 - fn: 2510.0000 - accuracy: 0.8305 - precision: 0.8027 - recall: 0.8778 - auc: 0.9242 - val_loss: 0.3942 - val_tp: 75.0000 - val_fp: 3206.0000 - val_tn: 42287.0000 - val_fn: 1.0000 - val_accuracy: 0.9296 - val_precision: 0.0229 - val_recall: 0.9868 - val_auc: 0.9972 -Epoch 9/1000 -20/20 [==============================] - 1s 27ms/step - loss: 0.3290 - tp: 17975.0000 - fp: 3746.0000 - tn: 16823.0000 - fn: 2416.0000 - accuracy: 0.8496 - precision: 0.8275 - recall: 0.8815 - auc: 0.9341 - val_loss: 0.3560 - val_tp: 75.0000 - val_fp: 2593.0000 - val_tn: 42900.0000 - val_fn: 1.0000 - val_accuracy: 0.9431 - val_precision: 0.0281 - val_recall: 0.9868 - val_auc: 0.9979 -Epoch 10/1000 -20/20 [==============================] - 1s 27ms/step - loss: 0.3121 - tp: 18157.0000 - fp: 3263.0000 - tn: 17154.0000 - fn: 2386.0000 - accuracy: 0.8621 - precision: 0.8477 - recall: 0.8839 - auc: 0.9397 - val_loss: 0.3239 - val_tp: 75.0000 - val_fp: 2212.0000 - val_tn: 43281.0000 - val_fn: 1.0000 - val_accuracy: 0.9514 - val_precision: 0.0328 - val_recall: 0.9868 - val_auc: 0.9982 -Epoch 11/1000 -20/20 [==============================] - 1s 28ms/step - loss: 0.2934 - tp: 18151.0000 - fp: 2867.0000 - tn: 17641.0000 - fn: 2301.0000 - accuracy: 0.8738 - precision: 0.8636 - recall: 0.8875 - auc: 0.9471 - val_loss: 0.2972 - val_tp: 75.0000 - val_fp: 1970.0000 - val_tn: 43523.0000 - val_fn: 1.0000 - val_accuracy: 0.9567 - val_precision: 0.0367 - val_recall: 0.9868 - val_auc: 0.9983 -Epoch 12/1000 -20/20 [==============================] - 1s 28ms/step - loss: 0.2765 - tp: 18454.0000 - fp: 2498.0000 - tn: 17838.0000 - fn: 2170.0000 - accuracy: 0.8860 - precision: 0.8808 - recall: 0.8948 - auc: 0.9537 - val_loss: 0.2727 - val_tp: 75.0000 - val_fp: 1763.0000 - val_tn: 43730.0000 - val_fn: 1.0000 - val_accuracy: 0.9613 - val_precision: 0.0408 - val_recall: 0.9868 - val_auc: 0.9984 -Epoch 13/1000 -20/20 [==============================] - 1s 27ms/step - loss: 0.2649 - tp: 18355.0000 - fp: 2240.0000 - tn: 18272.0000 - fn: 2093.0000 - accuracy: 0.8942 - precision: 0.8912 - recall: 0.8976 - auc: 0.9577 - val_loss: 0.2528 - val_tp: 75.0000 - val_fp: 1638.0000 - val_tn: 43855.0000 - val_fn: 1.0000 - val_accuracy: 0.9640 - val_precision: 0.0438 - val_recall: 0.9868 - val_auc: 0.9984 -Epoch 14/1000 -20/20 [==============================] - 1s 28ms/step - loss: 0.2547 - tp: 18293.0000 - fp: 2013.0000 - tn: 18577.0000 - fn: 2077.0000 - accuracy: 0.9001 - precision: 0.9009 - recall: 0.8980 - auc: 0.9609 - val_loss: 0.2338 - val_tp: 75.0000 - val_fp: 1516.0000 - val_tn: 43977.0000 - val_fn: 1.0000 - val_accuracy: 0.9667 - val_precision: 0.0471 - val_recall: 0.9868 - val_auc: 0.9985 -Epoch 15/1000 -20/20 [==============================] - 1s 27ms/step - loss: 0.2414 - tp: 18414.0000 - fp: 1709.0000 - tn: 18760.0000 - fn: 2077.0000 - accuracy: 0.9076 - precision: 0.9151 - recall: 0.8986 - auc: 0.9641 - val_loss: 0.2187 - val_tp: 75.0000 - val_fp: 1462.0000 - val_tn: 44031.0000 - val_fn: 1.0000 - val_accuracy: 0.9679 - val_precision: 0.0488 - val_recall: 0.9868 - val_auc: 0.9984 -Epoch 16/1000 -20/20 [==============================] - 1s 27ms/step - loss: 0.2386 - tp: 18465.0000 - fp: 1792.0000 - tn: 18740.0000 - fn: 1963.0000 - accuracy: 0.9083 - precision: 0.9115 - recall: 0.9039 - auc: 0.9660 - val_loss: 0.2044 - val_tp: 75.0000 - val_fp: 1383.0000 - val_tn: 44110.0000 - val_fn: 1.0000 - val_accuracy: 0.9696 - val_precision: 0.0514 - val_recall: 0.9868 - val_auc: 0.9984 -Epoch 17/1000 -20/20 [==============================] - 1s 27ms/step - loss: 0.2290 - tp: 18685.0000 - fp: 1578.0000 - tn: 18675.0000 - fn: 2022.0000 - accuracy: 0.9121 - precision: 0.9221 - recall: 0.9024 - auc: 0.9673 - val_loss: 0.1913 - val_tp: 75.0000 - val_fp: 1297.0000 - val_tn: 44196.0000 - val_fn: 1.0000 - val_accuracy: 0.9715 - val_precision: 0.0547 - val_recall: 0.9868 - val_auc: 0.9983 -Epoch 18/1000 -20/20 [==============================] - 1s 27ms/step - loss: 0.2170 - tp: 18526.0000 - fp: 1453.0000 - tn: 19039.0000 - fn: 1942.0000 - accuracy: 0.9171 - precision: 0.9273 - recall: 0.9051 - auc: 0.9714 - val_loss: 0.1812 - val_tp: 75.0000 - val_fp: 1266.0000 - val_tn: 44227.0000 - val_fn: 1.0000 - val_accuracy: 0.9722 - val_precision: 0.0559 - val_recall: 0.9868 - val_auc: 0.9983 -Epoch 19/1000 -20/20 [==============================] - 1s 28ms/step - loss: 0.2160 - tp: 18362.0000 - fp: 1402.0000 - tn: 19310.0000 - fn: 1886.0000 - accuracy: 0.9197 - precision: 0.9291 - recall: 0.9069 - auc: 0.9715 - val_loss: 0.1716 - val_tp: 75.0000 - val_fp: 1219.0000 - val_tn: 44274.0000 - val_fn: 1.0000 - val_accuracy: 0.9732 - val_precision: 0.0580 - val_recall: 0.9868 - val_auc: 0.9982 -Epoch 20/1000 -20/20 [==============================] - 1s 28ms/step - loss: 0.2081 - tp: 18722.0000 - fp: 1297.0000 - tn: 19031.0000 - fn: 1910.0000 - accuracy: 0.9217 - precision: 0.9352 - recall: 0.9074 - auc: 0.9735 - val_loss: 0.1633 - val_tp: 75.0000 - val_fp: 1192.0000 - val_tn: 44301.0000 - val_fn: 1.0000 - val_accuracy: 0.9738 - val_precision: 0.0592 - val_recall: 0.9868 - val_auc: 0.9981 -Epoch 21/1000 -20/20 [==============================] - 1s 27ms/step - loss: 0.2041 - tp: 18929.0000 - fp: 1263.0000 - tn: 18884.0000 - fn: 1884.0000 - accuracy: 0.9232 - precision: 0.9375 - recall: 0.9095 - auc: 0.9742 - val_loss: 0.1571 - val_tp: 75.0000 - val_fp: 1187.0000 - val_tn: 44306.0000 - val_fn: 1.0000 - val_accuracy: 0.9739 - val_precision: 0.0594 - val_recall: 0.9868 - val_auc: 0.9980 -Epoch 22/1000 -20/20 [==============================] - 1s 27ms/step - loss: 0.2017 - tp: 18834.0000 - fp: 1224.0000 - tn: 19064.0000 - fn: 1838.0000 - accuracy: 0.9252 - precision: 0.9390 - recall: 0.9111 - auc: 0.9752 - val_loss: 0.1508 - val_tp: 75.0000 - val_fp: 1162.0000 - val_tn: 44331.0000 - val_fn: 1.0000 - val_accuracy: 0.9745 - val_precision: 0.0606 - val_recall: 0.9868 - val_auc: 0.9980 -Epoch 23/1000 -20/20 [==============================] - 1s 28ms/step - loss: 0.1951 - tp: 18612.0000 - fp: 1127.0000 - tn: 19424.0000 - fn: 1797.0000 - accuracy: 0.9286 - precision: 0.9429 - recall: 0.9120 - auc: 0.9764 - val_loss: 0.1458 - val_tp: 75.0000 - val_fp: 1158.0000 - val_tn: 44335.0000 - val_fn: 1.0000 - val_accuracy: 0.9746 - val_precision: 0.0608 - val_recall: 0.9868 - val_auc: 0.9979 -Epoch 24/1000 -18/20 [==========================>...] - ETA: 0s - loss: 0.1945 - tp: 16932.0000 - fp: 1065.0000 - tn: 17301.0000 - fn: 1566.0000 - accuracy: 0.9286 - precision: 0.9408 - recall: 0.9153 - auc: 0.9765Restoring model weights from the end of the best epoch. -20/20 [==============================] - 1s 27ms/step - loss: 0.1943 - tp: 18796.0000 - fp: 1179.0000 - tn: 19226.0000 - fn: 1759.0000 - accuracy: 0.9283 - precision: 0.9410 - recall: 0.9144 - auc: 0.9765 - val_loss: 0.1401 - val_tp: 75.0000 - val_fp: 1136.0000 - val_tn: 44357.0000 - val_fn: 1.0000 - val_accuracy: 0.9750 - val_precision: 0.0619 - val_recall: 0.9868 - val_auc: 0.9979 -Epoch 00024: early stopping - -``` - -### Re-check training history - -```py -plot_metrics(resampled_history) -``` - -![png](img/217c4e55f89d4a55a78dc082bbdc1e2f.png) - -### Evaluate metrics - -```py -train_predictions_resampled = resampled_model.predict(train_features, batch_size=BATCH_SIZE) -test_predictions_resampled = resampled_model.predict(test_features, batch_size=BATCH_SIZE) -``` - -```py -resampled_results = resampled_model.evaluate(test_features, test_labels, - batch_size=BATCH_SIZE, verbose=0) -for name, value in zip(resampled_model.metrics_names, resampled_results): - print(name, ': ', value) -print() - -plot_cm(test_labels, test_predictions_resampled) -``` - -```py -loss : 0.23386089503765106 -tp : 91.0 -fp : 1892.0 -tn : 54971.0 -fn : 8.0 -accuracy : 0.9666444063186646 -precision : 0.045890066772699356 -recall : 0.9191918969154358 -auc : 0.977620542049408 - -Legitimate Transactions Detected (True Negatives): 54971 -Legitimate Transactions Incorrectly Detected (False Positives): 1892 -Fraudulent Transactions Missed (False Negatives): 8 -Fraudulent Transactions Detected (True Positives): 91 -Total Fraudulent Transactions: 99 - -``` - -![png](img/5224f36bbf08c7f64fa501011640042b.png) - -### Plot the ROC - -```py -plot_roc("Train Baseline", train_labels, train_predictions_baseline, color=colors[0]) -plot_roc("Test Baseline", test_labels, test_predictions_baseline, color=colors[0], linestyle='--') - -plot_roc("Train Weighted", train_labels, train_predictions_weighted, color=colors[1]) -plot_roc("Test Weighted", test_labels, test_predictions_weighted, color=colors[1], linestyle='--') - -plot_roc("Train Resampled", train_labels, train_predictions_resampled, color=colors[2]) -plot_roc("Test Resampled", test_labels, test_predictions_resampled, color=colors[2], linestyle='--') -plt.legend(loc='lower right') -``` - -```py - - -``` - -![png](img/f1fa73dd5b685549afd6264592919903.png) - -## Applying this tutorial to your problem - -Imbalanced data classification is an inherently difficult task since there are so few samples to learn from. You should always start with the data first and do your best to collect as many samples as possible and give substantial thought to what features may be relevant so the model can get the most out of your minority class. At some point your model may struggle to improve and yield the results you want, so it is important to keep in mind the context of your problem and the trade offs between different types of errors. \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/058.md b/Tensorflow/TensorFlow2.0/058.md deleted file mode 100644 index 0bb37132..00000000 --- a/Tensorflow/TensorFlow2.0/058.md +++ /dev/null @@ -1,1843 +0,0 @@ -# Time series forecasting - -> 原文:[https://tensorflow.google.cn/tutorials/structured_data/time_series](https://tensorflow.google.cn/tutorials/structured_data/time_series) - -This tutorial is an introduction to time series forecasting using TensorFlow. It builds a few different styles of models including Convolutional and Recurrent Neural Networks (CNNs and RNNs). - -This is covered in two main parts, with subsections: - -* Forecast for a single timestep: - * A single feature. - * All features. -* Forecast multiple steps: - * Single-shot: Make the predictions all at once. - * Autoregressive: Make one prediction at a time and feed the output back to the model. - -## Setup - -```py -import os -import datetime - -import IPython -import IPython.display -import matplotlib as mpl -import matplotlib.pyplot as plt -import numpy as np -import pandas as pd -import seaborn as sns -import tensorflow as tf - -mpl.rcParams['figure.figsize'] = (8, 6) -mpl.rcParams['axes.grid'] = False -``` - -## The weather dataset - -This tutorial uses a [weather time series dataset](https://www.bgc-jena.mpg.de/wetter/) recorded by the [Max Planck Institute for Biogeochemistry](https://www.bgc-jena.mpg.de). - -This dataset contains 14 different features such as air temperature, atmospheric pressure, and humidity. These were collected every 10 minutes, beginning in 2003\. For efficiency, you will use only the data collected between 2009 and 2016\. This section of the dataset was prepared by François Chollet for his book [Deep Learning with Python](https://www.manning.com/books/deep-learning-with-python). - -```py -zip_path = tf.keras.utils.get_file( - origin='https://storage.googleapis.com/tensorflow/tf-keras-datasets/jena_climate_2009_2016.csv.zip', - fname='jena_climate_2009_2016.csv.zip', - extract=True) -csv_path, _ = os.path.splitext(zip_path) -``` - -```py -Downloading data from https://storage.googleapis.com/tensorflow/tf-keras-datasets/jena_climate_2009_2016.csv.zip -13574144/13568290 [==============================] - 0s 0us/step - -``` - -This tutorial will just deal with **hourly predictions**, so start by sub-sampling the data from 10 minute intervals to 1h: - -```py -df = pd.read_csv(csv_path) -# slice [start:stop:step], starting from index 5 take every 6th record. -df = df[5::6] - -date_time = pd.to_datetime(df.pop('Date Time'), format='%d.%m.%Y %H:%M:%S') -``` - -Let's take a glance at the data. Here are the first few rows: - -```py -df.head() -``` - - - -Here is the evolution of a few features over time. - -```py -plot_cols = ['T (degC)', 'p (mbar)', 'rho (g/m**3)'] -plot_features = df[plot_cols] -plot_features.index = date_time -_ = plot_features.plot(subplots=True) - -plot_features = df[plot_cols][:480] -plot_features.index = date_time[:480] -_ = plot_features.plot(subplots=True) -``` - -![png](img/78576e063fbd26107e5efc5a23a8ec2d.png) - -![png](img/147de2a992900105434d95a527a869c8.png) - -### Inspect and cleanup - -Next look at the statistics of the dataset: - -```py -df.describe().transpose() -``` - - - -#### Wind velocity - -One thing that should stand out is the `min` value of the wind velocity, `wv (m/s)` and `max. wv (m/s)` columns. This `-9999` is likely erroneous. There's a separate wind direction column, so the velocity should be `>=0`. Replace it with zeros: - -```py -wv = df['wv (m/s)'] -bad_wv = wv == -9999.0 -wv[bad_wv] = 0.0 - -max_wv = df['max. wv (m/s)'] -bad_max_wv = max_wv == -9999.0 -max_wv[bad_max_wv] = 0.0 - -# The above inplace edits are reflected in the DataFrame -df['wv (m/s)'].min() -``` - -```py -0.0 - -``` - -### Feature engineering - -Before diving in to build a model it's important to understand your data, and be sure that you're passing the model appropriately formatted data. - -#### Wind - -The last column of the data, `wd (deg)`, gives the wind direction in units of degrees. Angles do not make good model inputs, 360° and 0° should be close to each other, and wrap around smoothly. Direction shouldn't matter if the wind is not blowing. - -Right now the distribution of wind data looks like this: - -```py -plt.hist2d(df['wd (deg)'], df['wv (m/s)'], bins=(50, 50), vmax=400) -plt.colorbar() -plt.xlabel('Wind Direction [deg]') -plt.ylabel('Wind Velocity [m/s]') -``` - -```py -Text(0, 0.5, 'Wind Velocity [m/s]') - -``` - -![png](img/4f82813c049f4e0039986833c582376d.png) - -But this will be easier for the model to interpret if you convert the wind direction and velocity columns to a wind **vector**: - -```py -wv = df.pop('wv (m/s)') -max_wv = df.pop('max. wv (m/s)') - -# Convert to radians. -wd_rad = df.pop('wd (deg)')*np.pi / 180 - -# Calculate the wind x and y components. -df['Wx'] = wv*np.cos(wd_rad) -df['Wy'] = wv*np.sin(wd_rad) - -# Calculate the max wind x and y components. -df['max Wx'] = max_wv*np.cos(wd_rad) -df['max Wy'] = max_wv*np.sin(wd_rad) -``` - -The distribution of wind vectors is much simpler for the model to correctly interpret. - -```py -plt.hist2d(df['Wx'], df['Wy'], bins=(50, 50), vmax=400) -plt.colorbar() -plt.xlabel('Wind X [m/s]') -plt.ylabel('Wind Y [m/s]') -ax = plt.gca() -ax.axis('tight') -``` - -```py -(-11.305513973134667, 8.24469928549079, -8.27438540335515, 7.7338312955467785) - -``` - -![png](img/df0f8cf3d780ab200f3e674a67324435.png) - -#### Time - -Similarly the `Date Time` column is very useful, but not in this string form. Start by converting it to seconds: - -```py -timestamp_s = date_time.map(datetime.datetime.timestamp) -``` - -Similar to the wind direction the time in seconds is not a useful model input. Being weather data it has clear daily and yearly periodicity. There are many ways you could deal with periodicity. - -A simple approach to convert it to a usable signal is to use `sin` and `cos` to convert the time to clear "Time of day" and "Time of year" signals: - -```py -day = 24*60*60 -year = (365.2425)*day - -df['Day sin'] = np.sin(timestamp_s * (2 * np.pi / day)) -df['Day cos'] = np.cos(timestamp_s * (2 * np.pi / day)) -df['Year sin'] = np.sin(timestamp_s * (2 * np.pi / year)) -df['Year cos'] = np.cos(timestamp_s * (2 * np.pi / year)) -``` - -```py -plt.plot(np.array(df['Day sin'])[:25]) -plt.plot(np.array(df['Day cos'])[:25]) -plt.xlabel('Time [h]') -plt.title('Time of day signal') -``` - -```py -Text(0.5, 1.0, 'Time of day signal') - -``` - -![png](img/70c92a3e3d823d4469d81b23380fef63.png) - -This gives the model access to the most important frequency features. In this case you knew ahead of time which frequencies were important. - -If you didn't know, you can determine which frequencies are important using an `fft`. To check our assumptions, here is the [`tf.signal.rfft`](https://tensorflow.google.cn/api_docs/python/tf/signal/rfft) of the temperature over time. Note the obvious peaks at frequencies near `1/year` and `1/day`: - -```py -fft = tf.signal.rfft(df['T (degC)']) -f_per_dataset = np.arange(0, len(fft)) - -n_samples_h = len(df['T (degC)']) -hours_per_year = 24*365.2524 -years_per_dataset = n_samples_h/(hours_per_year) - -f_per_year = f_per_dataset/years_per_dataset -plt.step(f_per_year, np.abs(fft)) -plt.xscale('log') -plt.ylim(0, 400000) -plt.xlim([0.1, max(plt.xlim())]) -plt.xticks([1, 365.2524], labels=['1/Year', '1/day']) -_ = plt.xlabel('Frequency (log scale)') -``` - -![png](img/e8229311b22645eacfe9d45893aa40bc.png) - -### Split the data - -We'll use a `(70%, 20%, 10%)` split for the training, validation, and test sets. Note the data is **not** being randomly shuffled before splitting. This is for two reasons. - -1. It ensures that chopping the data into windows of consecutive samples is still possible. -2. It ensures that the validation/test results are more realistic, being evaluated on data collected after the model was trained. - -```py -column_indices = {name: i for i, name in enumerate(df.columns)} - -n = len(df) -train_df = df[0:int(n*0.7)] -val_df = df[int(n*0.7):int(n*0.9)] -test_df = df[int(n*0.9):] - -num_features = df.shape[1] -``` - -### Normalize the data - -It is important to scale features before training a neural network. Normalization is a common way of doing this scaling. Subtract the mean and divide by the standard deviation of each feature. - -The mean and standard deviation should only be computed using the training data so that the models have no access to the values in the validation and test sets. - -It's also arguable that the model shouldn't have access to future values in the training set when training, and that this normalization should be done using moving averages. That's not the focus of this tutorial, and the validation and test sets ensure that you get (somewhat) honest metrics. So in the interest of simplicity this tutorial uses a simple average. - -```py -train_mean = train_df.mean() -train_std = train_df.std() - -train_df = (train_df - train_mean) / train_std -val_df = (val_df - train_mean) / train_std -test_df = (test_df - train_mean) / train_std -``` - -Now peek at the distribution of the features. Some features do have long tails, but there are no obvious errors like the `-9999` wind velocity value. - -```py -df_std = (df - train_mean) / train_std -df_std = df_std.melt(var_name='Column', value_name='Normalized') -plt.figure(figsize=(12, 6)) -ax = sns.violinplot(x='Column', y='Normalized', data=df_std) -_ = ax.set_xticklabels(df.keys(), rotation=90) -``` - -![png](img/a50df54eefaa2e0b41728c5e66685f3a.png) - -## Data windowing - -The models in this tutorial will make a set of predictions based on a window of consecutive samples from the data. - -The main features of the input windows are: - -* The width (number of time steps) of the input and label windows -* The time offset between them. -* Which features are used as inputs, labels, or both. - -This tutorial builds a variety of models (including Linear, DNN, CNN and RNN models), and uses them for both: - -* *Single-output*, and *multi-output* predictions. -* *Single-time-step* and *multi-time-step* predictions. - -This section focuses on implementing the data windowing so that it can be reused for all of those models. - -Depending on the task and type of model you may want to generate a variety of data windows. Here are some examples: - -1. For example, to make a single prediction 24h into the future, given 24h of history you might define a window like this: - - ![One prediction 24h into the future.](img/e2f893946253a84a1410e69624e915bc.png) - -2. A model that makes a prediction 1h into the future, given 6h of history would need a window like this: - - ![One prediction 1h into the future.](img/5fc218fbba095949ac4ca115de92329b.png) - -The rest of this section defines a `WindowGenerator` class. This class can: - -1. Handle the indexes and offsets as shown in the diagrams above. -2. Split windows of features into a `(features, labels)` pairs. -3. Plot the content of the resulting windows. -4. Efficiently generate batches of these windows from the training, evaluation, and test data, using [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset)s. - -### 1\. Indexes and offsets - -Start by creating the `WindowGenerator` class. The `__init__` method includes all the necessary logic for the input and label indices. - -It also takes the train, eval, and test dataframes as input. These will be converted to [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset)s of windows later. - -```py -class WindowGenerator(): - def __init__(self, input_width, label_width, shift, - train_df=train_df, val_df=val_df, test_df=test_df, - label_columns=None): - # Store the raw data. - self.train_df = train_df - self.val_df = val_df - self.test_df = test_df - - # Work out the label column indices. - self.label_columns = label_columns - if label_columns is not None: - self.label_columns_indices = {name: i for i, name in - enumerate(label_columns)} - self.column_indices = {name: i for i, name in - enumerate(train_df.columns)} - - # Work out the window parameters. - self.input_width = input_width - self.label_width = label_width - self.shift = shift - - self.total_window_size = input_width + shift - - self.input_slice = slice(0, input_width) - self.input_indices = np.arange(self.total_window_size)[self.input_slice] - - self.label_start = self.total_window_size - self.label_width - self.labels_slice = slice(self.label_start, None) - self.label_indices = np.arange(self.total_window_size)[self.labels_slice] - - def __repr__(self): - return '\n'.join([ - f'Total window size: {self.total_window_size}', - f'Input indices: {self.input_indices}', - f'Label indices: {self.label_indices}', - f'Label column name(s): {self.label_columns}']) -``` - -Here is code to create the 2 windows shown in the diagrams at the start of this section: - -```py -w1 = WindowGenerator(input_width=24, label_width=1, shift=24, - label_columns=['T (degC)']) -w1 -``` - -```py -Total window size: 48 -Input indices: [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23] -Label indices: [47] -Label column name(s): ['T (degC)'] - -``` - -```py -w2 = WindowGenerator(input_width=6, label_width=1, shift=1, - label_columns=['T (degC)']) -w2 -``` - -```py -Total window size: 7 -Input indices: [0 1 2 3 4 5] -Label indices: [6] -Label column name(s): ['T (degC)'] - -``` - -### 2\. Split - -Given a list consecutive inputs, the `split_window` method will convert them to a window of inputs and a window of labels. - -The example `w2`, above, will be split like this: - -![The initial window is all consecuitive samples, this splits it into an (inputs, labels) pairs](img/b84cdc6273e2ce65876a86561af080a5.png) - -This diagram doesn't show the `features` axis of the data, but this `split_window` function also handles the `label_columns` so it can be used for both the single output and multi-output examples. - -```py -def split_window(self, features): - inputs = features[:, self.input_slice, :] - labels = features[:, self.labels_slice, :] - if self.label_columns is not None: - labels = tf.stack( - [labels[:, :, self.column_indices[name]] for name in self.label_columns], - axis=-1) - - # Slicing doesn't preserve static shape information, so set the shapes - # manually. This way the `tf.data.Datasets` are easier to inspect. - inputs.set_shape([None, self.input_width, None]) - labels.set_shape([None, self.label_width, None]) - - return inputs, labels - -WindowGenerator.split_window = split_window -``` - -Try it out: - -```py -# Stack three slices, the length of the total window: -example_window = tf.stack([np.array(train_df[:w2.total_window_size]), - np.array(train_df[100:100+w2.total_window_size]), - np.array(train_df[200:200+w2.total_window_size])]) - -example_inputs, example_labels = w2.split_window(example_window) - -print('All shapes are: (batch, time, features)') -print(f'Window shape: {example_window.shape}') -print(f'Inputs shape: {example_inputs.shape}') -print(f'labels shape: {example_labels.shape}') -``` - -```py -All shapes are: (batch, time, features) -Window shape: (3, 7, 19) -Inputs shape: (3, 6, 19) -labels shape: (3, 1, 1) - -``` - -Typically data in TensorFlow is packed into arrays where the outermost index is across examples (the "batch" dimension). The middle indices are the "time" or "space" (width, height) dimension(s). The innermost indices are the features. - -The code above took a batch of 3, 7-timestep windows, with 19 features at each time step. It split them into a batch of 6-timestep, 19 feature inputs, and a 1-timestep 1-feature label. The label only has one feature because the `WindowGenerator` was initialized with `label_columns=['T (degC)']`. Initially this tutorial will build models that predict single output labels. - -### 3\. Plot - -Here is a plot method that allows a simple visualization of the split window: - -```py -w2.example = example_inputs, example_labels -``` - -```py -def plot(self, model=None, plot_col='T (degC)', max_subplots=3): - inputs, labels = self.example - plt.figure(figsize=(12, 8)) - plot_col_index = self.column_indices[plot_col] - max_n = min(max_subplots, len(inputs)) - for n in range(max_n): - plt.subplot(3, 1, n+1) - plt.ylabel(f'{plot_col} [normed]') - plt.plot(self.input_indices, inputs[n, :, plot_col_index], - label='Inputs', marker='.', zorder=-10) - - if self.label_columns: - label_col_index = self.label_columns_indices.get(plot_col, None) - else: - label_col_index = plot_col_index - - if label_col_index is None: - continue - - plt.scatter(self.label_indices, labels[n, :, label_col_index], - edgecolors='k', label='Labels', c='#2ca02c', s=64) - if model is not None: - predictions = model(inputs) - plt.scatter(self.label_indices, predictions[n, :, label_col_index], - marker='X', edgecolors='k', label='Predictions', - c='#ff7f0e', s=64) - - if n == 0: - plt.legend() - - plt.xlabel('Time [h]') - -WindowGenerator.plot = plot -``` - -This plot aligns inputs, labels, and (later) predictions based on the time that the item refers to: - -```py -w2.plot() -``` - -![png](img/9de9afda3f7352b4106f61a83025d8e1.png) - -You can plot the other columns, but the example window `w2` configuration only has labels for the `T (degC)` column. - -```py -w2.plot(plot_col='p (mbar)') -``` - -![png](img/651f6b2fbf396ac15fb7661af005bb0e.png) - -### 4\. Create [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset)s - -Finally this `make_dataset` method will take a time series `DataFrame` and convert it to a [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) of `(input_window, label_window)` pairs using the [`preprocessing.timeseries_dataset_from_array`](https://tensorflow.google.cn/api_docs/python/tf/keras/preprocessing/timeseries_dataset_from_array) function. - -```py -def make_dataset(self, data): - data = np.array(data, dtype=np.float32) - ds = tf.keras.preprocessing.timeseries_dataset_from_array( - data=data, - targets=None, - sequence_length=self.total_window_size, - sequence_stride=1, - shuffle=True, - batch_size=32,) - - ds = ds.map(self.split_window) - - return ds - -WindowGenerator.make_dataset = make_dataset -``` - -The `WindowGenerator` object holds training, validation and test data. Add properties for accessing them as `tf.data.Datasets` using the above `make_dataset` method. Also add a standard example batch for easy access and plotting: - -```py -@property -def train(self): - return self.make_dataset(self.train_df) - -@property -def val(self): - return self.make_dataset(self.val_df) - -@property -def test(self): - return self.make_dataset(self.test_df) - -@property -def example(self): - """Get and cache an example batch of `inputs, labels` for plotting.""" - result = getattr(self, '_example', None) - if result is None: - # No example batch was found, so get one from the `.train` dataset - result = next(iter(self.train)) - # And cache it for next time - self._example = result - return result - -WindowGenerator.train = train -WindowGenerator.val = val -WindowGenerator.test = test -WindowGenerator.example = example -``` - -Now the `WindowGenerator` object gives you access to the [`tf.data.Dataset`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset) objects, so you can easily iterate over the data. - -The [`Dataset.element_spec`](https://tensorflow.google.cn/api_docs/python/tf/data/Dataset#element_spec) property tells you the structure, `dtypes` and shapes of the dataset elements. - -```py -# Each element is an (inputs, label) pair -w2.train.element_spec -``` - -```py -(TensorSpec(shape=(None, 6, 19), dtype=tf.float32, name=None), - TensorSpec(shape=(None, 1, 1), dtype=tf.float32, name=None)) - -``` - -Iterating over a `Dataset` yields concrete batches: - -```py -for example_inputs, example_labels in w2.train.take(1): - print(f'Inputs shape (batch, time, features): {example_inputs.shape}') - print(f'Labels shape (batch, time, features): {example_labels.shape}') -``` - -```py -Inputs shape (batch, time, features): (32, 6, 19) -Labels shape (batch, time, features): (32, 1, 1) - -``` - -## Single step models - -The simplest model you can build on this sort of data is one that predicts a single feature's value, 1 timestep (1h) in the future based only on the current conditions. - -So start by building models to predict the `T (degC)` value 1h into the future. - -![Predict the next time step](img/572dbe03f38bc28e6575b97b2ce91fda.png) - -Configure a `WindowGenerator` object to produce these single-step `(input, label)` pairs: - -```py -single_step_window = WindowGenerator( - input_width=1, label_width=1, shift=1, - label_columns=['T (degC)']) -single_step_window -``` - -```py -Total window size: 2 -Input indices: [0] -Label indices: [1] -Label column name(s): ['T (degC)'] - -``` - -The `window` object creates `tf.data.Datasets` from the training, validation, and test sets, allowing you to easily iterate over batches of data. - -```py -for example_inputs, example_labels in single_step_window.train.take(1): - print(f'Inputs shape (batch, time, features): {example_inputs.shape}') - print(f'Labels shape (batch, time, features): {example_labels.shape}') -``` - -```py -Inputs shape (batch, time, features): (32, 1, 19) -Labels shape (batch, time, features): (32, 1, 1) - -``` - -### Baseline - -Before building a trainable model it would be good to have a performance baseline as a point for comparison with the later more complicated models. - -This first task is to predict temperature 1h in the future given the current value of all features. The current values include the current temperature. - -So start with a model that just returns the current temperature as the prediction, predicting "No change". This is a reasonable baseline since temperature changes slowly. Of course, this baseline will work less well if you make a prediction further in the future. - -![Send the input to the output](img/1b0da93649f50a8108ee8ddd8b08bc04.png) - -```py -class Baseline(tf.keras.Model): - def __init__(self, label_index=None): - super().__init__() - self.label_index = label_index - - def call(self, inputs): - if self.label_index is None: - return inputs - result = inputs[:, :, self.label_index] - return result[:, :, tf.newaxis] -``` - -Instantiate and evaluate this model: - -```py -baseline = Baseline(label_index=column_indices['T (degC)']) - -baseline.compile(loss=tf.losses.MeanSquaredError(), - metrics=[tf.metrics.MeanAbsoluteError()]) - -val_performance = {} -performance = {} -val_performance['Baseline'] = baseline.evaluate(single_step_window.val) -performance['Baseline'] = baseline.evaluate(single_step_window.test, verbose=0) -``` - -```py -439/439 [==============================] - 1s 2ms/step - loss: 0.0128 - mean_absolute_error: 0.0785 - -``` - -That printed some performance metrics, but those don't give you a feeling for how well the model is doing. - -The `WindowGenerator` has a plot method, but the plots won't be very interesting with only a single sample. So, create a wider `WindowGenerator` that generates windows 24h of consecutive inputs and labels at a time. - -The `wide_window` doesn't change the way the model operates. The model still makes predictions 1h into the future based on a single input time step. Here the `time` axis acts like the `batch` axis: Each prediction is made independently with no interaction between time steps. - -```py -wide_window = WindowGenerator( - input_width=24, label_width=24, shift=1, - label_columns=['T (degC)']) - -wide_window -``` - -```py -Total window size: 25 -Input indices: [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23] -Label indices: [ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24] -Label column name(s): ['T (degC)'] - -``` - -This expanded window can be passed directly to the same `baseline` model without any code changes. This is possible because the inputs and labels have the same number of timesteps, and the baseline just forwards the input to the output: - -![One prediction 1h into the future, ever hour.](img/8c90a903ef2c498784c14d3c169e9ee6.png) - -```py -print('Input shape:', wide_window.example[0].shape) -print('Output shape:', baseline(wide_window.example[0]).shape) -``` - -```py -Input shape: (32, 24, 19) -Output shape: (32, 24, 1) - -``` - -Plotting the baseline model's predictions you can see that it is simply the labels, shifted right by 1h. - -```py -wide_window.plot(baseline) -``` - -![png](img/89837448c36d73e735364038e7b3e689.png) - -In the above plots of three examples the single step model is run over the course of 24h. This deserves some explaination: - -* The blue "Inputs" line shows the input temperature at each time step. The model recieves all features, this plot only shows the temperature. -* The green "Labels" dots show the target prediction value. These dots are shown at the prediction time, not the input time. That is why the range of labels is shifted 1 step relative to the inputs. -* The orange "Predictions" crosses are the model's prediction's for each output time step. If the model were predicting perfectly the predictions would land directly on the "labels". - -### Linear model - -The simplest **trainable** model you can apply to this task is to insert linear transformation between the input and output. In this case the output from a time step only depends on that step: - -![A single step prediction](img/572dbe03f38bc28e6575b97b2ce91fda.png) - -A [`layers.Dense`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Dense) with no `activation` set is a linear model. The layer only transforms the last axis of the data from `(batch, time, inputs)` to `(batch, time, units)`, it is applied independently to every item across the `batch` and `time` axes. - -```py -linear = tf.keras.Sequential([ - tf.keras.layers.Dense(units=1) -]) -``` - -```py -print('Input shape:', single_step_window.example[0].shape) -print('Output shape:', linear(single_step_window.example[0]).shape) -``` - -```py -Input shape: (32, 1, 19) -Output shape: (32, 1, 1) - -``` - -This tutorial trains many models, so package the training procedure into a function: - -```py -MAX_EPOCHS = 20 - -def compile_and_fit(model, window, patience=2): - early_stopping = tf.keras.callbacks.EarlyStopping(monitor='val_loss', - patience=patience, - mode='min') - - model.compile(loss=tf.losses.MeanSquaredError(), - optimizer=tf.optimizers.Adam(), - metrics=[tf.metrics.MeanAbsoluteError()]) - - history = model.fit(window.train, epochs=MAX_EPOCHS, - validation_data=window.val, - callbacks=[early_stopping]) - return history -``` - -Train the model and evaluate its performance: - -```py -history = compile_and_fit(linear, single_step_window) - -val_performance['Linear'] = linear.evaluate(single_step_window.val) -performance['Linear'] = linear.evaluate(single_step_window.test, verbose=0) -``` - -```py -Epoch 1/20 -1534/1534 [==============================] - 5s 3ms/step - loss: 0.2864 - mean_absolute_error: 0.2848 - val_loss: 0.0163 - val_mean_absolute_error: 0.0975 -Epoch 2/20 -1534/1534 [==============================] - 5s 3ms/step - loss: 0.0121 - mean_absolute_error: 0.0817 - val_loss: 0.0103 - val_mean_absolute_error: 0.0752 -Epoch 3/20 -1534/1534 [==============================] - 5s 3ms/step - loss: 0.0103 - mean_absolute_error: 0.0749 - val_loss: 0.0098 - val_mean_absolute_error: 0.0738 -Epoch 4/20 -1534/1534 [==============================] - 5s 3ms/step - loss: 0.0099 - mean_absolute_error: 0.0733 - val_loss: 0.0095 - val_mean_absolute_error: 0.0731 -Epoch 5/20 -1534/1534 [==============================] - 5s 3ms/step - loss: 0.0096 - mean_absolute_error: 0.0721 - val_loss: 0.0092 - val_mean_absolute_error: 0.0719 -Epoch 6/20 -1534/1534 [==============================] - 5s 3ms/step - loss: 0.0095 - mean_absolute_error: 0.0715 - val_loss: 0.0091 - val_mean_absolute_error: 0.0716 -Epoch 7/20 -1534/1534 [==============================] - 5s 3ms/step - loss: 0.0094 - mean_absolute_error: 0.0710 - val_loss: 0.0091 - val_mean_absolute_error: 0.0716 -Epoch 8/20 -1534/1534 [==============================] - 5s 3ms/step - loss: 0.0093 - mean_absolute_error: 0.0707 - val_loss: 0.0090 - val_mean_absolute_error: 0.0706 -Epoch 9/20 -1534/1534 [==============================] - 5s 3ms/step - loss: 0.0092 - mean_absolute_error: 0.0704 - val_loss: 0.0090 - val_mean_absolute_error: 0.0712 -Epoch 10/20 -1534/1534 [==============================] - 5s 3ms/step - loss: 0.0092 - mean_absolute_error: 0.0703 - val_loss: 0.0091 - val_mean_absolute_error: 0.0715 -439/439 [==============================] - 1s 2ms/step - loss: 0.0091 - mean_absolute_error: 0.0715 - -``` - -Like the `baseline` model, the linear model can be called on batches of wide windows. Used this way the model makes a set of independent predictions on consecuitive time steps. The `time` axis acts like another `batch` axis. There are no interactions between the predictions at each time step. - -![A single step prediction](img/f8f7d813408efbfa9b764dfcfe54d2ad.png) - -```py -print('Input shape:', wide_window.example[0].shape) -print('Output shape:', baseline(wide_window.example[0]).shape) -``` - -```py -Input shape: (32, 24, 19) -Output shape: (32, 24, 1) - -``` - -Here is the plot of its example predictions on the `wide_window`, note how in many cases the prediction is clearly better than just returning the input temperature, but in a few cases it's worse: - -```py -wide_window.plot(linear) -``` - -![png](img/05dfb322f577170f0e9218f00221d363.png) - -One advantage to linear models is that they're relatively simple to interpret. You can pull out the layer's weights, and see the weight assigned to each input: - -```py -plt.bar(x = range(len(train_df.columns)), - height=linear.layers[0].kernel[:,0].numpy()) -axis = plt.gca() -axis.set_xticks(range(len(train_df.columns))) -_ = axis.set_xticklabels(train_df.columns, rotation=90) -``` - -![png](img/019d6a002d56ca3eff0330fbb68495d2.png) - -Sometimes the model doesn't even place the most weight on the input `T (degC)`. This is one of the risks of random initialization. - -### Dense - -Before applying models that actually operate on multiple time-steps, it's worth checking the performance of deeper, more powerful, single input step models. - -Here's a model similar to the `linear` model, except it stacks several a few `Dense` layers between the input and the output: - -```py -dense = tf.keras.Sequential([ - tf.keras.layers.Dense(units=64, activation='relu'), - tf.keras.layers.Dense(units=64, activation='relu'), - tf.keras.layers.Dense(units=1) -]) - -history = compile_and_fit(dense, single_step_window) - -val_performance['Dense'] = dense.evaluate(single_step_window.val) -performance['Dense'] = dense.evaluate(single_step_window.test, verbose=0) -``` - -```py -Epoch 1/20 -1534/1534 [==============================] - 6s 4ms/step - loss: 0.0159 - mean_absolute_error: 0.0814 - val_loss: 0.0086 - val_mean_absolute_error: 0.0693 -Epoch 2/20 -1534/1534 [==============================] - 6s 4ms/step - loss: 0.0079 - mean_absolute_error: 0.0645 - val_loss: 0.0076 - val_mean_absolute_error: 0.0629 -Epoch 3/20 -1534/1534 [==============================] - 6s 4ms/step - loss: 0.0074 - mean_absolute_error: 0.0622 - val_loss: 0.0085 - val_mean_absolute_error: 0.0666 -Epoch 4/20 -1534/1534 [==============================] - 6s 4ms/step - loss: 0.0072 - mean_absolute_error: 0.0608 - val_loss: 0.0071 - val_mean_absolute_error: 0.0593 -Epoch 5/20 -1534/1534 [==============================] - 6s 4ms/step - loss: 0.0070 - mean_absolute_error: 0.0595 - val_loss: 0.0067 - val_mean_absolute_error: 0.0579 -Epoch 6/20 -1534/1534 [==============================] - 6s 4ms/step - loss: 0.0068 - mean_absolute_error: 0.0588 - val_loss: 0.0072 - val_mean_absolute_error: 0.0594 -Epoch 7/20 -1534/1534 [==============================] - 6s 4ms/step - loss: 0.0068 - mean_absolute_error: 0.0583 - val_loss: 0.0066 - val_mean_absolute_error: 0.0564 -Epoch 8/20 -1534/1534 [==============================] - 6s 4ms/step - loss: 0.0066 - mean_absolute_error: 0.0576 - val_loss: 0.0078 - val_mean_absolute_error: 0.0637 -Epoch 9/20 -1534/1534 [==============================] - 6s 4ms/step - loss: 0.0066 - mean_absolute_error: 0.0576 - val_loss: 0.0066 - val_mean_absolute_error: 0.0564 -Epoch 10/20 -1534/1534 [==============================] - 6s 4ms/step - loss: 0.0065 - mean_absolute_error: 0.0569 - val_loss: 0.0062 - val_mean_absolute_error: 0.0551 -Epoch 11/20 -1534/1534 [==============================] - 6s 4ms/step - loss: 0.0065 - mean_absolute_error: 0.0571 - val_loss: 0.0070 - val_mean_absolute_error: 0.0596 -Epoch 12/20 -1534/1534 [==============================] - 6s 4ms/step - loss: 0.0064 - mean_absolute_error: 0.0565 - val_loss: 0.0063 - val_mean_absolute_error: 0.0551 -439/439 [==============================] - 1s 3ms/step - loss: 0.0063 - mean_absolute_error: 0.0551 - -``` - -### Multi-step dense - -A single-time-step model has no context for the current values of its inputs. It can't see how the input features are changing over time. To address this issue the model needs access to multiple time steps when making predictions: - -![Three time steps are used for each prediction.](img/b9f520a19b0bd493834819ddfc1ef26b.png) - -The `baseline`, `linear` and `dense` models handled each time step independently. Here the model will take multiple time steps as input to produce a single output. - -Create a `WindowGenerator` that will produce batches of the 3h of inputs and, 1h of labels: - -Note that the `Window`'s `shift` parameter is relative to the end of the two windows. - -```py -CONV_WIDTH = 3 -conv_window = WindowGenerator( - input_width=CONV_WIDTH, - label_width=1, - shift=1, - label_columns=['T (degC)']) - -conv_window -``` - -```py -Total window size: 4 -Input indices: [0 1 2] -Label indices: [3] -Label column name(s): ['T (degC)'] - -``` - -```py -conv_window.plot() -plt.title("Given 3h as input, predict 1h into the future.") -``` - -```py -Text(0.5, 1.0, 'Given 3h as input, predict 1h into the future.') - -``` - -![png](img/96e942cbf28db3cfff8c8f90167f2a8b.png) - -You could train a `dense` model on a multiple-input-step window by adding a [`layers.Flatten`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Flatten) as the first layer of the model: - -```py -multi_step_dense = tf.keras.Sequential([ - # Shape: (time, features) => (time*features) - tf.keras.layers.Flatten(), - tf.keras.layers.Dense(units=32, activation='relu'), - tf.keras.layers.Dense(units=32, activation='relu'), - tf.keras.layers.Dense(units=1), - # Add back the time dimension. - # Shape: (outputs) => (1, outputs) - tf.keras.layers.Reshape([1, -1]), -]) -``` - -```py -print('Input shape:', conv_window.example[0].shape) -print('Output shape:', multi_step_dense(conv_window.example[0]).shape) -``` - -```py -Input shape: (32, 3, 19) -Output shape: (32, 1, 1) - -``` - -```py -history = compile_and_fit(multi_step_dense, conv_window) - -IPython.display.clear_output() -val_performance['Multi step dense'] = multi_step_dense.evaluate(conv_window.val) -performance['Multi step dense'] = multi_step_dense.evaluate(conv_window.test, verbose=0) -``` - -```py -438/438 [==============================] - 1s 2ms/step - loss: 0.0078 - mean_absolute_error: 0.0637 - -``` - -```py -conv_window.plot(multi_step_dense) -``` - -![png](img/dcf39b63e54ff302e7e37e39b90facc7.png) - -The main down-side of this approach is that the resulting model can only be executed on input windows of exactly this shape. - -```py -print('Input shape:', wide_window.example[0].shape) -try: - print('Output shape:', multi_step_dense(wide_window.example[0]).shape) -except Exception as e: - print(f'\n{type(e).__name__}:{e}') -``` - -```py -Input shape: (32, 24, 19) - -InvalidArgumentError:Matrix size-incompatible: In[0]: [32,456], In[1]: [57,32] [Op:MatMul] - -``` - -The convolutional models in the next section fix this problem. - -### Convolution neural network - -A convolution layer ([`layers.Conv1D`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Conv1D)) also takes multiple time steps as input to each prediction. - -Below is the **same** model as `multi_step_dense`, re-written with a convolution. - -Note the changes: - -* The [`layers.Flatten`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Flatten) and the first [`layers.Dense`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Dense) are replaced by a [`layers.Conv1D`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Conv1D). -* The [`layers.Reshape`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Reshape) is no longer necessary since the convolution keeps the time axis in its output. - -```py -conv_model = tf.keras.Sequential([ - tf.keras.layers.Conv1D(filters=32, - kernel_size=(CONV_WIDTH,), - activation='relu'), - tf.keras.layers.Dense(units=32, activation='relu'), - tf.keras.layers.Dense(units=1), -]) -``` - -Run it on an example batch to see that the model produces outputs with the expected shape: - -```py -print("Conv model on `conv_window`") -print('Input shape:', conv_window.example[0].shape) -print('Output shape:', conv_model(conv_window.example[0]).shape) -``` - -```py -Conv model on `conv_window` -Input shape: (32, 3, 19) -Output shape: (32, 1, 1) - -``` - -Train and evaluate it on the `conv_window` and it should give performance similar to the `multi_step_dense` model. - -```py -history = compile_and_fit(conv_model, conv_window) - -IPython.display.clear_output() -val_performance['Conv'] = conv_model.evaluate(conv_window.val) -performance['Conv'] = conv_model.evaluate(conv_window.test, verbose=0) -``` - -```py -438/438 [==============================] - 1s 3ms/step - loss: 0.0063 - mean_absolute_error: 0.0556 - -``` - -The difference between this `conv_model` and the `multi_step_dense` model is that the `conv_model` can be run on inputs of any length. The convolutional layer is applied to a sliding window of inputs: - -![Executing a convolutional model on a sequence](img/4ae87c070d1160e16944305509636b57.png) - -If you run it on wider input, it produces wider output: - -```py -print("Wide window") -print('Input shape:', wide_window.example[0].shape) -print('Labels shape:', wide_window.example[1].shape) -print('Output shape:', conv_model(wide_window.example[0]).shape) -``` - -```py -Wide window -Input shape: (32, 24, 19) -Labels shape: (32, 24, 1) -Output shape: (32, 22, 1) - -``` - -Note that the output is shorter than the input. To make training or plotting work, you need the labels, and prediction to have the same length. So build a `WindowGenerator` to produce wide windows with a few extra input time steps so the label and prediction lengths match: - -```py -LABEL_WIDTH = 24 -INPUT_WIDTH = LABEL_WIDTH + (CONV_WIDTH - 1) -wide_conv_window = WindowGenerator( - input_width=INPUT_WIDTH, - label_width=LABEL_WIDTH, - shift=1, - label_columns=['T (degC)']) - -wide_conv_window -``` - -```py -Total window size: 27 -Input indices: [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 - 24 25] -Label indices: [ 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26] -Label column name(s): ['T (degC)'] - -``` - -```py -print("Wide conv window") -print('Input shape:', wide_conv_window.example[0].shape) -print('Labels shape:', wide_conv_window.example[1].shape) -print('Output shape:', conv_model(wide_conv_window.example[0]).shape) -``` - -```py -Wide conv window -Input shape: (32, 26, 19) -Labels shape: (32, 24, 1) -Output shape: (32, 24, 1) - -``` - -Now you can plot the model's predictions on a wider window. Note the 3 input time steps before the first prediction. Every prediction here is based on the 3 preceding timesteps: - -```py -wide_conv_window.plot(conv_model) -``` - -![png](img/7eb3066f3b0de91799a8bcae1606a337.png) - -### Recurrent neural network - -A Recurrent Neural Network (RNN) is a type of neural network well-suited to time series data. RNNs process a time series step-by-step, maintaining an internal state from time-step to time-step. - -For more details, read the [text generation tutorial](https://tensorflow.google.cn/tutorials/text/text_generation) or the [RNN guide](https://tensorflow.google.cn/guide/keras/rnn). - -In this tutorial, you will use an RNN layer called Long Short Term Memory ([LSTM](https://tensorflow.google.cn/versions/r2.0/api_docs/python/tf/keras/layers/LSTM)). - -An important constructor argument for all keras RNN layers is the `return_sequences` argument. This setting can configure the layer in one of two ways. - -1. If `False`, the default, the layer only returns the output of the final timestep, giving the model time to warm up its internal state before making a single prediction: - -![An lstm warming up and making a single prediction](img/e0df7b7876498420dcf8663d9c91a023.png) - -1. If `True` the layer returns an output for each input. This is useful for: - * Stacking RNN layers. - * Training a model on multiple timesteps simultaneously. - -![An lstm making a prediction after every timestep](img/45d997f6558f9b2c948978653a5112f5.png) - -```py -lstm_model = tf.keras.models.Sequential([ - # Shape [batch, time, features] => [batch, time, lstm_units] - tf.keras.layers.LSTM(32, return_sequences=True), - # Shape => [batch, time, features] - tf.keras.layers.Dense(units=1) -]) -``` - -With `return_sequences=True` the model can be trained on 24h of data at a time. - -**Note:** This will give a pessimistic view of the model's performance. On the first timestep the model has no access to previous steps, and so can't do any better than the simple `linear` and `dense` models shown earlier. - -```py -print('Input shape:', wide_window.example[0].shape) -print('Output shape:', lstm_model(wide_window.example[0]).shape) -``` - -```py -Input shape: (32, 24, 19) -Output shape: (32, 24, 1) - -``` - -```py -history = compile_and_fit(lstm_model, wide_window) - -IPython.display.clear_output() -val_performance['LSTM'] = lstm_model.evaluate(wide_window.val) -performance['LSTM'] = lstm_model.evaluate(wide_window.test, verbose=0) -``` - -```py -438/438 [==============================] - 1s 3ms/step - loss: 0.0057 - mean_absolute_error: 0.0523 - -``` - -```py -wide_window.plot(lstm_model) -``` - -![png](img/fa2d5bf8aeffd46cc7559d7104f99ba2.png) - -### Performance - -With this dataset typically each of the models does slightly better than the one before it. - -```py -x = np.arange(len(performance)) -width = 0.3 -metric_name = 'mean_absolute_error' -metric_index = lstm_model.metrics_names.index('mean_absolute_error') -val_mae = [v[metric_index] for v in val_performance.values()] -test_mae = [v[metric_index] for v in performance.values()] - -plt.ylabel('mean_absolute_error [T (degC), normalized]') -plt.bar(x - 0.17, val_mae, width, label='Validation') -plt.bar(x + 0.17, test_mae, width, label='Test') -plt.xticks(ticks=x, labels=performance.keys(), - rotation=45) -_ = plt.legend() -``` - -![png](img/8f2ea45ce97f58e2339af71a7d349532.png) - -```py -for name, value in performance.items(): - print(f'{name:12s}: {value[1]:0.4f}') -``` - -```py -Baseline : 0.0852 -Linear : 0.0694 -Dense : 0.0566 -Multi step dense: 0.0667 -Conv : 0.0572 -LSTM : 0.0528 - -``` - -### Multi-output models - -The models so far all predicted a single output feature, `T (degC)`, for a single time step. - -All of these models can be converted to predict multiple features just by changing the number of units in the output layer and adjusting the training windows to include all features in the `labels`. - -```py -single_step_window = WindowGenerator( - # `WindowGenerator` returns all features as labels if you - # don't set the `label_columns` argument. - input_width=1, label_width=1, shift=1) - -wide_window = WindowGenerator( - input_width=24, label_width=24, shift=1) - -for example_inputs, example_labels in wide_window.train.take(1): - print(f'Inputs shape (batch, time, features): {example_inputs.shape}') - print(f'Labels shape (batch, time, features): {example_labels.shape}') -``` - -```py -Inputs shape (batch, time, features): (32, 24, 19) -Labels shape (batch, time, features): (32, 24, 19) - -``` - -Note above that the `features` axis of the labels now has the same depth as the inputs, instead of 1. - -#### Baseline - -The same baseline model can be used here, but this time repeating all features instead of selecting a specific `label_index`. - -```py -baseline = Baseline() -baseline.compile(loss=tf.losses.MeanSquaredError(), - metrics=[tf.metrics.MeanAbsoluteError()]) -``` - -```py -val_performance = {} -performance = {} -val_performance['Baseline'] = baseline.evaluate(wide_window.val) -performance['Baseline'] = baseline.evaluate(wide_window.test, verbose=0) -``` - -```py -438/438 [==============================] - 1s 2ms/step - loss: 0.0886 - mean_absolute_error: 0.1589 - -``` - -#### Dense - -```py -dense = tf.keras.Sequential([ - tf.keras.layers.Dense(units=64, activation='relu'), - tf.keras.layers.Dense(units=64, activation='relu'), - tf.keras.layers.Dense(units=num_features) -]) -``` - -```py -history = compile_and_fit(dense, single_step_window) - -IPython.display.clear_output() -val_performance['Dense'] = dense.evaluate(single_step_window.val) -performance['Dense'] = dense.evaluate(single_step_window.test, verbose=0) -``` - -```py -439/439 [==============================] - 1s 3ms/step - loss: 0.0706 - mean_absolute_error: 0.1362 - -``` - -#### RNN - -```py -%%time -wide_window = WindowGenerator( - input_width=24, label_width=24, shift=1) - -lstm_model = tf.keras.models.Sequential([ - # Shape [batch, time, features] => [batch, time, lstm_units] - tf.keras.layers.LSTM(32, return_sequences=True), - # Shape => [batch, time, features] - tf.keras.layers.Dense(units=num_features) -]) - -history = compile_and_fit(lstm_model, wide_window) - -IPython.display.clear_output() -val_performance['LSTM'] = lstm_model.evaluate( wide_window.val) -performance['LSTM'] = lstm_model.evaluate( wide_window.test, verbose=0) - -print() -``` - -```py -438/438 [==============================] - 1s 3ms/step - loss: 0.0613 - mean_absolute_error: 0.1192 - -CPU times: user 6min 18s, sys: 1min 36s, total: 7min 55s -Wall time: 2min 53s - -``` - -#### Advanced: Residual connections - -The `Baseline` model from earlier took advantage of the fact that the sequence doesn't change drastically from time step to time step. Every model trained in this tutorial so far was randomly initialized, and then had to learn that the output is a a small change from the previous time step. - -While you can get around this issue with careful initialization, it's simpler to build this into the model structure. - -It's common in time series analysis to build models that instead of predicting the next value, predict how the value will change in the next timestep. Similarly, "Residual networks" or "ResNets" in deep learning refer to architectures where each layer adds to the model's accumulating result. - -That is how you take advantage of the knowledge that the change should be small. - -![A model with a residual connection](img/918c568bb9e84acfad1ad27dbca52256.png) - -Essentially this initializes the model to match the `Baseline`. For this task it helps models converge faster, with slightly better performance. - -This approach can be used in conjunction with any model discussed in this tutorial. - -Here it is being applied to the LSTM model, note the use of the [`tf.initializers.zeros`](https://tensorflow.google.cn/api_docs/python/tf/keras/initializers/Zeros) to ensure that the initial predicted changes are small, and don't overpower the residual connection. There are no symmetry-breaking concerns for the gradients here, since the `zeros` are only used on the last layer. - -```py -class ResidualWrapper(tf.keras.Model): - def __init__(self, model): - super().__init__() - self.model = model - - def call(self, inputs, *args, **kwargs): - delta = self.model(inputs, *args, **kwargs) - - # The prediction for each timestep is the input - # from the previous time step plus the delta - # calculated by the model. - return inputs + delta -``` - -```py -%%time -residual_lstm = ResidualWrapper( - tf.keras.Sequential([ - tf.keras.layers.LSTM(32, return_sequences=True), - tf.keras.layers.Dense( - num_features, - # The predicted deltas should start small - # So initialize the output layer with zeros - kernel_initializer=tf.initializers.zeros) -])) - -history = compile_and_fit(residual_lstm, wide_window) - -IPython.display.clear_output() -val_performance['Residual LSTM'] = residual_lstm.evaluate(wide_window.val) -performance['Residual LSTM'] = residual_lstm.evaluate(wide_window.test, verbose=0) -print() -``` - -```py -438/438 [==============================] - 1s 3ms/step - loss: 0.0619 - mean_absolute_error: 0.1181 - -CPU times: user 2min 2s, sys: 31.2 s, total: 2min 33s -Wall time: 56.9 s - -``` - -#### Performance - -Here is the overall performance for these multi-output models. - -```py -x = np.arange(len(performance)) -width = 0.3 - -metric_name = 'mean_absolute_error' -metric_index = lstm_model.metrics_names.index('mean_absolute_error') -val_mae = [v[metric_index] for v in val_performance.values()] -test_mae = [v[metric_index] for v in performance.values()] - -plt.bar(x - 0.17, val_mae, width, label='Validation') -plt.bar(x + 0.17, test_mae, width, label='Test') -plt.xticks(ticks=x, labels=performance.keys(), - rotation=45) -plt.ylabel('MAE (average over all outputs)') -_ = plt.legend() -``` - -![png](img/707c82ef753d85482b462054a3e19161.png) - -```py -for name, value in performance.items(): - print(f'{name:15s}: {value[1]:0.4f}') -``` - -```py -Baseline : 0.1638 -Dense : 0.1367 -LSTM : 0.1208 -Residual LSTM : 0.1197 - -``` - -The above performances are averaged across all model outputs. - -## Multi-step models - -Both the single-output and multiple-output models in the previous sections made **single time step predictions**, 1h into the future. - -This section looks at how to expand these models to make **multiple time step predictions**. - -In a multi-step prediction, the model needs to learn to predict a range of future values. Thus, unlike a single step model, where only a single future point is predicted, a multi-step model predicts a sequence of the future values. - -There are two rough approaches to this: - -1. Single shot predictions where the entire time series is predicted at once. -2. Autoregressive predictions where the model only makes single step predictions and its output is fed back as its input. - -In this section all the models will predict **all the features across all output time steps**. - -For the multi-step model, the training data again consists of hourly samples. However, here, the models will learn to predict 24h of the future, given 24h of the past. - -Here is a `Window` object that generates these slices from the dataset: - -```py -OUT_STEPS = 24 -multi_window = WindowGenerator(input_width=24, - label_width=OUT_STEPS, - shift=OUT_STEPS) - -multi_window.plot() -multi_window -``` - -```py -Total window size: 48 -Input indices: [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23] -Label indices: [24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47] -Label column name(s): None - -``` - -![png](img/4e0ba8d4a487b7517b7dbff7e19c4d52.png) - -### Baselines - -A simple baseline for this task is to repeat the last input time step for the required number of output timesteps: - -![Repeat the last input, for each output step](img/ca5c6f8a5c7444a19483d53990e42c33.png) - -```py -class MultiStepLastBaseline(tf.keras.Model): - def call(self, inputs): - return tf.tile(inputs[:, -1:, :], [1, OUT_STEPS, 1]) - -last_baseline = MultiStepLastBaseline() -last_baseline.compile(loss=tf.losses.MeanSquaredError(), - metrics=[tf.metrics.MeanAbsoluteError()]) - -multi_val_performance = {} -multi_performance = {} - -multi_val_performance['Last'] = last_baseline.evaluate(multi_window.val) -multi_performance['Last'] = last_baseline.evaluate(multi_window.test, verbose=0) -multi_window.plot(last_baseline) -``` - -```py -437/437 [==============================] - 1s 2ms/step - loss: 0.6285 - mean_absolute_error: 0.5007 - -``` - -![png](img/a71722493bd8850dfcd7c1ec0e69918f.png) - -Since this task is to predict 24h given 24h another simple approach is to repeat the previous day, assuming tomorrow will be similar: - -![Repeat the previous day](img/5edc6f55df9224577119e687a2c97282.png) - -```py -class RepeatBaseline(tf.keras.Model): - def call(self, inputs): - return inputs - -repeat_baseline = RepeatBaseline() -repeat_baseline.compile(loss=tf.losses.MeanSquaredError(), - metrics=[tf.metrics.MeanAbsoluteError()]) - -multi_val_performance['Repeat'] = repeat_baseline.evaluate(multi_window.val) -multi_performance['Repeat'] = repeat_baseline.evaluate(multi_window.test, verbose=0) -multi_window.plot(repeat_baseline) -``` - -```py -437/437 [==============================] - 1s 2ms/step - loss: 0.4270 - mean_absolute_error: 0.3959 - -``` - -![png](img/ae14079092bef088b0ecf83c8f429ef2.png) - -### Single-shot models - -One high level approach to this problem is use a "single-shot" model, where the model makes the entire sequence prediction in a single step. - -This can be implemented efficiently as a [`layers.Dense`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Dense) with `OUT_STEPS*features` output units. The model just needs to reshape that output to the required `(OUTPUT_STEPS, features)`. - -#### Linear - -A simple linear model based on the last input time step does better than either baseline, but is underpowered. The model needs to predict `OUTPUT_STEPS` time steps, from a single input time step with a linear projection. It can only capture a low-dimensional slice of the behavior, likely based mainly on the time of day and time of year. - -![Predct all timesteps from the last time-step](img/74469ffcda8aa53d4c29cfcfda5831ad.png) - -```py -multi_linear_model = tf.keras.Sequential([ - # Take the last time-step. - # Shape [batch, time, features] => [batch, 1, features] - tf.keras.layers.Lambda(lambda x: x[:, -1:, :]), - # Shape => [batch, 1, out_steps*features] - tf.keras.layers.Dense(OUT_STEPS*num_features, - kernel_initializer=tf.initializers.zeros), - # Shape => [batch, out_steps, features] - tf.keras.layers.Reshape([OUT_STEPS, num_features]) -]) - -history = compile_and_fit(multi_linear_model, multi_window) - -IPython.display.clear_output() -multi_val_performance['Linear'] = multi_linear_model.evaluate(multi_window.val) -multi_performance['Linear'] = multi_linear_model.evaluate(multi_window.test, verbose=0) -multi_window.plot(multi_linear_model) -``` - -```py -437/437 [==============================] - 1s 2ms/step - loss: 0.2556 - mean_absolute_error: 0.3050 - -``` - -![png](img/c9a00de59da2a696666612d0bd08c7a7.png) - -#### Dense - -Adding a [`layers.Dense`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Dense) between the input and output gives the linear model more power, but is still only based on a single input timestep. - -```py -multi_dense_model = tf.keras.Sequential([ - # Take the last time step. - # Shape [batch, time, features] => [batch, 1, features] - tf.keras.layers.Lambda(lambda x: x[:, -1:, :]), - # Shape => [batch, 1, dense_units] - tf.keras.layers.Dense(512, activation='relu'), - # Shape => [batch, out_steps*features] - tf.keras.layers.Dense(OUT_STEPS*num_features, - kernel_initializer=tf.initializers.zeros), - # Shape => [batch, out_steps, features] - tf.keras.layers.Reshape([OUT_STEPS, num_features]) -]) - -history = compile_and_fit(multi_dense_model, multi_window) - -IPython.display.clear_output() -multi_val_performance['Dense'] = multi_dense_model.evaluate(multi_window.val) -multi_performance['Dense'] = multi_dense_model.evaluate(multi_window.test, verbose=0) -multi_window.plot(multi_dense_model) -``` - -```py -437/437 [==============================] - 1s 3ms/step - loss: 0.2192 - mean_absolute_error: 0.2807 - -``` - -![png](img/a3f9320fc0125d442f2b7412c2492197.png) - -#### CNN - -A convolutional model makes predictions based on a fixed-width history, which may lead to better performance than the dense model since it can see how things are changing over time: - -![A convolutional model sees how things change over time](img/6b1df74992f4b9253cc3e928d73cd3a8.png) - -```py -CONV_WIDTH = 3 -multi_conv_model = tf.keras.Sequential([ - # Shape [batch, time, features] => [batch, CONV_WIDTH, features] - tf.keras.layers.Lambda(lambda x: x[:, -CONV_WIDTH:, :]), - # Shape => [batch, 1, conv_units] - tf.keras.layers.Conv1D(256, activation='relu', kernel_size=(CONV_WIDTH)), - # Shape => [batch, 1, out_steps*features] - tf.keras.layers.Dense(OUT_STEPS*num_features, - kernel_initializer=tf.initializers.zeros), - # Shape => [batch, out_steps, features] - tf.keras.layers.Reshape([OUT_STEPS, num_features]) -]) - -history = compile_and_fit(multi_conv_model, multi_window) - -IPython.display.clear_output() - -multi_val_performance['Conv'] = multi_conv_model.evaluate(multi_window.val) -multi_performance['Conv'] = multi_conv_model.evaluate(multi_window.test, verbose=0) -multi_window.plot(multi_conv_model) -``` - -```py -437/437 [==============================] - 1s 3ms/step - loss: 0.2142 - mean_absolute_error: 0.2805 - -``` - -![png](img/4d094983d2f7b41e395fe05b64ee1a36.png) - -#### RNN - -A recurrent model can learn to use a long history of inputs, if it's relevant to the predictions the model is making. Here the model will accumulate internal state for 24h, before making a single prediction for the next 24h. - -In this single-shot format, the LSTM only needs to produce an output at the last time step, so set `return_sequences=False`. - -![The lstm accumulates state over the input window, and makes a single prediction for the next 24h](img/de0d6e38c509169ec5a4edafdcb08e55.png) - -```py -multi_lstm_model = tf.keras.Sequential([ - # Shape [batch, time, features] => [batch, lstm_units] - # Adding more `lstm_units` just overfits more quickly. - tf.keras.layers.LSTM(32, return_sequences=False), - # Shape => [batch, out_steps*features] - tf.keras.layers.Dense(OUT_STEPS*num_features, - kernel_initializer=tf.initializers.zeros), - # Shape => [batch, out_steps, features] - tf.keras.layers.Reshape([OUT_STEPS, num_features]) -]) - -history = compile_and_fit(multi_lstm_model, multi_window) - -IPython.display.clear_output() - -multi_val_performance['LSTM'] = multi_lstm_model.evaluate(multi_window.val) -multi_performance['LSTM'] = multi_lstm_model.evaluate(multi_window.test, verbose=0) -multi_window.plot(multi_lstm_model) -``` - -```py -437/437 [==============================] - 1s 3ms/step - loss: 0.2146 - mean_absolute_error: 0.2829 - -``` - -![png](img/9534e12498035f0762e0c85eee6f02ca.png) - -### Advanced: Autoregressive model - -The above models all predict the entire output sequence as a in a single step. - -In some cases it may be helpful for the model to decompose this prediction into individual time steps. Then each model's output can be fed back into itself at each step and predictions can be made conditioned on the previous one, like in the classic [Generating Sequences With Recurrent Neural Networks](https://arxiv.org/abs/1308.0850). - -One clear advantage to this style of model is that it can be set up to produce output with a varying length. - -You could take any of single single-step multi-output models trained in the first half of this tutorial and run in an autoregressive feedback loop, but here you'll focus on building a model that's been explicitly trained to do that. - -![Feedback a model's output to its input](img/55e97ec60fa87503352f7debd65515af.png) - -#### RNN - -This tutorial only builds an autoregressive RNN model, but this pattern could be applied to any model that was designed to output a single timestep. - -The model will have the same basic form as the single-step `LSTM` models: An `LSTM` followed by a [`layers.Dense`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Dense) that converts the `LSTM` outputs to model predictions. - -A [`layers.LSTM`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/LSTM) is a [`layers.LSTMCell`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/LSTMCell) wrapped in the higher level [`layers.RNN`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/RNN) that manages the state and sequence results for you (See [Keras RNNs](https://tensorflow.google.cn/guide/keras/rnn) for details). - -In this case the model has to manually manage the inputs for each step so it uses [`layers.LSTMCell`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/LSTMCell) directly for the lower level, single time step interface. - -```py -class FeedBack(tf.keras.Model): - def __init__(self, units, out_steps): - super().__init__() - self.out_steps = out_steps - self.units = units - self.lstm_cell = tf.keras.layers.LSTMCell(units) - # Also wrap the LSTMCell in an RNN to simplify the `warmup` method. - self.lstm_rnn = tf.keras.layers.RNN(self.lstm_cell, return_state=True) - self.dense = tf.keras.layers.Dense(num_features) -``` - -```py -feedback_model = FeedBack(units=32, out_steps=OUT_STEPS) -``` - -The first method this model needs is a `warmup` method to initialize its internal state based on the inputs. Once trained this state will capture the relevant parts of the input history. This is equivalent to the single-step `LSTM` model from earlier: - -```py -def warmup(self, inputs): - # inputs.shape => (batch, time, features) - # x.shape => (batch, lstm_units) - x, *state = self.lstm_rnn(inputs) - - # predictions.shape => (batch, features) - prediction = self.dense(x) - return prediction, state - -FeedBack.warmup = warmup -``` - -This method returns a single time-step prediction, and the internal state of the LSTM: - -```py -prediction, state = feedback_model.warmup(multi_window.example[0]) -prediction.shape -``` - -```py -TensorShape([32, 19]) - -``` - -With the `RNN`'s state, and an initial prediction you can now continue iterating the model feeding the predictions at each step back as the input. - -The simplest approach to collecting the output predictions is to use a python list, and [`tf.stack`](https://tensorflow.google.cn/api_docs/python/tf/stack) after the loop. - -**Note:** Stacking a python list like this only works with eager-execution, using [`Model.compile(..., run_eagerly=True)`](https://tensorflow.google.cn/api_docs/python/tf/keras/Model#compile) for training, or with a fixed length output. For a dynamic output length you would need to use a [`tf.TensorArray`](https://tensorflow.google.cn/api_docs/python/tf/TensorArray) instead of a python list, and [`tf.range`](https://tensorflow.google.cn/api_docs/python/tf/range) instead of the python `range`. - -```py -def call(self, inputs, training=None): - # Use a TensorArray to capture dynamically unrolled outputs. - predictions = [] - # Initialize the lstm state - prediction, state = self.warmup(inputs) - - # Insert the first prediction - predictions.append(prediction) - - # Run the rest of the prediction steps - for n in range(1, self.out_steps): - # Use the last prediction as input. - x = prediction - # Execute one lstm step. - x, state = self.lstm_cell(x, states=state, - training=training) - # Convert the lstm output to a prediction. - prediction = self.dense(x) - # Add the prediction to the output - predictions.append(prediction) - - # predictions.shape => (time, batch, features) - predictions = tf.stack(predictions) - # predictions.shape => (batch, time, features) - predictions = tf.transpose(predictions, [1, 0, 2]) - return predictions - -FeedBack.call = call -``` - -Test run this model on the example inputs: - -```py -print('Output shape (batch, time, features): ', feedback_model(multi_window.example[0]).shape) -``` - -```py -Output shape (batch, time, features): (32, 24, 19) - -``` - -Now train the model: - -```py -history = compile_and_fit(feedback_model, multi_window) - -IPython.display.clear_output() - -multi_val_performance['AR LSTM'] = feedback_model.evaluate(multi_window.val) -multi_performance['AR LSTM'] = feedback_model.evaluate(multi_window.test, verbose=0) -multi_window.plot(feedback_model) -``` - -```py -437/437 [==============================] - 3s 8ms/step - loss: 0.2352 - mean_absolute_error: 0.3116 - -``` - -![png](img/28877f41199c01fa4ec5041f5b1fac9f.png) - -### Performance - -There are clearly diminishing returns as a function of model complexity on this problem. - -```py -x = np.arange(len(multi_performance)) -width = 0.3 - -metric_name = 'mean_absolute_error' -metric_index = lstm_model.metrics_names.index('mean_absolute_error') -val_mae = [v[metric_index] for v in multi_val_performance.values()] -test_mae = [v[metric_index] for v in multi_performance.values()] - -plt.bar(x - 0.17, val_mae, width, label='Validation') -plt.bar(x + 0.17, test_mae, width, label='Test') -plt.xticks(ticks=x, labels=multi_performance.keys(), - rotation=45) -plt.ylabel(f'MAE (average over all times and outputs)') -_ = plt.legend() -``` - -![png](img/fa351313bf1ddb033fe47d07a518db6c.png) - -The metrics for the multi-output models in the first half of this tutorial show the performance averaged across all output features. These performances similar but also averaged across output timesteps. - -```py -for name, value in multi_performance.items(): - print(f'{name:8s}: {value[1]:0.4f}') -``` - -```py -Last : 0.5157 -Repeat : 0.3774 -Linear : 0.2980 -Dense : 0.2754 -Conv : 0.2724 -LSTM : 0.2770 -AR LSTM : 0.3026 - -``` - -The gains achieved going from a dense model to convolutional and recurrent models are only a few percent (if any), and the autoregressive model performed clearly worse. So these more complex approaches may not be worth while on **this** problem, but there was no way to know without trying, and these models could be helpful for **your** problem. - -## Next steps - -This tutorial was a quick introduction to time series forecasting using TensorFlow. - -* For further understanding, see: - * Chapter 15 of [Hands-on Machine Learning with Scikit-Learn, Keras, and TensorFlow](https://www.oreilly.com/library/view/hands-on-machine-learning/9781492032632/), 2nd Edition - * Chapter 6 of [Deep Learning with Python](https://www.manning.com/books/deep-learning-with-python). - * Lesson 8 of [Udacity's intro to TensorFlow for deep learning](https://www.udacity.com/course/intro-to-tensorflow-for-deep-learning--ud187), and the [exercise notebooks](https://github.com/tensorflow/examples/tree/master/courses/udacity_intro_to_tensorflow_for_deep_learning) -* Also remember that you can implement any [classical time series model](https://otexts.com/fpp2/index.html) in TensorFlow, this tutorial just focuses on TensorFlow's built-in functionality. \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/059.md b/Tensorflow/TensorFlow2.0/059.md deleted file mode 100644 index c10a0c07..00000000 --- a/Tensorflow/TensorFlow2.0/059.md +++ /dev/null @@ -1 +0,0 @@ -# 生成 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/060.md b/Tensorflow/TensorFlow2.0/060.md deleted file mode 100644 index 9b48e8eb..00000000 --- a/Tensorflow/TensorFlow2.0/060.md +++ /dev/null @@ -1,689 +0,0 @@ -# 神经风格迁移 - -> 原文:[https://tensorflow.google.cn/tutorials/generative/style_transfer](https://tensorflow.google.cn/tutorials/generative/style_transfer) - - - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -本教程使用深度学习来用其他图像的风格创造一个图像(曾经你是否希望可以像毕加索或梵高一样绘画?)。 这被称为*神经风格迁移*,该技术概述于 [A Neural Algorithm of Artistic Style](https://arxiv.org/abs/1508.06576) (Gatys et al.). - -**Note:** 本教程演示了原始的风格迁移算法。它将图像内容优化为特定样式。最新的一些方法训练模型以直接生成风格化图像(类似于 [cyclegan](/tutorials/generative/cyclegan))。原始的这种方法要快得多(高达 1000 倍)。[TensorFlow Hub](https://tensorflow.google.cn/hub) 和 [TensorFlow Lite](https://tensorflow.google.cn/lite/models/style_transfer/overview) 中提供了预训练的[任意图像风格化模块](https://colab.sandbox.google.com/github/tensorflow/hub/blob/master/examples/colab/tf2_arbitrary_image_stylization.ipynb)。 - -神经风格迁移是一种优化技术,用于将两个图像——一个*内容*图像和一个*风格参考*图像(如著名画家的一个作品)——混合在一起,使输出的图像看起来像内容图像, 但是用了风格参考图像的风格。 - -这是通过优化输出图像以匹配内容图像的内容统计数据和风格参考图像的风格统计数据来实现的。 这些统计数据可以使用卷积网络从图像中提取。 - -例如,我们选取这张小狗的照片和 Wassily Kandinsky 的作品 7: - -![](img/8d456c03cff000c86147a07dbbcb6f32.png) - -[黄色拉布拉多犬的凝视](https://commons.wikimedia.org/wiki/File:YellowLabradorLooking_new.jpg),来自 Wikimedia Commons - -![](img/35253af9a3f5a4e0035787fd80b11ca3.png) - -如果 Kandinsky 决定用这种风格来专门描绘这只海龟会是什么样子? 是否如下图一样? - -![](img/40793e753f5cc525c8f3c9cd20d1085c.png) - -## 配置 - -### 导入和配置模块 - -```py -import tensorflow as tf -``` - -```py -import IPython.display as display - -import matplotlib.pyplot as plt -import matplotlib as mpl -mpl.rcParams['figure.figsize'] = (12,12) -mpl.rcParams['axes.grid'] = False - -import numpy as np -import PIL.Image -import time -import functools -``` - -```py -def tensor_to_image(tensor): - tensor = tensor*255 - tensor = np.array(tensor, dtype=np.uint8) - if np.ndim(tensor)>3: - assert tensor.shape[0] == 1 - tensor = tensor[0] - return PIL.Image.fromarray(tensor) -``` - -下载图像并选择风格图像和内容图像: - -```py -content_path = tf.keras.utils.get_file('YellowLabradorLooking_new.jpg', 'https://storage.googleapis.com/download.tensorflow.org/example_images/YellowLabradorLooking_new.jpg') - -# https://commons.wikimedia.org/wiki/File:Vassily_Kandinsky,_1913_-_Composition_7.jpg -style_path = tf.keras.utils.get_file('kandinsky5.jpg','https://storage.googleapis.com/download.tensorflow.org/example_images/Vassily_Kandinsky%2C_1913_-_Composition_7.jpg') -``` - -```py -Downloading data from https://storage.googleapis.com/download.tensorflow.org/example_images/YellowLabradorLooking_new.jpg -90112/83281 [================================] - 0s 0us/step -Downloading data from https://storage.googleapis.com/download.tensorflow.org/example_images/Vassily_Kandinsky%2C_1913_-_Composition_7.jpg -196608/195196 [==============================] - 0s 0us/step - -``` - -## 将输入可视化 - -定义一个加载图像的函数,并将其最大尺寸限制为 512 像素。 - -```py -def load_img(path_to_img): - max_dim = 512 - img = tf.io.read_file(path_to_img) - img = tf.image.decode_image(img, channels=3) - img = tf.image.convert_image_dtype(img, tf.float32) - - shape = tf.cast(tf.shape(img)[:-1], tf.float32) - long_dim = max(shape) - scale = max_dim / long_dim - - new_shape = tf.cast(shape * scale, tf.int32) - - img = tf.image.resize(img, new_shape) - img = img[tf.newaxis, :] - return img -``` - -创建一个简单的函数来显示图像: - -```py -def imshow(image, title=None): - if len(image.shape) > 3: - image = tf.squeeze(image, axis=0) - - plt.imshow(image) - if title: - plt.title(title) -``` - -```py -content_image = load_img(content_path) -style_image = load_img(style_path) - -plt.subplot(1, 2, 1) -imshow(content_image, 'Content Image') - -plt.subplot(1, 2, 2) -imshow(style_image, 'Style Image') -``` - -![png](img/d85fdaff014f0211e5ef646977087e50.png) - -## 使用 TF-Hub 进行快速风格迁移 - -本教程演示了原始的风格迁移算法。其将图像内容优化为特定风格。在进入细节之前,让我们看一下 [TensorFlow Hub](https://tensorflow.google.cn/hub) 模块如何快速风格迁移: - -```py -import tensorflow_hub as hub -hub_module = hub.load('https://hub.tensorflow.google.cn/google/magenta/arbitrary-image-stylization-v1-256/1') -stylized_image = hub_module(tf.constant(content_image), tf.constant(style_image))[0] -tensor_to_image(stylized_image) -``` - -![png](img/833d9eeff633ce77dec2eb85f74e8bbb.png) - -## 定义内容和风格的表示 - -使用模型的中间层来获取图像的*内容*和*风格*表示。 从网络的输入层开始,前几个层的激励响应表示边缘和纹理等低级 feature (特征)。 随着层数加深,最后几层代表更高级的 feature (特征)——实体的部分,如*轮子*或*眼睛*。 在此教程中,我们使用的是 VGG19 网络结构,这是一个已经预训练好的图像分类网络。 这些中间层是从图像中定义内容和风格的表示所必需的。 对于一个输入图像,我们尝试匹配这些中间层的相应风格和内容目标的表示。 - -加载 [VGG19](https://keras.io/applications/#vgg19) 并在我们的图像上测试它以确保正常运行: - -```py -x = tf.keras.applications.vgg19.preprocess_input(content_image*255) -x = tf.image.resize(x, (224, 224)) -vgg = tf.keras.applications.VGG19(include_top=True, weights='imagenet') -prediction_probabilities = vgg(x) -prediction_probabilities.shape -``` - -```py -TensorShape([1, 1000]) - -``` - -```py -predicted_top_5 = tf.keras.applications.vgg19.decode_predictions(prediction_probabilities.numpy())[0] -[(class_name, prob) for (number, class_name, prob) in predicted_top_5] -``` - -```py -Downloading data from https://storage.googleapis.com/download.tensorflow.org/data/imagenet_class_index.json -40960/35363 [==================================] - 0s 0us/step - -[('Labrador_retriever', 0.493171), - ('golden_retriever', 0.23665288), - ('kuvasz', 0.036357544), - ('Chesapeake_Bay_retriever', 0.024182763), - ('Greater_Swiss_Mountain_dog', 0.0186461)] - -``` - -现在,加载没有分类部分的 `VGG19` ,并列出各层的名称: - -```py -vgg = tf.keras.applications.VGG19(include_top=False, weights='imagenet') - -print() -for layer in vgg.layers: - print(layer.name) -``` - -```py -Downloading data from https://storage.googleapis.com/tensorflow/keras-applications/vgg19/vgg19_weights_tf_dim_ordering_tf_kernels_notop.h5 -80142336/80134624 [==============================] - 1s 0us/step - -input_2 -block1_conv1 -block1_conv2 -block1_pool -block2_conv1 -block2_conv2 -block2_pool -block3_conv1 -block3_conv2 -block3_conv3 -block3_conv4 -block3_pool -block4_conv1 -block4_conv2 -block4_conv3 -block4_conv4 -block4_pool -block5_conv1 -block5_conv2 -block5_conv3 -block5_conv4 -block5_pool - -``` - -从网络中选择中间层的输出以表示图像的风格和内容: - -```py -# 内容层将提取出我们的 feature maps (特征图) -content_layers = ['block5_conv2'] - -# 我们感兴趣的风格层 -style_layers = ['block1_conv1', - 'block2_conv1', - 'block3_conv1', - 'block4_conv1', - 'block5_conv1'] - -num_content_layers = len(content_layers) -num_style_layers = len(style_layers) -``` - -#### 用于表示风格和内容的中间层 - -那么,为什么我们预训练的图像分类网络中的这些中间层的输出允许我们定义风格和内容的表示? - -从高层理解,为了使网络能够实现图像分类(该网络已被训练过),它必须理解图像。 这需要将原始图像作为输入像素并构建内部表示,这个内部表示将原始图像像素转换为对图像中存在的 feature (特征)的复杂理解。 - -这也是卷积神经网络能够很好地推广的一个原因:它们能够捕获不变性并定义类别(例如猫与狗)之间的 feature (特征),这些 feature (特征)与背景噪声和其他干扰无关。 因此,将原始图像传递到模型输入和分类标签输出之间的某处的这一过程,可以视作复杂的 feature (特征)提取器。通过这些模型的中间层,我们就可以描述输入图像的内容和风格。 - -## 建立模型 - -使用[`tf.keras.applications`](https://tensorflow.google.cn/api_docs/python/tf/keras/applications)中的网络可以让我们非常方便的利用 Keras 的功能接口提取中间层的值。 - -在使用功能接口定义模型时,我们需要指定输入和输出: - -`model = Model(inputs, outputs)` - -以下函数构建了一个 VGG19 模型,该模型返回一个中间层输出的列表: - -```py -def vgg_layers(layer_names): - """ Creates a vgg model that returns a list of intermediate output values.""" - # 加载我们的模型。 加载已经在 imagenet 数据上预训练的 VGG - vgg = tf.keras.applications.VGG19(include_top=False, weights='imagenet') - vgg.trainable = False - - outputs = [vgg.get_layer(name).output for name in layer_names] - - model = tf.keras.Model([vgg.input], outputs) - return model -``` - -然后建立模型: - -```py -style_extractor = vgg_layers(style_layers) -style_outputs = style_extractor(style_image*255) - -#查看每层输出的统计信息 -for name, output in zip(style_layers, style_outputs): - print(name) - print(" shape: ", output.numpy().shape) - print(" min: ", output.numpy().min()) - print(" max: ", output.numpy().max()) - print(" mean: ", output.numpy().mean()) - print() -``` - -```py -block1_conv1 - shape: (1, 336, 512, 64) - min: 0.0 - max: 835.5256 - mean: 33.97525 - -block2_conv1 - shape: (1, 168, 256, 128) - min: 0.0 - max: 4625.8857 - mean: 199.82687 - -block3_conv1 - shape: (1, 84, 128, 256) - min: 0.0 - max: 8789.239 - mean: 230.78099 - -block4_conv1 - shape: (1, 42, 64, 512) - min: 0.0 - max: 21566.135 - mean: 791.24005 - -block5_conv1 - shape: (1, 21, 32, 512) - min: 0.0 - max: 3189.2542 - mean: 59.179478 - -``` - -## 风格计算 - -图像的内容由中间 feature maps (特征图)的值表示。 - -事实证明,图像的风格可以通过不同 feature maps (特征图)上的平均值和相关性来描述。 通过在每个位置计算 feature (特征)向量的外积,并在所有位置对该外积进行平均,可以计算出包含此信息的 Gram 矩阵。 对于特定层的 Gram 矩阵,具体计算方法如下所示: - -$$G^l_{cd} = \frac{\sum_{ij} F^l_{ijc}(x)F^l_{ijd}(x)}{IJ}$$ - -这可以使用[`tf.linalg.einsum`](https://tensorflow.google.cn/api_docs/python/tf/einsum)函数来实现: - -```py -def gram_matrix(input_tensor): - result = tf.linalg.einsum('bijc,bijd->bcd', input_tensor, input_tensor) - input_shape = tf.shape(input_tensor) - num_locations = tf.cast(input_shape[1]*input_shape[2], tf.float32) - return result/(num_locations) -``` - -## 提取风格和内容 - -构建一个返回风格和内容张量的模型。 - -```py -class StyleContentModel(tf.keras.models.Model): - def __init__(self, style_layers, content_layers): - super(StyleContentModel, self).__init__() - self.vgg = vgg_layers(style_layers + content_layers) - self.style_layers = style_layers - self.content_layers = content_layers - self.num_style_layers = len(style_layers) - self.vgg.trainable = False - - def call(self, inputs): - "Expects float input in [0,1]" - inputs = inputs*255.0 - preprocessed_input = tf.keras.applications.vgg19.preprocess_input(inputs) - outputs = self.vgg(preprocessed_input) - style_outputs, content_outputs = (outputs[:self.num_style_layers], - outputs[self.num_style_layers:]) - - style_outputs = [gram_matrix(style_output) - for style_output in style_outputs] - - content_dict = {content_name:value - for content_name, value - in zip(self.content_layers, content_outputs)} - - style_dict = {style_name:value - for style_name, value - in zip(self.style_layers, style_outputs)} - - return {'content':content_dict, 'style':style_dict} -``` - -在图像上调用此模型,可以返回 style_layers 的 gram 矩阵(风格)和 content_layers 的内容: - -```py -extractor = StyleContentModel(style_layers, content_layers) - -results = extractor(tf.constant(content_image)) - -style_results = results['style'] - -print('Styles:') -for name, output in sorted(results['style'].items()): - print(" ", name) - print(" shape: ", output.numpy().shape) - print(" min: ", output.numpy().min()) - print(" max: ", output.numpy().max()) - print(" mean: ", output.numpy().mean()) - print() - -print("Contents:") -for name, output in sorted(results['content'].items()): - print(" ", name) - print(" shape: ", output.numpy().shape) - print(" min: ", output.numpy().min()) - print(" max: ", output.numpy().max()) - print(" mean: ", output.numpy().mean()) -``` - -```py -Styles: - block1_conv1 - shape: (1, 64, 64) - min: 0.0055228462 - max: 28014.562 - mean: 263.79025 - - block2_conv1 - shape: (1, 128, 128) - min: 0.0 - max: 61479.49 - mean: 9100.949 - - block3_conv1 - shape: (1, 256, 256) - min: 0.0 - max: 545623.44 - mean: 7660.976 - - block4_conv1 - shape: (1, 512, 512) - min: 0.0 - max: 4320502.0 - mean: 134288.84 - - block5_conv1 - shape: (1, 512, 512) - min: 0.0 - max: 110005.34 - mean: 1487.0381 - -Contents: - block5_conv2 - shape: (1, 26, 32, 512) - min: 0.0 - max: 2410.8796 - mean: 13.764149 - -``` - -## 梯度下降 - -使用此风格和内容提取器,我们现在可以实现风格传输算法。我们通过计算每个图像的输出和目标的均方误差来做到这一点,然后取这些损失值的加权和。 - -设置风格和内容的目标值: - -```py -style_targets = extractor(style_image)['style'] -content_targets = extractor(content_image)['content'] -``` - -定义一个 [`tf.Variable`](https://tensorflow.google.cn/api_docs/python/tf/Variable) 来表示要优化的图像。 为了快速实现这一点,使用内容图像对其进行初始化( [`tf.Variable`](https://tensorflow.google.cn/api_docs/python/tf/Variable) 必须与内容图像的形状相同) - -```py -image = tf.Variable(content_image) -``` - -由于这是一个浮点图像,因此我们定义一个函数来保持像素值在 0 和 1 之间: - -```py -def clip_0_1(image): - return tf.clip_by_value(image, clip_value_min=0.0, clip_value_max=1.0) -``` - -创建一个 optimizer 。 本教程推荐 LBFGS,但 `Adam` 也可以正常工作: - -```py -opt = tf.optimizers.Adam(learning_rate=0.02, beta_1=0.99, epsilon=1e-1) -``` - -为了优化它,我们使用两个损失的加权组合来获得总损失: - -```py -style_weight=1e-2 -content_weight=1e4 -``` - -```py -def style_content_loss(outputs): - style_outputs = outputs['style'] - content_outputs = outputs['content'] - style_loss = tf.add_n([tf.reduce_mean((style_outputs[name]-style_targets[name])**2) - for name in style_outputs.keys()]) - style_loss *= style_weight / num_style_layers - - content_loss = tf.add_n([tf.reduce_mean((content_outputs[name]-content_targets[name])**2) - for name in content_outputs.keys()]) - content_loss *= content_weight / num_content_layers - loss = style_loss + content_loss - return loss -``` - -使用 [`tf.GradientTape`](https://tensorflow.google.cn/api_docs/python/tf/GradientTape) 来更新图像。 - -```py -@tf.function() -def train_step(image): - with tf.GradientTape() as tape: - outputs = extractor(image) - loss = style_content_loss(outputs) - - grad = tape.gradient(loss, image) - opt.apply_gradients([(grad, image)]) - image.assign(clip_0_1(image)) -``` - -现在,我们运行几个步来测试一下: - -```py -train_step(image) -train_step(image) -train_step(image) -tensor_to_image(image) -``` - -![png](img/643455194a29bfd2dc25c8821cbbf3b4.png) - -运行正常,我们来执行一个更长的优化: - -```py -import time -start = time.time() - -epochs = 10 -steps_per_epoch = 100 - -step = 0 -for n in range(epochs): - for m in range(steps_per_epoch): - step += 1 - train_step(image) - print(".", end='') - display.clear_output(wait=True) - display.display(tensor_to_image(image)) - print("Train step: {}".format(step)) - -end = time.time() -print("Total time: {:.1f}".format(end-start)) -``` - -![png](img/867e80eb383cce30a1f013a43e465d02.png) - -```py -Train step: 1000 -Total time: 20.4 - -``` - -## 总变分损失 - -此实现只是一个基础版本,它的一个缺点是它会产生大量的高频误差。 我们可以直接通过正则化图像的高频分量来减少这些高频误差。 在风格转移中,这通常被称为*总变分损失*: - -```py -def high_pass_x_y(image): - x_var = image[:,:,1:,:] - image[:,:,:-1,:] - y_var = image[:,1:,:,:] - image[:,:-1,:,:] - - return x_var, y_var -``` - -```py -x_deltas, y_deltas = high_pass_x_y(content_image) - -plt.figure(figsize=(14,10)) -plt.subplot(2,2,1) -imshow(clip_0_1(2*y_deltas+0.5), "Horizontal Deltas: Original") - -plt.subplot(2,2,2) -imshow(clip_0_1(2*x_deltas+0.5), "Vertical Deltas: Original") - -x_deltas, y_deltas = high_pass_x_y(image) - -plt.subplot(2,2,3) -imshow(clip_0_1(2*y_deltas+0.5), "Horizontal Deltas: Styled") - -plt.subplot(2,2,4) -imshow(clip_0_1(2*x_deltas+0.5), "Vertical Deltas: Styled") -``` - -![png](img/e3d2caa770c7f600fb5cdc2a95ad0e0a.png) - -这显示了高频分量如何增加。 - -而且,本质上高频分量是一个边缘检测器。 我们可以从 Sobel 边缘检测器获得类似的输出,例如: - -```py -plt.figure(figsize=(14,10)) - -sobel = tf.image.sobel_edges(content_image) -plt.subplot(1,2,1) -imshow(clip_0_1(sobel[...,0]/4+0.5), "Horizontal Sobel-edges") -plt.subplot(1,2,2) -imshow(clip_0_1(sobel[...,1]/4+0.5), "Vertical Sobel-edges") -``` - -![png](img/03dad7eb5e1c97b1391c9925be7da416.png) - -与此相关的正则化损失是这些值的平方和: - -```py -def total_variation_loss(image): - x_deltas, y_deltas = high_pass_x_y(image) - return tf.reduce_sum(tf.abs(x_deltas)) + tf.reduce_sum(tf.abs(y_deltas)) -``` - -```py -total_variation_loss(image).numpy() -``` - -```py -149342.6 - -``` - -以上说明了总变分损失的用途。但是无需自己实现,因为 TensorFlow 包含了一个标准实现: - -```py -tf.image.total_variation(image).numpy() -``` - -```py -array([149342.6], dtype=float32) - -``` - -## 重新进行优化 - -选择 `total_variation_loss` 的权重: - -```py -total_variation_weight=30 -``` - -现在,将它加入 `train_step` 函数中: - -```py -@tf.function() -def train_step(image): - with tf.GradientTape() as tape: - outputs = extractor(image) - loss = style_content_loss(outputs) - loss += total_variation_weight*tf.image.total_variation(image) - - grad = tape.gradient(loss, image) - opt.apply_gradients([(grad, image)]) - image.assign(clip_0_1(image)) -``` - -重新初始化优化的变量: - -```py -image = tf.Variable(content_image) -``` - -并进行优化: - -```py -import time -start = time.time() - -epochs = 10 -steps_per_epoch = 100 - -step = 0 -for n in range(epochs): - for m in range(steps_per_epoch): - step += 1 - train_step(image) - print(".", end='') - display.clear_output(wait=True) - display.display(tensor_to_image(image)) - print("Train step: {}".format(step)) - -end = time.time() -print("Total time: {:.1f}".format(end-start)) -``` - -![png](img/c67ce581d874e2d04e2761cc44b1d094.png) - -```py -Train step: 1000 -Total time: 21.7 - -``` - -最后,保存结果: - -```py -file_name = 'stylized-image.png' -tensor_to_image(image).save(file_name) - -try: - from google.colab import files -except ImportError: - pass -else: - files.download(file_name) -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/061.md b/Tensorflow/TensorFlow2.0/061.md deleted file mode 100644 index a649569e..00000000 --- a/Tensorflow/TensorFlow2.0/061.md +++ /dev/null @@ -1,373 +0,0 @@ -# DeepDream - -> 原文:[https://tensorflow.google.cn/tutorials/generative/deepdream](https://tensorflow.google.cn/tutorials/generative/deepdream) - -This tutorial contains a minimal implementation of DeepDream, as described in this [blog post](https://ai.googleblog.com/2015/06/inceptionism-going-deeper-into-neural.html) by Alexander Mordvintsev. - -DeepDream is an experiment that visualizes the patterns learned by a neural network. Similar to when a child watches clouds and tries to interpret random shapes, DeepDream over-interprets and enhances the patterns it sees in an image. - -It does so by forwarding an image through the network, then calculating the gradient of the image with respect to the activations of a particular layer. The image is then modified to increase these activations, enhancing the patterns seen by the network, and resulting in a dream-like image. This process was dubbed "Inceptionism" (a reference to [InceptionNet](https://arxiv.org/pdf/1409.4842.pdf), and the [movie](https://en.wikipedia.org/wiki/Inception) Inception). - -Let's demonstrate how you can make a neural network "dream" and enhance the surreal patterns it sees in an image. - -![Dogception](img/ad462e5b3dc8d32430aaa7de7e4bf303.png) - -```py -import tensorflow as tf -``` - -```py -import numpy as np - -import matplotlib as mpl - -import IPython.display as display -import PIL.Image - -from tensorflow.keras.preprocessing import image -``` - -## Choose an image to dream-ify - -For this tutorial, let's use an image of a [labrador](https://commons.wikimedia.org/wiki/File:YellowLabradorLooking_new.jpg). - -```py -url = 'https://storage.googleapis.com/download.tensorflow.org/example_images/YellowLabradorLooking_new.jpg' -``` - -```py -# Download an image and read it into a NumPy array. -def download(url, max_dim=None): - name = url.split('/')[-1] - image_path = tf.keras.utils.get_file(name, origin=url) - img = PIL.Image.open(image_path) - if max_dim: - img.thumbnail((max_dim, max_dim)) - return np.array(img) - -# Normalize an image -def deprocess(img): - img = 255*(img + 1.0)/2.0 - return tf.cast(img, tf.uint8) - -# Display an image -def show(img): - display.display(PIL.Image.fromarray(np.array(img))) - -# Downsizing the image makes it easier to work with. -original_img = download(url, max_dim=500) -show(original_img) -display.display(display.HTML('Image cc-by: Von.grzanka')) -``` - -```py -Downloading data from https://storage.googleapis.com/download.tensorflow.org/example_images/YellowLabradorLooking_new.jpg -90112/83281 [================================] - 0s 0us/step - -``` - -![png](img/61002e329110c6cb1db1a82acd8d232f.png) - - - -## Prepare the feature extraction model - -Download and prepare a pre-trained image classification model. You will use [InceptionV3](https://keras.io/applications/#inceptionv3) which is similar to the model originally used in DeepDream. Note that any [pre-trained model](https://keras.io/applications/#models-for-image-classification-with-weights-trained-on-imagenet) will work, although you will have to adjust the layer names below if you change this. - -```py -base_model = tf.keras.applications.InceptionV3(include_top=False, weights='imagenet') -``` - -```py -Downloading data from https://storage.googleapis.com/tensorflow/keras-applications/inception_v3/inception_v3_weights_tf_dim_ordering_tf_kernels_notop.h5 -87916544/87910968 [==============================] - 2s 0us/step - -``` - -The idea in DeepDream is to choose a layer (or layers) and maximize the "loss" in a way that the image increasingly "excites" the layers. The complexity of the features incorporated depends on layers chosen by you, i.e, lower layers produce strokes or simple patterns, while deeper layers give sophisticated features in images, or even whole objects. - -The InceptionV3 architecture is quite large (for a graph of the model architecture see TensorFlow's [research repo](https://github.com/tensorflow/models/tree/master/research/inception)). For DeepDream, the layers of interest are those where the convolutions are concatenated. There are 11 of these layers in InceptionV3, named 'mixed0' though 'mixed10'. Using different layers will result in different dream-like images. Deeper layers respond to higher-level features (such as eyes and faces), while earlier layers respond to simpler features (such as edges, shapes, and textures). Feel free to experiment with the layers selected below, but keep in mind that deeper layers (those with a higher index) will take longer to train on since the gradient computation is deeper. - -```py -# Maximize the activations of these layers -names = ['mixed3', 'mixed5'] -layers = [base_model.get_layer(name).output for name in names] - -# Create the feature extraction model -dream_model = tf.keras.Model(inputs=base_model.input, outputs=layers) -``` - -## Calculate loss - -The loss is the sum of the activations in the chosen layers. The loss is normalized at each layer so the contribution from larger layers does not outweigh smaller layers. Normally, loss is a quantity you wish to minimize via gradient descent. In DeepDream, you will maximize this loss via gradient ascent. - -```py -def calc_loss(img, model): - # Pass forward the image through the model to retrieve the activations. - # Converts the image into a batch of size 1. - img_batch = tf.expand_dims(img, axis=0) - layer_activations = model(img_batch) - if len(layer_activations) == 1: - layer_activations = [layer_activations] - - losses = [] - for act in layer_activations: - loss = tf.math.reduce_mean(act) - losses.append(loss) - - return tf.reduce_sum(losses) -``` - -## Gradient ascent - -Once you have calculated the loss for the chosen layers, all that is left is to calculate the gradients with respect to the image, and add them to the original image. - -Adding the gradients to the image enhances the patterns seen by the network. At each step, you will have created an image that increasingly excites the activations of certain layers in the network. - -The method that does this, below, is wrapped in a [`tf.function`](https://tensorflow.google.cn/api_docs/python/tf/function) for performance. It uses an `input_signature` to ensure that the function is not retraced for different image sizes or `steps`/`step_size` values. See the [Concrete functions guide](https://tensorflow.google.cn/guide/concrete_function) for details. - -```py -class DeepDream(tf.Module): - def __init__(self, model): - self.model = model - - @tf.function( - input_signature=( - tf.TensorSpec(shape=[None,None,3], dtype=tf.float32), - tf.TensorSpec(shape=[], dtype=tf.int32), - tf.TensorSpec(shape=[], dtype=tf.float32),) - ) - def __call__(self, img, steps, step_size): - print("Tracing") - loss = tf.constant(0.0) - for n in tf.range(steps): - with tf.GradientTape() as tape: - # This needs gradients relative to `img` - # `GradientTape` only watches `tf.Variable`s by default - tape.watch(img) - loss = calc_loss(img, self.model) - - # Calculate the gradient of the loss with respect to the pixels of the input image. - gradients = tape.gradient(loss, img) - - # Normalize the gradients. - gradients /= tf.math.reduce_std(gradients) + 1e-8 - - # In gradient ascent, the "loss" is maximized so that the input image increasingly "excites" the layers. - # You can update the image by directly adding the gradients (because they're the same shape!) - img = img + gradients*step_size - img = tf.clip_by_value(img, -1, 1) - - return loss, img -``` - -```py -deepdream = DeepDream(dream_model) -``` - -## Main Loop - -```py -def run_deep_dream_simple(img, steps=100, step_size=0.01): - # Convert from uint8 to the range expected by the model. - img = tf.keras.applications.inception_v3.preprocess_input(img) - img = tf.convert_to_tensor(img) - step_size = tf.convert_to_tensor(step_size) - steps_remaining = steps - step = 0 - while steps_remaining: - if steps_remaining>100: - run_steps = tf.constant(100) - else: - run_steps = tf.constant(steps_remaining) - steps_remaining -= run_steps - step += run_steps - - loss, img = deepdream(img, run_steps, tf.constant(step_size)) - - display.clear_output(wait=True) - show(deprocess(img)) - print ("Step {}, loss {}".format(step, loss)) - - result = deprocess(img) - display.clear_output(wait=True) - show(result) - - return result -``` - -```py -dream_img = run_deep_dream_simple(img=original_img, - steps=100, step_size=0.01) -``` - -![png](img/e47b08aec7cc62d5268c6c6af8cf2b16.png) - -## Taking it up an octave - -Pretty good, but there are a few issues with this first attempt: - -1. The output is noisy (this could be addressed with a [`tf.image.total_variation`](https://tensorflow.google.cn/api_docs/python/tf/image/total_variation) loss). -2. The image is low resolution. -3. The patterns appear like they're all happening at the same granularity. - -One approach that addresses all these problems is applying gradient ascent at different scales. This will allow patterns generated at smaller scales to be incorporated into patterns at higher scales and filled in with additional detail. - -To do this you can perform the previous gradient ascent approach, then increase the size of the image (which is referred to as an octave), and repeat this process for multiple octaves. - -```py -import time -start = time.time() - -OCTAVE_SCALE = 1.30 - -img = tf.constant(np.array(original_img)) -base_shape = tf.shape(img)[:-1] -float_base_shape = tf.cast(base_shape, tf.float32) - -for n in range(-2, 3): - new_shape = tf.cast(float_base_shape*(OCTAVE_SCALE**n), tf.int32) - - img = tf.image.resize(img, new_shape).numpy() - - img = run_deep_dream_simple(img=img, steps=50, step_size=0.01) - -display.clear_output(wait=True) -img = tf.image.resize(img, base_shape) -img = tf.image.convert_image_dtype(img/255.0, dtype=tf.uint8) -show(img) - -end = time.time() -end-start -``` - -![png](img/a3d4072cdd299fedb28dda8fdab7e611.png) - -```py -5.535110235214233 - -``` - -## Optional: Scaling up with tiles - -One thing to consider is that as the image increases in size, so will the time and memory necessary to perform the gradient calculation. The above octave implementation will not work on very large images, or many octaves. - -To avoid this issue you can split the image into tiles and compute the gradient for each tile. - -Applying random shifts to the image before each tiled computation prevents tile seams from appearing. - -Start by implementing the random shift: - -```py -def random_roll(img, maxroll): - # Randomly shift the image to avoid tiled boundaries. - shift = tf.random.uniform(shape=[2], minval=-maxroll, maxval=maxroll, dtype=tf.int32) - img_rolled = tf.roll(img, shift=shift, axis=[0,1]) - return shift, img_rolled -``` - -```py -shift, img_rolled = random_roll(np.array(original_img), 512) -show(img_rolled) -``` - -![png](img/47c750cbb275e148fd8d76c4bf49d4a6.png) - -Here is a tiled equivalent of the `deepdream` function defined earlier: - -```py -class TiledGradients(tf.Module): - def __init__(self, model): - self.model = model - - @tf.function( - input_signature=( - tf.TensorSpec(shape=[None,None,3], dtype=tf.float32), - tf.TensorSpec(shape=[], dtype=tf.int32),) - ) - def __call__(self, img, tile_size=512): - shift, img_rolled = random_roll(img, tile_size) - - # Initialize the image gradients to zero. - gradients = tf.zeros_like(img_rolled) - - # Skip the last tile, unless there's only one tile. - xs = tf.range(0, img_rolled.shape[0], tile_size)[:-1] - if not tf.cast(len(xs), bool): - xs = tf.constant([0]) - ys = tf.range(0, img_rolled.shape[1], tile_size)[:-1] - if not tf.cast(len(ys), bool): - ys = tf.constant([0]) - - for x in xs: - for y in ys: - # Calculate the gradients for this tile. - with tf.GradientTape() as tape: - # This needs gradients relative to `img_rolled`. - # `GradientTape` only watches `tf.Variable`s by default. - tape.watch(img_rolled) - - # Extract a tile out of the image. - img_tile = img_rolled[x:x+tile_size, y:y+tile_size] - loss = calc_loss(img_tile, self.model) - - # Update the image gradients for this tile. - gradients = gradients + tape.gradient(loss, img_rolled) - - # Undo the random shift applied to the image and its gradients. - gradients = tf.roll(gradients, shift=-shift, axis=[0,1]) - - # Normalize the gradients. - gradients /= tf.math.reduce_std(gradients) + 1e-8 - - return gradients -``` - -```py -get_tiled_gradients = TiledGradients(dream_model) -``` - -Putting this together gives a scalable, octave-aware deepdream implementation: - -```py -def run_deep_dream_with_octaves(img, steps_per_octave=100, step_size=0.01, - octaves=range(-2,3), octave_scale=1.3): - base_shape = tf.shape(img) - img = tf.keras.preprocessing.image.img_to_array(img) - img = tf.keras.applications.inception_v3.preprocess_input(img) - - initial_shape = img.shape[:-1] - img = tf.image.resize(img, initial_shape) - for octave in octaves: - # Scale the image based on the octave - new_size = tf.cast(tf.convert_to_tensor(base_shape[:-1]), tf.float32)*(octave_scale**octave) - img = tf.image.resize(img, tf.cast(new_size, tf.int32)) - - for step in range(steps_per_octave): - gradients = get_tiled_gradients(img) - img = img + gradients*step_size - img = tf.clip_by_value(img, -1, 1) - - if step % 10 == 0: - display.clear_output(wait=True) - show(deprocess(img)) - print ("Octave {}, Step {}".format(octave, step)) - - result = deprocess(img) - return result -``` - -```py -img = run_deep_dream_with_octaves(img=original_img, step_size=0.01) - -display.clear_output(wait=True) -img = tf.image.resize(img, base_shape) -img = tf.image.convert_image_dtype(img/255.0, dtype=tf.uint8) -show(img) -``` - -![png](img/1c3bc0a947aefadc9c04f9c5f0bf1991.png) - -Much better! Play around with the number of octaves, octave scale, and activated layers to change how your DeepDream-ed image looks. - -Readers might also be interested in [TensorFlow Lucid](https://github.com/tensorflow/lucid) which expands on ideas introduced in this tutorial to visualize and interpret neural networks. \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/062.md b/Tensorflow/TensorFlow2.0/062.md deleted file mode 100644 index 83740f7d..00000000 --- a/Tensorflow/TensorFlow2.0/062.md +++ /dev/null @@ -1,389 +0,0 @@ -# 深度卷积生成对抗网络 - -> 原文:[https://tensorflow.google.cn/tutorials/generative/dcgan](https://tensorflow.google.cn/tutorials/generative/dcgan) - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -本教程演示了如何使用[深度卷积生成对抗网络](https://arxiv.org/pdf/1511.06434.pdf)(DCGAN)生成手写数字图片。该代码是使用 [Keras Sequential API](https://tensorflow.google.cn/guide/keras) 与 [`tf.GradientTape`](https://tensorflow.google.cn/api_docs/python/tf/GradientTape) 训练循环编写的。 - -## 什么是生成对抗网络? - -[生成对抗网络](https://arxiv.org/abs/1406.2661)(GANs)是当今计算机科学领域最有趣的想法之一。两个模型通过对抗过程同时训练。一个*生成器*(“艺术家”)学习创造看起来真实的图像,而*判别器*(“艺术评论家”)学习区分真假图像。 - -![生成器和判别器图示](img/d6513785291f1616fa5a88b830c9a438.png) - -训练过程中,*生成器*在生成逼真图像方面逐渐变强,而*判别器*在辨别这些图像的能力上逐渐变强。当*判别器*不再能够区分真实图片和伪造图片时,训练过程达到平衡。 - -![生成器和判别器图示二](img/a84da0fdd95c0b8365360f941f57e017.png) - -本笔记在 MNIST 数据集上演示了该过程。下方动画展示了当训练了 50 个 epoch (全部数据集迭代 50 次) 时*生成器*所生成的一系列图片。图片从随机噪声开始,随着时间的推移越来越像手写数字。 - -![输出样本](img/2e071a2b770d50ed5ef40dabbe1fd1a7.png) - -要了解关于 GANs 的更多信息,我们建议参阅 MIT 的 [深度学习入门](http://introtodeeplearning.com/) 课程。 - -### Import TensorFlow and other libraries - -```py -import tensorflow as tf -``` - -```py -tf.__version__ -``` - -```py -'2.3.0' - -``` - -```py -# 用于生成 GIF 图片 -pip install -q imageio - -``` - -```py -WARNING: You are using pip version 20.2.2; however, version 20.2.3 is available. -You should consider upgrading via the '/tmpfs/src/tf_docs_env/bin/python -m pip install --upgrade pip' command. - -``` - -```py -import glob -import imageio -import matplotlib.pyplot as plt -import numpy as np -import os -import PIL -from tensorflow.keras import layers -import time - -from IPython import display -``` - -### 加载和准备数据集 - -您将使用 MNIST 数据集来训练生成器和判别器。生成器将生成类似于 MNIST 数据集的手写数字。 - -```py -(train_images, train_labels), (_, _) = tf.keras.datasets.mnist.load_data() -``` - -```py -train_images = train_images.reshape(train_images.shape[0], 28, 28, 1).astype('float32') -train_images = (train_images - 127.5) / 127.5 # 将图片标准化到 [-1, 1] 区间内 -``` - -```py -BUFFER_SIZE = 60000 -BATCH_SIZE = 256 -``` - -```py -# 批量化和打乱数据 -train_dataset = tf.data.Dataset.from_tensor_slices(train_images).shuffle(BUFFER_SIZE).batch(BATCH_SIZE) -``` - -## 创建模型 - -生成器和判别器均使用 [Keras Sequential API](https://tensorflow.google.cn/guide/keras#sequential_model) 定义。 - -### 生成器 - -生成器使用 [`tf.keras.layers.Conv2DTranspose`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Conv2DTranspose) (上采样)层来从种子(随机噪声)中产生图片。以一个使用该种子作为输入的 `Dense` 层开始,然后多次上采样直到达到所期望的 28x28x1 的图片尺寸。注意除了输出层使用 tanh 之外,其他每层均使用 [`tf.keras.layers.LeakyReLU`](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/LeakyReLU) 作为激活函数。 - -```py -def make_generator_model(): - model = tf.keras.Sequential() - model.add(layers.Dense(7*7*256, use_bias=False, input_shape=(100,))) - model.add(layers.BatchNormalization()) - model.add(layers.LeakyReLU()) - - model.add(layers.Reshape((7, 7, 256))) - assert model.output_shape == (None, 7, 7, 256) # 注意:batch size 没有限制 - - model.add(layers.Conv2DTranspose(128, (5, 5), strides=(1, 1), padding='same', use_bias=False)) - assert model.output_shape == (None, 7, 7, 128) - model.add(layers.BatchNormalization()) - model.add(layers.LeakyReLU()) - - model.add(layers.Conv2DTranspose(64, (5, 5), strides=(2, 2), padding='same', use_bias=False)) - assert model.output_shape == (None, 14, 14, 64) - model.add(layers.BatchNormalization()) - model.add(layers.LeakyReLU()) - - model.add(layers.Conv2DTranspose(1, (5, 5), strides=(2, 2), padding='same', use_bias=False, activation='tanh')) - assert model.output_shape == (None, 28, 28, 1) - - return model -``` - -使用(尚未训练的)生成器创建一张图片。 - -```py -generator = make_generator_model() - -noise = tf.random.normal([1, 100]) -generated_image = generator(noise, training=False) - -plt.imshow(generated_image[0, :, :, 0], cmap='gray') -``` - -```py - - -``` - -![png](img/22f7bd226b742292050c368b980067f4.png) - -### 判别器 - -判别器是一个基于 CNN 的图片分类器。 - -```py -def make_discriminator_model(): - model = tf.keras.Sequential() - model.add(layers.Conv2D(64, (5, 5), strides=(2, 2), padding='same', - input_shape=[28, 28, 1])) - model.add(layers.LeakyReLU()) - model.add(layers.Dropout(0.3)) - - model.add(layers.Conv2D(128, (5, 5), strides=(2, 2), padding='same')) - model.add(layers.LeakyReLU()) - model.add(layers.Dropout(0.3)) - - model.add(layers.Flatten()) - model.add(layers.Dense(1)) - - return model -``` - -使用(尚未训练的)判别器来对图片的真伪进行判断。模型将被训练为为真实图片输出正值,为伪造图片输出负值。 - -```py -discriminator = make_discriminator_model() -decision = discriminator(generated_image) -print (decision) -``` - -```py -tf.Tensor([[-0.00427552]], shape=(1, 1), dtype=float32) - -``` - -## 定义损失函数和优化器 - -为两个模型定义损失函数和优化器。 - -```py -# 该方法返回计算交叉熵损失的辅助函数 -cross_entropy = tf.keras.losses.BinaryCrossentropy(from_logits=True) -``` - -### 判别器损失 - -该方法量化判别器从判断真伪图片的能力。它将判别器对真实图片的预测值与值全为 1 的数组进行对比,将判别器对伪造(生成的)图片的预测值与值全为 0 的数组进行对比。 - -```py -def discriminator_loss(real_output, fake_output): - real_loss = cross_entropy(tf.ones_like(real_output), real_output) - fake_loss = cross_entropy(tf.zeros_like(fake_output), fake_output) - total_loss = real_loss + fake_loss - return total_loss -``` - -### 生成器损失 - -生成器损失量化其欺骗判别器的能力。直观来讲,如果生成器表现良好,判别器将会把伪造图片判断为真实图片(或 1)。这里我们将把判别器在生成图片上的判断结果与一个值全为 1 的数组进行对比。 - -```py -def generator_loss(fake_output): - return cross_entropy(tf.ones_like(fake_output), fake_output) -``` - -由于我们需要分别训练两个网络,判别器和生成器的优化器是不同的。 - -```py -generator_optimizer = tf.keras.optimizers.Adam(1e-4) -discriminator_optimizer = tf.keras.optimizers.Adam(1e-4) -``` - -### 保存检查点 - -本笔记还演示了如何保存和恢复模型,这在长时间训练任务被中断的情况下比较有帮助。 - -```py -checkpoint_dir = './training_checkpoints' -checkpoint_prefix = os.path.join(checkpoint_dir, "ckpt") -checkpoint = tf.train.Checkpoint(generator_optimizer=generator_optimizer, - discriminator_optimizer=discriminator_optimizer, - generator=generator, - discriminator=discriminator) -``` - -## 定义训练循环 - -```py -EPOCHS = 50 -noise_dim = 100 -num_examples_to_generate = 16 - -# 我们将重复使用该种子(因此在动画 GIF 中更容易可视化进度) -seed = tf.random.normal([num_examples_to_generate, noise_dim]) -``` - -训练循环在生成器接收到一个随机种子作为输入时开始。该种子用于生产一张图片。判别器随后被用于区分真实图片(选自训练集)和伪造图片(由生成器生成)。针对这里的每一个模型都计算损失函数,并且计算梯度用于更新生成器与判别器。 - -```py -# 注意 `tf.function` 的使用 -# 该注解使函数被“编译” -@tf.function -def train_step(images): - noise = tf.random.normal([BATCH_SIZE, noise_dim]) - - with tf.GradientTape() as gen_tape, tf.GradientTape() as disc_tape: - generated_images = generator(noise, training=True) - - real_output = discriminator(images, training=True) - fake_output = discriminator(generated_images, training=True) - - gen_loss = generator_loss(fake_output) - disc_loss = discriminator_loss(real_output, fake_output) - - gradients_of_generator = gen_tape.gradient(gen_loss, generator.trainable_variables) - gradients_of_discriminator = disc_tape.gradient(disc_loss, discriminator.trainable_variables) - - generator_optimizer.apply_gradients(zip(gradients_of_generator, generator.trainable_variables)) - discriminator_optimizer.apply_gradients(zip(gradients_of_discriminator, discriminator.trainable_variables)) -``` - -```py -def train(dataset, epochs): - for epoch in range(epochs): - start = time.time() - - for image_batch in dataset: - train_step(image_batch) - - # 继续进行时为 GIF 生成图像 - display.clear_output(wait=True) - generate_and_save_images(generator, - epoch + 1, - seed) - - # 每 15 个 epoch 保存一次模型 - if (epoch + 1) % 15 == 0: - checkpoint.save(file_prefix = checkpoint_prefix) - - print ('Time for epoch {} is {} sec'.format(epoch + 1, time.time()-start)) - - # 最后一个 epoch 结束后生成图片 - display.clear_output(wait=True) - generate_and_save_images(generator, - epochs, - seed) -``` - -**生成与保存图片** - -```py -def generate_and_save_images(model, epoch, test_input): - # 注意 training` 设定为 False - # 因此,所有层都在推理模式下运行(batchnorm)。 - predictions = model(test_input, training=False) - - fig = plt.figure(figsize=(4,4)) - - for i in range(predictions.shape[0]): - plt.subplot(4, 4, i+1) - plt.imshow(predictions[i, :, :, 0] * 127.5 + 127.5, cmap='gray') - plt.axis('off') - - plt.savefig('image_at_epoch_{:04d}.png'.format(epoch)) - plt.show() -``` - -## 训练模型 - -调用上面定义的 `train()` 方法来同时训练生成器和判别器。注意,训练 GANs 可能是棘手的。重要的是,生成器和判别器不能够互相压制对方(例如,他们以相似的学习率训练)。 - -在训练之初,生成的图片看起来像是随机噪声。随着训练过程的进行,生成的数字将越来越真实。在大概 50 个 epoch 之后,这些图片看起来像是 MNIST 数字。使用 Colab 中的默认设置可能需要大约 1 分钟每 epoch。 - -```py -%%time -train(train_dataset, EPOCHS) -``` - -![png](img/f3c5a66b35a03bd6a2bf9c3a65a39dfb.png) - -```py -CPU times: user 1min 52s, sys: 11.7 s, total: 2min 4s -Wall time: 3min 22s - -``` - -恢复最新的检查点。 - -```py -checkpoint.restore(tf.train.latest_checkpoint(checkpoint_dir)) -``` - -```py - - -``` - -## 创建 GIF - -```py -# 使用 epoch 数生成单张图片 -def display_image(epoch_no): - return PIL.Image.open('image_at_epoch_{:04d}.png'.format(epoch_no)) -``` - -```py -display_image(EPOCHS) -``` - -![png](img/c12f3797e75b6aa8bdc206f4b91344c1.png) - -使用训练过程中生成的图片通过 `imageio` 生成动态 gif - -```py -anim_file = 'dcgan.gif' - -with imageio.get_writer(anim_file, mode='I') as writer: - filenames = glob.glob('image*.png') - filenames = sorted(filenames) - last = -1 - for i,filename in enumerate(filenames): - frame = 2*(i**0.5) - if round(frame) > round(last): - last = frame - else: - continue - image = imageio.imread(filename) - writer.append_data(image) - image = imageio.imread(filename) - writer.append_data(image) - -import IPython -if IPython.version_info > (6,2,0,''): - display.Image(filename=anim_file) -``` - -如果您正在使用 Colab,您可以通过如下代码下载动画: - -```py -try: - from google.colab import files -except ImportError: - pass -else: - files.download(anim_file) -``` - -## 下一步 - -本教程展示了实现和训练 GAN 模型所需的全部必要代码。接下来,您可能想尝试其他数据集,例如大规模名人面部属性(CelebA)数据集 [在 Kaggle 上获取](https://www.kaggle.com/jessicali9530/celeba-dataset)。要了解更多关于 GANs 的信息,我们推荐参阅 [NIPS 2016 教程: 生成对抗网络](https://arxiv.org/abs/1701.00160)。 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/063.md b/Tensorflow/TensorFlow2.0/063.md deleted file mode 100644 index 57a5ef65..00000000 --- a/Tensorflow/TensorFlow2.0/063.md +++ /dev/null @@ -1,703 +0,0 @@ -# Pix2Pix - -> 原文:[https://tensorflow.google.cn/tutorials/generative/pix2pix](https://tensorflow.google.cn/tutorials/generative/pix2pix) - -This notebook demonstrates image to image translation using conditional GAN's, as described in [Image-to-Image Translation with Conditional Adversarial Networks](https://arxiv.org/abs/1611.07004). Using this technique we can colorize black and white photos, convert google maps to google earth, etc. Here, we convert building facades to real buildings. - -In example, we will use the [CMP Facade Database](http://cmp.felk.cvut.cz/%7Etylecr1/facade/), helpfully provided by the [Center for Machine Perception](http://cmp.felk.cvut.cz/) at the [Czech Technical University in Prague](https://www.cvut.cz/). To keep our example short, we will use a preprocessed [copy](https://people.eecs.berkeley.edu/%7Etinghuiz/projects/pix2pix/datasets/) of this dataset, created by the authors of the [paper](https://arxiv.org/abs/1611.07004) above. - -Each epoch takes around 15 seconds on a single V100 GPU. - -Below is the output generated after training the model for 200 epochs. - -![sample output_1](img/e297781397cdc97e304b45625f7ae423.png) ![sample output_2](img/7f05b53be9225270c3955654d7d465de.png) - -## Import TensorFlow and other libraries - -```py -import tensorflow as tf - -import os -import time - -from matplotlib import pyplot as plt -from IPython import display -``` - -```py -pip install -q -U tensorboard - -``` - -```py -WARNING: You are using pip version 20.2.2; however, version 20.2.3 is available. -You should consider upgrading via the '/tmpfs/src/tf_docs_env/bin/python -m pip install --upgrade pip' command. - -``` - -## Load the dataset - -You can download this dataset and similar datasets from [here](https://people.eecs.berkeley.edu/%7Etinghuiz/projects/pix2pix/datasets). As mentioned in the [paper](https://arxiv.org/abs/1611.07004) we apply random jittering and mirroring to the training dataset. - -* In random jittering, the image is resized to `286 x 286` and then randomly cropped to `256 x 256` -* In random mirroring, the image is randomly flipped horizontally i.e left to right. - -```py -_URL = 'https://people.eecs.berkeley.edu/~tinghuiz/projects/pix2pix/datasets/facades.tar.gz' - -path_to_zip = tf.keras.utils.get_file('facades.tar.gz', - origin=_URL, - extract=True) - -PATH = os.path.join(os.path.dirname(path_to_zip), 'facades/') -``` - -```py -Downloading data from https://people.eecs.berkeley.edu/~tinghuiz/projects/pix2pix/datasets/facades.tar.gz -30171136/30168306 [==============================] - 2s 0us/step - -``` - -```py -BUFFER_SIZE = 400 -BATCH_SIZE = 1 -IMG_WIDTH = 256 -IMG_HEIGHT = 256 -``` - -```py -def load(image_file): - image = tf.io.read_file(image_file) - image = tf.image.decode_jpeg(image) - - w = tf.shape(image)[1] - - w = w // 2 - real_image = image[:, :w, :] - input_image = image[:, w:, :] - - input_image = tf.cast(input_image, tf.float32) - real_image = tf.cast(real_image, tf.float32) - - return input_image, real_image -``` - -```py -inp, re = load(PATH+'train/100.jpg') -# casting to int for matplotlib to show the image -plt.figure() -plt.imshow(inp/255.0) -plt.figure() -plt.imshow(re/255.0) -``` - -```py - - -``` - -![png](img/52194b6e27c77c651d0f3c56066448f5.png) - -![png](img/ab876a0a7878b27ea0658f95d96f1ddb.png) - -```py -def resize(input_image, real_image, height, width): - input_image = tf.image.resize(input_image, [height, width], - method=tf.image.ResizeMethod.NEAREST_NEIGHBOR) - real_image = tf.image.resize(real_image, [height, width], - method=tf.image.ResizeMethod.NEAREST_NEIGHBOR) - - return input_image, real_image -``` - -```py -def random_crop(input_image, real_image): - stacked_image = tf.stack([input_image, real_image], axis=0) - cropped_image = tf.image.random_crop( - stacked_image, size=[2, IMG_HEIGHT, IMG_WIDTH, 3]) - - return cropped_image[0], cropped_image[1] -``` - -```py -# normalizing the images to [-1, 1] - -def normalize(input_image, real_image): - input_image = (input_image / 127.5) - 1 - real_image = (real_image / 127.5) - 1 - - return input_image, real_image -``` - -```py -@tf.function() -def random_jitter(input_image, real_image): - # resizing to 286 x 286 x 3 - input_image, real_image = resize(input_image, real_image, 286, 286) - - # randomly cropping to 256 x 256 x 3 - input_image, real_image = random_crop(input_image, real_image) - - if tf.random.uniform(()) > 0.5: - # random mirroring - input_image = tf.image.flip_left_right(input_image) - real_image = tf.image.flip_left_right(real_image) - - return input_image, real_image -``` - -As you can see in the images below that they are going through random jittering Random jittering as described in the paper is to - -1. Resize an image to bigger height and width -2. Randomly crop to the target size -3. Randomly flip the image horizontally - -```py -plt.figure(figsize=(6, 6)) -for i in range(4): - rj_inp, rj_re = random_jitter(inp, re) - plt.subplot(2, 2, i+1) - plt.imshow(rj_inp/255.0) - plt.axis('off') -plt.show() -``` - -![png](img/be737507a3c4409c7dc8aa33d2196e15.png) - -```py -def load_image_train(image_file): - input_image, real_image = load(image_file) - input_image, real_image = random_jitter(input_image, real_image) - input_image, real_image = normalize(input_image, real_image) - - return input_image, real_image -``` - -```py -def load_image_test(image_file): - input_image, real_image = load(image_file) - input_image, real_image = resize(input_image, real_image, - IMG_HEIGHT, IMG_WIDTH) - input_image, real_image = normalize(input_image, real_image) - - return input_image, real_image -``` - -## Input Pipeline - -```py -train_dataset = tf.data.Dataset.list_files(PATH+'train/*.jpg') -train_dataset = train_dataset.map(load_image_train, - num_parallel_calls=tf.data.experimental.AUTOTUNE) -train_dataset = train_dataset.shuffle(BUFFER_SIZE) -train_dataset = train_dataset.batch(BATCH_SIZE) -``` - -```py -test_dataset = tf.data.Dataset.list_files(PATH+'test/*.jpg') -test_dataset = test_dataset.map(load_image_test) -test_dataset = test_dataset.batch(BATCH_SIZE) -``` - -## Build the Generator - -* The architecture of generator is a modified U-Net. -* Each block in the encoder is (Conv -> Batchnorm -> Leaky ReLU) -* Each block in the decoder is (Transposed Conv -> Batchnorm -> Dropout(applied to the first 3 blocks) -> ReLU) -* There are skip connections between the encoder and decoder (as in U-Net). - -```py -OUTPUT_CHANNELS = 3 -``` - -```py -def downsample(filters, size, apply_batchnorm=True): - initializer = tf.random_normal_initializer(0., 0.02) - - result = tf.keras.Sequential() - result.add( - tf.keras.layers.Conv2D(filters, size, strides=2, padding='same', - kernel_initializer=initializer, use_bias=False)) - - if apply_batchnorm: - result.add(tf.keras.layers.BatchNormalization()) - - result.add(tf.keras.layers.LeakyReLU()) - - return result -``` - -```py -down_model = downsample(3, 4) -down_result = down_model(tf.expand_dims(inp, 0)) -print (down_result.shape) -``` - -```py -(1, 128, 128, 3) - -``` - -```py -def upsample(filters, size, apply_dropout=False): - initializer = tf.random_normal_initializer(0., 0.02) - - result = tf.keras.Sequential() - result.add( - tf.keras.layers.Conv2DTranspose(filters, size, strides=2, - padding='same', - kernel_initializer=initializer, - use_bias=False)) - - result.add(tf.keras.layers.BatchNormalization()) - - if apply_dropout: - result.add(tf.keras.layers.Dropout(0.5)) - - result.add(tf.keras.layers.ReLU()) - - return result -``` - -```py -up_model = upsample(3, 4) -up_result = up_model(down_result) -print (up_result.shape) -``` - -```py -(1, 256, 256, 3) - -``` - -```py -def Generator(): - inputs = tf.keras.layers.Input(shape=[256,256,3]) - - down_stack = [ - downsample(64, 4, apply_batchnorm=False), # (bs, 128, 128, 64) - downsample(128, 4), # (bs, 64, 64, 128) - downsample(256, 4), # (bs, 32, 32, 256) - downsample(512, 4), # (bs, 16, 16, 512) - downsample(512, 4), # (bs, 8, 8, 512) - downsample(512, 4), # (bs, 4, 4, 512) - downsample(512, 4), # (bs, 2, 2, 512) - downsample(512, 4), # (bs, 1, 1, 512) - ] - - up_stack = [ - upsample(512, 4, apply_dropout=True), # (bs, 2, 2, 1024) - upsample(512, 4, apply_dropout=True), # (bs, 4, 4, 1024) - upsample(512, 4, apply_dropout=True), # (bs, 8, 8, 1024) - upsample(512, 4), # (bs, 16, 16, 1024) - upsample(256, 4), # (bs, 32, 32, 512) - upsample(128, 4), # (bs, 64, 64, 256) - upsample(64, 4), # (bs, 128, 128, 128) - ] - - initializer = tf.random_normal_initializer(0., 0.02) - last = tf.keras.layers.Conv2DTranspose(OUTPUT_CHANNELS, 4, - strides=2, - padding='same', - kernel_initializer=initializer, - activation='tanh') # (bs, 256, 256, 3) - - x = inputs - - # Downsampling through the model - skips = [] - for down in down_stack: - x = down(x) - skips.append(x) - - skips = reversed(skips[:-1]) - - # Upsampling and establishing the skip connections - for up, skip in zip(up_stack, skips): - x = up(x) - x = tf.keras.layers.Concatenate()([x, skip]) - - x = last(x) - - return tf.keras.Model(inputs=inputs, outputs=x) -``` - -```py -generator = Generator() -tf.keras.utils.plot_model(generator, show_shapes=True, dpi=64) -``` - -![png](img/027fe3c7c1b2c8f4ba851311692e3d91.png) - -```py -gen_output = generator(inp[tf.newaxis,...], training=False) -plt.imshow(gen_output[0,...]) -``` - -```py -Clipping input data to the valid range for imshow with RGB data ([0..1] for floats or [0..255] for integers). - - - -``` - -![png](img/e4d27c794147e0649dec40c1e673fa3d.png) - -* **Generator loss** - * It is a sigmoid cross entropy loss of the generated images and an **array of ones**. - * The [paper](https://arxiv.org/abs/1611.07004) also includes L1 loss which is MAE (mean absolute error) between the generated image and the target image. - * This allows the generated image to become structurally similar to the target image. - * The formula to calculate the total generator loss = gan_loss + LAMBDA * l1_loss, where LAMBDA = 100\. This value was decided by the authors of the [paper](https://arxiv.org/abs/1611.07004). - -The training procedure for the generator is shown below: - -```py -LAMBDA = 100 -``` - -```py -def generator_loss(disc_generated_output, gen_output, target): - gan_loss = loss_object(tf.ones_like(disc_generated_output), disc_generated_output) - - # mean absolute error - l1_loss = tf.reduce_mean(tf.abs(target - gen_output)) - - total_gen_loss = gan_loss + (LAMBDA * l1_loss) - - return total_gen_loss, gan_loss, l1_loss -``` - -![Generator Update Image](img/b7fd03ac59129ba2515cf59b292f3296.png) - -## Build the Discriminator - -* The Discriminator is a PatchGAN. -* Each block in the discriminator is (Conv -> BatchNorm -> Leaky ReLU) -* The shape of the output after the last layer is (batch_size, 30, 30, 1) -* Each 30x30 patch of the output classifies a 70x70 portion of the input image (such an architecture is called a PatchGAN). -* Discriminator receives 2 inputs. - * Input image and the target image, which it should classify as real. - * Input image and the generated image (output of generator), which it should classify as fake. - * We concatenate these 2 inputs together in the code (`tf.concat([inp, tar], axis=-1)`) - -```py -def Discriminator(): - initializer = tf.random_normal_initializer(0., 0.02) - - inp = tf.keras.layers.Input(shape=[256, 256, 3], name='input_image') - tar = tf.keras.layers.Input(shape=[256, 256, 3], name='target_image') - - x = tf.keras.layers.concatenate([inp, tar]) # (bs, 256, 256, channels*2) - - down1 = downsample(64, 4, False)(x) # (bs, 128, 128, 64) - down2 = downsample(128, 4)(down1) # (bs, 64, 64, 128) - down3 = downsample(256, 4)(down2) # (bs, 32, 32, 256) - - zero_pad1 = tf.keras.layers.ZeroPadding2D()(down3) # (bs, 34, 34, 256) - conv = tf.keras.layers.Conv2D(512, 4, strides=1, - kernel_initializer=initializer, - use_bias=False)(zero_pad1) # (bs, 31, 31, 512) - - batchnorm1 = tf.keras.layers.BatchNormalization()(conv) - - leaky_relu = tf.keras.layers.LeakyReLU()(batchnorm1) - - zero_pad2 = tf.keras.layers.ZeroPadding2D()(leaky_relu) # (bs, 33, 33, 512) - - last = tf.keras.layers.Conv2D(1, 4, strides=1, - kernel_initializer=initializer)(zero_pad2) # (bs, 30, 30, 1) - - return tf.keras.Model(inputs=[inp, tar], outputs=last) -``` - -```py -discriminator = Discriminator() -tf.keras.utils.plot_model(discriminator, show_shapes=True, dpi=64) -``` - -![png](img/0425284f7bd595a686480abe82721a04.png) - -```py -disc_out = discriminator([inp[tf.newaxis,...], gen_output], training=False) -plt.imshow(disc_out[0,...,-1], vmin=-20, vmax=20, cmap='RdBu_r') -plt.colorbar() -``` - -```py - - -``` - -![png](img/644c999529792fb810f213e660e582b8.png) - -**Discriminator loss** - -* The discriminator loss function takes 2 inputs; **real images, generated images** -* real_loss is a sigmoid cross entropy loss of the **real images** and an **array of ones(since these are the real images)** -* generated_loss is a sigmoid cross entropy loss of the **generated images** and an **array of zeros(since these are the fake images)** -* Then the total_loss is the sum of real_loss and the generated_loss - -```py -loss_object = tf.keras.losses.BinaryCrossentropy(from_logits=True) -``` - -```py -def discriminator_loss(disc_real_output, disc_generated_output): - real_loss = loss_object(tf.ones_like(disc_real_output), disc_real_output) - - generated_loss = loss_object(tf.zeros_like(disc_generated_output), disc_generated_output) - - total_disc_loss = real_loss + generated_loss - - return total_disc_loss -``` - -The training procedure for the discriminator is shown below. - -To learn more about the architecture and the hyperparameters you can refer the [paper](https://arxiv.org/abs/1611.07004). - -![Discriminator Update Image](img/a49dab0e9e9ab0a58b2928fb2760dab6.png) - -## Define the Optimizers and Checkpoint-saver - -```py -generator_optimizer = tf.keras.optimizers.Adam(2e-4, beta_1=0.5) -discriminator_optimizer = tf.keras.optimizers.Adam(2e-4, beta_1=0.5) -``` - -```py -checkpoint_dir = './training_checkpoints' -checkpoint_prefix = os.path.join(checkpoint_dir, "ckpt") -checkpoint = tf.train.Checkpoint(generator_optimizer=generator_optimizer, - discriminator_optimizer=discriminator_optimizer, - generator=generator, - discriminator=discriminator) -``` - -## Generate Images - -Write a function to plot some images during training. - -* We pass images from the test dataset to the generator. -* The generator will then translate the input image into the output. -* Last step is to plot the predictions and **voila!** - -**Note:** The `training=True` is intentional here since we want the batch statistics while running the model on the test dataset. If we use training=False, we will get the accumulated statistics learned from the training dataset (which we don't want) - -```py -def generate_images(model, test_input, tar): - prediction = model(test_input, training=True) - plt.figure(figsize=(15,15)) - - display_list = [test_input[0], tar[0], prediction[0]] - title = ['Input Image', 'Ground Truth', 'Predicted Image'] - - for i in range(3): - plt.subplot(1, 3, i+1) - plt.title(title[i]) - # getting the pixel values between [0, 1] to plot it. - plt.imshow(display_list[i] * 0.5 + 0.5) - plt.axis('off') - plt.show() -``` - -```py -for example_input, example_target in test_dataset.take(1): - generate_images(generator, example_input, example_target) -``` - -![png](img/a2d79e6f20ade2372271c76afeaca800.png) - -## Training - -* For each example input generate an output. -* The discriminator receives the input_image and the generated image as the first input. The second input is the input_image and the target_image. -* Next, we calculate the generator and the discriminator loss. -* Then, we calculate the gradients of loss with respect to both the generator and the discriminator variables(inputs) and apply those to the optimizer. -* Then log the losses to TensorBoard. - -```py -EPOCHS = 150 -``` - -```py -import datetime -log_dir="logs/" - -summary_writer = tf.summary.create_file_writer( - log_dir + "fit/" + datetime.datetime.now().strftime("%Y%m%d-%H%M%S")) -``` - -```py -@tf.function -def train_step(input_image, target, epoch): - with tf.GradientTape() as gen_tape, tf.GradientTape() as disc_tape: - gen_output = generator(input_image, training=True) - - disc_real_output = discriminator([input_image, target], training=True) - disc_generated_output = discriminator([input_image, gen_output], training=True) - - gen_total_loss, gen_gan_loss, gen_l1_loss = generator_loss(disc_generated_output, gen_output, target) - disc_loss = discriminator_loss(disc_real_output, disc_generated_output) - - generator_gradients = gen_tape.gradient(gen_total_loss, - generator.trainable_variables) - discriminator_gradients = disc_tape.gradient(disc_loss, - discriminator.trainable_variables) - - generator_optimizer.apply_gradients(zip(generator_gradients, - generator.trainable_variables)) - discriminator_optimizer.apply_gradients(zip(discriminator_gradients, - discriminator.trainable_variables)) - - with summary_writer.as_default(): - tf.summary.scalar('gen_total_loss', gen_total_loss, step=epoch) - tf.summary.scalar('gen_gan_loss', gen_gan_loss, step=epoch) - tf.summary.scalar('gen_l1_loss', gen_l1_loss, step=epoch) - tf.summary.scalar('disc_loss', disc_loss, step=epoch) -``` - -The actual training loop: - -* Iterates over the number of epochs. -* On each epoch it clears the display, and runs `generate_images` to show it's progress. -* On each epoch it iterates over the training dataset, printing a '.' for each example. -* It saves a checkpoint every 20 epochs. - -```py -def fit(train_ds, epochs, test_ds): - for epoch in range(epochs): - start = time.time() - - display.clear_output(wait=True) - - for example_input, example_target in test_ds.take(1): - generate_images(generator, example_input, example_target) - print("Epoch: ", epoch) - - # Train - for n, (input_image, target) in train_ds.enumerate(): - print('.', end='') - if (n+1) % 100 == 0: - print() - train_step(input_image, target, epoch) - print() - - # saving (checkpoint) the model every 20 epochs - if (epoch + 1) % 20 == 0: - checkpoint.save(file_prefix = checkpoint_prefix) - - print ('Time taken for epoch {} is {} sec\n'.format(epoch + 1, - time.time()-start)) - checkpoint.save(file_prefix = checkpoint_prefix) -``` - -This training loop saves logs you can easily view in TensorBoard to monitor the training progress. Working locally you would launch a separate tensorboard process. In a notebook, if you want to monitor with TensorBoard it's easiest to launch the viewer before starting the training. - -To launch the viewer paste the following into a code-cell: - -```py -%load_ext tensorboard -%tensorboard --logdir {log_dir} -``` - -Now run the training loop: - -```py -fit(train_dataset, EPOCHS, test_dataset) -``` - -![png](img/4c8ef6a2c8f0548a9f5bb182b8d3de01.png) - -```py -Epoch: 149 -.................................................................................................... -.................................................................................................... -.................................................................................................... -.................................................................................................... - -Time taken for epoch 150 is 16.14578342437744 sec - -``` - -If you want to share the TensorBoard results *publicly* you can upload the logs to [TensorBoard.dev](https://tensorboard.dev/) by copying the following into a code-cell. - -**Note:** This requires a Google account. - -```py -tensorboard dev upload --logdir {log_dir} - -``` - -**Caution:** This command does not terminate. It's designed to continuously upload the results of long-running experiments. Once your data is uploaded you need to stop it using the "interrupt execution" option in your notebook tool. - -You can view the [results of a previous run](https://tensorboard.dev/experiment/lZ0C6FONROaUMfjYkVyJqw) of this notebook on [TensorBoard.dev](https://tensorboard.dev/). - -TensorBoard.dev is a managed experience for hosting, tracking, and sharing ML experiments with everyone. - -It can also included inline using an ` - -Interpreting the logs from a GAN is more subtle than a simple classification or regression model. Things to look for:: - -* Check that neither model has "won". If either the `gen_gan_loss` or the `disc_loss` gets very low it's an indicator that this model is dominating the other, and you are not successfully training the combined model. -* The value `log(2) = 0.69` is a good reference point for these losses, as it indicates a perplexity of 2: That the discriminator is on average equally uncertain about the two options. -* For the `disc_loss` a value below `0.69` means the discriminator is doing better than random, on the combined set of real+generated images. -* For the `gen_gan_loss` a value below `0.69` means the generator i doing better than random at foolding the descriminator. -* As training progresses the `gen_l1_loss` should go down. - -## Restore the latest checkpoint and test - -```py -ls {checkpoint_dir} - -``` - -```py -checkpoint ckpt-5.data-00000-of-00001 -ckpt-1.data-00000-of-00001 ckpt-5.index -ckpt-1.index ckpt-6.data-00000-of-00001 -ckpt-2.data-00000-of-00001 ckpt-6.index -ckpt-2.index ckpt-7.data-00000-of-00001 -ckpt-3.data-00000-of-00001 ckpt-7.index -ckpt-3.index ckpt-8.data-00000-of-00001 -ckpt-4.data-00000-of-00001 ckpt-8.index -ckpt-4.index - -``` - -```py -# restoring the latest checkpoint in checkpoint_dir -checkpoint.restore(tf.train.latest_checkpoint(checkpoint_dir)) -``` - -```py - - -``` - -## Generate using test dataset - -```py -# Run the trained model on a few examples from the test dataset -for inp, tar in test_dataset.take(5): - generate_images(generator, inp, tar) -``` - -![png](img/21b3b7303748422d35a6212f940d399c.png) - -![png](img/711ebb2cc10e3bb88f77a6eb89fac014.png) - -![png](img/7138c243e1e2c00466be2191f6395597.png) - -![png](img/a83182d7f6b11d76dd2d428db01ade58.png) - -![png](img/5f0049e4eda5b1689106731ac4d622f6.png) \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/064.md b/Tensorflow/TensorFlow2.0/064.md deleted file mode 100644 index a0472e86..00000000 --- a/Tensorflow/TensorFlow2.0/064.md +++ /dev/null @@ -1,499 +0,0 @@ -# CycleGAN - -> 原文:[https://tensorflow.google.cn/tutorials/generative/cyclegan](https://tensorflow.google.cn/tutorials/generative/cyclegan) - - - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -本笔记演示了使用条件 GAN 进行的未配对图像到图像转换,如[使用循环一致的对抗网络进行未配对图像到图像转换](https://arxiv.org/abs/1703.10593) 中所述,也称之为 CycleGAN。论文提出了一种可以捕捉图像域特征并找出如何将这些特征转换为另一个图像域的方法,而无需任何成对的训练样本。 - -本笔记假定您熟悉 Pix2Pix,您可以在 [Pix2Pix 教程](https://tensorflow.google.cn/tutorials/generative/pix2pix)中了解有关它的信息。CycleGAN 的代码与其相似,主要区别在于额外的损失函数,以及非配对训练数据的使用。 - -CycleGAN 使用循环一致损失来使训练过程无需配对数据。换句话说,它可以从一个域转换到另一个域,而不需要在源域与目标域之间进行一对一映射。 - -这为完成许多有趣的任务开辟了可能性,例如照片增强、图片着色、风格迁移等。您所需要的只是源数据集和目标数据集(仅仅是图片目录) - -![输出图像 1](img/921588a88d035dfd280c98f420033345.png) ![输出图像 2](img/f89cb56c5d3c77f56118a42ca7fb3936.png) - -## 设定输入管线 - -安装 [tensorflow_examples](https://github.com/tensorflow/examples) 包,以导入生成器和判别器。 - -```py -pip install -q git+https://github.com/tensorflow/examples.git - -``` - -```py -WARNING: You are using pip version 20.2.2; however, version 20.2.3 is available. -You should consider upgrading via the '/tmpfs/src/tf_docs_env/bin/python -m pip install --upgrade pip' command. - -``` - -```py -import tensorflow as tf -``` - -```py -import tensorflow_datasets as tfds -from tensorflow_examples.models.pix2pix import pix2pix - -import os -import time -import matplotlib.pyplot as plt -from IPython.display import clear_output - -tfds.disable_progress_bar() -AUTOTUNE = tf.data.experimental.AUTOTUNE -``` - -## 输入管线 - -本教程训练一个模型,以将普通马图片转换为斑马图片。您可以在[此处](https://tensorflow.google.cn/datasets/datasets#cycle_gan)获取该数据集以及类似数据集。 - -如[论文](https://arxiv.org/abs/1703.10593)所述,将随机抖动和镜像应用到训练集。这是一些避免过拟合的图像增强技术。 - -这类似于 [pix2pix](https://tensorflow.google.cn/tutorials/generative/pix2pix#load_the_dataset) 中所做的工作。 - -* 在随机抖动中,图片大小调整为 `286 x 286`,随后被随机裁剪为 `256 x 256`。 -* 在随机镜像中,图片会从左到右随机翻转。 - -```py -dataset, metadata = tfds.load('cycle_gan/horse2zebra', - with_info=True, as_supervised=True) - -train_horses, train_zebras = dataset['trainA'], dataset['trainB'] -test_horses, test_zebras = dataset['testA'], dataset['testB'] -``` - -```py -Downloading and preparing dataset cycle_gan/horse2zebra/2.0.0 (download: 111.45 MiB, generated: Unknown size, total: 111.45 MiB) to /home/kbuilder/tensorflow_datasets/cycle_gan/horse2zebra/2.0.0... -Shuffling and writing examples to /home/kbuilder/tensorflow_datasets/cycle_gan/horse2zebra/2.0.0.incompleteNSW88L/cycle_gan-trainA.tfrecord -Shuffling and writing examples to /home/kbuilder/tensorflow_datasets/cycle_gan/horse2zebra/2.0.0.incompleteNSW88L/cycle_gan-trainB.tfrecord -Shuffling and writing examples to /home/kbuilder/tensorflow_datasets/cycle_gan/horse2zebra/2.0.0.incompleteNSW88L/cycle_gan-testA.tfrecord -Shuffling and writing examples to /home/kbuilder/tensorflow_datasets/cycle_gan/horse2zebra/2.0.0.incompleteNSW88L/cycle_gan-testB.tfrecord -Dataset cycle_gan downloaded and prepared to /home/kbuilder/tensorflow_datasets/cycle_gan/horse2zebra/2.0.0\. Subsequent calls will reuse this data. - -``` - -```py -BUFFER_SIZE = 1000 -BATCH_SIZE = 1 -IMG_WIDTH = 256 -IMG_HEIGHT = 256 -``` - -```py -def random_crop(image): - cropped_image = tf.image.random_crop( - image, size=[IMG_HEIGHT, IMG_WIDTH, 3]) - - return cropped_image -``` - -```py -# 将图像归一化到区间 [-1, 1] 内。 -def normalize(image): - image = tf.cast(image, tf.float32) - image = (image / 127.5) - 1 - return image -``` - -```py -def random_jitter(image): - # 调整大小为 286 x 286 x 3 - image = tf.image.resize(image, [286, 286], - method=tf.image.ResizeMethod.NEAREST_NEIGHBOR) - - # 随机裁剪到 256 x 256 x 3 - image = random_crop(image) - - # 随机镜像 - image = tf.image.random_flip_left_right(image) - - return image -``` - -```py -def preprocess_image_train(image, label): - image = random_jitter(image) - image = normalize(image) - return image -``` - -```py -def preprocess_image_test(image, label): - image = normalize(image) - return image -``` - -```py -train_horses = train_horses.map( - preprocess_image_train, num_parallel_calls=AUTOTUNE).cache().shuffle( - BUFFER_SIZE).batch(1) - -train_zebras = train_zebras.map( - preprocess_image_train, num_parallel_calls=AUTOTUNE).cache().shuffle( - BUFFER_SIZE).batch(1) - -test_horses = test_horses.map( - preprocess_image_test, num_parallel_calls=AUTOTUNE).cache().shuffle( - BUFFER_SIZE).batch(1) - -test_zebras = test_zebras.map( - preprocess_image_test, num_parallel_calls=AUTOTUNE).cache().shuffle( - BUFFER_SIZE).batch(1) -``` - -```py -sample_horse = next(iter(train_horses)) -sample_zebra = next(iter(train_zebras)) -``` - -```py -plt.subplot(121) -plt.title('Horse') -plt.imshow(sample_horse[0] * 0.5 + 0.5) - -plt.subplot(122) -plt.title('Horse with random jitter') -plt.imshow(random_jitter(sample_horse[0]) * 0.5 + 0.5) -``` - -```py - - -``` - -![png](img/6b843e3001e6a49928fc35d8af4c843d.png) - -```py -plt.subplot(121) -plt.title('Zebra') -plt.imshow(sample_zebra[0] * 0.5 + 0.5) - -plt.subplot(122) -plt.title('Zebra with random jitter') -plt.imshow(random_jitter(sample_zebra[0]) * 0.5 + 0.5) -``` - -```py - - -``` - -![png](img/34e85547487e77a52b9e494a05fdc8f8.png) - -## 导入并重用 Pix2Pix 模型 - -通过安装的 [tensorflow_examples](https://github.com/tensorflow/examples) 包导入 [Pix2Pix](https://github.com/tensorflow/examples/blob/master/tensorflow_examples/models/pix2pix/pix2pix.py) 中的生成器和判别器。 - -本教程中使用模型体系结构与 [pix2pix](https://github.com/tensorflow/examples/blob/master/tensorflow_examples/models/pix2pix/pix2pix.py) 中所使用的非常相似。一些区别在于: - -* Cyclegan 使用 [instance normalization(实例归一化)](https://arxiv.org/abs/1607.08022)而不是 [batch normalization (批归一化)](https://arxiv.org/abs/1502.03167)。 -* [CycleGAN 论文](https://arxiv.org/abs/1703.10593)使用一种基于 `resnet` 的改进生成器。简单起见,本教程使用的是改进的 `unet` 生成器。 - -这里训练了两个生成器(G 和 F)以及两个判别器(X 和 Y)。 - -* 生成器 `G` 学习将图片 `X` 转换为 `Y`。 $(G: X -> Y)$ -* 生成器 `F` 学习将图片 `Y` 转换为 `X`。 $(F: Y -> X)$ -* 判别器 `D_X` 学习区分图片 `X` 与生成的图片 `X` (`F(Y)`)。 -* 判别器 `D_Y` 学习区分图片 `Y` 与生成的图片 `Y` (`G(X)`)。 - -![Cyclegan 模型](img/141e262e42c195dfe1174f7824ff4c3c.png) - -```py -OUTPUT_CHANNELS = 3 - -generator_g = pix2pix.unet_generator(OUTPUT_CHANNELS, norm_type='instancenorm') -generator_f = pix2pix.unet_generator(OUTPUT_CHANNELS, norm_type='instancenorm') - -discriminator_x = pix2pix.discriminator(norm_type='instancenorm', target=False) -discriminator_y = pix2pix.discriminator(norm_type='instancenorm', target=False) -``` - -```py -to_zebra = generator_g(sample_horse) -to_horse = generator_f(sample_zebra) -plt.figure(figsize=(8, 8)) -contrast = 8 - -imgs = [sample_horse, to_zebra, sample_zebra, to_horse] -title = ['Horse', 'To Zebra', 'Zebra', 'To Horse'] - -for i in range(len(imgs)): - plt.subplot(2, 2, i+1) - plt.title(title[i]) - if i % 2 == 0: - plt.imshow(imgs[i][0] * 0.5 + 0.5) - else: - plt.imshow(imgs[i][0] * 0.5 * contrast + 0.5) -plt.show() -``` - -```py -WARNING:matplotlib.image:Clipping input data to the valid range for imshow with RGB data ([0..1] for floats or [0..255] for integers). -WARNING:matplotlib.image:Clipping input data to the valid range for imshow with RGB data ([0..1] for floats or [0..255] for integers). - -``` - -![png](img/e2143b6a00159c480e078bcbc7c8c72b.png) - -```py -plt.figure(figsize=(8, 8)) - -plt.subplot(121) -plt.title('Is a real zebra?') -plt.imshow(discriminator_y(sample_zebra)[0, ..., -1], cmap='RdBu_r') - -plt.subplot(122) -plt.title('Is a real horse?') -plt.imshow(discriminator_x(sample_horse)[0, ..., -1], cmap='RdBu_r') - -plt.show() -``` - -![png](img/6637dace2ef4faea4a327361aec7c4ae.png) - -## 损失函数 - -在 CycleGAN 中,没有可训练的成对数据,因此无法保证输入 `x` 和 目标 `y` 数据对在训练期间是有意义的。所以为了强制网络学习正确的映射,作者提出了循环一致损失。 - -判别器损失和生成器损失和 [pix2pix](https://google.tensorflow.cn/tutorials/generative/pix2pix#define_the_loss_functions_and_the_optimizer) 中所使用的类似。 - -```py -LAMBDA = 10 -``` - -```py -loss_obj = tf.keras.losses.BinaryCrossentropy(from_logits=True) -``` - -```py -def discriminator_loss(real, generated): - real_loss = loss_obj(tf.ones_like(real), real) - - generated_loss = loss_obj(tf.zeros_like(generated), generated) - - total_disc_loss = real_loss + generated_loss - - return total_disc_loss * 0.5 -``` - -```py -def generator_loss(generated): - return loss_obj(tf.ones_like(generated), generated) -``` - -循环一致意味着结果应接近原始输出。例如,将一句英文译为法文,随后再从法文翻译回英文,最终的结果句应与原始句输入相同。 - -在循环一致损失中, - -* 图片 $X$ 通过生成器 $G$ 传递,该生成器生成图片 $\hat{Y}$。 -* 生成的图片 $\hat{Y}$ 通过生成器 $F$ 传递,循环生成图片 $\hat{X}$。 -* 在 $X$ 和 $\hat{X}$ 之间计算平均绝对误差。 - -$$forward\ cycle\ consistency\ loss: X -> G(X) -> F(G(X)) \sim \hat{X}$$$$backward\ cycle\ consistency\ loss: Y -> F(Y) -> G(F(Y)) \sim \hat{Y}$$ - -![循环损失](img/4aa12ddc0a8f44acc45b9ed9dc9055bf.png) - -```py -def calc_cycle_loss(real_image, cycled_image): - loss1 = tf.reduce_mean(tf.abs(real_image - cycled_image)) - - return LAMBDA * loss1 -``` - -如上所示,生成器 $G$ 负责将图片 $X$ 转换为 $Y$。一致性损失表明,如果您将图片 $Y$ 馈送给生成器 $G$,它应当生成真实图片 $Y$ 或接近于 $Y$ 的图片。 - -$$Identity\ loss = |G(Y) - Y| + |F(X) - X|$$ - -```py -def identity_loss(real_image, same_image): - loss = tf.reduce_mean(tf.abs(real_image - same_image)) - return LAMBDA * 0.5 * loss -``` - -为所有生成器和判别器初始化优化器。 - -```py -generator_g_optimizer = tf.keras.optimizers.Adam(2e-4, beta_1=0.5) -generator_f_optimizer = tf.keras.optimizers.Adam(2e-4, beta_1=0.5) - -discriminator_x_optimizer = tf.keras.optimizers.Adam(2e-4, beta_1=0.5) -discriminator_y_optimizer = tf.keras.optimizers.Adam(2e-4, beta_1=0.5) -``` - -## Checkpoints - -```py -checkpoint_path = "./checkpoints/train" - -ckpt = tf.train.Checkpoint(generator_g=generator_g, - generator_f=generator_f, - discriminator_x=discriminator_x, - discriminator_y=discriminator_y, - generator_g_optimizer=generator_g_optimizer, - generator_f_optimizer=generator_f_optimizer, - discriminator_x_optimizer=discriminator_x_optimizer, - discriminator_y_optimizer=discriminator_y_optimizer) - -ckpt_manager = tf.train.CheckpointManager(ckpt, checkpoint_path, max_to_keep=5) - -# 如果存在检查点,恢复最新版本检查点 -if ckpt_manager.latest_checkpoint: - ckpt.restore(ckpt_manager.latest_checkpoint) - print ('Latest checkpoint restored!!') -``` - -## 训练 - -注意:本示例模型比论文中训练了更少的 epoch(本示例为 40 epoch,论文中为 200 epoch),以使训练时间相对于本教程是合理的。预测的准确率可能会低一些。 - -```py -EPOCHS = 40 -``` - -```py -def generate_images(model, test_input): - prediction = model(test_input) - - plt.figure(figsize=(12, 12)) - - display_list = [test_input[0], prediction[0]] - title = ['Input Image', 'Predicted Image'] - - for i in range(2): - plt.subplot(1, 2, i+1) - plt.title(title[i]) - # 获取范围在 [0, 1] 之间的像素值以绘制它。 - plt.imshow(display_list[i] * 0.5 + 0.5) - plt.axis('off') - plt.show() -``` - -尽管训练循环看起来很复杂,其实包含四个基本步骤: - -* 获取预测。 -* 计算损失值。 -* 使用反向传播计算损失值。 -* 将梯度应用于优化器。 - -```py -@tf.function -def train_step(real_x, real_y): - # persistent 设置为 Ture,因为 GradientTape 被多次应用于计算梯度。 - with tf.GradientTape(persistent=True) as tape: - # 生成器 G 转换 X -> Y。 - # 生成器 F 转换 Y -> X。 - - fake_y = generator_g(real_x, training=True) - cycled_x = generator_f(fake_y, training=True) - - fake_x = generator_f(real_y, training=True) - cycled_y = generator_g(fake_x, training=True) - - # same_x 和 same_y 用于一致性损失。 - same_x = generator_f(real_x, training=True) - same_y = generator_g(real_y, training=True) - - disc_real_x = discriminator_x(real_x, training=True) - disc_real_y = discriminator_y(real_y, training=True) - - disc_fake_x = discriminator_x(fake_x, training=True) - disc_fake_y = discriminator_y(fake_y, training=True) - - # 计算损失。 - gen_g_loss = generator_loss(disc_fake_y) - gen_f_loss = generator_loss(disc_fake_x) - - total_cycle_loss = calc_cycle_loss(real_x, cycled_x) + calc_cycle_loss(real_y, cycled_y) - - # 总生成器损失 = 对抗性损失 + 循环损失。 - total_gen_g_loss = gen_g_loss + total_cycle_loss + identity_loss(real_y, same_y) - total_gen_f_loss = gen_f_loss + total_cycle_loss + identity_loss(real_x, same_x) - - disc_x_loss = discriminator_loss(disc_real_x, disc_fake_x) - disc_y_loss = discriminator_loss(disc_real_y, disc_fake_y) - - # 计算生成器和判别器损失。 - generator_g_gradients = tape.gradient(total_gen_g_loss, - generator_g.trainable_variables) - generator_f_gradients = tape.gradient(total_gen_f_loss, - generator_f.trainable_variables) - - discriminator_x_gradients = tape.gradient(disc_x_loss, - discriminator_x.trainable_variables) - discriminator_y_gradients = tape.gradient(disc_y_loss, - discriminator_y.trainable_variables) - - # 将梯度应用于优化器。 - generator_g_optimizer.apply_gradients(zip(generator_g_gradients, - generator_g.trainable_variables)) - - generator_f_optimizer.apply_gradients(zip(generator_f_gradients, - generator_f.trainable_variables)) - - discriminator_x_optimizer.apply_gradients(zip(discriminator_x_gradients, - discriminator_x.trainable_variables)) - - discriminator_y_optimizer.apply_gradients(zip(discriminator_y_gradients, - discriminator_y.trainable_variables)) -``` - -```py -for epoch in range(EPOCHS): - start = time.time() - - n = 0 - for image_x, image_y in tf.data.Dataset.zip((train_horses, train_zebras)): - train_step(image_x, image_y) - if n % 10 == 0: - print ('.', end='') - n+=1 - - clear_output(wait=True) - # 使用一致的图像(sample_horse),以便模型的进度清晰可见。 - generate_images(generator_g, sample_horse) - - if (epoch + 1) % 5 == 0: - ckpt_save_path = ckpt_manager.save() - print ('Saving checkpoint for epoch {} at {}'.format(epoch+1, - ckpt_save_path)) - - print ('Time taken for epoch {} is {} sec\n'.format(epoch + 1, - time.time()-start)) -``` - -![png](img/c2a117375845a6a7d1c87b2c84de54e8.png) - -```py -Saving checkpoint for epoch 40 at ./checkpoints/train/ckpt-8 -Time taken for epoch 40 is 175.41231870651245 sec - -``` - -## 使用测试数据集进行生成 - -```py -# 在测试数据集上运行训练的模型。 -for inp in test_horses.take(5): - generate_images(generator_g, inp) -``` - -![png](img/d68f92600680dfc45d965045e843ec4d.png) - -![png](img/0ba1e7316ba7e228576bbcd85280c309.png) - -![png](img/33043d022bdb4912f00756593d5b4a7c.png) - -![png](img/032dc17ad0509afd4505858b1f0c7d19.png) - -![png](img/d653a0d6330958d36f31b35e1410ff6d.png) - -## 下一步 - -本教程展示了如何从 [Pix2Pix](https://tensorflow.google.cn/tutorials/generative/pix2pix) 教程实现的生成器和判别器开始实现 CycleGAN。 下一步,您可以尝试使用一个来源于 [TensorFlow 数据集](https://tensorflow.google.cn/datasets/datasets#cycle_gan)的不同的数据集。 - -您也可以训练更多的 epoch 以改进结果,或者可以实现[论文](https://arxiv.org/abs/1703.10593)中所使用的改进 ResNet 生成器来代替这里使用的 U-Net 生成器。 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/065.md b/Tensorflow/TensorFlow2.0/065.md deleted file mode 100644 index 0fd7c72c..00000000 --- a/Tensorflow/TensorFlow2.0/065.md +++ /dev/null @@ -1,186 +0,0 @@ -# Adversarial example using FGSM - -> 原文:[https://tensorflow.google.cn/tutorials/generative/adversarial_fgsm](https://tensorflow.google.cn/tutorials/generative/adversarial_fgsm) - - - -This tutorial creates an *adversarial example* using the Fast Gradient Signed Method (FGSM) attack as described in [Explaining and Harnessing Adversarial Examples](https://arxiv.org/abs/1412.6572) by Goodfellow *et al*. This was one of the first and most popular attacks to fool a neural network. - -## What is an adversarial example? - -Adversarial examples are specialised inputs created with the purpose of confusing a neural network, resulting in the misclassification of a given input. These notorious inputs are indistinguishable to the human eye, but cause the network to fail to identify the contents of the image. There are several types of such attacks, however, here the focus is on the fast gradient sign method attack, which is a *white box* attack whose goal is to ensure misclassification. A white box attack is where the attacker has complete access to the model being attacked. One of the most famous examples of an adversarial image shown below is taken from the aforementioned paper. - -![Adversarial Example](img/ac69959225a206f2b2c5ed2e33218511.png) - -Here, starting with the image of a panda, the attacker adds small perturbations (distortions) to the original image, which results in the model labelling this image as a gibbon, with high confidence. The process of adding these perturbations is explained below. - -## Fast gradient sign method - -The fast gradient sign method works by using the gradients of the neural network to create an adversarial example. For an input image, the method uses the gradients of the loss with respect to the input image to create a new image that maximises the loss. This new image is called the adversarial image. This can be summarised using the following expression: - -$$adv\_x = x + \epsilon*\text{sign}(\nabla_xJ(\theta, x, y))$$ - -where - -* adv_x : Adversarial image. -* x : Original input image. -* y : Original input label. -* $\epsilon$ : Multiplier to ensure the perturbations are small. -* $\theta$ : Model parameters. -* $J$ : Loss. - -An intriguing property here, is the fact that the gradients are taken with respect to the input image. This is done because the objective is to create an image that maximises the loss. A method to accomplish this is to find how much each pixel in the image contributes to the loss value, and add a perturbation accordingly. This works pretty fast because it is easy to find how each input pixel contributes to the loss by using the chain rule and finding the required gradients. Hence, the gradients are taken with respect to the image. In addition, since the model is no longer being trained (thus the gradient is not taken with respect to the trainable variables, i.e., the model parameters), and so the model parameters remain constant. The only goal is to fool an already trained model. - -So let's try and fool a pretrained model. In this tutorial, the model is [MobileNetV2](https://tensorflow.google.cn/versions/r2.0/api_docs/python/tf/keras/applications/MobileNetV2) model, pretrained on [ImageNet](http://www.image-net.org/). - -```py -import tensorflow as tf -import matplotlib as mpl -import matplotlib.pyplot as plt - -mpl.rcParams['figure.figsize'] = (8, 8) -mpl.rcParams['axes.grid'] = False -``` - -Let's load the pretrained MobileNetV2 model and the ImageNet class names. - -```py -pretrained_model = tf.keras.applications.MobileNetV2(include_top=True, - weights='imagenet') -pretrained_model.trainable = False - -# ImageNet labels -decode_predictions = tf.keras.applications.mobilenet_v2.decode_predictions -``` - -```py -Downloading data from https://storage.googleapis.com/tensorflow/keras-applications/mobilenet_v2/mobilenet_v2_weights_tf_dim_ordering_tf_kernels_1.0_224.h5 -14540800/14536120 [==============================] - 0s 0us/step - -``` - -```py -# Helper function to preprocess the image so that it can be inputted in MobileNetV2 -def preprocess(image): - image = tf.cast(image, tf.float32) - image = tf.image.resize(image, (224, 224)) - image = tf.keras.applications.mobilenet_v2.preprocess_input(image) - image = image[None, ...] - return image - -# Helper function to extract labels from probability vector -def get_imagenet_label(probs): - return decode_predictions(probs, top=1)[0][0] -``` - -## Original image - -Let's use a sample image of a [Labrador Retriever](https://commons.wikimedia.org/wiki/File:YellowLabradorLooking_new.jpg) by Mirko [CC-BY-SA 3.0](https://creativecommons.org/licenses/by-sa/3.0/) from Wikimedia Common and create adversarial examples from it. The first step is to preprocess it so that it can be fed as an input to the MobileNetV2 model. - -```py -image_path = tf.keras.utils.get_file('YellowLabradorLooking_new.jpg', 'https://storage.googleapis.com/download.tensorflow.org/example_images/YellowLabradorLooking_new.jpg') -image_raw = tf.io.read_file(image_path) -image = tf.image.decode_image(image_raw) - -image = preprocess(image) -image_probs = pretrained_model.predict(image) -``` - -```py -Downloading data from https://storage.googleapis.com/download.tensorflow.org/example_images/YellowLabradorLooking_new.jpg -90112/83281 [================================] - 0s 0us/step - -``` - -Let's have a look at the image. - -```py -plt.figure() -plt.imshow(image[0]*0.5+0.5) # To change [-1, 1] to [0,1] -_, image_class, class_confidence = get_imagenet_label(image_probs) -plt.title('{} : {:.2f}% Confidence'.format(image_class, class_confidence*100)) -plt.show() -``` - -```py -Downloading data from https://storage.googleapis.com/download.tensorflow.org/data/imagenet_class_index.json -40960/35363 [==================================] - 0s 0us/step - -``` - -![png](img/1c498df577bb9dd0638c25332e7b68a1.png) - -## Create the adversarial image - -### Implementing fast gradient sign method - -The first step is to create perturbations which will be used to distort the original image resulting in an adversarial image. As mentioned, for this task, the gradients are taken with respect to the image. - -```py -loss_object = tf.keras.losses.CategoricalCrossentropy() - -def create_adversarial_pattern(input_image, input_label): - with tf.GradientTape() as tape: - tape.watch(input_image) - prediction = pretrained_model(input_image) - loss = loss_object(input_label, prediction) - - # Get the gradients of the loss w.r.t to the input image. - gradient = tape.gradient(loss, input_image) - # Get the sign of the gradients to create the perturbation - signed_grad = tf.sign(gradient) - return signed_grad -``` - -The resulting perturbations can also be visualised. - -```py -# Get the input label of the image. -labrador_retriever_index = 208 -label = tf.one_hot(labrador_retriever_index, image_probs.shape[-1]) -label = tf.reshape(label, (1, image_probs.shape[-1])) - -perturbations = create_adversarial_pattern(image, label) -plt.imshow(perturbations[0]*0.5+0.5); # To change [-1, 1] to [0,1] -``` - -![png](img/e3ffe6a29488821b01dd98cba6690e5f.png) - -Let's try this out for different values of epsilon and observe the resultant image. You'll notice that as the value of epsilon is increased, it becomes easier to fool the network. However, this comes as a trade-off which results in the perturbations becoming more identifiable. - -```py -def display_images(image, description): - _, label, confidence = get_imagenet_label(pretrained_model.predict(image)) - plt.figure() - plt.imshow(image[0]*0.5+0.5) - plt.title('{} \n {} : {:.2f}% Confidence'.format(description, - label, confidence*100)) - plt.show() -``` - -```py -epsilons = [0, 0.01, 0.1, 0.15] -descriptions = [('Epsilon = {:0.3f}'.format(eps) if eps else 'Input') - for eps in epsilons] - -for i, eps in enumerate(epsilons): - adv_x = image + eps*perturbations - adv_x = tf.clip_by_value(adv_x, -1, 1) - display_images(adv_x, descriptions[i]) -``` - -![png](img/8aa1d48ada55b367535dbe964ad2cd79.png) - -![png](img/4bebff99ef427fe52c09346e6f6b1971.png) - -![png](img/7fb60d07e3fa3bd88b02197b1f12223f.png) - -![png](img/66503afc507478f400022c625de3c878.png) - -## Next steps - -Now that you know about adversarial attacks, try this out on different datasets and different architectures. You may also create and train your own model, and then attempt to fool it using the same method. You can also try and see how the confidence in predictions vary as you change epsilon. - -Though powerful, the attack shown in this tutorial was just the start of research into adversarial attacks, and there have been multiple papers creating more powerful attacks since then. In addition to adversarial attacks, research has also led to the creation of defenses, which aims at creating robust machine learning models. You may review this [survey paper](https://arxiv.org/abs/1810.00069) for a comprehensive list of adversarial attacks and defences. - -For many more implementations of adversarial attacks and defenses, you may want to see the adversarial example library [CleverHans](https://github.com/tensorflow/cleverhans). \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/066.md b/Tensorflow/TensorFlow2.0/066.md deleted file mode 100644 index 0aa4c4bf..00000000 --- a/Tensorflow/TensorFlow2.0/066.md +++ /dev/null @@ -1,632 +0,0 @@ -# Intro to Autoencoders - -> 原文:[https://tensorflow.google.cn/tutorials/generative/autoencoder](https://tensorflow.google.cn/tutorials/generative/autoencoder) - -This tutorial introduces autoencoders with three examples: the basics, image denoising, and anomaly detection. - -An autoencoder is a special type of neural network that is trained to copy its input to its output. For example, given an image of a handwritten digit, an autoencoder first encodes the image into a lower dimensional latent representation, then decodes the latent representation back to an image. An autoencoder learns to compress the data while minimizing the reconstruction error. - -To learn more about autoencoders, please consider reading chapter 14 from [Deep Learning](https://www.deeplearningbook.org/) by Ian Goodfellow, Yoshua Bengio, and Aaron Courville. - -## Import TensorFlow and other libraries - -```py -import matplotlib.pyplot as plt -import numpy as np -import pandas as pd -import tensorflow as tf - -from sklearn.metrics import accuracy_score, precision_score, recall_score -from sklearn.model_selection import train_test_split -from tensorflow.keras import layers, losses -from tensorflow.keras.datasets import fashion_mnist -from tensorflow.keras.models import Model -``` - -## Load the dataset - -To start, you will train the basic autoencoder using the Fashon MNIST dataset. Each image in this dataset is 28x28 pixels. - -```py -(x_train, _), (x_test, _) = fashion_mnist.load_data() - -x_train = x_train.astype('float32') / 255. -x_test = x_test.astype('float32') / 255. - -print (x_train.shape) -print (x_test.shape) -``` - -```py -Downloading data from https://storage.googleapis.com/tensorflow/tf-keras-datasets/train-labels-idx1-ubyte.gz -32768/29515 [=================================] - 0s 0us/step -Downloading data from https://storage.googleapis.com/tensorflow/tf-keras-datasets/train-images-idx3-ubyte.gz -26427392/26421880 [==============================] - 0s 0us/step -Downloading data from https://storage.googleapis.com/tensorflow/tf-keras-datasets/t10k-labels-idx1-ubyte.gz -8192/5148 [===============================================] - 0s 0us/step -Downloading data from https://storage.googleapis.com/tensorflow/tf-keras-datasets/t10k-images-idx3-ubyte.gz -4423680/4422102 [==============================] - 0s 0us/step -(60000, 28, 28) -(10000, 28, 28) - -``` - -## First example: Basic autoencoder - -![Basic autoencoder results](img/ee409d59cd41f3de0f02655abfc4d0c0.png) - -Define an autoencoder with two Dense layers: an `encoder`, which compresses the images into a 64 dimensional latent vector, and a `decoder`, that reconstructs the original image from the latent space. - -To define your model, use the [Keras Model Subclassing API](https://tensorflow.google.cn/guide/keras/custom_layers_and_models). - -```py -latent_dim = 64 - -class Autoencoder(Model): - def __init__(self, latent_dim): - super(Autoencoder, self).__init__() - self.latent_dim = latent_dim - self.encoder = tf.keras.Sequential([ - layers.Flatten(), - layers.Dense(latent_dim, activation='relu'), - ]) - self.decoder = tf.keras.Sequential([ - layers.Dense(784, activation='sigmoid'), - layers.Reshape((28, 28)) - ]) - - def call(self, x): - encoded = self.encoder(x) - decoded = self.decoder(encoded) - return decoded - -autoencoder = Autoencoder(latent_dim) -``` - -```py -autoencoder.compile(optimizer='adam', loss=losses.MeanSquaredError()) -``` - -Train the model using `x_train` as both the input and the target. The `encoder` will learn to compress the dataset from 784 dimensions to the latent space, and the `decoder` will learn to reconstruct the original images. . - -```py -autoencoder.fit(x_train, x_train, - epochs=10, - shuffle=True, - validation_data=(x_test, x_test)) -``` - -```py -Epoch 1/10 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.0239 - val_loss: 0.0132 -Epoch 2/10 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.0116 - val_loss: 0.0105 -Epoch 3/10 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.0100 - val_loss: 0.0097 -Epoch 4/10 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.0095 - val_loss: 0.0094 -Epoch 5/10 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.0092 - val_loss: 0.0092 -Epoch 6/10 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.0090 - val_loss: 0.0091 -Epoch 7/10 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.0090 - val_loss: 0.0090 -Epoch 8/10 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.0089 - val_loss: 0.0090 -Epoch 9/10 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.0088 - val_loss: 0.0090 -Epoch 10/10 -1875/1875 [==============================] - 3s 2ms/step - loss: 0.0088 - val_loss: 0.0088 - - - -``` - -Now that the model is trained, let's test it by encoding and decoding images from the test set. - -```py -encoded_imgs = autoencoder.encoder(x_test).numpy() -decoded_imgs = autoencoder.decoder(encoded_imgs).numpy() -``` - -```py -n = 10 -plt.figure(figsize=(20, 4)) -for i in range(n): - # display original - ax = plt.subplot(2, n, i + 1) - plt.imshow(x_test[i]) - plt.title("original") - plt.gray() - ax.get_xaxis().set_visible(False) - ax.get_yaxis().set_visible(False) - - # display reconstruction - ax = plt.subplot(2, n, i + 1 + n) - plt.imshow(decoded_imgs[i]) - plt.title("reconstructed") - plt.gray() - ax.get_xaxis().set_visible(False) - ax.get_yaxis().set_visible(False) -plt.show() -``` - -![png](img/c239b9ad6cf9b5f72e3d6d37fd17b9d1.png) - -## Second example: Image denoising - -![Image denoising results](img/9461d6f88eb7d390eea25f1f034101b5.png) - -An autoencoder can also be trained to remove noise from images. In the following section, you will create a noisy version of the Fashion MNIST dataset by applying random noise to each image. You will then train an autoencoder using the noisy image as input, and the original image as the target. - -Let's reimport the dataset to omit the modifications made earlier. - -```py -(x_train, _), (x_test, _) = fashion_mnist.load_data() -``` - -```py -x_train = x_train.astype('float32') / 255. -x_test = x_test.astype('float32') / 255. - -x_train = x_train[..., tf.newaxis] -x_test = x_test[..., tf.newaxis] - -print(x_train.shape) -``` - -```py -(60000, 28, 28, 1) - -``` - -Adding random noise to the images - -```py -noise_factor = 0.2 -x_train_noisy = x_train + noise_factor * tf.random.normal(shape=x_train.shape) -x_test_noisy = x_test + noise_factor * tf.random.normal(shape=x_test.shape) - -x_train_noisy = tf.clip_by_value(x_train_noisy, clip_value_min=0., clip_value_max=1.) -x_test_noisy = tf.clip_by_value(x_test_noisy, clip_value_min=0., clip_value_max=1.) -``` - -Plot the noisy images. - -```py -n = 10 -plt.figure(figsize=(20, 2)) -for i in range(n): - ax = plt.subplot(1, n, i + 1) - plt.title("original + noise") - plt.imshow(tf.squeeze(x_test_noisy[i])) - plt.gray() -plt.show() -``` - -![png](img/6c3e8444c64a773d92f67fd4f07992b7.png) - -### Define a convolutional autoencoder - -In this example, you will train a convolutional autoencoder using [Conv2D](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Conv2D) layers in the `encoder`, and [Conv2DTranspose](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/Conv2DTranspose) layers in the `decoder`. - -```py -class Denoise(Model): - def __init__(self): - super(Denoise, self).__init__() - self.encoder = tf.keras.Sequential([ - layers.Input(shape=(28, 28, 1)), - layers.Conv2D(16, (3,3), activation='relu', padding='same', strides=2), - layers.Conv2D(8, (3,3), activation='relu', padding='same', strides=2)]) - - self.decoder = tf.keras.Sequential([ - layers.Conv2DTranspose(8, kernel_size=3, strides=2, activation='relu', padding='same'), - layers.Conv2DTranspose(16, kernel_size=3, strides=2, activation='relu', padding='same'), - layers.Conv2D(1, kernel_size=(3,3), activation='sigmoid', padding='same')]) - - def call(self, x): - encoded = self.encoder(x) - decoded = self.decoder(encoded) - return decoded - -autoencoder = Denoise() -``` - -```py -autoencoder.compile(optimizer='adam', loss=losses.MeanSquaredError()) -``` - -```py -autoencoder.fit(x_train_noisy, x_train, - epochs=10, - shuffle=True, - validation_data=(x_test_noisy, x_test)) -``` - -```py -Epoch 1/10 -1875/1875 [==============================] - 26s 14ms/step - loss: 0.0182 - val_loss: 0.0112 -Epoch 2/10 -1875/1875 [==============================] - 25s 14ms/step - loss: 0.0100 - val_loss: 0.0093 -Epoch 3/10 -1875/1875 [==============================] - 25s 13ms/step - loss: 0.0089 - val_loss: 0.0087 -Epoch 4/10 -1875/1875 [==============================] - 26s 14ms/step - loss: 0.0085 - val_loss: 0.0084 -Epoch 5/10 -1875/1875 [==============================] - 25s 14ms/step - loss: 0.0083 - val_loss: 0.0083 -Epoch 6/10 -1875/1875 [==============================] - 26s 14ms/step - loss: 0.0082 - val_loss: 0.0082 -Epoch 7/10 -1875/1875 [==============================] - 25s 13ms/step - loss: 0.0081 - val_loss: 0.0081 -Epoch 8/10 -1875/1875 [==============================] - 25s 13ms/step - loss: 0.0081 - val_loss: 0.0080 -Epoch 9/10 -1875/1875 [==============================] - 25s 13ms/step - loss: 0.0080 - val_loss: 0.0080 -Epoch 10/10 -1875/1875 [==============================] - 25s 14ms/step - loss: 0.0079 - val_loss: 0.0080 - - - -``` - -Let's take a look at a summary of the encoder. Notice how the images are downsampled from 28x28 to 7x7. - -```py -autoencoder.encoder.summary() -``` - -```py -Model: "sequential_2" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -conv2d (Conv2D) (None, 14, 14, 16) 160 -_________________________________________________________________ -conv2d_1 (Conv2D) (None, 7, 7, 8) 1160 -================================================================= -Total params: 1,320 -Trainable params: 1,320 -Non-trainable params: 0 -_________________________________________________________________ - -``` - -The decoder upsamples the images back from 7x7 to 28x28. - -```py -autoencoder.decoder.summary() -``` - -```py -Model: "sequential_3" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -conv2d_transpose (Conv2DTran (None, 14, 14, 8) 584 -_________________________________________________________________ -conv2d_transpose_1 (Conv2DTr (None, 28, 28, 16) 1168 -_________________________________________________________________ -conv2d_2 (Conv2D) (None, 28, 28, 1) 145 -================================================================= -Total params: 1,897 -Trainable params: 1,897 -Non-trainable params: 0 -_________________________________________________________________ - -``` - -Plotting both the noisy images and the denoised images produced by the autoencoder. - -```py -encoded_imgs = autoencoder.encoder(x_test).numpy() -decoded_imgs = autoencoder.decoder(encoded_imgs).numpy() -``` - -```py -n = 10 -plt.figure(figsize=(20, 4)) -for i in range(n): - - # display original + noise - ax = plt.subplot(2, n, i + 1) - plt.title("original + noise") - plt.imshow(tf.squeeze(x_test_noisy[i])) - plt.gray() - ax.get_xaxis().set_visible(False) - ax.get_yaxis().set_visible(False) - - # display reconstruction - bx = plt.subplot(2, n, i + n + 1) - plt.title("reconstructed") - plt.imshow(tf.squeeze(decoded_imgs[i])) - plt.gray() - bx.get_xaxis().set_visible(False) - bx.get_yaxis().set_visible(False) -plt.show() -``` - -![png](img/d6d4178e447bc9f8c984345c73202b01.png) - -## Third example: Anomaly detection - -## Overview - -In this example, you will train an autoencoder to detect anomalies on the [ECG5000 dataset](http://www.timeseriesclassification.com/description.php?Dataset=ECG5000). This dataset contains 5,000 [Electrocardiograms](https://en.wikipedia.org/wiki/Electrocardiography), each with 140 data points. You will use a simplified version of the dataset, where each example has been labeled either `0` (corresponding to an abnormal rhythm), or `1` (corresponding to a normal rhythm). You are interested in identifying the abnormal rhythms. - -**Note:** This is a labeled dataset, so you could phrase this as a supervised learning problem. The goal of this example is to illustrate anomaly detection concepts you can apply to larger datasets, where you do not have labels available (for example, if you had many thousands of normal rhythms, and only a small number of abnormal rhythms). - -How will you detect anomalies using an autoencoder? Recall that an autoencoder is trained to minimize reconstruction error. You will train an autoencoder on the normal rhythms only, then use it to reconstruct all the data. Our hypothesis is that the abnormal rhythms will have higher reconstruction error. You will then classify a rhythm as an anomaly if the reconstruction error surpasses a fixed threshold. - -### Load ECG data - -The dataset you will use is based on one from [timeseriesclassification.com](http://www.timeseriesclassification.com/description.php?Dataset=ECG5000). - -```py -# Download the dataset -dataframe = pd.read_csv('http://storage.googleapis.com/download.tensorflow.org/data/ecg.csv', header=None) -raw_data = dataframe.values -dataframe.head() -``` - - - -```py -# The last element contains the labels -labels = raw_data[:, -1] - -# The other data points are the electrocadriogram data -data = raw_data[:, 0:-1] - -train_data, test_data, train_labels, test_labels = train_test_split( - data, labels, test_size=0.2, random_state=21 -) -``` - -Normalize the data to `[0,1]`. - -```py -min_val = tf.reduce_min(train_data) -max_val = tf.reduce_max(train_data) - -train_data = (train_data - min_val) / (max_val - min_val) -test_data = (test_data - min_val) / (max_val - min_val) - -train_data = tf.cast(train_data, tf.float32) -test_data = tf.cast(test_data, tf.float32) -``` - -You will train the autoencoder using only the normal rhythms, which are labeled in this dataset as `1`. Separate the normal rhythms from the abnormal rhythms. - -```py -train_labels = train_labels.astype(bool) -test_labels = test_labels.astype(bool) - -normal_train_data = train_data[train_labels] -normal_test_data = test_data[test_labels] - -anomalous_train_data = train_data[~train_labels] -anomalous_test_data = test_data[~test_labels] -``` - -Plot a normal ECG. - -```py -plt.grid() -plt.plot(np.arange(140), normal_train_data[0]) -plt.title("A Normal ECG") -plt.show() -``` - -![png](img/aef2c569f7fec52ed4d6e656dddb8da4.png) - -Plot an anomalous ECG. - -```py -plt.grid() -plt.plot(np.arange(140), anomalous_train_data[0]) -plt.title("An Anomalous ECG") -plt.show() -``` - -![png](img/7e31e526f055ddde2fd0d3a4e5d60aef.png) - -### Build the model - -```py -class AnomalyDetector(Model): - def __init__(self): - super(AnomalyDetector, self).__init__() - self.encoder = tf.keras.Sequential([ - layers.Dense(32, activation="relu"), - layers.Dense(16, activation="relu"), - layers.Dense(8, activation="relu")]) - - self.decoder = tf.keras.Sequential([ - layers.Dense(16, activation="relu"), - layers.Dense(32, activation="relu"), - layers.Dense(140, activation="sigmoid")]) - - def call(self, x): - encoded = self.encoder(x) - decoded = self.decoder(encoded) - return decoded - -autoencoder = AnomalyDetector() -``` - -```py -autoencoder.compile(optimizer='adam', loss='mae') -``` - -Notice that the autoencoder is trained using only the normal ECGs, but is evaluated using the full test set. - -```py -history = autoencoder.fit(normal_train_data, normal_train_data, - epochs=20, - batch_size=512, - validation_data=(test_data, test_data), - shuffle=True) -``` - -```py -Epoch 1/20 -5/5 [==============================] - 0s 20ms/step - loss: 0.0582 - val_loss: 0.0534 -Epoch 2/20 -5/5 [==============================] - 0s 5ms/step - loss: 0.0564 - val_loss: 0.0519 -Epoch 3/20 -5/5 [==============================] - 0s 5ms/step - loss: 0.0540 - val_loss: 0.0508 -Epoch 4/20 -5/5 [==============================] - 0s 5ms/step - loss: 0.0514 - val_loss: 0.0491 -Epoch 5/20 -5/5 [==============================] - 0s 5ms/step - loss: 0.0482 - val_loss: 0.0467 -Epoch 6/20 -5/5 [==============================] - 0s 5ms/step - loss: 0.0448 - val_loss: 0.0449 -Epoch 7/20 -5/5 [==============================] - 0s 5ms/step - loss: 0.0414 - val_loss: 0.0429 -Epoch 8/20 -5/5 [==============================] - 0s 5ms/step - loss: 0.0380 - val_loss: 0.0413 -Epoch 9/20 -5/5 [==============================] - 0s 5ms/step - loss: 0.0345 - val_loss: 0.0400 -Epoch 10/20 -5/5 [==============================] - 0s 5ms/step - loss: 0.0316 - val_loss: 0.0390 -Epoch 11/20 -5/5 [==============================] - 0s 5ms/step - loss: 0.0293 - val_loss: 0.0382 -Epoch 12/20 -5/5 [==============================] - 0s 5ms/step - loss: 0.0276 - val_loss: 0.0379 -Epoch 13/20 -5/5 [==============================] - 0s 5ms/step - loss: 0.0262 - val_loss: 0.0370 -Epoch 14/20 -5/5 [==============================] - 0s 5ms/step - loss: 0.0251 - val_loss: 0.0366 -Epoch 15/20 -5/5 [==============================] - 0s 5ms/step - loss: 0.0244 - val_loss: 0.0359 -Epoch 16/20 -5/5 [==============================] - 0s 5ms/step - loss: 0.0237 - val_loss: 0.0355 -Epoch 17/20 -5/5 [==============================] - 0s 5ms/step - loss: 0.0231 - val_loss: 0.0352 -Epoch 18/20 -5/5 [==============================] - 0s 5ms/step - loss: 0.0225 - val_loss: 0.0345 -Epoch 19/20 -5/5 [==============================] - 0s 5ms/step - loss: 0.0219 - val_loss: 0.0343 -Epoch 20/20 -5/5 [==============================] - 0s 5ms/step - loss: 0.0214 - val_loss: 0.0341 - -``` - -```py -plt.plot(history.history["loss"], label="Training Loss") -plt.plot(history.history["val_loss"], label="Validation Loss") -plt.legend() -``` - -```py - - -``` - -![png](img/062d680b7bfc538f75dbd6e3d7562502.png) - -You will soon classify an ECG as anomalous if the reconstruction error is greater than one standard deviation from the normal training examples. First, let's plot a normal ECG from the training set, the reconstruction after it's encoded and decoded by the autoencoder, and the reconstruction error. - -```py -encoded_imgs = autoencoder.encoder(normal_test_data).numpy() -decoded_imgs = autoencoder.decoder(encoded_imgs).numpy() - -plt.plot(normal_test_data[0],'b') -plt.plot(decoded_imgs[0],'r') -plt.fill_between(np.arange(140), decoded_imgs[0], normal_test_data[0], color='lightcoral' ) -plt.legend(labels=["Input", "Reconstruction", "Error"]) -plt.show() -``` - -![png](img/8f8b815630d4213a923f492eacc9d2d0.png) - -Create a similar plot, this time for an anomalous test example. - -```py -encoded_imgs = autoencoder.encoder(anomalous_test_data).numpy() -decoded_imgs = autoencoder.decoder(encoded_imgs).numpy() - -plt.plot(anomalous_test_data[0],'b') -plt.plot(decoded_imgs[0],'r') -plt.fill_between(np.arange(140), decoded_imgs[0], anomalous_test_data[0], color='lightcoral' ) -plt.legend(labels=["Input", "Reconstruction", "Error"]) -plt.show() -``` - -![png](img/65e3cc57565dea4503cb5f3f7dca3035.png) - -### Detect anomalies - -Detect anomalies by calculating whether the reconstruction loss is greater than a fixed threshold. In this tutorial, you will calculate the mean average error for normal examples from the training set, then classify future examples as anomalous if the reconstruction error is higher than one standard deviation from the training set. - -Plot the reconstruction error on normal ECGs from the training set - -```py -reconstructions = autoencoder.predict(normal_train_data) -train_loss = tf.keras.losses.mae(reconstructions, normal_train_data) - -plt.hist(train_loss, bins=50) -plt.xlabel("Train loss") -plt.ylabel("No of examples") -plt.show() -``` - -![png](img/17b66fa7e9565fdeabc4fe4752bad60d.png) - -Choose a threshold value that is one standard deviations above the mean. - -```py -threshold = np.mean(train_loss) + np.std(train_loss) -print("Threshold: ", threshold) -``` - -```py -Threshold: 0.033377893 - -``` - -**Note:** There are other strategies you could use to select a threshold value above which test examples should be classified as anomalous, the correct approach will depend on your dataset. You can learn more with the links at the end of this tutorial. - -If you examine the recontruction error for the anomalous examples in the test set, you'll notice most have greater reconstruction error than the threshold. By varing the threshold, you can adjust the [precision](https://developers.google.cn/machine-learning/glossary#precision) and [recall](https://developers.google.cn/machine-learning/glossary#recall) of your classifier. - -```py -reconstructions = autoencoder.predict(anomalous_test_data) -test_loss = tf.keras.losses.mae(reconstructions, anomalous_test_data) - -plt.hist(test_loss, bins=50) -plt.xlabel("Test loss") -plt.ylabel("No of examples") -plt.show() -``` - -![png](img/f9843723cb76f7e84a4d3e7435c3a2c0.png) - -Classify an ECG as an anomaly if the reconstruction error is greater than the threshold. - -```py -def predict(model, data, threshold): - reconstructions = model(data) - loss = tf.keras.losses.mae(reconstructions, data) - return tf.math.less(loss, threshold) - -def print_stats(predictions, labels): - print("Accuracy = {}".format(accuracy_score(labels, preds))) - print("Precision = {}".format(precision_score(labels, preds))) - print("Recall = {}".format(recall_score(labels, preds))) -``` - -```py -preds = predict(autoencoder, test_data, threshold) -print_stats(preds, test_labels) -``` - -```py -Accuracy = 0.944 -Precision = 0.9921875 -Recall = 0.9071428571428571 - -``` - -## Next steps - -To learn more about anomaly detection with autoencoders, check out this excellent [interactive example](https://anomagram.fastforwardlabs.com/#/) built with TensorFlow.js by Victor Dibia. For a real-world use case, you can learn how [Airbus Detects Anomalies in ISS Telemetry Data](https://blog.tensorflow.org/2020/04/how-airbus-detects-anomalies-iss-telemetry-data-tfx.html) using TensorFlow. To learn more about the basics, consider reading this [blog post](https://blog.keras.io/building-autoencoders-in-keras.html) by François Chollet. For more details, check out chapter 14 from [Deep Learning](https://www.deeplearningbook.org/) by Ian Goodfellow, Yoshua Bengio, and Aaron Courville. \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/067.md b/Tensorflow/TensorFlow2.0/067.md deleted file mode 100644 index 34dd3103..00000000 --- a/Tensorflow/TensorFlow2.0/067.md +++ /dev/null @@ -1,329 +0,0 @@ -# 卷积变分自编码器 - -> 原文:[https://tensorflow.google.cn/tutorials/generative/cvae](https://tensorflow.google.cn/tutorials/generative/cvae) - - - -**Note:** 我们的 TensorFlow 社区翻译了这些文档。因为社区翻译是尽力而为, 所以无法保证它们是最准确的,并且反映了最新的 [官方英文文档](https://tensorflow.google.cn/?hl=en)。如果您有改进此翻译的建议, 请提交 pull request 到 [tensorflow/docs](https://github.com/tensorflow/docs) GitHub 仓库。要志愿地撰写或者审核译文,请加入 [docs-zh-cn@tensorflow.org Google Group](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs-zh-cn)。 - -![训练过程中输出的演变](img/82444fa7539ed0a798d9a1de5aaf147b.png) - -本笔记演示了如何通过训练变分自编码器([1](https://arxiv.org/abs/1312.6114), [2](https://arxiv.org/abs/1401.4082))来生成手写数字图片。 - -```py -# 用于生成 gif -pip install -q imageio - -``` - -```py -WARNING: You are using pip version 20.2.2; however, version 20.2.3 is available. -You should consider upgrading via the '/tmpfs/src/tf_docs_env/bin/python -m pip install --upgrade pip' command. - -``` - -## 导入 Tensorflow 与其他库 - -```py -import tensorflow as tf - -import os -import time -import numpy as np -import glob -import matplotlib.pyplot as plt -import PIL -import imageio - -from IPython import display -``` - -## 加载 MNIST 数据集 - -每个 MNIST 图片最初都是包含 784 个整数的向量,每个整数取值都在 0-255 之间,表示像素的强度。我们在模型中使用伯努利分布对每个像素进行建模,并对数据集进行静态二值化。 - -```py -(train_images, _), (test_images, _) = tf.keras.datasets.mnist.load_data() -``` - -```py -train_images = train_images.reshape(train_images.shape[0], 28, 28, 1).astype('float32') -test_images = test_images.reshape(test_images.shape[0], 28, 28, 1).astype('float32') - -# 标准化图片到区间 [0., 1.] 内 -train_images /= 255. -test_images /= 255. - -# 二值化 -train_images[train_images >= .5] = 1. -train_images[train_images < .5] = 0. -test_images[test_images >= .5] = 1. -test_images[test_images < .5] = 0. -``` - -```py -TRAIN_BUF = 60000 -BATCH_SIZE = 100 - -TEST_BUF = 10000 -``` - -## 使用 *tf.data* 来将数据分批和打乱 - -```py -train_dataset = tf.data.Dataset.from_tensor_slices(train_images).shuffle(TRAIN_BUF).batch(BATCH_SIZE) -test_dataset = tf.data.Dataset.from_tensor_slices(test_images).shuffle(TEST_BUF).batch(BATCH_SIZE) -``` - -## 通过 *tf.keras.Sequential* 连接生成网络与推理网络 - -在我们的 VAE 示例中,我们将两个小型的 ConvNet 用于生成和推断网络。由于这些神经网络较小,我们使用 [`tf.keras.Sequential`](https://tensorflow.google.cn/api_docs/python/tf/keras/Sequential) 来简化代码。在下面的描述中,令 $x$ 和 $z$ 分别表示观测值和潜在变量 - -### 生成网络 - -这里定义了生成模型,该模型将潜在编码作为输入,并输出用于观测条件分布的参数,即 $p(x|z)$。另外,我们对潜在变量使用单位高斯先验 $p(z)$。 - -### 推理网络 - -这里定义了近似后验分布 $q(z|x)$,该后验分布以观测值作为输入,并输出用于潜在表示的条件分布的一组参数。在本示例中,我们仅将此分布建模为对角高斯模型。在这种情况下,推断网络将输出因式分解的高斯均值和对数方差参数(为了数值稳定性使用对数方差而不是直接使用方差)。 - -### 重参数化技巧 - -在优化过程中,我们可以从 $q(z|x)$ 中采样,方法是首先从单位高斯采样,然后乘以标准偏差并加平均值。这样可以确保梯度能够通过样本传递到推理网络参数。 - -### 网络架构 - -对于推理网络,我们使用两个卷积层,后接一个全连接层。在生成网络中,我们通过使用全连接层,后接三个卷积转置层(在某些情况下也称为反卷积层)来镜像词体系结构。请注意,在训练 VAE 时避免使用批归一化(batch normalization)是一种常见的做法,因为使用小批量处理会导致额外的随机性,从而加剧随机抽样的不稳定性。 - -```py -class CVAE(tf.keras.Model): - def __init__(self, latent_dim): - super(CVAE, self).__init__() - self.latent_dim = latent_dim - self.inference_net = tf.keras.Sequential( - [ - tf.keras.layers.InputLayer(input_shape=(28, 28, 1)), - tf.keras.layers.Conv2D( - filters=32, kernel_size=3, strides=(2, 2), activation='relu'), - tf.keras.layers.Conv2D( - filters=64, kernel_size=3, strides=(2, 2), activation='relu'), - tf.keras.layers.Flatten(), - # No activation - tf.keras.layers.Dense(latent_dim + latent_dim), - ] - ) - - self.generative_net = tf.keras.Sequential( - [ - tf.keras.layers.InputLayer(input_shape=(latent_dim,)), - tf.keras.layers.Dense(units=7*7*32, activation=tf.nn.relu), - tf.keras.layers.Reshape(target_shape=(7, 7, 32)), - tf.keras.layers.Conv2DTranspose( - filters=64, - kernel_size=3, - strides=(2, 2), - padding="SAME", - activation='relu'), - tf.keras.layers.Conv2DTranspose( - filters=32, - kernel_size=3, - strides=(2, 2), - padding="SAME", - activation='relu'), - # No activation - tf.keras.layers.Conv2DTranspose( - filters=1, kernel_size=3, strides=(1, 1), padding="SAME"), - ] - ) - - @tf.function - def sample(self, eps=None): - if eps is None: - eps = tf.random.normal(shape=(100, self.latent_dim)) - return self.decode(eps, apply_sigmoid=True) - - def encode(self, x): - mean, logvar = tf.split(self.inference_net(x), num_or_size_splits=2, axis=1) - return mean, logvar - - def reparameterize(self, mean, logvar): - eps = tf.random.normal(shape=mean.shape) - return eps * tf.exp(logvar * .5) + mean - - def decode(self, z, apply_sigmoid=False): - logits = self.generative_net(z) - if apply_sigmoid: - probs = tf.sigmoid(logits) - return probs - - return logits -``` - -## 定义损失函数和优化器 - -VAE 通过最大化边际对数似然的证据下界(ELBO)进行训练: - -$$\log p(x) \ge \text{ELBO} = \mathbb{E}_{q(z|x)}\left[\log \frac{p(x, z)}{q(z|x)}\right].$$ - -实际上,我们优化了此期望的单样本蒙卡特罗估计: - -$$\log p(x| z) + \log p(z) - \log q(z|x),$$ - -其中 $z$ 从 $q(z|x)$ 中采样。 - -**注意**:我们也可以分析性地计算 KL 项,但简单起见,这里我们将所有三个项合并到蒙卡特罗估计器中。 - -```py -optimizer = tf.keras.optimizers.Adam(1e-4) - -def log_normal_pdf(sample, mean, logvar, raxis=1): - log2pi = tf.math.log(2\. * np.pi) - return tf.reduce_sum( - -.5 * ((sample - mean) ** 2\. * tf.exp(-logvar) + logvar + log2pi), - axis=raxis) - -@tf.function -def compute_loss(model, x): - mean, logvar = model.encode(x) - z = model.reparameterize(mean, logvar) - x_logit = model.decode(z) - - cross_ent = tf.nn.sigmoid_cross_entropy_with_logits(logits=x_logit, labels=x) - logpx_z = -tf.reduce_sum(cross_ent, axis=[1, 2, 3]) - logpz = log_normal_pdf(z, 0., 0.) - logqz_x = log_normal_pdf(z, mean, logvar) - return -tf.reduce_mean(logpx_z + logpz - logqz_x) - -@tf.function -def compute_apply_gradients(model, x, optimizer): - with tf.GradientTape() as tape: - loss = compute_loss(model, x) - gradients = tape.gradient(loss, model.trainable_variables) - optimizer.apply_gradients(zip(gradients, model.trainable_variables)) -``` - -## 训练 - -* 我们从迭代数据集开始 -* 在每次迭代期间,我们将图像传递给编码器,以获得近似后验 $q(z|x)$ 的一组均值和对数方差参数 -* 然后,我们应用 *重参数化技巧* 从 $q(z|x)$ 中采样 -* 最后,我们将重新参数化的样本传递给解码器,以获取生成分布 $p(x|z)$ 的 logit -* **注意:**由于我们使用的是由 keras 加载的数据集,其中训练集中有 6 万个数据点,测试集中有 1 万个数据点,因此我们在测试集上的最终 ELBO 略高于对 Larochelle 版 MNIST 使用动态二值化的文献中的报告结果。 - -## 生成图片 - -* 进行训练后,可以生成一些图片了 -* 我们首先从单位高斯先验分布 $p(z)$ 中采样一组潜在向量 -* 随后生成器将潜在样本 $z$ 转换为观测值的 logit,得到分布 $p(x|z)$ -* 这里我们画出伯努利分布的概率 - -```py -epochs = 100 -latent_dim = 50 -num_examples_to_generate = 16 - -# 保持随机向量恒定以进行生成(预测),以便更易于看到改进。 -random_vector_for_generation = tf.random.normal( - shape=[num_examples_to_generate, latent_dim]) -model = CVAE(latent_dim) -``` - -```py -def generate_and_save_images(model, epoch, test_input): - predictions = model.sample(test_input) - fig = plt.figure(figsize=(4,4)) - - for i in range(predictions.shape[0]): - plt.subplot(4, 4, i+1) - plt.imshow(predictions[i, :, :, 0], cmap='gray') - plt.axis('off') - - # tight_layout 最小化两个子图之间的重叠 - plt.savefig('image_at_epoch_{:04d}.png'.format(epoch)) - plt.show() -``` - -```py -generate_and_save_images(model, 0, random_vector_for_generation) - -for epoch in range(1, epochs + 1): - start_time = time.time() - for train_x in train_dataset: - compute_apply_gradients(model, train_x, optimizer) - end_time = time.time() - - if epoch % 1 == 0: - loss = tf.keras.metrics.Mean() - for test_x in test_dataset: - loss(compute_loss(model, test_x)) - elbo = -loss.result() - display.clear_output(wait=False) - print('Epoch: {}, Test set ELBO: {}, ' - 'time elapse for current epoch {}'.format(epoch, - elbo, - end_time - start_time)) - generate_and_save_images( - model, epoch, random_vector_for_generation) -``` - -```py -Epoch: 100, Test set ELBO: -77.80061340332031, time elapse for current epoch 1.6898043155670166 - -``` - -![png](img/25c5372b82b31daf5535e4f1571434a9.png) - -### 使用 epoch 编号显示图片 - -```py -def display_image(epoch_no): - return PIL.Image.open('image_at_epoch_{:04d}.png'.format(epoch_no)) -``` - -```py -plt.imshow(display_image(epochs)) -plt.axis('off')# 显示图片 -``` - -```py -(-0.5, 287.5, 287.5, -0.5) - -``` - -![png](img/74d6d6302722b19888cd2b8a076a9899.png) - -### 生成所有保存图片的 GIF - -```py -anim_file = 'cvae.gif' - -with imageio.get_writer(anim_file, mode='I') as writer: - filenames = glob.glob('image*.png') - filenames = sorted(filenames) - last = -1 - for i,filename in enumerate(filenames): - frame = 2*(i**0.5) - if round(frame) > round(last): - last = frame - else: - continue - image = imageio.imread(filename) - writer.append_data(image) - image = imageio.imread(filename) - writer.append_data(image) - -import IPython -if IPython.version_info >= (6,2,0,''): - display.Image(filename=anim_file) -``` - -如果您正使用 Colab,您可以使用以下代码下载动画。 - -```py -try: - from google.colab import files -except ImportError: - pass -else: - files.download(anim_file) -``` \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/068.md b/Tensorflow/TensorFlow2.0/068.md deleted file mode 100644 index 0d022968..00000000 --- a/Tensorflow/TensorFlow2.0/068.md +++ /dev/null @@ -1 +0,0 @@ -# 可解释性 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/069.md b/Tensorflow/TensorFlow2.0/069.md deleted file mode 100644 index 29538d6a..00000000 --- a/Tensorflow/TensorFlow2.0/069.md +++ /dev/null @@ -1,600 +0,0 @@ -# Integrated gradients - -> 原文:[https://tensorflow.google.cn/tutorials/interpretability/integrated_gradients](https://tensorflow.google.cn/tutorials/interpretability/integrated_gradients) - - - -This tutorial demonstrates how to implement **Integrated Gradients (IG)**, an [Explainable AI](https://en.wikipedia.org/wiki/Explainable_artificial_intelligence) technique introduced in the paper [Axiomatic Attribution for Deep Networks](https://arxiv.org/abs/1703.01365). IG aims to explain the relationship between a model's predictions in terms of its features. It has many use cases including understanding feature importances, identifying data skew, and debugging model performance. - -IG has become a popular interpretability technique due to its broad applicability to any differentiable model (e.g. images, text, structured data), ease of implementation, theoretical justifications, and computational efficiency relative to alternative approaches that allows it to scale to large networks and feature spaces such as images. - -In this tutorial, you will walk through an implementation of IG step-by-step to understand the pixel feature importances of an image classifier. As an example, consider this [image](https://commons.wikimedia.org/wiki/File:San_Francisco_fireboat_showing_off.jpg) of a fireboat spraying jets of water. You would classify this image as a fireboat and might highlight the pixels making up the boat and water cannons as being important to your decision. Your model will also classify this image as a fireboat later on in this tutorial; however, does it highlight the same pixels as important when explaining its decision? - -In the images below titled "IG Attribution Mask" and "Original + IG Mask Overlay" you can see that your model instead highlights (in purple) the pixels comprising the boat's water cannons and jets of water as being more important than the boat itself to its decision. How will your model generalize to new fireboats? What about fireboats without water jets? Read on to learn more about how IG works and how to apply IG to your models to better understand the relationship between their predictions and underlying features. - -![Output Image 1](img/8350c367e4679800cd155cf00a343b47.png) - -## Setup - -```py -import matplotlib.pylab as plt -import numpy as np -import tensorflow as tf -import tensorflow_hub as hub -``` - -### Download a pretrained image classifier from TF-Hub - -IG can be applied to any differentiable model. In the spirit of the original paper, you will use a pre-trained version of the same model, Inception V1, which you will download from [TensorFlow Hub](https://hub.tensorflow.google.cn/google/imagenet/inception_v1/classification/4). - -```py -model = tf.keras.Sequential([ - hub.KerasLayer( - name='inception_v1', - handle='https://hub.tensorflow.google.cn/google/imagenet/inception_v1/classification/4', - trainable=False), -]) -model.build([None, 224, 224, 3]) -model.summary() -``` - -```py -Model: "sequential" -_________________________________________________________________ -Layer (type) Output Shape Param # -================================================================= -inception_v1 (KerasLayer) (None, 1001) 6633209 -================================================================= -Total params: 6,633,209 -Trainable params: 0 -Non-trainable params: 6,633,209 -_________________________________________________________________ - -``` - -From the module page, you need to keep in mind the following about Inception V1: - -**Inputs**: The expected input shape for the model is `(None, 224, 224, 3)`. This is a dense 4D tensor of dtype float32 and shape `(batch_size, height, width, RGB channels)` whose elements are RGB color values of pixels normalized to the range [0, 1]. The first element is `None` to indicate that the model can take any integer batch size. - -**Outputs**: A [`tf.Tensor`](https://tensorflow.google.cn/api_docs/python/tf/Tensor) of logits in the shape of `(batch_size, 1001)`. Each row represents the model's predicted score for each of 1,001 classes from ImageNet. For the model's top predicted class index you can use `tf.argmax(predictions, axis=-1)`. Furthermore, you can also convert the model's logit output to predicted probabilities across all classes using `tf.nn.softmax(predictions, axis=-1)` to quantify the model's uncertainty as well as explore similar predicted classes for debugging. - -```py -def load_imagenet_labels(file_path): - labels_file = tf.keras.utils.get_file('ImageNetLabels.txt', file_path) - with open(labels_file) as reader: - f = reader.read() - labels = f.splitlines() - return np.array(labels) -``` - -```py -imagenet_labels = load_imagenet_labels('https://storage.googleapis.com/download.tensorflow.org/data/ImageNetLabels.txt') -``` - -### Load and preprocess images with [`tf.image`](https://tensorflow.google.cn/api_docs/python/tf/image) - -You will illustrate IG using two images from [Wikimedia Commons](https://commons.wikimedia.org/wiki/Main_Page): a [Fireboat](https://commons.wikimedia.org/wiki/File:San_Francisco_fireboat_showing_off.jpg), and a [Giant Panda](https://commons.wikimedia.org/wiki/File:Giant_Panda_2.JPG). - -```py -def read_image(file_name): - image = tf.io.read_file(file_name) - image = tf.image.decode_jpeg(image, channels=3) - image = tf.image.convert_image_dtype(image, tf.float32) - image = tf.image.resize_with_pad(image, target_height=224, target_width=224) - return image -``` - -```py -img_url = { - 'Fireboat': 'http://storage.googleapis.com/download.tensorflow.org/example_images/San_Francisco_fireboat_showing_off.jpg', - 'Giant Panda': 'http://storage.googleapis.com/download.tensorflow.org/example_images/Giant_Panda_2.jpeg', -} - -img_paths = {name: tf.keras.utils.get_file(name, url) for (name, url) in img_url.items()} -img_name_tensors = {name: read_image(img_path) for (name, img_path) in img_paths.items()} -``` - -```py -Downloading data from http://storage.googleapis.com/download.tensorflow.org/example_images/San_Francisco_fireboat_showing_off.jpg -3956736/3954129 [==============================] - 0s 0us/step -Downloading data from http://storage.googleapis.com/download.tensorflow.org/example_images/Giant_Panda_2.jpeg -811008/802859 [==============================] - 0s 0us/step - -``` - -```py -plt.figure(figsize=(8, 8)) -for n, (name, img_tensors) in enumerate(img_name_tensors.items()): - ax = plt.subplot(1, 2, n+1) - ax.imshow(img_tensors) - ax.set_title(name) - ax.axis('off') -plt.tight_layout() -``` - -![png](img/e68189c9da69b7848e9033d29a0dc574.png) - -### Classify images - -Let's start by classifying these images and displaying the top 3 most confident predictions. Following is a utility function to retrieve the top k predicted labels and probabilities. - -```py -def top_k_predictions(img, k=3): - image_batch = tf.expand_dims(img, 0) - predictions = model(image_batch) - probs = tf.nn.softmax(predictions, axis=-1) - top_probs, top_idxs = tf.math.top_k(input=probs, k=k) - top_labels = imagenet_labels[tuple(top_idxs)] - return top_labels, top_probs[0] -``` - -```py -for (name, img_tensor) in img_name_tensors.items(): - plt.imshow(img_tensor) - plt.title(name, fontweight='bold') - plt.axis('off') - plt.show() - - pred_label, pred_prob = top_k_predictions(img_tensor) - for label, prob in zip(pred_label, pred_prob): - print(f'{label}: {prob:0.1%}') -``` - -![png](img/518bc2d08038969576066eb381910cc1.png) - -```py -fireboat: 32.6% -pier: 12.7% -suspension bridge: 5.7% - -``` - -![png](img/fecda9bde6f4c7551c164dc066491cb5.png) - -```py -giant panda: 89.4% -teddy: 0.3% -gibbon: 0.3% - -``` - -## Calculate Integrated Gradients - -Your model, Inception V1, is a learned function that describes a mapping between your input feature space, image pixel values, and an output space defined by ImageNet class probability values between 0 and 1\. Early interpretability methods for neural networks assigned feature importance scores using gradients, which tell you which pixels have the steepest local relative to your model's prediction at a given point along your model's prediction function. However, gradients only describe *local* changes in your model's prediction function with respect to pixel values and do not fully describe your entire model prediction function. As your model fully "learns" the relationship between the range of an individual pixel and the correct ImageNet class, the gradient for this pixel will *saturate*, meaning become increasingly small and even go to zero. Consider the simple model function below: - -```py -def f(x): - """A simplified model function.""" - return tf.where(x < 0.8, x, 0.8) - -def interpolated_path(x): - """A straight line path.""" - return tf.zeros_like(x) - -x = tf.linspace(start=0.0, stop=1.0, num=6) -y = f(x) -``` - -```py -fig = plt.figure(figsize=(12, 5)) -ax0 = fig.add_subplot(121) -ax0.plot(x, f(x), marker='o') -ax0.set_title('Gradients saturate over F(x)', fontweight='bold') -ax0.text(0.2, 0.5, 'Gradients > 0 = \n x is important') -ax0.text(0.7, 0.85, 'Gradients = 0 \n x not important') -ax0.set_yticks(tf.range(0, 1.5, 0.5)) -ax0.set_xticks(tf.range(0, 1.5, 0.5)) -ax0.set_ylabel('F(x) - model true class predicted probability') -ax0.set_xlabel('x - (pixel value)') - -ax1 = fig.add_subplot(122) -ax1.plot(x, f(x), marker='o') -ax1.plot(x, interpolated_path(x), marker='>') -ax1.set_title('IG intuition', fontweight='bold') -ax1.text(0.25, 0.1, 'Accumulate gradients along path') -ax1.set_ylabel('F(x) - model true class predicted probability') -ax1.set_xlabel('x - (pixel value)') -ax1.set_yticks(tf.range(0, 1.5, 0.5)) -ax1.set_xticks(tf.range(0, 1.5, 0.5)) -ax1.annotate('Baseline', xy=(0.0, 0.0), xytext=(0.0, 0.2), - arrowprops=dict(facecolor='black', shrink=0.1)) -ax1.annotate('Input', xy=(1.0, 0.0), xytext=(0.95, 0.2), - arrowprops=dict(facecolor='black', shrink=0.1)) -plt.show(); -``` - -![png](img/6d8da708f09878fc993e75adb40fd2a1.png) - -* **left**: Your model's gradients for pixel `x` are positive between 0.0 and 0.8 but go to 0.0 between 0.8 and 1.0\. Pixel `x` clearly has a significant impact on pushing your model toward 80% predicted probability on the true class. *Does it make sense that pixel `x`'s importance is small or discontinuous?* - -* **right**: The intuition behind IG is to accumulate pixel `x`'s local gradients and attribute its importance as a score for how much it adds or subtracts to your model's overall output class probability. You can break down and compute IG in 3 parts: - - 1. interpolate small steps along a straight line in the feature space between 0 (a baseline or starting point) and 1 (input pixel's value) - 2. compute gradients at each step between your model's predictions with respect to each step - 3. approximate the integral between your baseline and input by accumulating (cumulative average) these local gradients. - -To reinforce this intuition, you will walk through these 3 parts by applying IG to the example "Fireboat" image below. - -### Establish a baseline - -A baseline is an input image used as a starting point for calculating feature importance. Intuitively, you can think of the baseline's explanatory role as representing the impact of the absence of each pixel on the "Fireboat" prediction to contrast with its impact of each pixel on the "Fireboat" prediction when present in the input image. As a result, the choice of the baseline plays a central role in interpreting and visualizing pixel feature importances. For additional discussion of baseline selection, see the resources in the "Next steps" section at the bottom of this tutorial. Here, you will use a black image whose pixel values are all zero. - -Other choices you could experiment with include an all white image, or a random image, which you can create with `tf.random.uniform(shape=(224,224,3), minval=0.0, maxval=1.0)`. - -```py -baseline = tf.zeros(shape=(224,224,3)) -``` - -```py -plt.imshow(baseline) -plt.title("Baseline") -plt.axis('off') -plt.show() -``` - -![png](img/3e1bc64db4c260d2327ca5a9defae306.png) - -### Unpack formulas into code - -The formula for Integrated Gradients is as follows: - -$IntegratedGradients_{i}(x) ::= (x_{i} - x'_{i})\times\int_{\alpha=0}^1\frac{\partial F(x'+\alpha \times (x - x'))}{\partial x_i}{d\alpha}$ - -where: - -$_{i}$ = feature -$x$ = input -$x'$ = baseline -$\alpha$ = interpolation constant to perturbe features by - -In practice, computing a definite integral is not always numerically possible and can be computationally costly, so you compute the following numerical approximation: - -$IntegratedGrads^{approx}_{i}(x)::=(x_{i}-x'_{i})\times\sum_{k=1}^{m}\frac{\partial F(x' + \frac{k}{m}\times(x - x'))}{\partial x_{i} } \times \frac{1}{m}$ - -where: - -$_{i}$ = feature (individual pixel) -$x$ = input (image tensor) -$x'$ = baseline (image tensor) -$k$ = scaled feature perturbation constant -$m$ = number of steps in the Riemann sum approximation of the integral -$(x_{i}-x'_{i})$ = a term for the difference from the baseline. This is necessary to scale the integrated gradients and keep them in terms of the original image. The path from the baseline image to the input is in pixel space. Since with IG you are integrating in a straight line (linear transformation) this ends up being roughly equivalent to the integral term of the derivative of the interpolated image function with respect to $\alpha$ with enough steps. The integral sums each pixel's gradient times the change in the pixel along the path. It's simpler to implement this integration as uniform steps from one image to the other, substituting $x := (x' + \alpha(x-x'))$. So the change of variables gives $dx = (x-x')d\alpha$. The $(x-x')$ term is constant and is factored out of the integral. - -### Interpolate images - -$IntegratedGrads^{approx}_{i}(x)::=(x_{i}-x'_{i})\times\sum_{k=1}^{m}\frac{\partial F(\overbrace{x' + \frac{k}{m}\times(x - x')}^\text{interpolate m images at k intervals})}{\partial x_{i} } \times \frac{1}{m}$ - -First, you will generate a [linear interpolation](https://en.wikipedia.org/wiki/Linear_interpolation) between the baseline and the original image. You can think of interpolated images as small steps in the feature space between your baseline and input, represented by $\alpha$ in the original equation. - -```py -m_steps=50 -alphas = tf.linspace(start=0.0, stop=1.0, num=m_steps+1) # Generate m_steps intervals for integral_approximation() below. -``` - -```py -def interpolate_images(baseline, - image, - alphas): - alphas_x = alphas[:, tf.newaxis, tf.newaxis, tf.newaxis] - baseline_x = tf.expand_dims(baseline, axis=0) - input_x = tf.expand_dims(image, axis=0) - delta = input_x - baseline_x - images = baseline_x + alphas_x * delta - return images -``` - -Let's use the above function to generate interpolated images along a linear path at alpha intervals between a black baseline image and the example "Fireboat" image. - -```py -interpolated_images = interpolate_images( - baseline=baseline, - image=img_name_tensors['Fireboat'], - alphas=alphas) -``` - -Let's visualize the interpolated images. Note: another way of thinking about the $\alpha$ constant is that it is consistently increasing each interpolated image's intensity. - -```py -fig = plt.figure(figsize=(20, 20)) - -i = 0 -for alpha, image in zip(alphas[0::10], interpolated_images[0::10]): - i += 1 - plt.subplot(1, len(alphas[0::10]), i) - plt.title(f'alpha: {alpha:.1f}') - plt.imshow(image) - plt.axis('off') - -plt.tight_layout(); -``` - -![png](img/e2e6d59bb8ebd47a957558d11e836ec1.png) - -### Compute gradients - -Now let's take a look at how to calculate gradients in order to measure the relationship between changes to a feature and changes in the model's predictions. In the case of images, the gradient tells us which pixels have the strongest effect on the models predicted class probabilities. - -$IntegratedGrads^{approx}_{i}(x)::=(x_{i}-x'_{i})\times\sum_{k=1}^{m}\frac{\overbrace{\partial F(\text{interpolated images})}^\text{compute gradients} }{\partial x_{i} } \times \frac{1}{m}$ - -where: -$F()$ = your model's prediction function -$\frac{\partial{F} }{\partial{x_i} }$ = gradient (vector of partial derivatives $\partial$) of your model F's prediction function relative to each feature $x_i$ - -TensorFlow makes computing gradients easy for you with a [`tf.GradientTape`](https://tensorflow.google.cn/api_docs/python/tf/GradientTape). - -```py -def compute_gradients(images, target_class_idx): - with tf.GradientTape() as tape: - tape.watch(images) - logits = model(images) - probs = tf.nn.softmax(logits, axis=-1)[:, target_class_idx] - return tape.gradient(probs, images) -``` - -Let's compute the gradients for each image along the interpolation path with respect to the correct output. Recall that your model returns a `(1, 1001)` shaped `Tensor` with logits that you convert to predicted probabilities for each class. You need to pass the correct ImageNet target class index to the `compute_gradients` function for your image. - -```py -path_gradients = compute_gradients( - images=interpolated_images, - target_class_idx=555) -``` - -Note the output shape of `(n_interpolated_images, img_height, img_width, RGB)`, which gives us the gradient for every pixel of every image along the interpolation path. You can think of these gradients as measuring the change in your model's predictions for each small step in the feature space. - -```py -print(path_gradients.shape) -``` - -```py -(51, 224, 224, 3) - -``` - -**Visualizing gradient saturation** - -Recall that the gradients you just calculated above describe *local* changes to your model's predicted probability of "Fireboat" and can *saturate*. - -These concepts are visualized using the gradients you calculated above in the 2 plots below. - -```py -pred = model(interpolated_images) -pred_proba = tf.nn.softmax(pred, axis=-1)[:, 555] - -plt.figure(figsize=(10, 4)) -ax1 = plt.subplot(1, 2, 1) -ax1.plot(alphas, pred_proba) -ax1.set_title('Target class predicted probability over alpha') -ax1.set_ylabel('model p(target class)') -ax1.set_xlabel('alpha') -ax1.set_ylim([0, 1]) - -ax2 = plt.subplot(1, 2, 2) -# Average across interpolation steps -average_grads = tf.reduce_mean(path_gradients, axis=[1, 2, 3]) -# Normalize gradients to 0 to 1 scale. E.g. (x - min(x))/(max(x)-min(x)) -average_grads_norm = (average_grads-tf.math.reduce_min(average_grads))/(tf.math.reduce_max(average_grads)-tf.reduce_min(average_grads)) -ax2.plot(alphas, average_grads_norm) -ax2.set_title('Average pixel gradients (normalized) over alpha') -ax2.set_ylabel('Average pixel gradients') -ax2.set_xlabel('alpha') -ax2.set_ylim([0, 1]); -``` - -```py -(0.0, 1.0) - -``` - -![png](img/0b0835e78f54f2c464c9df77cfe6a93b.png) - -* **left**: This plot shows how your model's confidence in the "Fireboat" class varies across alphas. Notice how the gradients, or slope of the line, largely flattens or saturates between 0.6 and 1.0 before settling at the final "Fireboat" predicted probability of about 40%. - -* **right**: The right plot shows the average gradients magnitudes over alpha more directly. Note how the values sharply approach and even briefly dip below zero. In fact, your model "learns" the most from gradients at lower values of alpha before saturating. Intuitively, you can think of this as your model has learned the pixels e.g. water cannons to make the correct prediction, sending these pixels gradients to zero, but is still quite uncertain and focused on spurious bridge or water jet pixels as the alpha values approach the original input image. - -To make sure these important water cannon pixels are reflected as important to the "Fireboat" prediction, you will continue on below to learn how to accumulate these gradients to accurately approximate how each pixel impacts your "Fireboat" predicted probability. - -### Accumulate gradients (integral approximation) - -There are many different ways you can go about computing the numerical approximation of an integral for IG with different tradeoffs in accuracy and convergence across varying functions. A popular class of methods is called [Riemann sums](https://en.wikipedia.org/wiki/Riemann_sum). Here, you will use the Trapezoidal rule (you can find additional code to explore different approximation methods at the end of this tutorial). - -$IntegratedGrads^{approx}_{i}(x)::=(x_{i}-x'_{i})\times \overbrace{\sum_{k=1}^{m} }^\text{Sum m local gradients} \text{gradients(interpolated images)} \times \overbrace{\frac{1}{m} }^\text{Divide by m steps}$ - -From the equation, you can see you are summing over `m` gradients and dividing by `m` steps. You can implement the two operations together for part 3 as an *average of the local gradients of `m` interpolated predictions and input images*. - -```py -def integral_approximation(gradients): - # riemann_trapezoidal - grads = (gradients[:-1] + gradients[1:]) / tf.constant(2.0) - integrated_gradients = tf.math.reduce_mean(grads, axis=0) - return integrated_gradients -``` - -The `integral_approximation` function takes the gradients of the predicted probability of the target class with respect to the interpolated images between the baseline and the original image. - -```py -ig = integral_approximation( - gradients=path_gradients) -``` - -You can confirm averaging across the gradients of `m` interpolated images returns an integrated gradients tensor with the same shape as the original "Giant Panda" image. - -```py -print(ig.shape) -``` - -```py -(224, 224, 3) - -``` - -### Putting it all together - -Now you will combine the 3 previous general parts together into an `IntegratedGradients` function and utilize a [@tf.function](https://tensorflow.google.cn/guide/function) decorator to compile it into a high performance callable TensorFlow graph. This is implemented as 5 smaller steps below: - -$IntegratedGrads^{approx}_{i}(x)::=\overbrace{(x_{i}-x'_{i})}^\text{5.}\times \overbrace{\sum_{k=1}^{m} }^\text{4.} \frac{\partial \overbrace{F(\overbrace{x' + \overbrace{\frac{k}{m} }^\text{1.}\times(x - x'))}^\text{2.} }^\text{3.} }{\partial x_{i} } \times \overbrace{\frac{1}{m} }^\text{4.}$ - -1. Generate alphas $\alpha$ - -2. Generate interpolated images = $(x' + \frac{k}{m}\times(x - x'))$ - -3. Compute gradients between model $F$ output predictions with respect to input features = $\frac{\partial F(\text{interpolated path inputs})}{\partial x_{i} }$ - -4. Integral approximation through averaging gradients = $\sum_{k=1}^m \text{gradients} \times \frac{1}{m}$ - -5. Scale integrated gradients with respect to original image = $(x_{i}-x'_{i}) \times \text{integrated gradients}$. The reason this step is necessary is to make sure that the attribution values accumulated across multiple interpolated images are in the same units and faithfully represent the pixel importances on the original image. - -```py -@tf.function -def integrated_gradients(baseline, - image, - target_class_idx, - m_steps=50, - batch_size=32): - # 1\. Generate alphas. - alphas = tf.linspace(start=0.0, stop=1.0, num=m_steps+1) - - # Initialize TensorArray outside loop to collect gradients. - gradient_batches = tf.TensorArray(tf.float32, size=m_steps+1) - - # Iterate alphas range and batch computation for speed, memory efficiency, and scaling to larger m_steps. - for alpha in tf.range(0, len(alphas), batch_size): - from_ = alpha - to = tf.minimum(from_ + batch_size, len(alphas)) - alpha_batch = alphas[from_:to] - - # 2\. Generate interpolated inputs between baseline and input. - interpolated_path_input_batch = interpolate_images(baseline=baseline, - image=image, - alphas=alpha_batch) - - # 3\. Compute gradients between model outputs and interpolated inputs. - gradient_batch = compute_gradients(images=interpolated_path_input_batch, - target_class_idx=target_class_idx) - - # Write batch indices and gradients to extend TensorArray. - gradient_batches = gradient_batches.scatter(tf.range(from_, to), gradient_batch) - - # Stack path gradients together row-wise into single tensor. - total_gradients = gradient_batches.stack() - - # 4\. Integral approximation through averaging gradients. - avg_gradients = integral_approximation(gradients=total_gradients) - - # 5\. Scale integrated gradients with respect to input. - integrated_gradients = (image - baseline) * avg_gradients - - return integrated_gradients -``` - -```py -ig_attributions = integrated_gradients(baseline=baseline, - image=img_name_tensors['Fireboat'], - target_class_idx=555, - m_steps=240) -``` - -Again, you can check that the IG feature attributions have the same shape as the input "Fireboat" image. - -```py -print(ig_attributions.shape) -``` - -```py -(224, 224, 3) - -``` - -The paper suggests the number of steps to range between 20 to 300 depending upon the example (although in practice this can be higher in the 1,000s to accurately approximate the integral). You can find additional code to check for the appropriate number of steps in the "Next steps" resources at the end of this tutorial. - -### Visualize attributions - -You are ready to visualize attributions, and overlay them on the original image. The code below sums the absolute values of the integrated gradients across the color channels to produce an attribution mask. This plotting method captures the relative impact of pixels on the model's predictions. - -```py -def plot_img_attributions(baseline, - image, - target_class_idx, - m_steps=50, - cmap=None, - overlay_alpha=0.4): - - attributions = integrated_gradients(baseline=baseline, - image=image, - target_class_idx=target_class_idx, - m_steps=m_steps) - - # Sum of the attributions across color channels for visualization. - # The attribution mask shape is a grayscale image with height and width - # equal to the original image. - attribution_mask = tf.reduce_sum(tf.math.abs(attributions), axis=-1) - - fig, axs = plt.subplots(nrows=2, ncols=2, squeeze=False, figsize=(8, 8)) - - axs[0, 0].set_title('Baseline image') - axs[0, 0].imshow(baseline) - axs[0, 0].axis('off') - - axs[0, 1].set_title('Original image') - axs[0, 1].imshow(image) - axs[0, 1].axis('off') - - axs[1, 0].set_title('Attribution mask') - axs[1, 0].imshow(attribution_mask, cmap=cmap) - axs[1, 0].axis('off') - - axs[1, 1].set_title('Overlay') - axs[1, 1].imshow(attribution_mask, cmap=cmap) - axs[1, 1].imshow(image, alpha=overlay_alpha) - axs[1, 1].axis('off') - - plt.tight_layout() - return fig -``` - -Looking at the attributions on the "Fireboat" image, you can see the model identifies the water cannons and spouts as contributing to its correct prediction. - -```py -_ = plot_img_attributions(image=img_name_tensors['Fireboat'], - baseline=baseline, - target_class_idx=555, - m_steps=240, - cmap=plt.cm.inferno, - overlay_alpha=0.4) -``` - -![png](img/29af5825a7303165115c9cfbc59ae606.png) - -On the "Giant Panda" image, the attributions highlight the texture, nose, and the fur of the Panda's face. - -```py -_ = plot_img_attributions(image=img_name_tensors['Giant Panda'], - baseline=baseline, - target_class_idx=389, - m_steps=55, - cmap=plt.cm.viridis, - overlay_alpha=0.5) -``` - -![png](img/07f89687b786f68c1561b81ac448c45e.png) - -## Uses and limitations - -Use cases - -* Employing techniques like Integrated Gradients before deploying your model can help you develop intuition for how and why it works. Do the features highlighted by this technique match your intuition? If not, that may be indicative of a bug in your model or dataset, or overfitting. - -Limitations - -* Integrated Gradients provides feature importances on individual examples, however, it does not provide global feature importances across an entire dataset. - -* Integrated Gradients provides individual feature importances, but it does not explain feature interactions and combinations. - -## Next steps - -This tutorial presented a basic implementation of Integrated Gradients. As a next step, you can use this notebook to try this technique with different models and images yourself. - -For interested readers, there is a lengthier version of this tutorial (which includes code for different baselines, to compute integral approximations, and to determine a sufficient number of steps) which you can find [here](https://github.com/GoogleCloudPlatform/training-data-analyst/tree/master/blogs/integrated_gradients). - -To deepen your understanding, check out the paper [Axiomatic Attribution for Deep Networks](https://arxiv.org/abs/1703.01365) and [Github repository](https://github.com/ankurtaly/Integrated-Gradients), which contains an implementation in a previous version of TensorFlow. You can also explore feature attribution, and the impact of different baselines, on [distill.pub](https://distill.pub/2020/attribution-baselines/). - -Interested in incorporating IG into your production machine learning workflows for feature importances, model error analysis, and data skew monitoring? Check out Google Cloud's [Explainable AI](https://cloud.google.com/explainable-ai) product that supports IG attributions. The Google AI PAIR research group also open-sourced the [What-if tool](https://pair-code.github.io/what-if-tool/index.html#about) which can be used for model debugging, including visualizing IG feature attributions. \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/070.md b/Tensorflow/TensorFlow2.0/070.md deleted file mode 100644 index f9d86906..00000000 --- a/Tensorflow/TensorFlow2.0/070.md +++ /dev/null @@ -1 +0,0 @@ -# 强化学习 \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/071.md b/Tensorflow/TensorFlow2.0/071.md deleted file mode 100644 index 4af3cf7a..00000000 --- a/Tensorflow/TensorFlow2.0/071.md +++ /dev/null @@ -1,476 +0,0 @@ -# Playing CartPole with the Actor-Critic Method - -> 原文:[https://tensorflow.google.cn/tutorials/reinforcement_learning/actor_critic](https://tensorflow.google.cn/tutorials/reinforcement_learning/actor_critic) - - - -This tutorial demonstrates how to implement the [Actor-Critic](https://papers.nips.cc/paper/1786-actor-critic-algorithms.pdf) method using TensorFlow to train an agent on the [Open AI Gym](https://gym.openai.com/) CartPole-V0 environment. The reader is assumed to have some familiarity with [policy gradient methods](https://papers.nips.cc/paper/1713-policy-gradient-methods-for-reinforcement-learning-with-function-approximation.pdf) of reinforcement learning. - -**Actor-Critic methods** - -Actor-Critic methods are [temporal difference (TD) learning](https://en.wikipedia.org/wiki/Temporal_difference_learning) methods that represent the policy function independent of the value function. - -A policy function (or policy) returns a probability distribution over actions that the agent can take based on the given state. A value function determines the expected return for an agent starting at a given state and acting according to a particular policy forever after. - -In the Actor-Critic method, the policy is referred to as the *actor* that proposes a set of possible actions given a state, and the estimated value function is referred to as the *critic*, which evaluates actions taken by the *actor* based on the given policy. - -In this tutorial, both the *Actor* and *Critic* will be represented using one neural network with two outputs. - -**CartPole-v0** - -In the [CartPole-v0 environment](https://gym.openai.com/envs/CartPole-v0), a pole is attached to a cart moving along a frictionless track. The pole starts upright and the goal of the agent is to prevent it from falling over by applying a force of -1 or +1 to the cart. A reward of +1 is given for every time step the pole remains upright. An episode ends when (1) the pole is more than 15 degrees from vertical or (2) the cart moves more than 2.4 units from the center. - -
- -
![](/tutorials/reinforcement_learning/images/cartpole-v0.gif) - -
Trained actor-critic model in Cartpole-v0 environment
- -
- -
- -The problem is considered "solved" when the average total reward for the episode reaches 195 over 100 consecutive trials. - -## Setup - -Import necessary packages and configure global settings. - -```py -pip install -q gym - -``` - -```py -WARNING: You are using pip version 20.2.2; however, version 20.2.3 is available. -You should consider upgrading via the '/tmpfs/src/tf_docs_env/bin/python -m pip install --upgrade pip' command. - -``` - -```py -# Install additional packages for visualization -sudo apt-get install -y xvfb python-opengl > /dev/null 2>&1 -pip install -q pyvirtualdisplay > /dev/null 2>&1 -pip install -q git+https://github.com/tensorflow/docs > /dev/null 2>&1 - -``` - -```py -import collections -import gym -import numpy as np -import tensorflow as tf -import tqdm - -from matplotlib import pyplot as plt -from tensorflow.keras import layers -from typing import Any, List, Sequence, Tuple - -# Create the environment -env = gym.make("CartPole-v0") - -# Set seed for experiment reproducibility -seed = 42 -env.seed(seed) -tf.random.set_seed(seed) -np.random.seed(seed) - -# Small epsilon value for stabilizing division operations -eps = np.finfo(np.float32).eps.item() -``` - -## Model - -The *Actor* and *Critic* will be modeled using one neural network that generates the action probabilities and critic value respectively. We use model subclassing to define the model. - -During the forward pass, the model will take in the state as the input and will output both action probabilities and critic value $V$, which models the state-dependent [value function](https://spinningup.openai.com/en/latest/spinningup/rl_intro.html#value-functions). The goal is to train a model that chooses actions based on a policy $\pi$ that maximizes expected [return](https://spinningup.openai.com/en/latest/spinningup/rl_intro.html#reward-and-return). - -For Cartpole-v0, there are four values representing the state: cart position, cart-velocity, pole angle and pole velocity respectively. The agent can take two actions to push the cart left (0) and right (1) respectively. - -Refer to [OpenAI Gym's CartPole-v0 wiki page](http://www.derongliu.org/adp/adp-cdrom/Barto1983.pdf) for more information. - -```py -class ActorCritic(tf.keras.Model): - """Combined actor-critic network.""" - - def __init__( - self, - num_actions: int, - num_hidden_units: int): - """Initialize.""" - super().__init__() - - self.common = layers.Dense(num_hidden_units, activation="relu") - self.actor = layers.Dense(num_actions) - self.critic = layers.Dense(1) - - def call(self, inputs: tf.Tensor) -> Tuple[tf.Tensor, tf.Tensor]: - x = self.common(inputs) - return self.actor(x), self.critic(x) -``` - -```py -num_actions = env.action_space.n # 2 -num_hidden_units = 128 - -model = ActorCritic(num_actions, num_hidden_units) -``` - -## Training - -To train the agent, you will follow these steps: - -1. Run the agent on the environment to collect training data per episode. -2. Compute expected return at each time step. -3. Compute the loss for the combined actor-critic model. -4. Compute gradients and update network parameters. -5. Repeat 1-4 until either success criterion or max episodes has been reached. - -### 1\. Collecting training data - -As in supervised learning, in order to train the actor-critic model, we need to have training data. However, in order to collect such data, the model would need to be "run" in the environment. - -We collect training data for each episode. Then at each time step, the model's forward pass will be run on the environment's state in order to generate action probabilities and the critic value based on the current policy parameterized by the model's weights. - -The next action will be sampled from the action probabilities generated by the model, which would then be applied to the environment, causing the next state and reward to be generated. - -This process is implemented in the `run_episode` function, which uses TensorFlow operations so that it can later be compiled into a TensorFlow graph for faster training. Note that [`tf.TensorArray`](https://tensorflow.google.cn/api_docs/python/tf/TensorArray)s were used to support Tensor iteration on variable length arrays. - -```py -# Wrap OpenAI Gym's `env.step` call as an operation in a TensorFlow function. -# This would allow it to be included in a callable TensorFlow graph. - -def env_step(action: np.ndarray) -> Tuple[np.ndarray, np.ndarray, np.ndarray]: - """Returns state, reward and done flag given an action.""" - - state, reward, done, _ = env.step(action) - return (state.astype(np.float32), - np.array(reward, np.int32), - np.array(done, np.int32)) - -def tf_env_step(action: tf.Tensor) -> List[tf.Tensor]: - return tf.numpy_function(env_step, [action], - [tf.float32, tf.int32, tf.int32]) -``` - -```py -def run_episode( - initial_state: tf.Tensor, - model: tf.keras.Model, - max_steps: int) -> List[tf.Tensor]: - """Runs a single episode to collect training data.""" - - action_probs = tf.TensorArray(dtype=tf.float32, size=0, dynamic_size=True) - values = tf.TensorArray(dtype=tf.float32, size=0, dynamic_size=True) - rewards = tf.TensorArray(dtype=tf.int32, size=0, dynamic_size=True) - - initial_state_shape = initial_state.shape - state = initial_state - - for t in tf.range(max_steps): - # Convert state into a batched tensor (batch size = 1) - state = tf.expand_dims(state, 0) - - # Run the model and to get action probabilities and critic value - action_logits_t, value = model(state) - - # Sample next action from the action probability distribution - action = tf.random.categorical(action_logits_t, 1)[0, 0] - action_probs_t = tf.nn.softmax(action_logits_t) - - # Store critic values - values = values.write(t, tf.squeeze(value)) - - # Store log probability of the action chosen - action_probs = action_probs.write(t, action_probs_t[0, action]) - - # Apply action to the environment to get next state and reward - state, reward, done = tf_env_step(action) - state.set_shape(initial_state_shape) - - # Store reward - rewards = rewards.write(t, reward) - - if tf.cast(done, tf.bool): - break - - action_probs = action_probs.stack() - values = values.stack() - rewards = rewards.stack() - - return action_probs, values, rewards -``` - -### 2\. Computing expected returns - -We convert the sequence of rewards for each timestep $t$, ${r_{t}}^{T}_{t=1}$ collected during one episode into a sequence of expected returns ${G_{t}}^{T}_{t=1}$ in which the sum of rewards is taken from the current timestep $t$ to $T$ and each reward is multiplied with an exponentially decaying discount factor $\gamma$: - -$$G_{t} = \sum^{T}_{t'=t} \gamma^{t'-t}r_{t'}$$ - -Since $\gamma\in(0,1)$, rewards further out from the current timestep are given less weight. - -Intuitively, expected return simply implies that rewards now are better than rewards later. In a mathematical sense, it is to ensure that the sum of the rewards converges. - -To stabilize training, we also standardize the resulting sequence of returns (i.e. to have zero mean and unit standard deviation). - -```py -def get_expected_return( - rewards: tf.Tensor, - gamma: float, - standardize: bool = True) -> tf.Tensor: - """Compute expected returns per timestep.""" - - n = tf.shape(rewards)[0] - returns = tf.TensorArray(dtype=tf.float32, size=n) - - # Start from the end of `rewards` and accumulate reward sums - # into the `returns` array - rewards = tf.cast(rewards[::-1], dtype=tf.float32) - discounted_sum = tf.constant(0.0) - discounted_sum_shape = discounted_sum.shape - for i in tf.range(n): - reward = rewards[i] - discounted_sum = reward + gamma * discounted_sum - discounted_sum.set_shape(discounted_sum_shape) - returns = returns.write(i, discounted_sum) - returns = returns.stack()[::-1] - - if standardize: - returns = ((returns - tf.math.reduce_mean(returns)) / - (tf.math.reduce_std(returns) + eps)) - - return returns -``` - -### 3\. The actor-critic loss - -Since we are using a hybrid actor-critic model, we will use loss function that is a combination of actor and critic losses for training, as shown below: - -$$L = L_{actor} + L_{critic}$$ - -#### Actor loss - -We formulate the actor loss based on [policy gradients with the critic as a state dependent baseline](https://www.youtube.com/watch?v=EKqxumCuAAY&t=62m23s) and compute single-sample (per-episode) estimates. - -$$L_{actor} = -\sum^{T}_{t=1} log\pi_{\theta}(a_{t} | s_{t})[G(s_{t}, a_{t}) - V^{\pi}_{\theta}(s_{t})]$$ - -where: - -* $T$: the number of timesteps per episode, which can vary per episode -* $s_{t}$: the state at timestep $t$ -* $a_{t}$: chosen action at timestep $t$ given state $s$ -* $\pi_{\theta}$: is the policy (actor) parameterized by $\theta$ -* $V^{\pi}_{\theta}$: is the value function (critic) also parameterized by $\theta$ -* $G = G_{t}$: the expected return for a given state, action pair at timestep $t$ - -We add a negative term to the sum since we want to maximize the probabilities of actions yielding higher rewards by minimizing the combined loss. - -##### Advantage - -The $G - V$ term in our $L_{actor}$ formulation is called the [advantage](https://spinningup.openai.com/en/latest/spinningup/rl_intro.html#advantage-functions), which indicates how much better an action is given a particular state over a random action selected according to the policy $\pi$ for that state. - -While it's possible to exclude a baseline, this may result in high variance during training. And the nice thing about choosing the critic $V$ as a baseline is that it trained to be as close as possible to $G$, leading to a lower variance. - -In addition, without the critic, the algorithm would try to increase probabilities for actions taken on a particular state based on expected return, which may not make much of a difference if the relative probabilities between actions remain the same. - -For instance, suppose that two actions for a given state would yield the same expected return. Without the critic, the algorithm would try to raise the probability of these actions based on the objective $J$. With the critic, it may turn out that there's no advantage ($G - V = 0$) and thus no benefit gained in increasing the actions' probabilities and the algorithm would set the gradients to zero. - -#### Critic loss - -Training $V$ to be as close possible to $G$ can be set up as a regression problem with the following loss function: - -$$L_{critic} = L_{\delta}(G, V^{\pi}_{\theta})$$ - -where $L_{\delta}$ is the [Huber loss](https://en.wikipedia.org/wiki/Huber_loss), which is less sensitive to outliers in data than squared-error loss. - -```py -huber_loss = tf.keras.losses.Huber(reduction=tf.keras.losses.Reduction.SUM) - -def compute_loss( - action_probs: tf.Tensor, - values: tf.Tensor, - returns: tf.Tensor) -> tf.Tensor: - """Computes the combined actor-critic loss.""" - - advantage = returns - values - - action_log_probs = tf.math.log(action_probs) - actor_loss = -tf.math.reduce_sum(action_log_probs * advantage) - - critic_loss = huber_loss(values, returns) - - return actor_loss + critic_loss -``` - -### 4\. Defining the training step to update parameters - -We combine all of the steps above into a training step that is run every episode. All steps leading up to the loss function are executed with the [`tf.GradientTape`](https://tensorflow.google.cn/api_docs/python/tf/GradientTape) context to enable automatic differentiation. - -We use the Adam optimizer to apply the gradients to the model parameters. - -We also compute the sum of the undiscounted rewards, `episode_reward`, in this step which would be used later on to evaluate if we have met the success criterion. - -We apply the [`tf.function`](https://tensorflow.google.cn/api_docs/python/tf/function) context to the `train_step` function so that it can be compiled into a callable TensorFlow graph, which can lead to 10x speedup in training. - -```py -optimizer = tf.keras.optimizers.Adam(learning_rate=0.01) - -@tf.function -def train_step( - initial_state: tf.Tensor, - model: tf.keras.Model, - optimizer: tf.keras.optimizers.Optimizer, - gamma: float, - max_steps_per_episode: int) -> tf.Tensor: - """Runs a model training step.""" - - with tf.GradientTape() as tape: - - # Run the model for one episode to collect training data - action_probs, values, rewards = run_episode( - initial_state, model, max_steps_per_episode) - - # Calculate expected returns - returns = get_expected_return(rewards, gamma) - - # Convert training data to appropriate TF tensor shapes - action_probs, values, returns = [ - tf.expand_dims(x, 1) for x in [action_probs, values, returns]] - - # Calculating loss values to update our network - loss = compute_loss(action_probs, values, returns) - - # Compute the gradients from the loss - grads = tape.gradient(loss, model.trainable_variables) - - # Apply the gradients to the model's parameters - optimizer.apply_gradients(zip(grads, model.trainable_variables)) - - episode_reward = tf.math.reduce_sum(rewards) - - return episode_reward -``` - -### 5\. Run the training loop - -We execute training by run the training step until either the success criterion or maximum number of episodes is reached. - -We keep a running record of episode rewards using a queue. Once 100 trials are reached, the oldest reward is removed at the left (tail) end of the queue and the newest one is added at the head (right). A running sum of the rewards is also maintained for computational efficiency. - -Depending on your runtime, training can finish in less than a minute. - -```py -%%time - -max_episodes = 10000 -max_steps_per_episode = 1000 - -# Cartpole-v0 is considered solved if average reward is >= 195 over 100 -# consecutive trials -reward_threshold = 195 -running_reward = 0 - -# Discount factor for future rewards -gamma = 0.99 - -with tqdm.trange(max_episodes) as t: - for i in t: - initial_state = tf.constant(env.reset(), dtype=tf.float32) - episode_reward = int(train_step( - initial_state, model, optimizer, gamma, max_steps_per_episode)) - - running_reward = episode_reward*0.01 + running_reward*.99 - - t.set_description(f'Episode {i}') - t.set_postfix( - episode_reward=episode_reward, running_reward=running_reward) - - # Show average episode reward every 10 episodes - if i % 10 == 0: - pass # print(f'Episode {i}: average reward: {avg_reward}') - - if running_reward > reward_threshold: - break - -print(f'\nSolved at episode {i}: average reward: {running_reward:.2f}!') -``` - -```py -Episode 1524: 15%|█▌ | 1524/10000 [08:16<46:00, 3.07it/s, episode_reward=200, running_reward=195] - -Solved at episode 1524: average reward: 195.03! -CPU times: user 20min 43s, sys: 4min 52s, total: 25min 35s -Wall time: 8min 16s - -``` - -## Visualization - -After training, it would be good to visualize how the model performs in the environment. You can run the cells below to generate a GIF animation of one episode run of the model. Note that additional packages need to be installed for OpenAI Gym to render the environment's images correctly in Colab. - -```py -# Render an episode and save as a GIF file - -from IPython import display as ipythondisplay -from PIL import Image -from pyvirtualdisplay import Display - -display = Display(visible=0, size=(400, 300)) -display.start() - -def render_episode(env: gym.Env, model: tf.keras.Model, max_steps: int): - screen = env.render(mode='rgb_array') - im = Image.fromarray(screen) - - images = [im] - - state = tf.constant(env.reset(), dtype=tf.float32) - for i in range(1, max_steps + 1): - state = tf.expand_dims(state, 0) - action_probs, _ = model(state) - action = np.argmax(np.squeeze(action_probs)) - - state, _, done, _ = env.step(action) - state = tf.constant(state, dtype=tf.float32) - - # Render screen every 10 steps - if i % 10 == 0: - screen = env.render(mode='rgb_array') - images.append(Image.fromarray(screen)) - - if done: - break - - return images - -# Save GIF image -images = render_episode(env, model, max_steps_per_episode) -image_file = 'cartpole-v0.gif' -# loop=0: loop forever, duration=1: play each frame for 1ms -images[0].save( - image_file, save_all=True, append_images=images[1:], loop=0, duration=1) -``` - -```py -import tensorflow_docs.vis.embed as embed -embed.embed_file(image_file) -``` - -![gif](img/536f812a8cb3bafa44a738899b173733.png) - -## Next steps - -This tutorial demonstrated how to implement the actor-critic method using Tensorflow. - -As a next step, you could try training a model on a different environment in OpenAI Gym. - -For additional information regarding actor-critic methods and the Cartpole-v0 problem, you may refer to the following resources: - -* [Actor Critic Method](https://hal.inria.fr/hal-00840470/document) -* [Actor Critic Lecture (CAL)](https://www.youtube.com/watch?v=EKqxumCuAAY&list=PLkFD6_40KJIwhWJpGazJ9VSj9CFMkb79A&index=7&t=0s) -* [Cartpole learning control problem [Barto, et al. 1983]](http://www.derongliu.org/adp/adp-cdrom/Barto1983.pdf) - -For more reinforcement learning examples in TensorFlow, you can check the following resources: - -* [Reinforcement learning code examples (keras.io)](https://keras.io/examples/rl/) -* [TF-Agents reinforcement learning library](https://tensorflow.google.cn/agents) \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/1 新手入门.ipynb b/Tensorflow/TensorFlow2.0/1 新手入门.ipynb new file mode 100644 index 00000000..4c3c8478 --- /dev/null +++ b/Tensorflow/TensorFlow2.0/1 新手入门.ipynb @@ -0,0 +1,138 @@ +{ + "metadata": { + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.0" + }, + "orig_nbformat": 2, + "kernelspec": { + "name": "python380jvsc74a57bd038740d3277777e2cd7c6c2cc9d8addf5118fdf3f82b1b39231fd12aeac8aee8b", + "display_name": "Python 3.8.0 64-bit" + } + }, + "nbformat": 4, + "nbformat_minor": 2, + "cells": [ + { + "source": [ + "## 说明\n", + "既然是采集,就应该有菜鸡的觉悟。把tf.keras借口中的东西熟悉就好了。底层的东西不要碰。但愿federated模块也能通过tf.keras来实现。" + ], + "cell_type": "markdown", + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "# 导入mnist手写体数据\n", + "import tensorflow as tf\n", + "mnist = tf.keras.datasets.mnist\n", + "\n", + "(x_train, y_train), (x_test, y_test) = mnist.load_data()\n", + "x_train, x_test = x_train / 255.0, x_test / 255.0\n" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "# 定义两层线性模型\n", + "model = tf.keras.models.Sequential([\n", + " tf.keras.layers.Flatten(input_shape=(28, 28)),\n", + " tf.keras.layers.Dense(128, activation='relu'),\n", + " tf.keras.layers.Dropout(0.2),\n", + " tf.keras.layers.Dense(10, activation='softmax')\n", + "])\n" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "# 使用sparse_categorical_crossentropy分类交叉熵损失函数。当分类为单个数据的时候使用这种方法\n", + "# 选择adam优化器。\n", + "model.compile(optimizer='adam',\n", + " loss='sparse_categorical_crossentropy',\n", + " metrics=['accuracy'])" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Epoch 1/5\n", + "1875/1875 [==============================] - 5s 790us/step - loss: 0.4760 - accuracy: 0.8624\n", + "Epoch 2/5\n", + "1875/1875 [==============================] - 2s 934us/step - loss: 0.1440 - accuracy: 0.9566\n", + "Epoch 3/5\n", + "1875/1875 [==============================] - 2s 914us/step - loss: 0.1083 - accuracy: 0.9683\n", + "Epoch 4/5\n", + "1875/1875 [==============================] - 2s 854us/step - loss: 0.0864 - accuracy: 0.9736\n", + "Epoch 5/5\n", + "1875/1875 [==============================] - 2s 1ms/step - loss: 0.0753 - accuracy: 0.9761\n" + ] + }, + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "" + ] + }, + "metadata": {}, + "execution_count": 11 + } + ], + "source": [ + "model.fit(x_train, y_train, epochs=5)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "313/313 - 0s - loss: 0.0741 - accuracy: 0.9783\n" + ] + }, + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "[0.07407715171575546, 0.9782999753952026]" + ] + }, + "metadata": {}, + "execution_count": 12 + } + ], + "source": [ + "model.evaluate(x_test, y_test, verbose=2)" + ] + } + ] +} \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/10 不平衡数据分类.ipynb b/Tensorflow/TensorFlow2.0/10 不平衡数据分类.ipynb new file mode 100644 index 00000000..f2f04af0 --- /dev/null +++ b/Tensorflow/TensorFlow2.0/10 不平衡数据分类.ipynb @@ -0,0 +1,449 @@ +{ + "metadata": { + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.0" + }, + "orig_nbformat": 2, + "kernelspec": { + "name": "python380jvsc74a57bd038740d3277777e2cd7c6c2cc9d8addf5118fdf3f82b1b39231fd12aeac8aee8b", + "display_name": "Python 3.8.0 64-bit" + } + }, + "nbformat": 4, + "nbformat_minor": 2, + "cells": [ + { + "source": [ + "## 补充\n", + "关于不平衡数据集的处理,以后再弄。现在需要知道的是。tf.data如何实现数据流水线加载大批量的数据,并shuffle" + ], + "cell_type": "markdown", + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "import tensorflow as tf\n", + "from tensorflow import keras\n", + "\n", + "import os\n", + "import tempfile\n", + "\n", + "import matplotlib as mpl\n", + "import matplotlib.pyplot as plt\n", + "import numpy as np\n", + "import pandas as pd\n", + "import seaborn as sns\n", + "\n", + "import sklearn\n", + "from sklearn.metrics import confusion_matrix\n", + "from sklearn.model_selection import train_test_split\n", + "from sklearn.preprocessing import StandardScaler" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "mpl.rcParams['figure.figsize'] = (12, 10)\n", + "colors = plt.rcParams['axes.prop_cycle'].by_key()['color']" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " Time V1 V2 V3 V4 V5 V6 V7 \\\n", + "0 0.0 -1.359807 -0.072781 2.536347 1.378155 -0.338321 0.462388 0.239599 \n", + "1 0.0 1.191857 0.266151 0.166480 0.448154 0.060018 -0.082361 -0.078803 \n", + "2 1.0 -1.358354 -1.340163 1.773209 0.379780 -0.503198 1.800499 0.791461 \n", + "3 1.0 -0.966272 -0.185226 1.792993 -0.863291 -0.010309 1.247203 0.237609 \n", + "4 2.0 -1.158233 0.877737 1.548718 0.403034 -0.407193 0.095921 0.592941 \n", + "\n", + " V8 V9 ... V21 V22 V23 V24 V25 \\\n", + "0 0.098698 0.363787 ... -0.018307 0.277838 -0.110474 0.066928 0.128539 \n", + "1 0.085102 -0.255425 ... -0.225775 -0.638672 0.101288 -0.339846 0.167170 \n", + "2 0.247676 -1.514654 ... 0.247998 0.771679 0.909412 -0.689281 -0.327642 \n", + "3 0.377436 -1.387024 ... -0.108300 0.005274 -0.190321 -1.175575 0.647376 \n", + "4 -0.270533 0.817739 ... -0.009431 0.798278 -0.137458 0.141267 -0.206010 \n", + "\n", + " V26 V27 V28 Amount Class \n", + "0 -0.189115 0.133558 -0.021053 149.62 0 \n", + "1 0.125895 -0.008983 0.014724 2.69 0 \n", + "2 -0.139097 -0.055353 -0.059752 378.66 0 \n", + "3 -0.221929 0.062723 0.061458 123.50 0 \n", + "4 0.502292 0.219422 0.215153 69.99 0 \n", + "\n", + "[5 rows x 31 columns]" + ], + "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
TimeV1V2V3V4V5V6V7V8V9...V21V22V23V24V25V26V27V28AmountClass
00.0-1.359807-0.0727812.5363471.378155-0.3383210.4623880.2395990.0986980.363787...-0.0183070.277838-0.1104740.0669280.128539-0.1891150.133558-0.021053149.620
10.01.1918570.2661510.1664800.4481540.060018-0.082361-0.0788030.085102-0.255425...-0.225775-0.6386720.101288-0.3398460.1671700.125895-0.0089830.0147242.690
21.0-1.358354-1.3401631.7732090.379780-0.5031981.8004990.7914610.247676-1.514654...0.2479980.7716790.909412-0.689281-0.327642-0.139097-0.055353-0.059752378.660
31.0-0.966272-0.1852261.792993-0.863291-0.0103091.2472030.2376090.377436-1.387024...-0.1083000.005274-0.190321-1.1755750.647376-0.2219290.0627230.061458123.500
42.0-1.1582330.8777371.5487180.403034-0.4071930.0959210.592941-0.2705330.817739...-0.0094310.798278-0.1374580.141267-0.2060100.5022920.2194220.21515369.990
\n

5 rows × 31 columns

\n
" + }, + "metadata": {}, + "execution_count": 5 + } + ], + "source": [ + "file = tf.keras.utils\n", + "raw_df = pd.read_csv('https://storage.googleapis.com/download.tensorflow.org/data/creditcard.csv')\n", + "raw_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Examples:\n Total: 284807\n Positive: 492 (0.17% of total)\n\n" + ] + } + ], + "source": [ + "neg, pos = np.bincount(raw_df['Class'])\n", + "total = neg + pos\n", + "print('Examples:\\n Total: {}\\n Positive: {} ({:.2f}% of total)\\n'.format(\n", + " total, pos, 100 * pos / total))" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "cleaned_df = raw_df.copy()\n", + "\n", + "# You don't want the `Time` column.\n", + "cleaned_df.pop('Time')\n", + "\n", + "# The `Amount` column covers a huge range. Convert to log-space.\n", + "eps = 0.001 # 0 => 0.1¢\n", + "cleaned_df['Log Ammount'] = np.log(cleaned_df.pop('Amount')+eps)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "# Use a utility from sklearn to split and shuffle our dataset.\n", + "train_df, test_df = train_test_split(cleaned_df, test_size=0.2)\n", + "train_df, val_df = train_test_split(train_df, test_size=0.2)\n", + "\n", + "# Form np arrays of labels and features.\n", + "train_labels = np.array(train_df.pop('Class'))\n", + "bool_train_labels = train_labels != 0\n", + "val_labels = np.array(val_df.pop('Class'))\n", + "test_labels = np.array(test_df.pop('Class'))\n", + "\n", + "train_features = np.array(train_df)\n", + "val_features = np.array(val_df)\n", + "test_features = np.array(test_df)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Training labels shape: (182276,)\nValidation labels shape: (45569,)\nTest labels shape: (56962,)\nTraining features shape: (182276, 29)\nValidation features shape: (45569, 29)\nTest features shape: (56962, 29)\n" + ] + } + ], + "source": [ + "scaler = StandardScaler()\n", + "train_features = scaler.fit_transform(train_features)\n", + "\n", + "val_features = scaler.transform(val_features)\n", + "test_features = scaler.transform(test_features)\n", + "\n", + "train_features = np.clip(train_features, -5, 5)\n", + "val_features = np.clip(val_features, -5, 5)\n", + "test_features = np.clip(test_features, -5, 5)\n", + "\n", + "\n", + "print('Training labels shape:', train_labels.shape)\n", + "print('Validation labels shape:', val_labels.shape)\n", + "print('Test labels shape:', test_labels.shape)\n", + "\n", + "print('Training features shape:', train_features.shape)\n", + "print('Validation features shape:', val_features.shape)\n", + "print('Test features shape:', test_features.shape)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stderr", + "text": [ + "C:\\Python\\lib\\site-packages\\seaborn\\_decorators.py:36: FutureWarning: Pass the following variables as keyword args: x, y. From version 0.12, the only valid positional argument will be `data`, and passing other arguments without an explicit keyword will result in an error or misinterpretation.\n", + " warnings.warn(\n", + "C:\\Python\\lib\\site-packages\\seaborn\\_decorators.py:36: FutureWarning: Pass the following variables as keyword args: x, y. From version 0.12, the only valid positional argument will be `data`, and passing other arguments without an explicit keyword will result in an error or misinterpretation.\n", + " warnings.warn(\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": "
", + "image/svg+xml": "\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n 2021-04-22T16:19:41.693904\r\n image/svg+xml\r\n \r\n \r\n Matplotlib v3.3.2, https://matplotlib.org/\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n", + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAGqCAYAAABeetDLAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8vihELAAAACXBIWXMAAAsTAAALEwEAmpwYAABQdElEQVR4nO3deXRkd3kn/O9zl9pUpVar1S21enW33d73DdtgGxscm8XsGBIIJslrwjvJG2ZgMhg4g3NC5oUMYUgOM0PIAgkwDnkPOyYJ4BjMEgLe8O7udrvdq3qR1FLtd3veP26VWq0uSaXSLdUt6fs5R2C1Sr/61dWt+71bPY+oKoiIiOLG6PQEiIiIGmFAERFRLDGgiIgolhhQREQUSwwoIiKKJQYUERHFEgOKupKIfEhE/nqOn/+GiHxvCeZxp4j8ZNr3BRHZFtHYU69RRLaKiIqIFdHYm2tzNaMYj6gdui2glF/d+bV161ZNp9OazWZ1cHBQ77zzTi0UCi2Pp6p/oqq/DUD37t2rIqKe503/+ZdU9ZXtfl2f//znP3/dddddN+15e1T1+bl+54c//KFu3LhxQa/xhRdeeAEAXNd1W13+P/jBD6aP/WJtrl6n1w1+0Wy6LaCoi337299GoVDAI488goceeggf+9jHOj2l2PI8r9NTIOo4BhQtuQ0bNuC2227Dk08+CQD41re+hfPPPx99fX248cYb8cwzz0w99hOf+AQ2bNiAXC6Hs88+G/fffz8A4J577sE73vEOAMD1118PAOjr60M2m8W//du/4Qtf+AJe+tKXAgDe+9734gMf+MApc3jd616HT33qUwCAQ4cO4U1vehPWrl2LM844A3/xF38x69xHR0dx++23o7e3F1dddRWef/75U34uIti9ezcA4Lvf/S7OO+885HI5bNiwAZ/85CdRLBZx22234dChQ8hms8hmszh06BDuuecevPnNb8Y73vEO9Pb24gtf+MIpr7Hub//2bzE8PIz169fjk5/85NS/33nnnfjIRz4y9f0Pf/hDbNy4EQDwzne+E/v27cNrX/taZLNZ/Omf/in27t0LEZkKwkOHDuH2229Hf38/zjzzTPzVX/3V1Fj33HMP3vrWt+I3f/M3kcvlcP755+Ohhx6adRkRRUZVu+mLutSWLVv0+9//vqqq7tu3T8877zz9yEc+os8995xmMhn93ve+p47j6Cc+8Qndvn27VqtVXTc41LHTLv0DAw1fxx133KFvectbtFAo6BNPPKHDw8N63XXXTf0cgO7atUtVVYeGhvTBBx9UVdWxsTF9+OGHVVX1gQce0A0bNpwy7kc/+lG1LEu//vWvq+/7WiqV9KMf/aj+xm/8hqqqvvDCCwpA3/a2t2mhUNDHH39cBwYGppbpu971Lv3whz88Nd7M55i+/KeP57quqqq+7GUv0/e+971aLpf10Ucf1YGBAb3//vun5pZMJvW+++5Tz/P0gx/8oF599dULXQVodp3ersb2K5ILrkTNeP3rXw/LsrBq1Sq8+tWvxoc+9CF88pOfxKtf/Wq88pWvBAB84AMfwJ//+Z/jZz/7GY4eGUEy14eX/PYfYd2OS2GYJ1fXJ7/91ygcPYCX/PY9KB4/jO98+E14y/96cOoxL/zsPuz5ybdx8x9+FqqK79z9Rlz9W/8V63Zciud//E3s++X38fL/9BmMvvAUfvaXH8FrP/71qbGf/qe/xxPf+Oxp8/d9H1/96lfxxBNPoKenBxdccAHe9a534cEHH2z4em3bxtNPP42LL74Yq1evxurVq+dcPtdccw1e//rXAwDS6XTDx3z0ox9FT08PLrzwQrz73e/Gvffei1e84hVzjjuf/fv346c//Snuu+8+pFIpXHLJJfid3/kd/P3f/z1uuukmAMBLX/pSvOpVrwIQHpF9+tOfXtRzEjWDAUVL5hvf+MZpG9NDhw5hy5YtU98bhoFNmzbh4MGDAIBL3/o+PPXtv8HPDr+AofOuwqVv+X+Q7lu7oOcVEWy+8hXY98sfYN2OS7HvF9/Hlqt/DQBQHB1BeeI4vva+W6Yer0HQcJxjx47B8zxs2rRp6t+mz32mr371q/jYxz6GD37wg7jooovw8Y9/HNdcc82sj58+bjOP2bJlC5544ol5f2c+hw4dQn9/P3K53CljTz+NNzQ0NPXfmUwGlUoFnufBsrgJofbhNSjqqOHhYbz44otT36sq9u/fjw0bNgAAtlx1C27+w8/itf/taxAR/Opr/+v0QWT+59l85Stw4JEHUBw9jNEXnsLGy24EAGRWr0PPwHq88dPfm/p601/8oOEYa9euhWVZ2L9//9S/7du3b9bnvPLKK/HNb34TR48exetf/3q89a1vDacrjSc8279PN/O5h4eHAQA9PT0olUpTPxsZGWl67OHhYYyNjSGfz58ydv1vQNQpDCjqqLe+9a247777cP/998N1XfzZn/0Zkskkrr32WgDAkWcfgu86MOwETDsJkdNX2WRuNUQMFI8fmvV5Vm8+G4nsKvzyix/H0PlXI5EJjxb6zzgPVjKDZ/75i/CcKoLAx4mDzzccwzRNvPGNb8Q999yDUqmEp59+Gn/3d3/X8LGO4+DLX/4yJiYmYNs2ent7YRjh3AcHBzE6OoqJiYkFLSsA+OM//mOUSiU89dRT+PznP4877rgDAHDJJZfgu9/9LsbGxjAyMnLaKbjBwUHs2bOn4ZibNm3Ctddei7vvvhuVSgWPP/44/uZv/ua0GzSIlhoDijrq7LPPxpe+9CX8/u//PgYGBvDtb38b3/72t5FIJAAAj3/9f+Mb738VvvWfX4NKfhwXveF3TxvDSqRw7qvehfv/9HfxtffdguN7nmz4XFuuugVHnvkltlx18nSeYZi4/vf+O04c2IX7PvwmfOP9r8Ivv/jxWef7mc98BoVCAUNDQ7jzzjvx7ne/e9bHfvGLX8TWrVvR29uLz372s/jyl78MADjnnHPw9re/Hdu2bUNfXx8OHZo9WGe64YYbcOaZZ+Lmm2/GBz7wAdxyS/ha3vnOd+Liiy/G1q1bccstt0wFV93dd9+Nj33sY+jr6zvl7r+6e++9F3v37sXw8DDe8IY34I/+6I8WfW2LaLFEu6hh4YZNm/XQgf3zP7ANhjduwsH9s5/OoeiJCO74y5915Lm/8p5r0U3vDepqTZykXpm66grnoQP7O7rBIiKipcNTfEREFEsMKCIiiiUGFBERxRIDioiIYokBRUREscSAIiKiWGJAERFRLHXV56CIloxhNVUbrx34oXCiEAOKqJHA44fCiTqMAUVz2rBpMzpVXoqIVjYGFM2J5aWIqFN4kwQREcUSA4qIiGKJAUVERLHEgCIiolhiQBERUSwxoIiIKJYYUEREFEsMKCIiiiUGFBERxRIDioiIYokBRUREscSAIiKiWGKx2C7AiuJEtBIxoLoAK4oT0UrEU3xERBRLDCgiIoolBhQREcUSA4qIiGKJN0k0y7AgIp2eBRHRisGAalbg8U46IqIlxFN8REQUSzyCIoqbDp5OHt64CQf37+vIcxPNxIAiihueTiYCwFN8REQUUwwoIiKKJQYUERHFEgOKiIhiiQFFRESxxLv4iOgk3uJOMcKAIqKTeIs7xQgDiojigUdvNAMDiojigUdvNAMDioiog0dvqtqR5+0G0k0LR0T+GcBAh55+AMDxDj13J/F1ryx83UvvuKre2qHnjrWuCqhOEpGHVPWKTs9jqfF1ryx83RQn/BwUERHFEgOKiIhiiQHVvM91egIdwte9svB1U2zwGhQREcUSj6CIiCiWGFBERBRLDCgiIoolBhQREcVSVwXUrbfeqgD4xS9+8Ws5fTVtGW8DG+qqgDp+fCVWYCEiCq20bWBXBRQREa0cXRVQgaIrKv+qKg5OunjkUBlFJ+j0dIiIulJXtdsIVHG85KMnIUhbRsfK489GVTFS8MJgcgP4AbBrtIozVidw4WAKabur9geIiDqqqwIKCK+mFRxFyfHRkzCQsiQWQXW04OHhwyVMVgL40w7yfAX2jDl4YdzB9v4ELhhMIWUxqIiI5tN1AVUXAMg7AYoukE0YSJqdCarjRQ8PHy7jRNk/JZimCwBAgd1jDp4fc7BjIInz1yaRYFAREc2qawOqLlBgshrAECCXMJBYoqAaK4en8kZLswfTTEHtcTuPV7HzeBXnrk3i3LUp2GbnjwCJiOKm6wOqLlBgohrAlPCIql1BdaLi49FDZRwtek0H00z133vmWBXPHq/ivLUpnLM2CctgUBER1S27c0y+AtVWk2MeYyUP/7Irj5FC6+E0na+AF4RHVEREdKplF1AA0K4DkbKnMGSBH/1ugrEs/wpERIvDTSMREcUSA4qIiGKJAUVERLHEgCIiolhiQBERdYnHH38cInLa14ZNmzs9tbZYNp+DIiJa7lzXxR1/+bPT/v0r77m2A7NpPx5BERFRLDGgiIgolhhQREQUS8syoNpV0y5pCrb3JxB1EfLepLE8/xBERIuwrG6SSJqCbMJoW6mjNRkTq9NpXDiYxpNHKtg5Wl1UTb7epIHL1qewLmsjBi2tiIhiZVkEVGJaMBlt3NKLCEwBTAAXDaVw/mASj49UsHvMmWql0YxswsCl61NYn7PbPmciom7V1QG1VMHUiGkITAguWZ/GhYMpPDZSwZ4xZ85CshlbcMlQGhtXMZiIiObTlQFlG0A2YcIy0PF275YhsAzB5cNpXDSYwmMjZewdd08JqrQluGgohS19CQYTEVGTui6g+lIGbKMz7d3nUg+qKzdkcPGQ4tFDZYwUPFw0mMQZ/UkGExHRAnVVQFmGxDKcpqsH1dWbMlM3azCYiIgWruvubo5zOE1nGQIBw4mIqFVdF1DdpFvClIgojjoeUCJiisijIvKdTs+FiIjiIw7XoP4AwDMAejs9ESKiODNMs2Hl8uGNmzowm/br6BGUiGwE8GoAf93JeRARdYPA96Gqp30d3L+v01Nri06f4vs0gD8EEMz2ABG5S0QeEpGHjh07tmQTIyKKg+nbwE7PZal1LKBE5DUAjqrqw3M9TlU/p6pXqOoVa9euXaLZERHFw/RtYKfnstQ6eQR1HYDbRWQvgH8AcJOIfKmD8yEiohjpWECp6t2qulFVtwJ4G4B/VdV3dGo+REQUL52+BkVERNRQHG4zh6r+EMAPOzwNIiKKER5BERFRLDGgiIgolhhQREQUSwwoIiKKJQYUERHFEgOKiIhiiQFFRNQlstlsp6ewpBhQRERdolAodHoKS4oBRUREscSAIiKiWGJAERFRLDGgiIgolhhQREQUSwwoIiKKJQYUERHFEgOKiIhiaVkGlOsrXF87PQ0iIlqEWHTUjYrrKwqODzcIv7cMIJcwYZvS2YkREdGCLYuA8gJFwQngzDhq8gJgvOLDNoAsg4qIqKt0dUDNFkwzubWgShhANmnCMhhURERx15XXoPxAMVHxMVb25w2n6ZwAGCv7OFHx4QW8RkVE3cUwDGzYtLnT01gyXXcENVn1UfEWFy6Orxgr+0iagmzCgMkjKiLqAkEQ4NCB/Z2expLpqiMoL9BFh9N0VV8xUfWhyqMpIqK46aqAagdejyIiiqcVH1BERBRPDCgiIoolBhQREcUSA4qIiGKJAUVERLHEgCIiolhiQBERUSwxoIiIKJYYUEREFEsMKOpaLFFFtLx1XbHYqLHzbndSVWj4HwAAEZasIlpuuiqgLEOQsQSliArGpqywmjk3bt2jHkwlN0DZDdeDjG0gbQMCBhUtb4ZpYmj9cKensWS6KqCAsOFgJqEoOgHKLQZVyhL02Gyz0U3qp/NKrqLkBpj+ly+6AUou0FMLKoBBRctT4Ps4uH9fp6exZLouoADAEEEuaSJjK4pu0HQLDvZ/6j71YCq74d96tr+0Aii4AYou0JMwkK6t2Qwqou7VlQFVZxqC3qSJnnmCKlELJrbW6B5TweSFR0zNNkBWAAXn5BFVikFF1LW6OqDqpgdVwQlQrd34wGDqPvVgqnjhTkezwTRToEDeqR1RMaiIutKyCKg60xCsSpnwals1BlP3qe9gtBpMM9WDyg8EPQl+qoKomyyrgKpjMHWvQBFZOE3HDxMQdR/uUhIRUSwxoIiIKJYYUEREFEsMKCIiiiUGFBERxRIDioiIYokBRUREscSAIiLqEoYRdl8QEWzYtLnT02m7ZflB3UAVqoi8KGygYYWDqD8IrKrwFTCle0rxeIG2Zb5S+4r6g7XdsVSJ5hYEAe74y58BAL7ynms7PJv2W1YBFeipbTiiaquhGhYsLblhL6KEEbb9WGxQqWpYc84JEACwJBw3YcZ3c+r6ioLjww3CjX6PLUjb0fXUyiUN5NC4rUYrBGG/qIwd32VKRI0ti4AKVFFygtMaGVY8RcXzpxoTGgvciM4MpjonAMbKfsvFaFUVVT8sbDu9rI+nwImKD8sAcgkTdoyCygsUhaoPJzj5b2GLC0XR9dGTEKStxQdV/fczNpC2zanGhAsNKgGQtgUZ22AjQ6Iu1dUBFUwLkLnUgypthQVD5wsqVUXZDVCcZ8Po+Iqxst90nylVheMr8s7cVbq9ABiv+LANINvhoPKCMEgdf/YJhy0uFCXHR0/CQMqSSIIqPEIzkLHR1N8ZYDARLScdCygR2QTg7wEMItzGfU5V/7yZ353tyGY+ZU9R9nxkLEGmQVCFp9wCFJyFjVv1FdWyP+spxXowFZwAc2znT+PWgiqqU4oL4Qenti5pRoCTLS6yCQNJM/qgmquTcn0HhMFEtDx08gjKA/B+VX1ERHIAHhaR76vq03P9UtHxFxxMM5XqQVW/fgI0POW2UI1OKTp+gHw1HLfVoRd7SnEh/GBhXYobCRSYrAYwBMglDCQiDKpswkBPImzLUZ8jg4loeepYQKnqYQCHa/+dF5FnAGwAMGtAeYGi2MRpnqaeH0Cxdv0k6rvG6kFlSLStI+qnFFenDNhm9J8QKNTCPyqBAhPVAOlaYEcRHtODKmsDEDCYiJapWHwOSkS2ArgUwL83+NldIvKQiDw0evx4W56/Xb2C2tHXCGhfv6vFHDXNJRnBNamZDBGI1P+f4UTL1/RtYKfnstQ6HlAikgXwVQDvU9XJmT9X1c+p6hWqesWagYGlnyDFFoOJVoLp28BOz2WpdTSgRMRGGE5fVtWvdXIuREQULx0LKAl3f/8GwDOq+qlOzYOIiOKpk0dQ1wF4J4CbROSx2terOjgfIiKKkU7exfcTsEQaERHNouM3SRARETXS1aWOiIhWFJGTVcwNCxs2bcbB/fs6O6c2YkAREXUL1al2G8Dyb7nBU3xERBRLDCiaou0qqdEm2sYJt3NsImoOA6oLtaOEkqrCatPa4PrRb/BVw4LBYffk6MZWVfjBybGJqHO66hqUaQgSpszZm2gh6v2WDMGiK3hPZwpqVcfDFh9RFWA1gFo/q0iGA3ByQ19yA7jBvA9fsLQlSNvR1curzzdfDXCk4AEAhrIWssnFVTNXVQQajrtztIqKpzhjtY3hnD1V84+IllZXBZQA6EuZp7Qdb0WjjrW9SRM99sJ7IE2fmzRoL5FNABm7ccffhYwdVcfauunB1ErH2vnM1hurVfX5FqsBRgreKX+jfRMukqZgKGe11Haj3mJk5/EqTlROrlTPHXewd9zF9v4EBrMWDGH9P6Kl1FUBVWebgtVpa8FBZUnY+C8xS4da0xCsSplNdZGdzpC5G/QZIsgmTWQSOmfDvZnCRn21nlURBhMAlNyw6WO3BFPJCYNptqPcqq948YSLlBUGVTMddf1AUfYCPHfcwXjZn3Xcp49VsWfcwZn9CaztsXhERbREujKg6upB5fiKQtXHbNt9U4Bc0oBtNHeqyTIEffMEVf2IaSGdYw0R5JImMvbcTQEFQKbetjziYCq74XNHHUzNtr1vVj2Yym6Aw/nZg2mmiqfYO+4ibQvWZ22krPDvNH05+oGi6imeG61itNQ4mBqN++TRKtK2g7P6k1iTMXlERdRmXR1QdQlTsDptwg30lO619WtBrXZ0nR5U+erJI7XFnnIzDZk6pTgzqOpHTFHtoU8FkxceMUV9g0XUXX5VFapAxVcczrsot3j9ruwq9ow7yNiC9TkbCTP8d8dX7Byt4lixuWBqNO7jRyrosQVnrUlidZpBRdQuyyKggHADkTAF/emTN1FE0WocCIOqfkrRCxSpiBrwTQ8qx1ckLYn81FG+dgQYdTD1WIKkHX37+dGSh3w1DO4olFzF82MOTAHcQHG0xWCaqegqHhupYDhn4ZyBJJhPRNFbNgFVJyJIWu3ZWtimnHJjRVRMQ5Duui650YcTEB7pRRVO001WA+Sd6Mctu4oA/LwGUTvwfUVERLHEgCIiolhadqf4iIiWrenVzAHAsE67Hj68cdOyqXDOgCIi6hYzqpk3spwqnPMUHxERxRIDioiIYokBRUREscSAIiKiWFqWAaUR9whaCu2abzvHbcfYUfd3qmvXfFXD6iLdpNveG7RyLau7+FTD6tRFJ3wDRl1wtR1cX5F3fHhBtAVXq15Y/TtfDcK+V0kz0ioY49Vg0bUOp/MDxb4JBy+MuwDCtiVRlJRSVYyXfRwueAg0unVCNSxP9ULZw+5xB2f1J3D+YAqpdnV9jIAfnGwnU++F1o7KKERRWRYBpaqoeGEri+nFbIquouT6kbesiEKjViFVX1Et+4tqWeH4AY7kPUxWT1YsdwNgvOwjYYYbJSuijZKvwEQ1mLeNyZxjBIoDky72jDtQPdktOCxNBPQmm68WP52q4kQlwEjBhT9t3FIE64TjByg4AfwAU8t415iD3WMOdgwkcf66JBJmfIKq3u9qetkrNwDGKz6DimKtqwNKVVH1w73C2c6yKICCqyi6PrIJQSrCpn+t8IKwNchcZeEqnqLihUGVTTRX2dz1FUcKLiYqs7fScHxgrOyHFciT0dXS8xQ4UfEbNoKcTaCKg5Munh9zEOjpbewVgCowUQlg1NqlNBNUqorJaoBD+VODafq4QLjzUnT9BVWld3xFsXa0O3MZ159n5/Eqdo5Wce5AEueuTXV0w98omGaqB1XUVemJotCVAVU/vZKfI5hO+x0AeaceVK3tlS/GQpsgAieDKm1JrdX76fP1fMWRoocTZb/pHk+Orxgr+eEpxWR0PZy8JvbKA1UcnnSxuxZM8y0ORe1IrRZUvcnGpxRVw/XhUN6DF8xfvX0qqJz6EdXspxQX0hjT13DwZ45V8ezxKs5fl8LZA8kl3fAHurDGmEBtnSgzqCheui6gql7t9EqL13kDDU8fzdcFNyrTz/u3quwpyp6PjCXI1ILKCxTHCh7GFhBMM1V9RbVUO6UYYbPBqb3y2rUvyxCoKkYKHnaNOvADXfDfrx5UJyoBTCO8RpW0DKiGy/dQ3oPbRDA1GlcVKDgBiu6p64Trhzs0TgsdOupB9eSRCp4+WsEFgynsWJOMbBk3Eqii5AQoLaKCfT2oom5ASdSKrgooL9BTrq0sRj2oLAH60mbkfZjqe/RRtrsoeYqS58PxAkxUwt35KEavH6llEwbSdnSB7QThKcWqF2DvuAuvhWCaSREeqZ2oBFD4mKwEcFoIpkbjqgL5aoACANNAU0dM8/FrR4lPjFTw9NEqbjmzB7lk9G+7ouOj2GJzx0bq10Ozi2jMSbRYXRVQQDQb5OksU9COt54XtKcXU/3ifzskI2rEONOBCXdRR5CNKIBCNUClDeMqgCDiRewpwiNg24x24Joow2m6pMlwos7puoDqJoLoA7WduBk6qV1/u0CB9kQUrQgzq5k30qDC+XTdVO2cAUVE1C2aqGY+n26qdh6fD2sQERFNw4AiIqJYYkAREVEsMaCIiCiWGFBERBRLDCgiIoolBhQREcUSA4qIiGJpxQdUu5qhCrRNlQjaV5vC1+i7raoqLEPaMm9D2lP9IqwZWC96FB3HV4hE/zdU1bZVAfHb0Im43t2YnX1pPis6oAwBUlb0RWID1QW1OljIuKOlAMeLHkpOEPkbfLzsh00fI9h41Fui7Blz8PVnJvHz/SVUvAB+hHsEadtAb9KAGVFQeUHY7+n7uybxD4+N4eCEC9ePJqgCVRwrevjCo+PYNVqF5+uig6q+kS+77dkZSpoCU6Krz1ifrxsoxis+Jqvh+sCgotmsyFJHBoCeiFqK16mGG4mF9uFpdtyxko8jBW+qGvikE6DgAjnbQCrCCuQlV1F2faTtsAUHgAWNXd8AHc57+NazeeyfcKd+9sK4i+39CVy6PgXLkEW3chARJC1BwhQ40xpXLnTpe4HC9RU/3pvH00cqU7//j0+MY33Oxsu3ZdGfsVtqPljvzVSaChHFfTsL6EuVcMPWHmxelYBpYEHV9Osb9LKnKLnN90RrVjt6QgWq8IOwwr9XK8Tr4WQH6axtALKw5UDL34oKKAEW1EG1GfUAKblBpHuy9XHHy2EweQ2qawcKTDgB8m7YHymqwA1fTxhUmYSBjB3++3xjO36AY0Uf33xmEntPuKf9XAHsHnOwZ9zBjjUJXDSUginRBlW9w7I2EVR+EIbpz/YW8OSRcsNWIIfzLv7Pr8axcZWNl2/LYVXKaiqoVDXs2us0bg9zohLgm8/msSZt4oatPdjQa8My5l7G9WCqeGGn3MiDaVr/rqioKrwg7LflzjLhmR2kBQvbKaLla0UElADosQVpO9pgAsINecmNpkdVfVwFMFH2MVLwmupJFCgwUQ1QcJpvjd7UXBAeEZac8IgzPUtQOV6AsbKPbz2bx+4xp6n5Pnvcwa5RB2cPJHHhYAqGIJKgSlmCpClTG/FGQeUHCi9Q/HxfEb8aKcFvYhkfmHDxxUfHsLkvgZdvyyGXbNwxuH7KLT9LMM00WvbxtWcmsbbHxI1bezCUPT2o2h1Mc3VAblWgYY+uhXSRntlBmkFF0k3nfy+57HL93o//venHC4CMLchEFEzTl1XZrW0AFz0qAOjUhnSy6mMk7y+oNfxM5hyt0RfDECBjh00NAcANFBOVAN96dhLPHZ8/mGZjGcB5a5M4d21qwae75qKqKHsBik4Y+n7t5odfHijikYOlhkelzdrWn8CN23LI2AZsM+zsW/HCYFpMgAxlLdx4Rg/WZixYtSvEVT88Eou49RUsA8hFGEz1nauFBtNspt67te+XcVg1/cLEMMKNxWIYFhB48z5sidtyNFwGyzKgbAOwjZPt0aPi+gEcHyh70e7Fur5iouJjtORH2tjPMoA1aTPyN7YhwJ5xB88cq+Kpo9XIxrUNwS3be7A6E+2BvariqaMVPD9awSOHyovecE53+YYMLh3OoOwtvqvvdFv6bNx6ZhYVb/FdiGdKWUDKMpGI8IgJAMpuGEpRrsMCYFXKgG20p5lmTDQfUCK62HYbzfrKe65dyhtYGi6DZXkXn22GpwiivuAaKNpyUVoBHC54kXedXcwRwlwCBR7YU4w0nIDaEVnVj3RMINzznqz4eOhgKdJwAoD9Ew4mqtGvEyN5L7zLrQ3bh2wi+nACwh23dnRO9oJlffREc1iWAUVERN2PAUVERLHEgCIiolhiQBERUSwxoIiIKJYYUEREFEuzfuBERDYDOKqqFQnv8bwTwGUAngbwV6o6/ye9iIiIWjTXEdR3p/384wBeDeDfAVwJ4HNRPLmI3Coiz4nIbhH5YBRjEhHR8jDXR/YNVS3V/vsVAK5U1QDAl0TkV4t9YhExAfxPAK8EcADAL0XkW6r69GLHJiKi7jdXQO0XkZtU9V8B7AWwCcCLIrImoue+CsBuVd0DACLyDwBeh/AUYssKToDdoy4EwFkDychK/VS8AIcnXZQ9jbRVhx8oSo6PgbSJohu2ZYhCvUBu1PxA8fxYFbYpWJ0yIqt2oKo4fvw4/uIXu7Emm8bbbrwI29f3L35gADv3HcY3vvNjHJ8so3fr+UitHorkb+cWTmDnY7/A0/90HC972ctw4YUXwjTNRY+bMAVn9tsYK4VtT6Iq2SUA0rZAUGtyGHF1hr6UCbdWTT6qghIJMyz+2475UvzNFVC/A+DvReQeABMAHhORxwD0AfhPETz3BgD7p31/AMDVMx8kIncBuAsANm7aPOtgRSfAobyLqquoV/h5YqSCtG1gx0AC/enW6rtVvQAjBQ+F6snCsIVqgKIDZBMGki0GVRCEb+RKrXeUaQhyCQPZRBiyrQZVvUBu1NWgAw2bDz56uFLrNgskLQMDtRYXky2W+1FVjI6OYveuXahWq/B8HyfyJfzp//cgtq9fjTtuuBhb1vW1NOc9B4/i3n/+CfYcOgbHDS+Zju98CGYyg1VbL0Cyb11Ly8ctTWJy5y9QOPIiRMMGj/ff/wM8+OCDePnLX47zzz8fhrHw+49sA9i2OoGNvTYMCcv8lKfaniyu6PFSVAg3RJAwgf60uegCt7YhyCUNGLUeUd1UMzRq07eBK82sxWJF5H8CuBfAGICzEIbZAQC/rJ3qW9wTi7wZwK2q+ju1798J4GpV/b3ZfqdRsdiSGx7ZlOboxWRIGCY71iTRl25uD9fxA4zkPeSrs1csD9/sYYuLZiuH1xvYlecIoHpV6Hx1Yc0PM3b0/XQCVbx4wsUjh8pwA521vp+qouopJpus5q2qGB8fx+5dO1EqV+D7p9fgEwFs08TZGwdwx/UXYcNAb1Nz3jdyHPf+y0+xc98IXNdr+PczTBNWKoveMy5AatXapsb1ygVM7v4l8of2ANq4o3EiYSOVTOHlN92Ec889t6m/g2UAZ/QlsHmVDZmjad9UP7MFBFWnWle02iKk3vpjvt5Yy8zSVjNvVpNVz1s1o1r6wqqZi8gfAHgbgPUA/hHAvar6aFSTE5FrANyjqr9W+/5uAFDV/3e235keUGU3wOG8O9VKoRlGrQ3FjjVJ9KYaB5XrK44UXExUmm+lIbWxs3MEVaCK0gKPjMIW2UB+ni69aSvc24xyI6Sq2D/h4uFDZVT92YOp0e/N13YiDKZdKJaK8JtoxmSIwDQFF24ZxFuuvxBDq3MNH3fw2Bi+8i8/w5N7DsDzGwfITGKYSPT0onfrhUj2Nj6l6FVKyD//ECYP7IJAEQTzzzmRsJHJ9ODmm2/GWWed1fDvYgqwZZWNrasTU0cK88639v/zBVVcmv81G1SWEe5E2rWeYCsonICYVjNvtxnV0ltrtyEiWxAG1dsApBEeVd2rqjsXMzkRsQDsBHAzgIMAfgng11X1qdl+55LLLtdvPfBvOJw/9ZTbQhkSni8/a00CuWQYVK6vOFr0cKLstzxuPahySQN2LahaCaaZtNb8LT/tlCDQvmA6mPfw8MEyyl7QckX0Ro37JiYmsHv3LuTz+aaCaSbTEBiG4NLtw3jzSy/A2lU9AIAjYxP4x+/9Gx7duRd+ECBo4VyjGCZSuT7ktl6IRLYPAOBXy5jc8wgm9z0LQ9DwKG8+CdtGrjeHm29+BbZt2wYRgVELpjMWEEynzbf2P1lbkJoWVClL0GMbcx6JdcL0NvXTuwyv8GCqY0BF0Q9KRC4F8LcALlLVRV8NFpFXAfg0ABPA36rqn8z1+HMvukw/8/UHI+teawiwOm1iIG1ichGBN1M9qGxTUK0FShRj14Oq7AZI2+H5+Sjf0EcLHv79QAlFt/VgmklVcWS8gEeffAYTExPwmzj6mI9pCAwRXHLGIPzyJB59bi+CIIC/yJ4XAgCGiWTvaogqCgd3wRBtKZhmStg2+lb34T+++224fNtgZI0Z66eZ1/aY6E9bka8TUZsKKldhGphq+xHnOS8BBtQsy2DeOwdqRzq3ITyCuhnADwHcE8UEVfW7CD9v1RS/QfvuxQg0vLnCivhNrQjn6i/g+lEzRASmhO3X2/GG/vGLxQVd82qGiODpZ5/D2Ph4ZGP6gcKH4t+f3AmtFCNbJxQAAh+lYweglTxUFVF1p3JcF0lRXLZ1INLW6gpAFRjIWF2xka/PMW2f+j1RI3NVknglgLcDeBWAXwD4BwB3qWpxiea2JLrx7dGuN3W7Lr226w4sjXiHZTrDEPgRN98zDIHn+0jY0XYM7kYMJmrGXO+UuwH8HwDvV9Xodn+JiIiaMGtAqepNSzkRIiKi6VjNnIiIYokBRUREscSAIiKiWGJAERFRLDGgiIgolhhQREQUS/zEIBFRtxDBV95zbadnEQnTTs77mBUfUKptrMzQVU3WFJYhEDRfHb5ZlmXBMKSlIq5zEcMA2tAryDTNyBruTed4PqwIGho2ogDQhvWtvmy7Zz1e5lSxnGrxzaerTvEFqggi2hiFVaSBoayJ9TkLlhF+HwVVRdkJMFEN4AUa+2ZrfhA2HFzXYyJp1Yp3RjBuoIqKG6B3eBsy/UMQMVpq5DeTaRgQ00TvpnPQu/k8GKYdSSdbyzJhWSauvPwy3Hrbbcjlckgk7EWPKyKAGBj1U/ivX30Ee48XUHGjqvIXen7UQcEJmydGsb4FqnB9xUQlrKCvEY1LtBBddQQVKDBa8pGxW+8uagCAAJtW2djal5gq3NmfNjFe9nGk4EEVaKXmdqNeSBXPR9IM22KYMas07QeKshfg2eMOxsrhBrM3ZSIThC1CKp6G7cEXOG6gCs9X7DxewZGCCwDIDm5BZs0wiscOoDR+FCJY8BGVaRgIIMis3RAGXi3setafgeLhPZg8sBMGFl593DJNQIBLzj8HL7niEqRTKQDAhRdcgKeeegoP/Ou/wvVcOI67oHFFBAqBvWodzMHtMBIZPHmkhN/78kO4bEs/7rrhTAxkk0jZiw/Xqh82lkxZgvU5K+wVhYWvb0GtYn7BCeDUDiMdR1F0gR7bQMo6+dqI2m1B7TY6bdv5l+rH7n0AQL21uYGM3Vwn23pbgg29YR+exCwVpQNVjJV8HC16TRcjVVVUfUW+OneL66Qp6E1G3yZjofwgnO+zx6s4Xpp9Y+4FYe+eapMVzgNV+IFi1/EKRvLurMvOdx2Ujh1A6cQxSO335hIGE5AdGEa6fz2MWY6WAs9F8dBuTB7c3VT/Jss0AAguPPcsXHPlZejJpBvP1/fx+OOP40c/+hF835s3qKaCqXcNrMGzYCR7Zn3sVWeswV03nIm+TCKSoKpL24L1WRspW5pq6xFMa47pzLES16vpJ9kmI0pstxFFP6hOmx5QdYJwzy49S1DVg2l91sK2/gSSVnOnmAJVjJY8HCv6swaVqsLxw9NjC7lmkbIEucTSB5UfhPN9brSKo8XmjzJcX1F0fLj+7MvBC4DnRys4NOk0fcTlO1UUj+1HeWIUwOmdrE1DEKggO7Ae6TXrYZjNHfAHnoPCgV3IH94THlHN6EFlGgIRA+eetQ3XXX05ctnZA2Q6z/Pw6KOP4ic/+TECP4DjnhpUAkDFgJ1dDWtoB4xUtqlxBcC1Z67F/3X9duRSNpIRBlXGFqzP2UiaYbPHmXTaEVN1ASuxKWGjQfZzigQDarkGVJ0gfMOkrJNBZQgw2GNh+5oEUk0G00x+EAbV8dLJoKoHU95ZXGO/dC2opM1B5QcKL1A8N+pgpOC1PM7MoFJV+AHwwngFByacWdt5z8dzKigd3Y/y5BiAcIdCVdDTP4jMwAYYVmtnon23iuKB55AfeRESzhiGGNixbQte+pIrsKq3cev4+biui4cffhg//elPoRrAdT2IYcDKrII5tANmurelcQ0Brt8xiN9+2TZkElakQdWTMLA+ZyFR60pcP2Iquqd2aV4oywCytnFKjyuG1YIxoJZ7QNUZAgznLKxOmdi+JomMHc19IH6g2D/hYLTkLzqYZsrY9aCK/o09XvZwMO/hcN6L7O48x1fsG6/iWMHFvkUE00xetYzC0f0wLBs9azfCtBZ/gwIA+E4FcmwXsqaP619yBVb3rYpk3Gq1in998Kd48rndsNZtg5npi2Rc0xDcdsEw7rrxzMjbtucSBoZyFqq+LiqYZrIMoC9ltnTdixhQaLWjbrcJFMglTVwwmIr0jWIagmzCxN4TbqThBAAVT5FLRDtm3cOHK5EFSF3CFOw8XsFEJdo70axkGv2bd0Q+XzORwlkXX4nLN2QiXSeSySQuvPQK7AtWoxrhXXl+oHhw51H81su2IWFFe1t63gmQrPiRB58XhPO2za66MZhijmsTERHFEgOKiIhiiQFFRESxxIAiIqJYYkAREVEsMaCIiCiWlt1t5kREy9YyarcxvHHTvI9hQBERdYsubbcx40O5TeMpPiIiiqVlF1CGAPmqj8ePVFB0oiv54PqKQ5PRV5FQDevb7R5zMFHxI+u5o6o4nHcjr8pQ95LNPbhwKA0rqiZaADzXwfixEeTHj8H3W68ZOJMhQNFVPDZSQSHCdQIA+npSeM0VZ2K4v7nCsM1KZ3P47EMn8KuRSmQ90ACgN2mgP20ibUVbScLxFftOuBjJO/DbtdLRirNsTvEZEhatTFoCxweOFX2MlkpYmzFx5pok0i3W5PN8xd4TDvZNzN4+ohWqirIboOiGoyqA/ZMubCPs59NqbT5VxdGij52j1am2Ca30dJpNfaz+jI2+tIWz16bxzNESnj1Wgd/itt9zHZQnx1GtlGtdYYFKqYhMTxbp3OpZ22vMO1cBskkLCcuEGwhGSwHGymWszZjY3p9AT2Lx+2e5dALZtI3XX70Do/kSfvTkfoycKLY83qpVqzA4uA6mYWD/pId/fGoS/7TLwGvPzuK8tcmWSzXVa/DZZth+wzYUPYmwivliavK5viJf9ad23CqeYqxcxZqMiYGMBTPCHRhaebq+WGyjKuYztVLV3AsU+yYcvDgeBlNUO4VhU8MwmGZr42FIWO9uOGchm2hu46yqOF7y8dxoFVVPI29ZPlfIBYHCV8WTI2XsPN587T/fc1GeHEe5XApbzc/4PcMQqALpnhzSvX0wjOaWhQiQTVhI2CYMkdPmXd9mDvaEQdXKzkvj5RE2ajx6oogfPbUfxyZLTY/X29uLwcHBsEeVnD6fhCnoSxm4/ewcdqxJNB1U2Vow1auYz9RqVXPXVxRqle0bqbe5WZsxsabHirz23zKz7IvFNnENanlVM5+vD9RMzfaFCquWu3hh3Ik8mKq+ouAETTdCNCRscjics2fd21dVjJXDYCq70QfTQtQ76T5+uITnx6qzLjvf81DOj6NcKjYMpplMEQQAMtlepHJ9s7aNFwCZpIXULME0U727crhO2E3tvDR1NKphe5PDY3n86On9GMtXZn1oLpfD0OAgLMtsGEwzJUxgIGPh9rNz2N4/e4Xh+fpAnT7l5vpCeYGiUPXhNFkbt/6+W9djoj/DoJoFA2q5BNSf3PvAgjrpzjRbZ91AFQcmXOwZD9tHRB1MxVob+FaGFYQdUodz9intQ8bLPp47XkXRXVjDxGafs9Uh/UDhBopfHSrhhbHq1Di+76EyOY5SqQgDuuBlHDYwBDK5VUhnV021fBcAmYSJVMJqKphmqm+/N+QsnLE6gWSD6zMtLY9aUB04PokHn96PE8Xq1I+y2SyGhgZhmdbU61iIhAkMZS289uwctvadDKqpTrpWc8E0U6OW70A9mObutjsXQbic12UtrE6bDKpTMaCWQ0CdecGl+r+/8WAkLRPqe88bcxaSloG9J8JginJDX/UCFBYRTDOFR42CbMLA3gl33hbzrT5HVEPWO/j+Yt8Edu0/hlIx31IwzVQPqp7ePvT39yOTtFsKptPGlfC1b+oNj7ItQ6JZHrWg2nv0BH6xZxR9/WtgWXZLwTSTbQCbVtn49YtW4ZKhFNK2EUlPpnpQnaj4GC/5C+q2O5d6UA1lLfSlTfaOCjGglkM/KENaO2pqJAAABfZNRne32HReoJioRnvHmCLs57N73J33sYt5jqiYhiBtCCbHjqNSzAOqiGKJ1O8SS1kGepI2EEE4ASd3TkqeTh1VRbI8RGCZguE1q7CulIx0GbsB8MK4iys3ZGAb0TULNERgCCINJyBcnr6GZzGI5rPsbjOPC9UF7BYtc54fRHqrdJ0YRlu2dO16UwQQtKOfnwKRhtN07fi7AeHOC4+eaD4MKCIiiiUGFBERxRIDioiIYqmrbpIgIlrRurWauWFNXXMc3rgJB/fva+rXGFBERN2iS6uZT7eQgOUpPiIiiiUGFBERxRIDioiIYokBRUREsdRlAdU9dQPppPZVDFC0Y51o11omiK4I8UztGrddf7pAEVlzTlq+uiqg8ifCpnZB0GSt/3kIgFxC0J+uFdiMZNRwnN6kYGufDcsIi5BGwRAgaRk4e00CKUsiG9c2gLQluHJDCmt7TLTY2/E09fYbw+vWIZVOQ0QiWcaWIUiYBi5Zl8Clg8nIlnG9kCn0ZL2/qNYJU4ChrIlbt/cgYwuabPM1r4QpWJ0y8NN9JThegCDipNq0KoG0Fc3fbbqRvId8Naj1o2JQUWNdVc1cRHRo01bc9V/+GFfd+GuwE4mmm9idMg6AbNLA+pw11QPICxRHCh7GSmH4tbJUpvo39Z7s3xRFfylDwg3ccM5GbzLstKuqOFzwsHM0bLHdSj3PcMMuuHZzBhcOpmAZ4bj7Jlw88EIR+aoPt4XqrqrhfHYeK+PpoxW4tcl5ThWlyTE41WpLGyXTAEwx8LIda/GOa87A2lwKQNh25J92FfDE0UpLrVLqLVhWpwyctSaJXPL0hG61qrkpQMY2sGNNAmsy4ac6XF/x8wMlfO/5IgLVpnsrTZc0w52V1+zI4uKh1FT7it6kgfU5G6aBSFtaFBwfI3kPVU8jPcJMmoKhnIWeRDRV2LvUsq9mPt0slc27v92GiExNdtO2HXjP3X+CS665AYlEsqnWBQKgJxE2cputi6rrh0E1XvabfiMaAtiGYLjXQnaWVu1eoNh3wsGLJ5rv0GtI+LU+a6Mv1XjcQBWHJl3sGmu+XYhV23i9ZGMaFw+lYTc4/FBVvDDu4od7Cyg6QVNBVQ+m50creHKkPGvvINepojQxCtdxmgoqUwSmIXjJ9jX4zWu3YWhVuuHjjpc8fHdnAc8crzYdVKYAq1IGzlqTQG8yosOa2rgpS7BjTRIDmcZtJRxf8dN9Jdy/pwhVhdPEMk6Y4dHXq87K4rL16VlbqvelDAxmbZiClvpCNaIaNtwcyXtwg8W3TZkuZYVBlYmoXUiXYUAtt4Cq27rjPLz3wx/H+Ze/ZNagmmr413tqw7+5OL7iSMHFiXIwa1AZEp5uGu61kJslmGbyfMXeEw72TYQtMxq9yQ0J5zyUtdDfZM+cesPF3eMOdJagsoxw3Cs3ZHDZcHqqWeNcVBW7xhw8uLeIsts4qOrBtHesiidGSk23DnerFRQnRuG5bsOgMgSwTAOXb16NO1+6HRtWZ5oa90jBw30789g95sALGh/5mBK2Q98xkEBfKtpgSpiCsweSWDtLMM1U8QL8+MUSfri3BFVtuIwTZriu3XpmFldtmD2YZlqdNjGYtWo7O9EFVb4a4HDBhR9Ee/1resNFkRUTVAyo5RpQdWedfwn+7498AmddcAkSqfB6R6NTbgvleAEOFzxMVk4G1dQpt96Tp9wWPK6v2Dvu4MCkC2jYn6oeTIO1YGplg+IHiv2TLvaMOVO9d0wJT2FdPpzGFcPpWdvdzyVQxXPHq3hwbwmOXw8qhR8A+05U8avDZZRbOB+oqnCrFZQmRuF7HgJVCADbMnDhhlV490u3Y+tAdsHjAsChvIvvPJfH3hPu1EbflLDp41kDSfSnow0myxCcPZDAYI/V0jpRdgM88EIRP9lXggLwgjCYDBHcsr0HL9mYaXi0Ox/ByaCSiINqshpgJF8LqkhGDc1sWa+qyzmsGFDLPaDqzr30KvzXT/8NNmzeig29NrIRnbapegEO5z1UvABDWRurZjnl1sq4e8YdHCl4WJsxsSZjRbIB8QLFvgkHh/MezhlI4qqNmVlPay5EoIqnj1bwnZ15jORdPHaohGIz56bmoapwKmXYzgQ2rErht1+2HdvX5RY9LgDsn3Dx1acnMVH1cdaaBNZE2MnVMsJgOrM/gfXZ1oJppqIT4Ad7Cnj8SBUv3ZzBdZszTR3tzkcA9GdMDGXDa2FRLQNVxUQlwMFJN/I7IHsSBjb2hjcbMaAYULHWTEABwO/9xw/gQ/d8DKYZ3R5yO/mBYrQUzZ2JM523LhnpxfK6O+59AXvGncjHfc9Va/CSTa0dMc1l34SDnaNO5Ldjr06ZuHR9eINJtzh3bbLpU4QLsXu02vTp3YVYn7OmbjBZphhQsyyDrrrNnIiIVo6O7JaIyH8H8FoADoDnAbxbVU90Yi5ERF2jW9ttTDO8cVPTj+3UcfP3Adytqp6IfALA3QD+S4fmQkTUHWLUbmOWU3WR6sgpPlX9nqp6tW9/DmBjJ+ZBRETxFYcrj78F4Cuz/VBE7gJw19JNh4goPlbyNrBtASUiPwAw1OBHH1bVb9Ye82EAHoAvzzaOqn4OwOdqj++eWw6JiCKwkreBbQsoVX3FXD8XkTsBvAbAzdpN97oTEdGS6NRdfLcC+EMAN6hqqRNzICKieOvU56A+AyAH4Psi8piIfLZD8yAiopjq1F18Z6rqJlW9pPb1u1GNbSXTqG64HD94vthSbbilpqoYLXk4MOGg4kU7X8sA8lUfjh/9cvitK/rxyjNzkfYJyiUNnD2QQsqKtsqBqsIQYF3GjKyHVl1/2kA7ikjYpiCXMNBC2cQ5mUbYOqPqBZHfIjyQMbEqFf0mJV/1cazgIuCVgBVn2ZQ6Muwkzr3tXbjoLX8AO5EMK5uL4MYzevCyLZmWCqS221gp7OdUdgP4WmugmDSwPmstar6mAeQSBmxTpuqXWQaQS5gtFRttJFBF1VOMlz186qfH8KMXCi2P1WMbePMFfbj9vFWwjLARowIoVINFlc5RVZTcAAUn7GGkqlAFjpU8HCv5iyp7NNhjYseaJBKmRFo2yDaAbNI8JZgcX1GoBi31/KozJeyBlpi+Tkj4XFHU+QNqyxdhkduRvIvJanQ7RvWeXet6LPRnWiukHGNdWeoo4s9BLc9afIZl46xXvB2Xvv0/w06mYNipU35uG2FV85u39+C6zT2RbaAX40TZx87RKorO6Rud+ux6aw0VE2bzQXXqRmj6aCfZBpCNMKiAsAr30aKLT/3kGH62r9j076UswRvPW4U3XrAalgHYM15rPVAKzsKCanowAae321ANexkdK4ZBtZB3wNqMibMHkkhGHEyWEe6cWIacXhS1tuFvJahOWSeAhj3co955AYAgUHhB2FQzH3FQGQKsW0Armi7AgFpuASWGie03vhmXv+NuJNIZGInGTezqEmbY+O6WM7O4elOmI8U9JyphMIWtrud/vOBk47m59nJNCas+J63ZN0Iz2QaQS5qRLoeyG+DQpItP/uQoHjo4+70vSVPw2nN7cceF/bDN04NppnqgFJwA1TmCSlVR8RR5J4Dq/B1w6+MeKXoYnSeo1qRNnDOQQMoyIg+m7Iyj3bnmCwBVL2wcONc6ZNT6XSVrp0ub2ZC3Y+fFrwdV3kMhgqr3dVJreTM4RzPPLsKAWi4BJYaBrdfdjivf9REkMr0wk3MH00z1xm+3nZXFFRsybanqPFO+6mPnqIOJysJPK9VntzptYrDHOmXj0cpGaKaEKcgmjMiDau+4gz/7yVH8aqQ89e+WAbzq7F78xiX9tc6wCzuNORVU1QDVaYcRCw2m2cY93KCT8uqUgXMGksjY0QaTWQumuY5255ovAFQ8RXFGUBkSnjJN2YtYJ6ZOM0Z4RKUKxwuDqhjhtWFBuCyHcjZWtdibLQYYUMshoJLZVXr7p76HVK5/wcE0U8IUJE3Bq87O4dL1qbac0y44AXaNVjFeXtz1DuDkX68/bWJ9zsKqpLmojdBMUQeV1q5R7Txexf/42VFs7LXxrsvWIGnJoq8H1jv45is+8k4wdUS62DU5qAdVPmyceM5AEtlExMHUxGnYZtXfu2VXUXYDpG0D6RivE0C4jCue4tCkg4o3/+ObJRJeU1ufs5HrvqBiQC2HgFqz7UJ97Sf/KdIxL1iXxK9f3Bf5Kb+SG+Dn+0st7dHPxQBw/Rk9tS650c55dcqMvDGcquJExUfJ1civ/x0ruBgpLOwaUjMsI9wRCC/MRzdnQ4A1mbBHWdTLuC7qdaIvZcBudF1sEVQVByddnKhEf3fp6pSJ4d5oGkcuoeYDyjDCC7MxMLxxEw7u3xfVcA2XQRxq8TVN2nA6LmkZbfl7e354a3Pk/dsEbQknoNZyPuJx6+O14+YUL+Lwr7MMiTycgPAdqIiu5frUuG3cGJsSbTgB4Xzb8MkHAOHpvmVtiaqZL0Wl8mYs9z8nERF1KQYUERHFEgOKiIhiiQFFRESxxIAiIqJYYkAREVEsMaCIiCiWGFBERBRLDCgiIoolBhSaKv7dksXW36Plp6sK8BB1WFcFlO958D03svGSpmC87EW+0RAAvSkDW1bZYVmiiMY1a2WOou68Wxe2cNDIS5xkE2ZYRinSUcOmgb3JaDvamhKWfMrYRqTzrY9ltmFvSBC2ymhH+FX96DvvAmE/p4QpkW+ACo4Px9daLzHuIXa7rqrFVzgxhl/+4Ju44CUvRzrbC9OyWxonaQpWpUz8+kWrcPFQCiICL1Dkqz4W2wlAAPQkBGnLxLoeGxc5AX41Usb+Cbflitth7T3g3LVJnDOQgm0KAlWUnAClCIv9VX1FteQjbQl6EkZk9ehsU7AmbaLqz9/HqBlWrW9RwrQwlEtgvOxj5/EqSm7rXWdNCee5Y00Sa3vCRngVL8BI3kPRCVqu+Te9wd7qdNgJ1g8URXdx3YLrMrYgYxswpLZOuAFK7uLHTVmCnohbjEyXtg2ctSaBfDXA4YILP1jcGYd6X62EZWCiGpzssxVx8WNaWl1VzdzuG9K+l/0GAGDtxq244Oobkcxkmw6qpCnIJg287cJVuHw43bBop+srCs7Cg0oA9NiCtN241H+h6uOxkQoOTjYfVPWjjrMHkjhvXaph08JAw55A5cir0iLyoAJqbThqQbXQSu+mhF1nG/WRUlWM1YKq4mnTQWVKWBz2rDUJDGYbV8EuuwFG8i5KrjY933CZAet6TPRnrIbrmh+Ey6HaQqpmLEEmYTQcdzE7L8lai42l6JNWp6qYrAY4nA+DaiHL2JDTW9lPZxv1liGxDqrYVTOPuFJ5M7q/3cb0gKob3Lwd5199I5KpNIxZgippCtK24I4L+3D1xsbBNJPrK/KOj/nOpglO7sU28waYrPh4dKSMkbw3a1DVg+msNUmcvy7ZVP+kQHXBrdGbIQDS9deHaIOq7AUoOvNv9E2Z3txv7udXVYyWfDw3WoUzR1AZtWA6s9/GUM5uap0o1YKqPEdQ1YNpbcbEmp7GwTSTF4Q7Gc0EVX2noZlxF7Lz0o7eTwsVtmYJcKTgwlfMuh2uL+PcHME0U/31GRJ9NfkIRNoPKi6VyBdoeQZU3fozduC8q25AIpGcCqqkKUhYgree34trN/e0tFfo+GFDvJnbjoUG00wnKj4ePVTG0aI3NbaB8I23rT+BC9alkLYXfoY+ytNH04Wv10AmwoZ4QC2o3ADFGRv9qY1Qk8HUaNxjRR87R6tw/ZNBZdSu423vT2C4t7lgmqnohHv7Ve/knOu9BwcyJgYyVkvrmlc7onIaBNViTrnNtU7EIZhmUlWMl30cKXhQBer7iPV1Ips0kGxhnQBiG1QMqOUeUEC40Rzedg4uve4mZFJJvOn8Vbh+a8+i33yqCqd2WsrXU8/7L9ZYycMjh8s4VvRxxmobFw2lkWkhmGZazOmjuYSnMqPt3AqEy7h+/URqR0ytboRmjnuk4GHXqANfFdtWJ7Ch1170KSytHZ0cLnhwPMWajIm1Pa0F00zTr4dGecptelDZtet47ejTFZVAFWMlH0eLYevdbMJA0oqmP1VyWlDF4NQfA2o5NCycj6ri4PPP4A2XDOHuN9yGhGVGMq6IIGnJ1DWgKFfo/oyFV2zPwQ802tbiRngjSP3NHRUFUHADJEwTVoQbNxFBT8JExtap76MadyhnYzBrRdosUESQTZo4M2FE3oTQMgSr0xZUNdJ1zTQEvUkTuUS047aLIYKBHgu2CVS8aOdc9RXiBsgluupG5hVnWQVUnQBtucjb1s6lMTrF0kntWsYi0pbbsNs1bn3sbhq3XUSkbZ9VpHjj7gMREcUSA4qIiGKJAUVERLHEgCIiolhiQBERUSwxoIiIKJYYUEREFEsMKCIiiqVlGVBechWeOFJB0H3lPiKXtiTSfknAyZpoRO2mqvDb1PkzxlWeqGZZ1eLbuOUMXHP9Tchme5FMWOhJGHj12b04f10yToUhl1T971vxwjpsi32vT2/BAXRfVQLqDtPbskSdT/U6hPUmATFYh6Ntt2FYQOB1omXGYizfYrHrN27GtdffjGzvKlj2qS03EiaQS5h4zTk5nDOQjMPK2BH1v3PZC4uyLvRN347eUEQz1Qsz51voFzafk00Moyk4G6FIi8XWdVnR2OVXLHZw/QZcc/1NWLV6zWnBVOf4wGjZx72PT2B1ysBrzunFmf2JuK2gbVd/vWkLSFsmym54RDXf6puywqrPDCZqp5kdA6I0PZgArsfdpCsDamDdEK654Sb0r1kHy7bQzA6I4yuOFH188bETGMiYeM3ZvdjWn2j/ZGNmKqhsIG2bKLnhEdXMbUK9/5DEq28OLUOz9VxbrOmNLgEGUzfqqoAyLQuvfsMdGBhaD8u0WrpS7/iKQ3kPn39kDOtzNl5zdg6b+1ZuUGWmgipA2dVTGrrxDU3tFB4xzd+1eqEYTMtHV93F17e6H0MbNsGy7EXfRuYGwL4JF/+yK9+2u4S6gYjAkPBoaSBjIpcMm+PxTU3tVHB8nKhEH05JU9CfNqe6MHM97m5dFVAiEvn9zX1pi7ej4+ReJk/n0VKIOpjqzPjcmUcR6KqAovbim5qI4oQBRUREscSAIiKiWGJAERFRLDGgiIgolhhQREQUSwwoIiKKpa6qJEFEtKKJ4Cvvubaphw5v3NTmybQfA4qIqFuoolE18y6rXN40nuIDP6BKRBRHXRVQImGzsajYBnBw0lnRtfiIOiFlSfNNkBbA8RWBoiuOJlS1K+bZSV0VUGt7LLxsaw+SliwqqGwjLCr5iu1Z/IerB5C0umoxEHW9lBUWJ+6xow0qLwj7v+WdAEGgsayzWQ+miqcYLfudnk6sddU1KAFwyfo0zl+Xwq9Gyvj5/jIC1aYLT1pGWAz1hq09eOmWDIOJqINEBD0JE2k77ElWcqMLk4qnqHh+rBpu1o+WKl7YLJQnbubX0YASkfcD+CSAtap6vNnfs03BFRsyuHgojUcOlfGLAyUoZq+QbNV6G710SwY3bO1BKsrzhES0KIYIsgkTGVtRcgKUvOiDKm0JejoUVPVgqtY6BjOYmtexgBKRTQBuAbCv1TFsU3D1pgwuWZ/CQwfLePhQGaqY6sxp1rpzXLMpg5dvyyLDYCKKLUME2aSJTEJRdAKUIwyqsqcoL3FQ1YOpXa3sV4JOHkH9DwB/COCbix0oaRm4bksPLt+Qxi8OlPHY4TIA4MoNady8LYts0lzsUxDREjFEkEuGR1RFN0Al4qCqeD7SdtikE4g+qBhM0elIQInI6wAcVNVfzbdyiMhdAO4CgI2bNs/52JRl4PqtPbhhawYpy0COwUTUtUxD0Js0oeqhGuG9BAqg5CoCDZBLRH9WxQuAyaofWTBN3wauNG0LKBH5AYChBj/6MIAPITy9Ny9V/RyAzwHAJZdd3tSfPG0bU3tHRNTdwp3Y7joMifI60/RtoIh014JYpLYFlKq+otG/i8iFAM4AUD962gjgERG5SlVH2jUfIiLqLkt+ik9VnwCwrv69iOwFcMVC7uIjIqLlj+fBiIgoljr+QV1V3drpORARdQPbthtWM18Olcsb4REUEVGXuOiii6ZKJU3/Ori/5Y+TxhoDioiIYokBRUREscSAIiKiWGJAERFRLC3LgHJZ/Ipo2Uia7Wlu2K7thGkABpt0R6Ljt5lHLWMLMrbR8d4vRBSNpGVgjSmR9ozKWIJMoj3bCUME/WkTjq/IOwFUu61QU3wsm4Cqr3AGg4lo2YmqZ1S93Ua7txMigqQlSJjCPlCL0PUBtVQrHBF1Xqs9o1JW2F7DXOJzbyKClCVImhJ20nUCNNkAnNDFAVVv5cxgIlp5mu0Z1algmklEkLbDsCp7AYqO8rRfE7ouoOKywhFR59V7RvXMCKqkGe7Axm07ISLI2CbSlqLsBihGdE1tueqqgLJqKyMR0XTTg0oRbiviTESQSZhI2wyouXRVQBERzSVuR0zz4d3Gc1uWn4MiIqLux4AiIqJYYkAREVEsMaCIiCiWGFBERBRLDCgiIoolBhQREcUSA4qIiGKJAUVERLHEgCIiolhiQBERUSwxoIiIKJYYUEREFEui2j3l3kXkGIAXO/T0AwCOd+i5O4mve2Xh6156x1X11mYeKCL/3Oxjl4OuCqhOEpGHVPWKTs9jqfF1ryx83RQnPMVHRESxxIAiIqJYYkA173OdnkCH8HWvLHzdFBu8BkVERLHEIygiIoolBhQREcUSA6oFIvJ+EVERGej0XJaCiPx3EXlWRB4Xka+LSF+n59ROInKriDwnIrtF5IOdns9SEJFNIvKAiDwtIk+JyB90ek5LSURMEXlURL7T6bnQSQyoBRKRTQBuAbCv03NZQt8HcIGqXgRgJ4C7OzyfthERE8D/BHAbgPMAvF1EzuvsrJaEB+D9qnoegJcA+A8r5HXX/QGAZzo9CToVA2rh/geAPwSwYu4uUdXvqapX+/bnADZ2cj5tdhWA3aq6R1UdAP8A4HUdnlPbqephVX2k9t95hBvrDZ2d1dIQkY0AXg3grzs9FzoVA2oBROR1AA6q6q86PZcO+i0A/9TpSbTRBgD7p31/ACtkQ10nIlsBXArg3zs8laXyaYQ7nUGH50EzWJ2eQNyIyA8ADDX40YcBfAjh6b1lZ67XrarfrD3mwwhPBX15KedGS0dEsgC+CuB9qjrZ6fm0m4i8BsBRVX1YRG7s8HRoBgbUDKr6ikb/LiIXAjgDwK9EBAhPcz0iIlep6sgSTrEtZnvddSJyJ4DXALhZl/eH5w4C2DTt+421f1v2RMRGGE5fVtWvdXo+S+Q6ALeLyKsApAD0isiXVPUdHZ4XgR/UbZmI7AVwhaou+8rPInIrgE8BuEFVj3V6Pu0kIhbCG0FuRhhMvwTw66r6VEcn1mYS7nX9HYAxVX1fh6fTEbUjqA+o6ms6PBWq4TUoasZnAOQAfF9EHhORz3Z6Qu1Suxnk9wD8C8IbBf5xuYdTzXUA3gngptrf+LHaUQVRx/AIioiIYolHUEREFEsMKCIiiiUGFBERxRIDioiIYokBRUREscSAohWtVsH712b82/tE5H+LiD/tlutvdWqORCsVbzOnFU1E7gJwjaq+e9q//Rxhbbbvqmq2Y5MjWuEYULSiiUg/gGcBbFRVp1Yo9UEAWwDkGVBEncNTfLSiqeoYgF8g7P8EAG9DWD1CAaRE5CER+bmIvL5TcyRaqRhQRMC9CIMJtf+/t/bfW1T1CgC/DuDTIrK9E5MjWqkYUETANwHcLCKXAcio6sMAoKoHa/+/B8APEfZIIqIlwoCiFU9VCwAeAPC3qB09ichqEUnW/nsAYTHVpzs2SaIViP2giEL3Avg6Tp7qOxfAX4pIgHBH7uOqyoAiWkK8i4+IiGKJp/iIiCiWGFBERBRLDCgiIoolBhQREcUSA4qIiGKJAUVERLHEgCIiolj6/wGBVnTUgJyQowAAAABJRU5ErkJggg==\n" + }, + "metadata": { + "needs_background": "light" + } + }, + { + "output_type": "display_data", + "data": { + "text/plain": "
", + "image/svg+xml": "\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n 2021-04-22T16:19:42.433925\r\n image/svg+xml\r\n \r\n \r\n Matplotlib v3.3.2, https://matplotlib.org/\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n", + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAGqCAYAAABeetDLAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8vihELAAAACXBIWXMAAAsTAAALEwEAmpwYAABf0klEQVR4nO29ebwtR1nu/7zdvYY9nXnIcE5GCDNCCIigPyIa5ghyRQgGBYToBQQURUWvHxyuPwfUoFz1IihgkCRcuDLngiCCeoEkSAIkIcQQSM7Jmc/Z8xq6671/VHevHtdZa5+995qebz77ZO/q7qrqXmvVs6rqqbdEVUEIIYQMG86gK0AIIYQUQYEihBAylFCgCCGEDCUUKEIIIUMJBYoQQshQQoEihBAylFCgyEQgIp8SkZ/ZhHI+LyKvCn//KRH59Drm/U0RuTz8/a0ict065v0WEXnXeuVHyHogI7YOaqQqO8lccMEFWFlZwXe+8x3MzMwAAN71rnfhuuuuw+c///kNLfutb30r7rnnHlx33bq13z1z+eWX4+qrr8arXvWqnq95+ctfjn379uH3fu/3er7mTO7x85//PK6++mo88MADfV9LNgQZdAWGFfagyIYRBAHe/va3D7oaI4/v+4OuAiEDgQJFNoxf+ZVfwdve9jacOnWq8Phdd92FK664Ajt27MDDHvYw3HjjjfGx48eP48orr8SWLVvwxCc+Eb/5m7+JH/zBH4yPv+ENb8D+/fuxZcsWPOEJT8AXv/hFAMBNN92E3//938cNN9yA2dlZfN/3fR8A27N517vehWaziW3btuEb3/hGnNfRo0cxNTWFe++9F8YY3HjjjXjc4x6Hbdu24SlPeQpuv/320nv8zGc+g4c//OHYunUrXve61yE5IvGe97wnrrOq4hd/8RexZ88ebNmyBY95zGPwjW98A+985zvx/ve/H3/0R3+E2dlZXHnllQBsD/QP//AP8djHPhYzMzPwfR8XXHAB/umf/inOv9Fo4MUvfjHm5uZw6aWX4rbbbouPiQjuueee+O+Xv/zl+M3f/E0sLy/j2c9+Ng4ePIjZ2VnMzs7i4MGDeOtb34qrr746Pv+jH/0oHvWoR2Hbtm24/PLLceedd8bHLrjgArztbW/DYx/7WGzduhUvfvGL0Wg0Sp8RIWuFAkU2jMsuuwyXX3453va2t+WOLS8v44orrsBLX/pSHDlyBNdffz1e85rX4I477gAAvPa1r8XMzAwOHTqE9773vXjve9+buv6JT3wivva1r+HEiRN46Utfihe96EVoNBp41rOehbe85S148YtfjKWlpVSjDQC1Wg0vfOEL8YEPfCBOu+GGG/DkJz8Zr7vuK/joRz+Kl73y1fjTP/1THDt2DD/90z+NH/uxH0Oz2czdw7Fjx/DCF74Qv/d7v4djx47h4osvxr/9278VPotPf/rT+MIXvoC7774b8/PzuPHGG7Fz505cc801+Kmf+im8+c1vxtLSEj72sY/F13zgAx/AJz7xCZw6dQqe5+Xy/MhHPoIXvehF8TN4wQtegHa73eUVAWZmZvCpT30K55xzDpaWlrC0tIRzzjkndc7dd9+Nq666Ctdeey2OHj2K5zznObjyyivRarXic2688UbcdNNN+M53voPbb78d73nPe7qWS8haoECRDeV3fud38Bd/8Rc4evRoKv3jH/84LrjgArziFa+A53l4/OMfj//yX/4LPvjBDyIIAnzoQx/Cb//2b2N6ehqPfOQj8TM/k/Y3XH311di5cyc8z8Ob3vQmNJtNfOtb3+qpTi996Utx/fXXA7A9m/e+9704NvcQGKN43e9ci/Oe9ExcdtllOHLkCD52dDsqlQq+9KUv5fL55Cc/iUc96lH4iZ/4CVQqFbzxjW/EWWedVVhmpVLB4uIi7rrrLqgqHvGIR+Dss8/uWs/Xv/712L9/P6ampgqPP+EJT4jL/qVf+iU0Go3CevbLDTfcgOc+97m44oorUKlU8Mu//MtYXV3Fv//7v6fqds4552DHjh248sor8bWvfe2MyyUkCwWKbCiPfvSj8bznPQ9/8Ad/kEr/7ne/iy9/+cvYtm1b/PP+978fhw4dwtGjR+H7Pvbv3x+fn/wdAN72trfhEY94BLZu3Ypt27Zhfn4ex44d66lOl19+OZaXl/G5z30O3/jGN/DV227H3kf9AACguXgK9/7rR7Bv3z6cf9FD8OnffyUOHDiAgwcP5vI5ePBgql4ikqtnxNOf/nS87nWvw2tf+1rs2bMH11xzDRYWFrrWsyyvouOO42Dfvn2F9eyXgwcP4vzzz0/lvX//fhw4cCBOSwrx9PQ0lpaWzrhcQrLkxw0IWWd++7d/G5deeine9KY3xWn79+/H0572NHzmM5/JnR8EATzPwwMPPIBLLrkEAHD//ffHx7/4xS/ij/7oj/DZz34Wj3rUo+A4DrZv3x7P/4h0N0Wtrq6idt5j8Iq3/DFe+sOPw96HXQqvZnsp9S07cdEPvgDnf/8z4NWm4Vbr+JuXf39hb+fss89O1UtVU39nef3rX4/Xv/71OHLkCH7yJ38Sf/zHf4zf/d3fLa3v6e4jWZYxBg888EA8XDc9PY2VlZX4+KFDh7Bv376e8j3nnHPw9a9/PXdf5557btfrCFlv2IMiG85DHvIQvPjFL8af//mfx2nPe97zcPfdd+Pv//7v0W630W63cfPNN+POO++E67p44QtfiLe+9a1YWVnBXXfdhfe9733xtYuLi/A8D7t374bv+/id3/mdVG9k7969uO+++2CMSdVDVbG4uIjFxUXse9zTcPibX8KHPvQhnPOYp8bn7HvC0/HArf+EpaMHoapoLp3Clb/8Zzh48CAWFxdTJojnPve5+OY3v4kPf/jD8H0ff/7nf45Dhw4VPoObb74ZX/7yl9FutzEzM4N6vQ7HceL63nvvvX0/11tvvTUu+9prr0WtVsOTn/xkAMDjHvc4/MM//AOCIMBNN92Ef/mXf0k9n+PHj2N+fr4w35/8yZ/EJz7xCXz2s59Fu93Gn/zJn6BWq+EpT3lK33Uk5EygQJFN4bd+67ewvLwc/z03N4dPf/rTuP7663HOOefgrLPOwq/+6q/GZoR3vOMdmJ+fx1lnnYWXvexluOqqq1Cr1QAAz3zmM/GsZz0Ll1xyCc4//3zU6/XUcNeLXvQiAMDOnTtx6aWXQlURBAFOnTqFq//qn/Hqd38Bc+dcDKdSw3fuP4AdF39ffO3Wcy7CI698Ne781HvwuT98Nb74F7+Eg1//Nxw+fBgvufaTqaGsXbt24YMf/CB+7dd+DTt37sS3v/1tPPWpHbFLsrCwgFe/+tXYvn07zj//fOzcuRO/8iu/AgD42Z/9Wdxxxx3Ytm0bXvCCF/T8TJ///OfjhhtuwPbt2/H3f//3+PCHP4xKpQIAePvb346Pfexj8dBpMt+HP/zhuOqqq3DRRRdh27ZtuWHBhz3sYbjuuuvwC7/wC9i1axc+9rGP4WMf+xiq1WrPdSNkPeBCXTIS/Oqv/mrs6OuXxcVF/MQffghBEGB2z36YdgOtleXTX5jAb66gvmUnPvC6H8Hc3FzfdSCkC1yoWwJ7UGQoueuuu3D77bdDVfGVr3wF7373u/HjP/7jfecTDet5tTq82vSa6+PVpqGqWFhYwMLCAkbsix0hIwlNEmQoWVxcxFVXXYWDBw9i7969eNOb3oTnP//5feeztLSEV/zlpyFe7YzrFLQa+Jl33AS3WsffXnM55ubmMDc3d1rTASFkbXCIj4w1i4uLeMm1n0AQ2LdOfevONQ3xZfGbK3Crdfzdz/0wzj77bIoUORP45imBQ3xkbImG9zYCrzYNEQevfOfnuQaIkA2CAkXGElXFgw8+iFf85afj3tNG4FancvZzQsj6QIEiY8l6zj11I2g12IsiZIOgQJGxI+nc2wzOxB1ICCmHAkXGjqj3tJFDe0kiQeQwHyHrCwWKjA3JdUqb1XsC7DDfK/7nP+PBBx+kSBGyjtBmTsaGZMSIsmG39bKZF6P44JuuZKQJ0i+0mZfAHhQZK840YsSZQEcfIesLBYqMPMmhvUHCoT5C1hcO8ZGRJr3eqXxoL2Jjh/jiWnGoj/QDh/hKYCw+MtIk1zt5Q/Jupu2ckPWBQ3xkJBmUY68XaDsnZH3gEB8ZOfod1kuyOUN8gKphIFnSK3yDlMAeFBk5UsN6QzqcJuLQMEHIGUKBIiPJsA3rFcFo54ScGRQoMlJs5BYaGwHXRhGydihQZGTYrC001hNGOydk7QyJMZeQ7iTFaaO30Fhv3OoUFhYWYIyBiHCbeEJ6hC4+MhJEcfbOVJw2y8WXxW+uAAC82hQX8ZIs/LZSAntQZOhJ7u80KkN7WSK3oVebGnBNCBkdOAdFhppRnHcihKwPFCgytIzyvFMZjDJBSO9QoMhQMo7iBDDiOSH9QIEiQ0kyWsS4EUWZOHjwIBYWFihUhJRAgSJDR9IUMa6IOPiZd9yEn/zTj3ONFCElUKDIUDFJpgivNs1IE4R0gQJFhopxHtorIpqT4nAfIXkoUGQoGOb9nTYaDvcRUgwX6pKBcyb7O40LdrivHveiGA6JEIY6IgNms+3kgwp11Ct+cwVutY6/veZyzM3NUagmA77AJVCgyMAYxFqnYReoiEiouCvvRMAXtwTOQZGBMK4LcdcLrzad2pXXGEO3H5k4KFBkU4nMEAcPHqQ49UAkUvfccw9ecu0nsbS0xHBJZGKgSYJsGjRDrA0RB6/5uy+iNrcjdjpe87f/iuvf+Jzcth2qGjsBZ2dnOTRIRhoKFNkUskN6Ht95feHVphG0GviZd9wEALFYGWMAIN4IcWlpCVf/1T8DAK77rz/MfafISMNmgmwo0XDU4uIiXvlXn+GQ3hkS9TqTYgUgdv4BgFefjodSu1nWo94We1pkWKGLj2wIWWEaliG9UXHxrYVo197ZPfth2g2snDwaC9fs7Gzu/KWlpdKhQrKp8NtBCSPVg1pcXOS3vSElO3G/tLSUEiYO6W082S8A0d/JnlaWaKgw29Ni72rjiZ4xvxyUM1I9qOf+7g3Kb3vDRVFPKWIYekxZxrkHFdHvPSYXB0c9raWlJbz63V/E3/zsD+V6X9F8F4XrzFhcXMRLrv0kPvHfXswHWcJIfa/1alODrsJEEX3Dm5mZie3NWdhTGn3Kelpebbqw95UVMxHB7Oxs/B6J/l5eXmYP7DSwTevORDQn0bd8APE3v2zjGx0DkBraiM5T1bFfd5Ic3gE636Kvfcml+IX3/Xuqd5SEwjQeFPV4y3rBWYPGX/zUE+P3SPT3G6//amEPbD3IvlezIll0fvT57raGLHse0L1dSPY4Kcbrz0g1K35zNX7T9MPi4iKu/rOPwPGqeN8vPBtzc3NYXFzEy//y03jHTz8FP/83n42PAcDL//LTeM9rnhGf9+p3fxF+cxXNMR4WAoD6lu1Qv5W6T69WxzV//ZmuEcajyflRwG9MQf3GSNW5Xzb7HoNWI/UeSf79U3/yjxtSZva96tXq+MtX/BB+/m8+CxOY3PlerR5/vq/+s48UnlN0Xrd2Ifo7e6xXFhcX4TdXe7/pCWSk5qBE5CYAuwZU/C4AxwZU9iDhfU8WvO/N55iqPmtAZQ81IyVQg0REblHVywZdj82G9z1Z8L7JMMFYfIQQQoYSChQhhJChhALVO+8cdAUGBO97suB9k6GBc1CEEEKGEvagCCGEDCUUKEIIIUMJBYoQQshQQoEihBAylIyUQF3xjGfqUsto0zeq1t3BH/7whz+j/tMzey55nD7vv39Ql5aWBl3nTXkGIyVQx48fH3QVCCFkYJw9pbj+Dc/GzMzMoKuyKYxUsFgA8Byg6jJiMCFk8nBdd0Oiww8rIyVQjgA1VxjSnhBCJoCRGuIDQHEihJAJYeQEihBCyGRAgSKEEDKUUKAIIYQMJSMnUIxtSwghk8FIufiAcEVXKFL0SxBCyPgycj0ooM+l14QQQkaSkRQoQggh4w8FihBCyFAykgLFqSdCCBl/Rk6gKE6EEDIZjJyLj849QgiZDEauB0UIIWQyoEARQggZSihQhBBChhIKFCGEkKGEAkUIIWQooUARQggZSihQhBBChhIKFCGEkKGEAkUIIWQooUARQggZSihQhBBChhIKFCGEkKGEAkUIIWQoGbhAiYgrIv8hIh8fdF0IWSuqg64BIePHwAUKwBsA3DnoShCyViJxokgRsr4MVKBEZB+A5wJ41yDrQchaUE2IUyaNYkXImTPoHtS1AN4MwJSdICLXiMgtInLL0aNHN61ihHQjKUyxOCV+58aaZL1ItoHHjh0bdHU2lYEJlIg8D8ARVb2123mq+k5VvUxVL9u9e/cm1Y6Q08NOEtkMkm3grl27Bl2dTWWQPainAvgxEbkPwPUAni4i1w2wPoQQQoaIgQmUqv66qu5T1QsAvATA51T16kHVh5D1QrE+c1CczyKTjjfoChAyqkTTTEX6EYmUoP/5KNWCPJXzWmTyGAqBUtXPA/j8gKtBSM+kxKJIUDqH+hKXQnFaQz6EjAODdvERMvJ0E4219KAIIRYKFCGEkKGEAkUIISNCEATQCXLNUKAI6ZG1OuqKrinLq3QuS7X0aGleqoWNGZ2Bo8t9RxewvLw86GpsGkNhkiBk2EmFNAp/Fzl9Q6+w81Cq6fM1ecJp8opEJjCA62h4vqTySpehnTpHB2Kk8D7IaHDB7i2YmZkZdDU2DQoUIV3ICQrS4tJLRyQrRtm8Ig3J5pUUmuiYbwBHAAcapiUEJzw5tQ4rvNaR7mVTpEYD13UhE/RiUaAIOQ1dLeQbnI8pOGjink++oSo6P0ovOj8SKTIaRHNQkyJSnIMihJAR4TtHFrC0tDToamwaFChCBkw3M0P5NSi85nTlFKaX5t9X9mQTUDUT5eLjEB8hp6FbSKMzwQpTev7IkcgAoV3Li+aZHGh8fq9lAvnhPpMIy5Ss01rDNRGyHlCgCOlC1DCv95dWVS2fX+qjsOh8p08BKZrHKCuaYZbIoOAQHyE9ILK+ZoL1FDzqBhlXKFCEDIDJmUUgZO1QoAghhAwlFChC1oFSh1xJ+lqG5fp37W18GYRsJDRJEHIGpMIKoeOQi9M7B2NTQuTQi6TgdGIVhzpSwEU2L8AAcKO8EqYOA8DRfHr0d9IokRQmVbV1SrgiuKCXDAIKFCE9EhklrA1b48Y+cuPFIYPCA3E60gGJgoKwRkWNf1KY2sam+QAqThTqSBAmwyjgSkeQ/LCMAHaYJBKwpH0csPkUYets/6XNfLhYXl7G3NzcREST4BAfIX0StQtG86GFVEvSYUXDLxCnbiGQGkFHnKK0lrH5mMz5gQLt8CeZp0GxKEb30G1Uz67LKj9ONhcRB6969xcnJqI5BYqQNTAJbfYk3OOooWrwrp/9oYmJaE6BIoSQEWJmZmYihvcAzkER0jdRKCBHiqMvlIVGKkqP8jKw3xajiBCBKpZbBm1j55w8R2LzhdFwbyhReG4nvR0omoHCFaBeceCEjVhgFI3AGh/qnsB1OsaIaOjPc2z5yYbPKCCqdu4tUXZEFJaJbCKaHdgdbyhQhPRBJ06dxIYIkU4sO6ATz06QFiPJ5JNtagysmLR9xWrQubJtAN8oqm76/ECBwFe4jqIVdMQjUGC5ZVBxJFUHBbDqKzxH4TmSqptvbP0qTjoEUiTAUhAbMBIwp984S2TtiEOTBCEkT9GmgiK2BxOZCaI2Q7qYC7o1K75BSpzislG+Rqnhl8X1Kw44a40cfa6pKklP7uBLNh4RB694579MzJYbFChCBsCgm/T1/O49Cd/kh4mg1ZyYLwUUKEIIIUMJBYqQCWQyvn+PL8vLyxPRi6JAEdIDRfNPnWNlcfjS/0+fr7mddFUVjpTH9As0X1Yn1FL+usAUp3ciX2TyQvFcV7S7buFeUdrZeJFsDl61NjHzUHTxEdKFsoa327fX6FCQcOo5GoUOAloB0AyNEBVX4IXxiXwDrLbTggWE0SMCxaqvqDjAdMWJ55BagRUuAHE+nZJs1AlPNGUJ17AOrmNj+yXnkNrG2sc95POKLk5OOcWOxsR9c0pqEwjag67BpkCBIuQ09Ns5KApnZAC0fSsmScddO7AWcVUga97T8HgyvW2A+abBlAuYjNXBN8WhiXy1sfi8THpgABUrbNn1Ty2152fzstH5LFk7OmP2bQ5+q4m/fuUPTkQ0CQ7xEbLOlAlaUYw+AIXiFNFv+mZB597g8Ko1vPa6myciHh8FihBCRoxJsZpToAg5Ddm+QreGwagiMApj0gYIo4pAFdF/cV7h72XBGGquFB5rGxsOKVmGbxSnVgMst4JCA4Rv8qYM39jwSCaVbof/moEtI31/YdkFebWNDbekmbyinuMEtKdkneEcFCE9EGlEWQQG20B3ht46IYIMfAO0TVYwOn9H+0wJwoY8THfCSR1HkMvDCo69xhGDRlvRDOwxv6VYbQfYUndRdSUVA9BXwAnDM8UhkNRGo/AchSeSmttqBWHMPyc95+UrIGqPRe6/qIyWsSGTstIePxNwrmo9mISQR+xBEdKFKGTR6UL62N5GUbrmxKlbWenekoTpAq/kk6oAFpodcYrSjALGKASaEwOD4nmywBTfQ1AyR6Yo32fKns8u00YxKVZzChQhPdLti2r5Gqn+ylhLk15WhusMzswgiX/JxjAJ81AUKEIIIUMJBYoQQshQQoEiZB0oG8zqe6uk2JnX+9CNW1JGy9ecqSMKr5QNswR0DCBF4ZSKQyCFnsSCYaYoBFIZYz4ytSm4rjPWBgmALj5CekZE4KB476Waa40B7cwuhDXPQaBA008f8ELl8k1HFBTAUsu6/qYq1hhhd7IFFIKaa8/PGhbqFQkjUti/rWgAp5p2J90dU268+287UBxc9KEKnLvFQ83riGvTB1bbBtMVQSWxOWLDV7SaBtMVB1OVTro1YoShkcIwS1GDaWBFyI2CIQkQlRT5+xgaae1E0SQA+94ZV6GiQBHSByICV6xDThNpVrxsQ73qp2PfeQK4FScWKSc8H7DbuTd8jX8iVtqKiqOoVxwk3XwVV+CqDY+UrFPVE1RcxWLTpKzqDd8K0pQnaBvFqUZHKO892caeaRdb6g5802ngltsKN1DUXEHT79znStug4QNb625KpI1aO3p2x9/I1u6G2/rmY/jRRrFWvGoNb7jx6wjaTdz4i8/B3NzcoKu0IVCgCFkDZd9YRQRuwcC5tYo7hTvyqqbFKSIIF7dmi3Iku5l8Iq/CI8CpRpDr3QFWjOqV/FBkYIBGSST0wBR/Yy+qK8L6OGP6DX+QBK0G/DF38nEOihBCRphx3huKAkU2lSj0TX6PpP5D4pwur37Sy46Vlt3lmCf9hUfyHGC2mv8oeg5KF+hWnOLhsSmveFFvzRPUs+HMYe9jtW1y9bMRKorLbvgGQY+Lj6NCsqGRAPtMTIFZg/TOuC/Y5RAf2TSSm/4lw95EfyP5e8lwUTafZF6580rKWM+yswhCYUHHNGEb4jBPTZfpOsB01cEUgC01F8dXfLQCxWzViQWlAsRhlCLhcF1B1bX7QbXDkEeuAF7FwXQFaPqKxZaBCDCV2D+qbRTzjQCBAaquHV5cbgOrfoAtNQdV17H7RIXRMxztDDVGtAKgFRhUXaDuOXCd8kgX0S1HYZzyg5yd9HGd6N9wxnhvKAoU2RTKvnCXRmAI/8ntR3Qagei7jHUqu7NHUucvF4oAisQehHGeooDjdM4XAI4L7Jpx0fLTjjjAbjqYro/9o+qGjT8UkuhT1TzAcVz4mfmiqivYVgeWWya3B9Ri0+CsOSc1XyQCuKrwC+65FQB1D7HbsOiZZFONFsfio0itjXHfG4pDfISsE9m2VUQQFBgTAEDiRj3bIEvsCuyWd7IM20PJni+haSF/oSlJ98rG9LpoRsXN1zW6hFKz8XjVGl7/gVuxsrIy6KpsCBQoQjYSttJkg3BcFxq08e5X/X9j24PiEB8hhIwY0dDenj17MDs7O7ZDo+xBkZFiLX6vorA+pzu/qKTSHMLzi8oobTY0/qe389dA6bBgSTmq2nf51vlY8Kz6cESSflAEJoiH9oqGg8cJ9qDIplC8tLQ7RW14P/kU2Zo7Hgbpem7ScRbP5xSUHV0XL1INw85E6RUHQME+S47Yb4fZKSrXEdRg3XmaSa8Iwt1vE/kA2FITG44osSeUANg55WDVVyy10nltrzvwjeLYqomNHwLr9qu6klvQ6zmCugesttNhlqIYgKkGMswvytPp4ojMYp95lGdv10waqor2yhLe9rIfwIUXXji2Q3sRFCiyKUS7xiadcEk3V5lDLmroot97pazHlMzvdJiE6GT7FqW9Blhhixt+sXZwo4p2YPOrJFxvqjYckAJwEbrmXGvbbgUK3wCeK3BDA4PraBh3T1FxgYojYQgkG2dvuWVQdQXTVRtItFYBZqqKE6s+BMBczYEblj1XUxxdCdAOFHtmXNRCr7grttxA7fqpyDzhOdbS3mgbTFXE2tcTShI9kqSdPwDgamLX4C5mj+S13az+k4yIg/rsVvz6R+/CDW+8aKx7TwAFimwyUUNVlI4uIrXOtej5zI7Q9J57kaXeEUGt4NMmYj+E2UussAlctyA9jLuXpeIKtk25uUar4gp2Trm5ermO4KzZfKUiwatJuncUie10JV8GCu6hc2H3qO7j3siuN36rife97hlj33sCOAdFCCEjx8zMzEQIOwWKbDplE+ilC2dLTA5l+xqdzhCxlkn9QYXjKfuAljVN3dL7vqYsmgZogCCbw8CG+ERkP4D3AdgL+55/p6q+fVD1IRtPLkRRSbihzvFi4UmaEJLHitLL69I5Lzn0FdWpMCp3n2X0Sjw/h07DL9KJw2c0DJmEMJRSQm1S6Yn4fIF2DBiuAJUwbFLbIN6qw3U6i3ON2jkswA7HVdzOnFBysXE0VJeNtiGwc2hAuBdUouxu34ILh3u7nE8mi0HOQfkA3qSqXxWROQC3ishnVPWOAdaJbBB9hzrquhtriQGiT+HoZswom6TfiJ5UPFSjNpxRx1Bg0x0oqk7nGSbDKVUcTW1zEV3jwgqDZMqoOArXkURenTJqnsR5Remi1lqnmfOBznNyojqFh8K9C2MxO50xIv47Ti95UGTiGJhAqeqDAB4Mf18UkTsBnAuAAkU2hUGPUuXDGYWikIlJJ6GDpNhcYtUse6zcjCKQAvGNy5aMzzE8v6xbE4tTQdndhKZ8P63ya8jkMRRzUCJyAYDHA/hywbFrROQWEbnl6NGjm143Qjaf/lrp9W3TqRDDRrINbK8sDro6m8rABUpEZgF8CMAbVXUhe1xV36mql6nqZbt37978ChJCyABJtoGV6fHc2r2MgQqUiFRgxen9qvrhQdaF5FlLuJpBurvKyl7LFh1rKaOfdHusyMoYxWEYfej0I2fKIF18AuDdAO5U1T8dVD1IMcnGRVOT893P1/gfe/5aGqm1mB0A6x5zkmWHdYnSNZOe+F+xmzCce4kiYBSWUXLfyXr18vzsefmH3pkbEojqukhX5Gcoyqso/XSLqItuK0pPGjhS+ZVck32GZLIZpIvvqQBeBuDrIvK1MO0tqvrJwVWJZMPVRJQ1Nqk2NfH/ZKPea6O6VmFSdCzVAcJhAc2nCzrikghbl84z8//o/KR1OllG0TXZ9GTmWbedvY+sZd5e60jH2g4AjiPx7rxJyqzvRemOABJbyzWOu+dEx8Jr/EgowmMSOvki+3pkd49EutQNiY6ARfkn77HomrL3Gpk8Buni+1dwRnboKLV9o/zF6tY4bTRFQlOyR2AcG67sWBFleUWNdFnvoZACceqG0XyIIBGBK0Bgipx+6bViqbJiC3vnGkcEFdE4ZmAyLw+aEwkRK0pF6YLypQS2rGwZXYZFwYaBWBiLj5BNZL3C05TbtMvTiw51q0/5+qXTVq+ncsqGGQmJGLiLj4w+/Q/N9bs/09rMCcUehO5hk/qpa7f08nBKZemFWdFoQCYa9qBIikKzAEqGshLzIdmhpSLWEp5ItTMsJ9pZGJrcpiIZnig3t6FRuq1rVF/XUThhXQOjaIaTLhVX4YVbWKjabScAwBFNzdEEYYghB2pDDEXpkRkDgBsuuFV06mTUpkdla8L4UBRmScP65YbIEseTlKXH+Rf1ogrOT4Y0Sr48RWGZojyi0Ey+SZ+fnUs7Xdkc3iMRFCiSQkpauFSjqZoXgsSxwq0Y+u6FpI0JUZV8tUKVnRvKNpjJdGPyxoLAAIEaO+mfONYOAD9QeJltLiJxE6SddAZAy1gBy5Zr62rFJfkAbZnFkSE0/Cf7CKMNFDtzSx1BS87ZJNOTnHa4LvfswiHBcO4qF06pJF3VCna0l5YAhe+HorKz90EIBYoUkpzELoxJt8HlJ3sdWcqMC2WUTd77posppExoS88v6Z2UOCnWwwiQbOCzpoWoTqnzTpNX0fmSKKTIlFGWntyNeK33QQgFipSyXpPhI8e630Lx0Na65b5OZoa1xc7rL32t5ZPJhCYJQgghQwkFipwmHM/m1WMUGNTGhYQkWV5enoj3IgVqwkmG48lG2smG6ik6L59faLFOnNTNCJH8OV2doGotCjkbt/3bmCg9X3bW+q3xJH9+tisyVWTPj917BW5EU2Itj/PJ5BWd3+3Z5NKKngmZOLxqDa94579gaWlp0FXZcDgHNaHEIpBIE2SEInVB8kQJz+1iD08W0mfZBtbplr0g69RLlh9bm9XuFBu57Vq+ifPyHIEbluobjdMldOchLDdQAMa60WpuJ/+VtoFRa6eerjixFTsyYRi19vWscy12tIX1TdndJbKjR08h8VxypgHJhZHivM1kErSaE9GDokBNKIUW8T7PX+v252VlmwL7ONBlN96woc8eDgzgG5O7zjeKoKB8hRWlrHXeN0ArXPCUFEzfAAtNg7mq5MwAgemsB8rWNSi4j2jdlIe82KRt15JLpziRcYdDfGSkKbWil4naGvIqEpbNZCyckYSsAQoUIYSQoYRDfCNCcvipl+Gd7HBV8pp+R+Wyw3jZyNn9YDSMsIBO2KIor2jhbHpbhk5YIVfS57cDuy2EKzYyd3LI0UF+sa9ROwQHIAxPFKUrVtt2zqrqSioMURAkIpdnnvlSS1FzFRW3M9QXqKLVBjxHUU2kG1W0/DAiuJPvFfkKeMgvDs5GkEhG8RCE820FW1hwCHD8WV5extzc3Fj3sNmDGnKK5lmi+ZpuAUaL5llMQV7dy+4/gGp5XkDbIN5nSGFj7PnGCk0rEdXBqA035AeaivYQaDS/pGj4nT2LAgXaRhGYTrw9EYEjoVAp4AedyBEKW5d2oGi0DZZaGoc8aviKpm/gB4pW0JkTK3rmCqARAMttDc/v1LdtgJV2eG++oul38miF4ZSQCXfkq7237LO1wqodd2GifN9Y8St6j9DxN75MipOPPagxoyxG3qDxS+rVbX6n6JDdZK/4onx4IhtPzg+Kd6JtBVpqXEhbFLpje4X53o+GZTgF33BFOj+9UvaobJil3utLRhlFYGz4ZH8CnHzsQZFNYb0+RpvxcZTEv7lj/YYP6nZsXYdm1qe+ZLhRVWi7bX/89tgv2KVAEULIiCDiwKvV4dXqqM9uHfthPgoUwXAOCg4nY/xllYwg475glwI14cSusD5m1IvCE3Xyyk/yF+1PFB9AcbGKfNii0pOjslEchqgs6kXZ6FcnbFE+rzIxz4ZGyudVcr7m0ztlJcsuNz0U3XcnnaJKRheaJIYcCXeky7YxZTbisvOjawDEYYiKnH7QTtidbKSIbIiibMPvh044R6xlOjoru/EgYjFJLKiNjQmhw88k7jOR3jLRxoHpTQIjN5srQDWx2WDDV6z4dtPAqtt5BpHdPXn3UX1WfSsqU56k8vKNdfV5orFNPRKAprGW7+T5yU0OK2568z6jQNO3O/g68Z127jEKgZR9hgLACX+JX8/w9e7swZTOj6GRxptxtpuzBzUCRNtmx2FvcLq9e/LnOwnXWKhh3UpM5NVZy5PtP0S26UA7woEwrWVC+7fmnXqRXTyZnswrSMQ70tBi3Q6t5XEPA1YwAmNt21F6EArMiq841TRYCVUospC3A5tX1gnYDux1y+2OZXvFVyy3DXxjbfBRtXwFmoEtO2nvDgyw2rZ2dz/xPCI3X9Z8aNND+3vmC4O1zofPJPHcFfbvohewk3/eTQhQnMaRcbebU6BGiFh4emxoys5f74aqzCpell5mhY96VUXpvsmndysjKWbZ84vSjRaXEQeP7bGuUV5FlH0pKFubpuh/92AyeYzzPBQFihBCRpxxtZtToMaYOApFdmjpNO/jor2TuvUKinpknbKzk/2KVmDgByZXRss3aBWkN33FatvAZPLyjWKlZRCYfPpyK0A7yJe90grQaOfLaAcmsZ9U8r4VDT9ftlHFip8vWzWMclGQ3vINWn5x2Y1MenTMD4oiS9hnmK2TPZZ//YDOEGoqEoYmoouMX9s2MYzzMB9NEmNIdgitaDgqmuDvnk9n/iZ3DJ0yHAAqYSNo0mWbsHCBnZdpJkQjCKx5wCisaETpRlF1bT6LLRMPvbXD2HeeY8MIteyCerTC9JoLLLUVy61wL6jAoOIAUxWBH84PKQAJrIjM1hyodvZ5ip5dZDZImjj8lkHVFVQcOzcU3UbbKKqOou4KAu0YL9pG4Yqi7tm9s6Lzg3AOrO45ELHhlqL7bgcGUxUHrqSfYTtQOGKNHsm9pALflpGM+Zd8vZIx/JKvW5R50XuEMfxGk6DVxNLSEmZnZ8fKLMEe1JjRe6gj26h1eyunXHbJdCTKCJ0XIlLqHgSsAaGZ7dEAWG0brCbEKUpfaRucbJjcvFDDV5xqdMQpohkAh5dNLE4RbQMsNBUr7U66wgrGfMNgqZXfN6osZmErUKz6+fBILQOsBppxBdoymgXhlKxT0KCVCcGkQGFvLbomabxIlhF9Cchik0vSc6lklBnXXhQFatJZx29b3bLqFti2iLWYA/pteNdy52XXlKW7JQf6zacbTkm3J2lrJ+PPOJolKFCE9APbezLEjJtZggJFSD+Mz2efjBnRMN/hw4fHRqQoUKRvyt765Z8JPc1cV/5CKS2k9zySx/rZ16rbflfdq1Xuqis6vyy9X/otg4wvAuDl//PzYzMXRYEaM6JIERuVV2Fz161BV4UpmFCKLdzhxoDJOHeqGm9AmE1vmtBynrCEG1UstwwOL7ax0gri9Mja/eCij1ONjvnA1kkx3zRYaEbpnWNLLcWphkmUH9rH2wYnVwO0E1Z4awU3OLUaoNFOnx8YxYnVAIutvPHBRsgoFhAbdSL/TIteVxHE1rtsTp34fSVxDclYMk5zUbSZjyFxOKMeHX3dtnBPxvYrauKiED1Zezlg7eJBtIYqsbut3XlW0Uw48XwfqIQnNBK2N6OAGoWBXQ8VudgagbWuqwLHVwM0QgvdyYbdIXeu5mC5ZbDctuntpsFyy2DXtItArRsvorUSYKbiQERTLsATqwZ1T1Dz7JbwUdnzDYOKK5iuCNoJl95S22DVB2arTrxjL2At8Q0/wI4pF57TkRmFdeZ5jt3UMLl9ezuMx+fF0UAS16m9b88VuE4nDFX8miVfn/CZO+GygjLPBO3l48W4xOdjD2qM6XtzvZILouQysQsKxAmwa4GytmgRa71uBvnzm0FanOL8FWi083kFChxY9GNxSpZ7ZDmIxSl5/nwzSIlTdF9L4dbv2dIbvhWtbNntwPbkiuIMLrdMbpGwtYmXDxt6Tv75R4F3s+kigqrXEadeUHR5fUFxGifGaS6KAkUIIWNGNBc16iJFgSI9U/QlW8vSVeM5kGx6WV4mnJfKYqOD5+dkAqO58ERRGYvNoDDc0FLLhhXK0vSL01uBnXcqCje02CyaW9JwcW7+PnyTD4HUya/YZBIU3B9QHB1kraxnXmR4GAfDBOegxpzUHlBdON23rGguHgi3f0jMb0VzXnEIHpOOGhGF0LFx6uzciuN0IoXbeHSdYTQDhRt+dVppm3hIToB4X6WlpsGJ1SAO3eOG8zjLLYODi+14y46d0y621V34Bjix6qMV1mtb3cHuGfv2P9UIsBoOB9Y8wY4pD44AR5d9HFkOIAI8uCQ4f2sF0xXBStvgVMOef3zVYPeMi5mKDXUUhVNC2+4nNeXZKBueY6NdNAODmgtMV5xw3klsCCPYSBwu0sNtvnZCQjlh5I/kkGsyPFHZKF1nJLDs60QnBBKH+saLUQ+BRIEacyShUGUS1MsQQLJRdAzgd47Ex0QNGgWhgIDIGJG+xhPA+AEafvpcBdAM92LKpjd8gxMrQW7eKzDAgaVWLtTRidUA840ATma+Zr5psNhqYcpz4rwRlvvAfAvLodBEItDwFXcfb2H3jAtBxzGnChxZCrC15qDipcto+Hbzx7lqOlZeMwAUih1TTq7RCBSoZLZI0fD5WbErmJOCteXntlVBJ62XxokiNX5E81Ef/KXnYm5ubtDV6RsO8U0I69XoSPxPURlSvjdUSeyi8n2eQrt2QT5lpowik4MpaXCNAm5ozU5eo+jsDFxk8ChyRioAz0UOBeIeVJZsgNe4jHw2qfLLrinbXTm54SSZTKJe1CjORVGgyNjTPSRuyTVs08mYMMquPgoUIYSMOaPq6qNAkVKKXHj2wCaVX5AmUl58WaenyBkY5V+4OBnl27aXUXZ6t40e17OhKMpqvcsgo80oihQFagIoFZoezs9akMuiU0QRJXLbSyTD7KTC7dh03yC3a2y0k2zbT6fbnWQ13GAwnb7aNji+Yl16qWuM4sBiG8utIHfNA/NtHF7yYRIqEhjFfCPAocVWTtgCozi27Od20TWqOLTo53YDBqwLsV2Q3mwbNP0CizwiZyNyNMNdd3N2+/i5pc+PXqvO+ad/E0Sv94i0X6RPRk2k6OIbc5JCU0Yy1FHR+ZpI8DMCFb3Jo/BFQGgpD4/5iZA/UWYKayufbwSxqcJRG+rIqLV9Rwa+tgEqrg02e2DRx0LTHlhpK6Y9QcUV/OeJFu450YICOLwcYHtoIV9uGRxe9mEUOLlqMFdzcO6WClq+wXdP+bEV/sCCj4ftqsJ1BN861sR8w5ZxfCXA+duqmKk6KRv8wYU2ttZdzNUctMLdeQHge6d8bKk52DPrwZWOEWLVB1xRzFQEjmPTHRE0w911pytOaKu3r0Nk0HAlFPxQ9I0KVtt2R+GKmzZMBOFpTsYUEomUEwXs7WFuLTKjdwuNREaXSKRGwdlHgRpz+vmOJCKlw2GBFm8iqLC74qbzCdcqtYrzOrnio5XJzKi1fmfDFimAUw2DI6HQJNPnWwa3HljN3ePJhsF8s5Urd7FpcOeRZs5puNxW3HqwEQtrhG+sGO3fWknHwoMVUaP5LdUXmgbnbAGqbnpwIlC79qvupdON2hBPUyI5MYhEKmvy8I0VqCzdXmtFf5sXRiJFhg1FYArihPWJ32ri8OHD8XtiZmZmKN2eFChCCBkRVBXabp9xPq44eN11N6NSn4bfauDGX3zOUPamKFCkJ7oOEZ7meM9lhPMr+aCpNqRRtothhxC1MGhqs+2j6rm5vFp+AIjAddI9Gd/3AVV4lUqu7JVWgJla+qNio2IY1L38YttWoKg4BfdhbCgnp+A+onVZvaTbYwCQLyMaji36Mlz0bMloIeLAq9XXLT+/uQp/iKNNUKDGnKJQR8m3YFZYora+M8GOwm02knlNVRwExhoYFKGZwU9v1WHztOdUXIHn2qgNUaijVV/j6OOOahzFe74R4L5TLfgGqHnAVCgI840AX3lgBacaBlOeYFu4lUXLD/C9o/M4vtTEVNXDQ87aitl6FYFRHDixiIMnl+GK4Pw9W7F9xn7QH3zwIP7z23dDVXH+BRdi3/7z4DgOFhtt3HViGW1jcOGOKTzmnC2oeg6avsHBJR8rbcXWmoOLd1RR95xYMO840kTNFVy0o4q5mhvuDQUcXVGIGOyccjFdsZNLCqAVWFGre3Z7j2ioNTB2Ds4Tg1piwa8bhokStSGeko1KNHLqaDLEEeIxuzgW4mkaouFqpshGEq2Tes/PXY7Z2VkAwzPkJ6Pg5Ii47LLL9JZbbhl0NUaOopdYMkKUv8YaJto9vj2i99FCI8hvpaHWDJCbX1K7x9ORlcAGS00cC4zi/vkWlhJbXUTx/O492cJ3T7Xja6K9joJ2A0dOLQPoXOMIsGWqiuWmHwsIALiOoIoAq0e/h2ajAT+wlfZcF161hp0XPByNxP5T0XYYjzpnG9oamkrQieJw0fYKttTcVG/SEWDPjIe9s+lemcCK7a5przBs0Uy12Fw7U7GmkOw1jhRvy+Gg46osjjTRPZLFELRPk0LPT3rL2RfqU3/+/9+QSrjVOkQEfquBv7vmadi7d+9milRhQbSZTwCSiO2W/D36u/gaKTRFlJdhMyra5wmhY63omsWW3VMpe3S+EaTECUC8b9N9p9qpayKhOnRyKYyI3rnGKHBqpYV2YFKRxAOjmD9+GMvLy7E4AYAfBAicKlZaQSofG5JJ0DTpHqWGZcxU0jH9orJnC8RGkTdRRDiJXk4SAQrFKbqmPH0t+4JRnCaRoNWA31wFVIfGik6BmiD6bqjWs/A1vM8Ly88OXfVA2fml2Uj5Nf1+Xrs982EYQiGkiOR6qUHG8eMcFCGEkBwC4FV/9yUE7Sb+7pqnYXZ2dtPnptiDIqV0/87Ub1ei//ILwwRJ/2GISkMdleWjXcro8z66ffEc9PAJIacjaDUAVbzq776EF/3pJzZ92K9UoETkPBGph7+LiLxCRP5CRP6riLDnNSaUvddUteTNoYndcjuzMdGbtla0gFQV1YIxM9Vwj6Oi9IrkhtlsPoCr6dBBAoUxBhVRQDXtUjQBgsXjUL8FJzmrFrSth669CtFOuiOAvzKP9tIpILEg0oGi1W7j2LFjMCaI7zsq6/6FfAgkAHhw0Uc7yIcnWm4FYXSKdLpvtPB8hV3Qm3zm8a1Er0U2BJJ2D1tU1tBQN0mWSKh+9l1fwPLy8qaV201oPgngSeHvfwDgYgD/CODpAJ4I4JVnWriIPAvA22E3En2Xqv7BmeZJeqMsBFLUaEXuPjc8x0ALG65oPY5vrCPPcQQ1UbSDcLty2FBHCuuECwxiI0MUOaIS2qbttu7A4SUfx1etONjArfb8755cxe0Hl+EbW85svQoRB83GCo4cPmTXMomgNjULdT2gtYql+25HsDIPiIPpcx6Kyq7zoEEbi9/4PJqH7gEAeNvPRvWsh0LEgWk3YNpNLHznJCqz2zG7/xEQr4rWyjxWTh7GgjE4+MAULrnkEkxNz4SWcODYSoBTjQDnb/Wwrd5Zf7XiK+461sTeGTfewVdh7/fgko+ZioOd09b9F4T32TYKLwBmKi5cxwq461ijRmAUdU/gSMdermpDUDkShjRK7LxbFgIp+XrbEEgdZ2LyF06TkQi/1cRfv/IHS9crbgSlNnMRuUNVHxn+fiuAJ6rar5oicpuqft8ZFSziArgbwBUAHgBwM4CrVPWOsmtoM18/yoawinoBQKfxzOejnW3OM5yKtmTPcGTJR8PPX3NosY1DS34uFNGhhSa+dnAJC420RdAYg+WTR+AXrKxvHrwLZnUxX/iq7R1pkL7G3boX9R3nwmRr5VVR27oHQZDe9ldE8MTv/4HCD+n3nVVDxck77s7b4mGunu9izlQEWwvSPQfYVvcKFyLPVIodfRXXhkbKHnLQ3VzSz0aIZN0ZCpt5L7jVempOKskZzk8VXtitB3W/iDxdVT8H4D4A+wF8V0R2rrUGGZ4E4B5VvRcAROR6AM8HUCpQZHB0e9t1mcopTi9bewWU7sjbaBeb3ovECQC0tVqanhUne8CgsFaq4fn9ffCKPqj9PiebT1/FrvkaQnohaDUAWPNEKj5l0ML1b3h2TrTOlG4C9SoA7xORtwKYB/A1EfkagG0Afmkdyj4XwP2Jvx8A8P3Zk0TkGgDXAMB55523DsUSQsjokGwD61vWq39wZkRCBXSG/qanp9e9nG4uvl8D8N8A/DyAd8EK1q8BeIKqfnbda1KCqr5TVS9T1ct27969WcWOPYLiPkEUlaAoveqk3zCqCmPCdEmn+4E1QFQSBzTct6ldsJZptW2w0DCouWnTxGrb4NvHW1AnHXVBjUHj1BGYxhLUbyXmzhTB8klIdRpubSpVRvv4A1j4xufQ/N7tMIkelmmtonH3/8XJL/0v+KcOJ8oIYJZOYOX+OxAsn0ybChwPX/2P23Dw4IMwxsRlL6y28PE7TuDL311A0+/0+oxR3HeqjW8dbaKRSG8Fiu+caOHWg6uYzwxhQoH51QCNdpAq2xUU7qMF2Dm+ovR+O1XshA0PyTawMj2EAV2rNbz2ups3xDzRrQd1N4A/BnA2gBsBfEBV/2Mdyz4AO2wYsS9MI5uAhOGBkqF5kjjSicVn5yJsk+U5ikAVraAzjyUi8KBQsQ1uK+ikV1w7l7LcNji+EqSOObBCdmjJx6mGibeEqLqAr4q7jjRw19FGuC+RoFLxAFUsnjqB5eOHYleeBG1o0EYAQBeOAsa3+XtVwKnAXziC1Tu/gPapQ9DAh/otNO69FZWd58JxPLQXj0NCd+LS125Cbfd5qF54KbTdskKqCv/EATiLx+HuvhBufQaOCAJjcOjwYRw5egz7zzsfDXhoBwZGgfvnm3hgvoXHnzuD/dvq8bMKjOLOIy3smnYwXREstTpzcXcebWJb3cElu2qohnNYCrv3VdMPsKXuomb33wDC1803Nh5fMqBslO6INaAUzUnF74PozZBNyycTUk7RsPk6UCpQqvp2AG8XkfMBvATA34rIFIAPwIrV3WdY9s0AHioiF8IK00sAvPQM8yR9kIzH10lLdYVyjZSIQAoMExIqXqsg1JGI4FhCnJLpR5Y74pRMPzjfwl1HG5k5KYHfbmHp2EFANd5JNrJqBycfRFJujVU8LH/znxHMH4aGPZ2oxxPMH4HxqnaeKbpl4yNortg5LHHi+1RjYII2KrVpABKn+4EBAoOTTYXjdnpGgQEARcV1cuGaAIQhnvJ7Q6kCFckbIIzC9i4LVMMVQESR7fd40t3oQGMEWQ+iIT4AWFpaSh0704W9p13PpKrfBfCHAP5QRB4P4G8B/BasA3nNqKovIq8D8H/CvP5WVb95JnmSzaKs31VO2doag2IHYGBsLy5rmlA1cEo3VixxpBo/Fqf0ASlcC6QicKWzlXoHBxJ1KXNZFX8Iq25xen71VyefwvXJp/2Ml+dHyEbiVWt4w41fz73X1iPo7GkjSYiIJyJXisj7AXwKwLcAvHBNpWVQ1U+q6iWqerGq/vf1yJMQQsjmEgWaTf5EQWezvap+KO1BicgVAK4C8BwAXwFwPYBrVHXzlhGT8adbKKD+Lyk+v5vfvQSTHzFbE4zKQCaZ4Aw3Q+zWg/p1AP8O4BGq+mOq+g8Up/Gj7zA4KHcAqiqKRrRUtXDbCQCYqzmF+e2YstEVsvk5XgWO6+V2pQUU4lVz+TsCVM9+GOCkd9d1XRcmXHzrJHbXdUQQLJ1C0G4iu+GI+k2Y5jLEZN12Bs3Fk9BMugD47olVO0+VkFUB0ApM4TDlcrT9SOZYFGGi6HUpOj+ZXq7PDHVENpZoM8S19qJKBUpVn66q71LVk2uuHRlaymK0RWFMSs9XwIig6gk8J32NgU2vuun0hq+oeQ52Trmpa9qBouo5OH97BdNVKx5GFcutAEdXAzxszzR2TnuIgvAYE2BlZRWVbWfBndkOhCF9oAbByoKtoON2BE8VQWMZ1b0XYe7xz4U3txPihJVzK5D6bEa4FGraaJ88gPkvfRCN730DGvjhTfvwTz2Ipdtuwsq9t0D9tl3cawK0Tx7E8W/+K47d8X8RNFeAMFZgs9nE1+8/jo/ffgDHFps29JPa+HurvuLocoBG28ThhmquYMe0hwOLPk42OgImsHNZy22767DJvEbG+jRS8fiivaACyOnj8SUOavTT5RpCesVx3TNy+HFH3QmlLNRR2fsh2hQwezQwpjDUkari5KqBb9LXqCoeXPLRLAh1dPfxJu4/1cZKZufdw/Or+M7RRTRb6Te6aTexevDb0HYjla6qMCvzUL+ZbnxVsfLNz8FfXegIVZRXcwVoN2D8Vird3X42Zi68NLVuyh6oon7xE6GNpTAKRYgItj/mchg4uWf5I4/Yi91z9dx9755xsXfGw1TFSfXypiuCc+Y8eAVhk7bXnUL7eNUVuE7eHMFQR0PNyIQ66gcN2njPa67odZuOwoPcboP0TLG7rMx1JjlxitLL8gKQEyfA7iRrMrHwAEAc14pQURl+K9cFEBF403M5cbIVsr2kXHJzBdosGNkO2jAr82lxCvPxW81CoW+0i2MTAsiJE2CH6NwCyzlQLh5lu+sSspn4rSb+x888BTMzMwCA5eXlNW18yG0zCCGErCtF1vO12M5HrgelaoebDMfI10y35yZS/M28yLAQMeU5hcNHW+tObn8oYxQ1V1D30heoKmYrDi7eXsmVs23Kw6Xn78B0NZ3ZzHQdFz36CZjZsj1XtjOzHVJJhzoyfguBUTi1mdz5bn0GzuxOQDofCVVFsHQSS3d+0c5xJfCXjmPx1o+iffyBVLp4NbRXFuE3ltN7VongvpNN3HV4ORUx3s49OVhq5U0TVUew3DaFEeaXWgbtgsi6ZSGQDDr7QxVROO+I/PnKzx7pkaz1PLKd97ON/MjNQX3l5vwcFMfKe6MsinhEdvCt7HyjSPnboveQb6whAplj7QCYbwQ2ZE/YqGoYjWKxZdNX2xrmrQgUuPdkCydWAsxWJXTsKQKj+M8ji/j2kWXs2TGHWqVi92MKAiyeOILvfesb0CCI6yZQIPDRWjyO4MQDaB1/AAJrSDAmQLCyADUBnErVOvnUpvtLJxAsHoM2FgFjoGqg4mDq3Evg7X0ogqP3wV8+BTUBxPVQ23U+6o94GupnXQyZ2gKIHa4T14U7vQ21qSlUKlU4YueHXBE89tw5XLijjj0zHlyn8/SnK4LZqmB73UvNJdVcOwzoSHreyXOAmYoT7xsVnS8APBcFbkf7rbTfCBNl8LO3LozlHFQZbrUOmHY2+nnhM+AQ3wRRJk7p2GvJmG4KUeRaICmY2wEAV/IlRLH1Gn5HnKJ0V6z7LGmyEBF4Apw968FP9RAEriO4YNccmk49FcvCcV1s3X0W5J67bMSIKHAsBOJW0D7yHZiFI9ZdF10nDqQ6BQkdRiYOLOjA8apoLZ9MdxM0QOvB/0R7aR6u68aRKTTw0Tp2H+Z2vQzu9FaYSOZVob6PKc9BtVpFKJe2hwNFo+WH4pTtSQI7p/M2+mYAzFTzYuAbG5XCalw6Hp9RW2pWcNZpiVeqzhQpUobjpkc+/NVFvOc1V8TzU92gQBEAZcN6Ai0QnbJIRyJlB2zvqogiIwVgg6q6BaGODFCYHsXpy449KQC0V8Jt2tM4kl3pFJbht+B5FZtfqk4BKtKJ5RefHwRwp7bE4pSkEopTlpmqW7gRYVEaCnPo4DgofAFt8sYrB8WJlBHF6ZuZmUk5+XqN0UeBIqeBrQ8hZG1Up6bxix+6A6bdWNOGhhQoQgoZnblZMkkogoLRgGHCDZdxRL2nvXv3AkBPQ3pZKFDENsUF8wilTXQ3F2DJ4aon8Fv5xblVt/ia7DYVcbpj53IcSS82dgSo1adg2k20/c4HWESA+lY4zRUYP7PQF6FlMTMs6NSm0QoMxHFSUdBdtwJA4Lheal2W61XgLx5Dbee5mToJ2s0mpir13FDiQtOHUc3NNfkle95Hc2dF/dnAKKRgca6BnS/c6GE+zkFtHqoKbW/M3kvrgZo2/urVT4/FaGZm5oy2gR95geLnonfKxAPoiFQZacs04IZOPo2P2xKmKg5agY0gkeScOQ/zDYOjy+nFqtunPNQ8g8NLfqpx3zntYq5Wx3dONLHqa6whW2oOnrxvCv95ooWjK0FoBLCRFa585g/jrm99G3fefQ9MYABxUJmew64ffjka938DC1/9BGACW1mvito5D4P6LbQe/DZg2gAEKg5mLn4iZh71dCzd/GG0TxwENICKi9nHPxv1h3w/Gnd8HqsH7oQG1sU39ZAnw53dEddRYOP7bZmbwUX7d6OlLg7N20gUjgimqw4esmsarUBRc8M9tsLnOltzsNIyoWOvIzpV14qX66QX43pOx/noomN0icI9KST35aNkymrNUJw2DxEHXq0+6GrEJA0QQauB97zmWWe0vUaWkbOZ33zzLR3HF/jhWAuns5sXX1MeAikoyM+E27tnCYzivpPtgn2eFIeXfDQDRTWxMZ+q4sFFH8dWfExXnVSP4+Sqj/tOtrFz2kXd66xfWlxaxv/5v1+DM7Md3vSWTp1aqzjxhesQBIGNyxeXYeCfOmwdh2c9FOJ6cdnNB+5A68i9mHv8s+FOb4vzap88iOaBuzDzqKejsnNf6l527diGPTt3Ysf2ran7NkEbu2areOTe6dR9zFYdzFQE26bcVHrVtRbymie5ntZURVBzJWeqqLqOtacj3aNyJBRO0F4+hIyMzTwvSFekekhnsEHheNjMRdhrOlMKRrXWnheKxa5o/Q1gXWpVV7CaWS8lIpituUDL5NK3TbloG82J2ta6i3O3IMfc7Azmzr4QzUw3zqlOYXr/I9A4cShThoPq7gvg1adTvTgRQf28x2D2ku/PDTdWtp+D+kVPLPwwXrh/H2q1dGR11xE8au8cdk7nP3KeA2yfcvNDdIpCcQKAKa98d92i87sttAYoTuT0aNDGu3/u8vUSpJ4YOYEihBCyufitJt73umes6/BdL4xcqCOSp9/wM+s9qlv2Jqq6xRubz9UcTHn5I3M1Bzum8oFcpyuCc7dUcuGUKo5g/9YKvIIKPGTPLObq+e9f07vPw9SOswvrGwR+bihTajOQ2V25LoPjVVGb3ZoLPOu5DrZOeagUrGfySraqr5U8J0cS22gk64Ty19uGJyoxWhSdH793Rmeon0wOIzcHxe02OhTNJaWjQvR2TW9lnb7RC0LjRDTXEZXUDGwUieQwkwJYbBo8uOhDBNg946Hi2r2LVtsG/3mihVag2DPjYbbmQNVu2Hf74QZOrATYPeNiVzhcZhS453gTBxd9eI5t8G264ttHlnDbA/MQx8Xs7AwcEagxWD1+AIdv/wKCZgNutQqDMDyRCNTxIG4V9bMugjO326aZAK2j34VZXcT0rn2Y2nseROyWGo2FE2guL2D/3h140iMuRLVi67XcMji5GmC64uDiHVXUwmE5B3ZxbdW122kk59Yi08d0OMeUNEM4AtQ8B3UvCndkhc0RwHUQi2J0TWSmiCQ0ek9Eb43sK9pLJPTkUQ7zrRsjMQfluA5ueONzzsiV14XxmIMiljKh6RbGpmwPqF5INlxZR1+EE/50bMf2YC20kvumY3kWWEde3auiHVZMwgnGmaqDR+6uYTGcj4rSXUfw+LPqOLTkh2V0GuKH7qzBN4qVdqdurggu2TOHwKni/vl2XFlxHczs2Y+dj3wqjn7z36DhRFq0waJUKph6yJPsrrthiCK4Dqp7L8L01JQNdRQGlRURTG/biac++kLsnq3CTUwiz9bcWGCT80IKG1fvwu2V3HyR5wBzGTMIYCNu7Jh24WZERAF4jt08snBOqiTUURFGAafgfOD0X3zIeBKZIoJWA+/+ud7CE60nFCiybkSGiWwjJuHQVrbhi0IjFaWbkoZS7TZ9ORV2HUmJU4TjCE41glylFA7aC8fs75nL3PosHEdyoYvEceG4HjSXl2DXXA2ukx9rnKrkTQ4K684rMjO4JSYgEeTEKaJUnHroEfUDxWlycFw3FKWOKWKjDRFFUKDI0FLmEOz3/NIYgd3ykvWJJVE8u0TIcJG1j0fCNAhRSkKBIoSQCSQ9fLe59vFeoUCRTaHftVd2K/mCIbsuPZso/FH2uOcUR0B3K1V4rgs/SMc2c0Whmh9r6/ZxDYyi4uTLDlRRieaxEphovis7/Nc11Ef5ISmYfbTzlOsX6qgopFEcPWPwbRnpkWEZvusF2sxHlLUsWF6vt1/ZG7lbnWquFC4UnakABc5yzHjAjnp+gGzKE1ywzUPFSbvSqi7wIxfPYOe0G9vOXQEqDvCSR2/FY/fWUQnTPbEOuhf96A/gysufhGrFg+tYF5/nufi+C8/CFY/ci5rnoOJGLjrBudun8OQLt2K25sILHXNVV7B7poLztniYq3V2Fo7K3jvrYkutcx+R667iFC+09QqiQwiAilssAoJOmKksmvjpFU2YRbJ5Rcc75xWnk+HEcV272PZVP4T/9eYfx969ezE7O4vZ2dmhFCeAPaiRJppaSYZ+itNLzo8atKJwUb2kd/KSQut5tk7J82ueIDCKVqBwQpEQcVD1gCmjWGjaDQXrnsSGg+mq4sRqgIavmK5ILAwP2+XgyLKPE6sG26dcbKlZgbniIR7un2/jlgOr2D3jYf/WClxH8BNbq/j++Wn8450L2Dnl4lkPncNM1QHOfwp+8PGPxrv/8TNYXGngec94Ovbs2gkAuOTsrfji3Udx3/EVPPni3Th3+zQAYN+2KdxzdAXfOb6CH7pwKy7d1/mAn1oNcP9CG7umXZy/rRKLzdYpg6NLAWqeYP/WKqqh8KlaX7kjwFzVjQXR0U78wa11B/VQXaN1S4AVwIqbFzoBUrvxZt8fRSRf74hsD08TvyRfX839QoaNZBSIYe0tFcF1UKQnSm3tXd4//dra/YJwRgDQDhQrBXH9VBWNkp0HDiy0C8tvB1qYfqoR4ORqkLtHP1Ast0zhxoYP31Ut/KDXveJe5pQn8AqcfjVXMFvLp3sOsK3uFOZVKxCm6Joym3hZk1QkTvExhkDaDHp+av2sg0rOMb3nNVdsehSIPimsGHtQhBAyZmTj5o1SrykJ56DIhrGWj0PZNWWBTovCHAFhMNWC9LK5sIpjozfkynWALfV8IQI7FFlExSku23MkF64JsMN7JTu9l2JDGvWZ3l8R9rp1GGGJ5qvI5qBBO+4xDfsc0+lgD4r0TPQW76WtcRJjSoFJzIMkjBTZOa/IxOAr4v2kROxi16mKi1agWGoZqFrBqldciNhzF5oBArXlzlQcbK1VERjggYU2FlsGjgB7E2GTDi35OL4SQADsmHJwyY4KFMD9C21861gLgQJ7Zz08fFcNjgBHln3cemAVq75ix5SLS8+uY6oi8APFg0sBmoHCc2zIprpnPXWnGgGavsZlb63bIZf5hsFSGCVja92xkcwBtAJFI4zyXnMFW+tO/KxM4jlF81oa/hO1PU40/5dY9pVslyKRSg739TIsV+Q2zJJ8TcvmLsPpNg4DbiBJcRpVUUpCgSI9kWx00umdA1EUCckccx1Ni1H8wdGEC62T7kHhuh1beHLTvu11F42w0e/EqbOi0YzTAUDguMD52ypYaRu4YuPXRWGTzp7zsGvaRWA0FXHhvK0VnDNnr6l5TiwGZ816eOZDZ3FyNcBctZNe9QT7t9rtQypuJ2qEwNZVAGypuan6bqs72FJzbI/K6WyPUXWtcaTi2N5Waj+nUCSS92efYMcZmE2PfsmZH9AZOum1DesmUkXmnG6huIrqRM6MyDo+TuIEUKBIn5S59CCdwKX5Q3ZNU3bgK3ICFoVGKlpzE+WTs2HHQpgv2xFBpeCAIwJXFJLJyxGB6wDTVQfJAUcRCU0LeU+8EzoUs4gIZitOYX0rDgrTHSk2OnTEKV9OWXpZb6VIUNZKWRkc0ds8oq0w5ubmRnauqQwKFNkkBvehSYx49XnVOpQ9Pm0FGWJmZmY2Ksr4QKFJghBCRhjXLV6KMA5QoMi6Mg5urfX8qI/a8xi1+k46fquJv/uvPzqWvSeAAkX65HQbHkY255yZos9ykk6zbHqJuxvVkndzzS2eG6u6UmhT98Rek8UBMFMttpBPufk62/kZLfyQuVJunS/ahgMoXzTbVVS6WM6T1yVfs7L8ykIgZa+lyG0eruuMtI38dHAOivRE3AD1ci6Qced1D4FUFjIp2iI9dvPBbkIoHlBRRdO39uso7p2Ig5paq3bbWFGqegJHHNRV0fQVq751DtYSUR1avsFyy4ZZmq5IGIJJ0A4U802DQIGZimCmYodSttQUJ8PwSxUXmA73dppRxXLbYNW34rdzykXVtffXChTNcFuq2aoThzryjWK1bR2QUx7iso0q/MA+L1dsjL7oWUW2/aShIvvFwQ2fYXb9U1JEFZ2DuVegwKYeH4qNLXnHYGFeibLL8iT9E5kjxrX3BFCgSB/088U4Xm+TaIwiC3o21FAcMy4UqpS9OhEGPZmXI4K6h9xGiCKCqYrAM+m8RAT1isAVE9rhO9dUPSfuSSXTK65g55QTikEn3XMEu6ZdLLVMruzZqosdU6GQJsqueYIpT+Fk7OOeI5it5p141n1oxVQS4ZFEBJ4LQG1e2WeLzFqjSJDK4vGVvabR61dO/mi390eZ24+snXHvPQEUKDJEdIuS3v8165deVnzZNY4Ux8mTrunrU3ZyHVoqvSSfzYDitP5MQu8J4BwUIYSMHJPQewLYgyJ9ULSeKPnxyM51AChecFtwfrf0aCQrO88SRU8wmh42FAGqYbqfSHdg53kUiOevonyihbZNPz3nVXXtAtm20Tj8EsL06YqDVV/j+SvAzmHNVBwEavOK0j3Hhi9S2NBMUbqDcK8n2Lom7yO+7+zz6PKsyljLs+1OfhCwW52K3gdkLSiajRW8//XPHvveE0CBIj0imdYn2TxF00RSkF6WV3R+tzISR8JjndBI8RyLCBzYEEeByadXxYZMiuZiJCy87lmhkNBNF30TrXv2/MAgNS9lww/ZnXOjPalEBFMeUPdcrLQNpjwnnktyYfevagc28kWULgAqjt3yI1u2B4VJ3EdkRBBNCxoyw3ipZ557ciXPVpLHpPTZFhtYioXptK8rOWNUFeq3xy5iRBkUKNIXyUYoa4AA0HOcteicoi3DE76ITHonNFLWnAAAjpP+Vh+HQILmGl7AxvBL/h397kAhTj7dGhaK0yOHX7bsipv+O/rdRfF9iCqcSIXiAwmBRZqitOQxm28iLfX6pcvu9mzLYvGVvQ+4FfzGIOKgNjU9EeIEUKDIGuhuWlifvMrTuxVQfqzMhFCci5Rmta7mi8JD69vwFN932bndnl9/9ZqQ9nPTUTVjvTA3C00ShBAyQkzK8B5AgSKEbACMJkHWAwoUIQPgdNEW1quMbkKxLrvlIh/eiGGPyHrBOSgyNjiSt0t3zACatqKjM0+Sj2yB2NGWjMDghgYJE4YbinDDTQdV01b0sjKyxoJs2V54fiKrTuiiQqu9LTt3H13KiVC17r0zmTTKhrbKPn8aJshaoUCRsSLUovTf9je4UhxOyRXAmGhHYEldGzXgSXebIwJxNBHOSeI8PacjFNkyisoGyuskJllG/v6SdYrch2sRg9OHNeotj255U5zIWqBAkbGju8twDW67gjzLwhCtLTxRWXqxcGTt8ul8OKZGxgfOQRFCCBlKKFCEhKzXKFS3hbPrO9K1sb2ldTVssGNH1gAFipAEkvl9LfMn0dBcHMmhIN/e8imOfh4dK8ppLetjcsOX6Nz3mYoqp57Wl27viXFkIAIlIn8sIneJyO0i8r9FZNsg6kFIRBT7Ltkod+LhnUF+Rfn3LXgJ4wZOL0LZRiz6uyw9KSPZ+xZZWz8t+wwnqE3dUC7cs3ViokgAg+tBfQbAo1X1sQDuBvDrA6oHITnWs0Fdr7xiMekjs+77T/WRT89nZstZ44WkFNd12YPaaFT106rqh39+CcC+QdSDEEJGiSAI1mWB9agwDHNQrwTwqbKDInKNiNwiIrccPXp0E6tFCCGDJ9kG3v3dA1heXh50lTYN2Sg1FpF/AnBWwaHfUNWPhOf8BoDLALxQe6jIZZddprfccsv6VpSQAZCNCDEsJOfMItZa16K8SCE9P6HHPOYxetttt8FxhqFvsa4UPoMNW6irqj/a7biIvBzA8wD8SC/iRMg4Ea2p7XVX4XUtu0sZ2bBF8bTXGkSqKC9yZnzv+BJWVlYmxigxkEgSIvIsAG8G8DRVXRlEHQgZNMnAD7mQRuj0XLJW99Oldy0zeU3J+cn4g8m6JuvUK+sRRol0uGD3FszMzAy6GpvGoEIdvQNADcBnQkfKl1T15wdUF0IGRlKQio71m142FlEcrgl994y6lXG668iZM2kuvoEIlKo+ZBDlEkLIKBO5+CZFpMZupo2QSaZbs7VeM73dQjn1Wna0V5ThnlF9cd/RhYly8TGaOSFjRtYEcbrv2v2e3+2aXvLKzmNp4oIJ6RisGc5BEUJGlqiBV+3N5p06VriPVv9ldCu7zGRBM0VvTNocFIf4CBlDUhscbtA1ZeevpWxCiqBAETKmrEUg1hK5fb3KJiQLBYoQQshQQoEihBAylFCgCCGbRtkiY0KKoIuPELKpZCNYFEW5IASgQBFCBgB7UqQXOMRHCCFkKKFAEUIIGUooUIQQQoYSChQhhJChhAJFCCFkKKFAEUIIGUooUIQQQoYSChQhhJChhAJFCCFkKKFAEUIIGUooUIQQQoYSChQhhJChhAJFCCFkKKFAEUIIGUooUIQQQoYSChQhhJChhAJFCCFkKKFAEUIIGUooUIQQQoYSChQhhJChhAJFCCFkKKFAEUIIGUooUIQQQoYSChQhhJChhAJFCCFkKKFAEUIIGUooUIQQQoYSChQhhJChhAJFCCFkKKFAEUIIGUooUIQQMiBUB12D4cYbdAUIIWSSSIqSApCB1WT4oUARQsgmw45Tb3CIjxBCyFBCgSKEEDKUUKAIIWSTUOXwXj9QoAghZBOgOPUPBYoQQjYYitPaoEARQggZSihQhBBChhIKFCGEkKGEAkUIIWQooUARQsgGI8KQRmuBAkUIIZtAVqQEgEPV6spABUpE3iQiKiK7BlkPQgjZDESsKDlifyfdGZhAich+AM8A8L1B1YEQQsjwMsge1J8BeDO4fo0QQkgBAxEoEXk+gAOqelsP514jIreIyC1Hjx7dhNoRQsjwkGwDjx07NujqbCobth+UiPwTgLMKDv0GgLfADu+dFlV9J4B3AsBll13G3hYhZKJItoGXXnrpRLWBGyZQqvqjReki8hgAFwK4Tews4T4AXxWRJ6nqoY2qDyGEkNFi03fUVdWvA9gT/S0i9wG4TFUnq+9KCCGkK1wHRQghZCjZ9B5UFlW9YNB1IISQQaDK9VDdYA+KEEIGgE6U3WFtDLwHRQghk0QkTJE+sQNVDntQhBCyybDz1BsUKEIIIUMJBYoQQshQQoEihJBNRsC5p16gQBFCyCYiia02KFLdoYuPEEIGANc/nR72oAghhAwlFChCCCFDCQWKEELIUEKBIoQQMpRQoAghhAwlFChCCCFDCQWKEELIUEKBIoQQMpRQoAghhAwlFChCCCFDCQWKEELIUEKBIoQQMpRQoAghhAwlFChCCCFDCQWKEEIGgKpCVQddjaGGAkUIIZtIJExGgeU2Baob3LCQEEI2kUCBVqDwzRquDQKoKmRCdjtkD4oQQjaZtYgTANx3dAHLy8vrW5khRkZpDFREjgL47oCK3wXg2IDKHiS878mC9735HFPVZ/Vyoojc1Ou548BICdQgEZFbVPWyQddjs+F9Txa8bzJMcIiPEELIUEKBIoQQMpRQoHrnnYOuwIDgfU8WvG8yNHAOihBCyFDCHhQhhJChhAJFCCFkKKFArQEReZOIqIjsGnRdNgMR+WMRuUtEbheR/y0i2wZdp41ERJ4lIt8SkXtE5NcGXZ/NQET2i8g/i8gdIvJNEXnDoOu0mYiIKyL/ISIfH3RdSAcKVJ+IyH4AzwDwvUHXZRP5DIBHq+pjAdwN4NcHXJ8NQ0RcAP8DwLMBPBLAVSLyyMHWalPwAbxJVR8J4MkAXjsh9x3xBgB3DroSJA0Fqn/+DMCbAUyMu0RVP62qfvjnlwDsG2R9NpgnAbhHVe9V1RaA6wE8f8B12nBU9UFV/Wr4+yJsY33uYGu1OYjIPgDPBfCuQdeFpKFA9YGIPB/AAVW9bdB1GSCvBPCpQVdiAzkXwP2Jvx/AhDTUESJyAYDHA/jygKuyWVwL+6VzjRHyyEbBaOYZROSfAJxVcOg3ALwFdnhv7Oh236r6kfCc34AdCnr/ZtaNbB4iMgvgQwDeqKoLg67PRiMizwNwRFVvFZHLB1wdkoEClUFVf7QoXUQeA+BCALeFoe73AfiqiDxJVQ9tYhU3hLL7jhCRlwN4HoAf0fFePHcAwP7E3/vCtLFHRCqw4vR+Vf3woOuzSTwVwI+JyHMA1AFsEZHrVPXqAdeLgAt114yI3AfgMlUd+8jPIvIsAH8K4GmqenTQ9dlIRMSDNYL8CKww3Qzgpar6zYFWbIMR+63rvQBOqOobB1ydgRD2oH5ZVZ834KqQEM5BkV54B4A5AJ8Rka+JyF8PukIbRWgGeR2A/wNrFLhx3MUp5KkAXgbg6eFr/LWwV0HIwGAPihBCyFDCHhQhhJChhAJFCCFkKKFAEUIIGUooUIQQQoYSChQhhJChhAJFJpowgvczM2lvFJG/EpEgYbn+6KDqSMikQps5mWhE5BoAP6Cqr0ikfQk2NtsnVXV2YJUjZMKhQJGJRkR2ALgLwD5VbYWBUr8A4HwAixQoQgYHh/jIRKOqJwB8BXb/JwB4CWz0CAVQF5FbRORLIvKCQdWRkEmFAkUI8AFYYUL4/w+Ev5+vqpcBeCmAa0Xk4kFUjpBJhQJFCPARAD8iIpcCmFbVWwFAVQ+E/78XwOdh90gihGwSFCgy8ajqEoB/BvC3CHtPIrJdRGrh77tgg6neMbBKEjKBcD8oQiwfAPC/0RnqewSA/ykiBvaL3B+oKgWKkE2ELj5CCCFDCYf4CCGEDCUUKEIIIUMJBYoQQshQQoEihBAylFCgCCGEDCUUKEIIIUMJBYoQQshQ8v8A54wGkQ/YAAgAAAAASUVORK5CYII=\n" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "source": [ + "pos_df = pd.DataFrame(train_features[ bool_train_labels], columns=train_df.columns)\n", + "neg_df = pd.DataFrame(train_features[~bool_train_labels], columns=train_df.columns)\n", + "\n", + "sns.jointplot(pos_df['V5'], pos_df['V6'],\n", + " kind='hex', xlim=(-5,5), ylim=(-5,5))\n", + "plt.suptitle(\"Positive distribution\")\n", + "\n", + "sns.jointplot(neg_df['V5'], neg_df['V6'],\n", + " kind='hex', xlim=(-5,5), ylim=(-5,5))\n", + "_ = plt.suptitle(\"Negative distribution\")" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "METRICS = [\n", + " keras.metrics.TruePositives(name='tp'),\n", + " keras.metrics.FalsePositives(name='fp'),\n", + " keras.metrics.TrueNegatives(name='tn'),\n", + " keras.metrics.FalseNegatives(name='fn'), \n", + " keras.metrics.BinaryAccuracy(name='accuracy'),\n", + " keras.metrics.Precision(name='precision'),\n", + " keras.metrics.Recall(name='recall'),\n", + " keras.metrics.AUC(name='auc'),\n", + " keras.metrics.AUC(name='prc', curve='PR'), # precision-recall curve\n", + "]\n", + "\n", + "def make_model(metrics=METRICS, output_bias=None):\n", + " if output_bias is not None:\n", + " output_bias = tf.keras.initializers.Constant(output_bias)\n", + " model = keras.Sequential([\n", + " keras.layers.Dense(\n", + " 16, activation='relu',\n", + " input_shape=(train_features.shape[-1],)),\n", + " keras.layers.Dropout(0.5),\n", + " keras.layers.Dense(1, activation='sigmoid',\n", + " bias_initializer=output_bias),\n", + " ])\n", + "\n", + " model.compile(\n", + " optimizer=keras.optimizers.Adam(lr=1e-3),\n", + " loss=keras.losses.BinaryCrossentropy(),\n", + " metrics=metrics)\n", + "\n", + " return model" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "EPOCHS = 100\n", + "BATCH_SIZE = 2048\n", + "\n", + "early_stopping = tf.keras.callbacks.EarlyStopping(\n", + " monitor='val_prc', \n", + " verbose=1,\n", + " patience=10,\n", + " mode='max',\n", + " restore_best_weights=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Model: \"sequential\"\n_________________________________________________________________\nLayer (type) Output Shape Param # \n=================================================================\ndense (Dense) (None, 16) 480 \n_________________________________________________________________\ndropout (Dropout) (None, 16) 0 \n_________________________________________________________________\ndense_1 (Dense) (None, 1) 17 \n=================================================================\nTotal params: 497\nTrainable params: 497\nNon-trainable params: 0\n_________________________________________________________________\n" + ] + } + ], + "source": [ + "model = make_model()\n", + "model.summary()" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "array([[0.3813146 ],\n", + " [0.69935155],\n", + " [0.6680324 ],\n", + " [0.70163876],\n", + " [0.25830716],\n", + " [0.78290945],\n", + " [0.6979805 ],\n", + " [0.8379446 ],\n", + " [0.58743805],\n", + " [0.60097784]], dtype=float32)" + ] + }, + "metadata": {}, + "execution_count": 14 + } + ], + "source": [ + "model.predict(train_features[:10])" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Loss: 0.9644\n" + ] + } + ], + "source": [ + "results = model.evaluate(train_features, train_labels, batch_size=BATCH_SIZE, verbose=0)\n", + "print(\"Loss: {:0.4f}\".format(results[0]))" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "array([-6.35935934])" + ] + }, + "metadata": {}, + "execution_count": 16 + } + ], + "source": [ + "initial_bias = np.log([pos/neg])\n", + "initial_bias" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "array([[0.00059289],\n", + " [0.00082147],\n", + " [0.00058353],\n", + " [0.0016509 ],\n", + " [0.00190905],\n", + " [0.00041959],\n", + " [0.00037795],\n", + " [0.00061113],\n", + " [0.00158769],\n", + " [0.00093728]], dtype=float32)" + ] + }, + "metadata": {}, + "execution_count": 17 + } + ], + "source": [ + "model = make_model(output_bias=initial_bias)\n", + "model.predict(train_features[:10])" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Loss: 0.0141\n" + ] + } + ], + "source": [ + "results = model.evaluate(train_features, train_labels, batch_size=BATCH_SIZE, verbose=0)\n", + "print(\"Loss: {:0.4f}\".format(results[0]))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ] +} \ No newline at end of file diff --git a/pytorch/实战/9.ipynb b/Tensorflow/TensorFlow2.0/11 联邦学习.ipynb similarity index 100% rename from pytorch/实战/9.ipynb rename to Tensorflow/TensorFlow2.0/11 联邦学习.ipynb diff --git a/Tensorflow/TensorFlow2.0/2 专家入门.ipynb b/Tensorflow/TensorFlow2.0/2 专家入门.ipynb new file mode 100644 index 00000000..9f4bfea4 --- /dev/null +++ b/Tensorflow/TensorFlow2.0/2 专家入门.ipynb @@ -0,0 +1,211 @@ +{ + "metadata": { + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.0" + }, + "orig_nbformat": 2, + "kernelspec": { + "name": "python380jvsc74a57bd038740d3277777e2cd7c6c2cc9d8addf5118fdf3f82b1b39231fd12aeac8aee8b", + "display_name": "Python 3.8.0 64-bit" + } + }, + "nbformat": 4, + "nbformat_minor": 2, + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# 引入TensorFlow\n", + "import tensorflow as tf\n", + "\n", + "from tensorflow.keras.layers import Dense, Flatten, Conv2D\n", + "from tensorflow.keras import Model" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# 1 导入数据集\n", + "mnist = tf.keras.datasets.mnist\n", + "\n", + "(x_train, y_train), (x_test, y_test) = mnist.load_data()\n", + "x_train, x_test = x_train / 255.0, x_test / 255.0\n", + "\n", + "# Add a channels dimension\n", + "x_train = x_train[..., tf.newaxis]\n", + "x_test = x_test[..., tf.newaxis]" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "# 2 数据处理-分成batch,混淆数据\n", + "train_ds = tf.data.Dataset.from_tensor_slices(\n", + " (x_train, y_train)).shuffle(10000).batch(32)\n", + "test_ds = tf.data.Dataset.from_tensor_slices((x_test, y_test)).batch(32)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "# 3.1使用面向对象的方式定义一个模型\n", + "# 对于多分类问题,一般定义有多个分类的输出。例如10分类,则结果有十个。并且可以将结果添加softmax层,输出每一个的概率。然后使用交叉信息熵,计算这十个输出的结果,与目标结果的交叉损失。(目标结果,本质上应该是十个元素的向量,onehot编码的向量。\n", + "class MyModel(Model):\n", + " def __init__(self):\n", + " super(MyModel, self).__init__()\n", + " self.conv1 = Conv2D(32, 3, activation='relu')\n", + " self.flatten = Flatten()\n", + " self.d1 = Dense(128, activation='relu')\n", + " self.d2 = Dense(10, activation='softmax')\n", + " # 3.2 进行正向传播===pytorch.forward \n", + " def call(self, x):\n", + " x = self.conv1(x)\n", + " x = self.flatten(x)\n", + " x = self.d1(x)\n", + " return self.d2(x)\n", + "\n", + "model = MyModel()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "# 3.3选择损失函数和3.5定义优化器\n", + "loss_object = tf.keras.losses.SparseCategoricalCrossentropy()\n", + "\n", + "optimizer = tf.keras.optimizers.Adam()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "# 4 选择评估指标\n", + "train_loss = tf.keras.metrics.Mean(name='train_loss')\n", + "train_accuracy = tf.keras.metrics.SparseCategoricalAccuracy(name='train_accuracy')\n", + "\n", + "test_loss = tf.keras.metrics.Mean(name='test_loss')\n", + "test_accuracy = tf.keras.metrics.SparseCategoricalAccuracy(name='test_accuracy')" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "# 3 定义梯度下降的步骤\n", + "@tf.function\n", + "def train_step(images, labels):\n", + " with tf.GradientTape() as tape:\n", + " predictions = model(images)\n", + " loss = loss_object(labels, predictions)\n", + " gradients = tape.gradient(loss, model.trainable_variables)\n", + " optimizer.apply_gradients(zip(gradients, model.trainable_variables))\n", + "\n", + " train_loss(loss)\n", + " train_accuracy(labels, predictions)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "# 4 测试模型\n", + "@tf.function\n", + "def test_step(images, labels):\n", + " predictions = model(images)\n", + " t_loss = loss_object(labels, predictions)\n", + "\n", + " test_loss(t_loss)\n", + " test_accuracy(labels, predictions)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Epoch 1, Loss: 0.136604443192482, Accuracy: 95.85000610351562, Test Loss: 0.07532097399234772, Test Accuracy: 97.58999633789062\n", + "Epoch 2, Loss: 0.04355545714497566, Accuracy: 98.5999984741211, Test Loss: 0.04925746098160744, Test Accuracy: 98.32999420166016\n", + "Epoch 3, Loss: 0.023197738453745842, Accuracy: 99.24666595458984, Test Loss: 0.05581401661038399, Test Accuracy: 98.30999755859375\n", + "Epoch 4, Loss: 0.013380118645727634, Accuracy: 99.54000091552734, Test Loss: 0.057846762239933014, Test Accuracy: 98.45999908447266\n", + "Epoch 5, Loss: 0.010646246373653412, Accuracy: 99.625, Test Loss: 0.07796232402324677, Test Accuracy: 98.1199951171875\n" + ] + } + ], + "source": [ + "EPOCHS = 5\n", + "\n", + "for epoch in range(EPOCHS):\n", + " # 在下一个epoch开始时,重置评估指标\n", + " train_loss.reset_states()\n", + " train_accuracy.reset_states()\n", + " test_loss.reset_states()\n", + " test_accuracy.reset_states()\n", + "\n", + " for images, labels in train_ds:\n", + " train_step(images, labels)\n", + "\n", + " for test_images, test_labels in test_ds:\n", + " test_step(test_images, test_labels)\n", + "\n", + " template = 'Epoch {}, Loss: {}, Accuracy: {}, Test Loss: {}, Test Accuracy: {}'\n", + " print (template.format(epoch+1,\n", + " train_loss.result(),\n", + " train_accuracy.result()*100,\n", + " test_loss.result(),\n", + " test_accuracy.result()*100))" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Model: \"my_model\"\n_________________________________________________________________\nLayer (type) Output Shape Param # \n=================================================================\nconv2d (Conv2D) multiple 320 \n_________________________________________________________________\nflatten (Flatten) multiple 0 \n_________________________________________________________________\ndense (Dense) multiple 2769024 \n_________________________________________________________________\ndense_1 (Dense) multiple 1290 \n=================================================================\nTotal params: 2,770,634\nTrainable params: 2,770,634\nNon-trainable params: 0\n_________________________________________________________________\nNone\n" + ] + } + ], + "source": [ + "print(model.summary())" + ] + } + ] +} \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/3 图像分类.ipynb b/Tensorflow/TensorFlow2.0/3 图像分类.ipynb new file mode 100644 index 00000000..207679ad --- /dev/null +++ b/Tensorflow/TensorFlow2.0/3 图像分类.ipynb @@ -0,0 +1,247 @@ +{ + "metadata": { + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.0" + }, + "orig_nbformat": 2, + "kernelspec": { + "name": "python380jvsc74a57bd038740d3277777e2cd7c6c2cc9d8addf5118fdf3f82b1b39231fd12aeac8aee8b", + "display_name": "Python 3.8.0 64-bit" + } + }, + "nbformat": 4, + "nbformat_minor": 2, + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "2.4.1\n" + ] + } + ], + "source": [ + "# TensorFlow and tf.keras\n", + "import tensorflow as tf\n", + "from tensorflow import keras\n", + "\n", + "# Helper libraries\n", + "import numpy as np\n", + "import matplotlib.pyplot as plt\n", + "\n", + "print(tf.__version__)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "# 1 导入数据\n", + "fashion_mnist = keras.datasets.fashion_mnist\n", + "\n", + "(train_images, train_labels), (test_images, test_labels) = fashion_mnist.load_data()\n", + "class_names = ['T-shirt/top', 'Trouser', 'Pullover', 'Dress', 'Coat',\n", + " 'Sandal', 'Shirt', 'Sneaker', 'Bag', 'Ankle boot']" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "(60000, 28, 28)\n" + ] + }, + { + "output_type": "display_data", + "data": { + "text/plain": "
", + "image/svg+xml": "\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n 2021-04-21T20:35:08.742337\r\n image/svg+xml\r\n \r\n \r\n Matplotlib v3.3.2, https://matplotlib.org/\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n", + "image/png": "iVBORw0KGgoAAAANSUhEUgAAATEAAAD4CAYAAACE9dGgAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8vihELAAAACXBIWXMAAAsTAAALEwEAmpwYAAAc7ElEQVR4nO3de3Bc5Znn8e8jWfJFlm/YCANODMQkcZLFsA4QoDIkzIRLpcawyVBQs8SZocbsLuyEKf6AYWcrbE2xRWUDbGYyYccENqYKwjIBFoZxhYtDQkiGizEOvi2xARNjfDfYxrZsqfvZP/ootCyd5xypW+o+5vehTql1nn77vD6SHs7lOe9r7o6ISFG1NLoDIiK1UBITkUJTEhORQlMSE5FCUxITkUIbM5oba7exPo6O0dykyEdKN/s57Iesls+48Esdvmt3Kdd7X3nt0JPuflEt26tVTUnMzC4Cvge0Aj9099ui94+jg7Psglo2KSKBF31ZzZ+xa3eJl578WK73ts5cP73mDdZo2KeTZtYK/ANwMTAXuNLM5tarYyLSGA6Uc/6XxcxmmdmzZrbWzNaY2beS9beY2WYzW5ksl1S1+Wsz22Bmr5vZhVnbqOVI7Exgg7u/mWz4QWABsLaGzxSRBnOcHs93OplDL3CDu68ws07gFTN7Oond6e7frX5zciB0BfAZ4HjgGTM71T29Q7Vc2D8B2FT1/TvJun7MbJGZLTez5T0cqmFzIjJa6nUk5u5b3H1F8nofsI5B8kSVBcCD7n7I3d8CNlA5YEo14ncn3X2xu8939/ltjB3pzYlIjRyn5PkWYHrfQUqyLEr7XDObDZwOvJisus7MXjOze81sarIu18FRtVqS2GZgVtX3JybrRKTgyniuBdjZd5CSLIsH+zwzmwg8DFzv7nuBu4BTgHnAFuD24fa1liT2MjDHzE4ys3Yq57GP1/B5ItIEHCjhuZY8zKyNSgK7390fAXD3be5ecvcycDcfnjIO+eBo2EnM3XuB64AnqZznPuTua4b7eSLSPIZwJBYyMwPuAda5+x1V62dWve0yYHXy+nHgCjMba2YnAXOAl6Jt1FQn5u5LgaW1fIaINBcHeuo3RNe5wFXAKjNbmay7mUpJ1rxkcxuBawDcfY2ZPUSlyqEXuDa6MwmjXLEvIs3Ph3CqmPlZ7s8Dgz1BkHrw4+63Arfm3YaSmIj051Aq0FipSmIi0k+lYr84lMRE5AhGadAzwOakJCYi/VQu7CuJiUhBVerElMREpMDKOhITkaLSkZiIFJpjlAo0cr2SmIgMoNNJESksxzjsrY3uRm5KYiLST6XYVaeTIlJgurAvzcMyfhlrHK2g9ZhpYfy9C09NjU164IWatp31b7Mxbakx7zlc27ZrlfVzidRvhImUjzdKriMxESmwso7ERKSoKhf2i5MaitNTERkVurAvIoVXUp2YiBSVKvZFpPDKujspIkVVeQBcSUyahLXGj494b28Yb5k3N4yvu2Zi3P5geqxtfzg7PWMOxoMktz21PIzXVAuWVYOWsV+xOAnU0jcbE/zZxj/OXByjR48diUhRuaNiVxEpMlOxq4gUl6MjMREpOF3YF5HCckyDIopIcVWmbCtOaihOT0VklGjyXGkiYU0R2XVimy6cEsb/9Au/DOO/2nFyauztsceFbX18GGbMH34hjJ/6g82psd6Nv4s/PGPMrqz9lqV16tT0YKkUti3t3ZserMNQY85HqGLfzDYC+4AS0Ovu8+vRKRFprI/akdiX3H1nHT5HRJqAu310jsRE5OhTubD/0XnsyIGnzMyBf3T3xUe+wcwWAYsAxjGhxs2JyMgr1hj7tfb0PHc/A7gYuNbMvnjkG9x9sbvPd/f5bYytcXMiMtIqF/Yt15LFzGaZ2bNmttbM1pjZt5L108zsaTNbn3ydmqw3M/s7M9tgZq+Z2RlZ26gpibn75uTrduBRIB6WQEQKoURLriWHXuAGd58LnE3lYGcucBOwzN3nAMuS76FyQDQnWRYBd2VtYNhJzMw6zKyz7zXwFWD1cD9PRJpDX8V+PY7E3H2Lu69IXu8D1gEnAAuAJcnblgCXJq8XAPd5xQvAFDObGW2jlmtiXcCjVhl3aQzwgLv/tIbPkxFQ7u6uqf3h0z8I41+fHI/pNa6lJzX2i5Z4vLDNP5sVxkv/Ju7b23d0psbKr54Ttj1mdVyrNenVLWF85xdPCOM7/m16QVdXxnScU595IzVmu+tzr24IE4VMN7PqX4LFg10bBzCz2cDpwItAl7v37cStVPIJVBLcpqpm7yTrUnf4sP/F7v4mcNpw24tIc3KHnnLuJLYzT32omU0EHgaud/e9VjXopLt7cnNwWFRiISL9VE4n63d30szaqCSw+939kWT1NjOb6e5bktPF7cn6zUD1IfiJybpUxbmPKiKjppQ8P5m1ZLHKIdc9wDp3v6Mq9DiwMHm9EHisav03kruUZwN7qk47B6UjMRHpp6/Eok7OBa4CVpnZymTdzcBtwENmdjXwNnB5ElsKXAJsAA4Af5a1ASUxETlC/U4n3f15SD1ku2CQ9ztw7VC2oSQmIgNojH0ZXdH0YhlDynxw+dlh/Btzfx7G3+iZEcZPbN+dGvuT418J2/Lv4/j3X/+DML7/zcmpsZaOeL9sPTs+Etm8IP53e088VM/UFel/ei0Lt4Vt9x5OH96otKz2p2Iqdyc/Os9OishRRsNTi0jh6XRSRAqrzncnR5ySmIgMoEERRaSw3I1eJTERKTKdTopIYemamAxdVOc1ws6+8aUw/qWJa2v6/BOCOcT2e3vY9v1SRxj/9tx/CeM7Tk0fiidrctgfro+H6vkgqEEDaO2Nf6Zn//mrqbGvTXs5bPudhz+XGmvx/WHbvJTERKSwVCcmIoWnOjERKSx36M0/KGLDKYmJyAA6nRSRwtI1MREpPFcSE5Ei04V9GZqMMb9G0voPjg3juyZNDONbe6eE8WNa06dV62w5GLad3bYzjO8opdeBAbS2pU8Jd9jj8bL+22f+OYx3f7otjLdZPOXbOePeTY39ydpvhG07eDOM18pd18REpNCMku5OikiR6ZqYiBSWnp0UkWLzhl6mHTIlMREZQHcnRaSwXBf2RaTodDophTFjbHodF8A46wnj7RbPr/huz9TU2PqDnwzb/nZvXMN2UdeaMN4T1IK1BuOcQXad1/Ft74Xxbo/ryKK9em5XXAe2MozWR5HuTmYeM5rZvWa23cxWV62bZmZPm9n65Gv6b6qIFIp7JYnlWZpBnhPfHwEXHbHuJmCZu88BliXfi8hRouyWa2kGmUnM3Z8DjpyLfgGwJHm9BLi0vt0SkUZyz7c0g+FeE+ty9y3J661AV9obzWwRsAhgHBOGuTkRGS2OUS7Q3cmae+ruDulXSd19sbvPd/f5bYytdXMiMgo859IMhpvEtpnZTIDk6/b6dUlEGuoovLA/mMeBhcnrhcBj9emOiDSFAh2KZV4TM7MfA+cD083sHeDbwG3AQ2Z2NfA2cPlIdvKolzHvpLXGY195b3qtVuvUuPrlD6asCuM7SpPC+Pul+DrnlNYDqbF9vePCtrsPxp/9qbFbwviKA7NTYzPa4zqvqN8AGw9PD+Nzxm4N49/ZdkFqbNa4I++j9dd7wRdTY/7iv4Zt82qWo6w8MpOYu1+ZEkr/KYhIYTlQLtcniZnZvcBXge3u/tlk3S3AXwA7krfd7O5Lk9hfA1cDJeAv3f3JrG0U5xaEiIwOB9zyLdl+xMA6U4A73X1esvQlsLnAFcBnkjY/MLP4NAQlMREZRL3qxFLqTNMsAB5090Pu/hawATgzq5GSmIgMlP/C/nQzW161LMq5hevM7LXksca+C7cnAJuq3vNOsi6kB8BF5AhDKp/Y6e7zh7iBu4C/pZIG/xa4HfjzIX7G7+lITEQGGsESC3ff5u4ldy8Dd/PhKeNmYFbVW09M1oV0JNYMMi4u2Jj4xxSVWGy6+tNh2y9PiKcm+3V3fDQ/Y8y+MB4NhzNz7J6wbWdXdxjPKu+YNiZ9mKF9pfFh2wkth8J41r/7jPZ4urm/euaM1FjnZ3eFbSe1Bcce9bip6OB1ujs5GDObWfXY4mVA3wg5jwMPmNkdwPHAHOClrM9TEhORQdStxGKwOtPzzWwelWO5jcA1AO6+xsweAtYCvcC17h4P7IaSmIgMpk7V+Cl1pvcE778VuHUo21ASE5GBmuSRojyUxESkv75i14JQEhORAZplwMM8lMREZKARvDtZb0piIjKA6UhMhsLa2sN4uTuul4pMX3U4jO8sxVOLTWmJh6Rpz5ja7HBQJ3bOtLfCtjsyarlWHDwpjHe2HkyNzWiJ67xmtcW1Wqu6Z4Xxpfs/Ecav/uozqbEfL/6jsG37T3+dGjOPf165NNFYYXkoiYnIEXKPUNEUlMREZCAdiYlIoZUb3YH8lMREpD/ViYlI0enupIgUW4GSmMYTE5FCK9aRWDC1mY2J652sNSNft8TxcncwvlQ5c7SQkPfEtVy1+N4/fj+Mb+qdEsa39sTxrKnNSsGQLi8cnBy2HdfSE8ZnjNkbxveW4zqzyL5yPJ1cNE4aZPf9xmPWp8Ye2fOHYdvRoNNJESkuR48diUjB6UhMRIpMp5MiUmxKYiJSaEpiIlJU5jqdFJGi093J4allfsWsWiuPy3Ya6uCCM8P4pkvjOrQ/PT19ar6tvZ1h21cPzA7jk4MxuQA6MuZn7Pb0+r13D09NjUF2rVU0ryTAsUEdWcnjusDNPXHfsmTVz73TG8yJ+cfxWGdT7htWl4akSEdimRX7ZnavmW03s9VV624xs81mtjJZLhnZborIqBrBGcDrLc9jRz8CLhpk/Z3uPi9Zlta3WyLSMP7hdbGspRlkJjF3fw7YPQp9EZFmcZQdiaW5zsxeS043Uy8gmNkiM1tuZst7iK+fiEhzsHK+pRkMN4ndBZwCzAO2ALenvdHdF7v7fHef38bYYW5ORGRww0pi7r7N3UvuXgbuBuLbayJSLEf76aSZzaz69jJgddp7RaRgCnZhP7NOzMx+DJwPTDezd4BvA+eb2TwquXgjcE09OhPVgdVqzMzjwnjPSV1hfPenJ6TGDhwXFwbOu2RdGP9m1/8O4ztKk8J4m6Xvt009x4RtT5+wMYz/bM/cML5zzMQwHtWZndORPqYWwPvl9H0OcPyY98L4jRu+nhrrmhDXYv3w4/EN9x6PLwi93hNfOtlTTh+P7C/nPhu2fZQZYbwumiRB5ZGZxNz9ykFW3zMCfRGRZnE0JTER+WgxmufOYx5KYiLSXxNd78pDE4WIyEB1ujuZ8tjiNDN72szWJ1+nJuvNzP7OzDYkNahn5OmqkpiIDFS/EosfMfCxxZuAZe4+B1iWfA9wMTAnWRZRqUfNpCQmIgPUq8Qi5bHFBcCS5PUS4NKq9fd5xQvAlCPKuQbVVNfEDl38+TB+7H95MzU2b9I7Ydu5458P493leMq3aFiYtQdPCNseKLeH8fWH4/KPPb1xqUFrcBV2++F4KJ7b34qnB1t25v8K43/z7mBjA3yoZXz6b/quUlye8bWJ8ZRsEP/MrvnYc6mxk9u3h22f2B//7bybMVRPV9ueMD67bUdq7N91/jZsexSUWHS5+5bk9Vagr77pBGBT1fveSdZtIdBUSUxEmoAP6e7kdDNbXvX9YndfnHtT7m5W220EJTERGSh/Wtnp7vOH+OnbzGymu29JThf7Dos3A7Oq3ndisi6ka2IiMsAIP3b0OLAweb0QeKxq/TeSu5RnA3uqTjtT6UhMRAaq0zWxlMcWbwMeMrOrgbeBy5O3LwUuATYAB4A/y7MNJTER6a+OI1SkPLYIcMEg73Xg2qFuQ0lMRPoxilWxryQmIgMoiaWxeFq2s/77y2HzCzrXpMYOeDz0SVYdWFbdT2TymHh6rkM98W7e3hMPtZPl1LFbU2OXTVoZtn3u+2eF8fO6/3MYf+PL8TBCyw6mDzmzozf+d1/x1pfD+IrfzQrjZ89+KzX2uc74pldWbV5na3cYj4ZHAthfTv99faE7rp8bFUpiIlJoSmIiUlgFG8VCSUxEBlISE5Ei06CIIlJoOp0UkeJqounY8lASE5GBlMQG13NsB+9elT7P7i2T/z5s/8Dus1Njs8YdOe5afx9v3xnGTxv/dhiPdLbENUOfnBTXDD2x/8Qw/vP3PxXGZ7a9nxr75YFTwrYP3vI/wvg3/+qGMP6Fpf8hjO+dnT7GQG9H/Jcy6bRdYfxvTv+XMN5updTY+6W4Dmza2P1hfEprXBuYJapr7GxJn+YOoPWTn0iN2cZ43Lw8VLEvIoVn5eJkMSUxEelP18REpOh0OikixaYkJiJFpiMxESk2JTERKayhzXbUcKOaxFp6YMK29L3zxN55YfuTx6fP1bezJ55f8ckPPhfGTxz/Xhif3Jpeu/OJYDwvgJXdU8L4T3d8JowfPz6ef3Fbz+TU2K6ejrDtgWBcK4B77rwjjN++LZ638rJpK1Jjp7XHdWDvl+N5bNZmzNe5rzwuNdbt8fhyezLqyDqD3weAHo//tFo9/e9gSktcg7b3c8ekxkrbav+TLlqdWOZsR2Y2y8yeNbO1ZrbGzL6VrJ9mZk+b2frk6/BHFRSR5uKeb2kCeaZs6wVucPe5wNnAtWY2F7gJWObuc4BlyfcichQY4Snb6iozibn7FndfkbzeB6yjMrX4AmBJ8rYlwKUj1EcRGU0+hKUJDOkE2sxmA6cDLwJdVRNbbgW6UtosAhYBtHfojFOkCIp0YT/3DOBmNhF4GLje3ftdaU7mixs0L7v7Ynef7+7zx4yNLzKLSHOwcr6lGeRKYmbWRiWB3e/ujySrt5nZzCQ+E9g+Ml0UkVHlFOrCfubppJkZcA+wzt2r77c/DiykMiX5QuCxrM9qPVymc9Oh1HjZLWz/s53pQ9J0jdsXtp3XuSmMv34gvl2/6uDxqbEVYz4Wth3f2hPGJ7fHQ/l0jEnfZwDT29L/7SeNjf/fEg1XA/Byd/xv+48zfh7Gf9ebfgnhn/efGrZdeyB9nwNMzZgqb9Xe9PYHetvDtodK8Z9Gd29csjN5bPwz/fy09KGfXmdm2HbHacHwRr8Km+bWLBft88hzTexc4CpglZmtTNbdTCV5PWRmVwNvA5ePSA9FZPQdTUnM3Z+nUv82mAvq2x0RabSiFbvqsSMR6c9dgyKKSMEVJ4cpiYnIQDqdFJHickCnkyJSaMXJYaOcxD44SMsvXk0N/9NT54bN/+uCf0qN/SJjWrMntsZ1PXsPx0PSzJiQPoXXpKBOC2BaWzz91+SMeqdxFk/59l5v+pMQh1riIWdKqTeeK7YeSh/mB+BX5TlhvKfcmho7FMQgu75u9+HpYfz48XtSY/t604fpAdi4b1oY37lnYhjvnhD/aT1fSp9K76Lj1oRtx29P/5m1xL8quel0UkQKrZ53J81sI7APKAG97j7fzKYB/weYDWwELnf3eFC/FLmfnRSRj4iRGcXiS+4+z93nJ9/XbSgvJTER6adS7Oq5lhrUbSgvJTERGaicc4HpZra8alk0yKc58JSZvVIVzzWUVx66JiYiAwzhKGtn1SlimvPcfbOZHQs8bWb/rzro7m42/FsJOhITkf7qfE3M3TcnX7cDjwJnUsehvJTEROQIlWcn8yxZzKzDzDr7XgNfAVbz4VBekHMorzRNdTp58o3/GsZ/8NrX09v+p9fDthcftzqMr9gbj5v1u6Bu6DfBWGMAbS3xEJgT2g6H8XEZ9VLtreljgrVk/O+ynFEn1tEa9y1rrLNpY9Nr5Dpb4zG3WmocOrQ1+Le/tGd22LZrQlz794lJO8N4r8fHB1+Y/EZq7N63zgnbdv39r1NjGz2uScytfgMedgGPVoYlZAzwgLv/1Mxepk5DeTVVEhORJlDHyXPd/U3gtEHW76JOQ3kpiYnIQE0y9HQeSmIiMlBxcpiSmIgMZOUmmcooByUxEenP6StkLQQlMRHpx6j5kaJRpSQmIgMpiQVagjGkyvEciJPvfyE1tuv+eLM/+dqFYfysm18O41+d/ZvU2Kfat4Vt2zKOzcdl3M/uaIlrubqDX7isaubnD84K46WMT/jZe58O4+/3jE+NbTswKWzbFtS/5RHNY3qwNx5nbc/BeLyx1pb4j7z75/FYZ2+tTR//bvLS+HdxVCiJiUhh6ZqYiBSd7k6KSIG5TidFpMAcJTERKbjinE0qiYnIQKoTE5FiO5qSmJnNAu6jMi6QA4vd/XtmdgvwF8CO5K03u/vSzC1m1IKNlI6HXwzjqx+O26/mpNSYff6Pw7YHj0uvlQIYuysek2vfx+P2k95IH0Oq5VA8EWH5N+vCeLYPami7N4zGo6jVpj0jPqPmLfy25k9oGHcoFed8Ms+RWC9wg7uvSEZofMXMnk5id7r7d0eueyLSEEfTkVgyI8mW5PU+M1sHnDDSHRORBipQEhvSGPtmNhs4Heg7N7vOzF4zs3vNbGpKm0V90zn1EJ82iUgTcKDs+ZYmkDuJmdlE4GHgenffC9wFnALMo3Kkdvtg7dx9sbvPd/f5bYytvcciMsIcvJxvaQK57k6aWRuVBHa/uz8C4O7bquJ3A0+MSA9FZHQ5hbqwn3kkZpVpSu4B1rn7HVXrZ1a97TIq0zCJyNHAPd/SBPIciZ0LXAWsMrOVybqbgSvNbB6VvL0RuGYE+lcI/vKqMB4P6pJtUvoMXZmK8/9TaSpNkqDyyHN38nkYdHLC7JowESmg5jnKykMV+yLSnwMaikdECk1HYiJSXEffY0ci8lHi4E1SA5aHkpiIDNQk1fh5KImJyEC6JiYiheWuu5MiUnA6EhOR4nK81JjBS4dDSUxE+usbiqcglMREZKAClVgMaVBEETn6OeBlz7XkYWYXmdnrZrbBzG6qd3+VxESkP6/foIhm1gr8A3AxMJfK6Ddz69ldnU6KyAB1vLB/JrDB3d8EMLMHgQXA2nptYFST2D7e2/mM/+TtqlXTgZ2j2YchaNa+NWu/QH0brnr27eO1fsA+3nvyGf/J9JxvH2dmy6u+X+zui6u+PwHYVPX9O8BZtfax2qgmMXfvN52fmS139/mj2Ye8mrVvzdovUN+Gq9n65u4XNboPQ6FrYiIykjYDs6q+PzFZVzdKYiIykl4G5pjZSWbWDlwBPF7PDTT6wv7i7Lc0TLP2rVn7BerbcDVz32ri7r1mdh3wJNAK3Ovua+q5DfMCPSMlInIknU6KSKEpiYlIoTUkiY30Ywi1MLONZrbKzFYeUf/SiL7ca2bbzWx11bppZva0ma1Pvk5tor7dYmabk3230swuaVDfZpnZs2a21szWmNm3kvUN3XdBv5pivxXVqF8TSx5D+C3wR1QK314GrnT3ulXw1sLMNgLz3b3hhZFm9kXgA+A+d/9ssu47wG53vy35H8BUd7+xSfp2C/CBu393tPtzRN9mAjPdfYWZdQKvAJcC36SB+y7o1+U0wX4rqkYcif3+MQR3Pwz0PYYgR3D354DdR6xeACxJXi+h8kcw6lL61hTcfYu7r0he7wPWUakcb+i+C/olNWhEEhvsMYRm+kE68JSZvWJmixrdmUF0ufuW5PVWoKuRnRnEdWb2WnK62ZBT3WpmNhs4HXiRJtp3R/QLmmy/FYku7A90nrufQeWp+2uT06am5JVrAc1UI3MXcAowD9gC3N7IzpjZROBh4Hp331sda+S+G6RfTbXfiqYRSWzEH0OohbtvTr5uBx6lcvrbTLYl11b6rrFsb3B/fs/dt7l7ySuTFt5NA/edmbVRSRT3u/sjyeqG77vB+tVM+62IGpHERvwxhOEys47kgitm1gF8BVgdtxp1jwMLk9cLgcca2Jd++hJE4jIatO/MzIB7gHXufkdVqKH7Lq1fzbLfiqohFfvJLeT/yYePIdw66p0YhJmdTOXoCyqPZD3QyL6Z2Y+B86kM1bIN+Dbwf4GHgI8BbwOXu/uoX2BP6dv5VE6JHNgIXFN1DWo0+3Ye8EtgFdA3ct/NVK4/NWzfBf26kibYb0Wlx45EpNB0YV9ECk1JTEQKTUlMRApNSUxECk1JTEQKTUlMRApNSUxECu3/A4BqExKmbJN8AAAAAElFTkSuQmCC\n" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "source": [ + "print(train_images.shape)\n", + "plt.figure()\n", + "plt.imshow(train_images[0])\n", + "plt.colorbar()\n", + "plt.grid(False)\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "# 2 数据处理 minmax归一化\n", + "train_images = train_images / 255.0\n", + "\n", + "test_images = test_images / 255.0" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "# 3.1 定义模型\n", + "# 该网络的第一层 tf.keras.layers.Flatten 将图像格式从二维数组(28 x 28 像素)转换成一维数组(28 x 28 = 784 像素)。将该层视为图像中未堆叠的像素行并将其排列起来。该层没有要学习的参数,它只会重新格式化数据。\n", + "model = keras.Sequential([\n", + " keras.layers.Flatten(input_shape=(28, 28)),\n", + " keras.layers.Dense(128, activation='relu'),\n", + " keras.layers.Dense(10)\n", + "])" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "# 3.3选择损失函数、3.5优化器和4评估方法\n", + "model.compile(optimizer='adam',\n", + " loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True),\n", + " metrics=['accuracy'])" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Epoch 1/10\n", + "1875/1875 [==============================] - 3s 1ms/step - loss: 0.6235 - accuracy: 0.7828\n", + "Epoch 2/10\n", + "1875/1875 [==============================] - 2s 973us/step - loss: 0.3905 - accuracy: 0.8593\n", + "Epoch 3/10\n", + "1875/1875 [==============================] - 2s 946us/step - loss: 0.3390 - accuracy: 0.8769\n", + "Epoch 4/10\n", + "1875/1875 [==============================] - 2s 1ms/step - loss: 0.3168 - accuracy: 0.8837\n", + "Epoch 5/10\n", + "1875/1875 [==============================] - 2s 958us/step - loss: 0.2909 - accuracy: 0.8937\n", + "Epoch 6/10\n", + "1875/1875 [==============================] - 2s 899us/step - loss: 0.2794 - accuracy: 0.8959\n", + "Epoch 7/10\n", + "1875/1875 [==============================] - 2s 1ms/step - loss: 0.2608 - accuracy: 0.9021\n", + "Epoch 8/10\n", + "1875/1875 [==============================] - 2s 953us/step - loss: 0.2517 - accuracy: 0.9068\n", + "Epoch 9/10\n", + "1875/1875 [==============================] - 3s 1ms/step - loss: 0.2427 - accuracy: 0.9075\n", + "Epoch 10/10\n", + "1875/1875 [==============================] - 2s 1ms/step - loss: 0.2370 - accuracy: 0.9115\n" + ] + }, + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "" + ] + }, + "metadata": {}, + "execution_count": 12 + } + ], + "source": [ + "# 3训练模型\n", + "model.fit(train_images, train_labels, epochs=10)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "313/313 - 0s - loss: 0.3427 - accuracy: 0.8774\n", + "\n", + "Test accuracy: 0.8773999810218811\n" + ] + } + ], + "source": [ + "# 评估模型\n", + "test_loss, test_acc = model.evaluate(test_images, test_labels, verbose=2)\n", + "\n", + "print('\\nTest accuracy:', test_acc)" + ] + }, + { + "source": [ + "$$\n", + "Softmax = \\frac{e^{v_i}}{\\sum e^{v_i}}\n", + "$$" + ], + "cell_type": "markdown", + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [], + "source": [ + "# 5直接使用,进行预测\n", + "pre = model(test_images)\n", + "# 5添加softmax层进行预测\n", + "probability_model = tf.keras.Sequential([model, tf.keras.layers.Softmax()])\n", + "pre2 = probability_model(test_images)" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "9\n[9 2 1 1 6 1 4 6 5 7]\n" + ] + } + ], + "source": [ + "# 这里输出的结果,因为模型最后一层有十个输出,这里输出了每一个\n", + "# print(pre[:10])\n", + "print(np.argmax(pre2[0]))\n", + "print(test_labels[:10])" + ] + } + ] +} \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/4 文本分类.ipynb b/Tensorflow/TensorFlow2.0/4 文本分类.ipynb new file mode 100644 index 00000000..90cece0e --- /dev/null +++ b/Tensorflow/TensorFlow2.0/4 文本分类.ipynb @@ -0,0 +1,414 @@ +{ + "metadata": { + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.0" + }, + "orig_nbformat": 2, + "kernelspec": { + "name": "python380jvsc74a57bd038740d3277777e2cd7c6c2cc9d8addf5118fdf3f82b1b39231fd12aeac8aee8b", + "display_name": "Python 3.8.0 64-bit" + } + }, + "nbformat": 4, + "nbformat_minor": 2, + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "2.4.1\n" + ] + } + ], + "source": [ + "import tensorflow as tf\n", + "from tensorflow import keras\n", + "\n", + "import numpy as np\n", + "\n", + "print(tf.__version__)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stderr", + "text": [ + "<__array_function__ internals>:5: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray\n", + "C:\\Python\\lib\\site-packages\\tensorflow\\python\\keras\\datasets\\imdb.py:159: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray\n", + " x_train, y_train = np.array(xs[:idx]), np.array(labels[:idx])\n", + "C:\\Python\\lib\\site-packages\\tensorflow\\python\\keras\\datasets\\imdb.py:160: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray\n", + " x_test, y_test = np.array(xs[idx:]), np.array(labels[idx:])\n" + ] + }, + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "(218, 189)" + ] + }, + "metadata": {}, + "execution_count": 13 + } + ], + "source": [ + "# 1 导入数据\n", + "imdb = keras.datasets.imdb\n", + "# 影评数据集。标签0表示消极评论,1表示积极评论。\n", + "# 特征是整数值,对应词典中的单词。每一条数据保留多个单词,但是单词的数量不同\n", + "(train_data, train_labels), (test_data, test_labels) = imdb.load_data(num_words=10000)\n", + "len(train_data[0]), len(train_data[1])" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "# 通过以下方法将整数转换为其对应的单词\n", + "# 一个映射单词到整数索引的词典\n", + "word_index = imdb.get_word_index()\n", + "\n", + "# 保留第一个索引\n", + "word_index = {k:(v+3) for k,v in word_index.items()}\n", + "word_index[\"\"] = 0\n", + "word_index[\"\"] = 1\n", + "word_index[\"\"] = 2 # unknown\n", + "word_index[\"\"] = 3\n", + "\n", + "reverse_word_index = dict([(value, key) for (key, value) in word_index.items()])\n", + "\n", + "def decode_review(text):\n", + " return ' '.join([reverse_word_index.get(i, '?') for i in text])" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "\" this film was just brilliant casting location scenery story direction everyone's really suited the part they played and you could just imagine being there robert is an amazing actor and now the same being director father came from the same scottish island as myself so i loved the fact there was a real connection with this film the witty remarks throughout the film were great it was just brilliant so much that i bought the film as soon as it was released for and would recommend it to everyone to watch and the fly fishing was amazing really cried at the end it was so sad and you know what they say if you cry at a film it must have been good and this definitely was also to the two little boy's that played the of norman and paul they were just brilliant children are often left out of the list i think because the stars that play them all grown up are such a big profile for the whole film but these children are amazing and should be praised for what they have done don't you think the whole story was so lovely because it was true and was someone's life after all that was shared with us all\"" + ] + }, + "metadata": {}, + "execution_count": 15 + } + ], + "source": [ + "decode_review(train_data[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "256 256\n[ 1 14 22 16 43 530 973 1622 1385 65 458 4468 66 3941\n 4 173 36 256 5 25 100 43 838 112 50 670 2 9\n 35 480 284 5 150 4 172 112 167 2 336 385 39 4\n 172 4536 1111 17 546 38 13 447 4 192 50 16 6 147\n 2025 19 14 22 4 1920 4613 469 4 22 71 87 12 16\n 43 530 38 76 15 13 1247 4 22 17 515 17 12 16\n 626 18 2 5 62 386 12 8 316 8 106 5 4 2223\n 5244 16 480 66 3785 33 4 130 12 16 38 619 5 25\n 124 51 36 135 48 25 1415 33 6 22 12 215 28 77\n 52 5 14 407 16 82 2 8 4 107 117 5952 15 256\n 4 2 7 3766 5 723 36 71 43 530 476 26 400 317\n 46 7 4 2 1029 13 104 88 4 381 15 297 98 32\n 2071 56 26 141 6 194 7486 18 4 226 22 21 134 476\n 26 480 5 144 30 5535 18 51 36 28 224 92 25 104\n 4 226 65 16 38 1334 88 12 16 283 5 16 4472 113\n 103 32 15 16 5345 19 178 32 0 0 0 0 0 0\n 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n 0 0 0 0]\n" + ] + } + ], + "source": [ + "# 2 数据处理。将文本数据进行标准化,补齐长度\n", + "train_data = keras.preprocessing.sequence.pad_sequences(train_data,\n", + " value=word_index[\"\"],\n", + " padding='post',\n", + " maxlen=256)\n", + "\n", + "test_data = keras.preprocessing.sequence.pad_sequences(test_data,\n", + " value=word_index[\"\"],\n", + " padding='post',\n", + " maxlen=256)\n", + "print(len(train_data[0]), len(train_data[1]))\n", + "print(train_data[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Model: \"sequential\"\n_________________________________________________________________\nLayer (type) Output Shape Param # \n=================================================================\nembedding (Embedding) (None, None, 16) 160000 \n_________________________________________________________________\nglobal_average_pooling1d (Gl (None, 16) 0 \n_________________________________________________________________\ndense (Dense) (None, 16) 272 \n_________________________________________________________________\ndense_1 (Dense) (None, 1) 17 \n=================================================================\nTotal params: 160,289\nTrainable params: 160,289\nNon-trainable params: 0\n_________________________________________________________________\n" + ] + } + ], + "source": [ + "# 输入形状是用于电影评论的词汇数目(10,000 词)\n", + "vocab_size = 10000\n", + "\n", + "model = keras.Sequential()\n", + "model.add(keras.layers.Embedding(vocab_size, 16))\n", + "model.add(keras.layers.GlobalAveragePooling1D())\n", + "model.add(keras.layers.Dense(16, activation='relu'))\n", + "model.add(keras.layers.Dense(1, activation='sigmoid'))\n", + "\n", + "model.summary()\n", + "# 第一层是嵌入(Embedding)层。该层采用整数编码的词汇表,并查找每个词索引的嵌入向量(embedding vector)。这些向量是通过模型训练学习到的。向量向输出数组增加了一个维度。得到的维度为:(batch, sequence, embedding)。\n", + "# 接下来,GlobalAveragePooling1D 将通过对序列维度求平均值来为每个样本返回一个定长输出向量。这允许模型以尽可能最简单的方式处理变长输入。\n", + "# 该定长输出向量通过一个有 16 个隐层单元的全连接(Dense)层传输。\n", + "# 最后一层与单个输出结点密集连接。使用 Sigmoid 激活函数,其函数值为介于 0 与 1 之间的浮点数,表示概率或置信度。" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [], + "source": [ + "# 3.3损失函数 3.5 优化器 4 评估方法\n", + "model.compile(optimizer='adam',\n", + " loss='binary_crossentropy',\n", + " metrics=['accuracy'])\n" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [], + "source": [ + "# 4 制作评估数据\n", + "x_val = train_data[:10000]\n", + "partial_x_train = train_data[10000:]\n", + "\n", + "y_val = train_labels[:10000]\n", + "partial_y_train = train_labels[10000:]\n" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Epoch 1/40\n", + "30/30 [==============================] - 2s 31ms/step - loss: 0.6925 - accuracy: 0.5178 - val_loss: 0.6902 - val_accuracy: 0.5984\n", + "Epoch 2/40\n", + "30/30 [==============================] - 1s 22ms/step - loss: 0.6878 - accuracy: 0.6231 - val_loss: 0.6816 - val_accuracy: 0.7167\n", + "Epoch 3/40\n", + "30/30 [==============================] - 1s 21ms/step - loss: 0.6764 - accuracy: 0.7254 - val_loss: 0.6651 - val_accuracy: 0.7369\n", + "Epoch 4/40\n", + "30/30 [==============================] - 1s 23ms/step - loss: 0.6562 - accuracy: 0.7565 - val_loss: 0.6391 - val_accuracy: 0.7447\n", + "Epoch 5/40\n", + "30/30 [==============================] - 1s 23ms/step - loss: 0.6247 - accuracy: 0.7746 - val_loss: 0.6029 - val_accuracy: 0.7853\n", + "Epoch 6/40\n", + "30/30 [==============================] - 1s 21ms/step - loss: 0.5819 - accuracy: 0.8060 - val_loss: 0.5615 - val_accuracy: 0.8035\n", + "Epoch 7/40\n", + "30/30 [==============================] - 1s 23ms/step - loss: 0.5343 - accuracy: 0.8281 - val_loss: 0.5183 - val_accuracy: 0.8224\n", + "Epoch 8/40\n", + "30/30 [==============================] - 1s 22ms/step - loss: 0.4860 - accuracy: 0.8514 - val_loss: 0.4770 - val_accuracy: 0.8369\n", + "Epoch 9/40\n", + "30/30 [==============================] - 1s 22ms/step - loss: 0.4424 - accuracy: 0.8629 - val_loss: 0.4408 - val_accuracy: 0.8441\n", + "Epoch 10/40\n", + "30/30 [==============================] - 1s 22ms/step - loss: 0.4041 - accuracy: 0.8754 - val_loss: 0.4101 - val_accuracy: 0.8533\n", + "Epoch 11/40\n", + "30/30 [==============================] - 1s 21ms/step - loss: 0.3692 - accuracy: 0.8817 - val_loss: 0.3851 - val_accuracy: 0.8598\n", + "Epoch 12/40\n", + "30/30 [==============================] - 1s 20ms/step - loss: 0.3398 - accuracy: 0.8873 - val_loss: 0.3656 - val_accuracy: 0.8632\n", + "Epoch 13/40\n", + "30/30 [==============================] - 1s 21ms/step - loss: 0.3124 - accuracy: 0.8983 - val_loss: 0.3493 - val_accuracy: 0.8686\n", + "Epoch 14/40\n", + "30/30 [==============================] - 1s 22ms/step - loss: 0.2932 - accuracy: 0.9029 - val_loss: 0.3373 - val_accuracy: 0.8722\n", + "Epoch 15/40\n", + "30/30 [==============================] - 1s 22ms/step - loss: 0.2768 - accuracy: 0.9073 - val_loss: 0.3260 - val_accuracy: 0.8751\n", + "Epoch 16/40\n", + "30/30 [==============================] - 1s 26ms/step - loss: 0.2584 - accuracy: 0.9160 - val_loss: 0.3170 - val_accuracy: 0.8767\n", + "Epoch 17/40\n", + "30/30 [==============================] - 1s 23ms/step - loss: 0.2486 - accuracy: 0.9159 - val_loss: 0.3107 - val_accuracy: 0.8776\n", + "Epoch 18/40\n", + "30/30 [==============================] - 1s 22ms/step - loss: 0.2329 - accuracy: 0.9239 - val_loss: 0.3046 - val_accuracy: 0.8792\n", + "Epoch 19/40\n", + "30/30 [==============================] - 1s 23ms/step - loss: 0.2234 - accuracy: 0.9243 - val_loss: 0.2996 - val_accuracy: 0.8821\n", + "Epoch 20/40\n", + "30/30 [==============================] - 1s 21ms/step - loss: 0.2095 - accuracy: 0.9289 - val_loss: 0.2956 - val_accuracy: 0.8826\n", + "Epoch 21/40\n", + "30/30 [==============================] - 1s 21ms/step - loss: 0.2014 - accuracy: 0.9324 - val_loss: 0.2927 - val_accuracy: 0.8830\n", + "Epoch 22/40\n", + "30/30 [==============================] - 1s 21ms/step - loss: 0.1941 - accuracy: 0.9320 - val_loss: 0.2903 - val_accuracy: 0.8843\n", + "Epoch 23/40\n", + "30/30 [==============================] - 1s 21ms/step - loss: 0.1824 - accuracy: 0.9416 - val_loss: 0.2888 - val_accuracy: 0.8837\n", + "Epoch 24/40\n", + "30/30 [==============================] - 1s 24ms/step - loss: 0.1768 - accuracy: 0.9432 - val_loss: 0.2872 - val_accuracy: 0.8840\n", + "Epoch 25/40\n", + "30/30 [==============================] - 1s 21ms/step - loss: 0.1672 - accuracy: 0.9464 - val_loss: 0.2871 - val_accuracy: 0.8839\n", + "Epoch 26/40\n", + "30/30 [==============================] - 1s 22ms/step - loss: 0.1641 - accuracy: 0.9488 - val_loss: 0.2864 - val_accuracy: 0.8858\n", + "Epoch 27/40\n", + "30/30 [==============================] - 1s 21ms/step - loss: 0.1572 - accuracy: 0.9502 - val_loss: 0.2870 - val_accuracy: 0.8844\n", + "Epoch 28/40\n", + "30/30 [==============================] - 1s 21ms/step - loss: 0.1467 - accuracy: 0.9566 - val_loss: 0.2881 - val_accuracy: 0.8846\n", + "Epoch 29/40\n", + "30/30 [==============================] - 1s 22ms/step - loss: 0.1419 - accuracy: 0.9571 - val_loss: 0.2880 - val_accuracy: 0.8853\n", + "Epoch 30/40\n", + "30/30 [==============================] - 1s 23ms/step - loss: 0.1382 - accuracy: 0.9593 - val_loss: 0.2894 - val_accuracy: 0.8855\n", + "Epoch 31/40\n", + "30/30 [==============================] - 1s 25ms/step - loss: 0.1278 - accuracy: 0.9642 - val_loss: 0.2901 - val_accuracy: 0.8850\n", + "Epoch 32/40\n", + "30/30 [==============================] - 1s 22ms/step - loss: 0.1263 - accuracy: 0.9637 - val_loss: 0.2914 - val_accuracy: 0.8856\n", + "Epoch 33/40\n", + "30/30 [==============================] - 1s 21ms/step - loss: 0.1208 - accuracy: 0.9660 - val_loss: 0.2935 - val_accuracy: 0.8849\n", + "Epoch 34/40\n", + "30/30 [==============================] - 1s 21ms/step - loss: 0.1172 - accuracy: 0.9669 - val_loss: 0.2961 - val_accuracy: 0.8846\n", + "Epoch 35/40\n", + "30/30 [==============================] - 1s 22ms/step - loss: 0.1102 - accuracy: 0.9704 - val_loss: 0.2984 - val_accuracy: 0.8838\n", + "Epoch 36/40\n", + "30/30 [==============================] - 1s 23ms/step - loss: 0.1056 - accuracy: 0.9721 - val_loss: 0.3000 - val_accuracy: 0.8839\n", + "Epoch 37/40\n", + "30/30 [==============================] - 1s 23ms/step - loss: 0.1032 - accuracy: 0.9731 - val_loss: 0.3034 - val_accuracy: 0.8834\n", + "Epoch 38/40\n", + "30/30 [==============================] - 1s 21ms/step - loss: 0.0997 - accuracy: 0.9731 - val_loss: 0.3062 - val_accuracy: 0.8828\n", + "Epoch 39/40\n", + "30/30 [==============================] - 1s 24ms/step - loss: 0.0974 - accuracy: 0.9732 - val_loss: 0.3090 - val_accuracy: 0.8826\n", + "Epoch 40/40\n", + "30/30 [==============================] - 1s 21ms/step - loss: 0.0902 - accuracy: 0.9765 - val_loss: 0.3127 - val_accuracy: 0.8820\n" + ] + } + ], + "source": [ + "# 3 训练模型。这一次在训练过程中,添加了评估数据,用于计算accuracy\n", + "history = model.fit(partial_x_train,\n", + " partial_y_train,\n", + " epochs=40,\n", + " batch_size=512,\n", + " validation_data=(x_val, y_val),\n", + " verbose=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "782/782 - 0s - loss: 0.3326 - accuracy: 0.8710\n", + "[0.33264172077178955, 0.8709999918937683]\n" + ] + } + ], + "source": [ + "# 4 评估模型\n", + "results = model.evaluate(test_data, test_labels, verbose=2)\n", + "\n", + "print(results)" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": "
", + "image/svg+xml": "\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n 2021-04-21T21:27:47.104984\r\n image/svg+xml\r\n \r\n \r\n Matplotlib v3.3.2, https://matplotlib.org/\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n", + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYIAAAEWCAYAAABrDZDcAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8vihELAAAACXBIWXMAAAsTAAALEwEAmpwYAAAvVklEQVR4nO3deZwU1b3//9eHYRdkd2EdNODCvquocUvEJRANRshclWtc8GpUXFFUuCT8bqL+jNdEjWiiJsEgMQkXt+AuJiYRJIigqIigICqibAIC+vn+caqZnqF71u6p7un38/HoR1dVV1d/umDq0+ecOueYuyMiIoWrQdwBiIhIvJQIREQKnBKBiEiBUyIQESlwSgQiIgVOiUBEpMApEUhGmdmTZnZOpveNk5mtNLMTsnBcN7NvRMu/MrMbq7JvDT6nxMyeqmmcFRz3GDNbnenjSt1rGHcAEj8z25K02hz4EvgqWr/Q3WdU9VjuflI29q3v3H18Jo5jZsXAe0Ajd98VHXsGUOV/Qyk8SgSCu7dILJvZSuA8d3+m/H5m1jBxcRGR+kNVQ5JWouhvZtea2UfA/WbWxsweM7N1ZvZ5tNw56T0vmNl50fI4M/ubmd0a7fuemZ1Uw327m9k8M9tsZs+Y2Z1m9vs0cVclxh+b2d+j4z1lZu2TXj/LzFaZ2Xozm1TB+RlmZh+ZWVHSttPMbHG0PNTM/mFmG8xsrZn90swapznWA2b2k6T1q6P3fGhm55bb9xQz+7eZbTKzD8xsStLL86LnDWa2xcwOT5zbpPcfYWbzzWxj9HxEVc9NRczskOj9G8xsqZmNTHrtZDN7IzrmGjO7KtrePvr32WBmn5nZS2am61Id0wmXyuwHtAW6ARcQ/s/cH613BbYBv6zg/cOAt4D2wM3Ar83MarDvQ8ArQDtgCnBWBZ9ZlRh/APwnsA/QGEhcmA4F7o6O3zH6vM6k4O7/Ar4Ajit33Iei5a+ACdH3ORw4HvivCuImimFEFM+3gB5A+faJL4CzgdbAKcBFZvbd6LWjo+fW7t7C3f9R7thtgceBO6LvdhvwuJm1K/cd9jg3lcTcCHgUeCp634+AGWZ2ULTLrwnVjC2B3sBz0fYrgdVAB2Bf4HpA497UMSUCqczXwGR3/9Ldt7n7enf/k7tvdffNwDTgmxW8f5W73+vuXwEPAvsT/uCrvK+ZdQWGADe5+w53/xswJ90HVjHG+939bXffBswC+kfbRwOPufs8d/8SuDE6B+n8ARgLYGYtgZOjbbj7q+7+T3ff5e4rgXtSxJHK96P4lrj7F4TEl/z9XnD31939a3dfHH1eVY4LIXG84+6/i+L6A7AM+E7SPunOTUUOA1oAP43+jZ4DHiM6N8BO4FAz29vdP3f3hUnb9we6uftOd3/JNQBanVMikMqsc/ftiRUza25m90RVJ5sIVRGtk6tHyvkoseDuW6PFFtXctyPwWdI2gA/SBVzFGD9KWt6aFFPH5GNHF+L16T6L8Ov/dDNrApwOLHT3VVEcPaNqj4+iOP4/QumgMmViAFaV+37DzOz5qOprIzC+isdNHHtVuW2rgE5J6+nOTaUxu3ty0kw+7vcISXKVmb1oZodH228BlgNPmdkKM5tYta8hmaREIJUp/+vsSuAgYJi7701pVUS66p5MWAu0NbPmSdu6VLB/bWJcm3zs6DPbpdvZ3d8gXPBOomy1EIQqpmVAjyiO62sSA6F6K9lDhBJRF3dvBfwq6biV/Zr+kFBllqwrsKYKcVV23C7l6vd3H9fd57v7KEK10WxCSQN33+zuV7r7AcBI4AozO76WsUg1KRFIdbUk1LlviOqbJ2f7A6Nf2AuAKWbWOPo1+Z0K3lKbGB8BTjWzI6OG3alU/nfyEHAZIeH8sVwcm4AtZnYwcFEVY5gFjDOzQ6NEVD7+loQS0nYzG0pIQAnrCFVZB6Q59hNATzP7gZk1NLMzgUMJ1Ti18S9C6eEaM2tkZscQ/o1mRv9mJWbWyt13Es7J1wBmdqqZfSNqC9pIaFepqCpOskCJQKrrdqAZ8CnwT+CvdfS5JYQG1/XAT4CHCf0dUrmdGsbo7kuBiwkX97XA54TGzIok6uifc/dPk7ZfRbhIbwbujWKuSgxPRt/hOUK1yXPldvkvYKqZbQZuIvp1Hb13K6FN5O/RnTiHlTv2euBUQqlpPXANcGq5uKvN3XcQLvwnEc77XcDZ7r4s2uUsYGVURTae8O8JoTH8GWAL8A/gLnd/vjaxSPWZ2mUkH5nZw8Ayd896iUSkvlOJQPKCmQ0xswPNrEF0e+UoQl2ziNSSehZLvtgP+DOh4XY1cJG7/zvekETqB1UNiYgUOFUNiYgUuLyrGmrfvr0XFxfHHYaISF559dVXP3X3Dqley7tEUFxczIIFC+IOQ0Qkr5hZ+R7lu6lqSESkwCkRiIgUuKwmAjMbYWZvmdnyVINJmdnPzWxR9HjbzDZkMx4REdlT1toIopEe7ySMqb4amG9mc6JBugBw9wlJ+/8IGJCteESk5nbu3Mnq1avZvn175TtLrJo2bUrnzp1p1KhRld+TzcbiocByd18BYGYzCb1B30iz/1jqYAAzEam+1atX07JlS4qLi0k/r5DEzd1Zv349q1evpnv37lV+XzarhjpRdkz11ZQd83w3M+sGdGfPwbUyYsYMKC6GBg3C8wxN4y1SLdu3b6ddu3ZKAjnOzGjXrl21S265cvvoGOCRaGaqPZjZBYRpEunatfzQ7BWbMQMuuAC2RlOarFoV1gFKStK/T0TKUhLIDzX5d8pmiWANZSfX6Ez6yS/GEE3vl4q7T3f3we4+uEOHlP0h0po0qTQJJGzdGrYnqMQgIoUsm4lgPtDDzLpHE3yMIcU8s9GEHW0IY5Fn3PvvV7w9UWJYtQrcS0sMSgYiuWP9+vX079+f/v37s99++9GpU6fd6zt27KjwvQsWLODSSy+t9DOOOOKIjMT6wgsvcOqpp2bkWHUla4nA3XcBlwBzgTeBWe6+1MymmtnIpF3HADOzNWF1upqkRo3gjjtg4sTKSwwiUj2ZLmW3a9eORYsWsWjRIsaPH8+ECRN2rzdu3Jhdu3alfe/gwYO54447Kv2Ml19+uXZB5rGs9iNw9yfcvae7H+ju06JtN7n7nKR9prh71iasnjYNmjcvu61RI9h/f7jsMlidZu6pdCUJEalYXZWyx40bx/jx4xk2bBjXXHMNr7zyCocffjgDBgzgiCOO4K233gLK/kKfMmUK5557LscccwwHHHBAmQTRokWL3fsfc8wxjB49moMPPpiSkhISv1OfeOIJDj74YAYNGsSll15a6S//zz77jO9+97v07duXww47jMWLFwPw4osv7i7RDBgwgM2bN7N27VqOPvpo+vfvT+/evXnppZcye8IqkCuNxVmTaBCeNClc3Lt2DcmhpASWLoUjjoBNm/Z8XzXbpEUkUlG7XKZv0Fi9ejUvv/wyRUVFbNq0iZdeeomGDRvyzDPPcP311/OnP/1pj/csW7aM559/ns2bN3PQQQdx0UUX7XHP/b///W+WLl1Kx44dGT58OH//+98ZPHgwF154IfPmzaN79+6MHTu20vgmT57MgAEDmD17Ns899xxnn302ixYt4tZbb+XOO+9k+PDhbNmyhaZNmzJ9+nROPPFEJk2axFdffcXW8icxiwpiiImSEli5Er7+Ojwn/jP26gV33QXNmpXdv2FDuOmm0nU1JotUXWXtcpl0xhlnUFRUBMDGjRs544wz6N27NxMmTGDp0qUp33PKKafQpEkT2rdvzz777MPHH3+8xz5Dhw6lc+fONGjQgP79+7Ny5UqWLVvGAQccsPv+/Kokgr/97W+cddZZABx33HGsX7+eTZs2MXz4cK644gruuOMONmzYQMOGDRkyZAj3338/U6ZM4fXXX6dly5Y1PS3VVhCJoCIlJXDvvdCtW1hv2RJ27YJbboFXX1Vjskh1pStNZ6OUvddee+1evvHGGzn22GNZsmQJjz76aNp76Zs0abJ7uaioKGX7QlX2qY2JEydy3333sW3bNoYPH86yZcs4+uijmTdvHp06dWLcuHH89re/zehnVqTgEwGUlhjcQzXR00/D5s1w2GFw8cVqTBapjlTtcs2bh+3ZtHHjRjp1Cn1WH3jggYwf/6CDDmLFihWsXLkSgIcffrjS9xx11FHMiH41vvDCC7Rv3569996bd999lz59+nDttdcyZMgQli1bxqpVq9h33305//zzOe+881i4cGHGv0M6SgQpnHACvP46jB4NGzem3keNySKplZTA9OmhlG0WnqdPz34HzmuuuYbrrruOAQMGZPwXPECzZs246667GDFiBIMGDaJly5a0atWqwvdMmTKFV199lb59+zJx4kQefPBBAG6//XZ69+5N3759adSoESeddBIvvPAC/fr1Y8CAATz88MNcdtllGf8O6eTdnMWDBw/2upyYpkMH+PTTPbd36xZKESKF4M033+SQQw6JO4zYbdmyhRYtWuDuXHzxxfTo0YMJEyZU/sY6lurfy8xedffBqfZXiaASt98OTZuW3VYXxVwRyT333nsv/fv3p1evXmzcuJELL7ww7pAyot7fPlpbieLsddfBBx+Eou5VV2mcIpFCNGHChJwsAdSWSgRVUFIS2gQ++QS+8Y3QI3nJktLXdXupiOQzJYJq6NABnnoq9Ds48cRwK6luLxWRfKdEUE3FxTB3briF9Nvf1lhFIpL/lAhqoE8fePTRUF2ksYpEJN8pEdTQkUfCrFnpX9dYRSKZc+yxxzJ37twy226//XYuuuiitO855phjSNxqfvLJJ7Nhw4Y99pkyZQq33nprhZ89e/Zs3nijdIbdm266iWeeeaYa0aeWS8NVKxHUwne+UzrbWTLdXiqSWWPHjmXmzJllts2cObNK4/1AGDW0devWNfrs8olg6tSpnHDCCTU6Vq5SIqile+6BMWNK1+uqF6VIIRk9ejSPP/747kloVq5cyYcffshRRx3FRRddxODBg+nVqxeTJ09O+f7i4mI+jXqGTps2jZ49e3LkkUfuHqoaQh+BIUOG0K9fP773ve+xdetWXn75ZebMmcPVV19N//79effddxk3bhyPPPIIAM8++ywDBgygT58+nHvuuXz55Ze7P2/y5MkMHDiQPn36sGzZsgq/X9zDVasfQQb84Q/h1tFZs0LbQZ8+cUckkj2XXw6LFmX2mP37h86b6bRt25ahQ4fy5JNPMmrUKGbOnMn3v/99zIxp06bRtm1bvvrqK44//ngWL15M3759Ux7n1VdfZebMmSxatIhdu3YxcOBABg0aBMDpp5/O+eefD8ANN9zAr3/9a370ox8xcuRITj31VEaPHl3mWNu3b2fcuHE8++yz9OzZk7PPPpu7776byy+/HID27duzcOFC7rrrLm699Vbuu+++tN8v7uGqVSLIkP/9X2jTBs49N4xeKiKZlVw9lFwtNGvWLAYOHMiAAQNYunRpmWqc8l566SVOO+00mjdvzt57783IkaWTJS5ZsoSjjjqKPn36MGPGjLTDWCe89dZbdO/enZ49ewJwzjnnMG/evN2vn3766QAMGjRo90B16cQ9XLVKBBnSvj388pdw5plw221wzTVxRySSHRX9cs+mUaNGMWHCBBYuXMjWrVsZNGgQ7733Hrfeeivz58+nTZs2jBs3Lu3w05UZN24cs2fPpl+/fjzwwAO88MILtYo3MZR1bYaxnjhxIqeccgpPPPEEw4cPZ+7cubuHq3788ccZN24cV1xxBWeffXatYlWJIIPOOANOOy1MapNU9SgiGdCiRQuOPfZYzj333N2lgU2bNrHXXnvRqlUrPv74Y5588skKj3H00Ucze/Zstm3bxubNm3n00Ud3v7Z582b2339/du7cuXvoaICWLVuyefPmPY510EEHsXLlSpYvXw7A7373O775zW/W6LvFPVy1SgQZZAZ33gmHHgrnnQcvvhjaDkQkM8aOHctpp522u4ooMWzzwQcfTJcuXRg+fHiF7x84cCBnnnkm/fr1Y5999mHIkCG7X/vxj3/MsGHD6NChA8OGDdt98R8zZgznn38+d9xxx+5GYoCmTZty//33c8YZZ7Br1y6GDBnC+PHja/S9EnMp9+3bl+bNm5cZrvr555+nQYMG9OrVi5NOOomZM2dyyy230KhRI1q0aJGRCWw0DHUWPPggjBsHv/gFXHJJGG4i1ZzJIvlCw1Dnl+oOQ60SQRacfTbMnBmGn9i1q+xk3omxiEDJQERygyoussAs9C8wC8NXaywiEcllSgRZ0rUr3HwzpLuBQWMRSb7Jt2rkQlWTf6esJgIzG2Fmb5nZcjObmGaf75vZG2a21MweymY8de3CCyG6g2wPGotI8knTpk1Zv369kkGOc3fWr19P0/LTKlYia20EZlYE3Al8C1gNzDezOe7+RtI+PYDrgOHu/rmZ7ZOteOLQoEFoGL7qqrLbNRaR5JvOnTuzevVq1q1bF3coUommTZvSuXPnar0nm43FQ4Hl7r4CwMxmAqOA5G5/5wN3uvvnAO7+SRbjicWVV8LChfBQVNbp1k13DUn+adSoEd27d487DMmSbCaCTsAHSeurgWHl9ukJYGZ/B4qAKe7+1yzGFIsHH4TFi+GLL+CNN6CapTYRkayKu7G4IdADOAYYC9xrZq3L72RmF5jZAjNbkI9F04YNQ7f8996Lr3u+iEg62UwEa4AuSeudo23JVgNz3H2nu78HvE1IDGW4+3R3H+zugzt06JC1gLPp+ONh1KhQLbR2bdzRiIiUymYimA/0MLPuZtYYGAPMKbfPbEJpADNrT6gqWpHFmGJ1yy3w5Zdwww1xRyIiUipricDddwGXAHOBN4FZ7r7UzKaaWWLs17nAejN7A3geuNrd12crprj16AGXXQb33x8akEVEcoHGGqpjGzeGhHDQQTBvXuh9LCKSbRWNNRR3Y3HBadUKfvIT+NvfIGkgQxGR2CgRxOCHP4R+/eDqq0M1UXFx6HxWXBxGKhURqUtKBDEoKoKf/zyMRHrhheHZvXRkUiUDEalLSgQxOfZYaNYMdu4su10jk4pIXVMiiNG2bam3a2RSEalLSgQx6tYt9XaNTCoidUmJIEbTpoXqoWQamVRE6poSQYxKSuDee6Ft27Devj1Mn66RSUWkbikRxKykBD75BHr3Dn0Mzjgj7ohEpNAoEeSAoqIwreW778KvfhV3NCJSaJQIcsSIEXDccTB1ahiGQkSkrigR5AizMDrp+vXw05/GHY2IFBIlghwycCD8x3+EyWs++KDS3UVEMkKJIMf85CdhuAnNWSAidUWJIMd06waXXgq/+x0sWhR3NCJSCJQIctD110ObNnDNNXFHIiKFQIkgB7VuDTfeCE8/Dddeq2GqRSS7NENZjtqxA7p0gXXrQptBQvPm6n0sItWnGcryUOPG8PXXZZMAaJhqEck8JYIc9umnqbdrmGoRySQlghymYapFpC4oEeSwadNCm0AyDVMtIpmmRJDDSkpCw3DHjmF9r73UUCwimadEkONKSmDNGrjyytBQfMghcUckIvVNVhOBmY0ws7fMbLmZTUzx+jgzW2dmi6LHedmMJ5/dcAO0aweXX77nnUQiIrWRtURgZkXAncBJwKHAWDM7NMWuD7t7/+hxX7biyXetW4dxiF56CR55JO5oRKQ+yWaJYCiw3N1XuPsOYCYwKoufV++ddx707QtXXw3btsUdjYjUF9lMBJ2A5MGUV0fbyvuemS02s0fMrEuqA5nZBWa2wMwWrFu3Lhux5oWiojBE9apVcNttcUcjIvVF3I3FjwLF7t4XeBp4MNVO7j7d3Qe7++AOHTrUaYC55thj4bTT4H/+Bz78MO5oRKQ+yGYiWAMk/8LvHG3bzd3Xu/uX0ep9wKAsxlNv3Hor7NwJ110XdyQiUh9kMxHMB3qYWXczawyMAeYk72Bm+yetjgTezGI89cYBB8CECfDb38Irr8QdjYjku6wlAnffBVwCzCVc4Ge5+1Izm2pmI6PdLjWzpWb2GnApMC5b8dQ3118P++6r20lFpPY0DHUe+/Wvw51E7duHSe+7dg3DT6jnsYiUV9Ew1A3rOhjJnMaNwax0lNJVq+CCC8KykoGIVFXcdw1JLdx4o+YrEJHaUyLIY+nmJdB8BSJSHUoEeSzdvASar0BEqkOJII+lmq+gUSPNVyAi1aNEkMcS8xUkZjJr1iw8DxkSX0wikn+UCPJcSQmsXBkajZcvD5PXnHdemPheRKQqlAjqkY4d4ec/D0NV33133NGISL5QIqhnzjkHTjwRrr02lBRERCqjRFDPmME994Tn88/X8BMiUjklgnqoWze4+WZ45hn4zW/ijkZEcp0SQT114YXwzW+GSe/XrKl8fxEpXEoE9VSDBnDffbBjB4wfryoiEUlPiaAe+8Y34PTT4bHHQmIoLoYZM+KOSkRyjRJBPTZjBvz5z6XridFJlQxEJJkSQT02aRJs21Z2m0YnFZHylAjqsXSjkK5aVbdxiEhuUyKox9KNQtqmTd3GISK5TYmgHks1OmlREWzcGIahEBEBJYJ6LXl0UrPwfPfdcOCBcOaZ8NFHcUcoIrlAk9cXoNdfh2HDYOjQ0Pu4oWauFqn3Kpq8XiWCAtSnTxiP6MUXdQeRiFQxEZjZXmbWIFruaWYjzaxRdkOTbDrrrNDj+OabYfbsuKMRkThVtUQwD2hqZp2Ap4CzgAeyFZTUjdtvh8GDw9DVb74ZdzQiEpeqJgJz963A6cBd7n4G0KvSN5mNMLO3zGy5mU2sYL/vmZmbWcr6K8mOJk3gkUfCnUUnnAArVsQdkYjEocqJwMwOB0qAx6NtRZW8oQi4EzgJOBQYa2aHptivJXAZ8K+qBi2Z060bPP00bN8Oxx8Pq1fHHZGI1LWqJoLLgeuAv7j7UjM7AHi+kvcMBZa7+wp33wHMBEal2O/HwM+A7VWMRTJoxgw49VT47LPQ43joUPjkk7ijEpG6VKVE4O4vuvtId/9Z1Gj8qbtfWsnbOgEfJK2vjrbtZmYDgS7u/jgVMLMLzGyBmS1Yt25dVUKWKpgxIwxClxhywh3WroUhQ+Dzz+ONTUTqTlXvGnrIzPY2s72AJcAbZnZ1bT44Sii3AVdWtq+7T3f3we4+uEOHDrX5WEkyaVIYhK6899+Hk0+GzZvrPiYRqXtVrRo61N03Ad8FngS6E+4cqsgaoEvSeudoW0JLoDfwgpmtBA4D5qjBuO6kG5QOYP58GDlyz9FLRaT+qWoiaBT1G/guMMfddwKVdUmeD/Qws+5m1hgYA8xJvOjuG929vbsXu3sx8E9gpLur23AdSTcoXbdu8Nvfhg5no0eHWc5EpP6qaiK4B1gJ7AXMM7NuwKaK3uDuu4BLgLnAm8CsqKF5qpmNrHnIkimpBqVr3jxs/8EP4Fe/gieeCGMWKRmI1F81HmvIzBpGF/s6pbGGMmvGjNBW8P77oYQwbVq48Cf8/OdwxRVw5JHwpz/BPvvEF6uI1FxFYw1VKRGYWStgMnB0tOlFYKq7b8xYlFWkRFD3Zs6E//xP2Hdf+L//g3794o5IRKorE4PO/QbYDHw/emwC7s9MeJLrxowJ8xfs2gXDh8Nf/hJ3RCKSSVVNBAe6++Soc9gKd/9v4IBsBia5ZfDgcCdR795w+unw4x+Hfgcikv+qmgi2mdmRiRUzGw7oxsICs//+8MILYeTSm24KJYVU/RBEJL9UNRGMB+40s5XRPf+/BC7MWlSSE2bMgOJiaNAgPM+YAU2bwoMPws9+Bn/8Ixx1lMYnEsl3VR1i4jV37wf0Bfq6+wDguKxGJrFKHn7CPTxfcEHYbgbXXANz5sA778CAAWo3EMln1ZqhzN03RT2MAa7IQjySI1INP7F1a9kZzU49Ff71r3Db6emnh3kNNmyo0zBFJANqM1WlZSwKyTnphp8ov/2QQ+Cf/wxtBjNmhGkwn3km+/GJSObUJhHonpF6LN3wE6m2N2oE//3f8PLLsNde8K1vwaWXqiFZJF9UmAjMbLOZbUrx2Ax0rKMYJQYVDT+RztChsHAhXHYZ/OIXoe3gX5puSCTnVZgI3L2lu++d4tHS3RvWVZBS90pKYPr0MACdWXiePr3s8BOpNG8e5kJ+9tkwcukRR4QhKjSNhEjuqvFYQ3HREBP5Y+NGuOoq+M1voFmzUF105ZXQrl3ckYkUnkwMMSFSba1awb33wpIl8J3vwE9/Ct27h4ZlzYAmkjuUCKTGUnU4S+WQQ+APf4DFi+HEE8PwFN27w9SpodQgIvFSIpAaqajDWTq9e4feyIsWwbHHwuTJpQnhs8/qLHQRKUeJQGqkKh3O0unXL/REXrAgzHMweXJojL76ali7Njvxikh6SgRSI1XtcFaRQYPCMBWvvRbaEG67LVQxjR8PK1ZkJEwRqQIlAqmR6nQ4q0zfvvDQQ/D222ECnPvvhx49wq2qr79euzhFpHJKBFIjNelwVpkDDwzzJL/3Xuh7MGdOSBJHHx2Sw5YttYtZRFJTIpAaqWmHs6ro2BFuuSU0QP/0p/Dxx3DuubDffqHEMG+eJsURySR1KJOc5w7/+EfomPbww6FkcOCBISmcfTZ06RJ3hCK5Tx3KJBZV7WdQGbMwVMV998FHH4WJcbp0gRtuCG0SffrA5ZfDY4/B5s0Z/AIiBUIlAsmKRD+D5FtMmzfPXPURhDuL/vjHMK7RSy/B9u3QsCEMGwYnnBAew4aF0VFF8s3GjfDWW7BsWenjoovC6L41UVGJQIlAsqK4ONTxl9etG6xcmfnP2749DIP9zDPhsWBBqFLaa6/Q2HzcceHRrx8UFWX+80Wqyx3Wrw9/J++/H57ffrv0op/cp6Zhw3An3ZQp8P3v1+zzYksEZjYC+F+gCLjP3X9a7vXxwMXAV8AW4AJ3f6OiYyoR5IcGDVI36JrB119n//M/+wyefx6eey48li0L29u0gWOOKU0MhxwSYhLJtB07wnze778PH3wQnhMX/MTFv3ynzNat4eCDw+OQQ0qXu3evfck2lkRgZkXA28C3gNXAfGBs8oXezPZOTH1pZiOB/3L3ERUdV4kgP9R1iaAyH35YmhiefbY0tnbtwjwKQ4fCkCHhuUOHuo9P8o97aLN6553wS/6dd0J1ZeKC//HHe/4Yat8+/A0kP7p2LV1u2zZ7P0wqSgTZnFNgKLDc3VdEQcwERgG7E0HS/McAe6FZz+qNadNStxHUpp9BbXTsGNomEu0T770XEsI//gHz58PcuaUlleLi0sTQvz/06hVuXVXJoTB8+WUYHffzz0PJMvH82WdhXo3ly8OFf/nysn1bGjUKv9y7dYOTTw4X+K5dw40NXbtC58579r3JFdlMBJ2AD5LWVwPDyu9kZhcDVwCNgeNSHcjMLgAuAOhak66rUucSF9xJk8Kvo65dQxJIbiieMaPi17Ope3c477zwgPAHvXAhvPJKSAyvvAKzZpXu37ZtSAi9eoXB8xLL7dsrQeQDd9iwIVTVfPhhqH9fuzb8ok9e/uijijsuFhWF/zs9eoS2px49wqNnz/B/OF/bn7JZNTQaGOHu50XrZwHD3P2SNPv/ADjR3c+p6LiqGqof6uKuotpaty4McbF0aXgsWRKeN2wo3adFi7JF+/KPffcNDX2SHe7wxRehGuaTT8Lz2rXhgl/+kWoO7b33hv33D4/99guP9u1D4m/TZs/nVq3y+GIfUxvB4cAUdz8xWr8OwN3/J83+DYDP3b1VRcdVIqgfcq0Noarcwy/KpUvhjTdCrInGv1Wr9hxOu0GDcHHp2BE6dSp9dOwYtrdpExoIW7cOy40bx/Cl6tiuXeEury+/LH0kr2/bFvqDbNqU+vH552Uv/Nu27fkZRUXhHHfuHB5duoTnxPlPXPhztaomG+JqI5gP9DCz7sAaYAzwg3KB9XD3d6LVU4B3kIKQidFL42BWejH59rf3fH3LltI7Qt5/H9asKX28+24YHqOi2dmaNStNCskJIrGe/Ny4cUg0DRqEuMovN2kSHk2b7vncqFG4q2XHjnDxTX7esaP0YrxlS3guv7xzZ+nnlX+YhV/fGzeG0tOGDWWXv/ii+ue9qCj8Gt977/C8776hOmaffcLyPvuULid+2efrL/c4ZC0RuPsuM7sEmEu4ffQ37r7UzKYCC9x9DnCJmZ0A7AQ+ByqsFpL6o2vX1CWCfG8CatGitP0gna1bQ/XFxx+XXhw//7x0OXn9o4/Cra+J9bi7/TRsCC1bhkTiHhrYE4/k9ebNwwU7kcz22y88t2oVHs2alSam5CSVWN5777KPZs3UFpNN6lAmsciHNoJc8/XX4dd44o6WnTv3vAAnlr/6qvRXfnLVS+J5x45QomjSJDwnLycuyC1bhkeLFqXPTZrogpyv4qoaEkkr1+8qykUNGpT+oi4ujjsaqU+UCCQ2yff1l1e+xJCYEznxPhHJHI0+KjmpNnMii0j1KBFITsrXu4pE8pESgeSkTM6JLCIVUyKQnFTZnMiZmvRGRJQIJEdVNCdyoiF51apwu2SiIVnJQKRm1I9A8k6+Dk8hEifNWSz1ihqSRTJLiUDyTlUaktWGIFJ1SgSSd6rSkKw2BJGqUyKQvFNRQzKoM5pIdamxWOqdBg1Sj9JpVjodpUihUWOxFBR1RhOpHiUCqXcqa0MANSaLJFMikHqnsjYENSaLlKU2Aik46pAmhUhtBCJJqtIhTVVHUkiUCKTgVNaYrKojKTRKBFJwKmtMVj8EKTRKBFJwKmtM1lhGUmiUCKQglZSEhuGvvw7PyfMgaywjKTRKBCLlaCwjKTRKBCLlaCwjKTRZTQRmNsLM3jKz5WY2McXrV5jZG2a22MyeNbNu2YxHpKoqqjqqrA1B1UaSb7KWCMysCLgTOAk4FBhrZoeW2+3fwGB37ws8AtycrXhEMqWiNgRVG0k+ymaJYCiw3N1XuPsOYCYwKnkHd3/e3ROF7H8CnbMYj0hGVNSGoGojyUfZTASdgA+S1ldH29L5IfBkqhfM7AIzW2BmC9atW5fBEEWqr6I2BPValnzUMO4AAMzsP4DBwDdTve7u04HpEMYaqsPQRFIqKSnbbpDQtWvqcYzK91pOlBoSVUeJY4rEIZslgjVAl6T1ztG2MszsBGASMNLdv8xiPCJZp17Lko+ymQjmAz3MrLuZNQbGAHOSdzCzAcA9hCTwSRZjEakTmei1rKojqWtZqxpy911mdgkwFygCfuPuS81sKrDA3ecAtwAtgD+aGcD77j4yWzGJ1IV01UagqiPJTVntR+DuT7h7T3c/0N2nRdtuipIA7n6Cu+/r7v2jh5KA1GuZqDpSiUEyTT2LRepQbauO1E9BskEzlInkkMpmT9PsalJTmqFMJE9UVnWkxmbJBiUCkRxSWdWRZleTbFAiEMkxFQ14V9vGZpUWJBUlApE8UpvGZpUWJB0lApE8U9PZ1XRrqqSjRCBSj1RUdaRbUyUdJQKReqSiqqPKGppVYihcSgQi9Uy6qqPa3pqqEkP9pUQgUiBqe2uqSgz1lxKBSAGpza2pKjHUX0oEIgKoxFDIlAhEZDeVGAqTEoGIVEm2SwwqLcRHiUBEqixbJQaVFuKlRCAiGVGbEoPaF+KlRCAiGVPTEkMm2heUKGpOiUBE6kQ2ez2raql2lAhEpM5kq9ezqpZqR4lARGJX2zuSVLVUO5qzWERyXuJCnvyrv3nz0mRR27meKzt+faA5i0Ukr1VWYsh21VJ9Ly0oEYhIXqjojqRsVi0VQrVSVhOBmY0ws7fMbLmZTUzx+tFmttDMdpnZ6GzGIiL1W206u9Wmj0O9SBTunpUHUAS8CxwANAZeAw4tt08x0Bf4LTC6KscdNGiQi4hU1+9/796tm7tZeP7978u+1ry5e7iUh0fz5mG7WdntiYdZeG+3bqlf79at8mPXJWCBp7muZrNEMBRY7u4r3H0HMBMYVS4JrXT3xcDXWYxDRKTGVUu1vWMpH25tzWYi6AR8kLS+OtpWbWZ2gZktMLMF69aty0hwIiLJatrHoT7c2poXjcXuPt3dB7v74A4dOsQdjogUkNresZQPvaazmQjWAF2S1jtH20RE8kpt7liqi17TtZXNRDAf6GFm3c2sMTAGmJPFzxMRiUVct7ZmStYSgbvvAi4B5gJvArPcfamZTTWzkQBmNsTMVgNnAPeY2dJsxSMiEpds3dqaKQ0zd6g9ufsTwBPltt2UtDyfUGUkIlKQEklh0qTwK79r15AEkquWUg1/kUgUmZDVRCAiIpUrKUk/plFliSITlAhERHJcRYkiE/Li9lEREckeJQIRkQKnRCAiUuCUCERECpwSgYhIgcu7qSrNbB2QYtI5ANoDn9ZhONWVy/EptppRbDWj2GqmNrF1c/eUg7XlXSKoiJkt8DRzcuaCXI5PsdWMYqsZxVYz2YpNVUMiIgVOiUBEpMDVt0QwPe4AKpHL8Sm2mlFsNaPYaiYrsdWrNgIREam++lYiEBGRalIiEBEpcPUmEZjZCDN7y8yWm9nEuONJZmYrzex1M1tkZgtijuU3ZvaJmS1J2tbWzJ42s3ei5zY5FNsUM1sTnbtFZnZyTLF1MbPnzewNM1tqZpdF22M/dxXEFvu5M7OmZvaKmb0Wxfbf0fbuZvav6O/14WgWw1yJ7QEzey/pvPWv69iSYiwys3+b2WPRenbOm7vn/QMoAt4FDgAaA68Bh8YdV1J8K4H2cccRxXI0MBBYkrTtZmBitDwR+FkOxTYFuCoHztv+wMBouSXwNnBoLpy7CmKL/dwBBrSIlhsB/wIOA2YBY6LtvwIuyqHYHgBGx/1/LorrCuAh4LFoPSvnrb6UCIYCy919hbvvAGYCo2KOKSe5+zzgs3KbRwEPRssPAt+ty5gS0sSWE9x9rbsvjJY3E6Zf7UQOnLsKYoudB1ui1UbRw4HjgEei7XGdt3Sx5QQz6wycAtwXrRtZOm/1JRF0Aj5IWl9NjvwhRBx4ysxeNbML4g4mhX3dfW20/BGwb5zBpHCJmS2Oqo5iqbZKZmbFwADCL8icOnflYoMcOHdR9cYi4BPgaULpfYOHec0hxr/X8rG5e+K8TYvO28/NrEkcsQG3A9cAX0fr7cjSeasviSDXHenuA4GTgIvN7Oi4A0rHQ5kzZ34VAXcDBwL9gbXA/x9nMGbWAvgTcLm7b0p+Le5zlyK2nDh37v6Vu/cnzE8+FDg4jjhSKR+bmfUGriPEOARoC1xb13GZ2anAJ+7+al18Xn1JBGuALknrnaNtOcHd10TPnwB/Ifwx5JKPzWx/gOj5k5jj2c3dP47+WL8G7iXGc2dmjQgX2hnu/udoc06cu1Sx5dK5i+LZADwPHA60NrPEVLmx/70mxTYiqmpzd/8SuJ94zttwYKSZrSRUdR8H/C9ZOm/1JRHMB3pELeqNgTHAnJhjAsDM9jKzloll4NvAkorfVefmAOdEy+cA/xdjLGUkLrKR04jp3EX1s78G3nT325Jeiv3cpYstF86dmXUws9bRcjPgW4Q2jOeB0dFucZ23VLEtS0rsRqiDr/Pz5u7XuXtndy8mXM+ec/cSsnXe4m4Vz9QDOJlwt8S7wKS440mK6wDCXUyvAUvjjg34A6GaYCehjvGHhLrHZ4F3gGeAtjkU2++A14HFhIvu/jHFdiSh2mcxsCh6nJwL566C2GI/d0Bf4N9RDEuAm6LtBwCvAMuBPwJNcii256LztgT4PdGdRXE9gGMovWsoK+dNQ0yIiBS4+lI1JCIiNaREICJS4JQIREQKnBKBiEiBUyIQESlwSgQiETP7KmnEyUWWwVFszaw4eVRVkVzSsPJdRArGNg/DDYgUFJUIRCphYT6Jmy3MKfGKmX0j2l5sZs9Fg5M9a2Zdo+37mtlfonHuXzOzI6JDFZnZvdHY909FvVkxs0ujuQQWm9nMmL6mFDAlApFSzcpVDZ2Z9NpGd+8D/JIwKiTAL4AH3b0vMAO4I9p+B/Ciu/cjzK+wNNreA7jT3XsBG4DvRdsnAgOi44zPzlcTSU89i0UiZrbF3Vuk2L4SOM7dV0SDu33k7u3M7FPCsA07o+1r3b29ma0DOnsYtCxxjGLCMMc9ovVrgUbu/hMz+yuwBZgNzPbSMfJF6oRKBCJV42mWq+PLpOWvKG2jOwW4k1B6mJ80uqRInVAiEKmaM5Oe/xEtv0wYGRKgBHgpWn4WuAh2T3zSKt1BzawB0MXdnyeMe98K2KNUIpJN+uUhUqpZNFtVwl/dPXELaRszW0z4VT822vYj4H4zuxpYB/xntP0yYLqZ/ZDwy/8iwqiqqRQBv4+ShQF3eBgbX6TOqI1ApBJRG8Fgd/807lhEskFVQyIiBU4lAhGRAqcSgYhIgVMiEBEpcEoEIiIFTolARKTAKRGIiBS4/wd6aTjARKwCJQAAAABJRU5ErkJggg==\n" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "source": [ + "# 4 评估模型,绘制loss和accuracy的曲线图\n", + "history_dict = history.history\n", + "print(history_dict.keys())\n", + "\n", + "import matplotlib.pyplot as plt\n", + "\n", + "acc = history_dict['accuracy']\n", + "val_acc = history_dict['val_accuracy']\n", + "loss = history_dict['loss']\n", + "val_loss = history_dict['val_loss']\n", + "\n", + "epochs = range(1, len(acc) + 1)\n", + "\n", + "# “bo”代表 \"蓝点\"\n", + "plt.plot(epochs, loss, 'bo', label='Training loss')\n", + "# b代表“蓝色实线”\n", + "plt.plot(epochs, val_loss, 'b', label='Validation loss')\n", + "plt.title('Training and validation loss')\n", + "plt.xlabel('Epochs')\n", + "plt.ylabel('Loss')\n", + "plt.legend()\n", + "\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": "
", + "image/svg+xml": "\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n 2021-04-21T21:29:04.626262\r\n image/svg+xml\r\n \r\n \r\n Matplotlib v3.3.2, https://matplotlib.org/\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n", + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYIAAAEWCAYAAABrDZDcAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8vihELAAAACXBIWXMAAAsTAAALEwEAmpwYAAAszklEQVR4nO3deZwU1bn/8c/DsA6LrCoyyKABUUPYRgyumGii4tVoJILEiJoQMVGvv0Svib9EYsK9WYz605gFk6hRjFsSriYYjdvVRG9kXAMoiDgIBnUgCiM7zPP741TP9DTdMz1D93RP1/f9etWra+vqp6tnzlN1TtUpc3dERCS+OhU6ABERKSwlAhGRmFMiEBGJOSUCEZGYUyIQEYk5JQIRkZhTIpDdmNlDZnZurtctJDOrMbPj87BdN7OPROM/N7NvZbNuGz5nhpk90tY4RZpjuo+gNJjZh0mT5cA2YFc0/WV3n9/+URUPM6sBvujuj+Z4uw6McPcVuVrXzCqBN4Eu7r4zJ4GKNKNzoQOQ3HD3Xonx5go9M+uswkWKhf4ei4OqhkqcmU02szVm9h9m9g5wq5n1M7M/mlmtmb0fjVckvedJM/tiND7TzP5qZtdG675pZie1cd3hZvaUmdWZ2aNmdrOZ3Zkh7mxi/K6Z/S3a3iNmNjBp+TlmtsrM1pvZVc3sn8PN7B0zK0uad7qZvRKNTzSzZ83sAzNba2Y/MbOuGbZ1m5l9L2n68ug9/zSz81PWnWJmL5rZRjNbbWZzkhY/Fb1+YGYfmtmkxL5Nev8RZrbIzDZEr0dku29auZ/7m9mt0Xd438wWJC07zcxeir7DG2Z2YjS/STWcmc1J/M5mVhlVkV1gZm8Bj0fz74t+hw3R38ihSe/vYWY/jn7PDdHfWA8z+5OZXZzyfV4xs9PTfVfJTIkgHvYF+gPDgFmE3/3WaHp/YAvwk2befziwDBgI/BD4lZlZG9a9C3gOGADMAc5p5jOzifFs4Dxgb6Ar8HUAMzsE+Fm0/f2iz6sgDXf/O7AJ+ETKdu+KxncBl0XfZxLwSeCiZuImiuHEKJ4TgBFAavvEJuALQF9gCjDbzD4TLTsmeu3r7r3c/dmUbfcH/gTcGH2364A/mdmAlO+w275Jo6X9fAehqvHQaFvXRzFMBH4DXB59h2OAmgyfkc6xwMHAp6Pphwj7aW/gBSC5KvNaYAJwBOHv+AqgHrgd+HxiJTMbAwwh7BtpDXfXUGID4R/y+Gh8MrAd6N7M+mOB95OmnyRULQHMBFYkLSsHHNi3NesSCpmdQHnS8juBO7P8Tuli/L9J0xcBf47Gvw3cnbSsZ7QPjs+w7e8Bv47GexMK6WEZ1v134A9J0w58JBq/DfheNP5r4PtJ641MXjfNdm8Aro/GK6N1Oyctnwn8NRo/B3gu5f3PAjNb2jet2c/AYEKB2y/Ner9IxNvc3180PSfxOyd9twOaiaFvtM5ehES1BRiTZr3uwPuEdhcICeOn+fifKvVBZwTxUOvuWxMTZlZuZr+ITrU3Eqoi+iZXj6R4JzHi7puj0V6tXHc/4F9J8wBWZwo4yxjfSRrfnBTTfsnbdvdNwPpMn0U4+j/DzLoBZwAvuPuqKI6RUXXJO1Ec/0k4O2hJkxiAVSnf73AzeyKqktkAXJjldhPbXpUybxXhaDgh075pooX9PJTwm72f5q1DgTeyjDedhn1jZmVm9v2oemkjjWcWA6Ohe7rPiv6m7wE+b2adgOmEMxhpJSWCeEi9NOxrwEHA4e7eh8aqiEzVPbmwFuhvZuVJ84Y2s/6exLg2edvRZw7ItLK7LyUUpCfRtFoIQhXTa4Sjzj7AN9sSA+GMKNldwAPAUHffC/h50nZbupTvn4SqnGT7A29nEVeq5vbzasJv1jfN+1YDB2bY5ibC2WDCvmnWSf6OZwOnEarP9iKcNSRiWAdsbeazbgdmEKrsNntKNZpkR4kgnnoTTrc/iOqbr873B0ZH2NXAHDPramaTgH/LU4z3A6eY2VFRw+41tPy3fhdwKaEgvC8ljo3Ah2Y2CpidZQz3AjPN7JAoEaXG35twtL01qm8/O2lZLaFK5oAM214IjDSzs82ss5mdBRwC/DHL2FLjSLuf3X0toe7+p1GjchczSySKXwHnmdknzayTmQ2J9g/AS8C0aP0q4MwsYthGOGsrJ5x1JWKoJ1SzXWdm+0VnD5Oiszeigr8e+DE6G2gzJYJ4ugHoQTja+l/gz+30uTMIDa7rCfXy9xAKgHRuoI0xuvsS4CuEwn0toR55TQtv+y2hAfNxd1+XNP/rhEK6DrglijmbGB6KvsPjwIroNdlFwDVmVkdo07g36b2bgbnA3yxcrfTxlG2vB04hHM2vJzSenpISd7ZuoPn9fA6wg3BW9B6hjQR3f47QGH09sAH4HxrPUr5FOIJ/H/gOTc+w0vkN4YzsbWBpFEeyrwP/ABYB/wJ+QNOy6zfAaEKbk7SBbiiTgjGze4DX3D3vZyRSuszsC8Asdz+q0LF0VDojkHZjZoeZ2YFRVcKJhHrhBQUOSzqwqNrtImBeoWPpyJQIpD3tS7i08UPCNfCz3f3FgkYkHZaZfZrQnvIuLVc/STNUNSQiEnM6IxARibkO1+ncwIEDvbKystBhiIh0KM8///w6dx+UblmHSwSVlZVUV1cXOgwRkQ7FzFLvRm+gqiERkZhTIhARiTklAhGRmOtwbQTp7NixgzVr1rB169aWV5aC6N69OxUVFXTp0qXQoYhIipJIBGvWrKF3795UVlaS+XkpUijuzvr161mzZg3Dhw8vdDgikqIkqoa2bt3KgAEDlASKlJkxYMAAnbGJtNH8+VBZCZ06hdf581t6R+uURCIAlASKnH4fkcyaK+jnz4dZs2DVKnAPr7Nm5TYZlEwiEBEplJaO2PekoL/qKti8uen2Nm8O83NFiSAH1q9fz9ixYxk7diz77rsvQ4YMaZjevn17s++trq7mkksuafEzjjjiiFyFKyJptFRYt7Ug39OC/q230sebaX6bFPqhya0dJkyY4KmWLl2627zm3Hmn+7Bh7mbh9c47W/X2Zl199dX+ox/9qMm8HTt25O4DOrDW/k4iudTc//2dd7qXl7uHojoM5eVhfnPL3MO2kpclhmHDsltuln65WXbvzxZQ7Xp4fdAe9W0AM2fO5MILL+Twww/niiuu4LnnnmPSpEmMGzeOI444gmXLlgHw5JNPcsoppwAwZ84czj//fCZPnswBBxzAjTfe2LC9Xr16Naw/efJkzjzzTEaNGsWMGTPwqAfZhQsXMmrUKCZMmMAll1zSsN1kNTU1HH300YwfP57x48fzzDPPNCz7wQ9+wOjRoxkzZgxXXnklACtWrOD4449nzJgxjB8/njfe2JPnlYvkT76qX/b0iL2l5funPs2apvPnzoXy8qbLysvD/JzJlCGKddjTM4JcZddMEmcE5557rk+ZMsV37tzp7u4bNmxoODP4y1/+4meccYa7uz/xxBM+ZcqUhvdOmjTJt27d6rW1td6/f3/fvn27u7v37NmzYf0+ffr46tWrfdeuXf7xj3/cn376ad+yZYtXVFT4ypUr3d192rRpDdtNtmnTJt+yZYu7uy9fvtwT+3PhwoU+adIk37Rpk7u7r1+/3t3dJ06c6L///e/d3X3Lli0Ny9tCZwSyJ9p6RO++Z0fle3rE3tLylmJv6btnC50RNGqX+rbI1KlTKSsrA2DDhg1MnTqVj370o1x22WUsWbIk7XumTJlCt27dGDhwIHvvvTfvvvvubutMnDiRiooKOnXqxNixY6mpqeG1117jgAMOaLhOf/r06Wm3v2PHDr70pS8xevRopk6dytKlSwF49NFHOe+88yiPDj369+9PXV0db7/9NqeffjoQbgorTz00EcmRfDao7slR+Z4esbe0fMYMmDcPhg0Ds/A6b16YnzBjBtTUQH19eE1elguxSwQt/ai51LNnz4bxb33rWxx33HEsXryYBx98MOM19d26dWsYLysrY+fOnW1aJ5Prr7+effbZh5dffpnq6uoWG7NFcilTYV/Igh6aL6z3tCAvhoK+JbFLBO1S35bGhg0bGDJkCAC33XZbzrd/0EEHsXLlSmpqagC45557MsYxePBgOnXqxB133MGuXbsAOOGEE7j11lvZHP23/etf/6J3795UVFSwYMECALZt29awXCSdth7VF7Kgh+YL61wU5IUu6FsSu0SQzY+aD1dccQXf+MY3GDduXKuO4LPVo0cPfvrTn3LiiScyYcIEevfuzV577bXbehdddBG33347Y8aM4bXXXms4aznxxBM59dRTqaqqYuzYsVx77bUA3HHHHdx444187GMf44gjjuCdd97JeezSceSr+qaQBX1Cc4V1sRfkeyxT40GxDrm4fLRU1dXVubt7fX29z54926+77roCR9SUfqfiV6gG2WJpUC1lNNNYXPCCvbWDEkFm1113nY8ZM8YPPvhgP/vss/foCp980O9UeIUq6Ft6vwr6/FMikKKg36mwClnQZ/P5Kujzq7lEELs2ApFSl6kev5gbZBPLS7oevogpEYh0MG1tsC10QZ9YR4V9Ecp0qlCsg6qGOi79TtnJVz2+GmTjDbURSDHQ79SyfNbjq6CPt+YSgaqGcuC4447j4YcfbjLvhhtuYPbs2RnfM3nyZKqrqwE4+eST+eCDD3ZbZ86cOQ3X82eyYMGChm4iAL797W/z6KOPtiJ6aW/NVe3ksx5fVTeSiRJBDkyfPp277767yby77747Y38/qRYuXEjfvn3b9NmpieCaa67h+OOPb9O2JP9auumqPerxVdBLKiWCHDjzzDP505/+1NBvT01NDf/85z85+uijmT17NlVVVRx66KFcffXVad9fWVnJunXrAJg7dy4jR47kqKOOauiqGuCWW27hsMMOY8yYMXz2s59l8+bNPPPMMzzwwANcfvnljB07ljfeeIOZM2dy//33A/DYY48xbtw4Ro8ezfnnn8+2bdsaPu/qq69m/PjxjB49mtdee223mNRdddvtyRF/ezTYiuwmU51RsQ4ttRFceqn7scfmdrj00pbr36ZMmeILFixwd/f/+q//8q997Wvu3tid886dO/3YY4/1l19+2d3djz32WF+0aJG7uw8bNsxra2u9urraP/rRj/qmTZt8w4YNfuCBBzY85GbdunUNn3XVVVf5jTfe6O7u5557rt93330NyxLTiW6ply1b5u7u55xzjl9//fUNn5d4/8033+wXXHDBbt8nH91Vx6GNoKV6+JauxVc9vuQLaiPIv+TqoeRqoXvvvZfx48czbtw4lixZ0qQaJ9XTTz/N6aefTnl5OX369OHUU09tWLZ48WKOPvpoRo8ezfz58zN2Y52wbNkyhg8fzsiRIwE499xzeeqppxqWn3HGGQBMmDChoaO6ZOquunltvVa/pSN+1eNLIXQudAC5dsMNhfnc0047jcsuu4wXXniBzZs3M2HCBN58802uvfZaFi1aRL9+/Zg5c2bG7qdbMnPmTBYsWMCYMWO47bbbePLJJ/co3kRX1pm6sU7urrq+vp7u3bvv0ed1NIkeMd96KxTSc+c2FriJev5EgZ+o54eW6/jnzm36Xti999tEj5ci7UVnBDnSq1cvjjvuOM4///yGs4GNGzfSs2dP9tprL959910eeuihZrdxzDHHsGDBArZs2UJdXR0PPvhgw7K6ujoGDx7Mjh07mJ9U6dy7d2/q6up229ZBBx1ETU0NK1asAEIvoscee2zW3yfO3VXvSS+auTjiF2lvSgQ5NH36dF5++eWGRDBmzBjGjRvHqFGjOPvssznyyCObff/48eM566yzGDNmDCeddBKHHXZYw7Lvfve7HH744Rx55JGMGjWqYf60adP40Y9+xLhx45o00Hbv3p1bb72VqVOnMnr0aDp16sSFF16Y9Xcp9e6q83UJZzbPu1DVjhSdTI0HxTrohrKOqz1/pz25OzcXnaupMVeKDWosljjZ08ce6lp9iRslAumQ8nl3rq7Vl7gpmauG3B0zK3QYkkE4M82N5q7amTEju7tzV63afXlygy5kvmoosY4KfikVJXFG0L17d9avX5/TwkZyx91Zv359zi5BzXfVDqh6R+KlJM4IKioqWLNmDbW1tYUORTLo3r07FRUVrXpPpmv59/Ra/WyO+EXipCQSQZcuXRg+fHihw5Acaq76R1U7IrlVElVD0jG1tcFXVTsiuZXXRGBmJ5rZMjNbYWZXplk+zMweM7NXzOxJM2td3YF0WHvSHbOu2hHJLctXA6uZlQHLgROANcAiYLq7L01a5z7gj+5+u5l9AjjP3c9pbrtVVVWeeKCLdFyVlemrd4YNC0fwLS0XkdYxs+fdvSrdsnyeEUwEVrj7SnffDtwNnJayziHA49H4E2mWSwfWXNXPnl7LLyK5k89EMARYnTS9JpqX7GXgjGj8dKC3mQ1I3ZCZzTKzajOr1pVBHUNLVT/qnE2keBS6sfjrwLFm9iJwLPA2sCt1JXef5+5V7l41aNCg9o5R2qCla/3V4CtSPPKZCN4GhiZNV0TzGrj7P939DHcfB1wVzfsgjzFJDu1J1Y+O+EWKRz7vI1gEjDCz4YQEMA04O3kFMxsI/Mvd64FvAL/OYzySQy1189DStf6J9VTwixRe3s4I3H0n8FXgYeBV4F53X2Jm15hZ4hmMk4FlZrYc2AdQU2AHkYuqHxEpDnltI3D3he4+0t0PdPe50bxvu/sD0fj97j4iWueL7r4tn/FI66jqRyQeSqKLCck9Vf3k3q5d8P77sH59GLZsge7doUePxiF5ulMn2LkTduwIr6nj7mEdszAkxjt1Cg3s774La9bA22+H1+Tx9euhXz8YOBAGDQqvyeN9+oR46+vDa+qwfXv429i8GTZtahxPDNu3p39fYptdu0K3bmHo3r1xvFs36NIFtm0L+yd12Lo1fPfycujZM7wmhsR0YhudO6d/7dEDevUK6/fq1XS8Z8+wD+vrw/5NfYWmsZeVFfZvKlfydkNZvuiGsvbR0g1dqYkCwj9hKRz1u4dC9NVXYcOGUPhs2xaG5PFt20KBl2nYurWx0F+/Hj74oLEwaW+dO8N++0FFBQwZAgMGhHjWrYPa2sbX7dtbv+3UwrhHj1BYlpWlHzp1Cgkt037dsSMkh+SkmDxeVrZ74kkeEsli127XH+Ze586NiSzxmi7mxHhz+6WsrHE7mQ4ORo2CwYPbFmtzN5TpjCDm2trDZyn04OkOa9fC0qVhWLKk8fX991t+v1n4x+3aNQxdujSOd+0a/oH794fhw0PBmzr06NH0yHfr1qZHv+6hoEk+ok2Ml5WFz08+Wk09ct1771DwV1SE8U4tVAS7w4cfhoTw4YdNC+7UAqtLl8ZCv1gfA5I4m0mcRe3YEYYtW8JZzIcfhiF1HHY/w0q8uodkmS6Bbd3aOCR+w7o6eO+9xnnNnSklhub87GfQikePZ02JIMb2pIdPKK6qn/r68E9cVwcbN4bXurpQoL/7LrzzTnhNHd+ypXEb/fvDoYfC5z4XXg8+OFSTZKrC6Ny5eAvBtjCD3r3DUAo6dQpDly6FjiR7u3alPyhITI8YkZ/PVSKIsZZ6+GyuT//2sG0brFgRjtozFea1taHg37Sp+WoXs1D/vc8+YRgxIrwOGxYK/UMPDUfNpVSwS8dTVtbYbtGelAhirKUePqF9qn62boVly3avnlmxIhzpJ+vWrbEw339/mDAhNGz26dN4NJsY+vSBvn3DugMHhiN4Edmd/jViLJsHvOS64N+0CV56CRYtgurqMLz+emOBX1YGH/lIYxXNqFGhjnvffUOBvtdeOmoXyTUlghjLd/WPOyxeDH/9a2PBv2RJY6E/ZEg4ok/UyR9yCIwcGY76RaT9KBGUuExXBUF+qn927oSnn4b//m944AF4880wf8AAOOww+MxnoKoqDPvtt0dfTURyRPcRlLD2uta/rg4efjgU/n/6U7hSp1s3OP54OPVUOOGEcF+CqnRECqe5+wiUCEpYPp7ytWNHuNHqhRfC8OKL8Nxz4fro/v3hlFPgtNPgU59q/ysfRCQz3VAWUy3dFJaNNWvgj39sLPT/8Y9wWSeEG4rGjoWvfjUc+R95pK7MEemI9G9bwrK5KSydTZvgD3+A22+Hxx4Ljb79+sH48XDxxeF13LhwLX6p9LUiEmdKBCWsNVcF1deHRt7bb4f77gu321dWwre+BWefHa7mUR2/SGkq9KMqZQ8111V0Nl1Br1sHc+bAgQfC5MkhCUydCk8+CW+8Ad/5Dhx0kJKASClTY3EHtidXBdXVwXXXwY9/HI7+P/lJOPdcOP30UPcvIqWlucZinRF0YC09JSydrVtDAjjggHAmcMIJ4aavv/wFPv95JQGROFIi6MBac1XQjh1wyy2hgfdrXwuNvc89B7/7XbijV0TiS4mgA8t09U/y/B074K67QhcOs2aFfnsefxweeSTc6SsiokTQgTX3gPjVq8MVP/vvH9oLuncPXT488wwcd1xh4hWR4qTLRzuw1L6Chg6Fs86Ce++FL3whXP9/8skwezacdFLLT6gSkXjSVUMlYP16+PWv4Re/CJd8DhoEX/xiqAqqrCx0dCJSDNTFRAn729/gjDPCc1GPPhq++90wra6cRSRbqiwocs3dMHbbbaG+f6+9Ql9ATz0F06crCYhI6+iMoIhlerh8fT28/HK4Gez440ObQL9+hY1VRDouJYIilumGsVmzwo1hF18cbg5Tj58isidUhBSxTDeMbd0KP/85fPnL7RuPiJQmtREUsUw3jO2zj5KAiOSOEkERS3fDWPfuoW1ARCRXlAiK2IwZcMEFjdNDh8Ivf5nb5w2LiKiNoIg98khoCzjqqPBw+NSzAxGRXNAZQZF69tnwbIBDDoEHH1QSEJH8USIosHQ3jC1eDFOmwH77hTOBvn0LHKSIlDRVDRVQuhvGvvjF0CBcXh4eFrPPPoWNUURKnxJBAaW7YWzrVti+Hf76V3UYJyLtQ1VDBZTphrH6+vAgGRGR9pDXRGBmJ5rZMjNbYWZXplm+v5k9YWYvmtkrZnZyPuMpNpluGBs2rH3jEJF4y1siMLMy4GbgJOAQYLqZpT4d9/8C97r7OGAa8NN8xVOM5s6FHj2azks8YUxEpL3k84xgIrDC3Ve6+3bgbuC0lHUc6BON7wX8M4/xFJ2pU2HUqMbpYcNg3jzdMCYi7avFRGBm/2ZmbUkYQ4DVSdNronnJ5gCfN7M1wELg4gwxzDKzajOrrq2tbUMoxWfnzlDgv/gi/Oxn4bGSNTVKAiLS/rIp4M8CXjezH5rZqBbXbp3pwG3uXgGcDNyRLum4+zx3r3L3qkGDBuU4hPZXXw/nnQf33x+6kb7wwkJHJCJx1mIicPfPA+OAN4DbzOzZ6Ai9dwtvfRsYmjRdEc1LdgFwb/Q5zwLdgYFZxt4huYeC/847Q1vAZZcVOiIRibusqnzcfSNwP6GefzBwOvCCmaWtyoksAkaY2XAz60poDH4gZZ23gE8CmNnBhERQGnU/SRJ3D5uFx0recku4h+Cb3yx0ZCIiWdxQZmanAucBHwF+A0x09/fMrBxYCtyU7n3uvtPMvgo8DJQBv3b3JWZ2DVDt7g8AXwNuMbPLCA3HM93dc/HFikXq3cN1deGJYqNyXckmItJG1lK5a2a3A79y96fSLPukuz+Wr+DSqaqq8urq6vb8yD1SWRm6jkg1bFhoHBYRaQ9m9ry7V6Vblk0XE3OAtUkb6wHs4+417Z0EOqJMdw9nmi8i0t6yaSO4D6hPmt4VzZMsZLp7ONN8EZH2lk0i6BzdEAZANN41fyGVlovTNKfr7mERKSbZJILaqMEYADM7DViXv5BKy6pVUFYGFRXhqiHdPSwixSabNoILgflm9hPACHcLfyGvUZWIjRvh1lth+nS4445CRyMikl6LicDd3wA+bma9oukP8x5Vibj1VvjwQ7jkkkJHIiKSWVYPpjGzKcChQHczA8Ddr8ljXB1efT3cdBNMmgSHHVboaEREMsum07mfE/obuphQNTQVUI/5LVi4EN54Ay69tNCRiIg0L5vG4iPc/QvA++7+HWASMDK/YXV8N94IQ4bAGWcUOhIRkeZlkwi2Rq+bzWw/YAehvyHJYOnS8OD5iy6CLl0KHY2ISPOySQQPmllf4EfAC0ANcFceY+pwEp3KdeoUXi+5BLp1gy99qdCRiYi0rNnG4ujZAI+5+wfA78zsj0B3d9/QHsF1BKmdyq1aFYZjj4USeHSCiMRAs2cE7l5PeO5wYnqbkkBTV13VmASSLV/e/rGIiLRFNlVDj5nZZy1x3ag0kanzuHfead84RETaKptE8GVCJ3PbzGyjmdWZ2cY8x9VhqFM5EenosnlUZW937+TuXd29TzTdpz2C6wjmzg2dyCXr0UOdyolIx5HNE8qOSTc/3YNq4ijRedzll8PatdC3L/zkJ+pUTkQ6jmy6mLg8abw7MBF4HvhEXiLqgGbMgCeegLvuCncT9+9f6IhERLKXTadz/5Y8bWZDgRvyFVBH849/wPXXh95FL7hASUBEOp6sOp1LsQY4ONeBdCT19fDww3DddfDoo6FNYNYs+N73Ch2ZiEjrZdNGcBOQeMJ9J2As4Q7j2NmyBe68M5wBvPoqDB4M//mf8OUv60xARDqubM4IqpPGdwK/dfe/5SmeonXTTfDd70JtLYwdC7/5DZx1FnTVQztFpIPLJhHcD2x1910AZlZmZuXunuZ+2tL085+H/oOOPx6++U2YPDk8dlJEpBRkdWcx0CNpugfwaH7CKT4LF8JXvgInnwwPPQTHHackICKlJZtE0D358ZTReHkz65eMF1+Ez30Ohg4NVwd17Rp6F50/v9CRiYjkTjaJYJOZjU9MmNkEYEv+QioOq1fDKaeE7qTffTdMu4eeRWfNUjIQkdKRTSL4d+A+M3vazP4K3AN8Na9RFdjGjTBlCtTVhUSwdWvT5Zs3h15HRURKQTY3lC0ys1HAQdGsZe6+I79hFc6OHTB1arg8dOFC+PSn06+XqddREZGOJpuH138F6Onui919MdDLzC7Kf2jtzz08XvKRR8KVQiecoN5FRaT0ZVM19KXoCWUAuPv7QEk+hPH734df/jJU+1xwQZiXrnfR8nL1LioipSObRFCW/FAaMysDSu42qt/9LtwjcPbZ4caxhBkzYN48GDYsXDY6bFiYVu+iIlIqzN2bX8HsR8Aw4BfRrC8Db7n71/McW1pVVVVeXV3d8oqtdNJJsGIFLF4cGohFREqJmT3v7lXplmVzZ/F/ALOAC6PpV4B9cxRb0Vi+HCZOVBIQkfjJ5gll9cDfgRrCswg+Abya37Da17ZtUFMDI0YUOhIRkfaX8YzAzEYC06NhHeH+Adz9uPYJrf2sXBm6lh45stCRiIi0v+bOCF4jHP2f4u5HuftNwK7WbNzMTjSzZWa2wsyuTLP8ejN7KRqWm9kHrYo+R5YvD69KBCISR821EZwBTAOeMLM/A3cDWXe3Fl1ddDNwAuFhNovM7AF3X5pYx90vS1r/YmBc68LPjUQiUNWQiMRRxjMCd1/g7tOAUcAThK4m9jazn5nZp7LY9kRghbuvdPfthERyWjPrTwd+m3XkObR8OQwaBP36FeLTRUQKK5vG4k3uflf07OIK4EXClUQtGQKsTppeE83bjZkNA4YDj2ex3ZxbvlzVQiISX9ncUNbA3d9393nu/skcxzENuD/x8JtUZjbLzKrNrLq2tjbHH61EICLx1qpE0EpvA0OTpiuieelMo5lqoSj5VLl71aBBg3IYYuhp9J13lAhEJL7ymQgWASPMbLiZdSUU9g+krhT1bNoPeDaPsWS0YkV4VSIQkbjKWyJw952E5xY8TLgB7V53X2Jm15jZqUmrTgPu9pb6usgTXToqInGXTRcTbebuC4GFKfO+nTI9J58xtGT58tCZ3IEHFjIKEZHCyWfVUIewfHl4tkCPHoWORESkMJQIlutGMhGJt1gnAnddOioiEutEUFsLGzYoEYhIvMU6EeiKIRERJQJAiUBE4i32iaBLl/AcYhGRuIp9IjjwQOic17spRESKW6wTweuvq1pIRCS2iaC+XolARARinAhWrw4PrVciEJG4i20i0BVDIiJB7BOBupcQkbiLdSLo2RMGDy50JCIihRXrRDByZOiCWkQkzmKfCERE4i6WiWDbNqipUSIQEYGYJoKVK8N9BEoEIiIxTQS6dFREpFEsE8Hrr4dXXToqIhLTRLB8OQwaBP36FToSEZHCi20iSK4Wmj8fKiuhU6fwOn9+oSITEWl/sU8E8+fDrFmwalV4hvGqVWFayUBE4iJ2iaCuDtaubUwEV10Fmzc3XWfz5jBfRCQOYpcIUhuK33or/XqZ5ouIlJrYJYLUS0f33z/9epnmi4iUmtgmgo98JLzOnQvl5U3XKS8P80VE4iCWiWD//aFHjzA9YwbMmxceYG8WXufNC/NFROIgdo9tT9fZ3IwZKvhFJL5idUbgrl5HRURSxSoRrFsHGzYoEYiIJItVIlBncyIiu1MiEBGJudglgi5dwpVBIiISxC4RHHggdI7dtVIiIpnFLhHoGQQiIk3lNRGY2YlmtszMVpjZlRnW+ZyZLTWzJWZ2V75iqa8P/QypfUBEpKm8VZKYWRlwM3ACsAZYZGYPuPvSpHVGAN8AjnT3981s73zFs3p1eGi9EoGISFP5PCOYCKxw95Xuvh24GzgtZZ0vATe7+/sA7v5evoLRFUMiIunlMxEMAVYnTa+J5iUbCYw0s7+Z2f+a2YnpNmRms8ys2syqa2tr2xSMEoGISHqFbizuDIwAJgPTgVvMrG/qSu4+z92r3L1q0KBBbfqgESPg/PNh8OA9iFZEpATl80LKt4GhSdMV0bxka4C/u/sO4E0zW05IDItyHcynPhUGERFpKp9nBIuAEWY23My6AtOAB1LWWUA4G8DMBhKqilbmMSYREUmRt0Tg7juBrwIPA68C97r7EjO7xsxOjVZ7GFhvZkuBJ4DL3X19vmISEZHdmbsXOoZWqaqq8urq6kKHISLSoZjZ8+5elW5ZoRuLRUSkwJQIRERiTolARCTmlAhERGJOiUBEJOaUCEREYk6JQEQk5pQIRERiTolARCTmlAhERGJOiUBEJOaUCEREYk6JQEQk5pQIRERiTolARCTmlAhERGJOiUBEJOaUCEREYk6JQEQk5pQIRERiTolARCTmYpEI5s+Hykro1Cm8zp9f6IhERIpH50IHkG/z58OsWbB5c5hetSpMA8yYUbi4RESKRcmfEVx1VWMSSNi8OcwXEZEYJIK33mrdfBGRuCn5RLD//q2bLyISNyWfCObOhfLypvPKy8N8ERGJQSKYMQPmzYNhw8AsvM6bp4ZiEZGEkr9qCEKhr4JfRCS9kj8jEBGR5ikRiIjEnBKBiEjMKRGIiMScEoGISMyZuxc6hlYxs1pgVYbFA4F17RhOaxVzfIqtbRRb2yi2ttmT2Ia5+6B0CzpcImiOmVW7e1Wh48ikmONTbG2j2NpGsbVNvmJT1ZCISMwpEYiIxFypJYJ5hQ6gBcUcn2JrG8XWNoqtbfISW0m1EYiISOuV2hmBiIi0khKBiEjMlUwiMLMTzWyZma0wsysLHU8yM6sxs3+Y2UtmVl3gWH5tZu+Z2eKkef3N7C9m9nr02q+IYptjZm9H++4lMzu5QLENNbMnzGypmS0xs0uj+QXfd83EVvB9Z2bdzew5M3s5iu070fzhZvb36P/1HjPrWkSx3WZmbybtt7HtHVtSjGVm9qKZ/TGazs9+c/cOPwBlwBvAAUBX4GXgkELHlRRfDTCw0HFEsRwDjAcWJ837IXBlNH4l8IMiim0O8PUi2G+DgfHReG9gOXBIMey7ZmIr+L4DDOgVjXcB/g58HLgXmBbN/zkwu4hiuw04s9B/c1Fc/we4C/hjNJ2X/VYqZwQTgRXuvtLdtwN3A6cVOKai5O5PAf9KmX0acHs0fjvwmfaMKSFDbEXB3de6+wvReB3wKjCEIth3zcRWcB58GE12iQYHPgHcH80v1H7LFFtRMLMKYArwy2jayNN+K5VEMARYnTS9hiL5R4g48IiZPW9mswodTBr7uPvaaPwdYJ9CBpPGV83slajqqCDVVsnMrBIYRziCLKp9lxIbFMG+i6o3XgLeA/5COHv/wN13RqsU7P81NTZ3T+y3udF+u97MuhUiNuAG4AqgPpoeQJ72W6kkgmJ3lLuPB04CvmJmxxQ6oEw8nHMWzVER8DPgQGAssBb4cSGDMbNewO+Af3f3jcnLCr3v0sRWFPvO3Xe5+1iggnD2PqoQcaSTGpuZfRT4BiHGw4D+wH+0d1xmdgrwnrs/3x6fVyqJ4G1gaNJ0RTSvKLj729Hre8AfCP8MxeRdMxsMEL2+V+B4Grj7u9E/az1wCwXcd2bWhVDQznf330ezi2LfpYutmPZdFM8HwBPAJKCvmSUelVvw/9ek2E6Mqtrc3bcBt1KY/XYkcKqZ1RCquj8B/D/ytN9KJREsAkZELepdgWnAAwWOCQAz62lmvRPjwKeAxc2/q909AJwbjZ8L/HcBY2kiUchGTqdA+y6qn/0V8Kq7X5e0qOD7LlNsxbDvzGyQmfWNxnsAJxDaMJ4AzoxWK9R+Sxfba0mJ3Qh18O2+39z9G+5e4e6VhPLscXefQb72W6FbxXM1ACcTrpZ4A7iq0PEkxXUA4Sqml4ElhY4N+C2hmmAHoY7xAkLd42PA68CjQP8iiu0O4B/AK4RCd3CBYjuKUO3zCvBSNJxcDPuumdgKvu+AjwEvRjEsBr4dzT8AeA5YAdwHdCui2B6P9tti4E6iK4sKNQCTabxqKC/7TV1MiIjEXKlUDYmISBspEYiIxJwSgYhIzCkRiIjEnBKBiEjMKRGIRMxsV1KPky9ZDnuxNbPK5F5VRYpJ55ZXEYmNLR66GxCJFZ0RiLTAwvMkfmjhmRLPmdlHovmVZvZ41DnZY2a2fzR/HzP7Q9TP/ctmdkS0qTIzuyXq+/6R6G5WzOyS6FkCr5jZ3QX6mhJjSgQijXqkVA2dlbRsg7uPBn5C6BUS4Cbgdnf/GDAfuDGafyPwP+4+hvB8hSXR/BHAze5+KPAB8Nlo/pXAuGg7F+bnq4lkpjuLRSJm9qG790ozvwb4hLuvjDp3e8fdB5jZOkK3DTui+WvdfaCZ1QIVHjotS2yjktDN8Yho+j+ALu7+PTP7M/AhsABY4I195Iu0C50RiGTHM4y3xrak8V00ttFNAW4mnD0sSupdUqRdKBGIZOespNdno/FnCD1DAswAno7GHwNmQ8ODT/bKtFEz6wQMdfcnCP3e7wXsdlYikk868hBp1CN6WlXCn909cQlpPzN7hXBUPz2adzFwq5ldDtQC50XzLwXmmdkFhCP/2YReVdMpA+6MkoUBN3roG1+k3aiNQKQFURtBlbuvK3QsIvmgqiERkZjTGYGISMzpjEBEJOaUCEREYk6JQEQk5pQIRERiTolARCTm/j9QLBlUkqAqMQAAAABJRU5ErkJggg==\n" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "source": [ + "# 绘制loss的曲线\n", + "plt.clf() # 清除数字\n", + "\n", + "plt.plot(epochs, acc, 'bo', label='Training acc')\n", + "plt.plot(epochs, val_acc, 'b', label='Validation acc')\n", + "plt.title('Training and validation accuracy')\n", + "plt.xlabel('Epochs')\n", + "plt.ylabel('Accuracy')\n", + "plt.legend()\n", + "\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ] +} \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/5 加载numpy&pandas数据.ipynb b/Tensorflow/TensorFlow2.0/5 加载numpy&pandas数据.ipynb new file mode 100644 index 00000000..94437799 --- /dev/null +++ b/Tensorflow/TensorFlow2.0/5 加载numpy&pandas数据.ipynb @@ -0,0 +1,557 @@ +{ + "metadata": { + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.0" + }, + "orig_nbformat": 2, + "kernelspec": { + "name": "python380jvsc74a57bd038740d3277777e2cd7c6c2cc9d8addf5118fdf3f82b1b39231fd12aeac8aee8b", + "display_name": "Python 3.8.0 64-bit" + } + }, + "nbformat": 4, + "nbformat_minor": 2, + "cells": [ + { + "source": [ + "# Numpy数据加载" + ], + "cell_type": "markdown", + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "import tensorflow as tf\n", + "import tensorflow_datasets as tfds" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# 使用numpy load方法加载数据到内存中\n", + "DATA_URL = 'https://storage.googleapis.com/tensorflow/tf-keras-datasets/mnist.npz'\n", + "\n", + "path = tf.keras.utils.get_file('mnist.npz', DATA_URL)\n", + "with np.load(path) as data:\n", + " train_examples = data['x_train']\n", + " train_labels = data['y_train']\n", + " test_examples = data['x_test']\n", + " test_labels = data['y_test']" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "# 1 使用特征和标签构建数据集。返回一个包含特征和标签的二元组。\n", + "train_dataset = tf.data.Dataset.from_tensor_slices((train_examples, train_labels))\n", + "test_dataset = tf.data.Dataset.from_tensor_slices((test_examples, test_labels))" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "# 2 对数据进行处理,转换为TensorFlow tensor格式,打乱数据。\n", + "BATCH_SIZE = 64\n", + "SHUFFLE_BUFFER_SIZE = 100\n", + "\n", + "train_dataset = train_dataset.shuffle(SHUFFLE_BUFFER_SIZE).batch(BATCH_SIZE)\n", + "test_dataset = test_dataset.batch(BATCH_SIZE)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "# 3 建立、训练模型\n", + "model = tf.keras.Sequential([\n", + " tf.keras.layers.Flatten(input_shape=(28, 28)),\n", + " tf.keras.layers.Dense(128, activation='relu'),\n", + " tf.keras.layers.Dense(10, activation='softmax')\n", + "])\n", + "\n", + "model.compile(optimizer=tf.keras.optimizers.RMSprop(),\n", + " loss=tf.keras.losses.SparseCategoricalCrossentropy(),\n", + " metrics=[tf.keras.metrics.SparseCategoricalAccuracy()])" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Epoch 1/10\n", + "938/938 [==============================] - 2s 1ms/step - loss: 7.9543 - sparse_categorical_accuracy: 0.8307\n", + "Epoch 2/10\n", + "938/938 [==============================] - 1s 1ms/step - loss: 0.5852 - sparse_categorical_accuracy: 0.9190\n", + "Epoch 3/10\n", + "938/938 [==============================] - 1s 1ms/step - loss: 0.4207 - sparse_categorical_accuracy: 0.9422\n", + "Epoch 4/10\n", + "938/938 [==============================] - 1s 2ms/step - loss: 0.3270 - sparse_categorical_accuracy: 0.9520\n", + "Epoch 5/10\n", + "938/938 [==============================] - 1s 1ms/step - loss: 0.3077 - sparse_categorical_accuracy: 0.9579\n", + "Epoch 6/10\n", + "938/938 [==============================] - 1s 1ms/step - loss: 0.2742 - sparse_categorical_accuracy: 0.9629\n", + "Epoch 7/10\n", + "938/938 [==============================] - 1s 1ms/step - loss: 0.2429 - sparse_categorical_accuracy: 0.9662\n", + "Epoch 8/10\n", + "938/938 [==============================] - 1s 1ms/step - loss: 0.2418 - sparse_categorical_accuracy: 0.9692\n", + "Epoch 9/10\n", + "938/938 [==============================] - 1s 1ms/step - loss: 0.2125 - sparse_categorical_accuracy: 0.9714\n", + "Epoch 10/10\n", + "938/938 [==============================] - 1s 1ms/step - loss: 0.2029 - sparse_categorical_accuracy: 0.9731\n" + ] + }, + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "" + ] + }, + "metadata": {}, + "execution_count": 8 + } + ], + "source": [ + "model.fit(train_dataset, epochs=10)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "157/157 [==============================] - 0s 806us/step - loss: 0.6439 - sparse_categorical_accuracy: 0.9527\n" + ] + }, + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "[0.64388507604599, 0.9527000188827515]" + ] + }, + "metadata": {}, + "execution_count": 9 + } + ], + "source": [ + "# 4 评估模型\n", + "model.evaluate(test_dataset)" + ] + }, + { + "source": [ + "# Pandas数据加载" + ], + "cell_type": "markdown", + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import tensorflow as tf" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " ACCESS_PERSONAL_INFO___ ALTER_PHONE_STATE___ ANTI_DEBUG_____ \\\n", + "0 1 0 0 \n", + "1 3 0 0 \n", + "2 2 0 0 \n", + "3 1 0 0 \n", + "4 3 0 0 \n", + "\n", + " CREATE_FOLDER_____ CREATE_PROCESS`_____ CREATE_THREAD_____ \\\n", + "0 3 0 14 \n", + "1 6 0 42 \n", + "2 4 0 23 \n", + "3 4 0 27 \n", + "4 11 0 18 \n", + "\n", + " DEVICE_ACCESS_____ EXECUTE_____ FS_ACCESS____ FS_ACCESS()____ ... \\\n", + "0 2 0 3 0 ... \n", + "1 91 0 32 0 ... \n", + "2 3 0 17 2 ... \n", + "3 9 0 36 0 ... \n", + "4 3 0 16 0 ... \n", + "\n", + " utimes vfork vibrate vibratePattern wait4 watchRotation \\\n", + "0 0 0 0 0 0 0 \n", + "1 0 0 0 0 0 0 \n", + "2 0 0 0 0 0 0 \n", + "3 0 0 0 0 0 0 \n", + "4 0 0 0 0 0 0 \n", + "\n", + " windowGainedFocus write writev Class \n", + "0 0 37 10 1 \n", + "1 2 2838 46 1 \n", + "2 1 111 20 1 \n", + "3 7 987 197 1 \n", + "4 1 98 25 1 \n", + "\n", + "[5 rows x 471 columns]" + ], + "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
ACCESS_PERSONAL_INFO___ALTER_PHONE_STATE___ANTI_DEBUG_____CREATE_FOLDER_____CREATE_PROCESS`_____CREATE_THREAD_____DEVICE_ACCESS_____EXECUTE_____FS_ACCESS____FS_ACCESS()____...utimesvforkvibratevibratePatternwait4watchRotationwindowGainedFocuswritewritevClass
010030142030...000000037101
13006042910320...00000022838461
2200402330172...0000001111201
3100402790360...00000079871971
43001101830160...000000198251
\n

5 rows × 471 columns

\n
" + }, + "metadata": {}, + "execution_count": 37 + } + ], + "source": [ + "# 使用pandas将数据加载到内存中\n", + "df = pd.read_csv(\"simple.csv\")\n", + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "ACCESS_PERSONAL_INFO___ int64\nALTER_PHONE_STATE___ int64\nANTI_DEBUG_____ int64\nCREATE_FOLDER_____ int64\nCREATE_PROCESS`_____ int64\n ... \nwatchRotation int64\nwindowGainedFocus int64\nwrite int64\nwritev int64\nClass int64\nLength: 471, dtype: object\n" + ] + } + ], + "source": [ + "# 使用pandas对数据进行预处理\n", + "print(df.dtypes)\n", + "# 一下pd的方法能够将字符串分类转换为离散值。\n", + "# df['thal'] = pd.Categorical(df['thal'])\n", + "# df['thal'] = df.thal.cat.codes\n", + "\n", + "# 分离target\n", + "target = df.pop('Class')" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "2 3904\n", + "3 2546\n", + "1 2100\n", + "4 1795\n", + "0 1253\n", + "Name: Class, dtype: int64" + ] + }, + "metadata": {}, + "execution_count": 39 + } + ], + "source": [ + "target = target -1\n", + "pd.value_counts(target)" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": {}, + "outputs": [], + "source": [ + "# 2 对数据进行预处理,转换为tensor格式,并将数据打乱\n", + "dataset = tf.data.Dataset.from_tensor_slices((df.values, target.values))\n", + "train_dataset = dataset.shuffle(len(df)).batch(30)" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [], + "source": [ + "def get_compiled_model():\n", + " model = tf.keras.Sequential([\n", + " tf.keras.layers.Dense(30, activation='relu'),\n", + " tf.keras.layers.Dense(30, activation='relu'),\n", + " tf.keras.layers.Dense(5, activation='softmax')\n", + " ])\n", + "\n", + " model.compile(optimizer='adam',\n", + " loss='sparse_categorical_crossentropy',\n", + " metrics=['accuracy'])\n", + " return model" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Epoch 1/60\n", + "387/387 [==============================] - 1s 2ms/step - loss: 187.0325 - accuracy: 0.3329\n", + "Epoch 2/60\n", + "387/387 [==============================] - 0s 1ms/step - loss: 28.8425 - accuracy: 0.5551\n", + "Epoch 3/60\n", + "387/387 [==============================] - 0s 974us/step - loss: 21.2315 - accuracy: 0.6412\n", + "Epoch 4/60\n", + "387/387 [==============================] - 0s 894us/step - loss: 18.4994 - accuracy: 0.6447\n", + "Epoch 5/60\n", + "387/387 [==============================] - 0s 917us/step - loss: 15.1458 - accuracy: 0.6580\n", + "Epoch 6/60\n", + "387/387 [==============================] - 0s 827us/step - loss: 9.8803 - accuracy: 0.6890\n", + "Epoch 7/60\n", + "387/387 [==============================] - 0s 811us/step - loss: 11.3836 - accuracy: 0.6972\n", + "Epoch 8/60\n", + "387/387 [==============================] - 0s 752us/step - loss: 7.3741 - accuracy: 0.6984\n", + "Epoch 9/60\n", + "387/387 [==============================] - 0s 783us/step - loss: 5.9109 - accuracy: 0.7098\n", + "Epoch 10/60\n", + "387/387 [==============================] - 0s 902us/step - loss: 5.5425 - accuracy: 0.7350\n", + "Epoch 11/60\n", + "387/387 [==============================] - 0s 816us/step - loss: 3.7033 - accuracy: 0.7375\n", + "Epoch 12/60\n", + "387/387 [==============================] - 1s 1ms/step - loss: 3.2237 - accuracy: 0.7527\n", + "Epoch 13/60\n", + "387/387 [==============================] - 0s 871us/step - loss: 2.8960 - accuracy: 0.7543\n", + "Epoch 14/60\n", + "387/387 [==============================] - 0s 809us/step - loss: 2.9966 - accuracy: 0.7617\n", + "Epoch 15/60\n", + "387/387 [==============================] - 0s 744us/step - loss: 3.4964 - accuracy: 0.7693\n", + "Epoch 16/60\n", + "387/387 [==============================] - 0s 840us/step - loss: 2.4358 - accuracy: 0.7596\n", + "Epoch 17/60\n", + "387/387 [==============================] - 0s 917us/step - loss: 2.3104 - accuracy: 0.7258\n", + "Epoch 18/60\n", + "387/387 [==============================] - 0s 912us/step - loss: 2.0518 - accuracy: 0.7173\n", + "Epoch 19/60\n", + "387/387 [==============================] - 0s 1ms/step - loss: 1.1754 - accuracy: 0.7421\n", + "Epoch 20/60\n", + "387/387 [==============================] - 0s 899us/step - loss: 0.9160 - accuracy: 0.7480\n", + "Epoch 21/60\n", + "387/387 [==============================] - 0s 1ms/step - loss: 0.7771 - accuracy: 0.7582\n", + "Epoch 22/60\n", + "387/387 [==============================] - 0s 984us/step - loss: 0.8185 - accuracy: 0.7449\n", + "Epoch 23/60\n", + "387/387 [==============================] - 0s 1ms/step - loss: 0.7490 - accuracy: 0.7618\n", + "Epoch 24/60\n", + "387/387 [==============================] - 0s 1ms/step - loss: 0.8126 - accuracy: 0.7503\n", + "Epoch 25/60\n", + "387/387 [==============================] - 0s 840us/step - loss: 1.2249 - accuracy: 0.7327\n", + "Epoch 26/60\n", + "387/387 [==============================] - 0s 928us/step - loss: 0.7247 - accuracy: 0.7562\n", + "Epoch 27/60\n", + "387/387 [==============================] - 0s 773us/step - loss: 0.7498 - accuracy: 0.7442\n", + "Epoch 28/60\n", + "387/387 [==============================] - 0s 873us/step - loss: 0.6701 - accuracy: 0.7665\n", + "Epoch 29/60\n", + "387/387 [==============================] - 0s 796us/step - loss: 0.7198 - accuracy: 0.7550\n", + "Epoch 30/60\n", + "387/387 [==============================] - 0s 855us/step - loss: 0.6311 - accuracy: 0.7704\n", + "Epoch 31/60\n", + "387/387 [==============================] - 0s 920us/step - loss: 0.6107 - accuracy: 0.7859\n", + "Epoch 32/60\n", + "387/387 [==============================] - 0s 853us/step - loss: 0.6188 - accuracy: 0.7738\n", + "Epoch 33/60\n", + "387/387 [==============================] - 1s 1ms/step - loss: 0.7976 - accuracy: 0.7298\n", + "Epoch 34/60\n", + "387/387 [==============================] - 0s 1ms/step - loss: 0.7624 - accuracy: 0.7522\n", + "Epoch 35/60\n", + "387/387 [==============================] - 1s 1ms/step - loss: 0.6544 - accuracy: 0.7633\n", + "Epoch 36/60\n", + "387/387 [==============================] - 0s 966us/step - loss: 0.6181 - accuracy: 0.7786\n", + "Epoch 37/60\n", + "387/387 [==============================] - 0s 1ms/step - loss: 0.6006 - accuracy: 0.7924\n", + "Epoch 38/60\n", + "387/387 [==============================] - 0s 917us/step - loss: 0.6663 - accuracy: 0.7739\n", + "Epoch 39/60\n", + "387/387 [==============================] - 0s 858us/step - loss: 0.6287 - accuracy: 0.7729\n", + "Epoch 40/60\n", + "387/387 [==============================] - 0s 964us/step - loss: 0.6159 - accuracy: 0.7774\n", + "Epoch 41/60\n", + "387/387 [==============================] - 0s 964us/step - loss: 0.5944 - accuracy: 0.7847\n", + "Epoch 42/60\n", + "387/387 [==============================] - 0s 1ms/step - loss: 0.5644 - accuracy: 0.7982\n", + "Epoch 43/60\n", + "387/387 [==============================] - 0s 1ms/step - loss: 0.5418 - accuracy: 0.8095\n", + "Epoch 44/60\n", + "387/387 [==============================] - 0s 1ms/step - loss: 0.5383 - accuracy: 0.8126\n", + "Epoch 45/60\n", + "387/387 [==============================] - 0s 837us/step - loss: 0.5231 - accuracy: 0.8143\n", + "Epoch 46/60\n", + "387/387 [==============================] - 1s 1ms/step - loss: 0.6260 - accuracy: 0.7765\n", + "Epoch 47/60\n", + "387/387 [==============================] - 0s 876us/step - loss: 0.5350 - accuracy: 0.8066\n", + "Epoch 48/60\n", + "387/387 [==============================] - 0s 930us/step - loss: 0.4994 - accuracy: 0.8194\n", + "Epoch 49/60\n", + "387/387 [==============================] - 0s 1ms/step - loss: 0.6000 - accuracy: 0.8007\n", + "Epoch 50/60\n", + "387/387 [==============================] - 0s 1ms/step - loss: 0.5170 - accuracy: 0.8186\n", + "Epoch 51/60\n", + "387/387 [==============================] - 0s 1ms/step - loss: 0.4767 - accuracy: 0.8257\n", + "Epoch 52/60\n", + "387/387 [==============================] - 0s 915us/step - loss: 0.4927 - accuracy: 0.8218\n", + "Epoch 53/60\n", + "387/387 [==============================] - 0s 1ms/step - loss: 0.5274 - accuracy: 0.8077\n", + "Epoch 54/60\n", + "387/387 [==============================] - 0s 1ms/step - loss: 0.4625 - accuracy: 0.8342\n", + "Epoch 55/60\n", + "387/387 [==============================] - 0s 788us/step - loss: 0.4927 - accuracy: 0.8279\n", + "Epoch 56/60\n", + "387/387 [==============================] - 0s 1ms/step - loss: 0.4874 - accuracy: 0.8246\n", + "Epoch 57/60\n", + "387/387 [==============================] - 0s 876us/step - loss: 0.4707 - accuracy: 0.8299\n", + "Epoch 58/60\n", + "387/387 [==============================] - 0s 718us/step - loss: 0.5065 - accuracy: 0.8147\n", + "Epoch 59/60\n", + "387/387 [==============================] - 0s 773us/step - loss: 0.4575 - accuracy: 0.8354\n", + "Epoch 60/60\n", + "387/387 [==============================] - 0s 827us/step - loss: 0.6057 - accuracy: 0.7870\n" + ] + } + ], + "source": [ + "model = get_compiled_model()\n", + "history = model.fit(train_dataset, epochs=60)" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "dict_keys(['loss', 'accuracy'])\n" + ] + } + ], + "source": [ + "history_dict = history.history\n", + "print(history_dict.keys())" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "[]" + ] + }, + "metadata": {}, + "execution_count": 49 + }, + { + "output_type": "display_data", + "data": { + "text/plain": "
", + "image/svg+xml": "\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n 2021-04-22T15:01:25.447868\r\n image/svg+xml\r\n \r\n \r\n Matplotlib v3.3.2, https://matplotlib.org/\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n", + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXcAAAD4CAYAAAAXUaZHAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8vihELAAAACXBIWXMAAAsTAAALEwEAmpwYAAAacklEQVR4nO3deZBc5Xnv8e9zTndP92iZ0TIIbSCZJbJiNmWK1RsQJxhjw80lGJuyFUcpqhLb177kVoyvb0y5kjh22QXBCeUYgx1x48L2lRcwEBNFyDZ4kRmZTUiABFoQaBmhDUmzdfdz/zinZ1qjGS3TPeo5Z36fqq7uPn26+3l7en799ntOn9fcHRERSZeg0QWIiEj9KdxFRFJI4S4ikkIKdxGRFFK4i4ikUKbRBQBMnz7d582b1+gyREQSZfXq1bvcvW2o28ZEuM+bN4+Ojo5GlyEikihmtnm42zQsIyKSQgp3EZEUUriLiKSQwl1EJIUU7iIiKaRwFxFJIYW7iEgKJTrcn9y0m68++iLFUrnRpYiIjCnHDHcz+5aZ7TSzNVXLpprZcjNbH59PiZebmX3NzDaY2bNmtmg0i39qyx7+ZeUGuvpKo/k0IiKJczw9938Drhq07FZghbufBayIrwO8FzgrPt0MfL0+ZQ6tkA0B6O5Tz11EpNoxw93dfwHsHrT4WmBpfHkpcF3V8vs88hug1cxm1qnWIzT1h7t67iIi1UY65j7D3bfFl7cDM+LLs4FXq9bbGi8bFQWFu4jIkGreoOrRJKwnPBGrmd1sZh1m1tHZ2Tmi585rWEZEZEgjDfcdleGW+HxnvPw1YG7VenPiZUdw97vdvd3d29vahjxi5TFVeu7aoCoicriRhvuDwOL48mLggarlH433mrkY2Fc1fFN3+WxUvoZlREQOd8zjuZvZ/cC7gelmthW4DfgS8H0zWwJsBm6IV38EuBrYABwCPjYKNffLq+cuIjKkY4a7u39omJuuHGJdBz5ea1HHK68NqiIiQ0r0L1QLOYW7iMhQEh3u+UxlzF17y4iIVEt0uFd67hpzFxE5XKLDPZ/RsIyIyFASHe5BYOQygXruIiKDJDrcIRp379GYu4jIYZIf7tlQwzIiIoMkPtwLuVDDMiIigyQ+3PMZ9dxFRAZLfrjnQro05i4icpjkh3smUM9dRGSQxId7IadhGRGRwRIf7hpzFxE5UuLDXXvLiIgcKfHhns8GOnCYiMggKQj3kO5e9dxFRKqlI9yLCncRkWqJD/dCNqSv5BRLGpoREalIfLj3T5JdVLiLiFQkPtwLmkdVROQIiQ/3pjjcu7RRVUSkX+LDPR+He482qoqI9Et8uBf6e+4acxcRqUh8uA9sUFXPXUSkIvHhXtCYu4jIERIf7nntLSMicoTUhLsOHiYiMiAF4R41oUcHDxMR6Zf4cC+o5y4icoTEh7vG3EVEjlRTuJvZ/zSz581sjZndb2Z5M5tvZqvMbIOZfc/McvUqdigD4a5hGRGRihGHu5nNBv4H0O7ubwNC4Ebgy8Ad7n4msAdYUo9ChxMGRi4MNCwjIlKl1mGZDFAwswzQDGwDrgCWxbcvBa6r8TmOKZqNSeEuIlIx4nB399eArwJbiEJ9H7Aa2OvuxXi1rcDsWos8lnxWk2SLiFSrZVhmCnAtMB+YBUwArjqB+99sZh1m1tHZ2TnSMoBokmyFu4jIgFqGZf4Q2Ojune7eB/wQuAxojYdpAOYArw11Z3e/293b3b29ra2thjIgnwk15i4iUqWWcN8CXGxmzWZmwJXAWmAlcH28zmLggdpKPLZozF17y4iIVNQy5r6KaMPp74Dn4se6G/gMcIuZbQCmAffWoc6jymfVcxcRqZY59irDc/fbgNsGLX4FuLCWxz1R+WzI3kO9J/MpRUTGtMT/QhWiQxCo5y4iMiAV4a4xdxGRw6Ui3As59dxFRKqlItybMtrPXUSkWirCvZALdTx3EZEqqQj3fCakt1SmVPZGlyIiMiakItwLuagZGpoREYmkItw1j6qIyOFSFe7quYuIRBTuIiIplIpwL2iqPRGRw6Qi3PPZqBkacxcRiaQk3DUsIyJSLRXhXhmW6epVuIuIQErCvTIs013UmLuICKQm3DUsIyJSTeEuIpJCqQj3gsJdROQwqQj3/sMP9GrMXUQEUhLuYWDkwoDuonruIiKQknAHaMoG2hVSRCSWmnAvZEN61HMXEQFSFO75bKieu4hILDXhXsiGOnCYiEgsNeGezwY6cJiISCxF4R5qP3cRkZjCXUQkhVIU7oHG3EVEYqkJ90I21I+YRERiqQl37QopIjIgVeGuMXcRkUhN4W5mrWa2zMxeMLN1ZnaJmU01s+Vmtj4+n1KvYo8mr/3cRUT61dpzvxP4qbsvAM4D1gG3Aivc/SxgRXx91BWyIb2lMqWyn4ynExEZ00Yc7mbWArwTuBfA3XvdfS9wLbA0Xm0pcF1tJR6f/qn2NDQjIlJTz30+0Al828yeMrN7zGwCMMPdt8XrbAdmDHVnM7vZzDrMrKOzs7OGMiKFnCbsEBGpqCXcM8Ai4OvufgFwkEFDMO7uwJDjJO5+t7u3u3t7W1tbDWVE8pl4wg6Fu4hITeG+Fdjq7qvi68uIwn6Hmc0EiM931lbi8cn399y1UVVEZMTh7u7bgVfN7PfiRVcCa4EHgcXxssXAAzVVeJzyGY25i4hUZGq8/yeB75hZDngF+BjRB8b3zWwJsBm4ocbnOC4acxcRGVBTuLv700D7EDddWcvjjkT/JNkKdxGR9PxCtZDVmLuISEVqwl37uYuIDEhNuDdpV0gRkX6pCffKBtUehbuISHrCXRtURUQGpCfc+/dz1wZVEZHUhHsmDMiGpp67iAgpCnfQhB0iIhUKdxGRFEpVuBc0G5OICJCycM9nA02SLSJCysK9kA3pLircRURSFe5NGnMXEQFSFu6FbEiXxtxFRNIV7vlsoMMPiIiQunAP9SMmERFSFu4FjbmLiAApC/d8NtSukCIipDDcu4vaoCoikrJwD+gtlimVvdGliIg0VKrCvTKPao9+yCQi41yqwr1/wg6Nu4vIOJeqcK/03DXuLiLjXarCvSkbNUc9dxEZ71IV7v09d+3rLiLjXKrCPa8NqiIiQMrCvZCrbFDVmLuIjG+pCvd8RsMyIiKQsnAv5OINqgp3ERnnUhXuTeq5i4gAdQh3MwvN7Ckzeyi+Pt/MVpnZBjP7npnlai/z+OS1t4yICFCfnvungHVV178M3OHuZwJ7gCV1eI7jUtmg2q3ZmERknKsp3M1sDvA+4J74ugFXAMviVZYC19XyHCcin9GYu4gI1N5z/yfgb4BKV3kasNfdi/H1rcDsoe5oZjebWYeZdXR2dtZYRiQTBmRD07CMiIx7Iw53M7sG2Onuq0dyf3e/293b3b29ra1tpGUcIZ/RVHsiIpka7nsZ8AEzuxrIA5OBO4FWM8vEvfc5wGu1l3n88rlQY+4iMu6NuOfu7p919znuPg+4EXjM3W8CVgLXx6stBh6oucoTkM8GGpYRkXFvNPZz/wxwi5ltIBqDv3cUnmNYmiRbRKS2YZl+7v4z4Gfx5VeAC+vxuCORV7iLiKTrF6oQhbs2qIrIeJfKcNcGVREZ71IX7gVtUBURSV+4a8xdRCSF4V7QmLuISPrCXWPuIiIpDPembKCeu4iMe6kL90I2pLdYplz2RpciItIwqQv3/gk7iuq9i8j4lbpwL2Q1YYeISOrCPZ+NmqTdIUVkPEthuEc9d21UFZHxLHXh3pyLjoX29Ja9jS1ERKSBUhful54xjfPmtPC/lj3D0l9tanQ5IiINkbpwn9CU4f6bL+bKBTO47cHn+YeH12q3SBEZd1IX7hANzXzjI3/An106j28+vpFP3P87bWAVkXElleEOEAbGbe9fyP9531v5jzXbuemeVezv7mt0WSIiJ0Vqwx3AzPiLd7yFuz68iNWb93D/qi2NLklE5KRIdbhXXH3OTBacOonHXtjZ6FJERE6KcRHuAFcsOIWOzXvY16WhGRFJv3EV7qWy8/j6zkaXIiIy6sZNuF9w2hRam7M8tk5DMyKSfuMm3MPAePfZbfzspU5K2u9dRFJu3IQ7wOULTmH3wV6e2bq30aWIiIyqcRXu7zq7jcBgpfaaEZGUG1fh3tqc4w9On8IKjbuLSMqNq3AHuGLBDNZu28/2fd2NLkVEZNSMw3A/BYCVL6r3LiLpNe7C/ewZE5ndWtCvVUUk1cZduJsZly9o44n1u3SkSBFJrRGHu5nNNbOVZrbWzJ43s0/Fy6ea2XIzWx+fT6lfufVx5YIZdPWVWLVxd6NLEREZFbX03IvAX7v7QuBi4ONmthC4FVjh7mcBK+LrY8olZ0wjnw20S6SIpNaIw93dt7n77+LLbwLrgNnAtcDSeLWlwHU11lh3+WzIpWdM57EXduKuX6uKSPrUZczdzOYBFwCrgBnuvi2+aTswY5j73GxmHWbW0dl58g/mdfmCU9iy+xAvdx486c8tIjLaag53M5sI/AD4tLvvr77No27xkF1jd7/b3dvdvb2tra3WMk5YZZfI+3+rCTxEJH1qCnczyxIF+3fc/Yfx4h1mNjO+fSYwJge2Z7cW+GD7XO59YiPf+PnLjS5HRKSuatlbxoB7gXXufnvVTQ8Ci+PLi4EHRl7e6Prin5zD+8+bxT/+xwt8+5cbG12OiEjdZGq472XAR4DnzOzpeNn/Br4EfN/MlgCbgRtqqnAUhYFx+w3n0Vcs84WfrCWXCbjpotMbXZaISM1GHO7u/gRgw9x85Ugf92TLhgFf+9AF/OW/r+ZzP1pDNgy4oX1uo8sSEanJuPuF6lBymYC7blrEO86azmd+8CwPP7vt2HcSERnDFO6xfDbkmx9t54K5rXzux8+x75Am0haR5FK4V8lnQ/7+unPY19XH1x5b3+hyRERGTOE+yMJZk/lg+1zu+/UmNu7SD5xEJJkU7kO45Y/OJhcGfPGRdY0uRURkRBTuQzhlUp6/uvxMlq/dwa9e3tXockRETpjCfRhL3j6f2a0F/u6hdZTKOriYiCSLwn0Y+WzIre9dwLpt+1m2+tVGlyMickIU7kdxzbkzWXRaK1959CUO9BQbXY6IyHFTuB+FmfG31yxk14Ee7lj+ko79LiKJoXA/hgtOm8IN7XO494mNLP72k2zdc6jRJYmIHJPC/Th86U/O5Qsf+H06Nu3mj+/4Bff9ehNlbWQVkTFM4X4cgsBYfOk8Hv30O1l0+hQ+/8DzfPDuX/Ny54FGlyYiMiSF+wmYO7WZ+/78Qr5y/bm8uP1N3nvn4/zLY+vpLZYbXZqIyGEU7ifIzPjT9rn81y3v4j0LZ/DV/3yJa/75cVZv3tPo0kRE+incR+iUyXnu+vAi7l3czoHuItf/66/42x+vYX+3jiYpIo2ncK/RlW+dwfJb3sXHLp3Pd1Zt5j23/5zfvPJGo8sSkXFO4V4HE5oyfP79C/nRX13GhKYMH/7mb7hr5QbtUSMiDaNwr6Pz5rby4CfezvvOncVXHn2RJUufZM/B3kaXJSLjkMK9ziY2Zfjajefzd9e9jV9ueINr/vkJntqija0icnIp3EeBmfGRi09n2V9eghnc8I1f88VH1mnqPhE5aRTuo+jcOa08/Ml3cO35s/nm46/wzq+s5J7HX6GnWGp0aSKScgr3UdbSnOWrf3oeD3/yHZw7p4W/f3gdf3j7z/nJM6/rQGQiMmoU7ifJwlmT+b9LLuK+P7+QCbkMn7z/Kd5zxy/4999s5lCvDicsIvVlY6H32N7e7h0dHY0u46QplZ2fPPM69z6xkede20dLIcuNF87lo5fMY3ZrYUSP6e7s6+qjpZDFzOpcsYiMRWa22t3bh7xN4d447s7qzXv41i838tM12zEzTpvaTDY0cpmAbBidpk3IcfaMSSw4dRJnnzqJedMmYMC67ftZ9cpuVm18gyc37WH3wV4m5zOcecrE/tPZMyZxyRnTaMqEjW6uiNSZwj0Btu45xP2/3cKru7voK5XpLZbpjc93vtnDpjcOUvlTNWUCcpmAN7uj4Zw5UwpcNH8aZ8+YyKt7DrFh5wE27DzArgPRPvZTJ+T474tmc+OFp3FG28RGNVFE6kzhngJdvSU27DzAC9v389KONznYW6L99Clc9JZpww7l7D3Uy1Nb9vL9jldZvnYHxbJz4fypfLB9LhPzGTrf7GHnmz10vtnDrgM9vKVtAtecM4u3zZ6soR2RBFC4C51v9rBs9Va+++QWNr8xMJuUGUybkGNKc46Nuw5SLDunT2vmfefM5JpzZ/HWmZMU9CJjlMJd+pXLznOv7SMMjLZJTUybkCMTRjtN7T3Uy6PPb+ehZ7fxq5ffoFR2TpnUxO/PmszCWZNZOLOFhbMmc/rUZoJAgS/SaCc93M3sKuBOIATucfcvHW19hfvY88aBHh59fgcdm3azdtt+1u88QCk+EFomMFqbs0xpjnr8rc1ZJuYzlMpOseT0lsoUS2VKDvlMQCEXUsiGFHIh+WyIO5Q9WrfsTrFcpq8Y3a+nWKK3WKancuor0VMs091XoruvTCY0Tp2cZ0ZLnlMnR6epE3IM9eUiEwbkQiMbBmTCgGxgUFmv6m0fBEa2sl4QkA0NM3AfWK3ybxIGEJgRBkZgRqns7DnUG50O9rHnUC8HeorkMgFNmZB8NiCfidpdyAXRefxaFLIhgUXPZWYY0TepUtnpKzl9pXJ8il4nIF5nYN3K/QOzgceqrBNfDszIhEau8jrEbY1uP/w+QVzL0bg77gz5AV8ux3/Hvuhv2Vd2cmFAU/w6RK/t0I9feVwnen+U3Qnj1/pkfHs80FNk294uXt/XzfZ9XeQyATNbCsxqKXBqS55cpj57jrs73X1lDvYWOdRToqU5S0shO6LHOqnhbmYh8BLwHmAr8CTwIXdfO9x9FO5jX3dfifU7DrB22z42v3GIPYf62Huol90He9l7qI8DPUUy/QEZnQeB0dNXoquvRFdvdN7dV8KI/mGrT5U9hHJhFIpROAY0ZUPymSgUmzIBvaUy2/d1s2N/N9v3d9Pdp1mw6i0w+j+8MoHhRB840QexUx0ZQeWDJTBw6C0d/e8RGP17bpXjMC/FQT5cFJlBNv7QzWYCwviDK771sPWGEj3uwINX2hUE8bkZuw70sL97+N+bmMH0iU1Mymcol6PXoVx2SnHdlQ/KwR+O5f4PLKdUhq7eIof6Soe19R/+29u46aLTj/KqDe9o4Z4Z0SMe3YXABnd/JX7y7wLXAsOGu4x9+WzIOXNaOGdOS6NL6efu7O8qsrfryCNvuhN9IxjUA65mxL3EstNXdopV6zn0946tKkBKHv9Tx//YoRlTJ0TfXqLzHJOaMv291+5iqf9bR+VDrrvqA68Ud1WdgV5rGFR62RbvDhsFUCWjPA6qcnmgl+vulL06TAZ6wpVQ7iuV6SuWKca9a/fDe8uVdSvrV0LM4poqp8o3hHJ8/yj4o9cn+kCOeulN2eiDvrfk9PQNvA7dfaXo20b8WMGgbx5B1TeIclx3b/x3LJai+uOX4rC/9xDvECrhX/l2UnldiqWBv2Gp7EydkIt66a15ZrYUmNmSp7dU5vW9XWzb283r+6LzAz3FwzsmVv0tr/J6R5eDI75hGc25kAm5kOamDM25kOZchkWntR73e/5EjEa4zwZerbq+Fbho8EpmdjNwM8Bpp502CmVI2plZ9JW2eWRfaUdTPoiGYloYe7XJ8UvyrsMNO/yAu9/t7u3u3t7W1taoMkREUmk0wv01YG7V9TnxMhEROUlGI9yfBM4ys/lmlgNuBB4checREZFh1H3M3d2LZvYJ4FGiXSG/5e7P1/t5RERkeKOxQRV3fwR4ZDQeW0REjk3HcxcRSSGFu4hICincRURSaEwcOMzMOoHNI7z7dGBXHctptDS1J01tAbVnLEtTW+D423O6uw/5Q6ExEe61MLOO4Y6tkERpak+a2gJqz1iWprZAfdqjYRkRkRRSuIuIpFAawv3uRhdQZ2lqT5raAmrPWJamtkAd2pP4MXcRETlSGnruIiIyiMJdRCSFEh3uZnaVmb1oZhvM7NZG13OizOxbZrbTzNZULZtqZsvNbH18PqWRNR4vM5trZivNbK2ZPW9mn4qXJ7U9eTP7rZk9E7fnC/Hy+Wa2Kn7PfS8+8mkimFloZk+Z2UPx9SS3ZZOZPWdmT5tZR7wsqe+1VjNbZmYvmNk6M7ukHm1JbLjHc7XeBbwXWAh8yMwWNraqE/ZvwFWDlt0KrHD3s4AV8fUkKAJ/7e4LgYuBj8d/j6S2pwe4wt3PA84HrjKzi4EvA3e4+5nAHmBJ40o8YZ8C1lVdT3JbAC539/Or9gdP6nvtTuCn7r4AOI/ob1R7WzyefzFpJ+AS4NGq658FPtvoukbQjnnAmqrrLwIz48szgRcbXeMI2/UA0STpiW8P0Az8jmi6yF1AJl5+2HtwLJ+IJs1ZAVwBPEQ0pWgi2xLXuwmYPmhZ4t5rQAuwkXjnlnq2JbE9d4aeq3V2g2qppxnuvi2+vB2Y0chiRsLM5gEXAKtIcHviYYyngZ3AcuBlYK+7F+NVkvSe+yfgb4ByfH0ayW0LRHNd/6eZrY7nY4ZkvtfmA53At+Mhs3vMbAJ1aEuSwz31PPrYTtS+qmY2EfgB8Gl33199W9La4+4ldz+fqNd7IbCgsRWNjJldA+x099WNrqWO3u7ui4iGZT9uZu+svjFB77UMsAj4urtfABxk0BDMSNuS5HBP61ytO8xsJkB8vrPB9Rw3M8sSBft33P2H8eLEtqfC3fcCK4mGLlrNrDLJTVLec5cBHzCzTcB3iYZm7iSZbQHA3V+Lz3cCPyL68E3ie20rsNXdV8XXlxGFfc1tSXK4p3Wu1geBxfHlxURj12OemRlwL7DO3W+vuimp7Wkzs9b4coFo+8E6opC/Pl4tEe1x98+6+xx3n0f0f/KYu99EAtsCYGYTzGxS5TLwR8AaEvhec/ftwKtm9nvxoiuBtdSjLY3eoFDjxoirgZeIxkI/1+h6RlD//cA2oI/oE3wJ0VjoCmA98F/A1EbXeZxteTvRV8dngafj09UJbs+5wFNxe9YAn4+XvwX4LbAB+H9AU6NrPcF2vRt4KMltiet+Jj49X/nfT/B77XygI36v/RiYUo+26PADIiIplORhGRERGYbCXUQkhRTuIiIppHAXEUkhhbuISAop3EVEUkjhLiKSQv8fDBMgpgEZOL4AAAAASUVORK5CYII=\n" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "source": [ + "import matplotlib.pyplot as plt \n", + "plt.plot(history_dict['loss'])" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "[]" + ] + }, + "metadata": {}, + "execution_count": 50 + }, + { + "output_type": "display_data", + "data": { + "text/plain": "
", + "image/svg+xml": "\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n 2021-04-22T15:01:41.474430\r\n image/svg+xml\r\n \r\n \r\n Matplotlib v3.3.2, https://matplotlib.org/\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n", + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXoAAAD7CAYAAABkO19ZAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8vihELAAAACXBIWXMAAAsTAAALEwEAmpwYAAAvCklEQVR4nO3deXzU1b3/8dcn+0L2hC0BwhJ2kCWyilURxQ2stoq9Wv1Vy7UVbdXbW6y9arG9196r7bVXbpVatyrirqDcIiLWBZWEnYBAWJOwJJAFkpBlJp/fHzPgEAKZJBMmmfk8H495ZL7bzDk6vOc753u+54iqYowxJnCF+LsAxhhj2pcFvTHGBDgLemOMCXAW9MYYE+As6I0xJsBZ0BtjTIDzKuhFZLqIbBORfBGZ28T23iKyUkTWichGEbnSvT5TRI6LyHr342lfV8AYY8zZSXP96EUkFNgOTAMKgRzgJlXd4rHPAmCdqv5ZRIYCS1U1U0QygfdVdXh7VcAYY8zZhXmxzzggX1V3AYjIImAmsMVjHwXi3c8TgP2tLVBqaqpmZma29nBjjAlKa9asOayqaU1t8ybo04ECj+VCYHyjfR4BPhSRu4FY4FKPbX1FZB1wFPi1qn52tjfLzMwkNzfXi2IZY4w5QUT2nmmbry7G3gS8oKoZwJXA30QkBDgA9FbV0cB9wEIRiW98sIjMFpFcEcktKSnxUZGMMcaAd0FfBPTyWM5wr/N0O/A6gKp+CUQBqapaq6pH3OvXADuBgY3fQFUXqGq2qmanpTX5y8MYY0wreRP0OUCWiPQVkQhgFrC40T77gKkAIjIEV9CXiEia+2IuItIPyAJ2+arwxhhjmtdsG72qOkRkDrAMCAWeU9U8EZkH5KrqYuB+4C8ici+uC7O3qaqKyIXAPBGpBxqAO1W1tN1qY4wx5jTNdq8817Kzs9UuxhpjTMuIyBpVzW5qm90Za4wxAc6C3hhjApw3/eiNMSYorC8o5+tdR+iVHEPv5Bh6JceQEB3u72K1mQW9McYAR2vq+fFLuZQcqz1lfUJ0OP3TYsnOTOb8zGTOz0wiMSbCT6VsHQt6Y4wBnli2jSOVtSyaPYG4qDAKSqvZ5358c+AYL3yxhwWfunqHD+oWxwVZqdw7bSBdIlsWo84G5eWv9jI8PYGxfZLaoyqnsaA3xgS9jYXlvPTVXm6dmMmEfikADOuZcMo+NfVONhSUs3p3Kav3lPLCqj3k7Cnl+dvOJ6VLpFfvU1Xr4OevrWf5lkOM75vMa/880ed1aYoFvTEmqDkblAff2Uxql0juu+y0G/dPigoPZXy/FMa7vwhWbD3EXQvX8r2nv+SlH42jV3LMWd/nQMVxbn8hl28OHmV4ejxr95VRWeto8S+C1rBeN8aYoPbyV3vZVFTBQ1cPJT7K+wuvU4d04+Xbx3Okspbr/7yKbw4ePeO+GwvLmfnUF+wrreavt53Pr64cQr1T+XrXEV9UoVkW9MaYoFV8tIbHl21jSlYqV4/s0eLjszOTeePOSYjADU9/Sc4e143/tQ4nh47W8M3Bo7yWs48bnvmS8NAQ3vrJJC4e1JWxfZKIDg/lsx2HfV2lJlnTjTEmIKkqO4orWflNMV/sPEJGUjRXDO/OhH4phIe6znEf/WArtc4GHp05HBFp1fsM6h7HWz+ZxA//upqbFnxFRFgI1XXOU/YZ3TuRBbdkkxbnasuPDAtlQr9kPt1xbkbrtaA3xnRKBaXV/GnFDkJDhMSYCJJiwkmKiSAyPIScPaWs/KaEovLjAAzo2oXcPaUs/HofiTHhXDqkGwO6dmHJhv3ce+lAMlNj21SWjKQY3rhzIn/+ZCcKJMWEu8sUQXJsBGP7JBERdmoDypSsNFa+v4XCsmoyks7evt9WFvTGGK/UOpxsLjrK6F6JhIS07uzXVyprHdz+Yg77SquJiwqnvLqOeue343bFRIRywYBU5lwygIsGpdEjIZqaeiefbi/h75sPsizvIG+ucdA3NZY7L+rnkzKldInk11cP9Xr/CwemAvD5jsPMGtfbJ2U4Ewt6Y0yzVJV/eWMjSzbsZ3D3OH5+aRaXDe3ul8BvaFDufW09O0uqeOlH45g8IBVVparOSVlVHZW1DvqlxRIZFnrKcVHhoVw2rDuXDetOnaOBnD2l9E6OOW2/c6V/Whd6JETxmQW9MaYjWJRTwJIN+5k5qiebCiu48+W1DO4exz1Ts5g+rPWBv6mwgm2HjpGRFE1GUjTd46MICz17H5H//mg7y7cc4uFrhjJ5gOusWEToEhnmdVfFiLCQk8f6i4gwJSuVZXmHcDYooe34pWlBb4w5q28OHuWRxXlMyUrljzeMQoElG/bzp4938NNX1jKom+sM//IWBr7D2cAdL+Vw6Oi3Qw6Ehgg9EqIYkZ7Ajy/sx5jep945unTTAf70cT7fH5vBbZMyfVRD/5mSlcbruYVsKqpgVK/EdnsfC3pjzBlV1Tq465W1xEeH84cbRp0M8mtHp3PNeT15f+N+nlyxg5+84jrDv3faQC4b2s2rHiwrvinm0NFa/uO6EfRKiqGwrJrCsuMUlFXzybYS/m/zQSb0S+anFw1gSlYqWw8c4/7XNzC6dyK//W7re8l0JJMHpCICn20v8X/Qi8h04ElcM0w9q6qPNdreG3gRSHTvM1dVl7q3PYBrTlkncI+qLvNZ6Y0x7eqh9/LYdbiKV24ff7Jr4AmhIcLMUelcPbInSza4Av+f/7aGYT3juffSgUwd0vWsYfzq6n10j4/i+2MzTmuuqap18Orqffzls1388LnVDE+Pp6yqnoTocJ65eazf2tV9LTk2ghHpCXy24zB3T81qt/dp9oYp95yv84ErgKHATSLS+NLyr4HXVXU0rjll/9d97FD38jBgOvC/J+aQNcZ0bG+uKeSttYXcfUkWk87Snh0aIlw7Op3l917IE98/j8paB3e8lMuLq/ac8ZjCsmr+sb2EG87v1WSbfGxkGHdM6cen/3oxj103gsoaB0eqannmlrF0jY/yRfU6jClZqazdV8axmvp2ew9v7owdB+Sr6i5VrQMWATMb7aNAvPt5ArDf/XwmsEhVa1V1N5Dvfj1jTAe29cBR/u3dzUzol8zPvDzTDAsN4fqxGXx033eY1D+FJ1fs4OgZwuv1nAIAbjy/11lfMzIslFnjerPi/ov4+oFLOa8dmzf8ZUpWGo4G5atd7TedtjdBnw4UeCwXutd5egS4WUQKgaXA3S04FhGZLSK5IpJbUnJu7hQzxpzuWE09/7F0KzOf+oLYyFCenDW6xb1BwkNDeOCKIZRV1/MX97C+nhzOBl7LLeCigWmkJ0Z79ZqhIUJCTOefAKQpY3onERMRymfteJesr8a6uQl4QVUzgCuBv4mI16+tqgtUNVtVs9PS0nxUJGOMt5wNyqur93Hx45/wzKe7mDGqJ0vvmUK3VjaTjMhI4KqRPXj2s90UH6s5ZdvH7ouwN7Vz3/HOIiIshIn9Utp13BtvwrgI8Px9leFe5+l24HUAVf0SiAJSvTzWGONHGwrKufp/PueBtzeRmRLLkjkX8Pj3z2tzW/i/XDaIemcD/7Mi/5T1r67eR7f4SC4Z3LVNrx9IpmSlsvtwFQWl1e3y+t4EfQ6QJSJ9RSQC18XVxY322QdMBRCRIbiCvsS93ywRiRSRvkAWsNpXhTfGtM2xmnpufzGX8uo6nvrBaN64cyIjMhKaP9ALfVNjmTWuF6+u3seew1UAFJUf55PtJdyY3fRF2GA1ZaCrJaO9zuqb/S+tqg5gDrAM2Iqrd02eiMwTkRnu3e4HfiwiG4BXgdvUJQ/Xmf4W4O/AXarqPP1djDH+MH/lTg5X1vL0zWO5emRPn/dNv2dqFuGhITz+4TYAXnNfhL2hmYuwwaZfaizpidHt1k7vVT96d5/4pY3WPeTxfAsw+QzH/g74XRvKaIxpB3uPVPHc57u5fkxGu/Vm6RoXxe0X9OWplfncMaWc13L28Z2Bae0+WmNnIyJcc15Pqusc7fL69tvJmA4qZ08p81fmU15d1y6v/7sPthIeKvxy+qB2ef0TZn+nH0kx4cx+Kdcuwp7F3CsGM2/m8HZ5bQt6YzoYh7OBPyzfzo3PfMl/LdvGlN+v5H9W7KCy1ndne5/vOMyHWw7x04sHtPsNSPFR4dx18QCKj9XSNc4uwvqDBb0xraCqze/UCvvLj/ODv3zNn1bs4LujM3jnp5OY2D+FJ5Zv58L/XMmzn+2ipr5tl7kczgbmvZ9Hr+Robr+gr49KfnY3T+jD8PR4Zl/Y7+TsTubckfb6wLZWdna25ubm+rsYxjSpoUF5amU+T63MJ1SEuKgw9yOclNgIHpkxjF7JrWt//vvmg/zyrY04nA387rsjuHb0t/cWri8o5/Fl2/g8/zDpidG8dPs4+qd1adX7/O3LPfzbe3k8ffNYpg/v3qrXMB2PiKxR1eymttlXqzFeqqiu546XcvnD8u1cNDCNfxrfm4sHdWVQ9zi6RIax4ptiluUdbNVrP/2Pndz58hr6pMTwwT1TTgl5gFG9Enn5jvEsvGM8NfVObnn2a/a7p8lrifLqOp5Yvp1J/VO4fFi3VpXVdD42TLExXthcVMFPXlnDwYoaHp05jJsn9DmtK+K4333Elv1HW/zax2rqeerjfKYO7sqfbx572tyiniYNSOXFH43jpgVfcctfv+aNOyeRHBtx1tevdzZQUFrN7sNVvLmmkKPH63nomqEBMcyv8Y4FvTHNeHNNIQ++s4mkmAhe++eJp02GccKwnvHktSLo31xTSGWtg3umZp015E8Ynp7AX287n1v++jW3Pb+aV+4YT1zUt+PAqCqrd5fy0ld72br/KPtKq3E0fNtEe+d3+jO4e3xTL20ClAW9MWdwoOI4v/tgK+9vPMCk/in86abRpHaJPOP+w9MT+HTHYWrqnUSFezcad0OD8uKqPYzpndiivuzj+ibz55vHMPulNcx+aQ3P/7/ziQgNYfnWQzz9j52s21dOcmwEE/olc8WI7vRN7ULf1Fj6pcaS1MwvABN4LOiNaaTO0cBzX+zmTyt24GxQ7ps2kJ9e1L/ZW/aH9YzH2aB8c/CY17MFrdxWzJ4j1dx/Wcv7sl8yuBtP3HAeP39tPbc+t5rDlbXsLKmiV3I0j84cxvfG9iI6wqZ/MBb0xpzisx0lPLw4j10lVUwb2o2Hrh7qdS+aYT1dY8Tk7fd+/s8XVu2he3xUq3u/zByVTsXxeh56L4+hPeL5002juXJ4dxtHxpzCgt4ErZp6J98cPMamogo2F1awsaiCrQeOkpkSw/O3nc/FLbyxJyMpmvioMDYXeddOv+PQMT7bcZhfXD6oTX3Lfzgxk8uHdadrXKRdYDVNsqA3HUp+cSXr9pVx5YgexEa2z8dTVfnVO5t4I7fw5EXKpJhwhqcn8OCVQ7hlYh+v29g9iQjDeiawZX+FV/u/sGoPkWEhPhkSoLXjxpvgYEFvOpS5b20kd28Zj76/hZvG9eaHkzK9noXIWx9tLebV1QV8d3Q6lw/rxvD0BNITo31yNjysZzwvfbWXemfDWc/SK6rreXttEdeOSm+2e6QxbWVBH4BUldKqOpJjIzrVT/nNRRXk7i3jlgl9KK2u49nPd/Ps57uZPrw7d1zQl9Fn6NbYEjX1Tua9n0dW1y785/dG+vx2/OHpCdQ5GthZUnnWLoyLcvZxvN7JbZMzffr+xjTFgj4AHKyoYd2+MjYVVbCpqIK8/UcprapjQr9knpw1ukP8rK+qdRAVHnrW+UdfXLWH6PBQ/uXyQSREh1NUfpyXVu1h4ep9fLDxAN8fm8GDVw0hMab1Z8BP/2MnBaXHWfjj8e0y5sqwnq5wzys6esagdzgbeOnLvUzol8yQHtaf3bQ/C/pO7m9f7uHhxXk0KISFCFnd4rh0SFe6xUfx7Ge7ufLJz/jjjaO4cOC5nYu3pt7Jmr1lfJ5/mC/yD7OpqILvjcngv75/XpP7l1bV8d6G/Xx/bAYJ0a6bf9ITo3ngyiHcMzWL+SvzeebTXazcVsxD1wzjmpE9WvxrpaC0mj9/spOrR/ZgUv/UNtexKf3SuhAVHkLe/qNcP7bpfT7aeoii8uM8dM3QdimDMY15FfQiMh14EggFnlXVxxpt/yNwsXsxBuiqqonubU5gk3vbPlWdgWkzVeUPy7fzPx/nc+mQrsy5JIvB3eNOuYg447ye3LVwLbc+v5qfXtSfey8deEq3u6paB1sPHKVrXBS9U3wzEcTxOif3vraelduKqXU0EBYijOmdxIVZabyxppAbz+9Fdmbyace9unofdY4Gbp2Uedq22Mgw/nX6YK4e2ZO5b2/knlfX8e66Ih69dniL2u9/s2QLoSHCg1cNaUsVzyo0RBjSI57NZ7kg+8KqPWQkRXPpEBtrxpwbzQa9iIQC84FpQCGQIyKL3bNKAaCq93rsfzcw2uMljqvqKJ+V2OBwNvDrdzezKKeAWef34rfXDm+y33RWtzjeu+sCfrMkj/krd7J6dynTh/dgs7uJZ2dJJarQJyWGT/7lIp+05z/+4Tb+nneQWyf24TuD0hjXN4UukWFU1zmY+sQ/eOi9PJbcfcEpTTgOZwOvfLWXSf1TGNgt7oyvPbRnPO/8dDLPf7GbJz7cztQnPmFy/1Qm9k9hUv9UBnePI+QMTUMrvynmo62HmHvFYHok+PbibmPDesbz3rr9NDToaeXZd6Sar3aV8ovLB521GcsYX/LmjH4ckK+quwBEZBEwE9c8sE25CXjYN8ULXpW1DjYUlJOZGkvPhKiTIVxT72TOwnV8tPUQd18ygPumDTxrQEdHhPLY9SOZ2D+FX729iZw9ZXSNi2REegJXjehBVa2DZz/fzfqC8jZf7MzZU8pzX+zmlgl9+E2jmXJiIsJ48KohzFm4joWr93HLhD4nty3fcoj9FTU8PGNYs+8RGiLcMaUflw/rzjOf7mRV/hFWfFMMuLpITuiXwqQBqVwwIJXMlBhEhFqHk98syaN/Wiw/mtz+468P65nAy1/to6Csmj4psadse3tdISJw3Zj0MxxtjO95E/TpQIHHciEwvqkdRaQP0Bf42GN1lIjkAg7gMVV9t4njZgOzAXr3tmnGAO5/fT3L8g4BEBsRyoBucWR17UJ+cSUbCsuZN3MYP5yY6fXrzRyVzncGplHraDjl4uzRmnpe+nIvSzYcaFPQH69z8q9vbiQ9MZq5Vwxucp+rRvTglX77eOLDbVw9osfJMVdeWLWH9MSWNWX0So7ht9eOAFxj0ny58wirdh7hy51H+L/NrqGC0xOjmTwgBWcD7DlSzd9uH+fVoGFtNdx9h+zmoqOnBL2q8vbaIib3T233XxXGePL1xdhZwJuq6jkFTh9VLRKRfsDHIrJJVXd6HqSqC4AF4Jp4xMdl6nT+vvkgy/IOcfsFfemXFsuOQ5VsP3SMf2wvobrWwVM3jeGqkT1a/LpN9VaJjwrnokFpvL9xPw9eNaTVzQmPf7iN3YerWHjH+DPe6CQiPDJjGFf+6TMe/3Abv/vuCLYeOMrXu0uZe8XgVr93j4RorhuTwXVjMlBV9h6pPnkReFneISqO13PliO5MyTo3F6QHdu9CWIiQt7/ilP9POXvK2Fdazb3Tss5JOYw5wZugLwJ6eSxnuNc1ZRZwl+cKVS1y/90lIp/gar/fefqhBnCPW7KZIT3imXvF4NO6ADbV7ttWM0b15MMth/h695FW9UbJdTfZ3DyhN5MGnP34Qd3j+OHEPrywag83jevNK1/vJTIshBuze531OG+JCJmpsWSmxnLzhD44G5Tth47Rx0cXm70RGRZKVre404YsfmtNIbERoVw+zGZ1MueWN79jc4AsEekrIhG4wnxx451EZDCQBHzpsS5JRCLdz1OByZy5bd8Av//7NxyurOX3149osp+3r0MeYOrgbsREhLJkw/4WH1tT7+QX7iabB67wrjfLzy8dSHJMBL96ZxPvrHPdHdpeQ+ee6AUTE3FuexK7xqavODm3bE29kw82HeCKET3OeVmMaTboVdUBzAGWAVuB11U1T0TmiYhnV8lZwCI9dRLaIUCuiGwAVuJqo7egP4PVu0tZ+PU+fjS5LyMzEs/Z+0ZHhDJtaDf+b/NB6hwNLTr28WWuJpv/vH6k12PTJESH88srBrOxsIKa+qa7VHZ2w3rGc7iyjuJjtQAsyztIZa2D68dk+LlkJhh59S9TVZcCSxute6jR8iNNHLcKGNGG8gWNWoeTB97eSEZSNPddNvCcv/+M83ry3vr9fJ5fwiWDvbsoumZvGX/1ssmmse+NyeDN3EIiw0MY2jPw7g4dnv7tkMXd4qN4a20R6YnRjO97+j0ExrQ3+w3ZQcxfuZOdJVW8+KNxfvlpPyUrjYTocBav3+9V0Nc6nPzyrY30iI9irpdNNp5CQoRXftxk562AMKRHPCKunjfDeibw+Y4S7rp4QLs0vRnTHAv6DmD7oWP8+ZN8vjva1QXSHyLCQrhyRHfeW7+f43XOZmcmmr9yJ/nFlTz//86nSyuHE26PsWY6ii6RYWSmxJK3v4J314XQoHCdNdsYPwncf2mdhKryyOI8ukSG8et2vDXfG9eM7El1nZMV3xw6637bDn77xXTxoJZNzhFMhvWMZ3PRUd5aW8iY3on0TY1t/iBj2oEFvZ99nn+YVTuPcM/ULFLOMvH0uTC+Xwpd4yLP2vvG2aD88q2NxEWF829X26BcZzOsZwJF5cfZfqiS68fa2bzxHwt6P1JV/mvZNtITo/nBeP/fERwaIlw1sgcrt5VwtKa+yX1eWLWH9QXlPHzNUJswoxknhiyOCAvh6hE9/VwaE8ws6P1oWd5BNhZW8PNLs4gMa/nUde1hxnk9qXM0sMw9jICngtJqHl+2jUsGd2XGeRZczTkR9NOGdCMhJtzPpTHBzC7G+omzQXn8w+0M6NqlQ12kG9UrkV7J0bz81V6iI0JJjo0gtUskybGuG5xCQ4TfXju8U81c5S8pXSL5/fUjmNAvxd9FMUHOgt5P3l5bSH5xJU/fPKZDDVcrItyY3YvHP9zOnIXrTtv+6Mxh9PTxHK6B7Mbz/d8kZ4wFvR/UOpz890c7GJmR0CHHPbnr4gHceH5vjlTVUlpZx5GqOkqr6ugSGcZ3R9vwusZ0Nhb0frDw630UlR/nsetHdMgmEBEhLS6StDj/9gIyxviGXYw9x6pqHcxfmc/Efilc0MJhA4wxpjUs6M+x57/YzeHKOn4xfVCHPJs3xgQeC/pzqORYLU//YxfThnZjTBun7TPGGG9Z0J9Djy/bRq3Dya+u9O9QB8aY4GJBf45sLqrg9TUF3DYp08Y8McacUxb054CqMm/JFpJiIphzic0Xaow5t7wKehGZLiLbRCRfROY2sf2PIrLe/dguIuUe224VkR3ux60+LHunsXTTQVbvKeX+ywaSEG23whtjzq1m+9GLSCgwH5gGFAI5IrLYc0pAVb3XY/+7cU0AjogkAw8D2YACa9zHlvm0Fh1YTb2Tf1+6lcHd45hld0kaY/zAmzP6cUC+qu5S1TpgETDzLPvfBLzqfn45sFxVS93hvhyY3pYCdzZ//Xw3ReXHeeiaoR1qqANjTPDwJujTgQKP5UL3utOISB+gL/BxS44VkdkikisiuSUlJd6Uu1M4dLSG+SvzuXxYNyb1t5ujjDH+4eshEGYBb6qqsyUHqeoCYAFAdna2+rhM7a7ieD3/sXQrx2ocxEaGEhMRRpfIMNYVlOFwKg9eaRN0GGP8x5ugLwJ6eSxnuNc1ZRZwV6NjL2p07CfeF6/jczYod7+6jlX5h+mTEkNVrZOqOgdVtQ4aFO6ZmkXvlBh/F9MYE8S8CfocIEtE+uIK7lnADxrvJCKDgSTgS4/Vy4B/F5ETt4FeBjzQphJ3MI/931Y+3V7Cf1w3gpvGfXuxVVWpdTQQFd4xJhQxxgSvZoNeVR0iMgdXaIcCz6lqnojMA3JVdbF711nAIlVVj2NLReRRXF8WAPNUtdS3VfCft9YU8pfPdnPrxD6nhDy4RoC0kDfGdATikcsdQnZ2tubm5vq7GM1au6+MWc98RXZmEi/+aBzhoXbvmTHGf0RkjapmN7XN0qkVDlbU8M9/W0P3hCjm/2CMhbwxpkOziUdaqKbeyey/5VJd6+CVO8aTFBvh7yIZY8xZWdC30Ntri9hYWMHTN49lYLc4fxfHGGOaZW0OLfTOukIGdO3C5cO6+bsoxhjjFQv6FigorSZnTxnfHZ1us0MZYzoNC/oWeGed6z6xa0c3OQKEMcZ0SBb0XlJV3llXxIR+yaQnRvu7OMYY4zULei+tLyhn9+Eqrhud4e+iGGNMi1jQe+nttUVEhoVwxYju/i6KMca0iAW9F+ocDSzZuJ9pQ7sRF2UzRBljOhcLei98sq2Y8up6rhtjF2GNMZ2PBb0X3llXREpsBFOy0vxdFGOMaTEL+mZUVNezYmsx15zX08a0McZ0SpZczfhg0wHqnA3WbGOM6bQs6JvxzrpC+qfFMiI9wd9FMcaYVvEq6EVkuohsE5F8EZl7hn1uEJEtIpInIgs91jtFZL37sbipYzuqE0MeXDcmw4Y8MMZ0Ws2OXikiocB8YBpQCOSIyGJV3eKxTxauKQInq2qZiHT1eInjqjrKt8Vuf3WOBh5ZnEeIwMxRPf1dHGOMaTVvzujHAfmquktV64BFwMxG+/wYmK+qZQCqWuzbYp5b9c4G7n51LSu+KeY3M4eTkWSTextjOi9vgj4dKPBYLnSv8zQQGCgiX4jIVyIy3WNblIjkutdf27bitj+Hs4GfL1rPsrxDPHLNUG6Z0MffRTLGmDbx1cQjYUAWcBGQAXwqIiNUtRzoo6pFItIP+FhENqnqTs+DRWQ2MBugd+9TJ9k+l5wNyn2vb+CDTQf49VVDuG1yX7+VxRhjfMWbM/oioJfHcoZ7nadCYLGq1qvqbmA7ruBHVYvcf3cBnwCjG7+Bqi5Q1WxVzU5L889NSc4G5RdvbGDxhv38cvpg7pjSzy/lMMYYX/Mm6HOALBHpKyIRwCygce+Zd3GdzSMiqbiacnaJSJKIRHqsnwxsoYM5XFnLnS+v4e11Rdw/bSA/uai/v4tkjDE+02zTjao6RGQOsAwIBZ5T1TwRmQfkqupi97bLRGQL4AR+oapHRGQS8IyINOD6UnnMs7dOR/D3zQd58J1NHKtx8G9XD+X2C6y5xhgTWERV/V2GU2RnZ2tubm67v09FdT2PLMnjnXVFDOsZzx9uGMWg7jbZtzGmcxKRNaqa3dQ2X12M7VRW7y7l7lfXcriyjp9NzWLOJQNsHBtjTMAKyqB/9P0thIWE8O5PJzMiw4Y2MMYEtqA7jW1oUHYUH2P68O4W8saYoBB0QV9Ufpya+gYGdO3i76IYY8w5EXRBn19cCUCWBb0xJkgEbdDbGb0xJlgEXdDvKD5GapcIEmMi/F0UY4w5J4Iu6POLK+mfZmfzxpjgEVRBr6rkF1das40xJqgEVdCXVNZytMZhQW+MCSpBFfR2IdYYE4yCKuh3nuxaaWPaGGOCR1AF/Y7iSrpEhtEtPtLfRTHGmHMmqII+v7iS/l27ICL+LooxxpwzQRf0A6xrpTEmyARN0B+tqaf4WK1diDXGBB2vgl5EpovINhHJF5G5Z9jnBhHZIiJ5IrLQY/2tIrLD/bjVVwVvKetxY4wJVs2ORy8iocB8YBquScBzRGSx55SAIpIFPABMVtUyEenqXp8MPAxkAwqscR9b5vuqnJ0NZmaMCVbenNGPA/JVdZeq1gGLgJmN9vkxMP9EgKtqsXv95cByVS11b1sOTPdN0Vsmv7iSiLAQeiXH+OPtjTHGb7wJ+nSgwGO50L3O00BgoIh8ISJficj0Fhx7TuQXV9IvNZbQEOtxY4wJLr6aSjAMyAIuAjKAT0VkhLcHi8hsYDZA7969fVSkU+UXV9qMUsaYoOTNGX0R0MtjOcO9zlMhsFhV61V1N7AdV/B7cyyqukBVs1U1Oy0trSXl90pNvZOCsmrrWmmMCUreBH0OkCUifUUkApgFLG60z7u4zuYRkVRcTTm7gGXAZSKSJCJJwGXudefUrpIqVK3HjTEmODXbdKOqDhGZgyugQ4HnVDVPROYBuaq6mG8DfQvgBH6hqkcARORRXF8WAPNUtbQ9KnI2+SXuHjfdLOiNMcHHqzZ6VV0KLG207iGP5wrc5340PvY54Lm2FbNt8g8dI0Sgb2qsP4thjDF+ERR3xuaXVNI7OYbIsFB/F8UYY8654Ah6m1XKGBPEAj7oHc4Gdh+uor8FvTEmSAV80O8rrabeqda10hgTtAI+6G0wM2NMsAv4oN9hQW+MCXIBH/Q7iyvpHh9FXFS4v4tijDF+EfBBn19iPW6MMcEt4IN+z+Equ1HKGBPUAjroHc4GjtY4SOkS4e+iGGOM3wR00JcfrwcgKcaC3hgTvAI66Muq6gBIjLELscaY4BXYQV/tOqNPjrUzemNM8ArwoHed0VvTjTEmmAV00JdXW9ONMcYEdNCXVlnTjTHGeBX0IjJdRLaJSL6IzG1i+20iUiIi692POzy2OT3WN56CsF2VV9cRERZCdLiNQ2+MCV7NzjAlIqHAfGAarknAc0RksapuabTra6o6p4mXOK6qo9pc0lYoq64jKSYcEfHH2xtjTIfgzRn9OCBfVXepah2wCJjZvsXyjbLqersQa4wJet4EfTpQ4LFc6F7X2PUislFE3hSRXh7ro0QkV0S+EpFr21DWFiurqrOgN8YEPV9djF0CZKrqSGA58KLHtj6qmg38APhvEenf+GARme3+MsgtKSnxUZHcTTex1uPGGBPcvAn6IsDzDD3Dve4kVT2iqrXuxWeBsR7bitx/dwGfAKMbv4GqLlDVbFXNTktLa1EFzqa8up5EO6M3xgQ5b4I+B8gSkb4iEgHMAk7pPSMiPTwWZwBb3euTRCTS/TwVmAw0vojbLhoalLLqOpIt6I0xQa7ZXjeq6hCROcAyIBR4TlXzRGQekKuqi4F7RGQG4ABKgdvchw8BnhGRBlxfKo810VunXRyrcdCgdrOUMcY0G/QAqroUWNpo3UMezx8AHmjiuFXAiDaWsVVs+ANjjHEJ2DtjTwa9XYw1xgS5wA96O6M3xgS5wA36Kpt0xBhjIJCD3s7ojTEGCPCgDxGIi/LqerMxxgSsAA561zg3ISE2oJkxJrgFbNCXV9dZH3pjjCGAg76sykauNMYYCOSgr64jyWaWMsaYAA96a7oxxpjADHpVtUlHjDHGLSCD/ni9kzpHgw1RbIwxBGjQl1a5bpZKtnFujDEmMIO+vNo1/IGd0RtjTIAGvQ1/YIwx3wrIoLemG2OM+ZZXQS8i00Vkm4jki8jcJrbfJiIlIrLe/bjDY9utIrLD/bjVl4U/E2u6McaYbzU74peIhALzgWlAIZAjIoubmBLwNVWd0+jYZOBhIBtQYI372DKflP4MTjTdJEbbGb0xxnhzRj8OyFfVXapaBywCZnr5+pcDy1W11B3uy4HprSuq98qr64mLCiMsNCBbpowxpkW8ScJ0oMBjudC9rrHrRWSjiLwpIr1acqyIzBaRXBHJLSkp8bLoZ1ZaVUeyDX9gjDGA7y7GLgEyVXUkrrP2F1tysKouUNVsVc1OS0trc2HKquusfd4YY9y8CfoioJfHcoZ73UmqekRVa92LzwJjvT22PZRX19s4N8YY4+ZN0OcAWSLSV0QigFnAYs8dRKSHx+IMYKv7+TLgMhFJEpEk4DL3unZVVl1Hsp3RG2MM4EWvG1V1iMgcXAEdCjynqnkiMg/IVdXFwD0iMgNwAKXAbe5jS0XkUVxfFgDzVLW0HepxirIqa7oxxpgTvJpQVVWXAksbrXvI4/kDwANnOPY54Lk2lLFF6hwNVNU5renGGGPcAq7/YfmJPvTW68YYY4AADPpSd9BbG70xxrgEXNCXVbmGP7CmG2OMcQm4oD/ZdGNn9MYYAwRg0Je5BzRLspErjTEGCMigt7HojTHGU+AFfVUd0eGhRIWH+rsoxhjTIQRe0NvwB8YYc4oADPo6kqwPvTHGnBSYQW/t88YYc1LABX15dT2J1nRjjDEnBVzQ2xm9McacKqCC3tmgVByvtzZ6Y4zxEFBBX3G8HlUb/sAYYzwFVNDbzVLGGHO6gAr6E+PcWNONMcZ8y6ugF5HpIrJNRPJFZO5Z9rteRFREst3LmSJyXETWux9P+6rgTSm1kSuNMeY0zc4wJSKhwHxgGlAI5IjIYlXd0mi/OOBnwNeNXmKnqo7yTXHPzppujDHmdN6c0Y8D8lV1l6rWAYuAmU3s9yjwe6DGh+VrkW+HKLYzemOMOcGboE8HCjyWC93rThKRMUAvVf2gieP7isg6EfmHiExp6g1EZLaI5IpIbklJibdlP01pVT3hoUKXSK+mwjXGmKDQ5ouxIhIC/AG4v4nNB4DeqjoauA9YKCLxjXdS1QWqmq2q2Wlpaa0uS3l1HYkxEYhIq1/DGGMCjTdBXwT08ljOcK87IQ4YDnwiInuACcBiEclW1VpVPQKgqmuAncBAXxS8Ka67Yq3ZxhhjPHkT9DlAloj0FZEIYBaw+MRGVa1Q1VRVzVTVTOArYIaq5opImvtiLiLSD8gCdvm8Fm6uIYrtQqwxxnhqNuhV1QHMAZYBW4HXVTVPROaJyIxmDr8Q2Cgi64E3gTtVtbSNZT6jsiob58YYYxrz6qqlqi4FljZa99AZ9r3I4/lbwFttKF+LlFXX21yxxhjTSMDcGauqJy/GGmOM+VbABH1lrQNHg5JsQW+MMacImKB3OJWrR/ZgUPc4fxfFGGM6lIC5sygpNoKnfjDG38UwxpgOJ2DO6I0xxjTNgt4YYwKcBb0xxgQ4C3pjjAlwFvTGGBPgLOiNMSbAWdAbY0yAs6A3xpgAJ6rq7zKcQkRKgL1teIlU4LCPiuNvgVQXCKz6BFJdwOrTkXlblz6q2uTMTR0u6NtKRHJVNdvf5fCFQKoLBFZ9AqkuYPXpyHxRF2u6McaYAGdBb4wxAS4Qg36BvwvgQ4FUFwis+gRSXcDq05G1uS4B10ZvjDHmVIF4Rm+MMcZDwAS9iEwXkW0iki8ic/1dnpYSkedEpFhENnusSxaR5SKyw/03yZ9l9JaI9BKRlSKyRUTyRORn7vWdtT5RIrJaRDa46/Mb9/q+IvK1+zP3moh0munNRCRURNaJyPvu5c5clz0isklE1otIrntdp/ysAYhIooi8KSLfiMhWEZnY1voERNCLSCgwH7gCGArcJCJD/VuqFnsBmN5o3VxghapmASvcy52BA7hfVYcCE4C73P8/Omt9aoFLVPU8YBQwXUQmAL8H/qiqA4Ay4Hb/FbHFfgZs9VjuzHUBuFhVR3l0Q+ysnzWAJ4G/q+pg4Dxc/5/aVh9V7fQPYCKwzGP5AeABf5erFfXIBDZ7LG8Derif9wC2+buMrazXe8C0QKgPEAOsBcbjuoklzL3+lM9gR34AGe6wuAR4H5DOWhd3efcAqY3WdcrPGpAA7MZ9/dRX9QmIM3ogHSjwWC50r+vsuqnqAffzg0A3fxamNUQkExgNfE0nro+7qWM9UAwsB3YC5arqcO/SmT5z/w38K9DgXk6h89YFQIEPRWSNiMx2r+usn7W+QAnwvLtp7VkRiaWN9QmUoA946voq71RdpESkC/AW8HNVPeq5rbPVR1WdqjoK19nwOGCwf0vUOiJyNVCsqmv8XRYfukBVx+Bqur1LRC703NjJPmthwBjgz6o6GqiiUTNNa+oTKEFfBPTyWM5wr+vsDolIDwD332I/l8drIhKOK+RfUdW33as7bX1OUNVyYCWu5o1EEQlzb+osn7nJwAwR2QMswtV88ySdsy4AqGqR+28x8A6uL+LO+lkrBApV9Wv38pu4gr9N9QmUoM8Bstw9ByKAWcBiP5fJFxYDt7qf34qrrbvDExEB/gpsVdU/eGzqrPVJE5FE9/NoXNcbtuIK/O+5d+sU9VHVB1Q1Q1Uzcf07+VhV/4lOWBcAEYkVkbgTz4HLgM100s+aqh4ECkRkkHvVVGALba2Pvy8++PAixpXAdlxtpw/6uzytKP+rwAGgHte3+u242k5XADuAj4Bkf5fTy7pcgOun5UZgvftxZSeuz0hgnbs+m4GH3Ov7AauBfOANINLfZW1hvS4C3u/MdXGXe4P7kXfi335n/ay5yz4KyHV/3t4FktpaH7sz1hhjAlygNN0YY4w5Awt6Y4wJcBb0xhgT4CzojTEmwFnQG2NMgLOgN8aYAGdBb4wxAc6C3hhjAtz/B2BttR/DKta1AAAAAElFTkSuQmCC\n" + }, + "metadata": { + "needs_background": "light" + } + } + ], + "source": [ + "plt.plot(history_dict['accuracy'])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ] +} \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/6 加载tf.data.dataset数据.ipynb b/Tensorflow/TensorFlow2.0/6 加载tf.data.dataset数据.ipynb new file mode 100644 index 00000000..ab4920c1 --- /dev/null +++ b/Tensorflow/TensorFlow2.0/6 加载tf.data.dataset数据.ipynb @@ -0,0 +1,358 @@ +{ + "metadata": { + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.0" + }, + "orig_nbformat": 2, + "kernelspec": { + "name": "python380jvsc74a57bd038740d3277777e2cd7c6c2cc9d8addf5118fdf3f82b1b39231fd12aeac8aee8b", + "display_name": "Python 3.8.0 64-bit" + } + }, + "nbformat": 4, + "nbformat_minor": 2, + "cells": [ + { + "source": [ + "# 数据流水线技术" + ], + "cell_type": "markdown", + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import functools\n", + "\n", + "import numpy as np\n", + "import pandas as pd \n", + "import tensorflow as tf\n", + "import tensorflow_datasets as tfds" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "TRAIN_DATA_URL = \"https://storage.googleapis.com/tf-datasets/titanic/train.csv\"\n", + "TEST_DATA_URL = \"https://storage.googleapis.com/tf-datasets/titanic/eval.csv\"\n", + "\n", + "train_file_path = tf.keras.utils.get_file(\"train.csv\", TRAIN_DATA_URL)\n", + "test_file_path = tf.keras.utils.get_file(\"eval.csv\", TEST_DATA_URL)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + " survived sex age n_siblings_spouses parch fare class deck \\\n", + "0 0 male 22.0 1 0 7.2500 Third unknown \n", + "1 1 female 38.0 1 0 71.2833 First C \n", + "2 1 female 26.0 0 0 7.9250 Third unknown \n", + "3 1 female 35.0 1 0 53.1000 First C \n", + "4 0 male 28.0 0 0 8.4583 Third unknown \n", + "\n", + " embark_town alone \n", + "0 Southampton n \n", + "1 Cherbourg n \n", + "2 Southampton y \n", + "3 Southampton n \n", + "4 Queenstown y " + ], + "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
survivedsexagen_siblings_spousesparchfareclassdeckembark_townalone
00male22.0107.2500ThirdunknownSouthamptonn
11female38.01071.2833FirstCCherbourgn
21female26.0007.9250ThirdunknownSouthamptony
31female35.01053.1000FirstCSouthamptonn
40male28.0008.4583ThirdunknownQueenstowny
\n
" + }, + "metadata": {}, + "execution_count": 3 + } + ], + "source": [ + "# 用来显示一下数据的内容。并非使用pandas进行数据读取。\n", + "df = pd.read_csv(train_file_path)\n", + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "# 1 从文件中直接读取csv数据并创建dataset\n", + "CSV_COLUMNS = ['survived', 'sex', 'age', 'n_siblings_spouses', 'parch', 'fare', 'class', 'deck', 'embark_town', 'alone']\n", + "\n", + "LABEL_COLUMN = 'survived'\n", + "LABELS = [0, 1]\n", + "\n", + "def get_dataset(file_path):\n", + " dataset = tf.data.experimental.make_csv_dataset(\n", + " file_path,\n", + " batch_size=12, # 为了示例更容易展示,手动设置较小的值\n", + " label_name=LABEL_COLUMN,\n", + " na_value=\"?\",\n", + " num_epochs=1,\n", + " ignore_errors=True)\n", + " return dataset\n", + "\n", + "raw_train_data = get_dataset(train_file_path)\n", + "raw_test_data = get_dataset(test_file_path)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "EXAMPLES: \n OrderedDict([('sex', ), ('age', ), ('n_siblings_spouses', ), ('parch', ), ('fare', ), ('class', ), ('deck', ), ('embark_town', ), ('alone', )]) \n\nLABELS: \n tf.Tensor([0 1 1 0 0 0 1 0 1 0 0 1], shape=(12,), dtype=int32)\n" + ] + } + ], + "source": [ + "# 1 加载数据,并查看已经加载的第一个数据。\n", + "examples, labels = next(iter(raw_train_data)) # 第一个批次\n", + "print(\"EXAMPLES: \\n\", examples, \"\\n\")\n", + "print(\"LABELS: \\n\", labels)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "# 2 对数据预处理——参考结构化数据处理的部分。文本类数据转换成数字\n", + "CATEGORIES = {\n", + " 'sex': ['male', 'female'],\n", + " 'class' : ['First', 'Second', 'Third'],\n", + " 'deck' : ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J'],\n", + " 'embark_town' : ['Cherbourg', 'Southhampton', 'Queenstown'],\n", + " 'alone' : ['y', 'n']\n", + "}\n", + "\n", + "categorical_columns = []\n", + "for feature, vocab in CATEGORIES.items():\n", + " cat_col = tf.feature_column.categorical_column_with_vocabulary_list(\n", + " key=feature, vocabulary_list=vocab)\n", + " categorical_columns.append(tf.feature_column.indicator_column(cat_col))" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "# 2 数据预处理——特征数据,数值数据标准化\n", + "def process_continuous_data(mean, data):\n", + " # 标准化数据\n", + " data = tf.cast(data, tf.float32) * 1/(2*mean)\n", + " return tf.reshape(data, [-1, 1])\n", + "\n", + "\n", + "MEANS = {\n", + " 'age' : 29.631308,\n", + " 'n_siblings_spouses' : 0.545455,\n", + " 'parch' : 0.379585,\n", + " 'fare' : 34.385399\n", + "}\n", + "\n", + "numerical_columns = []\n", + "\n", + "for feature in MEANS.keys():\n", + " num_col = tf.feature_column.numeric_column(feature, normalizer_fn=functools.partial(process_continuous_data, MEANS[feature]))\n", + " numerical_columns.append(num_col)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "# 2 数据处理——创建数据预处理层\n", + "preprocessing_layer = tf.keras.layers.DenseFeatures(categorical_columns+numerical_columns)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "# 3 构建模型\n", + "model = tf.keras.Sequential([\n", + " preprocessing_layer,\n", + " tf.keras.layers.Dense(128, activation='relu'),\n", + " tf.keras.layers.Dense(128, activation='relu'),\n", + " tf.keras.layers.Dense(1, activation='sigmoid'),\n", + "])\n", + "\n", + "model.compile(\n", + " loss='binary_crossentropy',\n", + " optimizer='adam',\n", + " metrics=['accuracy'])\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Epoch 1/20\n", + "WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: OrderedDict([('sex', ), ('age', ), ('n_siblings_spouses', ), ('parch', ), ('fare', ), ('class', ), ('deck', ), ('embark_town', ), ('alone', )])\n", + "Consider rewriting this model with the Functional API.\n", + "WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: OrderedDict([('sex', ), ('age', ), ('n_siblings_spouses', ), ('parch', ), ('fare', ), ('class', ), ('deck', ), ('embark_town', ), ('alone', )])\n", + "Consider rewriting this model with the Functional API.\n", + "53/53 [==============================] - 1s 2ms/step - loss: 0.5951 - accuracy: 0.6944\n", + "Epoch 2/20\n", + "53/53 [==============================] - 0s 1ms/step - loss: 0.4517 - accuracy: 0.7968\n", + "Epoch 3/20\n", + "53/53 [==============================] - 0s 1ms/step - loss: 0.4124 - accuracy: 0.8221\n", + "Epoch 4/20\n", + "53/53 [==============================] - 0s 2ms/step - loss: 0.3807 - accuracy: 0.8331\n", + "Epoch 5/20\n", + "53/53 [==============================] - 0s 1ms/step - loss: 0.4360 - accuracy: 0.8041\n", + "Epoch 6/20\n", + "53/53 [==============================] - 0s 1ms/step - loss: 0.3664 - accuracy: 0.8444\n", + "Epoch 7/20\n", + "53/53 [==============================] - 0s 1ms/step - loss: 0.3733 - accuracy: 0.8437\n", + "Epoch 8/20\n", + "53/53 [==============================] - 0s 1ms/step - loss: 0.3783 - accuracy: 0.8281\n", + "Epoch 9/20\n", + "53/53 [==============================] - 0s 1ms/step - loss: 0.4091 - accuracy: 0.8267\n", + "Epoch 10/20\n", + "53/53 [==============================] - 0s 997us/step - loss: 0.3433 - accuracy: 0.8412\n", + "Epoch 11/20\n", + "53/53 [==============================] - 0s 863us/step - loss: 0.3637 - accuracy: 0.8352\n", + "Epoch 12/20\n", + "53/53 [==============================] - 0s 959us/step - loss: 0.3832 - accuracy: 0.8338\n", + "Epoch 13/20\n", + "53/53 [==============================] - 0s 921us/step - loss: 0.3209 - accuracy: 0.8688\n", + "Epoch 14/20\n", + "53/53 [==============================] - 0s 1ms/step - loss: 0.3284 - accuracy: 0.8708\n", + "Epoch 15/20\n", + "53/53 [==============================] - 0s 1ms/step - loss: 0.3374 - accuracy: 0.8555\n", + "Epoch 16/20\n", + "53/53 [==============================] - 0s 997us/step - loss: 0.3747 - accuracy: 0.8372\n", + "Epoch 17/20\n", + "53/53 [==============================] - 0s 1ms/step - loss: 0.3610 - accuracy: 0.8367\n", + "Epoch 18/20\n", + "53/53 [==============================] - 0s 1ms/step - loss: 0.3312 - accuracy: 0.8789\n", + "Epoch 19/20\n", + "53/53 [==============================] - 0s 940us/step - loss: 0.3279 - accuracy: 0.8509\n", + "Epoch 20/20\n", + "53/53 [==============================] - 0s 921us/step - loss: 0.3229 - accuracy: 0.8603\n" + ] + }, + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "" + ] + }, + "metadata": {}, + "execution_count": 10 + } + ], + "source": [ + "train_data = raw_train_data.shuffle(500)\n", + "test_data = raw_test_data\n", + "model.fit(train_data, epochs=20)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: OrderedDict([('sex', ), ('age', ), ('n_siblings_spouses', ), ('parch', ), ('fare', ), ('class', ), ('deck', ), ('embark_town', ), ('alone', )])\n", + "Consider rewriting this model with the Functional API.\n", + "22/22 [==============================] - 0s 1ms/step - loss: 0.4477 - accuracy: 0.8182\n", + "\n", + "\n", + "Test Loss 0.4477050304412842, Test Accuracy 0.8181818127632141\n" + ] + } + ], + "source": [ + "# 4 验证模型\n", + "test_loss, test_accuracy = model.evaluate(test_data)\n", + "\n", + "print('\\n\\nTest Loss {}, Test Accuracy {}'.format(test_loss, test_accuracy))" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "WARNING:tensorflow:Layers in a Sequential model should only have a single input tensor, but we receive a input: OrderedDict([('sex', ), ('age', ), ('n_siblings_spouses', ), ('parch', ), ('fare', ), ('class', ), ('deck', ), ('embark_town', ), ('alone', )])\n", + "Consider rewriting this model with the Functional API.\n", + "Predicted survival: 12.24% | Actual outcome: SURVIVED\n", + "Predicted survival: 10.38% | Actual outcome: SURVIVED\n", + "Predicted survival: 13.67% | Actual outcome: DIED\n", + "Predicted survival: 64.86% | Actual outcome: SURVIVED\n", + "Predicted survival: 4.28% | Actual outcome: DIED\n", + "Predicted survival: 27.77% | Actual outcome: DIED\n", + "Predicted survival: 13.21% | Actual outcome: DIED\n", + "Predicted survival: 8.61% | Actual outcome: SURVIVED\n", + "Predicted survival: 9.82% | Actual outcome: SURVIVED\n", + "Predicted survival: 60.03% | Actual outcome: SURVIVED\n" + ] + } + ], + "source": [ + "predictions = model.predict(test_data)\n", + "\n", + "# 显示部分结果\n", + "for prediction, survived in zip(predictions[:10], list(test_data)[0][1][:10]):\n", + " print(\"Predicted survival: {:.2%}\".format(prediction[0]),\n", + " \" | Actual outcome: \",\n", + " (\"SURVIVED\" if bool(survived) else \"DIED\"))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ] +} \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/7 数据流水线.ipynb b/Tensorflow/TensorFlow2.0/7 数据流水线.ipynb new file mode 100644 index 00000000..8d17b11b --- /dev/null +++ b/Tensorflow/TensorFlow2.0/7 数据流水线.ipynb @@ -0,0 +1,85 @@ +{ + "metadata": { + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": 3 + }, + "orig_nbformat": 2 + }, + "nbformat": 4, + "nbformat_minor": 2, + "cells": [ + { + "source": [ + "# tf.data.dataset常用的API\n", + "\n", + "tf.data API 围绕可组合转换而设计,旨在为用户提供灵活性。虽然这些转换中有很多都是可以交替的,但某些转换的顺序会对性能产生影响。\n", + "\n", + "## 1 map映射和batch批次\n", + "调用传递给 map 转换的用户定义函数具有与调度和执行用户定义函数相关的开销。通常,与函数执行的计算量相比,这种开销很小。但是,如果 map 几乎不起作用,那么这种开销可能会占总成本的很大一部分。在这种情况下,建议向量化用户定义的函数(即,让该函数一次对一批输入进行操作),并在 map 转换之前先应用 batch 转换。\n", + "\n", + "## 2 map映射和cache缓存\n", + "\n", + "tf.data.Dataset.cache 转换可以在内存或本地存储中缓存数据集。如果传递给 map 转换的用户定义函数代价很高,则只要内存或本地存储仍可以容纳生成的数据集,就可以在映射转换后应用缓存转换。如果用户定义的函数会增加存储数据集所需的空间,并超出缓存容量,请考虑在训练作业之前预处理数据以减少资源消耗量。\n", + "\n", + "## 3 map映射和interleave交错/prefetch预取/shuffle重排\n", + "许多转换(包括map interleave、prefetch 和 shuffle)都维持一个内部元素缓冲区。如果传递给 map 转换的用户定义函数改变了元素的大小,那么映射转换的顺序和缓冲元素的转换会影响内存使用量。通常,我们建议选择可以减少内存占用的顺序,除非为了提高性能而需要采用不同的顺序(例如,为了混合映射和批次转换)。\n", + "\n", + "## 4 repeat重复和shuffle重排\n", + "tf.data.Dataset.repeat 转换会将输入数据重复有限(或无限)次;每次数据重复通常称为一个周期。tf.data.Dataset.shuffle 转换会随机化数据集样本的顺序。\n", + "\n", + "如果在 shuffle 转换之前应用 repeat 转换,则系统会对周期边界进行模糊处理。也就是说,某些元素可以在其他元素出现之前重复出现。另一方面,如果在重复转换之前应用 shuffle 转换,那么在每个周期开始时性能可能会降低,因为需要初始化 shuffle 转换的内部状态。换言之,前者(repeat 在 shuffle 之前)可提供更好的性能,而后者(repeat 在 shuffle 之前)可提供更强的排序保证。\n", + "\n", + "如果可能,建议您使用 tf.contrib.data.shuffle_and_repeat 混合转换,这样可以达到两全其美的效果(良好的性能和强大的排序保证)。否则,我们建议在repeat重复之前进行shuffle重排。" + ], + "cell_type": "markdown", + "metadata": {} + }, + { + "source": [ + "# Pipeline Structure的结构\n", + "\n", + "我们可以将典型的 TensorFlow 训练输入流水线视为 ETL 流程:\n", + "\n", + "1. Extract:从永久性存储(可以是 HDD 或 SSD 等本地存储或 GCS 或 HDFS 等远程存储)读取数据。\n", + "2. Transform:使用CPU核心解析数据并对其执行预处理操作,例如图像解压缩、数据增强转换(例如随机裁剪、翻转和颜色失真)、重排和批处理。\n", + "3. Load:将转换后的数据加载到执行机器学习模型的加速器设备(例如,GPU 或 TPU)上。" + ], + "cell_type": "markdown", + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# tf.data说明\n", + "\n", + "## 加载数据的方式\n", + "### 从内存中加载数据\n", + "例如使用numpy.load()或者pandas.read_csv()将数据加载到内存中。然后使用tf.data.dataset方法将数据加载到tensorflow中。_\n", + "tf.data.Dataset.from_tensors() or tf.data.Dataset.from_tensor_slices()\n", + "### 从文件中加载数据\n", + "tf.data.TFRecordDataset()\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# 数据流水线读取多个文件实例(并非广义上的数据流水线)\n" + ] + } + ] +} \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/8 加载tf.Record数据.ipynb b/Tensorflow/TensorFlow2.0/8 加载tf.Record数据.ipynb new file mode 100644 index 00000000..e69de29b diff --git a/Tensorflow/TensorFlow2.0/9 结构化数据.ipynb b/Tensorflow/TensorFlow2.0/9 结构化数据.ipynb new file mode 100644 index 00000000..a16f2f12 --- /dev/null +++ b/Tensorflow/TensorFlow2.0/9 结构化数据.ipynb @@ -0,0 +1,242 @@ +{ + "metadata": { + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.0" + }, + "orig_nbformat": 2, + "kernelspec": { + "name": "python380jvsc74a57bd038740d3277777e2cd7c6c2cc9d8addf5118fdf3f82b1b39231fd12aeac8aee8b", + "display_name": "Python 3.8.0 64-bit" + } + }, + "nbformat": 4, + "nbformat_minor": 2, + "cells": [ + { + "source": [ + "# 结构化数据分类" + ], + "cell_type": "markdown", + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "\n", + "import tensorflow as tf\n", + "\n", + "from tensorflow import feature_column\n", + "from tensorflow.keras import layers\n", + "from sklearn.model_selection import train_test_split" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# 1 加载数据\n", + "dataframe = pd.read_csv(\"simple.csv\")\n", + "dataframe.head()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# 2 对数据进行预处理,将数据分割成多分6:2:2的三分数据集。没想到它也是用sklearn对数据集进行划分。\n", + "train, test = train_test_split(dataframe, test_size=0.2)\n", + "train, val = train_test_split(train, test_size=0.2)\n", + "print(len(train), 'train examples')\n", + "print(len(val), 'validation examples')\n", + "print(len(test), 'test examples')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# 3 创建数据流水线。将数据转换成,TensorFlow中的tensor\n", + "# 一种从 Pandas Dataframe 创建 tf.data 数据集的实用程序方法(utility method)。我们将使用 tf.data 包装 dataframe。这让我们能将特征列作为一座桥梁,该桥梁将 Pandas dataframe 中的列映射到用于训练模型的特征。如果我们使用一个非常大的 CSV 文件(非常大以至于它不能放入内存),我们将使用 tf.data 直接从磁盘读取它。\n", + "def df_to_dataset(dataframe, shuffle=True, batch_size=32):\n", + " dataframe = dataframe.copy()\n", + " labels = dataframe.pop('Class')\n", + "# print(pd.value_counts(labels))\n", + " ds = tf.data.Dataset.from_tensor_slices((dict(dataframe), labels))\n", + " if shuffle:\n", + " ds = ds.shuffle(buffer_size=len(dataframe))\n", + " ds = ds.batch(batch_size)\n", + " return ds" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "batch_size = 60 # 小批量大小用于演示\n", + "train_ds = df_to_dataset(train, batch_size=batch_size)\n", + "val_ds = df_to_dataset(val, shuffle=False, batch_size=batch_size)\n", + "test_ds = df_to_dataset(test, shuffle=False, batch_size=batch_size)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# 理解输入流水线中的数据\n", + "for feature_batch, label_batch in train_ds.take(1):\n", + " print('Every feature:', list(feature_batch.keys()))\n", + " print('A batch of rename:', feature_batch['rename'])\n", + " print('A batch of targets:', label_batch )" + ] + }, + { + "source": [ + "## 几种特征的处理\n", + "### 数值特征\n", + "* 直接转移。\n", + "```\n", + "age = feature_column.numeric_column(\"age\")\n", + "```\n", + "### 分桶列。\n", + "* 考虑代表一个人年龄的原始数据。我们可以用 分桶列(bucketized column)将年龄分成几个分桶(buckets),而不是将年龄表示成数值列。\n", + "```\n", + "age_buckets = feature_column.bucketized_column(age, boundaries=[18, 25, 30, 35, 40, 45, 50, 55, 60, 65])\n", + "```\n", + "### 分类列\n", + "* thal 用字符串表示(如 'fixed','normal',或 'reversible')。我们无法直接将字符串提供给模型。相反,我们必须首先将它们映射到数值。分类词汇列(categorical vocabulary columns)提供了一种用 one-hot 向量表示字符串的方法(就像您在上面看到的年龄分桶一样)。词汇表可以用 categorical_column_with_vocabulary_list 作为 list 传递,或者用 categorical_column_with_vocabulary_file 从文件中加载。\n", + "```\n", + "thal = feature_column.categorical_column_with_vocabulary_list(\n", + " 'thal', ['fixed', 'normal', 'reversible'])\n", + "\n", + "thal_one_hot = feature_column.indicator_column(thal)\n", + "```\n", + "### 嵌入列\n", + "* 假设我们不是只有几个可能的字符串,而是每个类别有数千(或更多)值。 由于多种原因,随着类别数量的增加,使用 one-hot 编码训练神经网络变得不可行。我们可以使用嵌入列来克服此限制。嵌入列(embedding column)将数据表示为一个低维度密集向量,而非多维的 one-hot 向量,该低维度密集向量可以包含任何数,而不仅仅是 0 或 1。嵌入的大小(在下面的示例中为 8)是必须调整的参数。\n", + "* 关键点:当分类列具有许多可能的值时,最好使用嵌入列。我们在这里使用嵌入列用于演示目的,为此您有一个完整的示例,以在将来可以修改用于其他数据集。\n", + "```\n", + "# 注意到嵌入列的输入是我们之前创建的类别列\n", + "thal_embedding = feature_column.embedding_column(thal, dimension=8)\n", + "```\n", + "\n", + "### 哈希处理特征列\n", + "* 表示具有大量数值的分类列的另一种方法是使用 categorical_column_with_hash_bucket。该特征列计算输入的一个哈希值,然后选择一个 hash_bucket_size 分桶来编码字符串。使用此列时,您不需要提供词汇表,并且可以选择使 hash_buckets 的数量远远小于实际类别的数量以节省空间。\n", + "* 关键点:该技术的一个重要缺点是可能存在冲突,不同的字符串被映射到同一个范围。实际上,无论如何,经过哈希处理的特征列对某些数据集都有效。\n", + "```\n", + "thal_hashed = feature_column.categorical_column_with_hash_bucket(\n", + " 'thal', hash_bucket_size=1000)\n", + "```\n", + "### 组合的特征列\n", + "* 将多种特征组合到一个特征中,称为特征组合(feature crosses),它让模型能够为每种特征组合学习单独的权重。此处,我们将创建一个 age 和 thal 组合的新特征。请注意,crossed_column 不会构建所有可能组合的完整列表(可能非常大)。相反,它由 hashed_column 支持,因此您可以选择表的大小。\n", + "```\n", + "crossed_feature = feature_column.crossed_column([age_buckets, thal], hash_bucket_size=1000)\n", + "demo(feature_column.indicator_column(crossed_feature))\n", + "```" + ], + "cell_type": "markdown", + "metadata": {} + }, + { + "source": [ + "## 选择特征列\n", + "```\n", + "feature_columns = []\n", + "\n", + "# 数值列\n", + "for header in ['age', 'trestbps', 'chol', 'thalach', 'oldpeak', 'slope', 'ca']:\n", + " feature_columns.append(feature_column.numeric_column(header))\n", + "\n", + "# 分桶列\n", + "age_buckets = feature_column.bucketized_column(age, boundaries=[18, 25, 30, 35, 40, 45, 50, 55, 60, 65])\n", + "feature_columns.append(age_buckets)\n", + "\n", + "# 分类列\n", + "thal = feature_column.categorical_column_with_vocabulary_list(\n", + " 'thal', ['fixed', 'normal', 'reversible'])\n", + "thal_one_hot = feature_column.indicator_column(thal)\n", + "feature_columns.append(thal_one_hot)\n", + "\n", + "# 嵌入列\n", + "thal_embedding = feature_column.embedding_column(thal, dimension=8)\n", + "feature_columns.append(thal_embedding)\n", + "\n", + "# 组合列\n", + "crossed_feature = feature_column.crossed_column([age_buckets, thal], hash_bucket_size=1000)\n", + "crossed_feature = feature_column.indicator_column(crossed_feature)\n", + "feature_columns.append(crossed_feature)\n", + "```" + ], + "cell_type": "markdown", + "metadata": {} + }, + { + "source": [ + "## 建立特征层\n", + "现在我们已经定义了我们的特征列feature_column,我们将使用密集特征(DenseFeatures)层将特征列输入到我们的 Keras 模型中。\n", + "```\n", + "feature_layer = tf.keras.layers.DenseFeatures(feature_columns)\n", + "```" + ], + "cell_type": "markdown", + "metadata": {} + }, + { + "source": [ + "## 使用特征层\n", + "```\n", + "model = tf.keras.Sequential([\n", + " feature_layer,\n", + " layers.Dense(128, activation='relu'),\n", + " layers.Dense(128, activation='relu'),\n", + " layers.Dense(1, activation='sigmoid')\n", + "])\n", + "\n", + "model.compile(optimizer='adam',\n", + " loss='binary_crossentropy',\n", + " metrics=['accuracy'],\n", + " run_eagerly=True)\n", + "\n", + "model.fit(train_ds,\n", + " validation_data=val_ds,\n", + " epochs=5)\n", + "```" + ], + "cell_type": "markdown", + "metadata": {} + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# 评估模型\n", + "loss, accuracy = model.evaluate(test_ds)\n", + "print(\"Accuracy\", accuracy)" + ] + } + ] +} \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/README.md b/Tensorflow/TensorFlow2.0/README.md deleted file mode 100644 index 71563c1d..00000000 --- a/Tensorflow/TensorFlow2.0/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# TensorFlow 2.4 官方教程 - -来源:[https://tensorflow.google.cn/tutorials?authuser=0](https://tensorflow.google.cn/tutorials?authuser=0) \ No newline at end of file diff --git a/Tensorflow/TensorFlow2.0/SUMMARY.md b/Tensorflow/TensorFlow2.0/SUMMARY.md deleted file mode 100644 index 722ae95b..00000000 --- a/Tensorflow/TensorFlow2.0/SUMMARY.md +++ /dev/null @@ -1,71 +0,0 @@ -+ [TensorFlow 2.4 官方教程](README.md) -+ [初学者的 TensorFlow 2.0 教程](002.md) -+ [针对专业人员的 TensorFlow 2.0 入门](003.md) -+ [初级](004.md) - + [Keras 机器学习基础知识](005.md) - + [基本分类:对服装图像进行分类](006.md) - + [电影评论文本分类](007.md) - + [使用 Keras 和 Tensorflow Hub 对电影评论进行文本分类](008.md) - + [Basic regression: Predict fuel efficiency](009.md) - + [Overfit and underfit](010.md) - + [保存和恢复模型](011.md) - + [Introduction to the Keras Tuner](012.md) - + [加载和预处理数据](013.md) - + [用 tf.data 加载图片](014.md) - + [使用 tf.data 加载文本数据](015.md) - + [用 tf.data 加载 CSV 数据](016.md) - + [使用 tf.data 加载 NumPy 数据](017.md) - + [使用 tf.data 加载 pandas dataframes](018.md) - + [Unicode 字符串](019.md) - + [TF.Text](020.md) - + [TFRecord 和 tf.Example](021.md) - + [Estimator](022.md) - + [预创建的 Estimators](023.md) - + [Build a linear model with Estimators](024.md) - + [在 Tensorflow 中训练提升树(Boosted Trees)模型](025.md) - + [梯度提升树(Gradient Boosted Trees):模型理解](026.md) - + [通过 Keras 模型创建 Estimator](027.md) -+ [高级](028.md) - + [自定义](029.md) - + [Customization basics: tensors and operations](030.md) - + [Custom layers](031.md) - + [自定义训练: 演示](032.md) - + [分布式训练](033.md) - + [Keras 的分布式训练](034.md) - + [使用 tf.distribute.Strategy 进行自定义训练](035.md) - + [利用 Keras 来训练多工作器(worker)](036.md) - + [利用 Estimator 进行多工作器训练](037.md) - + [使用分布策略保存和加载模型](038.md) - + [Distributed Input](039.md) - + [图像](040.md) - + [卷积神经网络(Convolutional Neural Network, CNN)](041.md) - + [Image classification](042.md) - + [Transfer learning and fine-tuning](043.md) - + [Transfer learning with TensorFlow Hub](044.md) - + [Data augmentation](045.md) - + [图像分割](046.md) - + [文本](047.md) - + [单词嵌入向量](048.md) - + [使用 RNN 进行文本分类](049.md) - + [循环神经网络(RNN)文本生成](050.md) - + [基于注意力的神经机器翻译](051.md) - + [Image captioning with visual attention](052.md) - + [理解语言的 Transformer 模型](053.md) - + [Fine-tuning a BERT model](054.md) - + [结构化数据](055.md) - + [对结构化数据进行分类](056.md) - + [Classification on imbalanced data](057.md) - + [Time series forecasting](058.md) - + [生成](059.md) - + [神经风格迁移](060.md) - + [DeepDream](061.md) - + [深度卷积生成对抗网络](062.md) - + [Pix2Pix](063.md) - + [CycleGAN](064.md) - + [Adversarial example using FGSM](065.md) - + [Intro to Autoencoders](066.md) - + [卷积变分自编码器](067.md) - + [可解释性](068.md) - + [Integrated gradients](069.md) - + [强化学习](070.md) - + [Playing CartPole with the Actor-Critic Method](071.md) diff --git a/Tensorflow/TensorFlow2.0/img/00e8007835b36bd4dd63de1a16bd2f94.png b/Tensorflow/TensorFlow2.0/img/00e8007835b36bd4dd63de1a16bd2f94.png deleted file mode 100644 index e4bb8d00..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/00e8007835b36bd4dd63de1a16bd2f94.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/00ec3c3882214936d486fb8107b457b2.png b/Tensorflow/TensorFlow2.0/img/00ec3c3882214936d486fb8107b457b2.png deleted file mode 100644 index 582120e6..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/00ec3c3882214936d486fb8107b457b2.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/00fbc45eaf75c4132a6ea862403f4be4.png b/Tensorflow/TensorFlow2.0/img/00fbc45eaf75c4132a6ea862403f4be4.png deleted file mode 100644 index 23297cf3..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/00fbc45eaf75c4132a6ea862403f4be4.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/019d6a002d56ca3eff0330fbb68495d2.png b/Tensorflow/TensorFlow2.0/img/019d6a002d56ca3eff0330fbb68495d2.png deleted file mode 100644 index b93f7d81..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/019d6a002d56ca3eff0330fbb68495d2.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/01e618f7715193d849381e8d78c78c09.png b/Tensorflow/TensorFlow2.0/img/01e618f7715193d849381e8d78c78c09.png deleted file mode 100644 index e4da706a..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/01e618f7715193d849381e8d78c78c09.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/027fe3c7c1b2c8f4ba851311692e3d91.png b/Tensorflow/TensorFlow2.0/img/027fe3c7c1b2c8f4ba851311692e3d91.png deleted file mode 100644 index 8a94ce42..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/027fe3c7c1b2c8f4ba851311692e3d91.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/02b2fc97a46c88c22ee2d11e8c28bf0d.png b/Tensorflow/TensorFlow2.0/img/02b2fc97a46c88c22ee2d11e8c28bf0d.png deleted file mode 100644 index 7c863402..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/02b2fc97a46c88c22ee2d11e8c28bf0d.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/032dc17ad0509afd4505858b1f0c7d19.png b/Tensorflow/TensorFlow2.0/img/032dc17ad0509afd4505858b1f0c7d19.png deleted file mode 100644 index 6cf29d57..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/032dc17ad0509afd4505858b1f0c7d19.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/03dad7eb5e1c97b1391c9925be7da416.png b/Tensorflow/TensorFlow2.0/img/03dad7eb5e1c97b1391c9925be7da416.png deleted file mode 100644 index ac95c751..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/03dad7eb5e1c97b1391c9925be7da416.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/040af2c2187faf5ae826579d657c0aa0.png b/Tensorflow/TensorFlow2.0/img/040af2c2187faf5ae826579d657c0aa0.png deleted file mode 100644 index 3d6a29db..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/040af2c2187faf5ae826579d657c0aa0.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/0425284f7bd595a686480abe82721a04.png b/Tensorflow/TensorFlow2.0/img/0425284f7bd595a686480abe82721a04.png deleted file mode 100644 index 59a1facf..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/0425284f7bd595a686480abe82721a04.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/05dfb322f577170f0e9218f00221d363.png b/Tensorflow/TensorFlow2.0/img/05dfb322f577170f0e9218f00221d363.png deleted file mode 100644 index 6a8097d9..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/05dfb322f577170f0e9218f00221d363.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/062d680b7bfc538f75dbd6e3d7562502.png b/Tensorflow/TensorFlow2.0/img/062d680b7bfc538f75dbd6e3d7562502.png deleted file mode 100644 index 721061db..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/062d680b7bfc538f75dbd6e3d7562502.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/073182c1df7eec341936447672fb0376.png b/Tensorflow/TensorFlow2.0/img/073182c1df7eec341936447672fb0376.png deleted file mode 100644 index df1bf1bf..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/073182c1df7eec341936447672fb0376.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/07f89687b786f68c1561b81ac448c45e.png b/Tensorflow/TensorFlow2.0/img/07f89687b786f68c1561b81ac448c45e.png deleted file mode 100644 index de252075..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/07f89687b786f68c1561b81ac448c45e.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/07fde30d678eaceba2bf9695ee89c403.png b/Tensorflow/TensorFlow2.0/img/07fde30d678eaceba2bf9695ee89c403.png deleted file mode 100644 index 1e0226ac..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/07fde30d678eaceba2bf9695ee89c403.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/086f42f4106103986aa93b67010f2cf9.png b/Tensorflow/TensorFlow2.0/img/086f42f4106103986aa93b67010f2cf9.png deleted file mode 100644 index 395fd7a8..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/086f42f4106103986aa93b67010f2cf9.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/0b0835e78f54f2c464c9df77cfe6a93b.png b/Tensorflow/TensorFlow2.0/img/0b0835e78f54f2c464c9df77cfe6a93b.png deleted file mode 100644 index 10e2e15f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/0b0835e78f54f2c464c9df77cfe6a93b.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/0ba1e7316ba7e228576bbcd85280c309.png b/Tensorflow/TensorFlow2.0/img/0ba1e7316ba7e228576bbcd85280c309.png deleted file mode 100644 index 7028311c..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/0ba1e7316ba7e228576bbcd85280c309.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/0c7474d216a51a2b258a81a689920596.png b/Tensorflow/TensorFlow2.0/img/0c7474d216a51a2b258a81a689920596.png deleted file mode 100644 index cc3552ac..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/0c7474d216a51a2b258a81a689920596.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/0dda76c01237658213cec93698233a22.png b/Tensorflow/TensorFlow2.0/img/0dda76c01237658213cec93698233a22.png deleted file mode 100644 index 00398651..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/0dda76c01237658213cec93698233a22.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/0eda1b45396cd1c02a76bd76397b9a76.png b/Tensorflow/TensorFlow2.0/img/0eda1b45396cd1c02a76bd76397b9a76.png deleted file mode 100644 index 792d740e..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/0eda1b45396cd1c02a76bd76397b9a76.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/0f98889f249aed7e8f8f5e90e5432e08.png b/Tensorflow/TensorFlow2.0/img/0f98889f249aed7e8f8f5e90e5432e08.png deleted file mode 100644 index f8ad2704..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/0f98889f249aed7e8f8f5e90e5432e08.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/0fc5058e71e5828192048ef6a6b9a595.png b/Tensorflow/TensorFlow2.0/img/0fc5058e71e5828192048ef6a6b9a595.png deleted file mode 100644 index 4bd2ff98..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/0fc5058e71e5828192048ef6a6b9a595.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/10d71bce93ec45ba7076ef15a37bcb28.png b/Tensorflow/TensorFlow2.0/img/10d71bce93ec45ba7076ef15a37bcb28.png deleted file mode 100644 index 8a1a7233..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/10d71bce93ec45ba7076ef15a37bcb28.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/11c5fe9ef9f8ed2389fe40e5fa1ccbb7.png b/Tensorflow/TensorFlow2.0/img/11c5fe9ef9f8ed2389fe40e5fa1ccbb7.png deleted file mode 100644 index d2866117..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/11c5fe9ef9f8ed2389fe40e5fa1ccbb7.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/12bbad2792cbf9031cf0f5c0e54b36a3.png b/Tensorflow/TensorFlow2.0/img/12bbad2792cbf9031cf0f5c0e54b36a3.png deleted file mode 100644 index 740e26e9..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/12bbad2792cbf9031cf0f5c0e54b36a3.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/13a6ef1c7f66c4208c56677c5ddd6506.png b/Tensorflow/TensorFlow2.0/img/13a6ef1c7f66c4208c56677c5ddd6506.png deleted file mode 100644 index 64cc0fcd..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/13a6ef1c7f66c4208c56677c5ddd6506.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/13fa130027f8343fe8d952fec8dd0555.png b/Tensorflow/TensorFlow2.0/img/13fa130027f8343fe8d952fec8dd0555.png deleted file mode 100644 index e40ca1cc..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/13fa130027f8343fe8d952fec8dd0555.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/141e262e42c195dfe1174f7824ff4c3c.png b/Tensorflow/TensorFlow2.0/img/141e262e42c195dfe1174f7824ff4c3c.png deleted file mode 100644 index a6c72a35..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/141e262e42c195dfe1174f7824ff4c3c.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/147de2a992900105434d95a527a869c8.png b/Tensorflow/TensorFlow2.0/img/147de2a992900105434d95a527a869c8.png deleted file mode 100644 index 727947db..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/147de2a992900105434d95a527a869c8.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/14fce8d9f2fd98077c5bf9a8db1f25ec.png b/Tensorflow/TensorFlow2.0/img/14fce8d9f2fd98077c5bf9a8db1f25ec.png deleted file mode 100644 index 847948de..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/14fce8d9f2fd98077c5bf9a8db1f25ec.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/16ea92d12fa8170f3e79e4c56f9affd1.png b/Tensorflow/TensorFlow2.0/img/16ea92d12fa8170f3e79e4c56f9affd1.png deleted file mode 100644 index f4ddae50..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/16ea92d12fa8170f3e79e4c56f9affd1.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/17877a5940e1f7245c707d3ecf9783e3.png b/Tensorflow/TensorFlow2.0/img/17877a5940e1f7245c707d3ecf9783e3.png deleted file mode 100644 index bf07422e..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/17877a5940e1f7245c707d3ecf9783e3.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/17b66fa7e9565fdeabc4fe4752bad60d.png b/Tensorflow/TensorFlow2.0/img/17b66fa7e9565fdeabc4fe4752bad60d.png deleted file mode 100644 index e6bd59b7..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/17b66fa7e9565fdeabc4fe4752bad60d.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/187f414e1afde064024f6898871831da.png b/Tensorflow/TensorFlow2.0/img/187f414e1afde064024f6898871831da.png deleted file mode 100644 index 366b3fc3..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/187f414e1afde064024f6898871831da.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/193b876c3df893a8ae22aad38d3b264e.png b/Tensorflow/TensorFlow2.0/img/193b876c3df893a8ae22aad38d3b264e.png deleted file mode 100644 index e21313ee..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/193b876c3df893a8ae22aad38d3b264e.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/1b0da93649f50a8108ee8ddd8b08bc04.png b/Tensorflow/TensorFlow2.0/img/1b0da93649f50a8108ee8ddd8b08bc04.png deleted file mode 100644 index c1e047dc..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/1b0da93649f50a8108ee8ddd8b08bc04.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/1c115680e9c0080caf5ac79ab3f9ba0d.png b/Tensorflow/TensorFlow2.0/img/1c115680e9c0080caf5ac79ab3f9ba0d.png deleted file mode 100644 index abdabd90..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/1c115680e9c0080caf5ac79ab3f9ba0d.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/1c3bc0a947aefadc9c04f9c5f0bf1991.png b/Tensorflow/TensorFlow2.0/img/1c3bc0a947aefadc9c04f9c5f0bf1991.png deleted file mode 100644 index bd6c8168..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/1c3bc0a947aefadc9c04f9c5f0bf1991.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/1c498df577bb9dd0638c25332e7b68a1.png b/Tensorflow/TensorFlow2.0/img/1c498df577bb9dd0638c25332e7b68a1.png deleted file mode 100644 index 458a2529..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/1c498df577bb9dd0638c25332e7b68a1.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/1d2f7cb104afa8ee05f37076045f9195.png b/Tensorflow/TensorFlow2.0/img/1d2f7cb104afa8ee05f37076045f9195.png deleted file mode 100644 index bde07eaa..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/1d2f7cb104afa8ee05f37076045f9195.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/1d906c8d5397ad3e918d2a91fcfbb78e.png b/Tensorflow/TensorFlow2.0/img/1d906c8d5397ad3e918d2a91fcfbb78e.png deleted file mode 100644 index 9690b230..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/1d906c8d5397ad3e918d2a91fcfbb78e.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/1f9a0765029471b20952ac80887f73a4.png b/Tensorflow/TensorFlow2.0/img/1f9a0765029471b20952ac80887f73a4.png deleted file mode 100644 index 1e83b544..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/1f9a0765029471b20952ac80887f73a4.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/20fad379e19d0355132a97db41137f4b.png b/Tensorflow/TensorFlow2.0/img/20fad379e19d0355132a97db41137f4b.png deleted file mode 100644 index 1a8e9c8e..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/20fad379e19d0355132a97db41137f4b.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/2127fb93f97c5aaf91e991540bbe84ed.png b/Tensorflow/TensorFlow2.0/img/2127fb93f97c5aaf91e991540bbe84ed.png deleted file mode 100644 index f8acbad8..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/2127fb93f97c5aaf91e991540bbe84ed.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/217c4e55f89d4a55a78dc082bbdc1e2f.png b/Tensorflow/TensorFlow2.0/img/217c4e55f89d4a55a78dc082bbdc1e2f.png deleted file mode 100644 index 2a9777de..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/217c4e55f89d4a55a78dc082bbdc1e2f.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/21b3b7303748422d35a6212f940d399c.png b/Tensorflow/TensorFlow2.0/img/21b3b7303748422d35a6212f940d399c.png deleted file mode 100644 index fde4a734..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/21b3b7303748422d35a6212f940d399c.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/2230343d999d9f0dd8b71b8bf390e82f.png b/Tensorflow/TensorFlow2.0/img/2230343d999d9f0dd8b71b8bf390e82f.png deleted file mode 100644 index 14ac85ba..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/2230343d999d9f0dd8b71b8bf390e82f.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/224feef511a9609d22547ec5c769829a.png b/Tensorflow/TensorFlow2.0/img/224feef511a9609d22547ec5c769829a.png deleted file mode 100644 index c7364c7a..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/224feef511a9609d22547ec5c769829a.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/22f7bd226b742292050c368b980067f4.png b/Tensorflow/TensorFlow2.0/img/22f7bd226b742292050c368b980067f4.png deleted file mode 100644 index 5f498d42..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/22f7bd226b742292050c368b980067f4.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/23878cd7b5d0e50299dced2de8ebd52d.png b/Tensorflow/TensorFlow2.0/img/23878cd7b5d0e50299dced2de8ebd52d.png deleted file mode 100644 index 4157f8aa..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/23878cd7b5d0e50299dced2de8ebd52d.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/25091cb1e90c92e9948c6c6cb9d0238b.png b/Tensorflow/TensorFlow2.0/img/25091cb1e90c92e9948c6c6cb9d0238b.png deleted file mode 100644 index 9397e7f3..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/25091cb1e90c92e9948c6c6cb9d0238b.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/253f679c0d56ad236d24246ddb70d466.png b/Tensorflow/TensorFlow2.0/img/253f679c0d56ad236d24246ddb70d466.png deleted file mode 100644 index 69237f64..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/253f679c0d56ad236d24246ddb70d466.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/25794664318bbd0dc1284a9ea6754d14.png b/Tensorflow/TensorFlow2.0/img/25794664318bbd0dc1284a9ea6754d14.png deleted file mode 100644 index eaa104b4..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/25794664318bbd0dc1284a9ea6754d14.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/25a15211c7a5c4ce6da843197b4b85eb.png b/Tensorflow/TensorFlow2.0/img/25a15211c7a5c4ce6da843197b4b85eb.png deleted file mode 100644 index 57df8191..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/25a15211c7a5c4ce6da843197b4b85eb.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/25c5372b82b31daf5535e4f1571434a9.png b/Tensorflow/TensorFlow2.0/img/25c5372b82b31daf5535e4f1571434a9.png deleted file mode 100644 index 908d667a..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/25c5372b82b31daf5535e4f1571434a9.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/267bdfdd72740285a56d6dbc3f34c679.png b/Tensorflow/TensorFlow2.0/img/267bdfdd72740285a56d6dbc3f34c679.png deleted file mode 100644 index e78ecf6b..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/267bdfdd72740285a56d6dbc3f34c679.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/27014e8a5d49cb56f79937d834cb2466.png b/Tensorflow/TensorFlow2.0/img/27014e8a5d49cb56f79937d834cb2466.png deleted file mode 100644 index f63460e2..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/27014e8a5d49cb56f79937d834cb2466.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/27bba4e01880a45cea2ffcffdc0aa311.png b/Tensorflow/TensorFlow2.0/img/27bba4e01880a45cea2ffcffdc0aa311.png deleted file mode 100644 index 0d5d8a3b..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/27bba4e01880a45cea2ffcffdc0aa311.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/28877f41199c01fa4ec5041f5b1fac9f.png b/Tensorflow/TensorFlow2.0/img/28877f41199c01fa4ec5041f5b1fac9f.png deleted file mode 100644 index 27e3cb28..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/28877f41199c01fa4ec5041f5b1fac9f.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/295a20785cb201af0f19ee7414550082.png b/Tensorflow/TensorFlow2.0/img/295a20785cb201af0f19ee7414550082.png deleted file mode 100644 index b754271d..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/295a20785cb201af0f19ee7414550082.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/29af5825a7303165115c9cfbc59ae606.png b/Tensorflow/TensorFlow2.0/img/29af5825a7303165115c9cfbc59ae606.png deleted file mode 100644 index a1a41323..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/29af5825a7303165115c9cfbc59ae606.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/29af7886a5834acb3b056b86d97b4128.png b/Tensorflow/TensorFlow2.0/img/29af7886a5834acb3b056b86d97b4128.png deleted file mode 100644 index 4712c2d0..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/29af7886a5834acb3b056b86d97b4128.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/2a2da1f076940ee9e540d308733418d2.png b/Tensorflow/TensorFlow2.0/img/2a2da1f076940ee9e540d308733418d2.png deleted file mode 100644 index 34f5ab62..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/2a2da1f076940ee9e540d308733418d2.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/2ab61e10f9f53c1738f397150ea65f3d.png b/Tensorflow/TensorFlow2.0/img/2ab61e10f9f53c1738f397150ea65f3d.png deleted file mode 100644 index 13c01bd4..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/2ab61e10f9f53c1738f397150ea65f3d.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/2b4481790f3718f3fc44681160e972ab.png b/Tensorflow/TensorFlow2.0/img/2b4481790f3718f3fc44681160e972ab.png deleted file mode 100644 index fdef8aaf..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/2b4481790f3718f3fc44681160e972ab.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/2bc3a9da8c0e479bf906dd0c765549f4.png b/Tensorflow/TensorFlow2.0/img/2bc3a9da8c0e479bf906dd0c765549f4.png deleted file mode 100644 index 1bcaa779..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/2bc3a9da8c0e479bf906dd0c765549f4.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/2c848f6027c084a244c86c336c02ce35.png b/Tensorflow/TensorFlow2.0/img/2c848f6027c084a244c86c336c02ce35.png deleted file mode 100644 index 2e33c877..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/2c848f6027c084a244c86c336c02ce35.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/2d28811c34377a23029670cd3acc5d2e.png b/Tensorflow/TensorFlow2.0/img/2d28811c34377a23029670cd3acc5d2e.png deleted file mode 100644 index 8c70a582..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/2d28811c34377a23029670cd3acc5d2e.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/2e071a2b770d50ed5ef40dabbe1fd1a7.png b/Tensorflow/TensorFlow2.0/img/2e071a2b770d50ed5ef40dabbe1fd1a7.png deleted file mode 100644 index 5fea4490..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/2e071a2b770d50ed5ef40dabbe1fd1a7.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/2f1f2fc54135afd798139d45c013ef1f.png b/Tensorflow/TensorFlow2.0/img/2f1f2fc54135afd798139d45c013ef1f.png deleted file mode 100644 index bc2d2e50..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/2f1f2fc54135afd798139d45c013ef1f.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/30586460013d859e496dd27ce6b18cbc.png b/Tensorflow/TensorFlow2.0/img/30586460013d859e496dd27ce6b18cbc.png deleted file mode 100644 index 7d4deb39..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/30586460013d859e496dd27ce6b18cbc.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/3077ee17ed3bcc58a21e5ae34601aeaa.png b/Tensorflow/TensorFlow2.0/img/3077ee17ed3bcc58a21e5ae34601aeaa.png deleted file mode 100644 index 62728972..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/3077ee17ed3bcc58a21e5ae34601aeaa.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/309f23cd3db44be87a1c9d9d25619301.png b/Tensorflow/TensorFlow2.0/img/309f23cd3db44be87a1c9d9d25619301.png deleted file mode 100644 index 75abf85c..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/309f23cd3db44be87a1c9d9d25619301.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/31f7567659d665b396ba290e435595b4.png b/Tensorflow/TensorFlow2.0/img/31f7567659d665b396ba290e435595b4.png deleted file mode 100644 index e5fdc20a..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/31f7567659d665b396ba290e435595b4.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/322fe6c3912c3a4f2472e8f42ced52ce.png b/Tensorflow/TensorFlow2.0/img/322fe6c3912c3a4f2472e8f42ced52ce.png deleted file mode 100644 index 8fcab198..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/322fe6c3912c3a4f2472e8f42ced52ce.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/33043d022bdb4912f00756593d5b4a7c.png b/Tensorflow/TensorFlow2.0/img/33043d022bdb4912f00756593d5b4a7c.png deleted file mode 100644 index 45901f9d..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/33043d022bdb4912f00756593d5b4a7c.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/3390b6303137e50e6a04ecf43748a4fc.png b/Tensorflow/TensorFlow2.0/img/3390b6303137e50e6a04ecf43748a4fc.png deleted file mode 100644 index 392d13bb..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/3390b6303137e50e6a04ecf43748a4fc.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/34e85547487e77a52b9e494a05fdc8f8.png b/Tensorflow/TensorFlow2.0/img/34e85547487e77a52b9e494a05fdc8f8.png deleted file mode 100644 index f7a58a4d..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/34e85547487e77a52b9e494a05fdc8f8.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/35228c04a07ff13d63e7c28043db3950.png b/Tensorflow/TensorFlow2.0/img/35228c04a07ff13d63e7c28043db3950.png deleted file mode 100644 index f1406e3f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/35228c04a07ff13d63e7c28043db3950.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/35253af9a3f5a4e0035787fd80b11ca3.png b/Tensorflow/TensorFlow2.0/img/35253af9a3f5a4e0035787fd80b11ca3.png deleted file mode 100644 index 701f2b04..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/35253af9a3f5a4e0035787fd80b11ca3.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/35aea8e2802acf908920febe4776fbf0.png b/Tensorflow/TensorFlow2.0/img/35aea8e2802acf908920febe4776fbf0.png deleted file mode 100644 index 8311f464..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/35aea8e2802acf908920febe4776fbf0.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/36943305bc87e9d7bacdd3122d2620ca.png b/Tensorflow/TensorFlow2.0/img/36943305bc87e9d7bacdd3122d2620ca.png deleted file mode 100644 index 9dea5f1f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/36943305bc87e9d7bacdd3122d2620ca.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/369c7a269758731e601b622ad8074a20.png b/Tensorflow/TensorFlow2.0/img/369c7a269758731e601b622ad8074a20.png deleted file mode 100644 index 41e6bff4..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/369c7a269758731e601b622ad8074a20.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/3a91563a3651ff89460c7e6daf95d78e.png b/Tensorflow/TensorFlow2.0/img/3a91563a3651ff89460c7e6daf95d78e.png deleted file mode 100644 index f0b686f6..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/3a91563a3651ff89460c7e6daf95d78e.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/3b156bb2ffa19f7a08e10cf29e3fe8c9.png b/Tensorflow/TensorFlow2.0/img/3b156bb2ffa19f7a08e10cf29e3fe8c9.png deleted file mode 100644 index 46c202f8..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/3b156bb2ffa19f7a08e10cf29e3fe8c9.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/3b5e2e711798f7ff0d6ff949ea4f54f3.png b/Tensorflow/TensorFlow2.0/img/3b5e2e711798f7ff0d6ff949ea4f54f3.png deleted file mode 100644 index cb4b4841..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/3b5e2e711798f7ff0d6ff949ea4f54f3.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/3c18a835b05587069a53a3709112d9c2.png b/Tensorflow/TensorFlow2.0/img/3c18a835b05587069a53a3709112d9c2.png deleted file mode 100644 index 26ada32c..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/3c18a835b05587069a53a3709112d9c2.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/3c3d7b5efcc814913b1fdc4d8ab17c2c.png b/Tensorflow/TensorFlow2.0/img/3c3d7b5efcc814913b1fdc4d8ab17c2c.png deleted file mode 100644 index e0ce9cf1..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/3c3d7b5efcc814913b1fdc4d8ab17c2c.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/3e1bc64db4c260d2327ca5a9defae306.png b/Tensorflow/TensorFlow2.0/img/3e1bc64db4c260d2327ca5a9defae306.png deleted file mode 100644 index 9a159969..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/3e1bc64db4c260d2327ca5a9defae306.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/3e8e9f9ba0ac0f802575b228ffa360c0.png b/Tensorflow/TensorFlow2.0/img/3e8e9f9ba0ac0f802575b228ffa360c0.png deleted file mode 100644 index 099541c8..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/3e8e9f9ba0ac0f802575b228ffa360c0.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/4027509537fdad6efb501fba81748e0f.png b/Tensorflow/TensorFlow2.0/img/4027509537fdad6efb501fba81748e0f.png deleted file mode 100644 index 7cb4d4fd..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/4027509537fdad6efb501fba81748e0f.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/40793e753f5cc525c8f3c9cd20d1085c.png b/Tensorflow/TensorFlow2.0/img/40793e753f5cc525c8f3c9cd20d1085c.png deleted file mode 100644 index 96581423..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/40793e753f5cc525c8f3c9cd20d1085c.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/4123df32a452f5e3727c6372cf1fa755.png b/Tensorflow/TensorFlow2.0/img/4123df32a452f5e3727c6372cf1fa755.png deleted file mode 100644 index f17a357c..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/4123df32a452f5e3727c6372cf1fa755.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/42885d1d6ac3f11492d97fe4c7d7f6ff.png b/Tensorflow/TensorFlow2.0/img/42885d1d6ac3f11492d97fe4c7d7f6ff.png deleted file mode 100644 index c581d2fb..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/42885d1d6ac3f11492d97fe4c7d7f6ff.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/4341c4ebffdd0a35a50322abd93518de.png b/Tensorflow/TensorFlow2.0/img/4341c4ebffdd0a35a50322abd93518de.png deleted file mode 100644 index 2978dd4c..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/4341c4ebffdd0a35a50322abd93518de.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/458690c5e898eeb73aae0c7f04339c81.png b/Tensorflow/TensorFlow2.0/img/458690c5e898eeb73aae0c7f04339c81.png deleted file mode 100644 index 50435b5f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/458690c5e898eeb73aae0c7f04339c81.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/45d997f6558f9b2c948978653a5112f5.png b/Tensorflow/TensorFlow2.0/img/45d997f6558f9b2c948978653a5112f5.png deleted file mode 100644 index 41e3be08..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/45d997f6558f9b2c948978653a5112f5.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/461f849577ccb00ee49683e824e095cf.png b/Tensorflow/TensorFlow2.0/img/461f849577ccb00ee49683e824e095cf.png deleted file mode 100644 index fb6a6714..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/461f849577ccb00ee49683e824e095cf.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/4630405ff1451bfc3979433eb4bb7a43.png b/Tensorflow/TensorFlow2.0/img/4630405ff1451bfc3979433eb4bb7a43.png deleted file mode 100644 index 6b6d79c8..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/4630405ff1451bfc3979433eb4bb7a43.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/46db10c9de77d0eba54a4bd268680d27.png b/Tensorflow/TensorFlow2.0/img/46db10c9de77d0eba54a4bd268680d27.png deleted file mode 100644 index 07e9a5e4..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/46db10c9de77d0eba54a4bd268680d27.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/47c750cbb275e148fd8d76c4bf49d4a6.png b/Tensorflow/TensorFlow2.0/img/47c750cbb275e148fd8d76c4bf49d4a6.png deleted file mode 100644 index 36210228..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/47c750cbb275e148fd8d76c4bf49d4a6.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/47d10fb7606b95e0fc52794eb6634024.png b/Tensorflow/TensorFlow2.0/img/47d10fb7606b95e0fc52794eb6634024.png deleted file mode 100644 index 6f1163ff..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/47d10fb7606b95e0fc52794eb6634024.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/47e128c5852147da0f7b0158465fe752.png b/Tensorflow/TensorFlow2.0/img/47e128c5852147da0f7b0158465fe752.png deleted file mode 100644 index a51bbe00..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/47e128c5852147da0f7b0158465fe752.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/4a4c68a2d8914e8b1b75bed4a9b81a5b.png b/Tensorflow/TensorFlow2.0/img/4a4c68a2d8914e8b1b75bed4a9b81a5b.png deleted file mode 100644 index d983c988..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/4a4c68a2d8914e8b1b75bed4a9b81a5b.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/4aa12ddc0a8f44acc45b9ed9dc9055bf.png b/Tensorflow/TensorFlow2.0/img/4aa12ddc0a8f44acc45b9ed9dc9055bf.png deleted file mode 100644 index 451bc4c8..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/4aa12ddc0a8f44acc45b9ed9dc9055bf.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/4ae87c070d1160e16944305509636b57.png b/Tensorflow/TensorFlow2.0/img/4ae87c070d1160e16944305509636b57.png deleted file mode 100644 index 7042b477..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/4ae87c070d1160e16944305509636b57.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/4bebff99ef427fe52c09346e6f6b1971.png b/Tensorflow/TensorFlow2.0/img/4bebff99ef427fe52c09346e6f6b1971.png deleted file mode 100644 index c6f5f356..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/4bebff99ef427fe52c09346e6f6b1971.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/4c173dbd57644fa57c04cf1d62ca75e4.png b/Tensorflow/TensorFlow2.0/img/4c173dbd57644fa57c04cf1d62ca75e4.png deleted file mode 100644 index ed258269..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/4c173dbd57644fa57c04cf1d62ca75e4.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/4c843845ce60ced7dbe13555dfe3c827.png b/Tensorflow/TensorFlow2.0/img/4c843845ce60ced7dbe13555dfe3c827.png deleted file mode 100644 index b31340ba..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/4c843845ce60ced7dbe13555dfe3c827.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/4c8ef6a2c8f0548a9f5bb182b8d3de01.png b/Tensorflow/TensorFlow2.0/img/4c8ef6a2c8f0548a9f5bb182b8d3de01.png deleted file mode 100644 index 88ca44b6..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/4c8ef6a2c8f0548a9f5bb182b8d3de01.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/4d094983d2f7b41e395fe05b64ee1a36.png b/Tensorflow/TensorFlow2.0/img/4d094983d2f7b41e395fe05b64ee1a36.png deleted file mode 100644 index 90bb0c39..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/4d094983d2f7b41e395fe05b64ee1a36.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/4e0ba8d4a487b7517b7dbff7e19c4d52.png b/Tensorflow/TensorFlow2.0/img/4e0ba8d4a487b7517b7dbff7e19c4d52.png deleted file mode 100644 index 32c30232..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/4e0ba8d4a487b7517b7dbff7e19c4d52.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/4f82813c049f4e0039986833c582376d.png b/Tensorflow/TensorFlow2.0/img/4f82813c049f4e0039986833c582376d.png deleted file mode 100644 index 885c5b32..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/4f82813c049f4e0039986833c582376d.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/516bf734f26c8fd886eecb17974e7f9b.png b/Tensorflow/TensorFlow2.0/img/516bf734f26c8fd886eecb17974e7f9b.png deleted file mode 100644 index 8d72f5c9..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/516bf734f26c8fd886eecb17974e7f9b.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/518bc2d08038969576066eb381910cc1.png b/Tensorflow/TensorFlow2.0/img/518bc2d08038969576066eb381910cc1.png deleted file mode 100644 index 7b16da1d..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/518bc2d08038969576066eb381910cc1.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/52194b6e27c77c651d0f3c56066448f5.png b/Tensorflow/TensorFlow2.0/img/52194b6e27c77c651d0f3c56066448f5.png deleted file mode 100644 index 95c92989..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/52194b6e27c77c651d0f3c56066448f5.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/5224f36bbf08c7f64fa501011640042b.png b/Tensorflow/TensorFlow2.0/img/5224f36bbf08c7f64fa501011640042b.png deleted file mode 100644 index ad7c2ba5..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/5224f36bbf08c7f64fa501011640042b.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/536f812a8cb3bafa44a738899b173733.png b/Tensorflow/TensorFlow2.0/img/536f812a8cb3bafa44a738899b173733.png deleted file mode 100644 index 5fb56ba3..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/536f812a8cb3bafa44a738899b173733.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/54c9e1f17ab75ca37c6360c3e5230475.png b/Tensorflow/TensorFlow2.0/img/54c9e1f17ab75ca37c6360c3e5230475.png deleted file mode 100644 index 4530ad60..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/54c9e1f17ab75ca37c6360c3e5230475.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/55d2924ed5a33ffad4b9f727cd335194.png b/Tensorflow/TensorFlow2.0/img/55d2924ed5a33ffad4b9f727cd335194.png deleted file mode 100644 index 473a533e..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/55d2924ed5a33ffad4b9f727cd335194.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/55e97ec60fa87503352f7debd65515af.png b/Tensorflow/TensorFlow2.0/img/55e97ec60fa87503352f7debd65515af.png deleted file mode 100644 index 5998eaa3..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/55e97ec60fa87503352f7debd65515af.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/563b223dd04889d1963c53d7c10dfa02.png b/Tensorflow/TensorFlow2.0/img/563b223dd04889d1963c53d7c10dfa02.png deleted file mode 100644 index 0eef937a..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/563b223dd04889d1963c53d7c10dfa02.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/56a137f761015af5a025d2d0cc2a9985.png b/Tensorflow/TensorFlow2.0/img/56a137f761015af5a025d2d0cc2a9985.png deleted file mode 100644 index f36a79f5..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/56a137f761015af5a025d2d0cc2a9985.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/572dbe03f38bc28e6575b97b2ce91fda.png b/Tensorflow/TensorFlow2.0/img/572dbe03f38bc28e6575b97b2ce91fda.png deleted file mode 100644 index 17c70e0a..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/572dbe03f38bc28e6575b97b2ce91fda.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/58c58ebd47eeea7849c83cacae4000e9.png b/Tensorflow/TensorFlow2.0/img/58c58ebd47eeea7849c83cacae4000e9.png deleted file mode 100644 index a482f444..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/58c58ebd47eeea7849c83cacae4000e9.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/58d9d20121aa86120aded9afa9cfff6d.png b/Tensorflow/TensorFlow2.0/img/58d9d20121aa86120aded9afa9cfff6d.png deleted file mode 100644 index dc0c1769..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/58d9d20121aa86120aded9afa9cfff6d.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/5a99ef9a46f69b148f306ff1fc040611.png b/Tensorflow/TensorFlow2.0/img/5a99ef9a46f69b148f306ff1fc040611.png deleted file mode 100644 index 2cbe4815..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/5a99ef9a46f69b148f306ff1fc040611.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/5ae7b3b0f94a71db86b4168d116179ff.png b/Tensorflow/TensorFlow2.0/img/5ae7b3b0f94a71db86b4168d116179ff.png deleted file mode 100644 index f2691ecc..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/5ae7b3b0f94a71db86b4168d116179ff.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/5c1c4854000457ae3fc18d0292519bfc.png b/Tensorflow/TensorFlow2.0/img/5c1c4854000457ae3fc18d0292519bfc.png deleted file mode 100644 index f0af01c2..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/5c1c4854000457ae3fc18d0292519bfc.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/5c6f6f5e851c052e9e53969cd0419cbb.png b/Tensorflow/TensorFlow2.0/img/5c6f6f5e851c052e9e53969cd0419cbb.png deleted file mode 100644 index 7b30f5d0..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/5c6f6f5e851c052e9e53969cd0419cbb.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/5edc6f55df9224577119e687a2c97282.png b/Tensorflow/TensorFlow2.0/img/5edc6f55df9224577119e687a2c97282.png deleted file mode 100644 index 978cfd1d..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/5edc6f55df9224577119e687a2c97282.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/5f0049e4eda5b1689106731ac4d622f6.png b/Tensorflow/TensorFlow2.0/img/5f0049e4eda5b1689106731ac4d622f6.png deleted file mode 100644 index a19bd2cb..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/5f0049e4eda5b1689106731ac4d622f6.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/5fc218fbba095949ac4ca115de92329b.png b/Tensorflow/TensorFlow2.0/img/5fc218fbba095949ac4ca115de92329b.png deleted file mode 100644 index a8b59097..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/5fc218fbba095949ac4ca115de92329b.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/5fcd4749c7b37cf8714bd83753d1da5b.png b/Tensorflow/TensorFlow2.0/img/5fcd4749c7b37cf8714bd83753d1da5b.png deleted file mode 100644 index 5600986b..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/5fcd4749c7b37cf8714bd83753d1da5b.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/5ff0d069276967832a1c7690ce8bcfa3.png b/Tensorflow/TensorFlow2.0/img/5ff0d069276967832a1c7690ce8bcfa3.png deleted file mode 100644 index 947dd2f3..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/5ff0d069276967832a1c7690ce8bcfa3.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/60960a15d5ca50a1486f3c3f8c200635.png b/Tensorflow/TensorFlow2.0/img/60960a15d5ca50a1486f3c3f8c200635.png deleted file mode 100644 index a3954c76..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/60960a15d5ca50a1486f3c3f8c200635.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/60f296c47de6a4f924d14241f6205011.png b/Tensorflow/TensorFlow2.0/img/60f296c47de6a4f924d14241f6205011.png deleted file mode 100644 index 4d32894d..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/60f296c47de6a4f924d14241f6205011.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/61002e329110c6cb1db1a82acd8d232f.png b/Tensorflow/TensorFlow2.0/img/61002e329110c6cb1db1a82acd8d232f.png deleted file mode 100644 index 6e241739..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/61002e329110c6cb1db1a82acd8d232f.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/62b95a860e23180ece55e3d2749a9db0.png b/Tensorflow/TensorFlow2.0/img/62b95a860e23180ece55e3d2749a9db0.png deleted file mode 100644 index 1e2cd483..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/62b95a860e23180ece55e3d2749a9db0.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/6396c35912fab965e30d9adf6c7c8981.png b/Tensorflow/TensorFlow2.0/img/6396c35912fab965e30d9adf6c7c8981.png deleted file mode 100644 index 18472aca..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/6396c35912fab965e30d9adf6c7c8981.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/643455194a29bfd2dc25c8821cbbf3b4.png b/Tensorflow/TensorFlow2.0/img/643455194a29bfd2dc25c8821cbbf3b4.png deleted file mode 100644 index d5a24976..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/643455194a29bfd2dc25c8821cbbf3b4.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/643d654e7e1e3d928041b42363e0f099.png b/Tensorflow/TensorFlow2.0/img/643d654e7e1e3d928041b42363e0f099.png deleted file mode 100644 index a2694b77..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/643d654e7e1e3d928041b42363e0f099.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/644c999529792fb810f213e660e582b8.png b/Tensorflow/TensorFlow2.0/img/644c999529792fb810f213e660e582b8.png deleted file mode 100644 index f84a64d0..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/644c999529792fb810f213e660e582b8.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/651f6b2fbf396ac15fb7661af005bb0e.png b/Tensorflow/TensorFlow2.0/img/651f6b2fbf396ac15fb7661af005bb0e.png deleted file mode 100644 index 9eee8f7c..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/651f6b2fbf396ac15fb7661af005bb0e.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/65e3cc57565dea4503cb5f3f7dca3035.png b/Tensorflow/TensorFlow2.0/img/65e3cc57565dea4503cb5f3f7dca3035.png deleted file mode 100644 index c58a90a6..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/65e3cc57565dea4503cb5f3f7dca3035.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/6637dace2ef4faea4a327361aec7c4ae.png b/Tensorflow/TensorFlow2.0/img/6637dace2ef4faea4a327361aec7c4ae.png deleted file mode 100644 index a506ac8f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/6637dace2ef4faea4a327361aec7c4ae.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/66503afc507478f400022c625de3c878.png b/Tensorflow/TensorFlow2.0/img/66503afc507478f400022c625de3c878.png deleted file mode 100644 index a06e88c2..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/66503afc507478f400022c625de3c878.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/677f173984390980c5f4af3a22313c24.png b/Tensorflow/TensorFlow2.0/img/677f173984390980c5f4af3a22313c24.png deleted file mode 100644 index 868b98d7..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/677f173984390980c5f4af3a22313c24.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/67c5e6fec9fd9b11f792765822fbb538.png b/Tensorflow/TensorFlow2.0/img/67c5e6fec9fd9b11f792765822fbb538.png deleted file mode 100644 index 89918a48..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/67c5e6fec9fd9b11f792765822fbb538.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/696df8a523ce550bf177c7051cef2c75.png b/Tensorflow/TensorFlow2.0/img/696df8a523ce550bf177c7051cef2c75.png deleted file mode 100644 index 8903589f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/696df8a523ce550bf177c7051cef2c75.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/6a2da58193a35a905b6a102743897cbd.png b/Tensorflow/TensorFlow2.0/img/6a2da58193a35a905b6a102743897cbd.png deleted file mode 100644 index 77221d24..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/6a2da58193a35a905b6a102743897cbd.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/6ae78bb4c1ad3a2e0ade4489d4fdf706.png b/Tensorflow/TensorFlow2.0/img/6ae78bb4c1ad3a2e0ade4489d4fdf706.png deleted file mode 100644 index 5ac9884a..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/6ae78bb4c1ad3a2e0ade4489d4fdf706.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/6b1df74992f4b9253cc3e928d73cd3a8.png b/Tensorflow/TensorFlow2.0/img/6b1df74992f4b9253cc3e928d73cd3a8.png deleted file mode 100644 index ececa3b0..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/6b1df74992f4b9253cc3e928d73cd3a8.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/6b843e3001e6a49928fc35d8af4c843d.png b/Tensorflow/TensorFlow2.0/img/6b843e3001e6a49928fc35d8af4c843d.png deleted file mode 100644 index 3cbdbd86..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/6b843e3001e6a49928fc35d8af4c843d.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/6c3e8444c64a773d92f67fd4f07992b7.png b/Tensorflow/TensorFlow2.0/img/6c3e8444c64a773d92f67fd4f07992b7.png deleted file mode 100644 index 864e7840..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/6c3e8444c64a773d92f67fd4f07992b7.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/6c6872963385e03ea4f524449a601d33.png b/Tensorflow/TensorFlow2.0/img/6c6872963385e03ea4f524449a601d33.png deleted file mode 100644 index 4642d521..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/6c6872963385e03ea4f524449a601d33.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/6cd4981eb3c80dc3045b45bd7fd0e7ea.png b/Tensorflow/TensorFlow2.0/img/6cd4981eb3c80dc3045b45bd7fd0e7ea.png deleted file mode 100644 index 014f1817..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/6cd4981eb3c80dc3045b45bd7fd0e7ea.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/6d3cbd4df24ab25d853127035bfd6b5b.png b/Tensorflow/TensorFlow2.0/img/6d3cbd4df24ab25d853127035bfd6b5b.png deleted file mode 100644 index f66c5e5d..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/6d3cbd4df24ab25d853127035bfd6b5b.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/6d5e829de3a867f7bb56dff003b7e217.png b/Tensorflow/TensorFlow2.0/img/6d5e829de3a867f7bb56dff003b7e217.png deleted file mode 100644 index 6c327f78..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/6d5e829de3a867f7bb56dff003b7e217.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/6d8da708f09878fc993e75adb40fd2a1.png b/Tensorflow/TensorFlow2.0/img/6d8da708f09878fc993e75adb40fd2a1.png deleted file mode 100644 index 671efbd1..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/6d8da708f09878fc993e75adb40fd2a1.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/6e7c99c48b9dcda32be57092d1d9d6bb.png b/Tensorflow/TensorFlow2.0/img/6e7c99c48b9dcda32be57092d1d9d6bb.png deleted file mode 100644 index bf163c45..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/6e7c99c48b9dcda32be57092d1d9d6bb.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/6e877844629f2888009486ac2f5ece0b.png b/Tensorflow/TensorFlow2.0/img/6e877844629f2888009486ac2f5ece0b.png deleted file mode 100644 index 7f07f2f7..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/6e877844629f2888009486ac2f5ece0b.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/707c82ef753d85482b462054a3e19161.png b/Tensorflow/TensorFlow2.0/img/707c82ef753d85482b462054a3e19161.png deleted file mode 100644 index 73a12beb..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/707c82ef753d85482b462054a3e19161.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/70aad5930c300b7d64d15effb7f89419.png b/Tensorflow/TensorFlow2.0/img/70aad5930c300b7d64d15effb7f89419.png deleted file mode 100644 index 76b42cff..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/70aad5930c300b7d64d15effb7f89419.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/70c92a3e3d823d4469d81b23380fef63.png b/Tensorflow/TensorFlow2.0/img/70c92a3e3d823d4469d81b23380fef63.png deleted file mode 100644 index dabe8001..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/70c92a3e3d823d4469d81b23380fef63.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/711ebb2cc10e3bb88f77a6eb89fac014.png b/Tensorflow/TensorFlow2.0/img/711ebb2cc10e3bb88f77a6eb89fac014.png deleted file mode 100644 index 140d1a3d..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/711ebb2cc10e3bb88f77a6eb89fac014.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/7138c243e1e2c00466be2191f6395597.png b/Tensorflow/TensorFlow2.0/img/7138c243e1e2c00466be2191f6395597.png deleted file mode 100644 index 0070a46e..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/7138c243e1e2c00466be2191f6395597.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/714e44b919585c6cb716b313e7f35787.png b/Tensorflow/TensorFlow2.0/img/714e44b919585c6cb716b313e7f35787.png deleted file mode 100644 index 94fb10e8..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/714e44b919585c6cb716b313e7f35787.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/717d3c9c631162f5b991acff83eda7bc.png b/Tensorflow/TensorFlow2.0/img/717d3c9c631162f5b991acff83eda7bc.png deleted file mode 100644 index 580edf0c..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/717d3c9c631162f5b991acff83eda7bc.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/720daa43063b46bf1f7dcc96c25df451.png b/Tensorflow/TensorFlow2.0/img/720daa43063b46bf1f7dcc96c25df451.png deleted file mode 100644 index e5b70874..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/720daa43063b46bf1f7dcc96c25df451.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/72de951dda8439ddee9fe72a64a9ed2e.png b/Tensorflow/TensorFlow2.0/img/72de951dda8439ddee9fe72a64a9ed2e.png deleted file mode 100644 index 7ee7b1cb..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/72de951dda8439ddee9fe72a64a9ed2e.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/72fcb6a7bcc602106e2c60268d3642c5.png b/Tensorflow/TensorFlow2.0/img/72fcb6a7bcc602106e2c60268d3642c5.png deleted file mode 100644 index 26b5f801..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/72fcb6a7bcc602106e2c60268d3642c5.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/74469ffcda8aa53d4c29cfcfda5831ad.png b/Tensorflow/TensorFlow2.0/img/74469ffcda8aa53d4c29cfcfda5831ad.png deleted file mode 100644 index c18ed4c6..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/74469ffcda8aa53d4c29cfcfda5831ad.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/74badb10696c0ffbba886121ce004be0.png b/Tensorflow/TensorFlow2.0/img/74badb10696c0ffbba886121ce004be0.png deleted file mode 100644 index 0cc1fe87..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/74badb10696c0ffbba886121ce004be0.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/74d574698188902058a67179ab1b7192.png b/Tensorflow/TensorFlow2.0/img/74d574698188902058a67179ab1b7192.png deleted file mode 100644 index dd7aa5b4..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/74d574698188902058a67179ab1b7192.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/74d6d6302722b19888cd2b8a076a9899.png b/Tensorflow/TensorFlow2.0/img/74d6d6302722b19888cd2b8a076a9899.png deleted file mode 100644 index 31daa66a..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/74d6d6302722b19888cd2b8a076a9899.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/7534c154062dc8f522f01d83838f3161.png b/Tensorflow/TensorFlow2.0/img/7534c154062dc8f522f01d83838f3161.png deleted file mode 100644 index c2d46e3d..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/7534c154062dc8f522f01d83838f3161.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/77a7189086e1a02a870dbf630c311e5d.png b/Tensorflow/TensorFlow2.0/img/77a7189086e1a02a870dbf630c311e5d.png deleted file mode 100644 index 83ecf420..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/77a7189086e1a02a870dbf630c311e5d.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/77a9a1e4b542e966076c493155a71253.png b/Tensorflow/TensorFlow2.0/img/77a9a1e4b542e966076c493155a71253.png deleted file mode 100644 index aa5bf4ff..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/77a9a1e4b542e966076c493155a71253.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/78576e063fbd26107e5efc5a23a8ec2d.png b/Tensorflow/TensorFlow2.0/img/78576e063fbd26107e5efc5a23a8ec2d.png deleted file mode 100644 index e285ae30..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/78576e063fbd26107e5efc5a23a8ec2d.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/78ca1a250f36dcb02f9c3bdeed26f8cc.png b/Tensorflow/TensorFlow2.0/img/78ca1a250f36dcb02f9c3bdeed26f8cc.png deleted file mode 100644 index 51ad2eb6..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/78ca1a250f36dcb02f9c3bdeed26f8cc.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/79de81de8fa8f26b206d9f7e2e29232f.png b/Tensorflow/TensorFlow2.0/img/79de81de8fa8f26b206d9f7e2e29232f.png deleted file mode 100644 index 19cb2e09..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/79de81de8fa8f26b206d9f7e2e29232f.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/7cdba0cc0b42056375b866ad3630f029.png b/Tensorflow/TensorFlow2.0/img/7cdba0cc0b42056375b866ad3630f029.png deleted file mode 100644 index 49836832..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/7cdba0cc0b42056375b866ad3630f029.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/7d1de3cd2c94ab5fb2b9e44445a2fa6b.png b/Tensorflow/TensorFlow2.0/img/7d1de3cd2c94ab5fb2b9e44445a2fa6b.png deleted file mode 100644 index a278b8af..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/7d1de3cd2c94ab5fb2b9e44445a2fa6b.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/7e31e526f055ddde2fd0d3a4e5d60aef.png b/Tensorflow/TensorFlow2.0/img/7e31e526f055ddde2fd0d3a4e5d60aef.png deleted file mode 100644 index d1f82973..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/7e31e526f055ddde2fd0d3a4e5d60aef.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/7eb3066f3b0de91799a8bcae1606a337.png b/Tensorflow/TensorFlow2.0/img/7eb3066f3b0de91799a8bcae1606a337.png deleted file mode 100644 index fcdcb29f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/7eb3066f3b0de91799a8bcae1606a337.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/7eb74540a68f2291fad5d0e857c5b792.png b/Tensorflow/TensorFlow2.0/img/7eb74540a68f2291fad5d0e857c5b792.png deleted file mode 100644 index 7f936f80..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/7eb74540a68f2291fad5d0e857c5b792.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/7ef992617c160736f94c086cc0a754d5.png b/Tensorflow/TensorFlow2.0/img/7ef992617c160736f94c086cc0a754d5.png deleted file mode 100644 index 88f4dd1c..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/7ef992617c160736f94c086cc0a754d5.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/7f05b53be9225270c3955654d7d465de.png b/Tensorflow/TensorFlow2.0/img/7f05b53be9225270c3955654d7d465de.png deleted file mode 100644 index 8b875b8a..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/7f05b53be9225270c3955654d7d465de.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/7fb60d07e3fa3bd88b02197b1f12223f.png b/Tensorflow/TensorFlow2.0/img/7fb60d07e3fa3bd88b02197b1f12223f.png deleted file mode 100644 index c3f7cd1f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/7fb60d07e3fa3bd88b02197b1f12223f.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/7fe4fe0b14735050369dc31f05672d65.png b/Tensorflow/TensorFlow2.0/img/7fe4fe0b14735050369dc31f05672d65.png deleted file mode 100644 index ec512ee4..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/7fe4fe0b14735050369dc31f05672d65.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/80b7b3f55ab0abb83e2fa9303508fd68.png b/Tensorflow/TensorFlow2.0/img/80b7b3f55ab0abb83e2fa9303508fd68.png deleted file mode 100644 index 2e820d81..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/80b7b3f55ab0abb83e2fa9303508fd68.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/810312a7c3f1fcd32a88650d8631239e.png b/Tensorflow/TensorFlow2.0/img/810312a7c3f1fcd32a88650d8631239e.png deleted file mode 100644 index 177389d5..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/810312a7c3f1fcd32a88650d8631239e.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/810fd9bfb9c1343a9406169df9bf12df.png b/Tensorflow/TensorFlow2.0/img/810fd9bfb9c1343a9406169df9bf12df.png deleted file mode 100644 index 6bbf04e2..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/810fd9bfb9c1343a9406169df9bf12df.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/8142c6b01c1a35d86e4ace60827bcce8.png b/Tensorflow/TensorFlow2.0/img/8142c6b01c1a35d86e4ace60827bcce8.png deleted file mode 100644 index 7f6efba0..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/8142c6b01c1a35d86e4ace60827bcce8.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/815371be4cdb93da43df2c0cb17bb929.png b/Tensorflow/TensorFlow2.0/img/815371be4cdb93da43df2c0cb17bb929.png deleted file mode 100644 index 3eeaf5bc..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/815371be4cdb93da43df2c0cb17bb929.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/82444fa7539ed0a798d9a1de5aaf147b.png b/Tensorflow/TensorFlow2.0/img/82444fa7539ed0a798d9a1de5aaf147b.png deleted file mode 100644 index d20abdbc..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/82444fa7539ed0a798d9a1de5aaf147b.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/82589e03628e8bb6a3ba169733c4cc9e.png b/Tensorflow/TensorFlow2.0/img/82589e03628e8bb6a3ba169733c4cc9e.png deleted file mode 100644 index f204eaac..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/82589e03628e8bb6a3ba169733c4cc9e.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/82eeef92c3c39a6fc38d679c9e4c37fa.png b/Tensorflow/TensorFlow2.0/img/82eeef92c3c39a6fc38d679c9e4c37fa.png deleted file mode 100644 index 90bac262..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/82eeef92c3c39a6fc38d679c9e4c37fa.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/8317a6a03bbf1bff4913755d5d89c9c6.png b/Tensorflow/TensorFlow2.0/img/8317a6a03bbf1bff4913755d5d89c9c6.png deleted file mode 100644 index 9a19ac3f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/8317a6a03bbf1bff4913755d5d89c9c6.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/833d9eeff633ce77dec2eb85f74e8bbb.png b/Tensorflow/TensorFlow2.0/img/833d9eeff633ce77dec2eb85f74e8bbb.png deleted file mode 100644 index f9ff390f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/833d9eeff633ce77dec2eb85f74e8bbb.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/8350c367e4679800cd155cf00a343b47.png b/Tensorflow/TensorFlow2.0/img/8350c367e4679800cd155cf00a343b47.png deleted file mode 100644 index d08040e8..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/8350c367e4679800cd155cf00a343b47.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/852e0228b5aebca16dfadf758d11e902.png b/Tensorflow/TensorFlow2.0/img/852e0228b5aebca16dfadf758d11e902.png deleted file mode 100644 index 77360ac7..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/852e0228b5aebca16dfadf758d11e902.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/85d63bf8a53bc6d25baa38c0e3e2dde0.png b/Tensorflow/TensorFlow2.0/img/85d63bf8a53bc6d25baa38c0e3e2dde0.png deleted file mode 100644 index 3eaf725b..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/85d63bf8a53bc6d25baa38c0e3e2dde0.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/864dc18cd572f84b2ce62f1f5d620663.png b/Tensorflow/TensorFlow2.0/img/864dc18cd572f84b2ce62f1f5d620663.png deleted file mode 100644 index 31a6e1ce..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/864dc18cd572f84b2ce62f1f5d620663.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/867e80eb383cce30a1f013a43e465d02.png b/Tensorflow/TensorFlow2.0/img/867e80eb383cce30a1f013a43e465d02.png deleted file mode 100644 index 19c4c9ba..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/867e80eb383cce30a1f013a43e465d02.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/868f946086995ef931b7b454d904e14b.png b/Tensorflow/TensorFlow2.0/img/868f946086995ef931b7b454d904e14b.png deleted file mode 100644 index e90a9097..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/868f946086995ef931b7b454d904e14b.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/8699bedea334d056223fb477ad561204.png b/Tensorflow/TensorFlow2.0/img/8699bedea334d056223fb477ad561204.png deleted file mode 100644 index 54170326..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/8699bedea334d056223fb477ad561204.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/86f4e22b402c9e48d76da7068ace2175.png b/Tensorflow/TensorFlow2.0/img/86f4e22b402c9e48d76da7068ace2175.png deleted file mode 100644 index 4fb6db89..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/86f4e22b402c9e48d76da7068ace2175.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/87abb24bd5c5230158bc1ff3b3bb5624.png b/Tensorflow/TensorFlow2.0/img/87abb24bd5c5230158bc1ff3b3bb5624.png deleted file mode 100644 index 94eb6504..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/87abb24bd5c5230158bc1ff3b3bb5624.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/87e59b9663f1f875cba8bbc04b3ec8d7.png b/Tensorflow/TensorFlow2.0/img/87e59b9663f1f875cba8bbc04b3ec8d7.png deleted file mode 100644 index f3253762..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/87e59b9663f1f875cba8bbc04b3ec8d7.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/87f405a26e039fc527ac7f2dd59de28d.png b/Tensorflow/TensorFlow2.0/img/87f405a26e039fc527ac7f2dd59de28d.png deleted file mode 100644 index 3723f1a0..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/87f405a26e039fc527ac7f2dd59de28d.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/89837448c36d73e735364038e7b3e689.png b/Tensorflow/TensorFlow2.0/img/89837448c36d73e735364038e7b3e689.png deleted file mode 100644 index a105772f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/89837448c36d73e735364038e7b3e689.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/8a26efaab988f8c9054ea977baabb45a.png b/Tensorflow/TensorFlow2.0/img/8a26efaab988f8c9054ea977baabb45a.png deleted file mode 100644 index 3b6a9ef4..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/8a26efaab988f8c9054ea977baabb45a.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/8aa1d48ada55b367535dbe964ad2cd79.png b/Tensorflow/TensorFlow2.0/img/8aa1d48ada55b367535dbe964ad2cd79.png deleted file mode 100644 index 52b26e5f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/8aa1d48ada55b367535dbe964ad2cd79.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/8c90a903ef2c498784c14d3c169e9ee6.png b/Tensorflow/TensorFlow2.0/img/8c90a903ef2c498784c14d3c169e9ee6.png deleted file mode 100644 index 52a10393..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/8c90a903ef2c498784c14d3c169e9ee6.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/8cfd7ac31a67f47e311e6db012947c3e.png b/Tensorflow/TensorFlow2.0/img/8cfd7ac31a67f47e311e6db012947c3e.png deleted file mode 100644 index 7d49568f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/8cfd7ac31a67f47e311e6db012947c3e.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/8d456c03cff000c86147a07dbbcb6f32.png b/Tensorflow/TensorFlow2.0/img/8d456c03cff000c86147a07dbbcb6f32.png deleted file mode 100644 index e1f15ecb..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/8d456c03cff000c86147a07dbbcb6f32.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/8ece215a943b54af726cd35da72293a2.png b/Tensorflow/TensorFlow2.0/img/8ece215a943b54af726cd35da72293a2.png deleted file mode 100644 index badcee15..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/8ece215a943b54af726cd35da72293a2.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/8f2ea45ce97f58e2339af71a7d349532.png b/Tensorflow/TensorFlow2.0/img/8f2ea45ce97f58e2339af71a7d349532.png deleted file mode 100644 index 6921c691..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/8f2ea45ce97f58e2339af71a7d349532.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/8f40b70083328d6f68f1d2c5821927d1.png b/Tensorflow/TensorFlow2.0/img/8f40b70083328d6f68f1d2c5821927d1.png deleted file mode 100644 index 593dd407..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/8f40b70083328d6f68f1d2c5821927d1.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/8f8b815630d4213a923f492eacc9d2d0.png b/Tensorflow/TensorFlow2.0/img/8f8b815630d4213a923f492eacc9d2d0.png deleted file mode 100644 index ebf3880e..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/8f8b815630d4213a923f492eacc9d2d0.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/8fcdc694ecba49a443b3d3fa3db737c8.png b/Tensorflow/TensorFlow2.0/img/8fcdc694ecba49a443b3d3fa3db737c8.png deleted file mode 100644 index b6419b4a..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/8fcdc694ecba49a443b3d3fa3db737c8.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/906a04e5434908ec33033e39f2e83f6b.png b/Tensorflow/TensorFlow2.0/img/906a04e5434908ec33033e39f2e83f6b.png deleted file mode 100644 index 10d735aa..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/906a04e5434908ec33033e39f2e83f6b.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/90c153ba31f6c32d7d760bc031b5d956.png b/Tensorflow/TensorFlow2.0/img/90c153ba31f6c32d7d760bc031b5d956.png deleted file mode 100644 index b3c8b2a8..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/90c153ba31f6c32d7d760bc031b5d956.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/918c568bb9e84acfad1ad27dbca52256.png b/Tensorflow/TensorFlow2.0/img/918c568bb9e84acfad1ad27dbca52256.png deleted file mode 100644 index d16a8f41..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/918c568bb9e84acfad1ad27dbca52256.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/921588a88d035dfd280c98f420033345.png b/Tensorflow/TensorFlow2.0/img/921588a88d035dfd280c98f420033345.png deleted file mode 100644 index 275aeea9..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/921588a88d035dfd280c98f420033345.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/921a4bdd48f0d134cefd395ce4a30708.png b/Tensorflow/TensorFlow2.0/img/921a4bdd48f0d134cefd395ce4a30708.png deleted file mode 100644 index c9eada40..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/921a4bdd48f0d134cefd395ce4a30708.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/92783ce299d17a6100276f8087c404f5.png b/Tensorflow/TensorFlow2.0/img/92783ce299d17a6100276f8087c404f5.png deleted file mode 100644 index 46c202f8..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/92783ce299d17a6100276f8087c404f5.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/93885449f16f07fe470e025617b7acf3.png b/Tensorflow/TensorFlow2.0/img/93885449f16f07fe470e025617b7acf3.png deleted file mode 100644 index 7b04a694..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/93885449f16f07fe470e025617b7acf3.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/9461d6f88eb7d390eea25f1f034101b5.png b/Tensorflow/TensorFlow2.0/img/9461d6f88eb7d390eea25f1f034101b5.png deleted file mode 100644 index 88c81049..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/9461d6f88eb7d390eea25f1f034101b5.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/952f47865ecb556d71d2bcdfe9caad34.png b/Tensorflow/TensorFlow2.0/img/952f47865ecb556d71d2bcdfe9caad34.png deleted file mode 100644 index 8df0f437..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/952f47865ecb556d71d2bcdfe9caad34.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/9534e12498035f0762e0c85eee6f02ca.png b/Tensorflow/TensorFlow2.0/img/9534e12498035f0762e0c85eee6f02ca.png deleted file mode 100644 index 01342d82..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/9534e12498035f0762e0c85eee6f02ca.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/9564eb108080dfcb0a0231e7db795b06.png b/Tensorflow/TensorFlow2.0/img/9564eb108080dfcb0a0231e7db795b06.png deleted file mode 100644 index ea434e01..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/9564eb108080dfcb0a0231e7db795b06.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/9666a8448543e729e35645bbb2244464.png b/Tensorflow/TensorFlow2.0/img/9666a8448543e729e35645bbb2244464.png deleted file mode 100644 index bda77a79..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/9666a8448543e729e35645bbb2244464.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/968128f6d4f50734ad92597399dacd79.png b/Tensorflow/TensorFlow2.0/img/968128f6d4f50734ad92597399dacd79.png deleted file mode 100644 index 2438684f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/968128f6d4f50734ad92597399dacd79.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/96d1ebcace7bea24e438e658512e1e53.png b/Tensorflow/TensorFlow2.0/img/96d1ebcace7bea24e438e658512e1e53.png deleted file mode 100644 index 1c5a1218..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/96d1ebcace7bea24e438e658512e1e53.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/96e942cbf28db3cfff8c8f90167f2a8b.png b/Tensorflow/TensorFlow2.0/img/96e942cbf28db3cfff8c8f90167f2a8b.png deleted file mode 100644 index de5cbd97..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/96e942cbf28db3cfff8c8f90167f2a8b.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/982e1307bbc8145644b791d775fcc2c7.png b/Tensorflow/TensorFlow2.0/img/982e1307bbc8145644b791d775fcc2c7.png deleted file mode 100644 index 2604ce7e..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/982e1307bbc8145644b791d775fcc2c7.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/996d41e44b9998dc439ec88b9b370cec.png b/Tensorflow/TensorFlow2.0/img/996d41e44b9998dc439ec88b9b370cec.png deleted file mode 100644 index a82f27e1..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/996d41e44b9998dc439ec88b9b370cec.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/9a244f6224055e7727787fe289c2ca7c.png b/Tensorflow/TensorFlow2.0/img/9a244f6224055e7727787fe289c2ca7c.png deleted file mode 100644 index a51bbe00..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/9a244f6224055e7727787fe289c2ca7c.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/9c459926609b3f3452425d5e76209223.png b/Tensorflow/TensorFlow2.0/img/9c459926609b3f3452425d5e76209223.png deleted file mode 100644 index d327ec24..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/9c459926609b3f3452425d5e76209223.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/9c9248a99f6346e02b6be5c21e5ab7be.png b/Tensorflow/TensorFlow2.0/img/9c9248a99f6346e02b6be5c21e5ab7be.png deleted file mode 100644 index 908cc653..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/9c9248a99f6346e02b6be5c21e5ab7be.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/9c9dba05c6503363ec77df2a3d25a70b.png b/Tensorflow/TensorFlow2.0/img/9c9dba05c6503363ec77df2a3d25a70b.png deleted file mode 100644 index 5c782375..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/9c9dba05c6503363ec77df2a3d25a70b.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/9cada0d075f4e1a104766ddd3754aba4.png b/Tensorflow/TensorFlow2.0/img/9cada0d075f4e1a104766ddd3754aba4.png deleted file mode 100644 index cd52a65c..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/9cada0d075f4e1a104766ddd3754aba4.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/9de9afda3f7352b4106f61a83025d8e1.png b/Tensorflow/TensorFlow2.0/img/9de9afda3f7352b4106f61a83025d8e1.png deleted file mode 100644 index a961bedf..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/9de9afda3f7352b4106f61a83025d8e1.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/9ec1c5121631fabdd2734d5a380b07fc.png b/Tensorflow/TensorFlow2.0/img/9ec1c5121631fabdd2734d5a380b07fc.png deleted file mode 100644 index 73544a0f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/9ec1c5121631fabdd2734d5a380b07fc.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/9fb3392ca5993899f47b18579cbe31b2.png b/Tensorflow/TensorFlow2.0/img/9fb3392ca5993899f47b18579cbe31b2.png deleted file mode 100644 index b7aa33a7..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/9fb3392ca5993899f47b18579cbe31b2.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/9fe57f7953fe53d67a38187c0888cb68.png b/Tensorflow/TensorFlow2.0/img/9fe57f7953fe53d67a38187c0888cb68.png deleted file mode 100644 index a58dd240..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/9fe57f7953fe53d67a38187c0888cb68.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/a010d7e20315211304fe4a28f6c6f8e7.png b/Tensorflow/TensorFlow2.0/img/a010d7e20315211304fe4a28f6c6f8e7.png deleted file mode 100644 index 9a1307d7..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/a010d7e20315211304fe4a28f6c6f8e7.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/a07663add154e45bd446c2344b406190.png b/Tensorflow/TensorFlow2.0/img/a07663add154e45bd446c2344b406190.png deleted file mode 100644 index cd1aaf4d..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/a07663add154e45bd446c2344b406190.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/a0fc8485669a9e30fd4f2ba2db4ebe0e.png b/Tensorflow/TensorFlow2.0/img/a0fc8485669a9e30fd4f2ba2db4ebe0e.png deleted file mode 100644 index b87776fc..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/a0fc8485669a9e30fd4f2ba2db4ebe0e.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/a208fe52aacc14e668b9b681805d8302.png b/Tensorflow/TensorFlow2.0/img/a208fe52aacc14e668b9b681805d8302.png deleted file mode 100644 index 09f73479..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/a208fe52aacc14e668b9b681805d8302.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/a2d79e6f20ade2372271c76afeaca800.png b/Tensorflow/TensorFlow2.0/img/a2d79e6f20ade2372271c76afeaca800.png deleted file mode 100644 index 1d639a26..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/a2d79e6f20ade2372271c76afeaca800.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/a2df7f5d9e1c60caea95f5df1cc01ee2.png b/Tensorflow/TensorFlow2.0/img/a2df7f5d9e1c60caea95f5df1cc01ee2.png deleted file mode 100644 index b025278d..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/a2df7f5d9e1c60caea95f5df1cc01ee2.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/a3920eb34218a65a21b046a30c7d3808.png b/Tensorflow/TensorFlow2.0/img/a3920eb34218a65a21b046a30c7d3808.png deleted file mode 100644 index e3a0f9c4..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/a3920eb34218a65a21b046a30c7d3808.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/a3923a442896cffee97920f98141a84c.png b/Tensorflow/TensorFlow2.0/img/a3923a442896cffee97920f98141a84c.png deleted file mode 100644 index 9f32bb11..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/a3923a442896cffee97920f98141a84c.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/a3d4072cdd299fedb28dda8fdab7e611.png b/Tensorflow/TensorFlow2.0/img/a3d4072cdd299fedb28dda8fdab7e611.png deleted file mode 100644 index 81cc5015..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/a3d4072cdd299fedb28dda8fdab7e611.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/a3f9320fc0125d442f2b7412c2492197.png b/Tensorflow/TensorFlow2.0/img/a3f9320fc0125d442f2b7412c2492197.png deleted file mode 100644 index 0e7031ce..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/a3f9320fc0125d442f2b7412c2492197.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/a49dab0e9e9ab0a58b2928fb2760dab6.png b/Tensorflow/TensorFlow2.0/img/a49dab0e9e9ab0a58b2928fb2760dab6.png deleted file mode 100644 index 17a40f9f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/a49dab0e9e9ab0a58b2928fb2760dab6.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/a4e3dc308082391c952aa74215418950.png b/Tensorflow/TensorFlow2.0/img/a4e3dc308082391c952aa74215418950.png deleted file mode 100644 index e1f951b2..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/a4e3dc308082391c952aa74215418950.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/a50df54eefaa2e0b41728c5e66685f3a.png b/Tensorflow/TensorFlow2.0/img/a50df54eefaa2e0b41728c5e66685f3a.png deleted file mode 100644 index d4cde950..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/a50df54eefaa2e0b41728c5e66685f3a.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/a71722493bd8850dfcd7c1ec0e69918f.png b/Tensorflow/TensorFlow2.0/img/a71722493bd8850dfcd7c1ec0e69918f.png deleted file mode 100644 index 2e1acaa8..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/a71722493bd8850dfcd7c1ec0e69918f.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/a83182d7f6b11d76dd2d428db01ade58.png b/Tensorflow/TensorFlow2.0/img/a83182d7f6b11d76dd2d428db01ade58.png deleted file mode 100644 index 10f33e87..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/a83182d7f6b11d76dd2d428db01ade58.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/a84da0fdd95c0b8365360f941f57e017.png b/Tensorflow/TensorFlow2.0/img/a84da0fdd95c0b8365360f941f57e017.png deleted file mode 100644 index 8198760a..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/a84da0fdd95c0b8365360f941f57e017.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/a8a6734d5e53ebf66610af0af887bc96.png b/Tensorflow/TensorFlow2.0/img/a8a6734d5e53ebf66610af0af887bc96.png deleted file mode 100644 index e8e52bd7..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/a8a6734d5e53ebf66610af0af887bc96.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/a949ce3a88563b30ea494e744fe3cd5f.png b/Tensorflow/TensorFlow2.0/img/a949ce3a88563b30ea494e744fe3cd5f.png deleted file mode 100644 index 66c34c4b..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/a949ce3a88563b30ea494e744fe3cd5f.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/aa45f39cd51486760afc706f90cf0afa.png b/Tensorflow/TensorFlow2.0/img/aa45f39cd51486760afc706f90cf0afa.png deleted file mode 100644 index 08e34e65..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/aa45f39cd51486760afc706f90cf0afa.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/aaf0cfc73c7f275786e66d759ad26df6.png b/Tensorflow/TensorFlow2.0/img/aaf0cfc73c7f275786e66d759ad26df6.png deleted file mode 100644 index c07e06ca..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/aaf0cfc73c7f275786e66d759ad26df6.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/ab876a0a7878b27ea0658f95d96f1ddb.png b/Tensorflow/TensorFlow2.0/img/ab876a0a7878b27ea0658f95d96f1ddb.png deleted file mode 100644 index 55cf57d0..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/ab876a0a7878b27ea0658f95d96f1ddb.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/ac69959225a206f2b2c5ed2e33218511.png b/Tensorflow/TensorFlow2.0/img/ac69959225a206f2b2c5ed2e33218511.png deleted file mode 100644 index ec65f711..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/ac69959225a206f2b2c5ed2e33218511.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/ac9289d9a0758fb9367cad77aaac2cad.png b/Tensorflow/TensorFlow2.0/img/ac9289d9a0758fb9367cad77aaac2cad.png deleted file mode 100644 index 196214c1..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/ac9289d9a0758fb9367cad77aaac2cad.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/ac978eb483a5f2c471a3cbeb70bb6784.png b/Tensorflow/TensorFlow2.0/img/ac978eb483a5f2c471a3cbeb70bb6784.png deleted file mode 100644 index 45956b65..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/ac978eb483a5f2c471a3cbeb70bb6784.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/acec4256cc684c59dc4dc1bad6a07a7f.png b/Tensorflow/TensorFlow2.0/img/acec4256cc684c59dc4dc1bad6a07a7f.png deleted file mode 100644 index 66c92959..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/acec4256cc684c59dc4dc1bad6a07a7f.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/ad462e5b3dc8d32430aaa7de7e4bf303.png b/Tensorflow/TensorFlow2.0/img/ad462e5b3dc8d32430aaa7de7e4bf303.png deleted file mode 100644 index 013e3118..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/ad462e5b3dc8d32430aaa7de7e4bf303.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/ae14079092bef088b0ecf83c8f429ef2.png b/Tensorflow/TensorFlow2.0/img/ae14079092bef088b0ecf83c8f429ef2.png deleted file mode 100644 index dec7d5c1..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/ae14079092bef088b0ecf83c8f429ef2.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/ae60ced5a9a18ef2a947912ada799ca0.png b/Tensorflow/TensorFlow2.0/img/ae60ced5a9a18ef2a947912ada799ca0.png deleted file mode 100644 index adf9a989..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/ae60ced5a9a18ef2a947912ada799ca0.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/aef2c569f7fec52ed4d6e656dddb8da4.png b/Tensorflow/TensorFlow2.0/img/aef2c569f7fec52ed4d6e656dddb8da4.png deleted file mode 100644 index 6d562f43..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/aef2c569f7fec52ed4d6e656dddb8da4.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/b038d931bd8b770e0d244bb981ce446c.png b/Tensorflow/TensorFlow2.0/img/b038d931bd8b770e0d244bb981ce446c.png deleted file mode 100644 index b891aeab..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/b038d931bd8b770e0d244bb981ce446c.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/b14e045bbc9dfbc31c1d4f77e4567e6d.png b/Tensorflow/TensorFlow2.0/img/b14e045bbc9dfbc31c1d4f77e4567e6d.png deleted file mode 100644 index 87b0eec0..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/b14e045bbc9dfbc31c1d4f77e4567e6d.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/b38a330815f01aa53bb358d34b4a3c5b.png b/Tensorflow/TensorFlow2.0/img/b38a330815f01aa53bb358d34b4a3c5b.png deleted file mode 100644 index b4f05d7a..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/b38a330815f01aa53bb358d34b4a3c5b.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/b4bcda4ec74a98071e75941c07503a6c.png b/Tensorflow/TensorFlow2.0/img/b4bcda4ec74a98071e75941c07503a6c.png deleted file mode 100644 index deeab29f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/b4bcda4ec74a98071e75941c07503a6c.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/b59ec7633714f0220810184e7792c80a.png b/Tensorflow/TensorFlow2.0/img/b59ec7633714f0220810184e7792c80a.png deleted file mode 100644 index 717e7eba..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/b59ec7633714f0220810184e7792c80a.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/b5a9ca25aab20c2b09a25fdab4c2b92b.png b/Tensorflow/TensorFlow2.0/img/b5a9ca25aab20c2b09a25fdab4c2b92b.png deleted file mode 100644 index 892679e9..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/b5a9ca25aab20c2b09a25fdab4c2b92b.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/b7fd03ac59129ba2515cf59b292f3296.png b/Tensorflow/TensorFlow2.0/img/b7fd03ac59129ba2515cf59b292f3296.png deleted file mode 100644 index 52d3b6ae..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/b7fd03ac59129ba2515cf59b292f3296.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/b8397a070205f9293fbc989d8421eec5.png b/Tensorflow/TensorFlow2.0/img/b8397a070205f9293fbc989d8421eec5.png deleted file mode 100644 index 88b11353..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/b8397a070205f9293fbc989d8421eec5.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/b84cdc6273e2ce65876a86561af080a5.png b/Tensorflow/TensorFlow2.0/img/b84cdc6273e2ce65876a86561af080a5.png deleted file mode 100644 index 88896d1e..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/b84cdc6273e2ce65876a86561af080a5.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/b9c02a2b74c4b9c99f2707fddae68a8d.png b/Tensorflow/TensorFlow2.0/img/b9c02a2b74c4b9c99f2707fddae68a8d.png deleted file mode 100644 index 313a5ed6..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/b9c02a2b74c4b9c99f2707fddae68a8d.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/b9f520a19b0bd493834819ddfc1ef26b.png b/Tensorflow/TensorFlow2.0/img/b9f520a19b0bd493834819ddfc1ef26b.png deleted file mode 100644 index 9a91caf7..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/b9f520a19b0bd493834819ddfc1ef26b.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/bb63d10882d3aa9a631d3cf50ff7f21e.png b/Tensorflow/TensorFlow2.0/img/bb63d10882d3aa9a631d3cf50ff7f21e.png deleted file mode 100644 index 657a40e0..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/bb63d10882d3aa9a631d3cf50ff7f21e.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/be737507a3c4409c7dc8aa33d2196e15.png b/Tensorflow/TensorFlow2.0/img/be737507a3c4409c7dc8aa33d2196e15.png deleted file mode 100644 index 658846be..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/be737507a3c4409c7dc8aa33d2196e15.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/bf058b152584cc8e8c3987a57eb7331f.png b/Tensorflow/TensorFlow2.0/img/bf058b152584cc8e8c3987a57eb7331f.png deleted file mode 100644 index 0e8f19b6..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/bf058b152584cc8e8c3987a57eb7331f.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/bf18f34f1076405e0bca19939de2bd91.png b/Tensorflow/TensorFlow2.0/img/bf18f34f1076405e0bca19939de2bd91.png deleted file mode 100644 index fd38897c..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/bf18f34f1076405e0bca19939de2bd91.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/bfdf8a09e5b289018514265caa15c398.png b/Tensorflow/TensorFlow2.0/img/bfdf8a09e5b289018514265caa15c398.png deleted file mode 100644 index f953c1e8..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/bfdf8a09e5b289018514265caa15c398.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/c05647567564d6207cec5962f562a1d7.png b/Tensorflow/TensorFlow2.0/img/c05647567564d6207cec5962f562a1d7.png deleted file mode 100644 index 47fad364..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/c05647567564d6207cec5962f562a1d7.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/c12f3797e75b6aa8bdc206f4b91344c1.png b/Tensorflow/TensorFlow2.0/img/c12f3797e75b6aa8bdc206f4b91344c1.png deleted file mode 100644 index b12b517d..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/c12f3797e75b6aa8bdc206f4b91344c1.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/c152c7181c46470c9085620544ab9be7.png b/Tensorflow/TensorFlow2.0/img/c152c7181c46470c9085620544ab9be7.png deleted file mode 100644 index 65ece1f6..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/c152c7181c46470c9085620544ab9be7.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/c22fa60f9660a04e79c3549bc99392df.png b/Tensorflow/TensorFlow2.0/img/c22fa60f9660a04e79c3549bc99392df.png deleted file mode 100644 index ed898b47..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/c22fa60f9660a04e79c3549bc99392df.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/c239b9ad6cf9b5f72e3d6d37fd17b9d1.png b/Tensorflow/TensorFlow2.0/img/c239b9ad6cf9b5f72e3d6d37fd17b9d1.png deleted file mode 100644 index 740b8b45..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/c239b9ad6cf9b5f72e3d6d37fd17b9d1.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/c2a117375845a6a7d1c87b2c84de54e8.png b/Tensorflow/TensorFlow2.0/img/c2a117375845a6a7d1c87b2c84de54e8.png deleted file mode 100644 index ce27fca9..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/c2a117375845a6a7d1c87b2c84de54e8.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/c40faed8e3efd524ec22fb4842e81867.png b/Tensorflow/TensorFlow2.0/img/c40faed8e3efd524ec22fb4842e81867.png deleted file mode 100644 index 1108f9be..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/c40faed8e3efd524ec22fb4842e81867.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/c542bc6784512a8abdc2e3a85a1e1905.png b/Tensorflow/TensorFlow2.0/img/c542bc6784512a8abdc2e3a85a1e1905.png deleted file mode 100644 index 165da78c..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/c542bc6784512a8abdc2e3a85a1e1905.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/c55318af9effb720969a76a37cfc3a42.png b/Tensorflow/TensorFlow2.0/img/c55318af9effb720969a76a37cfc3a42.png deleted file mode 100644 index a42bf678..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/c55318af9effb720969a76a37cfc3a42.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/c5f05439bb7e2eb354fda7f89beadeb3.png b/Tensorflow/TensorFlow2.0/img/c5f05439bb7e2eb354fda7f89beadeb3.png deleted file mode 100644 index b65655d7..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/c5f05439bb7e2eb354fda7f89beadeb3.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/c67ce581d874e2d04e2761cc44b1d094.png b/Tensorflow/TensorFlow2.0/img/c67ce581d874e2d04e2761cc44b1d094.png deleted file mode 100644 index 2b1f6a20..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/c67ce581d874e2d04e2761cc44b1d094.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/c705ca2a522a41c9585fcf3ac5b4f667.png b/Tensorflow/TensorFlow2.0/img/c705ca2a522a41c9585fcf3ac5b4f667.png deleted file mode 100644 index dc0dc52e..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/c705ca2a522a41c9585fcf3ac5b4f667.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/c7a03d480eb2e9be1f4499761937f9ee.png b/Tensorflow/TensorFlow2.0/img/c7a03d480eb2e9be1f4499761937f9ee.png deleted file mode 100644 index e02a5daf..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/c7a03d480eb2e9be1f4499761937f9ee.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/c7e184638977ee322a898f6148f543c3.png b/Tensorflow/TensorFlow2.0/img/c7e184638977ee322a898f6148f543c3.png deleted file mode 100644 index f7e28e36..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/c7e184638977ee322a898f6148f543c3.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/c91d625a0312bd25acf8dab10ecb51ed.png b/Tensorflow/TensorFlow2.0/img/c91d625a0312bd25acf8dab10ecb51ed.png deleted file mode 100644 index 1dec8e35..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/c91d625a0312bd25acf8dab10ecb51ed.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/c9a00de59da2a696666612d0bd08c7a7.png b/Tensorflow/TensorFlow2.0/img/c9a00de59da2a696666612d0bd08c7a7.png deleted file mode 100644 index e03b8aa7..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/c9a00de59da2a696666612d0bd08c7a7.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/ca5c6f8a5c7444a19483d53990e42c33.png b/Tensorflow/TensorFlow2.0/img/ca5c6f8a5c7444a19483d53990e42c33.png deleted file mode 100644 index ce8f9f37..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/ca5c6f8a5c7444a19483d53990e42c33.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/cb18ad8212a0648018238babc8fe2325.png b/Tensorflow/TensorFlow2.0/img/cb18ad8212a0648018238babc8fe2325.png deleted file mode 100644 index 5a73a574..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/cb18ad8212a0648018238babc8fe2325.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/cd8127c26455c518a827f0ce6a07b1e0.png b/Tensorflow/TensorFlow2.0/img/cd8127c26455c518a827f0ce6a07b1e0.png deleted file mode 100644 index 8cdd16b9..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/cd8127c26455c518a827f0ce6a07b1e0.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/cfa82b128c103151f142dae7b5ddecda.png b/Tensorflow/TensorFlow2.0/img/cfa82b128c103151f142dae7b5ddecda.png deleted file mode 100644 index 08e34e65..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/cfa82b128c103151f142dae7b5ddecda.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/d33aeddd8358af50caa929e3528cf6e5.png b/Tensorflow/TensorFlow2.0/img/d33aeddd8358af50caa929e3528cf6e5.png deleted file mode 100644 index 6bbf04e2..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/d33aeddd8358af50caa929e3528cf6e5.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/d48861f9a16908e3c3980990638ecb40.png b/Tensorflow/TensorFlow2.0/img/d48861f9a16908e3c3980990638ecb40.png deleted file mode 100644 index b025278d..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/d48861f9a16908e3c3980990638ecb40.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/d5d8ce7c60645b3e01a6e088280470ba.png b/Tensorflow/TensorFlow2.0/img/d5d8ce7c60645b3e01a6e088280470ba.png deleted file mode 100644 index 5a62c81f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/d5d8ce7c60645b3e01a6e088280470ba.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/d6513785291f1616fa5a88b830c9a438.png b/Tensorflow/TensorFlow2.0/img/d6513785291f1616fa5a88b830c9a438.png deleted file mode 100644 index 82b44f39..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/d6513785291f1616fa5a88b830c9a438.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/d653a0d6330958d36f31b35e1410ff6d.png b/Tensorflow/TensorFlow2.0/img/d653a0d6330958d36f31b35e1410ff6d.png deleted file mode 100644 index be55cc8f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/d653a0d6330958d36f31b35e1410ff6d.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/d68f92600680dfc45d965045e843ec4d.png b/Tensorflow/TensorFlow2.0/img/d68f92600680dfc45d965045e843ec4d.png deleted file mode 100644 index aa190631..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/d68f92600680dfc45d965045e843ec4d.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/d6c8610603858ddd864cc7f024f16e40.png b/Tensorflow/TensorFlow2.0/img/d6c8610603858ddd864cc7f024f16e40.png deleted file mode 100644 index 13accab2..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/d6c8610603858ddd864cc7f024f16e40.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/d6d4178e447bc9f8c984345c73202b01.png b/Tensorflow/TensorFlow2.0/img/d6d4178e447bc9f8c984345c73202b01.png deleted file mode 100644 index f6aa17ff..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/d6d4178e447bc9f8c984345c73202b01.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/d85fdaff014f0211e5ef646977087e50.png b/Tensorflow/TensorFlow2.0/img/d85fdaff014f0211e5ef646977087e50.png deleted file mode 100644 index ee37ede5..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/d85fdaff014f0211e5ef646977087e50.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/d99736f992ec3e1883b57ef705221367.png b/Tensorflow/TensorFlow2.0/img/d99736f992ec3e1883b57ef705221367.png deleted file mode 100644 index 7ad866d8..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/d99736f992ec3e1883b57ef705221367.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/dbd4a3a9bd5a14a61bcaf558a2231993.png b/Tensorflow/TensorFlow2.0/img/dbd4a3a9bd5a14a61bcaf558a2231993.png deleted file mode 100644 index 9f130204..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/dbd4a3a9bd5a14a61bcaf558a2231993.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/dcd2e24d351259809e8bd2dfe61f3f59.png b/Tensorflow/TensorFlow2.0/img/dcd2e24d351259809e8bd2dfe61f3f59.png deleted file mode 100644 index 5c5eec51..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/dcd2e24d351259809e8bd2dfe61f3f59.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/dcf39b63e54ff302e7e37e39b90facc7.png b/Tensorflow/TensorFlow2.0/img/dcf39b63e54ff302e7e37e39b90facc7.png deleted file mode 100644 index 161ad9fd..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/dcf39b63e54ff302e7e37e39b90facc7.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/dd1b792428257ee1ffcb4e02d4e81c11.png b/Tensorflow/TensorFlow2.0/img/dd1b792428257ee1ffcb4e02d4e81c11.png deleted file mode 100644 index 5c91f967..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/dd1b792428257ee1ffcb4e02d4e81c11.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/dd4897a112d5aa5b56d54b9d8f8ac97d.png b/Tensorflow/TensorFlow2.0/img/dd4897a112d5aa5b56d54b9d8f8ac97d.png deleted file mode 100644 index 171c9b3e..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/dd4897a112d5aa5b56d54b9d8f8ac97d.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/dda6acab76c9a017bbe16c3bebb8e54c.png b/Tensorflow/TensorFlow2.0/img/dda6acab76c9a017bbe16c3bebb8e54c.png deleted file mode 100644 index 8bd2ff4d..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/dda6acab76c9a017bbe16c3bebb8e54c.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/de0d6e38c509169ec5a4edafdcb08e55.png b/Tensorflow/TensorFlow2.0/img/de0d6e38c509169ec5a4edafdcb08e55.png deleted file mode 100644 index cbfa59c0..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/de0d6e38c509169ec5a4edafdcb08e55.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/df0f8cf3d780ab200f3e674a67324435.png b/Tensorflow/TensorFlow2.0/img/df0f8cf3d780ab200f3e674a67324435.png deleted file mode 100644 index c72b376c..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/df0f8cf3d780ab200f3e674a67324435.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/df68f144581e032c370ca708f4983bdb.png b/Tensorflow/TensorFlow2.0/img/df68f144581e032c370ca708f4983bdb.png deleted file mode 100644 index cf9a1b0d..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/df68f144581e032c370ca708f4983bdb.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/e06760b4112e8fd989cdb1f7a948bc17.png b/Tensorflow/TensorFlow2.0/img/e06760b4112e8fd989cdb1f7a948bc17.png deleted file mode 100644 index db3e02e8..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/e06760b4112e8fd989cdb1f7a948bc17.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/e078fc18f5dbcddacb9cc4e95629a3bf.png b/Tensorflow/TensorFlow2.0/img/e078fc18f5dbcddacb9cc4e95629a3bf.png deleted file mode 100644 index 67bd2d17..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/e078fc18f5dbcddacb9cc4e95629a3bf.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/e0ae5b8f55425e83ab36e4a3a097b4e8.png b/Tensorflow/TensorFlow2.0/img/e0ae5b8f55425e83ab36e4a3a097b4e8.png deleted file mode 100644 index c581d2fb..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/e0ae5b8f55425e83ab36e4a3a097b4e8.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/e0df7b7876498420dcf8663d9c91a023.png b/Tensorflow/TensorFlow2.0/img/e0df7b7876498420dcf8663d9c91a023.png deleted file mode 100644 index 93075b18..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/e0df7b7876498420dcf8663d9c91a023.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/e2143b6a00159c480e078bcbc7c8c72b.png b/Tensorflow/TensorFlow2.0/img/e2143b6a00159c480e078bcbc7c8c72b.png deleted file mode 100644 index 2776aad5..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/e2143b6a00159c480e078bcbc7c8c72b.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/e297781397cdc97e304b45625f7ae423.png b/Tensorflow/TensorFlow2.0/img/e297781397cdc97e304b45625f7ae423.png deleted file mode 100644 index a702ec30..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/e297781397cdc97e304b45625f7ae423.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/e2e6d59bb8ebd47a957558d11e836ec1.png b/Tensorflow/TensorFlow2.0/img/e2e6d59bb8ebd47a957558d11e836ec1.png deleted file mode 100644 index 7f948808..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/e2e6d59bb8ebd47a957558d11e836ec1.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/e2f893946253a84a1410e69624e915bc.png b/Tensorflow/TensorFlow2.0/img/e2f893946253a84a1410e69624e915bc.png deleted file mode 100644 index 0934615a..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/e2f893946253a84a1410e69624e915bc.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/e3d2caa770c7f600fb5cdc2a95ad0e0a.png b/Tensorflow/TensorFlow2.0/img/e3d2caa770c7f600fb5cdc2a95ad0e0a.png deleted file mode 100644 index bbe26f08..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/e3d2caa770c7f600fb5cdc2a95ad0e0a.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/e3e3424830f874b566c07a0e86696a13.png b/Tensorflow/TensorFlow2.0/img/e3e3424830f874b566c07a0e86696a13.png deleted file mode 100644 index 8188cc33..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/e3e3424830f874b566c07a0e86696a13.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/e3ef015d6cba8b2d535ce30b60549453.png b/Tensorflow/TensorFlow2.0/img/e3ef015d6cba8b2d535ce30b60549453.png deleted file mode 100644 index 223d0e52..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/e3ef015d6cba8b2d535ce30b60549453.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/e3ffe6a29488821b01dd98cba6690e5f.png b/Tensorflow/TensorFlow2.0/img/e3ffe6a29488821b01dd98cba6690e5f.png deleted file mode 100644 index 6e263b50..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/e3ffe6a29488821b01dd98cba6690e5f.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/e46db7cde2b53be53d302c4b00d582a5.png b/Tensorflow/TensorFlow2.0/img/e46db7cde2b53be53d302c4b00d582a5.png deleted file mode 100644 index 2ef0f536..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/e46db7cde2b53be53d302c4b00d582a5.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/e47b08aec7cc62d5268c6c6af8cf2b16.png b/Tensorflow/TensorFlow2.0/img/e47b08aec7cc62d5268c6c6af8cf2b16.png deleted file mode 100644 index 7a0b4d56..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/e47b08aec7cc62d5268c6c6af8cf2b16.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/e4d27c794147e0649dec40c1e673fa3d.png b/Tensorflow/TensorFlow2.0/img/e4d27c794147e0649dec40c1e673fa3d.png deleted file mode 100644 index fc02b115..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/e4d27c794147e0649dec40c1e673fa3d.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/e61ee4650b5d251079d57baa98bff19e.png b/Tensorflow/TensorFlow2.0/img/e61ee4650b5d251079d57baa98bff19e.png deleted file mode 100644 index 4bb11e4d..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/e61ee4650b5d251079d57baa98bff19e.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/e68189c9da69b7848e9033d29a0dc574.png b/Tensorflow/TensorFlow2.0/img/e68189c9da69b7848e9033d29a0dc574.png deleted file mode 100644 index a676c13a..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/e68189c9da69b7848e9033d29a0dc574.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/e8229311b22645eacfe9d45893aa40bc.png b/Tensorflow/TensorFlow2.0/img/e8229311b22645eacfe9d45893aa40bc.png deleted file mode 100644 index 889f033d..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/e8229311b22645eacfe9d45893aa40bc.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/e8d23da7a633c8eaa5878bca988b63f3.png b/Tensorflow/TensorFlow2.0/img/e8d23da7a633c8eaa5878bca988b63f3.png deleted file mode 100644 index 9dea5f1f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/e8d23da7a633c8eaa5878bca988b63f3.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/e954331a93f7da6b3ebeb6d2c90586f4.png b/Tensorflow/TensorFlow2.0/img/e954331a93f7da6b3ebeb6d2c90586f4.png deleted file mode 100644 index 404d97b8..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/e954331a93f7da6b3ebeb6d2c90586f4.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/ea3d81df30a4c5fa3b8c108a2be71e73.png b/Tensorflow/TensorFlow2.0/img/ea3d81df30a4c5fa3b8c108a2be71e73.png deleted file mode 100644 index 71337fd6..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/ea3d81df30a4c5fa3b8c108a2be71e73.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/ec46666ea7ae5ed4692fbbd51a12f72c.png b/Tensorflow/TensorFlow2.0/img/ec46666ea7ae5ed4692fbbd51a12f72c.png deleted file mode 100644 index 0083d384..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/ec46666ea7ae5ed4692fbbd51a12f72c.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/ed58bf9aecc879b9fef41103a0178752.png b/Tensorflow/TensorFlow2.0/img/ed58bf9aecc879b9fef41103a0178752.png deleted file mode 100644 index 04010ab7..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/ed58bf9aecc879b9fef41103a0178752.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/edb8cf06303c60cf812dce4865e8d331.png b/Tensorflow/TensorFlow2.0/img/edb8cf06303c60cf812dce4865e8d331.png deleted file mode 100644 index 8a9a3335..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/edb8cf06303c60cf812dce4865e8d331.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/ee3ae6c62d5acf6adfea6458312bcb02.png b/Tensorflow/TensorFlow2.0/img/ee3ae6c62d5acf6adfea6458312bcb02.png deleted file mode 100644 index a29bdc04..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/ee3ae6c62d5acf6adfea6458312bcb02.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/ee409d59cd41f3de0f02655abfc4d0c0.png b/Tensorflow/TensorFlow2.0/img/ee409d59cd41f3de0f02655abfc4d0c0.png deleted file mode 100644 index 1ef1d423..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/ee409d59cd41f3de0f02655abfc4d0c0.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/eeb0649161960b7c64a96a75e088eab6.png b/Tensorflow/TensorFlow2.0/img/eeb0649161960b7c64a96a75e088eab6.png deleted file mode 100644 index 9fadc3b7..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/eeb0649161960b7c64a96a75e088eab6.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/f021b204e92d0e77d8439a03a43bb21e.png b/Tensorflow/TensorFlow2.0/img/f021b204e92d0e77d8439a03a43bb21e.png deleted file mode 100644 index d9bf7664..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/f021b204e92d0e77d8439a03a43bb21e.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/f1fa73dd5b685549afd6264592919903.png b/Tensorflow/TensorFlow2.0/img/f1fa73dd5b685549afd6264592919903.png deleted file mode 100644 index c8701cb8..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/f1fa73dd5b685549afd6264592919903.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/f2f53e7a4522a77ce6e821a299a77c76.png b/Tensorflow/TensorFlow2.0/img/f2f53e7a4522a77ce6e821a299a77c76.png deleted file mode 100644 index cb5544f9..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/f2f53e7a4522a77ce6e821a299a77c76.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/f33f21e1842dad5f569cc75d0c43b4c1.png b/Tensorflow/TensorFlow2.0/img/f33f21e1842dad5f569cc75d0c43b4c1.png deleted file mode 100644 index b548eeca..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/f33f21e1842dad5f569cc75d0c43b4c1.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/f3c5a66b35a03bd6a2bf9c3a65a39dfb.png b/Tensorflow/TensorFlow2.0/img/f3c5a66b35a03bd6a2bf9c3a65a39dfb.png deleted file mode 100644 index c06ef4e1..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/f3c5a66b35a03bd6a2bf9c3a65a39dfb.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/f40a6da0d8471d4b9b979d456cb09d0d.png b/Tensorflow/TensorFlow2.0/img/f40a6da0d8471d4b9b979d456cb09d0d.png deleted file mode 100644 index e6d97c45..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/f40a6da0d8471d4b9b979d456cb09d0d.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/f5468d2d190850a0c5adf6682ae9a2b3.png b/Tensorflow/TensorFlow2.0/img/f5468d2d190850a0c5adf6682ae9a2b3.png deleted file mode 100644 index aa258ba4..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/f5468d2d190850a0c5adf6682ae9a2b3.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/f769d692ddcca3810cad6e32307d9b3a.png b/Tensorflow/TensorFlow2.0/img/f769d692ddcca3810cad6e32307d9b3a.png deleted file mode 100644 index e75f1408..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/f769d692ddcca3810cad6e32307d9b3a.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/f7ad29c64650bcb7c917f1bd3c34a678.png b/Tensorflow/TensorFlow2.0/img/f7ad29c64650bcb7c917f1bd3c34a678.png deleted file mode 100644 index 039334cd..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/f7ad29c64650bcb7c917f1bd3c34a678.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/f80edb85b33ee8d70b05983a35aca22f.png b/Tensorflow/TensorFlow2.0/img/f80edb85b33ee8d70b05983a35aca22f.png deleted file mode 100644 index ac522c7a..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/f80edb85b33ee8d70b05983a35aca22f.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/f865018e54d4c67ed60313c72d71e99c.png b/Tensorflow/TensorFlow2.0/img/f865018e54d4c67ed60313c72d71e99c.png deleted file mode 100644 index 7a2c68a7..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/f865018e54d4c67ed60313c72d71e99c.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/f8876684e2b6e5576c9f4dc1029bb237.png b/Tensorflow/TensorFlow2.0/img/f8876684e2b6e5576c9f4dc1029bb237.png deleted file mode 100644 index afcb4945..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/f8876684e2b6e5576c9f4dc1029bb237.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/f89cb56c5d3c77f56118a42ca7fb3936.png b/Tensorflow/TensorFlow2.0/img/f89cb56c5d3c77f56118a42ca7fb3936.png deleted file mode 100644 index 342e1751..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/f89cb56c5d3c77f56118a42ca7fb3936.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/f8f7d813408efbfa9b764dfcfe54d2ad.png b/Tensorflow/TensorFlow2.0/img/f8f7d813408efbfa9b764dfcfe54d2ad.png deleted file mode 100644 index 1799122d..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/f8f7d813408efbfa9b764dfcfe54d2ad.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/f9843723cb76f7e84a4d3e7435c3a2c0.png b/Tensorflow/TensorFlow2.0/img/f9843723cb76f7e84a4d3e7435c3a2c0.png deleted file mode 100644 index e55c2f69..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/f9843723cb76f7e84a4d3e7435c3a2c0.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/f9857876c8d165f58db57e4f8cb7bbc4.png b/Tensorflow/TensorFlow2.0/img/f9857876c8d165f58db57e4f8cb7bbc4.png deleted file mode 100644 index 4e4806a9..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/f9857876c8d165f58db57e4f8cb7bbc4.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/f9f505f9e0bb94757eb576cd0aa1c1f3.png b/Tensorflow/TensorFlow2.0/img/f9f505f9e0bb94757eb576cd0aa1c1f3.png deleted file mode 100644 index 6b56b66f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/f9f505f9e0bb94757eb576cd0aa1c1f3.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/fa2d5bf8aeffd46cc7559d7104f99ba2.png b/Tensorflow/TensorFlow2.0/img/fa2d5bf8aeffd46cc7559d7104f99ba2.png deleted file mode 100644 index 7e666c5e..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/fa2d5bf8aeffd46cc7559d7104f99ba2.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/fa351313bf1ddb033fe47d07a518db6c.png b/Tensorflow/TensorFlow2.0/img/fa351313bf1ddb033fe47d07a518db6c.png deleted file mode 100644 index 565aae81..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/fa351313bf1ddb033fe47d07a518db6c.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/fb0bdd5ec0ad3a81aa686b46a6fa16d7.png b/Tensorflow/TensorFlow2.0/img/fb0bdd5ec0ad3a81aa686b46a6fa16d7.png deleted file mode 100644 index 491c1f6e..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/fb0bdd5ec0ad3a81aa686b46a6fa16d7.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/fb25ef686fd2905523f707dff3e20b36.png b/Tensorflow/TensorFlow2.0/img/fb25ef686fd2905523f707dff3e20b36.png deleted file mode 100644 index 2bc30421..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/fb25ef686fd2905523f707dff3e20b36.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/fc1492a9c4124dcf0d9fb207c0a323d0.png b/Tensorflow/TensorFlow2.0/img/fc1492a9c4124dcf0d9fb207c0a323d0.png deleted file mode 100644 index fdf754fa..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/fc1492a9c4124dcf0d9fb207c0a323d0.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/fe72873df8e5156872c578827579ba34.png b/Tensorflow/TensorFlow2.0/img/fe72873df8e5156872c578827579ba34.png deleted file mode 100644 index 71ea3138..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/fe72873df8e5156872c578827579ba34.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/fea91dec17000f60233620455539d42b.png b/Tensorflow/TensorFlow2.0/img/fea91dec17000f60233620455539d42b.png deleted file mode 100644 index c7e6557f..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/fea91dec17000f60233620455539d42b.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/img/fecda9bde6f4c7551c164dc066491cb5.png b/Tensorflow/TensorFlow2.0/img/fecda9bde6f4c7551c164dc066491cb5.png deleted file mode 100644 index 5cf06baa..00000000 Binary files a/Tensorflow/TensorFlow2.0/img/fecda9bde6f4c7551c164dc066491cb5.png and /dev/null differ diff --git a/Tensorflow/TensorFlow2.0/simple.csv b/Tensorflow/TensorFlow2.0/simple.csv new file mode 100644 index 00000000..e6547828 --- /dev/null +++ b/Tensorflow/TensorFlow2.0/simple.csv @@ -0,0 +1,11599 @@ +ACCESS_PERSONAL_INFO___,ALTER_PHONE_STATE___,ANTI_DEBUG_____,CREATE_FOLDER_____,CREATE_PROCESS`_____,CREATE_THREAD_____,DEVICE_ACCESS_____,EXECUTE_____,FS_ACCESS____,FS_ACCESS()____,FS_ACCESS(CREATE)____,FS_ACCESS(CREATE__APPEND)__,FS_ACCESS(CREATE__READ)__,FS_ACCESS(CREATE__READ__WRITE),FS_ACCESS(CREATE__WRITE)__,FS_ACCESS(CREATE__WRITE__APPEND),FS_ACCESS(READ)____,FS_ACCESS(READ__WRITE)__,FS_ACCESS(WRITE)____,FS_PIPE_ACCESS___,FS_PIPE_ACCESS()___,FS_PIPE_ACCESS(READ)___,FS_PIPE_ACCESS(READ__)_,FS_PIPE_ACCESS(READ__WRITE)_,FS_PIPE_ACCESS(WRITE)___,NETWORK_ACCESS____,NETWORK_ACCESS()____,NETWORK_ACCESS(READ)____,NETWORK_ACCESS(READ__WRITE)__,NETWORK_ACCESS(READ__WRITE__),NETWORK_ACCESS(WRITE)____,NETWORK_ACCESS(WRITE__)__,SMS_SEND____,TERMINATE_PROCESS,TERMINATE_THREAD,__arm_nr_cacheflush,__arm_nr_set_tls,_llseek,_newselect,accept,access,add,addAccessibilityInteractionConnection,addAccountExplicitly,addClient,addPeriodicSync,addStatusChangeListener,addToDisplay,addToDisplayWithoutInputChannel,addWithoutInputChannel,attachEngine,beginRestoreSession,bind,brk,cancelAllNotifications,cancelNotificationWithTag,cancelSync,cancelToast,cancelVibrate,capset,chdir,checkOperation,checkPackage,checkPermission,checkSignatures,chmod,chown32,clock_getres,clock_gettime,clone,close,collapsePanels,connect,currentToCanonicalPackageNames,dataChanged,deleteHost,disconnect,displayCompletions,dup,dup2,endRestoreSession,engineShown,enqueueNotificationWithTag,enqueueToast,epoll_create,epoll_ctl,epoll_wait,eventfd2,execve,exit,exit_group,faccessat,fchmod,fchown32,fcntl,fcntl64,fdatasync,finishDrawing,finishInput,finishSpellCheckerService,flock,fork,fstat64,fstatfs64,fsync,ftruncate,ftruncate64,futex,geocoderIsPresent,getAccounts,getAccountsAsUser,getActiveAdmins,getActiveNetworkInfo,getActivePhoneType,getActivityInfo,getAllCellInfo,getAllNetworkInfo,getAllPkgUsageStats,getAllProviders,getAnimationScale,getAppWidgetIds,getAppWidgetInfo,getApplicationEnabledSetting,getApplicationInfo,getApplicationRestrictions,getAuthenticatorTypes,getBestProvider,getBoolean,getCallState,getCameraDisabled,getCameraInfo,getCellLocation,getClientDefaultLanguage,getComponentEnabledSetting,getConfiguredNetworks,getConnectionInfo,getCurrentInputMethodSubtype,getCurrentModeType,getCurrentSpellChecker,getCurrentSpellCheckerSubtype,getDataActivity,getDataNetworkType,getDataState,getDeviceId,getDeviceList,getDeviceOwner,getDeviceSvn,getDhcpInfo,getDisplayFrame,getDisplayIds,getDisplayInfo,getEnabledAccessibilityServiceList,getEnabledInputMethodList,getEnabledInputMethodSubtypeList,getFlashlightEnabled,getFromLocation,getGlobalSearchActivity,getGroupIdLevel1,getHeightHint,getIccSerialNumber,getInTouchMode,getInputDevice,getInputDeviceIds,getInputMethodList,getInstallLocation,getInstalledApplications,getInstalledPackages,getInstalledProviders,getInstallerPackageName,getIsSyncable,getLastChosenActivity,getLastInputMethodSubtype,getLastLocation,getLine1Number,getLong,getMasterSyncAutomatically,getMessenger,getMobileDataEnabled,getMobileIfaces,getMode,getNameForUid,getNeighboringCellInfo,getNetworkInfo,getNetworkPreference,getNightMode,getNumberOfCameras,getPackageGids,getPackageInfo,getPackageSizeInfo,getPackagesForUid,getPassword,getPermissionGroupInfo,getPermissionInfo,getPreferredActivities,getPreferredPackages,getPrimaryClip,getProviderInfo,getProviderProperties,getProviders,getProxy,getReceiverInfo,getRingerMode,getRingtonePlayer,getScanResults,getSearchableInfo,getSearchablesInGlobalSearch,getServiceInfo,getSpellCheckerService,getState,getStorageEncryptionStatus,getStreamMaxVolume,getStreamVolume,getString,getSubscriberId,getSyncAutomatically,getSystemAvailableFeatures,getSystemSharedLibraryNames,getTetheredIfaces,getUserData,getUserIcon,getUserRestrictions,getUserSerialNumber,getUsers,getVibrateSetting,getVoiceMailAlphaTag,getVoiceMailNumber,getWallpaper,getWallpaperInfo,getWidthHint,getWifiApConfiguration,getWifiApEnabledState,getWifiDisplayStatus,getWifiEnabledState,getWifiServiceMessenger,getcwd,getdents64,getegid32,geteuid32,getgid32,getgroups32,getpeername,getpgid,getpid,getppid,getpriority,getresgid32,getresuid32,getrusage,getsockname,getsockopt,gettid,gettimeofday,getuid32,hasClipboardText,hasIccCard,hasKeys,hasNamedWallpaper,hasNavigationBar,hasPrimaryClip,hasSystemFeature,hasVibrator,hideSoftInput,inKeyguardRestrictedInputMode,inotify_add_watch,inotify_init,inotify_rm_watch,ioctl,isActiveNetworkMetered,isAdminActive,isBluetoothA2dpOn,isBluetoothScoOn,isCameraSoundForced,isImsSmsSupported,isKeyguardLocked,isKeyguardSecure,isPackageAvailable,isProviderEnabled,isSafeMode,isScanAlwaysAvailable,isScreenOn,isSpeakerphoneOn,isSpellCheckerEnabled,isSyncActive,isWakeLockLevelSupported,lgetxattr,link,listen,locationCallbackFinished,lseek,lstat64,madvise,mkdir,mknod,mlock,mmap2,mount,mprotect,mremap,msync,munlock,munmap,nanosleep,notifyAppWidgetViewDataChanged,notifyChange,onChange,onClose,onFinished,onGetSentenceSuggestionsMultiple,onRectangleOnScreenRequested,onRequestContinued,onResult,open,openSession,partiallyUpdateAppWidgetIds,performDeferredDestroy,pingSupplicant,pipe,pipe2,play,playSoundEffect,playSoundEffectVolume,poll,prctl,pread64,prepareVpn,ptrace,pwrite64,queryContentProviders,queryIntentActivities,queryIntentContentProviders,queryIntentReceivers,queryIntentServices,read,readlink,reassociate,recvfrom,recvmsg,reenableKeyguard,registerCallback,registerContentObserver,registerInputDevicesChangedListener,registerMediaButtonIntent,registerRemoteControlClient,registerSuggestionSpansForNotification,relayout,releaseMulticastLock,releaseWakeLock,releaseWifiLock,remove,removeAccessibilityInteractionConnection,removeActiveAdmin,removeGpsStatusListener,removePrimaryClipChangedListener,removeStatusChangeListener,rename,requestLocationUpdates,requestScanFile,resolveContentProvider,resolveIntent,resolveService,restorePackage,rmdir,rt_sigprocmask,rt_sigtimedwait,sched_get_priority_max,sched_get_priority_min,sched_getparam,sched_getscheduler,sched_setaffinity,sched_setscheduler,sched_yield,send,sendAccessibilityEvent,sendExtraCommand,sendMultipartText,sendText,sendmsg,sendto,set,setApplicationEnabledSetting,setCallback,setComponentEnabledSetting,setDimensionHints,setDiscoveryRequest,setExtractedText,setFlashlightEnabled,setIconVisibility,setInTouchMode,setIsSyncable,setMetadata,setMobileDataEnabled,setMode,setNetworkPreference,setNightMode,setPlaybackState,setPlaybackStateForRcc,setPrimaryClip,setRadio,setRingerMode,setSpeakerphoneOn,setStreamMute,setStreamVolume,setSyncAutomatically,setTextAfterCursor,setTextBeforeCursor,setTransparentRegion,setTransportControlInfo,setWallpaper,setWallpaperPosition,setWifiApConfiguration,setWifiApEnabled,setWifiEnabled,setgid32,setgroups32,setitimer,setpgid,setpriority,setresgid32,setresuid32,setrlimit,setsid,setsockopt,setuid32,showSoftInput,showStrictModeViolation,shutdown,sigaction,sigaltstack,sigprocmask,sigsuspend,socket,socketpair,startBluetoothSco,startInput,startScan,startWatchingRoutes,startWifiDisplayScan,stat64,statfs64,statusBarVisibilityChanged,stop,stopListening,stopUsingNetworkFeature,symlink,sync,sysinfo,timer_create,timer_settime,toggleSoftInput,truncate,ugetrlimit,umask,uname,unlink,unregisterContentObserver,unregisterMediaButtonIntent,unregisterRemoteControlClient,updateAppWidgetIds,updateAppWidgetProvider,updateSelection,updateServiceLocation,utimes,vfork,vibrate,vibratePattern,wait4,watchRotation,windowGainedFocus,write,writev,Class +1,0,0,3,0,14,2,0,3,0,3,0,0,0,4,0,9,0,7,2,0,0,0,0,0,0,0,0,3,0,4,0,0,0,3,0,14,6,0,0,11,0,0,0,1,0,0,0,0,0,0,0,3,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,109,14,24,0,7,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,3,0,0,0,0,0,20,0,0,0,0,2,0,14,0,2,0,0,170,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,18,0,23,0,0,0,6,6,33,26,25,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,61,3,0,0,61,0,133,0,0,0,22,8,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,4,96,12,0,0,0,0,0,0,0,0,29,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,9,0,0,0,0,1,17,31,0,7,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,10,1 +3,0,0,6,0,42,91,0,32,0,90,0,0,7,5,0,70,0,6,2,0,0,0,8,0,11,3,0,19,0,2,0,0,0,6,1594,42,6,0,0,47,0,0,0,1,0,0,2,0,0,0,0,2,1425,0,0,0,0,0,1,0,0,0,0,0,4,0,0,36312,42,514,0,17,0,0,0,0,0,184,0,0,0,0,0,9,319,7099,0,0,6,0,0,0,0,0,1050,25,3,0,0,2,0,264,0,1,863,0,5728,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,1124,0,72,0,0,0,14,21,633,3717,1111,0,0,0,0,1,0,4,0,0,0,0,0,0,544,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,108,17,256,6,0,0,406,0,307,0,0,0,258,7,0,0,0,0,0,0,0,0,0,301,1,0,0,0,10,0,0,0,0,2,150,52,0,0,815,0,0,0,0,0,4157,1,0,428,92,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,92,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,56,0,0,0,0,1,48,255,0,21,14,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2838,46,1 +2,0,0,4,0,23,3,0,17,2,4,0,0,0,9,1,15,0,7,1,0,0,0,1,0,0,0,0,4,0,10,0,0,0,12,0,23,6,0,0,40,0,0,0,1,0,0,2,0,0,0,0,9,89,0,0,0,0,0,1,0,0,0,0,0,9,0,0,523,23,66,0,14,0,0,0,0,0,10,0,0,0,0,0,1,4,67,0,0,12,0,0,0,0,0,32,0,4,0,0,2,0,46,0,7,0,0,290,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,74,0,45,0,0,0,18,15,49,35,76,0,0,0,0,1,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,8,12,131,4,0,0,163,0,217,0,0,0,90,8,0,0,0,0,0,0,0,0,0,56,1,0,0,0,2,0,0,0,0,6,109,43,0,0,0,0,0,0,0,0,72,0,0,92,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,22,0,0,0,8,1,35,235,0,14,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,111,20,1 +1,0,0,4,0,27,9,0,36,0,11,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,12,0,27,6,0,0,60,0,0,0,1,0,0,9,0,0,0,0,1,242,0,0,0,0,0,1,0,0,0,0,0,6,0,0,9865,27,137,0,3,0,0,0,0,0,42,0,0,0,0,0,1,12,1710,0,0,12,0,0,1,18,0,170,15,17,0,0,2,0,108,0,1,0,0,1175,0,0,0,0,125,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1077,0,134,0,0,0,2,5,52,236,1080,0,0,0,0,1,0,0,0,0,0,0,0,0,2006,0,0,0,0,0,0,0,0,0,0,0,0,9,0,2,0,0,0,0,0,0,8,4,169,4,0,0,324,0,473,0,0,0,239,22,0,0,0,0,0,0,3,0,0,82,1,0,0,0,2,0,0,0,0,2,112,221,0,0,59,0,0,0,0,0,489,0,0,2182,0,0,1,0,0,0,0,0,20,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,3,0,0,0,0,1,39,733,0,3,0,0,0,0,0,0,115,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,7,987,197,1 +3,0,0,11,0,18,3,0,16,0,4,0,0,0,4,1,25,0,7,1,0,0,0,1,0,0,6,0,7,0,6,0,0,0,7,0,18,6,0,0,26,0,0,0,1,0,0,1,0,0,0,0,5,59,0,0,0,0,0,1,0,0,0,0,0,4,0,0,373,18,72,0,13,0,0,0,0,0,6,0,0,0,0,0,1,3,46,0,0,7,0,0,0,0,0,22,0,2,0,0,2,0,70,0,2,0,0,313,0,0,0,0,8,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,56,0,48,0,0,0,10,15,39,42,72,0,0,0,0,1,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,7,112,12,0,0,128,0,248,0,0,0,60,9,0,0,0,0,0,0,0,0,0,60,1,0,0,0,2,0,0,0,0,3,104,28,0,0,0,0,0,0,0,0,71,0,0,17,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,15,0,0,0,0,1,25,91,0,19,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,98,25,1 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,32,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,32,0,0,0,0,3,22,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,0,0,0,37,0,45,0,0,0,4,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,3,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,3,1 +0,0,0,2,0,20,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,12,0,20,6,0,0,13,0,0,0,1,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,110,20,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,12,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,157,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,29,0,0,0,0,3,34,13,24,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,69,2,0,0,129,0,130,0,0,0,99,3,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,103,61,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,0,0,0,0,0,1,32,148,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,5,1 +7,0,0,6,0,17,86,0,201,0,34,0,0,0,4,0,21,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,5,0,17,44,0,0,362,0,0,0,1,0,0,2,0,0,0,0,0,135,0,0,0,0,0,1,0,0,0,1,0,7,0,0,738,17,355,0,2,0,0,0,0,0,12,0,0,0,0,0,1,5,98,0,0,5,0,0,2,192,0,1531,145,4,0,0,2,0,903,0,1,0,0,330,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,2,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,107,0,62,0,0,0,0,3,41,993,105,0,0,0,0,1,0,0,0,0,0,0,0,0,670,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,112,6,0,0,240,0,350,0,0,0,172,14,0,0,0,0,0,0,0,0,0,352,1,0,0,0,2,0,0,0,0,1,99,426,0,0,537,0,0,0,0,0,104,0,0,111,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,1,0,0,0,0,1,22,127,0,2,0,0,0,0,0,0,570,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,270,78,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,32,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,1 +2,0,0,7,0,18,3,0,16,1,6,0,0,0,10,1,15,0,7,2,0,0,0,1,0,0,0,0,3,0,10,0,0,0,7,0,18,6,0,0,51,0,2,0,1,0,0,3,0,0,0,0,9,63,0,0,0,0,0,1,0,0,0,0,0,9,0,0,1288,18,69,0,13,0,0,0,0,0,9,0,0,0,0,0,2,8,534,0,0,7,0,0,0,0,0,51,0,3,0,0,2,0,48,0,5,0,0,307,0,0,0,0,20,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,76,0,51,0,0,0,18,19,46,45,85,0,0,0,0,1,0,0,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,24,123,9,0,0,131,0,247,0,0,0,63,11,0,0,0,0,0,0,0,0,0,58,1,0,0,0,3,0,0,0,0,10,104,29,0,0,0,0,0,0,0,0,233,0,0,754,0,0,1,0,1,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,370,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,21,0,0,0,6,1,25,117,0,13,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,299,65,1 +3,0,0,8,0,18,6,0,28,1,13,0,0,0,13,1,16,0,7,1,0,0,0,1,0,0,0,0,1,0,3,0,0,0,7,0,18,6,0,0,79,0,6,0,1,0,0,6,0,0,0,0,2,87,0,0,0,0,0,1,0,0,0,0,0,11,0,0,1643,18,108,0,4,0,0,0,0,0,21,0,0,0,0,0,1,9,584,0,0,7,0,0,1,14,0,148,10,11,0,0,2,0,123,0,6,0,0,293,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,137,0,70,0,0,0,4,7,42,149,140,0,0,0,0,1,0,0,0,0,0,0,0,0,440,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,25,135,10,0,0,167,0,210,0,0,0,101,8,0,0,0,0,0,0,0,0,0,84,1,0,0,0,2,0,0,0,0,3,105,97,0,0,31,0,0,0,0,0,257,0,0,854,0,0,1,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,363,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,5,0,0,0,0,1,25,212,0,4,0,0,0,0,0,0,73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,2,374,68,1 +2,0,0,4,0,32,10,0,38,0,9,0,0,2,2,0,19,0,6,3,0,0,0,5,0,8,0,0,3,0,1,0,0,0,4,0,32,6,0,0,48,0,0,0,1,0,0,2,0,0,0,0,1,124,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2033,32,82,0,2,0,0,0,0,0,12,0,0,0,0,0,7,15,393,0,0,4,0,0,1,18,0,225,35,3,0,0,2,0,108,0,0,0,0,575,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,240,0,60,0,0,0,0,3,191,105,238,0,0,0,0,1,0,3,0,0,0,0,0,0,615,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,1,0,32,10,139,4,0,0,173,0,311,0,0,0,60,9,0,0,0,0,0,0,3,0,0,86,1,0,0,0,8,0,0,0,0,1,114,66,0,0,70,0,0,0,0,0,156,0,0,322,3,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,1,0,0,0,0,1,36,109,0,3,9,0,0,0,0,0,59,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,318,96,1 +5,0,0,5,2,35,6,8,37,9,6,0,0,0,20,1,24,0,7,6,0,2,1,2,0,0,0,0,6,0,11,0,0,2,20,0,37,6,6,0,75,0,0,0,1,0,0,3,0,0,0,0,10,112,0,0,0,0,0,1,0,0,0,9,0,21,0,0,755,35,228,0,17,0,0,0,0,0,12,6,0,0,0,1,2,7,88,0,8,20,2,0,0,0,0,50,0,5,0,0,2,2,88,0,18,0,0,521,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,92,0,75,0,0,0,20,18,67,58,100,0,0,0,0,1,0,0,0,0,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,25,245,7,0,0,259,0,259,0,0,0,144,18,0,0,0,0,0,0,0,0,0,101,1,0,0,0,11,0,0,0,0,8,125,50,0,0,0,0,0,0,0,0,85,0,0,88,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,26,0,0,0,4,17,57,253,0,17,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,4,0,2,167,45,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,615,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,45,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,249,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,55,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,108,3,0,0,114,0,238,0,0,0,40,9,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,54,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,107,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,101,23,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,17,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,16,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,36,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,4,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,53,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,20,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,40,0,0,0,47,0,42,0,0,0,17,2,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,92,14,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,32,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,8,1 +2,0,0,5,1,27,36,1,78,8,25,0,1,0,13,0,69,0,12,1,0,0,0,1,0,0,0,0,5,0,1,0,0,1,14,3,28,99,0,0,115,0,0,0,1,0,0,3,2,0,0,0,0,119,0,0,0,0,0,1,0,0,0,0,0,18,0,0,1854,27,226,0,6,0,0,0,0,0,27,0,0,0,0,0,1,7,149,0,1,14,1,0,7,40,0,415,75,11,0,0,6,1,242,0,10,0,0,3038,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,130,0,154,0,0,0,0,3,57,349,136,0,0,0,0,1,0,0,0,0,0,0,0,0,1028,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,124,32,463,6,0,0,456,0,669,0,1,0,260,60,0,0,0,0,0,0,0,0,0,234,1,0,6,0,2,0,0,0,0,1,133,217,0,0,145,0,0,0,0,0,204,0,0,194,0,0,1,0,0,0,0,0,13,0,3,0,2,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,0,1,24,1,1,1,0,5,0,0,0,0,9,42,527,0,6,0,0,0,0,0,0,157,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,18,0,0,0,0,0,0,0,0,0,0,0,1,0,3,311,224,1 +3,0,0,7,0,23,10,0,26,3,7,0,0,0,14,1,16,0,7,1,0,0,0,1,0,1,0,0,2,0,4,0,0,0,9,0,23,6,0,0,53,0,1,0,1,0,0,2,0,0,0,0,3,47,0,0,0,0,0,1,0,0,0,0,0,12,0,0,1383,23,96,0,7,0,0,0,0,0,21,0,0,0,0,0,1,8,541,0,0,9,0,0,0,0,0,26,0,3,0,0,2,0,61,0,8,0,0,347,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,114,0,81,0,0,0,6,8,51,22,115,0,0,0,0,1,0,0,0,0,0,0,0,0,432,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,27,146,9,0,0,185,0,199,0,0,0,98,8,0,0,0,0,0,0,0,0,0,81,1,0,0,0,2,0,0,0,0,4,114,49,0,0,0,0,0,0,0,0,244,0,0,791,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,364,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,9,0,0,0,2,1,32,145,0,7,0,0,1,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,381,112,1 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,35,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,13,1 +10,0,0,10,1,24,43,1,46,1,4,0,1,0,20,0,76,0,9,1,0,0,0,1,0,0,0,0,5,0,7,0,0,1,8,0,25,59,0,0,96,0,0,0,1,0,0,3,0,0,0,0,6,86,0,0,0,0,0,1,0,0,0,0,0,5,0,0,1264,24,174,0,12,0,0,0,0,0,12,0,0,0,0,0,1,6,214,0,1,8,1,0,2,0,0,65,0,4,0,0,7,1,124,0,2,0,0,474,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,182,0,70,0,0,0,12,11,45,78,203,0,0,0,0,1,0,0,0,0,0,0,0,0,612,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,128,32,319,14,0,0,315,0,537,0,1,0,107,17,0,0,0,0,0,0,0,0,0,199,1,0,0,0,2,0,0,0,0,3,120,37,0,0,0,0,0,0,0,0,335,0,0,249,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,22,1,1,1,0,17,0,0,0,0,9,33,200,0,12,0,0,0,0,0,0,71,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,3,277,59,1 +7,0,0,8,1,29,40,1,80,9,17,0,2,0,20,0,70,0,9,2,0,0,0,2,0,0,0,0,6,0,4,0,0,1,17,0,30,86,0,0,136,0,0,0,1,0,0,3,1,0,0,0,3,104,0,0,0,0,0,1,0,0,0,12,0,24,0,0,615,29,209,0,10,0,0,0,0,0,18,0,0,0,0,0,3,7,165,0,1,17,1,0,5,31,0,321,30,9,0,0,8,1,238,0,16,0,0,586,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,145,0,132,0,0,0,6,6,59,276,177,0,0,0,0,1,0,0,0,0,0,0,0,0,779,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,130,64,341,11,0,0,360,0,601,0,1,0,157,17,0,0,0,0,0,0,0,0,0,238,1,0,6,0,4,0,0,0,0,2,135,110,0,0,58,0,1,0,0,0,234,0,0,48,0,0,1,0,0,0,0,0,15,0,0,0,1,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,5,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,28,1,1,1,0,12,0,0,0,2,9,47,178,0,10,0,0,0,0,0,0,248,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,13,0,0,0,0,0,0,0,0,0,0,0,1,0,4,313,100,1 +3,0,0,10,0,56,9,0,50,5,11,0,0,6,21,1,927,0,7,2,0,0,0,8,0,11,0,0,11,0,5,0,0,0,18,2348,56,6,0,0,116,0,0,0,1,0,0,8,0,0,0,0,5,1398,0,0,0,0,0,1,0,0,0,0,0,18,0,0,17182,56,1102,0,12,0,0,0,0,0,50,0,0,0,0,0,9,41,3463,0,0,18,0,0,0,0,0,236,20,13,0,0,2,0,1031,0,13,14,0,2722,0,0,0,0,11,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,50,12,12,12,0,0,0,1848,0,137,0,0,0,10,12,306,1521,1811,0,0,0,0,1,0,3,0,0,0,0,0,0,2018,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,84,48,419,12,0,0,680,0,514,0,0,0,330,19,0,0,0,0,0,0,0,0,0,1032,1,0,0,0,10,0,0,0,0,4,167,352,0,0,17,0,0,0,0,0,3001,1,0,1686,10,0,1,1,0,0,0,0,19,0,0,0,2,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,10,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,21,0,0,0,0,1,74,2045,0,13,14,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1578,1370,1 +1,0,0,7,0,37,5,0,40,1,6,0,0,2,4,0,544,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,3,762,37,8,0,0,27,0,0,0,1,0,0,4,0,0,0,0,1,188,0,0,0,0,0,1,0,0,0,1,0,4,0,0,4888,37,607,0,2,0,0,0,0,0,19,0,0,0,0,0,8,19,896,0,0,3,0,0,0,0,0,89,5,6,0,0,2,0,559,0,1,0,0,1168,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,405,0,50,0,0,0,0,3,258,324,366,0,0,0,0,1,0,3,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,16,183,7,0,0,219,0,299,0,0,0,62,8,0,0,0,0,0,0,0,0,0,607,1,0,0,0,9,0,0,0,0,1,120,24,0,0,1,0,0,0,0,0,1403,1,0,53,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,1,0,0,0,0,1,40,126,0,3,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,389,42,1 +4,0,0,10,0,41,8,0,46,0,6,0,0,6,5,0,691,0,6,4,0,0,0,9,0,11,0,0,9,0,3,0,0,0,3,2316,41,36,0,0,47,0,0,0,1,0,0,1,0,0,0,0,3,252,0,0,0,0,0,1,0,0,0,0,0,2,0,0,11680,41,764,0,8,0,0,0,0,0,13,0,0,0,0,0,12,35,2182,0,0,3,0,0,0,0,0,223,20,1,0,0,2,0,757,0,0,12,0,1705,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,12,12,12,0,0,0,884,0,48,0,0,0,6,9,286,840,865,0,0,0,0,1,0,3,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,89,27,242,15,0,0,249,0,339,0,0,0,83,8,0,0,0,0,0,0,0,0,0,768,1,0,0,0,13,0,0,0,0,3,133,11,0,0,16,0,0,0,0,0,2087,1,0,29,9,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,15,0,0,0,4,1,44,48,0,9,14,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,646,86,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,29,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,28,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,40,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,4,1 +6,0,0,6,2,52,9,8,37,6,6,0,0,2,16,1,37,0,7,8,0,2,1,6,0,8,6,0,20,0,10,2,0,2,21,0,54,6,7,0,74,0,0,0,1,0,0,2,0,0,0,0,12,168,0,0,0,0,0,1,0,0,0,9,0,18,0,0,1278,52,249,0,30,0,0,0,0,0,12,6,0,0,0,0,8,16,182,0,8,21,2,0,0,0,0,128,5,3,0,0,2,2,136,0,14,0,0,964,0,0,0,0,4,0,3,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,133,0,70,0,0,0,22,26,220,114,141,0,0,0,0,1,0,5,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,28,277,8,0,0,293,0,411,0,0,0,138,19,0,0,0,0,0,0,0,0,0,115,1,0,0,0,17,0,0,0,0,8,142,48,0,0,0,0,0,0,0,0,196,0,0,81,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,43,0,0,0,8,17,75,278,0,37,9,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,3,0,3,209,49,1 +2,0,0,4,0,19,3,0,15,2,4,0,0,0,10,1,15,0,7,1,0,0,0,1,0,0,0,0,4,0,10,0,0,0,8,0,19,6,0,0,41,0,0,0,1,0,0,2,0,0,0,0,9,62,0,0,0,0,0,1,0,0,0,0,0,10,0,0,389,19,61,0,14,0,0,0,0,0,7,0,0,0,0,0,1,4,47,0,0,8,0,0,0,0,0,31,0,4,0,0,2,0,46,0,8,0,0,400,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,52,0,42,0,0,0,18,14,41,36,58,0,0,0,0,1,0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,13,131,4,0,0,127,0,199,0,0,0,57,8,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,6,105,22,0,0,0,0,0,0,0,0,57,0,0,57,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,22,0,0,0,8,1,27,191,0,14,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,18,1 +8,0,0,4,2,65,6,2,30,1,5,0,0,2,8,0,34,0,7,7,0,4,0,5,0,8,0,0,9,0,5,0,0,2,37,0,67,6,0,0,80,0,0,0,1,0,0,3,0,0,0,0,5,129,0,0,0,0,0,1,2,0,0,5,0,9,0,0,2111,65,295,0,12,0,0,0,0,0,16,6,0,0,0,1,7,17,436,0,2,37,2,0,0,0,0,104,5,6,0,0,2,2,53,0,6,0,0,894,0,0,0,0,23,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6,10,10,10,0,0,0,273,0,123,0,0,0,8,9,237,60,285,0,0,0,0,1,0,4,0,0,0,0,0,0,742,0,0,0,0,0,0,0,0,0,2,0,0,3,1,2,0,0,0,0,1,2,32,16,308,6,0,0,341,0,363,0,0,0,187,9,0,0,0,0,0,0,3,0,0,92,1,0,0,0,16,0,0,0,0,5,147,47,0,0,0,0,0,0,0,0,201,0,0,312,3,0,1,1,0,0,0,0,9,0,0,0,1,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,69,1,1,1,0,15,0,0,0,0,17,104,266,0,13,9,0,0,0,0,0,137,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,4,0,2,405,91,1 +3,0,0,6,0,34,7,0,27,2,8,0,0,2,9,1,19,0,7,3,0,0,0,5,0,8,0,0,5,0,7,0,0,0,7,0,34,6,0,0,55,0,0,0,1,0,0,3,0,0,0,0,7,161,0,0,0,0,0,1,0,0,0,2,0,12,0,0,982,34,80,0,10,0,0,0,0,0,12,0,0,0,1,0,7,16,135,0,0,7,0,0,1,7,0,152,20,3,0,0,2,0,89,0,7,0,0,541,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,98,0,60,0,0,0,12,10,191,79,104,0,0,0,0,1,0,3,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,19,163,6,0,0,176,0,300,0,0,0,64,7,0,0,0,0,0,0,0,0,0,80,1,0,0,0,8,0,0,0,0,3,120,44,0,0,30,0,0,0,0,0,103,0,0,72,3,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,15,0,0,0,8,1,41,167,0,11,9,0,0,0,0,0,58,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,191,36,1 +2,0,0,5,1,19,35,1,89,11,29,0,3,0,16,0,70,0,8,1,0,0,0,1,0,0,0,0,5,0,1,0,0,1,11,0,20,89,0,0,131,0,5,0,1,0,0,8,0,0,0,0,0,79,0,0,0,0,0,1,0,0,0,0,0,22,0,0,16144,19,244,0,6,0,0,0,0,0,28,0,0,0,0,0,1,14,3438,0,1,11,1,0,10,48,0,501,90,10,0,0,10,1,288,0,13,0,0,368,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1928,0,116,0,0,0,0,3,41,382,1950,0,0,0,0,1,0,0,0,0,0,0,0,0,3770,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,136,55,284,6,0,0,311,0,467,0,1,0,125,19,0,0,0,0,0,0,0,0,0,250,1,0,0,0,2,0,0,0,0,1,119,116,0,0,174,0,0,0,0,0,840,0,0,4894,0,0,1,0,1,0,0,0,16,0,0,0,3,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,1,1,1,0,5,0,0,0,0,9,31,152,0,6,0,0,0,0,0,0,192,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,23,0,0,0,0,0,0,0,0,0,0,0,1,0,8,1476,158,1 +11,0,0,9,0,98,65,0,138,40,62,0,0,6,37,0,1758,0,15,2,0,0,0,9,0,11,3,0,34,0,4,0,0,0,44,4714,98,9,0,0,220,0,0,0,1,0,0,23,1,0,0,0,4,1237,0,0,0,0,0,1,0,0,0,0,0,30,0,0,90834,98,2352,0,34,0,0,0,0,0,193,0,0,0,0,0,10,203,19546,0,0,44,0,0,2,46,0,958,105,35,0,0,2,0,2183,0,22,303,0,8912,0,0,0,0,0,0,8,0,0,0,0,1,0,0,0,15,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,3,0,0,0,0,4,0,19,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,132,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,17,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,12,12,12,0,0,0,12263,0,507,0,0,0,21,28,578,3008,12179,0,0,0,0,1,0,10,0,0,0,0,0,0,3969,0,0,0,0,0,0,0,0,0,0,0,0,23,1,6,0,0,0,0,1,0,86,107,671,13,0,0,916,0,592,0,0,0,663,55,0,0,0,0,0,1,7,0,0,2081,1,0,3,0,11,0,0,0,0,2,276,350,0,0,614,0,0,0,0,0,8338,1,0,1805,43,0,1,1,0,0,0,0,61,0,0,0,2,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,43,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,107,1,1,1,0,91,0,0,0,0,1,142,1523,0,38,14,0,0,0,0,0,320,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,48,0,0,0,0,0,0,0,0,0,0,0,0,0,20,4768,429,1 +2,0,0,4,0,17,3,0,3,2,4,0,0,0,10,1,9,0,7,1,0,0,0,1,0,0,0,0,2,0,7,0,0,0,6,0,17,6,0,0,29,0,0,0,1,0,0,0,0,0,0,0,6,22,0,0,0,0,0,1,0,0,0,0,0,10,0,0,147,17,37,0,9,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,6,0,0,0,0,0,15,0,0,0,0,2,0,35,0,8,0,0,200,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,24,0,0,0,12,10,36,18,34,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,13,66,4,0,0,86,0,152,0,0,0,47,6,0,0,0,0,0,0,0,0,0,37,0,0,0,0,2,0,0,0,0,3,103,24,0,0,0,0,0,0,0,0,46,0,0,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,14,0,0,0,8,1,23,62,0,9,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,7,1 +0,0,0,0,0,10,2,0,22,0,1,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,7,0,1,0,1,0,0,2,0,0,0,0,0,120,0,0,0,0,0,1,0,0,0,0,0,0,0,0,11017,10,49,0,1,0,0,0,0,0,8,0,0,0,0,1,1,6,2644,0,0,2,0,0,0,0,0,8,0,3,0,0,2,0,21,0,0,0,0,360,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1428,0,27,0,0,0,0,3,25,393,1438,0,0,0,0,1,0,0,0,0,0,0,0,0,2957,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,144,0,0,0,148,0,155,0,0,0,87,19,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,94,65,0,0,0,0,0,0,0,0,669,0,0,3282,0,0,1,0,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,307,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1190,20,1 +2,0,0,4,0,19,3,0,16,0,4,0,0,0,7,1,15,0,7,1,0,0,0,1,0,0,0,0,4,0,8,0,0,0,8,0,19,6,0,0,30,0,0,0,1,0,0,1,0,0,0,0,7,79,0,0,0,0,0,1,0,0,0,0,0,7,0,0,614,19,58,0,12,0,0,0,0,0,6,0,0,0,0,0,1,3,84,0,0,8,0,0,0,0,0,23,0,2,0,0,2,0,41,0,5,0,0,454,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,38,0,0,0,14,12,40,33,100,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,10,118,4,0,0,157,0,222,0,0,0,87,8,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,4,105,52,0,0,0,0,0,0,0,0,55,0,0,58,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,18,0,0,0,8,1,27,195,0,12,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,88,17,1 +5646,0,0,7,2,64,60,2,143,8,18,0,0,2,23,1,1296,0,11,4,0,0,0,6,0,15,0,0,106,0,1,0,0,2,24,247,66,198,0,0,148,0,0,0,1,0,0,18,0,0,0,0,6,344,0,0,0,0,0,1,0,0,0,0,0,25,0,0,89043,64,1663,0,109,0,0,0,0,0,68,0,0,0,0,1,9,45,6131,0,2,24,2,0,5,31,0,563,50,29,1,0,6,2,1554,0,17,0,0,112665,0,0,0,0,16979,0,5,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,5649,0,0,0,0,0,11318,0,5645,0,0,0,0,0,0,5691,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,61,12,12,12,0,0,0,4278,0,224,0,0,0,5,8,291,32055,4246,0,0,0,0,1,0,7,0,0,0,0,0,0,98820,0,0,0,0,0,0,0,0,0,0,0,0,19,1,0,0,0,0,0,1,0,253,51,966,9,0,0,679,0,1132,0,2,0,263,209,0,0,0,0,0,0,0,0,0,1554,1,0,0,0,10,0,0,0,0,6,175,109,0,0,94,0,0,0,0,0,4212,1,0,2671,6,0,1,1,0,0,0,0,27,0,0,0,16,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,6,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,71,1,1,1,0,103,0,0,0,0,17,90,299,0,110,12,0,0,0,0,0,235,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,16,0,0,0,0,0,0,0,0,0,0,0,2,0,6,2175,585,1 +1,0,0,3,0,12,2,0,3,0,3,0,0,0,3,0,9,0,7,2,0,0,0,0,0,0,0,0,4,0,5,0,0,0,1,0,12,6,0,0,6,0,0,0,1,0,0,0,0,0,0,0,4,21,0,0,0,0,0,1,0,0,0,0,0,3,0,0,79,12,26,0,9,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,25,0,0,0,0,2,0,15,0,1,0,0,101,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,18,0,19,0,0,0,8,9,29,26,25,0,0,0,0,1,0,1,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,47,3,0,0,51,0,121,0,0,0,12,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,5,94,8,0,0,0,0,0,0,0,0,32,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,12,0,0,0,4,1,13,9,0,9,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,6,1 +3,0,0,6,0,39,5,0,27,0,6,0,0,2,5,0,26,0,6,2,0,0,0,5,0,8,3,0,3,0,2,0,0,0,8,0,39,6,0,0,33,0,0,0,1,0,0,4,0,0,0,0,2,116,0,0,0,0,0,1,0,0,0,0,0,8,0,0,1283,39,85,0,3,0,0,0,0,0,16,0,0,0,0,0,7,18,248,0,0,8,0,0,0,4,0,127,15,4,0,0,2,0,77,0,1,0,0,1139,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,188,0,175,0,0,0,2,12,207,82,196,0,0,0,0,1,0,5,0,0,0,0,0,0,505,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,11,194,6,0,0,214,0,294,0,0,0,93,13,0,0,0,0,0,0,0,0,0,77,1,0,0,0,7,0,0,0,0,2,123,62,0,0,17,0,0,0,0,0,133,0,0,59,3,0,1,1,0,0,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,13,0,0,0,0,1,47,194,0,7,9,0,0,0,0,0,67,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,510,60,1 +3,0,0,14,0,20,2,0,25,1,3,0,0,0,10,0,20,0,7,1,0,0,0,1,0,4,0,0,5,0,4,0,0,0,8,0,20,18,0,0,44,0,0,0,1,0,0,1,0,0,0,0,7,51,0,0,0,0,0,1,0,0,0,0,0,5,0,0,302,20,71,0,13,0,0,0,0,0,3,0,0,0,0,1,1,4,31,0,0,8,0,0,0,0,0,31,0,3,0,0,2,0,49,0,3,0,0,235,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,43,0,41,0,0,0,10,12,38,48,54,0,0,0,0,1,0,0,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,6,120,17,0,0,153,0,223,0,0,0,84,602,0,0,0,0,0,0,0,0,0,67,1,0,0,0,2,0,0,0,0,8,103,41,0,0,0,0,0,0,0,0,68,0,0,22,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,11,0,0,0,4,1,28,163,0,13,0,0,0,0,0,0,68,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,55,1 +0,0,0,0,0,8,2,0,9,0,3,0,0,0,2,0,9,0,6,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,8,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,26,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,6,0,51,5,0,0,0,2,0,33,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,41,19,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,46,0,0,0,2,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,0,90,14,0,0,7,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,1 +12,0,0,12,2,34,53,2,80,8,15,0,0,0,27,0,120,0,11,3,0,0,0,4,0,0,3,0,4,0,2,0,0,2,19,0,36,102,0,0,115,0,0,0,1,0,0,2,0,0,0,0,1,108,0,0,0,0,0,1,0,0,0,2,0,22,0,0,1884,34,238,0,6,0,0,0,0,0,8,0,0,0,0,0,6,9,193,0,2,19,2,0,4,16,0,244,30,3,0,0,6,2,174,0,15,0,0,918,0,0,0,0,21,2,0,0,2,0,0,1,0,0,0,10,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,7,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8,0,0,0,0,0,0,160,0,67,0,0,0,2,7,78,1270,181,0,0,0,0,1,0,0,0,0,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,217,73,481,16,0,0,529,0,942,0,2,0,214,14,0,0,0,0,0,0,0,0,0,306,1,0,0,0,7,0,0,0,0,2,180,68,0,0,58,0,1,0,0,0,264,0,0,39,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,38,1,1,1,0,5,0,0,0,0,17,55,142,0,9,0,0,0,0,0,0,120,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,2,0,1,342,240,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,34,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,22,0,0,0,0,3,21,5,23,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,45,0,63,0,0,0,15,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,14,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,28,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,4,1 +0,0,0,0,0,11,2,0,15,0,1,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,11,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,0,0,0,826,11,37,0,1,0,0,0,0,0,4,0,0,0,0,0,1,4,427,0,0,2,0,0,0,0,0,7,0,1,0,0,2,0,16,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,21,0,0,0,0,3,27,4,38,0,0,0,0,1,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,71,0,0,0,78,0,92,0,0,0,17,0,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,93,4,0,0,0,0,0,0,0,0,206,0,0,728,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,37,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,221,2,1 +0,0,0,8,0,30,307,0,601,0,89,0,0,2,4,0,28,0,7,2,0,0,0,6,2,8,0,0,6,0,3,0,0,0,3,0,30,242,5,0,1097,0,0,0,1,0,0,2,0,0,0,0,5,169,0,0,0,0,0,1,0,0,0,0,0,5,0,0,2545,30,1043,0,7,0,0,0,0,0,14,0,0,0,0,0,7,16,270,0,0,3,0,0,2,578,0,4692,420,4,0,0,2,0,2701,0,0,0,0,1033,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,190,0,49,0,0,0,8,33,197,2409,179,0,0,0,0,1,0,3,0,0,0,0,0,0,1815,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,15,169,9,0,0,511,0,506,0,0,0,402,24,0,0,0,0,0,0,0,0,0,1038,1,0,0,0,10,0,0,0,0,1,112,1161,0,0,1348,0,0,0,0,0,446,0,0,212,3,0,1,1,0,0,0,0,4,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,10,0,0,0,0,1,33,196,0,8,9,0,0,0,0,0,1873,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,262,69,1 +1,0,0,0,0,13,2,0,24,4,1,0,0,0,6,0,19,0,7,1,0,0,0,2,0,0,3,0,1,0,1,0,0,0,2,0,13,6,885,0,23,0,0,0,1,0,0,1,0,0,0,0,0,85,0,0,0,0,0,1,0,0,0,0,0,4,0,0,5453,13,60,0,5,0,0,0,0,0,9,0,0,0,0,0,2,4,55,0,0,2,0,0,0,0,0,10,0,2,0,0,2,0,29,0,4,0,0,137,0,0,0,0,3,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,61,0,38,0,0,0,0,6,30,10,73,0,0,0,0,1,0,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,7,90,0,0,0,132,0,185,0,0,0,60,885,0,0,0,0,0,0,0,0,0,59,1,0,0,0,3,0,0,0,0,0,97,40,0,0,0,0,0,0,0,0,266,0,0,51,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,4,0,0,0,0,1,15,230,0,5,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,88,21,1 +9,0,0,7,0,28,3,0,17,5,6,0,0,0,15,1,30,0,7,1,0,0,0,1,0,0,9,0,7,0,10,0,0,0,16,0,28,6,0,0,63,0,0,0,1,0,0,4,0,0,0,0,9,60,0,0,0,0,0,1,0,0,0,0,0,14,0,0,875,28,96,0,17,0,0,0,0,0,9,0,0,0,0,0,1,6,130,0,0,16,0,0,0,0,0,37,0,1,0,0,2,0,111,0,10,0,0,447,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,7,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,102,0,52,0,0,0,18,21,53,40,122,0,0,0,0,1,0,0,0,0,0,0,0,0,371,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,25,150,9,0,0,184,0,325,0,0,0,113,12,0,0,0,0,0,0,0,0,0,79,1,0,0,0,2,0,0,0,0,6,114,54,0,0,0,0,0,0,0,0,130,0,0,127,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,22,0,0,0,0,1,44,200,0,26,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,163,40,1 +1,0,0,2,0,11,2,0,21,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,70,11,43,0,0,0,0,0,0,0,3,0,0,0,0,1,1,4,23,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,20,0,0,0,0,64,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,29,0,0,0,0,3,28,5,42,0,0,0,0,1,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,94,0,90,0,0,0,33,0,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,94,13,0,0,0,0,0,0,0,0,26,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,91,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,4,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,7,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,73,0,0,0,0,0,1,0,0,0,0,0,2,0,0,477,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,42,0,0,7,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,303,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,56,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,124,3,0,0,114,0,206,0,0,0,49,9,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,52,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,24,113,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,98,23,1 +0,0,0,0,0,14,2,0,19,0,1,0,0,0,2,0,17,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,14,6,0,0,14,0,0,0,1,0,0,1,1,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2985,14,50,0,1,0,0,0,0,0,10,0,0,0,0,0,1,3,54,0,0,4,0,0,0,0,0,6,0,13,0,0,2,0,16,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,64,0,61,0,0,0,0,3,31,8,76,0,0,0,0,1,0,0,0,0,0,0,0,0,1382,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,3,605,0,0,0,619,0,142,0,0,0,544,13,0,0,0,0,0,0,0,0,0,48,1,0,13,0,2,0,0,0,0,0,597,21,0,0,0,0,0,0,0,0,102,0,0,32,0,0,1,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,18,97,0,1,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,18,1 +0,0,0,2,0,9,2,0,14,0,2,0,0,0,2,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,9,35,0,1,0,0,0,0,0,4,0,0,0,0,0,2,4,25,0,0,0,0,0,0,0,0,9,0,2,0,0,2,0,13,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0,33,0,29,0,0,0,0,3,26,5,47,0,0,0,0,1,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,90,0,98,0,0,0,30,2,0,0,0,0,0,0,0,0,0,40,1,0,0,0,3,0,0,0,0,0,93,21,0,0,0,0,0,0,0,0,25,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,9,88,0,1,0,0,0,1,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,14,1 +8,0,0,7,0,22,3,0,16,5,7,0,0,0,16,1,15,0,7,1,0,0,0,1,0,0,0,0,3,0,6,0,0,0,11,0,22,6,0,0,65,0,3,0,1,0,0,3,0,0,0,0,5,64,0,0,0,0,0,1,0,0,0,0,0,14,0,0,1536,22,81,0,9,0,0,0,0,0,13,0,0,0,0,0,1,6,535,0,0,11,0,0,0,0,0,30,0,4,0,0,2,0,59,0,10,0,0,523,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,96,0,66,0,0,0,10,11,49,32,104,0,0,0,0,1,0,0,0,0,0,0,0,0,338,0,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,8,29,187,9,0,0,154,0,253,0,0,0,86,19,0,0,0,0,0,0,0,0,0,65,1,0,0,0,2,0,0,0,0,5,108,37,0,0,0,0,0,0,0,0,250,0,0,807,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,366,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,13,0,0,0,2,1,33,163,0,9,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,329,70,1 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,82,9,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,18,0,0,0,0,3,23,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,46,0,0,0,55,0,44,0,0,0,25,3,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,91,21,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,58,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,9,1 +2,0,0,4,0,24,3,0,7,2,4,0,0,0,10,2,52,0,7,2,0,0,0,0,0,0,6,0,5,0,11,0,0,0,13,0,24,6,0,0,38,0,0,0,1,0,0,1,0,0,0,0,10,42,0,0,0,0,0,1,0,0,0,0,0,10,0,0,265,24,98,0,16,0,0,0,0,0,2,0,0,0,0,0,1,3,9,0,0,13,0,0,0,0,0,27,0,0,0,0,2,0,88,0,8,0,0,339,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,30,0,53,0,0,0,20,21,56,32,35,0,0,0,0,1,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,13,109,4,0,0,106,0,171,0,0,0,67,4,0,0,0,0,0,0,0,0,0,85,1,0,0,0,2,0,0,0,0,5,110,23,0,0,0,0,0,0,0,0,297,0,0,14,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,23,0,0,0,8,11,37,69,0,22,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,17,1 +4,0,0,0,0,22,4,0,18,9,1,0,0,0,11,0,22,0,6,1,0,0,0,3,0,0,0,0,1,0,2,0,0,0,11,0,22,6,0,0,47,0,0,0,1,0,0,2,0,0,0,0,1,68,0,0,0,0,0,1,0,0,0,18,0,9,0,0,434,22,63,0,3,0,0,0,0,0,7,0,0,0,0,0,3,7,64,0,0,11,0,0,0,0,0,16,0,3,0,0,2,0,52,0,8,0,0,452,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,8,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,79,0,44,0,0,0,2,5,48,32,101,0,0,0,0,1,0,0,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,13,119,0,0,0,159,0,186,0,0,0,89,24,0,0,0,0,0,0,0,0,0,62,1,0,0,0,4,0,0,0,0,2,108,44,0,0,0,0,0,0,0,0,52,0,0,45,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,3,0,0,0,0,1,33,156,0,3,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,17,1 +3,0,0,0,0,15,2,0,5,0,1,0,0,0,2,0,16,0,6,2,0,0,0,0,0,0,3,0,2,0,2,0,0,0,5,0,15,6,0,0,12,0,0,0,0,0,0,0,0,0,0,0,1,17,0,0,0,0,0,1,0,0,0,4,0,0,0,0,77,15,33,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,7,0,0,5,0,0,0,0,0,11,0,0,0,0,2,0,32,0,0,0,0,748,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,22,0,21,0,0,0,2,8,31,22,29,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,58,0,0,0,53,0,125,0,0,0,17,8,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,2,97,1,0,0,0,0,0,0,0,0,31,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,20,5,0,7,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,2,1 +9,0,0,9,0,55,11,0,40,2,28,0,0,6,30,0,70,0,8,3,0,0,0,8,0,10,0,0,9,0,5,0,0,0,17,4910,55,6,0,0,104,0,0,0,1,0,0,2,0,0,0,0,5,354,0,0,0,0,0,1,0,0,0,7,0,16,0,0,10904,55,197,0,11,0,0,0,2,0,19,0,0,0,0,0,10,25,1816,0,0,17,0,0,1,12,0,316,35,2,1,0,2,0,244,0,8,15,0,1610,0,0,0,0,15,2,3,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,4,0,0,2,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,12,12,12,0,0,0,936,0,90,0,0,0,9,10,298,537,944,0,0,0,0,1,0,6,0,0,0,0,0,0,740,0,0,0,0,2,0,0,0,0,1,0,0,2,1,0,0,0,0,0,1,1,86,32,307,10,0,0,314,0,410,0,0,0,146,11,0,0,0,0,0,0,0,0,0,193,1,0,0,0,11,0,0,0,0,3,157,44,0,0,43,0,6,0,0,0,817,1,0,257,6,0,1,1,0,0,0,0,5,0,2,0,1,0,0,0,0,0,4,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,5,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,17,0,0,0,0,1,72,103,0,12,12,0,0,0,0,0,132,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,4,742,67,1 +4,0,0,5,2,34,7,8,30,7,6,0,0,0,18,1,24,0,7,6,0,2,1,2,0,0,0,0,6,0,10,0,0,2,19,0,36,6,23,0,68,0,0,0,1,0,0,1,0,0,0,0,9,74,0,0,0,0,0,1,0,0,0,8,0,19,0,0,415,34,204,0,16,0,0,0,0,0,6,6,0,0,0,0,2,4,39,0,8,19,2,0,0,0,0,43,0,2,0,0,2,2,74,0,16,0,0,425,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,54,0,53,0,0,0,18,14,67,48,66,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,23,213,7,0,0,239,0,274,0,0,0,125,21,0,0,0,0,0,0,0,0,0,93,1,0,0,0,11,0,0,0,0,7,124,43,0,0,0,0,0,0,0,0,95,0,0,25,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,24,0,0,0,4,17,55,170,0,16,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,3,0,1,98,45,1 +2,0,0,4,0,18,3,0,9,1,4,0,0,0,9,1,15,0,7,1,0,0,0,1,0,0,0,0,4,0,7,0,0,0,7,0,18,6,0,0,29,0,0,0,1,0,0,1,1,0,0,0,6,50,0,0,0,0,0,1,0,0,0,0,0,9,0,0,2620,18,60,0,11,0,0,0,0,0,11,0,0,0,0,0,1,3,34,0,0,7,0,0,0,0,0,19,0,4,0,0,2,0,38,0,7,0,0,906,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,54,0,53,0,0,0,12,11,38,19,53,0,0,0,0,1,0,0,0,0,0,0,0,0,1341,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,12,273,4,0,0,108,0,186,0,0,0,44,25,0,0,0,0,0,0,0,0,0,48,1,0,3,0,2,0,0,0,0,3,104,10,0,0,0,0,0,0,0,0,69,0,0,22,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,16,0,0,0,8,1,25,31,0,11,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,112,28,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,58,0,0,0,0,0,1,0,0,0,0,0,2,0,0,370,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,50,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,239,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,61,0,56,0,0,0,4,10,32,174,70,0,0,0,0,1,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,109,3,0,0,114,0,183,0,0,0,40,6,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,59,0,0,46,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,112,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,106,20,1 +4,0,0,14,0,116,19,0,80,0,13,0,0,0,52,0,20,0,6,1,0,0,0,1,0,0,3,0,3,0,5,0,0,0,94,0,116,6,0,0,396,0,0,0,1,0,0,10,0,0,0,0,4,187,0,0,0,0,0,1,0,0,0,0,0,47,0,0,69955,116,199,0,8,0,0,0,0,0,43,0,0,0,0,2,1,15,477,0,0,94,0,0,0,0,0,26,0,17,0,0,2,0,165,0,1,0,0,19036,0,0,0,0,7,0,12,0,0,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,22,0,0,0,0,0,0,367,0,252,0,0,0,8,9,137,1627,374,0,0,0,0,1,0,0,0,0,0,0,0,0,1428,0,0,0,0,0,0,0,0,0,0,0,0,10,0,2,0,0,0,0,0,0,8,182,591,16,0,0,743,0,631,0,0,0,640,22,0,0,0,0,0,0,0,0,0,190,1,0,0,0,2,0,0,0,0,1,211,308,0,0,0,0,0,0,0,0,230,0,0,350,0,0,1,0,0,0,0,0,20,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,113,1,1,1,0,15,0,0,0,0,1,210,572,0,11,0,0,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,692,171,1 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,0,0,0,164,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,9,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,78,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,22,0,0,0,0,3,24,7,31,0,0,0,0,1,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,42,0,0,0,85,0,166,0,0,0,55,4,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,93,49,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,125,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,8,1 +2,0,0,5,0,33,5,0,19,0,4,0,0,2,7,1,18,0,7,3,0,0,0,5,0,8,0,0,5,0,8,0,0,0,6,0,33,6,0,0,43,0,0,0,1,0,0,1,0,0,0,0,8,103,0,0,0,0,0,1,0,0,0,0,0,8,0,0,542,33,60,0,12,0,0,0,0,0,6,0,0,0,0,0,7,13,76,0,0,6,0,0,0,0,0,87,5,1,0,0,2,0,52,0,5,0,0,526,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,62,0,43,0,0,0,14,11,192,35,62,0,0,0,0,1,0,3,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,32,17,145,5,0,0,156,0,245,0,0,0,49,4,0,0,0,0,0,0,0,0,0,63,1,0,0,0,8,0,0,0,0,4,119,20,0,0,0,0,0,0,0,0,79,0,0,16,2,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,18,0,0,0,8,1,39,95,0,13,8,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,130,28,1 +9,0,0,7,0,29,3,0,17,5,6,0,0,0,15,1,30,0,7,1,0,0,0,1,0,0,9,0,7,0,10,0,0,0,17,0,29,6,0,0,63,0,0,0,1,0,0,4,0,0,0,0,9,55,0,0,0,0,0,1,0,0,0,0,0,14,0,0,762,29,96,0,17,0,0,0,0,0,9,0,0,0,0,0,1,6,98,0,0,17,0,0,0,0,0,37,0,1,0,0,2,0,111,0,10,0,0,403,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,7,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,94,0,54,0,0,0,18,21,57,40,114,0,0,0,0,1,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,25,153,9,0,0,187,0,323,0,0,0,116,20,0,0,0,0,0,0,0,0,0,79,1,0,0,0,2,0,0,0,0,6,115,54,0,0,0,0,0,0,0,0,109,0,0,86,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,22,0,0,0,0,1,46,201,0,26,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,135,41,1 +7,0,0,4,0,46,6,0,36,8,3,0,0,2,13,0,565,0,6,3,0,0,0,6,0,10,0,0,8,0,4,0,0,0,9,898,46,6,0,0,58,0,0,0,1,0,0,4,0,0,0,0,4,200,0,0,0,0,0,1,0,0,0,0,0,14,0,0,20869,46,658,0,9,0,0,0,0,0,25,0,0,0,0,0,8,21,3620,0,0,9,0,0,0,0,0,108,5,9,1,0,2,0,610,0,11,0,0,1705,0,0,0,0,14,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,8,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,12,12,12,0,0,0,2956,0,104,0,0,0,6,9,247,356,2929,0,0,0,0,1,0,3,0,0,0,0,0,0,506,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,251,4,0,0,266,0,317,0,0,0,98,9,0,0,0,0,0,0,0,0,0,631,1,0,0,0,9,0,0,0,0,4,129,27,0,0,0,0,0,0,0,0,1580,1,0,139,6,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,11,0,0,0,0,1,55,161,0,10,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,578,46,1 +2,0,0,11,0,29,29,0,240,2,64,0,0,0,19,0,19,0,7,2,0,0,0,1,0,0,0,0,1,0,3,0,0,0,16,1,29,6,0,0,466,0,0,0,1,0,0,6,2,0,0,0,2,152,0,0,0,0,0,1,0,0,0,2,0,50,0,0,14516,29,413,0,4,0,0,0,0,0,28,0,0,0,1,5,2,14,92,0,0,16,0,0,3,216,0,1698,100,13,0,0,2,0,1112,0,6,0,0,5266,0,0,0,0,2,0,1,0,1,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,123,0,103,0,0,0,4,7,53,1742,129,0,0,0,0,1,0,0,0,0,0,0,0,0,1753,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,10,11,419,14,0,0,1166,0,283,0,0,0,1087,61,0,0,0,0,0,0,0,0,0,378,1,0,4,0,3,0,0,0,0,3,122,1517,0,0,229,0,0,0,0,0,591,0,0,56,0,0,1,0,0,0,0,0,12,0,0,0,6,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,5,0,0,0,0,1,45,3782,0,4,0,0,0,0,0,0,616,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,197,329,1 +2,0,0,11,0,57,10,0,74,3,25,0,0,6,28,1,1733,0,7,1,0,0,0,9,0,12,27,0,17,0,8,2,0,0,14,894,57,6,0,0,186,0,4,0,1,0,0,4,0,0,0,0,10,402,0,0,0,0,0,1,0,0,0,0,0,13,0,0,45632,57,1945,0,24,0,0,0,0,0,29,0,0,0,0,0,10,37,5027,0,0,14,0,0,0,0,0,262,20,7,0,0,2,0,2006,0,7,10,0,3130,0,0,0,0,27,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,97,12,12,12,0,0,0,3583,0,86,0,0,0,20,64,333,783,3563,0,0,0,0,1,0,4,0,0,0,0,0,0,11798,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,84,122,2885,13,0,0,2860,0,386,0,0,0,2683,42,0,0,0,0,0,0,0,0,0,1884,1,0,0,0,10,0,0,0,0,10,2696,38,0,0,15,0,0,0,0,0,7219,1,0,11469,10,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,2,0,0,0,10,149,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,68,1,1,1,0,74,0,0,0,0,1,71,335,0,52,14,0,1,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3690,196,1 +1,0,0,0,0,18,2,0,16,0,1,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,8,0,18,6,0,0,19,0,0,0,1,0,0,3,0,0,0,0,0,81,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1170,18,54,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,235,0,0,8,0,0,0,0,0,11,0,4,0,0,2,0,17,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,214,0,76,0,0,0,0,3,34,7,222,0,0,0,0,1,0,0,0,0,0,0,0,0,350,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,8,3,103,0,0,0,145,0,194,0,0,0,78,12,0,0,0,0,0,0,5,0,0,42,1,0,0,0,2,0,0,0,0,0,100,43,0,0,0,0,0,0,0,0,61,0,0,127,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,26,143,0,1,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,193,15,1 +5,0,0,10,0,24,5,0,24,2,16,0,0,0,22,1,17,0,7,2,0,0,0,1,0,0,0,0,5,0,9,0,0,0,12,0,24,6,0,0,103,0,0,0,1,0,0,5,0,0,0,0,8,81,0,0,0,0,0,1,0,0,0,0,0,17,0,0,727,24,119,0,14,0,0,0,0,0,18,0,0,0,0,0,2,9,159,0,0,12,0,0,1,8,0,118,15,5,0,0,2,0,118,0,10,0,0,690,0,0,0,0,28,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,147,0,95,0,0,0,16,13,59,114,158,0,0,0,0,1,0,0,0,0,0,0,0,0,495,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,58,176,12,0,0,181,0,263,0,0,0,111,11,0,0,0,0,0,0,0,0,0,92,1,0,0,0,3,0,0,0,0,7,121,60,0,0,29,0,0,0,0,0,99,0,0,96,0,0,1,0,1,0,0,0,11,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,21,0,0,0,0,1,36,219,0,14,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6,241,41,1 +4,0,0,7,2,25,51,2,72,4,9,0,0,0,18,0,120,0,10,2,0,0,0,2,0,1,0,0,2,0,2,0,0,2,14,0,27,168,0,0,77,0,0,0,1,0,0,2,0,0,0,0,2,101,0,0,0,0,0,1,0,0,0,11,0,17,0,0,605,25,206,0,5,0,0,0,0,0,9,0,0,0,0,0,3,6,88,0,2,14,2,0,3,7,0,160,15,3,0,0,6,2,123,0,12,0,0,505,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,93,0,67,0,0,0,3,6,53,110,117,0,0,0,0,1,0,0,0,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,228,39,430,9,0,0,478,0,838,0,2,0,178,14,0,0,0,0,0,0,0,0,0,280,1,0,0,0,4,0,0,0,0,3,140,59,0,0,34,0,0,0,0,0,479,0,0,78,0,0,1,0,0,0,0,0,5,0,0,0,2,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,24,1,1,1,0,4,0,0,0,0,17,41,318,0,5,0,0,0,0,0,0,125,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,3,328,53,1 +1,0,0,11,1,44,40,1,99,1,12,0,0,6,9,0,811,0,8,3,0,0,0,8,0,11,0,0,5,0,1,0,0,1,8,1130,45,54,0,0,107,0,0,0,1,0,0,4,1,0,0,0,1,210,0,0,0,0,0,1,0,0,0,0,0,5,0,0,10557,44,970,0,2,0,0,0,0,0,27,0,0,0,0,0,10,27,1877,0,1,8,1,0,1,17,0,379,35,12,0,0,4,1,915,0,2,1,0,2486,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,12,12,12,0,0,0,830,0,92,0,0,0,0,3,279,526,810,0,0,0,0,1,0,3,0,0,0,0,0,0,1657,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,187,32,426,14,0,0,427,0,703,0,1,0,151,11,0,0,0,0,0,0,0,0,0,985,1,0,5,0,11,0,0,0,0,0,143,71,0,0,40,0,0,0,0,0,2403,1,0,907,8,0,1,1,0,0,0,0,17,0,1,0,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,47,1,1,1,0,1,0,0,0,0,9,53,229,0,3,14,0,0,0,0,0,160,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,1,0,3,1035,89,1 +6,0,0,0,0,17,4,0,3,2,1,0,0,0,4,0,15,0,7,2,0,0,0,0,0,0,0,0,2,0,3,0,0,0,7,0,17,6,0,0,41,0,0,0,1,0,0,0,0,0,0,0,2,23,0,0,0,0,0,1,0,0,0,0,0,2,0,0,155,17,33,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,7,0,0,0,0,0,15,0,0,0,0,2,0,31,0,2,0,0,231,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,19,0,35,0,0,0,4,7,36,17,26,0,0,0,0,1,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,83,0,0,0,69,0,142,0,0,0,33,7,0,0,0,0,0,0,0,0,0,34,0,0,0,0,2,0,0,0,0,3,99,11,0,0,0,0,0,0,0,0,32,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,6,0,0,0,0,1,24,39,0,5,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,14,1 +191,0,17,11,3,29,26,5,37,1,6,0,1,1,9,0,84,0,8,13,0,1,0,5,1,0,0,0,5,0,1,0,0,1,10,21,31,54,0,0,40,0,0,0,1,0,0,4,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,7,0,0,2328,29,228,0,6,0,0,0,0,0,10,3,0,0,0,0,3,22,1828,0,5,10,1,0,1,0,0,68,0,4,1,0,5,3,56,0,4,0,0,4097,0,0,0,0,569,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,191,0,0,0,0,0,379,0,190,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,132,5,106,0,0,0,0,3,56,1063,149,0,0,0,0,1,0,0,0,0,0,0,0,0,3615,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,589,17,353,18,0,0,357,0,874,0,0,0,112,18,0,0,0,0,0,0,0,0,0,172,1,0,0,0,20,0,0,0,0,1,141,19,0,18,0,0,0,0,0,0,475,0,0,48,0,0,1,0,0,0,0,0,8,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,5,0,0,0,0,17,41,47,0,6,0,0,0,0,0,0,67,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,2,0,0,0,265,0,4,387,103,1 +2,0,0,5,0,26,4,0,19,5,4,0,0,0,11,1,19,0,7,1,0,0,0,2,0,0,4,0,11,0,12,0,0,0,12,0,26,6,0,0,36,0,0,0,1,0,0,3,0,0,0,0,11,94,0,0,0,0,0,1,0,0,0,6,0,12,0,0,510,26,89,0,23,0,0,0,0,0,12,0,0,0,0,0,2,6,94,0,0,12,0,0,0,0,0,64,0,4,0,0,2,0,73,0,9,0,0,406,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,100,0,74,0,0,0,22,21,57,88,106,0,0,0,0,1,0,0,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,16,186,5,0,0,143,0,257,0,0,0,62,20,0,0,0,0,0,0,0,0,0,65,1,0,0,0,3,0,0,0,0,11,112,14,0,0,0,0,0,0,0,0,116,0,0,64,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,33,0,0,0,0,1,38,263,0,27,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,161,45,1 +3,0,0,5,2,25,6,2,48,1,11,0,0,0,10,1,32,0,7,5,0,4,0,1,0,0,0,0,4,0,7,0,0,2,10,0,27,6,0,0,58,0,0,0,1,0,0,3,0,0,0,0,6,123,0,0,0,0,0,1,2,0,0,0,0,13,0,0,1123,25,236,0,11,0,0,0,0,0,16,6,0,0,0,0,1,7,209,0,2,10,2,0,1,13,0,135,15,6,0,0,2,2,120,0,8,0,0,344,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,157,0,98,0,0,0,12,11,55,285,164,0,0,0,0,1,0,0,0,0,0,0,0,0,579,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,13,216,7,0,0,230,0,274,0,0,0,96,10,0,0,0,0,0,0,0,0,0,115,1,0,0,0,10,0,0,0,0,3,111,59,0,0,30,0,0,0,0,0,106,0,0,292,0,0,1,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,16,0,0,0,8,17,37,261,0,11,0,0,0,0,0,0,89,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,1,0,4,1,2,284,39,1 +3,0,0,7,0,19,4,0,14,5,7,0,0,0,16,1,15,0,7,1,0,0,0,1,0,1,0,0,3,0,4,0,0,0,7,0,19,6,0,0,53,0,2,0,1,0,0,2,0,0,0,0,4,48,0,0,0,0,0,1,0,0,0,0,0,14,0,0,1105,19,66,0,8,0,0,0,0,0,7,0,0,0,0,0,1,5,497,0,0,7,0,0,0,0,0,28,0,2,0,0,2,0,56,0,10,0,0,271,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,60,0,42,0,0,0,8,9,45,30,68,0,0,0,0,1,0,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,29,123,9,0,0,114,0,202,0,0,0,45,9,0,0,0,0,0,0,0,0,0,64,1,0,0,0,2,0,0,0,0,5,109,8,0,0,0,0,0,0,0,0,225,0,0,748,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,11,0,0,0,2,1,26,57,0,8,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,283,65,1 +8,0,0,0,0,18,4,0,4,3,1,0,0,0,5,0,15,0,7,2,0,0,0,1,0,0,0,0,1,0,2,0,0,0,7,0,18,6,0,0,41,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,3,0,0,167,18,32,0,3,0,0,0,0,0,0,0,0,0,0,0,2,2,6,0,0,7,0,0,0,0,0,12,0,0,0,0,2,0,31,0,3,0,0,205,0,0,0,0,6,0,2,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,23,0,31,0,0,0,2,4,40,11,30,0,0,0,0,1,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,8,10,66,0,0,0,76,0,147,0,0,0,37,10,0,0,0,0,0,0,0,0,0,36,0,0,0,0,3,0,0,0,0,2,100,15,0,0,0,0,0,0,0,0,42,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,3,0,0,0,0,1,25,35,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,40,1 +7,0,0,4,9,34,4,35,103,18,14,0,0,0,30,0,247,0,7,22,0,10,6,1,0,0,9,0,2,0,2,1,0,9,21,0,43,103,0,0,108,0,0,0,1,0,0,7,0,0,0,0,2,272,0,0,0,0,0,1,0,0,0,0,0,29,0,0,3489,34,1066,0,5,0,0,0,1,0,33,27,0,0,0,1,2,11,433,0,35,21,9,0,0,0,0,48,0,13,0,0,2,9,187,0,22,0,0,663,0,0,0,0,5,1,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,2,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,6,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,21,0,1,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,48,0,0,0,0,0,0,382,0,129,0,0,0,4,20,80,51,430,0,0,0,0,1,0,0,0,0,2,0,0,0,1153,0,0,0,0,1,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,13,35,475,13,0,0,628,0,834,0,0,0,368,21,0,0,0,0,0,0,0,0,0,405,1,0,0,0,39,0,0,0,0,3,144,168,0,0,0,0,0,0,0,0,524,0,0,646,0,0,1,0,0,0,0,0,17,0,0,0,1,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,5,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,18,0,0,0,0,57,64,844,0,14,0,0,0,0,0,0,273,9,0,0,0,0,0,0,0,0,0,0,0,9,0,1,18,0,0,0,0,0,0,0,0,0,0,0,17,0,6,876,75,1 +7,0,0,6,0,16,462,0,859,0,128,0,0,0,4,0,21,0,6,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,5,0,16,398,0,0,1584,0,0,0,1,0,0,2,0,0,0,0,0,126,0,0,0,0,0,1,0,0,0,1,0,7,0,0,2335,16,1484,0,2,0,0,0,0,0,12,0,0,0,0,0,1,5,281,0,0,5,0,0,2,850,0,6795,615,4,0,0,2,0,3912,0,1,0,0,380,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,2,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,215,0,62,0,0,0,0,3,37,3437,213,0,0,0,0,1,0,0,0,0,0,0,0,0,2785,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,116,6,0,0,613,0,470,0,0,0,549,18,0,0,0,0,0,0,0,0,0,1480,1,0,0,0,1,0,0,0,0,1,98,1648,0,0,1947,0,0,0,0,0,513,0,0,365,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,1,0,0,0,0,1,21,127,0,2,0,0,0,0,0,0,2732,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,369,82,1 +1,0,0,2,0,10,2,0,21,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,71,10,43,0,1,0,0,0,0,0,3,0,0,0,0,1,1,4,24,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,20,0,0,0,0,70,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,26,0,0,0,0,3,24,5,41,0,0,0,0,1,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,91,0,89,0,0,0,33,0,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,93,13,0,0,0,0,0,0,0,0,27,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,91,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,3,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,60,0,0,0,0,0,1,0,0,0,0,0,2,0,0,426,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,53,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,435,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,64,0,56,0,0,0,4,10,32,174,73,0,0,0,0,1,0,0,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,109,3,0,0,114,0,192,0,0,0,40,10,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,59,0,0,58,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,93,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,109,22,1 +7,0,0,4,4,43,113,4,167,23,11,0,4,0,39,0,218,0,14,2,0,0,0,1,0,0,0,0,10,0,19,0,0,4,29,0,47,289,0,0,182,0,0,0,1,0,0,7,1,0,0,0,18,289,0,0,0,0,0,1,0,0,0,0,0,32,0,0,2831,43,437,0,29,0,0,0,0,0,41,0,0,0,0,1,2,11,195,0,4,29,4,0,8,0,0,249,0,16,0,0,18,4,173,0,33,0,0,1755,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,222,0,182,0,0,0,36,34,85,431,248,0,0,0,0,1,0,0,0,0,5,0,0,0,1595,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,452,112,943,8,0,0,997,0,1565,0,4,0,421,31,0,0,0,0,0,0,0,0,0,566,1,0,4,0,3,0,0,0,0,17,186,158,0,0,0,0,6,0,0,0,529,0,0,167,0,0,1,0,0,0,0,0,20,0,0,0,1,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,20,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,41,1,1,1,0,46,0,0,0,0,33,76,1046,0,29,0,0,0,0,0,0,211,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,23,0,0,0,0,0,0,0,0,0,0,0,4,0,5,484,200,1 +63,0,0,23,3,107,131,3,279,27,98,0,1,6,101,1,2212,0,13,4,0,0,0,10,0,12,15,0,28,0,8,2,0,3,51,2098,110,213,0,0,601,0,0,0,2,0,0,3,0,0,0,0,11,470,0,0,0,0,0,1,0,0,0,0,0,66,0,0,284494,107,2781,0,35,0,0,0,0,0,38,0,0,0,0,0,13,44,100799,0,3,51,3,0,14,121,0,1420,200,4,0,0,10,3,3097,0,49,17,0,84607,0,0,0,0,68,0,5,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,5,0,38,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,4,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,4,0,0,0,0,42,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,94,12,12,12,0,0,0,53621,0,171,0,0,0,22,53,415,158820,53634,0,0,0,0,1,0,4,0,0,0,0,0,0,5955,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,416,336,1120,31,0,0,1049,0,1695,0,3,0,456,27,0,0,0,0,0,0,0,0,0,2842,1,0,0,0,14,0,0,0,0,7,258,319,0,0,383,0,2,0,0,0,51281,1,0,2344,11,0,1,1,0,0,0,0,8,0,1,0,5,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,11,27,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,125,1,1,1,0,103,0,0,0,0,25,161,646,0,51,14,0,0,0,0,0,496,4,0,0,0,0,0,0,0,0,0,0,0,5,0,1,53,0,0,0,0,0,0,0,0,0,0,0,3,0,4,47178,599,1 +5,0,0,10,0,42,8,0,48,0,6,0,0,6,5,0,787,0,6,4,0,0,0,9,0,11,0,0,9,0,3,0,0,0,3,2313,42,36,0,0,47,0,0,0,1,0,0,1,0,0,0,0,3,261,0,0,0,0,0,1,0,0,0,0,0,2,0,0,11078,42,862,0,8,0,0,0,0,0,13,0,0,0,0,0,12,33,2057,0,0,3,0,0,0,0,0,222,20,1,0,0,2,0,853,0,0,10,0,1736,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,42,12,12,12,0,0,0,779,0,48,0,0,0,6,9,293,841,759,0,0,0,0,1,0,3,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,89,27,243,15,0,0,250,0,336,0,0,0,83,7,0,0,0,0,0,0,0,0,0,866,1,0,0,0,13,0,0,0,0,3,133,11,0,0,15,0,0,0,0,0,2294,1,0,29,9,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,15,0,0,0,4,1,45,48,0,9,14,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,662,86,1 +8,0,0,4,0,47,6,0,37,8,3,0,0,2,13,0,619,0,6,3,0,0,0,6,0,10,0,0,8,0,5,0,0,0,9,898,47,6,0,0,64,0,0,0,1,0,0,4,0,0,0,0,5,198,0,0,0,0,0,1,0,0,0,0,0,14,0,0,19495,47,714,0,10,0,0,0,0,0,25,0,0,0,0,0,8,21,3419,0,0,9,0,0,0,0,0,112,5,9,0,0,2,0,665,0,11,0,0,1692,0,0,0,0,16,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,10,0,6,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,32,12,12,12,0,0,0,2704,0,107,0,0,0,8,11,248,368,2677,0,0,0,0,1,0,3,0,0,0,0,0,0,522,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,258,4,0,0,269,0,327,0,0,0,98,12,0,0,0,0,0,0,0,0,0,686,1,0,0,0,9,0,0,0,0,5,130,27,0,0,0,0,0,0,0,0,1731,1,0,145,6,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,13,0,0,0,0,1,56,155,0,11,12,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,609,43,1 +2,0,0,10,1,42,47,4,130,0,26,0,0,2,4,1,27,0,7,6,0,1,0,5,0,8,0,0,7,0,3,0,0,1,6,0,43,6,0,0,149,0,0,0,1,0,0,13,1,0,0,0,3,236,0,0,0,0,0,1,0,0,0,4,0,15,0,0,5722,42,349,0,8,0,0,0,0,0,77,3,0,0,0,3,7,33,1103,0,4,6,1,0,1,65,0,613,55,18,0,0,2,1,392,0,1,0,0,907,0,0,0,0,4,0,3,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,734,0,194,0,0,0,4,6,212,428,718,0,0,0,0,1,0,5,0,0,0,0,0,0,1784,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,2,0,32,30,280,12,0,0,421,0,523,0,0,0,223,27,0,0,0,0,0,0,0,0,0,244,1,0,3,0,12,0,0,0,0,2,128,306,0,0,104,0,0,0,0,0,316,0,0,1273,3,0,1,1,0,0,0,0,24,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,9,0,0,0,0,9,49,391,0,9,9,0,0,0,0,0,330,2,0,0,0,0,1,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,7,844,279,1 +5,0,0,6,0,50,10,0,46,1,11,0,0,2,10,1,24,0,7,4,0,0,0,5,0,9,3,0,13,0,18,0,0,0,19,0,50,6,0,0,107,0,0,0,1,0,0,9,0,0,0,0,18,233,0,0,0,0,0,1,0,0,0,0,0,16,0,0,3183,50,201,0,30,0,0,0,0,0,46,0,0,0,0,0,8,23,535,0,0,19,0,0,1,23,0,339,20,14,0,0,2,0,211,0,8,0,0,946,0,0,0,0,3,0,7,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,10,10,10,0,0,0,412,0,176,0,0,0,34,52,230,311,424,0,0,0,0,1,0,7,0,0,0,0,0,0,1100,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,0,0,1,0,32,20,239,6,0,0,339,0,399,0,0,0,217,18,0,0,0,0,0,0,4,0,0,111,1,0,0,0,9,0,0,0,0,14,136,174,0,0,29,0,0,0,0,0,264,0,0,480,3,0,1,1,0,0,0,0,21,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,65,1,1,1,0,84,0,0,0,8,1,69,575,0,34,9,0,0,0,0,0,175,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,9,614,77,1 +18,0,0,9,0,55,20,0,144,5,64,0,0,14,17,0,660,0,7,3,0,0,0,8,0,11,18,0,18,0,10,0,0,0,17,2094,55,57,0,0,207,0,0,0,1,0,0,1,0,0,0,0,10,256,0,0,0,0,0,1,0,0,0,0,0,21,0,0,11925,55,954,0,24,0,0,0,0,0,26,0,0,0,0,0,10,65,2113,0,0,17,0,0,8,69,0,1187,165,2,0,0,2,0,1222,0,10,107,0,2687,0,0,0,0,11,5,1,0,0,0,0,1,0,0,0,6,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,2,0,5,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,48,12,12,12,0,0,0,569,0,62,0,0,0,24,45,393,1571,540,0,0,0,0,1,0,4,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,250,35,292,9,0,0,370,0,510,0,0,0,206,36,0,0,0,0,0,0,0,0,0,926,1,0,0,0,11,0,0,0,0,10,143,240,0,0,433,0,0,0,0,0,2337,1,0,128,15,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,15,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,48,0,0,0,2,1,72,323,0,43,14,0,0,0,0,0,287,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,36,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1067,162,1 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,16,0,0,0,0,3,22,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,0,0,0,35,0,40,0,0,0,5,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,1 +8,0,0,4,0,47,6,0,36,8,3,0,0,2,13,0,579,0,6,3,0,0,0,6,0,10,0,0,8,0,5,0,0,0,9,898,47,6,0,0,64,0,0,0,1,0,0,4,0,0,0,0,5,193,0,0,0,0,0,1,0,0,0,0,0,14,0,0,20877,47,673,0,10,0,0,0,0,0,25,0,0,0,0,0,8,21,3644,0,0,9,0,0,0,0,0,112,5,9,0,0,2,0,625,0,11,0,0,1704,0,0,0,0,16,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,10,0,6,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,12,12,12,0,0,0,2935,0,106,0,0,0,8,11,248,367,2908,0,0,0,0,1,0,3,0,0,0,0,0,0,525,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,252,4,0,0,269,0,353,0,0,0,98,27,0,0,0,0,0,0,0,0,0,645,1,0,0,0,9,0,0,0,0,5,130,27,0,0,0,0,0,0,0,0,1650,1,0,151,6,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,13,0,0,0,0,1,56,153,0,11,12,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,636,44,1 +5,0,0,5,0,25,3,0,36,0,14,0,0,0,4,1,16,0,7,2,0,0,0,1,0,0,0,0,5,0,4,0,0,0,10,0,25,6,0,0,39,0,0,0,1,0,0,3,1,0,0,0,3,80,0,0,0,0,0,1,0,0,0,0,0,5,0,0,764,25,95,0,9,0,0,0,0,0,16,0,0,0,0,0,2,6,100,0,0,10,0,0,0,18,0,176,45,8,0,0,2,0,101,0,2,0,0,313,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,133,0,79,0,0,0,6,7,57,94,117,0,0,0,0,1,0,0,0,0,0,0,0,0,381,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,7,137,5,0,0,160,0,238,0,0,0,75,50,0,0,0,0,0,0,0,0,0,81,1,0,2,0,3,0,0,0,0,2,111,60,0,0,97,0,0,0,0,0,66,0,0,127,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,11,0,0,0,0,1,35,164,0,9,0,0,0,0,0,0,73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,201,66,1 +36,0,0,5,0,38,11,0,68,1,17,0,0,4,5,0,40,0,7,1,0,0,0,13,0,0,9,0,3,0,4,0,0,0,23,0,38,6,0,0,136,0,0,0,1,0,0,21,0,0,0,0,3,795,0,0,0,0,0,1,0,0,0,0,0,15,0,0,13176,38,370,0,7,0,0,0,0,5,106,0,0,0,0,1,13,37,1736,0,0,23,0,0,1,38,0,542,30,39,0,0,2,0,361,0,2,0,0,1381,0,0,0,0,19,0,1,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,32,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,9,23,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1408,0,276,0,0,0,6,48,148,517,1376,0,0,0,0,1,0,0,0,0,0,0,0,0,3408,0,0,0,0,0,0,0,0,0,0,0,0,22,0,25,0,0,0,0,0,0,60,5,477,5,0,0,434,0,739,0,0,0,350,22,0,0,0,0,0,0,23,0,0,152,1,0,0,0,14,0,0,0,0,4,122,651,0,0,39,0,0,0,0,0,677,0,0,2556,0,0,1,0,0,0,0,0,47,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,78,0,0,0,0,1,61,911,0,16,0,0,0,0,0,0,227,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1405,123,1 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,0,0,0,163,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,8,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,92,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,22,0,0,0,0,3,24,7,31,0,0,0,0,1,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,41,0,0,0,85,0,166,0,0,0,55,3,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,93,49,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,125,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,8,1 +4,0,0,6,0,24,3,0,15,2,4,0,0,0,9,1,15,0,7,1,0,0,0,1,0,0,0,0,5,0,9,0,0,0,11,0,24,6,0,0,35,0,0,0,1,0,0,1,0,0,0,0,8,63,0,0,0,0,0,1,0,0,0,0,0,9,0,0,465,24,60,0,14,0,0,0,0,0,5,0,0,0,0,0,1,3,43,0,0,11,0,0,0,0,0,28,0,2,0,0,2,0,45,0,7,0,0,307,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,59,0,46,0,0,0,16,14,50,41,68,0,0,0,0,1,0,0,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,14,141,6,0,0,175,0,244,0,0,0,102,19,0,0,0,0,0,0,0,0,0,54,1,0,0,0,2,0,0,0,0,5,110,58,0,0,0,0,0,0,0,0,47,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,21,0,0,0,8,1,35,201,0,14,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,85,24,1 +11,0,0,14,1,58,44,1,58,18,17,0,0,2,49,0,74,0,9,3,0,0,0,6,2,8,0,0,11,0,10,0,0,1,28,0,59,55,13,0,188,0,0,0,1,0,0,2,0,0,0,0,12,125,0,0,0,0,0,1,0,0,0,0,0,31,0,0,40000,58,235,0,19,0,0,0,0,0,25,0,0,0,0,0,8,16,8152,0,1,28,1,0,2,8,0,238,20,3,0,0,4,1,206,0,27,0,0,1758,0,0,0,0,20,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,4942,0,102,0,0,0,22,33,236,690,4951,0,0,0,0,1,0,3,0,0,0,0,0,0,9883,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,136,91,420,27,0,0,430,0,627,0,1,0,187,21,0,0,0,0,0,0,0,0,0,253,1,0,0,0,11,0,0,0,0,9,166,58,0,0,29,0,0,0,1,0,1964,0,0,11268,3,0,1,1,0,0,0,0,4,0,1,0,6,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,12,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,63,1,1,1,0,29,0,0,0,0,9,87,125,0,20,9,0,0,0,0,0,180,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,22,0,0,0,0,0,0,0,0,0,0,0,1,0,3,3517,1679,1 +6,0,0,7,0,23,3,0,17,6,7,0,0,0,20,1,16,0,7,1,0,0,0,1,0,0,0,0,2,0,5,0,0,0,12,0,23,6,0,0,72,0,0,0,1,0,0,7,0,0,0,0,4,103,0,0,0,0,0,1,0,0,0,0,0,18,0,0,3485,23,120,0,7,0,0,0,0,0,33,0,0,0,0,0,1,11,658,0,0,12,0,0,0,0,0,36,0,11,0,0,2,0,65,0,14,0,0,1466,0,0,0,0,13,2,0,0,0,0,0,1,0,0,0,6,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,467,0,110,0,0,0,8,11,46,1534,474,0,0,0,0,1,0,0,0,0,0,0,0,0,744,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,10,33,254,9,0,0,222,0,475,0,0,0,153,21,0,0,0,0,0,0,0,0,0,71,1,0,0,0,2,0,0,0,0,5,127,72,0,0,0,0,0,0,0,0,874,0,0,353,0,0,1,0,0,0,0,0,16,0,0,0,2,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,10,0,0,0,0,1,35,316,0,7,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,8,486,915,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,19,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,48,0,54,0,0,0,18,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,17,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,40,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,152,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2153,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,50,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,841,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,64,0,57,0,0,0,4,10,32,174,73,0,0,0,0,1,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,126,3,0,0,114,0,617,0,0,0,40,15,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,60,0,0,62,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,137,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,109,26,1 +3,0,0,7,0,39,21,0,58,0,21,0,0,7,5,0,139,0,6,3,0,0,0,7,0,11,0,0,10,0,1,0,0,0,3,215,39,6,0,0,68,0,0,0,1,0,0,1,0,0,0,0,2,223,0,0,0,0,0,1,0,0,0,0,0,6,0,0,78656,39,278,0,9,0,0,0,0,0,30,0,0,0,0,0,9,44,11443,0,0,3,0,0,1,15,0,388,55,2,0,0,2,0,283,0,1,23,0,15664,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,12,12,0,0,0,8063,0,47,0,0,0,5,8,314,3068,8045,0,0,0,0,1,0,3,0,0,0,0,0,0,755,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,106,17,254,7,0,0,282,0,311,0,0,0,132,5,0,0,0,0,0,0,0,0,0,257,1,0,0,0,10,0,0,0,0,1,156,50,0,0,130,0,0,0,0,0,2542,1,0,1672,14,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,14,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,19,0,0,0,0,1,42,149,0,10,12,0,0,0,0,0,97,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2314,104,1 +9,0,0,10,0,55,8,0,47,4,10,0,0,6,14,1,609,0,7,2,0,0,0,9,0,11,0,0,13,0,8,0,0,0,17,945,55,6,0,0,88,0,0,0,1,0,0,10,0,0,0,0,8,233,0,0,0,0,0,1,0,0,0,14,0,12,0,0,28260,55,761,0,17,0,0,0,0,0,40,0,0,0,0,3,10,39,4620,0,0,17,0,0,0,0,0,252,20,15,0,0,2,0,706,0,6,2,0,2207,0,0,0,0,24,2,2,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,34,12,12,12,0,0,0,3699,0,127,0,0,0,15,17,306,448,3673,0,0,0,0,1,0,4,0,0,0,0,0,0,1572,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,1,0,84,43,303,12,0,0,352,0,426,0,0,0,187,27,0,0,0,0,0,0,0,0,0,702,1,0,0,0,11,0,0,0,0,8,148,70,0,0,11,0,0,0,0,0,2133,1,0,1247,9,0,1,1,1,0,0,0,20,0,0,0,5,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,66,1,1,1,0,26,0,0,0,10,1,72,222,0,18,14,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1069,126,1 +2,0,0,6,0,24,3,0,22,3,4,0,0,0,12,1,15,0,7,1,0,0,0,1,0,0,0,0,6,0,9,0,0,0,12,0,24,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,8,61,0,0,0,0,0,1,0,0,0,0,0,11,0,0,355,24,71,0,15,0,0,0,0,0,3,0,0,0,0,2,1,4,43,0,0,12,0,0,0,0,0,28,0,3,0,0,2,0,59,0,9,0,0,270,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,50,0,45,0,0,0,16,14,50,30,56,0,0,0,0,1,0,0,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,14,139,7,0,0,170,0,204,0,0,0,101,10,0,0,0,0,0,0,0,0,0,64,1,0,0,0,2,0,0,0,0,5,111,46,0,0,0,0,0,0,0,0,42,0,0,30,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,22,0,0,0,8,1,36,213,0,15,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,17,1 +6947,0,0,5,0,43,6,0,55,3,3,0,0,2,9,0,1242,0,6,3,0,0,0,6,0,10,0,0,100,0,1,0,0,0,6,71,43,40,0,0,38,0,0,0,1,0,0,4,0,0,0,0,1,210,0,0,0,0,0,1,0,0,0,0,0,9,0,0,90683,43,1427,0,98,0,0,0,0,0,20,0,0,0,0,0,8,21,3616,0,0,6,0,0,0,0,0,186,5,7,0,0,2,0,1381,0,5,0,0,148857,0,0,0,0,20837,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,6946,0,0,0,0,0,13888,0,6946,0,0,0,0,0,0,6958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6947,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,66,12,12,12,0,0,0,2816,0,64,0,0,0,0,3,242,38970,2800,0,0,0,0,1,0,3,0,0,0,0,0,0,115156,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,36,18,924,5,0,0,238,0,480,0,0,0,84,324,0,0,0,0,0,0,0,0,0,1323,1,0,0,0,9,0,0,0,0,1,126,27,0,0,0,0,0,0,0,0,3185,1,0,84,6,0,1,1,0,0,0,0,8,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,97,0,0,0,0,1,49,152,0,99,12,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,677,276,1 +6,0,0,3,0,19,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,19,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,106,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1076,19,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,42,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,295,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,60,0,60,0,0,0,4,10,40,174,69,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,121,3,0,0,120,0,359,0,0,0,40,16,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,103,18,0,0,0,0,0,0,0,0,52,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,3,0,0,0,0,1,23,129,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,108,24,1 +2,0,0,3,0,17,2,0,7,0,3,0,0,0,4,1,52,0,7,2,0,0,0,0,0,0,6,0,2,0,4,0,0,0,8,0,17,6,0,0,17,0,0,0,1,0,0,1,0,0,0,0,3,39,0,0,0,0,0,1,0,0,0,0,0,4,0,0,129,17,80,0,6,0,0,0,0,0,2,0,0,0,0,0,1,3,5,0,0,8,0,0,0,0,0,12,0,0,0,0,2,0,62,0,2,0,0,226,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,26,0,43,0,0,0,6,12,42,15,33,0,0,0,0,1,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,5,69,3,0,0,68,0,145,0,0,0,35,5,0,0,0,0,0,0,0,0,0,76,1,0,0,0,2,0,0,0,0,2,99,10,0,0,0,0,0,0,0,0,278,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,6,0,0,0,0,11,25,29,0,12,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,15,1 +6050,0,0,13,0,82,47,0,89,5,59,0,0,8,32,0,1726,0,7,4,0,0,0,8,0,13,6,0,124,0,5,1,0,0,35,5379,82,6,0,0,189,0,0,0,1,0,0,2,0,0,0,0,9,589,0,0,0,0,0,1,0,0,0,0,0,22,0,0,161197,82,2207,0,129,0,0,0,0,0,91,0,0,0,0,0,11,196,9743,0,0,35,0,0,2,16,0,737,60,7,0,0,2,0,2136,0,16,155,0,129036,0,0,0,0,18197,3,1,0,1,0,0,1,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,6060,0,0,0,0,0,12138,0,6039,0,0,0,0,0,0,6077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6083,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,87,12,12,12,0,0,0,4510,0,105,0,0,0,28,31,1136,35483,4451,0,0,0,0,1,0,3,0,0,0,0,0,0,106825,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,130,94,1127,15,0,0,542,0,498,0,0,0,347,368,0,0,0,0,0,0,0,0,0,1968,1,0,0,0,12,0,0,0,0,4,251,62,0,0,294,0,0,0,0,0,6507,1,0,4318,40,0,1,1,0,0,0,0,6,0,1,0,3,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,40,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,175,0,0,0,0,1,117,287,0,137,12,0,0,0,0,0,209,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3221,317,1 +3,0,0,10,0,41,8,0,46,0,6,0,0,6,5,0,691,0,6,4,0,0,0,9,0,11,0,0,9,0,3,0,0,0,3,2313,41,36,0,0,47,0,0,0,1,0,0,1,0,0,0,0,3,263,0,0,0,0,0,1,0,0,0,0,0,2,0,0,11098,41,764,0,8,0,0,0,0,0,13,0,0,0,0,0,12,33,2032,0,0,3,0,0,0,0,0,222,20,1,0,0,2,0,757,0,0,10,0,1761,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,12,12,12,0,0,0,840,0,48,0,0,0,6,9,286,839,821,0,0,0,0,1,0,3,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,89,27,240,15,0,0,248,0,338,0,0,0,82,6,0,0,0,0,0,0,0,0,0,768,1,0,0,0,13,0,0,0,0,3,132,11,0,0,15,0,0,0,0,0,2038,1,0,30,9,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,15,0,0,0,4,1,44,48,0,9,14,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,616,86,1 +2,0,0,10,0,52,83,0,57,4,73,0,0,7,16,1,993,0,7,1,0,0,0,9,0,11,0,0,49,0,15,0,0,0,8,5005,52,6,0,0,90,0,6,0,1,0,0,6,0,0,0,0,15,527,0,0,0,0,0,1,0,0,0,0,0,13,0,0,54006,52,1464,0,60,0,0,0,0,0,150,0,0,0,0,0,9,232,10940,0,0,8,0,0,0,0,0,759,25,8,0,0,2,0,1217,0,8,251,0,7763,0,0,0,0,32,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,16,0,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,50,12,12,12,0,0,0,2518,0,102,0,0,0,56,59,943,4243,2465,0,0,0,0,1,0,4,0,0,0,0,0,0,1270,0,0,0,0,0,0,0,0,0,0,0,0,6,1,16,0,0,0,0,1,0,114,41,334,12,0,0,511,0,488,0,0,0,312,12,0,0,0,0,0,0,8,0,0,1237,1,0,0,0,10,0,0,0,0,16,166,86,0,0,419,0,0,0,0,0,7143,1,0,1469,62,0,1,1,1,0,0,0,13,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,62,375,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,0,65,1,1,1,0,157,0,0,0,16,1,60,662,0,61,14,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4305,125,1 +4,0,0,5,0,31,4,0,17,6,4,0,0,0,16,1,15,0,7,1,0,0,0,2,0,0,0,0,5,0,12,0,0,0,18,0,31,6,0,0,65,0,0,0,1,0,0,2,0,0,0,0,11,72,0,0,0,0,0,1,0,0,0,8,0,17,0,0,652,31,77,0,17,0,0,0,0,0,10,0,0,0,0,0,2,5,61,0,0,18,0,0,0,0,0,43,0,4,0,0,2,0,66,0,14,0,0,923,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,74,0,57,0,0,0,22,20,58,52,80,0,0,0,0,1,0,0,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,21,183,5,0,0,200,0,258,0,0,0,121,19,0,0,0,0,0,0,0,0,0,64,1,0,0,0,3,0,0,0,0,8,121,52,0,0,0,0,0,0,0,0,57,0,0,73,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,27,0,0,0,8,1,49,237,0,17,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,116,49,1 +2,0,0,4,2,57,12,8,59,4,21,0,0,6,27,1,840,0,8,8,0,2,1,8,0,11,0,0,17,0,20,0,0,2,11,2216,59,6,28,0,178,0,0,0,1,0,0,3,1,0,0,0,20,300,0,0,0,0,0,1,0,0,0,0,0,8,0,0,15108,57,1142,0,33,0,0,0,0,0,30,6,0,0,0,0,10,36,2768,0,8,11,2,0,0,0,0,301,20,18,0,0,2,2,1004,0,6,14,0,2234,0,0,0,0,33,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,42,12,12,12,0,0,0,1235,0,114,0,0,0,40,43,326,954,1201,0,0,0,0,1,0,8,0,0,0,0,0,0,1283,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,108,125,393,6,0,0,403,0,457,0,0,0,176,54,0,0,0,0,0,0,0,0,0,974,1,0,15,0,19,0,0,0,0,20,150,51,0,0,17,0,0,0,0,0,2694,1,0,181,9,0,1,1,0,0,0,0,28,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,9,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,57,0,0,0,0,17,70,323,0,34,14,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,8,0,0,0,0,0,0,0,0,0,0,0,4,0,0,951,70,1 +6,0,0,6,0,48,9,0,43,8,5,0,0,2,17,1,501,0,7,3,0,0,0,7,0,10,0,0,8,0,13,0,0,0,15,1058,48,8,0,0,80,0,0,0,1,0,0,3,0,0,0,0,13,176,0,0,0,0,0,1,0,0,0,11,0,19,0,0,6265,48,608,0,18,0,0,0,0,0,19,0,0,0,0,5,9,21,1143,0,0,15,0,0,0,0,0,128,5,6,0,0,2,0,573,0,15,0,0,1672,0,0,0,0,7,0,1,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,543,0,97,0,0,0,24,23,254,351,524,0,0,0,0,1,0,5,0,0,0,0,0,0,418,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,31,317,6,0,0,274,0,314,0,0,0,117,14,0,0,0,0,0,0,0,0,0,585,1,0,0,0,10,0,0,0,0,9,139,19,0,0,0,0,0,0,0,0,1419,1,0,92,5,0,1,1,0,0,0,0,6,0,0,0,1,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,5,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,29,0,0,0,8,1,63,117,0,19,12,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,520,72,1 +19,0,0,11,5,44,131,5,195,28,40,0,1,0,58,0,270,0,17,1,0,0,0,2,0,3,3,0,12,0,3,1,0,5,34,0,49,304,0,0,266,0,0,0,1,0,0,1,0,0,0,0,7,140,0,0,0,0,0,1,0,0,0,21,0,49,0,0,904,44,545,0,19,0,0,0,0,0,9,0,0,0,0,0,2,4,154,0,5,34,5,0,12,48,0,640,90,2,0,0,14,5,431,0,44,0,0,782,0,0,0,0,23,0,6,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,0,10,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,71,0,0,0,0,0,0,130,0,99,0,0,0,11,10,95,419,155,0,0,0,0,1,0,0,0,0,1,0,0,0,958,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,537,137,937,19,0,0,1001,0,1493,0,5,0,348,18,0,0,0,0,0,0,0,0,0,712,1,0,0,0,3,0,0,0,0,1,220,110,0,0,174,0,10,0,0,0,621,0,0,98,0,0,1,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,42,1,1,1,0,21,0,0,0,0,41,83,141,0,22,0,0,0,0,0,0,357,6,0,0,0,0,0,0,0,0,0,0,0,5,0,1,40,0,0,0,0,0,0,0,0,0,0,0,5,0,2,349,223,1 +4,0,0,5,0,31,4,0,17,6,4,0,0,0,16,1,15,0,7,1,0,0,0,2,0,0,0,0,5,0,12,0,0,0,18,0,31,6,0,0,65,0,0,0,1,0,0,2,0,0,0,0,11,69,0,0,0,0,0,1,0,0,0,8,0,17,0,0,634,31,77,0,17,0,0,0,0,0,10,0,0,0,0,0,2,5,61,0,0,18,0,0,0,0,0,43,0,4,0,0,2,0,66,0,14,0,0,898,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,73,0,57,0,0,0,22,20,58,52,79,0,0,0,0,1,0,0,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,21,178,5,0,0,201,0,269,0,0,0,122,10,0,0,0,0,0,0,0,0,0,64,1,0,0,0,3,0,0,0,0,8,121,53,0,0,0,0,0,0,0,0,58,0,0,69,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,27,0,0,0,8,1,49,240,0,17,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,116,48,1 +4629,0,0,18,4,94,109,4,179,30,86,0,1,2,114,5,1039,0,15,4,0,0,0,7,0,10,0,0,102,0,7,0,0,4,48,131,98,264,0,0,307,0,0,0,1,0,0,17,0,0,0,0,7,586,0,0,0,0,0,1,0,0,0,13,0,52,0,0,80013,94,1675,0,106,0,0,0,0,0,109,0,0,0,0,0,10,36,6206,0,4,48,4,0,9,32,0,682,65,32,0,0,12,4,1414,0,44,0,0,96308,0,0,0,0,13817,11,3,0,0,0,0,1,0,0,0,34,0,0,3,0,0,0,0,6,0,0,0,4606,0,0,0,0,0,9196,0,4603,0,0,0,0,0,0,4816,0,0,0,0,0,0,0,0,0,46,0,0,0,0,2,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,18,0,0,0,0,4611,139,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,72,12,12,12,0,0,0,4699,0,380,0,0,0,12,15,364,27292,4868,0,0,0,0,1,0,5,0,0,0,0,0,0,80839,0,0,0,0,0,0,0,0,0,0,0,0,17,1,0,0,0,0,0,1,0,455,147,1388,26,0,0,1333,0,2293,0,4,0,676,201,0,0,0,0,0,0,0,0,0,1550,2,0,0,0,11,0,0,0,0,7,287,263,0,0,119,0,1,0,0,0,3259,1,0,1003,6,0,1,3,0,0,0,0,35,0,0,0,2,0,0,0,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,6,13,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,117,1,1,1,0,111,0,0,0,0,33,146,1134,0,107,12,0,0,0,0,0,644,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,40,0,0,0,0,0,0,0,0,0,0,0,4,0,17,2396,438,1 +0,0,0,5,0,13,2,0,25,0,3,0,0,0,4,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,13,6,0,0,11,0,0,0,1,0,0,4,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,3,0,0,932,13,66,0,1,0,0,0,0,0,14,0,0,0,0,1,1,9,192,0,0,2,0,0,0,0,0,10,0,6,0,0,2,0,26,0,1,0,0,124,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,149,0,52,0,0,0,0,3,32,7,155,0,0,0,0,1,0,0,0,0,0,0,0,0,329,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,8,4,100,6,0,0,154,0,198,0,0,0,83,14,0,0,0,0,0,0,5,0,0,54,1,0,0,0,2,0,0,0,0,0,102,52,0,0,0,0,0,0,0,0,73,0,0,198,0,0,1,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,15,260,0,1,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,20,1 +10,0,0,5,0,21,2,0,19,1,3,0,0,0,5,0,16,0,6,2,0,0,0,1,0,0,0,0,3,0,1,0,0,0,6,0,21,6,0,0,25,0,0,0,1,0,0,6,0,0,0,0,0,103,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1053,21,84,0,4,0,0,0,0,0,26,0,0,0,0,0,2,10,189,0,0,6,0,0,0,0,0,23,0,9,0,0,2,0,26,0,3,0,0,303,0,0,0,0,8,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,5,0,3,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,185,0,89,0,0,0,0,3,48,28,197,0,0,0,0,1,0,0,0,0,0,0,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,10,6,123,5,0,0,155,0,269,0,0,0,72,7,0,0,0,0,0,0,0,0,0,51,1,0,0,0,3,0,0,0,0,1,107,34,0,0,0,0,0,0,0,0,254,0,0,192,0,0,1,0,0,0,0,0,15,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,3,0,0,0,0,1,27,214,0,4,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,239,100,1 +6,0,0,9,0,39,5,0,19,12,8,0,0,0,26,2,25,0,7,1,0,0,0,2,0,0,6,0,5,0,6,1,0,0,26,0,39,6,0,0,94,0,0,0,1,0,0,2,0,0,0,0,6,60,0,0,0,0,0,1,0,0,0,11,0,24,0,0,8205,39,105,0,12,0,0,0,0,0,7,0,0,0,0,0,2,6,2203,0,0,26,0,0,0,0,0,31,0,1,0,0,2,0,122,0,20,0,0,718,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,1385,0,74,0,0,0,12,19,73,935,1400,0,0,0,0,1,0,0,0,0,0,0,0,0,2676,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0,0,0,0,0,8,35,236,12,0,0,316,0,306,0,0,0,242,30,0,0,0,0,0,0,0,0,0,92,1,0,0,0,3,0,0,0,0,5,133,145,0,0,0,0,1,0,0,0,504,0,0,1778,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,19,0,0,0,0,1,65,579,0,18,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,973,555,1 +10,0,0,8,0,70,10,0,29,3,7,0,0,6,16,1,66,0,7,2,0,0,0,8,0,10,0,0,16,0,17,0,0,0,30,15548,70,6,0,0,108,0,0,0,1,0,0,5,0,0,0,0,17,495,0,0,0,0,0,1,0,0,0,20,0,15,0,0,75001,70,191,0,30,0,0,0,0,0,33,0,0,0,0,0,9,26,17857,0,0,30,0,0,0,0,0,258,20,10,0,0,2,0,165,0,9,11,0,3684,0,0,0,0,20,3,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,5,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,15622,0,127,0,0,0,33,28,362,983,15600,0,0,0,0,1,0,13,0,0,0,0,0,0,825,0,0,0,0,0,0,0,0,0,0,0,0,23,1,0,0,0,0,0,1,0,86,29,410,8,0,0,448,0,516,0,0,0,279,27,0,0,0,0,0,0,6,0,0,142,1,0,0,0,10,0,0,0,0,12,210,64,0,0,11,0,3,0,0,0,1686,1,0,293,6,0,1,1,0,0,0,0,16,0,0,0,0,0,0,0,0,0,6,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,88,1,1,1,0,48,0,0,0,12,1,100,433,0,31,12,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1348,89,1 +2,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,0,0,0,106,9,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,37,0,0,0,0,3,23,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,57,0,0,0,55,0,60,0,0,0,25,3,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,96,16,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,38,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,8,1 +4,0,0,0,0,27,5,0,19,7,1,0,0,0,9,0,23,0,6,2,0,0,0,2,0,0,0,0,1,0,2,0,0,0,12,0,27,6,0,0,43,0,0,0,1,0,0,1,1,0,0,0,1,82,0,0,0,0,0,1,0,0,0,16,0,7,0,0,29138,27,88,0,3,0,0,0,0,0,22,0,0,0,0,0,3,5,13502,0,0,12,0,0,0,0,0,15,0,8,0,0,2,0,48,0,6,0,0,8376,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,8,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10112,0,63,0,0,0,2,5,57,444,10112,0,0,0,0,1,0,0,0,0,0,0,0,0,3539,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,11,268,0,0,0,160,0,206,0,0,0,73,29,0,0,0,0,0,0,0,0,0,63,1,0,9,0,4,0,0,0,0,2,113,12,0,0,0,0,0,0,0,0,2353,0,0,401,0,0,1,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,3,0,0,0,0,1,39,64,0,3,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2504,29,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,102,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1167,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,44,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,305,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,57,0,0,0,4,10,36,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,117,3,0,0,117,0,384,0,0,0,40,15,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,54,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,113,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,103,24,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,64,0,0,0,0,0,1,0,0,0,0,0,2,0,0,369,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,47,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,231,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,60,0,58,0,0,0,4,10,32,174,69,0,0,0,0,1,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,107,3,0,0,114,0,188,0,0,0,40,5,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,55,0,0,42,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,78,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,107,21,1 +5,0,0,14,0,118,19,0,80,0,12,0,0,0,43,0,20,0,6,1,0,0,0,1,0,0,3,0,3,0,5,0,0,0,95,0,118,6,0,0,378,0,0,0,1,0,0,10,0,0,0,0,4,166,0,0,0,0,0,1,0,0,0,0,0,37,0,0,69570,118,187,0,8,0,0,0,0,0,43,0,0,0,0,2,1,15,465,0,0,95,0,0,0,0,0,26,0,17,0,0,2,0,145,0,1,0,0,18966,0,0,0,0,7,0,12,0,0,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,3,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,22,0,0,0,0,0,0,361,0,254,0,0,0,8,9,142,1630,368,0,0,0,0,1,0,0,0,0,0,0,0,0,1353,0,0,0,0,0,0,0,0,0,0,0,0,10,0,2,0,0,0,0,0,0,8,182,566,16,0,0,708,0,635,0,0,0,598,20,0,0,0,0,0,0,0,0,0,180,1,0,0,0,2,0,0,0,0,1,213,267,0,0,0,0,0,0,0,0,227,0,0,313,0,0,1,0,0,0,0,0,19,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,115,1,1,1,0,15,0,0,0,0,1,213,568,0,11,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,643,171,1 +91,0,0,5,0,129,48,0,215,58,44,0,0,0,65,0,25,0,6,1,0,0,0,2,0,1,0,0,64,0,350,0,0,0,116,0,129,6,0,0,586,0,0,0,1,0,0,23,0,0,0,0,350,280,0,0,0,0,0,1,0,0,0,108,0,66,0,0,44678,129,980,0,415,0,0,0,0,0,102,0,0,0,0,0,2,29,3985,0,0,116,0,0,0,193,0,2954,15,35,1,0,2,0,1546,0,59,0,0,3819,0,0,0,0,62,0,8,0,0,0,0,1,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,8,0,0,2,7,0,0,0,55,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,66,1,1,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,36,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,3954,0,379,0,0,0,700,703,205,2382,4198,0,0,0,0,1,0,0,0,0,0,0,0,0,14067,0,0,0,0,0,0,0,0,0,0,0,0,23,0,3,0,0,0,0,0,0,8,70,816,5,0,0,808,0,713,0,0,0,732,100,0,0,0,0,0,0,4,0,0,403,1,0,0,0,3,0,0,0,0,351,230,835,0,0,43,0,0,0,0,0,3477,0,0,13844,0,0,1,0,1,0,0,0,44,0,0,0,3,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,127,1,1,1,0,764,0,0,0,688,1,245,798,0,415,0,0,0,0,0,0,618,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,0,0,0,0,0,0,0,0,0,0,0,0,0,19,4110,404,1 +11,0,0,13,0,34,4,0,45,3,9,0,0,0,20,0,26,0,14,1,0,0,0,3,0,0,0,0,7,0,15,0,0,0,20,0,34,6,329,0,83,0,0,0,1,0,0,3,0,0,0,0,9,111,0,0,0,0,0,1,0,0,0,10,0,15,0,0,739,34,120,0,22,0,0,0,0,0,11,0,0,0,0,0,3,9,77,0,0,20,0,0,1,8,0,137,15,4,0,0,2,0,117,0,10,0,0,501,0,0,0,0,39,1,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,6,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,4,0,0,0,0,0,0,91,0,112,0,0,0,18,27,88,853,102,0,0,0,0,1,0,0,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,63,19,269,27,0,0,281,0,381,0,0,0,165,2115,0,0,0,0,0,0,0,0,0,118,1,0,0,0,4,0,0,0,0,10,162,70,0,0,30,0,0,0,0,0,80,0,0,65,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,30,0,0,0,8,2,54,242,0,22,0,0,0,0,0,0,78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,95,1 +4,0,0,5,1,14,32,1,79,3,22,0,1,0,8,0,68,0,8,1,0,0,0,1,0,0,0,0,3,0,1,0,0,1,6,0,15,88,0,0,89,0,0,0,1,0,0,1,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,13,0,0,213,14,173,0,4,0,0,0,0,0,4,0,0,0,0,0,1,3,31,0,1,6,1,0,6,37,0,374,60,1,0,0,6,1,222,0,5,0,0,221,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,32,0,0,0,0,3,36,284,60,0,0,0,0,1,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,121,27,249,6,0,0,259,0,474,0,1,0,79,23,0,0,0,0,0,0,0,0,0,218,1,0,0,0,2,0,0,0,0,1,110,82,0,0,116,0,0,0,0,0,162,0,0,12,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,3,0,0,0,0,9,21,162,0,4,0,0,0,0,0,0,123,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,2,78,100,1 +1,0,0,3,0,17,2,0,16,1,3,0,0,0,5,0,15,0,7,1,0,0,0,1,0,3,0,0,3,0,0,0,0,0,3,0,17,6,0,0,15,0,0,0,1,0,0,9,0,0,0,0,3,93,0,0,0,0,0,1,0,0,0,0,0,5,0,0,64555,17,92,0,7,0,0,0,0,0,36,0,0,0,0,0,1,11,4651,0,0,3,0,0,0,0,0,28,0,14,0,0,2,0,27,0,3,0,0,34561,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,4659,0,96,0,0,0,3,6,39,19602,4656,0,0,0,0,1,0,0,0,0,0,0,0,0,648,0,0,0,0,0,0,0,0,0,0,0,0,9,0,2,0,0,0,0,2,0,8,6,196,3,0,0,194,0,809,0,0,0,107,37,0,0,0,0,0,0,2,0,0,48,1,0,0,0,2,0,0,0,0,6,102,79,0,0,0,0,0,0,0,0,89,0,0,260,0,0,1,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,3,0,0,0,0,1,20,415,0,6,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,250,68,1 +4,0,0,4,4,25,3,4,52,2,8,0,0,0,10,1,49,0,7,9,0,8,0,1,0,0,0,0,5,0,11,0,0,4,11,0,29,38,0,0,46,0,0,0,1,0,0,2,1,0,0,0,10,76,0,0,0,0,0,1,4,0,0,0,0,10,0,0,4189,25,353,0,15,0,0,0,0,0,11,12,0,0,0,0,1,4,71,0,4,11,4,0,0,0,0,46,0,5,0,0,2,4,80,0,8,0,0,784,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,84,0,105,0,0,0,20,19,61,3321,96,0,0,0,0,1,0,0,0,0,0,0,0,0,3707,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,13,356,8,0,0,272,0,325,0,0,0,92,13,0,0,0,0,0,0,0,0,0,130,1,0,2,0,18,0,0,0,0,7,112,13,0,0,0,0,0,0,0,0,151,0,0,36,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,25,0,0,0,8,33,40,73,0,16,0,0,0,0,0,0,67,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,2,0,0,0,0,0,0,0,0,0,0,0,8,0,2,187,70,1 +2,0,0,0,1,10,3,4,15,0,2,0,1,0,4,0,18,0,6,3,0,1,1,1,0,1,0,0,0,0,1,0,0,0,1,0,11,9,0,0,10,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,73,10,89,0,2,0,0,0,0,0,0,3,0,0,0,0,1,1,15,0,4,1,0,0,1,0,0,11,0,0,0,0,4,1,18,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,25,0,23,0,0,0,1,4,27,12,34,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,17,86,2,0,0,76,0,136,0,0,0,14,4,0,0,0,0,0,0,0,0,0,49,0,0,0,0,6,0,0,0,0,2,93,2,0,0,0,0,0,0,0,0,205,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,9,12,1,0,2,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,45,19,1 +5,0,0,6,0,46,8,0,44,0,9,0,0,2,4,1,549,0,7,2,0,0,0,7,0,10,0,0,11,0,13,0,0,0,12,1068,46,6,0,0,44,0,0,0,1,0,0,4,0,0,0,0,13,232,0,0,0,0,0,1,0,0,0,4,0,7,0,0,7645,46,658,0,21,0,0,0,0,0,25,0,0,0,0,0,8,20,1500,0,0,12,0,0,1,9,0,213,25,7,0,0,2,0,628,0,2,0,0,1997,0,0,0,0,12,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,470,0,91,0,0,0,24,21,253,574,454,0,0,0,0,1,0,4,0,0,0,0,0,0,516,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,14,255,6,0,0,314,0,375,0,0,0,160,11,0,0,0,0,0,0,0,0,0,624,1,0,0,0,9,0,0,0,0,9,133,85,0,0,45,0,0,0,0,0,1801,1,0,231,6,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,32,0,0,0,16,1,58,232,0,22,12,0,0,0,0,0,66,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,729,62,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,108,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1183,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,42,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,300,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,55,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,109,3,0,0,114,0,388,0,0,0,40,14,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,52,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,104,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,98,23,1 +1,0,0,3,2,12,2,2,28,0,5,0,0,0,3,0,31,0,6,5,0,4,0,1,0,0,0,0,1,0,1,0,0,2,2,0,14,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,0,63,0,0,0,0,0,1,2,0,0,0,0,3,0,0,418,12,175,0,2,0,0,0,0,0,8,6,0,0,0,1,1,5,50,0,2,2,2,0,0,0,0,13,0,2,0,0,2,2,22,0,1,0,0,192,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,60,0,49,0,0,0,0,3,31,15,70,0,0,0,0,1,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,140,5,0,0,192,0,210,0,0,0,82,6,0,0,0,0,0,0,0,0,0,75,1,0,0,0,10,0,0,0,0,1,94,52,0,0,0,0,0,0,0,0,60,0,0,25,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,1,0,0,0,0,17,16,216,0,2,0,0,0,0,0,0,31,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,113,18,1 +22,0,0,8,0,63,88,0,85,2,100,0,0,7,9,0,72,0,7,2,0,0,0,9,0,12,3,0,26,0,4,0,0,0,24,1109,63,6,0,0,163,0,0,0,1,0,0,10,0,0,0,0,4,1742,0,0,0,0,0,1,0,0,0,5,0,13,0,0,36175,63,666,0,27,0,0,0,0,0,197,0,0,0,0,3,10,302,7197,0,0,24,0,0,3,46,0,1352,75,20,0,0,2,0,532,0,2,753,0,5913,0,0,0,0,10,5,5,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,1447,0,141,0,0,0,18,22,635,5481,1433,0,0,0,0,1,0,7,0,0,0,0,0,0,1334,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,1,0,108,41,354,8,0,0,567,0,428,0,0,0,409,24,0,0,0,0,0,0,0,0,0,368,1,0,0,0,11,0,0,0,0,2,168,208,0,0,833,0,0,0,0,0,3973,1,0,843,82,0,1,1,0,0,0,0,21,0,1,0,5,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,82,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,72,1,1,1,0,66,0,0,0,0,1,87,607,0,31,14,0,0,0,0,0,212,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,6,2984,196,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,66,0,0,0,0,0,1,0,0,0,0,0,2,0,0,574,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,44,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,252,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,56,0,0,0,4,10,32,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,112,3,0,0,114,0,214,0,0,0,40,10,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,53,0,0,38,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,87,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,99,23,1 +7,0,0,7,2,19,6,8,47,2,14,0,0,0,14,0,25,0,6,6,0,2,1,2,0,0,0,0,2,0,3,0,0,2,9,0,21,6,12,0,53,0,0,0,1,0,0,2,0,0,0,0,2,56,0,0,0,0,0,1,0,0,0,9,0,12,0,0,186,19,221,0,5,0,0,0,0,0,5,6,0,0,0,1,2,6,35,0,8,9,2,0,2,17,0,176,35,3,0,0,2,2,129,0,5,0,0,222,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,50,0,41,0,0,0,4,7,42,139,62,0,0,0,0,1,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,10,158,9,0,0,158,0,204,0,0,0,63,8,0,0,0,0,0,0,0,0,0,112,1,0,0,0,11,0,0,0,0,3,105,41,0,0,74,0,0,0,0,0,58,0,0,17,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,6,0,0,0,0,17,30,35,0,5,0,0,0,0,0,0,62,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,119,18,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,17,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,16,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,35,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,4,1 +3,0,0,14,0,20,2,0,25,1,3,0,0,0,10,0,20,0,7,1,0,0,0,1,0,4,0,0,5,0,2,0,0,0,8,0,20,18,0,0,44,0,0,0,1,0,0,1,0,0,0,0,5,48,0,0,0,0,0,1,0,0,0,0,0,5,0,0,292,20,69,0,11,0,0,0,0,0,3,0,0,0,0,2,1,4,31,0,0,8,0,0,0,0,0,23,0,3,0,0,2,0,47,0,3,0,0,179,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,43,0,41,0,0,0,6,8,38,44,54,0,0,0,0,1,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,6,127,17,0,0,154,0,231,0,0,0,85,585,0,0,0,0,0,0,0,0,0,67,1,0,0,0,2,0,0,0,0,6,104,41,0,0,0,0,0,0,0,0,63,0,0,20,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,7,0,0,0,0,1,28,163,0,11,0,0,0,0,0,0,68,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,55,1 +36,0,0,12,2,33,52,2,69,16,59,0,2,0,80,6,120,0,11,2,0,0,0,1,0,0,0,0,9,0,11,0,0,2,18,0,35,108,0,0,107,0,0,0,1,0,0,2,0,0,0,0,10,132,0,0,0,0,0,1,0,0,0,18,0,28,0,0,780,33,342,0,20,0,0,0,0,0,11,0,0,0,0,0,2,5,77,0,2,18,2,0,4,0,0,130,0,4,0,0,10,2,274,0,24,0,0,661,0,0,0,0,10,13,0,0,0,0,0,1,0,0,0,4,0,0,4,0,0,0,0,7,0,0,0,8,0,0,0,0,0,5,0,7,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,26,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,101,0,63,0,0,0,20,20,75,158,121,0,0,0,0,1,0,0,0,0,0,0,0,0,618,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,231,79,485,17,0,0,503,0,840,0,2,0,180,18,0,0,0,0,0,0,0,0,0,399,1,0,0,0,3,0,0,0,0,9,149,39,0,0,0,0,0,0,0,0,475,0,0,71,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,36,1,1,1,0,29,0,0,0,0,17,53,272,0,20,0,0,0,0,0,0,155,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,16,0,0,0,0,0,0,0,0,0,0,0,2,0,3,366,50,1 +5,0,0,3,0,21,2,0,18,2,3,0,0,0,7,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,7,0,21,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,7,0,0,463,21,54,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,59,0,0,7,0,0,0,0,0,12,0,3,0,0,2,0,30,0,5,0,0,363,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,4,0,3,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,84,0,86,0,0,0,0,3,42,22,88,0,0,0,0,1,0,0,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,8,147,3,0,0,143,0,233,0,0,0,62,9,0,0,0,0,0,0,0,0,0,51,1,0,0,0,2,0,0,0,0,1,105,32,0,0,0,0,0,0,0,0,33,0,0,46,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,3,0,0,0,0,1,28,425,0,4,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,145,28,1 +24,0,0,5,0,82,47,0,111,1,15,0,0,2,8,0,924,0,11,7,0,0,0,6,0,11,0,0,18,0,18,0,0,0,35,1030,82,6,0,0,144,0,0,0,1,0,0,19,1,0,0,0,19,587,0,0,0,0,0,1,0,0,0,0,0,13,0,0,39286,82,1288,0,34,0,1,0,0,0,99,0,0,0,0,1,12,40,7112,0,0,35,0,0,2,53,0,553,50,35,0,0,2,0,1244,0,6,0,0,3291,0,0,0,0,20,0,7,0,5,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,5611,0,273,0,0,0,36,21,345,791,5560,0,0,0,0,1,0,9,0,0,0,0,0,0,1744,0,0,0,0,0,0,0,0,0,0,0,0,18,1,0,0,0,0,0,1,0,34,16,483,5,0,0,611,0,649,0,0,0,403,23,0,0,0,0,0,0,0,0,0,1118,1,0,5,0,13,0,0,0,0,2,176,265,0,0,99,0,0,0,0,0,3195,1,0,560,6,0,1,1,0,0,0,0,70,0,1,0,2,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,51,0,0,0,0,1,117,1037,0,35,12,0,0,0,0,0,233,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1391,152,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,97,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1107,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,43,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,291,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,56,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,113,3,0,0,114,0,369,0,0,0,40,10,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,59,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,118,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,99,24,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,48,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,16,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,0,0,0,59,0,54,0,0,0,29,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,28,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,72,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,4,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,95,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1012,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,45,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,288,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,58,0,0,0,4,10,32,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,116,3,0,0,114,0,334,0,0,0,40,9,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,54,0,0,35,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,113,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,105,25,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,27,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,26,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,40,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,4,1 +20,0,0,8,4,88,117,16,624,12,120,0,0,6,24,0,1381,0,7,14,0,4,2,8,0,10,18,0,38,0,15,0,0,4,41,762,92,62,19,0,1199,0,0,0,1,0,0,13,0,0,0,0,15,392,0,0,0,0,0,1,0,0,0,17,0,132,0,0,42200,88,2690,0,50,0,0,0,0,0,68,12,0,0,0,0,11,38,8265,0,16,41,4,0,1,535,0,4285,40,25,0,0,2,4,4277,0,21,0,0,4177,0,0,0,0,20,2,3,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,12,12,12,0,0,0,2635,0,242,0,0,0,29,50,342,4533,2637,0,0,0,0,1,0,4,0,0,0,0,0,0,3947,0,0,0,0,0,0,0,0,0,1,0,0,14,1,0,0,0,0,0,3,1,93,43,531,12,0,0,701,0,1035,0,0,0,447,73,0,0,0,0,0,0,0,0,0,2279,1,0,0,0,28,0,0,0,0,15,175,1515,0,0,52,0,0,0,0,0,5554,1,0,3300,5,0,1,1,0,0,0,0,35,0,0,0,2,0,0,0,0,0,13,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,5,21,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,94,1,1,1,0,60,0,0,0,0,33,133,990,0,69,12,0,0,0,0,0,1505,3,0,0,0,0,0,0,0,0,0,0,0,6,0,1,18,0,0,0,0,0,0,0,0,0,0,0,5,0,12,3495,1140,1 +3,0,0,7,0,36,6,0,38,1,6,0,0,2,4,0,486,0,6,2,0,0,0,7,0,10,3,0,5,0,1,1,0,0,5,762,36,8,0,0,27,0,0,0,1,0,0,2,0,0,0,0,2,187,0,0,0,0,0,1,0,0,0,1,0,4,0,0,5497,36,548,0,4,0,0,0,0,0,15,0,0,0,0,0,8,18,1038,0,0,5,0,0,0,0,0,89,5,4,0,0,2,0,514,0,1,0,0,1064,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,438,0,45,0,0,0,2,7,242,328,408,0,0,0,0,1,0,4,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,16,181,7,0,0,213,0,313,0,0,0,66,20,0,0,0,0,0,0,0,0,0,548,1,0,0,0,9,0,0,0,0,1,119,22,0,0,1,0,0,0,0,0,1351,1,0,52,6,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,41,105,0,8,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,43,1 +3,0,0,7,0,36,6,0,38,1,6,0,0,2,4,0,486,0,6,2,0,0,0,7,0,10,3,0,5,0,1,1,0,0,5,762,36,8,0,0,27,0,0,0,1,0,0,2,0,0,0,0,2,182,0,0,0,0,0,1,0,0,0,1,0,4,0,0,4857,36,548,0,4,0,0,0,0,0,15,0,0,0,0,0,8,18,907,0,0,5,0,0,0,0,0,89,5,4,0,0,2,0,514,0,1,0,0,1149,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,368,0,45,0,0,0,2,7,242,328,338,0,0,0,0,1,0,4,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,16,181,7,0,0,213,0,311,0,0,0,66,26,0,0,0,0,0,0,0,0,0,548,1,0,0,0,9,0,0,0,0,1,119,22,0,0,1,0,0,0,0,0,1321,1,0,54,6,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,41,105,0,8,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,42,1 +5,0,0,4,0,31,4,0,11,1,3,0,0,2,6,0,18,0,7,3,0,0,0,5,0,8,0,0,2,0,2,0,0,0,6,0,31,6,0,0,35,0,0,0,1,0,0,4,0,0,0,0,2,120,0,0,0,0,0,1,0,0,0,2,0,7,0,0,901,31,53,0,2,0,0,0,0,0,14,0,0,0,0,0,7,16,146,0,0,6,0,0,0,0,0,81,5,3,0,0,2,0,29,0,4,0,0,668,0,0,0,0,0,1,1,0,2,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,6,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,108,0,95,0,0,0,2,4,186,22,117,0,0,0,0,1,0,3,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,1,32,14,201,4,0,0,194,0,231,0,0,0,101,8,0,0,0,0,0,0,0,0,0,51,1,0,0,0,8,0,0,0,0,2,128,58,0,0,0,0,0,0,0,0,95,0,0,43,2,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,3,0,0,0,0,1,37,125,0,4,8,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,236,54,1 +6,0,0,5,4,27,3,4,62,2,8,0,0,0,10,1,52,0,7,9,0,8,0,1,0,0,3,0,5,0,7,1,0,4,8,0,31,6,0,0,53,0,0,0,1,0,0,3,0,0,0,0,7,97,0,0,0,0,0,1,4,0,0,0,0,11,0,0,1359,27,357,0,13,0,0,0,0,0,12,12,0,0,0,1,1,6,107,0,4,8,4,0,0,0,0,31,0,4,0,0,2,4,78,0,8,0,0,765,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,112,0,102,0,0,0,14,31,62,145,131,0,0,0,0,1,0,0,0,0,0,0,0,0,409,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,13,340,9,0,0,337,0,394,0,0,0,152,19,0,0,0,0,0,0,0,0,0,143,1,0,0,0,18,0,0,0,0,3,113,81,0,0,0,0,0,0,0,0,139,0,0,153,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,68,0,0,0,8,33,39,269,0,16,0,0,0,0,0,0,60,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,2,0,0,0,0,0,0,0,0,0,0,0,8,0,2,239,48,1 +6829,0,0,15,3,82,93,3,159,5,24,0,0,6,28,0,1998,0,12,2,0,0,0,8,0,11,0,0,105,0,1,0,0,3,35,466,85,150,0,0,181,0,0,0,1,0,0,1,1,0,0,0,2,224,0,0,0,0,0,1,0,0,0,0,0,22,0,0,94247,82,2314,0,104,0,0,0,0,0,25,0,0,0,0,0,9,26,4178,0,3,35,3,0,6,24,0,625,65,4,0,0,8,3,2177,0,17,6,0,136748,0,0,0,0,20517,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,6825,0,0,0,2,0,13666,0,6825,0,0,0,0,0,0,7187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,6847,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,12,12,12,0,0,0,2870,0,106,0,0,0,3,6,348,39650,2861,0,0,0,0,1,0,3,0,0,0,0,0,0,120027,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,399,97,1144,20,0,0,939,0,1251,0,3,0,405,132,0,0,0,0,0,0,0,0,0,2320,1,0,2,0,10,0,0,0,0,1,239,150,0,0,100,0,2,0,0,0,5164,1,0,72,8,0,1,1,0,0,0,0,5,0,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,8,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3,85,1,1,1,0,108,0,0,0,0,25,120,99,0,105,12,0,0,0,0,0,227,4,0,0,0,0,0,0,0,0,0,0,0,5,0,1,15,0,0,0,0,0,0,0,0,0,0,0,3,0,3,1303,308,1 +11,0,0,15,0,69,25,0,184,18,66,0,0,14,36,1,731,0,7,2,0,0,0,11,0,13,0,0,18,0,8,0,0,0,26,3670,69,6,0,0,323,0,0,0,1,0,0,8,0,0,0,0,10,417,0,0,0,0,0,1,0,0,0,14,0,48,0,0,90869,69,1139,0,24,0,0,0,0,0,56,0,0,0,0,3,12,73,14935,0,0,26,0,0,6,97,0,1353,150,13,0,0,2,0,1416,0,27,95,0,3751,0,0,0,0,18,0,1,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,7,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,12,12,12,0,0,0,12230,0,131,0,0,0,22,25,434,1779,12211,0,0,0,0,1,0,4,0,0,0,0,0,0,4096,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,246,62,444,17,0,0,480,0,544,0,0,0,294,36,0,0,0,0,0,0,0,0,0,1064,1,0,0,0,13,0,0,0,0,11,181,328,0,0,385,0,1,0,0,0,3983,1,0,4251,19,0,1,1,0,0,0,0,17,0,0,0,3,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,19,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,80,1,1,1,0,46,0,0,0,0,1,95,449,0,25,14,0,0,0,0,0,404,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,45,0,0,0,0,0,0,0,0,0,0,0,0,0,6,2631,105,1 +16,0,0,6,0,67,96,0,45,0,91,0,0,8,5,0,126,0,6,2,0,0,0,8,0,12,3,0,25,0,2,0,0,0,21,4183,67,6,0,0,50,0,0,0,1,0,0,9,1,0,0,0,3,1711,0,0,0,0,0,1,0,0,0,0,0,4,0,0,109795,67,697,0,24,0,0,0,0,0,224,0,0,0,0,0,9,350,28672,0,0,21,0,0,0,0,0,1077,30,18,0,0,2,0,371,0,1,828,0,7819,0,0,0,0,0,3,8,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,12,12,0,0,0,20558,0,176,0,0,0,20,51,712,4210,20519,0,0,0,0,1,0,10,0,0,0,0,0,0,2250,0,0,0,0,0,0,0,0,0,0,0,0,9,1,2,0,0,0,0,1,0,130,17,400,6,0,0,615,0,429,0,0,0,426,20,0,0,0,0,0,0,2,0,0,377,1,0,3,0,10,0,0,0,0,2,175,115,0,0,803,0,0,0,0,0,5602,1,0,3329,95,0,1,1,0,0,0,0,24,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,95,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,71,1,1,1,0,133,0,0,0,0,1,88,601,0,28,14,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7,4633,163,1 +0,0,0,9,0,8,10,0,23,0,8,0,0,0,14,0,19,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,38,0,0,44,0,0,0,1,0,0,4,0,0,0,0,0,55,0,0,0,0,0,1,0,0,0,0,0,3,0,0,508,8,85,0,1,0,0,0,0,0,13,0,0,0,0,0,1,8,95,0,0,0,0,0,1,11,0,126,20,4,0,0,2,0,115,0,0,0,0,298,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,85,0,0,0,0,3,22,132,103,0,0,0,0,1,0,0,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,13,3,106,10,0,0,69,0,205,0,0,0,19,15,0,0,0,0,0,0,0,0,0,80,1,0,0,0,2,0,0,0,0,0,91,45,0,0,35,0,0,0,0,0,244,0,0,52,0,0,1,0,0,0,0,0,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,10,0,1,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,936,669,1 +9,0,19,20,5,43,29,13,267,2,14,0,1,1,20,1,3555,0,8,14,0,3,1,1,1,0,0,0,3,0,1,0,0,3,20,25,47,88,0,0,90,0,0,0,1,0,0,4,0,0,0,0,0,148,0,0,0,0,0,1,0,0,0,0,0,10,0,0,2393,43,4045,0,4,0,0,0,0,0,21,9,0,0,0,0,1,6,337,0,13,20,3,0,2,8,0,131,15,6,0,0,5,5,3562,0,5,0,0,1133,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,11,0,3,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,398,0,0,0,0,0,0,293,6,143,0,0,0,0,3,90,1638,283,0,0,0,0,1,0,0,0,0,0,27,1,0,1239,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,736,92,501,32,0,0,527,0,841,0,0,0,221,477,0,0,0,0,0,0,0,0,0,3896,1,0,0,0,20,0,0,0,0,1,175,63,0,20,29,0,1,0,0,0,4079,0,0,154,1,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,20,20,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,3,0,0,0,0,47,67,193,0,4,0,0,0,0,0,0,103,5,0,0,0,0,0,0,0,0,0,0,0,4,0,1,5,0,0,0,0,0,0,0,7,0,0,0,331,0,4,442,99,1 +6,0,0,6,2,53,9,8,37,6,6,0,0,2,16,1,37,0,7,8,0,2,1,6,0,8,6,0,19,0,10,2,0,2,21,0,55,6,8,0,74,0,0,0,1,0,0,2,0,0,0,0,12,167,0,0,0,0,0,1,0,0,0,9,0,18,0,0,1200,53,249,0,29,0,0,0,0,0,12,6,0,0,0,0,8,16,179,0,8,21,2,0,0,0,0,127,5,3,0,0,2,2,135,0,14,0,0,959,0,0,0,0,4,0,3,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,129,0,72,0,0,0,22,26,224,114,137,0,0,0,0,1,0,5,0,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,28,283,8,0,0,296,0,413,0,0,0,138,15,0,0,0,0,0,0,0,0,0,115,1,0,0,0,17,0,0,0,0,8,143,48,0,0,0,0,0,0,0,0,168,0,0,61,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,42,0,0,0,8,17,76,276,0,36,9,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,3,0,3,210,50,1 +8,0,0,9,0,52,18,0,104,1,18,0,0,6,7,0,1508,0,6,2,0,0,0,8,0,11,0,0,10,0,1,0,0,0,13,2444,52,6,0,0,139,0,0,0,1,0,0,2,1,0,0,0,1,350,0,0,0,0,0,1,0,0,0,4,0,15,0,0,114118,52,1676,0,7,0,0,0,0,0,26,0,0,0,0,0,9,26,18397,0,0,13,0,0,1,43,0,536,35,4,0,0,2,0,1774,0,2,9,0,2319,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,12,12,12,0,0,0,16981,0,107,0,0,0,1,4,309,4828,16963,0,0,0,0,1,0,6,0,0,0,0,0,0,6014,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,22,276,9,0,0,310,0,462,0,0,0,146,37,0,0,0,0,0,0,0,0,0,1667,1,0,3,0,10,0,0,0,0,1,150,145,0,0,48,0,3,0,0,0,4098,1,0,104,8,0,1,1,0,0,0,0,10,0,0,0,3,0,0,0,0,0,3,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,8,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,9,0,0,0,0,1,65,124,0,8,14,0,0,0,0,0,266,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,3,907,282,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,57,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,26,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,45,0,0,0,47,0,37,0,0,0,17,2,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,97,9,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,17,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,8,1 +7,0,0,8,1,14,26,1,32,2,4,0,0,0,8,0,67,0,9,1,0,0,0,1,0,0,0,0,1,0,2,0,0,1,3,0,15,80,0,0,27,0,0,0,1,0,0,1,0,0,0,0,1,50,0,0,0,0,0,1,0,0,0,3,0,8,0,0,186,14,101,0,3,0,0,0,0,0,4,0,0,0,0,0,1,3,39,0,1,3,1,0,1,0,0,49,0,1,0,0,4,1,41,0,4,0,0,136,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,48,0,33,0,0,0,2,5,39,22,67,0,0,0,0,1,0,0,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,117,21,219,10,0,0,243,0,352,0,1,0,66,14,0,0,0,0,0,0,0,0,0,146,1,0,0,0,2,0,0,0,0,2,110,14,0,0,0,0,0,0,0,0,171,0,0,13,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,1,1,1,0,3,0,0,0,0,9,18,28,0,3,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,2,96,14,1 +7,0,0,14,0,27,16,0,66,12,27,0,0,0,26,2,21,0,7,1,0,0,0,2,0,0,3,0,4,0,6,1,0,0,14,0,27,6,0,0,180,0,0,0,1,0,0,1,0,0,0,0,6,61,0,0,0,0,0,1,0,0,0,0,0,21,0,0,1047,27,165,0,11,0,0,0,0,0,6,0,0,0,0,0,2,4,130,0,0,14,0,0,0,51,0,434,55,2,0,0,2,0,331,0,17,0,0,703,0,0,0,0,27,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,14,0,0,0,0,0,0,112,0,73,0,0,0,12,18,59,302,119,0,0,0,0,1,0,0,0,0,0,0,0,0,549,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,34,177,23,0,0,177,0,272,0,0,0,106,45,0,0,0,0,0,0,0,0,0,165,1,0,0,0,3,0,0,0,0,7,119,151,0,0,133,0,42,0,0,0,77,0,0,110,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,17,0,0,0,0,1,41,124,0,14,0,0,0,0,0,0,179,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,123,1 +2,0,0,5,0,51,10,0,49,2,6,0,0,6,5,0,767,0,6,1,0,0,0,9,0,12,0,0,7,0,1,0,0,0,10,980,51,6,0,0,59,0,6,0,1,0,0,7,0,0,0,0,1,239,0,0,0,0,0,1,0,0,0,0,0,2,0,0,23713,51,875,0,5,0,0,0,0,0,33,0,0,0,0,0,9,34,4467,0,0,10,0,0,0,0,0,211,20,12,1,0,2,0,820,0,0,2,0,1997,0,0,0,0,6,0,2,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,40,12,12,12,0,0,0,2927,0,106,0,0,0,2,5,298,1107,2908,0,0,0,0,1,0,4,0,0,0,0,0,0,535,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,84,25,257,5,0,0,323,0,494,0,0,0,143,10,0,0,0,0,0,0,0,0,0,849,1,0,0,0,10,0,0,0,0,0,134,68,0,0,11,0,0,0,0,0,2387,1,0,880,8,0,1,1,1,0,0,0,15,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,8,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,10,0,0,0,0,1,61,217,0,6,14,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,932,71,1 +2,0,0,7,0,25,3,0,908,4,7,0,0,0,14,1,907,0,7,1,0,0,0,1,0,0,0,0,5,0,6,0,0,0,13,0,25,6,0,0,56,0,4,0,1,0,0,4,2,0,0,0,5,70,0,0,0,0,0,1,0,0,0,0,0,13,0,0,6347,25,994,0,11,0,0,0,0,0,24,0,0,0,0,0,1,7,579,0,0,13,0,0,0,0,0,37,0,12,0,0,2,0,58,0,8,0,0,4672,0,0,0,0,23,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,118,0,198,0,0,0,10,13,54,2013,110,0,0,0,0,1,0,0,0,0,0,0,0,0,979,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,1346,29,806,9,0,0,280,0,173,0,0,0,202,181,0,0,0,0,0,0,0,0,0,1847,1,0,6,0,2,0,0,0,0,6,123,132,0,0,0,0,0,0,0,0,471211,0,0,781,0,0,1,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,366,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,15,0,0,0,0,1,38,240,0,11,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,360,2591,1 +8,0,0,7,0,22,3,0,16,5,7,0,0,0,16,1,15,0,7,1,0,0,0,1,0,0,0,0,4,0,6,0,0,0,11,0,22,6,0,0,65,0,3,0,1,0,0,3,0,0,0,0,5,58,0,0,0,0,0,1,0,0,0,0,0,14,0,0,1471,22,82,0,10,0,0,0,0,0,13,0,0,0,0,0,1,6,520,0,0,11,0,0,0,0,0,31,0,4,0,0,2,0,60,0,10,0,0,531,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,95,0,62,0,0,0,10,11,47,32,103,0,0,0,0,1,0,0,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,8,29,183,9,0,0,155,0,241,0,0,0,87,23,0,0,0,0,0,0,0,0,0,65,1,0,0,0,2,0,0,0,0,5,108,38,0,0,0,0,0,0,0,0,254,0,0,804,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,366,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,14,0,0,0,2,1,33,160,0,10,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,324,67,1 +3,0,0,4,0,15,3,0,14,0,4,0,0,0,4,1,15,0,7,1,0,0,0,1,0,0,0,0,4,0,7,0,0,0,4,0,15,6,0,0,18,0,0,0,1,0,0,1,0,0,0,0,6,33,0,0,0,0,0,1,0,0,0,0,0,4,0,0,362,15,53,0,11,0,0,0,0,0,6,0,0,0,0,0,1,3,61,0,0,4,0,0,0,0,0,19,0,2,0,0,2,0,33,0,2,0,0,213,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,65,0,50,0,0,0,12,11,34,22,72,0,0,0,0,1,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,7,104,4,0,0,106,0,223,0,0,0,38,7,0,0,0,0,0,0,0,0,0,48,1,0,0,0,2,0,0,0,0,3,101,15,0,0,0,0,0,0,0,0,50,0,0,62,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,16,0,0,0,8,1,19,66,0,11,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,121,24,1 +11,0,0,8,2,42,9,2,49,2,10,0,0,0,6,0,41,0,6,5,0,4,0,1,0,0,8,0,7,0,60,0,0,2,28,0,44,6,0,0,97,0,0,0,1,0,0,2,0,0,0,0,59,69,0,0,0,0,0,1,2,0,0,6,0,8,0,0,704,42,306,0,67,0,0,0,0,0,14,6,0,0,0,0,1,4,41,0,2,28,2,0,1,9,0,336,20,1,0,0,2,2,170,0,4,0,0,1199,0,0,0,0,3,2,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,13,0,0,0,0,0,0,61,0,92,0,0,0,118,127,67,323,67,0,0,0,0,1,0,1,0,0,0,0,0,0,445,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,48,315,10,0,0,308,0,491,0,0,0,178,46,0,0,0,0,0,0,0,0,0,121,1,0,0,0,10,0,0,0,0,60,126,83,0,0,45,0,0,0,0,0,80,0,0,80,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,125,0,0,0,114,17,72,193,0,75,0,0,0,0,0,0,60,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,143,1097,1 +0,0,0,0,0,10,2,0,15,0,1,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,11,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,877,10,37,0,1,0,0,0,0,0,4,0,0,0,0,0,1,4,478,0,0,2,0,0,0,0,0,7,0,1,0,0,2,0,16,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,20,0,0,0,0,3,23,4,37,0,0,0,0,1,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,0,0,0,75,0,91,0,0,0,17,0,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,4,0,0,0,0,0,0,0,0,206,0,0,728,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,33,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,217,2,1 +4,0,0,3,4,23,7,4,51,0,7,0,0,0,3,0,48,0,8,9,0,8,0,1,0,0,0,0,5,0,1,0,0,4,7,2,27,6,0,0,21,0,0,0,1,0,0,2,2,0,0,0,0,106,0,0,0,0,0,1,4,0,0,2,0,3,0,0,1123,23,344,0,6,0,0,0,0,0,15,12,0,0,0,0,1,4,44,0,4,7,4,0,0,0,0,21,0,7,0,0,2,4,34,0,1,0,0,2898,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,68,0,100,0,0,0,0,3,54,30,75,0,0,0,0,1,0,0,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,317,7,0,0,309,0,394,0,0,0,119,24,0,0,0,0,0,0,0,0,0,124,1,0,5,0,18,0,0,0,0,1,117,47,0,0,0,0,0,0,0,0,87,0,0,25,0,0,1,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,5,0,0,0,0,33,34,210,0,6,0,0,0,0,0,0,39,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,188,72,1 +2,0,0,4,0,24,3,0,7,2,4,0,0,0,10,2,52,0,7,2,0,0,0,0,0,0,6,0,5,0,11,0,0,0,13,0,24,6,0,0,38,0,0,0,1,0,0,1,0,0,0,0,10,42,0,0,0,0,0,1,0,0,0,0,0,10,0,0,268,24,97,0,16,0,0,0,0,0,2,0,0,0,0,0,1,3,9,0,0,13,0,0,0,0,0,27,0,0,0,0,2,0,87,0,8,0,0,309,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,30,0,53,0,0,0,20,20,56,32,35,0,0,0,0,1,0,0,0,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,13,108,4,0,0,106,0,174,0,0,0,67,11,0,0,0,0,0,0,0,0,0,85,1,0,0,0,2,0,0,0,0,5,110,23,0,0,0,0,0,0,0,0,308,0,0,14,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,23,0,0,0,8,11,37,69,0,22,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,17,1 +0,0,0,5,0,12,2,0,25,0,3,0,0,0,4,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,11,0,0,0,1,0,0,4,0,0,0,0,0,79,0,0,0,0,0,1,0,0,0,0,0,3,0,0,850,12,66,0,1,0,0,0,0,0,14,0,0,0,0,1,1,9,167,0,0,2,0,0,0,0,0,10,0,7,0,1,2,0,26,0,1,0,0,115,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,136,0,53,0,0,0,0,3,28,7,141,0,0,0,0,1,0,0,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,8,4,99,6,0,0,151,0,213,0,0,0,83,5,0,0,0,1,0,0,5,0,0,54,1,0,0,0,2,0,0,0,0,0,101,52,0,0,0,0,0,0,0,0,65,0,0,173,0,0,1,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,258,0,1,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,218,22,1 +6,0,0,0,0,26,5,0,3,4,1,0,0,0,7,0,17,0,7,4,0,0,0,0,0,0,0,0,3,0,5,0,0,0,14,0,26,6,0,0,60,0,0,0,1,0,0,1,0,0,0,0,4,33,0,0,0,0,0,1,0,0,0,2,0,5,0,0,250,26,42,0,8,0,0,0,0,0,2,0,0,0,0,0,3,5,7,0,0,14,0,0,0,0,0,29,0,0,0,0,2,0,44,0,5,0,0,386,0,0,0,0,14,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,29,0,59,0,0,0,8,9,55,38,39,0,0,0,0,1,0,0,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,16,111,0,0,0,109,0,173,0,0,0,67,33,0,0,0,0,0,0,0,0,0,40,0,0,0,0,4,0,0,0,0,5,108,24,0,0,0,0,0,0,0,0,37,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,11,0,0,0,0,1,40,78,0,8,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,30,1 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,13,0,0,0,0,3,22,6,22,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,0,0,0,35,0,23,0,0,0,5,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,4,1 +0,0,0,5,0,14,2,0,30,0,3,0,0,0,4,0,15,0,7,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,14,6,0,0,15,0,0,0,1,0,0,3,0,0,0,0,1,83,0,0,0,0,0,1,0,0,0,0,0,3,0,0,317,14,64,0,3,0,0,0,0,0,7,0,0,0,0,1,1,8,56,0,0,4,0,0,0,0,0,13,0,5,0,0,2,0,34,0,1,0,0,123,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,68,0,43,0,0,0,2,4,31,11,70,0,0,0,0,1,0,0,0,0,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,8,4,105,6,0,0,147,0,215,0,0,0,82,6,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,2,97,47,0,0,0,0,0,0,0,0,38,0,0,38,0,0,1,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,18,285,0,3,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,17,1 +2,0,0,4,0,17,2,0,17,14,3,0,0,0,21,0,15,0,6,1,0,0,0,2,0,0,0,0,1,0,2,0,0,0,7,0,17,6,0,0,52,0,0,0,1,0,0,2,0,0,0,0,1,106,0,0,0,0,0,1,0,0,0,5,0,22,0,0,484,17,62,0,3,0,0,0,0,0,7,0,0,0,0,0,2,5,50,0,0,7,0,0,0,0,0,15,0,2,0,0,2,0,56,0,18,0,0,242,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,64,0,39,0,0,0,2,5,35,24,72,0,0,0,0,1,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,21,113,4,0,0,164,0,217,0,0,0,97,7,0,0,0,0,0,0,0,0,0,64,1,0,0,0,3,0,0,0,0,2,99,69,0,0,0,0,0,0,0,0,33,0,0,35,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,24,348,0,3,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,1,85,20,1 +2,0,0,7,0,25,3,0,1021,4,7,0,0,0,13,1,1019,0,7,1,0,0,0,1,0,1,0,0,5,0,5,0,0,0,13,0,25,6,0,0,53,0,5,0,1,0,0,5,2,0,0,0,5,87,0,0,0,0,0,1,0,0,0,0,0,12,0,0,8069,25,1113,0,11,0,0,0,0,0,28,0,0,0,0,0,1,8,578,0,0,13,0,0,0,0,0,38,0,13,0,0,2,0,57,0,8,0,0,7073,0,0,0,0,23,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,140,0,276,0,0,0,10,13,58,2103,126,0,0,0,0,1,0,0,0,0,0,0,0,0,1061,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,1514,29,1222,9,0,0,711,0,187,0,0,0,632,259,0,0,0,0,0,0,0,0,0,2071,1,0,6,0,2,0,0,0,0,6,123,559,0,0,0,0,0,0,0,0,530354,0,0,821,0,0,1,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,366,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,15,0,0,0,0,1,38,1828,0,11,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,377,2091,1 +6,0,0,6,2,52,9,8,35,5,6,0,0,2,15,1,27,0,7,8,0,2,1,6,0,8,0,0,18,0,12,0,0,2,19,0,54,6,8,0,73,0,0,0,1,0,0,2,0,0,0,0,12,208,0,0,0,0,0,1,0,0,0,9,0,17,0,0,1266,52,233,0,28,0,0,0,0,0,13,6,0,0,0,0,8,16,176,0,8,19,2,0,0,0,0,126,5,3,0,0,2,2,98,0,13,0,0,855,0,0,0,0,4,0,3,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,138,0,69,0,0,0,22,20,226,119,145,0,0,0,0,1,0,5,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,1,0,32,27,267,8,0,0,301,0,388,0,0,0,140,28,0,0,0,0,0,0,0,0,0,102,1,0,0,0,17,0,0,0,0,8,139,58,0,0,0,0,0,0,0,0,147,0,0,61,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,38,0,0,0,8,17,73,347,0,29,9,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,3,0,3,200,56,1 +3,0,0,0,0,15,5,0,5,0,1,0,0,0,2,0,21,0,7,2,0,0,0,0,0,0,6,0,2,0,3,0,0,0,4,0,15,6,0,0,25,0,0,0,1,0,0,0,0,0,0,0,2,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,208,15,44,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,4,0,0,0,0,0,15,0,0,0,0,2,0,55,0,0,0,0,248,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,20,0,31,0,0,0,4,12,36,21,27,0,0,0,0,1,0,0,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,11,76,0,0,0,61,0,153,0,0,0,22,5,0,0,0,0,0,0,0,0,0,41,0,0,0,0,2,0,0,0,0,3,97,9,0,0,0,0,0,0,0,0,61,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,6,0,0,0,0,1,19,17,0,11,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,16,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,79,0,0,0,0,0,1,0,0,0,0,0,2,0,0,570,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,44,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,259,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,60,0,57,0,0,0,4,10,36,174,69,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,115,3,0,0,117,0,214,0,0,0,40,11,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,53,0,0,38,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,166,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,102,23,1 +6,0,0,5,4,25,3,4,62,2,8,0,0,0,10,1,52,0,7,9,0,8,0,1,0,0,3,0,5,0,7,1,0,4,8,0,29,6,0,0,53,0,0,0,1,0,0,3,0,0,0,0,7,101,0,0,0,0,0,1,4,0,0,0,0,11,0,0,2455,25,360,0,12,0,0,0,0,0,13,12,0,0,0,1,1,6,342,0,4,8,4,0,0,0,0,31,0,4,0,0,2,4,78,0,8,0,0,752,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,250,0,99,0,0,0,14,31,54,145,268,0,0,0,0,1,0,0,0,0,0,0,0,0,648,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,13,307,9,0,0,332,0,399,0,0,0,152,11,0,0,0,0,0,0,0,0,0,143,1,0,0,0,18,0,0,0,0,3,111,81,0,0,0,0,0,0,0,0,182,0,0,473,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,68,0,0,0,8,33,37,269,0,16,0,0,0,0,0,0,60,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,2,0,0,0,0,0,0,0,0,0,0,0,8,0,2,323,53,1 +1,0,0,4,1,16,34,1,50,4,5,0,1,0,9,0,68,0,8,1,0,0,0,1,0,0,0,0,3,0,1,0,0,1,6,0,17,83,0,0,35,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,8,0,0,421,16,131,0,4,0,0,0,0,0,13,0,0,0,0,0,1,3,43,0,1,6,1,0,2,0,0,49,0,1,0,0,6,1,58,0,6,0,0,342,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,55,0,88,0,0,0,0,3,37,34,65,0,0,0,0,1,0,0,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,125,28,273,5,0,0,304,0,492,0,1,0,109,29,0,0,0,0,0,0,0,0,0,175,1,0,0,0,2,0,0,0,0,1,115,44,0,0,0,0,0,0,0,0,169,0,0,20,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,13,1,1,1,0,3,0,0,0,0,9,23,128,0,4,0,0,0,0,0,0,59,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,201,122,1 +2,0,0,0,0,17,3,0,5,1,1,0,0,0,3,0,23,0,7,2,0,0,0,0,0,0,6,0,2,0,3,0,0,0,6,0,17,6,0,0,34,0,0,0,1,0,0,0,0,0,0,0,2,21,0,0,0,0,0,1,0,0,0,0,0,1,0,0,173,17,45,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,6,0,0,0,0,0,15,0,0,0,0,2,0,57,0,1,0,0,229,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,20,0,26,0,0,0,4,12,39,20,27,0,0,0,0,1,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,62,0,0,0,72,0,140,0,0,0,33,5,0,0,0,0,0,0,0,0,0,42,0,0,0,0,2,0,0,0,0,3,99,14,0,0,0,0,0,0,0,0,57,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,6,0,0,0,0,1,23,31,0,11,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,1 +3888,0,0,1,0,47,7,0,13,7,1,0,0,2,10,0,26,0,6,4,0,0,0,6,0,8,0,0,52,0,2,0,0,0,14,0,47,6,0,0,69,0,0,0,1,0,0,1,0,0,0,0,2,86,0,0,0,0,0,1,0,0,0,13,0,9,0,0,39991,47,106,0,52,0,0,0,0,0,7,0,0,0,0,0,9,16,114,0,0,14,0,0,0,0,0,131,5,0,0,0,2,0,106,0,7,0,0,79600,0,0,0,0,11638,3,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,3880,0,0,0,0,0,7755,0,3881,0,0,0,0,0,0,3890,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,8,0,0,0,0,3885,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,10,10,0,0,0,97,0,58,0,0,0,2,5,213,21656,106,0,0,0,0,1,0,3,0,0,0,0,0,0,65257,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,19,647,1,0,0,201,0,315,0,0,0,83,187,0,0,0,0,0,0,0,0,0,65,1,0,0,0,10,0,0,0,0,2,133,29,0,0,0,0,0,0,0,0,133,0,0,13,3,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,52,0,0,0,0,1,61,81,0,53,9,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,196,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,7,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,70,0,0,0,0,0,1,0,0,0,0,0,2,0,0,468,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,42,0,0,7,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,274,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,55,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,114,3,0,0,114,0,205,0,0,0,49,7,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,52,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,24,113,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,98,23,1 +0,0,0,2,0,8,2,0,17,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,88,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1284,8,47,0,1,0,0,0,0,0,10,0,0,0,0,0,1,4,44,0,0,0,0,0,0,0,0,9,0,3,0,0,2,0,16,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,54,0,47,0,0,0,0,3,22,6,64,0,0,0,0,1,0,0,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,201,2,0,0,100,0,321,0,0,0,38,16,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,91,28,0,0,0,0,0,0,0,0,31,0,0,35,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,186,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,93,109,1 +10,0,0,7,0,28,3,0,17,5,6,0,0,0,15,1,30,0,7,1,0,0,0,1,0,0,9,0,8,0,14,0,0,0,17,0,28,6,0,0,63,0,0,0,1,0,0,4,0,0,0,0,13,57,0,0,0,0,0,1,0,0,0,0,0,14,0,0,892,28,103,0,22,0,0,0,0,0,9,0,0,0,0,0,1,6,125,0,0,17,0,0,0,0,0,54,0,1,0,0,2,0,118,0,10,0,0,435,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,101,0,52,0,0,0,26,30,54,51,121,0,0,0,0,1,0,0,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,25,160,9,0,0,184,0,346,0,0,0,116,10,0,0,0,0,0,0,0,0,0,79,1,0,0,0,2,0,0,0,0,10,114,54,0,0,0,0,0,0,0,0,112,0,0,126,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,31,0,0,0,8,1,45,201,0,31,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,160,40,1 +4,0,0,5,0,31,4,0,17,6,4,0,0,0,16,1,15,0,7,1,0,0,0,2,0,0,0,0,6,0,12,0,0,0,18,0,31,6,0,0,65,0,0,0,1,0,0,1,0,0,0,0,11,55,0,0,0,0,0,1,0,0,0,8,0,17,0,0,404,31,73,0,18,0,0,0,0,0,6,0,0,0,0,0,2,4,38,0,0,18,0,0,0,0,0,43,0,2,0,0,2,0,66,0,14,0,0,442,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,52,0,53,0,0,0,22,19,58,52,62,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,21,167,5,0,0,188,0,239,0,0,0,112,16,0,0,0,0,0,0,0,0,0,64,1,0,0,0,3,0,0,0,0,8,121,43,0,0,0,0,0,0,0,0,60,0,0,28,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,28,0,0,0,8,1,49,163,0,18,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,95,47,1 +0,0,0,7,0,48,93,0,56,0,90,0,0,7,5,0,68,0,7,2,0,0,0,8,0,11,0,0,18,0,1,0,0,0,5,1109,48,6,0,0,84,0,0,0,1,0,0,3,2,0,0,0,1,1345,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57166,48,532,0,15,0,0,0,0,0,175,0,0,0,0,0,9,306,6643,0,0,5,0,0,1,27,0,1229,70,12,0,0,2,0,349,0,1,883,0,14772,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,897,0,114,0,0,0,12,15,619,18531,869,0,0,0,0,1,0,3,0,0,0,0,0,0,8213,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,108,17,302,7,0,0,426,0,320,0,0,0,255,37,0,0,0,0,0,0,0,0,0,326,1,0,9,0,10,0,0,0,0,0,153,96,0,0,893,0,0,0,0,0,4010,1,0,453,82,0,1,1,0,0,0,0,16,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,50,0,0,0,0,1,53,259,0,16,14,0,0,0,0,0,130,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2758,2393,1 +20,0,0,11,0,72,17,0,58,13,32,0,0,6,44,3,1007,0,7,1,0,0,0,10,0,11,0,0,25,0,26,0,0,0,29,3544,72,9,0,0,291,0,8,0,1,0,0,10,0,0,0,0,26,1155,0,0,0,0,0,1,0,0,0,11,0,26,0,0,23561,72,1256,0,47,0,0,0,0,0,48,0,0,0,1,2,10,47,4047,0,0,29,0,0,0,0,0,392,20,14,0,0,2,0,1294,0,21,15,0,3118,0,0,0,0,41,0,2,0,0,0,0,1,0,0,0,26,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,14,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,12,12,12,0,0,0,1442,0,152,0,0,0,53,29,358,1089,1425,0,0,0,0,1,0,4,0,0,0,0,0,0,1355,0,0,0,0,0,0,0,0,0,3,0,0,67,1,0,0,0,0,0,1,0,84,147,457,13,0,0,509,0,1203,0,0,0,326,32,0,0,0,0,0,0,0,0,0,1174,1,0,0,0,11,0,0,0,0,10,186,1741,0,0,22,0,0,0,0,1,3557,1,0,1034,11,0,1,1,1,0,0,0,21,0,0,0,2,0,0,0,0,0,16,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,11,388,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,1,1,1,0,80,0,0,0,2,1,101,802,0,48,14,0,0,0,0,0,238,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1509,209,1 +3,0,0,7,0,34,6,0,37,1,6,0,0,2,4,0,472,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,3,762,34,8,0,0,27,0,0,0,1,0,0,3,0,0,0,0,1,185,0,0,0,0,0,1,0,0,0,1,0,4,0,0,5467,34,533,0,2,0,0,0,0,0,19,0,0,0,0,0,8,19,982,0,0,3,0,0,0,0,0,89,5,6,0,0,2,0,486,0,1,0,0,975,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,521,0,49,0,0,0,0,3,240,323,484,0,0,0,0,1,0,3,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,16,175,7,0,0,212,0,299,0,0,0,62,6,0,0,0,0,0,0,0,0,0,533,1,0,0,0,9,0,0,0,0,1,117,24,0,0,1,0,0,0,0,0,1232,1,0,48,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,1,0,0,0,0,1,37,126,0,3,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,349,43,1 +1,0,0,2,0,11,2,0,21,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,72,11,43,0,1,0,0,0,0,0,3,0,0,0,0,1,1,4,25,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,20,0,0,0,0,58,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,27,0,0,0,0,3,28,5,42,0,0,0,0,1,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,94,0,90,0,0,0,33,0,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,94,13,0,0,0,0,0,0,0,0,28,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,91,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,3,1 +7,0,0,7,0,26,3,0,17,4,6,0,0,0,12,1,30,0,7,1,0,0,0,1,0,0,9,0,7,0,15,0,0,0,14,0,26,6,0,0,52,0,0,0,1,0,0,4,0,0,0,0,14,50,0,0,0,0,0,1,0,0,0,0,0,11,0,0,858,26,102,0,22,0,0,0,0,0,9,0,0,0,0,0,1,6,128,0,0,14,0,0,0,0,0,57,0,1,0,0,2,0,114,0,7,0,0,347,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,101,0,50,0,0,0,28,34,48,49,121,0,0,0,0,1,0,0,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,20,166,9,0,0,178,0,340,0,0,0,107,5,0,0,0,0,0,0,0,0,0,76,1,0,0,0,2,0,0,0,0,11,112,54,0,0,0,0,0,0,0,0,134,0,0,129,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,32,0,0,0,16,1,40,198,0,31,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,152,40,1 +4,0,0,5,2,20,3,2,27,2,6,0,0,0,10,1,31,0,7,5,0,4,0,1,0,0,0,0,3,0,7,0,0,2,7,0,22,6,0,0,35,0,0,0,1,0,0,1,0,0,0,0,6,57,0,0,0,0,0,1,2,0,0,0,0,11,0,0,266,20,188,0,10,0,0,0,0,0,4,6,0,0,0,0,1,3,45,0,2,7,2,0,0,0,0,22,0,1,0,0,2,2,44,0,8,0,0,382,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,52,0,57,0,0,0,12,10,44,29,70,0,0,0,0,1,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,13,184,7,0,0,176,0,228,0,0,0,60,7,0,0,0,0,0,0,0,0,0,85,1,0,0,0,10,0,0,0,0,3,106,12,0,0,0,0,0,0,0,0,73,0,0,14,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,15,0,0,0,8,17,29,87,0,10,0,0,0,0,0,0,52,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,114,34,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,60,0,0,0,0,0,1,0,0,0,0,0,2,0,0,463,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,65,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,254,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,70,0,56,0,0,0,4,10,32,174,79,0,0,0,0,1,0,0,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,109,3,0,0,114,0,176,0,0,0,40,10,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,65,0,0,79,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,65,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,121,20,1 +3,0,0,3,0,23,2,0,14,1,3,0,0,0,8,0,15,0,7,1,0,0,0,1,0,0,0,0,2,0,4,0,0,0,12,0,23,6,0,0,36,0,0,0,1,0,0,4,0,0,0,0,3,62,0,0,0,0,0,1,0,0,0,0,0,8,0,0,15304,23,70,0,6,0,0,0,0,0,19,0,0,0,0,0,1,6,4205,0,0,12,0,0,0,0,0,17,0,8,0,0,2,0,29,0,6,0,0,397,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,2532,0,64,0,0,0,6,5,43,18,2533,0,0,0,0,1,0,0,0,0,0,0,0,0,2728,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,9,144,3,0,0,184,0,266,0,0,0,116,11,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,2,107,62,0,0,0,0,0,0,0,0,721,0,0,3655,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,8,0,0,0,0,1,35,239,0,6,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1241,58,1 +6475,0,0,5,0,55,4,0,24,3,3,0,0,2,10,0,23,0,6,4,0,0,0,5,0,8,3,0,100,0,2,0,0,0,16,0,55,6,0,0,51,0,0,0,1,0,0,5,0,0,0,0,2,187,0,0,0,0,0,1,0,0,0,0,0,11,0,0,73423,55,193,0,101,0,0,0,0,0,24,0,0,0,0,0,8,19,499,0,0,16,0,0,0,0,0,184,5,7,0,0,2,0,161,0,7,0,0,131017,0,0,0,0,19363,7,1,0,9,0,0,1,0,0,0,1,0,0,0,0,0,0,0,7,0,0,0,6462,0,0,0,0,0,12902,0,6457,0,0,0,0,0,0,6481,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,6,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,6453,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,10,10,10,0,0,0,367,0,137,0,0,0,2,8,229,35807,368,0,0,0,0,1,0,3,0,0,0,0,0,0,108503,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,32,17,711,5,0,0,250,0,370,0,0,0,105,226,0,0,0,0,0,0,0,0,0,72,1,0,0,0,9,0,0,0,0,2,137,43,0,0,0,0,0,0,0,0,283,0,0,137,2,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,100,0,0,0,0,1,71,196,0,105,8,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,450,351,1 +6,0,0,5,4,29,3,4,58,4,8,0,0,0,14,1,48,0,7,9,0,8,0,1,0,0,0,0,5,0,8,0,0,4,14,0,33,6,0,0,52,0,0,0,1,0,0,2,0,0,0,0,7,70,0,0,0,0,0,1,4,0,0,0,0,15,0,0,7796,29,346,0,13,0,0,0,0,0,7,12,0,0,0,0,1,5,173,0,4,14,4,0,0,0,0,33,0,2,0,0,2,4,83,0,11,0,0,2613,0,0,0,0,6,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,123,0,74,0,0,0,14,11,59,40,140,0,0,0,0,1,0,0,0,0,0,0,0,0,391,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,16,306,9,0,0,323,0,412,0,0,0,141,16,0,0,0,0,0,0,0,0,0,139,1,0,0,0,18,0,0,0,0,4,115,50,0,0,0,0,0,0,0,0,333,0,0,155,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,19,0,0,0,8,33,47,270,0,13,0,0,0,0,0,0,66,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,4,0,0,0,0,0,0,0,0,0,0,0,8,0,1,414,49,1 +4,0,0,5,2,21,3,2,27,2,6,0,0,0,10,1,31,0,7,5,0,4,0,1,0,0,0,0,3,0,7,0,0,2,7,0,23,6,0,0,35,0,0,0,1,0,0,1,0,0,0,0,6,57,0,0,0,0,0,1,2,0,0,0,0,11,0,0,251,21,188,0,10,0,0,0,0,0,4,6,0,0,0,0,1,3,39,0,2,7,2,0,0,0,0,22,0,1,0,0,2,2,44,0,8,0,0,463,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,48,0,54,0,0,0,12,11,48,27,64,0,0,0,0,1,0,0,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,13,186,7,0,0,179,0,230,0,0,0,60,6,0,0,0,0,0,0,0,0,0,85,1,0,0,0,10,0,0,0,0,3,107,12,0,0,0,0,0,0,0,0,72,0,0,14,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,15,0,0,0,8,17,30,87,0,10,0,0,0,0,0,0,47,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,108,34,1 +2,0,0,5,2,43,6,2,54,1,7,0,0,6,4,0,599,0,6,6,0,4,0,8,0,10,0,0,8,0,1,0,0,2,7,898,45,34,0,0,53,0,0,0,1,0,0,1,0,0,0,0,1,165,0,0,0,0,0,1,2,0,0,1,0,2,0,0,7548,43,895,0,6,0,0,0,0,0,12,6,0,0,0,0,9,18,1383,0,2,7,2,0,0,0,0,196,20,2,0,0,2,2,647,0,0,1,0,1314,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,38,12,12,12,0,0,0,730,0,47,0,0,0,0,3,273,361,712,0,0,0,0,1,0,3,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,89,19,267,7,0,0,295,0,357,0,0,0,93,7,0,0,0,0,0,0,0,0,0,682,1,0,0,0,18,0,0,0,0,1,126,20,0,0,6,0,0,0,0,0,1641,1,0,66,6,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,5,0,0,0,0,17,52,154,0,7,12,0,0,0,0,0,75,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,5,0,0,0,0,0,0,0,0,0,0,0,4,0,1,475,51,1 +5,0,0,5,2,34,6,8,37,9,6,0,0,0,20,1,24,0,7,6,0,2,1,2,0,1,0,0,5,0,12,0,0,2,20,0,36,6,6,0,74,0,0,0,1,0,0,3,0,0,0,0,11,115,0,0,0,0,0,1,0,0,0,9,0,21,0,0,744,34,230,0,18,0,0,0,0,0,12,6,0,0,0,1,2,7,81,0,8,20,2,0,0,0,0,50,0,5,0,0,2,2,90,0,18,0,0,488,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,91,0,72,0,0,0,22,20,63,59,99,0,0,0,0,1,0,0,0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,25,244,7,0,0,256,0,259,0,0,0,144,26,0,0,0,0,0,0,0,0,0,101,1,0,0,0,11,0,0,0,0,8,124,50,0,0,0,0,0,0,0,0,82,0,0,86,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,28,0,0,0,8,17,56,253,0,18,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,3,0,2,151,45,1 +5,0,0,5,2,34,15,2,66,1,17,0,0,2,4,0,38,0,6,7,0,4,0,6,0,8,0,0,7,0,1,0,0,2,4,0,36,38,0,0,61,0,0,0,1,0,0,2,0,0,0,0,1,114,0,0,0,0,0,1,2,0,0,1,0,8,0,0,965,34,263,0,6,0,0,0,0,0,17,6,0,0,0,0,8,16,138,0,2,4,2,0,2,25,0,301,55,1,0,0,2,2,168,0,2,0,0,650,0,0,0,0,4,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6,10,10,10,0,0,0,110,0,74,0,0,0,0,3,198,177,111,0,0,0,0,1,0,4,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,37,12,222,7,0,0,285,0,371,0,0,0,115,16,0,0,0,0,0,0,0,0,0,148,1,0,0,0,17,0,0,0,0,1,118,115,0,0,115,0,0,0,0,0,157,0,0,25,3,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,17,40,188,0,7,9,0,0,0,0,0,80,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,4,0,1,212,76,1 +1,0,0,2,0,11,2,0,21,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,71,11,43,0,1,0,0,0,0,0,3,0,0,0,0,1,1,4,24,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,20,0,0,0,0,67,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,29,0,0,0,0,3,28,5,42,0,0,0,0,1,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,94,0,90,0,0,0,33,0,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,94,13,0,0,0,0,0,0,0,0,27,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,91,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,3,1 +5,0,0,5,0,16,12,0,34,0,11,0,0,0,6,0,21,0,7,1,0,0,0,1,0,0,3,0,3,0,5,0,0,0,4,0,16,6,0,0,61,0,0,0,1,0,0,2,0,0,0,0,4,79,0,0,0,0,0,1,0,0,0,0,0,9,0,0,2294,16,100,0,8,0,0,0,0,0,9,0,0,0,0,0,1,4,538,0,0,4,0,0,1,19,0,189,25,3,0,0,2,0,155,0,2,0,0,333,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,415,0,63,0,0,0,8,11,35,180,423,0,0,0,0,1,0,0,0,0,0,0,0,0,677,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,8,5,121,5,0,0,161,0,234,0,0,0,92,13,0,0,0,0,0,0,2,0,0,91,1,0,0,0,2,0,0,0,0,2,105,143,0,0,53,0,0,0,0,0,135,0,0,376,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,14,0,0,0,0,1,20,244,0,11,0,0,0,0,0,0,69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,293,63,1 +2,0,0,5,2,41,6,2,55,1,7,0,0,6,5,0,606,0,6,6,0,4,0,8,0,10,0,0,8,0,1,0,0,2,7,835,43,94,0,0,53,0,0,0,1,0,0,1,0,0,0,0,1,183,0,0,0,0,0,1,2,0,0,1,0,2,0,0,28122,41,895,0,6,0,0,0,0,0,12,6,0,0,0,0,9,22,5350,0,2,7,2,0,0,0,0,197,20,2,0,0,2,2,668,0,0,1,0,2024,0,0,0,0,1,0,3,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,40,12,12,12,0,0,0,599,0,48,0,0,0,1,4,258,359,584,0,0,0,0,1,0,4,0,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,104,19,274,7,0,0,287,0,383,0,0,0,92,6,0,0,0,0,0,0,0,0,0,691,1,0,0,0,18,0,0,0,0,1,124,19,0,0,6,0,0,0,0,0,3344,1,0,60,6,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,8,0,0,0,0,17,50,116,0,7,12,0,0,0,0,0,90,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,5,0,0,0,0,0,0,0,0,0,0,0,4,0,1,2043,57,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,27,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,26,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,40,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,4,1 +9,0,0,4,0,19,3,0,21,1,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,4,0,5,0,0,0,5,0,19,6,0,0,19,0,0,0,1,0,0,3,0,0,0,0,4,98,0,0,0,0,0,1,0,0,0,0,0,7,0,0,596,19,72,0,9,0,0,0,0,0,17,0,0,0,0,0,1,5,98,0,0,5,0,0,0,0,0,15,0,5,0,0,2,0,35,0,3,0,0,368,0,0,0,0,7,3,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,114,0,114,0,0,0,8,7,45,38,108,0,0,0,0,1,0,0,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,8,160,4,0,0,140,0,190,0,0,0,56,18,0,0,0,0,0,0,0,0,0,56,1,0,0,0,2,0,0,0,0,1,101,29,0,0,0,0,0,0,0,0,53,0,0,77,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,12,0,0,0,0,1,24,319,0,9,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,225,57,1 +1,0,0,5,1,23,37,1,87,8,25,0,1,0,13,0,69,0,8,1,0,0,0,1,0,0,0,0,4,0,1,0,0,1,10,0,24,85,0,0,110,0,0,0,1,0,0,5,1,0,0,0,0,93,0,0,0,0,0,1,0,0,0,0,0,18,0,0,1682,23,221,0,5,0,0,0,0,0,27,0,0,0,0,0,1,9,77,0,1,10,1,0,7,40,0,417,75,8,0,0,6,1,249,0,10,0,0,707,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,109,0,119,0,0,0,0,3,53,329,114,0,0,0,0,1,0,0,0,0,0,0,0,0,797,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,124,32,311,6,0,0,352,0,504,0,1,0,146,15,0,0,0,0,0,0,0,0,0,240,1,0,2,0,2,0,0,0,0,1,122,130,0,0,145,0,0,0,0,0,175,0,0,51,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,20,1,1,1,0,4,0,0,0,0,9,34,336,0,5,0,0,0,0,0,0,145,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,18,0,0,0,0,0,0,0,0,0,0,0,1,0,4,264,166,1 +12,0,0,6,6,82,18,24,77,20,13,0,0,2,30,0,159,0,6,18,0,6,3,6,0,8,21,0,8,0,15,0,0,6,50,0,88,240,400,0,264,0,0,0,1,0,0,4,0,0,0,0,15,313,0,0,0,0,0,1,0,0,0,85,0,34,0,0,10367,82,935,0,21,0,0,0,0,0,23,18,0,0,0,0,8,19,426,0,24,50,6,0,1,8,0,234,20,6,0,0,2,6,307,0,27,0,0,4394,0,0,0,0,29,0,1,0,0,0,0,1,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,12,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,7,0,0,0,0,279,0,1,0,270,274,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,10,10,10,0,0,0,384,0,174,0,0,0,28,62,264,4033,672,0,0,0,0,1,0,3,0,0,0,0,0,0,5949,0,0,0,0,0,0,0,0,0,0,0,0,4,1,2,0,0,0,0,1,0,32,45,942,12,0,0,1063,0,936,0,0,0,841,59,0,0,0,0,0,0,0,0,0,305,1,0,0,0,33,0,0,0,0,15,500,246,0,0,32,0,0,0,0,0,820,0,0,237,3,0,1,1,0,0,0,0,8,0,0,0,1,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,84,1,1,1,0,51,0,0,0,12,49,138,2975,0,43,9,0,2,0,0,0,743,9,0,0,0,0,0,0,0,0,0,0,0,7,0,1,24,0,0,0,0,0,0,0,0,0,0,0,10,0,4,403,724,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,102,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1207,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,43,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,278,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,55,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,113,3,0,0,114,0,395,0,0,0,40,11,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,54,0,0,35,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,110,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,98,25,1 +4,0,0,5,0,29,4,0,17,6,4,0,0,0,16,1,15,0,7,1,0,0,0,2,0,0,0,0,5,0,11,0,0,0,17,0,29,6,0,0,62,0,0,0,1,0,0,1,0,0,0,0,10,58,0,0,0,0,0,1,0,0,0,7,0,17,0,0,517,29,71,0,16,0,0,0,0,0,6,0,0,0,0,0,2,4,59,0,0,17,0,0,0,0,0,38,0,2,0,0,2,0,64,0,14,0,0,403,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,51,0,0,0,20,17,55,47,72,0,0,0,0,1,0,0,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,21,156,5,0,0,182,0,233,0,0,0,109,9,0,0,0,0,0,0,0,0,0,64,1,0,0,0,3,0,0,0,0,7,119,43,0,0,0,0,0,0,0,0,49,0,0,69,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,25,0,0,0,8,1,46,183,0,16,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,113,45,1 +11,0,0,8,0,47,146,0,1565,2,421,0,0,2,9,0,1248,0,7,3,0,0,0,7,0,12,0,0,9,0,6,0,0,0,10,248,47,6,0,0,2783,0,0,0,1,0,0,3,1,0,0,0,8,303,0,0,0,0,0,1,0,0,0,0,0,13,0,0,302636,47,3425,0,14,0,0,0,0,0,24,0,0,0,0,0,9,20,63530,0,0,10,0,0,1,1510,0,11543,730,5,0,0,2,0,8430,0,7,0,0,170811,0,0,0,0,35812,1,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,66,12,12,12,0,0,0,37918,0,71,0,0,0,12,13,267,44806,37910,0,0,0,0,1,0,3,0,0,0,0,0,0,72137,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,425,1213,9,0,0,440,0,565,0,0,0,282,498,0,0,0,0,0,0,0,0,0,3398,1,0,1,0,10,0,0,0,0,7,130,3761,0,0,1583,0,0,0,0,0,27834,1,0,89,9,0,1,1,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,16,0,0,0,0,1,57,335,0,15,12,0,0,0,0,0,3207,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,25346,553,1 +1,0,0,3,0,12,2,0,23,0,3,0,0,0,3,0,15,0,7,1,0,0,0,1,0,2,0,0,2,0,1,0,0,0,1,0,12,6,0,0,8,0,0,0,1,0,0,2,0,0,0,0,2,65,0,0,0,0,0,1,0,0,0,0,0,3,0,0,200,12,56,0,5,0,0,0,0,0,7,0,0,0,0,1,1,5,27,0,0,1,0,0,0,0,0,14,0,3,0,0,2,0,29,0,1,0,0,110,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,34,0,0,0,2,5,29,27,49,0,0,0,0,1,0,0,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,86,3,0,0,112,0,153,0,0,0,43,9,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,5,94,25,0,0,0,0,0,0,0,0,42,0,0,15,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,13,134,0,5,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,71,11,1 +2,0,0,4,0,24,3,0,17,3,4,0,0,0,12,1,15,0,7,1,0,0,0,1,0,0,0,0,6,0,8,0,0,0,12,0,24,6,0,0,38,0,0,0,1,0,0,10,0,0,0,0,7,127,0,0,0,0,0,1,0,0,0,0,0,12,0,0,10353,24,123,0,14,0,0,0,0,0,41,0,0,0,0,0,1,13,2045,0,0,12,0,0,0,0,0,36,0,17,0,0,2,0,55,0,10,0,0,509,0,0,0,0,6,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,1337,0,112,0,0,0,14,13,49,32,1325,0,0,0,0,1,0,0,0,0,0,0,0,0,2708,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,8,15,159,4,0,0,239,0,307,0,0,0,159,13,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,4,110,94,0,0,0,0,0,0,0,0,448,0,0,2829,0,0,1,0,0,0,0,0,29,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,20,0,0,0,8,1,36,381,0,14,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,991,56,1 +1,0,0,14,0,20,2,0,35,1,3,0,0,0,10,0,20,0,6,1,0,0,0,1,0,4,0,0,4,0,1,0,0,0,7,0,20,18,0,0,42,0,0,0,1,0,0,3,0,0,0,0,4,88,0,0,0,0,0,1,0,0,0,0,0,5,0,0,478,20,85,0,9,0,0,0,0,0,9,0,0,0,0,1,1,6,72,0,0,7,0,0,0,0,0,22,0,6,0,0,2,0,54,0,3,0,0,210,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,82,0,100,0,0,0,4,7,39,41,93,0,0,0,0,1,0,0,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,8,6,129,17,0,0,169,0,243,0,0,0,94,585,0,0,0,0,0,0,0,0,0,76,1,0,0,0,2,0,0,0,0,5,104,46,0,0,0,0,0,0,0,0,66,0,0,47,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,4,0,0,0,0,1,27,253,0,9,0,0,0,0,0,0,87,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,241,59,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,14,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,35,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,4,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,14,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,35,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,4,1 +19,0,0,8,0,81,36,0,78,182,29,0,0,7,203,2,1764,0,7,3,0,0,0,8,0,10,9,0,37,0,10,3,0,0,35,88,81,6,0,0,792,0,0,0,1,0,0,7,0,0,0,0,13,345,0,0,0,0,0,1,0,0,0,22,0,200,0,0,21974,81,2269,0,47,0,0,0,0,0,79,0,0,0,0,0,10,109,2664,0,0,35,0,0,0,0,0,438,25,11,1,0,2,0,2352,0,61,74,0,13729,0,0,0,0,64,1,7,0,5,0,0,1,0,0,0,22,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,14,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,4,0,0,0,0,163,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,72,12,12,12,0,0,0,978,0,637,0,0,0,43,59,474,1126,969,0,0,0,0,1,0,9,0,0,0,0,0,0,2039,0,0,0,0,0,0,0,0,0,1,0,0,7,1,0,0,0,0,0,1,0,108,231,2616,8,0,0,475,0,644,0,0,0,296,412,0,0,0,0,0,0,0,0,0,2126,1,0,0,0,11,0,0,0,0,13,172,95,0,0,128,0,0,0,0,0,32152,1,0,976,24,0,1,1,1,0,0,0,14,0,0,0,2,0,0,0,0,0,50,1,0,0,0,0,0,0,0,0,0,0,48,48,0,0,7,0,0,0,0,0,24,16,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,91,1,1,1,0,122,0,0,0,8,31,116,371,0,57,12,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,186,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1516,1227,1 +13,0,0,4,5,57,103,9,115,33,12,0,4,0,52,0,217,0,14,3,0,1,0,2,1,1,0,0,8,0,16,0,0,5,42,0,62,293,0,0,190,0,0,0,1,0,0,5,0,0,0,0,16,194,0,0,0,0,0,1,0,0,0,23,0,45,0,0,2116,57,471,0,25,0,0,0,0,0,22,3,0,0,0,0,2,8,337,0,9,42,5,0,8,0,0,243,0,7,0,0,18,5,183,0,45,0,0,900,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,11,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,52,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,310,0,185,0,0,0,31,34,101,149,347,0,0,0,0,1,0,0,0,1,4,0,0,0,1103,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,452,126,884,9,0,0,961,0,1581,0,4,0,397,26,0,0,0,0,0,0,5,0,0,517,1,0,0,0,7,0,0,0,0,16,216,91,0,0,0,0,5,0,0,0,570,0,0,244,0,0,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,4,55,1,1,1,0,38,0,0,0,0,33,104,481,0,25,0,0,0,0,0,0,260,4,0,0,0,0,0,0,0,0,0,2,0,5,0,1,33,0,0,0,0,0,0,0,0,0,0,0,6,0,5,520,136,1 +2,0,0,4,0,25,3,0,7,2,4,0,0,0,10,2,58,0,7,3,0,0,0,0,0,0,6,0,5,0,11,0,0,0,13,0,25,6,0,0,38,0,0,0,1,0,0,1,0,0,0,0,10,44,0,0,0,0,0,1,0,0,0,0,0,10,0,0,276,25,104,0,16,0,0,0,0,0,2,0,0,0,0,0,2,4,13,0,0,13,0,0,0,0,0,29,0,0,0,0,2,0,90,0,8,0,0,313,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,36,0,60,0,0,0,20,21,62,32,40,0,0,0,0,1,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,13,110,4,0,0,109,0,174,0,0,0,67,10,0,0,0,0,0,0,0,0,0,91,1,0,0,0,3,0,0,0,0,5,111,23,0,0,0,0,0,0,0,0,321,0,0,14,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,1,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,23,0,0,0,8,13,38,69,0,22,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,18,1 +162,0,0,8,0,43,7,0,46,9,11,0,0,2,14,1,540,0,7,2,0,0,0,7,0,10,0,0,27,0,8,0,0,0,7,1027,43,6,0,0,84,0,0,0,1,0,0,8,0,0,0,0,8,252,0,0,0,0,0,1,0,0,0,40,0,16,0,0,12834,43,700,0,32,0,0,0,0,0,40,0,0,0,0,0,8,25,2351,0,0,7,0,0,1,9,0,218,25,10,0,0,2,0,650,0,11,0,0,1726,0,0,0,0,3,0,4,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,81,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,40,6,0,0,0,0,0,1,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,1429,0,132,0,0,0,14,13,253,521,1416,0,0,0,0,1,0,4,0,0,0,0,0,0,1665,0,0,0,0,0,0,0,0,0,0,0,0,8,1,2,0,0,0,0,1,0,32,66,337,8,0,0,385,0,355,0,0,0,225,22,0,0,0,0,0,0,7,0,0,628,1,0,0,0,9,0,0,0,0,4,195,98,0,0,46,0,0,0,0,0,1801,1,0,704,6,0,1,1,0,0,0,0,20,0,0,0,1,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,38,0,0,0,8,1,50,325,0,33,12,0,0,0,0,0,107,21,0,0,0,0,0,0,0,0,0,0,0,2,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,9,957,130,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,62,0,0,0,0,0,1,0,0,0,0,0,2,0,0,404,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,53,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,254,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,64,0,57,0,0,0,4,10,36,174,73,0,0,0,0,1,0,0,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,114,3,0,0,117,0,188,0,0,0,40,7,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,65,0,0,54,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,108,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,112,21,1 +2,0,0,4,2,24,5,8,31,3,5,0,0,0,9,0,24,0,7,6,0,2,1,2,0,0,0,0,5,0,6,0,0,2,9,0,26,6,4,0,28,0,0,0,1,0,0,2,0,0,0,0,5,145,0,0,0,0,0,1,0,0,0,5,0,10,0,0,538,24,197,0,11,0,0,0,0,0,9,6,0,0,0,0,2,5,59,0,8,9,2,0,0,0,0,40,0,3,0,0,2,2,49,0,7,0,0,296,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,75,0,60,0,0,0,10,11,51,43,86,0,0,0,0,1,0,0,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,12,173,6,0,0,219,0,275,0,0,0,104,19,0,0,0,0,0,0,0,0,0,81,1,0,0,0,11,0,0,0,0,6,107,58,0,0,0,0,0,0,0,0,59,0,0,37,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,15,0,0,0,4,17,35,357,0,11,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,4,0,2,114,34,1 +23,0,0,5,2,71,21,8,43,15,6,0,0,0,34,1,39,0,8,6,0,2,1,2,0,5,0,0,11,0,11,0,0,2,57,0,73,6,7,0,147,0,0,0,1,0,0,6,0,0,0,0,15,136,0,0,0,0,0,1,0,0,0,82,0,35,0,0,15847,71,318,0,26,0,0,0,0,0,29,6,0,0,0,0,2,10,618,0,8,57,2,0,0,0,0,58,0,6,0,0,2,2,183,0,19,0,0,7268,0,0,0,0,15,0,0,0,7,0,0,1,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,19,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,449,0,180,0,0,0,25,24,107,142,493,0,0,0,0,1,0,0,0,0,0,0,0,0,1473,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,8,30,473,7,0,0,382,0,495,0,0,0,260,1756,0,0,0,0,0,0,4,0,0,152,1,0,0,0,11,0,0,0,0,7,169,34,0,0,0,0,0,0,0,0,250,0,0,673,0,0,1,1,0,0,0,0,12,0,0,0,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,31,0,0,0,8,17,130,538,0,27,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,15,0,0,0,0,0,0,0,0,0,0,0,4,0,6,530,143,1 +3,0,0,10,0,27,3,0,18,4,8,0,0,0,15,2,20,0,7,1,0,0,0,1,0,0,3,0,7,0,12,1,0,0,15,0,27,6,0,0,60,0,0,0,1,0,0,5,0,0,0,0,12,116,0,0,0,0,0,1,0,0,0,0,0,13,0,0,1779,27,116,0,20,0,0,0,0,0,20,0,0,0,0,0,1,8,152,0,0,15,0,0,0,0,0,64,0,9,0,0,2,0,88,0,9,0,0,1006,0,0,0,0,646,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,145,0,97,0,0,0,24,29,58,71,147,0,0,0,0,1,0,0,0,0,0,0,0,0,1535,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,24,290,13,0,0,215,0,355,0,0,0,141,22,0,0,0,0,0,0,0,0,0,73,1,0,0,0,2,0,0,0,0,12,120,72,0,0,0,0,1,0,0,0,108,0,0,136,0,0,1,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,32,0,0,0,16,1,42,332,0,23,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,368,203,1 +6,0,0,5,4,31,10,4,57,5,8,0,0,0,12,1,49,0,7,9,0,8,0,3,0,0,0,0,6,0,10,0,0,4,14,0,35,74,0,0,49,0,0,0,1,0,0,3,1,0,0,0,9,103,0,0,0,0,0,1,4,0,0,7,0,13,0,0,1786,31,394,0,16,0,0,0,0,0,20,12,0,0,0,0,3,8,118,0,4,14,4,0,0,0,0,48,0,7,0,0,2,4,103,0,10,0,0,1079,0,0,0,0,7,0,1,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,139,0,164,0,0,0,18,17,69,59,142,0,0,0,0,1,0,0,0,0,0,0,0,0,979,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,46,17,374,9,0,0,323,0,358,0,0,0,129,34,0,0,0,0,0,0,0,0,0,144,1,0,3,0,20,0,0,0,0,6,123,27,0,0,0,0,0,0,0,0,265,0,0,75,0,0,1,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,24,0,0,0,8,33,49,283,0,16,0,0,0,0,0,0,75,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,5,0,0,0,0,0,0,0,0,0,0,0,8,0,2,308,86,1 +6,0,0,6,2,47,9,8,37,5,6,0,0,2,13,1,37,0,7,8,0,2,1,6,0,8,6,0,15,0,5,2,0,2,17,0,49,6,7,0,62,0,0,0,1,0,0,2,0,0,0,0,7,164,0,0,0,0,0,1,0,0,0,9,0,15,0,0,1177,47,237,0,20,0,0,0,0,0,12,6,0,0,0,0,8,16,189,0,8,17,2,0,0,0,0,107,5,3,0,0,2,2,121,0,11,0,0,760,0,0,0,0,4,0,3,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,134,0,65,0,0,0,12,18,211,97,142,0,0,0,0,1,0,5,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,25,242,8,0,0,277,0,398,0,0,0,125,37,0,0,0,0,0,0,0,0,0,112,1,0,0,0,17,0,0,0,0,4,137,47,0,0,0,0,0,0,0,0,164,0,0,83,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,28,0,0,0,4,17,66,276,0,27,9,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,3,0,3,201,47,1 +4,0,0,2,4,18,2,4,53,0,6,0,0,0,2,0,47,0,6,9,0,8,0,1,0,0,0,0,4,0,1,0,0,4,7,0,22,6,0,0,19,0,0,0,1,0,0,1,0,0,0,0,0,83,0,0,0,0,0,1,4,0,0,2,0,1,0,0,345,18,320,0,5,0,0,0,0,0,6,12,0,0,0,0,1,3,36,0,4,7,4,0,0,0,0,19,0,2,0,0,2,4,36,0,0,0,0,273,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,10,0,0,0,0,0,0,48,0,36,0,0,0,0,3,42,22,58,0,0,0,0,1,0,0,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,242,6,0,0,258,0,276,0,0,0,88,5,0,0,0,0,0,0,0,0,0,116,1,0,0,0,18,0,0,0,0,1,101,27,0,0,0,0,0,0,0,0,86,0,0,45,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,4,0,0,0,0,33,29,190,0,5,0,0,0,0,0,0,32,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,82,34,1 +314,0,0,4,0,48,6,0,55,8,3,0,0,2,13,0,1362,0,6,3,0,0,0,6,0,10,0,0,85,0,311,0,0,0,9,71,48,6,0,0,1894,0,0,0,1,0,0,4,0,0,0,0,311,196,0,0,0,0,0,1,0,0,0,0,0,14,0,0,26424,48,1857,0,393,0,0,0,0,0,25,0,0,0,0,0,8,21,4132,0,0,9,0,0,0,0,0,1413,5,9,1,0,2,0,1790,0,11,0,0,7537,0,0,0,0,936,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,314,0,0,0,0,0,623,0,312,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,68,12,12,12,0,0,0,3270,0,106,0,0,0,620,622,250,3223,3243,0,0,0,0,1,0,3,0,0,0,0,0,0,5141,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,400,4,0,0,255,0,348,0,0,0,95,80,0,0,0,0,0,0,0,0,0,1447,1,0,0,0,9,0,0,0,0,311,131,27,0,0,0,0,0,0,0,0,3711,1,0,453,6,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,702,0,0,0,0,1,57,161,0,394,12,0,0,0,0,0,1907,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,724,96,1 +9,0,0,6,6,59,11,6,117,0,20,0,0,2,6,0,143,0,7,15,0,12,0,5,0,8,45,0,16,0,15,1,0,6,27,0,65,6,0,0,142,0,0,0,1,0,0,3,0,0,0,0,16,175,0,0,0,0,0,1,6,0,0,2,0,13,0,0,2384,59,906,0,30,0,0,0,0,0,21,18,0,0,0,0,7,16,333,0,6,27,6,0,2,31,0,360,35,6,0,0,2,6,510,0,3,0,0,1338,0,0,0,0,5,4,3,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,10,10,10,0,0,0,235,0,98,0,0,0,30,63,243,344,244,0,0,0,0,1,0,3,0,0,3,0,0,0,728,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,34,13,453,12,0,0,462,0,595,0,0,0,195,32,0,0,0,0,0,0,0,0,0,306,1,0,0,0,32,0,0,0,0,1,142,112,0,0,61,0,0,0,0,0,968,0,0,267,3,0,1,1,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,16,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,75,1,1,1,0,29,0,0,0,0,49,92,290,0,76,9,0,1,0,0,0,191,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,6,0,0,0,0,0,0,0,0,0,0,0,12,0,4,347,506,1 +3,0,0,6,0,46,81,0,34,0,80,0,0,7,5,0,70,0,6,2,0,0,0,8,0,11,3,0,19,0,2,0,0,0,8,1109,46,6,0,0,51,0,0,0,1,0,0,2,0,0,0,0,2,1636,0,0,0,0,0,1,0,0,0,0,0,4,0,0,32725,46,512,0,17,0,0,0,0,0,166,0,0,0,0,0,9,267,6572,0,0,8,0,0,0,0,0,911,25,3,0,0,2,0,286,0,1,675,0,5028,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,1368,0,79,0,0,0,14,21,609,3211,1351,0,0,0,0,1,0,4,0,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,108,17,262,6,0,0,440,0,270,0,0,0,288,14,0,0,0,0,0,0,0,0,0,283,1,0,0,0,10,0,0,0,0,2,146,60,0,0,676,0,0,0,0,0,3443,1,0,466,82,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,82,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,56,0,0,0,0,1,54,361,0,21,14,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2387,59,1 +20,0,0,13,0,85,11,0,40,4,16,0,0,2,18,1,19,0,7,2,0,0,0,6,0,8,0,0,14,0,13,0,0,0,53,0,85,6,0,0,226,0,0,0,1,0,0,3,0,0,0,0,13,165,0,0,0,0,0,1,0,0,0,0,0,18,0,0,1836,85,137,0,25,0,0,0,0,0,17,0,0,0,0,0,7,16,310,0,0,53,0,0,1,18,0,259,35,5,0,0,2,0,167,0,11,0,0,1547,0,0,0,0,21,0,13,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,16,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,10,10,10,0,0,0,227,0,111,0,0,0,24,18,266,162,238,0,0,0,0,1,0,9,0,0,0,0,0,0,674,0,0,0,0,0,0,0,0,0,1,0,0,3,1,0,0,0,0,0,1,0,32,120,322,16,0,0,356,0,397,0,0,0,234,13,0,0,0,0,0,0,0,0,0,114,1,0,0,0,8,0,0,0,0,6,171,85,0,0,71,0,0,0,0,0,178,0,0,96,3,0,1,1,0,0,0,0,8,0,0,0,0,0,0,0,0,0,5,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,92,1,1,1,0,36,0,0,0,2,1,138,554,0,26,9,0,0,0,0,0,117,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,4,246,104,1 +10,0,0,10,0,36,5,0,41,4,13,0,0,0,18,0,24,0,7,2,0,0,0,4,0,0,3,0,4,0,2,0,0,0,21,0,36,46,0,0,97,0,0,0,1,0,0,1,0,0,0,0,1,41,0,0,0,0,0,1,0,0,0,0,0,18,0,0,1829,36,111,0,6,0,0,0,0,0,6,0,0,0,0,0,5,7,170,0,0,21,0,0,2,16,0,167,30,2,0,0,2,0,167,0,9,0,0,985,0,0,0,0,22,2,3,0,2,0,0,1,0,0,0,10,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8,0,0,0,0,0,0,144,0,64,0,0,0,2,7,74,1260,155,0,0,0,0,1,0,0,0,0,0,0,0,0,434,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,37,232,12,0,0,232,0,387,0,0,0,150,27,0,0,0,0,0,0,0,0,0,108,1,0,0,0,6,0,0,0,0,2,154,64,0,0,58,0,1,0,0,0,135,0,0,53,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,5,0,0,0,0,1,57,181,0,9,0,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,122,144,1 +5,0,0,10,0,42,8,0,45,0,6,0,0,6,5,0,667,0,6,5,0,0,0,8,0,12,0,0,10,0,3,0,0,0,3,2226,42,36,0,0,47,0,0,0,1,0,0,1,0,0,0,0,3,272,0,0,0,0,0,1,0,0,0,0,0,2,0,0,10796,42,741,0,10,0,0,0,0,0,13,0,0,0,0,0,12,35,2017,0,0,3,0,0,0,0,0,225,20,1,0,0,2,0,734,0,0,10,0,1988,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,36,12,12,12,0,0,0,734,0,49,0,0,0,7,10,291,838,715,0,0,0,0,1,0,3,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,89,27,243,15,0,0,248,0,341,0,0,0,79,10,0,0,0,0,0,0,0,0,0,743,1,0,0,0,13,0,0,0,0,3,133,11,0,0,15,0,0,0,0,0,2074,1,0,31,9,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,20,0,0,0,4,1,45,48,0,11,14,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,674,86,1 +2,0,0,8,1,20,43,1,124,9,38,0,1,0,18,0,68,0,8,1,0,0,0,1,0,0,0,0,3,0,1,0,0,1,12,0,21,85,0,0,209,0,0,0,1,0,0,2,0,0,0,0,0,88,0,0,0,0,0,1,0,0,0,0,0,20,0,0,650,20,264,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,89,0,1,12,1,0,7,82,0,745,80,4,0,0,6,1,474,0,13,0,0,363,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,2,0,0,0,0,0,0,91,0,72,0,0,0,0,3,39,658,107,0,0,0,0,1,0,0,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,124,37,273,11,0,0,346,0,520,0,1,0,166,9,0,0,0,0,0,0,0,0,0,300,1,0,0,0,2,0,0,0,0,1,123,279,0,0,156,0,1,0,0,0,181,0,0,44,0,0,1,0,0,0,0,0,5,0,0,0,2,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,1,1,1,0,3,0,0,0,0,9,33,274,0,4,0,0,0,0,0,0,241,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,19,0,0,0,0,0,0,0,0,0,0,0,1,0,2,191,141,1 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,0,0,0,218,9,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,34,0,0,0,0,3,23,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,55,0,0,0,87,0,172,0,0,0,57,5,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,92,52,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,165,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,11,1 +41,0,0,5,0,34,4,0,35,41,7,0,0,0,47,0,16,0,6,1,0,0,0,2,0,0,0,0,10,0,20,0,0,0,22,0,34,6,0,0,119,0,0,0,1,0,0,10,0,0,0,0,19,104,0,0,0,0,0,1,0,0,0,81,0,50,0,0,9112,34,192,0,30,0,0,0,0,0,36,0,0,0,0,2,2,15,2327,0,0,22,0,0,1,8,0,183,15,14,0,0,2,0,182,0,45,0,0,1305,0,0,0,0,19,0,0,0,0,0,0,1,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,21,0,0,0,0,39,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1336,0,172,0,0,0,38,40,55,2024,1326,0,0,0,0,1,0,0,0,0,0,0,0,0,1632,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,8,50,283,5,0,0,278,0,295,0,0,0,208,25,0,0,0,0,0,0,0,0,0,115,1,0,0,0,3,0,0,0,0,20,152,90,0,0,29,0,0,0,0,0,1119,0,0,2028,0,0,1,0,0,0,0,0,20,0,0,0,2,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,48,0,0,0,0,1,56,278,0,30,0,0,0,0,0,0,114,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,43,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1868,158,1 +3,0,0,7,0,19,4,0,15,5,7,0,0,0,16,1,15,0,7,1,0,0,0,1,0,0,0,0,2,0,4,0,0,0,8,0,19,6,0,0,53,0,5,0,1,0,0,5,0,0,0,0,3,81,0,0,0,0,0,1,0,0,0,0,0,14,0,0,3355,19,83,0,6,0,0,0,0,0,16,0,0,0,0,0,1,8,1044,0,0,8,0,0,0,0,0,28,0,4,0,0,2,0,58,0,10,0,0,407,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,383,0,64,0,0,0,6,9,42,28,391,0,0,0,0,1,0,0,0,0,0,0,0,0,453,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,29,141,9,0,0,150,0,194,0,0,0,83,9,0,0,0,0,0,0,0,0,0,65,1,0,0,0,2,0,0,0,0,4,111,37,0,0,0,0,0,0,0,0,403,0,0,1187,0,0,1,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,364,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,8,0,0,0,0,1,27,239,0,6,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,592,71,1 +2,0,0,8,0,22,10,0,25,18,22,0,0,0,44,1,31,0,7,2,0,0,0,1,0,0,0,0,8,0,21,0,0,0,6,0,22,6,0,0,175,0,1,0,1,0,0,2,0,0,0,0,20,56,0,0,0,0,0,1,0,0,0,0,0,27,0,0,19428,22,180,0,29,0,0,0,0,0,22,0,0,0,0,0,2,9,2718,0,0,6,0,0,0,0,0,101,0,3,0,0,2,0,189,0,22,0,0,519,0,0,0,0,37,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,1694,0,83,0,0,0,40,43,58,110,1693,0,0,0,0,1,0,0,0,0,0,0,0,0,6218,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,131,214,10,0,0,198,0,252,0,0,0,105,15,0,0,0,0,0,0,0,0,0,140,1,0,0,0,3,0,0,0,0,21,109,69,0,0,0,0,0,0,0,0,1954,0,0,6821,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,26,0,0,0,0,381,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,48,0,0,0,0,1,28,380,0,29,0,0,1,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2548,31,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,0,0,0,50,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,20,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,0,0,0,59,0,55,0,0,0,29,2,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,28,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,72,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,4,1 +10,0,0,6,8,36,3,8,93,3,15,0,0,0,13,1,81,0,7,17,0,16,0,1,0,0,0,0,9,0,7,0,0,8,16,0,44,6,0,0,62,0,0,0,1,0,0,4,0,0,0,0,6,104,0,0,0,0,0,1,8,0,0,4,0,15,0,0,1072,36,681,0,16,0,0,0,0,0,15,24,0,0,0,0,1,7,169,0,8,16,8,0,0,4,0,88,10,5,0,0,2,8,116,0,10,0,0,624,0,0,0,0,7,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,9,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,158,0,162,0,0,0,12,11,84,100,175,0,0,0,0,1,0,0,0,0,0,0,0,0,553,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,8,15,455,14,0,0,478,0,425,0,0,0,180,20,0,0,0,0,0,0,2,0,0,213,1,0,0,0,34,0,0,0,0,3,122,60,0,0,17,0,0,0,0,0,173,0,0,115,0,0,1,0,0,0,0,0,11,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,21,0,0,0,8,65,60,152,0,16,0,0,0,0,0,0,93,9,0,0,0,0,0,0,0,0,0,0,0,8,0,1,5,0,0,0,0,0,0,0,0,0,0,0,15,0,4,425,77,1 +0,0,0,3,0,43,81,0,29,0,78,0,0,7,4,0,63,0,6,2,0,0,0,8,0,11,0,0,18,0,1,0,0,0,3,1134,43,6,0,0,47,0,0,0,1,0,0,1,0,0,0,0,1,1635,0,0,0,0,0,1,0,0,0,0,0,1,0,0,33632,43,487,0,15,0,0,0,0,0,161,0,0,0,0,0,9,280,6518,0,0,3,0,0,0,0,0,929,25,2,0,0,2,0,261,0,0,725,0,4944,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,1145,0,50,0,0,0,12,15,615,3303,1128,0,0,0,0,1,0,3,0,0,0,0,0,0,453,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,16,217,3,0,0,405,0,271,0,0,0,250,5,0,0,0,0,0,0,0,0,0,268,1,0,0,0,10,0,0,0,0,0,143,41,0,0,701,0,0,0,0,0,3624,1,0,436,82,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,50,0,0,0,0,1,46,262,0,16,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2411,45,1 +3,0,0,4,0,36,5,0,22,0,3,0,0,2,3,0,23,0,6,3,0,0,0,5,0,8,3,0,3,0,2,0,0,0,8,0,36,6,0,0,24,0,0,0,1,0,0,1,0,0,0,0,2,92,0,0,0,0,0,1,0,0,0,0,0,4,0,0,989,36,59,0,3,0,0,0,0,0,9,0,0,0,0,0,7,14,152,0,0,8,0,0,0,0,0,79,5,2,0,0,2,0,51,0,1,0,0,613,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,121,0,56,0,0,0,2,25,198,59,124,0,0,0,0,1,0,4,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,11,146,4,0,0,185,0,265,0,0,0,72,5,0,0,0,0,0,0,0,0,0,64,1,0,0,0,8,0,0,0,0,2,118,40,0,0,0,0,0,0,0,0,97,0,0,52,3,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,42,0,0,0,0,1,44,158,0,7,9,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,162,40,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,12,0,0,0,0,3,21,5,23,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,22,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,1,1 +6,0,0,5,4,24,3,4,62,1,8,0,0,0,8,1,52,0,7,9,0,8,0,1,0,0,3,0,5,0,7,1,0,4,7,0,28,6,0,0,46,0,0,0,1,0,0,3,0,0,0,0,7,81,0,0,0,0,0,1,4,0,0,0,0,9,0,0,2457,24,358,0,13,0,0,0,0,0,13,12,0,0,0,2,1,6,329,0,4,7,4,0,0,0,0,31,0,5,0,0,2,4,74,0,6,0,0,721,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,245,0,98,0,0,0,14,31,53,145,263,0,0,0,0,1,0,0,0,0,0,0,0,0,646,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,11,315,9,0,0,329,0,378,0,0,0,149,18,0,0,0,0,0,0,0,0,0,141,1,0,0,0,18,0,0,0,0,3,110,81,0,0,0,0,0,0,0,0,176,0,0,460,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,68,0,0,0,8,33,35,268,0,16,0,0,0,0,0,0,54,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,1,0,0,0,0,0,0,0,0,0,0,0,7,0,2,315,47,1 +2,0,0,0,0,28,4,0,6,0,1,0,1,0,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,3,0,28,6,0,0,25,0,0,0,1,0,0,0,0,0,0,0,1,56,0,0,0,0,0,1,0,0,0,0,0,0,0,0,749,28,25,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,78,0,0,3,0,0,0,0,0,68,0,0,0,0,2,0,23,0,0,0,0,624,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,10,10,0,0,0,37,0,25,0,0,0,0,3,180,312,42,0,0,0,0,1,0,3,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,17,10,88,0,0,0,96,0,203,0,0,0,24,4,0,0,0,0,0,0,0,0,0,33,0,0,0,0,8,0,0,0,0,0,111,13,0,0,0,0,0,0,0,0,74,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,0,0,0,0,0,1,31,31,0,2,8,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,28,1 +5,0,0,4,6,29,3,6,93,2,10,0,0,0,11,1,63,0,7,13,0,12,0,1,0,0,0,0,6,0,11,0,0,6,12,0,35,6,0,0,62,0,0,0,1,0,0,5,0,0,0,0,10,138,0,0,0,0,0,1,6,0,0,0,0,11,0,0,1154,29,547,0,17,0,0,0,0,0,21,18,0,0,0,0,1,8,143,0,6,12,6,0,0,0,0,55,0,8,0,0,2,6,85,0,9,0,0,470,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,152,0,106,0,0,0,20,19,73,58,164,0,0,0,0,1,0,0,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,14,368,10,0,0,400,0,362,0,0,0,159,7,0,0,0,0,0,0,0,0,0,188,1,0,0,0,26,0,0,0,0,7,115,58,0,0,0,0,0,0,0,0,150,0,0,131,0,0,1,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,26,0,0,0,8,49,47,320,0,17,0,0,0,0,0,0,100,6,0,0,0,0,0,0,0,0,0,0,0,6,0,1,2,0,0,0,0,0,0,0,0,0,0,0,12,0,3,261,64,1 +1,0,0,6,0,43,7,0,52,0,9,0,0,2,3,1,549,0,7,2,0,0,0,7,0,10,0,0,8,0,7,0,0,0,9,955,43,6,0,0,49,0,3,0,1,0,0,5,0,0,0,0,7,211,0,0,0,0,0,1,0,0,0,0,0,6,0,0,6702,43,647,0,12,0,0,0,0,0,20,0,0,0,0,1,8,23,1197,0,0,9,0,0,1,9,0,196,25,7,1,0,2,0,625,0,1,0,0,1673,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,469,0,73,0,0,0,12,12,242,437,450,0,0,0,0,1,0,3,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,32,13,252,6,0,0,268,0,356,0,0,0,110,11,0,0,0,0,0,0,0,0,0,630,1,0,0,0,9,0,0,0,0,6,134,44,0,0,45,0,0,0,0,0,1593,1,0,234,6,0,1,1,0,0,0,0,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,17,0,0,0,0,1,52,173,0,13,12,0,0,0,0,0,60,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,580,60,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,103,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1239,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,45,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,309,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,56,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,117,3,0,0,114,0,409,0,0,0,40,10,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,53,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,128,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,101,24,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,148,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2105,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,53,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,338,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,66,0,56,0,0,0,4,10,32,174,75,0,0,0,0,1,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,134,3,0,0,114,0,600,0,0,0,40,12,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,61,0,0,67,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,99,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,110,27,1 +10,0,0,7,0,38,4,0,22,12,7,0,0,0,26,1,15,0,7,1,0,0,0,2,0,1,0,0,1,0,6,0,0,0,25,0,38,6,0,0,106,0,0,0,1,0,0,2,0,0,0,0,5,82,0,0,0,0,0,1,0,0,0,17,0,24,0,0,459,38,87,0,8,0,0,0,0,0,8,0,0,0,0,1,2,6,75,0,0,25,0,0,0,0,0,32,0,3,0,0,2,0,86,0,20,0,0,538,0,0,0,0,15,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,9,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,79,0,63,0,0,0,10,13,67,44,90,0,0,0,0,1,0,0,0,0,0,0,0,0,357,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,41,203,9,0,0,184,0,243,0,0,0,109,7,0,0,0,0,0,0,0,0,0,82,1,0,0,0,3,0,0,0,0,6,128,12,0,0,0,0,0,0,0,0,50,0,0,62,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,0,1,63,206,0,8,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,2,129,85,1 +8,0,0,5,0,25,4,0,24,0,8,0,0,0,4,0,21,0,6,1,0,0,0,1,0,0,3,0,3,0,4,0,0,0,16,0,25,6,0,0,52,0,0,0,1,0,0,2,0,0,0,0,3,55,0,0,0,0,0,1,0,0,0,0,0,5,0,0,229,25,67,0,7,0,0,0,0,0,5,0,0,0,0,0,1,4,23,0,0,16,0,0,1,8,0,83,15,1,0,0,2,0,79,0,1,0,0,379,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,38,0,56,0,0,0,6,7,39,77,43,0,0,0,0,1,0,0,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,8,145,5,0,0,166,0,230,0,0,0,105,8,0,0,0,0,0,0,0,0,0,67,1,0,0,0,2,0,0,0,0,1,113,58,0,0,30,0,0,0,0,0,50,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,8,0,0,0,2,1,41,141,0,10,0,0,0,0,0,0,62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,73,20,1 +9,0,0,15,0,39,18,0,111,16,40,0,0,0,34,2,24,0,7,2,0,0,0,3,0,0,3,0,4,0,5,1,0,0,25,0,39,6,0,0,285,0,0,0,1,0,0,2,0,0,0,0,5,94,0,0,0,0,0,1,0,0,0,0,0,27,0,0,4692,39,246,0,10,0,0,0,0,0,11,0,0,0,0,0,4,8,535,0,0,25,0,0,1,80,0,669,75,4,0,0,2,0,508,0,21,0,0,689,0,0,0,0,21,1,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,4,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,55,0,0,0,0,0,0,451,0,86,0,0,0,10,15,78,502,463,0,0,0,0,1,0,0,0,0,0,0,0,0,1623,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,36,228,23,0,0,242,0,305,0,0,0,165,29,0,0,0,0,0,0,0,0,0,236,1,0,0,0,5,0,0,0,0,5,134,238,0,0,177,0,41,0,0,0,429,0,0,1290,0,3,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,15,0,0,0,0,1,64,196,0,13,0,0,0,0,0,0,277,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,2,615,138,1 +4,0,0,6,0,23,3,0,15,1,4,0,0,0,7,1,15,0,7,1,0,0,0,1,0,0,0,0,6,0,11,0,0,0,10,0,23,6,0,0,29,0,0,0,1,0,0,1,0,0,0,0,10,65,0,0,0,0,0,1,0,0,0,0,0,7,0,0,480,23,61,0,17,0,0,0,0,0,5,0,0,0,0,0,1,3,50,0,0,10,0,0,0,0,0,37,0,2,0,0,2,0,44,0,5,0,0,634,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,61,0,43,0,0,0,20,18,50,49,70,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,12,142,6,0,0,172,0,247,0,0,0,99,6,0,0,0,0,0,0,0,0,0,52,1,0,0,0,2,0,0,0,0,7,109,58,0,0,0,0,0,0,0,0,73,0,0,25,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,26,0,0,0,10,1,33,198,0,17,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,86,23,1 +18,0,0,5,4,45,17,16,81,12,14,0,0,0,18,0,35,0,6,13,0,4,2,3,0,0,0,0,11,0,14,0,0,4,28,0,49,6,136,0,139,0,0,0,1,0,0,5,0,0,0,0,13,159,0,0,0,0,0,1,0,0,0,32,0,24,0,0,1000,45,452,0,25,0,0,0,0,0,17,12,0,0,0,1,5,13,144,0,16,28,4,0,1,29,0,300,15,5,0,0,2,4,225,0,16,0,0,650,0,0,0,0,13,4,0,0,0,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,155,0,101,0,0,0,26,21,84,267,195,0,0,0,0,1,0,0,0,0,0,0,0,0,711,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,31,313,9,0,0,364,0,478,0,0,0,209,42,0,0,0,0,0,0,0,0,0,171,1,0,0,0,22,0,0,0,0,10,151,125,0,0,34,0,2,0,0,0,832,0,0,136,0,0,1,11,0,0,0,0,8,0,0,0,2,0,0,0,0,0,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,37,0,0,0,8,33,77,336,0,25,0,0,0,0,0,0,199,3,0,0,0,0,0,0,0,0,0,0,0,4,0,1,14,6,0,0,0,0,0,0,0,0,0,0,7,0,3,204,231,1 +5,0,0,6,2,30,3,2,78,2,17,0,0,0,44,0,34,0,7,5,0,4,0,3,0,0,0,0,6,0,3,0,0,2,16,0,32,40,0,0,147,0,0,0,1,0,0,1,1,0,0,0,2,82,0,0,0,0,0,1,2,0,0,1,0,45,0,0,5239,30,303,0,9,0,0,0,0,0,14,6,0,0,0,0,3,6,383,0,2,16,2,0,2,17,0,174,35,4,0,0,2,2,266,0,3,0,0,740,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8,0,0,0,0,0,0,125,0,131,0,0,0,4,5,66,146389,134,0,0,0,0,1,0,0,0,0,0,0,0,0,5301,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,29,285,8,0,0,244,0,469,0,0,0,120,47,0,0,0,0,0,0,0,0,0,183,1,0,3,0,12,0,0,0,0,1,113,72,0,0,66,0,0,0,0,0,155,0,0,510,0,0,1,0,0,0,0,0,9,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1635467,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,10,0,0,0,0,17,48,123,0,9,0,0,0,0,0,0,90,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1010,197,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,108,0,0,0,0,0,1,0,0,0,0,0,2,0,0,963,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,41,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,310,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,57,0,0,0,4,10,36,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,118,3,0,0,117,0,312,0,0,0,40,12,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,52,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,166,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,100,24,1 +11,0,0,10,0,28,4,0,29,2,7,0,0,0,17,1,31,0,12,1,0,0,0,2,0,1,3,0,8,0,18,0,0,0,12,0,28,6,107,0,59,0,4,0,1,0,0,4,0,0,0,0,12,142,0,0,0,0,0,1,0,0,0,0,0,10,0,0,4299,28,133,0,27,0,0,0,0,0,21,0,0,0,0,0,2,8,1201,0,0,12,0,0,0,0,0,78,0,5,0,0,2,0,99,0,6,0,0,474,0,0,0,0,19,3,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,1,0,0,1,3,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,6,0,0,0,0,0,0,505,0,90,0,0,0,24,33,79,537,506,0,0,0,0,1,0,0,0,0,0,0,0,0,1228,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,45,21,235,12,0,0,254,0,409,0,0,0,132,1981,0,0,0,0,0,0,4,0,0,101,1,0,0,0,3,0,0,0,0,12,153,57,0,0,0,0,0,0,0,0,424,0,0,1569,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,380,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,37,0,0,0,12,2,40,394,0,30,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,658,78,1 +0,0,0,5,0,40,7,0,45,0,5,0,0,6,4,0,558,0,6,2,0,0,0,7,0,10,3,0,6,0,2,0,0,0,4,898,40,6,0,0,43,0,0,0,1,0,0,7,0,0,0,0,2,247,0,0,0,0,0,1,0,0,0,0,0,2,0,0,12700,40,676,0,5,0,0,0,0,0,39,0,0,0,0,0,8,28,1857,0,0,4,0,0,0,0,0,204,20,11,0,0,2,0,624,0,0,3,0,1412,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,986,0,122,0,0,0,3,8,271,679,955,0,0,0,0,1,0,4,0,0,0,0,0,0,1680,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,84,16,222,5,0,0,290,0,366,0,0,0,129,9,0,0,0,0,0,0,10,0,0,631,1,0,0,0,9,0,0,0,0,2,124,63,0,0,7,0,0,0,0,0,1710,1,0,1405,7,0,1,1,0,0,0,0,15,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,7,0,0,0,0,1,44,363,0,9,12,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5,903,111,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,77,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,20,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,41,0,0,0,65,0,70,0,0,0,35,2,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,33,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,77,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,7,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,0,0,0,72,8,18,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,24,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,43,0,0,0,51,0,47,0,0,0,21,3,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,20,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,49,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,9,1 +6086,0,0,6,0,56,11,0,46,4,12,0,0,2,13,0,19,0,6,3,0,0,0,6,0,8,0,0,85,0,2,0,0,0,18,0,56,6,0,0,119,0,0,0,1,0,0,4,0,0,0,0,2,255,0,0,0,0,0,1,0,0,0,12,0,16,0,0,62009,56,194,0,85,0,0,0,0,0,20,0,0,0,0,0,8,18,1163,0,0,18,0,0,1,22,0,357,30,7,0,0,2,0,245,0,9,0,0,120688,0,0,0,0,18190,4,1,0,11,0,0,1,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,6076,0,0,0,0,0,12124,0,6077,0,0,0,0,0,0,6100,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,7,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,4,0,0,0,0,6073,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,10,10,10,0,0,0,822,0,98,0,0,0,2,5,233,33858,826,0,0,0,0,1,0,3,0,0,0,0,0,0,101289,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,510,6,0,0,275,0,738,0,0,0,130,147,0,0,0,0,0,0,0,0,0,109,1,0,0,0,9,0,0,0,0,2,162,277,0,0,49,0,0,0,0,0,195,0,0,93,3,0,1,1,0,0,0,0,10,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,85,0,0,0,0,1,74,251,0,86,9,0,0,0,0,0,130,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,5,324,298,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,60,0,0,0,0,0,1,0,0,0,0,0,2,0,0,352,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,49,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,269,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,62,0,57,0,0,0,4,10,36,174,71,0,0,0,0,1,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,112,3,0,0,117,0,181,0,0,0,40,8,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,58,0,0,43,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,72,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,108,20,1 +7,0,0,15,0,52,9,0,48,5,9,0,0,6,20,1,820,0,7,4,0,0,0,9,0,11,3,0,9,0,4,0,0,0,10,1013,52,36,0,0,90,0,3,0,1,0,0,3,0,0,0,0,4,192,0,0,0,0,0,1,0,0,0,0,0,15,0,0,9204,52,925,0,9,0,0,0,0,0,18,0,0,0,0,0,12,32,2235,0,0,10,0,0,0,0,0,221,20,3,0,0,2,0,934,0,10,1,0,2061,0,0,0,0,24,0,1,0,2,0,0,1,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,44,12,12,12,0,0,0,734,0,78,0,0,0,7,14,299,844,716,0,0,0,0,1,0,3,0,0,0,0,0,0,420,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,89,54,317,26,0,0,285,0,494,0,0,0,111,22,0,0,0,0,0,0,0,0,0,920,1,0,0,0,13,0,0,0,0,4,139,40,0,0,6,0,0,0,0,0,2294,1,0,781,7,0,1,1,1,0,0,0,6,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,0,0,0,7,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,18,0,0,0,4,1,62,121,0,13,14,0,1,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,3,663,114,1 +1,0,0,14,0,20,2,0,35,1,3,0,0,0,10,0,20,0,6,1,0,0,0,1,0,5,0,0,4,0,0,0,0,0,7,0,20,18,0,0,42,0,0,0,1,0,0,3,0,0,0,0,4,95,0,0,0,0,0,1,0,0,0,0,0,5,0,0,480,20,85,0,9,0,0,0,0,0,9,0,0,0,0,1,1,6,75,0,0,7,0,0,0,0,0,22,0,6,0,0,2,0,54,0,3,0,0,216,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,82,0,99,0,0,0,4,7,39,41,93,0,0,0,0,1,0,0,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,8,6,127,17,0,0,169,0,232,0,0,0,94,594,0,0,0,0,0,0,0,0,0,76,1,0,0,0,2,0,0,0,0,5,104,46,0,0,0,0,0,0,0,0,61,0,0,47,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,4,0,0,0,0,1,27,259,0,9,0,0,0,0,0,0,87,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,229,59,1 +0,0,0,11,1,45,40,1,99,1,12,0,0,6,9,0,818,0,8,3,0,0,0,8,0,11,0,0,5,0,1,0,0,1,8,1130,46,54,0,0,107,0,0,0,1,0,0,4,1,0,0,0,1,216,0,0,0,0,0,1,0,0,0,0,0,5,0,0,10744,45,977,0,2,0,0,0,0,0,27,0,0,0,0,0,10,27,1905,0,1,8,1,0,1,17,0,379,35,11,0,0,4,1,922,0,2,1,0,1881,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,12,12,12,0,0,0,880,0,94,0,0,0,0,3,280,527,861,0,0,0,0,1,0,3,0,0,0,0,0,0,1687,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,188,32,435,14,0,0,431,0,705,0,1,0,151,13,0,0,0,0,0,0,0,0,0,992,1,0,5,0,11,0,0,0,0,0,144,71,0,0,40,0,0,0,0,0,2401,1,0,922,8,0,1,1,0,0,0,0,16,0,1,0,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,48,1,1,1,0,1,0,0,0,0,9,54,229,0,3,14,0,0,0,0,0,160,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,1,0,3,1051,92,1 +16,0,0,4,0,66,6,0,36,8,3,0,0,2,13,0,687,0,6,4,0,0,0,6,0,10,0,0,12,0,9,0,0,0,22,976,66,6,0,0,94,0,0,0,1,0,0,7,0,0,0,0,9,240,0,0,0,0,0,1,0,0,0,0,0,14,0,0,26336,66,795,0,18,0,0,0,0,0,28,0,0,0,0,0,9,26,4833,0,0,22,0,0,0,0,0,137,5,9,1,0,2,0,741,0,11,0,0,2496,0,0,0,0,38,0,4,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,20,0,0,0,0,0,22,0,14,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,12,12,12,0,0,0,3378,0,131,0,0,0,16,19,301,537,3356,0,0,0,0,1,0,5,0,0,0,0,0,0,722,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,21,334,4,0,0,329,0,405,0,0,0,141,11,0,0,0,0,0,0,0,0,0,753,1,0,0,0,10,0,0,0,0,9,149,29,0,0,0,0,0,0,0,0,2340,1,0,170,6,0,1,1,0,0,0,0,12,0,0,0,3,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,71,1,1,1,0,25,0,0,0,0,1,88,164,0,19,12,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,997,58,1 +5,0,0,3,0,21,2,0,17,2,3,0,0,0,7,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,7,0,21,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,7,0,0,480,21,55,0,4,0,0,0,0,0,10,0,0,0,0,0,1,4,65,0,0,7,0,0,0,0,0,13,0,3,0,0,2,0,29,0,5,0,0,343,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,4,0,3,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,87,0,81,0,0,0,0,3,42,22,91,0,0,0,0,1,0,0,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,8,136,3,0,0,143,0,242,0,0,0,64,11,0,0,0,0,0,0,0,0,0,50,1,0,0,0,2,0,0,0,0,1,106,32,0,0,0,0,0,0,0,0,34,0,0,51,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,3,0,0,0,0,1,28,394,0,4,0,0,1,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,150,26,1 +1,0,0,6,0,37,7,0,48,0,9,0,0,2,3,1,500,0,7,2,0,0,0,7,0,10,0,0,5,0,4,0,0,0,4,955,37,6,0,0,39,0,2,0,1,0,0,3,0,0,0,0,4,192,0,0,0,0,0,1,0,0,0,0,0,6,0,0,18960,37,587,0,6,0,0,0,0,0,19,0,0,0,0,1,8,21,4196,0,0,4,0,0,1,9,0,180,25,4,0,0,2,0,567,0,1,0,0,3621,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,709,0,90,0,0,0,6,6,253,1234,691,0,0,0,0,1,0,3,0,0,0,0,0,0,545,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,13,449,6,0,0,275,0,257,0,0,0,123,88,0,0,0,0,0,0,0,0,0,577,1,0,0,0,9,0,0,0,0,3,131,69,0,0,45,0,0,0,0,0,3141,1,0,1100,6,0,1,1,1,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,6,364,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,8,0,0,0,0,1,41,134,0,7,12,0,0,0,0,0,43,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1922,173,1 +2,0,0,10,0,49,16,0,54,1,11,0,0,6,14,1,703,0,7,1,0,0,0,9,0,11,0,0,10,0,3,0,0,0,10,2324,49,6,0,0,85,0,1,0,1,0,0,2,0,0,0,0,3,273,0,0,0,0,0,1,0,0,0,0,0,11,0,0,12955,49,833,0,9,0,0,0,0,0,31,0,0,0,0,0,9,39,2856,0,0,10,0,0,0,0,0,224,20,3,0,0,2,0,799,0,6,16,0,1681,0,0,0,0,9,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,12,12,12,0,0,0,1026,0,93,0,0,0,6,9,300,477,999,0,0,0,0,1,0,3,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,41,315,12,0,0,344,0,380,0,0,0,164,12,0,0,0,0,0,0,0,0,0,812,1,0,0,0,10,0,0,0,0,3,145,59,0,0,18,0,0,0,0,0,2285,1,0,805,10,0,1,1,1,0,0,0,7,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,10,363,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,16,0,0,0,0,1,59,199,0,10,14,0,1,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,968,93,1 +13,0,0,9,0,64,5,0,56,2,7,0,0,2,9,0,27,0,7,3,0,0,0,6,0,8,8,0,5,0,63,0,0,0,36,0,64,6,0,0,139,0,0,0,1,0,0,5,0,0,0,0,63,207,0,0,0,0,0,1,0,0,0,5,0,12,0,0,1628,64,206,0,67,0,0,0,0,0,24,0,0,0,0,0,8,19,193,0,0,36,0,0,1,8,0,391,20,9,0,0,2,0,176,0,7,0,0,1230,0,0,0,0,6,2,2,0,0,0,0,1,0,0,0,4,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,97,10,10,10,0,0,0,174,0,121,0,0,0,124,130,229,326,170,0,0,0,0,1,0,4,0,0,0,0,0,0,638,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,1,32,60,317,9,0,0,298,0,530,0,0,0,182,38,0,0,0,0,0,0,0,0,0,113,1,0,0,0,9,0,0,0,0,60,146,73,0,0,29,0,0,0,0,0,118,0,0,193,2,0,1,1,0,0,0,0,13,0,1,0,2,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,7,0,0,0,0,0,2,65,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,128,0,0,0,114,1,100,386,0,76,8,0,0,0,0,0,113,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,283,1098,1 +37,0,0,8,1,49,38,1,93,2,16,0,3,6,9,4,673,0,8,1,0,0,0,9,0,10,0,0,11,0,1,0,0,1,13,898,50,89,0,0,133,0,2,0,1,0,0,2,0,0,0,0,1,197,0,0,0,0,0,1,0,0,0,22,0,12,0,0,9574,49,812,0,9,0,0,0,0,0,18,0,0,0,0,0,9,24,1814,0,1,13,1,0,6,16,0,387,50,3,0,0,10,1,789,0,3,3,0,1496,0,0,0,0,1,6,1,0,8,0,0,1,0,0,0,14,0,0,1,0,0,0,0,0,0,0,0,6,0,0,0,0,0,7,0,7,0,0,6,0,0,0,17,0,0,0,0,0,0,0,0,6,0,1,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,50,12,12,12,0,0,0,646,0,57,0,0,0,1,4,293,527,612,0,0,0,0,1,0,3,0,0,0,0,0,0,1234,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,211,59,410,9,0,0,433,0,602,0,1,0,148,44,0,0,0,0,0,0,0,0,0,850,1,0,0,0,10,0,0,0,0,1,166,41,0,0,65,0,0,0,0,0,2055,1,0,1550,7,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,7,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,52,1,1,1,0,11,0,0,0,0,9,63,175,0,10,12,0,1,0,0,0,138,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,2,741,81,1 +3,0,0,5,0,18,4,0,15,2,4,0,0,0,8,1,15,0,7,1,0,0,0,2,0,0,0,0,4,0,14,0,0,0,7,0,18,6,0,0,29,0,0,0,1,0,0,1,0,0,0,0,13,46,0,0,0,0,0,1,0,0,0,5,0,9,0,0,341,18,65,0,17,0,0,0,0,0,6,0,0,0,0,0,2,4,53,0,0,7,0,0,0,0,0,49,0,2,0,0,2,0,50,0,6,0,0,395,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,63,0,50,0,0,0,26,25,38,45,73,0,0,0,0,1,0,0,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,13,114,5,0,0,111,0,191,0,0,0,43,7,0,0,0,0,0,0,0,0,0,54,1,0,0,0,3,0,0,0,0,10,108,7,0,0,0,0,0,0,0,0,62,0,0,49,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,30,0,0,0,24,1,25,49,0,18,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,36,1 +32,0,0,15,3,46,81,3,137,15,36,0,2,0,58,2,175,0,13,3,0,0,0,2,0,9,0,0,11,0,15,0,2,3,24,0,49,385,0,0,272,0,0,0,1,0,0,13,1,0,0,0,23,245,0,0,0,0,0,1,0,0,0,0,0,30,0,0,8351,46,484,0,35,0,0,0,0,0,48,0,0,0,0,6,4,23,1639,0,3,24,3,0,8,42,0,582,45,22,0,0,12,3,478,0,18,0,0,827,0,0,0,0,24,22,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,0,0,4,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0,1123,0,199,0,0,0,37,48,89,503,1143,0,0,0,0,1,0,0,0,0,0,0,0,0,2862,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,395,95,708,20,0,0,830,0,1279,0,3,0,366,20,0,0,0,0,0,0,0,0,0,504,1,0,2,0,5,0,0,0,0,27,174,234,0,0,91,0,18,0,0,0,1683,0,0,2062,0,0,1,0,1,0,0,0,24,0,0,0,5,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,23,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,46,1,1,1,0,55,0,0,0,16,25,73,469,0,35,0,0,0,0,0,0,341,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,21,0,0,0,0,0,0,0,0,0,0,0,3,0,9,5965,225,1 +5,0,0,7,0,64,99,0,66,4,97,0,0,7,13,1,1575,0,7,3,0,0,0,8,0,11,3,0,28,0,10,0,0,0,18,3165,64,6,0,0,74,0,0,0,1,0,0,4,0,0,0,0,10,1636,0,0,0,0,0,1,0,0,0,0,0,12,0,0,166604,64,2176,0,34,0,0,0,0,0,206,0,0,0,0,0,10,358,9727,0,0,18,0,0,0,0,0,1116,25,6,0,0,2,0,1865,0,9,875,0,12023,0,0,0,0,3,0,4,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,72,12,12,12,0,0,0,2010,0,129,0,0,0,32,52,788,17013,1998,0,0,0,0,1,0,6,0,0,0,0,0,0,811,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,108,36,453,7,0,0,640,0,407,0,0,0,457,35,0,0,0,0,0,0,0,0,0,1865,1,0,0,0,11,0,0,0,0,6,236,81,0,0,848,0,1,0,0,0,8399,1,0,592,99,0,1,1,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,99,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,129,0,0,0,8,1,82,409,0,38,14,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3985,120,1 +24,0,0,19,2,51,60,2,111,11,77,0,1,2,85,5,681,0,11,4,0,0,0,6,0,10,0,0,11,0,11,0,0,2,17,898,53,303,0,0,223,0,0,0,2,0,0,2,0,0,0,0,11,232,0,0,0,0,0,1,0,0,0,13,0,33,0,0,25512,51,979,0,19,0,0,0,0,0,19,0,0,0,0,0,9,19,4302,0,2,17,2,0,6,23,0,407,50,3,0,0,8,2,902,0,23,0,0,1631,0,0,0,0,7,7,1,0,0,0,0,1,0,0,0,70,0,0,3,0,0,0,0,3,0,110,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,18,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,12,12,12,0,0,0,3606,0,76,0,0,0,20,17,268,647,3701,0,0,0,0,1,0,3,0,0,0,0,0,0,1227,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,247,93,622,26,0,0,905,0,1121,0,2,0,505,27,0,0,0,0,0,0,0,0,0,1033,1,0,0,0,10,0,0,0,0,7,203,272,0,0,82,0,1,0,0,0,1877,1,0,379,7,0,1,1,1,0,0,0,6,0,0,0,1,0,0,0,0,0,11,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,7,19,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,62,1,1,1,0,28,0,0,0,4,17,70,654,0,20,12,0,0,0,0,0,616,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,19,0,0,0,0,0,0,0,0,0,0,0,2,0,3,900,94,1 +15,0,0,20,9,49,129,8,537,13,151,0,0,0,54,7,178,0,12,11,0,2,1,4,0,56,0,0,3,0,4,0,0,7,29,0,54,118,26,1,1035,0,2,0,1,0,0,2,1,0,0,0,8,332,0,0,0,0,0,1,2,0,0,9,0,94,0,0,8014,49,1228,0,62,0,0,0,0,0,10,9,0,0,0,0,8,11,79,0,8,29,7,0,11,447,0,3681,295,5,0,0,7,9,2385,0,27,0,0,1036,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,117,0,115,0,0,0,10,61,115,8052,125,0,0,0,0,1,0,0,0,0,0,0,0,0,5967,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,220,66,658,32,0,0,718,0,1136,0,2,0,327,906,0,0,0,0,0,0,0,0,0,1068,1,0,2,0,18,0,0,0,0,30,163,1105,0,0,757,0,0,0,4,0,1368,0,0,33,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,12,0,0,0,1,0,0,1,0,0,0,0,12,12,0,0,2500,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,2,51,1,1,1,1,7,0,0,0,4,64,83,259,0,63,0,0,0,0,0,0,1145,4,0,0,0,0,0,0,0,0,0,0,0,5,1,1,31,0,0,0,0,0,0,0,0,1,0,0,7,0,1,279,199,1 +2,0,0,6,0,35,7,0,32,0,9,0,0,2,3,1,420,0,7,2,0,0,0,7,0,10,0,0,5,0,7,0,0,0,3,955,35,6,0,0,37,0,2,0,1,0,0,2,0,0,0,0,7,150,0,0,0,0,0,1,0,0,0,0,0,6,0,0,17065,35,492,0,9,0,0,0,0,0,17,0,0,0,0,0,8,19,4073,0,0,3,0,0,1,9,0,179,25,3,0,0,2,0,478,0,1,0,0,3012,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,12,12,12,0,0,0,612,0,51,0,0,0,12,11,228,1233,596,0,0,0,0,1,0,3,0,0,0,0,0,0,365,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,13,219,6,0,0,222,0,324,0,0,0,81,10,0,0,0,0,0,0,0,0,0,481,1,0,0,0,9,0,0,0,0,3,132,34,0,0,45,0,0,0,0,0,2940,1,0,917,6,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,6,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,14,0,0,0,8,1,38,30,0,10,12,0,0,0,0,0,42,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1899,57,1 +6,0,0,4,0,18,3,0,15,1,4,0,0,0,6,1,16,0,7,1,0,0,0,2,0,0,0,0,6,0,5,0,0,0,5,0,18,6,0,0,24,0,0,0,1,0,0,2,0,0,0,0,4,101,0,1,0,0,0,1,0,0,0,0,0,6,0,0,785,18,60,0,11,0,0,0,0,0,8,0,0,0,0,1,2,6,176,0,0,5,0,0,0,0,0,28,0,4,0,0,2,0,38,0,4,0,0,381,0,0,0,0,4,1,1,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0,166,0,105,0,0,0,8,9,41,50,212,0,0,0,0,1,0,0,0,0,0,0,0,0,495,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,8,13,119,4,0,0,167,0,272,0,0,0,98,41,0,0,0,0,0,0,0,0,0,52,1,0,0,0,3,0,0,0,0,4,104,65,0,0,0,0,0,0,0,0,79,0,0,55,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,14,0,0,0,0,1,23,325,0,11,0,0,0,0,0,0,103,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,243,42,1 +6,0,0,5,4,25,3,4,62,2,8,0,0,0,10,1,52,0,7,9,0,8,0,1,0,0,3,0,5,0,7,1,0,4,8,0,29,6,0,0,53,0,0,0,1,0,0,3,0,0,0,0,7,87,0,0,0,0,0,1,4,0,0,0,0,11,0,0,2361,25,360,0,13,0,0,0,0,0,13,12,0,0,0,1,1,6,308,0,4,8,4,0,0,0,0,31,0,4,0,0,2,4,78,0,8,0,0,721,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,240,0,99,0,0,0,14,31,54,145,259,0,0,0,0,1,0,0,0,0,0,0,0,0,633,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,13,302,9,0,0,332,0,391,0,0,0,152,15,0,0,0,0,0,0,0,0,0,143,1,0,0,0,18,0,0,0,0,3,111,81,0,0,0,0,0,0,0,0,166,0,0,457,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,68,0,0,0,8,33,37,269,0,16,0,0,0,0,0,0,60,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,2,0,0,0,0,0,0,0,0,0,0,0,8,0,2,297,53,1 +13,0,0,8,0,45,4,0,38,18,4,0,0,2,25,0,83,0,7,3,0,0,0,5,0,8,39,0,12,0,20,0,0,0,13,0,45,6,0,0,94,0,0,0,1,0,0,5,0,0,0,0,20,148,0,0,0,0,0,1,0,0,0,4,0,26,0,0,3224,45,235,0,31,0,0,0,0,0,16,0,0,0,0,0,7,19,566,0,0,13,0,0,0,0,0,163,5,7,0,0,2,0,342,0,22,0,0,1060,0,0,0,0,36,1,1,0,6,0,0,1,0,0,0,7,0,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,6,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,28,10,10,10,0,0,0,397,0,127,0,0,0,38,77,217,131,397,0,0,0,0,1,0,3,0,0,0,0,0,0,1134,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,2,32,44,232,10,0,0,214,0,379,0,0,0,92,13,0,0,0,0,0,0,0,0,0,163,1,0,0,0,8,0,0,0,0,20,129,33,0,0,0,0,0,0,0,0,321,0,0,641,2,0,1,1,0,0,0,0,7,0,0,0,2,0,0,0,0,0,18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,36,0,0,0,12,1,58,131,0,71,8,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,481,160,1 +10,0,0,5,0,56,5,0,29,10,3,0,0,2,19,0,27,0,6,3,0,0,0,6,0,9,6,0,5,0,6,0,0,0,29,0,56,6,0,0,89,0,0,0,1,0,0,7,0,0,0,0,7,153,0,0,0,0,0,1,0,0,0,20,0,21,0,0,2675,56,148,0,10,0,0,0,0,0,37,0,0,0,0,0,8,22,453,0,0,29,0,0,0,0,0,113,5,12,0,0,2,0,114,0,15,0,0,997,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,9,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,10,10,10,0,0,0,401,0,161,0,0,0,11,20,185,67,398,0,0,0,0,1,0,2,0,1,0,0,0,0,853,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,2,32,27,295,5,0,0,394,0,391,0,0,0,283,20,0,0,0,0,0,0,5,0,0,91,1,0,0,0,9,0,0,0,0,7,158,146,0,0,0,0,0,0,0,0,173,0,0,317,3,0,1,1,0,0,0,0,20,0,1,0,1,0,0,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,11,0,0,0,4,1,85,591,0,17,9,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,2,0,1,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,7,430,108,1 +4,0,0,10,0,54,7,0,52,6,10,0,0,6,21,1,940,0,7,2,0,0,0,8,0,11,0,0,10,0,5,0,0,0,18,898,54,6,0,0,116,0,0,0,1,0,0,8,0,0,0,0,5,1411,0,0,0,0,0,1,0,0,0,0,0,18,0,0,9195,54,1107,0,11,0,0,0,0,0,46,0,0,0,0,0,9,33,1854,0,0,18,0,0,0,0,0,223,20,13,0,0,2,0,1040,0,13,1,0,2488,0,0,0,0,11,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,54,12,12,12,0,0,0,780,0,147,0,0,0,9,11,282,1412,746,0,0,0,0,1,0,3,0,0,0,0,0,0,962,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,84,48,440,12,0,0,618,0,523,0,0,0,280,24,0,0,0,0,0,0,0,0,0,1044,1,0,0,0,10,0,0,0,0,4,151,330,0,0,6,0,0,0,0,0,2713,1,0,485,8,0,1,1,0,0,0,0,19,0,0,0,2,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,17,0,0,0,0,1,72,1922,0,12,14,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1075,830,1 +2,0,0,5,0,47,9,0,39,3,4,0,0,2,12,1,698,0,7,3,0,0,0,6,0,10,0,0,7,0,10,0,0,0,11,1040,47,6,0,0,59,0,0,0,1,0,0,4,0,0,0,0,10,224,0,0,0,0,0,1,0,0,0,0,0,13,0,0,30790,47,803,0,14,0,0,0,0,0,27,0,0,0,0,0,8,20,5342,0,0,11,0,0,0,0,0,114,5,9,0,0,2,0,753,0,10,0,0,2107,0,0,0,0,3,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,40,12,12,12,0,0,0,4270,0,108,0,0,0,18,16,277,400,4236,0,0,0,0,1,0,4,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,22,254,5,0,0,277,0,330,0,0,0,114,4,0,0,0,0,0,0,0,0,0,772,1,0,0,0,9,0,0,0,0,6,134,31,0,0,0,0,0,0,0,0,2109,1,0,134,8,0,1,1,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,22,0,0,0,8,1,58,183,0,15,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,789,47,1 +3,0,0,7,0,20,3,0,16,5,7,0,0,0,16,1,36,0,7,1,0,0,0,1,0,0,0,0,2,0,5,0,0,0,9,0,20,69,0,0,76,0,2,0,1,0,0,3,0,0,0,0,4,47,0,0,0,0,0,1,0,0,0,0,0,14,0,0,1606,20,96,0,7,0,0,0,0,0,11,0,0,0,0,0,1,7,561,0,0,9,0,0,0,0,0,28,0,4,0,0,2,0,56,0,10,0,0,402,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,87,0,47,0,0,0,8,10,46,30,128,0,0,0,0,1,0,0,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,29,160,9,0,0,245,0,325,0,0,0,177,17,0,0,0,0,0,0,0,0,0,86,1,0,0,0,2,0,0,0,0,5,121,99,0,0,0,0,0,0,0,0,278,0,0,799,0,0,1,0,1,0,0,0,5,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,10,0,0,0,2,1,29,323,0,7,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,304,73,1 +8,0,0,5,8,48,14,20,94,7,12,0,0,0,16,1,66,0,7,19,0,12,2,2,0,0,0,0,11,0,9,0,0,8,29,0,56,6,658,0,79,0,0,0,1,0,0,6,0,0,0,0,8,346,0,0,0,0,0,1,4,0,0,11,0,17,0,0,14549,48,741,0,20,0,0,0,0,0,27,24,0,0,0,2,2,13,2784,0,20,29,8,0,0,0,0,59,0,8,0,0,2,8,115,0,14,0,0,1115,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2363,0,132,0,0,0,16,14,94,69,2372,0,0,0,0,1,0,0,0,0,0,0,0,0,2771,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,21,533,13,0,0,533,0,460,0,0,0,267,41,0,0,0,0,0,0,0,0,0,210,1,0,0,0,35,0,0,0,0,5,138,98,0,0,0,0,0,0,0,0,1491,0,0,2940,0,0,1,0,0,0,0,0,9,0,0,0,4,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,27,0,0,0,8,65,85,385,0,20,0,0,0,0,0,0,82,4,0,0,0,0,0,0,0,0,0,0,0,8,0,1,7,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1384,821,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,79,0,0,0,0,0,1,0,0,0,0,0,2,0,0,679,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,43,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,466,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,56,0,0,0,4,10,32,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,111,3,0,0,114,0,260,0,0,0,40,9,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,58,0,0,38,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,141,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,98,23,1 +5,0,0,12,1,88,19,1,89,1,15,0,0,6,8,0,573,0,6,4,0,1,1,8,0,11,0,0,20,0,11,0,0,1,45,1228,89,6,0,0,118,0,0,0,1,0,0,15,1,0,0,0,12,325,0,0,0,0,0,1,1,0,0,6,0,7,0,0,24352,88,925,0,28,0,0,0,0,0,62,3,0,0,0,2,9,52,4785,0,1,45,1,0,1,21,0,451,50,25,0,0,2,1,757,0,2,14,0,3656,0,0,2,0,2,0,11,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,32,12,12,12,0,0,0,2081,0,217,0,0,0,22,26,404,1032,2036,0,0,0,0,1,0,19,0,0,0,0,0,0,2004,0,0,0,0,0,0,0,0,0,0,0,0,15,1,0,0,0,0,0,2,0,84,23,447,15,0,0,660,0,862,0,0,0,449,10,0,0,0,0,0,0,0,0,0,716,1,0,2,0,14,0,0,0,0,11,175,273,0,0,92,0,0,0,0,0,2817,1,0,1666,9,0,1,1,0,0,0,0,24,0,0,0,6,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,9,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,95,1,1,1,0,48,0,0,0,2,9,134,683,0,30,12,0,0,0,0,0,173,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,5,1929,423,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,7,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,108,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1372,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,41,0,0,7,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,311,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,57,0,55,0,0,0,4,10,32,174,66,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,128,3,0,0,114,0,433,0,0,0,49,11,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,52,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,24,107,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,96,25,1 +7,0,0,5,6,36,4,6,94,7,10,0,0,0,18,1,63,0,7,13,0,12,0,2,0,0,0,0,7,0,13,0,0,6,18,0,42,6,0,0,84,0,0,0,1,0,0,5,0,0,0,0,12,131,0,0,0,0,0,1,6,0,0,7,0,19,0,0,1121,36,566,0,19,0,0,0,0,0,21,18,0,0,0,0,2,9,133,0,6,18,6,0,0,0,0,66,0,8,0,0,2,6,100,0,16,0,0,611,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,144,0,96,0,0,0,24,23,83,70,152,0,0,0,0,1,0,0,0,0,0,0,0,0,440,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,23,384,11,0,0,424,0,377,0,0,0,180,46,0,0,0,0,0,0,0,0,0,197,1,0,0,0,27,0,0,0,0,9,126,57,0,0,0,0,0,0,0,0,153,0,0,142,0,0,1,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,31,0,0,0,8,49,60,326,0,20,0,0,0,0,0,0,103,6,0,0,0,0,0,0,0,0,0,0,0,6,0,1,7,0,0,0,0,0,0,0,0,0,0,0,12,0,4,232,77,1 +2,0,0,7,0,79,8,0,33,2,6,0,0,6,8,0,329,0,6,2,0,0,0,8,0,11,0,0,6,0,4,0,0,0,44,23667,79,150,0,0,129,0,0,0,1,0,0,9,0,0,0,0,5,418,0,0,0,0,0,1,0,0,0,36,0,8,0,0,203466,79,417,0,8,0,0,0,0,0,40,0,0,0,0,0,9,32,34943,0,0,44,0,0,0,0,0,209,20,12,0,0,2,0,355,0,4,9,0,4838,0,0,0,0,9,0,17,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,36,0,0,0,0,0,0,0,1,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,18,12,12,12,0,0,0,31147,0,158,0,0,0,9,8,407,1450,31177,0,0,0,0,1,0,21,0,0,2,0,0,0,1060,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,1,0,92,20,468,7,0,0,655,0,1338,0,0,0,469,24,0,0,0,0,0,0,0,0,0,396,1,0,0,0,10,0,0,0,0,1,197,203,0,0,10,0,7,0,0,0,3174,1,0,457,6,0,1,1,0,0,0,0,17,0,0,0,2,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,90,1,1,1,0,14,0,0,0,0,1,123,774,0,9,12,0,2,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,7,2061,96,1 +3946,0,0,10,2,48,55,2,88,6,19,0,0,0,25,0,115,0,10,2,0,0,0,2,0,0,0,0,96,0,1,0,0,2,26,0,50,102,0,0,132,0,0,0,1,0,0,12,0,0,0,0,0,273,0,1,0,0,0,1,0,0,0,0,0,21,0,0,55476,48,419,0,97,0,0,0,0,0,57,0,0,0,0,0,3,16,1800,0,2,26,2,0,5,24,0,413,45,26,0,0,6,2,285,0,17,0,0,79638,0,0,0,0,11830,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,3943,0,0,0,0,0,7876,0,3943,0,0,0,0,0,0,4136,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3945,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,4,0,0,0,0,0,0,1712,0,166,0,0,0,0,3,93,23274,1721,0,0,0,0,1,0,0,0,0,0,0,0,0,71393,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,216,75,812,14,0,0,745,0,1332,0,2,0,403,170,0,0,0,0,0,0,0,0,0,312,1,0,0,0,4,0,0,0,0,1,190,223,0,0,87,0,2,0,0,0,1276,0,0,3865,0,0,1,0,1,0,0,0,33,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,47,1,1,1,0,96,0,0,0,0,17,76,823,0,97,0,0,0,0,0,0,199,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,2,0,7,1579,462,1 +4,0,0,5,2,42,6,8,34,6,6,0,0,0,17,1,24,0,7,6,0,2,1,2,0,0,0,0,9,0,13,0,0,2,24,0,44,6,2,0,73,0,0,0,1,0,0,5,0,0,0,0,12,111,0,0,0,0,0,1,0,0,0,6,0,18,0,0,10143,42,252,0,22,0,0,0,0,0,26,6,0,0,0,0,2,8,1605,0,8,24,2,0,0,0,0,54,0,9,0,0,2,2,84,0,15,0,0,2357,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,3,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,1079,0,120,0,0,0,24,19,77,5358,1078,0,0,0,0,1,0,0,0,0,0,0,0,0,1378,0,0,0,0,0,0,0,0,0,0,0,0,11,0,4,0,0,0,0,0,0,8,22,253,7,0,0,310,0,347,0,0,0,186,9,0,0,0,0,0,0,9,0,0,95,1,0,0,0,11,0,0,0,0,7,132,74,0,0,0,0,0,0,0,0,635,0,0,899,0,0,1,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,33,0,0,0,10,17,68,266,0,22,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,1,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,3,0,5,972,44,1 +3,0,0,9,0,34,3,0,17,4,7,0,0,0,13,2,20,0,7,1,0,0,0,1,0,0,3,0,4,0,5,1,0,0,23,0,34,6,0,0,74,0,0,0,1,0,0,3,0,0,0,0,5,114,0,0,0,0,0,1,0,0,0,0,0,12,0,0,6416,34,95,0,10,0,0,0,0,0,15,0,0,0,0,0,1,6,1714,0,0,23,0,0,0,0,0,29,0,6,0,0,2,0,73,0,8,0,0,611,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,1104,0,78,0,0,0,10,15,60,64,1103,0,0,0,0,1,0,0,0,0,0,0,0,0,2103,0,0,0,0,0,0,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,8,23,235,12,0,0,250,0,392,0,0,0,178,12,0,0,0,0,0,0,0,0,0,69,1,0,0,0,2,0,0,0,0,5,121,93,0,0,0,0,1,0,0,0,390,0,0,1435,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,15,0,0,0,0,1,57,478,0,13,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,795,104,1 +167,0,0,7,0,46,7,0,13,15,4,0,0,2,25,1,18,0,7,3,0,0,0,6,0,9,0,0,25,0,8,0,0,0,15,0,46,6,0,0,108,0,0,0,1,0,0,1,0,0,0,0,9,95,0,0,0,0,0,1,0,0,0,51,0,27,0,0,965,46,98,0,32,0,0,0,0,0,9,0,0,0,0,0,8,15,143,0,0,15,0,0,0,0,0,115,5,1,0,0,2,0,106,0,23,0,0,904,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,1,0,0,0,0,0,4,40,0,0,0,0,0,0,0,0,5,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,91,0,62,0,0,0,16,15,207,44,92,0,0,0,0,1,0,4,0,0,0,0,0,0,857,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,79,216,7,0,0,197,0,311,0,0,0,83,15,0,0,0,0,0,0,0,0,0,77,1,0,0,0,9,0,0,0,0,5,136,22,0,0,0,0,0,0,0,0,122,0,0,32,3,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,15,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,39,0,0,0,8,1,61,94,0,33,9,0,0,0,0,0,69,20,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,1,191,94,1 +2,0,0,2,2,13,2,2,35,0,4,0,0,0,2,0,31,0,6,5,0,4,0,1,0,0,0,0,1,0,1,0,0,2,1,0,15,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,72,0,0,0,0,0,1,2,0,0,0,0,1,0,0,1337,13,178,0,2,0,0,0,0,0,6,6,0,0,0,0,1,3,293,0,2,1,2,0,0,0,0,12,0,2,0,0,2,2,27,0,0,0,0,121,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,184,0,41,0,0,0,0,3,34,10,192,0,0,0,0,1,0,0,0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,148,4,0,0,174,0,211,0,0,0,51,10,0,0,0,0,0,0,5,0,0,80,1,0,0,0,10,0,0,0,0,1,95,25,0,0,0,0,0,0,0,0,129,0,0,301,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,1,0,0,0,0,17,16,182,0,2,0,0,0,0,0,0,20,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,1,0,0,0,0,0,4,0,1,223,19,1 +2,0,0,5,0,45,7,0,52,8,6,0,0,2,10,0,539,0,6,3,0,0,0,7,0,10,24,0,8,0,10,0,0,0,12,1241,45,12,0,0,45,0,0,0,1,0,0,9,0,0,0,0,10,253,0,0,0,0,0,1,0,0,0,5,0,12,0,0,12965,45,688,0,15,0,0,0,0,0,33,0,0,0,0,2,9,32,2482,0,0,12,0,0,0,0,0,137,5,13,0,0,2,0,690,0,8,0,0,2232,0,0,0,0,17,0,3,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1147,0,100,0,0,0,18,48,270,477,1098,0,0,0,0,1,0,5,0,0,0,0,0,0,613,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,1,0,32,26,274,5,0,0,290,0,364,0,0,0,132,25,0,0,0,0,0,0,0,0,0,622,1,0,0,0,10,0,0,0,0,10,132,38,0,0,0,0,0,0,0,0,1964,1,0,155,6,0,1,1,0,0,0,0,12,0,0,0,6,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,6,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,27,0,0,0,0,1,57,211,0,40,12,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,905,72,1 +2,0,0,7,0,34,6,0,37,1,6,0,0,2,4,0,472,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,3,762,34,8,0,0,27,0,0,0,1,0,0,3,0,0,0,0,1,189,0,0,0,0,0,1,0,0,0,1,0,4,0,0,5075,34,533,0,2,0,0,0,0,0,19,0,0,0,0,0,8,19,932,0,0,3,0,0,0,0,0,89,5,6,0,0,2,0,486,0,1,0,0,1065,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,461,0,51,0,0,0,0,3,240,323,424,0,0,0,0,1,0,3,0,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,16,176,7,0,0,213,0,296,0,0,0,65,7,0,0,0,0,0,0,0,0,0,533,1,0,0,0,9,0,0,0,0,1,117,24,0,0,1,0,0,0,0,0,1243,1,0,44,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,1,0,0,0,0,1,37,126,0,3,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,42,1 +3,0,0,6,0,42,81,0,33,0,80,0,0,7,5,0,70,0,6,2,0,0,0,8,0,11,3,0,19,0,2,0,0,0,6,1134,42,6,0,0,47,0,0,0,1,0,0,2,0,0,0,0,2,1496,0,0,0,0,0,1,0,0,0,0,0,4,0,0,35161,42,504,0,17,0,0,0,0,0,166,0,0,0,0,0,9,269,6888,0,0,6,0,0,0,0,0,971,25,3,0,0,2,0,279,0,1,795,0,5234,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,1191,0,74,0,0,0,14,21,593,3473,1176,0,0,0,0,1,0,4,0,0,0,0,0,0,793,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,108,17,250,6,0,0,430,0,298,0,0,0,282,11,0,0,0,0,0,0,0,0,0,282,1,0,0,0,10,0,0,0,0,2,143,66,0,0,736,0,0,0,0,0,3966,1,0,650,82,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,82,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,56,0,0,0,0,1,48,366,0,21,14,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2790,116,1 +0,0,0,6,0,41,81,0,30,0,80,0,0,7,5,0,63,0,6,2,0,0,0,8,0,11,0,0,18,0,1,0,0,0,3,1147,41,6,0,0,47,0,0,0,1,0,0,3,0,0,0,0,1,1570,0,0,0,0,0,1,0,0,0,0,0,4,0,0,35722,41,486,0,15,0,0,0,0,0,169,0,0,0,0,0,9,274,6934,0,0,3,0,0,0,0,0,996,25,6,0,0,2,0,248,0,1,855,0,5738,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,1150,0,81,0,0,0,12,15,598,3510,1130,0,0,0,0,1,0,3,0,0,0,0,0,0,526,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,108,17,240,6,0,0,410,0,287,0,0,0,255,9,0,0,0,0,0,0,0,0,0,272,1,0,0,0,10,0,0,0,0,0,143,54,0,0,766,0,0,0,0,0,4051,1,0,401,82,0,1,1,0,0,0,0,12,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,50,0,0,0,0,1,44,332,0,16,14,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2858,43,1 +10,0,0,0,0,23,7,0,17,0,1,5,0,0,2,0,19,0,7,3,0,0,0,1,0,0,0,0,10,0,20,0,0,0,11,0,23,6,0,0,55,0,1,0,1,0,0,1,0,0,0,0,19,71,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1419,23,87,0,30,0,0,0,0,0,7,0,0,0,0,0,3,8,519,0,0,11,0,0,0,0,0,98,0,2,0,0,2,0,71,0,0,0,0,595,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,85,0,38,0,0,0,38,39,57,90,93,0,0,0,0,1,0,0,0,0,0,0,0,0,336,0,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,13,156,0,0,0,128,0,239,0,0,0,55,20,0,0,0,0,0,0,0,0,0,58,1,0,0,0,4,0,0,0,0,20,105,15,0,0,0,0,0,0,0,0,313,0,0,819,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,380,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,48,0,0,0,18,1,34,155,0,30,0,0,1,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,302,20,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,132,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1744,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,52,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,321,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,64,0,55,0,0,0,4,10,32,174,73,0,0,0,0,1,0,0,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,116,3,0,0,114,0,509,0,0,0,40,16,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,59,0,0,62,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,119,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,107,25,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,127,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1634,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,53,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,336,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,64,0,56,0,0,0,4,10,36,174,73,0,0,0,0,1,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,121,3,0,0,117,0,464,0,0,0,40,11,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,58,0,0,58,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,122,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,111,25,1 +22,0,0,9,2,223,13,8,55,12,18,0,0,0,26,0,34,0,7,6,0,2,1,3,0,0,3,0,5,0,8,0,0,2,210,0,225,6,17,0,493,0,0,0,1,0,0,3,0,0,0,0,7,101,0,0,0,0,0,1,0,0,0,28,0,25,0,0,13268,223,286,0,13,0,0,0,0,0,13,6,0,0,0,1,3,10,2492,0,8,210,2,0,2,16,0,183,30,4,0,0,2,2,208,0,17,0,0,3697,0,0,0,0,22,0,0,0,0,0,0,1,0,0,0,11,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,16,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,11,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,1683,0,276,0,0,0,14,16,263,729,1703,0,0,0,0,1,0,0,0,0,0,0,0,0,3678,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,65,841,13,0,0,795,0,541,0,0,0,689,28,0,0,0,0,0,0,0,0,0,153,1,0,0,0,12,0,0,0,0,5,315,47,0,0,58,0,0,0,0,0,969,0,0,2825,0,0,1,0,0,0,0,0,6,0,1,0,4,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,224,1,1,1,0,18,0,0,0,0,17,435,384,0,16,0,0,0,0,0,0,501,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,16,0,0,0,0,0,0,0,0,0,0,0,3,0,3,1369,116,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,60,0,0,0,0,0,1,0,0,0,0,0,2,0,0,384,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,50,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,248,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,63,0,57,0,0,0,4,10,36,174,72,0,0,0,0,1,0,0,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,110,3,0,0,117,0,183,0,0,0,40,11,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,57,0,0,50,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,108,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,109,22,1 +21,0,0,12,0,75,19,0,77,12,38,0,0,6,44,3,1077,0,7,1,0,0,0,11,0,12,0,0,24,0,26,0,0,0,31,3552,75,9,0,0,321,0,8,0,1,0,0,10,0,0,0,0,26,1119,0,0,0,0,0,1,0,0,0,12,0,28,0,0,20803,75,1352,0,47,0,0,0,0,0,50,0,0,0,1,2,11,52,4094,0,0,31,0,0,1,13,0,502,35,14,0,0,2,0,1425,0,20,17,0,3204,0,0,0,0,42,2,2,0,0,0,0,1,0,0,0,26,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,13,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,50,12,12,12,0,0,0,1547,0,163,0,0,0,54,29,364,1186,1534,0,0,0,0,1,0,4,0,0,2,0,0,0,1387,0,0,0,0,0,0,0,0,0,3,0,0,70,1,0,0,0,0,0,1,0,86,152,457,14,0,0,529,0,1245,0,0,0,343,36,0,0,0,0,0,0,0,0,0,1271,1,0,0,0,12,0,0,0,0,9,196,1768,0,0,52,0,0,0,0,1,4248,1,0,1010,11,0,1,1,1,0,0,0,21,0,0,0,2,0,0,0,0,0,15,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,11,388,2,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,100,1,1,1,0,83,0,0,0,2,1,106,801,0,48,14,0,0,0,0,0,246,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1468,201,1 +11,0,0,8,16,69,26,64,156,18,31,0,0,2,24,0,90,0,8,44,0,16,8,6,0,8,0,0,7,0,2,0,0,16,36,0,85,6,112,0,142,0,0,0,1,0,0,9,0,0,0,0,2,286,0,0,0,0,0,1,0,0,0,8,0,27,0,0,3490,69,1515,0,8,0,0,0,0,2,37,48,0,0,0,0,9,26,673,0,64,36,16,0,2,28,0,367,45,13,0,0,2,16,280,0,18,0,0,1151,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,1,4,0,0,2,9,0,1,0,7,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,5,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,1,0,34,10,10,10,0,0,0,466,0,178,0,0,0,2,5,270,3058,487,0,0,0,0,1,0,3,0,0,0,0,0,0,1375,0,0,0,0,0,0,0,0,0,0,0,0,9,1,6,0,0,0,0,1,0,32,37,628,27,0,0,689,0,712,0,0,0,304,1982,0,0,0,0,0,0,7,0,0,337,1,0,0,0,74,0,0,0,0,2,156,150,0,0,96,0,0,0,0,0,458,0,0,560,2,0,1,4,0,0,0,0,16,0,0,0,3,0,0,0,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,8,0,0,0,0,130,121,418,0,9,8,0,0,1,0,0,156,2,0,0,0,0,0,0,0,0,0,0,0,17,0,1,24,2,0,0,0,0,0,0,0,0,0,0,24,0,8,689,73,1 +8,0,0,4,2,67,6,2,30,1,5,0,0,2,8,0,36,0,7,7,0,4,0,6,0,8,0,0,9,0,5,0,0,2,37,0,69,42,0,0,76,0,0,0,1,0,0,3,0,0,0,0,5,126,0,0,0,0,0,1,2,0,0,5,0,9,0,0,2165,67,298,0,12,0,0,0,0,0,14,6,0,0,0,1,8,18,441,0,2,37,2,0,0,0,0,106,5,6,0,0,2,2,64,0,6,0,0,1055,0,0,0,0,24,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6,10,10,10,0,0,0,276,0,128,0,0,0,8,9,245,62,290,0,0,0,0,1,0,4,0,0,0,0,0,0,714,0,0,0,0,0,0,0,0,0,2,0,0,3,1,1,0,0,0,0,1,2,37,16,315,6,0,0,345,0,430,0,0,0,186,10,0,0,0,0,0,0,2,0,0,94,1,0,0,0,17,0,0,0,0,5,149,47,0,0,0,0,0,0,0,0,245,0,0,315,3,0,1,1,0,0,0,0,5,0,0,0,1,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,72,1,1,1,0,15,0,0,0,0,17,106,270,0,13,9,0,0,0,0,0,136,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,4,0,2,413,95,1 +9,0,0,10,0,70,5,0,25,44,8,0,0,0,56,1,38,0,8,1,0,0,0,3,0,0,0,0,5,0,12,0,0,0,56,0,70,69,0,0,202,0,0,0,1,0,0,14,0,0,0,0,11,146,0,0,0,0,0,1,0,0,0,36,0,57,0,0,2514,70,238,0,17,1,0,0,0,0,56,0,0,0,0,0,3,18,469,0,0,56,0,0,0,5,0,121,0,22,0,0,2,0,178,0,51,0,0,964,0,0,0,0,14,0,0,0,0,0,0,1,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,3,0,0,0,0,0,14,1,0,0,0,0,0,0,0,0,2,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,434,0,232,0,0,0,22,25,119,157,494,0,0,0,0,1,0,0,0,0,0,0,0,0,1240,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,8,70,378,13,0,0,546,0,704,0,0,0,465,42,0,0,0,0,0,0,0,0,0,141,1,0,0,0,4,0,0,0,0,12,186,218,0,0,0,0,2,0,0,0,218,0,0,416,0,0,1,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,27,0,0,0,8,1,126,808,0,17,0,0,0,0,0,0,347,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,44,0,0,0,0,0,0,0,0,0,0,0,0,0,13,582,200,1 +6,0,0,4,2,30,5,8,27,5,5,0,0,0,12,0,29,0,7,6,0,2,1,2,0,0,3,0,6,0,9,0,0,2,16,0,32,6,22,0,41,0,0,0,1,0,0,1,1,0,0,0,9,76,0,0,0,0,0,1,0,0,0,17,0,13,0,0,5794,30,209,0,16,0,0,0,0,0,9,6,0,0,0,0,2,4,544,0,8,16,2,0,0,0,0,35,0,3,0,0,2,2,74,0,10,0,0,1672,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,12,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,318,0,69,0,0,0,18,20,57,50,325,0,0,0,0,1,0,0,0,0,0,0,0,0,1059,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,15,203,6,0,0,204,0,339,0,0,0,101,16,0,0,0,0,0,0,0,0,0,85,1,0,3,0,11,0,0,0,0,5,116,29,0,0,0,0,0,0,0,0,363,0,0,536,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,27,0,0,0,2,17,48,181,0,18,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,3,0,1,495,91,1 +2,0,0,8,0,25,5,0,34,0,11,0,0,0,7,1,16,0,12,1,0,0,0,1,0,0,0,0,4,0,5,0,0,0,12,5,25,6,0,0,61,0,0,0,1,0,0,2,1,0,0,0,4,114,0,0,0,0,0,1,0,0,0,0,0,9,0,0,1420,25,102,0,9,0,0,0,0,0,13,0,0,0,0,0,1,6,209,0,0,12,0,0,1,16,0,159,25,6,0,0,2,0,110,0,4,0,0,490,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,167,0,106,0,0,0,8,10,50,764,192,0,0,0,0,1,0,0,0,0,0,0,0,0,1611,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,10,152,9,0,0,189,0,281,0,0,0,112,11,0,0,0,0,0,0,0,0,0,86,1,0,3,0,2,0,0,0,0,4,115,87,0,0,60,0,0,0,0,0,66,0,0,143,0,0,1,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,12,0,0,0,0,1,37,301,0,9,0,0,0,0,0,0,125,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,227,89,1 +4,0,0,5,0,31,4,0,17,6,4,0,0,0,16,1,15,0,7,1,0,0,0,2,0,0,0,0,6,0,12,0,0,0,18,0,31,6,0,0,65,0,0,0,1,0,0,2,0,0,0,0,11,73,0,0,0,0,0,1,0,0,0,7,0,17,0,0,660,31,78,0,18,0,0,0,0,0,10,0,0,0,0,0,2,5,66,0,0,18,0,0,0,0,0,44,0,4,0,0,2,0,67,0,14,0,0,383,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,73,0,57,0,0,0,22,20,58,52,79,0,0,0,0,1,0,0,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,21,176,5,0,0,201,0,259,0,0,0,122,23,0,0,0,0,0,0,0,0,0,64,1,0,0,0,3,0,0,0,0,8,121,53,0,0,0,0,0,0,0,0,63,0,0,78,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,28,0,0,0,8,1,49,216,0,18,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,124,49,1 +1,0,0,5,0,13,5,0,31,0,9,0,0,0,3,1,16,0,7,1,0,0,0,1,0,0,0,0,4,0,5,0,0,0,2,0,13,6,0,0,34,0,0,0,1,0,0,8,0,0,0,0,4,156,0,0,0,0,0,1,0,0,0,0,0,6,0,0,3181,13,135,0,9,0,0,0,0,0,39,0,0,0,0,0,1,10,604,0,0,2,0,0,1,13,0,146,15,13,0,0,2,0,95,0,1,0,0,515,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,419,0,116,0,0,0,8,10,33,129,421,0,0,0,0,1,0,0,0,0,0,0,0,0,1106,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,6,110,5,0,0,228,0,277,0,0,0,157,9,0,0,0,0,0,0,7,0,0,72,1,0,0,0,2,0,0,0,0,4,99,145,0,0,29,0,0,0,0,0,227,0,0,676,0,0,1,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,12,0,0,0,0,1,15,502,0,9,0,0,0,0,0,0,85,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,8,559,38,1 +12,0,0,11,2,65,279,2,308,11,17,0,0,2,32,0,120,0,11,5,0,0,0,5,0,8,0,0,12,0,10,0,0,2,33,0,67,145,0,0,171,0,0,0,1,0,0,3,1,0,0,0,10,137,0,0,0,0,0,1,0,0,0,2,0,30,0,0,1322,65,706,0,20,0,0,0,0,0,237,0,0,0,0,0,9,18,239,0,2,33,2,0,4,15,0,323,35,4,0,0,6,2,425,0,24,0,0,1979,0,0,0,0,26,1,2,0,2,0,0,1,0,0,0,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,190,0,372,0,0,0,18,14,254,229,219,0,0,0,0,1,0,3,0,0,0,0,0,0,2240,0,0,0,0,0,0,0,0,0,1,0,0,3,1,0,0,0,0,0,1,2,247,82,593,15,0,0,1056,0,1035,0,2,0,474,67,0,0,0,0,0,0,0,0,0,769,1,0,1,0,10,0,0,0,0,6,176,316,0,0,63,0,0,0,0,0,360,0,0,52,3,0,1,1,0,0,0,0,7,0,0,0,7,0,0,0,0,0,11,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,12,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,2,73,1,1,1,0,28,0,0,0,4,17,100,266,0,21,9,0,0,0,0,0,225,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,17,0,0,0,0,0,0,0,0,0,0,0,2,0,5,1074,110,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,7,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,69,0,0,0,0,0,1,0,0,0,0,0,2,0,0,479,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,46,0,0,7,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,301,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,61,0,57,0,0,0,4,10,36,174,70,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,121,3,0,0,117,0,201,0,0,0,49,11,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,57,0,0,42,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,25,72,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,105,24,1 +7,0,0,6,0,16,106,0,236,0,39,0,0,0,4,0,21,0,6,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,5,0,16,62,0,0,427,0,0,0,1,0,0,2,0,0,0,0,0,117,0,0,0,0,0,1,0,0,0,1,0,7,0,0,810,16,414,0,2,0,0,0,0,0,12,0,0,0,0,0,1,5,117,0,0,5,0,0,2,227,0,1811,170,4,0,0,2,0,1062,0,1,0,0,282,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,2,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,115,0,64,0,0,0,0,3,37,1123,113,0,0,0,0,1,0,0,0,0,0,0,0,0,800,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,109,6,0,0,257,0,375,0,0,0,192,12,0,0,0,0,0,0,0,0,0,412,1,0,0,0,1,0,0,0,0,1,98,491,0,0,612,0,0,0,0,0,129,0,0,133,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,1,0,0,0,0,1,21,130,0,2,0,0,0,0,0,0,685,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,261,81,1 +7,0,0,4,0,48,6,0,36,8,3,0,0,2,13,0,591,0,6,3,0,0,0,6,0,10,0,0,8,0,4,0,0,0,9,898,48,6,0,0,58,0,0,0,1,0,0,4,0,0,0,0,4,193,0,0,0,0,0,1,0,0,0,0,0,14,0,0,19954,48,684,0,9,0,0,0,0,0,25,0,0,0,0,0,8,21,3493,0,0,9,0,0,0,0,0,108,5,9,1,0,2,0,636,0,11,0,0,1486,0,0,0,0,14,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,10,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,12,12,12,0,0,0,2800,0,105,0,0,0,6,9,254,360,2773,0,0,0,0,1,0,3,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,254,4,0,0,272,0,322,0,0,0,98,35,0,0,0,0,0,0,0,0,0,657,1,0,0,0,9,0,0,0,0,4,131,27,0,0,0,0,0,0,0,0,1657,1,0,156,6,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,11,0,0,0,0,1,57,159,0,10,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,603,45,1 +6,0,0,4,2,23,4,8,26,3,7,0,0,0,8,0,26,0,6,8,0,2,0,2,0,3,0,0,3,0,2,0,0,1,8,0,25,48,0,0,30,0,0,0,1,0,0,3,0,0,0,0,1,61,0,0,0,0,0,1,0,0,0,17,0,9,0,0,638,23,214,0,6,0,0,0,0,0,15,6,0,0,0,0,3,9,106,0,8,8,1,0,0,0,0,28,0,6,0,0,2,2,54,0,5,0,0,442,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,6,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,8,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,2,0,0,0,0,114,0,101,0,0,0,3,6,54,408,133,0,0,0,0,1,0,0,0,0,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,14,10,191,8,0,0,185,0,333,0,0,0,78,32,0,0,0,0,0,0,0,0,0,77,1,0,0,0,12,0,0,0,0,4,109,33,0,0,0,0,0,0,0,0,137,0,0,74,187,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,188,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,22,1,3,1,0,13,0,0,0,0,20,33,147,0,8,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,3,0,0,0,0,0,0,0,0,0,0,0,2,0,4,204,38,1 +2,0,0,6,0,23,3,0,23,3,4,0,0,0,12,1,14,0,7,1,0,0,0,1,0,0,0,0,6,0,9,0,0,0,12,0,23,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,8,62,0,0,0,0,0,1,0,0,0,0,0,11,0,0,368,23,73,0,15,0,0,0,0,0,4,0,0,0,0,1,1,6,42,0,0,12,0,0,0,0,0,29,0,3,0,0,2,0,59,0,9,0,0,374,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,50,0,46,0,0,0,16,14,46,30,56,0,0,0,0,1,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,14,137,7,0,0,167,0,195,0,0,0,101,8,0,0,0,0,0,0,0,0,0,64,1,0,0,0,2,0,0,0,0,5,110,46,0,0,0,0,0,0,0,0,41,0,0,31,0,0,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,22,0,0,0,8,1,35,213,0,15,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,18,1 +2,0,0,16,2,19,51,2,75,20,5,0,0,0,32,0,114,0,11,1,0,0,0,2,0,0,0,0,2,0,3,0,0,2,7,0,21,102,0,0,76,0,0,0,1,0,0,3,0,0,0,0,2,172,0,0,0,0,0,1,0,0,0,5,0,34,0,0,785,19,220,0,4,0,0,0,0,0,11,0,0,0,0,0,2,6,65,0,2,7,2,0,2,0,0,92,0,3,0,0,6,2,97,0,25,0,0,547,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,83,0,68,0,0,0,3,6,47,32,94,0,0,0,0,1,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,216,51,442,15,0,0,491,0,803,0,2,0,183,19,0,0,0,0,0,0,0,0,0,288,1,0,0,0,3,0,0,0,0,2,130,74,0,0,0,0,0,0,0,0,215,0,0,41,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,18,1,1,1,0,7,0,0,0,0,17,28,474,0,5,0,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,20,0,0,0,0,0,0,0,0,0,0,0,2,0,2,158822,38,1 +2,0,0,7,0,36,6,0,37,1,6,0,0,2,4,0,496,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,3,762,36,8,0,0,27,0,0,0,1,0,0,3,0,0,0,0,1,185,0,0,0,0,0,1,0,0,0,1,0,4,0,0,4676,36,557,0,2,0,0,0,0,0,19,0,0,0,0,0,8,19,874,0,0,3,0,0,0,0,0,89,5,6,0,0,2,0,510,0,1,0,0,1026,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,380,0,53,0,0,0,0,3,252,323,342,0,0,0,0,1,0,3,0,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,16,181,7,0,0,218,0,302,0,0,0,62,11,0,0,0,0,0,0,0,0,0,557,1,0,0,0,9,0,0,0,0,1,119,24,0,0,1,0,0,0,0,0,1313,1,0,48,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,1,0,0,0,0,1,39,126,0,3,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,378,43,1 +9,0,0,3,0,16,5,0,43,0,11,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,5,0,16,6,0,0,33,0,0,0,1,0,0,6,0,0,0,0,0,115,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2143,16,121,0,4,0,0,0,0,0,27,0,0,0,0,1,1,10,221,0,0,5,0,0,2,19,0,186,35,11,0,0,2,0,112,0,0,0,0,891,0,0,0,0,184,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,229,0,150,0,0,0,0,3,34,703,247,0,0,0,0,1,0,0,0,0,0,0,0,0,930,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,2,0,8,3,128,3,0,0,183,0,478,0,0,0,112,10,0,0,0,0,0,0,0,0,0,83,1,0,0,0,2,0,0,0,0,1,98,102,0,0,65,0,0,0,0,0,70,0,0,109,0,0,1,0,0,0,0,0,22,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,3,0,0,0,0,1,21,321,0,4,0,0,0,0,0,0,80,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5,336,115,1 +11,0,0,16,2,29,53,2,81,3,13,0,0,0,19,0,119,0,11,3,0,0,0,3,0,0,3,0,3,0,2,0,0,2,15,0,31,102,0,0,103,0,0,0,1,0,0,2,0,0,0,0,1,127,0,0,0,0,0,1,0,0,0,2,0,16,0,0,786,29,230,0,5,0,0,0,0,0,9,0,0,0,0,0,5,8,178,0,2,15,2,0,4,16,0,242,30,4,0,0,6,2,153,0,8,0,0,409,0,0,0,0,14,2,0,0,5,0,0,1,0,0,0,10,0,0,0,0,0,0,0,2,0,0,0,6,0,0,0,0,0,0,0,6,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,13,0,0,0,0,0,0,152,0,90,0,0,0,2,7,71,179,164,0,0,0,0,1,0,0,0,0,0,0,0,0,544,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,217,53,442,20,0,0,513,0,910,0,2,0,204,9,0,0,0,0,0,0,0,0,0,296,1,0,0,0,6,0,0,0,0,2,149,93,0,0,58,0,1,0,0,0,244,0,0,81,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,32,1,1,1,0,4,0,0,0,0,17,46,215,0,8,0,0,0,0,0,0,142,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,2,384,83,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,29,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,28,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,41,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,4,1 +8,0,0,5,0,55,9,0,27,2,6,0,0,6,4,0,72,0,8,2,0,0,0,8,0,10,4,0,9,0,1,0,0,0,15,967,55,6,0,0,51,0,0,0,1,0,0,4,1,0,0,0,1,213,0,0,0,0,0,1,0,0,0,0,0,2,0,0,12630,55,171,0,7,0,0,0,0,0,33,0,0,0,0,0,9,24,2121,0,0,15,0,0,0,0,0,205,20,8,0,0,2,0,131,0,0,2,0,3660,0,0,0,0,8,1,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,6,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8,12,12,12,0,0,0,1131,0,170,0,0,0,0,6,321,642,1110,0,0,0,0,1,0,4,0,0,0,0,0,0,1429,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,84,22,679,5,0,0,404,0,510,0,0,0,233,72,0,0,0,0,0,0,0,0,0,132,1,0,2,0,10,0,0,0,0,1,183,93,0,0,11,0,0,0,0,0,766,1,0,1015,6,0,1,1,0,0,0,0,8,0,3,0,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,6,0,0,0,0,1,70,331,0,12,12,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,884,365,1 +12,0,0,17,2,39,53,2,81,5,15,0,0,0,23,0,121,0,11,2,0,0,0,5,0,0,3,0,6,0,2,0,0,2,22,0,41,102,0,0,119,0,0,0,1,0,0,2,0,0,0,0,1,115,0,0,0,0,0,1,0,0,0,2,0,19,0,0,2262,39,246,0,8,0,0,0,0,0,11,0,0,0,0,0,6,9,267,0,2,22,2,0,4,16,0,247,30,4,0,0,6,2,170,0,12,0,0,1024,0,0,0,0,36,3,0,0,4,0,0,1,0,0,0,10,0,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,7,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,13,0,0,0,0,0,0,214,0,93,0,0,0,2,7,90,1276,226,0,0,0,0,1,0,0,0,0,0,0,0,0,723,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,217,76,517,21,0,0,593,0,908,0,2,0,273,18,0,0,0,0,0,0,0,0,0,304,1,0,0,0,7,0,0,0,0,2,207,93,0,0,58,0,1,0,0,0,292,0,0,99,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,43,1,1,1,0,7,0,0,0,0,17,63,217,0,11,0,0,0,0,0,0,128,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,2,0,2,415,299,1 +2,0,0,7,0,34,6,0,37,1,6,0,0,2,4,0,472,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,3,762,34,8,0,0,27,0,0,0,1,0,0,3,0,0,0,0,1,187,0,0,0,0,0,1,0,0,0,1,0,4,0,0,4938,34,533,0,2,0,0,0,0,0,19,0,0,0,0,0,8,19,930,0,0,3,0,0,0,0,0,89,5,6,0,0,2,0,486,0,1,0,0,1204,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,398,0,51,0,0,0,0,3,240,323,361,0,0,0,0,1,0,3,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,16,176,7,0,0,212,0,295,0,0,0,62,5,0,0,0,0,0,0,0,0,0,533,1,0,0,0,9,0,0,0,0,1,117,24,0,0,1,0,0,0,0,0,1295,1,0,51,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,1,0,0,0,0,1,37,126,0,3,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,391,43,1 +26,0,0,9,38,84,154,53,1117,163,314,0,0,0,184,0,252,0,17,78,5,34,27,1,4,11,21,0,24,0,11,0,0,36,68,0,119,894,22,0,2187,0,0,0,1,0,0,8,0,0,0,0,22,309,0,0,0,0,0,1,2,0,0,0,0,327,0,0,4531,84,5020,0,38,0,0,0,0,0,25,108,0,0,0,0,3,11,297,0,53,68,36,0,6,870,0,6954,600,13,0,0,2,38,5087,0,173,2,0,2979,0,0,0,0,169,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,5,0,0,0,0,0,0,0,14,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,3,0,0,0,0,0,2,1,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,88,1,1,1,0,0,1,425,1,236,0,0,2,44,120,340,5369,622,0,0,0,0,1,0,0,0,0,0,0,0,0,2294,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,2,0,187,188,1311,56,0,0,1265,0,820,0,0,0,685,140,0,0,0,0,0,0,0,0,0,2038,1,0,0,0,149,0,0,0,0,22,236,2385,0,0,1726,0,0,0,0,0,1946,0,0,93,0,0,1,0,0,0,0,0,19,0,0,0,10,0,0,0,0,0,160,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,14,17,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,207,1,1,1,2,78,0,0,0,6,184,187,222,1,66,1,0,0,0,0,0,2853,105,0,0,0,0,0,0,0,0,0,0,0,35,0,3,177,0,0,0,0,0,0,0,0,0,0,0,64,0,1,1478,325,1 +4,0,0,4,0,21,3,0,16,6,3,0,0,0,13,0,15,0,7,1,0,0,0,2,0,0,0,0,4,0,5,0,0,0,12,0,21,6,0,0,34,0,0,0,1,0,0,1,0,0,0,0,4,56,0,0,0,0,0,1,0,0,0,13,0,14,0,0,7008,21,58,0,9,0,0,0,0,0,6,0,0,0,0,0,2,4,1421,0,0,12,0,0,0,0,0,29,0,2,0,0,2,0,46,0,10,0,0,287,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,881,0,47,0,0,0,8,11,47,37,894,0,0,0,0,1,0,0,0,0,0,0,0,0,1724,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,17,121,4,0,0,169,0,241,0,0,0,107,7,0,0,0,0,0,0,0,0,0,57,1,0,0,0,3,0,0,0,0,5,108,59,0,0,0,0,0,0,0,0,363,0,0,1856,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,12,0,0,0,4,1,33,204,0,9,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,683,20,1 +13,0,0,18,2,40,53,2,81,8,15,0,0,0,28,0,121,0,11,2,0,0,0,5,0,0,3,0,6,0,2,0,0,2,23,0,42,102,0,0,127,0,0,0,1,0,0,3,0,0,0,0,1,116,0,0,0,0,0,1,0,0,0,4,0,23,0,0,2307,40,256,0,8,0,0,0,0,0,14,0,0,0,0,0,6,11,286,0,2,23,2,0,4,16,0,249,30,5,0,0,6,2,180,0,15,0,0,980,0,0,0,0,36,2,0,0,4,0,0,1,0,0,0,11,0,0,0,0,0,0,0,2,0,0,0,6,0,0,0,0,0,0,0,8,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,10,0,0,0,0,0,0,230,0,102,0,0,0,2,7,92,1287,254,0,0,0,0,1,0,0,0,0,0,0,0,0,863,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,217,83,527,22,0,0,577,0,1004,0,2,0,257,31,0,0,0,0,0,0,0,0,0,309,1,0,0,0,7,0,0,0,0,2,210,71,0,0,58,0,1,0,0,0,304,0,0,110,0,0,1,0,0,0,0,0,6,0,0,0,2,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,44,1,1,1,0,7,0,0,0,0,17,65,148,0,11,0,0,0,0,0,0,135,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,2,0,3,451,187,1 +2,0,0,7,0,35,6,0,37,1,6,0,0,2,4,0,485,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,3,762,35,8,0,0,27,0,0,0,1,0,0,3,0,0,0,0,1,184,0,0,0,0,0,1,0,0,0,1,0,4,0,0,5234,35,546,0,2,0,0,0,0,0,19,0,0,0,0,0,8,19,948,0,0,3,0,0,0,0,0,89,5,6,0,0,2,0,499,0,1,0,0,1003,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,473,0,51,0,0,0,0,3,247,323,435,0,0,0,0,1,0,3,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,16,177,7,0,0,214,0,298,0,0,0,62,9,0,0,0,0,0,0,0,0,0,546,1,0,0,0,9,0,0,0,0,1,118,24,0,0,1,0,0,0,0,0,1268,1,0,49,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,1,0,0,0,0,1,38,126,0,3,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,360,42,1 +3,0,0,4,2,26,6,8,28,3,10,0,0,0,7,0,19,0,6,7,0,2,1,1,0,0,0,0,3,0,5,0,0,2,15,0,28,6,11,0,53,0,0,0,1,0,0,0,0,0,0,0,4,47,0,0,0,0,0,1,0,0,0,5,0,9,0,0,177,26,184,0,8,0,0,0,0,0,0,6,0,0,0,0,2,2,7,0,8,15,2,0,1,11,0,117,20,0,0,0,2,2,79,0,5,0,0,312,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,23,0,36,0,0,0,8,7,47,93,31,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,135,6,0,0,161,0,198,0,0,0,90,15,0,0,0,0,0,0,0,0,0,76,0,0,0,0,11,0,0,0,0,3,108,51,0,0,42,0,0,0,0,0,50,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,11,0,0,0,2,17,43,103,0,8,0,0,0,0,0,0,62,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,3,0,0,46,29,1 +5,0,0,8,2,46,7,8,57,12,10,0,0,0,21,2,142,0,6,8,0,2,0,3,0,0,0,0,1,0,3,0,0,1,28,0,48,174,49,0,180,0,0,0,1,0,0,5,0,0,0,0,2,121,0,0,0,0,1,1,0,0,0,22,0,23,0,0,2674,46,391,0,4,0,0,0,0,0,22,6,0,0,0,1,4,15,471,0,8,28,1,0,1,12,0,140,20,5,0,0,2,2,150,0,17,0,0,866,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,3,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,15,1,0,0,0,0,0,0,0,0,2,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,338,0,152,0,0,0,4,7,113,673,417,0,0,0,0,1,0,0,0,0,0,0,0,0,857,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,10,26,313,11,0,0,438,0,328,0,0,0,316,32,0,0,0,0,0,0,8,0,0,245,1,0,0,0,13,0,0,0,0,3,175,116,0,0,49,0,0,0,0,0,596,0,0,387,0,0,1,0,0,0,0,0,12,0,0,0,3,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,8,1,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,5,0,0,0,0,39,76,226,0,4,0,0,0,0,0,0,475,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,14,0,0,0,0,0,0,0,0,0,0,0,2,0,4,425,69,1 +0,0,0,4,0,14,6,0,45,0,10,0,0,0,4,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,14,6,0,0,69,0,0,0,1,0,0,3,0,0,0,0,0,81,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1425,14,97,0,1,0,0,0,0,0,14,0,0,0,0,0,1,6,93,0,0,4,0,0,1,23,0,194,15,5,0,0,2,0,137,0,1,0,0,557,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,71,0,0,0,0,3,30,176,104,0,0,0,0,1,0,0,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,32,106,4,0,0,188,0,273,0,0,0,121,4,0,0,0,0,0,0,0,0,0,86,1,0,0,0,2,0,0,0,0,0,98,142,0,0,26,0,0,0,0,0,52,0,0,89,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,18,294,0,1,0,0,0,0,0,0,87,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,168,23,1 +5,0,0,3,4,42,113,4,62,0,6,0,0,2,2,0,123,0,6,10,0,8,0,7,0,10,0,0,8,0,1,0,0,4,7,2722,46,6,0,0,30,0,0,0,1,0,0,4,0,0,0,0,1,715,0,0,0,0,0,1,4,0,0,2,0,2,0,0,183467,42,1256,0,6,0,0,0,0,0,234,12,0,0,0,0,8,21,30481,0,4,7,4,0,0,0,0,104,5,7,0,0,2,4,307,0,0,0,0,3551,0,0,0,0,2,0,4,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,12,12,12,0,0,0,27875,0,80,0,0,0,0,3,483,747,27862,0,0,0,0,1,0,4,0,0,0,0,0,0,1715,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,10,401,7,0,0,720,0,423,0,0,0,462,13,0,0,0,0,0,0,0,0,0,314,1,0,0,0,25,0,0,0,0,1,158,158,0,0,0,0,0,0,0,0,1684,1,0,2132,113,0,1,1,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,113,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,5,0,0,0,0,33,53,142,0,7,12,0,0,0,0,0,42,4,0,0,0,0,0,0,0,0,0,0,0,5,0,1,2,0,0,0,0,0,0,0,0,0,0,0,8,0,3,1424,62,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,17,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,16,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,35,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,4,1 +3,0,0,7,0,37,6,0,38,1,6,0,0,2,4,0,491,0,6,2,0,0,0,7,0,10,3,0,5,0,1,1,0,0,5,762,37,8,0,0,27,0,0,0,1,0,0,2,0,0,0,0,2,184,0,0,0,0,0,1,0,0,0,1,0,4,0,0,4796,37,553,0,4,0,0,0,0,0,15,0,0,0,0,0,8,18,898,0,0,5,0,0,0,0,0,89,5,4,0,0,2,0,519,0,1,0,0,1110,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,378,0,48,0,0,0,2,7,246,328,348,0,0,0,0,1,0,4,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,16,185,7,0,0,216,0,313,0,0,0,66,11,0,0,0,0,0,0,0,0,0,553,1,0,0,0,9,0,0,0,0,1,120,22,0,0,1,0,0,0,0,0,1315,1,0,54,6,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,5,0,0,0,0,1,42,105,0,8,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,398,43,1 +7,0,0,15,0,54,9,0,48,5,9,0,0,6,20,1,854,0,7,4,0,0,0,9,0,11,3,0,9,0,4,0,0,0,10,955,54,38,0,0,90,0,3,0,1,0,0,3,0,0,0,0,4,190,0,0,0,0,0,1,0,0,0,0,0,15,0,0,9331,54,959,0,9,0,0,0,0,0,18,0,0,0,0,0,12,32,2191,0,0,10,0,0,0,0,0,221,20,3,0,0,2,0,968,0,10,1,0,1956,0,0,0,0,24,0,1,0,2,0,0,1,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,44,12,12,12,0,0,0,815,0,79,0,0,0,7,14,307,804,797,0,0,0,0,1,0,3,0,0,0,0,0,0,417,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,89,54,298,26,0,0,290,0,453,0,0,0,111,14,0,0,0,0,0,0,0,0,0,954,1,0,0,0,13,0,0,0,0,4,141,40,0,0,6,0,0,0,0,0,2270,1,0,781,7,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,7,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,18,0,0,0,4,1,64,123,0,13,14,0,1,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,3,615,117,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,49,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,16,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,0,0,0,59,0,56,0,0,0,29,5,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,28,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,72,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,4,1 +12,0,0,9,4,57,25,16,118,24,36,0,0,0,40,1,38,0,7,11,0,4,2,3,0,0,0,0,6,0,11,0,0,4,43,0,61,6,72,0,258,0,0,0,1,0,0,7,0,0,0,0,10,423,0,0,0,0,0,1,0,0,0,32,0,43,0,0,9431,57,577,0,17,0,0,0,0,0,33,12,0,0,0,0,3,11,272,0,16,43,4,0,1,73,0,666,90,13,0,0,2,4,492,0,34,0,0,4061,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,8,0,0,0,11,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,13,0,0,0,0,0,0,250,0,135,0,0,0,20,19,91,620,265,0,0,0,0,1,0,0,0,0,0,0,0,0,970,0,0,0,0,0,0,0,0,0,0,0,0,7,0,4,0,0,0,0,1,0,8,43,404,14,0,0,513,0,532,0,0,0,370,50,0,0,0,0,0,0,2,0,0,265,1,0,0,0,20,0,0,0,0,7,148,320,0,0,179,0,0,0,0,0,220,0,0,302,0,0,1,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,26,0,0,0,8,33,104,657,0,17,0,0,0,0,0,0,293,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,36,0,0,0,0,0,0,0,0,0,0,0,6,0,7,335,124,1 +7,0,0,4,0,48,6,0,37,8,3,0,0,2,13,0,579,0,6,3,0,0,0,6,0,10,0,0,8,0,4,0,0,0,10,898,48,6,0,0,58,0,0,0,1,0,0,4,0,0,0,0,4,206,0,0,0,0,0,1,0,0,0,0,0,14,0,0,25336,48,673,0,9,0,0,0,0,0,25,0,0,0,0,0,8,21,4360,0,0,10,0,0,0,0,0,108,5,9,0,0,2,0,625,0,11,0,0,1480,0,0,0,0,14,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,9,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,12,12,12,0,0,0,3714,0,105,0,0,0,6,9,254,360,3686,0,0,0,0,1,0,3,0,0,0,0,0,0,506,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,257,4,0,0,272,0,347,0,0,0,101,11,0,0,0,0,0,0,0,0,0,646,1,0,0,0,9,0,0,0,0,4,131,27,0,0,0,0,0,0,0,0,1597,1,0,150,6,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,11,0,0,0,0,1,58,177,0,10,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,577,44,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,99,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1029,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,42,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,315,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,56,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,116,3,0,0,114,0,347,0,0,0,40,10,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,52,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,107,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,98,24,1 +6,0,0,15,0,53,10,0,50,5,10,0,0,6,20,1,881,0,7,4,0,0,0,9,0,11,3,0,11,0,4,0,0,0,10,2287,53,36,0,0,90,0,3,0,1,0,0,3,0,0,0,0,4,299,0,0,0,0,0,1,0,0,0,0,0,15,0,0,15935,53,997,0,11,0,0,0,0,0,21,0,0,0,0,0,12,38,3538,0,0,10,0,0,0,0,0,234,20,3,0,0,2,0,1001,0,10,12,0,2279,0,0,0,0,24,0,1,0,2,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,46,12,12,12,0,0,0,1445,0,77,0,0,0,8,15,311,926,1427,0,0,0,0,1,0,3,0,0,0,0,0,0,423,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,89,57,310,26,0,0,320,0,505,0,0,0,139,12,0,0,0,0,0,0,0,0,0,985,1,0,0,0,13,0,0,0,0,4,148,39,0,0,16,0,0,0,0,0,2591,1,0,779,9,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,2,0,0,0,9,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,23,0,0,0,4,1,63,120,0,15,14,0,1,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,3,833,113,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,36,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,1 +0,0,0,0,0,10,3,0,6,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,62,10,22,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,35,0,0,0,0,3,27,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,51,0,0,0,53,0,60,0,0,0,13,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,95,8,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,16,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,8,1 +4,0,0,10,0,42,8,0,45,0,6,0,0,6,5,0,667,0,6,5,0,0,0,8,0,11,0,0,9,0,2,0,0,0,3,2226,42,36,0,0,47,0,0,0,1,0,0,1,0,0,0,0,3,253,0,0,0,0,0,1,0,0,0,0,0,2,0,0,10948,42,739,0,8,0,0,0,0,0,13,0,0,0,0,0,12,33,2020,0,0,3,0,0,0,0,0,222,20,1,0,0,2,0,733,0,0,10,0,1898,0,0,0,0,3,0,1,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,36,12,12,12,0,0,0,800,0,48,0,0,0,6,9,293,838,780,0,0,0,0,1,0,3,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,89,27,242,15,0,0,248,0,339,0,0,0,80,10,0,0,0,0,0,0,0,0,0,743,1,0,0,0,13,0,0,0,0,3,134,11,0,0,15,0,0,0,0,0,1999,1,0,30,9,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,15,0,0,0,4,1,45,48,0,8,14,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,636,86,1 +3,0,0,8,0,23,5,0,18,5,12,0,0,0,19,0,17,0,7,1,0,0,0,2,0,0,0,0,2,0,3,0,0,0,10,0,23,9,0,0,69,0,0,0,1,0,0,3,0,0,0,0,2,135,0,0,0,0,0,1,0,0,0,0,0,16,0,0,1395,23,96,0,5,0,0,0,0,0,13,0,0,0,0,1,2,7,209,0,0,10,0,0,1,8,0,86,15,5,0,0,2,0,91,0,12,0,0,1006,0,0,0,0,5,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,67,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,174,0,148,0,0,0,4,5,50,85,192,0,0,0,0,1,0,0,0,0,0,0,0,0,774,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,8,42,150,10,0,0,228,0,317,0,0,0,161,10,0,0,0,0,0,0,0,0,0,78,1,0,0,0,3,0,0,0,0,1,116,119,0,0,29,0,0,0,0,0,111,0,0,187,0,0,1,0,1,0,0,0,8,0,1,0,2,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,6,0,0,0,0,1,33,517,0,5,0,0,0,0,0,0,85,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,1,0,0,0,0,0,0,0,0,0,2,583,106,1 +6,0,0,7,6,62,12,24,71,12,9,0,0,6,18,0,70,0,7,19,0,6,3,7,0,8,9,0,10,0,9,1,0,6,32,0,68,9,105,0,92,0,0,0,1,0,0,4,1,0,0,0,10,154,0,0,0,0,0,1,0,0,0,20,0,21,0,0,35865,62,802,0,18,0,0,0,0,0,26,18,0,0,0,0,10,21,5063,0,24,32,6,0,0,0,0,214,20,10,0,0,2,6,180,0,16,0,0,1617,0,0,0,0,7,0,2,0,0,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,10,10,10,0,0,0,4288,0,105,0,0,0,18,27,250,97909,4297,0,0,0,0,1,0,6,0,0,0,0,0,0,4376,0,0,0,0,0,0,0,0,0,0,0,0,4,1,6,0,0,0,0,1,0,84,30,400,13,0,0,399,0,479,0,0,0,187,42,0,0,0,0,0,0,3,0,0,193,1,0,4,0,35,0,0,0,0,5,150,36,0,0,0,0,0,0,0,0,679,0,0,1710,3,0,1,1,0,0,0,0,14,0,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,69,1,1,1,0,36,0,0,0,0,49,100,222,0,28,9,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,16,0,0,0,0,0,0,0,0,0,0,0,11,0,4,1013,116,1 +25,0,0,9,3,80,63,9,126,34,13,0,0,6,45,0,846,0,9,7,0,2,1,9,0,11,15,0,21,0,26,0,0,3,37,835,83,130,2,0,255,0,0,0,1,0,0,2,0,0,0,0,26,288,0,2,0,0,0,1,0,0,0,12,0,46,0,0,34711,80,1227,0,43,0,0,0,0,0,16,6,0,0,0,0,10,27,6160,0,9,37,3,0,2,37,0,557,35,4,0,0,4,3,1235,0,39,1,0,2711,0,0,0,0,6,0,4,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,19,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,50,12,12,12,0,0,0,1288,0,91,0,0,0,51,49,323,1078,1303,0,0,0,0,1,0,3,0,0,0,0,0,0,1520,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,0,195,95,563,12,0,0,715,0,1233,0,1,0,381,31,0,0,0,0,0,0,0,0,0,1108,1,0,0,0,19,0,0,0,0,8,187,219,0,0,36,0,0,0,0,0,3833,1,0,965,8,0,1,31,0,0,0,0,2,0,0,0,1,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,8,30,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,84,1,1,1,0,65,0,0,0,2,25,120,439,0,59,14,0,0,0,0,0,336,11,0,0,0,0,0,0,0,0,0,0,0,5,0,1,40,30,0,0,0,0,0,0,0,0,0,0,4,0,1,2318,80,1 +0,0,0,0,0,11,2,0,17,0,1,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,15,0,2,0,1,0,0,2,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1217,11,49,0,1,0,0,0,0,0,9,0,0,0,0,0,1,5,547,0,0,3,0,0,0,0,0,9,0,3,0,0,2,0,20,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,30,0,0,0,0,3,25,5,73,0,0,0,0,1,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,77,0,0,0,112,0,136,0,0,0,52,1,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,93,33,0,0,0,0,0,0,0,0,230,0,0,804,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,204,0,1,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,272,9,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,42,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,19,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,0,0,0,48,0,38,0,0,0,18,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,16,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,44,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,4,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,90,0,0,0,0,0,1,0,0,0,0,0,2,0,0,975,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,45,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,275,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,60,0,55,0,0,0,4,10,32,174,69,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,113,3,0,0,114,0,308,0,0,0,40,15,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,54,0,0,39,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,86,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,100,25,1 +19,0,0,16,0,68,33,0,271,13,57,0,0,6,15,0,143,0,7,7,0,0,0,8,0,12,35,0,14,0,12,0,0,0,22,1952,68,46,0,0,421,0,0,0,1,0,0,3,0,0,0,0,13,399,0,0,0,0,0,1,0,0,0,4,0,46,0,0,14029,68,533,0,24,0,0,0,0,0,21,0,0,0,0,0,14,30,2374,0,0,22,0,0,5,169,0,1592,115,5,0,0,2,0,1218,0,11,15,0,2993,0,0,0,0,20,0,7,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,0,16,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,48,12,12,12,0,0,0,1078,0,132,0,0,0,25,65,325,1374,1083,0,0,0,0,1,0,12,0,0,0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,91,180,361,15,0,0,438,0,911,0,0,0,254,33,0,0,0,0,0,0,0,0,0,532,1,0,0,0,15,0,0,0,0,13,176,503,0,0,236,0,5,0,0,0,1224,1,0,390,6,0,1,1,0,0,0,0,4,0,0,0,1,0,0,0,0,0,12,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,8,0,0,0,0,0,6,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,77,1,1,1,0,30,0,0,0,0,1,90,357,0,61,12,0,0,0,0,0,505,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,27,0,0,0,0,0,0,0,0,0,0,0,0,0,3,870,1595,1 +0,0,0,0,0,16,2,0,11,0,1,0,0,0,2,0,19,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,16,6,0,0,14,0,0,0,1,0,0,1,1,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,0,0,0,752,16,43,0,1,0,0,0,0,0,9,0,0,0,0,0,1,3,55,0,0,4,0,0,0,0,0,6,0,13,0,0,2,0,11,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,64,0,57,0,0,0,0,3,39,4,70,0,0,0,0,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,45,3,101,0,0,0,109,0,144,0,0,0,36,14,0,0,0,0,0,0,0,0,0,42,1,0,13,0,2,0,0,0,0,0,101,11,0,0,0,0,0,0,0,0,220,0,0,36,0,0,1,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,20,36,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,12,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,114,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1350,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,57,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,295,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,64,0,55,0,0,0,4,10,32,174,73,0,0,0,0,1,0,0,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,114,3,0,0,114,0,424,0,0,0,40,15,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,60,0,0,62,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,155,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,112,24,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,131,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1621,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,45,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,412,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,60,0,57,0,0,0,4,10,32,174,69,0,0,0,0,1,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,118,3,0,0,114,0,483,0,0,0,40,11,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,62,0,0,46,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,140,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,104,25,1 +7,0,0,4,0,21,3,0,16,2,4,0,0,0,7,1,15,0,7,1,0,0,0,1,0,0,0,0,3,0,12,0,0,0,9,0,21,6,0,0,29,0,0,0,1,0,0,2,0,0,0,0,11,57,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1075,21,71,0,15,0,0,0,0,0,11,0,0,0,0,0,1,4,138,0,0,9,0,0,0,0,0,40,0,4,0,0,2,0,44,0,5,0,0,456,0,0,0,0,6,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,134,0,95,0,0,0,22,21,47,50,148,0,0,0,0,1,0,0,0,0,0,0,0,0,416,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,0,8,10,155,4,0,0,190,0,294,0,0,0,118,14,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,8,109,75,0,0,0,0,0,0,0,0,77,0,0,125,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,25,0,0,0,8,1,30,283,0,15,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,232,46,1 +2,0,0,7,2,20,56,8,185,2,50,0,0,0,6,0,25,0,7,6,0,2,1,2,0,0,0,0,3,0,2,0,0,2,8,0,22,6,64,0,257,0,0,0,1,0,0,1,0,0,0,0,1,88,0,0,0,0,0,1,0,0,0,6,0,9,0,0,905,20,441,0,5,0,0,0,0,0,6,6,0,0,0,0,2,4,128,0,8,8,2,0,1,157,0,1262,220,1,0,0,2,2,689,0,4,0,0,277,0,0,0,0,1,0,0,0,2,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,110,0,64,0,0,0,2,5,47,459,118,0,0,0,0,1,0,0,0,0,0,0,0,0,488,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,9,162,9,0,0,239,0,246,0,0,0,136,16,0,0,0,0,0,0,0,0,0,329,0,0,0,0,11,0,0,0,0,2,106,311,0,0,533,0,0,0,0,0,137,0,0,154,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,5,0,0,0,0,17,30,95,0,5,0,0,0,0,0,0,301,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,154,120,1 +4,0,0,5,0,32,4,0,17,5,4,0,0,0,15,1,15,0,7,1,0,0,0,2,0,0,0,0,6,0,9,0,0,0,18,0,32,6,0,0,64,0,0,0,1,0,0,1,0,0,0,0,8,57,0,0,0,0,0,1,0,0,0,7,0,16,0,0,416,32,69,0,15,0,0,0,0,0,6,0,0,0,0,0,2,4,43,0,0,18,0,0,0,0,0,43,0,2,0,0,2,0,61,0,13,0,0,478,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,55,0,54,0,0,0,16,16,62,51,65,0,0,0,0,1,0,0,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,20,168,5,0,0,191,0,243,0,0,0,112,12,0,0,0,0,0,0,0,0,0,63,1,0,0,0,3,0,0,0,0,8,122,43,0,0,0,0,0,0,0,0,40,0,0,25,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,50,188,0,15,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,101,46,1 +13,0,0,5,0,58,8,0,43,12,1,0,0,2,14,0,76,0,11,2,0,0,0,8,0,8,27,0,10,0,12,0,0,0,23,0,58,6,0,0,99,0,2,0,1,0,0,5,1,0,0,0,12,137,0,0,0,0,0,1,0,0,0,25,0,13,0,0,19659,58,242,0,20,0,0,0,0,0,39,0,0,0,0,0,9,24,5553,0,0,23,0,0,0,0,0,112,5,16,0,0,2,0,254,0,11,0,0,3799,0,0,0,0,6,1,1,0,2,0,0,1,0,0,0,15,0,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,11,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,11,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,32,10,10,10,0,0,0,4203,0,123,0,0,0,22,43,236,887,4199,0,0,0,0,1,0,3,0,0,0,0,0,0,3825,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,32,29,314,3,0,0,307,0,560,0,0,0,154,45,0,0,0,0,0,0,0,0,0,155,1,0,11,0,10,0,0,0,0,6,144,47,0,0,0,0,0,0,0,0,1247,0,0,2921,3,0,1,1,1,0,0,0,22,0,0,0,3,0,0,0,0,0,11,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,11,1,1,0,0,0,3,375,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,22,0,0,0,0,1,81,188,0,48,9,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1545,136,1 +2,0,0,4,0,33,3,0,15,1,4,0,0,0,8,1,15,0,7,1,0,0,0,1,0,0,0,0,17,0,26,0,0,0,9,0,33,6,0,0,49,0,0,0,1,0,0,12,0,0,0,0,25,180,0,0,0,0,0,1,0,0,0,0,0,8,0,0,3072,33,186,0,43,0,0,0,0,0,62,0,0,0,0,0,1,15,647,0,0,9,0,0,0,0,0,132,0,23,0,0,2,0,68,0,6,0,0,584,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,509,0,177,0,0,0,50,43,84,189,503,0,0,0,0,1,0,0,0,0,0,0,0,0,1311,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,8,11,208,4,0,0,215,0,320,0,0,0,108,15,0,0,0,0,0,0,6,0,0,53,1,0,0,0,2,0,0,0,0,22,122,34,0,0,0,0,0,0,0,0,265,0,0,646,0,0,1,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,67,0,0,0,16,1,42,775,0,43,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,14,622,59,1 +187,0,0,9,2,248,32,1,130,10,10,0,0,7,23,0,1488,0,8,2,0,0,0,9,0,11,6,0,49,0,191,0,0,2,207,836,249,173,92,0,248,0,0,0,1,0,0,5,0,0,0,0,191,401,0,0,0,0,0,1,0,0,0,184,0,16,0,0,33632,248,1913,0,236,0,0,0,0,0,28,0,0,0,0,0,10,34,5956,0,1,207,2,0,2,0,0,1051,20,8,1,0,8,2,1819,0,11,2,0,13104,0,0,0,0,5,2,3,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,2,0,0,0,6,0,0,0,0,0,1,0,182,0,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,159,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,153,12,12,12,0,0,0,1197,0,309,0,0,0,382,389,742,1380,1182,0,0,0,0,1,0,5,0,0,0,166,1,80,2273,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,225,70,1153,11,0,0,1060,0,1372,0,1,0,766,117,0,0,0,0,0,0,0,0,0,1698,1,0,0,0,11,0,0,0,0,191,346,54,0,0,11,0,0,0,0,0,5447,1,0,386,8,0,1,1,0,0,0,0,12,0,0,0,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,8,379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,245,1,1,1,0,429,0,0,0,0,11,456,501,0,243,14,0,0,0,0,0,134,5,0,0,0,0,0,0,0,0,0,0,0,3,0,1,16,0,0,0,0,0,0,0,2,0,0,0,2,0,3,2576,60,1 +3,0,0,5,0,27,13,0,52,8,7,0,0,0,15,0,16,0,6,1,0,0,0,2,0,0,0,0,1,0,2,0,0,0,13,0,27,6,0,0,82,0,0,0,1,0,0,19,0,0,0,0,1,798,0,1,0,0,0,1,0,0,0,14,0,15,0,0,3802,27,222,0,3,0,0,0,0,0,73,0,0,0,0,2,2,25,644,0,0,13,0,0,0,18,0,190,20,27,0,0,2,0,144,0,11,0,0,869,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,9,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,544,0,236,0,0,0,2,5,53,147,545,0,0,0,0,1,0,0,0,0,0,0,0,0,1454,0,0,0,0,0,0,0,0,0,0,0,0,19,0,6,0,0,0,0,0,0,8,18,195,5,0,0,338,0,526,0,0,0,257,20,0,0,0,0,0,0,10,0,0,109,1,0,0,0,3,0,0,0,0,2,116,54223,0,0,41,0,0,0,0,0,212,0,0,568,0,0,1,0,0,0,0,0,43,0,0,0,3,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,3,0,0,0,0,1,40,1092,0,3,0,0,0,0,0,0,147,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1399,66,1 +2,0,0,6,0,25,3,0,22,3,4,0,0,0,12,1,15,0,7,1,0,0,0,1,0,0,0,0,6,0,9,0,0,0,12,0,25,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,8,57,0,0,0,0,0,1,0,0,0,0,0,11,0,0,347,25,73,0,15,0,0,0,0,0,4,0,0,0,0,1,1,6,45,0,0,12,0,0,0,0,0,29,0,3,0,0,2,0,59,0,9,0,0,464,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,52,0,46,0,0,0,16,14,54,30,58,0,0,0,0,1,0,0,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,14,137,7,0,0,172,0,213,0,0,0,100,7,0,0,0,0,0,0,0,0,0,64,1,0,0,0,2,0,0,0,0,5,111,46,0,0,0,0,0,0,0,0,66,0,0,31,0,0,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,22,0,0,0,8,1,37,203,0,15,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,18,1 +0,0,0,4,0,11,6,0,45,0,10,0,0,0,4,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,91,0,0,0,1,0,0,3,0,0,0,0,0,88,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1251,11,97,0,1,0,0,0,0,0,14,0,0,0,0,0,1,6,70,0,0,1,0,0,1,23,0,194,15,5,0,0,2,0,137,0,1,0,0,500,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,79,0,60,0,0,0,0,3,25,198,90,0,0,0,0,1,0,0,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,80,97,4,0,0,203,0,357,0,0,0,136,7,0,0,0,0,0,0,0,0,0,86,1,0,0,0,2,0,0,0,0,0,95,172,0,0,26,0,0,0,0,0,40,0,0,65,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,332,0,1,0,0,0,0,0,0,78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,136,23,1 +14,0,0,6,5,211,51,17,106,7,20,0,0,0,19,0,146,0,11,11,0,3,0,1,0,0,15,0,5,0,7,0,0,5,198,0,213,164,0,0,509,0,0,0,1,0,0,2,0,0,0,0,6,156,0,0,0,0,0,1,0,0,0,2,0,22,0,0,2532,211,508,0,11,0,0,0,0,0,8,9,0,0,0,1,2,6,685,0,17,198,5,0,4,27,0,345,40,3,0,0,6,5,299,0,15,1,0,4120,0,0,0,0,24,1,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,6,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,473,0,624,0,0,0,12,35,246,823,1420,0,0,0,0,1,0,0,0,0,0,0,0,0,1882,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,2,227,42,1093,11,0,0,1050,0,941,0,2,0,739,18,0,0,0,0,0,0,0,0,0,353,1,0,0,0,15,0,0,0,0,7,322,108,0,0,95,0,0,0,0,0,739,0,0,44,0,0,1,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,9,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,212,1,1,1,0,29,0,0,0,0,17,411,410,0,27,0,0,0,0,0,0,609,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,6,0,2,1168,60,1 +4,0,0,8,1,24,31,1,50,4,10,0,1,0,13,0,69,0,9,2,0,0,0,1,0,0,0,0,5,0,3,0,0,1,11,0,25,94,0,0,68,0,0,0,1,0,0,2,0,0,0,0,2,82,0,0,0,0,0,1,0,0,0,0,0,13,0,0,587,24,146,0,8,0,0,0,0,0,10,0,0,0,0,0,2,5,127,0,1,11,1,0,3,8,0,127,15,3,0,0,6,1,102,0,9,0,0,478,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,106,0,100,0,0,0,4,4,55,101,125,0,0,0,0,1,0,0,0,0,0,0,0,0,497,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,122,45,333,11,0,0,319,0,641,0,1,0,127,22,0,0,0,0,0,0,0,0,0,183,1,0,0,0,3,0,0,0,0,1,126,50,0,0,29,0,1,0,0,0,223,0,0,30,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,22,1,1,1,0,9,0,0,0,2,9,36,141,0,8,0,0,0,0,0,0,159,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,1,0,3,244,129,1 +5,0,0,7,0,44,6,0,26,3,7,0,0,2,14,1,26,0,7,3,0,0,0,5,0,8,3,0,7,0,6,0,0,0,14,0,44,6,0,0,62,0,0,0,1,0,0,4,0,0,0,0,6,110,0,0,0,0,0,1,0,0,0,0,0,17,0,0,1355,44,105,0,11,0,0,0,0,0,16,0,0,0,0,0,7,18,240,0,0,14,0,0,0,4,0,143,15,4,0,0,2,0,108,0,10,0,0,802,0,0,0,0,3,0,3,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,180,0,177,0,0,0,10,19,205,94,186,0,0,0,0,1,0,5,0,0,0,0,0,0,527,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,22,226,7,0,0,229,0,285,0,0,0,111,33,0,0,0,0,0,0,0,0,0,89,1,0,0,0,8,0,0,0,0,5,132,58,0,0,17,0,0,0,0,0,146,0,0,63,3,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,25,0,0,0,2,1,58,184,0,15,9,0,0,0,0,0,84,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,4,506,65,1 +0,0,91,3,92,100,2,94,15,0,94,0,0,0,5,1,145,0,97,193,0,86,0,0,0,0,0,0,90,0,1,0,0,1,90,11,101,186,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,2,0,0,86,100,578,0,91,0,0,0,0,0,0,3,0,0,0,0,1,1,2,0,94,90,1,0,0,0,0,7,0,0,0,0,2,92,30,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,16,91,58,0,0,0,0,3,310,5,201,0,0,0,0,0,0,0,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,563,904,367,95,0,0,356,0,234,0,0,0,192,255,0,0,0,0,0,0,0,0,0,359,0,0,0,0,279,0,0,0,0,0,455,1,0,91,0,0,0,0,0,0,635,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,291,191,90,0,91,0,0,0,0,0,0,189,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,17431,0,0,459,103,1 +0,0,0,0,0,25,4,0,6,0,1,0,1,0,2,0,12,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,6,0,0,19,0,0,0,1,0,0,0,0,0,0,0,1,63,0,0,0,0,0,1,0,0,0,0,0,0,0,0,438,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,56,0,0,1,0,0,0,0,0,68,0,0,0,0,2,0,21,0,0,0,0,435,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,23,0,0,0,0,3,176,8,42,0,0,0,0,1,0,3,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,17,10,86,0,0,0,98,0,131,0,0,0,29,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,8,0,0,0,0,0,107,25,0,0,0,0,0,0,0,0,56,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,65,0,2,8,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,25,1 +7,0,0,4,0,46,6,0,36,8,3,0,0,2,13,0,566,0,6,3,0,0,0,6,0,10,0,0,8,0,4,0,0,0,9,898,46,6,0,0,58,0,0,0,1,0,0,4,0,0,0,0,4,199,0,0,0,0,0,1,0,0,0,0,0,14,0,0,19282,46,653,0,9,0,0,0,0,0,22,0,0,0,0,0,8,21,3363,0,0,9,0,0,0,0,0,108,5,7,1,0,2,0,611,0,11,0,0,1264,0,0,0,0,12,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,9,0,5,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,12,12,12,0,0,0,2733,0,72,0,0,0,6,9,249,339,2716,0,0,0,0,1,0,3,0,0,0,0,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,258,4,0,0,262,0,329,0,0,0,94,11,0,0,0,0,0,0,0,0,0,632,1,0,0,0,9,0,0,0,0,4,129,27,0,0,0,0,0,0,0,0,1540,1,0,103,6,0,1,1,0,0,0,0,8,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,11,0,0,0,0,1,55,153,0,10,12,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,466,42,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,0,0,0,47,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,18,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,0,0,0,59,0,56,0,0,0,29,2,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,28,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,72,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,4,1 +5,0,0,5,0,47,37,0,54,28,4,0,0,2,36,1,24,0,7,3,0,0,0,5,0,8,3,0,8,0,10,0,0,0,14,0,47,6,0,0,100,0,0,0,1,0,0,1,0,0,0,0,10,100,0,0,0,0,0,1,0,0,0,0,0,37,0,0,4571,47,170,0,16,0,0,0,0,0,40,0,0,0,0,0,7,14,123,0,0,14,0,0,0,0,0,100,5,2,0,0,2,0,165,0,34,0,0,2665,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,99,0,88,0,0,0,18,34,215,70,98,0,0,0,0,1,0,3,0,0,0,0,0,0,449,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,46,232,5,0,0,300,0,362,0,0,0,138,10,0,0,0,0,0,0,0,0,0,165,1,0,0,0,8,0,0,0,0,6,136,80,0,0,0,0,0,0,0,0,101,0,0,43,3,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,62,0,0,0,8,1,61,190,0,20,9,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,258,69,1 +2,0,0,4,0,23,3,0,7,2,4,0,0,0,10,2,52,0,7,2,0,0,0,0,0,0,6,0,5,0,11,0,0,0,12,0,23,6,0,0,36,0,0,0,1,0,0,1,0,0,0,0,10,39,0,0,0,0,0,1,0,0,0,0,0,10,0,0,269,23,97,0,16,0,0,0,0,0,2,0,0,0,0,0,1,3,9,0,0,12,0,0,0,0,0,27,0,0,0,0,2,0,87,0,8,0,0,319,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,30,0,54,0,0,0,20,20,54,32,35,0,0,0,0,1,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,13,104,4,0,0,103,0,172,0,0,0,64,17,0,0,0,0,0,0,0,0,0,85,1,0,0,0,2,0,0,0,0,5,109,23,0,0,0,0,0,0,0,0,304,0,0,14,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,23,0,0,0,8,11,35,68,0,22,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,17,1 +32,0,0,8,0,26,3,0,27,2,9,0,0,0,10,1,30,0,7,1,0,0,0,1,0,0,10,0,7,0,11,0,0,0,14,0,26,6,0,0,52,0,0,0,1,0,0,2,0,0,0,0,10,67,0,0,0,0,0,1,0,0,0,0,0,12,0,0,543,26,109,0,18,0,0,0,0,0,8,0,0,0,0,0,1,5,57,0,0,14,0,0,1,10,0,120,20,3,0,0,2,0,144,0,8,0,0,360,0,0,0,0,8,16,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,1,0,3,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,72,0,48,0,0,0,20,22,54,130,77,0,0,0,0,1,0,0,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,15,144,11,0,0,172,0,260,0,0,0,101,8,0,2,0,0,0,0,0,0,0,87,1,0,0,0,2,0,0,0,0,4,112,64,0,0,45,0,0,0,0,0,102,0,0,33,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,25,0,0,0,8,1,40,168,0,28,0,0,0,0,0,0,59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,93,61,1 +0,0,0,0,0,10,2,0,15,0,1,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,11,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,0,0,0,162,10,37,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,19,0,0,2,0,0,0,0,0,7,0,1,0,0,2,0,16,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,33,0,0,0,0,3,24,5,43,0,0,0,0,1,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,0,0,0,107,0,122,0,0,0,49,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,36,0,0,0,0,0,0,0,0,26,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,125,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,64,9,1 +1,0,0,11,1,44,40,1,100,1,12,0,0,6,9,0,850,0,8,3,0,0,0,8,0,11,0,0,5,0,1,0,0,1,8,1083,45,54,0,0,107,0,0,0,0,0,0,4,1,0,0,0,1,192,0,0,0,0,0,1,0,0,0,0,0,5,0,0,9964,44,1010,0,2,0,0,0,0,0,27,0,0,0,0,0,10,27,1773,0,1,8,1,0,1,17,0,379,35,11,0,0,4,1,954,0,2,1,0,1940,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,12,12,12,0,0,0,800,0,92,0,0,0,0,3,280,526,780,0,0,0,0,1,0,3,0,0,0,0,0,0,1591,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,187,32,424,14,0,0,427,0,695,0,1,0,151,12,0,0,0,0,0,0,0,0,0,1025,1,0,5,0,11,0,0,0,0,0,143,71,0,0,40,0,0,0,0,0,2421,1,0,881,8,0,1,1,0,0,0,0,16,0,1,0,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,47,1,1,1,0,1,0,0,0,0,9,53,229,0,3,14,0,0,0,0,0,161,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,1,0,3,989,89,1 +6,0,0,6,6,54,124,6,136,1,104,0,0,7,4,0,1405,0,6,15,0,11,0,8,0,11,0,0,25,0,1,0,0,6,9,3041,60,6,0,0,67,0,0,0,1,0,0,6,0,0,0,0,1,1811,0,0,0,0,0,1,6,0,0,6,0,4,0,0,189565,54,2684,0,22,0,0,0,0,0,215,18,0,0,0,1,9,306,21241,0,6,9,6,0,1,8,0,1125,40,11,0,0,2,6,1666,0,0,778,0,23505,0,0,0,0,6,0,4,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,12,12,12,0,0,0,11253,0,90,0,0,0,14,17,770,26295,11235,0,0,0,0,1,0,6,0,0,0,0,0,0,36922,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,108,22,941,12,0,0,1245,0,540,0,0,0,884,7,0,0,0,0,0,0,2,0,0,1786,1,0,0,0,34,0,0,0,0,1,612,114,0,0,825,0,0,0,0,0,9331,1,0,4617,98,0,1,1,0,0,0,0,14,0,0,0,1,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,63,0,0,0,0,49,69,706,0,23,14,0,0,0,0,0,117,7,0,0,0,0,0,0,0,0,0,0,0,9,0,1,7,0,0,0,0,0,0,0,0,0,0,0,12,0,6,5918,104,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,100,0,0,0,0,0,1,0,0,0,0,0,2,0,0,714,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,43,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,271,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,56,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,112,3,0,0,114,0,277,0,0,0,40,9,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,53,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,206,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,99,23,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,7,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,118,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1509,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,53,0,0,7,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,534,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,64,0,55,0,0,0,4,10,32,174,73,0,0,0,0,1,0,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,123,3,0,0,114,0,448,0,0,0,49,14,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,66,0,0,62,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,24,139,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,108,25,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,75,0,0,0,0,0,1,0,0,0,0,0,2,0,0,508,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,43,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,370,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,56,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,118,3,0,0,114,0,200,0,0,0,40,9,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,53,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,146,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,99,23,1 +4,0,0,0,0,14,2,0,9,0,1,0,0,0,2,0,36,0,6,1,0,0,0,1,0,0,0,0,2,0,3,0,0,0,6,0,14,66,0,0,29,0,2,0,1,0,0,2,0,0,0,0,2,61,0,0,0,0,0,1,0,0,0,0,0,0,0,0,216,14,34,0,5,0,0,0,0,0,5,0,0,0,0,0,1,4,18,0,0,6,0,0,0,0,0,17,0,3,0,0,2,0,12,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,37,0,22,0,0,0,4,5,31,18,61,0,0,0,0,1,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,95,0,0,0,187,0,216,0,0,0,95,17,0,0,0,0,0,0,0,0,0,56,1,0,0,0,2,0,0,0,0,3,111,75,0,0,0,0,1,0,0,0,70,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,6,0,0,0,0,1,20,171,0,5,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,17,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,93,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1050,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,43,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,287,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,57,0,0,0,4,10,36,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,117,3,0,0,117,0,351,0,0,0,40,12,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,53,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,102,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,102,24,1 +0,0,0,2,0,9,2,0,4,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,1,0,0,71,9,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,27,0,0,0,0,3,23,5,23,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,51,2,0,0,46,0,74,0,0,0,15,3,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,91,12,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,22,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,26,1 +17,0,0,13,0,103,32,0,66,4,16,0,0,2,18,1,20,0,7,2,0,0,0,6,0,8,0,0,11,0,13,0,0,0,69,0,103,6,0,0,264,0,0,0,1,0,0,4,0,0,0,0,13,170,0,0,0,0,0,1,0,0,0,0,0,18,0,0,1671,103,182,0,22,0,0,0,0,0,21,0,0,0,0,0,7,17,278,0,0,69,0,0,1,36,0,382,35,7,0,0,2,0,261,0,11,0,0,1395,0,0,0,0,17,0,4,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,13,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,10,10,10,0,0,0,232,0,141,0,0,0,24,18,302,213,229,0,0,0,0,1,0,3,0,0,0,0,0,0,776,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,32,120,415,16,0,0,457,0,566,0,0,0,321,20,0,0,0,0,0,0,0,0,0,162,1,0,0,0,8,0,0,0,0,6,189,140,0,0,71,0,0,0,0,0,117,0,0,80,3,0,1,1,0,0,0,0,8,0,0,0,0,0,0,0,0,0,5,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,110,1,1,1,0,33,0,0,0,2,1,172,472,0,23,9,0,0,0,0,0,156,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,3,247,102,1 +0,0,0,6,0,53,8,0,30,1,6,0,0,6,7,0,67,0,6,3,0,0,0,8,0,10,0,0,7,0,1,0,0,0,14,9966,53,6,0,0,58,0,0,0,1,0,0,2,0,0,0,0,1,378,0,0,0,0,0,1,0,0,0,12,0,5,0,0,44072,53,127,0,5,0,0,0,0,0,16,0,0,0,0,0,10,24,7436,0,0,14,0,0,0,0,0,203,20,3,0,0,2,0,120,0,2,15,0,2190,0,0,0,0,5,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,12,12,12,0,0,0,5941,0,84,0,0,0,1,4,316,668,5928,0,0,0,0,1,0,9,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,18,317,6,0,0,362,0,389,0,0,0,190,13,0,0,0,0,0,0,0,0,0,130,1,0,0,0,11,0,0,0,0,1,165,57,0,0,13,0,3,0,0,0,1190,1,0,102,6,0,1,1,0,0,0,0,6,0,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,7,0,0,0,0,1,67,316,0,6,12,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,1,0,0,0,0,0,0,0,0,0,2,913,108,1 +11,0,0,15,2,63,74,2,124,8,48,0,0,6,49,0,177,0,13,4,0,0,0,8,0,11,0,0,11,0,7,0,0,2,24,4918,65,169,0,0,206,0,0,0,1,0,0,1,1,0,0,0,8,422,0,0,0,0,0,1,0,0,0,7,0,29,0,0,23823,63,420,0,16,0,0,0,0,0,25,0,0,0,0,0,11,24,2869,0,2,24,2,0,5,39,0,629,90,4,0,0,6,2,456,0,19,9,0,2008,0,0,0,0,5,2,0,0,0,0,0,1,0,0,0,4,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,7,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,12,12,12,0,0,0,1717,0,210,0,0,0,14,13,321,13724,1720,0,0,0,0,1,0,5,0,0,0,0,0,0,10172,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,1,0,302,84,713,19,0,0,707,0,1037,33,2,0,288,32,0,0,0,0,0,0,0,0,0,491,1,0,2,0,12,0,0,0,0,6,229,99,0,0,177,0,3,0,0,0,1183,1,0,46,6,0,1,1,0,0,0,0,5,0,1,0,3,0,0,0,0,0,11,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,2,74,1,1,1,0,23,0,0,0,6,17,89,53,0,17,12,0,0,0,0,0,253,3,0,0,0,0,0,0,0,0,0,0,0,4,0,1,18,0,0,0,0,0,0,0,0,0,0,0,2,0,2,1126,167,1 +9,0,0,7,2,67,15,8,74,9,11,0,0,6,59,1,1326,0,8,8,0,2,1,9,0,14,0,0,22,0,12,0,0,2,19,2212,69,18,81,0,155,0,0,0,1,0,0,1,1,0,0,0,15,315,0,0,0,0,0,1,0,0,0,17,0,15,0,0,23820,67,1644,0,33,0,0,0,0,0,22,6,0,0,0,0,11,35,4327,0,8,19,2,0,0,0,0,282,20,14,0,0,2,2,1530,0,12,16,0,2802,0,0,0,0,43,0,1,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,7,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,68,12,12,12,0,0,0,2203,0,97,0,0,0,27,26,348,982,2190,0,0,0,0,1,0,6,0,0,0,0,0,0,1903,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,121,59,448,10,0,0,435,0,561,0,0,0,197,141,0,0,0,0,0,0,0,0,0,1500,1,0,13,0,20,0,0,0,0,14,175,40,0,0,18,0,0,0,0,0,3728,1,0,80,9,0,1,1,0,0,0,0,20,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,9,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,82,1,1,1,0,46,0,0,0,0,17,88,232,0,34,14,0,0,0,0,0,140,3,0,0,0,0,0,0,0,0,0,0,0,4,0,1,13,0,0,0,0,0,0,0,0,0,0,0,4,0,0,127249,195,1 +11,0,0,5,14,40,4,14,144,5,18,0,0,0,12,1,127,0,7,29,0,28,0,2,0,0,0,0,11,0,10,0,0,14,21,0,54,6,0,0,62,0,0,0,1,0,0,9,0,0,0,0,9,224,0,0,0,0,0,1,14,0,0,7,0,13,0,0,3219,40,1245,0,21,0,0,0,0,0,36,42,0,0,0,0,2,14,650,0,14,21,14,0,0,0,0,82,0,9,0,0,2,14,126,0,10,0,0,653,0,0,0,0,12,0,5,0,0,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,10,0,0,0,0,1,0,17,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,465,0,184,0,0,0,18,17,100,82,486,0,0,0,0,1,0,0,0,0,0,0,0,0,1276,0,0,0,0,0,0,0,0,0,0,0,0,10,0,8,0,0,0,0,0,0,8,17,651,19,0,0,714,0,605,0,0,0,271,30,0,0,0,0,0,0,15,0,0,313,1,0,0,0,59,0,0,0,0,6,130,63,0,0,0,0,0,0,0,0,385,0,0,608,0,0,1,0,0,0,0,0,17,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,29,0,0,0,8,113,75,617,0,21,0,0,0,0,0,0,117,14,0,0,0,0,0,0,0,0,0,0,0,14,0,1,5,0,0,0,0,0,1,0,0,0,0,0,27,0,7,672,115,1 +12,0,0,5,14,46,4,14,144,7,18,0,0,0,18,1,127,0,7,29,0,28,0,2,0,0,0,0,13,0,13,0,0,14,25,0,60,6,0,0,91,0,0,0,1,0,0,9,0,0,0,0,12,228,0,0,0,0,0,1,14,0,0,7,0,19,0,0,3104,46,1265,0,26,0,0,0,0,0,36,42,0,0,0,0,2,14,629,0,14,25,14,0,0,0,0,96,0,9,0,0,2,14,143,0,16,0,0,767,0,0,0,0,12,0,5,0,0,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,11,0,0,0,0,1,0,17,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,453,0,189,0,0,0,24,23,114,100,474,0,0,0,0,1,0,0,0,0,0,0,0,0,1245,0,0,0,0,0,0,0,0,0,0,0,0,10,0,8,0,0,0,0,0,0,8,23,674,19,0,0,732,0,582,0,0,0,283,11,0,0,0,0,0,0,15,0,0,319,1,0,0,0,59,0,0,0,0,9,136,63,0,0,0,0,0,0,0,0,374,0,0,553,0,0,1,0,0,0,0,0,17,0,0,0,2,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,37,0,0,0,8,113,85,621,0,26,0,0,0,0,0,0,142,14,0,0,0,0,0,0,0,0,0,0,0,14,0,1,7,0,0,0,0,0,1,0,0,0,0,0,27,0,7,669,116,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,76,0,0,0,0,0,1,0,0,0,0,0,2,0,0,665,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,44,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,648,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,56,0,0,0,4,10,32,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,113,3,0,0,114,0,255,0,0,0,40,9,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,53,0,0,38,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,120,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,99,23,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,21,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,20,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,37,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,4,1 +2,0,0,8,0,21,3,0,15,2,21,0,0,0,26,1,93,0,7,1,0,0,0,1,0,0,0,0,10,0,25,0,0,0,8,0,21,195,0,0,199,0,5,0,1,0,0,5,0,0,0,0,24,91,0,0,0,0,0,1,0,0,0,0,0,10,0,0,15310,21,218,0,35,0,0,0,0,0,25,0,0,0,0,0,1,8,4017,0,0,8,0,0,0,0,0,122,0,9,0,0,2,0,149,0,6,0,0,625,0,0,0,0,45,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,1925,0,73,0,0,0,48,51,50,105,2030,0,0,0,0,1,0,0,0,0,0,0,0,0,4498,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,109,225,10,0,0,351,0,295,0,0,0,252,18,0,0,0,0,0,0,0,0,0,166,1,0,0,0,2,0,0,0,0,25,148,127,0,0,0,0,2,0,0,0,1447,0,0,4469,0,0,1,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,385,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,58,0,0,0,8,1,29,604,0,35,0,0,1,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2140,81,1 +3,0,0,2,2,16,9,2,37,0,4,0,0,0,2,0,32,0,6,5,0,4,0,1,0,0,0,0,4,0,1,0,0,2,4,0,18,6,0,0,13,0,0,0,1,0,0,1,0,0,0,0,0,33,0,0,0,0,0,1,2,0,0,1,0,1,0,0,334,16,196,0,5,0,0,0,0,0,13,6,0,0,0,0,1,3,39,0,2,4,2,0,0,0,0,15,0,1,0,0,2,2,31,0,0,0,0,232,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,54,0,58,0,0,0,0,3,38,23,62,0,0,0,0,1,0,0,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,171,4,0,0,210,0,214,0,0,0,86,6,0,0,0,0,0,0,0,0,0,90,1,0,0,0,10,0,0,0,0,1,102,46,0,0,0,0,0,0,0,0,60,0,0,20,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,4,0,0,0,0,17,22,113,0,5,0,0,0,0,0,0,26,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,123,30,1 +2,0,0,7,0,36,6,0,38,1,6,0,0,2,4,0,528,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,3,762,36,8,0,0,27,0,0,0,1,0,0,3,0,0,0,0,1,186,0,0,0,0,0,1,0,0,0,1,0,4,0,0,4802,36,590,0,2,0,0,0,0,0,19,0,0,0,0,0,8,19,879,0,0,3,0,0,0,0,0,89,5,6,0,0,2,0,542,0,1,0,0,1098,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,387,0,52,0,0,0,0,3,252,324,349,0,0,0,0,1,0,3,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,16,183,7,0,0,218,0,299,0,0,0,63,7,0,0,0,0,0,0,0,0,0,590,1,0,0,0,9,0,0,0,0,1,120,24,0,0,1,0,0,0,0,0,1379,1,0,63,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,1,0,0,0,0,1,39,126,0,3,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,398,43,1 +5,0,0,5,0,48,6,0,14,5,3,0,0,2,10,0,23,0,6,3,0,0,0,6,0,8,3,0,4,0,4,0,0,0,19,0,48,6,0,0,50,0,0,0,1,0,0,1,0,0,0,0,4,95,0,0,0,0,0,1,0,0,0,7,0,12,0,0,1994,48,64,0,6,0,0,0,0,0,13,0,0,0,0,0,8,15,396,0,0,19,0,0,0,0,0,90,5,2,0,0,2,0,60,0,8,0,0,822,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,238,0,62,0,0,0,6,36,214,86,236,0,0,0,0,1,0,3,0,0,0,0,0,0,641,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,32,22,180,5,0,0,206,0,311,0,0,0,95,9,0,0,0,0,0,0,4,0,0,64,1,0,0,0,9,0,0,0,0,4,134,26,0,0,0,0,0,0,0,0,169,0,0,332,3,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,67,0,0,0,0,1,67,109,0,10,9,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,293,85,1 +3,0,0,7,0,38,6,0,39,1,6,0,0,2,4,0,544,0,6,2,0,0,0,7,0,10,3,0,5,0,1,1,0,0,5,762,38,8,0,0,27,0,0,0,1,0,0,2,0,0,0,0,2,184,0,0,0,0,0,1,0,0,0,1,0,4,0,0,5314,38,607,0,4,0,0,0,0,0,15,0,0,0,0,0,8,18,1011,0,0,5,0,0,0,0,0,89,5,4,0,0,2,0,572,0,1,0,0,1244,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,402,0,48,0,0,0,2,7,253,329,371,0,0,0,0,1,0,4,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,16,187,7,0,0,219,0,314,0,0,0,67,12,0,0,0,0,0,0,0,0,0,607,1,0,0,0,9,0,0,0,0,1,122,22,0,0,1,0,0,0,0,0,1492,1,0,68,6,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,5,0,0,0,0,1,43,105,0,8,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,421,45,1 +1,0,0,0,0,18,2,0,16,0,1,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,8,0,18,6,0,0,21,0,0,0,1,0,0,3,0,0,0,0,0,84,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1060,18,54,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,208,0,0,8,0,0,0,0,0,11,0,5,0,0,2,0,17,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,189,0,77,0,0,0,0,3,34,7,197,0,0,0,0,1,0,0,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,8,3,107,0,0,0,145,0,200,0,0,0,78,11,0,0,0,0,0,0,4,0,0,42,1,0,0,0,2,0,0,0,0,0,100,43,0,0,0,0,0,0,0,0,63,0,0,135,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,26,147,0,1,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,195,16,1 +2,0,0,4,0,17,3,0,15,0,4,0,0,0,6,1,15,0,7,1,0,0,0,1,0,0,0,0,3,0,7,0,0,0,7,0,17,6,0,0,25,0,0,0,1,0,0,2,0,0,0,0,6,75,0,0,0,0,0,1,0,0,0,0,0,6,0,0,247,17,57,0,10,0,0,0,0,0,7,0,0,0,0,0,1,4,49,0,0,7,0,0,0,0,0,20,0,2,0,0,2,0,36,0,4,0,0,225,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,55,0,47,0,0,0,12,10,36,20,64,0,0,0,0,1,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,9,115,4,0,0,103,0,174,0,0,0,38,8,0,0,0,0,0,0,0,0,0,51,1,0,0,0,2,0,0,0,0,3,103,6,0,0,0,0,0,0,0,0,41,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,15,0,0,0,8,1,24,338,0,10,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,100,18,1 +1,0,0,7,0,35,6,0,38,1,6,0,0,2,4,0,515,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,3,762,35,8,0,0,27,0,0,0,1,0,0,3,0,0,0,0,1,189,0,0,0,0,0,1,0,0,0,1,0,4,0,0,4969,35,577,0,2,0,0,0,0,0,19,0,0,0,0,0,8,19,888,0,0,3,0,0,0,0,0,89,5,6,0,0,2,0,529,0,1,0,0,1113,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,398,0,52,0,0,0,0,3,244,324,361,0,0,0,0,1,0,3,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,16,178,7,0,0,215,0,296,0,0,0,62,10,0,0,0,0,0,0,0,0,0,577,1,0,0,0,9,0,0,0,0,1,118,24,0,0,1,0,0,0,0,0,1344,1,0,49,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,1,0,0,0,0,1,38,126,0,3,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,368,42,1 +43,0,0,10,0,34,13,0,26,17,7,0,0,0,25,0,19,0,6,2,0,0,0,2,0,0,0,0,1,0,2,0,0,0,21,0,34,6,0,0,90,0,0,0,1,0,0,6,0,0,0,0,1,211,0,0,0,0,0,1,0,0,0,5,0,28,0,0,5116,34,113,0,3,0,0,0,0,0,24,0,0,0,0,0,3,10,538,0,0,21,0,0,1,7,0,88,15,10,0,0,2,0,101,0,20,0,0,877,0,0,0,0,30,0,0,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,4,0,19,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,12,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,475,0,122,0,0,0,2,5,61,1215,486,0,0,0,0,1,0,0,0,0,0,0,0,0,1614,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,33,197,12,0,0,270,0,458,0,0,0,174,13,0,0,0,0,0,0,0,0,0,96,1,0,0,0,4,0,0,0,0,2,121,108,0,0,30,0,0,0,0,0,366,0,0,1017,0,0,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,3,0,0,0,0,1,55,274,0,3,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,3,524,61,1 +3,0,0,5,0,19,4,0,15,2,4,0,0,0,8,1,15,0,7,1,0,0,0,2,0,0,0,0,4,0,8,0,0,0,8,0,19,6,0,0,31,0,0,0,1,0,0,1,0,0,0,0,7,51,0,0,0,0,0,1,0,0,0,5,0,9,0,0,343,19,59,0,11,0,0,0,0,0,6,0,0,0,0,0,2,4,52,0,0,8,0,0,0,0,0,25,0,2,0,0,2,0,44,0,6,0,0,313,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,63,0,51,0,0,0,14,13,40,33,73,0,0,0,0,1,0,0,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,13,115,5,0,0,114,0,200,0,0,0,46,6,0,0,0,0,0,0,0,0,0,54,1,0,0,0,3,0,0,0,0,4,109,7,0,0,0,0,0,0,0,0,66,0,0,43,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,18,0,0,0,8,1,27,91,0,12,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,109,35,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,23,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,22,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,41,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,4,1 +3,0,0,9,0,33,3,0,25,4,7,0,0,0,13,2,20,0,7,1,0,0,0,1,0,0,3,0,4,0,5,1,0,0,23,0,33,6,0,0,76,0,0,0,1,0,0,3,0,0,0,0,5,105,0,0,0,0,0,1,0,0,0,0,0,12,0,0,7629,33,101,0,10,0,0,0,0,0,14,0,0,0,0,0,1,6,2026,0,0,23,0,0,0,0,0,29,0,6,0,0,2,0,81,0,8,0,0,609,0,0,0,0,22,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,1314,0,85,0,0,0,10,15,56,64,1314,0,0,0,0,1,0,0,0,0,0,0,0,0,2520,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0,0,0,0,0,8,23,244,12,0,0,308,0,399,0,0,0,237,19,0,0,0,0,0,0,0,0,0,77,1,0,0,0,2,0,0,0,0,5,121,146,0,0,0,0,1,0,0,0,463,0,0,1693,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,15,0,0,0,0,1,56,722,0,13,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,931,119,1 +5573,0,0,22,4,95,105,4,140,21,79,0,1,2,107,5,216,0,15,5,0,0,0,6,0,8,0,0,113,0,19,0,0,4,43,0,99,201,0,0,212,0,0,0,1,0,0,12,0,0,0,0,19,470,0,0,0,0,0,1,0,0,0,13,0,44,0,0,59419,95,729,0,130,0,0,0,0,0,58,0,0,0,0,0,10,29,1075,0,4,43,4,0,7,16,0,579,35,17,0,0,12,4,544,0,37,0,0,110996,0,0,0,0,16614,21,0,0,0,0,0,1,0,0,0,6,0,0,3,0,0,0,0,14,0,0,0,5523,0,0,0,5,0,11044,0,5522,0,0,0,0,0,0,5756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0,18,0,0,0,0,5538,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,12,10,10,10,0,0,0,769,0,247,0,0,0,36,39,274,32217,765,0,0,0,0,1,0,2,0,0,0,0,0,0,95171,0,0,0,0,0,0,0,0,0,4,0,0,12,1,5,0,0,0,0,7,0,455,144,1200,33,0,0,1113,0,2036,0,4,0,451,147,0,0,0,0,0,0,4,0,0,670,1,0,0,0,11,0,0,0,0,19,264,136,0,0,58,0,1,0,0,0,907,0,0,529,3,0,1,0,0,0,0,0,25,0,0,0,2,0,0,3,0,0,21,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,25,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,4,104,1,1,1,0,147,0,0,0,2,33,142,1199,0,131,9,0,0,0,0,0,304,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,27,0,0,0,0,0,0,0,0,0,0,0,4,0,12,1533,564,1 +7,0,0,4,0,46,6,0,36,8,3,0,0,2,13,0,552,0,6,3,0,0,0,6,0,11,0,0,8,0,3,0,0,0,10,898,46,6,0,0,58,0,0,0,1,0,0,4,0,0,0,0,4,194,0,0,0,0,0,1,0,0,0,0,0,14,0,0,18416,46,645,0,9,0,0,0,0,0,25,0,0,0,0,0,8,21,3215,0,0,10,0,0,0,0,0,108,5,8,0,0,2,0,597,0,11,0,0,1374,0,0,0,0,16,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,9,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,12,12,12,0,0,0,2583,0,103,0,0,0,6,9,243,358,2562,0,0,0,0,1,0,3,0,0,0,0,0,0,494,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,254,4,0,0,266,0,324,0,0,0,101,8,0,0,0,0,0,0,0,0,0,618,1,0,0,0,9,0,0,0,0,4,129,27,0,0,0,0,0,0,0,0,1517,1,0,144,6,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,11,0,0,0,0,1,56,156,0,10,12,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,554,44,1 +7,0,0,4,0,47,6,0,36,8,3,0,0,2,13,0,579,0,6,3,0,0,0,6,0,10,0,0,8,0,4,0,0,0,9,898,47,6,0,0,58,0,0,0,1,0,0,4,0,0,0,0,4,192,0,0,0,0,0,1,0,0,0,0,0,14,0,0,20030,47,672,0,9,0,0,0,0,0,25,0,0,0,0,0,8,21,3507,0,0,9,0,0,0,0,0,108,5,9,0,0,2,0,624,0,11,0,0,1417,0,0,0,0,14,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,8,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,12,12,12,0,0,0,2838,0,105,0,0,0,6,9,253,360,2810,0,0,0,0,1,0,3,0,0,0,0,0,0,534,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,250,4,0,0,268,0,350,0,0,0,98,11,0,0,0,0,0,0,0,0,0,645,1,0,0,0,9,0,0,0,0,4,130,27,0,0,0,0,0,0,0,0,1612,1,0,171,6,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,11,0,0,0,0,1,56,153,0,10,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,590,51,1 +2,0,0,7,0,16,3,0,17,1,6,0,0,0,10,1,15,0,7,1,0,0,0,1,0,0,0,0,1,0,3,0,0,0,6,0,16,6,0,0,37,0,5,0,1,0,0,5,0,0,0,0,2,97,0,0,0,0,0,1,0,0,0,0,0,9,0,0,2068,16,91,0,4,0,0,0,0,0,24,0,0,0,0,0,1,8,560,0,0,6,0,0,0,0,0,24,0,9,0,0,2,0,43,0,5,0,0,650,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,149,0,69,0,0,0,4,7,37,21,152,0,0,0,0,1,0,0,0,0,0,0,0,0,420,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,20,213,9,0,0,170,0,403,0,0,0,104,34,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,3,105,60,0,0,0,0,0,0,0,0,256,0,0,889,0,0,1,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,363,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,5,0,0,0,0,1,22,659,0,4,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,375,541,1 +7,0,0,15,0,53,10,0,50,5,10,0,0,6,20,1,842,0,7,4,0,0,0,9,0,11,6,0,11,0,5,0,0,0,10,2286,53,36,0,0,90,0,3,0,1,0,0,3,0,0,0,0,5,279,0,0,0,0,0,1,0,0,0,0,0,15,0,0,13934,53,962,0,12,0,0,0,0,0,21,0,0,0,0,0,12,40,3132,0,0,10,0,0,0,0,0,239,20,3,0,0,2,0,976,0,10,14,0,2105,0,0,0,0,24,0,1,0,2,0,0,1,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,46,12,12,12,0,0,0,1229,0,75,0,0,0,10,20,314,926,1210,0,0,0,0,1,0,3,0,0,0,0,0,0,421,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,89,57,290,26,0,0,319,0,474,0,0,0,139,11,0,0,0,0,0,0,0,0,0,946,1,0,0,0,13,0,0,0,0,5,148,39,0,0,17,0,0,0,0,0,2474,1,0,780,9,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,9,366,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,24,0,0,0,4,1,63,122,0,19,14,0,1,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,3,770,110,1 +3,0,0,13,3,48,80,3,121,1,21,0,0,2,17,0,167,0,12,3,0,0,0,8,0,8,0,0,4,0,1,0,0,3,20,0,51,150,0,0,131,0,0,0,1,0,0,4,0,0,0,0,1,234,0,0,0,0,0,1,0,0,0,0,0,12,0,0,2594,48,328,0,4,0,0,0,0,0,17,0,0,0,0,0,10,20,304,0,3,20,3,0,6,24,0,413,50,7,0,0,8,3,198,0,7,0,0,1471,0,0,0,0,33,0,1,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,2,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,233,0,120,0,0,0,0,3,225,1322,247,0,0,0,0,1,0,3,0,0,0,0,0,0,873,0,0,0,0,0,0,0,0,0,0,0,0,4,1,3,0,0,0,0,1,0,344,112,676,18,0,0,765,0,1132,0,3,0,304,20,0,0,0,0,0,0,2,0,0,420,1,0,0,0,11,0,0,0,0,1,213,134,0,0,84,0,1,0,0,0,407,0,0,65,2,0,1,1,0,0,0,0,9,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,52,1,1,1,0,3,0,0,0,0,25,71,346,0,5,8,0,0,0,0,0,180,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,7,0,0,0,0,0,0,0,0,0,0,0,3,0,4,561,206,1 +3,0,0,2,2,18,2,2,35,0,4,0,0,0,2,0,31,0,6,5,0,4,0,1,0,0,0,0,4,0,1,0,0,2,7,0,20,6,0,0,17,0,0,0,1,0,0,1,0,0,0,0,0,70,0,0,0,0,0,1,2,0,0,1,0,1,0,0,202,18,188,0,5,0,0,0,0,0,7,6,0,0,0,0,1,3,23,0,2,7,2,0,0,0,0,15,0,1,0,0,2,2,30,0,0,0,0,251,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,6,0,0,0,0,0,0,40,0,44,0,0,0,0,3,40,23,52,0,0,0,0,1,0,0,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,171,4,0,0,169,0,211,0,0,0,49,10,0,0,0,0,0,0,0,0,0,80,1,0,0,0,10,0,0,0,0,1,100,5,0,0,0,0,0,0,0,0,55,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,4,0,0,0,0,17,27,41,0,5,0,0,0,0,0,0,32,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,77,31,1 +4,0,0,5,2,20,3,2,27,2,6,0,0,0,10,1,31,0,7,5,0,4,0,1,0,0,0,0,3,0,7,0,0,2,7,0,22,6,0,0,35,0,0,0,1,0,0,1,0,0,0,0,6,57,0,0,0,0,0,1,2,0,0,0,0,11,0,0,247,20,188,0,10,0,0,0,0,0,4,6,0,0,0,0,1,3,38,0,2,7,2,0,0,0,0,22,0,1,0,0,2,2,44,0,8,0,0,298,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,47,0,52,0,0,0,12,11,44,27,63,0,0,0,0,1,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,13,178,7,0,0,176,0,227,0,0,0,60,6,0,0,0,0,0,0,0,0,0,85,1,0,0,0,10,0,0,0,0,3,106,12,0,0,0,0,0,0,0,0,71,0,0,14,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,15,0,0,0,8,17,29,87,0,10,0,0,0,0,0,0,47,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,104,32,1 +1,0,0,3,0,19,2,0,17,3,3,0,0,0,8,0,15,0,7,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,9,0,19,6,0,0,36,0,0,0,1,0,0,8,0,0,0,0,1,830,0,0,0,0,0,1,0,0,0,0,0,8,0,0,5277,19,102,0,3,0,0,0,0,0,35,0,0,0,0,0,1,11,1177,0,0,9,0,0,0,0,0,19,0,11,0,0,2,0,30,0,6,0,0,2118,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,736,0,115,0,0,0,2,4,34,2069,735,0,0,0,0,1,0,0,0,0,0,0,0,0,990,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,8,9,307,3,0,0,772,0,382,0,0,0,403,13,0,0,0,0,0,0,0,0,0,52,1,0,0,0,2,0,0,0,0,1,114,640,0,0,0,0,0,0,0,0,522,0,0,590,0,0,1,0,0,0,0,0,16,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,3,0,0,0,0,1,28,4379,0,3,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,8,777,1392,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,0,0,0,62,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,30,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,0,0,0,49,0,58,0,0,0,19,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,18,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,4,1 +2,0,0,4,0,19,3,0,7,0,4,0,0,0,6,1,15,0,7,1,0,0,0,1,0,0,0,0,4,0,8,0,0,0,8,0,19,6,0,0,28,0,0,0,1,0,0,1,0,0,0,0,7,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,326,19,49,0,12,0,0,0,0,0,6,0,0,0,0,0,1,3,40,0,0,8,0,0,0,0,0,23,0,2,0,0,2,0,31,0,4,0,0,459,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,40,0,0,0,14,13,44,32,55,0,0,0,0,1,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,9,113,4,0,0,112,0,246,0,0,0,51,8,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,4,106,15,0,0,0,0,0,0,0,0,52,0,0,47,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,18,0,0,0,8,1,27,44,0,12,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,86,34,1 +7,0,0,6,0,16,178,0,362,0,57,0,0,0,4,0,21,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,5,0,16,136,0,0,661,0,0,0,1,0,0,2,0,0,0,0,0,122,0,0,0,0,0,1,0,0,0,1,0,7,0,0,925,16,630,0,2,0,0,0,0,0,12,0,0,0,0,0,1,5,143,0,0,5,0,0,2,353,0,2819,260,4,0,0,2,0,1638,0,1,0,0,289,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,2,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,131,0,63,0,0,0,0,3,37,1591,129,0,0,0,0,1,0,0,0,0,0,0,0,0,1187,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,107,6,0,0,329,0,424,0,0,0,264,10,0,0,0,0,0,0,0,0,0,628,1,0,0,0,2,0,0,0,0,1,98,725,0,0,882,0,0,0,0,0,207,0,0,168,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,1,0,0,0,0,1,21,130,0,2,0,0,0,0,0,0,1099,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,252,80,1 +5,0,0,9,1,22,29,1,59,10,14,0,0,0,27,0,68,0,9,1,0,0,0,1,0,1,0,0,1,0,1,0,0,1,13,3,23,54,0,0,97,0,0,0,1,0,0,2,0,0,0,0,1,90,0,0,0,0,0,1,0,0,0,6,0,25,0,0,916,22,176,0,3,0,0,0,0,0,10,0,0,0,0,0,1,5,86,0,1,13,1,0,2,18,0,200,25,2,0,0,4,1,161,0,20,0,0,408,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,99,0,78,0,0,0,1,4,40,118,111,0,0,0,0,1,0,0,0,0,0,0,0,0,433,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,117,37,345,12,0,0,355,0,529,0,1,0,162,7,0,0,0,0,0,0,0,0,0,206,1,0,0,0,2,0,0,0,0,0,172,56,0,0,51,0,1,0,0,0,2021,0,0,192,0,0,1,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,19,1,1,1,0,1,0,0,0,0,10,36,84,0,3,0,0,0,0,0,0,127,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,0,0,0,0,0,0,0,0,0,0,0,1,0,2,246,35,1 +1,0,0,5,1,16,31,1,60,1,9,0,4,0,6,0,71,0,8,1,0,0,0,1,0,0,0,0,2,0,0,0,0,1,6,0,17,94,0,0,58,0,3,0,1,0,0,6,1,0,0,0,0,103,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1699,16,166,0,3,0,0,0,0,0,20,0,0,0,0,1,1,10,558,0,1,6,1,0,6,8,0,133,15,9,0,0,12,1,91,0,3,0,0,338,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,107,0,67,0,0,0,0,3,41,288,119,0,0,0,0,1,0,0,0,0,0,0,0,0,789,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,142,55,285,6,0,0,302,0,506,0,1,0,103,24,0,0,0,0,0,0,0,0,0,189,1,0,3,0,2,0,0,0,0,1,112,43,0,0,29,0,0,0,0,0,370,0,0,772,0,0,1,0,1,0,0,0,11,0,0,0,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,361,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,13,1,1,1,0,2,0,0,0,0,9,23,262,0,2,0,0,0,0,0,0,97,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,1,0,4,347,90,1 +3,0,0,7,0,42,92,0,45,0,96,0,0,7,5,0,71,0,6,2,0,0,0,8,0,11,3,0,19,0,2,0,0,0,6,1594,42,6,0,0,63,0,0,0,1,0,0,2,0,0,0,0,2,1535,0,0,0,0,0,1,0,0,0,0,0,6,0,0,41605,42,560,0,17,0,0,0,0,0,185,0,0,0,0,0,9,409,7949,0,0,6,0,0,1,12,0,1222,50,3,0,0,2,0,339,0,1,999,0,6288,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,991,0,79,0,0,0,14,21,633,4150,975,0,0,0,0,1,0,5,0,0,0,0,0,0,565,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,108,17,272,7,0,0,489,0,341,0,0,0,340,12,0,0,0,0,0,0,0,0,0,322,1,0,0,0,10,0,0,0,0,2,145,133,0,0,944,0,0,0,0,0,4885,1,0,433,92,0,1,1,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,92,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,56,0,0,0,0,1,48,317,0,21,14,0,0,0,0,0,106,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3323,58,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,0,0,0,49,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,17,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,40,0,0,0,47,0,42,0,0,0,17,2,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,92,14,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,32,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,7,1 +1,0,0,3,0,14,2,0,16,0,3,0,0,0,3,0,15,0,7,1,0,0,0,1,0,4,0,0,2,0,1,0,0,0,3,0,14,6,0,0,12,0,0,0,1,0,0,1,0,0,0,0,3,62,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1249,14,47,0,7,0,0,0,0,0,6,0,0,0,0,0,1,3,277,0,0,3,0,0,0,0,0,16,0,1,0,0,2,0,24,0,1,0,0,117,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,169,0,36,0,0,0,3,6,32,35,173,0,0,0,0,1,0,0,0,0,0,0,0,0,432,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,86,3,0,0,103,0,162,0,0,0,33,11,0,0,0,0,0,0,4,0,0,46,1,0,0,0,2,0,0,0,0,6,96,17,0,0,0,0,0,0,0,0,97,0,0,267,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,17,109,0,7,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,198,9,1 +2,0,0,5,0,15,2,0,22,1,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,6,0,15,6,0,0,26,0,0,0,1,0,0,1,0,0,0,0,1,52,0,0,0,0,0,1,0,0,0,0,0,5,0,0,238,15,51,0,3,0,0,0,0,0,3,0,0,0,0,1,1,4,31,0,0,6,0,0,0,0,0,11,0,3,0,0,2,0,32,0,3,0,0,162,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,40,0,36,0,0,0,2,4,30,14,47,0,0,0,0,1,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,6,96,6,0,0,129,0,166,0,0,0,69,11,0,0,0,0,0,0,0,0,0,56,1,0,0,0,2,0,0,0,0,2,97,37,0,0,0,0,0,0,0,0,33,0,0,20,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,3,0,0,0,0,1,21,173,0,3,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,12,1 +8,0,0,10,0,58,18,0,72,3,15,0,0,7,15,1,1274,0,7,1,0,0,0,8,0,11,3,0,20,0,31,0,0,0,17,404,58,60,0,0,100,0,8,0,1,0,0,10,0,0,0,0,32,306,0,0,0,0,0,1,0,0,0,0,0,12,0,0,68188,58,1507,0,49,0,0,0,0,0,53,0,0,0,0,1,8,57,14774,0,0,17,0,0,0,0,0,382,25,19,1,0,2,0,1452,0,7,24,0,2648,0,0,0,0,34,0,1,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,64,12,12,12,0,0,0,8032,0,164,0,0,0,67,67,341,580,7986,0,0,0,0,1,0,3,0,0,0,0,0,0,6222,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,1,0,122,41,342,12,0,0,359,0,637,0,0,0,188,11,0,0,0,0,0,0,0,0,0,1409,1,0,0,0,9,0,0,0,0,29,151,58,0,0,40,0,0,0,0,0,6796,1,0,15775,11,0,1,1,1,0,0,0,22,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,11,392,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,93,0,0,0,42,1,75,345,0,53,12,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,5,6110,329,1 +0,0,0,3,0,9,3,0,14,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,15,0,0,0,1,0,0,3,0,0,0,0,0,86,0,0,0,0,0,1,0,0,0,0,0,1,0,0,508,9,50,0,1,0,0,0,0,0,13,0,0,0,0,0,1,5,71,0,0,0,0,0,0,0,0,29,0,5,0,0,2,0,27,0,0,0,0,181,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,73,0,75,0,0,0,0,3,24,36,88,0,0,0,0,1,0,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,97,3,0,0,166,0,204,0,0,0,103,4,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,96,98,0,0,0,0,0,0,0,0,41,0,0,49,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,498,0,1,0,0,0,0,0,0,30,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,187,29,1 +6,0,0,19,0,82,25,0,200,8,74,0,0,14,30,0,713,0,7,3,0,0,0,10,0,14,12,0,17,0,6,2,0,0,40,1511,82,6,0,0,381,0,0,0,1,0,0,4,0,0,0,0,10,305,0,0,0,0,0,1,0,0,0,14,0,40,0,0,16505,82,1099,0,24,0,0,0,0,0,32,0,0,0,0,1,12,65,3471,0,0,40,0,0,8,114,0,1469,165,6,0,0,2,0,1510,0,16,89,0,3458,0,0,0,0,19,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,4,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,12,12,12,0,0,0,1227,0,127,0,0,0,24,33,427,1796,1212,0,0,0,0,1,0,3,0,0,0,0,0,0,1682,0,0,0,0,0,0,0,0,0,0,0,0,164,1,0,0,0,0,0,1,0,246,82,419,23,0,0,453,0,549,0,0,0,274,48,0,0,0,0,0,0,0,0,0,1063,1,0,0,0,13,0,0,0,0,4,174,342,0,0,387,0,158,0,0,0,2676,1,0,203,14,0,1,1,0,0,0,0,7,0,0,0,1,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,14,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,88,1,1,1,0,50,0,0,0,0,1,122,525,0,37,14,0,0,0,0,0,468,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,39,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1503,93,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,69,0,0,0,0,0,1,0,0,0,0,0,2,0,0,439,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,50,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,266,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,64,0,56,0,0,0,4,10,32,174,73,0,0,0,0,1,0,0,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,108,3,0,0,114,0,199,0,0,0,40,10,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,58,0,0,58,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,94,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,106,22,1 +7,0,0,3,0,20,2,0,21,1,3,0,0,0,4,0,15,0,6,4,0,0,0,1,0,0,0,0,3,0,1,0,0,0,8,0,20,6,0,0,19,0,0,0,1,0,0,3,0,0,0,0,0,683,0,0,0,0,0,1,0,0,0,0,0,4,0,0,35743,20,81,0,4,0,0,0,0,0,19,0,0,0,0,0,4,10,1483,0,0,8,0,0,0,0,0,21,0,6,0,0,2,0,24,0,2,0,0,923,0,0,0,0,0,1,1,0,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,5,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,967,0,83,0,0,0,0,3,43,48,974,0,0,0,0,1,0,0,0,0,0,0,0,0,1909,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,5,222,3,0,0,160,0,181,0,0,0,86,33,0,0,0,0,0,0,0,0,0,51,1,0,0,0,5,0,0,0,0,1,106,43,0,0,0,0,0,0,0,0,316,0,0,1876,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,3,0,0,0,0,1,28,269,0,4,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,661,335,1 +3,0,0,5,0,18,4,0,26,2,7,0,0,0,6,0,16,0,6,1,0,0,0,2,0,0,0,0,1,0,2,0,0,0,9,0,18,6,0,0,40,0,0,0,1,0,0,3,0,0,0,0,1,104,0,0,0,0,0,1,0,0,0,12,0,9,0,0,616,18,75,0,3,0,0,0,0,0,13,0,0,0,0,0,2,6,112,0,0,9,0,0,1,8,0,90,15,5,0,0,2,0,65,0,4,0,0,280,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,115,0,61,0,0,0,2,5,37,79,128,0,0,0,0,1,0,0,0,0,0,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,9,119,5,0,0,172,0,208,0,0,0,110,7,0,0,0,0,0,0,0,0,0,65,1,0,0,0,3,0,0,0,0,2,105,79,0,0,29,0,0,0,0,0,58,0,0,94,0,0,1,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,3,0,0,0,0,1,27,253,0,3,0,0,0,0,0,0,53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5,143,43,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,113,0,0,0,0,0,1,0,0,0,0,0,2,0,0,946,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,42,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,283,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,56,0,0,0,4,10,36,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,114,3,0,0,117,0,310,0,0,0,40,10,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,58,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,200,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,101,24,1 +1,0,0,4,0,43,25,0,49,6,3,0,0,2,9,0,24,0,6,3,0,0,0,5,0,8,3,0,4,0,1,0,0,0,14,0,43,6,0,0,42,0,0,0,1,0,0,7,0,0,0,0,2,213,0,0,0,0,0,1,0,0,0,0,0,10,0,0,2573,43,162,0,4,0,0,0,0,0,56,0,0,0,0,1,7,21,396,0,0,14,0,0,0,0,0,91,5,12,0,0,2,0,90,0,7,0,0,888,0,0,0,0,8,0,1,0,0,0,0,1,0,0,0,2,0,0,8,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,1,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,4,10,10,10,0,0,0,340,0,128,0,0,0,2,30,204,64,331,0,0,0,0,1,0,3,0,0,0,0,0,0,948,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,32,17,337,4,0,0,568,0,571,0,0,0,430,10,0,0,0,0,0,0,0,0,0,118,1,0,0,0,8,0,0,0,0,2,236,246,0,0,0,0,0,0,0,0,161,0,0,311,3,0,1,1,1,0,0,0,16,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,56,0,0,0,0,1,57,862,0,7,9,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,6,412,151,1 +0,0,0,5,0,14,2,0,25,0,3,0,0,0,4,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,14,6,0,0,11,0,0,0,1,0,0,4,0,0,0,0,0,79,0,0,0,0,0,1,0,0,0,0,0,3,0,0,948,14,66,0,1,0,0,0,0,0,14,0,0,0,0,1,1,9,191,0,0,2,0,0,0,0,0,10,0,7,0,0,2,0,26,0,1,0,0,130,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,151,0,53,0,0,0,0,3,36,7,156,0,0,0,0,1,0,0,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,8,4,102,6,0,0,158,0,203,0,0,0,84,9,0,0,0,0,0,0,5,0,0,54,1,0,0,0,2,0,0,0,0,0,104,52,0,0,0,0,0,0,0,0,76,0,0,203,0,0,1,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,16,258,0,1,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,209,20,1 +15,0,21,12,8,59,192,10,256,43,34,0,13,1,77,0,351,0,19,9,0,1,0,1,1,0,0,0,13,0,26,0,0,6,39,21,66,413,0,0,497,0,0,0,1,0,0,6,0,0,0,0,25,226,0,0,0,0,0,1,0,0,0,0,0,69,0,0,1924,59,812,0,38,0,0,0,0,0,22,3,0,0,0,0,1,8,305,0,10,39,6,0,19,83,0,992,15,8,0,0,39,8,759,0,53,0,0,1474,0,0,0,0,11,2,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,7,0,0,2,0,0,0,26,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,273,5,203,0,0,0,50,47,98,816,357,0,0,0,0,1,0,0,0,0,8,0,0,0,1609,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,1899,238,1215,26,0,0,1288,0,2236,0,5,0,422,29,0,0,0,0,0,0,0,0,0,943,1,0,0,0,12,0,0,0,0,22,232,258,0,22,29,0,11,0,0,0,1200,0,0,249,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,28,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,52,1,1,1,0,63,0,0,0,0,57,105,196,0,39,0,0,0,0,0,0,596,10,0,0,0,0,0,0,0,0,0,0,0,7,0,1,46,0,0,0,0,0,0,0,2,0,0,0,14,0,5,706,182,1 +15,0,0,4,0,30,8,0,66,1,14,0,0,0,4,0,56,0,6,1,0,0,0,1,0,0,24,0,1,0,9,0,0,0,17,0,30,6,0,0,90,0,10,0,1,0,0,11,0,0,0,0,8,1676,0,0,0,0,0,1,0,0,0,0,0,13,0,0,10238,30,258,0,10,0,0,0,0,0,52,0,0,0,0,0,1,15,2234,0,0,17,0,0,1,41,0,376,15,22,1,0,2,0,375,0,2,0,0,841,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,6,12,1,1,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,1223,0,146,0,0,0,16,43,58,40701,1229,0,0,0,0,1,0,0,0,0,0,0,0,0,2727,0,0,0,0,0,0,0,0,0,0,0,0,11,0,2,0,0,0,0,0,0,8,5,265,4,0,0,218,0,360,0,0,0,142,32,0,0,0,0,0,0,5,0,0,154,1,0,0,0,2,0,0,0,0,9,112,1473,0,0,692,0,0,0,0,0,672,0,0,3159,0,0,1,0,1,0,0,0,43,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,369,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,9,0,0,0,0,1,47,328,0,34,0,0,0,0,0,0,161,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1121,135,1 +3,0,0,9,2,26,58,2,118,8,35,0,1,0,19,0,117,0,10,1,0,0,0,1,0,0,0,0,3,0,1,0,0,2,17,0,28,133,0,0,156,0,0,0,1,0,0,2,0,0,0,0,0,86,0,0,0,0,0,1,0,0,0,0,0,23,0,0,672,26,288,0,4,0,0,0,0,0,12,0,0,0,0,0,1,4,93,0,2,17,2,0,10,56,0,592,105,4,0,0,8,2,332,0,14,0,0,540,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,61,0,0,0,0,3,52,446,107,0,0,0,0,1,0,0,0,0,0,0,0,0,446,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,229,50,455,13,0,0,479,0,758,0,2,0,179,33,0,0,0,0,0,0,0,0,0,358,1,0,0,0,2,0,0,0,0,1,147,126,0,0,203,0,1,0,0,0,277,0,0,105,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,23,1,1,1,0,3,0,0,0,0,17,45,109,0,4,0,0,0,0,0,0,204,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,22,0,0,0,0,0,0,0,0,0,0,0,2,0,3,260,156,1 +3,0,0,10,0,57,9,0,53,5,11,0,0,6,21,1,1028,0,7,2,0,0,0,8,0,11,0,0,11,0,5,0,0,0,18,2366,57,6,0,0,116,0,0,0,1,0,0,8,0,0,0,0,5,1062,0,0,0,0,0,1,0,0,0,0,0,18,0,0,17677,57,1206,0,12,0,0,0,0,0,50,0,0,0,0,0,9,41,3645,0,0,18,0,0,0,0,0,236,20,13,0,0,2,0,1133,0,13,14,0,2682,0,0,0,0,11,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,54,12,12,12,0,0,0,1852,0,138,0,0,0,10,12,311,1540,1815,0,0,0,0,1,0,3,0,0,0,0,0,0,1953,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,84,48,410,12,0,0,679,0,523,0,0,0,326,17,0,0,0,0,0,0,0,0,0,1136,1,0,0,0,10,0,0,0,0,4,185,330,0,0,17,0,0,0,0,0,3305,1,0,1572,10,0,1,1,0,0,0,0,19,0,0,0,2,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,10,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,65,1,1,1,0,21,0,0,0,0,1,75,1922,0,13,14,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1642,1393,1 +3,0,0,10,0,56,7,0,53,8,10,0,0,6,23,1,1021,0,7,2,0,0,0,8,0,11,0,0,10,0,5,0,0,0,17,955,56,6,0,0,118,0,0,0,1,0,0,8,0,0,0,0,5,1004,0,0,0,0,0,1,0,0,0,0,0,20,0,0,14245,56,1189,0,11,0,0,0,0,0,45,0,0,0,0,0,9,33,2996,0,0,17,0,0,0,0,0,223,20,13,0,0,2,0,1126,0,15,1,0,2453,0,0,0,0,13,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,54,12,12,12,0,0,0,1590,0,136,0,0,0,9,11,295,1470,1556,0,0,0,0,1,0,3,0,0,0,0,0,0,1746,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,84,50,357,12,0,0,661,0,461,0,0,0,323,14,0,0,0,0,0,0,0,0,0,1128,1,0,0,0,10,0,0,0,0,4,147,377,0,0,6,0,0,0,0,0,3053,1,0,1390,8,0,1,1,0,0,0,0,18,0,0,0,2,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,17,0,0,0,0,1,73,2136,0,12,14,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1427,1286,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,0,0,0,42,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,16,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,0,0,0,59,0,56,0,0,0,29,2,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,28,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,72,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,4,1 +1,0,0,3,0,29,2,0,15,1,3,0,0,0,5,0,17,0,6,1,0,0,0,1,0,0,0,0,12,0,1,0,0,0,5,0,29,46,0,0,17,0,0,0,1,0,0,1,0,0,0,0,0,78,0,0,0,0,0,1,0,0,0,0,0,5,0,0,367,29,53,0,13,0,0,0,0,0,6,0,0,0,0,0,1,3,24,0,0,5,0,0,0,0,0,19,0,2,0,0,2,0,43,0,3,0,0,448,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,47,0,0,0,0,3,45,45,46,0,0,0,0,1,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,6,154,3,0,0,164,0,309,0,0,0,57,10,0,0,0,0,0,0,0,0,0,48,1,0,0,0,2,0,0,0,0,1,114,32,0,0,0,0,0,0,0,0,90,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,12,0,0,0,0,1,34,173,0,13,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,69,71,1 +3,0,0,7,0,18,4,0,14,4,7,0,0,0,15,1,15,0,7,1,0,0,0,1,0,0,0,0,3,0,10,0,0,0,7,0,18,6,0,0,51,0,2,0,1,0,0,2,0,0,0,0,9,48,0,0,0,0,0,1,0,0,0,0,0,13,0,0,1134,18,73,0,13,0,0,0,0,0,7,0,0,0,0,0,1,5,478,0,0,7,0,0,0,0,0,48,0,2,0,0,2,0,62,0,9,0,0,318,0,0,0,0,15,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,61,0,45,0,0,0,18,21,41,39,69,0,0,0,0,1,0,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,28,133,9,0,0,111,0,182,0,0,0,45,9,0,0,0,0,0,0,0,0,0,63,1,0,0,0,2,0,0,0,0,10,108,8,0,0,0,0,0,0,0,0,225,0,0,753,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,370,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,21,0,0,0,14,1,25,57,0,13,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,287,67,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,29,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,28,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,41,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,4,1 +4,0,0,5,2,34,7,8,30,7,6,0,0,0,18,1,24,0,7,6,0,2,1,2,0,0,0,0,6,0,11,0,0,2,19,0,36,6,23,0,68,0,0,0,1,0,0,1,0,0,0,0,10,73,0,0,0,0,0,1,0,0,0,7,0,19,0,0,447,34,207,0,17,0,0,0,0,0,6,6,0,0,0,0,2,4,41,0,8,19,2,0,0,0,0,43,0,2,0,0,2,2,77,0,16,0,0,468,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,56,0,53,0,0,0,20,17,67,49,68,0,0,0,0,1,0,0,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,23,213,7,0,0,239,0,271,0,0,0,125,26,0,0,0,0,0,0,0,0,0,93,1,0,0,0,11,0,0,0,0,7,124,43,0,0,0,0,0,0,0,0,83,0,0,31,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,26,0,0,0,8,17,55,172,0,17,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,3,0,1,99,48,1 +2,0,0,4,0,16,3,0,17,0,4,0,0,0,4,1,15,0,7,1,0,0,0,1,0,0,0,0,4,0,5,0,0,0,5,0,16,6,0,0,20,0,0,0,1,0,0,1,0,0,0,0,4,52,0,0,0,0,0,1,0,0,0,0,0,4,0,0,236,16,50,0,9,0,0,0,0,0,4,0,0,0,0,0,1,3,45,0,0,5,0,0,0,0,0,23,0,1,0,0,2,0,32,0,2,0,0,285,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,54,0,57,0,0,0,8,8,37,27,68,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,7,109,4,0,0,108,0,189,0,0,0,40,11,0,0,0,0,0,0,0,0,0,51,1,0,0,0,2,0,0,0,0,4,103,13,0,0,0,0,0,0,0,0,37,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,12,0,0,0,0,1,21,67,0,9,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,114,43,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,7,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,71,0,0,0,0,0,1,0,0,0,0,0,2,0,0,489,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,43,0,0,7,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,289,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,56,0,0,0,4,10,32,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,121,3,0,0,114,0,206,0,0,0,49,7,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,52,0,0,38,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,24,238,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,98,23,1 +5571,0,0,9,0,47,26,0,43,12,12,0,0,0,31,0,17,0,7,3,0,0,0,2,0,1,0,0,100,0,4,0,0,0,24,0,47,6,0,0,120,0,0,0,1,0,0,1,1,0,0,0,4,174,0,0,0,0,0,1,0,0,0,18,0,29,0,0,80351,47,234,0,105,0,0,0,0,0,29,0,0,0,0,0,4,6,48,0,0,24,0,0,1,8,0,189,15,4,0,0,2,0,238,0,21,0,0,121275,0,0,0,0,16670,3,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,3,0,0,0,5559,0,0,0,0,0,11106,0,5560,0,0,0,0,0,0,5572,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,2,0,0,0,0,5567,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,76,0,147,0,0,0,7,8,92,31431,86,0,0,0,0,1,0,0,0,0,0,0,0,0,93032,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,53,634,11,0,0,1098,0,753,0,0,0,976,110,0,0,0,0,0,0,0,0,0,136,1,0,2,0,5,0,0,0,0,2,140,897,0,0,29,0,0,0,0,0,142,0,0,15,0,0,1,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,106,0,0,0,0,1,71,1738,0,105,0,0,0,0,0,0,113,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,1,350,2717,1 +2,0,0,4,0,18,3,0,14,2,4,0,0,0,9,1,71,0,7,1,0,0,0,1,0,0,0,0,4,0,8,0,0,0,7,0,18,174,0,0,89,0,0,0,1,0,0,2,0,0,0,0,7,62,0,0,0,0,0,1,0,0,0,0,0,9,0,0,838,18,117,0,12,0,0,0,0,0,10,0,0,0,0,0,1,4,58,0,0,7,0,0,0,0,0,24,0,4,0,0,2,0,42,0,7,0,0,317,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,65,0,44,0,0,0,14,11,38,24,159,0,0,0,0,1,0,0,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,12,172,4,0,0,326,0,292,0,0,0,255,10,0,0,0,0,0,0,0,0,0,109,1,0,0,0,2,0,0,0,0,4,140,131,0,0,0,0,0,0,0,0,165,0,0,91,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,18,0,0,0,8,1,25,385,0,12,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,107,23,1 +0,0,0,2,0,9,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,9,35,0,1,0,0,0,0,0,4,0,0,0,0,0,2,4,26,0,0,0,0,0,0,0,0,9,0,2,0,0,2,0,13,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0,33,0,30,0,0,0,0,3,26,5,47,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,99,0,0,0,30,4,0,0,0,0,0,0,0,0,0,40,1,0,0,0,3,0,0,0,0,0,93,21,0,0,0,0,0,0,0,0,26,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,9,88,0,1,0,0,0,1,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,12,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,61,0,0,0,0,0,1,0,0,0,0,0,2,0,0,348,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,47,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,252,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,61,0,57,0,0,0,4,10,36,174,70,0,0,0,0,1,0,0,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,110,3,0,0,117,0,180,0,0,0,40,7,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,61,0,0,42,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,78,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,106,20,1 +4,0,0,4,0,33,5,0,24,2,3,0,0,2,6,0,28,0,6,3,0,0,0,5,0,8,6,0,6,0,4,0,0,0,9,0,33,6,0,0,34,0,0,0,1,0,0,3,0,0,0,0,4,137,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1125,33,89,0,8,0,0,0,0,0,16,0,0,0,0,0,7,16,163,0,0,9,0,0,0,0,0,93,5,5,0,0,2,0,81,0,4,0,0,657,0,0,0,0,7,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,124,0,81,0,0,0,6,19,187,35,122,0,0,0,0,1,0,4,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,14,166,4,0,0,188,0,282,0,0,0,86,14,0,0,0,0,0,0,0,0,0,74,1,0,0,0,8,0,0,0,0,4,119,43,0,0,0,0,0,0,0,0,121,0,0,96,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,19,0,0,0,2,1,42,258,0,15,9,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,227,39,1 +7,0,0,7,0,17,2,0,3,2,5,0,0,0,11,0,9,0,7,2,0,0,0,0,0,0,0,0,3,0,4,0,0,0,7,0,17,6,0,0,37,0,0,0,0,0,0,0,0,0,0,0,3,22,0,0,0,0,0,1,0,0,0,0,0,10,0,0,160,17,36,0,7,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,7,0,0,0,0,0,20,0,0,0,0,2,0,33,0,7,0,0,502,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,19,0,25,0,0,0,6,9,39,22,25,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,18,79,9,0,0,59,0,147,0,0,0,23,3,0,0,0,0,0,0,0,0,0,37,0,0,0,0,2,0,0,0,0,4,99,1,0,0,0,0,0,0,0,0,20,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,9,0,0,0,0,1,24,7,0,7,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,14,1 +2,0,0,3,0,17,2,0,7,0,3,0,0,0,4,1,52,0,7,2,0,0,0,0,0,0,6,0,2,0,4,0,0,0,8,0,17,6,0,0,17,0,0,0,1,0,0,1,0,0,0,0,3,39,0,0,0,0,0,1,0,0,0,0,0,4,0,0,128,17,80,0,6,0,0,0,0,0,2,0,0,0,0,0,1,3,5,0,0,8,0,0,0,0,0,12,0,0,0,0,2,0,62,0,2,0,0,230,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,26,0,44,0,0,0,6,12,42,15,33,0,0,0,0,1,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,5,71,3,0,0,68,0,142,0,0,0,35,4,0,0,0,0,0,0,0,0,0,76,1,0,0,0,2,0,0,0,0,2,99,10,0,0,0,0,0,0,0,0,289,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,6,0,0,0,0,11,25,29,0,12,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,15,1 +4,0,0,5,2,33,7,8,30,7,6,0,0,0,18,1,24,0,7,6,0,2,1,2,0,0,0,0,7,0,11,0,0,2,19,0,35,6,24,0,68,0,0,0,1,0,0,1,0,0,0,0,10,73,0,0,0,0,0,1,0,0,0,8,0,19,0,0,418,33,207,0,18,0,0,0,0,0,6,6,0,0,0,0,2,4,41,0,8,19,2,0,0,0,0,44,0,2,0,0,2,2,78,0,16,0,0,492,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,54,0,52,0,0,0,20,17,63,49,66,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,23,209,7,0,0,236,0,279,0,0,0,125,22,0,0,0,0,0,0,0,0,0,93,1,0,0,0,11,0,0,0,0,7,123,43,0,0,0,0,0,0,0,0,98,0,0,29,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,27,0,0,0,8,17,54,172,0,18,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,3,0,2,97,46,1 +5967,0,0,13,0,71,60,0,110,7,45,0,0,6,35,0,1239,0,7,3,0,0,0,9,0,13,6,0,109,0,5,1,0,0,24,103,71,12,0,0,165,0,0,0,1,0,0,10,0,0,0,0,9,401,0,0,0,0,0,1,0,0,0,0,0,25,0,0,83717,71,1714,0,115,0,0,0,2,0,97,0,0,0,0,2,11,110,4045,0,0,24,0,0,2,16,0,621,50,18,0,0,2,0,1630,0,19,104,0,122841,0,0,0,0,17867,3,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,2,3,0,0,0,5953,0,0,0,0,0,11904,0,5956,0,0,0,0,0,0,5960,0,0,0,0,0,0,0,0,0,9,1,1,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,5969,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,67,12,12,12,0,0,0,1507,0,181,0,0,0,20,23,463,34659,1490,0,0,0,0,1,0,4,0,0,0,0,0,0,100252,0,0,0,0,2,0,0,0,0,0,0,0,11,1,0,0,0,0,0,1,0,84,97,596,15,0,0,513,0,773,0,0,0,324,119,0,0,0,0,0,0,0,0,0,1502,1,0,0,0,12,0,0,0,0,3,164,190,0,0,219,0,1,0,0,0,4149,1,0,507,27,0,1,1,1,0,0,0,24,0,1,0,5,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,27,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,77,1,1,1,0,136,0,0,0,0,1,95,903,0,122,12,0,0,0,0,0,186,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1746,205,1 +2,0,0,3,0,12,2,0,14,0,3,0,0,0,3,0,15,0,7,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,3,0,12,6,0,0,12,0,0,0,1,0,0,1,0,0,0,0,1,46,0,0,0,0,0,1,0,0,0,0,0,3,0,0,651,12,40,0,2,0,0,0,0,0,6,0,0,0,0,0,1,3,23,0,0,3,0,0,0,0,0,12,0,2,0,0,2,0,17,0,1,0,0,501,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,52,0,0,0,2,4,27,12,45,0,0,0,0,1,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,165,3,0,0,145,0,153,0,0,0,83,6,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,2,95,66,0,0,0,0,0,0,0,0,28,0,0,17,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,282,0,3,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,41,1 +24,0,0,5,0,55,6,0,22,6,3,0,0,2,15,0,18,0,6,3,0,0,0,6,0,8,0,0,7,0,2,0,0,0,20,0,55,6,0,0,73,0,0,0,1,0,0,1,0,0,0,0,2,84,0,0,0,0,0,1,0,0,0,12,0,16,0,0,1829,55,66,0,7,0,0,0,0,0,7,0,0,0,0,0,8,15,712,0,0,20,0,0,0,0,0,85,5,1,0,0,2,0,62,0,12,0,0,1021,0,0,0,0,7,4,1,0,10,0,0,1,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,14,0,0,0,0,0,3,0,15,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,4,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,10,10,10,0,0,0,499,0,66,0,0,0,2,5,228,32,511,0,0,0,0,1,0,3,0,0,0,0,0,0,387,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,24,247,5,0,0,229,0,368,0,0,0,99,18,0,0,0,0,0,0,0,0,0,72,1,0,0,0,9,0,0,0,0,2,145,23,0,0,0,0,0,0,0,0,84,0,0,13,3,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,7,0,0,0,0,1,75,96,0,8,9,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,144,129,1 +6,0,0,4,2,29,5,8,27,6,6,0,0,0,13,0,29,0,7,6,0,2,1,2,0,0,3,0,6,0,10,0,0,2,16,0,31,6,22,0,44,0,0,0,1,0,0,1,1,0,0,0,9,80,0,0,0,0,0,1,0,0,0,16,0,15,0,0,5726,29,209,0,16,0,0,0,0,0,9,6,0,0,0,0,2,4,535,0,8,16,2,0,0,0,0,35,0,4,0,0,2,2,78,0,12,0,0,1663,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,13,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,316,0,68,0,0,0,18,20,53,50,323,0,0,0,0,1,0,0,0,0,0,0,0,0,1044,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,17,184,6,0,0,201,0,291,0,0,0,101,7,0,0,0,0,0,0,0,0,0,87,1,0,3,0,11,0,0,0,0,5,115,29,0,0,0,0,0,0,0,0,358,0,0,534,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,27,0,0,0,2,17,47,181,0,19,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,4,0,0,486,88,1 +3,0,0,4,2,20,3,2,27,1,6,0,0,0,9,1,31,0,7,5,0,4,0,1,0,0,0,0,3,0,7,0,0,2,7,0,22,6,0,0,31,0,0,0,1,0,0,2,0,0,0,0,6,66,0,0,0,0,0,1,2,0,0,0,0,9,0,0,466,20,189,0,10,0,0,0,0,0,8,6,0,0,0,1,1,5,51,0,2,7,2,0,0,0,0,23,0,2,0,0,2,2,46,0,7,0,0,254,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,63,0,54,0,0,0,12,10,44,27,73,0,0,0,0,1,0,0,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,12,173,6,0,0,215,0,261,0,0,0,96,11,0,0,0,0,0,0,0,0,0,84,1,0,0,0,10,0,0,0,0,3,106,47,0,0,0,0,0,0,0,0,64,0,0,31,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,15,0,0,0,8,17,29,208,0,10,0,0,0,0,0,0,44,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,120,21,1 +4,0,0,4,0,34,5,0,24,2,3,0,0,2,6,0,28,0,6,3,0,0,0,5,0,8,6,0,6,0,4,0,0,0,9,0,34,6,0,0,34,0,0,0,1,0,0,3,0,0,0,0,4,138,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1101,34,89,0,8,0,0,0,0,0,16,0,0,0,0,0,7,16,162,0,0,9,0,0,0,0,0,93,5,5,0,0,2,0,81,0,4,0,0,621,0,0,0,0,7,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,123,0,81,0,0,0,6,19,191,35,121,0,0,0,0,1,0,4,0,0,0,0,0,0,325,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,14,154,4,0,0,190,0,316,0,0,0,85,10,0,0,0,0,0,0,0,0,0,74,1,0,0,0,8,0,0,0,0,4,119,43,0,0,0,0,0,0,0,0,120,0,0,88,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,19,0,0,0,2,1,43,237,0,15,9,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,231,41,1 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,8,0,0,0,1,0,0,1,0,0,0,0,0,98,0,0,0,0,0,1,0,0,0,0,0,3,0,0,425,10,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,52,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,9,0,1,0,0,118,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,54,0,28,0,0,0,0,3,24,5,66,0,0,0,0,1,0,0,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,70,3,0,0,120,0,162,0,0,0,64,3,0,0,0,0,0,0,0,0,0,36,1,0,0,0,2,0,0,0,0,0,92,54,0,0,0,0,0,0,0,0,34,0,0,51,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,309,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,70,34,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,76,0,0,0,0,0,1,0,0,0,0,0,2,0,0,542,18,65,0,3,0,0,0,0,0,9,0,0,0,0,0,1,4,48,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,280,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,63,0,57,0,0,0,4,10,36,174,72,0,0,0,0,1,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,123,3,0,0,117,0,200,0,0,0,40,10,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,57,0,0,50,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,120,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,106,23,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,69,0,0,0,0,0,1,0,0,0,0,0,2,0,0,533,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,42,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,457,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,56,0,0,0,4,10,32,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,114,3,0,0,114,0,206,0,0,0,40,8,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,53,0,0,35,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,114,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,98,22,1 +8,0,0,11,0,28,5,0,31,4,15,0,0,0,34,0,17,0,7,2,0,0,0,2,0,0,0,0,6,0,7,0,0,0,17,0,28,7,0,0,95,0,0,0,1,0,0,2,0,0,0,0,6,95,0,0,0,0,0,1,0,0,0,0,0,16,0,0,522,28,121,0,13,0,0,0,0,0,8,0,0,0,0,0,3,7,76,0,0,17,0,0,1,8,0,95,15,4,0,0,2,0,147,0,13,0,0,396,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,92,0,69,0,0,0,12,6,55,126,109,0,0,0,0,1,0,0,0,0,0,0,0,0,415,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,8,66,180,23,0,0,195,0,267,0,0,0,127,21,0,0,0,0,0,0,0,0,0,109,1,0,0,0,4,0,0,0,0,2,124,60,0,0,29,0,1,0,1,0,65,0,0,41,0,0,1,0,0,0,0,0,5,0,1,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,18,0,0,0,2,1,45,191,0,13,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,173,39,1 +12,0,0,6,0,25,2,0,20,1,12,0,0,0,4,0,13,0,7,3,0,0,0,0,0,0,0,0,7,0,3,0,0,0,11,0,25,1344,0,0,33,0,0,0,1,0,0,0,0,0,0,0,2,62,0,0,0,0,0,1,0,0,0,0,0,4,0,0,220,25,55,0,10,0,0,0,0,0,0,0,0,0,0,0,2,2,4,0,0,11,0,0,0,14,0,136,35,0,0,0,2,0,89,0,1,0,0,536,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,3,0,9,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,7,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,61,0,27,0,0,0,4,5,60,74,38,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,9,106,7,0,0,88,0,267,0,0,0,40,24,0,0,0,0,0,0,0,0,0,58,0,0,0,0,3,0,0,0,0,1,107,28,0,0,73,0,0,0,0,0,1377,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,11,0,0,0,0,1,36,12,0,10,0,0,0,0,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,15,1 +6,0,0,6,2,46,9,8,36,5,6,0,0,2,11,1,32,0,7,8,0,2,1,6,0,8,3,0,17,0,9,1,0,2,16,0,48,6,27,0,55,0,0,0,1,0,0,2,0,0,0,0,10,179,0,0,0,0,0,1,0,0,0,9,0,13,0,0,1186,46,317,0,25,0,0,0,0,0,12,6,0,0,0,0,8,16,171,0,8,16,2,0,0,0,0,117,5,3,0,0,2,2,104,0,9,0,0,729,0,0,0,0,4,0,3,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,130,0,64,0,0,0,18,19,211,100,138,0,0,0,0,1,0,5,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,23,247,8,0,0,274,0,397,0,0,0,122,31,0,0,0,0,0,0,0,0,0,104,1,0,0,0,17,0,0,0,0,6,136,47,0,0,0,0,0,0,0,0,164,0,0,58,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,34,0,0,0,8,17,64,325,0,29,9,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,4,0,3,186,48,1 +4,0,0,6,4,46,6,4,65,2,12,0,0,6,10,1,59,0,7,12,0,8,0,5,0,8,0,0,6,0,11,0,0,4,12,0,50,6,0,0,93,0,0,0,1,0,0,2,0,0,0,0,11,145,0,0,0,0,0,1,4,0,0,0,0,13,0,0,1351,46,412,0,16,0,0,0,0,0,13,12,0,0,0,0,8,15,217,0,4,12,4,0,1,8,0,277,35,4,0,0,2,4,161,0,8,0,0,1006,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,159,0,115,0,0,0,20,19,242,136,166,0,0,0,0,1,0,3,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,1,0,84,20,330,10,0,0,359,0,404,0,0,0,132,15,0,0,0,0,0,0,4,0,0,166,1,0,0,0,25,0,0,0,0,7,132,63,0,0,31,0,0,0,0,0,197,0,0,128,2,0,1,2,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,25,0,0,0,8,33,62,168,0,17,8,0,0,0,0,0,113,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,8,1,0,0,0,0,0,0,0,0,0,0,8,0,2,377,57,1 +6,0,0,3,0,19,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,19,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,126,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1619,19,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,50,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,317,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,65,0,57,0,0,0,4,10,40,174,74,0,0,0,0,1,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,122,3,0,0,120,0,475,0,0,0,40,18,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,103,18,0,0,0,0,0,0,0,0,60,0,0,55,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,3,0,0,0,0,1,23,143,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,111,25,1 +5,0,0,7,0,61,98,0,66,2,96,0,0,7,11,1,1515,0,7,2,0,0,0,8,0,11,3,0,25,0,8,0,0,0,17,4179,61,6,0,0,67,0,0,0,1,0,0,4,0,0,0,0,8,1815,0,0,0,0,0,1,0,0,0,0,0,10,0,0,153437,61,2105,0,29,0,0,0,0,0,204,0,0,0,0,0,9,305,9867,0,0,17,0,0,0,0,0,1012,25,6,0,0,2,0,1795,0,7,702,0,9673,0,0,0,0,3,0,4,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,12,12,12,0,0,0,2707,0,126,0,0,0,28,49,761,16298,2696,0,0,0,0,1,0,6,0,0,0,0,0,0,753,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,108,31,416,7,0,0,593,0,388,0,0,0,414,27,0,0,0,0,0,0,0,0,0,1801,1,0,0,0,10,0,0,0,0,4,195,81,0,0,757,0,1,0,0,0,7648,1,0,575,98,0,1,1,0,0,0,0,13,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,98,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,122,0,0,0,8,1,78,398,0,33,14,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3390,90,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,14,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,35,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,4,1 +0,0,0,2,0,9,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,141,9,35,0,1,0,0,0,0,0,4,0,0,0,0,0,2,4,27,0,0,0,0,0,0,0,0,9,0,2,0,0,2,0,13,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0,33,0,30,0,0,0,0,3,26,5,47,0,0,0,0,1,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,98,0,0,0,30,6,0,0,0,0,0,0,0,0,0,40,1,0,0,0,3,0,0,0,0,0,93,21,0,0,0,0,0,0,0,0,26,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,9,88,0,1,0,0,0,1,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,12,1 +14,0,0,7,0,27,5,0,18,3,4,0,0,0,14,1,15,0,7,1,0,0,0,1,0,0,0,0,8,0,11,0,0,0,14,0,27,6,0,0,48,0,0,0,1,0,0,1,0,0,0,0,10,77,0,0,0,0,0,1,0,0,0,0,0,15,0,0,520,27,73,0,19,0,0,0,0,0,5,0,0,0,0,0,1,3,54,0,0,14,0,0,0,0,0,31,0,2,0,0,2,0,65,0,9,0,0,648,0,0,0,0,11,4,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,63,0,51,0,0,0,20,17,59,79,75,0,0,0,0,1,0,0,0,0,1,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,8,18,152,7,0,0,176,0,284,0,0,0,103,20,0,0,0,0,0,0,0,0,0,64,1,0,0,0,2,0,0,0,0,5,113,50,0,0,0,0,0,0,0,0,79,0,0,23,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,28,0,0,0,8,1,41,189,0,19,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,108,42,1 +0,0,0,5,0,12,6,0,29,2,7,0,0,0,7,0,19,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,40,0,0,28,0,0,0,1,0,0,3,0,0,0,0,0,90,0,0,0,0,0,1,0,0,0,0,0,8,0,0,640,12,81,0,1,0,0,0,0,0,17,0,0,0,0,0,1,5,96,0,0,2,0,0,1,8,0,83,15,5,0,0,2,0,81,0,3,0,0,283,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,60,0,0,0,0,3,29,68,105,0,0,0,0,1,0,0,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,12,9,123,5,0,0,170,0,202,0,0,0,99,10,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,0,95,92,0,0,29,0,0,0,0,0,158,0,0,87,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,312,0,1,0,0,0,0,0,0,47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,212,30,1 +10,0,0,6,2,35,11,2,87,8,25,0,0,0,15,0,34,0,6,5,0,4,0,1,0,0,0,0,5,0,1,0,0,2,16,0,37,9,0,0,113,0,0,0,1,0,0,4,1,0,0,0,0,112,0,0,0,0,0,1,2,0,0,1,0,16,0,0,5042,35,310,0,6,0,0,0,0,0,17,6,0,0,0,0,1,9,1508,0,2,16,2,0,2,46,0,399,85,9,1,0,2,2,257,0,9,0,0,3888,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,188,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,852,0,150,0,0,0,0,3,71,135855,863,0,0,0,0,1,0,0,0,0,0,0,0,0,823,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,12,881,8,0,0,318,0,412,0,0,0,171,292,0,0,0,0,0,0,0,0,0,178,1,0,4,0,10,0,0,0,0,1,140,144,0,0,310,0,0,0,0,0,80,0,0,62,0,0,1,0,0,0,0,0,15,0,0,0,4,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,5,0,0,0,0,17,53,202,0,6,0,0,0,0,0,0,140,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,3,0,4,313,949460,1 +1,0,0,5,1,21,39,1,109,11,33,0,3,0,16,0,70,0,8,1,0,0,0,1,0,0,0,0,2,0,1,0,0,1,12,0,22,89,0,0,175,0,5,0,1,0,0,8,0,0,0,0,0,78,0,0,0,0,0,1,0,0,0,0,0,26,0,0,16027,21,269,0,3,0,0,0,0,0,28,0,0,0,0,0,1,14,3419,0,1,12,1,0,10,68,0,646,90,11,0,0,10,1,385,0,13,0,0,423,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1912,0,125,0,0,0,0,3,45,514,1941,0,0,0,0,1,0,0,0,0,0,0,0,0,3772,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,136,55,286,6,0,0,320,0,481,0,1,0,131,38,0,0,0,0,0,0,0,0,0,278,1,0,0,0,2,0,0,0,0,1,120,168,0,0,174,0,0,0,0,0,843,0,0,4846,0,0,1,0,1,0,0,0,16,0,0,0,3,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,361,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,18,1,1,1,0,2,0,0,0,0,9,34,153,0,3,0,0,0,0,0,0,252,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,23,0,0,0,0,0,0,0,0,0,0,0,1,0,8,1502,150,1 +7,0,0,4,0,48,6,0,36,8,3,0,0,2,13,0,579,0,6,3,0,0,0,6,0,10,0,0,8,0,4,0,0,0,10,898,48,6,0,0,58,0,0,0,1,0,0,5,0,0,0,0,4,195,0,0,0,0,0,1,0,0,0,0,0,14,0,0,19788,48,672,0,9,0,0,0,0,0,25,0,0,0,0,0,8,21,3446,0,0,10,0,0,0,0,0,108,5,9,0,0,2,0,624,0,11,0,0,1364,0,0,0,0,14,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,8,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,12,12,12,0,0,0,2791,0,106,0,0,0,6,9,254,358,2763,0,0,0,0,1,0,3,0,0,0,0,0,0,512,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,257,4,0,0,272,0,328,0,0,0,104,14,0,0,0,0,0,0,0,0,0,645,1,0,0,0,9,0,0,0,0,4,131,27,0,0,0,0,0,0,0,0,1600,1,0,151,6,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,11,0,0,0,0,1,58,154,0,10,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,594,45,1 +10,0,0,5,2,54,4,2,35,11,6,0,0,0,22,1,31,0,7,6,0,4,0,2,0,0,0,0,11,0,15,0,0,2,40,0,56,6,0,0,131,0,0,0,1,0,0,1,0,0,0,0,14,68,0,0,0,0,0,1,2,0,0,16,0,23,0,0,1592,54,230,0,26,0,0,0,0,0,10,6,0,0,0,0,3,5,310,0,2,40,2,0,0,0,0,66,0,2,0,0,2,2,95,0,20,0,0,865,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,8,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,0,0,0,0,0,0,201,0,79,0,0,0,28,24,87,83,210,0,0,0,0,1,0,0,0,0,0,0,0,0,667,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,29,294,7,0,0,312,0,332,0,0,0,179,9,0,0,0,0,0,0,3,0,0,106,1,0,0,0,12,0,0,0,0,11,144,28,0,0,0,0,0,0,0,0,157,0,0,323,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,39,0,0,0,8,17,96,147,0,26,0,0,0,0,0,0,126,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,4,0,1,256,63,1 +9,0,0,10,0,50,10,0,49,3,11,0,0,6,16,1,703,0,7,2,0,0,0,8,0,13,0,0,11,0,4,0,0,0,11,2216,50,6,0,0,92,0,0,0,1,0,0,1,0,0,0,0,6,285,0,0,0,0,0,1,0,0,0,0,0,13,0,0,11397,50,807,0,11,0,0,0,0,0,12,0,0,0,0,1,9,31,2219,0,0,11,0,0,0,0,0,221,20,2,0,0,2,0,802,0,8,10,0,2464,0,0,0,0,15,0,1,0,1,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,5,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,12,12,12,0,0,0,915,0,54,0,0,0,9,12,305,494,896,0,0,0,0,1,0,3,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,84,45,287,12,0,0,287,0,312,0,0,0,122,5,0,0,0,0,0,0,0,0,0,803,1,0,0,0,10,0,0,0,0,4,146,13,0,0,15,0,0,0,0,0,2085,1,0,22,9,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,9,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,23,0,0,0,2,1,61,110,0,14,14,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,99,1 +3,0,0,12,0,25,3,0,21,11,7,0,0,0,39,2,24,0,7,1,0,0,0,1,0,0,3,0,6,0,7,1,0,0,14,0,25,6,0,0,105,0,0,0,1,0,0,10,0,0,0,0,7,185,0,0,0,0,0,1,0,0,0,0,0,22,0,0,8864,25,175,0,14,0,0,0,0,0,41,0,0,0,0,0,1,14,2096,0,0,14,0,0,0,0,0,53,0,13,0,0,2,0,138,0,18,0,0,1258,0,0,0,0,27,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,22,0,0,0,0,0,0,1413,0,171,0,0,0,14,18,56,799,1415,0,0,0,0,1,0,0,0,0,0,0,0,0,2697,0,0,0,0,0,0,0,0,0,0,0,0,379,0,0,0,0,0,0,0,0,8,39,311,16,0,0,499,0,544,0,0,0,427,27,0,0,0,0,0,0,2,0,0,103,1,0,0,0,2,0,0,0,0,7,150,318,0,0,0,0,3,0,0,0,797,0,0,1693,0,0,1,0,0,0,0,0,20,0,0,0,3,0,0,0,0,0,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,21,0,0,0,0,1,39,1412,0,17,0,0,1,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,8,2141,149,1 +6,0,0,7,2,26,59,8,204,4,50,0,0,0,9,0,35,0,7,6,0,2,1,2,0,0,6,0,6,0,6,0,0,2,11,0,28,6,62,0,268,0,0,0,1,0,0,3,0,0,0,0,5,269,0,0,0,0,0,1,0,0,0,6,0,12,0,0,1470,26,508,0,12,0,0,0,0,0,13,6,0,0,0,1,2,8,164,0,8,11,2,0,1,159,0,1290,220,5,0,0,2,2,768,0,7,0,0,374,0,0,0,0,5,0,0,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,164,0,73,0,0,0,10,16,57,483,173,0,0,0,0,1,0,0,0,0,0,0,0,0,610,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,12,218,9,0,0,281,0,363,0,0,0,166,20,0,0,0,0,0,0,0,0,0,364,1,0,0,0,11,0,0,0,0,4,112,318,0,0,533,0,0,0,0,0,157,0,0,146,0,0,1,0,0,0,0,0,5,0,0,0,2,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,14,0,0,0,0,17,39,401,0,18,0,0,0,0,0,0,323,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,3,0,1,163,151,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,246,0,0,0,0,0,1,0,0,0,0,0,2,0,0,3984,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,40,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,368,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,56,0,57,0,0,0,4,10,32,174,65,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,128,3,0,0,116,0,1053,0,0,0,41,14,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,103,18,0,0,0,0,0,0,0,0,51,0,0,31,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,108,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,99,28,1 +7,0,0,4,0,18,8,0,33,1,8,0,0,0,6,0,21,0,6,1,0,0,0,1,0,0,3,0,3,0,4,0,0,0,8,0,18,6,0,0,40,0,0,0,1,0,0,5,1,0,0,0,3,112,0,0,0,0,0,1,0,0,0,0,0,8,0,0,1614,18,127,0,7,0,0,0,0,0,28,0,0,0,0,0,1,8,156,0,0,8,0,0,1,15,0,149,20,8,1,0,2,0,116,0,4,0,0,435,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,166,0,109,0,0,0,6,12,39,200,162,0,0,0,0,1,0,0,0,0,0,0,0,0,738,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,7,140,4,0,0,141,0,263,0,0,0,76,11,0,0,0,0,0,0,0,0,0,82,1,0,3,0,2,0,0,0,0,3,102,48,0,0,42,0,0,0,0,0,75,0,0,140,0,0,1,0,0,0,0,0,18,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,12,0,0,0,0,1,26,110,0,10,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5,254,58,1 +5,0,0,4,0,28,8,0,19,0,3,0,0,0,11,0,18,0,9,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,14,2,28,60,0,0,25,0,0,0,1,0,0,1,1,0,0,0,1,35,0,0,0,0,0,1,0,0,0,0,0,12,0,0,821,28,68,0,3,0,0,0,0,0,24,0,0,0,0,0,1,3,28,0,0,14,0,0,0,0,0,12,0,4,0,0,2,0,50,0,1,0,0,973,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,63,0,0,0,2,4,62,1060,51,0,0,0,0,1,0,0,0,0,0,0,0,0,855,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,23,4,177,4,0,0,149,0,352,0,0,0,68,22,0,0,0,0,0,0,0,0,0,68,1,0,2,0,2,0,0,0,0,2,114,25,0,0,0,0,0,0,0,0,118,0,0,17,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,3,0,0,0,0,1,42,74,0,3,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,138,75,1 +31,0,0,10,0,31,4,0,28,20,31,0,0,0,51,1,78,0,7,1,0,0,0,3,0,0,6,0,9,0,8,2,0,0,15,0,31,6,0,0,107,0,0,0,1,0,0,1,0,0,0,0,9,64,0,0,0,0,0,1,0,0,0,6,0,33,0,0,481,31,219,0,19,0,0,0,0,0,6,0,0,0,0,0,3,5,67,0,0,15,0,0,1,8,0,120,15,2,0,0,2,0,245,0,27,0,0,514,0,0,0,0,8,8,0,0,8,0,2,1,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,7,0,0,0,0,0,1,0,7,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,9,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,14,0,0,0,0,0,0,89,0,78,0,0,0,18,23,76,146,97,0,0,0,0,1,0,0,0,0,0,0,0,0,473,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,10,59,186,12,0,0,147,0,332,0,0,0,66,21,0,0,0,0,0,0,0,0,0,200,1,0,0,0,4,0,0,0,0,8,116,22,0,0,29,0,0,0,0,0,340,0,0,33,0,0,1,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,19,2,0,0,0,0,0,0,0,0,0,0,16,16,0,0,7,0,0,0,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,29,0,0,0,0,13,46,44,0,25,0,0,0,0,0,0,81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,211,83,1 +1,0,0,4,0,14,3,0,17,0,4,0,0,0,4,1,16,0,7,1,0,0,0,1,0,0,0,0,3,0,4,0,0,0,3,0,14,6,0,0,19,0,0,0,1,0,0,3,0,0,0,0,3,111,0,0,0,0,0,1,0,0,0,0,0,4,0,0,544,14,58,0,7,0,0,0,0,0,11,0,0,0,0,1,1,6,60,0,0,3,0,0,0,0,0,19,0,5,0,0,2,0,30,0,2,0,0,209,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,73,0,31,0,0,0,6,7,32,18,76,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,7,99,4,0,0,154,0,233,0,0,0,81,9,0,0,0,0,0,0,0,0,0,52,1,0,0,0,2,0,0,0,0,3,100,60,0,0,0,0,0,0,0,0,210,0,0,56,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,9,0,0,0,0,1,17,440,0,7,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,13,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,137,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1802,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,52,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,312,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,64,0,55,0,0,0,4,10,32,174,73,0,0,0,0,1,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,116,3,0,0,114,0,526,0,0,0,40,10,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,60,0,0,62,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,124,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,107,25,1 +2,0,0,5,2,45,7,2,63,0,8,0,0,7,4,0,660,0,6,7,0,4,0,7,0,10,0,0,11,0,1,0,0,2,7,898,47,9,0,0,55,0,0,0,1,0,0,2,0,0,0,0,1,181,0,0,0,0,0,1,2,0,0,1,0,2,0,0,7789,45,980,0,9,0,0,0,0,0,18,6,0,0,0,0,9,28,1500,0,2,7,2,0,0,0,0,224,25,4,0,0,2,2,715,0,0,4,0,1671,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,40,12,12,12,0,0,0,526,0,54,0,0,0,2,5,292,398,503,0,0,0,0,1,0,3,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,106,16,279,7,0,0,328,0,337,0,0,0,113,9,0,0,0,0,0,0,0,0,0,755,1,0,0,0,18,0,0,0,0,1,128,35,0,0,12,0,0,0,0,0,1922,1,0,247,7,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,14,0,0,0,0,17,54,121,0,10,12,0,0,0,0,0,76,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,671,47,1 +2,0,0,10,0,45,7,0,43,12,19,0,0,6,12,1,667,0,7,2,0,0,0,8,0,11,0,0,30,0,7,0,0,0,8,1702,45,6,0,0,77,0,0,0,1,0,0,1,0,0,0,0,7,189,0,0,0,0,0,1,0,0,0,0,0,10,0,0,21927,45,783,0,33,0,0,0,0,0,11,0,0,0,0,0,9,64,4432,0,0,8,0,0,0,0,0,303,20,2,0,0,2,0,758,0,5,11,0,3828,0,0,0,0,15,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,12,12,12,0,0,0,1162,0,53,0,0,0,23,26,330,1783,1143,0,0,0,0,1,0,3,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,84,96,277,12,0,0,265,0,454,0,0,0,104,10,0,0,0,0,0,0,0,0,0,762,1,0,0,0,10,0,0,0,0,7,138,29,0,0,56,0,0,0,0,0,3389,1,0,209,7,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,71,0,0,0,8,1,53,147,0,34,14,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1842,95,1 +10,0,0,8,0,38,6,0,20,2,7,0,0,2,11,1,18,0,7,3,0,0,0,5,0,8,0,0,5,0,16,0,0,0,10,0,38,6,0,0,68,0,0,0,1,0,0,1,0,0,0,0,16,167,0,0,0,0,0,1,0,0,0,0,0,10,0,0,889,38,79,0,20,0,0,0,0,0,8,0,0,0,0,0,7,13,94,0,0,10,0,0,0,0,0,141,5,2,0,0,2,0,85,0,5,0,0,729,0,0,0,0,10,0,1,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,6,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,10,10,0,0,0,76,0,50,0,0,0,30,30,200,110,74,0,0,0,0,1,0,3,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,0,0,1,0,32,25,199,10,0,0,185,0,274,0,0,0,71,14,0,0,0,0,0,0,0,0,0,72,1,0,0,0,8,0,0,0,0,13,128,187,0,0,0,0,0,0,0,0,87,0,0,51,2,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,2,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,34,0,0,0,28,1,48,148,0,21,8,0,0,0,0,0,54,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,152,51,1 +2,0,0,5,2,26,3,8,34,2,6,0,0,0,12,1,111,0,7,7,0,2,0,1,0,0,0,0,5,0,11,0,0,2,12,0,28,96,0,0,76,0,0,0,1,0,0,2,0,0,0,0,10,63,0,0,0,0,0,1,0,0,0,57,0,13,0,0,1305,26,290,0,16,0,0,0,0,0,10,6,0,0,0,0,1,5,75,0,8,12,2,0,0,0,0,41,0,4,0,0,2,2,115,0,8,0,0,408,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,79,0,48,0,0,0,20,18,58,46,130,0,0,0,0,1,0,0,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,8,13,259,7,0,0,356,0,361,0,0,0,227,23,0,0,0,0,0,0,0,0,0,174,1,0,0,0,10,0,0,0,0,7,138,105,0,0,0,0,0,0,0,0,255,0,0,83,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,25,0,0,0,10,17,40,345,0,16,0,0,0,0,0,0,206,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,430,17,1 +2,0,0,4,0,23,3,0,16,1,3,0,0,0,6,0,15,0,7,1,0,0,0,2,0,0,0,0,4,0,5,0,0,0,10,0,23,6,0,0,29,0,0,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,5,0,7,0,0,230,23,48,0,9,0,0,0,0,0,5,0,0,0,0,0,2,4,28,0,0,10,0,0,0,0,0,29,0,1,0,0,2,0,30,0,4,0,0,349,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,51,0,0,0,8,8,48,38,53,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,9,129,4,0,0,128,0,184,0,0,0,55,11,0,0,0,0,0,0,0,0,0,50,1,0,0,0,3,0,0,0,0,5,105,18,0,0,0,0,0,0,0,0,34,0,0,16,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,12,0,0,0,0,1,33,82,0,9,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,84,27,1 +10,0,0,6,0,44,12,0,83,2,26,0,0,2,8,0,24,0,7,3,0,0,0,6,0,8,3,0,8,0,4,0,0,0,18,0,44,6,0,0,155,0,0,0,1,0,0,4,0,0,0,0,4,266,0,0,0,0,0,1,0,0,0,1,0,16,0,0,2777,44,185,0,10,0,0,0,0,0,21,0,0,0,0,1,8,20,500,0,0,18,0,0,3,56,0,546,60,7,0,0,2,0,342,0,3,0,0,1293,0,0,0,0,6,1,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,333,0,80,0,0,0,6,10,214,5286,334,0,0,0,0,1,0,5,0,0,0,0,0,0,745,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,36,276,6,0,0,271,0,328,0,0,0,161,31,0,0,0,0,0,0,0,0,0,162,1,0,0,0,9,0,0,0,0,2,126,303,0,0,166,0,0,0,0,0,193,0,0,481,3,0,1,1,0,0,0,0,8,0,1,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,13,0,0,0,0,1,62,537,0,14,9,0,0,0,0,0,175,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,343,98,1 +7,0,0,5,2,35,14,8,32,6,6,0,0,0,16,1,25,0,7,6,0,2,1,2,0,0,0,0,12,0,9,0,0,2,17,0,37,6,24,0,61,0,0,0,1,0,0,1,0,0,0,0,8,45,0,0,0,0,0,1,0,0,0,8,0,17,0,0,650,35,219,0,21,0,0,0,0,0,13,6,0,0,0,0,2,4,49,0,8,17,2,0,0,0,0,49,0,1,0,0,2,2,79,0,14,0,0,892,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,64,0,76,0,0,0,16,16,72,64,74,0,0,0,0,1,0,0,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,21,254,7,0,0,249,0,282,0,0,0,125,61,0,0,0,0,0,0,0,0,0,101,1,0,0,0,11,0,0,0,0,7,127,46,0,0,0,0,0,0,0,0,87,0,0,31,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,28,0,0,0,2,17,54,126,0,21,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,3,0,1,157,206,1 +6,0,0,8,2,46,11,8,56,2,12,0,0,2,8,1,502,0,7,8,0,2,1,7,0,10,0,0,12,0,6,0,0,2,11,1027,48,6,2,0,59,0,0,0,1,0,0,3,0,0,0,0,6,211,0,0,0,0,0,1,0,0,0,14,0,11,0,0,6633,46,723,0,15,0,0,0,0,0,18,6,0,0,0,0,9,20,1283,0,8,11,2,0,1,9,0,201,25,5,0,0,2,2,588,0,4,0,0,1645,0,0,0,0,3,0,3,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,466,0,66,0,0,0,10,12,247,540,460,0,0,0,0,1,0,5,0,0,0,0,0,0,479,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,20,299,10,0,0,315,0,400,0,0,0,124,41,0,0,0,0,0,0,0,0,0,599,1,0,0,0,18,0,0,0,0,5,137,48,0,0,45,0,0,0,0,0,1539,1,0,186,5,0,1,1,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,19,0,0,0,0,17,59,160,0,16,12,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,3,0,3,836,62,1 +8,0,0,4,0,31,3,0,17,0,4,0,0,0,4,1,15,0,7,1,0,0,0,1,0,0,0,0,10,0,11,0,0,0,13,0,31,6,0,0,34,0,0,0,1,0,0,9,0,0,0,0,10,142,0,0,0,0,0,1,0,0,0,0,0,4,0,0,3029,31,122,0,21,0,0,0,0,0,36,0,0,0,0,0,1,13,673,0,0,13,0,0,0,0,0,67,0,9,0,0,2,0,46,0,2,0,0,416,0,0,0,0,9,0,5,0,0,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,8,0,0,0,0,1,0,15,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,491,0,182,0,0,0,20,22,62,74,511,0,0,0,0,1,0,0,0,0,0,0,0,0,1216,0,0,0,0,0,0,0,0,0,0,0,0,9,0,8,0,0,0,0,0,0,8,7,166,4,0,0,221,0,277,0,0,0,131,18,0,0,0,0,0,0,15,0,0,51,1,0,0,0,2,0,0,0,0,10,117,63,0,0,0,0,0,0,0,0,214,0,0,590,0,0,1,0,0,0,0,0,18,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,30,0,0,0,16,1,44,609,0,21,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,8,624,92,1 +5,0,0,4,0,18,3,0,19,0,4,0,0,0,5,1,16,0,7,1,0,0,0,1,0,0,0,0,3,0,8,0,0,0,8,0,18,10,0,0,27,0,0,0,1,0,0,3,0,0,0,0,7,119,0,0,0,0,0,1,0,0,0,0,0,5,0,0,546,18,71,0,11,0,0,0,0,0,12,0,0,0,0,0,1,5,76,0,0,8,0,0,0,0,0,24,0,5,0,0,2,0,43,0,3,0,0,321,0,0,0,0,3,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,82,0,79,0,0,0,14,13,38,30,98,0,0,0,0,1,0,0,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,15,127,4,0,0,148,0,239,0,0,0,80,8,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,1,0,0,4,104,39,0,0,0,0,0,0,0,0,79,0,0,83,0,0,1,1,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,17,0,0,0,8,1,26,307,0,11,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,181,28,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,63,0,0,0,0,0,1,0,0,0,0,0,2,0,0,350,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,45,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,248,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,60,0,56,0,0,0,4,10,32,174,69,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,109,3,0,0,114,0,182,0,0,0,40,7,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,55,0,0,39,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,100,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,101,21,1 +139,0,0,28,0,79,48,0,298,22,63,0,0,0,49,1,104,0,7,4,0,0,0,5,0,1,16,0,9,0,8,0,0,0,62,0,79,371,0,0,1020,0,0,0,1,0,0,4,0,0,0,0,8,157,0,0,0,0,0,1,0,0,0,12,0,44,0,0,6977,79,609,0,18,0,0,0,0,0,21,0,0,0,0,1,8,14,551,0,0,62,0,0,1,205,0,1645,110,8,0,0,2,0,1255,0,30,0,0,1776,0,0,0,0,33,40,0,0,11,0,0,1,0,0,0,17,0,0,0,0,0,0,0,40,0,0,0,1,0,0,0,0,0,9,0,15,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,2,4,0,0,0,0,2,2,0,0,0,0,0,22,0,0,0,0,0,0,0,0,10,2,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,8,1,0,0,0,31,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,119,0,0,0,0,0,0,541,0,169,0,0,0,16,36,121,1333,623,0,0,0,0,1,0,0,0,0,0,0,0,0,2660,0,0,0,0,0,0,0,0,0,8,0,0,4,0,0,0,0,0,0,1,0,15,78,466,43,0,0,641,0,542,0,0,0,554,127,0,0,0,0,0,0,0,0,0,570,1,0,0,0,9,0,0,0,0,9,243,863,0,0,258,0,42,0,0,0,773,0,0,1386,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,1,0,0,23,17,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,1,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,80,1,1,1,0,40,0,0,0,0,1,141,559,0,34,0,0,0,0,0,0,1495,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,4,978,341,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,147,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,16,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,49,0,0,0,62,0,52,0,0,0,32,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,95,26,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,61,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,1 +6,0,0,7,6,70,14,24,95,8,15,0,0,2,13,1,637,0,7,18,0,6,3,7,0,10,42,0,33,0,26,1,0,6,35,1027,76,6,44,0,76,0,0,0,1,0,0,5,0,0,0,0,27,217,0,0,0,0,0,1,0,0,0,9,0,17,0,0,9412,70,1443,0,57,0,0,0,0,0,31,18,0,0,0,0,9,23,1773,0,24,35,6,0,1,9,0,251,25,6,0,0,2,6,947,0,11,0,0,2205,0,0,0,0,5,0,5,0,0,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,12,12,12,0,0,0,707,0,118,0,0,0,52,78,281,672,704,0,0,0,0,1,0,7,0,0,0,0,0,0,1248,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,32,25,578,13,0,0,576,0,563,0,0,0,323,31,0,0,0,0,0,0,0,0,0,784,1,0,0,0,34,0,0,0,0,9,238,70,0,0,45,0,0,0,0,0,2089,1,0,947,5,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,78,1,1,1,0,70,0,0,0,14,49,111,164,0,100,12,0,0,0,0,0,83,1,0,0,0,0,0,0,0,0,0,0,0,7,0,1,12,0,0,0,0,0,0,0,0,0,0,0,9,0,6,966,89,1 +7,0,0,7,0,34,4,0,19,3,4,0,0,0,14,0,15,0,7,2,0,0,0,2,0,0,0,0,5,0,6,0,0,0,24,0,34,6,0,0,66,0,0,0,1,0,0,2,0,0,0,0,5,80,0,0,0,0,0,1,0,0,0,18,0,14,0,0,3548,34,75,0,11,0,0,0,0,0,11,0,0,0,0,0,3,6,408,0,0,24,0,0,0,0,0,38,0,4,0,0,2,0,56,0,10,0,0,669,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,6,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,5,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,348,0,90,0,0,0,10,13,63,60,363,0,0,0,0,1,0,0,0,0,0,0,0,0,1375,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,19,165,9,0,0,186,0,238,0,0,0,118,16,0,0,0,0,0,0,0,0,0,63,1,0,0,0,4,0,0,0,0,6,120,32,0,0,0,0,0,0,0,0,328,0,0,1141,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,15,0,0,0,6,1,58,199,0,11,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,516,19,1 +8,0,0,4,4,51,5,10,45,6,7,0,0,0,13,0,45,0,6,10,0,6,1,2,0,0,3,0,5,0,4,0,0,4,38,0,55,6,22,0,89,0,0,0,1,0,0,1,1,0,0,0,3,66,0,0,0,0,0,1,2,0,0,9,0,14,0,0,835,51,351,0,9,0,0,0,0,0,10,12,0,0,0,0,2,4,36,0,10,38,4,0,0,0,0,30,0,3,0,0,2,4,73,0,11,0,0,1004,0,0,0,0,4,1,1,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,61,0,90,0,0,0,6,11,80,48,67,0,0,0,0,1,0,0,0,0,0,0,0,0,435,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,16,323,8,0,0,331,0,320,0,0,0,182,12,0,0,0,0,0,0,0,0,0,121,1,0,3,0,19,0,0,0,0,3,137,27,0,0,0,0,0,0,0,0,103,0,0,20,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,14,0,0,0,0,33,93,171,0,12,0,0,0,0,0,0,88,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,6,0,0,0,0,0,0,0,0,0,0,0,8,0,1,120,75,1 +3,0,0,8,0,34,5,0,27,0,4,0,0,2,7,0,20,0,10,3,0,0,0,6,1,8,0,0,4,0,2,0,0,0,6,0,34,6,1,0,41,0,0,0,1,0,0,15,0,0,0,0,3,247,0,0,0,0,0,1,0,0,0,0,0,5,0,0,3990,34,155,0,4,0,0,0,0,0,59,0,0,0,0,0,8,31,874,0,0,6,0,0,0,0,0,110,5,18,0,0,2,0,42,0,1,0,0,775,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,17,0,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4,10,10,10,0,0,0,597,0,214,0,0,0,4,7,192,33,592,0,0,0,0,1,0,3,0,0,0,0,0,0,1333,0,0,0,0,0,0,0,0,0,0,0,0,15,1,10,0,0,0,0,1,0,43,11,214,8,0,0,375,0,533,0,0,0,250,646,0,0,0,0,0,0,13,0,0,75,1,0,0,0,10,0,0,0,0,1,148,178,0,0,0,0,0,0,0,0,296,0,0,684,3,0,1,1,0,0,0,0,30,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,2,40,607,0,5,9,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,14,851,87,1 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,21,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,21,0,0,0,0,3,25,3,20,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,0,0,0,35,0,38,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,4,1 +2,0,0,3,2,59,12,8,64,3,9,0,0,6,16,1,922,0,8,8,0,2,1,8,0,11,12,0,11,0,3,2,0,2,13,2212,61,6,26,0,152,0,0,0,1,0,0,3,1,0,0,0,5,307,0,0,0,0,0,1,0,0,0,0,0,4,0,0,19466,59,1193,0,12,0,0,0,0,0,30,6,0,0,0,0,10,34,3520,0,8,13,2,0,0,0,0,233,20,18,0,0,2,2,1082,0,3,10,0,2810,0,0,0,0,25,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,52,12,12,12,0,0,0,1812,0,115,0,0,0,10,33,329,899,1778,0,0,0,0,1,0,8,0,0,0,0,0,0,1569,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,121,94,394,5,0,0,411,0,458,0,0,0,181,47,0,0,0,0,0,0,0,0,0,1038,1,0,14,0,19,0,0,0,0,5,154,51,0,0,15,0,0,0,0,0,2902,1,0,219,9,0,1,1,0,0,0,0,28,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,9,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,71,1,1,1,0,49,0,0,0,0,17,74,330,0,25,14,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,7,0,0,0,0,0,0,0,0,0,0,0,3,0,0,930,70,1 +4,0,0,8,0,55,8,0,46,6,7,0,0,6,16,1,611,0,7,2,0,0,0,8,0,10,0,0,11,0,12,0,0,0,17,898,55,6,0,0,95,0,0,0,1,0,0,1,0,0,0,0,12,188,0,0,0,0,0,1,0,0,0,7,0,16,0,0,6722,55,707,0,20,0,0,0,0,0,12,0,0,0,1,0,9,18,1234,0,0,17,0,0,0,0,0,223,20,2,0,0,2,0,708,0,12,1,0,1890,0,0,0,0,7,0,1,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,12,12,12,0,0,0,504,0,82,0,0,0,22,18,286,407,494,0,0,0,0,1,0,3,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,2,0,84,35,280,8,0,0,291,0,341,0,0,0,122,14,0,0,0,0,0,0,0,0,0,702,1,0,0,0,10,0,0,0,0,8,146,27,0,0,6,0,0,0,0,0,1712,1,0,73,6,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,30,0,0,0,8,1,72,318,0,21,12,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,571,61,1 +5,0,0,3,0,25,2,0,7,1,3,0,0,0,6,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,17,0,25,6,0,0,40,0,0,0,1,0,0,2,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,2,0,6,0,0,402,25,37,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,65,0,0,17,0,0,0,0,0,9,0,2,0,0,2,0,14,0,4,0,0,348,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,58,0,92,0,0,0,0,3,39,14,78,0,0,0,0,1,0,0,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,8,7,141,3,0,0,182,0,216,0,0,0,131,6,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,118,62,0,0,0,0,0,0,0,0,39,0,0,25,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,0,0,0,0,0,1,42,171,0,1,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,165,23,1 +7,0,0,4,0,47,6,0,36,8,3,0,0,2,13,0,578,0,6,3,0,0,0,6,0,10,0,0,8,0,4,0,0,0,9,898,47,6,0,0,58,0,0,0,1,0,0,4,0,0,0,0,4,195,0,0,0,0,0,1,0,0,0,0,0,14,0,0,19111,47,671,0,9,0,0,0,0,0,25,0,0,0,0,0,8,21,3336,0,0,9,0,0,0,0,0,108,5,9,0,0,2,0,623,0,11,0,0,1341,0,0,0,0,14,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,8,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,12,12,12,0,0,0,2684,0,106,0,0,0,6,9,250,354,2657,0,0,0,0,1,0,3,0,0,0,0,0,0,488,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,257,4,0,0,269,0,323,0,0,0,98,12,0,0,0,0,0,0,0,0,0,644,1,0,0,0,9,0,0,0,0,4,130,27,0,0,0,0,0,0,0,0,1599,1,0,135,6,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,11,0,0,0,0,1,56,153,0,10,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,596,43,1 +0,0,0,0,0,8,2,0,15,0,1,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,11,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,0,0,0,87,8,36,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,14,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,30,0,0,0,0,3,21,5,40,0,0,0,0,1,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,62,0,0,0,74,0,107,0,0,0,16,0,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,90,9,0,0,0,0,0,0,0,0,26,0,0,9,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,103,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,62,8,1 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,163,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,8,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,281,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,22,0,0,0,0,3,24,7,31,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,41,0,0,0,85,0,166,0,0,0,55,3,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,93,49,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,125,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,8,1 +5,0,0,14,0,125,19,0,80,0,12,0,0,0,158,0,20,0,6,1,0,0,0,1,0,0,3,0,3,0,5,0,0,0,95,0,125,6,0,0,608,0,0,0,1,0,0,10,0,0,0,0,4,294,0,0,0,0,0,1,0,0,0,0,0,152,0,0,70199,125,301,0,8,0,0,0,0,0,43,0,0,0,0,2,1,15,463,0,0,95,0,0,0,0,0,26,0,17,0,0,2,0,375,0,1,0,0,19158,0,0,0,0,7,0,12,0,0,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,3,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,22,0,0,0,0,0,0,362,0,258,0,0,0,8,9,149,1633,369,0,0,0,0,1,0,0,0,0,0,0,0,0,1375,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,8,182,592,16,0,0,1180,0,666,0,0,0,899,30,0,0,0,0,0,0,0,0,0,295,1,0,0,0,2,0,0,0,0,1,220,718,0,0,0,0,0,0,0,0,225,0,0,317,0,0,1,0,0,0,0,0,20,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,122,1,1,1,0,15,0,0,0,0,1,220,575,0,11,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1072,161,1 +5,0,0,7,0,53,82,0,33,2,81,0,0,7,13,1,74,0,7,3,0,0,0,8,0,11,3,0,24,0,10,0,0,0,12,1134,53,6,0,0,75,0,0,0,1,0,0,3,0,0,0,0,10,1518,0,0,0,0,0,1,0,0,0,0,0,12,0,0,35452,53,522,0,30,0,0,0,0,0,171,0,0,0,0,0,10,291,6953,0,0,12,0,0,0,0,0,1004,25,4,0,0,2,0,298,0,9,811,0,5378,0,0,0,0,3,0,2,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,12,12,12,0,0,0,1278,0,126,0,0,0,30,33,621,3446,1259,0,0,0,0,1,0,4,0,0,0,0,0,0,1223,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,108,27,346,7,0,0,460,0,369,0,0,0,299,15,0,0,0,0,0,0,0,0,0,298,1,0,0,0,11,0,0,0,0,6,156,80,0,0,744,0,0,0,0,0,3975,1,0,858,82,0,1,1,0,0,0,0,10,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,82,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,77,0,0,0,8,1,65,339,0,34,14,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2889,71,1 +4,0,0,9,0,41,4,0,12,2,13,0,0,2,17,1,75,0,7,4,0,0,0,4,0,8,9,0,13,0,25,0,0,0,12,0,41,6,0,0,112,0,0,0,1,0,0,1,0,0,0,0,25,92,0,0,0,0,0,1,0,0,0,0,0,9,0,0,896,41,159,0,36,0,0,0,0,0,4,0,0,0,0,0,7,13,65,0,0,12,0,0,0,0,0,166,5,0,0,0,2,0,175,0,5,0,0,795,0,0,0,0,34,0,1,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,10,10,10,0,0,0,62,0,62,0,0,0,48,51,215,216,57,0,0,0,0,1,0,3,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,34,81,158,11,0,0,145,0,283,0,0,0,60,13,0,0,0,0,0,0,0,0,0,131,1,0,0,0,8,0,0,0,0,22,123,23,0,0,0,0,0,0,0,0,488,0,0,34,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,2,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,57,0,0,0,20,13,53,104,0,47,8,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,237,1 +2,0,0,3,0,14,2,0,3,0,3,0,0,0,3,0,9,0,7,2,0,0,0,0,0,0,0,0,1,0,2,0,0,0,5,0,14,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,1,0,0,0,0,0,3,0,0,50,14,21,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,5,0,0,0,0,0,10,0,0,0,0,2,0,10,0,1,0,0,139,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,17,0,21,0,0,0,2,4,29,11,23,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,51,3,0,0,50,0,117,0,0,0,17,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,2,96,1,0,0,0,0,0,0,0,0,18,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,19,5,0,3,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,7,1 +0,0,0,2,0,9,2,0,14,0,2,0,0,0,2,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,9,35,0,1,0,0,0,0,0,4,0,0,0,0,0,2,4,28,0,0,0,0,0,0,0,0,9,0,2,0,0,2,0,13,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0,33,0,30,0,0,0,0,3,26,5,47,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,90,0,99,0,0,0,30,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,3,0,0,0,0,0,93,21,0,0,0,0,0,0,0,0,28,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,9,88,0,1,0,0,0,1,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,13,1 +6,0,0,2,2,19,5,2,41,0,4,0,0,0,2,0,33,0,8,5,0,4,0,1,0,0,0,0,6,0,1,0,0,2,5,0,21,6,0,0,13,0,0,0,1,0,0,7,1,0,0,0,0,175,0,0,0,0,0,1,2,0,0,1,0,1,0,0,4692,19,245,0,7,0,0,0,0,0,37,6,0,0,0,0,1,9,152,0,2,5,2,0,0,0,0,28,0,14,0,0,2,2,38,0,0,0,0,425,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,269,0,146,0,0,0,0,3,46,405470,168,0,0,0,0,1,0,0,0,0,0,0,0,0,1094,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,8,3,241,4,0,0,306,0,1047,0,0,0,162,15,0,0,0,0,0,0,2,0,0,93,1,0,7,0,10,0,0,0,0,1,111,99,0,0,0,0,0,0,0,0,93,0,0,103,0,0,1,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,6,0,0,0,0,17,26,375,0,7,0,0,0,0,0,0,48,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,6,328,476,1 +4,0,0,4,6,29,3,6,93,2,10,0,0,0,11,1,63,0,7,13,0,12,0,1,0,0,0,0,5,0,11,0,0,6,12,0,35,6,0,0,62,0,0,0,1,0,0,5,0,0,0,0,10,132,0,0,0,0,0,1,6,0,0,0,0,11,0,0,1176,29,548,0,16,0,0,0,0,0,22,18,0,0,0,0,1,8,147,0,6,12,6,0,0,0,0,54,0,8,0,0,2,6,84,0,9,0,0,474,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,154,0,106,0,0,0,20,19,73,58,165,0,0,0,0,1,0,0,0,0,0,0,0,0,451,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,14,367,10,0,0,401,0,374,0,0,0,160,13,0,0,0,0,0,0,0,0,0,188,1,0,0,0,26,0,0,0,0,7,115,58,0,0,0,0,0,0,0,0,138,0,0,136,0,0,1,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,25,0,0,0,8,49,47,322,0,16,0,0,0,0,0,0,100,6,0,0,0,0,0,0,0,0,0,0,0,6,0,1,2,0,0,0,0,0,0,0,0,0,0,0,12,0,3,264,65,1 +1,0,0,8,0,45,16,0,45,0,10,0,0,2,5,1,29,0,7,3,0,0,0,5,9,9,0,0,15,0,3,0,0,0,10,0,45,6,8,0,67,0,0,0,1,0,0,12,1,0,0,0,13,177,0,0,0,0,0,1,0,0,0,5,0,7,0,0,35408,45,202,0,17,0,0,0,0,0,53,0,0,0,0,1,7,31,7037,0,0,10,0,0,0,14,0,270,20,22,2,0,2,0,132,0,2,0,0,1044,0,0,0,0,3,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,4280,0,171,0,0,0,24,34,215,169,4243,0,0,0,0,1,0,4,0,0,0,0,0,0,9017,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,1,0,32,23,252,9,0,0,361,0,476,0,0,0,217,30,0,0,0,0,0,0,0,0,0,115,1,0,3,0,17,0,0,0,0,3,131,179,0,0,35,0,0,0,0,0,1606,0,0,9407,3,0,1,1,0,0,0,0,27,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,28,0,0,0,0,1,55,623,0,18,9,0,0,0,0,0,236,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3223,239,1 +2,0,0,10,0,43,9,0,44,2,10,0,0,6,13,1,655,0,7,1,0,0,0,9,0,11,0,0,11,0,7,0,0,0,7,2229,43,6,0,0,75,0,2,0,1,0,0,2,0,0,0,0,7,331,0,0,0,0,0,1,0,0,0,0,0,11,0,0,13770,43,758,0,14,0,0,0,0,0,18,0,0,0,0,0,9,32,3013,0,0,7,0,0,0,0,0,236,20,2,0,0,2,0,741,0,6,10,0,1972,0,0,0,0,12,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,12,12,12,0,0,0,1051,0,59,0,0,0,14,16,280,873,1031,0,0,0,0,1,0,3,0,0,0,0,0,0,602,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,84,37,254,12,0,0,273,0,356,0,0,0,113,5,0,0,0,0,0,0,7,0,0,745,1,0,0,0,10,0,0,0,0,7,136,23,0,0,15,0,0,0,0,0,2284,1,0,1026,9,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,9,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,25,0,0,0,8,1,50,120,0,15,14,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1036,96,1 +6,0,0,8,0,41,7,0,32,5,6,0,0,2,16,1,34,0,7,2,0,0,0,7,0,8,9,0,9,0,6,0,0,0,12,0,41,6,0,0,84,0,3,0,1,0,0,3,0,0,0,0,6,114,0,0,0,0,0,1,0,0,0,11,0,16,0,0,2073,41,122,0,13,0,0,0,0,0,15,0,0,0,0,0,8,18,657,0,0,12,0,0,0,0,0,107,5,4,0,0,2,0,139,0,11,0,0,994,0,0,0,0,26,0,1,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,140,0,69,0,0,0,10,22,211,59,142,0,0,0,0,1,0,3,0,0,0,0,0,0,446,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,35,235,10,0,0,205,0,397,0,0,0,89,25,0,0,0,0,0,0,0,0,0,105,1,0,0,0,9,0,0,0,0,6,137,23,0,0,0,0,0,0,0,0,948,0,0,805,3,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,3,369,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,20,0,0,0,0,1,53,120,0,23,9,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,3,406,146,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,66,0,0,0,0,0,1,0,0,0,0,0,2,0,0,420,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,55,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,238,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,63,0,56,0,0,0,4,10,32,174,72,0,0,0,0,1,0,0,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,107,3,0,0,114,0,192,0,0,0,40,10,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,59,0,0,54,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,123,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,111,22,1 +18,0,0,7,2,41,14,2,75,1,19,0,0,2,5,0,47,0,7,8,0,4,0,5,0,8,8,0,11,0,7,0,0,2,8,0,43,38,0,0,79,0,0,0,1,0,0,2,0,0,0,0,7,109,0,0,0,0,0,1,2,0,0,9,0,10,0,0,978,41,302,0,17,0,0,0,0,0,16,6,0,0,0,0,8,15,97,0,2,8,2,0,2,31,0,373,60,1,0,0,2,2,238,0,3,0,0,762,0,0,0,0,5,4,3,0,0,0,0,1,0,0,0,2,0,0,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,10,10,10,10,0,0,0,93,0,80,0,0,0,12,21,211,243,97,0,0,0,0,1,0,7,0,0,0,0,0,0,455,0,0,0,0,0,0,0,0,0,3,0,0,2,1,0,0,0,0,0,1,0,37,15,258,10,0,0,315,0,452,0,0,0,133,19,0,0,0,0,0,0,0,0,0,169,1,0,0,0,17,0,0,0,0,7,125,136,0,0,130,0,0,0,0,0,174,0,0,29,2,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,22,0,0,0,12,17,51,209,0,26,8,0,0,0,0,0,100,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,4,0,1,205,198,1 +18,0,0,4,0,38,3,0,15,5,3,0,0,0,13,0,17,0,6,1,0,0,0,2,0,0,0,0,5,0,2,0,0,0,19,0,38,6,0,0,58,0,0,0,1,0,0,4,1,0,0,0,1,75,0,0,0,0,0,1,0,0,0,15,0,14,0,0,5769,38,71,0,7,0,0,0,0,0,14,0,0,0,0,0,2,9,1626,0,0,19,0,0,0,0,0,20,0,8,1,1,2,0,40,0,10,0,0,483,0,0,0,0,6,4,0,0,2,0,0,1,0,0,0,5,0,0,0,0,0,0,0,4,0,0,0,6,0,0,3,9,0,3,0,9,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,2,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,885,0,82,0,0,0,2,5,67,36,898,0,0,0,0,1,0,0,0,0,0,0,0,0,1850,0,0,0,0,0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,0,0,8,15,183,4,0,0,199,0,1934,0,0,0,105,20,0,0,0,1,0,0,2,0,0,57,1,0,3,0,3,0,0,0,0,2,124,29,0,0,0,0,0,0,0,0,356,0,0,1260,0,0,1,0,0,0,0,0,11,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,7,0,0,0,0,1,57,154,0,7,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,753,91,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,80,0,0,0,0,0,1,0,0,0,0,0,2,0,0,627,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,44,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,276,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,60,0,59,0,0,0,4,10,36,174,69,0,0,0,0,1,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,116,3,0,0,117,0,245,0,0,0,40,8,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,53,0,0,38,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,129,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,106,23,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,67,0,0,0,0,0,1,0,0,0,0,0,2,0,0,393,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,51,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,251,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,62,0,56,0,0,0,4,10,32,174,71,0,0,0,0,1,0,0,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,109,3,0,0,114,0,187,0,0,0,40,7,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,57,0,0,50,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,116,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,107,21,1 +3,0,0,4,2,25,9,2,43,1,6,0,0,0,9,1,32,0,7,5,0,4,0,1,0,0,0,0,4,0,7,0,0,2,10,0,27,6,0,0,37,0,0,0,1,0,0,4,0,0,0,0,6,136,0,0,0,0,0,1,2,0,0,0,0,9,0,0,656,25,242,0,11,0,0,0,0,0,24,6,0,0,0,0,1,6,118,0,2,10,2,0,0,0,0,28,0,7,0,0,2,2,63,0,7,0,0,367,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,128,0,109,0,0,0,12,11,52,32,134,0,0,0,0,1,0,0,0,0,0,0,0,0,403,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,12,223,6,0,0,234,0,316,0,0,0,92,16,0,0,0,0,0,0,0,0,0,107,1,0,0,0,10,0,0,0,0,3,111,27,0,0,0,0,0,0,0,0,95,0,0,98,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,16,0,0,0,8,17,37,358,0,11,0,0,0,0,0,0,64,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,4,0,3,243,55,1 +10,0,0,5,2,27,3,2,39,2,6,0,0,0,6,1,34,0,7,5,0,4,0,1,0,0,3,0,6,0,1,0,0,2,10,0,29,6,1747,0,32,0,0,0,1,0,0,1,0,0,0,0,0,93,0,0,0,0,0,1,2,0,0,1,0,7,0,0,13343,27,193,0,10,0,0,0,0,0,6,6,0,0,0,0,1,3,413,0,2,10,2,0,0,0,0,17,0,1,0,0,2,2,41,0,4,0,0,1224,0,0,0,0,392,0,2,0,3,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,246,0,50,0,0,0,0,6,50,24,257,0,0,0,0,1,0,0,0,0,0,0,0,0,1568,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,7,253,8,0,0,270,0,379,0,0,0,133,1772,0,0,0,0,0,0,4,0,0,96,1,0,0,0,10,0,0,0,0,1,110,76,0,0,0,0,0,0,0,0,191,0,0,396,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,9,0,0,0,0,17,39,257,0,10,0,0,0,0,0,0,47,2,0,0,0,0,0,0,0,0,0,0,0,2,0,3,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,573,85,1 +0,0,0,5,0,13,2,0,25,0,3,0,0,0,5,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,13,6,0,0,14,0,0,0,1,0,0,4,0,0,0,0,0,78,0,0,0,0,0,1,0,0,0,0,0,4,0,0,794,13,67,0,1,0,0,0,0,0,14,0,0,0,0,1,1,9,141,0,0,3,0,0,0,0,0,10,0,7,0,0,2,0,28,0,2,0,0,371,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,123,0,52,0,0,0,0,3,29,7,129,0,0,0,0,1,0,0,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,8,5,102,6,0,0,154,0,211,0,0,0,86,9,0,0,0,0,0,0,5,0,0,55,1,0,0,0,2,0,0,0,0,0,102,52,0,0,0,0,0,0,0,0,63,0,0,157,0,0,1,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,16,259,0,1,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,193,21,1 +9,0,0,10,2,51,55,2,90,7,19,0,0,0,26,0,121,0,10,1,0,0,0,2,0,0,0,0,6,0,1,0,0,2,36,0,53,120,0,0,158,0,0,0,1,0,0,7,0,0,0,0,0,240,0,0,0,0,0,1,0,0,0,0,0,22,0,0,3973,51,295,0,7,0,0,0,0,0,31,0,0,0,1,0,2,10,881,0,2,36,2,0,5,24,0,315,45,13,0,0,6,2,199,0,18,0,0,1094,0,0,0,0,31,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,5,0,6,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,577,0,121,0,0,0,0,3,82,1333,606,0,0,0,0,1,0,0,0,0,0,0,0,0,1327,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,216,78,536,14,0,0,650,0,956,0,2,0,332,14,0,0,0,0,0,0,0,0,0,321,1,0,0,0,3,0,0,0,0,1,198,126,0,0,87,0,3,0,0,0,595,0,0,231,0,0,1,0,0,0,0,0,18,0,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,49,1,1,1,0,6,0,0,0,0,17,89,621,0,7,0,0,0,0,0,0,231,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,13,0,0,0,0,0,0,0,0,0,0,0,2,0,6,773,208,1 +0,0,0,3,0,25,4,0,11,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,1,0,1,0,0,0,1,0,25,6,0,0,20,0,0,0,1,0,0,1,0,0,0,0,1,78,0,0,0,0,0,1,0,0,0,0,0,2,0,0,514,25,34,0,1,0,0,0,0,0,6,0,0,0,0,0,7,13,99,0,0,1,0,0,0,0,0,71,5,1,0,0,2,0,19,0,0,0,0,431,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,57,0,53,0,0,0,0,3,177,11,62,0,0,0,0,1,0,3,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,107,3,0,0,110,0,166,0,0,0,20,4,0,0,0,0,0,0,0,0,0,44,1,0,0,0,8,0,0,0,0,0,108,9,0,0,0,0,0,0,0,0,76,0,0,8,2,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,156,27,1 +33,0,0,0,0,23,5,0,21,6,2,0,0,0,8,0,24,0,6,1,0,0,0,2,0,15,0,0,16,0,2,0,0,0,12,0,23,6,0,0,75,0,0,0,1,0,0,1,0,0,0,0,16,62,0,0,0,0,0,1,0,0,0,15,0,7,0,0,700,23,100,0,33,0,0,0,0,0,9,0,0,0,0,0,2,4,89,0,0,12,0,0,0,5,0,96,0,3,0,0,2,0,103,0,5,0,0,312,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,47,0,0,0,17,19,42,119,109,0,0,0,0,1,0,0,0,0,0,0,0,0,503,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,10,144,0,0,0,149,0,180,0,0,0,80,17,0,0,0,0,0,0,0,0,0,66,1,0,0,0,3,0,0,0,0,16,109,42,0,0,0,0,0,0,0,0,164,0,0,121,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,18,0,0,0,0,1,35,108,0,33,0,0,0,0,0,0,89,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,130,155,1 +8,0,0,4,0,46,6,0,36,8,3,0,0,2,13,0,566,0,6,3,0,0,0,6,0,10,0,0,8,0,5,0,0,0,9,898,46,6,0,0,64,0,0,0,1,0,0,4,0,0,0,0,5,195,0,0,0,0,0,1,0,0,0,0,0,14,0,0,19688,46,654,0,10,0,0,0,0,0,22,0,0,0,0,0,8,21,3452,0,0,9,0,0,0,0,0,112,5,7,1,0,2,0,612,0,11,0,0,1441,0,0,0,0,16,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,10,0,6,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,12,12,12,0,0,0,2793,0,75,0,0,0,8,11,244,348,2777,0,0,0,0,1,0,3,0,0,0,0,0,0,432,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,246,4,0,0,263,0,349,0,0,0,95,11,0,0,0,0,0,0,0,0,0,632,1,0,0,0,9,0,0,0,0,5,129,27,0,0,0,0,0,0,0,0,1571,1,0,113,6,0,1,1,0,0,0,0,8,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,13,0,0,0,0,1,55,155,0,11,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,502,46,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,17,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,16,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,36,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,4,1 +1,0,0,11,1,42,40,1,100,1,12,0,0,6,9,0,810,0,8,2,0,0,0,9,0,11,0,0,5,0,1,0,0,1,8,1130,43,54,0,0,107,0,1,0,1,0,0,4,1,0,0,0,1,210,0,0,0,0,0,1,0,0,0,0,0,5,0,0,23709,42,970,0,2,0,0,0,0,0,27,0,0,0,0,0,10,28,5080,0,1,8,1,0,1,17,0,379,35,11,0,0,4,1,914,0,2,1,0,3407,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,12,12,12,0,0,0,1103,0,101,0,0,0,0,3,269,1338,1085,0,0,0,0,1,0,3,0,0,0,0,0,0,1755,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,188,32,424,14,0,0,422,0,677,0,1,0,151,11,0,0,0,0,0,0,0,0,0,985,1,0,5,0,11,0,0,0,0,0,141,71,0,0,40,0,0,0,0,0,4146,1,0,1657,8,0,1,1,1,0,0,0,17,0,1,0,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,45,1,1,1,0,1,0,0,0,0,9,51,229,0,3,14,0,0,0,0,0,161,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,1,0,3,2442,91,1 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,1,0,0,45,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,17,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,40,2,0,0,37,0,41,0,0,0,7,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,91,5,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,8,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,8,1 +2,0,0,4,0,23,3,0,16,2,4,0,0,0,9,1,15,0,7,1,0,0,0,1,0,0,0,0,4,0,10,0,0,0,12,0,23,6,0,0,40,0,0,0,1,0,0,1,0,0,0,0,9,76,0,0,0,0,0,1,0,0,0,0,0,9,0,0,341,23,62,0,14,0,0,0,0,0,6,0,0,0,0,0,1,3,43,0,0,12,0,0,0,0,0,31,0,2,0,0,2,0,46,0,7,0,0,312,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,51,0,41,0,0,0,18,16,49,35,57,0,0,0,0,1,0,0,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,12,135,4,0,0,151,0,234,0,0,0,82,9,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,6,109,35,0,0,0,0,0,0,0,0,50,0,0,33,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,22,0,0,0,8,1,35,186,0,14,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,86,19,1 +2,0,0,4,0,24,3,0,457,2,173,0,0,0,11,1,16,0,7,1,0,0,0,1,0,2,0,0,11,0,17,0,0,0,10,0,24,6,0,0,735,0,0,0,1,0,0,7,0,0,0,0,18,135,0,0,0,0,0,1,0,0,0,0,0,11,0,0,1694,24,729,0,30,0,0,0,0,0,29,0,0,0,0,2,1,11,174,0,0,10,0,0,0,427,0,3419,420,11,0,0,2,0,1967,0,9,0,0,428,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,175,0,85,0,0,0,36,31,59,2485,174,0,0,0,0,1,0,0,0,0,0,0,0,0,503,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,8,14,181,4,0,0,198,0,331,0,0,0,117,18,0,0,0,0,0,0,0,0,0,668,1,0,0,0,2,0,0,0,0,15,113,1260,0,0,1428,0,0,0,0,0,133,0,0,202,0,0,1,0,0,0,0,0,14,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,47,0,0,0,14,1,34,544,0,30,0,0,0,0,0,0,927,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5,249,59,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,73,0,0,0,0,0,1,0,0,0,0,0,2,0,0,599,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,55,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,253,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,65,0,55,0,0,0,4,10,32,174,74,0,0,0,0,1,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,111,3,0,0,114,0,198,0,0,0,40,12,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,60,0,0,62,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,126,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,111,23,1 +2,0,0,5,0,1332,2,0,49,0,8,0,0,0,3,0,74,0,6,2,0,0,0,1,0,1,0,0,5,0,1,0,0,0,1318,0,1332,208,0,0,2707,0,0,0,1,0,0,6,0,0,0,0,1,157,1,0,0,0,0,1,0,0,0,1,0,5,0,0,5032,1332,154,0,7,0,0,0,0,0,24,0,0,0,0,2,2,11,369,0,0,1318,0,0,1,9,0,105,20,8,0,0,2,0,81,0,1,0,0,20986,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,263,0,1411,0,0,0,1,4,1354,169,357,0,0,0,0,1,0,0,0,0,0,0,0,0,3288,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,13,6,4176,5,0,0,4325,0,2117,0,0,0,4242,24,0,0,0,0,0,0,4,0,0,142,1,0,0,0,3,0,0,0,0,3,1451,190,0,0,37,0,0,0,0,0,280,0,0,377,0,0,1,0,0,0,0,0,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,1330,1,1,1,0,5,0,0,0,0,1,2650,1869,0,7,0,0,1,0,0,0,3105,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,327,220,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,33,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,31,0,0,0,0,3,21,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,36,0,48,0,0,0,6,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,5,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,4,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,4,1 +2,0,0,4,0,19,5,0,12,1,4,0,0,0,8,1,16,0,7,1,0,0,0,1,0,0,0,0,2,0,7,0,0,0,6,0,19,6,0,0,25,0,0,0,1,0,0,1,1,0,0,0,6,25,0,0,0,0,0,1,0,0,0,0,0,8,0,0,202,19,58,0,9,0,0,0,0,0,9,0,0,0,0,0,1,3,34,0,0,6,0,0,0,0,0,17,0,4,0,0,2,0,35,0,6,0,0,245,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,42,0,0,0,12,10,41,18,48,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,11,108,4,0,0,114,0,187,0,0,0,44,4,0,0,0,0,0,0,0,0,0,53,1,0,2,0,2,0,0,0,0,3,105,11,0,0,0,0,0,0,0,0,37,0,0,22,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,14,0,0,0,8,1,25,26,0,9,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,15,1 +3,0,0,6,0,42,91,0,34,0,90,0,0,7,5,0,70,0,6,2,0,0,0,8,0,11,3,0,19,0,2,0,0,0,6,1594,42,6,0,0,47,0,0,0,1,0,0,2,0,0,0,0,2,1616,0,0,0,0,0,1,0,0,0,0,0,4,0,0,36514,42,535,0,16,0,0,0,0,0,186,0,0,0,0,0,9,325,7153,0,0,6,0,0,0,0,0,1015,25,3,0,0,2,0,280,0,1,793,0,5119,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,1277,0,74,0,0,0,14,21,633,3703,1262,0,0,0,0,1,0,4,0,0,0,0,0,0,825,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,108,17,257,6,0,0,432,0,299,0,0,0,283,11,0,0,0,0,0,0,0,0,0,303,1,0,0,0,10,0,0,0,0,2,144,66,0,0,780,0,0,0,0,0,3954,1,0,673,92,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,92,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,56,0,0,0,0,1,48,347,0,21,14,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2703,114,1 +0,0,0,3,0,10,3,0,17,0,7,0,0,0,2,0,12,0,7,2,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,10,6,0,0,17,0,0,0,0,0,0,0,0,0,0,0,1,69,0,0,0,0,0,1,0,0,0,0,0,3,0,0,65,10,41,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,1,10,0,98,20,0,0,0,2,0,54,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,19,0,20,0,0,0,2,4,24,70,26,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,55,3,0,0,53,0,1672,0,0,0,5,1,0,0,0,0,0,0,0,0,0,48,0,0,0,0,2,0,0,0,0,2,96,18,0,0,36,0,0,0,0,0,21,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,10,0,0,2,0,0,0,0,0,0,33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,13,1 +10,0,0,6,4,59,8,4,58,10,8,0,0,2,22,1,51,0,7,11,0,8,0,6,0,9,0,0,14,0,10,0,0,4,27,0,63,6,0,0,107,0,0,0,1,0,0,2,0,0,0,0,11,200,0,0,0,0,0,1,4,0,0,15,0,24,0,0,1161,59,482,0,23,0,0,0,0,0,12,12,0,0,0,0,8,16,152,0,4,27,4,0,0,0,0,122,5,3,0,0,2,4,115,0,20,0,0,1036,0,0,0,0,9,0,2,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,8,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,9,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,10,10,10,0,0,0,123,0,98,0,0,0,20,16,231,75,129,0,0,0,0,1,0,3,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,34,398,10,0,0,411,0,441,0,0,0,185,13,0,0,0,0,0,0,0,0,0,157,1,0,0,0,25,0,0,0,0,7,149,55,0,0,0,0,0,0,0,0,173,0,0,46,3,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,65,1,1,1,0,32,0,0,0,8,33,90,405,0,24,9,0,0,0,0,0,101,4,0,0,0,0,0,0,0,0,0,0,0,5,0,1,12,0,0,0,0,0,0,0,0,0,0,0,8,0,2,239,89,1 +7,0,0,7,4,25,62,10,128,5,21,0,0,0,13,0,124,0,10,6,0,2,1,3,0,0,0,0,3,0,3,0,0,4,14,0,29,102,6,0,152,0,0,0,1,0,0,2,0,0,0,0,2,121,0,0,0,0,0,1,0,0,0,6,0,15,0,0,607,25,392,0,6,0,0,0,0,0,5,6,0,0,1,0,3,6,66,0,10,14,4,0,2,48,0,469,15,1,0,0,6,4,302,0,9,0,0,379,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,70,0,59,0,0,0,4,7,57,363,104,0,0,0,0,1,0,0,0,0,0,0,0,0,426,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,216,54,466,11,0,0,510,0,529,0,2,0,176,16,0,0,0,0,0,0,0,0,0,358,1,0,0,0,12,0,0,0,0,3,142,148,0,0,33,0,0,0,0,0,805,0,0,23,0,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,24,1,1,1,0,7,0,0,0,0,33,43,162,0,6,0,0,0,0,0,0,193,3,0,0,0,0,0,0,0,0,0,0,0,4,0,1,7,0,0,0,0,0,0,0,0,0,0,0,5,0,2,204,56,1 +2,0,0,12,1,55,50,1,134,5,21,0,0,6,16,1,1628,0,9,2,0,0,0,9,0,11,3,0,12,0,5,0,0,1,11,897,56,103,0,0,146,0,6,0,1,0,0,6,0,0,0,0,5,302,0,0,0,0,0,1,0,0,0,0,0,20,0,0,50137,55,1862,0,13,0,0,0,0,0,45,0,0,0,0,0,10,40,12219,0,1,11,1,0,2,30,0,509,40,10,0,0,4,1,1864,0,8,1,0,5573,0,0,0,0,14,0,4,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,19,1,0,0,0,0,0,0,0,0,6,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,76,12,12,12,0,0,0,2670,0,129,0,0,0,12,17,345,720,2640,0,0,0,0,1,0,6,0,0,0,0,0,0,756,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,198,55,482,15,0,0,566,0,970,0,1,0,248,16,0,0,0,0,0,0,0,0,0,1865,1,0,0,0,11,0,0,0,0,5,165,183,0,0,50,0,0,0,0,0,8231,1,0,931,10,0,1,1,1,0,0,0,13,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,10,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,65,1,1,1,0,27,0,0,0,0,9,67,317,0,17,14,0,0,0,0,0,188,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,6,5049,90,1 +0,0,0,8,0,27,68,0,213,32,48,0,0,0,57,0,49,0,6,3,0,0,0,1,0,0,6,0,15,0,11,1,0,0,6,0,27,19,4,0,663,0,0,0,1,0,0,28,0,0,0,0,13,424,0,0,0,0,0,1,0,0,0,0,0,55,0,0,38155,27,678,0,27,0,0,0,0,1,130,0,0,0,0,0,1,31,17367,0,0,6,0,0,3,187,0,1549,130,55,0,0,2,0,1099,0,33,0,0,1314,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,38,0,3,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,28,0,0,0,0,0,0,13165,0,298,0,0,0,26,50,55,1195,13143,0,0,0,0,1,0,0,0,0,0,0,0,0,2604,0,0,0,0,0,0,0,0,0,0,0,0,28,0,31,0,0,0,0,0,0,8,45,250,9,0,0,780,0,1509,0,0,0,678,32,0,0,0,0,0,0,8,0,0,441,1,0,0,0,4,0,0,0,0,12,129,902,0,0,351,0,0,0,0,0,1479,0,0,1796,0,0,1,0,0,0,0,0,71,0,0,0,1,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,109,0,0,0,6,1,33,2415,0,33,0,0,0,0,0,0,559,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,38,0,0,0,0,0,0,0,0,0,0,0,0,0,19,1342,112,1 +4,0,0,3,0,25,13,0,68,0,18,0,0,0,3,0,18,0,6,2,0,0,0,1,0,0,0,0,1,0,1,0,0,0,13,0,25,34,0,0,129,0,0,0,1,0,0,2,0,0,0,0,0,106,0,0,0,0,0,1,0,0,0,3,0,2,0,0,839,25,126,0,2,0,0,0,0,0,9,0,0,0,0,0,2,5,53,0,0,13,0,0,1,49,0,411,20,3,0,0,2,0,282,0,0,0,0,528,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,5,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,2,0,0,0,0,0,0,70,0,73,0,0,0,0,3,45,406,76,0,0,0,0,1,0,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,13,3,152,3,0,0,205,0,236,0,0,0,133,15,0,0,0,0,0,0,0,0,0,126,1,0,0,0,3,0,0,0,0,1,112,234,0,0,41,0,0,0,0,0,77,0,0,37,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,1,0,0,0,0,1,38,305,0,2,0,0,0,0,0,0,149,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,175,61,1 +2,0,0,0,0,28,4,0,10,0,2,0,1,0,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,3,0,28,6,0,0,33,0,0,0,1,0,0,0,0,0,0,0,1,77,0,0,0,0,0,1,0,0,0,0,0,1,0,0,712,28,29,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,55,0,0,3,0,0,0,4,0,98,0,0,0,0,2,0,43,0,0,0,0,528,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,10,10,0,0,0,37,0,29,0,0,0,0,3,180,322,43,0,0,0,0,1,0,3,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,17,10,87,0,0,0,97,0,206,0,0,0,25,3,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,110,25,0,0,0,0,0,0,0,0,54,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,0,0,0,0,0,1,31,39,0,2,8,0,0,0,0,0,37,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,26,1 +4,0,0,4,2,24,6,8,17,0,5,0,0,0,8,0,18,0,7,7,0,2,1,1,0,0,0,0,1,0,2,0,0,2,13,0,26,6,26,0,36,0,0,0,1,0,0,0,0,0,0,0,1,32,0,0,0,0,0,1,0,0,0,8,0,9,0,0,131,24,161,0,3,0,0,0,0,0,0,6,0,0,0,0,2,2,7,0,8,13,2,0,0,0,0,16,0,0,0,0,2,2,31,0,5,0,0,330,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,22,0,34,0,0,0,2,5,48,16,34,0,0,0,0,1,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,144,6,0,0,132,0,183,0,0,0,61,14,0,0,0,0,0,0,0,0,0,61,0,0,0,0,11,0,0,0,0,2,109,8,0,0,0,0,0,0,0,0,57,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,3,0,0,0,0,17,39,22,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,44,33,1 +6,0,0,9,1,35,48,1,123,4,36,0,2,0,16,0,71,0,8,1,0,0,0,2,0,0,0,0,6,0,1,0,0,1,24,0,36,88,0,0,217,0,0,0,1,0,0,1,0,0,0,0,0,68,0,0,0,0,0,1,0,0,0,0,0,25,0,0,512,35,264,0,7,0,0,0,0,0,13,0,0,0,0,0,2,4,46,0,1,24,1,0,9,78,0,710,90,1,0,0,8,1,446,0,10,0,0,1056,0,0,0,0,11,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,71,0,83,0,0,0,0,3,69,604,84,0,0,0,0,1,0,0,0,0,0,0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,128,59,341,12,0,0,380,0,533,0,1,0,186,13,0,0,0,0,0,0,0,0,0,304,1,0,0,0,3,0,0,0,0,1,141,210,0,0,174,0,2,0,0,0,179,0,0,20,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,33,1,1,1,0,6,0,0,0,0,9,60,134,0,7,0,0,0,0,0,0,248,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,0,0,0,0,0,0,0,0,0,0,0,1,0,1,156,137,1 +9,0,0,11,0,54,39,0,47,4,48,0,0,7,36,1,791,0,7,1,0,0,0,9,0,12,0,0,37,0,27,0,0,0,15,4190,54,6,0,0,212,0,2,0,1,0,0,2,0,0,0,0,28,356,0,0,0,0,0,1,0,0,0,15,0,16,0,0,24263,54,1086,0,63,0,0,0,0,0,57,0,0,0,0,0,9,138,4400,0,0,15,0,0,0,0,0,522,25,2,0,0,2,0,1040,0,10,140,0,4174,0,0,0,0,41,0,1,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,2,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,4,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,40,12,12,12,0,0,0,1319,0,66,0,0,0,67,68,422,1523,1307,0,0,0,0,1,0,3,0,0,0,0,0,0,1203,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,106,146,334,13,0,0,352,0,423,0,0,0,174,13,0,0,0,0,0,0,0,0,0,976,1,0,0,0,10,0,0,0,0,27,158,8,0,0,170,0,0,0,0,0,3553,1,0,1316,27,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,27,388,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,65,1,1,1,0,129,0,0,0,6,1,69,420,0,64,12,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1646,43,1 +2,0,0,4,0,20,3,0,16,2,4,0,0,0,10,1,15,0,7,1,0,0,0,1,0,1,0,0,4,0,10,0,0,0,7,0,20,6,0,0,36,0,0,0,1,0,0,2,0,0,0,0,9,77,0,0,0,0,0,1,0,0,0,0,0,10,0,0,752,20,72,0,15,0,0,0,0,0,10,0,0,0,0,0,1,4,115,0,0,7,0,0,0,0,0,34,0,3,0,0,2,0,51,0,8,0,0,392,0,0,0,0,3,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,107,0,65,0,0,0,18,17,46,49,108,0,0,0,0,1,0,0,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,15,0,2,0,0,0,0,0,0,8,13,142,4,0,0,155,0,203,0,0,0,79,10,0,0,0,0,0,0,6,0,0,56,1,0,0,0,2,0,0,0,0,6,106,45,0,0,0,0,0,0,0,0,73,0,0,95,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,23,0,0,0,8,1,27,187,0,15,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,2,165,24,1 +3,0,0,7,0,19,3,0,17,6,7,0,0,0,17,1,15,0,7,1,0,0,0,1,0,0,0,0,4,0,7,0,0,0,8,0,19,6,0,0,58,0,3,0,1,0,0,3,0,0,0,0,6,77,0,0,0,0,0,1,0,0,0,0,0,15,0,0,1353,19,82,0,11,0,0,0,0,0,12,0,0,0,0,0,1,6,567,0,0,8,0,0,0,0,0,39,0,3,0,0,2,0,63,0,11,0,0,248,0,0,0,0,23,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,91,0,54,0,0,0,12,14,43,41,95,0,0,0,0,1,0,0,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,30,127,9,0,0,122,0,213,0,0,0,53,6,0,0,0,0,0,0,0,0,0,67,1,0,0,0,2,0,0,0,0,7,105,14,0,0,0,0,0,0,0,0,242,0,0,783,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,16,0,0,0,4,1,27,191,0,11,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,325,70,1 +1,0,0,11,1,43,40,1,99,1,12,0,0,6,9,0,816,0,8,2,0,0,0,9,0,11,0,0,5,0,1,0,0,1,8,1130,44,54,0,0,109,0,1,0,1,0,0,4,1,0,0,0,1,211,0,0,0,0,0,1,0,0,0,0,0,5,0,0,25145,43,976,0,2,0,0,0,0,0,27,0,0,0,0,0,10,28,5320,0,1,8,1,0,1,17,0,379,35,11,0,0,4,1,920,0,2,1,0,3415,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,12,12,12,0,0,0,1503,0,103,0,0,0,0,3,270,1335,1486,0,0,0,0,1,0,3,0,0,0,0,0,0,1657,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,187,29,447,14,0,0,426,0,689,0,1,0,151,11,0,0,0,0,0,0,0,0,0,990,1,0,5,0,11,0,0,0,0,0,142,71,0,0,40,0,0,0,0,0,3952,1,0,1621,8,0,1,1,1,0,0,0,15,0,1,0,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,46,1,1,1,0,1,0,0,0,0,9,52,229,0,3,14,0,0,0,0,0,162,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,1,0,3,2296,88,1 +2,0,0,10,0,45,9,0,45,1,10,0,0,6,12,1,804,0,7,1,0,0,0,9,0,11,0,0,10,0,5,0,0,0,7,2287,45,6,0,0,79,0,2,0,1,0,0,2,0,0,0,0,5,288,0,0,0,0,0,1,0,0,0,0,0,10,0,0,13891,45,903,0,11,0,0,0,0,0,19,0,0,0,0,0,9,32,2928,0,0,7,0,0,0,0,0,228,20,2,0,0,2,0,881,0,5,12,0,2084,0,0,0,0,17,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,44,12,12,12,0,0,0,1076,0,65,0,0,0,10,10,298,919,1051,0,0,0,0,1,0,3,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,36,284,12,0,0,406,0,601,0,0,0,239,20,0,0,0,0,0,0,0,0,0,894,1,0,0,0,10,0,0,0,0,5,141,148,0,0,16,0,0,0,0,0,2512,1,0,777,9,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,9,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,20,0,0,0,0,1,52,571,0,12,14,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,921,93,1 +4,0,0,5,0,31,4,0,17,6,4,0,0,0,16,1,15,0,7,1,0,0,0,2,0,0,0,0,6,0,10,0,0,0,18,0,31,6,0,0,65,0,0,0,1,0,0,2,0,0,0,0,9,73,0,0,0,0,0,1,0,0,0,8,0,17,0,0,703,31,75,0,16,0,0,0,0,0,10,0,0,0,0,0,2,5,70,0,0,18,0,0,0,0,0,44,0,4,0,0,2,0,64,0,14,0,0,505,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,78,0,59,0,0,0,18,17,58,51,84,0,0,0,0,1,0,0,0,0,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,21,177,5,0,0,201,0,261,0,0,0,122,10,0,0,0,0,0,0,0,0,0,64,1,0,0,0,3,0,0,0,0,8,121,53,0,0,0,0,0,0,0,0,65,0,0,90,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,24,0,0,0,2,1,49,240,0,16,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,131,47,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,21,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,20,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,37,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,4,1 +3,0,0,7,0,36,6,0,38,1,6,0,0,2,4,0,486,0,6,2,0,0,0,7,0,10,3,0,5,0,1,1,0,0,5,762,36,8,0,0,27,0,0,0,1,0,0,2,0,0,0,0,2,186,0,0,0,0,0,1,0,0,0,1,0,4,0,0,5182,36,548,0,4,0,0,0,0,0,15,0,0,0,0,0,8,18,973,0,0,5,0,0,0,0,0,89,5,4,0,0,2,0,514,0,1,0,0,1238,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,415,0,47,0,0,0,2,7,242,328,385,0,0,0,0,1,0,4,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,16,183,7,0,0,213,0,313,0,0,0,66,14,0,0,0,0,0,0,0,0,0,548,1,0,0,0,9,0,0,0,0,1,119,22,0,0,1,0,0,0,0,0,1332,1,0,50,6,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,41,105,0,8,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,411,43,1 +5,0,0,10,0,56,9,0,45,8,11,0,0,6,25,2,845,0,7,2,0,0,0,8,0,14,0,0,14,0,9,0,0,0,19,2315,56,6,0,0,121,0,0,0,1,0,0,3,0,0,0,0,12,480,0,0,0,0,0,1,0,0,0,0,0,22,0,0,11914,56,978,0,22,0,0,0,0,0,24,0,0,0,0,0,9,37,2060,0,0,19,0,0,0,0,0,246,20,6,0,0,2,0,869,0,17,16,0,2365,0,0,0,0,15,0,1,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,42,12,12,12,0,0,0,810,0,125,0,0,0,21,22,327,1486,767,0,0,0,0,1,0,3,0,0,0,0,0,0,504,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,86,52,331,12,0,0,425,0,571,0,0,0,238,28,0,0,0,0,0,0,0,0,0,950,1,0,0,0,10,0,0,0,0,8,152,128,0,0,18,0,0,0,0,0,2524,1,0,193,10,0,1,1,0,0,0,0,4,0,0,0,1,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,38,38,0,0,3,0,0,0,0,0,10,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,66,1,1,1,0,32,0,0,0,8,25,75,1056,0,23,14,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,810,567,1 +0,0,0,2,0,8,2,0,5,0,2,0,0,0,2,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,23,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,38,2,0,0,41,0,63,0,0,0,5,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,10,1 +4,0,0,5,0,31,4,0,17,6,4,0,0,0,16,1,15,0,7,1,0,0,0,2,0,0,0,0,6,0,12,0,0,0,18,0,31,6,0,0,65,0,0,0,1,0,0,3,0,0,0,0,11,74,0,0,0,0,0,1,0,0,0,7,0,17,0,0,672,31,77,0,18,0,0,0,0,0,10,0,0,0,0,0,2,5,68,0,0,18,0,0,0,0,0,44,0,4,0,0,2,0,66,0,14,0,0,401,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,76,0,57,0,0,0,22,19,58,52,82,0,0,0,0,1,0,0,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,21,178,5,0,0,201,0,263,0,0,0,122,11,0,0,0,0,0,0,0,0,0,64,1,0,0,0,3,0,0,0,0,8,121,53,0,0,0,0,0,0,0,0,62,0,0,81,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,28,0,0,0,8,1,49,241,0,18,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,124,48,1 +3,0,0,9,0,28,3,0,17,4,7,0,0,0,15,2,20,0,7,1,0,0,0,1,0,0,3,0,4,0,5,1,0,0,17,0,28,6,0,0,64,0,0,0,1,0,0,3,0,0,0,0,5,88,0,0,0,0,0,1,0,0,0,0,0,14,0,0,8721,28,95,0,10,0,0,0,0,0,14,0,0,0,0,0,1,6,2323,0,0,17,0,0,0,0,0,29,0,6,0,0,2,0,77,0,10,0,0,679,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,1466,0,69,0,0,0,10,15,52,962,1468,0,0,0,0,1,0,0,0,0,0,0,0,0,2763,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0,0,0,0,0,8,25,249,12,0,0,393,0,425,0,0,0,324,22,0,0,0,0,0,0,0,0,0,71,1,0,0,0,2,0,0,0,0,5,188,182,0,0,0,0,1,0,0,0,511,0,0,1904,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,15,0,0,0,0,1,45,775,0,13,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1025,560,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,10,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,27,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,26,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,47,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,5,1 +6,0,0,4,4,33,8,4,50,2,8,0,0,0,10,1,48,0,9,9,0,8,0,1,0,0,0,0,7,0,7,0,0,4,12,2,37,6,0,0,44,0,0,0,1,0,0,2,2,0,0,0,6,117,0,0,0,0,0,1,4,0,0,2,0,10,0,0,1188,33,368,0,14,0,0,0,0,0,15,12,0,0,0,0,1,4,48,0,4,12,4,0,0,0,0,31,0,7,0,0,2,4,59,0,8,0,0,3047,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,73,0,112,0,0,0,12,11,75,43,80,0,0,0,0,1,0,0,0,0,0,0,0,0,934,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,13,359,8,0,0,343,0,384,0,0,0,138,38,0,0,0,0,0,0,0,0,0,134,1,0,5,0,18,0,0,0,0,3,131,47,0,0,0,0,0,0,0,0,93,0,0,31,0,0,1,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,19,0,0,0,8,33,49,215,0,14,0,0,0,0,0,0,55,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,2,0,0,0,0,0,0,0,0,0,0,0,8,0,1,216,77,1 +2,0,0,11,0,52,22,0,57,30,40,0,0,6,13,1,572,0,7,1,0,0,0,9,0,11,0,0,70,0,9,0,0,0,11,4721,52,6,0,0,88,0,5,0,1,0,0,5,0,0,0,0,9,392,0,0,0,0,0,1,0,0,0,0,0,10,0,0,83945,52,810,0,75,0,0,0,0,0,41,0,0,0,0,0,9,153,17537,0,0,11,0,0,0,0,0,484,20,6,0,0,2,0,708,0,5,41,0,9850,0,0,0,0,26,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,89,8,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,12,12,12,0,0,0,6044,0,106,0,0,0,47,50,453,4505,6027,0,0,0,0,1,0,3,0,0,0,0,0,0,840,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,84,216,349,13,0,0,350,0,475,0,0,0,156,15,0,0,0,0,0,0,0,0,0,718,1,0,0,0,10,0,0,0,0,9,151,34,0,0,161,0,0,0,0,0,8335,1,0,1344,9,0,1,1,1,0,0,0,10,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,3,0,0,0,9,369,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,175,0,0,0,8,1,63,251,0,76,14,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,34,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5936,211,1 +0,0,0,0,0,28,4,0,6,0,1,0,1,0,2,0,12,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,3,0,28,6,0,0,23,0,0,0,1,0,0,0,0,0,0,0,1,73,0,0,0,0,0,1,0,0,0,0,0,0,0,0,490,28,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,46,0,0,3,0,0,0,0,0,68,0,0,0,0,2,0,21,0,0,0,0,396,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,37,0,36,0,0,0,0,3,185,8,41,0,0,0,0,1,0,3,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,17,10,93,0,0,0,150,0,173,0,0,0,79,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,8,0,0,0,0,0,112,67,0,0,0,0,0,0,0,0,47,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,0,0,0,0,0,1,31,199,0,2,8,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,25,1 +6,0,0,3,0,17,2,0,22,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,429,17,66,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,56,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,54,0,0,0,0,241,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,65,0,56,0,0,0,4,10,32,174,74,0,0,0,0,1,0,0,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,108,3,0,0,115,0,192,0,0,0,40,7,0,0,0,0,0,0,0,0,0,60,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,64,0,0,59,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,166,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,112,22,1 +2,0,0,4,0,22,3,0,27,2,4,0,0,0,10,1,19,0,7,1,0,0,0,1,0,0,0,0,3,0,10,0,0,0,10,0,22,18,0,0,44,0,0,0,1,0,0,4,0,0,0,0,9,61,0,0,0,0,0,1,0,0,0,0,0,10,0,0,834,22,88,0,13,0,0,0,0,0,14,0,0,0,0,0,1,6,93,0,0,10,0,0,0,0,0,32,0,6,0,0,2,0,47,0,8,0,0,357,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,45,0,0,0,0,0,0,100,0,47,0,0,0,18,15,48,42,105,0,0,0,0,1,0,0,0,0,0,0,0,0,307,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,8,15,143,4,0,0,168,0,257,0,0,0,92,9,0,0,0,0,0,0,0,0,0,71,1,0,0,0,2,0,0,0,0,6,109,43,0,0,0,0,0,0,0,0,79,0,0,142,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,21,0,0,0,8,1,32,245,0,13,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,131,19,1 +1,0,0,6,0,45,8,0,31,4,6,0,0,6,9,0,74,0,6,3,0,0,0,8,0,10,3,0,6,0,1,1,0,0,7,4939,45,6,0,0,54,0,0,0,1,0,0,3,0,0,0,0,2,395,0,0,0,0,0,1,0,0,0,4,0,8,0,0,11290,45,156,0,5,0,0,0,0,0,25,0,0,0,0,0,10,26,2076,0,0,7,0,0,0,0,0,207,20,8,0,0,2,0,146,0,5,15,0,1553,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,1,0,8,12,12,12,0,0,0,1118,0,62,0,0,0,3,11,278,1140,1100,0,0,0,0,1,0,5,0,0,0,0,0,0,1069,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,93,21,274,6,0,0,353,0,385,0,0,0,182,12,0,0,0,0,0,0,0,0,0,140,1,0,0,0,11,0,0,0,0,2,143,83,0,0,13,0,6,0,0,0,927,1,0,183,6,0,1,1,1,0,0,0,10,0,0,0,0,0,0,0,0,0,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,12,0,0,0,0,1,52,383,0,9,12,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,705,39,1 +9,0,0,9,0,49,17,0,22,2,18,0,0,2,14,1,20,0,7,3,0,0,0,5,0,8,0,0,9,0,15,0,0,0,21,0,49,34,0,0,170,0,0,0,1,0,0,4,0,0,0,0,15,156,0,0,0,0,0,1,0,0,0,0,0,12,0,0,3505,49,131,0,22,0,0,0,0,0,20,0,0,0,0,0,7,17,625,0,0,21,0,0,0,0,0,337,5,7,0,0,2,0,227,0,7,0,0,1019,0,0,0,0,18,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,2,10,10,10,0,0,0,434,0,110,0,0,0,28,30,210,437,436,0,0,0,0,1,0,3,0,0,0,0,0,0,911,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,37,31,259,11,0,0,290,0,390,0,0,0,178,17,0,0,0,0,0,0,0,0,0,101,1,0,0,0,8,0,0,0,0,14,140,194,0,0,0,0,0,0,0,0,257,0,0,679,3,0,1,1,0,0,0,0,9,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,35,0,0,0,12,1,70,360,0,23,9,0,0,0,0,0,85,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,494,186,1 +2,0,0,7,2,39,53,2,74,5,9,0,0,2,13,0,124,0,10,3,0,0,0,5,0,8,3,0,4,0,2,0,0,2,15,0,41,134,0,0,71,0,0,0,1,0,0,3,0,0,0,0,2,130,0,0,0,0,0,1,0,0,0,0,0,14,0,0,4209,39,219,0,4,0,0,0,0,0,17,0,0,0,0,0,7,17,770,0,2,15,2,0,3,7,0,223,20,5,0,0,6,2,122,0,9,0,0,789,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,2,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,4,10,10,10,0,0,0,506,0,95,0,0,0,2,18,198,120,515,0,0,0,0,1,0,3,0,0,0,0,0,0,1134,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,248,37,503,9,0,0,518,0,705,0,2,0,185,14,0,0,0,0,0,0,0,0,0,285,1,0,0,0,8,0,0,0,0,2,175,42,0,0,34,0,0,0,0,0,440,0,0,889,3,0,1,1,0,0,0,0,6,0,0,0,3,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,40,1,1,1,0,28,0,0,0,0,17,56,139,0,8,9,0,0,0,0,0,113,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,9,0,0,0,0,0,0,0,0,0,0,0,2,0,3,508,105,1 +0,0,0,0,0,26,4,0,6,0,1,0,1,0,2,0,12,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,2,0,26,6,0,0,22,0,0,0,1,0,0,0,0,0,0,0,1,63,0,0,0,0,0,1,0,0,0,0,0,0,0,0,418,26,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,61,0,0,2,0,0,0,0,0,68,0,0,0,0,2,0,21,0,0,0,0,401,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,35,0,0,0,0,3,178,8,41,0,0,0,0,1,0,3,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,17,10,76,0,0,0,88,0,134,0,0,0,18,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,8,0,0,0,0,0,108,11,0,0,0,0,0,0,0,0,60,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,0,0,0,0,0,1,28,30,0,2,8,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,19,1 +8,0,0,7,0,19,3,0,23,3,7,0,0,0,14,1,15,0,7,1,0,0,0,1,0,0,0,0,5,0,7,0,0,0,7,0,19,6,0,0,48,0,0,0,1,0,0,4,2,0,0,0,6,85,0,0,0,0,0,1,0,0,0,0,0,12,0,0,401,19,84,0,12,0,0,0,0,0,11,0,0,0,0,2,1,8,57,0,0,7,0,0,0,0,0,36,0,7,0,0,2,0,64,0,8,0,0,244,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,77,0,69,0,0,0,12,12,45,28,80,0,0,0,0,1,0,0,0,0,0,0,0,0,353,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,25,132,9,0,0,124,0,210,0,0,0,51,10,0,0,0,0,0,0,0,0,0,70,1,0,4,0,2,0,0,0,0,6,105,11,0,0,0,0,0,0,0,0,52,0,0,40,0,0,1,0,0,0,0,0,11,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,17,0,0,0,4,1,26,106,0,12,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,156,27,1 +3,0,0,6,0,46,81,0,33,0,80,0,0,7,5,0,71,0,6,2,0,0,0,8,0,11,3,0,19,0,2,0,0,0,8,1134,46,6,0,0,47,0,0,0,1,0,0,4,1,0,0,0,2,1459,0,0,0,0,0,1,0,0,0,0,0,4,0,0,39646,46,500,0,17,0,0,0,0,0,176,0,0,0,0,0,9,299,6345,0,0,8,0,0,0,0,0,971,25,9,0,0,2,0,258,0,1,787,0,7883,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,1114,0,142,0,0,0,14,21,608,3350,1092,0,0,0,0,1,0,4,0,0,0,0,0,0,757,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,108,17,536,6,0,0,463,0,312,0,0,0,310,68,0,0,0,0,0,0,0,0,0,283,1,0,5,0,10,0,0,0,0,2,172,80,0,0,732,0,0,0,0,0,3598,1,0,417,82,0,1,1,0,0,0,0,19,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,82,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,56,0,0,0,0,1,54,331,0,21,14,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2551,168,1 +5,0,0,4,6,28,3,6,93,2,10,0,0,0,11,1,63,0,7,13,0,12,0,1,0,0,0,0,8,0,11,0,0,6,12,0,34,6,0,0,62,0,0,0,1,0,0,5,0,0,0,0,10,125,0,0,0,0,0,1,6,0,0,0,0,11,0,0,1096,28,557,0,19,0,0,0,0,0,21,18,0,0,0,0,1,8,148,0,6,12,6,0,0,0,0,57,0,8,0,0,2,6,85,0,9,0,0,435,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,150,0,105,0,0,0,20,19,69,58,162,0,0,0,0,1,0,0,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,14,352,10,0,0,396,0,383,0,0,0,158,7,0,0,0,0,0,0,0,0,0,188,1,0,0,0,26,0,0,0,0,7,114,57,0,0,0,0,0,0,0,0,175,0,0,130,0,0,1,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,28,0,0,0,8,49,46,324,0,19,0,0,0,0,0,0,100,6,0,0,0,0,0,0,0,0,0,0,0,6,0,1,2,0,0,0,0,0,0,0,0,0,0,0,12,0,3,260,61,1 +4,0,0,5,0,18,4,0,16,1,4,0,0,0,7,1,22,0,7,2,0,0,0,1,0,0,0,0,6,0,13,0,0,0,7,0,18,27,0,0,36,0,0,0,1,0,0,2,0,0,0,0,12,57,0,0,0,0,0,1,0,0,0,1,0,7,0,0,792,18,82,0,19,0,0,0,0,0,11,0,0,0,0,0,2,5,94,0,0,7,0,0,0,0,0,49,0,4,0,0,2,0,49,0,5,0,0,266,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,11,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,94,0,55,0,0,0,24,23,39,77,115,0,0,0,0,1,0,0,0,0,0,0,0,0,350,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,12,120,5,0,0,185,0,247,0,0,0,115,6,0,0,0,0,0,0,0,0,0,61,1,0,0,0,3,0,0,0,0,9,111,66,0,0,0,0,42,0,0,0,88,0,0,138,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,30,0,0,0,24,1,25,279,0,19,0,0,0,0,0,0,85,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,151,61,1 +4,0,0,4,0,34,5,0,24,2,3,0,0,2,6,0,28,0,6,3,0,0,0,5,0,9,6,0,6,0,3,0,0,0,9,0,34,6,0,0,34,0,0,0,0,0,0,3,0,0,0,0,4,135,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1131,34,89,0,8,0,0,0,0,0,16,0,0,0,0,0,7,16,181,0,0,9,0,0,0,0,0,93,5,4,0,0,2,0,81,0,4,0,0,545,0,0,0,0,7,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,128,0,84,0,0,0,6,19,191,35,126,0,0,0,0,1,0,4,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,14,158,4,0,0,190,0,306,0,0,0,85,8,0,0,0,0,0,0,0,0,0,74,1,0,0,0,8,0,0,0,0,4,119,43,0,0,0,0,0,0,0,0,130,0,0,99,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,19,0,0,0,2,1,43,239,0,15,9,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,249,36,1 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,8,0,6,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,0,0,0,40,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,2,2,4,0,0,0,0,0,0,0,0,7,0,0,0,0,2,0,6,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,17,0,0,0,0,3,26,4,26,0,0,0,0,1,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,38,0,0,0,47,0,39,0,0,0,14,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,3,0,0,0,0,0,92,12,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,9,28,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,1 +5,0,0,7,0,60,98,0,66,2,96,0,0,7,11,1,1482,0,7,2,0,0,0,8,0,11,3,0,25,0,8,0,0,0,17,4169,60,6,0,0,67,0,0,0,1,0,0,4,0,0,0,0,8,1802,0,0,0,0,0,1,0,0,0,0,0,10,0,0,97957,60,2072,0,29,0,0,0,0,0,204,0,0,0,0,0,9,283,9266,0,0,17,0,0,0,0,0,1012,25,6,0,0,2,0,1762,0,7,702,0,8641,0,0,0,0,3,0,4,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,12,12,12,0,0,0,2170,0,123,0,0,0,28,49,754,12433,2160,0,0,0,0,1,0,6,0,0,0,0,0,0,754,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,108,31,393,7,0,0,587,0,403,0,0,0,410,24,0,0,0,0,0,0,0,0,0,1768,1,0,0,0,10,0,0,0,0,4,190,81,0,0,757,0,1,0,0,0,7526,1,0,575,98,0,1,1,0,0,0,0,12,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,98,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,66,1,1,1,0,122,0,0,0,8,1,77,398,0,33,14,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3418,92,1 +3,0,0,12,0,26,3,0,21,11,7,0,0,0,36,2,24,0,7,1,0,0,0,1,0,0,3,0,6,0,7,1,0,0,14,0,26,6,0,0,102,0,0,0,1,0,0,10,0,0,0,0,7,167,0,0,0,0,0,1,0,0,0,0,0,22,0,0,9561,26,166,0,14,0,0,0,0,0,38,0,0,0,0,0,1,14,2341,0,0,14,0,0,0,0,0,52,0,12,0,0,2,0,132,0,18,0,0,1262,0,0,0,0,29,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,19,0,0,0,0,0,0,1554,0,177,0,0,0,14,18,58,63,1558,0,0,0,0,1,0,0,0,0,0,0,0,0,2940,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0,0,0,0,0,8,35,423,16,0,0,470,0,466,0,0,0,395,36,0,0,0,0,0,0,2,0,0,100,1,0,0,0,2,0,0,0,0,7,154,285,0,0,0,0,3,0,0,0,803,0,0,1869,0,0,1,0,0,0,0,0,20,0,0,0,3,0,0,0,0,0,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,21,0,0,0,0,1,40,1262,0,17,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,8,2048,151,1 +23,0,0,7,4,97,69,4,129,5,13,0,0,2,17,0,73,0,7,11,0,8,0,5,9,8,12,0,26,0,12,0,0,4,59,0,101,6,9,0,142,0,0,0,1,0,0,7,2,0,0,0,21,178,0,0,0,0,0,1,4,0,0,13,0,17,0,0,41284,97,844,0,36,0,0,0,0,0,93,12,0,0,0,2,7,25,7833,0,4,59,4,0,0,14,0,309,20,15,0,0,2,4,248,0,12,0,0,2628,0,0,0,0,46,0,4,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,5,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,16,10,10,10,0,0,0,4577,0,260,0,0,0,40,53,306,622,4595,0,0,0,0,1,0,7,0,0,0,0,0,0,10894,0,0,0,0,0,0,0,0,0,3,0,0,7,1,0,0,0,0,0,1,3,32,31,661,12,0,0,996,0,639,0,0,0,693,60,0,0,0,0,0,0,0,0,0,310,1,0,5,0,33,0,0,0,0,9,179,495,0,0,35,0,0,0,0,0,1842,0,0,11001,3,0,1,1,0,0,0,0,18,0,0,0,3,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,3,22,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,107,1,1,1,0,55,0,0,0,0,33,160,1680,0,49,9,0,0,0,0,0,389,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,9,0,0,0,0,0,0,0,0,0,0,0,8,0,5,3626,374,1 +13,0,0,7,1,21,43,1,57,5,6,0,15,0,14,0,79,0,8,1,0,0,0,2,0,0,0,0,3,0,2,0,0,1,9,0,22,99,0,0,125,0,0,0,1,0,0,2,0,0,0,0,1,56,0,0,0,0,0,1,0,0,0,14,0,13,0,0,320,21,156,0,5,0,0,0,0,0,9,0,0,0,0,0,2,9,62,0,1,9,1,0,16,0,0,85,0,2,0,0,35,1,65,0,9,0,0,370,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,71,0,62,0,0,0,2,5,44,36,105,0,0,0,0,1,0,0,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,202,159,312,8,0,0,323,0,395,0,1,0,92,11,0,0,0,0,0,0,0,0,0,222,1,0,0,0,3,0,0,0,0,2,123,15,0,0,0,0,0,0,0,0,236,0,0,25,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,19,1,1,1,0,5,0,0,0,0,9,31,65,0,5,0,0,0,0,0,0,151,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,0,0,0,0,0,0,0,0,0,0,0,1,0,2,130,97,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,60,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,22,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,0,0,0,60,0,56,0,0,0,30,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,29,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,76,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,4,1 +7,0,0,9,0,50,16,0,90,3,17,0,0,6,8,0,561,0,6,2,0,0,0,7,0,11,10,0,11,0,3,0,0,0,17,898,50,6,0,0,139,0,0,0,1,0,0,3,1,0,0,0,3,167,0,0,0,0,0,1,0,0,0,0,0,17,0,0,10201,50,745,0,12,0,0,0,0,0,28,0,0,0,0,0,8,26,1497,0,0,17,0,0,1,43,0,539,35,6,0,0,2,0,876,0,4,1,0,2295,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,11,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,667,0,121,0,0,0,6,18,279,742,649,0,0,0,0,1,0,3,0,0,0,0,0,0,2851,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,2,84,20,276,9,0,0,322,0,406,0,0,0,174,22,0,0,0,0,0,0,0,0,0,704,1,0,4,0,9,0,0,0,0,3,135,167,0,0,44,0,0,0,0,0,1645,1,0,170,6,0,1,1,0,0,0,0,11,0,0,0,3,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,17,0,0,0,0,1,67,237,0,23,12,0,0,0,0,0,239,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,3,710,264,1 +3,0,0,3,0,39,5,0,13,0,2,0,0,2,2,0,23,0,6,3,0,0,0,5,0,8,3,0,3,0,2,0,0,0,10,0,39,6,0,0,24,0,0,0,1,0,0,3,1,0,0,0,2,80,0,0,0,0,0,1,0,0,0,0,0,2,0,0,7483,39,55,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,128,0,0,10,0,0,0,0,0,79,5,6,0,0,2,0,40,0,0,0,0,2331,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,104,0,56,0,0,0,2,27,205,58,91,0,0,0,0,1,0,3,0,0,0,0,0,0,3871,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,152,3,0,0,179,0,303,0,0,0,68,12,0,0,0,0,0,0,0,0,0,53,1,0,2,0,8,0,0,0,0,2,121,29,0,0,0,0,0,0,0,0,97,0,0,58,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,48,0,0,0,0,1,49,128,0,7,9,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,65,1 +7,0,0,4,0,49,6,0,37,8,3,0,0,2,13,0,634,0,6,3,0,0,0,6,0,10,0,0,8,0,4,0,0,0,10,898,49,6,0,0,58,0,0,0,1,0,0,4,0,0,0,0,4,198,0,0,0,0,0,1,0,0,0,0,0,14,0,0,17821,49,728,0,9,0,0,0,0,0,25,0,0,0,0,0,8,21,3087,0,0,10,0,0,0,0,0,108,5,9,0,0,2,0,679,0,11,0,0,1509,0,0,0,0,14,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,9,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,32,12,12,12,0,0,0,2432,0,106,0,0,0,6,9,258,361,2404,0,0,0,0,1,0,3,0,0,0,0,0,0,495,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,258,4,0,0,274,0,351,0,0,0,101,12,0,0,0,0,0,0,0,0,0,701,1,0,0,0,9,0,0,0,0,4,132,27,0,0,0,0,0,0,0,0,1714,1,0,132,6,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,11,0,0,0,0,1,59,156,0,10,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,581,46,1 +6,0,0,8,0,43,6,0,8,2,5,0,0,2,11,0,49,0,7,4,0,0,0,5,1,11,0,0,5,0,3,0,0,0,11,4,43,6,0,0,55,0,0,0,1,0,0,1,0,0,0,0,3,105,0,0,0,0,0,1,0,0,0,0,0,11,0,0,2054,43,85,0,5,0,0,0,0,0,8,0,0,0,0,0,9,19,359,0,0,11,0,0,0,0,0,99,5,0,0,0,2,0,82,0,7,0,0,1088,0,0,0,0,10,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,12,12,12,0,0,0,83,0,40,0,0,0,4,6,232,29,74,0,0,0,0,1,0,4,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,25,164,10,0,0,172,0,292,0,0,0,67,6,0,0,0,0,0,0,0,0,0,88,1,0,0,0,10,0,0,0,0,3,125,13,0,0,0,0,0,0,0,0,285,1,0,6,6,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,6,0,0,0,2,1,54,50,0,6,13,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,99,1 +2,0,0,5,0,19,4,0,17,1,4,0,0,0,6,1,15,0,7,1,0,0,0,2,0,0,0,0,5,0,13,0,0,0,8,0,19,6,0,0,27,0,0,0,1,0,0,1,0,0,0,0,12,53,0,0,0,0,0,1,0,0,0,6,0,7,0,0,377,19,64,0,18,0,0,0,0,0,6,0,0,0,0,0,2,4,47,0,0,8,0,0,0,0,0,58,0,2,0,0,2,0,47,0,4,0,0,263,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,55,0,38,0,0,0,24,25,41,44,64,0,0,0,0,1,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,11,115,5,0,0,137,0,192,0,0,0,67,9,0,0,0,0,0,0,0,0,0,54,1,0,0,0,3,0,0,0,0,12,105,32,0,0,0,0,0,0,0,0,55,0,0,49,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,29,0,0,0,18,1,27,110,0,18,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,84,21,1 +1,0,0,4,1,14,27,1,40,4,5,0,1,0,10,0,68,0,9,1,0,0,0,1,0,0,0,0,3,0,1,0,0,1,6,0,15,94,0,0,39,0,0,0,1,0,0,1,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,9,0,0,642,14,117,0,4,0,0,0,0,0,6,0,0,0,0,0,1,3,150,0,1,6,1,0,2,0,0,49,0,2,0,0,6,1,51,0,7,0,0,295,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,106,0,78,0,0,0,0,3,32,42,142,0,0,0,0,1,0,0,0,0,0,0,0,0,455,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,122,29,248,5,0,0,313,0,513,0,1,0,130,36,0,0,0,0,0,0,0,0,0,160,1,0,0,0,2,0,0,0,0,1,114,65,0,0,0,0,0,0,0,0,225,0,0,56,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,3,0,0,0,0,9,21,308,0,4,0,0,0,0,0,0,158,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,1,0,2,247,108,1 +8,0,0,6,0,58,8,0,22,7,4,0,0,2,20,1,18,0,7,3,0,0,0,6,0,8,0,0,7,0,12,0,0,0,29,0,58,6,0,0,101,0,0,0,1,0,0,2,0,0,0,0,12,112,0,0,0,0,0,1,0,0,0,11,0,22,0,0,1105,58,88,0,17,0,0,0,0,0,13,0,0,0,0,0,8,16,178,0,0,29,0,0,0,0,0,115,5,3,0,0,2,0,86,0,18,0,0,944,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,6,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,125,0,92,0,0,0,22,18,223,71,133,0,0,0,0,1,0,4,0,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,32,244,6,0,0,267,0,380,0,0,0,148,8,0,0,0,0,0,0,0,0,0,82,1,0,0,0,9,0,0,0,0,9,148,45,0,0,0,0,0,0,0,0,126,0,0,54,3,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,15,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,66,1,1,1,0,27,0,0,0,4,1,87,256,0,18,9,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,2,222,70,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,79,0,0,0,0,0,1,0,0,0,0,0,2,0,0,926,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,43,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,321,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,60,0,57,0,0,0,4,10,36,174,69,0,0,0,0,1,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,124,3,0,0,117,0,321,0,0,0,40,12,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,52,0,0,38,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,73,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,101,24,1 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,143,9,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,31,0,0,0,0,3,23,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,51,0,0,0,41,0,105,0,0,0,10,7,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,92,6,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,9,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,11,1 +0,0,0,1,0,25,5,0,19,0,1,0,0,2,2,0,17,0,6,3,0,0,0,5,0,8,0,0,2,0,1,0,0,0,1,0,25,6,0,0,20,0,0,0,1,0,0,1,0,0,0,0,1,98,0,0,0,0,0,1,0,0,0,0,0,1,0,0,607,25,46,0,1,0,0,0,0,0,9,0,0,0,0,0,7,14,123,0,0,1,0,0,0,0,0,74,5,1,0,0,2,0,28,0,0,0,0,346,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,78,0,33,0,0,0,0,3,177,9,83,0,0,0,0,1,0,3,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,105,1,0,0,124,0,179,0,0,0,24,1,0,0,0,0,0,0,0,0,0,52,1,0,0,0,8,0,0,0,0,0,107,13,0,0,0,0,0,0,0,0,77,0,0,20,3,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,123,0,2,9,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,121,21,1 +2,0,0,9,0,20,4,0,16,1,4,0,0,0,9,1,15,0,7,1,0,0,0,1,0,0,0,0,3,0,8,0,0,0,9,0,20,6,0,0,41,0,0,0,1,0,0,1,0,0,0,0,7,66,0,0,0,0,0,1,0,0,0,0,0,10,0,0,242,20,58,0,10,0,0,0,0,0,5,0,0,0,0,0,1,3,30,0,0,9,0,0,0,0,0,22,0,2,0,0,2,0,45,0,7,0,0,246,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,38,0,0,0,14,11,41,34,48,0,0,0,0,1,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,14,113,9,0,0,123,0,215,0,0,0,54,8,0,0,0,0,0,0,0,0,0,56,0,0,0,0,2,0,0,0,0,4,106,16,0,0,0,0,0,0,0,0,46,0,0,23,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,17,0,0,0,8,1,29,162,0,11,0,0,0,0,0,0,41,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,75,14,1 +3,0,0,11,0,97,30,0,75,5,14,0,0,6,20,1,800,0,7,2,0,0,0,9,0,11,0,0,11,0,5,0,0,0,55,2279,97,6,0,0,233,0,7,0,1,0,0,7,0,0,0,0,5,364,0,0,0,0,0,1,0,0,0,0,0,16,0,0,14677,97,1008,0,12,0,0,0,0,0,44,0,0,0,0,0,10,38,3185,0,0,55,0,0,0,25,0,430,30,13,0,0,2,0,1026,0,11,10,0,2667,0,0,0,0,13,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,40,12,12,12,0,0,0,1171,0,170,0,0,0,10,13,354,626,1145,0,0,0,0,1,0,3,0,0,3,0,0,0,956,0,0,0,0,0,0,0,0,0,0,0,0,7,1,4,0,0,0,0,1,0,84,46,436,13,0,0,540,0,538,0,0,0,359,35,0,0,0,0,0,0,7,0,0,953,1,0,0,0,11,0,0,0,0,5,193,177,0,0,46,0,0,0,0,0,2606,1,0,1078,9,0,1,1,1,0,0,0,19,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,9,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,0,106,1,1,1,0,21,0,0,0,4,1,152,582,0,13,14,0,1,0,0,0,258,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1217,201,1 +2,0,0,4,0,23,3,0,16,1,4,0,0,0,8,1,15,0,7,1,0,0,0,1,0,0,0,0,11,0,25,0,0,0,10,0,23,6,0,0,50,0,0,0,1,0,0,2,0,0,0,0,24,73,0,0,0,0,0,1,0,0,0,0,0,8,0,0,554,23,93,0,36,0,0,0,0,0,11,0,0,0,0,0,1,4,73,0,0,10,0,0,0,0,0,100,0,4,0,0,2,0,68,0,6,0,0,359,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,81,0,56,0,0,0,48,47,58,106,87,0,0,0,0,1,0,0,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,8,11,152,4,0,0,137,0,248,0,0,0,61,5,0,0,0,0,0,0,0,0,0,54,1,0,0,0,2,0,0,0,0,21,109,17,0,0,0,0,0,0,0,0,97,0,0,78,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,59,0,0,0,30,1,33,122,0,36,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,136,23,1 +2,0,0,7,0,25,3,0,18,3,6,0,0,0,13,1,15,0,7,1,0,0,0,1,0,0,0,0,5,0,9,0,0,0,15,0,25,6,0,0,58,0,11,0,1,0,0,11,0,0,0,0,8,194,0,0,0,0,0,1,0,0,0,0,0,12,0,0,3388,25,146,0,14,0,0,0,0,0,48,0,0,0,0,0,1,14,808,0,0,15,0,0,0,0,0,63,0,15,0,0,2,0,59,0,8,0,0,535,0,0,0,0,20,0,0,0,0,0,0,1,4,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,331,0,141,0,0,0,16,18,52,60,331,0,0,0,0,1,0,0,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,8,23,182,9,0,0,251,0,292,0,0,0,184,18,0,0,0,0,0,0,4,0,0,63,1,0,0,0,2,0,0,0,0,9,112,102,0,0,0,0,0,0,0,0,311,0,0,1023,0,0,1,0,1,0,0,0,26,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,369,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,21,0,0,0,8,1,40,611,0,14,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,10,593,156,1 +5,0,0,9,0,35,7,0,42,3,17,0,0,0,14,0,17,0,6,1,0,0,0,2,0,0,0,0,3,0,1,0,0,0,25,0,35,6,0,0,108,0,0,0,1,0,0,1,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,14,0,0,1666,35,104,0,4,0,0,0,0,0,6,0,0,0,0,0,2,4,125,0,0,25,0,0,3,24,0,228,45,2,0,0,2,0,162,0,8,0,0,789,0,0,0,0,25,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,101,0,62,0,0,0,0,3,57,1316,113,0,0,0,0,1,0,0,0,0,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,36,200,11,0,0,205,0,229,0,0,0,138,17,0,0,0,0,0,0,0,0,0,103,1,0,0,0,3,0,0,0,0,1,149,63,0,0,87,0,2,0,0,0,83,0,0,61,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,3,0,0,0,0,1,60,200,0,4,0,0,0,0,0,0,113,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,136,39,1 +6,0,0,0,1,19,27,1,191,4,8,0,1,0,8,1,662,0,6,4,0,2,0,1,0,0,0,0,2,0,1,0,0,1,8,0,20,9,0,0,68,0,0,0,1,0,0,1,0,0,0,0,0,88,0,0,0,0,0,1,1,0,0,0,0,9,0,0,429,19,948,0,3,0,0,0,0,0,3,3,0,0,1,1,2,5,35,0,1,8,1,0,2,13,0,128,15,1,0,0,4,1,792,0,6,0,0,785,0,0,0,0,1,0,0,0,2,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,2,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,292,0,0,0,0,0,0,41,0,42,0,0,0,0,3,42,107,65,0,0,0,0,1,0,0,0,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,19,177,1,0,0,150,0,209,0,0,0,52,10,0,0,0,0,0,0,0,0,0,904,1,0,0,0,7,0,0,0,0,0,103,29,0,0,30,0,0,0,0,0,999,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,17,1,1,1,0,2,0,0,0,0,15,28,65,0,3,0,0,0,0,0,0,81,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,84,13,1 +4,0,0,10,0,55,7,0,51,8,10,0,0,6,23,1,1003,0,7,2,0,0,0,8,0,11,0,0,9,0,5,0,0,0,17,898,55,6,0,0,118,0,0,0,1,0,0,7,0,0,0,0,5,846,0,0,0,0,0,1,0,0,0,0,0,20,0,0,9571,55,1161,0,10,0,0,0,0,0,41,0,0,0,0,0,9,32,1870,0,0,17,0,0,0,0,0,221,20,12,0,0,2,0,1105,0,15,1,0,3108,0,0,0,0,13,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,54,12,12,12,0,0,0,822,0,184,0,0,0,9,11,293,1402,794,0,0,0,0,1,0,3,0,0,0,0,0,0,891,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,84,50,597,12,0,0,697,0,633,0,0,0,361,33,0,0,0,0,0,0,0,0,0,1108,1,0,0,0,10,0,0,0,0,4,212,353,0,0,6,0,0,0,0,0,2798,1,0,400,8,0,1,1,0,0,0,0,16,0,0,0,2,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,16,0,0,0,0,1,72,2357,0,11,14,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1037,885,1 +2,0,0,3,0,17,2,0,7,0,3,0,0,0,4,1,52,0,7,2,0,0,0,0,0,0,6,0,2,0,4,0,0,0,8,0,17,6,0,0,17,0,0,0,1,0,0,1,0,0,0,0,3,37,0,0,0,0,0,1,0,0,0,0,0,4,0,0,131,17,80,0,6,0,0,0,0,0,2,0,0,0,0,0,1,3,5,0,0,8,0,0,0,0,0,12,0,0,0,0,2,0,62,0,2,0,0,232,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,26,0,43,0,0,0,6,12,42,14,33,0,0,0,0,1,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,5,73,3,0,0,68,0,133,0,0,0,35,7,0,0,0,0,0,0,0,0,0,76,1,0,0,0,2,0,0,0,0,2,99,10,0,0,0,0,0,0,0,0,278,0,0,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,6,0,0,0,0,11,25,29,0,12,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,15,1 +2,0,0,7,5,31,3,25,33,3,11,0,0,0,15,1,15,0,7,11,0,5,0,1,5,0,0,0,3,0,4,0,0,5,19,0,36,6,0,0,73,0,15,0,1,0,0,15,0,0,0,0,3,306,0,0,0,0,0,1,0,0,0,0,0,14,0,0,5207,31,513,0,7,0,0,0,0,0,62,15,0,0,0,0,1,20,799,0,25,19,5,0,0,0,0,49,0,27,0,0,2,5,81,0,10,0,0,673,0,0,0,0,34,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,13,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,396,0,162,0,0,0,6,8,67,32,353,0,0,0,0,1,0,0,0,0,0,0,0,0,919,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,8,25,207,14,0,0,391,0,441,0,0,0,307,24,0,0,0,0,0,0,0,0,0,85,1,0,0,0,22,0,0,0,0,4,116,190,0,0,0,0,0,0,0,0,288,0,0,1032,0,0,1,0,1,0,0,0,35,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,364,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,9,0,0,0,0,1,55,786,0,7,0,0,1,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,3,0,0,0,0,0,0,0,0,0,0,0,10,0,3,627,60,1 +4366,0,0,5,0,54,6,0,47,9,15,0,0,0,17,0,17,0,7,3,0,0,0,6,0,1,0,0,100,0,4,0,0,0,29,0,54,6,6,0,110,0,0,0,1,0,0,9,0,0,0,0,4,254,0,0,0,0,0,1,0,0,0,26,0,22,0,0,101705,54,261,0,104,0,0,0,0,0,40,0,0,0,0,1,7,23,11768,0,0,29,0,0,1,30,0,391,45,13,1,0,2,0,279,0,14,1,0,85762,0,0,0,0,13306,3,0,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,3,0,0,0,4432,0,0,0,18,0,8905,0,4359,0,0,0,0,0,0,4425,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,1,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,4,0,0,0,0,4436,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,6619,0,158,0,0,0,8,18,108,43077,6601,0,0,0,0,1,0,0,0,0,0,0,0,0,85446,0,0,0,0,0,0,0,0,0,0,0,0,9,0,21,0,0,0,0,0,0,8,19,506,5,0,0,358,0,594,0,0,0,247,302,0,0,0,0,0,0,2,0,0,109,1,0,0,0,9,0,0,0,0,5,142,209,0,0,216,0,0,0,0,0,3264,0,0,13563,0,0,1,2,0,0,0,0,15,0,0,0,3,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,113,0,0,0,0,1,83,500,0,105,0,0,0,0,0,0,140,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5387,154,1 +6990,0,0,4,0,20,2,0,16,1,5,0,0,0,6,0,16,0,6,2,0,0,0,1,0,0,0,0,97,0,1,0,0,0,4,0,20,6,0,0,25,0,0,0,1,0,0,1,0,0,0,0,0,125,0,0,0,0,0,1,0,0,0,0,0,5,0,0,75141,20,156,0,98,0,0,0,0,0,13,0,0,0,0,0,2,6,1535,0,0,4,0,0,0,1,0,136,5,4,0,0,2,0,133,0,3,0,0,141962,0,0,0,0,21020,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,7008,0,0,0,0,0,14035,0,6983,0,0,0,0,0,0,7015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7008,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,829,0,57,0,0,0,0,3,43,39081,838,0,0,0,0,1,0,0,0,0,0,0,0,0,118916,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,6,455,4,0,0,129,0,779,0,0,0,44,158,0,0,0,0,0,0,3,0,0,51,1,0,0,0,3,0,0,0,0,1,106,26,0,0,11,0,0,0,0,0,502,0,0,1517,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,97,0,0,0,0,1,24,147,0,98,0,0,0,0,0,0,33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,931,134,1 +23,0,0,7,1,49,52,1,70,2,7,0,21,2,12,0,94,0,8,3,0,0,0,5,0,11,3,0,9,0,2,0,0,1,16,0,50,120,0,0,168,0,0,0,1,0,0,5,0,0,0,0,5,143,0,0,0,0,0,1,0,0,0,0,0,10,0,0,12469,49,214,0,13,0,0,0,0,0,24,0,0,0,0,0,7,18,390,0,1,16,1,0,23,0,0,178,5,8,0,0,48,1,107,0,7,0,0,3492,0,0,0,0,9,0,1,0,4,0,0,1,0,0,0,3,0,0,0,0,0,0,0,2,0,0,0,7,0,0,1,3,0,3,0,13,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,304,0,122,0,0,0,5,11,220,48,332,0,0,0,0,1,0,3,0,0,0,0,0,0,702,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,0,0,0,0,1,0,267,235,431,8,0,0,483,0,626,0,1,0,173,29,0,0,0,0,0,0,0,0,0,266,1,0,0,0,8,0,0,0,0,6,145,75,0,0,0,0,0,0,0,0,369,0,0,114,2,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,50,1,1,1,0,9,0,0,0,0,9,66,297,0,17,8,0,0,0,0,0,200,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,1,0,5,370,156,1 +4,0,0,5,2,30,6,2,48,2,11,0,0,0,12,1,32,0,7,6,0,4,0,1,0,0,0,0,6,0,7,0,0,2,14,0,32,6,0,0,69,0,0,0,1,0,0,3,0,0,0,0,6,125,0,0,0,0,0,1,2,0,0,1,0,15,0,0,1137,30,239,0,13,0,0,0,0,0,16,6,0,0,0,0,2,8,217,0,2,14,2,0,1,13,0,139,15,6,0,0,2,2,126,0,10,0,0,444,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,161,0,107,0,0,0,12,11,63,295,168,0,0,0,0,1,0,0,0,0,0,0,0,0,634,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,15,215,7,0,0,245,0,271,0,0,0,108,6,0,0,0,0,0,0,0,0,0,117,1,0,0,0,11,0,0,0,0,3,116,59,0,0,30,0,0,0,0,0,112,0,0,297,0,0,1,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,18,0,0,0,8,17,46,265,0,13,0,0,0,0,0,0,99,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,1,0,4,1,2,301,43,1 +4,0,0,10,0,42,8,0,63,3,25,0,0,2,13,0,19,0,7,2,0,0,0,6,0,8,0,0,5,0,9,0,0,0,14,0,42,6,0,0,116,0,0,0,1,0,0,3,0,0,0,0,9,149,0,0,0,0,0,1,0,0,0,0,0,17,0,0,1533,42,137,0,13,0,0,0,0,0,11,0,0,0,0,1,7,16,109,0,0,14,0,0,4,38,0,433,80,3,0,0,2,0,237,0,8,0,0,1050,0,0,0,0,13,0,4,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,10,10,0,0,0,103,0,84,0,0,0,16,13,207,283,111,0,0,0,0,1,0,3,0,0,0,0,0,0,389,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,30,257,14,0,0,294,0,402,0,0,0,179,10,0,0,0,0,0,0,0,0,0,137,1,0,0,0,8,0,0,0,0,6,171,140,0,0,153,0,0,0,0,0,88,0,0,121,2,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,20,0,0,0,8,1,56,231,0,14,8,0,0,0,0,0,132,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,213,189,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,66,0,0,0,0,0,1,0,0,0,0,0,2,0,0,386,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,47,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,235,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,62,0,55,0,0,0,4,10,32,174,71,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,104,3,0,0,114,0,189,0,0,0,40,5,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,63,0,0,47,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,105,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,103,22,1 +6088,0,0,4,10,57,18,40,93,23,13,0,0,0,33,0,64,0,6,27,0,10,5,2,0,0,0,0,94,0,10,0,0,10,37,0,67,6,64,0,133,0,0,0,1,0,0,2,0,0,0,0,9,167,0,0,0,0,0,1,0,0,0,63,0,34,0,0,59902,57,938,0,104,0,0,0,0,0,7,30,0,0,0,0,3,6,72,0,40,37,10,0,0,0,0,163,0,3,0,0,2,10,245,0,29,0,0,123794,0,0,0,0,18179,0,1,0,0,0,0,1,0,0,0,20,0,0,0,0,0,0,0,2,0,0,0,6058,0,0,0,0,0,12112,0,6086,0,0,0,0,0,0,6072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,6078,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,22,0,0,0,0,0,0,90,0,112,0,0,0,18,21,107,33860,124,0,0,0,0,1,0,0,0,0,0,0,0,0,100462,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,38,755,14,0,0,490,0,664,0,0,0,235,153,0,0,0,0,0,0,0,0,0,227,1,0,0,0,44,0,0,0,0,10,153,46,0,0,0,0,0,0,0,0,274,0,0,37,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,112,0,0,0,0,81,104,208,0,104,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,23,0,0,0,0,0,0,0,0,0,0,0,15,0,2,276,198,1 +2,0,0,7,0,26,3,0,24,3,6,0,0,0,13,1,15,0,7,1,0,0,0,1,0,0,0,0,5,0,13,0,0,0,13,0,26,6,0,0,54,0,0,0,1,0,0,7,0,0,0,0,12,112,0,0,0,0,0,1,0,0,0,0,0,12,0,0,950,26,112,0,18,0,0,0,0,0,25,0,0,0,0,0,1,10,160,0,0,13,0,0,0,0,0,70,0,8,0,0,2,0,67,0,8,0,0,397,0,0,0,0,27,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,165,0,112,0,0,0,24,25,59,51,164,0,0,0,0,1,0,0,0,0,0,0,0,0,486,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,8,21,179,9,0,0,232,0,155,0,0,0,155,25,0,0,0,0,0,0,0,0,0,69,1,0,0,0,2,0,0,0,0,13,124,77,0,0,0,0,0,0,0,0,88,0,0,156,0,0,1,0,0,0,0,0,13,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,29,0,0,0,16,1,39,434,0,18,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5,273,83,1 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,163,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,8,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,94,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,22,0,0,0,0,3,24,7,31,0,0,0,0,1,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,42,0,0,0,85,0,166,0,0,0,55,4,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,93,49,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,125,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,8,1 +6,0,0,4,6,18,3,6,80,0,15,0,0,0,3,0,64,0,6,13,0,12,0,1,0,0,0,0,6,0,1,0,0,6,6,0,24,6,0,0,47,0,0,0,1,0,0,2,0,0,0,0,0,127,0,0,0,0,0,1,6,0,0,3,0,3,0,0,427,18,509,0,7,0,0,0,0,0,9,18,0,0,0,0,1,4,51,0,6,6,6,0,1,9,0,140,20,3,0,0,2,6,106,0,0,0,0,372,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,65,0,70,0,0,0,0,3,47,135,79,0,0,0,0,1,0,0,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,316,10,0,0,333,0,360,0,0,0,111,5,0,0,0,0,0,0,0,0,0,171,1,0,0,0,26,0,0,0,0,1,101,67,0,0,37,0,0,0,0,0,116,0,0,52,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,6,0,0,0,0,49,30,147,0,7,0,0,0,0,0,0,52,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,2,0,0,0,0,0,0,0,0,0,0,0,12,0,2,147,57,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,31,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,30,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,39,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,4,1 +4,0,0,5,0,33,6,0,28,1,4,0,0,2,8,1,18,0,7,3,0,0,0,5,0,8,0,0,5,0,7,0,0,0,6,0,33,6,0,0,40,0,0,0,1,0,0,1,0,0,0,0,7,94,0,0,0,0,0,1,0,0,0,4,0,9,0,0,898,33,73,0,10,0,0,0,0,0,9,0,0,0,0,0,7,14,135,0,0,6,0,0,0,0,0,85,5,2,0,0,2,0,63,0,6,0,0,603,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,107,0,55,0,0,0,12,10,190,24,105,0,0,0,0,1,0,4,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,18,150,5,0,0,183,0,273,0,0,0,73,8,0,0,0,0,0,0,0,0,0,74,1,0,0,0,8,0,0,0,0,3,119,37,0,0,0,0,0,0,0,0,94,0,0,62,3,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,15,0,0,0,8,1,39,135,0,11,9,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,183,37,1 +10,0,0,0,0,19,5,0,3,3,1,0,0,0,5,0,14,0,7,2,0,0,0,0,0,0,0,0,2,0,3,0,0,0,8,0,19,6,0,0,45,0,0,0,1,0,0,1,0,0,0,0,2,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,162,19,34,0,5,0,0,0,0,0,2,0,0,0,0,0,1,3,5,0,0,8,0,0,0,0,0,16,0,0,0,0,2,0,31,0,3,0,0,230,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,22,0,33,0,0,0,4,5,42,20,32,0,0,0,0,1,0,0,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,12,78,0,0,0,87,0,132,0,0,0,48,7,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,3,102,22,0,0,0,0,0,0,0,0,54,0,0,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,6,0,0,0,0,1,27,72,0,5,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,28,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,7,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,76,0,0,0,0,0,1,0,0,0,0,0,2,0,0,899,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,42,0,0,7,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,324,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,56,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,122,3,0,0,114,0,315,0,0,0,49,8,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,52,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,24,83,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,98,24,1 +3,0,0,3,2,58,12,8,63,4,9,0,0,6,11,1,846,0,8,8,0,2,1,8,0,11,12,0,12,0,3,2,0,2,13,2212,60,6,28,0,111,0,0,0,1,0,0,3,1,0,0,0,5,325,0,0,0,0,0,1,0,0,0,0,0,5,0,0,15880,58,1113,0,13,0,0,0,0,0,30,6,0,0,0,0,10,36,2809,0,8,13,2,0,0,0,0,236,20,18,0,0,2,2,985,0,4,14,0,2344,0,0,0,0,26,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,50,12,12,12,0,0,0,1298,0,115,0,0,0,10,29,324,911,1265,0,0,0,0,1,0,8,0,0,0,0,0,0,1484,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,121,45,378,5,0,0,408,0,486,0,0,0,181,53,0,0,0,0,0,0,0,0,0,956,1,0,14,0,19,0,0,0,0,5,152,51,0,0,17,0,0,0,0,0,2645,1,0,194,9,0,1,1,0,0,0,0,28,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,68,1,1,1,0,36,0,0,0,0,17,73,273,0,26,14,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,8,0,0,0,0,0,0,0,0,0,0,0,3,0,0,924,68,1 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,163,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,8,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,100,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,22,0,0,0,0,3,24,7,31,0,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,41,0,0,0,85,0,166,0,0,0,55,2,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,93,49,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,125,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,9,1 +4,0,0,5,2,35,7,8,29,6,6,0,0,0,15,1,24,0,7,6,0,2,1,2,0,0,0,0,5,0,12,0,0,2,20,0,37,6,26,0,69,0,0,0,1,0,0,1,0,0,0,0,11,73,0,0,0,0,0,1,0,0,0,8,0,16,0,0,392,35,205,0,17,0,0,0,0,0,6,6,0,0,0,0,2,4,46,0,8,20,2,0,0,0,0,46,0,1,0,0,2,2,72,0,13,0,0,602,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,58,0,64,0,0,0,22,21,67,71,67,0,0,0,0,1,0,0,0,0,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,8,20,251,7,0,0,218,0,256,0,0,0,106,15,0,0,0,0,0,0,0,0,0,89,1,0,0,0,11,0,0,0,0,8,128,18,0,0,0,0,0,0,0,0,91,0,0,27,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,27,0,0,0,8,17,57,104,0,17,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,4,0,1,110,57,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,12,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,34,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,3,1 +0,0,0,4,0,13,6,0,45,0,10,0,0,0,4,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,13,6,0,0,91,0,0,0,1,0,0,3,0,0,0,0,0,90,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1246,13,97,0,1,0,0,0,0,0,14,0,0,0,0,0,1,6,72,0,0,1,0,0,1,23,0,194,15,5,0,0,2,0,137,0,1,0,0,776,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,80,0,61,0,0,0,0,3,33,332,91,0,0,0,0,1,0,0,0,0,0,0,0,0,371,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,80,101,4,0,0,209,0,376,0,0,0,136,6,0,0,0,0,0,0,0,0,0,86,1,0,0,0,2,0,0,0,0,0,97,188,0,0,26,0,0,0,0,0,41,0,0,65,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,14,337,0,1,0,0,0,0,0,0,78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,151,24,1 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,0,0,0,163,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,8,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,94,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,22,0,0,0,0,3,24,7,31,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,42,0,0,0,85,0,166,0,0,0,55,4,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,93,49,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,125,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,8,1 +0,0,0,4,0,11,6,0,45,0,10,0,0,0,4,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,79,0,0,0,1,0,0,3,0,0,0,0,0,90,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1273,11,97,0,1,0,0,0,0,0,14,0,0,0,0,0,1,6,73,0,0,1,0,0,1,23,0,194,15,5,0,0,2,0,137,0,1,0,0,528,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,78,0,59,0,0,0,0,3,25,178,89,0,0,0,0,1,0,0,0,0,0,0,0,0,327,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,56,97,4,0,0,191,0,289,0,0,0,124,4,0,0,0,0,0,0,0,0,0,86,1,0,0,0,2,0,0,0,0,0,95,158,0,0,26,0,0,0,0,0,41,0,0,65,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,324,0,1,0,0,0,0,0,0,78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,137,23,1 +7,0,0,4,0,48,6,0,36,8,3,0,0,2,13,0,579,0,6,3,0,0,0,6,0,10,0,0,8,0,4,0,0,0,10,898,48,6,0,0,58,0,0,0,1,0,0,4,0,0,0,0,4,200,0,0,0,0,0,1,0,0,0,0,0,14,0,0,18031,48,672,0,9,0,0,0,0,0,25,0,0,0,0,0,8,21,3137,0,0,10,0,0,0,0,0,108,5,9,0,0,2,0,624,0,11,0,0,1515,0,0,0,0,14,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,8,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,12,12,12,0,0,0,2504,0,105,0,0,0,6,9,254,360,2476,0,0,0,0,1,0,3,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,255,4,0,0,272,0,317,0,0,0,104,12,0,0,0,0,0,0,0,0,0,645,1,0,0,0,9,0,0,0,0,4,131,27,0,0,0,0,0,0,0,0,1589,1,0,155,6,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,11,0,0,0,0,1,58,160,0,10,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,582,44,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,60,0,0,0,0,0,1,0,0,0,0,0,2,0,0,380,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,49,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,255,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,63,0,57,0,0,0,4,10,36,174,72,0,0,0,0,1,0,0,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,110,3,0,0,117,0,185,0,0,0,40,8,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,57,0,0,50,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,82,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,108,22,1 +3,0,0,7,0,18,4,0,14,5,7,0,0,0,16,1,15,0,7,1,0,0,0,1,0,0,0,0,3,0,5,0,0,0,7,0,18,6,0,0,53,0,2,0,1,0,0,2,0,0,0,0,4,50,0,0,0,0,0,1,0,0,0,0,0,14,0,0,1116,18,67,0,8,0,0,0,0,0,7,0,0,0,0,0,1,5,508,0,0,7,0,0,0,0,0,28,0,2,0,0,2,0,57,0,10,0,0,277,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,59,0,41,0,0,0,8,10,41,30,67,0,0,0,0,1,0,0,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,29,119,9,0,0,111,0,180,0,0,0,45,7,0,0,0,0,0,0,0,0,0,64,1,0,0,0,2,0,0,0,0,5,108,8,0,0,0,0,0,0,0,0,230,0,0,748,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,11,0,0,0,2,1,25,57,0,8,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,279,65,1 +2,0,0,3,0,18,8,0,15,0,3,0,0,0,7,0,17,0,7,1,0,0,0,1,0,0,0,0,1,0,3,0,0,0,6,0,18,68,0,0,25,0,0,0,1,0,0,1,1,0,0,0,2,50,0,0,0,0,0,1,0,0,0,0,0,7,0,0,2445,18,59,0,3,0,0,0,0,0,13,0,0,0,0,0,1,3,33,0,0,6,0,0,0,0,0,16,0,6,0,0,2,0,46,0,5,0,0,954,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,60,0,72,0,0,0,4,5,79,1505,57,0,0,0,0,1,0,0,0,0,0,0,0,0,3678,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,35,8,206,3,0,0,114,0,374,0,0,0,36,19,0,0,0,0,0,0,0,0,0,57,1,0,4,0,2,0,0,0,0,3,101,3,0,0,0,0,0,0,0,0,147,0,0,21,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,5,0,0,0,0,1,24,127,0,4,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,139,52,1 +3,0,0,6,0,54,97,0,67,1,95,0,0,7,5,0,1448,0,6,2,0,0,0,8,0,12,3,0,23,0,2,0,0,0,12,3047,54,6,0,0,47,0,0,0,1,0,0,4,0,0,0,0,2,1643,0,0,0,0,0,1,0,0,0,0,0,4,0,0,143266,54,2022,0,22,0,0,0,0,0,204,0,0,0,0,0,9,447,11983,0,0,12,0,0,0,0,0,1140,25,6,0,0,2,0,1703,0,1,974,0,10583,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,12,12,12,0,0,0,2968,0,119,0,0,0,17,42,753,15052,2957,0,0,0,0,1,0,6,0,0,0,0,0,0,752,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,108,23,392,6,0,0,573,0,363,0,0,0,401,23,0,0,0,0,0,0,0,0,0,1725,1,0,0,0,10,0,0,0,0,2,192,79,0,0,893,0,1,0,0,0,8564,1,0,593,98,0,1,1,0,0,0,0,13,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,98,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,112,0,0,0,0,1,66,393,0,26,14,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4170,90,1 +5,0,0,6,0,21,2,0,15,3,4,0,0,0,11,0,20,0,7,1,0,0,0,1,0,0,3,0,3,0,4,0,0,0,11,0,21,6,0,0,37,0,0,0,1,0,0,1,0,0,0,0,3,39,0,0,0,0,0,1,0,0,0,0,0,10,0,0,716,21,60,0,7,0,0,0,0,0,6,0,0,0,0,0,1,3,120,0,0,11,0,0,0,0,0,18,0,1,0,0,2,0,54,0,8,0,0,318,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,92,0,45,0,0,0,6,8,41,18,101,0,0,0,0,1,0,0,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,15,120,8,0,0,154,0,232,0,0,0,89,5,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,3,103,49,0,0,0,0,0,0,0,0,88,0,0,115,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,8,0,0,0,0,1,32,191,0,10,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,148,23,1 +20,0,0,3,1,28,5,1,37,3,4,0,0,0,9,0,22,0,6,3,0,2,0,1,0,0,0,0,7,0,1,0,0,1,11,0,29,6,0,0,33,0,0,0,1,0,0,4,0,0,0,0,0,115,0,0,0,0,0,1,0,0,0,0,0,9,0,0,1811,28,169,0,8,0,0,0,0,0,21,3,0,0,0,0,1,7,285,0,1,11,1,0,0,0,0,22,0,7,0,0,2,1,53,0,7,0,0,470,0,0,0,0,6,2,2,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,13,0,0,0,0,0,6,0,12,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,14,1,1,0,0,0,6,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,259,0,88,0,0,0,0,3,57,19,269,0,0,0,0,1,0,0,0,0,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,10,190,4,0,0,260,0,340,0,0,0,147,13,0,0,0,0,0,0,0,0,0,83,1,0,0,0,6,0,0,0,0,1,111,83,0,0,0,0,0,0,0,0,116,0,0,310,0,0,1,0,1,0,0,0,9,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,7,0,0,0,0,9,40,313,0,8,0,0,0,0,0,0,54,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,2,0,4,240,33,1 +41,0,0,19,5,55,130,5,159,35,119,0,3,0,157,0,273,0,17,1,0,0,0,2,0,0,0,0,11,0,19,0,0,5,43,0,60,285,0,0,472,0,0,0,1,0,0,5,0,0,0,0,18,153,0,0,0,0,0,1,0,0,0,14,0,61,0,0,2215,55,698,0,30,0,0,0,0,0,11,0,0,0,0,0,2,8,482,0,5,43,5,0,11,24,0,471,45,2,0,0,18,5,614,0,52,0,0,1409,0,0,0,0,36,10,0,0,0,0,0,1,0,0,0,11,0,0,3,0,0,0,0,4,0,0,0,6,0,0,0,0,0,0,0,9,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,30,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,34,0,0,0,0,0,0,310,0,115,0,0,0,36,31,114,1397,338,0,0,0,0,1,0,0,0,0,0,0,0,0,1924,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,2,550,213,988,27,0,0,1006,0,1404,0,5,0,349,32,0,0,0,0,0,0,0,0,0,858,1,0,0,0,3,0,0,0,0,11,219,56,0,0,87,0,1,0,1,0,900,0,0,62,0,0,1,0,0,0,0,0,11,0,1,0,2,0,0,0,0,0,34,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,28,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,61,1,1,1,0,47,0,0,0,0,41,103,68,0,30,0,0,0,0,0,0,930,6,0,0,0,0,0,0,0,0,0,0,0,5,0,1,41,0,0,0,0,0,0,0,0,0,0,0,5,0,3,1165,214,1 +2,0,0,7,0,21,3,0,19,2,6,0,0,0,13,1,25,0,7,1,0,0,0,1,0,1,5,0,2,0,3,0,0,0,9,0,21,6,0,0,52,0,0,0,1,0,0,3,0,0,0,0,2,64,0,1,0,0,0,1,0,0,0,0,0,12,0,0,536,21,85,0,5,0,0,0,0,0,8,0,0,0,1,0,1,7,60,0,0,9,0,0,0,0,0,20,0,2,0,0,2,0,84,0,8,0,0,510,0,0,0,0,23,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,70,0,53,0,0,0,4,13,48,26,86,0,0,0,0,1,0,1,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,25,136,9,0,0,144,0,211,0,0,0,73,8,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,3,109,31,0,0,0,0,0,0,0,0,70,0,0,33,0,0,1,0,0,0,0,0,5,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,9,0,0,0,0,1,30,135,0,11,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,114,22,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,88,0,0,0,0,0,1,0,0,0,0,0,2,0,0,765,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,45,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,286,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,56,0,0,0,4,10,32,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,110,3,0,0,114,0,295,0,0,0,40,8,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,60,0,0,38,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,146,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,101,23,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1,0,0,0,0,0,0,0,0,23,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,22,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,38,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,5,1 +99,0,0,30,0,55,22,0,149,20,90,0,0,0,85,2,68,0,7,2,0,0,0,5,0,0,3,0,8,0,6,1,0,0,38,0,55,210,0,0,364,0,0,0,1,0,0,9,0,0,0,0,6,130,0,0,0,0,0,1,0,0,0,0,0,30,0,0,6671,55,493,0,15,0,0,0,0,0,38,0,0,0,0,2,6,22,1270,0,0,38,0,0,1,80,0,691,75,16,2,0,2,0,829,0,24,0,0,1235,0,0,0,0,27,37,0,0,11,0,0,1,0,0,0,8,0,0,0,0,0,0,0,37,0,0,0,1,0,0,0,0,0,6,0,8,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,1,8,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,9,2,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,30,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,70,0,0,0,0,0,0,955,0,199,0,0,0,12,17,105,549,948,0,0,0,0,1,0,0,0,0,0,0,0,0,1993,0,0,0,0,0,0,0,0,0,8,0,0,9,0,0,0,0,0,0,2,0,51,55,393,40,0,0,422,0,620,0,0,0,326,77,0,0,0,0,0,0,0,0,0,423,1,0,0,0,7,0,0,0,0,6,173,308,0,0,177,0,42,0,0,0,2460,0,0,882,0,0,1,0,0,0,0,0,15,0,0,0,6,0,0,1,0,0,20,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,21,0,0,0,0,1,93,745,0,18,0,0,0,0,0,0,406,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,5,737,263,1 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,18,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,21,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,36,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,4,1 +6,0,0,11,0,58,15,0,70,7,20,0,0,6,19,1,693,0,7,1,0,0,0,9,0,11,6,0,17,0,7,0,0,0,19,3513,58,32,0,0,141,0,4,0,1,0,0,4,1,0,0,0,7,417,0,0,0,0,0,1,0,0,0,0,0,20,0,0,20402,58,888,0,20,0,0,0,0,0,37,0,0,0,0,0,9,46,3932,0,0,19,0,0,1,23,0,448,35,7,0,0,2,0,948,0,10,26,0,3476,0,0,0,0,25,0,4,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,3,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,40,12,12,12,0,0,0,1258,0,105,0,0,0,16,24,338,907,1223,0,0,0,0,1,0,6,0,0,0,0,0,0,714,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,89,57,358,13,0,0,352,0,462,0,0,0,183,27,0,0,0,0,0,0,0,0,0,831,1,0,6,0,10,0,0,0,0,7,161,78,0,0,62,0,0,0,0,0,2804,1,0,841,13,0,1,1,1,0,0,0,22,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,13,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,35,0,0,0,2,1,77,166,0,27,14,0,0,0,0,0,157,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1386,144,1 +2,0,0,0,0,30,4,0,8,0,1,0,1,0,2,0,15,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,5,0,30,6,0,0,38,0,0,0,1,0,0,0,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,0,0,0,750,30,28,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,62,0,0,5,0,0,0,0,0,78,0,0,0,0,2,0,31,0,0,0,0,622,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,10,10,0,0,0,37,0,35,0,0,0,0,3,183,307,42,0,0,0,0,1,0,3,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,17,10,96,0,0,0,111,0,219,0,0,0,34,1,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,113,20,0,0,0,0,0,0,0,0,63,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,0,0,0,0,0,1,35,49,0,2,8,0,0,0,0,0,28,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,27,1 +3,0,0,12,0,36,6,0,27,18,13,0,0,0,31,2,34,0,7,3,0,0,0,1,0,0,9,0,8,0,7,3,0,0,24,0,36,6,0,0,150,0,0,0,1,0,0,4,0,0,0,0,9,60,0,0,0,0,0,1,0,0,0,0,0,30,0,0,2851,36,152,0,18,0,0,0,0,0,12,0,0,0,0,0,3,8,613,0,0,24,0,0,1,10,0,145,10,4,0,0,2,0,209,0,23,0,0,751,0,0,0,0,25,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,2,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,380,0,108,0,0,0,18,28,67,264,393,0,0,0,0,1,0,0,0,0,0,0,0,0,593,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,38,212,16,0,0,242,0,356,0,0,0,180,37,0,0,0,0,0,0,0,0,0,120,1,0,0,0,4,0,0,0,0,8,123,118,0,0,18,0,0,0,0,0,221,0,0,578,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,29,0,0,0,0,1,60,255,0,27,0,0,0,0,0,0,111,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,3,412,168,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,62,0,0,0,0,0,1,0,0,0,0,0,2,0,0,395,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,52,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,246,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,62,0,56,0,0,0,4,10,32,174,71,0,0,0,0,1,0,0,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,107,3,0,0,114,0,188,0,0,0,40,9,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,59,0,0,50,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,113,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,108,21,1 +10,0,0,8,0,12,2,0,15,0,2,0,0,0,7,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,6,0,0,18,0,1,0,1,0,0,1,0,0,0,0,1,35,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1030,12,44,0,3,0,0,0,0,0,5,0,0,0,0,0,1,4,496,0,0,0,0,0,0,0,0,12,0,2,0,0,2,0,26,0,0,0,0,130,0,0,0,0,3,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,54,0,32,0,0,0,2,5,27,15,62,0,0,0,0,1,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,86,16,0,0,99,0,210,0,0,0,29,2,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,2,94,22,0,0,0,0,0,0,0,0,209,0,0,733,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,363,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,71,0,3,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,243,10,1 +0,0,0,9,0,30,3,0,23,0,2,0,0,2,80,0,27,0,6,3,0,0,0,5,0,8,6,0,3,0,3,0,0,0,6,0,30,6,0,0,24,0,0,0,1,0,0,9,0,0,0,0,3,160,0,0,0,0,0,1,0,0,0,0,0,3,0,0,9495,30,191,0,5,0,0,0,0,0,33,0,0,0,0,0,7,26,1798,0,0,6,0,0,0,0,0,83,5,14,1,0,2,0,221,0,0,0,0,1672,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,1129,0,104,0,0,0,4,10,155,33,1120,0,0,0,0,1,0,2,0,0,0,0,0,0,1872,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,1,0,32,10,368,10,0,0,240,0,512,0,0,0,138,101,0,0,0,0,0,0,0,0,0,143,1,0,0,0,8,0,0,0,0,1,112,98,0,0,0,0,0,0,0,0,500,0,0,2250,2,0,1,1,0,0,0,0,21,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,9,0,0,0,0,1,36,203,0,12,8,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,490069,120,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,32,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,1 +4,0,0,0,0,21,4,0,18,9,1,0,0,0,11,0,22,0,6,2,0,0,0,2,0,0,0,0,1,0,2,0,0,0,11,0,21,6,0,0,47,0,0,0,1,0,0,2,0,0,0,0,1,69,0,0,0,0,0,1,0,0,0,19,0,9,0,0,420,21,63,0,3,0,0,0,0,0,7,0,0,0,0,0,3,7,63,0,0,11,0,0,0,0,0,16,0,3,0,0,2,0,52,0,8,0,0,263,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,8,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,78,0,43,0,0,0,2,5,44,32,100,0,0,0,0,1,0,0,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,13,116,0,0,0,156,0,183,0,0,0,89,19,0,0,0,0,0,0,0,0,0,62,1,0,0,0,4,0,0,0,0,2,107,44,0,0,0,0,0,0,0,0,50,0,0,45,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,1,32,156,0,3,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,17,1 +6,0,0,6,2,43,7,8,31,19,6,0,0,0,29,1,24,0,7,6,0,2,1,2,0,0,0,0,7,0,12,0,0,2,29,0,45,6,4,0,86,0,0,0,1,0,0,7,0,0,0,0,11,217,0,0,0,0,0,1,0,0,0,12,0,30,0,0,3507,43,277,0,19,0,0,0,0,0,36,6,0,0,0,0,2,10,717,0,8,29,2,0,0,0,0,60,0,14,0,0,2,2,105,0,27,0,0,623,0,0,0,0,6,0,1,0,0,0,0,1,0,0,0,24,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,15,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,489,0,165,0,0,0,22,21,78,128,488,0,0,0,0,1,0,0,0,0,0,0,0,0,1329,0,0,0,0,0,0,0,0,0,0,0,0,7,0,4,0,0,0,0,0,0,8,36,285,8,0,0,308,0,388,0,0,0,197,24,0,0,0,0,0,0,17,0,0,105,1,0,0,0,11,0,0,0,0,8,138,62,0,0,0,0,0,0,0,0,258,0,0,721,0,0,1,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,29,0,0,0,10,17,74,305,0,19,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,19,0,0,0,0,0,0,0,0,0,0,0,3,0,7,652,97,1 +5,0,0,9,0,29,6,0,28,13,11,0,0,0,25,1,31,0,7,2,0,0,0,2,0,0,9,0,3,0,6,0,0,0,16,0,29,6,0,0,102,0,0,0,1,0,0,1,0,0,0,0,5,126,0,0,0,0,0,1,0,0,0,9,0,25,0,0,1123,29,123,0,9,0,0,0,0,0,9,0,0,0,0,0,3,5,118,0,0,16,0,0,1,8,0,106,15,3,0,0,2,0,170,0,19,0,0,531,0,0,0,0,27,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,120,0,51,0,0,0,10,21,57,110,128,0,0,0,0,1,0,0,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,44,177,11,0,0,188,0,283,0,0,0,112,17,0,0,0,0,0,0,0,0,0,109,1,0,0,0,4,0,0,0,0,6,119,59,0,0,29,0,0,0,0,0,97,0,0,114,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,15,0,0,0,0,1,45,275,0,18,0,0,0,0,0,0,76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,3,140,56,1 +1,0,0,7,0,43,91,0,34,0,90,0,0,7,6,0,66,0,6,2,0,0,0,8,0,11,0,0,19,0,1,0,0,0,4,1594,43,6,0,0,52,0,0,0,1,0,0,2,0,0,0,0,1,1664,0,0,0,0,0,1,0,0,0,0,0,6,0,0,51625,43,532,0,16,0,0,0,0,0,186,0,0,0,0,0,9,309,9017,0,0,4,0,0,0,0,0,1021,25,3,0,0,2,0,269,0,1,813,0,9365,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,2359,0,79,0,0,0,12,15,638,3685,2339,0,0,0,0,1,0,3,0,0,0,0,0,0,3334,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,108,17,257,7,0,0,421,0,310,0,0,0,264,7,0,0,0,0,0,0,0,0,0,300,1,0,0,0,10,0,0,0,0,1,148,45,0,0,790,0,0,0,0,0,4878,1,0,2752,92,0,1,1,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,92,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,51,0,0,0,0,1,47,261,0,17,14,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4288,54,1 +3,0,0,4,0,21,3,0,19,0,4,0,0,0,5,1,15,0,7,1,0,0,0,1,0,0,0,0,5,0,5,0,0,0,8,0,21,6,0,0,27,0,0,0,1,0,0,4,0,0,0,0,4,91,0,0,0,0,0,1,0,0,0,0,0,5,0,0,24831,21,71,0,10,0,0,0,0,0,17,0,0,0,0,0,1,6,5277,0,0,8,0,0,0,0,0,27,0,7,0,0,2,0,39,0,3,0,0,448,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3629,0,130,0,0,0,8,10,46,46,3649,0,0,0,0,1,0,0,0,0,0,0,0,0,7003,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,8,142,4,0,0,160,0,395,0,0,0,78,14,0,0,0,0,0,0,0,0,0,54,1,0,0,0,2,0,0,0,0,4,107,41,0,0,0,0,0,0,0,0,1765,0,0,6944,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,13,0,0,0,0,1,29,208,0,10,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3509,46,1 +0,0,0,5,0,12,6,0,29,2,7,0,0,0,7,0,19,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,40,0,0,28,0,0,0,1,0,0,3,0,0,0,0,0,96,0,0,0,0,0,1,0,0,0,0,0,8,0,0,688,12,81,0,1,0,0,0,0,0,17,0,0,0,0,0,1,5,98,0,0,2,0,0,1,8,0,83,15,5,0,0,2,0,81,0,3,0,0,329,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,98,0,60,0,0,0,0,3,29,68,110,0,0,0,0,1,0,0,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,12,9,123,5,0,0,170,0,203,0,0,0,99,8,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,0,95,92,0,0,29,0,0,0,0,0,162,0,0,106,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,312,0,1,0,0,0,0,0,0,47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,214,28,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,14,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,35,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,4,1 +45,0,0,7,6,68,15,24,78,17,9,0,0,6,24,0,68,0,7,19,0,6,3,7,0,8,6,0,24,0,28,1,0,6,31,0,74,9,86,0,114,0,0,0,1,0,0,4,1,0,0,0,29,212,0,0,0,0,0,1,0,0,0,32,0,27,0,0,8413,68,839,0,51,0,0,0,0,0,24,18,0,0,0,0,10,22,1853,0,24,31,6,0,0,0,0,230,20,12,1,0,2,6,229,0,21,0,0,1380,0,0,0,0,22,0,1,0,0,0,39,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,6,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,12,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,1048,0,121,0,0,0,56,33,276,54031,1053,0,0,0,0,1,0,3,0,0,0,0,0,0,2842,0,0,0,0,0,0,0,0,0,19,0,0,4,1,6,0,0,0,0,1,0,86,37,454,13,0,0,436,0,563,0,0,0,196,43,0,0,0,0,0,0,3,0,0,207,1,0,5,0,35,0,0,0,0,6,163,40,0,0,0,0,0,0,0,0,956,0,0,1804,3,0,1,1,0,0,0,0,15,0,0,0,3,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,78,0,0,0,0,49,105,212,0,58,9,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,21,0,0,0,0,0,0,0,0,0,0,0,10,0,1,1107,100,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,0,0,0,50,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,16,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,0,0,0,59,0,56,0,0,0,29,3,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,28,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,72,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,4,1 +2,0,0,5,0,33,5,0,20,0,4,0,0,2,7,1,18,0,7,3,0,0,0,5,0,8,0,0,5,0,12,0,0,0,6,0,33,6,0,0,44,0,0,0,1,0,0,1,0,0,0,0,12,104,0,0,0,0,0,1,0,0,0,0,0,8,0,0,731,33,69,0,16,0,0,0,0,0,8,0,0,0,0,0,7,13,91,0,0,6,0,0,0,0,0,103,5,2,0,0,2,0,59,0,5,0,0,540,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,72,0,44,0,0,0,22,21,193,46,70,0,0,0,0,1,0,3,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,32,17,156,5,0,0,163,0,266,0,0,0,53,8,0,0,0,0,0,0,0,0,0,64,1,0,0,0,8,0,0,0,0,8,119,24,0,0,0,0,0,0,0,0,73,0,0,43,2,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,26,0,0,0,16,1,39,144,0,17,8,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,142,29,1 +0,0,0,0,0,10,2,0,15,0,1,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,11,0,1,0,1,0,0,1,0,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,0,0,0,885,10,37,0,1,0,0,0,0,0,4,0,0,0,0,0,1,4,483,0,0,2,0,0,0,0,0,7,0,1,0,0,2,0,16,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,23,0,0,0,0,3,23,5,41,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,0,0,0,75,0,96,0,0,0,17,0,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,4,0,0,0,0,0,0,0,0,206,0,0,728,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,27,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,223,3,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,73,0,0,0,0,0,1,0,0,0,0,0,2,0,0,561,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,45,0,0,4,0,0,0,0,0,10,0,4,0,0,2,0,53,0,0,0,0,268,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,60,0,56,0,0,0,4,10,32,174,69,0,0,0,0,1,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,114,3,0,0,114,0,208,0,0,0,40,8,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,53,0,0,42,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,96,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,100,24,1 +4,0,0,5,2,27,6,8,22,4,5,0,0,0,10,0,25,0,6,6,0,2,1,2,0,0,0,0,2,0,2,0,0,2,12,0,29,6,18,0,37,0,0,0,1,0,0,1,1,0,0,0,1,109,0,0,0,0,0,1,0,0,0,11,0,11,0,0,278174,27,185,0,4,0,0,0,0,0,11,6,0,0,0,0,2,4,65,0,8,12,2,0,0,0,0,19,0,5,0,0,2,2,40,0,6,0,0,81252,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,12,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,77,0,47,0,0,0,2,5,55,806979,84,0,0,0,0,1,0,0,0,0,0,0,0,0,40136,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,11,401,7,0,0,176,0,302,0,0,0,68,31,0,0,0,0,0,0,0,0,0,74,1,0,2,0,11,0,0,0,0,2,113,9,0,0,0,0,0,0,0,0,75,0,0,45,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,4,0,0,0,0,17,41,24,0,4,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,3,0,2,102,15000,1 +0,0,0,0,0,25,4,0,6,0,1,0,1,0,2,0,12,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,6,0,0,19,0,0,0,1,0,0,0,0,0,0,0,1,54,0,0,0,0,0,1,0,0,0,0,0,0,0,0,395,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,66,0,0,1,0,0,0,0,0,68,0,0,0,0,2,0,21,0,0,0,0,357,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,21,0,0,0,0,3,176,8,41,0,0,0,0,1,0,3,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,17,10,75,0,0,0,82,0,126,0,0,0,13,1,0,0,0,0,0,0,0,0,0,32,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,61,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,20,1 +5,0,0,6,0,47,10,0,46,1,11,0,0,2,7,1,24,0,7,3,0,0,0,5,0,8,3,0,8,0,16,0,0,0,17,0,47,6,0,0,93,0,0,0,1,0,0,9,0,0,0,0,16,216,0,0,0,0,0,1,0,0,0,0,0,13,0,0,3131,47,190,0,22,0,0,0,0,0,46,0,0,0,0,0,7,22,546,0,0,17,0,0,1,23,0,323,20,14,0,0,2,0,197,0,5,0,0,1648,0,0,0,0,3,0,7,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,408,0,179,0,0,0,30,48,215,288,422,0,0,0,0,1,0,7,0,0,0,0,0,0,1112,0,0,0,0,0,0,0,0,0,0,0,0,20,1,0,0,0,0,0,1,0,32,17,220,6,0,0,330,0,398,0,0,0,211,15,0,0,0,0,0,0,4,0,0,108,1,0,0,0,8,0,0,0,0,12,133,174,0,0,29,0,0,0,0,0,262,0,0,490,3,0,1,1,0,0,0,0,21,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,74,0,0,0,20,1,64,573,0,26,9,0,0,0,0,0,167,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,9,622,75,1 +6,0,0,7,2,26,59,8,196,4,50,0,0,0,9,0,35,0,7,6,0,2,1,2,0,0,6,0,6,0,6,0,0,2,11,0,28,6,65,0,268,0,0,0,1,0,0,3,0,0,0,0,5,235,0,0,0,0,0,1,0,0,0,6,0,12,0,0,1684,26,499,0,12,0,0,0,0,0,13,6,0,0,0,1,2,8,208,0,8,11,2,0,1,159,0,1290,220,4,0,0,2,2,760,0,7,0,0,409,0,0,0,0,5,0,0,0,9,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,188,0,75,0,0,0,10,16,59,483,197,0,0,0,0,1,0,0,0,0,0,0,0,0,646,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,12,201,9,0,0,278,0,391,0,0,0,165,29,0,0,0,0,0,0,0,0,0,356,1,0,0,0,11,0,0,0,0,4,112,323,0,0,533,0,0,0,0,0,174,0,0,201,0,0,1,0,0,0,0,0,5,0,0,0,2,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,14,0,0,0,0,17,39,328,0,18,0,0,0,0,0,0,323,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,3,0,2,191,195,1 +3,0,0,0,3,20,51,2,67,6,6,0,0,0,10,0,121,0,10,1,0,0,0,1,0,18,4,0,12,0,1,0,0,2,11,0,22,121,0,0,71,0,0,0,0,0,0,0,0,0,0,0,18,98,0,0,0,0,0,1,0,0,0,0,0,3,0,0,181,20,208,0,31,0,0,0,0,0,0,0,0,0,0,0,1,1,26,0,2,11,2,0,2,0,0,127,0,0,0,0,7,3,112,0,5,0,0,204,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,25,0,32,0,0,0,18,24,42,78,45,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,32,391,3,0,0,388,0,1045,0,2,0,115,262,0,0,0,0,0,0,0,0,0,265,0,0,0,0,2,0,0,0,0,18,134,4,0,0,0,0,0,0,0,0,399,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,17,1,1,1,0,12,0,0,0,0,18,33,13,0,35,0,0,0,0,0,0,73,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,290,121,1 +1,0,0,9,0,26,3,0,26,8,4,0,0,0,14,0,15,0,6,1,0,0,0,5,0,0,0,0,3,0,4,0,0,0,16,0,26,6,0,0,43,0,0,0,1,0,0,2,0,0,0,0,3,91,0,0,0,0,0,1,0,0,0,5,0,15,0,0,1138,26,78,0,7,0,0,0,0,0,10,0,0,0,1,0,5,8,98,0,0,16,0,0,0,0,0,31,0,3,0,0,2,0,53,0,12,0,0,388,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,119,0,68,0,0,0,6,7,54,56,133,0,0,0,0,1,0,0,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,19,151,13,0,0,183,0,230,0,0,0,113,14,0,0,0,0,0,0,0,0,0,68,1,0,0,0,6,0,0,0,0,4,112,48,0,0,0,0,0,0,0,0,55,0,0,83,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,9,0,0,0,0,1,42,254,0,7,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,138,30,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,18,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,36,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,1 +3,0,0,4,2,22,3,2,35,2,5,0,0,0,6,0,31,0,6,5,0,4,0,2,0,0,0,0,5,0,2,0,0,2,11,0,24,6,0,0,32,0,0,0,1,0,0,1,0,0,0,0,1,59,0,0,0,0,0,1,2,0,0,6,0,7,0,0,336,22,184,0,7,0,0,0,0,0,6,6,0,0,0,0,2,4,35,0,2,11,2,0,0,0,0,22,0,2,0,0,2,2,41,0,4,0,0,452,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,49,0,43,0,0,0,2,5,44,32,59,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,9,193,6,0,0,198,0,223,0,0,0,79,5,0,0,0,0,0,0,0,0,0,86,1,0,0,0,11,0,0,0,0,2,109,18,0,0,0,0,0,0,0,0,64,0,0,41,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,7,0,0,0,0,17,35,167,0,7,0,0,0,0,0,0,38,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,79,37,1 +0,0,0,0,0,10,2,0,22,0,1,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,7,0,1,0,1,0,0,2,0,0,0,0,0,130,0,0,0,0,0,1,0,0,0,0,0,0,0,0,11665,10,49,0,1,0,0,0,0,0,8,0,0,0,0,1,1,6,2760,0,0,2,0,0,0,0,0,8,0,4,0,0,2,0,21,0,0,0,0,588,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1544,0,27,0,0,0,0,3,25,408,1554,0,0,0,0,1,0,0,0,0,0,0,0,0,3124,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,141,0,0,0,156,0,150,0,0,0,95,16,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,97,70,0,0,0,0,0,0,0,0,698,0,0,3400,0,0,1,0,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,171,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,329,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1234,21,1 +9,0,0,7,2,67,16,8,74,14,25,0,0,6,76,1,1489,0,8,7,0,2,1,10,0,13,0,0,33,0,31,0,0,2,19,2212,69,18,84,0,245,0,0,0,1,0,0,3,1,0,0,0,33,366,0,0,0,0,0,1,0,0,0,16,0,19,0,0,26735,67,1886,0,62,0,0,0,0,0,26,6,0,0,0,0,11,37,4817,0,8,19,2,0,0,0,0,366,20,19,0,0,2,2,1789,0,16,12,0,2819,0,0,0,0,55,0,1,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,7,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,69,12,12,12,0,0,0,2606,0,120,0,0,0,64,66,345,1022,2588,0,0,0,0,1,0,8,0,0,0,0,0,0,2268,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,108,151,527,10,0,0,453,0,584,0,0,0,220,199,0,0,0,0,0,0,0,0,0,1695,1,0,15,0,20,0,0,0,0,32,176,55,0,0,16,0,0,0,0,0,4071,1,0,179,9,0,1,1,0,0,0,0,27,0,0,0,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,9,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,84,1,1,1,0,95,0,0,0,6,17,88,335,0,63,14,0,0,0,0,0,165,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,18,0,0,0,0,0,0,0,0,0,0,0,3,0,0,127309,179,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,35,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,1 +6,0,0,4,4,26,3,4,50,1,8,0,0,0,8,1,47,0,7,9,0,8,0,1,0,0,0,0,9,0,10,0,0,4,11,0,30,6,0,0,40,0,0,0,1,0,0,2,0,0,0,0,9,56,0,0,0,0,0,1,4,0,0,2,0,8,0,0,982,26,362,0,19,0,0,0,0,0,11,12,0,0,0,0,1,5,113,0,4,11,4,0,0,0,0,46,0,3,0,0,2,4,64,0,6,0,0,407,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,117,0,59,0,0,0,18,16,60,52,123,0,0,0,0,1,0,0,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,11,303,8,0,0,328,0,325,0,0,0,148,23,0,0,0,0,0,0,0,0,0,124,1,0,0,0,18,0,0,0,0,6,140,41,0,0,0,0,0,0,0,0,145,0,0,197,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,27,0,0,0,10,33,41,129,0,19,0,0,0,0,0,0,50,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,1,0,0,0,0,0,0,0,0,0,0,0,8,0,2,182,83,1 +5,0,0,3,0,20,2,0,18,2,3,0,0,0,7,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,7,0,20,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,0,65,0,0,0,0,0,1,0,0,0,0,0,7,0,0,470,20,56,0,4,0,0,0,0,0,10,0,0,0,0,0,1,4,69,0,0,7,0,0,0,0,0,13,0,3,0,0,2,0,30,0,5,0,0,451,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,4,0,3,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,87,0,81,0,0,0,0,3,38,22,91,0,0,0,0,1,0,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,8,130,3,0,0,142,0,258,0,0,0,62,11,0,0,0,0,0,0,0,0,0,51,1,0,0,0,2,0,0,0,0,1,105,33,0,0,0,0,0,0,0,0,35,0,0,51,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,3,0,0,0,0,1,27,431,0,4,0,0,1,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,147,23,1 +0,0,0,2,0,9,2,0,14,0,2,0,0,0,2,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,134,9,35,0,1,0,0,0,0,0,4,0,0,0,0,0,2,4,26,0,0,0,0,0,0,0,0,9,0,2,0,0,2,0,13,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0,33,0,29,0,0,0,0,3,26,5,47,0,0,0,0,1,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,99,0,0,0,30,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,3,0,0,0,0,0,93,21,0,0,0,0,0,0,0,0,26,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,9,88,0,1,0,0,0,1,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,12,1 +2,0,0,7,0,27,3,0,16,4,7,0,0,0,15,1,17,0,7,1,0,0,0,1,0,0,0,0,4,0,11,0,0,0,13,0,27,514,0,0,59,0,3,0,1,0,0,3,1,0,0,0,10,65,0,0,0,0,0,1,0,0,0,0,0,13,0,0,17888,27,101,0,15,0,0,0,0,0,20,0,0,0,0,0,1,6,1700,0,0,13,0,0,0,0,0,55,0,7,0,0,2,0,195,0,9,0,0,10139,0,0,0,0,17,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,823,0,376,0,0,0,20,23,57,11060,824,0,0,0,0,1,0,0,0,0,0,0,0,0,2087,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,12,28,1318,9,0,0,314,0,505,0,0,0,234,190,0,0,0,0,0,0,0,0,0,66,1,0,3,0,2,0,0,0,0,11,114,174,0,0,0,0,0,0,0,0,995,0,0,2444,0,0,1,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,371,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,24,0,0,0,14,1,40,356,0,15,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,801,589,1 +10,0,0,10,0,13,2,0,18,0,2,0,0,0,7,0,14,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,13,6,0,0,21,0,1,0,1,0,0,2,0,0,0,0,1,57,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1042,13,51,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,502,0,0,0,0,0,0,0,0,14,0,2,0,0,2,0,26,0,0,0,0,149,0,0,0,0,3,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,64,0,42,0,0,0,2,5,28,16,75,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,5,89,19,0,0,89,0,150,0,0,0,17,4,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,2,95,9,0,0,0,0,0,0,0,0,214,0,0,744,0,0,1,0,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,363,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,13,74,0,3,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,273,8,1 +10,0,0,7,0,28,3,0,17,5,6,0,0,0,15,1,30,0,7,1,0,0,0,1,0,0,9,0,9,0,14,0,0,0,16,0,28,6,0,0,63,0,0,0,1,0,0,4,0,0,0,0,13,53,0,0,0,0,0,1,0,0,0,0,0,14,0,0,879,28,104,0,23,0,0,0,0,0,9,0,0,0,0,0,1,6,122,0,0,16,0,0,0,0,0,55,0,1,0,0,2,0,119,0,10,0,0,448,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,101,0,52,0,0,0,26,30,54,51,121,0,0,0,0,1,0,0,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,25,157,9,0,0,184,0,347,0,0,0,113,18,0,0,0,0,0,0,0,0,0,79,1,0,0,0,2,0,0,0,0,10,114,54,0,0,0,0,0,0,0,0,125,0,0,125,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,32,0,0,0,8,1,44,200,0,32,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,158,41,1 +4,0,0,5,2,36,7,8,29,6,6,0,0,0,15,1,24,0,7,6,0,2,1,2,0,0,0,0,5,0,12,0,0,2,20,0,38,6,27,0,69,0,0,0,1,0,0,1,0,0,0,0,11,72,0,0,0,0,0,1,0,0,0,8,0,16,0,0,382,36,204,0,17,0,0,0,0,0,6,6,0,0,0,0,2,4,45,0,8,20,2,0,0,0,0,46,0,1,0,0,2,2,71,0,13,0,0,563,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,58,0,64,0,0,0,22,20,71,71,67,0,0,0,0,1,0,0,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,8,20,234,7,0,0,221,0,274,0,0,0,106,23,0,0,0,0,0,0,0,0,0,89,1,0,0,0,11,0,0,0,0,8,129,18,0,0,0,0,0,0,0,0,103,0,0,27,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,27,0,0,0,8,17,58,104,0,17,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,3,0,1,113,58,1 +1,0,0,0,0,19,2,0,16,0,1,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,8,0,19,6,0,0,21,0,0,0,1,0,0,3,0,0,0,0,0,87,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1225,19,54,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,234,0,0,8,0,0,0,0,0,11,0,4,0,0,2,0,17,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,219,0,78,0,0,0,0,3,38,7,227,0,0,0,0,1,0,0,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,8,3,106,0,0,0,148,0,198,0,0,0,78,5,0,0,0,0,0,0,5,0,0,42,1,0,0,0,2,0,0,0,0,0,101,43,0,0,0,0,0,0,0,0,66,0,0,147,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,0,0,0,0,0,1,27,147,0,1,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,198,15,1 +3,0,0,10,2,23,65,2,115,10,30,0,1,0,21,0,118,0,10,1,0,0,0,2,0,0,0,0,5,0,1,0,0,2,13,0,25,133,0,0,149,0,0,0,1,0,0,1,0,0,0,0,0,79,0,0,0,0,0,1,0,0,0,0,0,22,0,0,527,23,284,0,6,0,0,0,0,0,13,0,0,0,0,0,2,4,45,0,2,13,2,0,9,48,0,522,90,1,0,0,8,2,305,0,14,0,0,425,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,61,0,112,0,0,0,0,3,52,402,76,0,0,0,0,1,0,0,0,0,0,0,0,0,515,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,228,71,436,14,0,0,489,0,799,0,2,0,184,18,0,0,0,0,0,0,0,0,0,360,1,0,0,0,3,0,0,0,0,1,143,133,0,0,174,0,1,0,0,0,264,0,0,20,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,21,1,1,1,0,5,0,0,0,0,17,38,131,0,6,0,0,0,0,0,0,178,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,22,0,0,0,0,0,0,0,0,0,0,0,2,0,1,353,184,1 +6,0,0,7,3,28,64,12,234,4,59,0,0,0,8,0,42,0,7,9,0,3,2,2,0,1,6,0,6,0,6,0,0,3,11,0,31,6,67,0,319,0,0,0,1,0,0,3,0,0,0,0,5,235,0,0,0,0,0,1,0,0,0,6,0,16,0,0,1645,28,628,0,13,0,0,0,0,0,13,9,0,0,0,1,3,9,200,0,12,11,3,0,2,187,0,1523,235,4,0,0,2,3,900,0,6,0,0,457,0,0,0,0,7,0,0,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,187,0,76,0,0,0,10,18,67,680,197,0,0,0,0,1,0,0,0,0,0,0,0,0,658,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,11,250,10,0,0,322,0,419,0,0,0,178,31,0,0,0,0,0,0,0,0,0,414,1,0,0,0,16,0,0,0,0,6,114,389,0,0,565,0,0,0,0,0,192,0,0,190,0,0,1,0,0,0,0,0,5,0,0,0,2,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,15,0,0,0,4,25,42,334,0,19,0,0,0,0,0,0,385,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,5,0,2,187,154,1 +10,0,0,6,0,12,3,0,14,0,5,0,0,0,4,1,16,0,7,1,0,0,0,1,0,0,0,0,3,0,6,0,0,0,2,0,12,36,0,0,15,0,0,0,1,0,0,4,0,0,0,0,5,56,0,0,0,0,0,1,0,0,0,0,0,3,0,0,838,12,79,0,9,0,0,0,0,0,20,0,0,0,0,0,1,8,109,0,0,2,0,0,0,0,0,20,0,6,0,0,2,0,33,0,1,0,0,284,0,0,0,0,3,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,127,0,76,0,0,0,10,9,32,16,126,0,0,0,0,1,0,0,0,0,0,0,0,0,381,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,22,120,6,0,0,142,0,180,0,0,0,77,14,0,0,0,0,0,0,0,0,0,50,1,0,0,0,2,0,0,0,0,2,98,52,0,0,0,0,0,0,0,0,57,0,0,87,0,0,1,0,0,0,0,0,14,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,13,0,0,0,8,1,14,175,0,9,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,949,124,1 +3,0,0,7,4,26,54,16,194,6,46,0,0,0,10,0,34,0,7,11,0,4,2,2,0,0,0,0,2,0,2,0,0,4,13,0,30,6,90,0,255,0,0,0,1,0,0,3,0,0,0,0,1,206,0,0,0,0,0,1,0,0,0,6,0,13,0,0,1164,26,597,0,4,0,0,0,0,0,15,12,0,0,0,0,2,7,202,0,16,13,4,0,1,145,0,1167,190,4,0,0,2,4,670,0,8,0,0,310,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,184,0,89,0,0,0,2,5,59,425,192,0,0,0,0,1,0,0,0,0,0,0,0,0,590,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,13,228,11,0,0,312,0,372,0,0,0,172,28,0,0,0,0,0,0,0,0,0,345,1,0,0,0,19,0,0,0,0,2,112,297,0,0,457,0,0,0,0,0,178,0,0,201,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,4,0,0,0,0,33,43,283,0,4,0,0,0,0,0,0,299,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,8,0,0,0,0,0,0,0,0,0,0,0,6,0,3,223,97,1 +4,0,0,4,0,33,5,0,25,2,3,0,0,2,6,0,33,0,6,3,0,0,0,5,0,8,9,0,5,0,4,0,0,0,9,0,33,6,0,0,34,0,0,0,1,0,0,3,0,0,0,0,4,139,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1103,33,96,0,7,0,0,0,0,0,16,0,0,0,0,0,7,16,153,0,0,9,0,0,0,0,0,92,5,5,0,0,2,0,97,0,4,0,0,631,0,0,0,0,7,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,122,0,81,0,0,0,6,20,187,33,120,0,0,0,0,1,0,4,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,14,164,4,0,0,187,0,303,0,0,0,85,21,0,0,0,0,0,0,0,0,0,80,1,0,0,0,8,0,0,0,0,4,118,43,0,0,0,0,0,0,0,0,123,0,0,86,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,14,0,0,0,0,1,42,253,0,17,9,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,225,38,1 +11,0,0,5,6,37,4,6,79,0,14,0,0,0,3,0,67,0,7,14,0,12,0,1,0,0,0,0,8,0,11,0,0,6,20,0,43,36,0,0,68,0,0,0,1,0,0,15,0,0,0,0,10,113,0,0,0,0,0,1,6,0,0,3,0,7,0,0,1895,37,628,0,19,0,0,0,0,0,63,18,0,0,0,0,2,30,482,0,6,20,6,0,1,13,0,206,15,18,0,0,2,6,130,0,1,0,0,572,0,0,0,0,14,2,4,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,14,0,0,0,0,0,0,374,0,219,0,0,0,20,23,89,195,393,0,0,0,0,1,0,0,0,0,2,0,0,0,993,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,15,4,387,11,0,0,417,0,642,0,0,0,189,17,0,0,0,0,0,0,0,0,0,174,1,0,0,0,27,0,0,0,0,11,122,72,0,0,29,0,0,0,0,0,872,0,0,490,0,0,1,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,12,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,28,0,0,0,10,49,63,105,0,19,0,0,0,0,0,0,143,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,2,0,0,0,0,0,0,0,0,0,0,0,12,0,15,612,98,1 +6,0,0,4,4,34,3,4,44,2,8,0,0,0,11,1,47,0,7,10,0,8,0,1,0,0,0,0,8,0,9,0,0,4,19,0,38,6,0,0,58,0,0,0,1,0,0,1,0,0,0,0,8,73,0,0,0,0,0,1,4,0,0,2,0,11,0,0,831,34,347,0,17,0,0,0,0,0,6,12,0,0,0,0,2,4,133,0,4,19,4,0,0,0,0,41,0,2,0,0,2,4,66,0,9,0,0,771,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,124,0,99,0,0,0,16,14,68,70,158,0,0,0,0,1,0,0,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,14,305,8,0,0,372,0,406,0,0,0,197,13,0,0,0,0,0,0,0,0,0,121,1,0,0,0,19,0,0,0,0,5,121,97,0,0,0,0,0,0,0,0,116,0,0,64,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,24,0,0,0,8,33,57,310,0,17,0,0,0,0,0,0,114,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,2,0,0,0,0,0,0,0,0,0,0,0,8,0,2,211,58,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,59,0,0,0,0,0,1,0,0,0,0,0,2,0,0,387,17,65,0,3,0,0,0,0,0,9,0,0,0,0,0,1,4,51,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,243,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,62,0,56,0,0,0,4,10,32,174,71,0,0,0,0,1,0,0,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,107,3,0,0,114,0,183,0,0,0,40,8,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,57,0,0,50,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,95,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,107,22,1 +0,0,0,5,0,12,2,0,25,0,3,0,0,0,4,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,11,0,0,0,1,0,0,4,0,0,0,0,0,74,0,0,0,0,0,1,0,0,0,0,0,3,0,0,846,12,66,0,1,0,0,0,0,0,14,0,0,0,0,1,1,9,166,0,0,2,0,0,0,0,0,10,0,7,0,0,2,0,26,0,1,0,0,115,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,136,0,52,0,0,0,0,3,28,7,142,0,0,0,0,1,0,0,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,8,4,97,6,0,0,152,0,221,0,0,0,84,9,0,0,0,0,0,1,5,0,0,54,1,0,0,0,2,0,0,0,0,0,102,52,0,0,0,0,0,0,0,0,65,0,0,170,0,0,1,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,260,0,1,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,201,21,1 +18,0,0,11,2,67,56,2,89,8,19,0,0,0,30,0,115,0,10,1,0,0,0,3,0,1,0,0,9,0,3,0,0,2,48,0,69,102,0,0,179,0,0,0,1,0,0,3,0,0,0,0,2,146,0,0,0,0,0,1,0,0,0,15,0,27,0,0,9114,67,272,0,13,0,0,0,0,0,16,0,0,0,0,0,3,7,2245,0,2,48,2,0,5,24,0,323,45,4,0,0,6,2,213,0,22,0,0,1467,0,0,0,0,33,1,1,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,1,0,0,0,5,0,0,1,4,0,5,0,14,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,1241,0,119,0,0,0,4,7,109,1360,1255,0,0,0,0,1,0,0,0,0,0,0,0,0,3012,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,216,84,581,15,0,0,643,0,921,0,2,0,315,13,0,0,0,0,0,0,8,0,0,319,1,0,0,0,4,0,0,0,0,3,210,92,0,0,87,0,2,0,0,0,924,0,0,1512,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,2,66,1,1,1,0,14,0,0,0,0,17,117,297,0,13,0,0,0,0,0,0,202,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,14,0,0,0,0,0,0,0,0,0,0,0,2,0,4,1420,230,1 +11,0,0,7,0,23,145,0,1552,1,430,0,0,0,8,0,16,0,7,1,0,0,0,1,0,1,0,0,6,0,8,0,0,0,12,0,23,6,0,0,2813,0,0,0,1,0,0,2,0,0,0,0,8,90,0,0,0,0,0,1,0,0,0,0,0,14,0,0,2944,23,2170,0,15,0,0,0,0,0,10,0,0,0,0,0,1,4,275,0,0,12,0,0,2,1537,0,11671,755,4,0,0,2,0,7297,0,6,0,0,575,0,0,0,0,9,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,185,0,51,0,0,0,15,14,43,9005,188,0,0,0,0,1,0,0,0,0,0,0,0,0,1943,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,417,170,8,0,0,305,0,349,0,0,0,233,19,0,0,0,0,0,0,4,0,0,2158,1,0,0,0,2,0,0,0,0,4,105,3790,0,0,1655,0,0,0,0,0,118,0,0,276,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,20,0,0,0,0,1,35,172,0,15,0,0,0,0,0,0,3242,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,204,58,1 +13,0,0,14,4,40,53,11,94,13,24,0,0,0,39,1,124,0,11,5,1,2,1,3,0,0,0,0,7,0,7,0,0,4,27,0,44,141,0,0,174,0,0,0,1,0,0,2,0,0,0,0,6,125,0,0,0,0,0,1,0,0,0,0,0,34,0,0,1442,40,404,0,14,0,0,0,0,0,10,6,0,0,0,0,3,6,154,0,11,27,4,0,4,15,0,247,30,4,0,0,6,4,208,0,25,0,0,736,0,0,0,0,14,0,2,0,0,0,0,1,0,0,0,8,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,60,0,0,0,0,0,0,151,0,85,0,0,0,12,11,87,207,182,0,0,0,0,1,0,0,0,0,0,0,0,0,715,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,223,97,528,20,0,0,575,0,843,0,2,0,248,24,0,0,0,0,0,0,0,0,0,346,1,0,0,0,12,0,0,0,0,4,155,95,0,0,63,0,0,0,0,0,341,0,0,179,0,0,1,0,0,0,0,0,6,0,1,0,3,0,0,0,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,46,1,1,1,0,19,0,0,0,2,25,71,332,0,14,0,0,0,0,0,0,221,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,17,0,0,0,0,0,0,0,0,0,0,0,6,0,3,286,96,1 +99,0,0,17,0,53,22,0,143,18,50,0,0,0,41,2,35,0,7,2,0,0,0,5,0,0,6,0,10,0,9,0,0,0,39,0,53,6,0,0,359,0,0,0,1,0,0,3,0,0,0,0,8,140,0,0,0,0,0,1,0,0,0,0,0,32,0,0,9012,53,333,0,19,0,0,0,0,0,17,0,0,0,0,0,6,12,1230,0,0,39,0,0,1,101,0,843,75,6,0,0,2,0,678,0,23,0,0,1282,0,0,0,0,35,37,0,0,12,0,0,1,0,0,0,9,0,0,0,0,0,0,0,37,0,0,0,1,0,0,0,0,0,6,0,7,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,1,2,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,7,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,31,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,57,0,0,0,0,0,0,955,0,135,0,0,0,16,21,98,688,963,0,0,0,0,1,0,0,0,0,0,0,0,0,2759,0,0,0,0,0,0,0,0,0,8,0,0,3,0,0,0,0,0,0,1,0,8,53,298,26,0,0,329,0,348,0,0,0,250,74,0,0,0,0,0,0,0,0,0,300,1,0,0,0,7,0,0,0,0,7,162,901,0,0,173,0,40,0,0,0,641,0,0,2128,0,2,1,0,0,0,0,0,7,0,0,0,2,0,0,1,0,0,19,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,24,0,0,0,0,1,92,368,0,25,0,0,0,0,0,0,354,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,853,236,1 +1,0,0,2,2,14,2,2,23,0,4,0,0,0,2,0,30,0,6,6,0,4,0,0,0,0,3,0,1,0,1,1,0,2,3,0,16,6,0,0,7,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,2,0,0,1,0,1,0,0,96,14,163,0,3,0,0,0,0,0,0,6,0,0,0,0,1,1,3,0,2,3,2,0,0,0,0,10,0,0,0,0,2,2,36,0,0,0,0,238,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8,0,0,0,0,0,0,19,0,23,0,0,0,2,8,36,12,28,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,122,4,0,0,119,0,162,0,0,0,30,1,0,0,0,0,0,0,0,0,0,67,0,0,0,0,10,0,0,0,0,1,96,4,0,0,0,0,0,0,0,0,52,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,6,0,0,0,0,17,19,7,0,6,0,0,0,0,0,0,17,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,43,12,1 +6,0,0,10,0,72,11,0,59,25,13,0,0,6,37,1,1183,0,7,1,0,0,0,10,0,11,0,0,17,0,9,0,0,0,30,3660,72,6,0,0,147,0,5,0,1,0,0,9,0,0,0,0,9,384,0,0,0,0,2,1,0,0,0,25,0,34,0,0,37466,72,1398,0,22,0,0,0,0,0,51,0,0,0,0,0,10,49,8252,0,0,30,0,0,0,0,0,283,20,11,0,0,2,0,1330,0,29,15,0,3751,0,0,0,0,31,0,4,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,5,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,12,12,12,0,0,0,3843,0,168,0,0,0,19,22,392,1880,3830,0,0,0,0,1,0,6,0,0,0,0,0,0,1986,0,0,0,0,0,0,0,0,0,0,0,0,9,1,2,0,0,0,0,1,0,84,76,417,12,0,0,445,0,487,0,0,0,271,32,0,0,0,0,0,0,2,0,0,1317,1,0,0,0,11,0,0,0,0,9,181,68,0,0,31,0,0,0,0,0,4530,1,0,3874,11,0,1,1,1,0,0,0,22,0,0,0,4,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,11,371,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,86,1,1,1,0,38,0,0,0,0,1,102,348,0,23,14,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,29,0,0,0,0,0,0,0,0,0,0,2,0,0,10,2311,209,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,7,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,67,0,0,0,0,0,1,0,0,0,0,0,2,0,0,539,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,51,0,0,7,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,268,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,64,0,58,0,0,0,4,10,32,174,73,0,0,0,0,1,0,0,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,121,3,0,0,114,0,203,0,0,0,49,6,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,58,0,0,58,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,24,148,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,111,23,1 +3,0,0,6,0,38,7,0,40,0,9,0,0,2,3,1,454,0,7,2,0,0,0,7,0,10,0,0,7,0,8,0,0,0,6,955,38,6,0,0,37,0,2,0,1,0,0,2,0,0,0,0,8,212,0,0,0,0,0,1,0,0,0,0,0,6,0,0,22088,38,537,0,12,0,0,0,0,0,17,0,0,0,0,0,8,19,4852,0,0,6,0,0,1,9,0,197,25,4,0,0,2,0,522,0,1,0,0,3127,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,12,12,12,0,0,0,1218,0,50,0,0,0,14,16,232,1245,1204,0,0,0,0,1,0,3,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,13,223,6,0,0,265,0,352,0,0,0,119,12,0,0,0,0,0,0,0,0,0,523,1,0,0,0,9,0,0,0,0,7,125,70,0,0,45,0,0,0,0,0,3157,1,0,889,6,0,1,1,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,6,368,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,18,0,0,0,10,1,44,189,0,13,12,0,0,0,0,0,42,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1842,55,1 +4,0,0,5,0,31,4,0,17,6,4,0,0,0,16,1,15,0,7,1,0,0,0,2,0,1,0,0,6,0,11,0,0,0,18,0,31,6,0,0,65,0,0,0,1,0,0,2,0,0,0,0,11,69,0,0,0,0,0,1,0,0,0,7,0,17,0,0,607,31,77,0,18,0,0,0,0,0,10,0,0,0,0,0,2,5,55,0,0,18,0,0,0,0,0,44,0,4,0,0,2,0,66,0,14,0,0,436,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,70,0,57,0,0,0,22,19,58,52,76,0,0,0,0,1,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,21,177,5,0,0,200,0,243,0,0,0,121,9,0,0,0,0,0,0,0,0,0,64,1,0,0,0,3,0,0,0,0,8,121,52,0,0,0,0,0,0,0,0,56,0,0,63,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,28,0,0,0,8,1,49,222,0,18,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,113,48,1 +3,0,0,4,4,22,8,10,45,2,7,0,0,0,6,0,41,0,6,10,0,6,1,2,0,0,0,0,2,0,2,0,0,4,8,0,26,6,6,0,26,0,0,0,1,0,0,1,0,0,0,0,1,47,0,0,0,0,0,1,2,0,0,6,0,7,0,0,222,22,344,0,4,0,0,0,0,0,7,12,0,0,0,0,2,4,22,0,10,8,4,0,0,0,0,23,0,1,0,0,2,4,42,0,4,0,0,282,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,41,0,49,0,0,0,2,5,54,25,54,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,9,234,8,0,0,234,0,267,0,0,0,78,16,0,0,0,0,0,0,0,0,0,113,1,0,0,0,19,0,0,0,0,2,108,16,0,0,0,0,0,0,0,0,72,0,0,9,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,4,0,0,0,0,33,34,35,0,4,0,0,0,0,0,0,30,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,2,0,0,0,0,0,0,0,0,0,0,0,7,0,1,92,26,1 +7,0,0,5,0,41,7,0,29,1,5,0,0,6,4,0,67,0,6,3,0,0,0,7,0,10,4,0,7,0,0,0,0,0,7,864,41,6,0,0,43,0,0,0,1,0,0,2,1,0,0,0,1,247,0,0,0,0,0,1,0,0,0,0,0,2,0,0,12861,41,148,0,5,0,0,0,0,0,23,0,0,0,0,0,9,20,1921,0,0,7,0,0,0,0,0,193,20,8,0,0,2,0,129,0,0,1,0,2293,0,0,0,0,5,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8,12,12,12,0,0,0,1015,0,76,0,0,0,0,6,264,1106,993,0,0,0,0,1,0,3,0,0,0,0,0,0,2791,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,16,250,5,0,0,272,0,343,0,0,0,121,10,0,0,0,0,0,0,0,0,0,124,1,0,5,0,10,0,0,0,0,1,124,51,0,0,6,0,0,0,0,0,662,1,0,1730,6,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,4,0,0,0,0,1,48,182,0,9,12,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,866,160,1 +16,0,0,4,0,66,6,0,36,8,3,0,0,2,13,0,691,0,6,4,0,0,0,6,0,10,0,0,13,0,9,0,0,0,22,976,66,6,0,0,98,0,0,0,1,0,0,6,0,0,0,0,9,237,0,0,0,0,0,1,0,0,0,0,0,14,0,0,24629,66,802,0,19,0,0,0,0,0,29,0,0,0,0,0,9,26,4504,0,0,22,0,0,0,0,0,138,5,9,2,0,2,0,746,0,11,0,0,2379,0,0,0,0,38,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,20,0,0,0,0,0,22,0,14,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,12,12,12,0,0,0,3134,0,132,0,0,0,16,19,301,545,3111,0,0,0,0,1,0,5,0,0,0,0,0,0,759,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,21,336,4,0,0,332,0,371,0,0,0,144,15,0,0,0,0,0,0,0,0,0,757,1,0,0,0,10,0,0,0,0,9,149,31,0,0,0,0,0,0,0,0,2280,1,0,164,6,0,1,1,0,0,0,0,11,0,0,0,3,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,6,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,71,1,1,1,0,26,0,0,0,0,1,88,168,0,20,12,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,6,941,53,1 +6,0,0,7,3,29,64,12,234,4,59,0,0,0,8,0,42,0,7,8,0,3,2,3,0,0,6,0,7,0,6,0,0,3,11,0,32,6,62,0,319,0,0,0,1,0,0,3,0,0,0,0,5,274,0,0,0,0,0,1,0,0,0,6,0,16,0,0,1666,29,624,0,13,0,0,0,0,0,13,9,0,0,0,1,3,9,203,0,12,11,3,0,2,187,0,1523,235,4,0,0,2,3,900,0,6,0,0,427,0,0,0,0,7,0,0,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,191,0,77,0,0,0,10,18,71,680,201,0,0,0,0,1,0,0,0,0,0,0,0,0,695,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,11,247,10,0,0,325,0,401,0,0,0,178,16,0,0,0,0,0,0,0,0,0,414,1,0,0,0,16,0,0,0,0,6,115,389,0,0,565,0,0,0,0,0,185,0,0,196,0,0,1,0,0,0,0,0,5,0,0,0,2,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,15,0,0,0,4,25,43,369,0,19,0,0,0,0,0,0,385,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,6,0,2,202,151,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,71,0,0,0,0,0,1,0,0,0,0,0,2,0,0,576,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,53,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,372,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,65,0,56,0,0,0,4,10,32,174,74,0,0,0,0,1,0,0,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,128,3,0,0,114,0,215,0,0,0,40,6,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,59,0,0,62,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,122,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,109,23,1 +12,0,0,7,8,81,75,14,123,10,74,0,0,8,18,0,376,0,7,19,0,14,1,9,0,11,0,0,71,0,5,0,0,8,33,6679,89,6,32,0,117,0,0,0,1,0,0,5,2,0,0,0,5,1003,0,0,0,0,0,1,6,0,0,15,0,18,0,0,45488,81,1527,0,72,0,0,0,1,0,155,24,0,0,0,0,10,363,7475,0,14,33,8,0,0,0,0,782,30,12,0,0,2,8,610,0,14,297,0,6187,0,0,0,0,6,0,4,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,12,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,3,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,32,12,12,12,0,0,0,2059,0,173,0,0,0,39,42,1504,2758,1984,0,0,0,0,1,0,3,0,0,0,0,0,0,2474,0,0,0,0,2,0,0,0,0,0,0,0,5,1,1,0,0,0,0,1,0,144,212,813,15,0,0,975,0,757,1,0,0,573,40,0,0,0,0,0,0,5,0,0,681,1,0,8,0,43,0,0,0,0,6,335,80,0,0,424,0,0,0,0,0,4520,1,0,1332,64,0,1,1,0,0,0,0,30,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,64,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,1,0,0,0,0,0,0,0,1,0,0,86,1,1,1,0,168,0,0,0,0,65,122,642,0,73,14,0,0,0,0,0,170,6,0,0,0,0,0,0,0,0,0,1,0,11,0,1,14,0,0,0,0,0,0,0,0,0,0,0,14,0,5,3478,149,1 +6,0,0,5,4,31,10,4,57,5,8,0,0,0,12,1,49,0,7,9,0,8,0,3,0,0,0,0,6,0,10,0,0,4,14,0,35,74,0,0,49,0,0,0,1,0,0,3,1,0,0,0,9,97,0,0,0,0,0,1,4,0,0,7,0,13,0,0,1861,31,390,0,16,0,0,0,0,0,20,12,0,0,0,0,3,8,113,0,4,14,4,0,0,0,0,48,0,9,0,0,2,4,103,0,10,0,0,1072,0,0,0,0,8,0,1,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,138,0,165,0,0,0,18,17,69,59,141,0,0,0,0,1,0,0,0,0,0,0,0,0,1128,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,30,17,393,9,0,0,323,0,371,0,0,0,129,38,0,0,0,0,0,0,0,0,0,144,1,0,3,0,20,0,0,0,0,6,123,27,0,0,0,0,0,0,0,0,217,0,0,71,0,0,1,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,24,0,0,0,8,33,49,259,0,16,0,0,0,0,0,0,75,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,5,0,0,0,0,0,0,0,0,0,0,0,7,0,2,303,88,1 +1,0,0,4,0,30,4,0,13,0,3,0,0,2,3,0,20,0,6,3,0,0,0,5,0,8,0,0,5,0,1,0,0,0,3,0,30,62,0,0,26,0,0,0,1,0,0,1,0,0,0,0,1,109,0,0,0,0,0,1,0,0,0,0,0,4,0,0,509,30,41,0,5,0,0,0,0,0,6,0,0,0,0,0,7,13,85,0,0,3,0,0,0,0,0,75,5,1,0,0,2,0,45,0,1,0,0,434,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,62,0,40,0,0,0,0,3,187,21,62,0,0,0,0,1,0,3,0,0,0,0,0,0,132,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,44,11,127,4,0,0,127,0,274,0,0,0,27,9,0,0,0,0,0,0,0,0,0,51,1,0,0,0,8,0,0,0,0,1,113,10,0,0,0,0,0,0,0,0,157,0,0,8,2,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,4,0,0,0,0,1,33,80,0,6,8,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,128,26,1 +2,0,0,10,0,46,9,0,44,2,10,0,0,6,13,1,739,0,7,1,0,0,0,9,0,11,0,0,12,0,5,0,0,0,7,2216,46,6,0,0,78,0,3,0,1,0,0,3,1,0,0,0,5,310,0,0,0,0,0,1,0,0,0,0,0,11,0,0,21916,46,848,0,13,0,0,0,1,0,22,0,0,0,0,0,9,33,4754,0,0,7,0,0,0,0,0,230,20,7,0,0,2,0,823,0,6,10,0,2193,0,0,0,0,20,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,40,12,12,12,0,0,0,2186,0,66,0,0,0,10,12,304,896,2160,0,0,0,0,1,0,3,0,0,0,0,0,0,414,0,0,0,0,1,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,84,37,272,12,0,0,284,0,351,0,0,0,118,11,0,0,0,0,0,0,0,0,0,829,1,0,3,0,10,0,0,0,0,5,138,26,0,0,15,0,0,0,0,0,2422,1,0,824,9,0,1,1,1,0,0,0,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,9,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,22,0,0,0,0,1,53,176,0,14,14,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,974,99,1 +4292,0,17,5,3,43,29,5,55,1,11,0,1,1,11,0,81,0,8,9,0,1,0,1,1,18,0,0,115,0,1,0,0,1,21,21,45,54,0,0,100,0,0,0,1,0,0,12,0,0,0,0,18,1485,0,0,0,0,0,1,0,0,0,0,0,11,0,0,53126,43,437,0,134,0,0,0,0,0,52,3,0,0,0,0,1,19,1254,0,5,21,1,0,2,13,0,328,15,15,0,0,5,3,255,0,6,0,0,86328,0,0,0,0,12834,0,0,0,0,0,0,1,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,4281,0,0,0,0,0,8554,0,4291,0,0,0,0,0,0,4284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,4280,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,908,5,186,0,0,0,18,20,68,26770,923,0,0,0,0,1,0,0,0,0,0,0,0,0,73199,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,1375,19,3685,8,0,0,4628,0,800,0,0,0,4191,151,0,0,0,0,0,0,0,0,0,197,1,0,0,0,12,0,0,0,0,18,3075,1335,0,18,34,0,0,0,0,0,890,0,0,712,0,0,1,0,0,0,0,0,27,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,115,0,0,0,0,17,66,7032,0,134,0,0,0,0,0,0,201,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,2,0,0,0,375,0,15,760,373,1 +3,0,0,5,0,23,5,0,15,3,4,0,0,0,11,1,15,0,7,1,0,0,0,2,0,0,0,0,4,0,8,0,0,0,10,0,23,6,0,0,39,0,0,0,1,0,0,1,0,0,0,0,7,58,0,0,0,0,0,1,0,0,0,5,0,12,0,0,480,23,62,0,12,0,0,0,0,0,6,0,0,0,0,0,2,4,37,0,0,10,0,0,0,0,0,25,0,2,0,0,2,0,50,0,9,0,0,317,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,51,0,46,0,0,0,14,13,49,31,58,0,0,0,0,1,0,0,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,16,154,5,0,0,127,0,226,0,0,0,53,13,0,0,0,0,0,0,0,0,0,58,1,0,0,0,3,0,0,0,0,4,113,8,0,0,0,0,0,0,0,0,50,0,0,31,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,18,0,0,0,8,1,33,104,0,12,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,43,1 +1,0,0,12,0,49,8,0,34,3,6,0,0,6,9,0,76,0,8,2,0,0,0,8,0,10,0,0,9,0,13,0,0,0,9,8085,49,6,0,0,58,0,0,0,1,0,0,10,0,0,0,0,13,418,0,0,0,0,0,1,0,0,0,8,0,7,0,0,41374,49,207,0,19,0,0,0,0,0,44,0,0,0,0,4,9,35,6797,0,0,9,0,0,0,0,0,254,20,15,0,0,2,0,145,0,4,9,0,2082,0,0,0,0,15,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,12,12,12,0,0,0,5475,0,109,0,0,0,25,27,294,574,5438,0,0,0,0,1,0,7,0,0,0,0,0,0,1289,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,1,0,94,23,304,15,0,0,420,0,512,0,0,0,244,19,0,0,0,0,0,0,0,0,0,147,1,0,0,0,10,0,0,0,0,12,150,128,0,0,10,0,7,0,0,0,1106,1,0,1009,6,0,1,1,1,0,0,0,19,0,0,0,4,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,33,0,0,0,0,1,58,606,0,20,12,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,5,896,80,1 +0,0,0,3,0,9,2,0,8,0,3,0,0,0,3,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,3,0,0,695,9,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,162,0,0,1,0,0,0,0,0,7,0,1,0,0,2,0,8,0,1,0,0,128,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,102,0,34,0,0,0,0,3,23,73,116,0,0,0,0,1,0,0,0,0,0,0,0,0,264,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,76,3,0,0,92,0,120,0,0,0,39,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,93,28,0,0,0,0,0,0,0,0,234,0,0,152,0,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,114,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,136,12,1 +2,0,0,4,0,16,3,0,16,1,4,0,0,0,7,1,15,0,7,1,0,0,0,1,0,0,0,0,3,0,8,0,0,0,5,0,16,6,0,0,24,0,0,0,1,0,0,2,0,0,0,0,7,56,0,0,0,0,0,1,0,0,0,0,0,7,0,0,433,16,58,0,11,0,0,0,0,0,7,0,0,0,0,0,1,4,50,0,0,5,0,0,0,0,0,23,0,2,0,0,2,0,40,0,5,0,0,214,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,57,0,39,0,0,0,14,12,36,24,63,0,0,0,0,1,0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,10,102,4,0,0,119,0,197,0,0,0,49,7,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,4,102,23,0,0,0,0,0,0,0,0,58,0,0,72,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,17,0,0,0,8,1,21,119,0,11,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,100,15,1 +2,0,0,0,0,15,3,0,3,1,1,0,0,0,3,0,13,0,7,2,0,0,0,0,0,0,0,0,1,0,6,0,0,0,5,0,15,6,0,0,34,0,0,0,1,0,0,0,0,0,0,0,5,27,0,0,0,0,0,1,0,0,0,0,0,1,0,0,155,15,30,0,7,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,5,0,0,0,0,0,26,0,0,0,0,2,0,24,0,1,0,0,176,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,19,0,26,0,0,0,10,12,36,28,26,0,0,0,0,1,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,66,0,0,0,75,0,144,0,0,0,39,4,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,6,97,23,0,0,0,0,0,0,0,0,25,0,0,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,11,0,0,0,4,1,20,66,0,7,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,16,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,63,0,0,0,0,0,1,0,0,0,0,0,2,0,0,518,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,46,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,273,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,61,0,55,0,0,0,4,10,32,174,70,0,0,0,0,1,0,0,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,114,3,0,0,114,0,212,0,0,0,40,10,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,56,0,0,46,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,76,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,102,23,1 +6,0,0,5,4,26,3,4,62,2,8,0,0,0,10,1,52,0,7,9,0,8,0,1,0,0,3,0,6,0,7,1,0,4,8,0,30,6,0,0,53,0,0,0,1,0,0,3,0,0,0,0,7,99,0,0,0,0,0,1,4,0,0,0,0,11,0,0,1212,26,358,0,14,0,0,0,0,0,12,12,0,0,0,1,1,6,90,0,4,8,4,0,0,0,0,32,0,4,0,0,2,4,79,0,8,0,0,746,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,98,0,98,0,0,0,14,31,58,145,117,0,0,0,0,1,0,0,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,13,339,9,0,0,334,0,402,0,0,0,152,11,0,0,0,0,0,0,0,0,0,143,1,0,0,0,18,0,0,0,0,3,112,81,0,0,0,0,0,0,0,0,128,0,0,104,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,69,0,0,0,8,33,38,269,0,17,0,0,0,0,0,0,60,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,2,0,0,0,0,0,0,0,0,0,0,0,8,0,2,213,48,1 +2,0,0,7,0,34,6,0,37,1,6,0,0,2,4,0,471,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,3,762,34,8,0,0,27,0,0,0,1,0,0,3,0,0,0,0,1,185,0,0,0,0,0,1,0,0,0,1,0,4,0,0,4856,34,532,0,2,0,0,0,0,0,19,0,0,0,0,0,8,19,914,0,0,3,0,0,0,0,0,89,5,6,0,0,2,0,485,0,1,0,0,1099,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,390,0,53,0,0,0,0,3,240,323,353,0,0,0,0,1,0,3,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,16,176,7,0,0,212,0,293,0,0,0,62,3,0,0,0,0,0,0,0,0,0,532,1,0,0,0,9,0,0,0,0,1,117,24,0,0,1,0,0,0,0,0,1288,1,0,50,6,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,1,0,0,0,0,1,37,126,0,3,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,391,43,1 +11,0,0,10,0,58,10,0,48,5,11,0,0,6,21,1,966,0,7,2,0,0,0,8,0,11,0,0,12,0,5,0,0,0,18,2229,58,6,0,0,114,0,0,0,1,0,0,3,0,0,0,0,5,329,0,0,0,0,0,1,0,0,0,0,0,18,0,0,20613,58,1094,0,13,0,0,0,0,0,24,0,0,0,0,0,9,33,4605,0,0,18,0,0,0,0,0,226,20,5,0,0,2,0,1070,0,13,10,0,2304,0,0,0,0,9,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,5,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,50,12,12,12,0,0,0,2457,0,77,0,0,0,10,12,311,2003,2433,0,0,0,0,1,0,3,0,0,0,0,0,0,2858,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,84,50,336,12,0,0,437,0,548,0,0,0,264,25,0,0,0,0,0,0,0,0,0,1070,1,0,0,0,10,0,0,0,0,4,154,138,0,0,15,0,0,0,0,0,3131,1,0,2339,9,0,1,1,0,0,0,0,5,0,0,0,1,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,22,0,0,0,0,1,76,585,0,14,14,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1769,94,1 +21,0,0,14,1,30,29,1,49,11,79,0,0,0,92,0,86,0,9,1,0,0,0,3,0,0,0,0,6,0,8,0,0,1,17,0,31,54,0,0,135,0,0,0,1,0,0,2,0,0,0,0,7,107,0,0,0,0,0,1,0,0,0,16,0,26,0,0,6828,30,331,0,14,0,0,0,0,0,15,0,0,0,0,0,3,6,1586,0,1,17,1,0,2,8,0,157,15,4,0,0,4,1,365,0,19,0,0,776,0,0,0,0,10,4,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,8,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,14,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,869,0,90,0,0,0,14,17,67,141,882,0,0,0,0,1,0,0,0,0,0,0,0,0,2239,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,2,111,55,350,18,0,0,365,0,522,0,1,0,174,29,0,0,0,0,0,0,6,0,0,344,1,0,0,0,4,0,0,0,0,8,139,74,0,0,29,0,1,0,0,0,885,0,0,1553,0,0,1,0,0,0,0,0,4,0,1,0,1,0,0,0,0,0,11,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,1,32,1,1,1,0,20,0,0,0,0,9,48,323,0,14,0,0,0,0,0,0,112,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,13,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1378,80,1 +3,0,0,15,2,61,57,2,98,2,18,0,0,6,16,0,770,0,10,2,0,0,0,11,0,11,0,0,11,0,1,0,0,2,22,1088,63,102,0,0,132,0,0,0,1,0,0,2,0,0,0,0,1,232,0,0,0,0,0,1,0,0,0,0,0,12,0,0,12895,61,910,0,8,0,0,0,0,0,15,0,0,0,0,0,12,24,2809,0,2,22,2,0,4,16,0,424,50,4,0,0,6,2,829,0,6,1,0,2158,0,0,0,0,33,0,1,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,937,0,86,0,0,0,0,3,320,1581,928,0,0,0,0,1,0,3,0,0,0,0,0,0,1588,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,292,110,603,19,0,0,634,0,961,0,2,0,238,10,0,0,0,0,0,0,0,0,0,975,1,0,0,0,13,0,0,0,0,1,207,54,0,0,64,0,1,0,0,0,2688,1,0,72,8,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,67,1,1,1,0,7,0,0,0,0,17,85,138,0,9,14,0,0,0,0,0,170,3,0,0,0,0,0,0,0,0,0,0,0,4,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1504,264,1 +53,0,0,11,3,32,78,3,97,21,96,0,3,0,126,1,207,0,13,1,0,0,0,2,0,1,0,0,9,0,15,0,0,3,20,0,35,159,0,0,140,0,0,0,1,0,0,4,0,0,0,0,14,144,0,1,0,0,0,1,0,0,0,34,0,39,0,0,1619,32,539,0,25,0,0,0,0,0,17,0,0,0,0,0,2,7,275,0,3,20,3,0,6,0,0,190,0,5,0,0,14,3,407,0,33,0,0,905,0,0,0,0,7,16,0,0,0,0,0,1,0,0,0,13,0,0,3,0,0,0,0,6,0,0,0,7,0,0,0,2,0,0,0,12,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,37,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,255,0,128,0,0,0,28,29,92,123,273,0,0,0,0,1,0,0,0,1,0,0,0,0,976,0,0,0,0,0,0,0,0,0,7,0,0,4,0,2,0,0,0,0,0,4,339,97,640,16,0,0,703,0,937,0,3,0,272,20,0,0,0,0,0,0,4,0,0,621,1,0,0,0,3,0,0,0,0,13,170,77,0,0,0,0,0,0,0,0,625,0,0,183,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,21,12,0,0,0,0,0,0,0,0,0,0,13,13,0,0,2,0,0,0,0,0,0,23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,3,36,1,1,1,0,38,0,0,0,0,39,55,384,0,25,0,0,0,0,0,0,154,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,21,0,0,0,0,0,0,0,0,0,0,0,3,0,4,884,184,1 +10,0,0,0,0,23,5,0,24,6,5,0,0,0,8,0,25,0,6,1,0,0,0,2,0,3,0,0,4,0,2,0,0,0,12,0,23,6,0,0,65,0,0,0,1,0,0,1,0,0,0,0,4,59,0,0,0,0,0,1,0,0,0,15,0,7,0,0,657,23,82,0,8,0,0,0,0,0,9,0,0,0,0,0,2,4,91,0,0,12,0,0,1,8,0,89,15,3,0,0,2,0,90,0,5,0,0,303,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,97,0,49,0,0,0,5,6,42,87,113,0,0,0,0,1,0,0,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,10,130,0,0,0,149,0,189,0,0,0,80,18,0,0,0,0,0,0,0,0,0,73,1,0,0,0,3,0,0,0,0,2,109,43,0,0,29,0,0,0,0,0,88,0,0,125,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,6,0,0,0,0,1,35,108,0,9,0,0,0,0,0,0,68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,3,121,50,1 +2,0,0,4,0,19,3,0,7,2,4,0,0,0,10,1,15,0,7,1,0,0,0,1,0,0,0,0,4,0,9,0,0,0,8,0,19,6,0,0,34,0,0,0,1,0,0,2,0,0,0,0,8,31,0,0,0,0,0,1,0,0,0,0,0,10,0,0,308,19,59,0,13,0,0,0,0,0,8,0,0,0,0,0,1,5,47,0,0,8,0,0,0,0,0,29,0,2,0,0,2,0,39,0,8,0,0,279,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,60,0,52,0,0,0,16,14,41,30,66,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,13,125,4,0,0,106,0,173,0,0,0,47,12,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,5,105,10,0,0,0,0,0,0,0,0,40,0,0,32,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,20,0,0,0,8,1,27,13,0,13,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,109,18,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,0,0,0,85,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,17,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,42,0,0,0,57,0,55,0,0,0,27,3,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,26,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,81,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,10,1 +7,0,0,8,2,60,65,8,153,10,45,0,0,6,22,0,103,0,8,8,0,2,2,9,0,10,0,0,7,0,2,0,0,2,22,4909,62,66,0,0,358,0,0,0,1,0,0,10,0,0,0,0,2,601,0,0,0,0,0,1,0,0,0,19,0,20,0,0,13368,60,642,0,6,0,0,0,0,0,46,6,0,0,6,0,12,37,2335,0,8,22,2,0,2,90,0,936,175,18,1,0,2,2,589,0,13,13,0,2495,0,0,0,0,6,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,1,0,0,0,1,0,0,6,0,7,0,1,0,1,24,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,10,12,12,12,0,0,0,1167,0,212,0,0,0,3,5,304,947,1320,0,0,0,0,1,0,6,0,0,1,0,0,0,1849,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,1,0,86,29,468,10,0,0,689,0,620,0,0,0,475,29,0,21,0,0,0,0,3,0,0,402,1,0,0,0,21,0,0,0,0,1,178,389,0,0,547,0,4,0,0,0,1240,1,0,1158,6,0,1,23,0,0,0,0,27,0,1,0,1,0,0,0,0,0,12,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,6,2,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,69,1,1,1,0,9,0,0,0,2,17,84,1069,0,7,12,0,0,0,0,0,511,3,0,0,0,0,0,0,0,0,0,0,0,4,0,1,18,22,0,0,0,0,0,0,0,0,0,0,4,0,9,1410,133,1 +0,0,0,4,0,15,2,0,10,0,3,0,0,0,4,0,17,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,4,0,15,6,0,0,13,0,0,0,1,0,0,1,1,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,5,0,0,132,15,37,0,2,0,0,0,0,0,3,0,0,0,0,0,1,4,30,0,0,4,0,0,0,0,0,7,0,3,1,0,2,0,14,0,2,0,0,146,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,47,0,38,0,0,0,0,3,34,11,54,0,0,0,0,1,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,85,4,0,0,84,0,235,0,0,0,23,4,0,0,0,0,0,0,0,0,0,42,1,0,5,0,2,0,0,0,0,1,97,2,0,0,0,0,0,0,0,0,31,0,0,16,0,0,1,0,0,0,0,0,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,1,0,0,0,0,1,19,4,0,2,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,73,37,1 +3,0,0,8,0,57,104,0,80,2,96,0,0,7,12,1,1464,0,7,1,0,0,0,9,0,11,3,0,27,0,8,0,0,0,15,3108,57,6,0,0,89,0,4,0,1,0,0,5,0,0,0,0,8,1824,0,0,0,0,0,1,0,0,0,0,0,12,0,0,202862,57,2083,0,30,0,0,0,0,0,209,0,0,0,0,0,9,288,10046,0,0,15,0,0,0,0,0,1034,25,7,0,0,2,0,1772,0,4,738,0,11385,0,0,0,0,2,0,5,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,1,11,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,12,12,12,0,0,0,2307,0,110,0,0,0,28,34,754,18466,2278,0,0,0,0,1,0,7,0,0,0,0,0,0,829,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,108,28,429,8,0,0,589,0,376,0,0,0,413,17,0,0,0,0,0,0,0,0,0,1771,1,0,0,0,10,0,0,0,0,4,207,67,0,0,775,0,0,0,0,0,7785,1,0,1318,98,0,1,1,1,0,0,0,20,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,98,369,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,89,0,0,0,8,1,72,500,0,35,14,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3927,138,1 +10,0,0,10,0,50,8,0,46,19,25,0,0,6,16,1,702,0,7,1,0,0,0,9,0,11,0,0,38,0,3,0,0,0,11,2059,50,6,0,0,92,0,2,0,1,0,0,2,0,0,0,0,3,221,0,0,0,0,0,1,0,0,0,0,0,13,0,0,34863,50,844,0,37,0,0,0,0,0,15,0,0,0,0,0,9,86,7453,0,0,11,0,0,0,0,0,323,20,3,0,0,2,0,807,0,8,16,0,5381,0,0,0,0,8,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,12,12,12,0,0,0,1987,0,57,0,0,0,20,22,371,2281,1964,0,0,0,0,1,0,4,0,0,0,0,0,0,683,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,135,259,12,0,0,281,0,333,0,0,0,115,11,0,0,0,0,0,0,0,0,0,811,1,0,0,0,10,0,0,0,0,2,137,35,0,0,81,0,0,0,0,0,4767,1,0,1239,8,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,8,363,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,86,0,0,0,0,1,61,262,0,38,14,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,23,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2876,65,1 +7,0,0,9,0,22,7,0,17,3,6,0,0,0,17,1,17,0,7,3,0,0,0,5,0,0,0,0,3,0,7,0,0,0,7,0,22,32,0,0,45,0,2,0,1,0,0,3,0,0,0,0,6,47,0,0,0,0,0,1,0,0,0,0,0,11,0,0,1306,22,79,0,10,0,0,0,0,0,8,0,0,0,0,0,7,13,546,0,0,7,0,0,0,0,0,49,0,3,0,0,2,0,79,0,7,0,0,364,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,97,0,61,0,0,0,12,15,61,62,108,0,0,0,0,1,0,0,0,0,0,0,0,0,326,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,13,46,154,23,0,0,149,0,304,0,0,0,71,11,0,0,0,0,0,0,0,0,0,72,1,0,0,0,8,0,0,0,0,7,108,38,0,0,0,0,0,0,0,0,273,0,0,755,0,0,1,0,1,0,0,0,3,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,15,0,0,0,8,1,29,103,0,10,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,310,177,1 +7,0,0,15,0,52,9,0,48,5,9,0,0,6,20,1,821,0,7,4,0,0,0,9,0,11,3,0,9,0,4,0,0,0,10,955,52,36,0,0,90,0,3,0,1,0,0,3,0,0,0,0,4,187,0,0,0,0,0,1,0,0,0,0,0,15,0,0,9164,52,926,0,9,0,0,0,0,0,18,0,0,0,0,0,12,32,2182,0,0,10,0,0,0,0,0,221,20,3,0,0,2,0,935,0,10,1,0,1895,0,0,0,0,24,0,1,0,2,0,0,1,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,44,12,12,12,0,0,0,809,0,80,0,0,0,7,14,296,811,792,0,0,0,0,1,0,3,0,0,0,0,0,0,422,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,89,54,307,26,0,0,285,0,477,0,0,0,111,12,0,0,0,0,0,0,0,0,0,921,1,0,0,0,13,0,0,0,0,4,139,40,0,0,6,0,0,0,0,0,2195,1,0,784,7,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,7,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,18,0,0,0,4,1,62,122,0,13,14,0,1,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,3,592,118,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,7,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,71,0,0,0,0,0,1,0,0,0,0,0,2,0,0,535,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,53,0,0,7,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,323,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,65,0,56,0,0,0,4,10,32,174,74,0,0,0,0,1,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,119,3,0,0,114,0,199,0,0,0,49,5,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,60,0,0,62,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,24,93,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,109,23,1 +2,0,0,3,0,21,2,0,6,1,3,0,0,0,9,0,24,0,7,2,0,0,0,0,0,0,9,0,3,0,5,0,0,0,11,0,21,6,0,0,28,0,0,0,1,0,0,0,0,0,0,0,4,24,0,0,0,0,0,1,0,0,0,0,0,9,0,0,120,21,58,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,11,0,0,0,0,0,12,0,0,0,0,2,0,80,0,7,0,0,272,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,16,0,32,0,0,0,8,15,38,14,26,0,0,0,0,1,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,82,3,0,0,74,0,143,0,0,0,38,4,0,0,0,0,0,0,0,0,0,51,0,0,0,0,2,0,0,0,0,2,103,4,0,0,0,0,0,0,0,0,72,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,8,0,0,0,0,1,32,12,0,17,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,9,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,19,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,18,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,37,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,4,1 +13,0,0,7,0,34,3,0,19,10,5,0,0,0,23,0,15,0,7,2,0,0,0,2,0,0,0,0,9,0,6,0,0,0,23,0,34,6,0,0,75,0,0,0,1,0,0,3,0,0,0,0,5,113,0,0,0,0,0,1,0,0,0,28,0,22,0,0,1781,34,94,0,15,0,0,0,0,0,14,0,0,0,0,0,3,8,366,0,0,23,0,0,0,0,0,44,0,3,0,0,2,0,77,0,18,0,0,484,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,12,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,8,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,252,0,104,0,0,0,10,12,66,65,257,0,0,0,0,1,0,0,0,0,0,0,0,0,804,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,31,193,9,0,0,203,0,298,0,0,0,132,31,0,0,0,0,0,0,7,0,0,72,1,0,0,0,4,0,0,0,0,6,127,41,0,0,0,0,0,0,0,0,126,0,0,342,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,19,0,0,0,0,1,57,303,0,15,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,354,73,1 +16,0,0,4,0,67,6,0,37,8,3,0,0,2,13,0,751,0,6,3,0,0,0,7,0,10,0,0,12,0,9,0,0,0,22,976,67,6,0,0,98,0,0,0,1,0,0,6,0,0,0,0,9,241,0,0,0,0,0,1,0,0,0,0,0,14,0,0,26121,67,860,0,18,0,0,0,0,0,28,0,0,0,0,0,9,26,4762,0,0,22,0,0,0,0,0,137,5,9,1,0,2,0,805,0,11,0,0,2507,0,0,0,0,38,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,20,0,0,0,0,0,23,0,14,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,32,12,12,12,0,0,0,3345,0,130,0,0,0,16,19,308,539,3324,0,0,0,0,1,0,5,0,0,0,0,0,0,695,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,21,334,4,0,0,333,0,376,0,0,0,143,19,0,0,0,0,0,0,0,0,0,818,1,0,0,0,10,0,0,0,0,9,150,31,0,0,0,0,0,0,0,0,2419,1,0,143,6,0,1,1,0,0,0,0,11,0,0,0,3,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,72,1,1,1,0,25,0,0,0,0,1,89,168,0,19,12,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,5,954,60,1 +2,0,0,3,0,54,11,0,57,2,9,0,0,6,17,1,1038,0,8,2,0,0,0,8,0,12,11,0,12,0,3,2,0,0,10,2216,54,6,0,0,153,0,0,0,1,0,0,4,1,0,0,0,5,355,0,0,0,0,0,1,0,0,0,0,0,4,0,0,20378,54,1184,0,13,0,0,0,0,0,28,0,0,0,0,0,9,41,3720,0,0,10,0,0,0,0,0,232,20,19,0,0,2,0,1207,0,3,16,0,2629,0,0,0,0,25,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,56,12,12,12,0,0,0,1816,0,105,0,0,0,10,35,313,933,1792,0,0,0,0,1,0,4,0,0,0,0,0,0,1469,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,84,98,349,3,0,0,365,0,481,0,0,0,154,52,0,0,0,0,0,0,0,0,0,1147,1,0,13,0,10,0,0,0,0,5,160,50,0,0,18,0,0,0,0,0,3576,1,0,197,9,0,1,1,0,0,0,0,26,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,9,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,56,0,0,0,0,1,64,356,0,26,14,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,968,72,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,31,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,32,0,0,0,0,3,21,4,20,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,38,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,4,1 +0,0,0,3,0,229,5,0,25,0,2,0,0,2,2,0,17,0,6,3,0,0,0,5,0,8,0,0,2,0,1,0,0,0,205,0,229,6,0,0,20,0,0,0,1,0,0,4,0,0,0,0,1,95,0,0,0,0,0,1,0,0,0,0,0,2,0,0,974,229,71,0,1,0,0,0,0,0,18,0,0,0,0,0,7,19,208,0,0,205,0,0,0,0,0,81,5,7,0,0,2,0,34,0,0,0,0,1839,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,163,0,291,0,0,0,0,3,381,217,174,0,0,0,0,1,0,4,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,10,749,3,0,0,751,0,414,0,0,0,653,143,0,0,0,0,0,0,6,0,0,59,1,0,0,0,8,0,0,0,0,0,313,18,0,0,0,0,0,0,0,0,90,0,0,68,3,0,1,1,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,230,1,1,1,0,0,0,0,0,0,1,434,287,0,2,9,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,6,256,242,1 +5,0,0,7,0,51,92,0,34,2,91,0,0,7,12,1,74,0,7,2,0,0,0,8,0,11,3,0,22,0,8,0,0,0,11,1594,51,6,0,0,70,0,0,0,1,0,0,3,0,0,0,0,8,1699,0,0,0,0,0,1,0,0,0,0,0,11,0,0,41661,51,585,0,26,0,0,0,0,0,191,0,0,0,0,0,9,290,8070,0,0,11,0,0,0,0,0,1010,25,4,0,0,2,0,329,0,8,757,0,5584,0,0,0,0,3,0,2,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,2200,0,122,0,0,0,26,29,651,3647,2181,0,0,0,0,1,0,4,0,0,0,0,0,0,1268,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,108,26,309,7,0,0,495,0,368,0,0,0,336,12,0,0,0,0,0,0,0,0,0,318,1,0,0,0,10,0,0,0,0,4,160,77,0,0,762,0,0,0,0,0,4020,1,0,925,92,0,1,1,0,0,0,0,10,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,92,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,71,0,0,0,8,1,62,387,0,30,14,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2928,68,1 +75,0,0,19,5,104,141,5,237,44,99,0,4,2,130,14,1002,0,17,4,0,0,0,9,0,16,0,0,20,0,5,0,0,5,63,978,109,362,0,0,474,0,0,0,1,0,0,16,0,0,0,0,11,633,0,0,0,0,0,1,0,0,0,56,0,72,0,0,43862,104,1645,0,26,0,0,0,0,0,106,0,0,0,0,0,12,36,7968,0,5,63,5,0,15,63,0,891,95,31,0,0,20,5,1461,0,59,0,0,4396,0,0,0,0,49,40,15,0,0,0,0,1,0,0,0,27,0,0,3,0,0,0,0,3,0,0,0,3,0,0,0,0,0,6,0,12,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,6,46,0,0,0,0,2,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,45,0,0,0,0,21,147,1,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,6,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,75,12,12,12,0,0,0,6374,0,450,0,0,0,14,15,387,2267,6569,0,0,0,0,1,0,5,0,0,0,0,0,0,4198,0,0,0,0,0,0,0,0,0,0,0,0,17,1,0,0,0,0,0,1,0,581,253,1289,28,0,0,1578,0,2362,0,5,0,796,39,0,0,0,0,0,0,0,0,0,1646,1,0,0,0,13,0,0,0,0,5,339,332,0,0,179,0,1,0,0,0,3315,1,0,861,6,0,1,3,0,0,0,0,39,0,0,0,1,0,0,0,0,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,6,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,130,1,1,1,0,25,0,0,0,0,41,172,1355,0,29,12,0,0,0,0,0,945,6,0,0,0,0,0,0,0,0,0,0,0,6,0,1,58,0,0,0,0,0,0,0,0,0,0,0,5,0,15,2603,619,1 +5,0,0,14,0,117,19,0,80,0,12,0,0,0,26,0,20,0,6,1,0,0,0,1,0,0,3,0,3,0,5,0,0,0,94,0,117,6,0,0,342,0,0,0,1,0,0,10,0,0,0,0,4,150,0,0,0,0,0,1,0,0,0,0,0,20,0,0,69525,117,172,0,8,0,0,0,0,0,43,0,0,0,0,2,1,15,486,0,0,94,0,0,0,0,0,26,0,17,0,0,2,0,111,0,1,0,0,19325,0,0,0,0,8,0,12,0,0,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,3,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,22,0,0,0,0,0,0,373,0,250,0,0,0,8,9,141,1630,380,0,0,0,0,1,0,0,0,0,0,0,0,0,1427,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,8,182,568,16,0,0,638,0,618,0,0,0,532,14,0,0,0,0,0,0,0,0,0,163,1,0,0,0,2,0,0,0,0,1,212,200,0,0,0,0,0,0,0,0,239,0,0,368,0,0,1,0,0,0,0,0,19,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,114,1,1,1,0,15,0,0,0,0,1,211,597,0,11,0,0,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,539,160,1 +21,0,0,14,0,263,10,0,60,6,10,0,0,6,16,0,667,0,7,5,0,0,0,11,0,10,6,0,21,0,16,1,0,0,216,950,263,14,0,0,479,0,0,0,1,0,0,6,0,0,0,0,17,271,0,0,0,0,0,1,0,0,0,25,0,18,0,0,33499,263,838,0,35,0,0,0,0,0,38,0,0,0,0,1,15,32,5280,0,0,216,0,0,1,8,0,344,35,13,0,0,2,0,836,0,11,0,0,5502,0,0,0,0,13,1,6,0,3,0,4,1,0,0,0,12,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,6,0,0,0,10,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,3,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,12,12,12,0,0,0,3717,0,349,0,0,0,32,37,516,219074,3689,0,0,0,0,1,0,12,0,0,1,0,0,0,4349,0,0,0,0,0,0,0,0,0,2,0,0,6,1,6,0,0,0,0,1,0,86,30,952,13,0,0,957,0,955,0,0,0,762,50,0,0,0,0,0,0,5,0,0,776,1,0,3,0,16,0,0,0,0,14,356,65,0,0,30,0,5,0,0,0,2486,1,0,1607,5,0,1,1,0,0,0,0,19,0,2,0,4,0,0,0,0,0,6,2,0,0,2,0,0,1,0,0,0,0,0,0,0,0,12,0,0,0,0,0,5,22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,274,1,1,1,0,48,0,0,0,14,1,479,520,0,42,12,0,0,0,0,0,495,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1524,111,1 +0,0,0,2,0,9,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,63,0,0,0,0,0,1,0,0,0,0,0,1,0,0,93,9,41,0,1,0,0,0,0,0,6,0,0,0,0,1,1,5,27,0,0,0,0,0,0,0,0,8,0,3,0,0,2,0,15,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,30,0,0,0,0,3,25,4,45,0,0,0,0,1,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,66,2,0,0,77,0,99,0,0,0,15,0,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,91,7,0,0,0,0,0,0,0,0,27,0,0,14,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,139,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,68,15,1 +7,0,0,9,0,35,6,0,39,0,3,0,0,2,10,0,64,0,12,4,0,0,0,7,0,12,0,0,5,0,6,0,0,0,3,4,35,6,307,0,36,0,0,0,1,0,0,1,0,0,0,0,2,156,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1790,35,113,0,8,0,0,0,0,0,12,0,0,0,0,0,10,21,373,0,0,3,0,0,0,0,0,104,5,1,0,0,2,0,85,0,0,0,0,1349,0,0,0,0,4,1,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,4,12,12,12,0,0,0,113,0,99,0,0,0,0,14,270,1243,106,0,0,0,0,1,0,3,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,79,14,287,23,0,0,296,0,286,0,0,0,129,1849,0,0,0,0,0,0,0,0,0,136,1,0,0,0,11,0,0,0,0,0,165,35,0,0,0,0,0,0,0,0,287,1,0,54,6,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,6,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,8,0,0,0,0,2,38,112,0,10,13,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,310,50,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,0,0,0,47,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,16,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,0,0,0,59,0,55,0,0,0,29,3,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,28,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,72,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,4,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,36,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,35,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,43,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,3,1 +0,0,0,5,0,13,2,0,25,0,3,0,0,0,4,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,13,6,0,0,11,0,0,0,1,0,0,4,0,0,0,0,0,68,0,0,0,0,0,1,0,0,0,0,0,3,0,0,926,13,66,0,1,0,0,0,0,0,14,0,0,0,0,1,1,9,190,0,0,2,0,0,0,0,0,10,0,7,0,1,2,0,26,0,1,0,0,145,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,148,0,55,0,0,0,0,3,32,7,153,0,0,0,0,1,0,0,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,8,4,100,6,0,0,153,0,210,0,0,0,82,12,0,0,0,1,0,0,5,0,0,54,1,0,0,0,2,0,0,0,0,0,101,52,0,0,0,0,0,0,0,0,74,0,0,199,0,0,1,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,15,248,0,1,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,206,20,1 +0,0,0,4,0,11,6,0,45,0,10,0,0,0,4,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,63,0,0,0,1,0,0,3,0,0,0,0,0,80,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1413,11,97,0,1,0,0,0,0,0,14,0,0,0,0,0,1,6,78,0,0,1,0,0,1,23,0,194,15,5,0,0,2,0,137,0,1,0,0,514,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,84,0,60,0,0,0,0,3,25,162,95,0,0,0,0,1,0,0,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,24,100,4,0,0,175,0,227,0,0,0,108,9,0,0,0,0,0,0,0,0,0,86,1,0,0,0,2,0,0,0,0,0,95,138,0,0,26,0,0,0,0,0,45,0,0,86,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,295,0,1,0,0,0,0,0,0,78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,140,22,1 +7,0,0,5,0,34,32,0,55,3,9,0,0,2,10,0,20,0,8,3,0,0,0,6,0,8,0,0,4,0,3,0,0,0,10,0,34,6,0,0,120,0,0,0,1,0,0,3,0,0,0,0,3,102,0,0,0,0,0,1,0,0,0,4,0,11,0,0,6124,34,147,0,5,0,0,0,0,0,18,0,0,0,0,0,8,17,1456,0,0,10,0,0,2,36,0,373,25,5,0,0,2,0,235,0,6,0,0,763,0,0,0,0,7,0,0,0,1,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,780,0,58,0,0,0,4,6,195,231,780,0,0,0,0,1,0,4,0,0,0,0,0,0,1968,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,18,159,5,0,0,213,0,320,0,0,0,108,8,0,0,0,0,0,0,0,0,0,136,1,0,0,0,9,0,0,0,0,2,118,116,0,0,40,0,0,0,0,0,425,0,0,1351,3,0,1,1,0,0,0,0,6,0,1,0,1,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,6,0,0,0,0,1,44,169,0,6,9,0,0,0,0,0,129,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,3,953,40,1 +4,0,0,10,0,42,8,0,46,0,6,0,0,6,5,0,707,0,6,4,0,0,0,9,0,11,0,0,9,0,3,0,0,0,3,2316,42,36,0,0,47,0,0,0,1,0,0,1,0,0,0,0,3,269,0,0,0,0,0,1,0,0,0,0,0,2,0,0,9361,42,780,0,8,0,0,0,0,0,13,0,0,0,0,0,12,33,1693,0,0,3,0,0,0,0,0,223,20,1,0,0,2,0,773,0,0,12,0,1870,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,12,12,12,0,0,0,607,0,49,0,0,0,6,9,293,843,587,0,0,0,0,1,0,3,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,89,27,245,15,0,0,251,0,339,0,0,0,83,13,0,0,0,0,0,0,0,0,0,784,1,0,0,0,13,0,0,0,0,3,134,11,0,0,16,0,0,0,0,0,2092,1,0,29,9,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,15,0,0,0,4,1,45,48,0,9,14,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,611,86,1 +10,0,0,7,0,109,11,0,43,6,6,0,0,6,18,0,851,0,7,2,0,0,0,9,0,10,0,0,11,0,9,0,0,0,66,7297,109,6,0,0,135,0,0,0,1,0,0,5,0,0,0,0,9,429,0,0,0,0,0,1,0,0,0,19,0,17,0,0,55083,109,977,0,17,0,0,0,0,0,33,0,0,0,0,1,10,33,9540,0,0,66,0,0,0,0,0,244,20,9,0,0,2,0,937,0,13,15,0,3381,0,0,0,0,42,0,4,0,0,0,0,1,0,0,0,7,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,2,0,0,3,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,7421,0,177,0,0,0,17,16,427,781,7426,0,0,0,0,1,0,12,0,0,0,0,0,0,697,0,0,0,0,0,0,0,0,0,3,0,0,5,1,0,0,0,0,0,1,6,86,31,537,7,0,0,537,0,512,0,0,0,363,24,0,0,0,0,0,0,0,0,0,942,1,0,0,0,11,0,0,0,0,9,219,67,0,0,13,0,3,0,0,0,3180,1,0,129,9,0,1,1,0,0,0,0,10,0,0,0,2,0,0,0,0,0,9,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,9,17,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,121,1,1,1,0,27,0,0,0,0,1,175,418,0,18,12,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1252,131,1 +4,0,0,8,0,31,5,0,28,13,10,0,0,0,26,1,31,0,7,1,0,0,0,2,0,0,9,0,3,0,6,0,0,0,18,0,31,6,0,0,103,0,0,0,1,0,0,1,0,0,0,0,5,126,0,0,0,0,0,1,0,0,0,8,0,27,0,0,991,31,122,0,9,0,0,0,0,0,9,0,0,0,0,0,2,4,109,0,0,18,0,0,1,8,0,104,15,3,0,0,2,0,169,0,21,0,0,573,0,0,0,0,27,0,0,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,114,0,53,0,0,0,10,22,60,108,122,0,0,0,0,1,0,0,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,40,180,10,0,0,194,0,285,0,0,0,118,13,0,0,0,0,0,0,0,0,0,108,1,0,0,0,3,0,0,0,0,6,121,59,0,0,29,0,0,0,0,0,83,0,0,91,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,17,0,0,0,0,1,49,279,0,18,0,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,3,132,55,1 +7,0,0,7,2,20,6,8,47,2,14,0,0,0,13,0,25,0,6,6,0,2,1,2,0,0,0,0,2,0,3,0,0,2,9,0,22,6,11,0,53,0,0,0,1,0,0,2,0,0,0,0,2,58,0,0,0,0,0,1,0,0,0,9,0,12,0,0,183,20,219,0,5,0,0,0,0,0,5,6,0,0,0,1,2,6,36,0,8,9,2,0,2,17,0,176,35,3,0,0,2,2,126,0,5,0,0,193,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,51,0,42,0,0,0,4,6,46,139,63,0,0,0,0,1,0,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,10,158,9,0,0,160,0,201,0,0,0,62,6,0,0,0,0,0,0,0,0,0,111,1,0,0,0,11,0,0,0,0,3,106,40,0,0,74,0,0,0,0,0,57,0,0,17,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,6,0,0,0,0,17,31,34,0,5,0,0,0,0,0,0,62,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,247,17,1 +2,0,0,10,0,52,10,0,47,3,11,0,0,6,16,1,879,0,7,1,0,0,0,9,0,12,0,0,12,0,6,0,0,0,11,3663,52,6,0,0,86,0,4,0,1,0,0,4,0,0,0,0,7,459,0,0,0,0,0,1,0,0,0,0,0,13,0,0,17753,52,1012,0,15,0,0,0,0,0,30,0,0,0,0,0,9,42,3714,0,0,11,0,0,0,0,0,250,20,7,0,0,2,0,972,0,8,15,0,2950,0,0,0,0,16,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,46,12,12,12,0,0,0,1215,0,86,0,0,0,15,17,317,1353,1194,0,0,0,0,1,0,4,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,2,0,84,42,310,12,0,0,377,0,413,0,0,0,201,6,0,0,0,0,0,0,0,0,0,977,1,0,0,0,10,0,0,0,0,7,154,81,0,0,22,0,0,0,0,0,3060,1,0,901,11,0,1,1,1,0,0,0,9,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,11,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,29,0,0,0,8,1,63,340,0,16,14,0,1,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1304,113,1 +0,0,0,0,0,25,6,0,18,0,3,0,1,0,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,6,0,0,41,0,0,0,1,0,0,0,0,0,0,0,1,91,0,0,0,0,0,1,0,0,0,0,0,2,0,0,556,25,39,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,70,0,0,1,0,0,0,11,0,149,0,0,0,0,2,0,77,0,0,0,0,445,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,37,0,34,0,0,0,0,3,176,75,44,0,0,0,0,1,0,4,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,17,10,84,0,0,0,120,0,198,0,0,0,48,4,0,0,0,0,0,0,0,0,0,49,0,0,0,0,8,0,0,0,0,0,107,70,0,0,0,0,0,0,0,0,71,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,106,0,2,8,0,0,0,0,0,49,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,27,1 +0,0,0,2,0,17,2,0,14,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,5,0,17,6,0,0,11,0,5,0,1,0,0,5,1,0,0,0,0,85,0,0,0,0,0,1,0,0,0,0,0,1,0,0,147384,17,77,0,2,0,0,0,0,0,27,0,0,0,0,0,1,10,50106,0,0,5,0,0,0,0,0,17,0,8,0,0,2,0,15,0,0,0,0,39934,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30202,0,92,0,0,0,0,3,35,9,30195,0,0,0,0,1,0,0,0,0,0,0,0,0,3128,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,0,8,3,152,2,0,0,174,0,155,0,0,0,100,21,0,0,0,0,0,0,4,0,0,42,1,0,3,0,2,0,0,0,0,1,113,55,0,0,0,0,0,0,0,0,20190,0,0,4293,0,0,1,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,1,0,0,0,0,1,22,284,0,2,0,0,1,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,20858,44,1 +9,0,0,9,0,60,10,0,22,6,8,0,0,6,21,1,65,0,7,3,0,0,0,8,0,10,0,0,11,0,10,0,0,0,24,4920,60,6,0,0,106,0,0,0,1,0,0,1,0,0,0,0,10,358,0,0,0,0,0,1,0,0,0,13,0,20,0,0,10131,60,143,0,18,0,0,0,0,0,13,0,0,0,0,0,10,23,1645,0,0,24,0,0,0,0,0,223,20,2,0,0,2,0,160,0,16,11,0,1804,0,0,0,0,14,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,4,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,793,0,75,0,0,0,19,17,292,448,789,0,0,0,0,1,0,7,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,86,38,355,9,0,0,333,0,413,0,0,0,179,9,0,0,0,0,0,0,0,0,0,140,1,0,0,0,11,0,0,0,0,6,178,19,0,0,11,0,3,0,0,0,762,1,0,54,6,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,13,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,29,0,0,0,8,1,84,99,0,19,12,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,716,63,1 +11,0,0,19,0,87,39,0,249,23,81,0,0,14,42,1,1094,0,7,3,0,0,0,12,0,11,6,0,28,0,16,0,0,0,32,1531,87,6,0,0,473,0,0,0,1,0,0,5,0,0,0,0,16,276,0,1,0,0,0,1,0,0,0,24,0,63,0,0,23487,87,1582,0,40,0,0,0,0,0,37,0,0,0,0,1,14,71,3613,0,0,32,0,0,7,159,0,1861,180,8,0,0,2,0,2114,0,32,89,0,3411,0,0,0,0,49,0,0,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,18,0,1,0,9,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,2,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,6,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,56,12,12,12,0,0,0,1707,0,133,0,0,0,35,44,469,2190,1698,0,0,0,0,1,0,3,0,0,0,0,0,0,3216,0,0,0,0,0,0,0,0,0,0,0,0,5,1,18,0,0,0,0,1,0,246,75,466,23,0,0,503,0,606,0,0,0,286,142,0,0,0,0,0,0,0,0,0,1527,1,0,0,0,15,0,0,0,0,16,192,465,0,0,459,0,1,0,1,0,5264,1,0,3058,14,0,1,1,0,0,0,0,9,0,0,0,2,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,14,19,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,101,1,1,1,0,72,0,0,0,0,1,119,318,0,47,14,0,0,0,0,0,550,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,52,0,0,0,0,0,0,0,0,0,0,0,0,0,6,2101,264,1 +6,0,0,7,3,27,64,12,234,4,59,0,0,0,8,0,42,0,7,9,0,3,2,2,0,0,6,0,7,0,6,0,0,3,11,0,30,6,62,0,319,0,0,0,1,0,0,3,0,0,0,0,5,211,0,0,0,0,0,1,0,0,0,6,0,16,0,0,1658,27,626,0,13,0,0,0,0,0,13,9,0,0,0,1,3,9,206,0,12,11,3,0,2,187,0,1523,235,4,0,0,2,3,900,0,6,0,0,539,0,0,0,0,7,0,0,0,4,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,187,0,75,0,0,0,10,18,63,680,197,0,0,0,0,1,0,0,0,0,0,0,0,0,680,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,11,246,10,0,0,319,0,411,0,0,0,178,19,0,0,0,0,0,0,0,0,0,414,1,0,0,0,16,0,0,0,0,6,113,389,0,0,565,0,0,0,0,0,184,0,0,192,0,0,1,0,0,0,0,0,5,0,0,0,2,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,15,0,0,0,4,25,41,264,0,19,0,0,0,0,0,0,385,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,6,0,2,191,150,1 +38,0,0,5,6,160,64,24,218,10,51,0,1,4,30,0,1465,0,8,19,0,6,3,9,0,15,11,0,31,0,35,0,0,6,87,4864,166,48,111,0,531,0,0,0,1,0,0,7,0,0,0,0,39,476,0,0,0,0,0,1,0,0,0,24,0,27,0,0,93394,160,2722,0,66,0,0,0,0,0,45,18,0,0,0,0,12,40,15809,0,24,87,6,0,1,119,0,1299,200,12,0,0,2,6,2160,0,15,14,0,3587,0,0,0,0,20,9,3,0,1,0,0,1,0,0,0,22,0,0,1,0,0,0,0,4,0,0,0,1,0,0,0,4,0,0,0,14,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,1,0,0,6,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,74,12,12,12,0,0,0,13851,0,244,0,0,0,74,55,448,1078,13836,0,0,0,0,1,0,11,0,0,0,0,0,0,2395,0,0,0,0,0,0,0,0,0,4,0,0,7,1,3,0,0,0,0,1,2,76,88,813,136,0,0,897,0,897,0,0,0,526,74,0,0,0,0,0,0,9,0,0,1841,1,0,0,0,37,0,0,0,0,29,272,300,0,0,549,0,3,0,0,0,4670,1,0,1240,10,0,1,1,0,0,0,0,21,0,0,0,1,0,0,0,0,0,11,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,10,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0,1,0,0,172,1,1,1,0,104,0,0,0,12,49,253,387,0,78,14,0,0,0,0,0,376,1,0,0,0,0,0,0,0,0,0,1,0,8,0,1,14,0,0,0,0,0,0,0,0,0,0,0,9,0,7,1572,400,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,130,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1753,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,53,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,497,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,64,0,55,0,0,0,4,10,32,174,73,0,0,0,0,1,0,0,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,118,3,0,0,114,0,510,0,0,0,40,13,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,61,0,0,62,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,130,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,108,25,1 +4,0,0,9,1,34,37,1,94,11,34,0,1,0,26,0,69,0,9,1,0,0,0,2,0,0,0,0,5,0,3,0,0,1,21,0,35,92,0,0,168,0,0,0,1,0,0,3,0,0,0,0,2,99,0,0,0,0,0,1,0,0,0,0,0,27,0,0,2610,34,249,0,8,0,0,0,0,0,18,0,0,0,0,0,2,6,1339,0,1,21,1,0,8,48,0,489,90,5,0,0,6,1,319,0,18,0,0,778,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,749,0,100,0,0,0,4,3,71,389,756,0,0,0,0,1,0,0,0,0,0,0,0,0,561,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,122,67,356,12,0,0,350,0,488,0,1,0,151,25,0,0,0,0,0,0,0,0,0,270,1,0,0,0,3,0,0,0,0,1,139,106,0,0,174,0,0,0,0,0,218,0,0,131,0,0,1,0,0,0,0,0,8,0,1,0,1,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,32,1,1,1,0,9,0,0,0,0,9,56,154,0,8,0,0,0,0,0,0,194,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,23,0,0,0,0,0,0,0,0,0,0,0,1,0,4,271,128,1 +14,0,0,7,2,78,8,8,43,11,8,0,0,2,21,0,45,0,7,9,0,2,1,7,0,9,9,0,9,0,9,0,0,2,44,0,80,6,20,0,133,0,0,0,1,0,0,3,0,0,0,0,10,144,0,0,0,0,0,1,0,0,0,21,0,23,0,0,9985,78,293,0,18,0,0,0,0,0,14,6,0,0,0,0,10,18,2057,0,8,44,2,0,0,0,0,121,5,6,0,0,2,2,153,0,17,0,0,1132,0,0,0,0,14,0,1,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,11,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,8,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,14,10,10,10,0,0,0,1270,0,150,0,0,0,17,30,253,97,1252,0,0,0,0,1,0,3,0,0,0,0,0,0,2407,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,35,30,392,10,0,0,372,0,526,0,0,0,208,63,0,0,0,0,0,0,0,0,0,134,1,0,0,0,19,0,0,0,0,9,167,45,0,0,0,0,0,0,0,0,1645,0,0,2685,2,0,1,1,0,0,0,0,6,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,2,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,81,1,1,1,0,29,0,0,0,0,17,124,229,0,28,8,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,13,0,0,0,0,0,0,0,0,0,0,0,3,0,1,1086,90,1 +7,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,61,0,0,0,0,0,1,0,0,0,0,0,2,0,0,377,17,65,0,3,0,0,0,0,0,9,0,0,0,0,0,1,4,47,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,262,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,62,0,55,0,0,0,4,10,32,174,71,0,0,0,0,1,0,0,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,106,3,0,0,114,0,183,0,0,0,40,9,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,57,0,0,50,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,68,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,103,22,1 +0,0,0,4,0,11,6,0,45,0,10,0,0,0,4,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,91,0,0,0,1,0,0,3,0,0,0,0,0,91,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1244,11,97,0,1,0,0,0,0,0,14,0,0,0,0,0,1,6,72,0,0,1,0,0,1,23,0,194,15,5,0,0,2,0,137,0,1,0,0,524,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,78,0,59,0,0,0,0,3,25,198,89,0,0,0,0,1,0,0,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,80,96,4,0,0,203,0,354,0,0,0,136,5,0,0,0,0,0,0,0,0,0,86,1,0,0,0,2,0,0,0,0,0,95,172,0,0,26,0,0,0,0,0,40,0,0,65,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,317,0,1,0,0,0,0,0,0,78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,137,24,1 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,0,0,0,73,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,19,0,0,0,0,3,23,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,43,0,0,0,62,0,59,0,0,0,32,2,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,93,26,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,70,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,9,1 +2,0,0,4,0,20,3,0,16,1,4,0,0,0,8,1,15,0,7,1,0,0,0,1,0,1,0,0,4,0,9,0,0,0,8,0,20,6,0,0,32,0,0,0,1,0,0,1,0,0,0,0,8,76,0,0,0,0,0,1,0,0,0,0,0,8,0,0,1520,20,60,0,14,0,0,0,0,0,6,0,0,0,0,0,1,3,303,0,0,8,0,0,0,0,0,28,0,2,0,0,2,0,44,0,6,0,0,272,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,189,0,44,0,0,0,16,13,43,38,196,0,0,0,0,1,0,0,0,0,0,0,0,0,522,0,0,0,0,0,0,0,0,0,0,0,0,8,0,2,0,0,0,0,0,0,8,11,117,4,0,0,158,0,222,0,0,0,85,7,0,0,0,0,0,0,4,0,0,54,1,0,0,0,2,0,0,0,0,5,106,50,0,0,0,0,0,0,0,0,117,0,0,319,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,21,0,0,0,8,1,28,187,0,14,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,233,17,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,0,0,0,49,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,17,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,41,0,0,0,47,0,41,0,0,0,17,2,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,92,14,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,32,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,7,1 +3,0,0,6,0,46,91,0,35,0,90,0,0,7,5,0,70,0,6,2,0,0,0,8,0,11,3,0,19,0,2,0,0,0,8,1594,46,6,0,0,51,0,0,0,1,0,0,2,0,0,0,0,2,1722,0,0,0,0,0,1,0,0,0,0,0,4,0,0,38391,46,550,0,17,0,0,0,0,0,186,0,0,0,0,0,9,271,7560,0,0,8,0,0,0,0,0,980,25,3,0,0,2,0,294,0,1,723,0,5212,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,1884,0,79,0,0,0,14,21,649,3532,1867,0,0,0,0,1,0,4,0,0,0,0,0,0,609,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,108,17,265,6,0,0,452,0,252,0,0,0,299,10,0,0,0,0,0,0,0,0,0,304,1,0,0,0,10,0,0,0,0,2,150,60,0,0,745,0,0,0,0,0,3721,1,0,510,92,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,92,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,56,0,0,0,0,1,54,361,0,21,14,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2537,56,1 +7,0,0,4,0,18,2,0,16,3,3,0,0,0,10,0,22,0,7,3,0,0,0,3,0,0,3,0,2,0,2,0,0,0,5,0,18,32,0,0,30,0,0,0,1,0,0,1,0,0,0,0,1,39,0,0,0,0,0,1,0,0,0,2,0,11,0,0,537,18,58,0,4,0,0,0,0,0,6,0,0,0,0,0,5,7,115,0,0,5,0,0,0,0,0,21,0,2,0,0,2,0,61,0,5,0,0,395,0,0,0,0,5,2,0,0,2,0,0,1,0,0,0,9,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6,0,0,0,0,0,0,103,0,49,0,0,0,2,7,50,26,109,0,0,0,0,1,0,0,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,10,135,4,0,0,127,0,217,0,0,0,53,13,0,0,0,0,0,0,0,0,0,60,1,0,0,0,6,0,0,0,0,2,106,25,0,0,0,0,0,0,0,0,88,0,0,53,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,3,0,0,0,0,1,23,91,0,7,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,84,47,1 +2,0,0,7,0,34,6,0,37,1,6,0,0,2,4,0,472,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,3,762,34,8,0,0,27,0,0,0,1,0,0,3,0,0,0,0,1,185,0,0,0,0,0,1,0,0,0,1,0,4,0,0,4479,34,533,0,2,0,0,0,0,0,19,0,0,0,0,0,8,19,822,0,0,3,0,0,0,0,0,89,5,6,0,0,2,0,486,0,1,0,0,1162,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,315,0,51,0,0,0,0,3,240,323,278,0,0,0,0,1,0,3,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,16,175,7,0,0,212,0,294,0,0,0,62,13,0,0,0,0,0,0,0,0,0,533,1,0,0,0,9,0,0,0,0,1,117,24,0,0,1,0,0,0,0,0,1273,1,0,49,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,1,0,0,0,0,1,37,126,0,3,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,43,1 +3,0,0,20,0,16,2,0,39,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,3,0,5,0,0,0,6,0,16,6,0,0,70,0,0,0,1,0,0,3,0,0,0,0,4,93,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1895,16,108,0,8,0,0,0,0,0,14,0,0,0,0,0,1,5,369,0,0,6,0,0,0,0,0,28,0,6,0,0,2,0,98,0,0,0,0,479,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,243,0,75,0,0,0,8,20,32,44,244,0,0,0,0,1,0,0,0,0,0,0,0,0,610,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,17,122,18,0,0,173,0,492,0,0,0,106,6,0,0,0,0,0,0,5,0,0,86,1,0,0,0,2,0,0,0,0,5,99,68,0,0,0,0,0,0,0,0,182,0,0,364,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,12,0,0,0,0,1,22,381,0,20,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,291,319,1 +21,0,0,14,0,81,33,0,241,11,42,0,0,6,12,0,165,0,7,5,0,0,0,8,0,10,51,0,19,0,18,0,0,0,37,6472,81,44,0,0,351,0,0,0,1,0,0,2,0,0,0,0,18,366,0,0,0,0,0,1,0,0,0,12,0,36,0,0,63010,81,518,0,34,0,0,0,0,0,22,0,0,0,0,0,12,31,10647,0,0,37,0,0,3,124,0,1267,65,3,0,0,2,0,1102,0,8,45,0,4471,0,0,0,0,100,0,6,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,18,0,19,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,40,12,12,12,0,0,0,8595,0,106,0,0,0,35,96,372,1444,8595,0,0,0,0,1,0,15,0,0,0,0,0,0,1447,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,91,189,458,14,0,0,471,0,798,0,0,0,295,95,0,0,0,0,0,0,0,0,0,506,1,0,0,0,13,0,0,0,0,18,201,380,0,0,131,0,3,0,0,0,1789,1,0,245,8,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,8,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,92,1,1,1,0,54,0,0,0,0,1,118,325,0,86,12,0,0,0,0,0,395,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1175,1897,1 +4,0,0,5,0,47,6,0,39,1,3,0,0,2,8,0,525,0,7,3,0,0,0,10,0,12,3,0,11,0,1,0,0,0,10,901,47,38,0,0,47,0,0,0,1,0,0,3,0,0,0,0,2,177,0,0,0,0,0,1,0,0,0,0,0,10,0,0,9584,47,603,0,9,0,0,0,0,0,19,0,0,0,0,1,12,26,1687,0,0,10,0,0,0,0,0,113,5,5,0,0,2,0,587,0,3,0,0,1791,0,0,0,0,2,1,2,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,30,12,12,12,0,0,0,1137,0,90,0,0,0,2,7,257,394,1120,0,0,0,0,1,0,3,0,0,0,0,0,0,376,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,37,15,315,5,0,0,300,0,429,0,0,0,135,41,0,0,0,0,0,0,0,0,0,590,1,0,0,0,13,0,0,0,0,2,133,55,0,0,0,0,0,0,0,0,1457,1,0,112,8,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,8,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,8,0,0,0,0,1,57,231,0,13,14,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,486,160,1 +2,0,0,0,0,9,2,0,15,0,1,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,0,0,0,174,9,45,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,33,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,14,0,0,0,0,69,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,25,0,0,0,0,3,24,4,54,0,0,0,0,1,0,0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,68,0,0,0,98,0,107,0,0,0,38,2,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,91,27,0,0,0,0,0,0,0,0,25,0,0,19,0,0,1,0,0,0,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,103,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,13,1 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,3,0,0,84,9,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,8,0,1,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,21,0,0,0,0,3,23,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,48,3,0,0,47,0,43,0,0,0,16,3,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,91,13,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,26,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,13,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,64,0,0,0,0,0,1,0,0,0,0,0,2,0,0,363,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,45,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,243,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,61,0,57,0,0,0,4,10,36,174,70,0,0,0,0,1,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,110,3,0,0,117,0,186,0,0,0,40,5,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,54,0,0,42,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,109,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,103,22,1 +13,0,0,5,0,64,8,0,42,16,1,0,0,2,18,0,76,0,11,3,0,0,0,7,0,8,27,0,10,0,12,0,0,0,30,0,64,6,0,0,107,0,2,0,1,0,0,6,2,0,0,0,12,155,0,0,0,0,0,1,0,0,0,30,0,17,0,0,40179,64,263,0,20,0,0,0,0,0,48,0,0,0,0,0,9,26,12935,0,0,30,0,0,0,0,0,114,5,21,1,0,2,0,262,0,15,0,0,10305,0,0,0,0,9,1,1,0,2,0,0,1,0,0,0,13,0,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,11,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,11,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,10,10,10,0,0,0,9042,0,154,0,0,0,22,43,246,1438,9036,0,0,0,0,1,0,3,0,0,0,0,0,0,6797,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,32,33,444,3,0,0,332,0,560,0,0,0,182,54,0,0,0,0,0,0,0,0,0,158,1,0,12,0,10,0,0,0,0,6,150,47,0,0,0,0,0,0,0,0,3235,0,0,4340,3,0,1,1,1,0,0,0,25,0,0,0,4,0,0,0,0,0,15,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,1,1,0,0,0,3,375,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,70,1,1,1,0,22,0,0,0,0,1,94,195,0,48,9,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,7,3693,140,1 +3,0,0,8,0,38,7,0,40,0,9,0,0,2,3,1,421,0,7,2,0,0,0,7,0,10,0,0,6,0,4,0,0,0,6,955,38,6,0,0,37,0,2,0,1,0,0,2,0,0,0,0,4,201,0,0,0,0,0,1,0,0,0,0,0,6,0,0,18229,38,498,0,7,0,0,0,0,0,17,0,0,0,0,0,8,19,4205,0,0,6,0,0,1,9,0,180,25,4,0,0,2,0,483,0,1,0,0,2697,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,12,12,12,0,0,0,609,0,50,0,0,0,6,7,232,1236,595,0,0,0,0,1,0,3,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,15,220,8,0,0,271,0,322,0,0,0,123,14,0,0,0,0,0,0,0,0,0,490,1,0,0,0,9,0,0,0,0,3,125,77,0,0,45,0,0,0,0,0,3040,1,0,890,6,0,1,1,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,6,364,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,9,0,0,0,0,1,44,202,0,8,12,0,0,0,0,0,42,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1800,59,1 +0,0,0,0,0,24,4,0,30,0,2,0,1,0,2,0,19,0,6,3,0,0,0,5,0,8,0,0,2,0,1,0,0,0,2,0,24,35,0,0,36,0,0,0,1,0,0,2,0,0,0,0,1,101,0,0,0,0,0,1,0,0,0,0,0,0,0,0,621,24,62,0,1,0,0,0,0,0,11,0,0,0,0,0,7,15,115,0,0,2,0,0,0,5,0,112,0,3,0,0,2,0,67,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,83,0,56,0,0,0,0,3,143,34,86,0,0,0,0,1,0,2,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,19,10,114,0,0,0,145,0,251,0,0,0,49,5,0,0,0,0,0,0,0,0,0,64,1,0,0,0,8,0,0,0,0,0,106,40,0,0,0,0,0,0,0,0,111,0,0,32,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,0,0,0,0,0,1,26,329,0,2,9,0,0,0,0,0,44,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,149,69,1 +2,0,0,5,0,46,10,0,37,0,4,0,0,2,6,1,559,0,7,3,0,0,0,7,0,11,0,0,8,0,8,0,0,0,11,900,46,6,0,0,43,0,0,0,1,0,0,2,0,0,0,0,8,225,0,0,0,0,0,1,0,0,0,0,0,7,0,0,22352,46,644,0,12,0,0,0,0,0,22,0,0,0,0,0,9,21,3818,0,0,11,0,0,0,0,0,110,5,4,0,0,2,0,606,0,4,0,0,1423,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,12,12,12,0,0,0,3122,0,55,0,0,0,14,12,270,338,3099,0,0,0,0,1,0,3,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,16,235,5,0,0,291,0,342,0,0,0,126,11,0,0,0,0,0,0,0,0,0,626,1,0,0,0,10,0,0,0,0,4,133,48,0,0,0,0,0,0,0,0,1594,1,0,300,11,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,11,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,18,0,0,0,8,1,57,316,0,13,14,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,473,41,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,73,0,0,0,0,0,1,0,0,0,0,0,2,0,0,707,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,51,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,252,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,63,0,55,0,0,0,4,10,32,174,72,0,0,0,0,1,0,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,107,3,0,0,114,0,251,0,0,0,40,9,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,63,0,0,54,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,74,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,107,23,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,0,0,0,49,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,17,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,40,0,0,0,47,0,39,0,0,0,17,2,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,92,14,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,32,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,7,1 +2,0,0,4,0,24,3,0,7,2,4,0,0,0,10,2,52,0,7,2,0,0,0,0,0,0,6,0,5,0,11,0,0,0,13,0,24,6,0,0,38,0,0,0,1,0,0,1,0,0,0,0,10,38,0,0,0,0,0,1,0,0,0,0,0,10,0,0,268,24,98,0,16,0,0,0,0,0,2,0,0,0,0,0,1,3,9,0,0,13,0,0,0,0,0,27,0,0,0,0,2,0,88,0,8,0,0,338,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,30,0,53,0,0,0,20,21,56,32,35,0,0,0,0,1,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,13,111,4,0,0,106,0,172,0,0,0,67,7,0,0,0,0,0,0,0,0,0,85,1,0,0,0,2,0,0,0,0,5,110,23,0,0,0,0,0,0,0,0,304,0,0,14,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,23,0,0,0,8,11,37,69,0,22,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,17,1 +5,0,0,14,0,126,19,0,80,0,13,0,0,0,318,0,20,0,6,1,0,0,0,1,0,0,3,0,3,0,5,0,0,0,97,0,126,6,0,0,934,0,0,0,1,0,0,10,0,0,0,0,4,467,0,0,0,0,0,1,0,0,0,0,0,313,0,0,72340,126,465,0,8,0,0,0,0,0,43,0,0,0,0,2,1,15,477,0,0,97,0,0,0,0,0,26,0,17,0,0,2,0,697,0,1,0,0,19568,0,0,0,0,7,0,12,0,0,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,22,0,0,0,0,0,0,370,0,259,0,0,0,8,9,147,1630,377,0,0,0,0,1,0,0,0,0,0,0,0,0,1378,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,8,182,648,16,0,0,1832,0,704,0,0,0,1708,27,0,0,0,0,0,0,0,0,0,456,1,0,0,0,2,0,0,0,0,1,226,1362,0,0,0,0,0,0,0,0,226,0,0,345,0,0,1,0,0,0,0,0,19,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,123,1,1,1,0,15,0,0,0,0,1,223,579,0,11,0,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,995,169,1 +36,0,0,12,2,33,52,2,69,16,59,0,2,0,80,6,120,0,11,2,0,0,0,1,0,0,0,0,9,0,11,0,0,2,18,0,35,108,0,0,107,0,0,0,1,0,0,2,0,0,0,0,10,140,0,0,0,0,0,1,0,0,0,18,0,28,0,0,849,33,343,0,20,0,0,0,0,0,11,0,0,0,0,0,2,5,88,0,2,18,2,0,4,0,0,130,0,4,0,0,10,2,275,0,24,0,0,665,0,0,0,0,10,13,0,0,0,0,0,1,0,0,0,4,0,0,4,0,0,0,0,7,0,0,0,8,0,0,0,0,0,5,0,7,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,26,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,103,0,63,0,0,0,20,21,75,158,123,0,0,0,0,1,0,0,0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,231,79,498,17,0,0,500,0,845,0,2,0,178,21,0,0,0,0,0,0,0,0,0,399,1,0,0,0,3,0,0,0,0,9,146,39,0,0,0,0,0,0,0,0,473,0,0,79,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,36,1,1,1,0,29,0,0,0,0,17,53,241,0,20,0,0,0,0,0,0,155,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,16,0,0,0,0,0,0,0,0,0,0,0,2,0,3,381,54,1 +7,0,0,5,1,16,27,1,38,3,6,0,0,0,10,0,66,0,8,1,0,0,0,1,0,0,0,0,3,0,1,0,0,1,7,0,17,82,0,0,35,0,0,0,1,0,0,3,0,0,0,0,0,95,0,0,0,0,0,1,0,0,0,0,0,7,0,0,668,16,125,0,4,0,0,0,0,0,13,0,0,0,0,0,1,5,86,0,1,7,1,0,1,0,0,69,0,5,0,0,4,1,61,0,5,0,0,428,0,0,0,0,7,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,90,0,80,0,0,0,0,3,35,56,105,0,0,0,0,1,0,0,0,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,116,17,257,6,0,0,342,0,553,0,1,0,163,38,0,0,0,0,0,0,0,0,0,155,1,0,0,0,2,0,0,0,0,1,115,102,0,0,0,0,0,0,0,0,173,0,0,53,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,13,1,1,1,0,3,0,0,0,0,9,24,528,0,4,0,0,0,0,0,0,58,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,1,0,3,217,124,1 +16,0,0,4,0,67,6,0,37,8,3,0,0,2,13,0,761,0,6,3,0,0,0,7,0,11,0,0,11,0,9,0,0,0,22,993,67,6,0,0,94,0,0,0,1,0,0,6,0,0,0,0,9,229,0,0,0,0,0,1,0,0,0,0,0,14,0,0,16777,67,870,0,18,0,0,0,0,0,28,0,0,0,0,0,9,26,3230,0,0,22,0,0,0,0,0,137,5,9,1,0,2,0,815,0,11,0,0,2334,0,0,0,0,38,0,4,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,20,0,0,0,0,0,22,0,14,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,32,12,12,12,0,0,0,1813,0,128,0,0,0,16,19,305,572,1791,0,0,0,0,1,0,5,0,0,0,0,0,0,709,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,21,327,4,0,0,332,0,396,0,0,0,141,24,0,0,0,0,0,0,0,0,0,828,1,0,0,0,10,0,0,0,0,9,150,29,0,0,0,0,0,0,0,0,2452,1,0,155,6,0,1,1,0,0,0,0,11,0,0,0,3,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,6,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,72,1,1,1,0,25,0,0,0,0,1,89,176,0,19,12,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,959,58,1 +6,0,0,6,2,52,9,8,37,6,6,0,0,2,16,1,37,0,7,8,0,2,1,6,0,8,6,0,19,0,7,2,0,2,21,0,54,6,8,0,74,0,0,0,1,0,0,2,0,0,0,0,9,172,0,0,0,0,0,1,0,0,0,9,0,18,0,0,1331,52,246,0,25,0,0,0,0,0,12,6,0,0,0,0,8,16,189,0,8,21,2,0,0,0,0,127,5,3,0,0,2,2,133,0,14,0,0,966,0,0,0,0,4,0,3,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,135,0,70,0,0,0,16,24,220,113,143,0,0,0,0,1,0,5,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,28,302,8,0,0,292,0,441,0,0,0,137,8,0,0,0,0,0,0,0,0,0,115,1,0,0,0,17,0,0,0,0,8,142,47,0,0,0,0,0,0,0,0,181,0,0,81,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,36,0,0,0,0,17,75,279,0,33,9,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,3,0,3,215,48,1 +10,0,0,4,10,35,14,40,89,9,14,0,0,0,17,0,135,0,6,26,0,10,5,2,0,0,0,0,9,0,4,0,0,10,19,0,45,231,85,0,153,0,8,0,1,0,0,10,0,0,0,0,3,195,2,0,0,0,0,1,0,0,0,14,0,16,0,0,3216,35,969,0,13,0,0,0,0,0,40,30,0,0,0,0,2,16,734,0,40,19,10,0,0,0,0,63,0,17,1,0,2,10,102,0,12,0,0,1046,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,306,0,125,0,0,0,6,9,81,85,429,0,0,0,0,1,0,0,0,0,0,0,0,0,805,0,0,0,0,0,0,0,0,0,0,0,0,10,0,3,0,0,0,0,0,0,8,18,1190,14,0,0,1282,0,690,0,0,0,1037,48,0,0,0,0,0,0,0,0,0,275,1,0,0,0,43,0,0,0,0,4,720,224,0,0,0,0,0,0,0,0,560,0,0,905,0,0,1,0,1,0,0,0,22,0,0,0,2,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,15,0,0,0,0,81,64,1307,0,13,0,0,0,0,0,0,517,2,0,0,0,0,0,0,0,0,0,0,0,10,0,1,9,0,0,0,0,0,0,0,0,0,0,0,16,0,5,2894,162,1 +2,0,0,3,0,20,2,0,6,0,3,0,0,0,6,0,24,0,7,2,0,0,0,0,0,0,9,0,3,0,5,0,0,0,9,0,20,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,4,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,98,20,55,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,9,0,0,0,0,0,12,0,0,0,0,2,0,74,0,4,0,0,222,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,16,0,31,0,0,0,8,15,37,14,26,0,0,0,0,1,0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,75,3,0,0,71,0,144,0,0,0,32,3,0,0,0,0,0,0,0,0,0,48,0,0,0,0,2,0,0,0,0,2,102,4,0,0,0,0,0,0,0,0,72,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,8,0,0,0,0,1,29,10,0,17,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,8,1 +0,0,0,0,0,27,4,0,6,0,1,0,1,0,2,0,12,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,3,0,27,6,0,0,23,0,0,0,1,0,0,0,0,0,0,0,1,59,0,0,0,0,0,1,0,0,0,0,0,0,0,0,501,27,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,57,0,0,3,0,0,0,0,0,68,0,0,0,0,2,0,21,0,0,0,0,389,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,34,0,0,0,0,3,178,8,41,0,0,0,0,1,0,3,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,17,10,92,0,0,0,148,0,171,0,0,0,79,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,8,0,0,0,0,0,111,67,0,0,0,0,0,0,0,0,56,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,0,0,1,30,199,0,2,8,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,24,1 +2,0,0,5,0,25,7,0,33,1,10,0,0,0,8,1,16,0,7,1,0,0,0,1,0,0,0,0,3,0,7,0,0,0,14,0,25,6,0,0,80,0,0,0,1,0,0,2,0,0,0,0,6,85,0,0,0,0,0,1,0,0,0,0,0,12,0,0,381,25,82,0,10,0,0,0,0,0,7,0,0,0,0,0,1,4,55,0,0,14,0,0,1,19,0,173,15,2,0,0,2,0,131,0,6,0,0,351,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,72,0,0,0,12,10,44,140,73,0,0,0,0,1,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,11,140,5,0,0,160,0,201,0,0,0,91,8,0,0,0,0,0,0,0,0,0,82,1,0,0,0,2,0,0,0,0,3,111,77,0,0,29,0,0,0,0,0,63,0,0,30,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,15,0,0,0,8,1,39,125,0,10,0,0,0,0,0,0,105,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,134,19,1 +2,0,0,0,0,14,4,0,3,1,1,0,0,0,3,0,15,0,7,2,0,0,0,0,0,0,0,0,1,0,2,0,0,0,5,0,14,9,0,0,28,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,1,0,0,82,14,28,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,5,0,0,0,0,0,12,0,0,0,0,2,0,20,0,1,0,0,168,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,18,0,27,0,0,0,2,4,32,11,25,0,0,0,0,1,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,9,57,0,0,0,59,0,142,0,0,0,23,4,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,97,6,0,0,0,0,0,0,0,0,29,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,19,17,0,3,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,12,1 +4,0,0,7,0,51,18,0,75,4,16,0,0,6,13,0,885,0,7,2,0,0,0,9,0,10,6,0,8,0,2,1,0,0,12,953,51,35,0,0,116,0,0,0,1,0,0,4,0,0,0,0,3,297,0,0,0,0,0,1,0,0,0,0,0,16,0,0,16771,51,1071,0,8,0,0,0,0,1,42,0,0,0,0,0,10,34,3677,0,0,12,0,0,1,28,0,447,35,9,0,0,2,0,1115,0,7,15,0,2754,0,0,0,0,0,3,2,0,0,0,0,1,0,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,2090,0,110,0,0,0,6,19,322,780,2089,0,0,0,0,1,0,5,0,0,9,0,0,0,924,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,88,25,253,7,0,0,359,0,517,0,0,0,191,12,0,0,0,0,0,0,5,0,0,1020,1,0,0,0,11,0,0,0,0,3,135,161,0,0,54,0,0,0,0,0,3371,1,0,386,9,0,1,1,0,0,0,0,15,0,3,0,3,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,9,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,27,0,0,0,0,1,63,422,0,15,12,0,0,0,0,0,179,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1137,103,1 +0,0,0,5,0,34,11,0,45,0,8,0,0,2,4,0,487,0,6,3,0,0,0,6,0,10,0,0,3,0,1,0,0,0,4,898,34,6,0,0,57,0,0,0,1,0,0,2,0,0,0,0,1,238,0,0,0,0,0,1,0,0,0,0,0,8,0,0,23333,34,566,0,1,0,0,0,0,0,19,0,0,0,0,0,8,18,4066,0,0,4,0,0,1,16,0,216,20,4,0,0,2,0,577,0,2,0,0,1252,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,3431,0,77,0,0,0,0,3,228,805,3438,0,0,0,0,1,0,3,0,0,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,12,194,5,0,0,233,0,259,0,0,0,90,5,0,0,0,0,0,0,0,0,0,563,1,0,0,0,9,0,0,0,0,0,117,74,0,0,34,0,0,0,0,0,1389,1,0,78,7,0,1,1,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,38,297,0,2,12,0,0,0,0,0,111,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,492,25,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,87,0,0,0,0,0,1,0,0,0,0,0,2,0,0,727,18,65,0,3,0,0,0,0,0,9,0,0,0,0,0,1,4,44,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,285,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,60,0,59,0,0,0,4,10,36,174,69,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,114,3,0,0,117,0,282,0,0,0,40,7,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,53,0,0,38,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,146,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,106,23,1 +6,0,0,3,0,18,2,0,22,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,104,0,0,0,0,0,1,0,0,0,0,0,2,0,0,948,18,66,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,43,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,54,0,0,0,0,279,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,56,0,0,0,4,10,36,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,114,3,0,0,118,0,308,0,0,0,40,10,0,0,0,0,0,0,0,0,0,60,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,53,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,153,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,102,24,1 +4,0,0,3,0,16,3,0,16,0,3,0,0,0,3,0,70,0,8,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,1,16,171,0,0,67,0,0,0,1,0,0,1,1,0,0,0,0,74,0,0,0,0,0,1,0,0,0,0,0,3,0,0,743,16,102,0,3,0,0,0,0,0,8,0,0,0,0,0,1,3,123,0,0,3,0,0,0,0,0,9,0,4,0,0,2,0,20,0,1,0,0,364,0,0,0,0,5,0,0,0,0,0,1,1,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,97,0,39,0,0,0,0,3,38,108,156,0,0,0,0,1,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,167,3,0,0,263,0,230,0,0,0,182,8,0,0,0,0,0,0,0,0,0,103,1,0,2,0,2,0,0,0,0,1,136,75,0,0,0,0,0,0,0,0,190,0,0,112,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,2,0,0,0,0,1,19,102,0,3,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,140,25,1 +8,0,0,6,0,58,8,0,22,7,4,0,0,2,20,1,18,0,7,3,0,0,0,6,0,8,0,0,8,0,13,0,0,0,29,0,58,6,0,0,101,0,0,0,1,0,0,2,0,0,0,0,13,137,0,0,0,0,0,1,0,0,0,12,0,22,0,0,1123,58,91,0,19,0,0,0,0,0,13,0,0,0,0,0,8,16,176,0,0,29,0,0,0,0,0,116,5,3,0,0,2,0,89,0,18,0,0,1023,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,6,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,128,0,92,0,0,0,24,20,223,72,136,0,0,0,0,1,0,4,0,0,0,0,0,0,335,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,32,244,6,0,0,267,0,386,0,0,0,148,15,0,0,0,0,0,0,0,0,0,82,1,0,0,0,9,0,0,0,0,9,148,45,0,0,0,0,0,0,0,0,115,0,0,47,3,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,16,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,66,1,1,1,0,30,0,0,0,8,1,87,303,0,20,9,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,2,221,76,1 +0,0,0,0,0,25,4,0,6,0,1,0,1,0,2,0,12,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,6,0,0,19,0,0,0,1,0,0,0,0,0,0,0,1,61,0,0,0,0,0,1,0,0,0,0,0,0,0,0,401,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,69,0,0,1,0,0,0,0,0,68,0,0,0,0,2,0,21,0,0,0,0,430,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,27,0,0,0,0,3,176,8,41,0,0,0,0,1,0,3,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,17,10,72,0,0,0,82,0,119,0,0,0,13,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,8,0,0,0,0,0,108,8,0,0,0,0,0,0,0,0,67,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,18,1 +7404,0,0,4,0,40,2,0,19,7,3,0,0,0,15,0,26,0,6,2,0,0,0,1,0,0,6,0,97,0,3,0,0,0,22,0,40,6,0,0,61,0,0,0,1,0,0,2,0,0,0,0,2,67,0,0,0,0,0,1,0,0,0,0,0,16,0,0,80415,40,173,0,100,0,0,0,0,0,7,0,0,0,0,0,2,6,568,0,0,22,0,0,0,0,0,115,0,1,0,0,2,0,177,0,12,0,0,145304,0,0,0,0,22064,4,0,0,4,0,0,1,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,7357,0,0,0,0,0,14713,0,7369,0,0,0,0,0,0,7371,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7358,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,396,0,120,0,0,0,4,13,67,40782,402,0,0,0,0,1,0,0,0,0,0,0,0,0,102360,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,15,656,4,0,0,200,0,462,0,0,0,117,187,0,0,0,0,0,0,0,0,0,71,1,0,0,0,3,0,0,0,0,3,122,38,0,0,0,0,0,0,0,0,400,0,0,154,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,99,0,0,0,0,1,62,186,0,106,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,470,232,1 +2,0,0,0,0,30,4,0,6,0,1,0,1,0,2,0,15,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,5,0,30,6,0,0,34,0,0,0,1,0,0,0,0,0,0,0,1,62,0,0,0,0,0,1,0,0,0,0,0,0,0,0,754,30,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,61,0,0,5,0,0,0,0,0,68,0,0,0,0,2,0,27,0,0,0,0,649,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,10,10,0,0,0,37,0,28,0,0,0,0,3,183,327,42,0,0,0,0,1,0,3,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,17,10,95,0,0,0,104,0,168,0,0,0,31,3,0,0,0,0,0,0,0,0,0,35,0,0,0,0,8,0,0,0,0,0,112,15,0,0,0,0,0,0,0,0,62,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,0,0,0,0,0,1,35,37,0,2,8,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,29,1 +2,0,0,4,2,13,4,8,17,0,5,0,0,0,3,0,18,0,6,8,0,2,1,0,0,0,0,0,1,0,1,0,0,2,3,0,15,6,3,0,9,0,0,0,1,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,1,0,3,0,0,3963,13,154,0,2,0,0,0,0,0,0,6,0,0,0,0,2,2,5,0,8,3,2,0,0,0,0,12,0,0,0,0,2,2,18,0,1,0,0,2052,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,21,0,38,0,0,0,0,3,35,52,31,0,0,0,0,1,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,90,6,0,0,98,0,141,0,0,0,30,7,0,0,0,0,0,0,0,0,0,53,0,0,0,0,11,0,0,0,0,1,95,10,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,1,0,0,0,0,17,18,27,0,2,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,69,13,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,64,0,0,0,0,0,1,0,0,0,0,0,2,0,0,388,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,47,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,249,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,61,0,56,0,0,0,4,10,32,174,70,0,0,0,0,1,0,0,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,106,3,0,0,114,0,191,0,0,0,40,7,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,62,0,0,46,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,100,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,103,22,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,509,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,42,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,280,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,56,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,115,3,0,0,114,0,202,0,0,0,40,8,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,58,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,124,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,98,23,1 +11,0,0,11,2,51,56,2,110,19,19,0,0,0,39,0,117,0,10,2,0,0,0,2,0,0,0,0,7,0,2,0,0,2,29,0,53,114,0,0,167,0,0,0,1,0,0,24,0,0,0,0,1,378,0,0,0,0,0,1,0,0,0,0,0,35,0,0,6629,51,448,0,9,0,0,0,0,0,99,0,0,0,0,0,3,50,1277,0,2,29,2,0,5,24,0,337,45,46,1,1,6,2,235,0,31,0,0,1400,0,0,0,0,31,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,0,1,7,0,5,0,7,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,0,0,0,0,0,0,1069,0,321,0,0,0,2,4,97,1363,1019,0,0,0,0,1,0,0,0,0,0,1,1,0,2544,0,0,0,0,0,0,0,0,0,0,0,0,24,0,6,0,0,0,0,0,0,216,89,581,15,0,0,805,0,1341,0,2,0,459,36,0,0,0,1,0,1,2,0,0,351,1,0,0,0,4,0,0,0,0,1,193,239,0,0,87,0,2,0,0,0,625,0,0,576,0,0,1,0,1,0,0,0,51,0,0,0,23,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,50,1,1,1,0,9,0,0,0,0,17,82,654,0,9,0,0,0,0,0,0,218,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,25,0,0,0,0,0,0,0,0,0,0,0,2,0,7,1254,282,1 +4,0,0,5,2,37,9,8,42,5,10,0,0,0,12,0,80,0,7,6,0,2,1,2,0,1,0,0,3,0,4,0,0,2,26,0,39,171,5,0,142,0,0,0,1,0,0,2,0,0,0,0,4,148,0,0,0,0,0,1,0,0,0,11,0,16,0,0,661,37,277,0,8,0,0,0,0,0,11,6,0,0,0,0,2,5,50,0,8,26,2,0,1,13,0,139,15,4,0,0,2,2,114,0,9,0,0,845,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,71,0,81,0,0,0,7,10,63,171,150,0,0,0,0,1,0,0,0,0,0,0,0,0,524,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,12,324,7,0,0,429,0,375,0,0,0,327,18,0,0,0,0,0,0,0,0,0,160,1,0,0,0,11,0,0,0,0,6,177,138,0,0,33,0,136,0,0,0,162,0,0,25,0,0,1,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,9,0,0,0,0,17,65,463,0,8,0,0,0,0,0,0,331,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,4,0,0,123,106,1 +3,0,0,7,0,55,34,0,84,2,9,0,0,2,8,1,1171,0,7,2,0,0,0,8,0,10,0,0,11,0,10,0,0,0,14,247,55,6,0,0,59,0,4,0,1,0,0,5,0,0,0,0,10,207,0,0,0,0,0,1,0,0,0,5,0,12,0,0,106875,55,1352,0,18,0,0,0,0,0,53,0,0,0,0,0,9,24,27436,0,0,14,0,0,1,9,0,202,25,8,0,0,2,0,1284,0,6,0,0,17381,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,13644,0,130,0,0,0,18,17,264,1046,13620,0,0,0,0,1,0,3,0,0,0,0,0,0,5242,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,32,20,327,9,0,0,365,0,631,0,0,0,169,49,0,0,0,0,0,0,0,0,0,1316,1,0,0,0,10,0,0,0,0,6,152,84,0,0,45,0,0,0,0,0,13574,1,0,13053,6,0,1,1,1,0,0,0,14,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,6,371,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,26,0,0,0,8,1,69,124,0,19,12,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,12701,131,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,90,0,0,0,0,0,1,0,0,0,0,0,2,0,0,769,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,42,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,290,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,56,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,110,3,0,0,114,0,300,0,0,0,40,8,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,52,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,136,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,98,23,1 +0,0,0,2,0,9,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,9,35,0,1,0,0,0,0,0,4,0,0,0,0,0,2,4,27,0,0,0,0,0,0,0,0,9,0,2,0,0,2,0,13,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0,33,0,30,0,0,0,0,3,26,5,47,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,100,0,0,0,30,5,0,0,0,0,0,0,0,0,0,40,1,0,0,0,3,0,0,0,0,0,93,21,0,0,0,0,0,0,0,0,26,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,9,88,0,1,0,0,0,1,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,14,1 +7,0,0,0,0,33,5,0,6,2,1,0,1,0,4,0,19,0,7,4,0,0,0,4,0,8,0,0,2,0,2,0,0,0,8,0,33,9,0,0,52,0,0,0,1,0,0,0,0,0,0,0,2,71,0,0,0,0,0,1,0,0,0,0,0,2,0,0,519,33,35,0,3,0,0,0,0,0,2,0,0,0,0,0,7,11,65,0,0,8,0,0,0,0,0,73,0,0,0,0,2,0,39,0,2,0,0,547,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,10,10,0,0,0,45,0,33,0,0,0,2,4,188,16,49,0,0,0,0,1,0,3,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,17,14,107,0,0,0,120,0,213,0,0,0,48,12,0,0,0,0,0,0,0,0,0,43,0,0,0,0,8,0,0,0,0,2,115,22,0,0,0,0,0,0,0,1,73,0,0,1,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,3,0,0,0,0,1,41,60,0,4,8,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,30,1 +9,0,0,20,0,31,8,0,52,6,28,0,0,0,44,2,32,0,12,2,0,0,0,4,1,0,3,0,4,0,3,0,0,0,10,0,31,9,3,0,131,0,0,0,1,0,0,2,0,0,0,0,3,371,0,0,0,0,0,1,0,0,0,0,0,19,0,0,3287,31,173,0,7,0,0,0,0,0,12,0,0,0,1,0,5,9,261,0,0,10,0,0,1,7,0,103,15,4,0,0,2,0,204,0,8,0,0,1259,0,0,0,0,7,1,1,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,1,1,0,0,3,0,0,0,0,0,2,0,5,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,11,0,0,0,0,0,0,216,0,135,0,0,0,6,14,70,172,471,0,0,0,0,1,0,0,0,0,0,0,0,0,979,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,1,52,21,261,25,0,0,290,0,489,0,0,0,184,3486,0,0,0,0,0,0,0,0,0,178,1,0,0,0,7,0,0,0,0,4,127,134,0,0,34,0,0,0,0,1,214,0,0,311,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,3,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,8,0,0,0,0,1,41,334,0,10,0,0,0,0,0,0,61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,586,81,1 +6,0,0,8,6,49,20,6,125,1,24,0,0,12,10,0,896,0,7,14,0,12,0,7,0,10,3,0,24,0,1,1,0,6,8,3119,55,6,0,0,73,0,0,0,1,0,0,6,0,0,0,0,2,338,0,0,0,0,0,1,6,0,0,3,0,2,0,0,26532,49,1526,0,23,0,0,0,0,0,57,18,0,0,0,0,8,80,3487,0,6,8,6,0,0,0,0,417,47,6,0,0,2,6,1022,0,1,63,0,3075,0,0,0,0,3,0,4,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,12,12,12,0,0,0,1204,0,106,0,0,0,13,18,421,1077,1193,0,0,0,0,1,0,3,0,0,0,0,0,0,662,0,0,0,0,0,0,0,0,0,0,0,0,6,1,2,0,0,0,0,1,0,189,20,490,14,0,0,594,0,564,2,0,0,258,7,0,0,0,0,0,0,4,0,0,1094,1,0,0,0,33,0,0,0,0,1,148,76,0,0,91,0,0,0,0,0,3202,1,0,371,19,0,1,1,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,19,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,55,0,0,0,0,49,63,393,0,27,12,0,0,0,0,0,217,14,0,0,0,0,0,0,0,0,0,0,0,8,0,2,11,0,0,0,0,0,0,0,0,0,0,0,12,0,5,1433,75,1 +1,0,0,5,1,21,42,1,93,10,29,0,1,0,16,0,70,0,8,1,0,0,0,1,0,1,0,0,6,0,3,0,0,1,9,0,22,87,0,0,123,0,0,0,1,0,0,1,0,0,0,0,2,69,0,0,0,0,0,1,0,0,0,11,0,22,0,0,21110,21,220,0,8,0,0,0,0,0,17,0,0,0,0,0,1,3,1141,0,1,9,1,0,8,48,0,484,90,1,0,0,6,1,293,0,13,0,0,4549,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,929,0,84,0,0,0,2,5,46,6815,942,0,0,0,0,1,0,0,0,0,0,0,0,0,1438,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,124,35,343,6,0,0,305,0,652,0,1,0,105,21,0,0,0,0,0,0,0,0,0,259,1,0,0,0,2,0,0,0,0,1,120,108,0,0,176,0,1,0,2,2,502,0,0,1349,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,18,1,1,1,0,12,0,0,0,0,9,31,62,0,10,0,0,0,0,0,0,155,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,22,0,0,0,0,0,0,0,0,0,0,0,1,0,1,712,165,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,93,0,0,0,0,0,1,0,0,0,0,0,2,0,0,986,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,47,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,282,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,56,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,114,3,0,0,114,0,315,0,0,0,40,13,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,56,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,102,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,103,24,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,34,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,1 +0,0,0,4,0,10,3,0,31,0,11,0,0,0,3,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,30,0,0,0,1,0,0,3,0,0,0,0,0,141,0,0,0,0,0,1,0,0,0,0,0,6,0,0,722,10,79,0,1,0,0,0,0,0,15,0,0,0,0,0,1,5,105,0,0,1,0,0,2,15,0,148,30,6,0,0,2,0,86,0,1,0,0,117,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,106,0,68,0,0,0,0,3,24,112,127,0,0,0,0,1,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,82,4,0,0,160,0,220,0,0,0,95,6,0,0,0,0,0,0,0,0,0,69,1,0,0,0,2,0,0,0,0,0,94,104,0,0,60,0,0,0,0,0,49,0,0,94,0,0,1,1,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,439,0,1,0,0,0,0,0,0,67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,3,163,18,1 +16,0,0,4,0,66,6,0,37,8,3,0,0,2,13,0,750,0,6,4,0,0,0,6,0,11,0,0,12,0,9,0,0,0,21,976,66,6,0,0,98,0,0,0,1,0,0,6,0,0,0,0,9,237,0,0,0,0,0,1,0,0,0,0,0,14,0,0,28556,66,862,0,19,0,0,0,0,0,29,0,0,0,0,0,9,26,5133,0,0,21,0,0,0,0,0,138,5,10,2,0,2,0,805,0,11,0,0,2316,0,0,0,0,40,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,20,0,0,0,0,0,23,0,14,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,32,12,12,12,0,0,0,3785,0,135,0,0,0,16,19,301,540,3764,0,0,0,0,1,0,5,0,0,0,0,0,0,763,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,21,329,4,0,0,332,0,400,0,0,0,141,14,0,0,0,0,0,0,0,0,0,817,1,0,0,0,10,0,0,0,0,9,149,31,0,0,0,0,0,0,0,0,2381,1,0,174,6,0,1,1,0,0,0,0,11,0,0,0,3,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,71,1,1,1,0,26,0,0,0,0,1,87,167,0,20,12,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,939,63,1 +13,0,0,10,0,30,4,0,27,50,14,0,0,0,69,1,966,0,7,1,0,0,0,2,0,0,0,0,8,0,11,0,0,0,14,0,30,6,0,0,1418,0,6,0,1,0,0,6,0,0,0,0,10,167,0,0,0,0,0,1,0,0,0,0,0,64,0,0,4115,30,1145,0,19,0,0,0,0,0,29,0,0,0,150,0,2,12,705,0,0,14,0,0,1,8,0,132,15,10,0,0,2,0,1172,0,58,0,0,1539,0,0,0,0,194,3,1,0,150,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,1,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,937,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,239,0,117,0,0,0,20,21,69,1061,698,0,0,0,0,1,0,0,0,0,0,0,0,0,3590,0,0,0,0,0,0,0,0,0,1,0,0,6,0,0,0,0,0,0,0,0,8,120,249,12,0,0,281,0,361,0,0,0,196,40,0,0,0,0,0,0,0,0,0,1088,1,0,0,0,3,0,0,0,0,9,119,141,0,0,29,0,0,0,0,0,2213,0,0,932,0,0,1,0,1,0,0,0,15,0,1,0,2,0,0,0,0,0,49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,2,0,0,0,0,371,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,28,0,0,0,0,1,44,478,0,19,0,0,1,0,0,0,139,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,52,0,0,0,0,0,0,0,0,0,0,0,0,0,6,552,475,1 +3,0,0,4,0,35,5,0,22,0,3,0,0,2,3,0,23,0,6,3,0,0,0,5,0,8,3,0,3,0,2,0,0,0,9,0,35,6,0,0,24,0,0,0,1,0,0,1,0,0,0,0,2,101,0,0,0,0,0,1,0,0,0,0,0,4,0,0,996,35,59,0,2,0,0,0,0,0,9,0,0,0,0,0,7,14,148,0,0,9,0,0,0,0,0,79,5,2,0,0,2,0,51,0,1,0,0,663,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,119,0,56,0,0,0,2,27,194,62,122,0,0,0,0,1,0,4,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,11,143,4,0,0,182,0,268,0,0,0,75,6,0,0,0,0,0,0,0,0,0,64,1,0,0,0,8,0,0,0,0,2,117,40,0,0,0,0,0,0,0,0,93,0,0,52,3,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,48,0,0,0,0,1,44,159,0,7,9,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,158,39,1 +4,0,0,4,0,33,5,0,24,2,3,0,0,2,6,0,28,0,6,3,0,0,0,5,0,8,6,0,6,0,4,0,0,0,9,0,33,6,0,0,34,0,0,0,1,0,0,3,0,0,0,0,4,145,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1117,33,89,0,8,0,0,0,0,0,16,0,0,0,0,0,7,16,153,0,0,9,0,0,0,0,0,93,5,5,0,0,2,0,81,0,4,0,0,677,0,0,0,0,7,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,124,0,81,0,0,0,6,19,187,35,122,0,0,0,0,1,0,4,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,14,160,4,0,0,187,0,310,0,0,0,85,18,0,0,0,0,0,0,0,0,0,74,1,0,0,0,8,0,0,0,0,4,118,43,0,0,0,0,0,0,0,0,115,0,0,96,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,19,0,0,0,2,1,42,223,0,15,9,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,227,39,1 +3,0,0,15,2,58,131,2,138,3,79,0,0,7,17,0,1680,0,10,2,0,0,0,9,0,11,0,0,52,0,1,0,0,2,19,2669,60,102,0,0,128,0,0,0,1,0,0,1,0,0,0,0,1,942,0,0,0,0,0,1,0,0,0,0,0,12,0,0,159686,58,2168,0,49,0,0,0,0,0,120,0,0,0,0,0,10,485,17614,0,2,19,2,0,4,16,0,912,55,2,0,0,6,2,1867,0,6,260,0,29900,0,0,0,0,19,0,1,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,12,12,12,0,0,0,10312,0,68,0,0,0,32,35,1950,9607,10239,0,0,0,0,1,0,3,0,0,0,0,0,0,27659,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,314,83,693,19,0,0,809,0,958,0,2,0,385,27,0,0,0,0,0,0,0,0,0,2062,1,0,0,0,11,0,0,0,0,2,265,40,0,0,468,0,1,0,0,0,7528,1,0,9806,58,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,58,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,62,1,1,1,0,144,0,0,0,0,17,79,433,0,50,14,0,0,0,0,0,198,3,0,0,0,0,0,0,0,0,0,0,0,5,0,2,11,0,0,0,0,0,0,0,0,0,0,0,2,0,2,3728,192,1 +1,0,0,4,0,12,3,0,14,0,4,0,0,0,3,1,15,0,7,1,0,0,0,1,0,1,0,0,3,0,3,0,0,0,2,0,12,6,0,0,12,0,0,0,1,0,0,3,0,0,0,0,3,48,0,0,0,0,0,1,0,0,0,0,0,3,0,0,408,12,62,0,7,0,0,0,0,0,13,0,0,0,0,0,1,5,83,0,0,2,0,0,0,0,0,22,0,4,0,0,2,0,27,0,1,0,0,159,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,84,0,51,0,0,0,6,8,32,18,91,0,0,0,0,1,0,0,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,6,109,4,0,0,108,0,202,0,0,0,45,6,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,3,98,23,0,0,0,0,0,0,0,0,63,0,0,68,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,9,0,0,0,0,1,14,154,0,7,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,133,18,1 +23,0,0,4,0,21,3,0,17,3,3,0,0,0,10,0,15,0,6,1,0,0,0,2,0,18,0,0,20,0,3,0,0,0,8,0,21,6,0,0,50,0,0,0,1,0,0,2,0,0,0,0,20,59,0,0,0,0,0,1,0,0,0,12,0,11,0,0,324,21,92,0,41,0,0,0,0,0,9,0,0,0,0,1,2,7,50,0,0,8,0,0,0,0,0,74,0,3,0,0,2,0,72,0,8,0,0,322,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,23,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,68,0,51,0,0,0,22,24,44,101,81,0,0,0,0,1,0,0,0,0,0,0,0,0,368,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,13,133,4,0,0,123,0,129,0,0,0,48,13,0,0,0,0,0,0,0,0,0,54,1,0,0,0,3,0,0,0,0,21,107,12,0,0,0,0,0,0,0,0,153,0,0,29,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,24,0,0,0,0,1,29,102,0,41,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,105,200,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,153,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2111,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,42,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,456,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,57,0,55,0,0,0,4,10,32,174,66,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,122,3,0,0,114,0,596,0,0,0,40,22,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,58,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,129,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,97,26,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,47,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,17,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,40,0,0,0,41,0,33,0,0,0,11,2,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,10,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,21,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,8,1 +3,0,0,0,0,15,5,0,5,0,1,0,0,0,2,0,21,0,7,2,0,0,0,0,0,0,6,0,2,0,3,0,0,0,4,0,15,6,0,0,25,0,0,0,1,0,0,0,0,0,0,0,2,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,172,15,44,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,4,0,0,0,0,0,15,0,0,0,0,2,0,55,0,0,0,0,211,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,20,0,22,0,0,0,4,12,36,22,27,0,0,0,0,1,0,0,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,11,56,0,0,0,66,0,157,0,0,0,27,2,0,0,0,0,0,0,0,0,0,41,0,0,0,0,2,0,0,0,0,3,97,14,0,0,0,0,0,0,0,0,61,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,6,0,0,0,0,1,19,29,0,11,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,32,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,31,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,39,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,4,1 +92,0,0,5,0,123,48,0,215,57,44,0,0,0,64,0,25,0,6,1,0,0,0,2,0,0,0,0,64,0,344,0,0,0,112,0,123,6,0,0,584,0,0,0,1,0,0,22,0,1,0,0,343,347,0,0,0,0,0,1,0,0,0,109,0,65,0,0,43446,123,968,0,408,0,0,0,0,0,100,0,0,0,0,0,2,28,3834,0,0,112,0,0,0,193,0,2924,15,40,1,0,2,0,1536,0,58,0,0,3616,0,0,0,0,60,0,8,0,0,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,57,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,66,1,1,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,36,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,3798,0,350,0,0,0,686,688,190,2363,4044,0,0,0,0,1,0,0,0,0,0,0,0,0,13304,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,8,69,776,5,0,0,793,0,597,0,0,0,723,95,0,0,0,0,0,0,0,0,0,402,1,0,0,0,3,0,0,0,0,344,219,843,0,0,43,0,0,0,0,0,3335,0,0,13341,0,0,1,0,1,0,0,0,48,0,0,0,3,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,121,1,1,1,0,750,0,0,0,672,1,235,811,0,408,0,0,0,0,0,0,613,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,0,0,0,0,0,0,0,0,0,0,0,0,0,18,3909,403,1 +14,0,0,7,0,77,25,0,62,15,14,0,0,7,20,0,692,0,7,2,0,0,0,9,0,14,20,0,21,0,4,0,0,0,39,2320,77,6,0,0,120,0,0,0,1,0,0,6,0,0,0,0,7,307,0,0,0,0,0,1,0,0,0,31,0,20,0,0,19161,77,900,0,24,0,0,0,0,0,45,0,0,0,0,0,10,56,3614,0,0,39,0,0,0,0,0,306,25,8,0,0,2,0,884,0,14,31,0,3241,0,0,0,0,18,0,2,0,0,0,1,1,0,0,0,14,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,15,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1336,0,140,0,0,0,14,32,398,1065,1347,0,0,0,0,1,0,4,0,0,0,0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,106,42,424,7,0,0,476,0,525,0,0,0,303,23,0,0,0,0,0,0,0,0,0,827,1,0,0,0,11,0,0,0,0,4,179,94,0,0,59,0,0,0,0,0,2796,1,0,822,15,0,1,1,0,0,0,0,12,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,15,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,83,1,1,1,0,38,0,0,0,0,1,116,605,0,45,14,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1532,207,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,62,0,0,0,0,0,1,0,0,0,0,0,2,0,0,391,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,52,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,261,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,63,0,57,0,0,0,4,10,36,174,72,0,0,0,0,1,0,0,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,112,3,0,0,117,0,187,0,0,0,40,9,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,61,0,0,50,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,90,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,111,22,1 +5,0,0,5,0,46,6,0,21,2,4,0,0,2,10,1,23,0,7,3,0,0,0,5,0,8,3,0,7,0,7,0,0,0,17,0,46,6,0,0,55,0,0,0,1,0,0,2,0,0,0,0,7,108,0,0,0,0,0,1,0,0,0,0,0,11,0,0,1579,46,95,0,12,0,0,0,0,0,18,0,0,0,0,0,7,16,256,0,0,17,0,0,0,0,0,103,5,3,0,0,2,0,79,0,8,0,0,1033,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,197,0,102,0,0,0,12,33,213,83,193,0,0,0,0,1,0,3,0,0,0,0,0,0,487,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,20,203,5,0,0,215,0,310,0,0,0,100,14,0,0,0,0,0,0,0,0,0,74,1,0,0,0,8,0,0,0,0,6,132,31,0,0,0,0,0,0,0,0,149,0,0,207,3,0,1,1,0,0,0,0,11,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,55,0,0,0,0,1,63,154,0,16,9,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,308,72,1 +2,0,0,3,0,15,2,0,3,0,3,0,0,0,3,0,9,0,7,2,0,0,0,1,0,0,0,0,1,0,2,0,0,0,5,0,15,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,3,0,0,52,15,21,0,3,0,0,0,0,0,0,0,0,0,0,0,2,2,6,0,0,5,0,0,0,0,0,12,0,0,0,0,2,0,10,0,1,0,0,147,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,21,0,23,0,0,0,2,4,33,11,27,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,56,3,0,0,53,0,119,0,0,0,17,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,3,0,0,0,0,2,97,1,0,0,0,0,0,0,0,0,19,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,20,5,0,3,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,7,1 +2,0,0,4,2,59,12,8,64,5,24,0,0,6,29,1,906,0,8,8,0,2,1,8,0,11,12,0,11,0,3,2,0,2,12,2216,61,6,28,0,195,0,0,0,1,0,0,3,1,0,0,0,5,292,0,0,0,0,0,1,0,0,0,0,0,8,0,0,20681,59,1206,0,12,0,0,0,0,0,30,6,0,0,0,0,10,34,3767,0,8,12,2,0,0,0,0,234,20,20,0,0,2,2,1106,0,7,12,0,2694,0,0,0,0,26,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,52,12,12,12,0,0,0,1933,0,115,0,0,0,10,44,335,939,1898,0,0,0,0,1,0,8,0,0,0,0,0,0,1669,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,121,138,393,6,0,0,411,0,469,0,0,0,178,50,0,0,0,0,0,0,0,0,0,1050,1,0,14,0,19,0,0,0,0,5,154,51,0,0,16,0,0,0,0,0,2918,1,0,250,9,0,1,1,0,0,0,0,27,0,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,9,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,71,1,1,1,0,78,0,0,0,0,17,73,328,0,25,14,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,9,0,0,0,0,0,0,0,0,0,0,0,4,0,0,979,67,1 +4,0,0,4,0,26,3,0,16,1,4,0,0,0,8,1,15,0,7,1,0,0,0,1,0,0,0,0,6,0,12,0,0,0,11,0,26,6,0,0,39,0,0,0,1,0,0,2,0,0,0,0,11,99,0,0,0,0,0,1,0,0,0,0,0,8,0,0,9503,26,66,0,18,0,0,0,0,0,5,0,0,0,0,0,1,5,47,0,0,11,0,0,0,0,0,42,0,0,0,0,2,0,50,0,6,0,0,5482,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,58,0,56,0,0,0,22,21,52,48,73,0,0,0,0,1,0,0,0,0,0,1,1,0,8597,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,8,11,313,4,0,0,175,0,256,0,0,0,95,18,0,0,0,0,0,0,0,0,0,54,1,0,0,0,2,0,0,0,0,8,112,51,0,0,0,0,1,0,0,0,61,0,0,26,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,28,0,0,0,12,1,37,173,0,18,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,107,34,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,18,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,18,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,36,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,3,1 +5,0,0,4,6,29,3,6,93,2,10,0,0,0,11,1,63,0,7,13,0,12,0,1,0,0,0,0,6,0,11,0,0,6,12,0,35,6,0,0,62,0,0,0,1,0,0,4,0,0,0,0,10,130,0,0,0,0,0,1,6,0,0,0,0,11,0,0,1155,29,548,0,17,0,0,0,0,0,21,18,0,0,0,0,1,8,145,0,6,12,6,0,0,0,0,55,0,8,0,0,2,6,85,0,9,0,0,714,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,151,0,107,0,0,0,20,19,73,58,163,0,0,0,0,1,0,0,0,0,0,0,0,0,421,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,14,363,10,0,0,400,0,367,0,0,0,159,19,0,0,0,0,0,0,0,0,0,188,1,0,0,0,26,0,0,0,0,7,115,58,0,0,0,0,0,0,0,0,140,0,0,127,0,0,1,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,26,0,0,0,8,49,47,320,0,17,0,0,0,0,0,0,100,6,0,0,0,0,0,0,0,0,0,0,0,6,0,1,2,0,0,0,0,0,0,0,0,0,0,0,12,0,3,261,64,1 +2,0,0,5,0,25,7,0,28,3,4,0,0,0,13,1,15,0,7,1,0,0,0,1,0,0,0,0,12,0,17,0,0,0,12,0,25,6,0,0,89,0,0,0,1,0,0,9,0,0,0,0,16,511,0,0,0,0,0,1,0,0,0,0,0,14,0,0,2177,25,149,0,29,0,0,0,0,0,39,0,0,0,0,1,1,13,293,0,0,12,0,0,0,0,0,152,0,15,0,0,2,0,123,0,10,0,0,788,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,284,0,116,0,0,0,32,27,58,203,271,0,0,0,0,1,0,0,0,0,0,0,0,0,792,0,0,0,0,0,0,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,8,15,208,5,0,0,241,0,322,0,0,0,161,11,0,0,0,0,0,0,5,0,0,75,1,0,0,0,2,0,0,0,0,13,116,1183,0,0,0,0,0,0,0,0,199,0,0,398,0,0,1,0,0,0,0,0,29,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,44,0,0,0,10,1,37,459,0,29,0,0,0,0,0,0,83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1458,59,1 +3,0,0,6,0,52,97,0,67,1,95,0,0,7,5,0,1382,0,6,2,0,0,0,8,0,11,3,0,23,0,2,0,0,0,12,4202,52,6,0,0,47,0,0,0,1,0,0,4,0,0,0,0,2,1664,0,0,0,0,0,1,0,0,0,0,0,4,0,0,181927,52,1955,0,21,0,0,0,0,0,204,0,0,0,0,0,9,321,10176,0,0,12,0,0,0,0,0,1084,25,6,0,0,2,0,1637,0,1,866,0,11571,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,12,12,12,0,0,0,2169,0,115,0,0,0,16,41,745,18077,2158,0,0,0,0,1,0,6,0,0,0,0,0,0,796,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,108,23,383,6,0,0,568,0,368,0,0,0,401,23,0,0,0,0,0,0,0,0,0,1659,1,0,0,0,10,0,0,0,0,2,187,81,0,0,839,0,1,0,0,0,8085,1,0,607,98,0,1,1,0,0,0,0,12,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,98,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,108,0,0,0,0,1,64,401,0,25,14,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3955,117,1 +3,0,0,4,2,26,9,2,43,1,6,0,0,0,9,1,32,0,7,5,0,4,0,1,0,0,0,0,3,0,7,0,0,2,10,0,28,6,0,0,37,0,0,0,1,0,0,4,0,0,0,0,6,148,0,0,0,0,0,1,2,0,0,0,0,9,0,0,606,26,237,0,10,0,0,0,0,0,24,6,0,0,0,0,1,6,108,0,2,10,2,0,0,0,0,27,0,7,0,0,2,2,62,0,7,0,0,789,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,125,0,110,0,0,0,12,11,56,32,131,0,0,0,0,1,0,0,0,0,0,0,0,0,391,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,12,242,6,0,0,237,0,306,0,0,0,92,19,0,0,0,0,0,0,0,0,0,107,1,0,0,0,10,0,0,0,0,3,112,27,0,0,0,0,0,0,0,0,83,0,0,82,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,15,0,0,0,8,17,38,358,0,10,0,0,0,0,0,0,64,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,4,0,3,237,56,1 +0,0,0,4,0,14,2,0,16,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,3,0,14,6,0,0,12,0,0,0,1,0,0,2,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,4,0,0,474,14,50,0,2,0,0,0,0,0,10,0,0,0,0,0,1,5,82,0,0,3,0,0,0,0,0,11,0,3,0,0,2,0,18,0,1,0,0,218,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,84,0,47,0,0,0,0,3,31,14,97,0,0,0,0,1,0,0,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,104,4,0,0,112,0,480,0,0,0,41,13,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,1,97,22,0,0,0,0,0,0,0,0,48,0,0,77,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,1,0,0,0,0,1,17,90,0,2,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,116,43,1 +2,0,0,7,0,35,6,0,37,1,6,0,0,2,4,0,485,0,6,2,0,0,0,7,0,11,0,0,4,0,0,0,0,0,3,762,35,8,0,0,27,0,0,0,1,0,0,3,0,0,0,0,1,180,0,0,0,0,0,1,0,0,0,1,0,4,0,0,4775,35,546,0,2,0,0,0,0,0,19,0,0,0,0,0,8,19,903,0,0,3,0,0,0,0,0,89,5,6,0,0,2,0,499,0,1,0,0,1045,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,400,0,52,0,0,0,0,3,247,323,362,0,0,0,0,1,0,3,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,16,177,7,0,0,214,0,297,0,0,0,62,10,0,0,0,0,0,0,0,0,0,546,1,0,0,0,9,0,0,0,0,1,118,24,0,0,1,0,0,0,0,0,1291,1,0,44,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,1,0,0,0,0,1,38,126,0,3,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,382,43,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,73,0,0,0,0,0,1,0,0,0,0,0,2,0,0,674,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,44,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,267,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,56,0,0,0,4,10,32,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,111,3,0,0,114,0,258,0,0,0,40,7,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,54,0,0,38,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,115,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,100,23,1 +6049,0,0,9,1,31,29,1,46,9,24,0,3,0,37,6,69,0,9,1,0,0,0,2,0,0,0,0,85,0,4,0,0,1,10,0,32,63,0,0,79,0,0,0,1,0,0,5,0,0,0,0,3,124,0,0,0,0,0,1,0,0,0,12,0,18,0,0,61909,31,293,0,89,0,0,0,0,0,23,0,0,0,0,0,2,9,183,0,1,10,1,0,4,0,0,150,0,8,0,0,10,1,216,0,15,0,0,123526,0,0,0,0,18071,9,0,0,0,0,0,1,0,0,0,3,0,0,3,0,0,0,0,6,0,0,0,6027,0,0,0,0,0,12045,0,6027,0,0,0,0,0,0,6038,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,15,0,0,0,0,6027,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,178,0,97,0,0,0,6,7,71,33763,201,0,0,0,0,1,0,0,0,0,0,0,0,0,101377,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,1,133,71,975,12,0,0,346,0,611,0,1,0,119,319,0,0,0,0,0,0,0,0,0,223,1,0,0,0,3,0,0,0,0,2,130,35,0,0,0,0,0,0,0,0,450,0,0,166,0,0,1,0,0,0,0,0,13,0,0,0,1,0,0,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,33,1,1,1,0,91,0,0,0,0,9,42,202,0,89,0,0,0,0,0,0,130,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,7,442,274,1 +0,0,0,3,0,11,8,0,46,0,12,0,0,0,2,0,16,0,7,1,0,0,0,1,0,18,0,0,5,0,0,0,0,0,0,0,11,6,0,0,73,0,0,0,1,0,0,5,0,0,0,0,18,73,0,0,0,0,0,1,0,0,0,0,0,8,0,0,1040,11,136,0,24,0,0,0,0,0,20,0,0,0,0,0,1,8,142,0,0,0,0,0,1,35,0,329,20,8,0,0,2,0,202,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,137,0,103,0,0,0,18,20,32,289,144,0,0,0,0,1,0,0,0,0,0,0,0,0,437,0,0,0,0,0,0,0,0,0,0,0,0,5,0,6,0,0,0,0,0,0,8,3,118,3,0,0,164,0,261,0,0,0,104,10,0,0,0,0,0,0,0,0,0,91,1,0,0,0,2,0,0,0,0,19,98,160,0,0,42,0,0,0,0,0,108,0,0,125,0,0,1,0,1,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,5,0,0,0,0,1,11,152,0,23,0,0,0,0,0,0,111,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,6,252,137,1 +3,0,0,4,2,27,9,2,43,1,6,0,0,0,9,1,32,0,7,5,0,4,0,1,0,0,0,0,4,0,7,0,0,2,10,0,29,6,0,0,37,0,0,0,1,0,0,4,0,0,0,0,6,142,0,0,0,0,0,1,2,0,0,0,0,9,0,0,620,27,237,0,11,0,0,0,0,0,24,6,0,0,0,0,1,6,115,0,2,10,2,0,0,0,0,28,0,7,0,0,2,2,63,0,7,0,0,417,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,128,0,114,0,0,0,12,11,60,32,134,0,0,0,0,1,0,0,0,0,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,12,226,6,0,0,240,0,317,0,0,0,92,19,0,0,0,0,0,0,0,0,0,107,1,0,0,0,10,0,0,0,0,3,113,27,0,0,0,0,0,0,0,0,81,0,0,85,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,16,0,0,0,8,17,39,358,0,11,0,0,0,0,0,0,64,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,4,0,3,251,55,1 +2,0,0,6,0,15,2,0,14,1,4,0,0,0,6,0,15,0,7,1,0,0,0,1,0,0,0,0,2,0,3,0,0,0,4,0,15,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,52,0,0,0,0,0,1,0,0,0,0,0,5,0,0,326,15,51,0,5,0,0,0,0,0,8,0,0,0,0,0,1,4,48,0,0,4,0,0,0,0,0,19,0,3,0,0,2,0,26,0,3,0,0,168,0,0,0,0,15,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,59,0,58,0,0,0,4,6,38,21,67,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,10,100,8,0,0,134,0,218,0,0,0,68,4,0,0,0,0,0,0,0,0,0,48,1,0,0,0,2,0,0,0,0,3,97,47,0,0,0,0,0,0,0,0,60,0,0,30,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,6,0,0,0,2,1,19,111,0,5,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,125,98,1 +6,0,0,7,0,23,2,0,3,2,5,0,0,0,11,0,9,0,7,4,0,0,0,0,0,0,0,0,1,0,2,0,0,0,12,0,23,6,0,0,40,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,2,0,10,0,0,91,23,32,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,6,0,0,12,0,0,0,0,0,14,0,0,0,0,2,0,29,0,7,0,0,251,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,2,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,25,0,32,0,0,0,2,5,47,12,32,0,0,0,0,1,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,8,18,85,9,0,0,86,0,135,0,0,0,47,3,0,0,0,0,0,0,0,0,0,37,0,0,0,0,4,0,0,0,0,2,107,8,0,0,0,0,0,0,0,0,18,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,3,0,0,0,0,1,35,24,0,3,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,11,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,76,0,0,0,0,0,1,0,0,0,0,0,2,0,0,620,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,43,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,258,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,58,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,113,3,0,0,114,0,245,0,0,0,40,11,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,59,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,129,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,103,23,1 +19,0,0,9,6,83,29,24,126,10,31,0,0,6,25,1,107,0,7,17,0,6,3,9,0,10,3,0,13,0,11,0,0,6,42,5852,89,46,153,0,216,0,0,0,1,0,0,4,0,0,0,0,11,455,0,0,0,0,0,1,0,0,0,17,0,28,0,0,15852,83,818,0,21,0,0,0,0,0,22,18,0,0,0,1,10,28,2721,0,24,42,6,0,2,55,0,723,100,7,0,0,2,6,472,0,21,13,0,2276,0,0,0,0,14,1,0,0,0,0,0,1,0,0,8,17,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,12,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,4,1,0,0,0,0,0,2,0,0,5,0,0,0,2,20,7,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,21,12,12,12,0,0,0,1484,0,127,0,0,0,21,29,353,928,1481,0,0,0,0,1,0,8,0,0,0,0,0,0,721,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,91,43,590,15,0,0,608,0,690,0,0,0,334,31,0,0,0,0,0,0,0,0,0,332,1,0,0,0,35,0,0,0,0,7,193,164,0,0,183,0,3,0,0,0,1280,1,0,134,6,0,1,1,0,0,0,0,6,0,0,0,2,0,0,0,0,0,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,6,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,92,1,1,1,0,50,0,0,0,8,49,131,433,0,25,12,0,0,0,0,0,252,7,0,0,0,0,0,0,0,0,0,0,0,8,0,1,18,0,0,0,0,0,0,0,0,0,0,0,12,0,2,800,165,1 +4,0,0,6,0,21,4,0,8,0,4,0,0,0,8,0,15,0,7,2,0,0,0,2,0,0,0,0,2,0,3,0,0,0,11,0,21,6,0,0,44,0,0,0,1,0,0,5,0,0,0,0,2,60,0,0,0,0,0,1,0,0,0,0,0,7,0,0,843,21,69,0,5,0,0,0,0,0,19,0,0,0,0,0,3,10,114,0,0,11,0,0,0,0,0,17,0,9,1,0,2,0,28,0,5,0,0,375,0,0,0,0,3,0,0,0,0,0,0,1,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,125,0,69,0,0,0,4,4,41,23,140,0,0,0,0,1,0,0,0,0,0,0,0,0,466,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,2,0,8,24,143,8,0,0,157,0,298,0,0,0,96,8,0,0,0,0,0,0,0,0,0,46,1,0,0,0,4,0,0,0,0,1,109,43,0,0,0,0,2,0,0,0,65,0,0,124,0,0,1,0,0,1,0,0,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,6,0,0,0,2,1,32,159,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,161,294,1 +36,0,0,12,2,33,52,2,69,16,59,0,2,0,80,6,120,0,11,1,0,0,0,2,0,0,0,0,9,0,11,0,0,2,18,0,35,108,0,0,107,0,0,0,1,0,0,2,0,0,0,0,10,129,0,0,0,0,0,1,0,0,0,18,0,28,0,0,837,33,343,0,20,0,0,0,0,0,11,0,0,0,0,0,2,5,83,0,2,18,2,0,4,0,0,130,0,4,0,0,10,2,275,0,24,0,0,875,0,0,0,0,10,13,0,0,0,0,0,1,0,0,0,4,0,0,4,0,0,0,0,7,0,0,0,8,0,0,0,0,0,5,0,7,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,26,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,104,0,63,0,0,0,20,21,75,158,124,0,0,0,0,1,0,0,0,0,0,0,0,0,629,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,231,79,497,17,0,0,500,0,842,0,2,0,177,25,0,0,0,0,0,0,0,0,0,399,1,0,0,0,3,0,0,0,0,9,150,35,0,0,0,0,0,0,0,0,479,0,0,83,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,36,1,1,1,0,29,0,0,0,0,17,53,211,0,20,0,0,0,0,0,0,155,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,16,0,0,0,0,0,0,0,0,0,0,0,2,0,3,371,49,1 +6226,0,0,6,0,35,132,0,185,6,13,0,0,0,15,0,29,0,8,1,0,0,0,2,0,0,6,0,99,0,2,2,0,0,16,0,35,6,0,0,359,0,0,0,1,0,0,9,0,0,0,0,3,412,0,0,0,0,0,1,0,0,0,15,0,19,0,0,70045,35,535,0,103,0,0,0,0,0,36,0,0,0,0,3,2,21,499,0,0,16,0,0,1,157,0,1266,20,15,1,0,2,0,972,0,10,0,0,121409,0,0,0,0,18666,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,6215,0,0,0,0,0,12431,0,6225,0,0,0,0,0,0,6230,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,6227,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,416,0,124,0,0,0,6,18,77,38785,426,0,0,0,0,1,0,0,0,0,0,0,0,0,105335,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,8,15,464,6,0,0,414,0,670,0,0,0,316,138,0,0,0,0,0,0,0,0,0,382,1,0,0,0,3,0,0,0,0,4,124,1043,0,0,48,0,0,0,0,0,2690,0,0,433,0,0,1,4,0,0,0,0,14,0,0,0,5,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,112,0,0,0,0,1,51,574,0,109,0,0,0,0,0,0,386,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,5,548,130,1 +2,0,0,4,0,26,3,0,16,1,4,0,0,0,9,1,15,0,7,1,0,0,0,1,0,0,0,0,12,0,23,0,0,0,9,0,26,6,0,0,48,0,0,0,1,0,0,6,0,0,0,0,22,112,0,0,0,0,0,1,0,0,0,0,0,9,0,0,1238,26,119,0,35,0,0,0,0,0,27,0,0,0,0,0,2,13,206,0,0,9,0,0,0,0,0,103,0,9,0,0,2,0,65,0,7,0,0,449,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,186,0,97,0,0,0,44,39,66,120,193,0,0,0,0,1,0,0,0,0,0,0,0,0,564,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,8,12,170,4,0,0,196,0,238,0,0,0,110,15,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,19,118,55,0,0,0,0,0,0,0,0,142,0,0,217,0,0,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,56,0,0,0,24,1,35,395,0,35,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,288,36,1 +13,0,0,10,0,54,10,0,46,5,11,0,0,6,17,1,820,0,7,1,0,0,0,9,0,11,0,0,13,0,6,0,0,0,13,3333,54,6,0,0,97,0,4,0,1,0,0,5,0,0,0,0,6,332,0,0,0,0,0,1,0,0,0,0,0,14,0,0,17128,54,957,0,15,0,0,0,0,0,33,0,0,0,0,0,9,40,3716,0,0,13,0,0,0,0,0,243,20,5,0,0,2,0,912,0,9,13,0,2622,0,0,0,0,14,0,2,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,7,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,42,12,12,12,0,0,0,1246,0,101,0,0,0,13,11,330,786,1216,0,0,0,0,1,0,4,0,0,0,0,0,0,846,0,0,0,0,0,0,0,0,0,0,0,0,76,1,0,0,0,0,0,1,0,84,43,341,12,0,0,352,0,507,0,0,0,178,30,0,0,0,0,0,0,0,0,0,918,1,0,0,0,10,0,0,0,0,5,174,26,0,0,21,0,0,0,0,0,2952,1,0,943,11,0,1,1,1,0,0,0,12,0,0,0,1,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,11,366,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,71,1,1,1,0,28,0,0,0,2,1,67,125,0,16,14,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1342,75,1 +2,0,0,5,0,21,4,0,9,1,4,0,0,0,9,1,15,0,7,1,0,0,0,3,0,0,0,0,3,0,8,0,0,0,7,0,21,6,0,0,30,0,0,0,1,0,0,5,0,0,0,0,7,80,0,0,0,0,0,1,0,0,0,0,0,9,0,0,5918,21,92,0,11,0,0,0,0,0,28,0,0,0,0,0,3,9,1352,0,0,7,0,0,0,0,0,32,0,9,0,0,2,0,37,0,6,0,0,384,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,793,0,87,0,0,0,14,13,51,29,781,0,0,0,0,1,0,0,0,0,0,0,0,0,1834,0,0,0,0,0,0,0,0,0,0,0,0,5,0,6,0,0,0,0,0,0,8,11,124,6,0,0,189,0,255,0,0,0,118,16,0,0,0,0,0,0,7,0,0,49,1,0,0,0,4,0,0,0,0,4,107,70,0,0,0,0,0,0,0,0,392,0,0,1377,0,0,1,1,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,17,0,0,0,8,1,28,342,0,11,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,825,39,1 +6,0,0,4,4,22,6,10,47,5,7,0,0,0,11,0,40,0,6,10,0,6,1,2,0,0,0,0,5,0,3,0,0,4,10,0,26,6,9,0,41,0,0,0,1,0,0,1,0,0,0,0,2,77,0,0,0,0,0,1,2,0,0,10,0,12,0,0,431,22,344,0,8,0,0,0,0,0,6,12,0,0,0,0,2,4,32,0,10,10,4,0,0,0,0,30,0,2,0,0,2,4,59,0,9,0,0,401,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,10,0,0,0,0,0,0,50,0,50,0,0,0,4,7,52,41,64,0,0,0,0,1,0,0,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,14,255,8,0,0,266,0,275,0,0,0,113,32,0,0,0,0,0,0,0,0,0,117,1,0,0,0,19,0,0,0,0,3,108,46,0,0,0,0,0,0,0,0,81,0,0,21,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,9,0,0,0,0,33,36,229,0,8,0,0,0,0,0,0,51,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,5,0,0,0,0,0,0,0,0,0,0,0,7,0,1,89,50,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,147,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2142,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,54,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,366,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,65,0,55,0,0,0,4,10,32,174,74,0,0,0,0,1,0,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,126,3,0,0,114,0,591,0,0,0,40,18,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,60,0,0,63,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,113,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,109,27,1 +3,0,0,2,2,17,2,2,34,0,4,0,0,0,2,0,31,0,6,5,0,4,0,1,0,0,0,0,4,0,1,0,0,2,7,0,19,6,0,0,17,0,0,0,1,0,0,2,0,0,0,0,0,76,0,0,0,0,0,1,2,0,0,1,0,1,0,0,2625,17,185,0,5,0,0,0,0,0,10,6,0,0,0,0,1,4,608,0,2,7,2,0,0,0,0,16,0,3,0,0,2,2,29,0,0,0,0,305,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6,0,0,0,0,0,0,350,0,47,0,0,0,0,3,37,23,357,0,0,0,0,1,0,0,0,0,0,0,0,0,830,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,177,4,0,0,200,0,155,0,0,0,81,8,0,0,0,0,0,0,0,0,0,79,1,0,0,0,10,0,0,0,0,1,99,37,0,0,0,0,0,0,0,0,210,0,0,637,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,4,0,0,0,0,17,26,135,0,5,0,0,0,0,0,0,32,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,379,37,1 +2,0,0,3,2,55,12,8,61,4,13,0,0,6,26,1,892,0,8,8,0,2,1,8,0,11,0,0,17,0,19,0,0,2,11,2212,57,6,26,0,173,0,0,0,1,0,0,3,1,0,0,0,19,315,0,0,0,0,0,1,0,0,0,0,0,8,0,0,15231,55,1186,0,32,0,0,0,0,0,30,6,0,0,0,0,10,34,2684,0,8,11,2,0,0,0,0,295,20,19,0,0,2,2,1045,0,6,10,0,2109,0,0,0,0,32,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,46,12,12,12,0,0,0,1293,0,113,0,0,0,38,41,320,960,1260,0,0,0,0,1,0,8,0,0,0,0,0,0,1395,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,121,121,386,5,0,0,399,0,471,0,0,0,175,39,0,0,0,0,0,0,0,0,0,1019,1,0,14,0,19,0,0,0,0,19,149,51,0,0,15,0,0,0,0,0,2769,1,0,207,9,0,1,1,0,0,0,0,27,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,9,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,55,0,0,0,0,17,68,323,0,33,14,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,8,0,0,0,0,0,0,0,0,0,0,0,3,0,0,888,70,1 +2,0,0,5,2,44,31,2,92,2,25,0,0,7,5,0,1564,0,6,6,0,4,0,7,0,10,0,0,31,0,1,0,0,2,5,7557,46,6,0,0,52,0,0,0,1,0,0,1,0,0,0,0,1,630,0,0,0,0,0,1,2,0,0,1,0,2,0,0,74279,44,1886,0,29,0,0,0,0,0,49,6,0,0,0,0,8,154,6078,0,2,5,2,0,0,0,0,391,25,2,0,0,2,2,1660,0,0,123,0,5108,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,12,12,12,0,0,0,1711,0,45,0,0,0,16,19,617,10761,1679,0,0,0,0,1,0,3,0,0,0,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,22,397,7,0,0,424,0,387,0,0,0,196,21,0,0,0,0,0,0,0,0,0,1730,1,0,0,0,17,0,0,0,0,2,196,9,0,0,148,0,0,0,0,0,5588,1,0,232,24,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,76,0,0,0,0,17,51,193,0,30,12,0,0,0,0,0,90,2,0,0,0,0,0,0,0,0,0,0,0,5,0,2,6,0,0,0,0,0,0,0,0,0,0,0,4,0,1,2041,51,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,0,0,0,77,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,30,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,46,0,0,0,45,0,36,0,0,0,15,3,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,93,11,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,28,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,9,1 +1,0,17,5,3,23,30,5,62,0,19,0,1,1,9,0,79,0,8,9,0,1,0,2,1,1,0,0,1,0,1,0,0,1,6,21,25,54,0,0,74,0,0,0,1,0,0,1,0,0,0,0,1,120,0,0,0,0,0,1,0,0,0,0,0,10,0,0,373,23,234,0,3,0,0,0,0,0,6,3,0,0,0,0,2,4,58,0,5,6,1,0,3,30,0,303,50,2,0,0,5,3,182,0,4,0,0,277,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,61,5,50,0,0,0,1,4,45,315,86,0,0,0,0,1,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,362,17,297,8,0,0,330,0,453,0,0,0,106,9,0,4,0,0,0,0,0,0,0,209,1,0,0,0,13,0,0,0,0,2,125,85,0,18,116,0,0,0,0,0,374,0,0,40,0,0,1,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,1,0,0,0,0,17,31,112,0,3,0,0,0,0,0,0,126,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,1,0,0,0,0,0,0,2,0,0,0,51,0,2,169,42,1 +0,0,0,1,0,10,2,0,7,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,24,10,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,11,0,0,2,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,25,6,31,0,0,0,0,0,0,0,0,0,2,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,37,1,0,0,40,0,36,0,0,0,9,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,94,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,2,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,1,1 +5,0,0,4,2,43,6,2,44,1,5,0,0,2,6,0,34,0,7,7,0,4,0,5,0,8,0,0,5,0,3,0,0,2,15,0,45,6,0,0,44,0,0,0,1,0,0,1,0,0,0,0,3,110,0,0,0,0,0,1,2,0,0,4,0,7,0,0,2105,43,291,0,6,0,0,0,0,0,9,6,0,0,0,0,7,14,427,0,2,15,2,0,0,0,0,89,5,2,0,0,2,2,57,0,4,0,0,638,0,0,0,0,15,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,253,0,68,0,0,0,4,5,208,40,266,0,0,0,0,1,0,5,0,0,0,0,0,0,627,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,14,278,6,0,0,314,0,330,0,0,0,151,8,0,0,0,0,0,0,4,0,0,104,1,0,0,0,16,0,0,0,0,3,155,46,0,0,0,0,0,0,0,0,202,0,0,345,3,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,7,0,0,0,0,17,60,182,0,7,9,0,0,0,0,0,78,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,4,0,1,329,58,1 +9,0,0,5,8,36,278,14,389,13,21,0,0,0,17,0,130,0,6,18,0,14,1,2,0,0,0,0,8,0,3,0,0,8,23,0,44,174,2,0,726,0,0,0,1,0,0,5,0,0,0,0,2,150,0,0,0,0,0,1,6,0,0,19,0,26,0,0,2334,36,1451,0,11,0,0,0,0,0,22,24,0,0,0,0,2,8,442,0,14,23,8,0,1,302,0,2191,15,7,0,0,2,8,1604,0,14,0,0,500,0,0,0,0,5,0,4,0,0,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,4,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,11,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,307,0,111,0,0,0,4,6,72,1380,427,0,0,0,0,1,0,0,0,0,0,0,0,0,1985,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,21,464,13,0,0,940,0,729,0,0,0,428,22,0,0,0,0,0,0,4,0,0,841,1,0,0,0,35,0,0,0,0,3,163,787,0,0,31,0,0,0,0,0,360,0,0,442,0,0,1,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,12,0,0,0,0,65,67,468,0,11,0,0,0,0,0,0,999,7,0,0,0,0,0,0,0,0,0,0,0,8,0,1,15,0,0,0,0,0,0,0,0,0,0,0,15,0,6,409,89,1 +65,0,0,5,10,100,38,16,272,35,49,0,0,0,41,0,90,0,6,22,0,18,1,2,0,2,0,0,63,0,337,0,0,10,81,0,110,58,1,0,438,0,0,0,1,0,0,18,0,0,0,0,338,299,0,0,0,0,0,1,8,0,0,14,0,42,0,0,34463,100,1652,0,402,0,0,0,0,0,85,30,0,0,0,0,2,22,3190,0,16,81,10,0,0,168,0,2732,15,33,0,0,2,10,1395,0,39,0,0,2723,0,0,0,0,58,0,6,0,0,0,0,1,1,0,0,22,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,37,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,5,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,22,0,0,0,0,0,0,3127,0,437,0,0,0,676,678,164,2109,3304,0,0,0,0,1,0,0,0,0,0,0,0,0,10473,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,16,44,997,15,0,0,972,0,770,0,0,0,646,78,0,0,0,0,0,0,0,0,0,496,0,0,0,0,43,0,0,0,0,339,186,700,0,0,40,0,0,0,0,0,2706,0,0,10454,0,0,1,0,0,0,0,0,39,0,0,0,1,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,98,1,1,1,0,739,0,0,0,672,81,191,767,0,402,0,0,0,0,0,0,524,9,0,0,0,0,0,0,0,0,0,0,0,10,0,1,37,0,0,0,0,0,0,0,0,0,0,0,19,0,16,3358,434,1 +5,0,0,4,0,16,5,0,35,0,11,0,0,0,3,0,21,0,7,1,0,0,0,1,0,0,3,0,2,0,1,1,0,0,4,0,16,6,0,0,46,0,0,0,1,0,0,1,1,0,0,0,2,49,0,0,0,0,0,1,0,0,0,0,0,4,0,0,8610,16,97,0,5,0,0,0,0,0,12,0,0,0,0,0,1,3,32,0,0,4,0,0,0,20,0,177,30,6,0,0,2,0,124,0,1,0,0,2677,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,59,0,54,0,0,0,4,8,38,4304,56,0,0,0,0,1,0,0,0,0,0,0,0,0,1740,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,153,4,0,0,112,0,175,0,0,0,44,5,0,0,0,0,0,0,0,0,0,82,1,0,5,0,2,0,0,0,0,2,98,51,0,0,63,0,0,0,0,0,42,0,0,27,0,0,1,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,7,0,0,0,0,1,20,62,0,7,0,0,0,0,0,0,61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,109,36,1 +3,0,0,3,2,15,2,2,27,1,5,0,0,0,4,0,31,0,6,5,0,4,0,1,0,0,0,0,4,0,1,0,0,2,3,0,17,6,0,0,14,0,0,0,1,0,0,1,0,0,0,0,0,68,0,0,0,0,0,1,2,0,0,1,0,4,0,0,420,15,187,0,5,0,0,0,0,0,7,6,0,0,0,0,1,4,39,0,2,3,2,0,0,0,0,15,0,2,0,0,2,2,26,0,2,0,0,355,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6,0,0,0,0,0,0,50,0,33,0,0,0,0,3,37,20,59,0,0,0,0,1,0,0,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,153,5,0,0,200,0,261,0,0,0,85,15,0,0,0,0,0,0,0,0,0,75,1,0,0,0,10,0,0,0,0,1,97,53,0,0,0,0,1,0,0,0,65,0,0,56,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,17,20,105,0,5,0,0,0,0,0,0,33,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,5,0,1,87,29,1 +2,0,0,0,0,15,3,0,3,2,1,0,0,0,4,0,13,0,7,2,0,0,0,0,0,0,0,0,2,0,4,0,0,0,5,0,15,6,0,0,33,0,0,0,1,0,0,1,0,0,0,0,3,28,0,0,0,0,0,1,0,0,0,0,0,2,0,0,194,15,32,0,6,0,0,0,0,0,2,0,0,0,0,0,1,3,4,0,0,5,0,0,0,0,0,20,0,0,0,0,2,0,25,0,2,0,0,179,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,20,0,51,0,0,0,6,8,36,24,29,0,0,0,0,1,0,0,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,9,65,0,0,0,76,0,153,0,0,0,40,5,0,0,0,0,0,0,0,0,0,31,1,0,0,0,2,0,0,0,0,4,97,24,0,0,0,0,0,0,0,0,26,0,0,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,8,0,0,0,0,1,20,69,0,6,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,18,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,49,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,20,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,0,0,0,44,0,43,0,0,0,14,8,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,13,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,32,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,5,1 +14,0,0,4,0,39,5,0,38,10,1,0,0,0,12,0,73,0,11,2,0,0,0,2,0,0,27,0,9,0,12,0,0,0,21,0,39,6,0,0,82,0,2,0,1,0,0,5,2,0,0,0,11,88,0,0,0,0,0,1,0,0,0,20,0,10,0,0,21665,39,222,0,21,0,0,0,0,0,31,0,0,0,0,0,3,13,9707,0,0,21,0,0,0,0,0,46,0,12,0,0,2,0,237,0,9,0,0,6415,0,0,0,0,7,1,0,0,4,0,0,1,0,0,0,13,0,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,12,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,11,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,0,0,0,0,0,0,6942,0,97,0,0,0,22,43,76,426,6948,0,0,0,0,1,0,0,0,0,0,0,0,0,2883,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,20,262,2,0,0,252,0,571,0,0,0,142,38,0,0,0,0,0,0,0,0,0,140,1,0,5,0,4,0,0,0,0,6,125,47,0,0,0,0,0,0,0,0,1911,0,0,1093,0,0,1,0,1,0,0,0,14,0,0,0,3,0,0,0,0,0,9,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,375,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,23,0,0,0,0,1,60,185,0,48,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1914,129,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,64,0,0,0,0,0,1,0,0,0,0,0,2,0,0,433,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,54,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,242,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,65,0,55,0,0,0,4,10,32,174,74,0,0,0,0,1,0,0,0,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,103,3,0,0,114,0,192,0,0,0,40,5,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,59,0,0,59,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,120,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,110,22,1 +3,0,0,7,2,26,51,2,79,4,9,0,0,0,18,0,120,0,10,1,0,0,0,3,0,1,0,0,2,0,2,0,0,2,14,0,28,187,0,0,80,0,0,0,1,0,0,3,0,0,0,0,2,118,0,0,0,0,0,1,0,0,0,11,0,17,0,0,590,26,217,0,5,0,0,0,0,0,11,0,0,0,0,1,3,8,92,0,2,14,2,0,3,7,0,161,15,4,0,0,6,2,130,0,12,0,0,504,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,99,0,71,0,0,0,3,6,57,108,121,0,0,0,0,1,0,0,0,0,0,0,0,0,421,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,224,39,438,9,0,0,491,0,836,0,2,0,187,18,0,0,0,0,0,0,0,0,0,287,1,0,0,0,4,0,0,0,0,3,141,61,0,0,34,0,0,0,0,0,483,0,0,71,0,0,1,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,25,1,1,1,0,4,0,0,0,0,17,42,363,0,5,0,0,0,0,0,0,126,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,3,336,55,1 +4211,0,0,11,12,60,132,49,228,7,38,0,0,0,31,0,571,0,10,11,0,10,10,4,10,0,0,0,106,0,4,0,0,12,38,0,72,570,0,0,507,0,0,0,1,0,0,16,0,0,0,0,3,369,0,0,0,0,0,1,0,0,0,0,0,28,0,0,59165,60,1915,0,110,0,0,0,0,0,83,30,0,0,0,0,4,23,1980,0,49,38,12,0,7,112,0,1119,75,28,0,0,6,12,1088,0,20,0,0,83481,0,0,0,0,12630,3,3,0,2,0,0,1,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,4206,0,0,0,0,0,8398,0,4199,0,0,0,0,0,0,4490,0,0,0,0,0,0,0,0,0,32,1,1,0,0,4,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4279,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,52,0,0,0,0,0,0,1819,0,243,0,0,0,6,8,126,25470,2008,0,0,0,0,1,0,0,0,0,0,0,0,0,77737,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,216,80,1098,28,0,0,1477,0,1700,0,2,0,1049,134,0,0,0,0,0,0,0,0,0,1010,1,0,0,0,45,0,0,0,0,3,320,613,0,0,145,0,2,0,0,0,2920,0,0,4184,0,0,1,0,1,0,0,0,46,0,0,0,2,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,60,1,1,1,0,112,0,0,0,0,41,110,1009,0,110,0,0,0,0,0,0,1203,8,0,0,0,0,0,0,0,0,0,0,0,12,0,1,17,0,0,0,0,0,0,0,0,0,0,0,22,0,17,2037,739,1 +0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1 +0,0,0,4,0,14,6,0,45,0,10,0,0,0,4,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,14,6,0,0,63,0,0,0,1,0,0,3,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1414,14,97,0,1,0,0,0,0,0,14,0,0,0,0,0,1,6,78,0,0,1,0,0,1,23,0,194,15,5,0,0,2,0,137,0,1,0,0,527,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,86,0,63,0,0,0,0,3,37,162,97,0,0,0,0,1,0,0,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,24,108,4,0,0,184,0,236,0,0,0,108,14,0,0,0,0,0,0,0,0,0,86,1,0,0,0,2,0,0,0,0,0,98,138,0,0,26,0,0,0,0,0,46,0,0,81,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,15,285,0,1,0,0,0,0,0,0,78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,149,24,1 +8,0,0,4,0,46,6,0,36,8,3,0,0,2,13,0,566,0,6,3,0,0,0,6,0,10,0,0,8,0,5,0,0,0,9,898,46,6,0,0,64,0,0,0,1,0,0,4,0,0,0,0,5,193,0,0,0,0,0,1,0,0,0,0,0,14,0,0,18557,46,654,0,10,0,0,0,0,0,22,0,0,0,0,0,8,21,3246,0,0,9,0,0,0,0,0,112,5,7,0,0,2,0,612,0,11,0,0,1326,0,0,0,0,14,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,11,0,6,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,12,12,12,0,0,0,2619,0,74,0,0,0,8,11,244,348,2603,0,0,0,0,1,0,3,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,248,4,0,0,263,0,330,0,0,0,95,9,0,0,0,0,0,0,0,0,0,632,1,0,0,0,9,0,0,0,0,5,129,27,0,0,0,0,0,0,0,0,1547,1,0,101,6,0,1,1,0,0,0,0,9,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,13,0,0,0,0,1,55,153,0,11,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,471,41,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,117,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1370,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,54,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,270,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,64,0,55,0,0,0,4,10,32,174,73,0,0,0,0,1,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,109,3,0,0,114,0,428,0,0,0,40,18,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,66,0,0,59,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,112,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,110,25,1 +5,0,0,3,0,21,2,0,18,2,3,0,0,0,7,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,7,0,21,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,0,80,0,0,0,0,0,1,0,0,0,0,0,7,0,0,482,21,53,0,3,0,0,0,0,0,9,0,0,0,0,0,1,4,58,0,0,7,0,0,0,0,0,11,0,4,0,0,2,0,29,0,5,0,0,455,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,4,0,3,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,82,0,85,0,0,0,0,3,42,22,86,0,0,0,0,1,0,0,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,8,161,3,0,0,143,0,219,0,0,0,61,18,0,0,0,0,0,0,0,0,0,51,1,0,0,0,2,0,0,0,0,1,105,32,0,0,0,0,0,0,0,0,31,0,0,38,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,2,0,0,0,0,1,28,242,0,3,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,140,36,1 +3,0,0,4,0,22,9,0,20,0,4,0,0,0,4,1,17,0,7,1,0,0,0,2,0,0,0,0,5,0,5,0,0,0,7,0,22,74,0,0,23,0,0,0,1,0,0,3,1,0,0,0,4,83,0,0,0,0,0,1,0,0,0,0,0,4,0,0,8634,22,109,0,10,0,0,0,0,0,35,0,0,0,0,0,2,7,253,0,0,7,0,0,0,0,0,29,0,17,0,0,2,0,59,0,2,0,0,708,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,261,0,184,0,0,0,8,10,49,53,259,0,0,0,0,1,0,0,0,0,0,0,0,0,13084,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,46,7,227,4,0,0,175,0,372,0,0,0,82,22,0,0,0,0,0,0,0,0,0,62,1,0,12,0,3,0,0,0,0,4,110,27,0,0,0,0,0,0,0,0,239,0,0,105,0,0,1,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,13,0,0,0,0,1,29,276,0,10,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,386,86,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,25,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,26,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,38,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,3,1 +2,0,0,7,0,49,7,0,29,3,8,0,0,2,15,1,19,0,7,2,0,0,0,7,0,9,0,0,10,0,16,0,0,0,17,0,49,6,0,0,91,0,0,0,1,0,0,6,0,0,0,0,16,185,0,0,0,0,0,1,0,0,0,2,0,16,0,0,1476,49,116,0,25,0,0,0,0,0,20,0,0,0,0,2,8,22,239,0,0,17,0,0,1,7,0,199,20,7,0,0,2,0,116,0,10,0,0,1508,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,206,0,112,0,0,0,30,28,223,131,186,0,0,0,0,1,0,4,0,0,0,0,0,0,421,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,1,0,32,22,228,10,0,0,261,0,363,0,0,0,135,18,0,0,0,0,0,0,0,0,0,88,1,0,0,0,9,0,0,0,0,12,135,79,0,0,30,0,0,0,0,0,149,0,0,104,3,0,1,1,0,0,0,0,9,0,0,0,2,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,39,0,0,0,8,1,66,416,0,26,9,0,0,0,0,0,99,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,350,76,1 +2,0,0,7,0,49,82,0,30,1,81,0,0,7,11,1,67,0,7,2,0,0,0,8,0,11,0,0,20,0,7,0,0,0,8,1109,49,6,0,0,67,0,0,0,1,0,0,3,0,0,0,0,7,1579,0,0,0,0,0,1,0,0,0,0,0,10,0,0,36773,49,512,0,23,0,0,0,0,0,169,0,0,0,0,0,9,300,7072,0,0,8,0,0,0,0,0,1031,25,6,0,0,2,0,280,0,7,905,0,5549,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,1134,0,98,0,0,0,24,23,613,3649,1109,0,0,0,0,1,0,3,0,0,0,0,0,0,598,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,108,25,286,7,0,0,447,0,338,0,0,0,286,11,0,0,0,0,0,0,0,0,0,286,1,0,0,0,10,0,0,0,0,3,162,54,0,0,791,0,0,0,0,0,4192,1,0,417,82,0,1,1,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,82,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,64,0,0,0,8,1,57,340,0,24,14,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2973,49,1 +1,0,0,6,0,45,8,0,31,3,6,0,0,6,8,0,74,0,6,4,0,0,0,7,0,10,3,0,6,0,1,1,0,0,7,4943,45,6,0,0,52,0,0,0,1,0,0,4,0,0,0,0,2,425,0,0,0,0,0,1,0,0,0,4,0,7,0,0,10968,45,155,0,5,0,0,0,0,0,25,0,0,0,0,0,10,26,2003,0,0,7,0,0,0,0,0,207,20,8,0,0,2,0,144,0,4,15,0,1820,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,1,0,8,12,12,12,0,0,0,980,0,64,0,0,0,3,11,281,1143,961,0,0,0,0,1,0,5,0,0,0,0,0,0,1066,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,92,20,288,6,0,0,364,0,404,0,0,0,192,13,0,0,0,0,0,0,0,0,0,139,1,0,0,0,11,0,0,0,0,2,152,86,0,0,13,0,6,0,0,0,978,1,0,196,6,0,1,1,1,0,0,0,10,0,0,0,0,0,0,0,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,12,0,0,0,0,1,52,387,0,9,12,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,744,39,1 +3,0,0,4,0,21,3,0,15,0,4,0,0,0,4,1,15,0,7,1,0,0,0,1,0,0,0,0,6,0,4,0,0,0,8,0,21,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,4,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,454,21,60,0,11,0,0,0,0,0,9,0,0,0,0,0,1,4,144,0,0,8,0,0,0,0,0,27,0,3,0,0,2,0,33,0,2,0,0,278,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,132,0,99,0,0,0,8,9,47,51,161,0,0,0,0,1,0,0,0,0,0,0,0,0,372,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,125,4,0,0,141,0,207,0,0,0,69,5,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,4,107,31,0,0,0,0,0,0,0,0,67,0,0,41,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,14,0,0,0,0,1,29,124,0,10,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,226,36,1 +4,0,0,5,0,19,4,0,15,2,4,0,0,0,8,1,15,0,7,1,0,0,0,2,0,0,0,0,4,0,8,0,0,0,8,0,19,6,0,0,31,0,0,0,1,0,0,1,0,0,0,0,7,60,0,0,0,0,0,1,0,0,0,5,0,9,0,0,376,19,58,0,12,0,0,0,0,0,6,0,0,0,0,0,2,4,53,0,0,8,0,0,0,0,0,25,0,2,0,0,2,0,43,0,6,0,0,244,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,63,0,51,0,0,0,14,12,40,33,73,0,0,0,0,1,0,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,13,113,5,0,0,114,0,211,0,0,0,46,9,0,0,0,0,0,0,0,0,0,54,1,0,0,0,3,0,0,0,0,4,109,7,0,0,0,0,0,0,0,0,61,0,0,43,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,18,0,0,0,8,1,27,173,0,12,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,110,35,1 +4,0,0,5,0,26,11,0,19,6,4,0,0,0,15,1,16,0,7,1,0,0,0,2,0,0,0,0,5,0,16,0,0,0,14,0,27,6,0,0,55,0,0,0,1,0,0,1,0,0,0,0,15,42,0,0,0,0,0,1,0,0,0,8,0,16,0,0,457,27,85,0,21,0,0,0,0,0,13,0,0,0,0,0,2,4,50,0,0,14,0,0,0,0,0,58,0,1,0,0,2,0,69,0,13,0,0,480,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,69,0,0,0,30,28,51,55,70,0,0,0,0,1,0,0,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,20,176,5,0,0,183,0,209,0,0,0,106,23,0,0,0,0,0,0,0,0,0,73,1,0,0,0,3,0,0,0,0,12,120,45,0,0,0,0,0,0,0,0,60,0,0,35,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,35,0,0,0,24,1,41,119,0,21,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,138,53,1 +2,0,0,5,1,15,34,1,99,4,26,0,2,0,9,0,69,0,8,1,0,0,0,1,0,0,0,0,3,0,1,0,0,1,7,0,16,91,0,0,110,0,1,0,1,0,0,2,0,0,0,0,0,97,0,0,0,0,0,1,0,0,0,0,0,15,0,0,1012,15,204,0,4,0,0,0,0,0,6,0,0,0,0,1,1,6,507,0,1,7,1,0,8,45,0,449,75,4,0,0,8,1,273,0,6,0,0,182,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,31,0,0,0,0,3,35,341,59,0,0,0,0,1,0,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,127,38,253,6,0,0,270,0,442,0,1,0,88,16,0,0,0,0,0,0,0,0,0,247,1,0,0,0,2,0,0,0,0,1,111,88,0,0,145,0,0,0,0,0,346,0,0,735,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,1,1,1,0,3,0,0,0,0,9,23,113,0,4,0,0,0,0,0,0,142,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,0,0,0,0,0,0,0,0,0,0,0,1,0,1,265,93,1 +2,0,0,7,0,35,6,0,38,1,6,0,0,2,4,0,518,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,3,762,35,8,0,0,27,0,0,0,1,0,0,3,0,0,0,0,1,190,0,0,0,0,0,1,0,0,0,1,0,4,0,0,4759,35,580,0,2,0,0,0,0,0,19,0,0,0,0,0,8,19,873,0,0,3,0,0,0,0,0,89,5,6,0,0,2,0,532,0,1,0,0,1098,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,401,0,51,0,0,0,0,3,247,324,363,0,0,0,0,1,0,3,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,16,177,7,0,0,214,0,295,0,0,0,62,4,0,0,0,0,0,0,0,0,0,580,1,0,0,0,9,0,0,0,0,1,118,24,0,0,1,0,0,0,0,0,1343,1,0,48,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,1,0,0,0,0,1,38,126,0,3,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,381,41,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,23,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,22,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,39,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,4,1 +3,0,0,9,0,33,3,0,25,4,7,0,0,0,13,2,20,0,7,1,0,0,0,1,0,0,3,0,4,0,5,1,0,0,23,0,33,6,0,0,76,0,0,0,1,0,0,3,0,0,0,0,5,107,0,0,0,0,0,1,0,0,0,0,0,12,0,0,7427,33,101,0,10,0,0,0,0,0,14,0,0,0,0,0,1,6,1979,0,0,23,0,0,0,0,0,28,0,6,0,0,2,0,81,0,8,0,0,675,0,0,0,0,20,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,1268,0,73,0,0,0,10,15,56,64,1267,0,0,0,0,1,0,0,0,0,0,0,0,0,2407,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,8,23,247,12,0,0,281,0,247,0,0,0,210,20,0,0,0,0,0,0,0,0,0,77,1,0,0,0,2,0,0,0,0,5,155,84,0,0,0,0,1,0,0,0,445,0,0,1663,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,15,0,0,0,0,1,56,443,0,13,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,884,120,1 +1,0,0,3,2,18,8,2,44,0,5,0,0,0,3,0,32,0,6,5,0,4,0,1,0,0,0,0,1,0,1,0,0,2,5,0,20,6,0,0,17,0,0,0,1,0,0,4,0,0,0,0,0,138,0,0,0,0,0,1,2,0,0,0,0,3,0,0,608,18,220,0,2,0,0,0,0,0,24,6,0,0,0,0,1,6,114,0,2,5,2,0,0,0,0,17,0,7,0,0,2,2,37,0,1,0,0,270,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,129,0,100,0,0,0,0,3,43,19,135,0,0,0,0,1,0,0,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,4,186,5,0,0,209,0,306,0,0,0,73,9,0,0,0,0,0,0,0,0,0,98,1,0,0,0,10,0,0,0,0,1,100,27,0,0,0,0,0,0,0,0,80,0,0,99,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,1,0,0,0,0,17,25,353,0,2,0,0,0,0,0,0,51,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,228,50,1 +2,0,0,7,0,26,3,0,1236,4,6,0,0,0,13,1,1235,0,7,1,0,0,0,1,0,1,0,0,5,0,5,0,0,0,13,0,26,6,0,0,51,0,4,0,1,0,0,4,2,0,0,0,5,71,0,0,0,0,0,1,0,0,0,0,0,12,0,0,8112,26,1316,0,11,0,0,0,0,0,22,0,0,0,0,0,1,7,529,0,0,13,0,0,0,0,0,37,0,11,0,0,2,0,55,0,8,0,0,7492,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,113,0,281,0,0,0,10,13,60,2315,107,0,0,0,0,1,0,0,0,0,0,0,0,0,1103,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,1838,27,1286,9,0,0,355,0,179,0,0,0,274,247,0,0,0,0,0,0,0,0,0,2501,1,0,6,0,2,0,0,0,0,6,124,206,0,0,0,0,0,0,0,0,644392,0,0,774,0,0,1,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,366,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,15,0,0,0,0,1,39,316,0,11,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,349,2469,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,21,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,20,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,38,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,4,1 +1,0,0,6,0,35,7,0,42,0,9,0,0,2,3,1,453,0,7,3,0,0,0,6,0,10,0,0,6,0,4,0,0,0,3,955,35,6,0,0,37,0,0,0,1,0,0,2,0,0,0,0,4,194,0,0,0,0,0,1,0,0,0,0,0,6,0,0,5368,35,533,0,7,0,0,0,0,0,17,0,0,0,0,0,8,18,1054,0,0,3,0,0,1,9,0,180,25,3,0,0,2,0,518,0,1,0,0,1559,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,12,12,12,0,0,0,392,0,56,0,0,0,6,8,226,415,376,0,0,0,0,1,0,3,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,13,224,6,0,0,223,0,277,0,0,0,73,7,0,0,0,0,0,0,0,0,0,524,1,0,0,0,9,0,0,0,0,3,122,36,0,0,45,0,0,0,0,0,1341,1,0,126,6,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,9,0,0,0,0,1,38,90,0,8,12,0,0,0,0,0,44,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,475,50,1 +0,0,0,3,0,39,91,0,30,0,88,0,0,7,4,0,63,0,6,2,0,0,0,8,0,11,0,0,18,0,1,0,0,0,3,1594,39,6,0,0,47,0,0,0,1,0,0,1,0,0,0,0,1,1641,0,0,0,0,0,1,0,0,0,0,0,1,0,0,36597,39,527,0,15,0,0,0,0,0,181,0,0,0,0,0,9,314,7175,0,0,3,0,0,0,0,0,1024,25,2,0,0,2,0,272,0,0,825,0,5472,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,1001,0,49,0,0,0,12,15,630,3727,987,0,0,0,0,1,0,3,0,0,0,0,0,0,483,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,16,218,3,0,0,414,0,270,0,0,0,267,4,0,0,0,0,0,0,0,0,0,289,1,0,0,0,10,0,0,0,0,0,146,41,0,0,796,0,0,0,0,0,4198,1,0,468,92,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,92,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,50,0,0,0,0,1,42,265,0,16,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2804,44,1 +6,0,0,6,0,45,8,0,25,0,6,0,0,6,6,0,90,0,7,2,0,0,0,8,0,10,15,0,8,0,4,0,0,0,10,7886,45,6,0,0,48,0,0,0,1,0,0,1,0,0,0,0,4,338,0,0,0,0,0,1,0,0,0,12,0,4,0,0,46262,45,156,0,9,0,0,0,0,0,11,0,0,0,0,0,9,22,7872,0,0,10,0,0,0,0,0,212,20,2,0,0,2,0,196,0,1,15,0,2399,0,0,0,0,4,0,10,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,12,12,12,0,0,0,6235,0,52,0,0,0,7,47,295,573,6247,0,0,0,0,1,0,18,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,86,21,282,6,0,0,313,0,378,0,0,0,167,22,0,0,0,0,0,0,0,0,0,148,1,0,0,0,10,0,0,0,0,4,150,64,0,0,13,0,5,0,0,0,1265,1,0,62,6,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,64,0,0,0,0,1,55,161,0,25,12,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,881,144,1 +2,0,0,7,0,20,3,0,1102,5,6,0,0,0,14,1,1101,0,7,1,0,0,0,1,0,0,0,0,5,0,7,0,0,0,9,0,20,6,0,0,53,0,3,0,1,0,0,4,2,0,0,0,6,90,0,0,0,0,0,1,0,0,0,0,0,13,0,0,13097,20,1166,0,12,0,0,0,0,0,12,0,0,0,0,0,1,8,561,0,0,9,0,0,0,0,0,40,0,7,0,0,2,0,58,0,9,0,0,10328,0,0,0,0,28,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,84,0,402,0,0,0,12,15,46,2063,90,0,0,0,0,1,0,0,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1637,28,1641,9,0,0,2567,0,284,0,0,0,2495,228,0,0,0,0,0,0,0,0,0,2234,1,0,4,0,2,0,0,0,0,7,106,2457,0,0,0,0,0,0,0,0,573638,0,0,764,0,1,1,0,1,0,0,0,11,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,17,0,0,0,0,1,29,9396,0,12,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,323,678,1 +2,0,0,5,0,17,2,0,22,2,3,0,0,0,7,0,18,0,7,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,7,0,17,6,0,0,34,0,0,0,1,0,0,1,0,0,0,0,1,51,0,0,0,0,0,1,0,0,0,0,0,6,0,0,274,17,55,0,3,0,0,0,0,0,3,0,0,0,0,1,1,4,35,0,0,7,0,0,0,0,0,11,0,3,0,0,2,0,39,0,4,0,0,191,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,15,0,0,0,0,0,0,42,0,40,0,0,0,2,5,32,18,49,0,0,0,0,1,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,7,115,6,0,0,135,0,177,0,0,0,72,5,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,2,100,36,0,0,0,0,0,0,0,0,37,0,0,20,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,24,170,0,3,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,14,1 +0,0,0,0,0,8,2,0,15,0,1,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,0,0,0,193,8,37,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,37,0,0,0,0,0,0,0,0,6,0,2,0,0,2,0,14,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,17,0,0,0,0,3,22,5,49,0,0,0,0,1,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,0,0,0,74,0,69,0,0,0,14,2,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,90,7,0,0,0,0,0,0,0,0,35,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,101,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,7,1 +1,0,0,7,0,36,6,0,37,1,6,0,0,2,4,0,492,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,3,762,36,8,0,0,27,0,0,0,1,0,0,3,0,0,0,0,1,187,0,0,0,0,0,1,0,0,0,1,0,4,0,0,4443,36,553,0,2,0,0,0,0,0,19,0,0,0,0,0,8,19,824,0,0,3,0,0,0,0,0,89,5,6,0,0,2,0,506,0,1,0,0,965,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,342,0,53,0,0,0,0,3,248,323,305,0,0,0,0,1,0,3,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,16,181,7,0,0,218,0,299,0,0,0,62,6,0,0,0,0,0,0,0,0,0,553,1,0,0,0,9,0,0,0,0,1,119,24,0,0,1,0,0,0,0,0,1300,1,0,62,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,1,0,0,0,0,1,39,126,0,3,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,42,1 +10,0,0,10,5,40,140,5,147,21,12,0,6,0,50,0,279,0,17,1,0,0,0,1,0,0,0,0,11,0,21,0,0,5,25,0,45,343,0,0,200,0,0,0,1,0,0,6,0,0,0,0,20,184,0,0,0,0,0,1,0,0,0,0,0,29,0,0,1446,40,495,0,32,0,0,0,0,0,21,0,0,0,0,1,1,9,215,0,5,25,5,0,11,0,0,295,0,8,0,0,24,5,243,0,30,0,0,709,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,203,0,140,0,0,0,40,36,78,192,241,0,0,0,0,1,0,0,0,0,4,0,0,0,989,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,588,143,940,21,0,0,1016,0,1725,0,5,0,327,27,0,0,0,0,0,0,0,0,0,651,1,0,0,0,2,0,0,0,0,18,197,49,0,0,0,0,5,0,0,0,812,0,0,220,0,0,1,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,23,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,38,1,1,1,0,51,0,0,0,0,41,70,232,0,32,0,0,0,0,0,0,232,6,0,0,0,0,0,0,0,0,0,0,0,5,0,1,21,0,0,0,0,0,0,0,0,0,0,0,5,0,4,487,143,1 +5945,0,0,0,0,25,2,0,23,1,1,0,0,0,5,0,17,0,6,2,0,0,0,1,0,0,0,0,79,0,1,0,0,0,7,0,25,6,0,0,30,0,0,0,1,0,0,1,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,3,0,0,59425,25,129,0,80,0,0,0,0,0,5,0,0,0,0,0,2,4,80,0,0,7,0,0,0,0,0,88,0,1,0,0,2,0,110,0,3,0,0,124852,0,0,0,0,17727,4,0,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,5913,0,0,0,0,0,11819,0,5918,0,0,0,0,0,0,5924,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5912,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,83,0,52,0,0,0,0,3,53,33035,87,0,0,0,0,1,0,0,0,0,0,0,0,0,79639,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,6,692,0,0,0,132,0,365,0,0,0,43,252,0,0,0,0,0,0,0,0,0,54,1,0,0,0,3,0,0,0,0,1,109,7,0,0,0,0,0,0,0,0,108,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,79,0,0,0,0,1,32,56,0,80,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,151,199,1 +5,0,0,8,1,28,47,1,122,3,36,0,2,0,12,0,70,0,8,1,0,0,0,1,0,0,0,0,5,0,1,0,0,1,18,0,29,86,0,0,192,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,23,0,0,428,28,253,0,6,0,0,0,0,0,13,0,0,0,0,0,1,3,52,0,1,18,1,0,9,78,0,707,90,1,0,0,8,1,433,0,8,0,0,452,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,68,0,65,0,0,0,0,3,54,577,81,0,0,0,0,1,0,0,0,0,0,0,0,0,399,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,130,42,295,11,0,0,351,0,501,0,1,0,160,18,0,0,0,0,0,0,0,0,0,297,1,0,0,0,2,0,0,0,0,1,128,208,0,0,174,0,1,0,0,0,171,0,0,24,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,25,1,1,1,0,5,0,0,0,0,9,47,127,0,6,0,0,0,0,0,0,236,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,0,0,0,0,0,0,0,0,0,0,0,1,0,2,137,125,1 +2,0,0,4,2,22,3,2,32,2,6,0,0,0,10,1,31,0,7,5,0,4,0,1,0,0,0,0,4,0,11,0,0,2,9,0,24,6,0,0,44,0,0,0,1,0,0,1,0,0,0,0,10,53,0,0,0,0,0,1,2,0,0,0,0,10,0,0,1511,22,197,0,15,0,0,0,0,0,6,6,0,0,0,0,1,3,330,0,2,9,2,0,0,0,0,39,0,2,0,0,2,2,58,0,8,0,0,291,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,1,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,215,0,58,0,0,0,20,18,53,46,224,0,0,0,0,1,0,0,0,0,0,0,0,0,496,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,13,200,6,0,0,200,0,305,0,0,0,76,16,0,0,0,0,0,0,4,0,0,90,1,0,0,0,10,0,0,0,0,7,108,22,0,0,0,0,0,0,0,0,148,0,0,275,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,24,0,0,0,8,17,33,89,0,15,0,0,0,0,0,0,54,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,255,27,1 +2,0,0,0,0,31,6,0,6,0,1,0,1,0,2,0,16,0,7,4,0,0,0,4,0,8,0,0,7,0,17,0,0,0,5,0,31,6,0,0,41,0,0,0,1,0,0,2,0,0,0,0,17,75,0,0,0,0,0,1,0,0,0,0,0,0,0,0,607,31,55,0,23,0,0,0,0,0,5,0,0,0,0,0,7,14,56,0,0,5,0,0,0,0,0,140,0,0,0,0,2,0,54,0,0,0,0,555,0,0,0,0,17,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,10,10,0,0,0,47,0,43,0,0,0,32,35,188,61,50,0,0,0,0,1,0,3,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,17,14,116,0,0,0,115,0,294,0,0,0,39,8,0,0,0,0,0,0,0,0,0,39,1,0,0,0,8,0,0,0,0,17,113,23,0,0,0,0,0,0,0,0,82,0,0,19,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,38,0,0,0,32,1,36,55,0,24,8,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,93,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,82,0,0,0,0,0,1,0,0,0,0,0,2,0,0,742,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,43,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,272,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,56,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,110,3,0,0,114,0,286,0,0,0,40,8,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,52,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,137,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,99,23,1 +6284,0,0,13,0,81,47,0,88,5,59,0,0,7,32,0,1685,0,7,4,0,0,0,8,0,13,6,0,122,0,5,1,0,0,35,5327,81,6,0,0,187,0,0,0,1,0,0,2,0,0,0,0,9,585,0,0,0,0,0,1,0,0,0,0,0,22,0,0,157802,81,2163,0,128,0,0,0,0,0,91,0,0,0,0,0,11,189,8350,0,0,35,0,0,2,16,0,720,55,7,0,0,2,0,2091,0,16,161,0,134047,0,0,0,0,18877,3,1,0,1,0,0,1,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,6286,0,0,0,0,0,12585,0,6273,0,0,0,0,0,0,6298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6299,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,87,12,12,12,0,0,0,3431,0,107,0,0,0,26,29,1114,36838,3376,0,0,0,0,1,0,3,0,0,0,0,0,0,110278,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,108,94,1123,15,0,0,514,0,501,0,0,0,318,313,0,0,0,0,0,0,0,0,0,1925,1,0,0,0,12,0,0,0,0,4,223,62,0,0,297,0,0,0,0,0,6388,1,0,3414,40,0,1,1,0,0,0,0,6,0,1,0,3,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,40,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,86,1,1,1,0,167,0,0,0,0,1,116,287,0,135,12,0,0,0,0,0,206,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3049,324,1 +162,0,0,3,0,25,2,0,29,9,3,0,0,0,13,0,19,0,7,1,0,0,0,1,0,0,0,0,21,0,2,0,0,0,8,0,25,18,0,0,65,0,0,0,1,0,0,7,0,0,0,0,1,107,0,0,0,0,0,1,0,0,0,40,0,13,0,0,1367,25,136,0,23,0,0,0,0,0,31,0,0,0,0,0,1,12,199,0,0,8,0,0,0,0,0,44,0,12,3,0,2,0,50,0,11,0,0,401,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,40,5,0,0,0,0,0,1,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,213,0,86,0,0,0,2,4,46,18,219,0,0,0,0,1,0,0,0,0,0,0,0,0,1069,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,8,58,150,3,0,0,206,0,292,0,0,0,127,16,0,0,0,0,0,0,0,0,0,73,1,0,0,0,2,0,0,0,0,2,121,65,0,0,0,0,0,0,0,0,96,0,0,208,0,0,1,0,0,0,0,0,13,0,0,0,3,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,23,0,0,0,0,1,33,318,0,23,0,0,0,0,0,0,107,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,7,233,80,1 +26,0,0,12,2,23,52,2,60,9,59,0,2,0,71,5,120,0,11,2,0,0,0,1,0,0,0,0,6,0,7,0,0,2,11,0,25,108,0,0,86,0,0,0,1,0,0,1,0,0,0,0,6,84,0,0,0,0,0,1,0,0,0,18,0,19,0,0,410,23,305,0,13,0,0,0,0,0,4,0,0,0,0,0,2,4,48,0,2,11,2,0,4,0,0,117,0,1,0,0,10,2,238,0,15,0,0,502,0,0,0,0,3,10,0,0,0,0,0,1,0,0,0,4,0,0,4,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,4,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,19,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,61,0,46,0,0,0,12,14,60,108,82,0,0,0,0,1,0,0,0,0,0,0,0,0,419,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,231,68,448,17,0,0,437,0,782,0,2,0,135,16,0,0,0,0,0,0,0,0,0,380,1,0,0,0,3,0,0,0,0,7,137,19,0,0,0,0,0,0,0,0,475,0,0,22,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,9,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,26,1,1,1,0,18,0,0,0,6,17,36,61,0,13,0,0,0,0,0,0,130,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,2,0,2,331,98,1 +3,0,0,4,0,16,1509,0,7917,0,1237,0,0,0,4,1,49,0,7,1,0,0,0,1,0,0,0,0,3,0,4,0,0,0,7,0,16,6,0,0,15727,0,0,0,1,0,0,2,0,0,0,0,3,500,0,0,0,0,0,1,0,0,0,0,0,1572,0,0,8600,16,10728,0,7,0,0,0,0,0,9,0,0,0,0,0,1,4,93,0,0,7,0,0,1,7896,0,49127,300,3,0,0,2,0,39398,0,2,0,0,2675,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,112,0,60,0,0,0,6,7,42,50194,112,0,0,0,0,1,0,0,0,0,0,0,0,0,6270,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,5,224,4,0,0,1651,0,321,0,0,0,1587,132,0,0,0,0,0,0,0,0,0,10724,1,0,0,0,2,0,0,0,0,4,99,20580,0,0,821,0,0,0,0,0,278,0,0,99,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,6,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,9,0,0,0,0,11,23,271,0,7,0,0,0,0,0,0,18919,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,83,1 +13,0,0,13,2,64,56,2,84,6,15,0,0,2,24,0,121,0,11,5,0,0,0,9,0,8,0,0,10,0,1,0,0,2,27,0,66,132,0,0,140,0,0,0,1,0,0,3,0,0,0,0,1,159,0,0,0,0,0,1,0,0,0,6,0,21,0,0,4828,64,254,0,9,0,0,0,0,0,15,0,0,0,0,0,13,24,1379,0,2,27,2,0,4,16,0,314,35,6,1,0,6,2,183,0,13,0,0,1774,0,0,0,0,41,1,2,0,8,0,0,1,0,0,0,7,0,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,888,0,104,0,0,0,0,3,261,1288,896,0,0,0,0,1,0,4,0,0,0,0,0,0,1622,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,247,97,602,17,0,0,641,0,1117,0,2,0,268,21,0,0,0,0,0,0,0,0,0,313,1,0,0,0,14,0,0,0,0,1,227,76,0,0,58,0,1,0,0,0,675,0,0,64,3,0,1,1,0,0,0,0,5,0,0,0,3,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,73,1,1,1,0,8,0,0,0,0,17,93,201,0,10,9,0,0,0,0,0,139,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,12,0,0,0,0,0,0,0,0,0,0,0,2,0,1,770,235,1 +5,0,0,15,0,40,7,0,24,1,23,0,0,2,23,1,56,0,7,5,0,0,0,6,0,8,12,0,7,0,5,2,0,0,8,0,40,18,0,0,146,0,3,0,1,0,0,3,0,0,0,0,7,116,0,0,0,0,0,1,0,0,0,0,0,7,0,0,2183,40,158,0,12,0,0,0,0,0,16,0,0,0,0,0,10,20,668,0,0,8,0,0,0,0,0,114,5,3,0,0,2,0,201,0,2,0,0,1128,0,0,0,0,25,0,2,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,3,1,1,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,10,10,10,0,0,0,144,0,71,0,0,0,12,38,215,74,148,0,0,0,0,1,0,4,0,0,0,0,0,0,588,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,127,182,21,0,0,197,0,346,0,0,0,68,21,0,0,0,0,0,0,0,0,0,143,1,0,0,0,11,0,0,0,0,7,127,32,0,0,0,0,0,0,0,0,513,0,0,818,3,0,1,1,1,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,3,380,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,56,0,0,0,4,1,48,187,0,25,9,0,1,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,397,120,1 +2,0,0,4,0,21,3,0,16,0,4,0,0,0,7,1,15,0,7,1,0,0,0,1,0,0,0,0,4,0,8,0,0,0,8,0,21,6,0,0,30,0,0,0,1,0,0,1,0,0,0,0,7,75,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1423,21,58,0,12,0,0,0,0,0,6,0,0,0,0,0,1,3,291,0,0,8,0,0,0,0,0,23,0,2,0,0,2,0,41,0,5,0,0,224,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,184,0,44,0,0,0,14,12,49,33,191,0,0,0,0,1,0,0,0,0,0,0,0,0,508,0,0,0,0,0,0,0,0,0,0,0,0,8,0,4,0,0,0,0,0,0,8,10,119,4,0,0,161,0,234,0,0,0,85,7,0,0,0,0,0,0,4,0,0,53,1,0,0,0,2,0,0,0,0,4,107,50,0,0,0,0,0,0,0,0,116,0,0,296,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,18,0,0,0,8,1,29,196,0,12,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,227,16,1 +4391,0,0,12,4,88,156,8,210,12,32,0,0,0,37,0,173,0,12,3,0,1,0,2,1,1,0,0,98,0,24,0,0,4,32,0,92,245,0,0,427,0,0,0,1,0,0,13,0,0,0,0,24,492,0,0,0,0,0,1,0,0,0,0,0,34,0,0,50113,88,788,0,123,0,0,0,0,0,71,3,0,0,0,0,2,42,1862,0,8,32,4,0,8,118,0,1168,85,20,0,0,8,4,821,0,26,1,0,86977,0,0,0,0,13155,3,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,4370,0,0,1,10,0,8765,0,4382,0,0,0,0,0,0,4607,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,4393,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,1385,0,298,0,0,0,47,12,133,26357,1400,0,0,0,0,1,0,0,0,0,0,0,0,0,75963,0,0,0,0,0,0,0,0,0,0,0,0,14,0,9,0,0,0,0,0,0,334,88,1339,18,0,0,1123,0,2151,0,3,0,562,115,0,0,0,0,0,0,17,0,0,620,1,0,0,0,7,0,0,0,0,4,282,397,0,0,183,0,2,0,0,0,1099,0,0,897,0,0,1,0,0,0,0,0,32,0,0,0,4,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,14,0,0,0,0,0,0,0,0,1,0,3,86,1,1,1,0,144,0,0,0,8,25,124,805,0,123,0,0,0,0,0,0,422,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,13,1252,260,1 +6600,0,0,4,0,22,4,0,26,2,7,0,0,0,8,0,16,0,6,1,0,0,0,2,0,0,0,0,83,0,1,0,0,0,5,0,22,6,0,0,38,0,0,0,1,0,0,1,0,0,0,0,0,144,0,0,0,0,0,1,0,0,0,0,0,9,0,0,66970,22,142,0,84,0,0,0,0,0,6,0,0,0,0,0,2,4,105,0,0,5,0,0,1,9,0,171,10,2,0,0,2,0,154,0,5,0,0,133372,0,0,0,0,19766,4,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,6591,0,0,0,0,0,13176,0,6591,0,0,0,0,0,0,6602,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6590,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,93,0,41,0,0,0,0,3,47,36791,99,0,0,0,0,1,0,0,0,0,0,0,0,0,88020,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,8,875,4,0,0,162,0,348,0,0,0,76,339,0,0,0,0,0,0,0,0,0,67,1,0,0,0,3,0,0,0,0,1,105,221,0,0,23,0,0,0,0,0,120,0,0,48,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,83,0,0,0,0,1,27,277,0,84,0,0,0,0,0,0,49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,183,307,1 +2,0,0,4,0,24,3,0,7,2,4,0,0,0,10,2,52,0,7,2,0,0,0,0,0,0,6,0,6,0,11,0,0,0,13,0,24,6,0,0,38,0,0,0,1,0,0,1,0,0,0,0,10,43,0,0,0,0,0,1,0,0,0,0,0,10,0,0,261,24,98,0,17,0,0,0,0,0,2,0,0,0,0,0,1,3,9,0,0,13,0,0,0,0,0,28,0,0,0,0,2,0,88,0,8,0,0,325,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,30,0,53,0,0,0,20,20,56,32,35,0,0,0,0,1,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,13,112,4,0,0,106,0,168,0,0,0,67,6,0,0,0,0,0,0,0,0,0,85,1,0,0,0,2,0,0,0,0,5,110,23,0,0,0,0,0,0,0,0,325,0,0,14,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,24,0,0,0,8,11,37,69,0,23,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,17,1 +5,0,0,7,0,51,92,0,31,1,91,0,0,7,11,1,73,0,7,2,0,0,0,8,0,11,3,0,21,0,8,0,0,0,11,1594,51,6,0,0,67,0,0,0,1,0,0,2,0,0,0,0,8,1640,0,0,0,0,0,1,0,0,0,0,0,10,0,0,36183,51,558,0,24,0,0,0,0,0,184,0,0,0,0,0,9,291,7039,0,0,11,0,0,0,0,0,1033,25,3,0,0,2,0,315,0,7,809,0,5663,0,0,0,0,3,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,1127,0,85,0,0,0,26,29,650,3703,1114,0,0,0,0,1,0,4,0,0,0,0,0,0,565,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,108,25,279,7,0,0,455,0,341,0,0,0,296,6,0,0,0,0,0,0,0,0,0,313,1,0,0,0,10,0,0,0,0,4,158,52,0,0,788,0,0,0,0,0,4099,1,0,433,92,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,92,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,70,0,0,0,8,1,62,323,0,29,14,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2835,52,1 +0,0,0,0,0,11,2,0,22,0,1,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,7,0,1,0,1,0,0,2,0,0,0,0,0,134,0,0,0,0,0,1,0,0,0,0,0,0,0,0,11630,11,49,0,1,0,0,0,0,0,8,0,0,0,0,1,1,6,2744,0,0,2,0,0,0,0,0,8,0,3,0,0,2,0,21,0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1537,0,28,0,0,0,0,3,29,408,1547,0,0,0,0,1,0,0,0,0,0,0,0,0,3153,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,161,0,0,0,159,0,158,0,0,0,95,16,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,98,70,0,0,0,0,0,0,0,0,696,0,0,3402,0,0,1,0,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,329,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1243,21,1 +5,0,0,12,1,117,30,1,118,0,15,0,0,6,8,0,1230,0,6,5,0,1,1,8,0,11,0,0,22,0,14,0,0,1,72,12338,118,6,0,0,146,0,0,0,1,0,0,16,1,0,0,0,15,476,0,0,0,0,0,1,1,0,0,16,0,7,0,0,128002,117,1614,0,33,0,0,0,0,0,73,3,0,0,0,1,10,60,29584,0,1,72,1,0,1,28,0,537,50,26,0,0,2,1,1462,0,2,41,0,6035,0,0,1,0,7,0,17,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,62,12,12,12,0,0,0,25106,0,305,0,0,0,28,30,520,1682,25030,0,0,0,0,1,0,24,0,0,0,0,0,0,2221,0,0,0,0,0,0,0,0,0,0,0,0,16,1,0,0,0,0,0,2,0,86,20,609,15,0,0,848,0,919,0,0,0,629,20,0,0,0,0,0,0,0,0,0,1413,1,0,5,0,15,0,0,0,0,14,246,306,0,0,110,0,15,0,0,0,5494,1,0,1840,13,0,1,1,0,0,0,0,31,0,0,0,6,0,0,0,0,0,3,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,13,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,130,1,1,1,0,54,0,0,0,2,9,190,765,0,35,12,0,0,0,0,0,212,7,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,8,2981,637,1 +4,0,0,7,0,24,139,0,1519,2,418,0,0,0,11,1,22,0,7,1,0,0,0,1,0,0,3,0,13,0,23,1,0,0,13,0,24,9,0,0,2771,0,0,0,1,0,0,3,0,0,0,0,23,79,0,0,0,0,0,1,0,0,0,0,0,12,0,0,2576,24,2157,0,36,0,0,0,0,0,14,0,0,0,0,0,1,5,155,0,0,13,0,0,0,1502,0,11452,710,6,0,0,2,0,7187,0,9,0,0,951,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,2,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,157,0,57,0,0,0,46,46,61,8858,164,0,0,0,0,1,0,0,0,0,0,0,0,0,1770,0,0,0,0,0,0,0,0,0,0,0,0,10,0,2,0,0,0,0,0,0,8,422,192,8,0,0,306,0,357,0,0,0,231,24,0,0,0,0,0,0,0,0,0,2117,1,0,0,0,2,0,0,0,0,19,109,3719,0,0,1554,0,0,0,0,1,151,0,0,132,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,26,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,60,0,0,0,24,1,37,445,0,40,0,0,0,0,0,0,3187,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,160,134,1 +2,0,0,7,0,36,6,0,38,1,6,0,0,2,4,0,529,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,3,762,36,8,0,0,27,0,0,0,1,0,0,3,0,0,0,0,1,188,0,0,0,0,0,1,0,0,0,1,0,4,0,0,5329,36,591,0,2,0,0,0,0,0,19,0,0,0,0,0,8,19,972,0,0,3,0,0,0,0,0,89,5,6,0,0,2,0,543,0,1,0,0,853,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,483,0,52,0,0,0,0,3,252,322,445,0,0,0,0,1,0,3,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,16,180,7,0,0,217,0,299,0,0,0,62,10,0,0,0,0,0,0,0,0,0,591,1,0,0,0,9,0,0,0,0,1,119,24,0,0,1,0,0,0,0,0,1363,1,0,52,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,1,0,0,0,0,1,39,126,0,3,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,41,1 +8,0,0,4,0,22,3,0,20,4,4,0,0,0,12,1,15,0,7,1,0,0,0,1,0,0,0,0,2,0,6,0,0,0,9,0,22,6,0,0,43,0,0,0,1,0,0,4,0,0,0,0,5,135,0,0,0,0,0,1,0,0,0,0,0,12,0,0,628,22,77,0,8,0,0,0,0,0,14,0,0,0,0,0,1,6,132,0,0,9,0,0,0,0,0,18,0,3,0,0,2,0,52,0,10,0,0,365,0,0,0,0,3,6,0,0,0,0,0,1,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,125,0,91,0,0,0,10,9,43,35,161,0,0,0,0,1,0,0,0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,25,152,4,0,0,158,0,219,0,0,0,78,8,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,2,0,0,2,108,37,0,0,0,0,0,0,0,0,62,0,0,88,0,0,1,2,0,0,0,0,8,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,12,0,0,0,8,1,31,301,0,8,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,222,72,1 +0,0,0,4,0,11,6,0,45,0,10,0,0,0,4,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,91,0,0,0,1,0,0,3,0,0,0,0,0,92,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1245,11,97,0,1,0,0,0,0,0,14,0,0,0,0,0,1,6,72,0,0,1,0,0,1,23,0,194,15,5,0,0,2,0,137,0,1,0,0,522,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,79,0,60,0,0,0,0,3,25,278,90,0,0,0,0,1,0,0,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,80,96,4,0,0,203,0,362,0,0,0,136,5,0,0,0,0,0,0,0,0,0,86,1,0,0,0,2,0,0,0,0,0,95,180,0,0,26,0,0,0,0,0,40,0,0,65,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,332,0,1,0,0,0,0,0,0,78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,142,23,1 +12,0,0,6,0,84,98,0,46,2,90,0,0,7,12,0,82,0,6,2,0,0,0,9,0,11,6,0,25,0,7,0,0,0,39,1594,84,6,0,0,84,0,0,0,1,0,0,10,1,0,0,0,7,1725,0,0,0,0,0,1,0,0,0,4,0,11,0,0,41136,84,680,0,28,0,0,0,0,0,237,0,0,0,0,2,10,335,8233,0,0,39,0,0,0,0,0,1073,25,18,0,0,2,0,356,0,8,833,0,6561,0,0,0,0,20,0,8,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,1,0,7,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,3,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,12,12,0,0,0,1876,0,216,0,0,0,24,48,708,4284,1860,0,0,0,0,1,0,12,0,0,0,0,0,0,2255,0,0,0,0,0,0,0,0,0,0,0,0,11,1,1,0,0,0,0,1,0,108,24,447,6,0,0,701,0,509,0,0,0,514,40,0,0,0,0,0,0,2,0,0,341,1,0,4,0,11,0,0,0,0,6,190,151,0,0,800,0,0,0,0,0,4399,1,0,953,92,0,1,1,0,0,0,0,35,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,92,16,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,110,0,0,0,0,1,123,933,0,35,14,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,3,0,0,0,8,3341,153,1 +4,0,0,5,0,52,14,0,57,1,3,0,0,2,8,0,1170,0,9,2,0,0,0,7,0,11,0,0,6,0,5,0,0,0,16,74,52,6,0,0,51,0,2,0,1,0,0,11,1,0,0,0,5,337,0,0,0,0,0,1,0,0,0,0,0,10,0,0,40304,52,1366,0,9,0,0,0,0,0,68,0,0,0,0,0,8,37,6627,0,0,16,0,0,0,0,0,120,5,21,1,0,2,0,1219,0,4,0,0,2185,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,1,14,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,7,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,12,12,12,0,0,0,5199,0,172,0,0,0,8,9,287,176,5175,0,0,0,0,1,0,3,0,0,0,0,0,0,3147,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,1,0,32,15,352,5,0,0,422,0,362,0,0,0,262,41,0,0,0,0,0,0,0,0,0,1263,1,0,6,0,9,0,0,0,0,4,169,115,0,0,0,0,0,0,0,0,3215,1,0,1168,12,0,1,1,1,0,0,0,29,0,3,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,12,368,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,12,0,0,0,0,1,68,633,0,10,12,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1254,112,1 +3,0,0,7,0,37,6,0,38,1,6,0,0,2,4,0,500,0,6,2,0,0,0,7,0,10,3,0,5,0,1,1,0,0,5,762,37,8,0,0,27,0,0,0,1,0,0,2,0,0,0,0,2,187,0,0,0,0,0,1,0,0,0,1,0,4,0,0,4417,37,562,0,4,0,0,0,0,0,15,0,0,0,0,0,8,18,845,0,0,5,0,0,0,0,0,89,5,4,0,0,2,0,528,0,1,0,0,1028,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,319,0,46,0,0,0,2,7,250,328,288,0,0,0,0,1,0,4,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,16,186,7,0,0,216,0,320,0,0,0,66,10,0,0,0,0,0,0,0,0,0,562,1,0,0,0,9,0,0,0,0,1,120,22,0,0,1,0,0,0,0,0,1328,1,0,54,6,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,5,0,0,0,0,1,42,105,0,8,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,44,1 +0,0,0,4,0,20,11,0,17,0,3,0,0,0,5,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,7,1,20,6,0,0,16,0,0,0,1,0,0,1,1,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,6,0,0,2648,20,55,0,1,0,0,0,0,0,22,0,0,0,0,0,1,4,68,0,0,7,0,0,0,0,0,7,0,4,0,0,2,0,13,0,2,0,0,333,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,59,0,0,0,0,3,47,7,49,0,0,0,0,1,0,0,0,0,0,0,0,0,1571,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,107,4,0,0,121,0,212,0,0,0,42,4,0,0,0,0,0,0,0,0,0,58,1,0,2,0,2,0,0,0,0,0,104,14,0,0,0,0,0,0,0,0,31,0,0,101,0,0,1,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,0,0,0,0,0,1,27,11,0,1,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,128,45,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,117,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1035,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,43,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,301,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,57,0,55,0,0,0,4,10,32,174,66,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,114,3,0,0,114,0,348,0,0,0,40,11,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,59,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,155,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,98,24,1 +6,0,0,15,0,52,8,0,50,20,23,0,0,6,20,1,821,0,7,4,0,0,0,9,0,11,3,0,37,0,4,0,0,0,10,1905,52,42,0,0,90,0,3,0,1,0,0,3,0,0,0,0,4,197,0,0,0,0,0,1,0,0,0,0,0,15,0,0,28820,52,968,0,37,0,0,0,0,0,17,0,0,0,0,0,12,88,6504,0,0,10,0,0,0,0,0,333,20,3,0,0,2,0,951,0,10,15,0,4665,0,0,0,0,24,0,1,0,2,0,0,1,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,45,12,12,12,0,0,0,1835,0,75,0,0,0,21,28,367,2104,1817,0,0,0,0,1,0,3,0,0,0,0,0,0,486,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,89,141,287,26,0,0,291,0,543,0,0,0,117,10,0,0,0,0,0,0,0,0,0,936,1,0,0,0,13,0,0,0,0,4,139,40,0,0,76,0,0,0,0,0,4349,1,0,834,7,0,1,1,1,0,0,0,6,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,7,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,88,0,0,0,4,1,62,123,0,41,14,0,1,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2212,126,1 +2,0,0,7,0,36,6,0,38,1,6,0,0,2,4,0,530,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,3,762,36,8,0,0,27,0,0,0,1,0,0,3,0,0,0,0,1,185,0,0,0,0,0,1,0,0,0,1,0,4,0,0,4992,36,592,0,2,0,0,0,0,0,19,0,0,0,0,0,8,19,926,0,0,3,0,0,0,0,0,89,5,6,0,0,2,0,544,0,1,0,0,1011,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,427,0,52,0,0,0,0,3,251,325,389,0,0,0,0,1,0,3,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,16,181,7,0,0,217,0,299,0,0,0,62,4,0,0,0,0,0,0,0,0,0,592,1,0,0,0,9,0,0,0,0,1,119,24,0,0,1,0,0,0,0,0,1376,1,0,46,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,1,0,0,0,0,1,39,126,0,3,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,366,44,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,19,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,18,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,37,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,4,1 +5471,0,0,4,0,24,15,0,48,1,13,0,0,0,6,0,16,0,6,1,0,0,0,1,0,0,0,0,78,0,1,0,0,0,9,0,24,6,0,0,68,0,0,0,1,0,0,1,0,0,0,0,0,740,0,0,0,0,0,1,0,0,0,0,0,8,0,0,62066,24,176,0,79,0,0,0,0,0,6,0,0,0,0,0,1,3,1583,0,0,9,0,0,1,32,0,337,45,1,0,0,2,0,240,0,4,0,0,108280,0,0,0,0,16391,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,5465,0,0,0,0,0,10925,0,5464,0,0,0,0,0,0,5473,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5464,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,981,0,64,0,0,0,0,3,46,51774,988,0,0,0,0,1,0,0,0,0,0,0,0,0,92461,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,7,589,4,0,0,174,0,685,0,0,0,93,270,0,0,0,0,0,0,0,0,0,104,1,0,0,0,2,0,0,0,0,1,111,97,0,0,1059,0,0,0,0,0,430,0,0,2188,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,78,0,0,0,0,1,33,128,0,79,0,0,0,0,0,0,88,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,785,197,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,32,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,31,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,42,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,4,1 +3,0,0,6,0,45,91,0,35,0,90,0,0,7,5,0,72,0,6,2,0,0,0,8,0,11,3,0,19,0,2,0,0,0,6,1594,45,6,0,0,47,0,0,0,1,0,0,3,0,0,0,0,2,1557,0,0,0,0,0,1,0,0,0,0,0,4,0,0,39555,45,549,0,17,0,0,0,0,0,191,0,0,0,0,0,9,326,7725,0,0,6,0,0,0,0,0,1088,25,4,0,0,2,0,284,0,1,935,0,5730,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,1285,0,107,0,0,0,14,21,652,3953,1264,0,0,0,0,1,0,4,0,0,0,0,0,0,1229,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,108,17,277,6,0,0,449,0,338,0,0,0,296,12,0,0,0,0,0,0,0,0,0,306,1,0,0,0,10,0,0,0,0,2,148,70,0,0,851,0,0,0,0,0,4538,1,0,873,92,0,1,1,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,92,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,56,0,0,0,0,1,51,321,0,21,14,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3275,65,1 +0,0,0,5,0,32,8,0,46,1,7,0,0,2,4,0,519,0,6,3,0,0,0,6,0,10,0,0,3,0,1,0,0,0,2,898,32,6,0,0,37,0,0,0,1,0,0,3,0,0,0,0,1,243,0,0,0,0,0,1,0,0,0,0,0,7,0,0,21877,32,604,0,1,0,0,0,0,0,20,0,0,0,0,0,8,19,3724,0,0,2,0,0,1,8,0,159,20,6,0,0,2,0,577,0,2,0,0,1087,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,3179,0,46,0,0,0,0,3,225,362,3169,0,0,0,0,1,0,3,0,0,0,0,0,0,266,0,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,12,190,5,0,0,286,0,326,0,0,0,141,5,0,0,0,0,0,0,0,0,0,592,1,0,0,0,9,0,0,0,0,0,115,103,0,0,29,0,0,0,0,0,1389,1,0,94,7,0,1,1,1,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,0,0,0,0,0,1,34,604,0,2,12,0,0,0,0,0,50,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,416,29,1 +10,0,0,5,0,26,17,0,84,6,22,0,0,0,12,0,61,0,7,1,0,0,0,2,0,5,35,0,5,0,10,0,0,0,13,0,26,6,0,0,110,0,0,0,1,0,0,2,0,0,0,0,14,126,0,0,0,0,0,1,0,0,0,8,0,16,0,0,1953,26,257,0,20,0,0,0,0,0,9,0,0,0,0,0,2,6,298,0,0,13,0,0,2,50,0,452,85,2,0,0,2,0,440,0,10,0,0,807,0,0,0,0,7,0,1,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,219,0,63,0,0,0,28,55,60,276,239,0,0,0,0,1,0,0,0,0,0,0,0,0,674,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,15,165,5,0,0,191,0,262,0,0,0,116,19,0,0,0,0,0,0,0,0,0,203,1,0,0,0,3,0,0,0,0,9,116,124,0,0,182,0,0,0,0,0,190,0,0,339,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,28,0,0,0,0,1,39,227,0,55,0,0,0,0,0,0,140,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,213,56,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,65,0,0,0,0,0,1,0,0,0,0,0,2,0,0,542,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,43,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,292,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,56,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,114,3,0,0,114,0,209,0,0,0,40,9,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,53,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,128,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,99,23,1 +14,0,0,0,0,32,4,0,8,0,1,0,1,0,2,0,17,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,5,0,32,6,0,0,40,0,0,0,1,0,0,0,0,0,0,0,1,68,0,0,0,0,0,1,0,0,0,0,0,0,0,0,674,32,32,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,61,0,0,5,0,0,0,0,0,68,0,0,0,0,2,0,30,0,0,0,0,502,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,10,10,10,0,0,0,39,0,40,0,0,0,0,3,187,10,45,0,0,0,0,1,0,3,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,17,10,111,0,0,0,151,0,267,0,0,0,68,3,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,114,51,0,0,0,0,0,0,0,0,68,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,0,0,0,0,0,1,37,117,0,2,8,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,28,1 +4,0,0,4,4,26,3,4,52,2,8,0,0,0,10,1,49,0,7,9,0,8,0,1,0,0,0,0,5,0,11,0,0,4,11,0,30,38,0,0,46,0,0,0,1,0,0,2,1,0,0,0,10,76,0,0,0,0,0,1,4,0,0,0,0,10,0,0,4302,26,360,0,16,0,0,0,0,0,14,12,0,0,0,0,1,4,73,0,4,11,4,0,0,0,0,46,0,4,0,0,2,4,80,0,8,0,0,734,0,0,0,0,6,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,89,0,108,0,0,0,20,19,65,3431,98,0,0,0,0,1,0,0,0,0,0,0,0,0,3828,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,13,361,8,0,0,278,0,333,0,0,0,95,18,0,0,0,0,0,0,0,0,0,130,1,0,2,0,18,0,0,0,0,7,113,13,0,0,0,0,0,0,0,0,141,0,0,36,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,25,0,0,0,8,33,41,73,0,16,0,0,0,0,0,0,67,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,2,0,0,0,0,0,0,0,0,0,0,0,8,0,2,195,70,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,19,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,18,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,34,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,4,1 +3,0,0,4,0,34,5,0,22,0,3,0,0,2,3,0,23,0,6,3,0,0,0,5,0,8,3,0,3,0,2,0,0,0,8,0,34,6,0,0,24,0,0,0,1,0,0,1,0,0,0,0,2,100,0,0,0,0,0,1,0,0,0,0,0,4,0,0,965,34,59,0,3,0,0,0,0,0,9,0,0,0,0,0,7,14,143,0,0,8,0,0,0,0,0,79,5,2,0,0,2,0,51,0,1,0,0,621,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,118,0,54,0,0,0,2,24,192,56,121,0,0,0,0,1,0,4,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,11,140,4,0,0,179,0,267,0,0,0,72,6,0,0,0,0,0,0,0,0,0,64,1,0,0,0,8,0,0,0,0,2,116,40,0,0,0,0,0,0,0,0,90,0,0,48,3,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,41,0,0,0,0,1,42,158,0,7,9,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,151,62,1 +16,0,0,4,0,66,6,0,37,8,3,0,0,2,13,0,747,0,6,4,0,0,0,6,0,10,0,0,12,0,9,0,0,0,22,976,66,6,0,0,96,0,0,0,1,0,0,6,0,0,0,0,9,242,0,0,0,0,0,1,0,0,0,0,0,14,0,0,25539,66,858,0,18,0,0,0,0,0,29,0,0,0,0,0,9,26,4663,0,0,22,0,0,0,0,0,137,5,10,1,0,2,0,801,0,11,0,0,2437,0,0,0,0,38,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,20,0,0,0,0,0,21,0,14,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,32,12,12,12,0,0,0,3251,0,129,0,0,0,16,19,301,543,3230,0,0,0,0,1,0,5,0,0,0,0,0,0,729,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,21,350,4,0,0,332,0,388,0,0,0,143,15,0,0,0,0,0,0,0,0,0,814,1,0,0,0,10,0,0,0,0,9,149,31,0,0,0,0,0,0,0,0,2409,1,0,168,6,0,1,1,0,0,0,0,11,0,0,0,3,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,71,1,1,1,0,25,0,0,0,0,1,88,168,0,19,12,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,5,940,59,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,88,0,0,0,0,0,1,0,0,0,0,0,2,0,0,694,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,43,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,269,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,56,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,112,3,0,0,114,0,268,0,0,0,40,8,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,53,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,149,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,99,23,1 +3,0,0,10,0,46,7,0,41,4,10,0,0,6,17,1,629,0,7,1,0,0,0,9,0,11,0,0,9,0,4,0,0,0,9,898,46,6,0,0,88,0,3,0,1,0,0,3,0,0,0,0,4,191,0,0,0,0,0,1,0,0,0,0,0,14,0,0,6770,46,733,0,9,0,0,0,0,0,20,0,0,0,0,0,9,27,1652,0,0,9,0,0,0,0,0,213,20,4,0,0,2,0,718,0,9,1,0,1473,0,0,0,0,13,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,36,12,12,12,0,0,0,356,0,64,0,0,0,7,10,277,358,331,0,0,0,0,1,0,3,0,0,0,0,0,0,426,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,1,0,84,44,249,12,0,0,267,0,345,0,0,0,107,32,0,0,0,0,0,0,7,0,0,718,1,0,0,0,10,0,0,0,0,4,133,33,0,0,6,0,0,0,0,0,1955,1,0,852,8,0,1,1,1,0,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,8,364,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,14,0,0,0,2,1,55,235,0,10,14,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,783,80,1 +6,0,0,14,2,204,55,2,82,6,16,0,0,0,25,1,117,0,11,2,0,0,0,1,0,0,0,0,6,0,8,0,0,2,190,0,206,137,0,0,469,0,0,0,1,0,0,2,0,0,0,0,7,349,0,0,0,0,0,1,0,0,0,0,0,21,0,0,1486,204,241,0,14,0,0,0,0,0,8,0,0,0,0,1,2,6,426,0,2,190,2,0,3,11,0,223,20,3,0,0,6,2,177,0,15,0,0,3249,0,0,0,0,16,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,262,0,235,0,0,0,14,15,243,702,279,0,0,0,0,1,0,0,0,0,0,0,0,0,967,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,223,62,1017,18,0,0,994,0,761,0,2,0,679,37,0,0,0,0,0,0,0,0,0,307,1,0,0,0,3,0,0,0,0,6,319,798,0,0,45,0,0,0,0,0,457,0,0,64,0,0,1,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,206,1,1,1,0,20,0,0,0,6,17,396,357,0,14,0,0,0,0,0,0,475,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,2,359,265,1 +85,0,0,5,0,113,44,0,199,50,41,0,0,0,56,0,25,0,6,1,0,0,0,2,0,0,0,0,63,0,338,0,0,0,101,0,113,6,0,0,534,0,0,0,1,0,0,19,0,0,0,0,337,276,0,0,0,0,0,1,0,0,0,95,0,57,0,0,33454,113,890,0,401,0,0,0,0,0,78,0,0,0,0,0,2,23,2966,0,0,101,0,0,0,178,0,2784,15,29,0,0,2,0,1437,0,51,0,0,3251,0,0,0,0,54,0,7,0,0,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,53,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,62,1,1,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,33,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,2947,0,308,0,0,0,674,677,177,2213,3175,0,0,0,0,1,0,0,0,0,0,0,0,0,10485,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,8,62,816,5,0,0,704,0,473,0,0,0,633,78,0,0,0,0,0,0,0,0,0,371,1,0,0,0,3,0,0,0,0,338,212,757,0,0,43,0,0,0,0,0,2605,0,0,10284,0,0,1,0,1,0,0,0,37,0,0,0,1,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,111,1,1,1,0,737,0,0,0,662,1,214,680,0,401,0,0,0,0,0,0,557,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,52,0,0,0,0,0,0,0,0,0,0,0,0,0,17,3071,390,1 +9,0,0,5,0,21,2,0,29,1,3,0,0,0,5,0,16,0,6,2,0,0,0,1,0,0,0,0,2,0,1,0,0,0,6,0,21,6,0,0,35,0,0,0,1,0,0,6,0,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,7,0,0,667,21,80,0,3,0,0,0,0,0,20,0,0,0,0,1,2,9,133,0,0,6,0,0,0,0,0,19,0,7,0,0,2,0,24,0,3,0,0,293,0,0,0,0,5,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,45,0,0,0,0,0,0,149,0,104,0,0,0,0,3,50,29,140,0,0,0,0,1,0,0,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,10,8,132,5,0,0,148,0,282,0,0,0,66,10,0,0,0,0,0,0,0,0,0,61,1,0,0,0,3,0,0,0,0,1,104,34,0,0,0,0,0,0,0,0,235,0,0,116,0,0,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,2,0,0,0,0,1,27,226,0,3,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,243,108,1 +6,0,0,4,6,28,3,6,93,2,10,0,0,0,11,1,63,0,7,13,0,12,0,1,0,0,0,0,6,0,11,0,0,6,12,0,34,6,0,0,62,0,0,0,1,0,0,5,0,0,0,0,10,128,0,0,0,0,0,1,6,0,0,0,0,11,0,0,1068,28,544,0,17,0,0,0,0,0,21,18,0,0,0,0,1,8,144,0,6,12,6,0,0,0,0,55,0,8,0,0,2,6,81,0,9,0,0,528,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,153,0,110,0,0,0,20,19,69,60,167,0,0,0,0,1,0,0,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,14,359,10,0,0,396,0,370,0,0,0,158,19,0,0,0,0,0,0,0,0,0,188,1,0,0,0,26,0,0,0,0,7,114,57,0,0,0,0,0,0,0,0,141,0,0,119,0,0,1,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,26,0,0,0,8,49,46,324,0,17,0,0,0,0,0,0,105,6,0,0,0,0,0,0,0,0,0,0,0,6,0,1,2,0,0,0,0,0,0,0,0,0,0,0,12,0,3,258,66,1 +1,0,0,3,2,18,8,2,44,0,5,0,0,0,3,0,32,0,6,5,0,4,0,1,0,0,0,0,1,0,1,0,0,2,5,0,20,6,0,0,17,0,0,0,1,0,0,4,0,0,0,0,0,135,0,0,0,0,0,1,2,0,0,0,0,3,0,0,630,18,226,0,2,0,0,0,0,0,24,6,0,0,0,0,1,6,119,0,2,5,2,0,0,0,0,17,0,7,0,0,2,2,37,0,1,0,0,257,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,130,0,99,0,0,0,0,3,43,19,136,0,0,0,0,1,0,0,0,0,0,0,0,0,391,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,4,185,5,0,0,209,0,303,0,0,0,73,7,0,0,0,0,0,0,0,0,0,98,1,0,0,0,10,0,0,0,0,1,100,27,0,0,0,0,0,0,0,0,80,0,0,107,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,1,0,0,0,0,17,25,353,0,2,0,0,0,0,0,0,51,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,231,53,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,19,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,18,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,34,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,4,1 +2,0,0,7,0,35,6,0,38,1,6,0,0,2,4,0,511,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,3,762,35,8,0,0,27,0,0,0,1,0,0,3,0,0,0,0,1,198,0,0,0,0,0,1,0,0,0,1,0,4,0,0,5215,35,573,0,2,0,0,0,0,0,19,0,0,0,0,0,8,19,956,0,0,3,0,0,0,0,0,89,5,6,0,0,2,0,525,0,1,0,0,1220,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,448,0,52,0,0,0,0,3,244,324,411,0,0,0,0,1,0,3,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,16,179,7,0,0,215,0,297,0,0,0,62,6,0,0,0,0,0,0,0,0,0,573,1,0,0,0,9,0,0,0,0,1,118,24,0,0,1,0,0,0,0,0,1361,1,0,49,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,1,0,0,0,0,1,38,126,0,3,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,42,1 +8,0,0,14,0,123,11,0,96,4,22,0,0,6,30,0,1314,0,7,2,0,0,0,9,0,11,0,0,12,0,5,0,0,0,83,898,123,7,0,0,179,0,0,0,1,0,0,7,0,0,0,0,5,298,0,0,0,0,0,1,0,0,0,0,0,17,0,0,83367,123,1536,0,13,0,0,0,0,0,36,0,0,0,0,1,10,35,41458,0,0,83,0,0,2,21,0,398,50,12,0,0,2,0,1553,0,11,3,0,2452,0,0,0,0,14,0,2,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,3,0,4,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,70,12,12,12,0,0,0,28808,0,186,0,0,0,9,9,372,1185,28781,0,0,0,0,1,0,4,0,0,0,0,0,0,3404,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,84,135,510,23,0,0,617,0,635,0,0,0,443,17,0,0,0,0,0,0,0,0,0,1486,1,0,0,0,11,0,0,0,0,2,215,236,0,0,62,0,0,0,1,0,3829,1,0,2856,8,0,1,1,0,0,0,0,14,0,1,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,8,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,127,1,1,1,0,19,0,0,0,0,1,206,873,0,14,14,0,0,0,0,0,151,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1692,142,1 +2,0,0,9,0,38,12,0,56,5,17,0,0,2,15,1,39,0,7,3,0,0,0,5,0,8,12,0,9,0,10,2,0,0,9,0,38,6,0,0,99,0,0,0,1,0,0,4,1,0,0,0,12,94,0,0,0,0,0,1,0,0,0,0,0,17,0,0,4727,38,197,0,20,0,0,0,0,0,25,0,0,0,0,1,7,17,249,0,0,9,0,0,1,27,0,377,55,9,0,0,2,0,265,0,10,0,0,865,0,0,0,0,15,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,10,10,10,0,0,0,202,0,104,0,0,0,22,39,201,1098,195,0,0,0,0,1,0,3,0,0,0,0,0,0,2515,0,0,0,0,0,0,0,0,0,0,0,0,4,1,2,0,0,0,0,1,0,32,30,228,11,0,0,284,0,437,0,0,0,169,112,0,0,0,0,0,0,4,0,0,149,1,0,3,0,8,0,0,0,0,12,123,152,0,0,107,0,0,0,0,0,164,0,0,192,2,0,1,1,0,0,0,0,15,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,2,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,37,0,0,0,8,1,47,465,0,33,8,0,0,0,0,0,114,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,3,332,263,1 +11,0,0,10,0,27,4,0,28,2,7,0,0,0,17,1,26,0,12,2,0,0,0,1,0,2,0,0,6,0,11,0,0,0,12,0,27,6,102,0,61,0,4,0,1,0,0,4,0,0,0,0,6,142,0,0,0,0,0,1,0,0,0,0,0,10,0,0,4518,27,116,0,19,0,0,0,0,0,21,0,0,0,0,0,2,8,1249,0,0,12,0,0,0,0,0,52,0,5,0,0,2,0,74,0,6,0,0,493,0,0,0,0,18,3,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,1,0,0,1,3,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,4,0,0,0,0,0,0,522,0,89,0,0,0,11,19,77,533,523,0,0,0,0,1,0,0,0,0,0,0,0,0,1194,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,45,21,223,12,0,0,251,0,426,0,0,0,132,2060,0,0,0,0,0,0,4,0,0,95,1,0,0,0,3,0,0,0,0,6,152,57,0,0,0,0,0,0,0,0,406,0,0,1604,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,373,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,22,0,0,0,0,2,39,393,0,19,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,677,58,1 +3,0,0,6,2,21,76,8,311,2,80,0,0,0,7,0,25,0,6,6,0,2,1,2,0,0,0,0,1,0,2,0,0,2,9,0,23,6,5,0,582,0,0,0,1,0,0,2,0,0,0,0,1,110,0,0,0,0,0,1,0,0,0,6,0,10,0,0,1439,21,616,0,3,0,0,0,0,0,11,6,0,0,0,0,2,5,136,0,8,9,2,0,1,282,0,2160,45,4,0,0,2,2,1431,0,5,0,0,258,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,121,0,71,0,0,0,2,5,46,2023,129,0,0,0,0,1,0,0,0,0,0,0,0,0,712,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,0,8,13,170,8,0,0,311,0,323,0,0,0,208,20,0,0,0,0,0,0,4,0,0,505,1,0,0,0,11,0,0,0,0,2,107,803,0,0,99,0,0,0,0,0,84,0,0,162,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,3,0,0,0,0,17,32,291,0,3,0,0,0,0,0,0,657,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,3,0,2,190,56,1 +5,0,0,7,0,54,92,0,34,2,91,0,0,7,13,1,75,0,7,3,0,0,0,8,0,11,3,0,24,0,10,0,0,0,12,1594,54,6,0,0,75,0,0,0,1,0,0,3,0,0,0,0,10,1549,0,0,0,0,0,1,0,0,0,0,0,12,0,0,37359,54,568,0,30,0,0,0,0,0,191,0,0,0,0,0,10,329,7232,0,0,12,0,0,0,0,0,1073,25,4,0,0,2,0,314,0,9,859,0,5642,0,0,0,0,3,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,12,12,12,0,0,0,1266,0,124,0,0,0,30,33,665,3790,1245,0,0,0,0,1,0,4,0,0,0,0,0,0,1266,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,108,27,337,7,0,0,482,0,369,0,0,0,317,12,0,0,0,0,0,0,0,0,0,320,1,0,0,0,11,0,0,0,0,6,161,80,0,0,813,0,0,0,0,0,4171,1,0,920,92,0,1,1,0,0,0,0,10,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,92,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,77,0,0,0,8,1,66,354,0,34,14,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3087,74,1 +8,0,0,13,0,47,11,0,69,5,33,0,0,0,33,0,36,0,7,1,0,0,0,2,1,1,9,0,7,0,4,2,0,0,37,0,47,34,0,0,207,0,0,0,1,0,0,7,0,0,0,0,6,171,0,0,0,0,0,1,0,0,0,0,0,26,0,0,3319,47,258,0,14,0,0,0,0,0,35,0,0,0,0,0,3,11,592,0,0,37,0,0,5,45,0,427,75,12,0,0,2,0,391,0,16,0,0,978,0,0,0,0,18,0,4,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,415,0,151,0,0,0,12,19,82,422,423,0,0,0,0,1,0,0,0,0,0,0,0,0,1335,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,14,88,253,16,0,0,335,0,418,0,0,0,266,16,0,0,0,0,0,0,7,0,0,189,1,0,0,0,4,0,0,0,0,1,138,198,0,0,145,0,2,0,0,0,372,0,0,667,0,0,1,0,0,0,0,0,16,0,0,0,2,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,21,0,0,0,0,1,84,490,0,23,0,0,0,0,0,0,227,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,7,777,96,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,7,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,71,0,0,0,0,0,1,0,0,0,0,0,2,0,0,529,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,48,0,0,7,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,296,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,62,0,56,0,0,0,4,10,32,174,71,0,0,0,0,1,0,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,121,3,0,0,114,0,208,0,0,0,49,12,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,57,0,0,50,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,24,115,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,104,23,1 +0,0,0,4,0,10,3,0,24,0,7,0,0,0,3,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,20,0,0,0,1,0,0,1,0,0,0,0,0,65,0,0,0,0,0,1,0,0,0,0,0,5,0,0,363,10,54,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,63,0,0,1,0,0,1,8,0,79,15,2,0,0,2,0,54,0,1,0,0,92,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,33,0,0,0,0,3,24,63,77,0,0,0,0,1,0,0,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,72,4,0,0,115,0,146,0,0,0,51,3,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,0,92,54,0,0,29,0,0,0,0,0,43,0,0,68,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,140,0,1,0,0,0,0,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,85,11,1 +6,0,0,2,4,20,2,4,54,0,6,0,0,0,2,0,47,0,6,9,0,8,0,1,0,0,0,0,4,0,1,0,0,4,8,0,24,6,0,0,21,0,0,0,1,0,0,3,0,0,0,0,0,121,0,0,0,0,0,1,4,0,0,2,0,1,0,0,525,20,332,0,5,0,0,0,0,0,12,12,0,0,0,0,1,5,61,0,4,8,4,0,0,0,0,22,0,4,0,0,2,4,37,0,0,0,0,277,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,10,0,0,0,0,0,0,74,0,69,0,0,0,0,3,47,27,85,0,0,0,0,1,0,0,0,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,246,6,0,0,284,0,364,0,0,0,110,6,0,0,0,0,0,0,0,0,0,117,1,0,0,0,18,0,0,0,0,1,105,41,0,0,0,0,0,0,0,0,92,0,0,70,0,0,1,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,4,0,0,0,0,33,32,349,0,5,0,0,0,0,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,8,0,2,155,40,1 +8,0,0,5,0,32,3,0,11,4,3,0,0,0,13,0,16,0,6,2,0,0,0,2,0,0,0,0,3,0,4,0,0,0,19,0,32,6,0,0,57,0,0,0,1,0,0,1,0,0,0,0,3,36,0,0,0,0,0,1,0,0,0,14,0,13,0,0,423,32,50,0,7,0,0,0,0,0,6,0,0,0,0,0,3,5,41,0,0,19,0,0,0,0,0,22,0,2,0,0,2,0,37,0,9,0,0,470,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,8,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,4,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,60,0,53,0,0,0,6,8,62,31,69,0,0,0,0,1,0,0,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,15,155,5,0,0,179,0,319,0,0,0,112,17,0,0,0,0,0,0,0,0,0,52,1,0,0,0,4,0,0,0,0,3,118,44,0,0,0,0,0,0,0,0,208,0,0,43,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,9,0,0,0,0,1,51,183,0,7,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,129,114,1 +3,0,0,6,0,46,14,0,39,2,4,0,0,2,11,1,572,0,7,3,0,0,0,7,0,11,3,0,9,0,8,0,0,0,11,1424,46,6,0,0,48,0,0,0,1,0,0,1,0,0,0,0,8,242,0,0,0,0,0,1,0,0,0,1,0,12,0,0,38754,46,679,0,13,0,0,0,0,0,26,0,0,0,0,0,9,20,6596,0,0,11,0,0,0,0,0,106,5,2,0,0,2,0,651,0,9,0,0,1486,0,0,0,0,4,0,3,0,0,0,0,1,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,34,12,12,12,0,0,0,5728,0,53,0,0,0,14,13,276,456,5713,0,0,0,0,1,0,5,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,21,238,6,0,0,270,0,355,0,0,0,107,11,0,0,0,0,0,0,0,0,0,650,1,0,0,0,10,0,0,0,0,3,134,16,0,0,0,0,0,0,0,0,1685,1,0,62,15,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,18,0,0,0,8,1,57,75,0,17,14,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,549,46,1 +8,0,0,4,0,48,6,0,35,8,3,0,0,2,13,0,539,0,6,3,0,0,0,6,0,10,0,0,8,0,5,0,0,0,10,898,48,6,0,0,64,0,0,0,1,0,0,4,0,0,0,0,5,197,0,0,0,0,0,1,0,0,0,0,0,14,0,0,20772,48,632,0,10,0,0,0,0,0,25,0,0,0,0,0,8,21,3672,0,0,10,0,0,0,0,0,112,5,9,0,0,2,0,585,0,11,0,0,1407,0,0,0,0,16,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,10,0,6,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,28,12,12,12,0,0,0,2936,0,106,0,0,0,8,11,249,358,2909,0,0,0,0,1,0,3,0,0,0,0,0,0,517,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,254,4,0,0,272,0,335,0,0,0,101,10,0,0,0,0,0,0,0,0,0,604,1,0,0,0,9,0,0,0,0,5,131,27,0,0,0,0,0,0,0,0,1581,1,0,143,6,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,13,0,0,0,0,1,58,154,0,11,12,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,5,605,41,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,21,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,20,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,38,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,4,1 +1,0,0,2,0,16,2,0,25,0,2,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,2,0,3,0,0,0,6,0,16,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,74,0,0,0,0,0,1,0,0,0,0,0,1,0,0,6701,16,72,0,5,0,0,0,0,0,8,0,0,0,0,1,1,5,1590,0,0,6,0,0,0,0,0,18,0,3,0,0,2,0,62,0,0,0,0,238,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,849,0,46,0,0,0,4,15,33,21,856,0,0,0,0,1,0,0,0,0,0,0,0,0,2004,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,106,2,0,0,162,0,234,0,0,0,95,8,0,0,0,0,0,0,3,0,0,62,1,0,0,0,2,0,0,0,0,3,99,62,0,0,0,0,0,0,0,0,451,0,0,1603,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,6,0,0,0,0,1,22,197,0,11,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,849,25,1 +5,0,0,7,1,26,31,1,49,7,6,0,1,0,17,0,68,0,8,1,0,0,0,2,0,0,0,0,5,0,2,0,0,1,15,0,27,83,0,0,64,0,0,0,1,0,0,2,0,0,0,0,1,64,0,0,0,0,0,1,0,0,0,13,0,15,0,0,329,26,140,0,7,0,0,0,0,0,10,0,0,0,0,0,2,5,54,0,1,15,1,0,2,0,0,59,0,2,0,0,6,1,77,0,13,0,0,366,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,65,0,80,0,0,0,2,5,52,55,87,0,0,0,0,1,0,0,0,0,0,0,0,0,379,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,124,39,294,10,0,0,312,0,542,0,1,0,118,16,0,0,0,0,0,0,0,0,0,180,1,0,0,0,3,0,0,0,0,2,129,21,0,0,0,0,1,0,0,0,174,0,0,25,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,24,1,1,1,0,7,0,0,0,0,9,42,107,0,7,0,0,0,0,0,0,78,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,1,0,2,176,201,1 +3568,0,0,14,0,92,9,0,53,42,3,0,0,2,53,0,91,0,11,2,0,0,0,8,0,8,39,0,87,0,15,2,0,0,48,0,92,6,0,0,197,0,0,0,1,0,0,8,1,0,0,0,17,388,0,0,0,0,0,1,0,0,0,45,0,55,0,0,77807,92,410,0,102,0,0,0,0,0,46,0,0,0,0,0,9,28,6799,0,0,48,0,0,0,0,0,217,5,17,0,0,2,0,478,0,49,0,0,73017,0,0,0,0,10641,7,2,0,12,0,0,1,0,0,0,16,0,0,0,0,0,0,0,7,0,0,0,3556,0,0,0,0,0,7089,0,3552,0,0,0,0,0,0,3559,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,22,2,0,0,0,0,0,0,0,0,15,0,0,0,0,3554,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,44,10,10,10,0,0,0,4995,0,273,0,0,0,32,65,285,21336,5002,0,0,0,0,1,0,4,0,0,0,0,0,0,66330,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,1,0,32,72,1447,13,0,0,470,0,714,0,0,0,290,120,0,0,0,0,0,0,0,0,0,222,1,0,3,0,10,0,0,0,0,11,182,103,0,0,0,0,0,0,0,0,2187,0,0,4058,3,0,1,1,0,0,0,0,23,0,0,0,4,0,0,0,0,0,41,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,11,1,0,0,0,0,3,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,97,1,1,1,0,111,0,0,0,0,1,140,327,0,142,9,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,0,0,0,0,0,0,0,0,0,0,0,0,0,10,2854,283,1 +5,0,0,6,2,52,106,2,83,3,97,0,0,7,8,0,1463,0,7,6,0,4,0,8,0,11,0,0,32,0,11,0,0,2,10,3042,54,58,0,0,65,0,0,0,1,0,0,3,0,0,0,0,11,1641,0,0,0,0,0,1,2,0,0,1,0,7,0,0,211825,52,2171,0,39,0,0,0,0,0,202,6,0,0,0,0,9,338,24786,0,2,10,2,0,0,0,0,1143,25,5,0,0,2,2,1741,0,4,892,0,25891,0,0,0,0,13,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,74,12,12,12,0,0,0,13276,0,72,0,0,0,34,37,746,27724,13254,0,0,0,0,1,0,3,0,0,0,0,0,0,12709,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,118,26,953,8,0,0,1145,0,427,0,0,0,907,34,0,0,0,0,0,0,0,0,0,1771,1,0,0,0,18,0,0,0,0,11,702,68,0,0,852,0,0,0,0,0,10421,1,0,5442,98,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,98,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,90,0,0,0,10,17,64,415,0,40,14,0,0,0,0,0,98,2,0,0,0,0,0,0,0,0,0,0,0,5,0,1,7,0,0,0,0,0,0,0,0,0,0,0,4,0,3,6526,94,1 +1,0,0,4,2,16,5,2,49,0,10,0,0,0,4,0,32,0,6,5,0,4,0,1,0,0,0,0,1,0,1,0,0,2,5,0,18,6,0,0,38,0,0,0,1,0,0,3,0,0,0,0,0,115,0,0,0,0,0,1,2,0,0,0,0,7,0,0,997,16,215,0,2,0,0,0,0,0,16,6,0,0,0,0,1,7,193,0,2,5,2,0,1,13,0,124,15,7,0,0,2,2,94,0,2,0,0,214,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,145,0,87,0,0,0,0,3,38,254,152,0,0,0,0,1,0,0,0,0,0,0,0,0,544,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,5,167,6,0,0,199,0,232,0,0,0,77,4,0,0,0,0,0,0,0,0,0,106,1,0,0,0,10,0,0,0,0,1,98,59,0,0,30,0,0,0,0,0,99,0,0,283,0,0,1,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,1,0,0,0,0,17,23,256,0,2,0,0,0,0,0,0,76,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,1,0,4,1,2,260,36,1 +15,0,0,14,0,68,31,0,75,17,15,0,0,12,32,1,1193,0,7,1,0,0,0,10,0,12,15,0,16,0,5,2,0,0,23,8834,68,40,0,0,235,0,8,0,1,0,0,8,0,0,0,0,8,357,0,0,0,0,0,1,0,0,0,15,0,30,0,0,139875,68,1473,0,20,0,0,0,0,0,74,0,0,0,0,0,10,43,23778,0,0,23,0,0,0,0,0,580,49,13,0,0,2,0,1558,0,24,15,0,3896,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,3,0,0,2,10,0,0,0,8,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,2,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,4,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,0,0,2,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,62,12,12,12,0,0,0,20810,0,139,0,0,0,16,34,409,814,20769,0,0,0,0,1,0,4,0,0,0,0,0,0,2148,0,0,0,0,0,0,0,0,0,12,0,0,8,1,5,0,0,0,0,1,0,271,61,395,16,0,0,503,0,555,0,0,0,306,32,0,0,0,0,0,0,7,0,0,1366,1,0,0,0,11,0,0,0,0,8,175,98,0,0,22,0,0,0,0,0,4236,1,0,2583,27,0,1,1,1,0,0,0,19,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,2,0,0,0,27,371,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,0,80,1,1,1,0,36,0,0,0,0,1,91,424,0,36,14,0,1,0,0,0,249,4,0,0,0,0,0,0,0,0,0,0,0,3,0,2,27,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1905,170,1 +0,0,0,0,0,10,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,0,0,0,45,10,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,17,0,0,0,0,3,27,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,39,0,0,0,65,0,55,0,0,0,32,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,93,27,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,66,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,4,1 +4,0,0,11,2,27,45,8,137,5,35,0,0,0,17,1,27,0,7,6,0,2,1,2,0,0,0,0,4,0,8,0,0,2,15,0,29,6,168,0,230,0,0,0,1,0,0,6,0,0,0,0,7,633,0,0,0,0,0,1,0,0,0,8,0,23,0,0,11673,27,421,0,12,0,0,0,0,0,30,6,0,0,0,0,2,9,3361,0,8,15,2,0,1,107,0,857,105,11,0,0,2,2,557,0,12,0,0,2321,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,10,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1837,0,98,0,0,0,14,13,56,3685,1840,0,0,0,0,1,0,0,0,0,0,0,0,0,969,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,8,20,248,15,0,0,362,0,598,0,0,0,259,35,0,0,0,0,0,0,0,0,0,269,1,0,0,0,11,0,0,0,0,4,126,339,0,0,235,0,0,0,0,0,1850,0,0,504,0,0,1,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,18,0,0,0,8,17,44,664,0,12,0,0,0,0,0,0,276,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,3,0,7,1860,288,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,7,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,75,0,0,0,0,0,1,0,0,0,0,0,2,0,0,510,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,50,0,0,7,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,339,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,64,0,57,0,0,0,4,10,36,174,73,0,0,0,0,1,0,0,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,120,3,0,0,117,0,200,0,0,0,49,6,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,64,0,0,54,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,25,97,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,109,23,1 +0,0,0,4,0,11,6,0,45,0,10,0,0,0,4,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,91,0,0,0,1,0,0,3,0,0,0,0,0,95,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1245,11,97,0,1,0,0,0,0,0,14,0,0,0,0,0,1,6,72,0,0,1,0,0,1,23,0,194,15,5,0,0,2,0,137,0,1,0,0,524,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,78,0,59,0,0,0,0,3,25,328,89,0,0,0,0,1,0,0,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,80,97,4,0,0,203,0,372,0,0,0,136,8,0,0,0,0,0,0,0,0,0,86,1,0,0,0,2,0,0,0,0,0,95,186,0,0,26,0,0,0,0,0,40,0,0,65,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,326,0,1,0,0,0,0,0,0,78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,144,23,1 +3,0,0,4,0,34,5,0,22,0,3,0,0,2,3,0,23,0,6,3,0,0,0,5,0,8,3,0,3,0,2,0,0,0,8,0,34,6,0,0,24,0,0,0,1,0,0,1,0,0,0,0,2,102,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1016,34,59,0,3,0,0,0,0,0,9,0,0,0,0,0,7,14,159,0,0,8,0,0,0,0,0,79,5,2,0,0,2,0,51,0,1,0,0,604,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,120,0,55,0,0,0,2,24,192,56,123,0,0,0,0,1,0,4,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,11,139,4,0,0,179,0,268,0,0,0,72,9,0,0,0,0,0,0,0,0,0,64,1,0,0,0,8,0,0,0,0,2,116,40,0,0,0,0,0,0,0,0,99,0,0,56,3,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,41,0,0,0,0,1,42,158,0,7,9,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,157,36,1 +8,0,0,9,1,46,52,1,152,4,42,0,3,0,15,0,71,0,10,1,0,0,0,1,0,0,0,0,7,0,1,0,0,1,30,2,47,91,0,0,266,0,0,0,1,0,0,2,2,0,0,0,0,102,0,0,0,0,0,1,0,0,0,0,0,30,0,0,2353,46,309,0,8,0,0,0,0,0,15,0,0,0,0,0,1,4,84,0,1,30,1,0,10,103,0,897,90,7,0,0,10,1,574,0,10,0,0,3598,0,0,0,0,17,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,103,0,109,0,0,0,0,3,83,1829,109,0,0,0,0,1,0,0,0,0,0,0,0,0,1095,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,136,62,452,12,0,0,463,0,587,0,1,0,239,38,0,0,0,0,0,0,0,0,0,345,1,0,6,0,2,0,0,0,0,1,181,277,0,0,174,0,1,0,0,0,196,0,0,25,0,0,1,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,43,1,1,1,0,7,0,0,0,0,9,77,239,0,8,0,0,0,0,0,0,312,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,0,0,0,0,0,0,0,0,0,0,0,1,0,0,197,217,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,29,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,28,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,41,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,4,1 +4,0,0,7,0,17,3,0,17,2,7,0,0,0,11,1,15,0,7,1,0,0,0,1,0,0,0,0,3,0,4,0,0,0,6,0,17,6,0,0,40,0,2,0,1,0,0,2,0,0,0,0,3,70,0,0,0,0,0,1,0,0,0,0,0,9,0,0,1072,17,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,5,489,0,0,6,0,0,0,0,0,24,0,2,0,0,2,0,48,0,5,0,0,302,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,60,0,45,0,0,0,6,9,37,23,68,0,0,0,0,1,0,0,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,22,128,9,0,0,121,0,197,0,0,0,53,11,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,4,109,17,0,0,0,0,0,0,0,0,224,0,0,747,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,364,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,9,0,0,0,6,1,23,121,0,7,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,281,75,1 +23,0,0,13,0,48,5,0,42,28,3,0,0,0,37,0,72,0,11,2,0,0,0,2,0,0,30,0,12,0,12,2,0,0,31,0,48,6,0,0,156,0,0,0,1,0,0,3,1,0,0,0,13,87,0,0,0,0,0,1,0,0,0,33,0,38,0,0,14247,48,226,0,26,0,0,0,0,0,13,0,0,0,0,0,3,8,6438,0,0,31,0,0,0,0,0,65,0,5,0,0,2,0,300,0,33,0,0,4789,0,0,0,0,10,4,0,0,8,0,0,1,0,0,0,15,0,0,0,0,0,0,0,4,0,0,0,9,0,0,0,0,0,0,0,14,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,2,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,15,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,36,0,0,0,0,0,0,4827,0,87,0,0,0,26,53,82,105,4849,0,0,0,0,1,0,0,0,0,0,0,0,0,1927,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,49,353,12,0,0,284,0,443,0,0,0,184,35,0,0,0,0,0,0,0,0,0,170,1,0,3,0,4,0,0,0,0,11,138,64,0,0,0,0,0,0,0,0,1231,0,0,38,0,0,1,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,27,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,35,0,0,0,0,1,79,215,0,56,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,28,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1218,119,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,21,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,20,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,38,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,4,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,0,0,0,44,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,16,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,37,0,0,0,47,0,39,0,0,0,17,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,92,14,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,32,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,7,1 +49,0,0,10,0,59,136,0,176,19,113,0,0,13,29,0,1841,0,6,3,0,0,0,7,0,11,36,0,51,0,7,0,0,0,13,27801,59,6,0,0,183,0,0,0,1,0,0,5,0,0,0,0,7,1958,0,0,0,0,0,1,0,0,0,14,0,27,0,0,301564,59,2686,0,56,0,0,0,0,0,230,0,0,0,0,0,9,357,35537,0,0,13,0,0,1,41,0,1613,120,9,1,0,2,0,2497,0,21,915,0,61683,0,0,0,0,5,20,2,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,1,0,0,0,29,0,0,0,0,0,0,0,21,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,14,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,120,12,12,12,0,0,0,22197,0,107,0,0,0,46,85,1134,11889,22174,0,0,0,0,1,0,6,0,0,0,0,0,0,25164,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,205,43,581,10,0,0,738,0,507,0,0,0,528,28,0,0,0,0,0,0,0,0,0,2314,1,0,0,0,10,0,0,0,0,8,315,170,0,0,1107,0,0,0,0,0,13616,1,0,10336,103,0,1,1,0,0,0,0,9,0,0,0,1,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,103,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,163,0,0,0,4,1,72,1022,0,93,12,0,0,0,0,0,252,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,27,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8786,265,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,558,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,50,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,268,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,63,0,56,0,0,0,4,10,32,174,72,0,0,0,0,1,0,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,114,3,0,0,114,0,204,0,0,0,40,7,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,57,0,0,54,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,124,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,106,23,1 +6,0,0,6,2,44,7,8,51,0,11,0,0,2,3,1,375,0,7,6,0,2,4,7,0,10,0,0,13,0,14,0,0,2,10,929,46,51,0,0,52,0,1,0,1,0,0,2,0,0,0,0,14,252,0,0,0,0,0,1,0,0,0,0,0,6,0,0,7033,44,655,0,24,0,0,0,0,0,22,6,0,0,0,0,10,22,1565,0,8,10,2,0,1,9,0,225,25,5,0,0,2,2,148,0,1,0,0,1455,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,0,0,0,469,0,72,0,0,0,26,22,259,484,486,0,0,0,0,1,0,3,0,0,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,13,361,8,0,0,386,0,641,0,0,0,178,32,0,0,0,0,0,0,0,0,0,457,1,0,0,0,19,0,0,0,0,10,143,75,0,0,45,0,0,0,0,0,1128,1,0,1114,6,0,1,1,1,0,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,6,374,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,36,0,0,0,8,17,56,212,0,25,12,0,1,0,0,0,278,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,4,0,3,753,58,1 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,0,0,0,166,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,9,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,113,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,22,0,0,0,0,3,24,7,31,0,0,0,0,1,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,41,0,0,0,85,0,166,0,0,0,55,4,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,93,49,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,125,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,9,1 +7389,0,0,6,2,27,50,2,87,5,9,0,0,0,17,0,120,0,10,1,0,0,0,1,0,1,0,0,98,0,1,0,0,2,11,0,29,169,0,0,63,0,0,0,1,0,0,5,0,0,0,0,1,179,0,0,0,0,0,1,0,0,0,0,0,15,0,0,72759,27,331,0,100,0,0,0,0,0,19,0,0,0,0,1,1,8,99,0,2,11,2,0,3,7,0,253,15,6,0,0,6,2,230,0,11,0,0,143821,0,0,0,0,22140,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,7384,0,0,0,0,0,14760,0,7382,0,0,0,0,0,0,7394,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7387,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,119,0,86,0,0,0,1,4,57,41001,133,0,0,0,0,1,0,0,0,0,0,0,0,0,124030,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,224,36,826,8,0,0,496,0,1114,0,2,0,175,181,0,0,0,0,0,0,0,0,0,293,1,0,0,0,2,0,0,0,0,3,143,49,0,0,34,0,0,0,0,0,559,0,0,72,0,0,1,0,0,0,0,0,10,0,0,0,3,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,24,1,1,1,0,98,0,0,0,0,17,40,282,0,100,0,0,0,0,0,0,110,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,5,447,186,1 +4,0,0,0,0,12,2,0,4,0,1,0,0,0,3,0,10,0,6,2,0,0,0,0,0,0,0,0,1,0,2,0,0,0,3,0,12,6,0,0,8,0,0,0,1,0,0,1,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,0,0,0,152,12,24,0,3,0,0,0,0,0,2,0,0,0,0,0,1,3,4,0,0,3,0,0,0,0,0,11,0,0,0,0,2,0,12,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,19,0,18,0,0,0,2,4,27,11,28,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,48,1,0,0,93,0,134,0,0,0,59,3,0,0,0,0,0,0,0,0,0,26,1,0,0,0,2,0,0,0,0,2,95,49,0,0,0,0,0,0,0,0,19,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,15,127,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,4,1 +6,0,0,8,0,29,6,0,24,2,16,0,0,0,12,0,17,0,7,2,0,0,0,2,0,0,0,0,3,0,4,0,0,0,20,0,29,6,0,0,90,0,0,0,1,0,0,2,0,0,0,0,3,38,0,0,0,0,0,1,0,0,0,0,0,10,0,0,308,29,87,0,7,0,0,0,0,0,7,0,0,0,0,0,3,9,46,0,0,20,0,0,2,16,0,159,30,1,0,0,2,0,117,0,5,0,0,456,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,7,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,58,0,55,0,0,0,6,5,57,142,71,0,0,0,0,1,0,0,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,8,41,153,10,0,0,151,0,196,0,0,0,98,5,0,0,0,0,0,0,0,0,0,82,1,0,0,0,4,0,0,0,0,1,111,57,0,0,58,0,0,0,0,0,61,0,0,19,0,0,1,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,9,0,0,0,0,1,49,88,0,7,0,0,0,0,0,0,89,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,88,54,1 +2657,0,0,4,0,44,3,0,26,4,3,0,0,0,11,1,96,0,6,2,0,0,0,2,0,0,9,0,98,0,5,0,0,0,22,0,44,6,0,0,54,0,0,0,1,0,0,4,1,0,0,0,4,210,0,0,0,0,0,1,0,0,0,10,0,12,0,0,28362,44,268,0,103,0,0,0,0,0,18,0,0,0,0,0,3,8,909,0,0,22,0,0,0,0,0,117,0,8,0,0,2,0,214,0,9,0,0,53174,0,0,0,0,7931,0,0,0,12,0,0,1,0,0,0,3,0,0,0,0,0,0,1,2,0,0,0,2655,0,0,0,0,0,5284,0,2655,0,0,0,0,0,0,2671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,2653,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,650,0,115,0,0,0,8,17,98,14826,641,0,0,0,0,1,0,0,0,0,0,0,0,0,45138,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,14,497,4,0,0,216,0,408,0,0,0,110,126,0,0,0,0,0,0,0,0,0,146,1,0,2,0,4,0,0,0,0,2,130,28,0,0,0,0,0,0,0,0,458,0,0,83,0,0,1,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,21,21,0,0,5,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,103,0,0,0,0,17,66,152,0,112,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,247,204,1 +3,0,0,10,0,56,9,0,49,7,11,0,0,6,23,1,908,0,7,2,0,0,0,8,0,11,0,0,11,0,5,0,0,0,17,2350,56,6,0,0,118,0,0,0,1,0,0,7,0,0,0,0,5,1267,0,0,0,0,0,1,0,0,0,0,0,20,0,0,18924,56,1075,0,12,0,0,0,0,0,45,0,0,0,0,0,9,44,3790,0,0,17,0,0,0,0,0,236,20,11,0,0,2,0,1016,0,15,16,0,2654,0,0,0,0,13,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,48,12,12,12,0,0,0,1969,0,127,0,0,0,10,12,309,1532,1940,0,0,0,0,1,0,3,0,0,0,0,0,0,2098,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,84,50,453,12,0,0,792,0,560,0,0,0,437,26,0,0,0,0,0,0,0,0,0,1014,1,0,0,0,10,0,0,0,0,4,165,470,0,0,18,0,0,0,0,0,3072,1,0,1831,10,0,1,1,0,0,0,0,16,0,0,0,2,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,10,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,21,0,0,0,0,1,73,2447,0,13,14,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1700,1407,1 +4,0,0,3,4,21,2,4,45,0,7,0,0,0,3,0,47,0,6,9,0,8,0,1,0,0,0,0,2,0,1,0,0,4,10,0,25,6,0,0,25,0,0,0,1,0,0,1,0,0,0,0,0,71,0,0,0,0,0,1,4,0,0,2,0,3,0,0,640,21,313,0,3,0,0,0,0,0,6,12,0,0,0,0,1,3,114,0,4,10,4,0,0,0,0,17,0,2,0,0,2,4,30,0,1,0,0,435,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,109,0,84,0,0,0,0,3,45,38,143,0,0,0,0,1,0,0,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,248,7,0,0,328,0,310,0,0,0,166,12,0,0,0,0,0,0,0,0,0,110,1,0,0,0,18,0,0,0,0,1,103,97,0,0,0,0,0,0,0,0,99,0,0,32,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,2,0,0,0,0,33,35,301,0,3,0,0,0,0,0,0,89,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,8,0,2,178,42,1 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,12,6,0,0,5,0,0,0,1,0,0,4,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2066,12,66,0,1,0,0,0,0,0,21,0,0,0,0,0,1,7,450,0,0,1,0,0,0,0,0,13,0,4,0,0,2,0,14,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,9,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,292,0,98,0,0,0,0,3,31,23,297,0,0,0,0,1,0,0,0,0,0,0,0,0,744,0,0,0,0,0,0,0,0,0,0,0,0,4,0,7,0,0,0,0,0,0,8,3,132,2,0,0,148,0,139,0,0,0,79,8,0,0,0,0,0,0,10,0,0,41,1,0,0,0,2,0,0,0,0,0,114,40,0,0,0,0,0,0,0,0,153,0,0,442,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,119,0,1,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,406,34,1 +3,0,0,6,0,46,81,0,33,0,80,0,0,7,5,0,71,0,6,2,0,0,0,8,0,11,3,0,19,0,2,0,0,0,8,1134,46,6,0,0,47,0,0,0,1,0,0,4,1,0,0,0,2,1647,0,0,0,0,0,1,0,0,0,0,0,4,0,0,41263,46,530,0,17,0,0,0,0,0,177,0,0,0,0,0,9,297,6744,0,0,8,0,0,0,0,0,971,25,9,0,0,2,0,285,0,1,787,0,7193,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,1097,0,137,0,0,0,14,21,606,3455,1075,0,0,0,0,1,0,4,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,108,17,556,6,0,0,497,0,290,0,0,0,344,90,0,0,0,0,0,0,0,0,0,283,1,0,5,0,10,0,0,0,0,2,176,81,0,0,732,0,0,0,0,0,3940,1,0,423,82,0,1,1,0,0,0,0,19,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,82,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,56,0,0,0,0,1,54,393,0,21,14,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2803,167,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,7,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,92,0,0,0,0,0,1,0,0,0,0,0,2,0,0,880,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,42,0,0,7,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,332,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,56,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,122,3,0,0,114,0,309,0,0,0,49,16,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,52,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,24,101,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,98,24,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,1,0,0,0,0,0,0,0,0,31,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,30,0,0,0,0,3,21,5,21,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,40,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,4,1 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,0,0,0,163,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,8,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,99,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,22,0,0,0,0,3,24,7,31,0,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,42,0,0,0,85,0,167,0,0,0,55,3,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,93,49,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,125,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,8,1 +4,0,0,10,0,42,8,0,46,0,6,0,0,6,5,0,707,0,6,4,0,0,0,9,0,11,0,0,9,0,3,0,0,0,3,2222,42,36,0,0,47,0,0,0,1,0,0,1,0,0,0,0,3,267,0,0,0,0,0,1,0,0,0,0,0,2,0,0,10619,42,780,0,8,0,0,0,0,0,13,0,0,0,0,0,12,33,1970,0,0,3,0,0,0,0,0,223,20,1,0,0,2,0,773,0,0,12,0,2107,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,12,12,12,0,0,0,738,0,50,0,0,0,6,9,293,845,718,0,0,0,0,1,0,3,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,89,27,241,15,0,0,247,0,337,0,0,0,79,6,0,0,0,0,0,0,0,0,0,784,1,0,0,0,13,0,0,0,0,3,133,11,0,0,16,0,0,0,0,0,2135,1,0,33,9,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,15,0,0,0,4,1,45,48,0,9,14,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,643,86,1 +0,0,0,0,0,11,2,0,4,0,1,0,0,0,2,0,10,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,9,0,0,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,0,0,0,43,11,22,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,4,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,9,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,18,0,19,0,0,0,0,3,25,6,27,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,0,0,0,52,0,94,0,0,0,19,0,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,1,93,12,0,0,0,0,0,0,0,0,18,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,30,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,1 +3,0,0,4,0,17,3,0,9,0,4,0,0,0,6,1,20,0,7,1,0,0,0,1,0,0,3,0,3,0,6,1,0,0,7,0,17,6,0,0,21,0,0,0,1,0,0,1,0,0,0,0,6,50,0,0,0,0,0,1,0,0,0,0,0,6,0,0,465,17,56,0,10,0,0,0,0,0,6,0,0,0,0,0,1,3,44,0,0,7,0,0,0,0,0,18,0,1,0,0,2,0,47,0,4,0,0,284,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,55,0,48,0,0,0,12,14,35,60,61,0,0,0,0,1,0,0,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,9,127,4,0,0,141,0,230,0,0,0,83,13,0,0,0,0,0,0,0,0,0,50,1,0,0,0,2,0,0,0,0,3,113,41,0,0,0,0,0,0,0,0,62,0,0,49,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,16,0,0,0,8,1,24,103,0,13,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,97,22,1 +2,0,0,3,2,18,2,2,33,0,5,0,0,0,3,0,31,0,6,5,0,4,0,1,0,0,0,0,4,0,1,0,0,2,7,0,20,6,0,0,20,0,0,0,1,0,0,1,0,0,0,0,0,81,0,0,0,0,0,1,2,0,0,1,0,3,0,0,283,18,185,0,5,0,0,0,0,0,6,6,0,0,0,0,1,3,22,0,2,7,2,0,0,0,0,15,0,2,0,0,2,2,26,0,1,0,0,225,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6,0,0,0,0,0,0,40,0,37,0,0,0,0,3,40,18,48,0,0,0,0,1,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,171,5,0,0,196,0,240,0,0,0,78,4,0,0,0,0,0,0,0,0,0,80,1,0,0,0,10,0,0,0,0,1,100,34,0,0,0,0,0,0,0,0,55,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,4,0,0,0,0,17,27,168,0,5,0,0,0,0,0,0,33,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,69,50,1 +9,0,0,11,0,56,39,0,47,5,46,0,0,7,35,1,819,0,7,2,0,0,0,8,0,11,0,0,37,0,25,0,0,0,15,4192,56,6,0,0,200,0,0,0,1,0,0,2,0,0,0,0,26,384,0,0,0,0,0,1,0,0,0,15,0,17,0,0,26012,56,1110,0,60,0,0,0,0,0,57,0,0,0,0,0,9,137,4250,0,0,15,0,0,0,0,0,511,25,2,0,0,2,0,1062,0,11,138,0,3992,0,0,0,0,36,0,1,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,4,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,40,12,12,12,0,0,0,1581,0,61,0,0,0,62,65,430,1611,1568,0,0,0,0,1,0,3,0,0,0,0,0,0,1430,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,106,135,367,13,0,0,361,0,448,0,0,0,178,14,0,0,0,0,0,0,0,0,0,1001,1,0,0,0,10,0,0,0,0,25,164,8,0,0,169,0,0,0,0,0,3496,1,0,770,27,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,27,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,65,1,1,1,0,121,0,0,0,6,1,71,426,0,61,12,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1552,43,1 +0,0,0,0,0,8,18,0,83,0,17,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,16,0,0,13,8,130,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,80,0,597,0,0,0,0,2,0,406,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,12,0,0,0,0,3,21,518,20,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,48,0,50,0,0,0,18,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,2,0,0,0,0,0,90,241,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,203,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,1,1 +0,0,0,3,0,16,46,0,256,0,57,0,0,0,2,0,15,0,6,1,0,0,0,1,0,14,0,0,0,0,1,0,0,0,6,0,16,6,0,0,475,0,0,0,1,0,0,2,0,0,0,0,14,246,0,0,0,0,0,1,0,0,0,0,0,48,0,0,4083,16,403,0,15,0,0,0,0,0,11,0,0,0,0,0,1,5,860,0,0,6,0,0,2,242,0,1867,45,3,0,0,2,0,1222,0,0,0,0,530,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,476,0,50,0,0,0,14,17,32,2338,488,0,0,0,0,1,0,0,0,0,0,0,0,0,1020,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,8,3,133,3,0,0,186,0,218,0,0,0,121,5,0,0,0,0,0,0,0,0,0,382,1,0,0,0,2,0,0,0,0,15,98,660,0,0,105,0,0,0,0,0,444,0,0,656,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,22,222,0,15,0,0,0,0,0,0,594,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,637,145,1 +3,0,0,8,0,54,82,0,32,1,81,0,0,7,12,1,68,0,7,2,0,0,0,8,0,11,0,0,21,0,7,0,0,0,9,1134,54,6,0,0,72,0,0,0,1,0,0,2,0,0,0,0,7,1739,0,0,0,0,0,1,0,0,0,0,0,12,0,0,48631,54,519,0,23,0,0,0,0,0,166,0,0,0,0,0,9,253,8530,0,0,9,0,0,0,0,0,910,25,3,0,0,2,0,293,0,7,661,0,8981,0,0,0,0,4,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,2365,0,90,0,0,0,24,23,635,3186,2341,0,0,0,0,1,0,3,0,0,0,0,0,0,3263,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,108,25,292,8,0,0,449,0,339,0,0,0,280,19,0,0,0,0,0,0,0,0,0,290,1,0,0,0,10,0,0,0,0,3,161,45,0,0,669,0,0,0,0,0,4529,1,0,2747,82,0,1,1,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,82,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,65,0,0,0,8,1,63,275,0,25,14,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3964,59,1 +66,0,0,10,0,64,157,0,147,25,144,0,0,18,30,0,1749,0,6,2,0,0,0,8,0,23,48,0,64,0,7,0,0,0,14,20638,64,6,0,0,195,0,0,0,1,0,0,5,0,0,0,0,7,2234,0,0,0,0,0,1,0,0,0,13,0,27,0,0,133260,64,2912,0,81,0,0,0,0,0,357,0,0,0,0,0,9,487,19325,0,0,14,0,0,1,41,0,1959,140,9,1,0,2,0,2498,0,21,1146,0,17229,0,0,0,0,5,34,2,0,0,0,0,1,0,0,0,19,0,0,0,0,0,0,0,1,0,0,0,37,0,0,0,0,0,0,0,24,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,18,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,118,12,12,12,0,0,0,4889,0,213,0,0,0,52,114,1277,7226,4865,0,0,0,0,1,0,6,0,0,0,0,0,0,3912,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,1166,61,678,10,0,0,981,0,500,4,0,0,755,34,0,0,0,0,0,0,0,0,0,2251,1,0,0,0,10,0,0,0,0,8,392,132,0,0,1344,0,0,0,0,0,13383,1,0,1390,120,0,1,9,0,0,0,0,9,0,0,0,1,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,120,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,68,1,1,1,0,239,0,0,0,4,1,78,1191,0,130,12,0,0,0,0,0,288,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,35,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8658,1349,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,77,0,0,0,0,0,1,0,0,0,0,0,2,0,0,667,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,43,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,231,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,60,0,57,0,0,0,4,10,36,174,69,0,0,0,0,1,0,0,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,111,3,0,0,117,0,256,0,0,0,40,7,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,52,0,0,38,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,100,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,103,23,1 +2,0,0,4,4,19,2,4,59,3,7,0,0,0,8,0,48,0,6,9,0,8,0,1,0,0,0,0,2,0,1,0,0,4,8,0,23,6,0,0,24,0,0,0,1,0,0,2,0,0,0,0,0,71,0,0,0,0,0,1,4,0,0,0,0,9,0,0,7760,19,329,0,3,0,0,0,0,0,7,12,0,0,0,0,1,5,165,0,4,8,4,0,0,0,0,18,0,1,0,0,2,4,58,0,5,0,0,2383,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,116,0,64,0,0,0,0,3,43,22,133,0,0,0,0,1,0,0,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,8,296,8,0,0,289,0,385,0,0,0,119,13,0,0,0,0,0,0,0,0,0,130,1,0,0,0,18,0,0,0,0,1,101,50,0,0,0,0,0,0,0,0,326,0,0,140,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,2,0,0,0,0,33,31,264,0,3,0,0,0,0,0,0,43,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,3,0,0,0,0,0,0,0,0,0,0,0,8,0,1,395,45,1 +1,0,0,0,0,18,2,0,16,0,1,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,8,0,18,6,0,0,21,0,0,0,1,0,0,3,0,0,0,0,0,82,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1269,18,54,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,248,0,0,8,0,0,0,0,0,11,0,4,0,0,2,0,17,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,221,0,75,0,0,0,0,3,34,7,229,0,0,0,0,1,0,0,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,8,3,106,0,0,0,145,0,196,0,0,0,78,5,0,0,0,0,0,0,5,0,0,42,1,0,0,0,2,0,0,0,0,0,100,43,0,0,0,0,0,0,0,0,71,0,0,159,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,26,143,0,1,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,204,14,1 +4,0,0,7,0,27,3,0,16,6,7,0,0,0,17,1,17,0,7,1,0,0,0,1,0,0,0,0,4,0,5,0,0,0,13,0,27,558,0,0,63,0,4,0,1,0,0,4,1,0,0,0,4,79,0,0,0,0,0,1,0,0,0,0,0,15,0,0,19025,27,100,0,9,0,0,0,0,0,22,0,0,0,0,0,1,7,1743,0,0,13,0,0,0,0,0,31,0,8,0,0,2,0,204,0,11,0,0,10692,0,0,0,0,19,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,847,0,241,0,0,0,8,11,53,11945,845,0,0,0,0,1,0,0,0,0,0,0,0,0,2198,0,0,0,0,0,0,0,0,0,1,0,0,4,0,0,0,0,0,0,0,0,12,30,1055,9,0,0,335,0,302,0,0,0,255,212,0,0,0,0,0,0,0,0,0,68,1,0,3,0,2,0,0,0,0,5,114,193,0,0,0,0,0,0,0,0,1049,0,0,2495,0,0,1,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,12,0,0,0,2,1,40,443,0,9,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,819,525,1 +2,0,0,3,0,13,2,0,18,0,2,0,0,0,2,0,21,0,6,2,0,0,0,1,0,0,3,0,1,0,2,0,0,0,2,0,13,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,1,64,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1264,13,51,0,3,0,0,0,0,0,6,0,0,0,0,0,2,4,282,0,0,2,0,0,0,0,0,10,0,1,0,0,2,0,35,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4,0,0,0,0,0,0,177,0,40,0,0,0,2,6,33,11,181,0,0,0,0,1,0,0,0,0,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,98,3,0,0,118,0,255,0,0,0,47,10,0,0,0,0,0,0,4,0,0,51,1,0,0,0,3,0,0,0,0,1,95,32,0,0,0,0,0,0,0,0,109,0,0,270,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,15,231,0,6,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,196,84,1 +2,0,0,10,0,50,9,0,48,3,12,0,0,6,15,1,816,0,7,1,0,0,0,9,0,12,0,0,16,0,7,0,0,0,12,2273,50,6,0,0,83,0,2,0,1,0,0,2,0,0,0,0,7,320,0,0,0,0,0,1,0,0,0,0,0,12,0,0,13057,50,936,0,20,0,0,0,0,0,20,0,0,0,0,0,9,34,2901,0,0,12,0,0,0,0,0,249,20,3,0,0,2,0,913,0,7,11,0,2095,0,0,0,0,12,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,46,12,12,12,0,0,0,810,0,60,0,0,0,15,17,324,595,785,0,0,0,0,1,0,4,0,0,0,0,0,0,419,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,48,290,12,0,0,335,0,396,0,0,0,170,12,0,0,0,0,0,0,0,0,0,914,1,0,0,0,10,0,0,0,0,7,149,58,0,0,20,0,0,0,0,0,2724,1,0,913,10,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,10,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,34,0,0,0,8,1,62,603,0,21,14,0,1,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1082,84,1 +7,0,0,11,0,53,9,0,30,4,9,0,0,6,20,1,66,0,7,3,0,0,0,7,0,10,0,0,11,0,7,0,0,0,16,4932,53,35,0,0,94,0,0,0,1,0,0,5,1,0,0,0,7,390,0,0,0,0,0,1,0,0,0,4,0,17,0,0,16939,53,192,0,15,0,0,0,0,0,41,0,0,0,0,0,9,26,2444,0,0,16,0,0,0,0,0,227,20,13,0,0,2,0,163,0,12,11,0,2548,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,12,12,12,0,0,0,1365,0,87,0,0,0,13,11,291,424,1336,0,0,0,0,1,0,5,0,0,0,0,0,0,3189,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,88,42,295,13,0,0,378,0,574,0,0,0,209,8,0,0,0,0,0,0,0,0,0,148,1,0,3,0,10,0,0,0,0,6,149,76,0,0,11,0,3,0,0,0,832,1,0,251,6,0,1,1,0,0,0,0,18,0,0,0,0,0,0,0,0,0,6,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,23,0,0,0,4,1,69,400,0,16,12,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,4,647,54,1 +0,0,0,0,0,9,3,0,20,0,2,0,0,0,2,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,17,0,0,0,1,0,0,1,0,0,0,0,0,59,0,0,0,0,0,1,0,0,0,0,0,0,0,0,133,9,43,0,1,0,0,0,0,0,5,0,0,0,0,0,2,4,32,0,0,0,0,0,0,5,0,46,0,1,0,0,2,0,39,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,48,0,0,0,0,3,25,36,51,0,0,0,0,1,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,8,3,65,1,0,0,79,0,122,0,0,0,17,0,0,0,0,0,0,0,0,0,0,47,1,0,0,0,3,0,0,0,0,0,91,22,0,0,0,0,0,0,0,0,29,0,0,17,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,9,104,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,99,12,1 +4,0,0,10,0,41,8,0,45,0,6,0,0,6,5,0,652,0,6,3,0,0,0,10,0,11,0,0,9,0,3,0,0,0,3,2316,41,36,0,0,47,0,0,0,1,0,0,1,0,0,0,0,3,250,0,0,0,0,0,1,0,0,0,0,0,2,0,0,9849,41,724,0,8,0,0,0,0,0,13,0,0,0,0,0,12,33,1800,0,0,3,0,0,0,0,0,223,20,1,0,0,2,0,718,0,0,12,0,1915,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,36,12,12,12,0,0,0,657,0,50,0,0,0,6,9,286,840,638,0,0,0,0,1,0,3,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,89,27,242,15,0,0,249,0,338,0,0,0,81,6,0,0,0,0,0,0,0,0,0,728,1,0,0,0,13,0,0,0,0,3,133,11,0,0,16,0,0,0,0,0,1998,1,0,30,9,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,15,0,0,0,4,1,44,48,0,9,14,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,654,86,1 +120,0,0,4,0,30,3,0,10,28,3,0,0,0,38,0,16,0,7,1,0,0,0,2,0,0,0,0,16,0,5,0,0,0,16,0,30,6,0,0,115,0,0,0,1,0,0,1,0,0,0,0,4,41,0,0,0,0,0,1,0,0,0,37,0,39,0,0,558,30,91,0,21,0,0,0,0,0,6,0,0,0,0,0,2,4,54,0,0,16,0,0,0,0,0,41,0,2,0,0,2,0,103,0,36,0,0,490,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,63,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,28,0,0,0,0,0,0,0,0,5,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,60,0,51,0,0,0,8,11,53,39,68,0,0,0,0,1,0,0,0,0,0,0,0,0,655,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,69,170,4,0,0,151,0,181,0,0,0,77,7,0,0,0,0,0,0,0,0,0,77,1,0,0,0,3,0,0,0,0,5,116,17,0,0,0,0,0,0,0,0,65,0,0,68,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,24,0,0,0,0,1,46,94,0,21,0,0,0,0,0,0,78,14,0,0,0,0,0,0,0,0,0,0,0,0,0,1,28,0,0,0,0,0,0,0,0,0,0,0,0,0,1,136,86,1 +9,0,0,5,0,34,3,0,36,60,6,0,0,0,70,0,19,0,7,1,0,0,0,3,0,14,0,0,6,0,5,0,0,0,18,0,34,6,0,0,230,0,0,0,1,0,0,47,0,0,0,0,18,315,0,0,0,0,0,1,0,0,0,54,0,73,0,0,38552,34,346,0,25,0,0,0,0,0,118,0,0,0,0,1,3,65,7248,0,0,18,0,0,1,11,0,201,10,64,0,0,2,0,240,0,67,0,0,1355,0,0,0,0,17,0,2,0,0,0,0,1,0,0,0,362,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,9,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,4,0,0,0,0,386,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,5026,0,252,0,0,0,22,23,77,270,5057,0,0,0,0,1,0,0,0,0,0,0,0,0,8214,0,0,0,0,0,0,0,0,0,0,0,0,47,0,4,0,0,0,0,0,0,8,74,375,5,0,0,418,0,675,0,0,0,328,33,0,0,0,0,0,0,0,0,0,141,1,0,0,0,4,0,0,0,0,17,133,203,0,0,17,0,0,0,0,0,1389,0,0,9363,0,0,1,0,0,0,0,0,76,0,0,0,14,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,14,0,0,0,0,1,52,390,0,25,0,0,0,0,0,0,290,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,62,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3063,425,1 +8,0,0,4,0,47,6,0,36,8,3,0,0,2,13,0,565,0,6,3,0,0,0,6,0,10,0,0,8,0,5,0,0,0,10,898,47,6,0,0,64,0,0,0,1,0,0,4,0,0,0,0,5,195,0,0,0,0,0,1,0,0,0,0,0,14,0,0,52243,47,659,0,10,0,0,0,0,0,25,0,0,0,0,0,8,21,8850,0,0,10,0,0,0,0,0,112,5,8,0,0,2,0,611,0,11,0,0,1446,0,0,0,0,18,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,10,0,6,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,12,12,12,0,0,0,8179,0,103,0,0,0,8,11,245,369,8158,0,0,0,0,1,0,3,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,252,4,0,0,269,0,369,0,0,0,101,10,0,0,0,0,0,0,0,0,0,631,1,0,0,0,9,0,0,0,0,5,130,27,0,0,0,0,0,0,0,0,1580,1,0,150,6,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,13,0,0,0,0,1,57,160,0,11,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,576,51,1 +4,0,0,2,0,16,2,0,24,0,2,0,0,0,2,0,15,0,6,2,0,0,0,1,0,0,0,0,1,0,1,0,0,0,4,0,16,6,0,0,14,0,0,0,1,0,0,5,0,0,0,0,0,118,0,1,0,0,0,1,0,0,0,0,0,1,0,0,1070,16,75,0,2,0,0,0,0,0,22,0,0,0,0,1,2,9,148,0,0,4,0,0,0,0,0,17,0,8,0,0,2,0,24,0,0,0,0,216,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,3,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,148,0,77,0,0,0,0,3,37,16,155,0,0,0,0,1,0,0,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,8,5,105,2,0,0,201,0,312,0,0,0,125,5,0,0,0,0,0,0,0,0,0,51,1,0,0,0,3,0,0,0,0,1,98,93,0,0,0,0,0,0,0,0,73,0,0,185,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,1,0,0,0,0,1,20,414,0,2,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,212,65,1 +10,0,0,3,0,21,2,0,22,2,3,0,0,0,7,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,8,0,21,6,0,0,26,0,0,0,1,0,0,5,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,7,0,0,791,21,79,0,3,0,0,0,0,0,20,0,0,0,0,2,1,10,113,0,0,8,0,0,0,0,0,17,0,8,0,0,2,0,33,0,5,0,0,289,0,0,0,0,8,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,5,0,3,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,129,0,76,0,0,0,0,3,43,22,139,0,0,0,0,1,0,0,0,0,0,0,0,0,396,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,8,136,3,0,0,141,0,215,0,0,0,66,5,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,1,103,23,0,0,0,0,0,0,0,0,52,0,0,99,0,0,1,0,0,0,0,0,11,0,0,0,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,2,0,0,0,0,1,29,134,0,3,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,6,157,72,1 +7,0,0,4,0,46,6,0,36,8,3,0,0,2,13,0,566,0,6,3,0,0,0,6,0,10,0,0,8,0,4,0,0,0,9,898,46,6,0,0,58,0,0,0,1,0,0,4,0,0,0,0,4,204,0,0,0,0,0,1,0,0,0,0,0,14,0,0,20263,46,659,0,9,0,0,0,0,0,25,0,0,0,0,0,8,21,3538,0,0,9,0,0,0,0,0,108,5,9,0,0,2,0,611,0,11,0,0,1158,0,0,0,0,13,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,8,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,12,12,12,0,0,0,2899,0,106,0,0,0,6,9,246,358,2871,0,0,0,0,1,0,3,0,0,0,0,0,0,517,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,254,4,0,0,266,0,325,0,0,0,98,17,0,0,0,0,0,0,0,0,0,632,1,0,0,0,9,0,0,0,0,4,129,27,0,0,0,0,0,0,0,0,1561,1,0,159,6,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,11,0,0,0,0,1,55,153,0,10,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,577,44,1 +6,0,0,9,0,40,5,0,28,18,9,0,0,0,35,2,25,0,7,2,0,0,0,2,0,0,6,0,6,0,6,1,0,0,29,0,40,6,0,0,112,0,0,0,1,0,0,5,0,0,0,0,6,160,0,0,0,0,0,1,0,0,0,15,0,32,0,0,10781,40,150,0,13,0,0,0,0,0,21,0,0,0,0,0,3,10,2740,0,0,29,0,0,0,0,0,39,0,7,0,0,2,0,151,0,28,0,0,1122,0,0,0,0,14,0,0,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,1769,0,127,0,0,0,12,19,71,927,1767,0,0,0,0,1,0,0,0,0,0,0,0,0,3362,0,0,0,0,0,0,0,0,0,0,0,0,539,0,0,0,0,0,0,0,0,8,47,312,12,0,0,478,0,425,0,0,0,404,34,0,0,0,0,0,0,0,0,0,111,1,0,0,0,4,0,0,0,0,5,135,285,0,0,0,0,0,0,0,0,605,0,0,2217,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,20,0,0,0,0,1,69,1308,0,19,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1259,699,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,23,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,18,0,0,0,0,3,21,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,39,0,48,0,0,0,9,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,8,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,16,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,4,1 +2,0,0,6,0,44,7,0,41,0,9,0,0,2,5,1,514,0,7,3,0,0,0,6,0,10,0,0,7,0,5,0,0,0,10,1027,44,6,0,0,49,0,0,0,1,0,0,6,1,0,0,0,5,207,0,0,0,0,0,1,0,0,0,0,0,8,0,0,8326,44,624,0,9,0,0,0,0,0,32,0,0,0,0,0,8,23,1441,0,0,10,0,0,1,9,0,189,25,9,0,0,2,0,583,0,3,0,0,1655,0,0,0,0,3,0,3,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,650,0,115,0,0,0,8,9,241,489,633,0,0,0,0,1,0,3,0,0,0,0,0,0,999,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,15,262,6,0,0,273,0,371,0,0,0,119,13,0,0,0,0,0,0,0,0,0,586,1,0,3,0,9,0,0,0,0,3,131,52,0,0,45,0,0,0,0,0,1556,1,0,260,6,0,1,1,0,0,0,0,16,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,12,0,0,0,0,1,54,218,0,10,12,0,0,0,0,0,75,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7,673,99,1 +2,0,0,5,0,35,5,0,20,0,4,0,0,2,7,1,18,0,7,3,0,0,0,5,0,8,0,0,6,0,11,0,0,0,7,0,35,6,0,0,46,0,0,0,1,0,0,1,0,0,0,0,11,109,0,0,0,0,0,1,0,0,0,0,0,8,0,0,794,35,67,0,16,0,0,0,0,0,8,0,0,0,0,0,7,13,103,0,0,7,0,0,0,0,0,100,5,2,0,0,2,0,57,0,5,0,0,522,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,77,0,45,0,0,0,20,17,196,52,75,0,0,0,0,1,0,3,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,14,1,0,0,0,0,0,1,0,32,17,153,5,0,0,175,0,287,0,0,0,62,14,0,0,0,0,0,0,0,0,0,64,1,0,0,0,8,0,0,0,0,7,121,30,0,0,0,0,0,0,0,0,85,0,0,57,2,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,25,0,0,0,12,1,42,137,0,17,8,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,151,29,1 +8,0,0,5,1,26,52,1,156,3,36,0,5,0,8,0,73,0,8,1,0,0,0,1,0,0,0,0,2,0,1,0,0,1,13,0,27,102,0,0,253,0,0,0,1,0,0,4,1,0,0,0,0,93,0,0,0,0,0,1,0,0,0,0,0,26,0,0,1543,26,301,0,3,0,0,0,0,0,23,0,0,0,0,0,1,7,52,0,1,13,1,0,10,105,0,856,65,7,0,0,14,1,566,0,5,0,0,707,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,103,0,0,0,0,3,64,747,102,0,0,0,0,1,0,0,0,0,0,0,0,0,848,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,145,67,344,6,0,0,380,0,570,0,1,0,162,60,0,0,0,0,0,0,0,0,0,338,1,0,2,0,2,0,0,0,0,1,122,309,0,0,127,0,0,0,0,0,183,0,0,39,0,0,1,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,23,1,1,1,0,2,0,0,0,0,9,40,323,0,3,0,0,0,0,0,0,316,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,3,200,220,1 +5,0,0,4,6,30,3,6,93,2,10,0,0,0,11,1,63,0,7,13,0,12,0,1,0,0,0,0,6,0,10,0,0,6,12,0,36,6,0,0,62,0,0,0,1,0,0,5,0,0,0,0,10,132,0,0,0,0,0,1,6,0,0,0,0,11,0,0,1175,30,551,0,17,0,0,0,0,0,21,18,0,0,0,0,1,8,154,0,6,12,6,0,0,0,0,55,0,8,0,0,2,6,81,0,9,0,0,469,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,157,0,108,0,0,0,20,19,77,58,169,0,0,0,0,1,0,0,0,0,0,0,0,0,462,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,14,361,10,0,0,402,0,382,0,0,0,158,17,0,0,0,0,0,0,0,0,0,188,1,0,0,0,26,0,0,0,0,7,116,57,0,0,0,0,0,0,0,0,154,0,0,148,0,0,1,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,26,0,0,0,8,49,48,324,0,16,0,0,0,0,0,0,100,6,0,0,0,0,0,0,0,0,0,0,0,6,0,1,2,0,0,0,0,0,0,0,0,0,0,0,12,0,3,270,62,1 +3,0,0,12,0,25,3,0,26,10,7,0,0,0,35,2,29,0,7,1,0,0,0,1,0,1,3,0,5,0,7,1,0,0,14,0,25,6,0,0,111,0,9,0,1,0,0,11,0,0,0,0,7,186,0,0,0,0,0,1,0,0,0,0,0,20,0,0,8742,25,179,0,14,0,0,0,0,0,41,0,0,0,0,0,1,16,2435,0,0,14,0,0,0,0,0,54,0,11,0,0,2,0,141,0,16,0,0,1426,0,0,0,0,27,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,64,0,0,0,0,0,0,1314,0,171,0,0,0,14,17,54,64,1320,0,0,0,0,1,0,0,0,0,0,0,0,0,2507,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,8,33,365,16,0,0,393,0,401,0,0,0,319,32,0,0,0,0,0,0,2,0,0,109,1,0,0,0,2,0,0,0,0,7,146,215,0,0,0,0,3,0,0,0,918,0,0,2251,0,0,1,0,1,0,0,0,21,0,0,0,3,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,368,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,21,0,0,0,0,1,39,992,0,17,0,0,1,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1777,153,1 +10,0,0,8,0,12,2,0,15,0,2,0,0,0,7,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,6,0,0,18,0,1,0,1,0,0,1,0,0,0,0,1,31,0,0,0,0,0,1,0,0,0,0,0,2,0,0,938,12,44,0,3,0,0,0,0,0,5,0,0,0,0,0,1,4,473,0,0,0,0,0,0,0,0,12,0,1,0,0,2,0,26,0,0,0,0,116,0,0,0,0,5,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,34,0,0,0,2,5,27,15,55,0,0,0,0,1,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,82,16,0,0,80,0,151,0,0,0,10,3,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,2,94,3,0,0,0,0,0,0,0,0,211,0,0,733,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,363,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,17,0,3,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,252,8,1 +4,0,0,4,0,39,38,0,16,2,4,0,0,0,7,1,15,0,7,1,0,0,0,1,0,0,0,0,11,0,5,0,0,0,26,0,39,6,0,0,66,0,0,0,1,0,0,4,0,0,0,0,4,114,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1405,39,115,0,16,0,0,0,0,0,17,0,0,0,0,0,1,7,214,0,0,26,0,0,0,0,0,30,0,8,0,0,2,0,116,0,5,0,0,1076,0,0,0,0,45,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,171,0,87,0,0,0,8,9,59,55,172,0,0,0,0,1,0,0,0,0,0,0,0,0,649,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,10,208,4,0,0,237,0,267,0,0,0,158,9,0,0,0,0,0,0,0,0,0,88,1,0,0,0,2,0,0,0,0,3,125,65,0,0,0,0,0,0,0,0,151,0,0,183,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,19,0,0,0,0,1,65,426,0,16,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,209,46,1 +9,0,0,7,0,28,3,0,17,5,6,0,0,0,15,1,30,0,7,1,0,0,0,1,0,0,9,0,7,0,10,0,0,0,16,0,28,6,0,0,63,0,0,0,1,0,0,4,0,0,0,0,9,51,0,0,0,0,0,1,0,0,0,0,0,14,0,0,862,28,96,0,17,0,0,0,0,0,9,0,0,0,0,0,1,6,130,0,0,16,0,0,0,0,0,37,0,1,0,0,2,0,111,0,10,0,0,407,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,7,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,102,0,52,0,0,0,18,21,53,40,122,0,0,0,0,1,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,25,149,9,0,0,184,0,284,0,0,0,113,10,0,0,0,0,0,0,0,0,0,79,1,0,0,0,2,0,0,0,0,6,114,54,0,0,0,0,0,0,0,0,125,0,0,126,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,22,0,0,0,0,1,44,200,0,26,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,163,40,1 +2,0,0,7,0,36,6,0,37,1,6,0,0,2,4,0,495,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,3,762,36,8,0,0,27,0,0,0,1,0,0,3,0,0,0,0,1,183,0,0,0,0,0,1,0,0,0,1,0,4,0,0,5561,36,556,0,2,0,0,0,0,0,19,0,0,0,0,0,8,19,1025,0,0,3,0,0,0,0,0,89,5,6,0,0,2,0,509,0,1,0,0,1100,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,495,0,53,0,0,0,0,3,252,323,457,0,0,0,0,1,0,3,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,16,181,7,0,0,218,0,297,0,0,0,62,8,0,0,0,0,0,0,0,0,0,556,1,0,0,0,9,0,0,0,0,1,119,24,0,0,1,0,0,0,0,0,1335,1,0,58,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,1,0,0,0,0,1,39,126,0,3,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,381,42,1 +2,0,0,5,0,38,5,0,20,2,4,0,0,2,10,1,18,0,7,3,0,0,0,5,0,8,0,0,7,0,10,0,0,0,8,0,38,6,0,0,52,0,0,0,1,0,0,1,0,0,0,0,10,110,0,0,0,0,0,1,0,0,0,0,0,11,0,0,797,38,70,0,16,0,0,0,0,0,8,0,0,0,0,0,7,13,100,0,0,8,0,0,0,0,0,97,5,2,0,0,2,0,63,0,8,0,0,650,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,10,10,0,0,0,79,0,46,0,0,0,18,15,206,45,77,0,0,0,0,1,0,3,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,32,20,164,5,0,0,183,0,278,0,0,0,64,5,0,0,0,0,0,0,0,0,0,67,1,0,0,0,8,0,0,0,0,6,124,29,0,0,0,0,0,0,0,0,94,0,0,56,2,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,24,0,0,0,8,1,46,152,0,17,8,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,160,29,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,134,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1730,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,57,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,303,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,65,0,55,0,0,0,4,10,32,174,74,0,0,0,0,1,0,0,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,115,3,0,0,114,0,499,0,0,0,40,14,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,68,0,0,63,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,119,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,112,26,1 +7,0,0,11,2,40,62,2,130,13,39,0,1,0,30,0,117,0,10,1,0,0,0,2,0,0,0,0,7,0,1,0,0,2,30,0,42,131,0,0,212,0,0,0,1,0,0,5,0,0,0,0,0,123,0,0,0,0,0,1,0,0,0,0,0,32,0,0,5311,40,346,0,8,0,0,0,0,0,24,0,0,0,0,1,2,9,1129,0,2,30,2,0,11,64,0,675,120,10,0,0,8,2,402,0,21,0,0,1320,0,0,0,0,23,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,671,0,95,0,0,0,0,3,70,1615,684,0,0,0,0,1,0,0,0,0,0,0,0,0,1717,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,227,90,511,15,0,0,551,0,828,0,2,0,247,27,0,0,0,0,0,0,0,0,0,389,1,0,0,0,3,0,0,0,0,1,178,144,0,0,232,0,2,0,0,0,782,0,0,475,0,0,1,0,0,0,0,0,11,0,0,0,2,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,38,1,1,1,0,7,0,0,0,0,17,72,208,0,8,0,0,0,0,0,0,253,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,29,0,0,0,0,0,0,0,0,0,0,0,2,0,5,884,214,1 +4,0,0,8,0,51,82,0,32,1,81,0,0,7,12,1,68,0,7,2,0,0,0,8,0,11,0,0,21,0,7,0,0,0,9,1147,51,6,0,0,72,0,0,0,1,0,0,2,0,0,0,0,7,1613,0,0,0,0,0,1,0,0,0,0,0,12,0,0,50271,51,504,0,24,0,0,0,0,0,166,0,0,0,0,0,9,281,8862,0,0,9,0,0,0,0,0,970,25,3,0,0,2,0,280,0,7,781,0,9277,0,0,0,0,4,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,2342,0,90,0,0,0,24,23,611,3379,2322,0,0,0,0,1,0,3,0,0,0,0,0,0,3274,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,108,25,284,8,0,0,428,0,326,0,0,0,262,18,0,0,0,0,0,0,0,0,0,290,1,0,0,0,10,0,0,0,0,3,155,45,0,0,729,0,0,0,0,0,4899,1,0,2734,82,0,1,1,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,82,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,65,0,0,0,8,1,60,254,0,25,14,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4311,59,1 +6052,0,0,6,1,43,29,1,47,8,21,0,0,2,31,0,68,0,9,4,0,0,0,5,0,8,0,0,87,0,6,0,0,1,9,0,44,54,0,0,58,0,0,0,1,0,0,3,0,0,0,0,6,166,0,0,0,0,0,1,0,0,0,3,0,16,0,0,62372,43,268,0,91,0,0,0,0,0,19,0,0,0,0,0,8,17,215,0,1,9,1,0,1,0,0,218,5,6,0,0,4,1,200,0,12,0,0,123994,0,0,0,0,18118,6,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,6042,0,0,0,0,0,12076,0,6039,0,0,0,0,0,0,6052,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,10,0,0,0,0,6043,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,10,10,10,0,0,0,168,0,69,0,0,0,10,12,213,33655,167,0,0,0,0,1,0,3,0,0,0,0,0,0,101826,0,0,0,0,0,0,0,0,0,1,0,0,3,1,0,0,0,0,0,1,2,139,31,1025,7,0,0,369,0,711,0,1,0,120,312,0,0,0,0,0,0,0,0,0,207,1,0,0,0,9,0,0,0,0,5,143,39,0,0,0,0,0,0,0,0,451,0,0,135,3,0,1,1,0,0,0,0,8,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,47,1,1,1,0,95,0,0,0,0,9,53,265,0,92,9,0,0,0,0,0,85,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,5,391,284,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,75,0,0,0,0,0,1,0,0,0,0,0,2,0,0,570,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,43,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,424,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,55,0,0,0,4,10,32,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,111,3,0,0,114,0,214,0,0,0,40,10,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,52,0,0,38,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,127,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,98,23,1 +2,0,0,11,1,45,31,1,67,4,10,0,0,6,17,1,716,0,9,3,0,0,0,8,0,11,3,0,9,0,6,0,0,1,8,835,46,109,0,0,86,0,0,0,1,0,0,1,0,0,0,0,6,281,0,0,0,0,0,1,0,0,0,0,0,14,0,0,28137,45,816,0,11,0,0,0,0,0,9,0,0,0,0,0,10,25,5352,0,1,8,1,0,1,0,0,257,20,2,0,0,4,1,791,0,8,1,0,2027,0,0,0,0,14,0,2,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,12,12,12,0,0,0,593,0,54,0,0,0,11,16,283,382,577,0,0,0,0,1,0,4,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,198,52,385,14,0,0,437,0,776,0,1,0,160,15,0,0,0,0,0,0,0,0,0,857,1,0,0,0,11,0,0,0,0,6,150,61,0,0,6,0,0,0,0,0,3492,1,0,25,7,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,52,1,1,1,0,17,0,0,0,2,9,54,244,0,15,14,0,0,0,0,0,103,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2094,94,1 +6,0,0,3,0,19,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,19,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,170,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2348,19,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,42,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,337,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,59,0,0,0,4,10,40,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,125,3,0,0,121,0,681,0,0,0,40,20,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,104,18,0,0,0,0,0,0,0,0,53,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,3,0,0,0,0,1,23,158,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,107,26,1 +8,0,0,11,0,66,8,0,35,6,15,0,0,2,23,0,55,0,6,3,0,0,0,5,0,8,21,0,11,0,6,4,0,0,39,0,66,6,0,0,140,0,0,0,1,0,0,6,1,0,0,0,11,117,0,0,0,0,0,1,0,0,0,2,0,23,0,0,2319,66,178,0,20,0,0,0,0,0,18,0,0,0,0,0,7,19,172,0,0,39,0,0,1,8,0,190,20,4,0,0,2,0,261,0,16,0,0,1467,0,0,0,0,23,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,10,10,10,0,0,0,133,0,93,0,0,0,20,39,225,671,134,0,0,0,0,1,0,5,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,60,278,14,0,0,267,0,521,0,0,0,157,18,0,0,0,0,0,0,0,0,0,144,1,0,2,0,8,0,0,0,0,8,148,45,0,0,29,0,1,0,0,0,185,0,0,67,3,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,3,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,33,0,0,0,0,1,105,191,0,41,9,0,1,0,0,0,139,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,2,221,131,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,65,0,0,0,0,0,1,0,0,0,0,0,2,0,0,416,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,56,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,251,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,64,0,56,0,0,0,4,10,32,174,73,0,0,0,0,1,0,0,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,107,3,0,0,114,0,186,0,0,0,40,8,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,61,0,0,58,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,94,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,112,22,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,0,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,95,0,0,0,0,0,1,0,0,0,0,0,2,0,0,989,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,42,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,457,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,56,0,0,0,4,10,32,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,116,3,0,0,114,0,312,0,0,0,40,19,0,0,0,0,0,0,0,0,0,59,1,0,0,0,1,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,52,0,0,38,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,128,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,97,24,1 +3,0,0,5,0,39,7,0,37,0,8,0,0,2,3,0,24,0,6,3,0,0,0,5,0,8,3,0,3,0,2,0,0,0,12,0,39,6,0,0,46,0,0,0,1,0,0,7,0,0,0,0,2,194,0,0,0,0,0,1,0,0,0,0,0,7,0,0,3674,39,136,0,3,0,0,0,0,0,39,0,0,0,0,0,7,20,709,0,0,12,0,0,1,13,0,200,20,12,0,0,2,0,115,0,1,0,0,773,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,480,0,154,0,0,0,2,27,201,173,483,0,0,0,0,1,0,5,0,0,0,0,0,0,1221,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,32,11,163,5,0,0,291,0,374,0,0,0,179,10,0,0,0,0,0,0,7,0,0,87,1,0,0,0,8,0,0,0,0,2,121,142,0,0,29,0,0,0,0,0,274,0,0,664,3,0,1,1,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,48,0,0,0,0,1,51,474,0,7,9,0,0,0,0,0,107,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7,664,59,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,545,18,65,0,3,0,0,0,0,0,9,0,0,0,0,0,1,4,45,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,373,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,61,0,56,0,0,0,4,10,36,174,70,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,117,3,0,0,117,0,207,0,0,0,40,7,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,53,0,0,42,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,22,124,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,103,23,1 +21,0,0,10,0,65,25,0,71,1,3,0,0,2,6,0,1145,0,6,3,0,0,0,6,0,10,3,0,14,0,3,0,0,0,23,71,65,6,0,0,41,0,0,0,1,0,0,10,0,0,0,0,3,262,0,0,0,0,0,1,0,0,0,5,0,8,0,0,61018,65,1345,0,14,0,0,0,0,0,69,0,0,0,0,0,8,27,16955,0,0,23,0,0,0,0,0,116,5,16,1,0,2,0,1212,0,4,0,0,3049,0,0,0,0,11,0,6,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,9,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,12,12,12,0,0,0,10800,0,200,0,0,0,4,8,294,1831,10771,0,0,0,0,1,0,11,0,0,0,0,0,0,5006,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,1,0,32,16,812,13,0,0,456,0,457,0,0,0,276,44,0,0,0,0,0,0,0,0,0,1258,1,0,0,0,9,0,0,0,0,2,148,141,0,0,0,0,0,0,0,0,5585,1,0,10898,6,0,1,1,0,0,0,0,33,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,6,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,20,0,0,0,0,1,88,570,0,18,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5012,367,1 +10,0,0,6,0,25,4,0,24,2,4,0,0,0,10,1,18,0,8,2,0,0,0,1,0,0,3,0,6,0,9,0,0,0,10,0,25,6,1812,0,39,0,0,0,1,0,0,2,0,0,0,0,8,90,0,0,0,0,0,1,0,0,0,0,0,11,0,0,11304,25,74,0,18,0,0,0,0,0,7,0,0,0,0,0,2,5,40,0,0,10,0,0,0,0,0,32,0,3,0,0,2,0,51,0,8,0,0,319,0,0,0,0,3,0,0,0,3,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,55,0,46,0,0,0,16,16,53,31,61,0,0,0,0,1,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,13,146,7,0,0,161,0,243,0,0,0,78,1846,0,0,0,0,0,0,0,0,0,69,1,0,0,0,3,0,0,0,0,5,112,32,0,0,0,0,0,0,0,0,42,0,0,22,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,25,0,0,0,8,1,35,288,0,18,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,94,43,1 +27,0,0,8,0,27,2,0,17,18,22,0,0,0,46,0,26,0,7,1,0,0,0,2,0,0,6,0,6,0,6,2,0,0,11,0,27,6,0,0,74,0,0,0,1,0,0,2,0,0,0,0,7,49,0,0,0,0,0,1,0,0,0,7,0,28,0,0,526,27,135,0,14,0,0,0,0,0,7,0,0,0,0,0,2,5,67,0,0,11,0,0,0,0,0,45,0,3,0,0,2,0,170,0,25,0,0,568,0,0,0,0,3,8,0,0,9,0,0,1,0,0,0,2,0,0,0,0,0,0,0,5,0,0,0,7,0,0,0,0,0,1,0,6,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,9,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8,0,0,0,0,0,0,76,0,82,0,0,0,14,23,58,78,91,0,0,0,0,1,0,0,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,1,8,36,195,10,0,0,143,0,233,0,0,0,62,18,0,0,0,0,0,0,0,0,0,120,1,0,0,0,3,0,0,0,0,8,109,21,0,0,0,0,0,0,0,0,69,0,0,35,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,22,0,0,0,0,1,38,85,0,20,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,2,248,83,1 +15,0,0,13,2,37,55,2,86,8,19,0,0,0,28,0,119,0,11,1,0,0,0,6,0,0,3,0,5,0,2,0,0,2,21,0,39,102,0,0,138,0,0,0,1,0,0,2,0,0,0,0,1,117,0,0,0,0,0,1,0,0,0,2,0,23,0,0,2340,37,258,0,7,0,0,0,0,0,11,0,0,0,0,0,6,10,278,0,2,21,2,0,4,28,0,348,50,3,0,0,6,2,223,0,15,0,0,913,0,0,0,0,21,2,0,0,4,0,0,1,0,0,0,11,0,0,0,0,0,0,0,2,0,0,0,6,0,0,0,0,0,0,0,9,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,10,0,0,0,0,0,0,225,0,80,0,0,0,2,7,84,1171,249,0,0,0,0,1,0,0,0,0,0,0,0,0,766,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,217,75,478,18,0,0,539,0,980,0,2,0,229,17,0,0,0,0,0,0,0,0,0,318,1,0,0,0,7,0,0,0,0,2,180,97,0,0,95,0,1,0,0,0,270,0,0,252,0,0,1,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,41,1,1,1,0,6,0,0,0,0,17,60,131,0,10,0,0,0,0,0,0,147,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,14,0,0,0,0,0,0,0,0,0,0,0,2,0,2,398,159,1 +1,0,0,6,2,13,51,2,79,3,9,0,0,0,10,0,117,0,10,1,0,0,0,1,0,0,0,0,1,0,1,0,0,2,3,0,15,137,0,0,44,0,0,0,1,0,0,2,0,0,0,0,0,83,0,0,0,0,0,1,0,0,0,0,0,10,0,0,382,13,198,0,2,0,0,0,0,0,8,0,0,0,0,1,1,5,61,0,2,3,2,0,3,7,0,148,15,4,0,0,6,2,92,0,6,0,0,469,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,77,0,62,0,0,0,0,3,37,91,90,0,0,0,0,1,0,0,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,223,27,418,8,0,0,420,0,558,0,2,0,118,12,0,0,0,0,0,0,0,0,0,276,1,0,0,0,2,0,0,0,0,1,124,32,0,0,34,0,0,0,0,0,255,0,0,29,0,0,1,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,1,1,1,0,1,0,0,0,0,17,18,95,0,2,0,0,0,0,0,0,84,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,2,0,2,173,67,1 +64,0,0,6,6,78,78,13,148,33,20,0,0,3,45,2,294,0,11,15,0,6,1,7,0,24,15,0,9,0,4,2,0,6,46,0,83,103,0,0,234,0,0,0,1,0,0,3,0,0,0,0,22,192,0,0,0,0,0,1,0,0,0,12,0,46,0,0,2096,78,1032,0,31,0,0,0,0,0,15,12,0,0,0,0,12,21,254,0,13,46,6,0,4,32,0,483,45,4,0,0,6,6,455,0,37,0,0,1290,0,0,0,0,36,8,2,0,0,0,1,1,0,0,0,16,0,0,0,0,2,0,0,1,0,0,0,9,0,0,0,0,0,5,3,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,1,10,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,26,10,10,10,0,0,0,258,0,207,0,0,0,26,44,311,506,258,0,0,0,0,1,0,4,0,0,0,0,0,0,1293,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,250,72,723,12,0,0,751,0,1001,0,2,0,308,39,0,0,0,0,0,0,0,0,0,601,1,0,0,0,29,0,0,0,0,27,199,92,0,0,92,0,0,0,0,0,1360,0,0,284,3,0,1,2,0,0,0,0,4,0,0,0,1,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,36,36,0,0,10,1,0,0,0,0,3,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,83,1,1,1,0,20,0,0,0,2,77,129,263,0,45,9,0,0,0,0,0,271,8,0,0,0,0,0,0,0,0,0,0,0,6,0,1,39,0,0,0,0,0,0,0,0,0,0,0,8,0,2,547,235,1 +7,0,0,11,3,41,86,3,154,10,40,0,1,0,28,0,166,0,12,1,0,0,0,2,0,0,0,0,7,0,1,0,0,3,31,0,44,179,0,0,214,0,0,0,1,0,0,3,0,0,0,0,0,118,0,0,0,0,0,1,0,0,0,0,0,28,0,0,2793,41,387,0,8,0,0,0,0,0,11,0,0,0,0,0,2,7,735,0,3,31,3,0,12,64,0,709,120,4,0,0,10,3,405,0,19,0,0,1098,0,0,0,0,23,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,433,0,101,0,0,0,0,3,73,1533,457,0,0,0,0,1,0,0,0,0,0,0,0,0,1166,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,332,100,647,16,0,0,703,0,1230,0,3,0,285,33,0,0,0,0,0,0,0,0,0,487,1,0,0,0,3,0,0,0,0,1,204,140,0,0,232,0,2,0,0,0,674,0,0,38,0,0,1,0,0,0,0,0,7,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,39,1,1,1,0,7,0,0,0,0,25,75,97,0,8,0,0,0,0,0,0,265,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,26,0,0,0,0,0,0,0,0,0,0,0,3,0,4,715,277,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,70,0,0,0,0,0,1,0,0,0,0,0,2,0,0,507,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,42,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,281,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,56,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,116,3,0,0,114,0,200,0,0,0,40,7,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,52,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,84,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,98,23,1 +18,0,0,11,0,55,7,0,47,4,17,0,0,0,19,0,21,0,7,1,0,0,0,10,0,0,3,0,11,0,2,0,0,0,31,0,55,6,0,0,147,0,0,0,1,0,0,2,0,0,0,0,1,108,0,0,0,0,0,1,0,0,0,4,0,19,0,0,12074,55,150,0,13,0,0,0,0,0,11,0,0,0,0,0,10,13,3020,0,0,31,0,0,2,28,0,288,50,4,0,0,2,0,210,0,9,0,0,1274,0,0,0,0,55,2,9,0,10,0,0,1,0,0,0,10,0,0,0,0,0,0,0,2,0,0,0,12,0,0,0,0,0,0,0,12,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,12,0,0,0,0,0,0,1962,0,124,0,0,0,2,7,127,1243,1992,0,0,0,0,1,0,0,0,0,0,0,0,0,2894,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,8,61,325,14,0,0,341,0,457,0,0,0,234,43,0,0,0,0,0,0,0,0,0,118,1,0,0,0,11,0,0,0,0,2,186,128,0,0,95,0,1,0,0,0,699,0,0,2267,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,12,0,0,0,0,1,86,252,0,16,0,0,0,0,0,0,147,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1103,256,1 +4,0,0,5,0,20,4,0,15,2,4,0,0,0,8,1,15,0,7,1,0,0,0,2,0,0,0,0,4,0,8,0,0,0,8,0,20,6,0,0,31,0,0,0,1,0,0,1,0,0,0,0,7,41,0,0,0,0,0,1,0,0,0,5,0,9,0,0,344,20,58,0,12,0,0,0,0,0,6,0,0,0,0,0,2,4,62,0,0,8,0,0,0,0,0,25,0,2,0,0,2,0,43,0,6,0,0,303,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,67,0,52,0,0,0,14,12,44,33,77,0,0,0,0,1,0,0,0,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,13,114,5,0,0,117,0,189,0,0,0,46,6,0,0,0,0,0,0,0,0,0,54,1,0,0,0,3,0,0,0,0,4,110,7,0,0,0,0,0,0,0,0,54,0,0,55,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,18,0,0,0,8,1,28,41,0,12,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,121,35,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,67,0,0,0,0,0,1,0,0,0,0,0,2,0,0,681,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,51,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,249,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,67,0,57,0,0,0,4,10,36,174,76,0,0,0,0,1,0,0,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,116,3,0,0,117,0,230,0,0,0,40,13,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,60,0,0,63,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,78,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,110,23,1 +7,0,0,11,2,55,74,2,163,16,46,0,2,0,32,0,119,0,10,1,0,0,0,4,0,0,0,0,9,0,1,0,0,2,43,0,57,136,0,0,288,0,0,0,1,0,0,3,0,0,0,0,0,94,0,0,0,0,0,1,0,0,0,0,0,38,0,0,3390,55,391,0,10,0,0,0,0,0,20,0,0,0,0,0,4,8,839,0,2,43,2,0,13,87,0,863,135,4,0,0,10,2,531,0,24,0,0,1219,0,0,0,0,47,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,505,0,140,0,0,0,0,3,98,1787,538,0,0,0,0,1,0,0,0,0,0,0,0,0,1866,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,233,129,587,15,0,0,654,0,886,0,2,0,333,23,0,0,0,0,0,0,0,0,0,446,1,0,0,0,5,0,0,0,0,1,214,224,0,0,261,0,2,0,0,0,647,0,0,57,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,55,1,1,1,0,9,0,0,0,0,17,100,245,0,10,0,0,0,0,0,0,352,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,34,0,0,0,0,0,0,0,0,0,0,0,2,0,4,733,294,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,44,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,24,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,35,0,0,0,36,0,48,0,0,0,6,2,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,5,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,8,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,5,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,31,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,30,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,41,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,4,1 +8,0,0,5,4,36,4,4,56,7,8,0,0,0,18,1,47,0,7,9,0,8,0,2,0,0,0,0,9,0,13,0,0,4,21,0,40,6,0,0,79,0,0,0,1,0,0,4,0,0,0,0,12,101,0,0,0,0,0,1,4,0,0,9,0,19,0,0,1557,36,384,0,22,0,0,0,0,0,18,12,0,0,0,0,2,7,271,0,4,21,4,0,0,0,0,61,0,7,0,0,2,4,95,0,16,0,0,1031,0,0,0,0,7,0,1,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,227,0,118,0,0,0,24,23,74,77,229,0,0,0,0,1,0,0,0,0,0,0,0,0,649,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,23,346,9,0,0,342,0,320,0,0,0,154,13,0,0,0,0,0,0,0,0,0,141,1,0,0,0,19,0,0,0,0,9,126,41,0,0,0,0,0,0,0,0,174,0,0,312,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,33,0,0,0,8,33,61,218,0,22,0,0,0,0,0,0,78,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,7,0,0,0,0,0,0,0,0,0,0,0,8,0,1,358,66,1 +4,0,0,9,0,41,5,0,12,3,21,0,0,2,26,2,116,0,7,4,0,0,0,4,0,8,9,0,11,0,30,0,0,0,12,0,41,6,0,0,149,0,0,0,1,0,0,1,0,0,0,0,30,98,0,0,0,0,0,1,0,0,0,0,0,11,0,0,1003,41,225,0,40,0,0,0,0,0,4,0,0,0,0,0,7,13,73,0,0,12,0,0,0,0,0,184,5,0,0,0,2,0,232,0,6,0,0,788,0,0,0,0,42,0,1,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,10,10,10,0,0,0,65,0,75,0,0,0,58,65,217,242,60,0,0,0,0,1,0,3,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,34,118,168,11,0,0,149,0,269,0,0,0,64,11,0,0,0,0,0,0,0,0,0,191,0,0,0,0,8,0,0,0,0,27,127,23,0,0,0,0,0,0,0,0,551,0,0,36,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,21,21,0,0,0,0,0,0,0,0,2,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,65,0,0,0,16,13,53,128,0,50,8,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,159,1 +6,0,0,4,2,20,5,8,29,7,5,0,0,0,13,0,24,0,6,6,0,2,1,2,0,0,0,0,1,0,3,0,0,2,10,0,22,6,7,0,43,0,0,0,1,0,0,1,0,0,0,0,2,45,0,0,0,0,0,1,0,0,0,13,0,14,0,0,259,20,190,0,4,0,0,0,0,0,6,6,0,0,0,0,2,4,34,0,8,10,2,0,0,0,0,22,0,2,0,0,2,2,48,0,11,0,0,261,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,48,0,40,0,0,0,4,6,42,27,58,0,0,0,0,1,0,0,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,16,155,6,0,0,171,0,201,0,0,0,74,20,0,0,0,0,0,0,0,0,0,82,1,0,0,0,11,0,0,0,0,3,106,23,0,0,0,0,0,0,0,0,52,0,0,34,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,5,0,0,0,0,17,32,109,0,4,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,4,0,1,79,25,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,17,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,16,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,36,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,4,1 +97,0,0,16,0,51,17,0,117,19,42,0,0,0,38,2,31,0,7,3,0,0,0,4,0,0,6,0,10,0,8,0,0,0,37,0,51,6,0,0,302,0,0,0,1,0,0,3,0,0,0,0,7,91,0,0,0,0,0,1,0,0,0,0,0,29,0,0,7052,51,291,0,17,0,0,0,0,0,16,0,0,0,0,0,6,11,1046,0,0,37,0,0,1,80,0,685,75,5,0,0,2,0,555,0,23,0,0,1116,0,0,0,0,28,37,0,0,12,0,0,1,0,0,0,7,0,0,0,0,0,0,0,35,0,0,0,1,0,0,0,0,0,6,0,8,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,1,8,0,0,0,0,1,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,9,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,30,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,36,0,0,0,0,0,0,765,0,153,0,0,0,14,21,94,542,772,0,0,0,0,1,0,0,0,0,0,0,0,0,2161,0,0,0,0,0,0,0,0,0,7,0,0,3,0,0,0,0,0,0,1,0,8,53,309,24,0,0,335,0,376,0,0,0,256,54,0,0,0,0,0,0,0,0,0,254,1,0,0,0,7,0,0,0,0,6,165,265,0,0,177,0,43,0,0,0,385,0,0,1431,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,1,0,0,20,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,22,0,0,0,0,1,88,289,0,24,0,0,0,0,0,0,320,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,3,749,284,1 +2,0,0,7,0,36,6,0,37,1,6,0,0,2,4,0,496,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,3,762,36,8,0,0,27,0,0,0,1,0,0,3,0,0,0,0,1,183,0,0,0,0,0,1,0,0,0,1,0,4,0,0,4671,36,557,0,2,0,0,0,0,0,19,0,0,0,0,0,8,19,866,0,0,3,0,0,0,0,0,89,5,6,0,0,2,0,510,0,1,0,0,1197,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,388,0,52,0,0,0,0,3,251,323,350,0,0,0,0,1,0,3,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,16,180,7,0,0,217,0,297,0,0,0,62,5,0,0,0,0,0,0,0,0,0,557,1,0,0,0,9,0,0,0,0,1,119,24,0,0,1,0,0,0,0,0,1301,1,0,51,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,1,0,0,0,0,1,39,126,0,3,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,42,1 +7581,0,0,6,2,30,50,2,80,5,9,0,0,0,17,0,120,0,10,1,0,0,0,1,0,1,0,0,98,0,2,0,0,2,12,0,32,169,0,0,67,0,0,0,1,0,0,4,0,0,0,0,1,142,0,0,0,0,0,1,0,0,0,0,0,15,0,0,75860,30,311,0,101,0,0,0,0,0,11,0,0,0,0,2,1,9,58,0,2,12,2,0,3,7,0,250,15,4,0,0,6,2,224,0,11,0,0,153561,0,0,0,0,22717,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,7577,0,0,1,3,0,15145,0,7574,0,0,0,0,0,0,7585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7579,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,86,0,66,0,0,0,1,4,62,42088,99,0,0,0,0,1,0,0,0,0,0,0,0,0,127249,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,224,36,1085,8,0,0,500,0,1016,0,2,0,174,296,0,0,0,0,0,0,0,0,0,286,1,0,0,0,2,0,0,0,0,3,142,59,0,0,34,0,0,0,0,0,543,0,0,33,0,0,1,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,27,1,1,1,0,99,0,0,0,0,17,44,337,0,101,0,0,0,0,0,0,106,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,1,409,262,1 +6,0,0,13,0,39,9,0,92,7,38,0,0,0,31,0,41,0,6,1,0,0,0,2,0,1,9,0,6,0,6,1,0,0,29,0,39,35,0,0,240,0,0,0,1,0,0,2,0,0,0,0,7,109,0,0,0,0,0,1,0,0,0,0,0,31,0,0,14120,39,233,0,14,0,0,0,0,0,8,0,0,0,0,0,2,5,901,0,0,29,0,0,4,72,0,620,100,2,0,0,2,0,501,0,17,0,0,4801,0,0,0,0,21,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,673,0,79,0,0,0,14,21,61,521,679,0,0,0,0,1,0,0,0,0,0,0,0,0,1401,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,90,227,16,0,0,245,0,339,0,0,0,178,18,0,0,0,0,0,0,0,0,0,217,1,0,0,0,3,0,0,0,0,3,130,217,0,0,214,0,2,0,0,0,647,0,0,997,0,0,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,19,0,0,0,0,1,68,89,0,23,0,0,0,0,0,0,230,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,48,1 +3,0,0,8,0,16,4,0,23,0,9,0,0,0,8,0,16,0,7,2,0,0,0,1,0,0,0,0,1,0,2,0,0,0,7,0,16,6,0,0,42,0,0,0,1,0,0,1,0,0,0,0,1,73,0,0,0,0,0,1,0,0,0,0,0,8,0,0,1333,16,69,0,3,0,0,0,0,0,9,0,0,0,0,0,2,4,252,0,0,7,0,0,1,8,0,82,15,2,0,0,2,0,68,0,4,0,0,490,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,214,0,54,0,0,0,2,3,34,69,218,0,0,0,0,1,0,0,0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,23,137,10,0,0,109,0,93,0,0,0,47,8,0,0,0,0,0,0,0,0,0,67,1,0,0,0,3,0,0,0,0,1,98,29,0,0,29,0,0,0,0,0,110,0,0,264,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,23,130,0,3,0,0,0,0,0,0,53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,202,30,1 +9,0,0,5,0,66,7,0,28,3,3,0,0,2,11,0,30,0,7,3,0,0,0,6,0,8,6,0,8,0,8,0,0,0,37,0,66,36,0,0,74,0,0,0,1,0,0,5,0,0,0,0,8,156,0,0,0,0,0,1,0,0,0,9,0,13,0,0,1280,66,108,0,14,0,0,0,0,0,19,0,0,0,0,7,8,21,237,0,0,37,0,0,0,0,0,114,5,8,0,0,2,0,115,0,9,0,0,973,0,0,0,0,30,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,203,0,148,0,0,0,14,22,244,69,208,0,0,0,0,1,0,5,0,0,0,0,0,0,551,0,0,0,0,0,0,0,0,0,2,0,0,5,1,0,0,0,0,0,1,2,40,21,290,5,0,0,282,0,345,0,0,0,164,15,0,0,0,0,0,0,0,0,0,88,1,0,0,0,9,0,0,0,0,8,152,32,0,0,0,0,0,0,0,0,188,0,0,87,3,0,1,1,0,0,0,0,7,0,0,0,2,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,13,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,71,1,1,1,0,18,0,0,0,0,1,103,295,0,21,9,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,335,127,1 +4,0,0,10,0,57,15,0,72,3,15,0,0,7,17,1,1215,0,7,1,0,0,0,8,0,10,3,0,20,0,16,0,0,0,18,404,57,60,0,0,102,0,8,0,1,0,0,10,0,0,0,0,16,298,0,0,0,0,0,1,0,0,0,0,0,14,0,0,71234,57,1430,0,33,0,0,0,0,0,52,0,0,0,0,1,8,55,15312,0,0,18,0,0,0,0,0,313,25,18,1,0,2,0,1377,0,9,22,0,2416,0,0,0,0,29,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,64,12,12,12,0,0,0,8608,0,146,0,0,0,35,34,338,508,8572,0,0,0,0,1,0,3,0,0,0,0,0,0,5968,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,1,0,122,41,320,12,0,0,353,0,678,0,0,0,189,14,0,0,0,0,0,0,0,0,0,1349,1,0,0,0,9,0,0,0,0,12,150,57,0,0,39,0,0,0,0,0,6679,1,0,15928,11,0,1,1,1,0,0,0,20,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,11,376,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,71,1,1,1,0,61,0,0,0,4,1,75,338,0,37,12,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,5,6078,181,1 +2,0,0,7,0,39,8,0,43,0,7,0,0,6,5,0,672,0,6,2,0,0,0,8,0,11,0,0,8,0,1,0,0,0,4,2276,39,6,0,0,52,0,0,0,1,0,0,1,0,0,0,0,1,330,0,0,0,0,0,1,0,0,0,0,0,3,0,0,11593,39,750,0,5,0,0,0,0,0,16,0,0,0,0,0,9,34,2268,0,0,4,0,0,0,0,0,209,20,1,0,0,2,0,729,0,0,14,0,1705,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,3,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,40,12,12,12,0,0,0,868,0,54,0,0,0,2,5,270,513,851,0,0,0,0,1,0,3,0,0,0,0,0,0,519,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,84,23,259,7,0,0,306,0,277,0,0,0,147,13,0,0,0,0,0,0,7,0,0,747,1,0,0,0,10,0,0,0,0,0,130,70,0,0,17,0,0,0,0,0,2094,1,0,288,10,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,10,0,0,0,0,1,43,265,0,6,14,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,776,43,1 +7,0,0,4,0,47,6,0,35,8,3,0,0,2,13,0,526,0,6,3,0,0,0,6,0,10,0,0,8,0,4,0,0,0,10,898,47,6,0,0,58,0,0,0,1,0,0,4,0,0,0,0,4,204,0,0,0,0,0,1,0,0,0,0,0,14,0,0,19253,47,618,0,9,0,0,0,0,0,25,0,0,0,0,0,8,21,3341,0,0,10,0,0,0,0,0,108,5,9,1,0,2,0,571,0,11,0,0,1390,0,0,0,0,14,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,8,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,28,12,12,12,0,0,0,2722,0,105,0,0,0,6,9,247,353,2695,0,0,0,0,1,0,3,0,0,0,0,0,0,524,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,254,4,0,0,269,0,322,0,0,0,101,10,0,0,0,0,0,0,0,0,0,591,1,0,0,0,9,0,0,0,0,4,130,27,0,0,0,0,0,0,0,0,1466,1,0,151,6,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,11,0,0,0,0,1,57,156,0,10,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,571,47,1 +3,0,0,8,2,59,85,8,44,3,84,0,0,7,13,1,78,0,8,7,0,2,1,9,0,12,0,0,21,0,9,0,0,2,16,1134,61,6,3,0,84,0,0,0,1,0,0,2,1,0,0,0,9,1589,0,0,0,0,0,1,0,0,0,5,0,14,0,0,35229,59,662,0,27,0,0,0,0,0,168,6,0,0,0,0,10,296,6510,0,8,16,2,0,0,0,0,993,25,6,0,0,2,2,311,0,10,797,0,5893,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,12,12,0,0,0,887,0,90,0,0,0,28,26,633,3491,862,0,0,0,0,1,0,3,0,0,0,0,0,0,1498,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,108,30,388,10,0,0,507,0,365,0,0,0,308,22,0,0,0,0,0,0,0,0,0,320,1,0,3,0,19,0,0,0,0,5,164,43,0,0,737,0,0,0,0,0,3952,1,0,469,82,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,82,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,70,0,0,0,8,17,77,272,0,28,14,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,7,0,0,0,0,0,0,0,0,0,0,0,3,0,2,2703,1276,1 +11,0,0,5,0,72,4,0,20,0,3,0,0,2,4,0,25,0,6,3,0,0,0,5,0,8,3,0,55,0,3,0,0,0,34,0,72,48,0,0,61,0,0,0,1,0,0,5,0,0,0,0,2,108,0,0,0,0,0,1,0,0,0,0,0,5,0,0,10256,72,141,0,57,0,0,0,0,0,24,0,0,0,0,0,7,18,330,0,0,34,0,0,0,0,0,138,5,8,0,0,2,0,119,0,1,0,0,2933,0,0,0,0,25,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,267,0,154,0,0,0,2,8,237,203,262,0,0,0,0,1,0,3,0,0,0,0,0,0,563,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,40,11,323,5,0,0,301,0,358,0,0,0,162,9,0,0,0,0,0,0,0,0,0,64,1,0,0,0,8,0,0,0,0,2,154,43,0,0,0,0,0,0,0,0,279,0,0,165,2,0,1,1,0,0,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,56,0,0,0,0,1,106,230,0,61,8,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,5,430,90,1 +5,0,0,5,1,17,39,1,113,4,27,0,3,0,9,0,69,0,8,1,0,0,0,1,0,0,0,0,5,0,1,0,0,1,9,0,18,91,0,0,153,0,2,0,1,0,0,2,0,0,0,0,0,79,0,0,0,0,0,1,0,0,0,0,0,19,0,0,1153,17,226,0,6,0,0,0,0,0,7,0,0,0,0,0,1,5,509,0,1,9,1,0,8,62,0,567,60,2,0,0,10,1,359,0,6,0,0,274,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,60,0,41,0,0,0,0,3,40,456,76,0,0,0,0,1,0,0,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,136,48,280,6,0,0,283,0,460,0,1,0,97,15,0,0,0,0,0,0,0,0,0,268,1,0,0,0,2,0,0,0,0,1,113,144,0,0,116,0,0,0,0,0,356,0,0,744,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,1,1,1,0,5,0,0,0,0,9,27,82,0,6,0,0,0,0,0,0,198,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,0,0,0,0,0,0,0,0,0,0,0,1,0,2,279,143,1 +1,0,0,8,0,40,32,0,59,0,35,0,0,7,6,1,730,0,7,2,0,0,0,7,0,10,0,0,25,0,3,0,0,0,4,2522,40,6,0,0,65,0,0,0,1,0,0,1,0,0,0,0,3,462,0,0,0,0,0,1,0,0,0,0,0,7,0,0,31455,40,953,0,25,0,0,0,0,0,58,0,0,0,0,0,8,108,5271,0,0,4,0,0,1,9,0,485,45,2,0,0,2,0,884,0,2,118,0,3012,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,12,12,12,0,0,0,2596,0,62,0,0,0,19,21,497,1753,2581,0,0,0,0,1,0,3,0,0,0,0,0,0,1691,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,106,20,259,8,0,0,301,0,321,0,0,0,136,6,0,0,0,0,0,0,0,0,0,877,1,0,0,0,9,0,0,0,0,3,139,25,0,0,213,0,0,0,0,0,2916,1,0,1818,29,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,29,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,71,0,0,0,0,1,44,290,0,26,12,0,0,0,0,0,112,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1554,99,1 +26,0,0,5,0,34,2,0,21,7,3,0,0,0,17,0,20,0,7,2,0,0,0,4,0,0,3,0,6,0,2,0,0,0,11,0,34,6,0,0,53,0,0,0,1,0,0,5,0,0,0,0,1,90,0,0,0,0,0,1,0,0,0,2,0,17,0,0,1378,34,100,0,8,0,0,0,0,0,21,0,0,0,0,0,5,11,332,0,0,11,0,0,0,0,0,33,0,8,0,0,2,0,69,0,11,0,0,661,0,0,0,0,14,5,0,0,8,0,0,1,0,0,0,9,0,0,0,0,0,0,0,5,0,0,0,15,0,0,1,3,0,7,0,15,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,2,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,12,0,0,0,0,0,0,290,0,113,0,0,0,2,7,79,47,307,0,0,0,0,1,0,0,0,0,0,0,0,0,654,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,8,16,200,5,0,0,222,0,371,0,0,0,118,19,0,0,0,0,0,0,0,0,0,70,1,0,0,0,6,0,0,0,0,2,127,59,0,0,0,0,0,0,0,0,91,0,0,151,0,0,1,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,7,0,0,0,0,1,45,421,0,11,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,5,242,38,1 +7466,0,0,4,0,48,5,0,23,2,3,0,0,2,7,0,23,0,6,4,0,0,0,5,0,8,3,0,101,0,2,0,0,0,11,0,48,6,0,0,42,0,0,0,1,0,0,2,0,0,0,0,2,151,0,0,0,0,0,1,0,0,0,0,0,8,0,0,79219,48,167,0,101,0,0,0,0,0,13,0,0,0,0,0,8,16,1181,0,0,11,0,0,0,0,0,176,5,3,0,0,2,0,158,0,5,0,0,154231,0,0,0,0,22421,0,0,0,8,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,7480,0,0,0,0,0,14943,0,7464,0,0,0,0,0,0,7502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7476,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,10,10,10,0,0,0,662,0,62,0,0,0,2,7,220,41507,657,0,0,0,0,1,0,3,0,0,0,0,0,0,126615,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,15,1027,4,0,0,222,0,407,0,0,0,79,342,0,0,0,0,0,0,0,0,0,69,1,0,0,0,9,0,0,0,0,1,130,38,0,0,0,0,0,0,0,0,364,0,0,729,3,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,100,0,0,0,0,1,59,129,0,105,9,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,572,388,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,0,0,0,49,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,17,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,40,0,0,0,47,0,40,0,0,0,17,2,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,92,14,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,32,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,7,1 +0,0,0,5,0,15,5,0,20,0,8,0,0,0,6,0,21,0,7,1,0,0,0,1,0,0,3,0,1,0,1,1,0,0,3,0,15,6,0,0,38,0,0,0,1,0,0,5,0,0,0,0,1,44,0,0,0,0,0,1,0,0,0,0,0,3,0,0,7323,15,73,0,3,0,0,0,0,0,9,0,0,0,0,0,1,8,47,0,0,3,0,0,0,8,0,96,10,2,0,0,2,0,83,0,1,0,0,3742,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,62,0,58,0,0,0,2,7,38,10495,3527,0,0,0,0,1,0,0,0,0,0,0,0,0,5570,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,6,115,5,0,0,152,0,241,0,0,0,90,9,0,0,0,0,0,0,0,0,0,67,1,0,0,0,2,0,0,0,0,1,104,90,0,0,23,0,0,0,0,0,52,0,0,27,0,0,1,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,4,0,0,0,0,1,18,175,0,6,0,0,0,0,0,0,46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,575,26,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,35,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,1 +5,0,0,10,0,41,8,0,46,0,6,0,0,6,5,0,691,0,6,5,0,0,0,8,0,11,0,0,9,0,3,0,0,0,3,2313,41,36,0,0,47,0,0,0,1,0,0,1,0,0,0,0,3,273,0,0,0,0,0,1,0,0,0,0,0,2,0,0,12110,41,764,0,8,0,0,0,0,0,13,0,0,0,0,0,12,39,2242,0,0,3,0,0,0,0,0,225,20,1,0,0,2,0,757,0,0,16,0,2063,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,12,12,12,0,0,0,930,0,48,0,0,0,6,9,286,849,911,0,0,0,0,1,0,3,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,89,27,241,15,0,0,248,0,340,0,0,0,83,7,0,0,0,0,0,0,0,0,0,768,1,0,0,0,13,0,0,0,0,3,132,11,0,0,18,0,0,0,0,0,2130,1,0,29,9,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,15,0,0,0,4,1,44,48,0,9,14,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,677,86,1 +10,0,0,5,0,26,5,0,28,2,9,0,0,0,10,1,16,0,7,2,0,0,0,1,0,0,0,0,6,0,7,0,0,0,10,0,26,6,0,0,46,0,0,0,1,0,0,4,0,0,0,0,7,125,0,0,0,0,0,1,0,0,0,0,0,12,0,0,11377,26,107,0,14,0,0,0,0,0,19,0,0,0,0,0,2,7,2287,0,0,10,0,0,1,11,0,128,20,7,0,0,2,0,100,0,8,0,0,966,0,0,0,0,186,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,1584,0,123,0,0,0,14,13,54,671,1612,0,0,0,0,1,0,0,0,0,0,0,0,0,2303,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,2,0,8,13,160,5,0,0,198,0,296,0,0,0,112,10,0,0,0,0,0,0,0,0,0,76,1,0,0,0,3,0,0,0,0,4,112,81,0,0,36,0,0,0,0,0,443,0,0,2111,0,0,1,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,0,0,0,0,0,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,20,0,0,0,8,1,36,388,0,13,0,0,0,0,0,0,78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,867,108,1 +5,0,0,5,0,46,27,0,49,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,14,0,2,0,0,0,26,0,46,6,0,0,28,0,0,0,1,0,0,5,3,0,0,0,1,82,0,0,0,0,0,1,0,0,0,0,0,5,0,0,8021,46,149,0,16,0,0,0,0,0,48,0,0,0,0,0,1,10,163,0,0,26,0,0,0,0,0,30,0,9,1,0,2,0,67,0,3,0,0,1220,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,9,0,2,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,190,0,160,0,0,0,2,5,90,3258,189,0,0,0,0,1,0,0,0,0,0,0,0,0,12123,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,6,291,5,0,0,399,0,411,0,0,0,274,21,0,0,0,0,0,0,0,0,0,106,1,0,11,0,2,0,0,0,0,2,131,173,0,0,0,0,3,0,0,0,70,0,0,106,0,0,1,0,0,0,0,0,27,0,0,0,4,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,16,0,0,0,0,1,72,604,0,16,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,313,105,1 +3,0,0,10,0,53,7,0,51,8,10,0,0,6,23,1,882,0,7,2,0,0,0,8,0,11,0,0,10,0,5,0,0,0,17,955,53,6,0,0,118,0,0,0,1,0,0,7,0,0,0,0,5,1056,0,0,0,0,0,1,0,0,0,0,0,20,0,0,14666,53,1041,0,11,0,0,0,0,0,41,0,0,0,0,0,9,32,3273,0,0,17,0,0,0,0,0,222,20,11,0,0,2,0,987,0,15,1,0,2529,0,0,0,0,14,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,50,12,12,12,0,0,0,1746,0,130,0,0,0,9,11,282,1478,1719,0,0,0,0,1,0,3,0,0,0,0,0,0,2120,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,84,50,396,12,0,0,667,0,504,0,0,0,334,23,0,0,0,0,0,0,0,0,0,987,1,0,0,0,10,0,0,0,0,4,192,346,0,0,6,0,0,0,0,0,2822,1,0,1819,8,0,1,1,0,0,0,0,16,0,0,0,2,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,17,0,0,0,0,1,70,1996,0,12,14,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1562,1441,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,21,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,20,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,37,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,4,1 +3,0,0,5,2,27,6,8,28,2,6,0,0,0,10,1,24,0,7,6,0,2,1,2,0,0,0,0,5,0,9,0,0,2,13,0,29,6,5,0,42,0,0,0,1,0,0,1,0,0,0,0,8,47,0,0,0,0,0,1,0,0,0,6,0,11,0,0,530,27,194,0,14,0,0,0,0,0,6,6,0,0,0,0,2,4,56,0,8,13,2,0,0,0,0,34,0,2,0,0,2,2,56,0,8,0,0,443,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,66,0,55,0,0,0,16,13,59,37,75,0,0,0,0,1,0,0,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,15,234,7,0,0,208,0,259,0,0,0,99,19,0,0,0,0,0,0,0,0,0,82,1,0,0,0,11,0,0,0,0,5,132,20,0,0,0,0,0,0,0,0,80,0,0,88,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,21,0,0,0,8,17,42,85,0,14,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,110,38,1 +0,0,0,5,0,9,3,0,22,0,7,0,0,0,3,0,17,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,9,0,0,18,0,0,0,1,0,0,1,0,0,0,0,0,56,0,0,0,0,0,1,0,0,0,0,0,2,0,0,328,9,52,0,0,0,0,0,0,0,6,0,0,0,0,0,1,3,40,0,0,1,0,0,1,7,0,74,15,2,0,0,4,0,48,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,29,0,0,0,0,3,23,95,51,0,0,0,0,1,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,106,6,0,0,87,0,679,0,0,0,27,17,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,0,96,22,0,0,40,0,0,0,0,0,40,0,0,52,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,64,0,1,0,0,0,0,0,0,2521,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,72,23,1 +9,0,0,7,0,28,3,0,17,5,6,0,0,0,15,1,30,0,7,1,0,0,0,1,0,0,9,0,8,0,10,0,0,0,17,0,28,6,0,0,63,0,0,0,1,0,0,4,0,0,0,0,9,61,0,0,0,0,0,1,0,0,0,0,0,14,0,0,892,28,97,0,18,0,0,0,0,0,9,0,0,0,0,0,1,6,134,0,0,17,0,0,0,0,0,38,0,1,0,0,2,0,112,0,10,0,0,433,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,7,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,103,0,54,0,0,0,18,21,53,40,123,0,0,0,0,1,0,0,0,0,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,25,152,9,0,0,184,0,319,0,0,0,116,5,0,0,0,0,0,0,0,0,0,79,1,0,0,0,2,0,0,0,0,6,114,54,0,0,0,0,0,0,0,0,148,0,0,131,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,23,0,0,0,0,1,45,201,0,27,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,172,41,1 +9,0,0,9,1,45,41,1,128,7,36,0,2,0,22,0,72,0,9,1,0,0,0,2,0,0,0,0,7,0,1,0,0,1,32,0,46,89,0,0,238,0,0,0,1,0,0,3,0,0,0,0,0,149,0,0,0,0,0,1,0,0,0,0,0,31,0,0,1781,45,285,0,8,0,0,0,0,0,14,0,0,0,1,1,2,8,446,0,1,32,1,0,9,78,0,714,90,4,0,0,8,1,465,0,16,0,0,596,0,0,0,0,15,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,3,0,0,0,0,0,3,0,7,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,402,0,104,0,0,0,0,3,78,718,429,0,0,0,0,1,0,0,0,0,0,0,0,0,668,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,130,65,356,12,0,0,425,0,585,0,1,0,225,16,0,0,0,0,0,0,0,0,0,310,1,0,0,0,3,0,0,0,0,1,148,218,0,0,174,0,2,0,0,1,437,0,0,300,0,0,1,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,1,1,1,0,7,0,0,0,0,9,78,353,0,8,0,0,0,0,0,0,277,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,19,0,0,0,0,0,0,0,0,0,0,0,1,0,2,301,206,1 +8,0,0,4,0,47,6,0,36,8,3,0,0,2,13,0,527,0,6,3,0,0,0,6,0,10,0,0,8,0,5,0,0,0,10,898,47,6,0,0,64,0,0,0,1,0,0,4,0,0,0,0,5,201,0,0,0,0,0,1,0,0,0,0,0,14,0,0,18666,47,621,0,10,0,0,0,0,0,25,0,0,0,0,0,8,21,3273,0,0,10,0,0,0,0,0,112,5,9,0,0,2,0,574,0,11,0,0,1472,0,0,0,0,16,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,10,0,6,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,28,12,12,12,0,0,0,2620,0,105,0,0,0,8,11,245,362,2593,0,0,0,0,1,0,3,0,0,0,0,0,0,500,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,254,4,0,0,270,0,335,0,0,0,100,14,0,0,0,0,0,0,0,0,0,593,1,0,0,0,9,0,0,0,0,5,130,27,0,0,0,0,0,0,0,0,1490,1,0,152,6,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,13,0,0,0,0,1,57,179,0,11,12,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,579,45,1 +2,0,0,4,0,17,42,0,1389,0,671,0,0,0,3,0,37,0,6,1,0,0,0,1,0,0,12,0,2,0,5,0,0,0,5,0,17,6,0,0,1354,0,0,0,1,0,0,1,1,0,0,0,4,77,0,0,0,0,0,1,0,0,0,0,0,5,0,0,2148,17,2159,0,7,0,0,0,0,0,46,0,0,0,0,0,1,3,21,0,0,5,0,0,1,1337,0,10728,3335,4,0,0,2,0,4814,0,1,0,0,1666,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,41,0,95,0,0,0,8,21,36,2732,62,0,0,0,0,1,0,0,0,0,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,227,4,0,0,844,0,243,0,0,0,737,46,0,0,0,0,0,0,0,0,0,2148,1,0,2,0,2,0,0,0,0,5,100,2719,0,0,10046,0,0,0,0,0,71,0,0,14,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,6,0,0,0,0,1,22,30,0,19,0,0,0,0,0,0,2033,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,210,68,1 +9,0,0,8,10,83,47,40,126,11,43,0,0,7,26,1,953,0,7,27,0,10,5,8,0,10,0,0,24,0,12,0,0,10,39,990,93,6,94,0,152,0,0,0,1,0,0,5,0,0,0,0,12,607,0,0,0,0,0,1,0,0,0,9,0,26,0,0,34386,83,2162,0,33,0,0,0,0,0,85,30,0,0,0,0,9,146,6298,0,40,39,10,0,0,0,0,477,25,10,0,0,2,10,1135,0,22,147,0,3886,0,0,0,0,6,0,2,0,0,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,136,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,12,12,12,0,0,0,3619,0,131,0,0,0,31,29,913,1450,3583,0,0,0,0,1,0,4,0,0,0,0,0,0,1372,0,0,0,0,0,0,0,0,0,0,0,0,18,1,4,0,0,0,0,1,0,106,42,601,18,0,0,715,0,681,0,0,0,364,49,0,0,0,0,0,0,2,0,0,1210,1,0,0,0,50,0,0,0,0,9,174,87,0,0,196,0,0,0,0,0,3700,1,0,927,33,0,1,1,0,0,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,33,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,92,1,1,1,0,70,0,0,0,8,81,132,1054,0,34,12,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,15,0,0,0,0,0,0,0,0,0,0,0,15,0,3,1718,114,1 +9,0,0,4,0,57,6,0,32,2,4,0,0,2,12,0,30,0,7,3,0,0,0,6,0,8,6,0,10,0,8,0,0,0,25,0,57,6,0,0,60,0,0,0,1,0,0,6,0,0,0,0,8,210,0,0,0,0,0,1,0,0,0,4,0,13,0,0,2700,57,138,0,16,0,0,0,0,0,30,0,0,0,1,1,8,23,449,0,0,25,0,0,0,0,0,116,5,8,0,0,2,0,107,0,10,0,0,1339,0,0,0,0,17,0,4,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,340,0,168,0,0,0,14,39,226,116,338,0,0,0,0,1,0,8,0,0,0,0,0,0,733,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,22,307,5,0,0,342,0,332,0,0,0,213,19,0,0,0,0,0,0,0,0,0,93,1,0,0,0,9,0,0,0,0,7,141,108,0,0,0,0,0,0,0,0,202,0,0,324,3,0,1,1,0,0,0,0,11,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,16,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,66,0,0,0,0,1,82,645,0,23,9,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,461,168,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,83,0,0,0,0,0,1,0,0,0,0,0,2,0,0,751,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,44,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,276,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,57,0,0,0,4,10,32,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,110,3,0,0,114,0,290,0,0,0,40,10,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,58,0,0,38,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,152,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,102,23,1 +2,0,0,4,0,14,3,0,13,0,8,0,0,0,3,0,19,0,6,2,0,0,0,0,0,0,7,0,1,0,2,0,0,0,6,0,14,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,1,39,0,0,0,0,0,1,0,0,0,0,0,3,0,0,100,14,54,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,6,0,0,0,7,0,75,15,0,0,0,2,0,77,0,1,0,0,186,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,19,0,26,0,0,0,2,11,30,55,26,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,65,4,0,0,63,0,116,0,0,0,32,5,0,0,0,0,0,0,0,0,0,52,0,0,0,0,2,0,0,0,0,2,96,25,0,0,29,0,0,0,0,0,43,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,20,31,0,10,0,0,0,0,0,0,31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,25,1 +4,0,0,7,0,49,82,0,33,0,81,0,0,7,6,1,73,0,7,2,0,0,0,8,0,11,3,0,21,0,4,0,0,0,7,1134,49,6,0,0,52,0,0,0,1,0,0,3,0,0,0,0,4,1705,0,0,0,0,0,1,0,0,0,0,0,5,0,0,36832,49,528,0,21,0,0,0,0,0,171,0,0,0,0,0,9,272,7299,0,0,7,0,0,0,0,0,960,25,4,0,0,2,0,297,0,2,757,0,5439,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,1515,0,118,0,0,0,18,24,624,3401,1493,0,0,0,0,1,0,4,0,0,0,0,0,0,1194,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,108,20,297,7,0,0,471,0,350,0,0,0,311,12,0,0,0,0,0,0,0,0,0,290,1,0,0,0,10,0,0,0,0,3,157,76,0,0,717,0,0,0,0,0,3935,1,0,840,82,0,1,1,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,82,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,62,0,0,0,0,1,56,369,0,25,14,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2809,65,1 +2,0,0,10,0,51,10,0,62,2,11,0,0,6,12,1,1526,0,7,1,0,0,0,9,0,11,0,0,12,0,3,0,0,0,10,2608,51,6,0,0,79,0,3,0,1,0,0,4,0,0,0,0,3,428,0,0,0,0,0,1,0,0,0,0,0,10,0,0,23467,51,1666,0,11,0,0,0,0,0,29,0,0,0,0,0,9,41,3717,0,0,10,0,0,0,0,0,233,20,7,0,0,2,0,1610,0,5,13,0,2599,0,0,0,0,21,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,76,12,12,12,0,0,0,1432,0,81,0,0,0,7,10,321,1196,1407,0,0,0,0,1,0,4,0,0,0,0,0,0,3399,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,84,39,305,12,0,0,272,0,250,0,0,0,103,16,0,0,0,0,0,0,0,0,0,1635,1,0,0,0,10,0,0,0,0,3,143,12,0,0,21,0,0,0,0,0,5013,1,0,3668,11,0,1,1,1,0,0,0,9,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,11,103,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,21,0,0,0,0,1,61,201,0,12,14,0,1,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2312,62,1 +0,0,0,0,0,8,2,0,10,0,3,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,0,0,0,68,8,26,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,7,0,58,0,0,0,0,2,0,41,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,10,0,33,0,0,0,0,3,22,58,23,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,44,0,0,0,54,0,73,0,0,0,22,2,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,0,93,42,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,56,0,1,0,0,0,0,0,0,31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,31,1 +3,0,0,7,2,43,38,2,78,0,11,0,0,2,5,0,45,0,7,7,0,4,0,5,9,8,0,0,18,0,2,0,0,2,11,0,45,6,9,0,66,0,0,0,1,0,0,5,1,0,0,0,11,133,0,0,0,0,0,1,2,0,0,6,0,6,0,0,43584,43,333,0,18,0,0,0,0,0,55,6,0,0,0,1,7,21,8441,0,2,11,2,0,0,14,0,266,20,10,0,0,2,2,153,0,1,0,0,1079,0,0,0,0,2,0,3,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6,10,10,10,0,0,0,4948,0,125,0,0,0,20,32,208,167,4931,0,0,0,0,1,0,4,0,0,0,0,0,0,11172,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,32,20,319,10,0,0,508,0,530,0,0,0,303,51,0,0,0,0,0,0,0,0,0,186,1,0,2,0,25,0,0,0,0,2,125,270,0,0,35,0,0,0,0,0,1847,0,0,11674,3,0,1,1,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,27,0,0,0,0,17,56,825,0,19,9,0,0,0,0,0,217,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,5,0,4,3615,268,1 +3,0,0,7,0,39,6,0,40,1,6,0,0,2,4,0,597,0,6,2,0,0,0,7,0,10,3,0,5,0,1,1,0,0,5,762,39,8,0,0,27,0,0,0,1,0,0,2,0,0,0,0,2,190,0,0,0,0,0,1,0,0,0,1,0,4,0,0,5577,39,661,0,4,0,0,0,0,0,15,0,0,0,0,0,8,18,1015,0,0,5,0,0,0,0,0,89,5,4,0,0,2,0,625,0,1,0,0,1173,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,462,0,49,0,0,0,2,7,257,330,431,0,0,0,0,1,0,4,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,16,202,7,0,0,222,0,314,0,0,0,69,20,0,0,0,0,0,0,0,0,0,661,1,0,0,0,9,0,0,0,0,1,122,22,0,0,1,0,0,0,0,0,1549,1,0,58,6,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,5,0,0,0,0,1,44,105,0,8,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,43,1 +33,0,0,10,0,34,13,0,25,16,7,0,0,0,25,0,19,0,6,2,0,0,0,2,0,0,0,0,1,0,2,0,0,0,21,0,34,6,0,0,88,0,0,0,1,0,0,6,0,0,0,0,1,222,0,0,0,0,0,1,0,0,0,6,0,28,0,0,5301,34,112,0,3,0,0,0,0,0,24,0,0,0,0,0,3,10,549,0,0,21,0,0,1,7,0,88,15,10,0,0,2,0,102,0,19,0,0,890,0,0,0,0,24,0,0,0,1,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,3,0,15,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,486,0,121,0,0,0,2,5,61,1220,498,0,0,0,0,1,0,0,0,0,0,0,0,0,1633,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,30,209,12,0,0,266,0,377,0,0,0,173,23,0,0,0,0,0,0,0,0,0,95,1,0,0,0,4,0,0,0,0,2,121,108,0,0,30,0,0,0,0,0,380,0,0,1079,0,0,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,3,0,0,0,0,1,55,274,0,3,0,0,0,0,0,0,97,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,3,535,39,1 +5,0,0,4,0,23,6,0,27,1,7,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,7,0,3,0,0,0,8,0,23,6,0,0,33,0,0,0,1,0,0,5,2,0,0,0,2,124,0,0,0,0,0,1,0,0,0,0,0,7,0,0,45547,23,92,0,10,0,0,0,0,0,18,0,0,0,0,0,1,10,9315,0,0,8,0,0,1,11,0,121,15,14,1,0,2,0,82,0,3,0,0,537,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,7,0,4,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,5725,0,116,0,0,0,4,7,51,125,5730,0,0,0,0,1,0,0,0,0,0,0,0,0,10675,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,8,178,4,0,0,185,0,230,0,0,0,103,20,0,0,0,0,0,0,0,0,0,67,1,0,6,0,2,0,0,0,0,3,105,83,0,0,31,0,0,0,0,0,1954,0,0,13013,0,0,1,0,0,0,0,0,24,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,11,0,0,0,4,1,31,132,0,10,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3870,125,1 +3,0,0,5,2,23,6,2,48,1,11,0,0,0,10,1,32,0,7,5,0,4,0,1,0,0,0,0,3,0,7,0,0,2,10,0,25,6,0,0,58,0,0,0,1,0,0,3,0,0,0,0,6,117,0,0,0,0,0,1,2,0,0,0,0,13,0,0,1095,23,234,0,10,0,0,0,0,0,16,6,0,0,0,0,1,7,206,0,2,10,2,0,1,13,0,134,15,6,0,0,2,2,119,0,8,0,0,310,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,153,0,96,0,0,0,12,11,47,282,160,0,0,0,0,1,0,0,0,0,0,0,0,0,569,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,13,198,7,0,0,224,0,264,0,0,0,96,4,0,0,0,0,0,0,0,0,0,115,1,0,0,0,10,0,0,0,0,3,109,59,0,0,30,0,0,0,0,0,105,0,0,289,0,0,1,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,15,0,0,0,8,17,35,261,0,10,0,0,0,0,0,0,89,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,1,0,4,1,2,277,39,1 +2,0,0,7,0,21,3,0,22,2,6,0,0,0,12,1,45,0,7,2,0,0,0,1,0,0,18,0,5,0,14,0,0,0,10,0,21,6,0,0,45,0,2,0,1,0,0,2,0,0,0,0,13,60,0,0,0,0,0,1,0,0,0,0,0,11,0,0,17130,21,134,0,19,0,0,0,0,0,9,0,0,0,0,0,2,6,1878,0,0,10,0,0,0,0,0,68,0,3,0,0,2,0,169,0,7,0,0,430,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,14,0,0,0,0,0,0,1383,0,43,0,0,0,26,47,47,50,1389,0,0,0,0,1,0,0,0,0,0,0,0,0,4640,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,22,147,9,0,0,145,0,275,0,0,0,77,6,0,0,0,0,0,0,0,0,0,96,1,0,0,0,3,0,0,0,0,14,107,33,0,0,0,0,0,0,0,0,1585,0,0,6015,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,374,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,25,0,0,0,8,1,31,127,0,37,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1599,2743,1 +4,0,0,3,6,15,2,6,72,3,9,0,0,0,6,0,65,0,6,13,0,12,0,1,0,0,0,0,4,0,1,0,0,6,2,0,21,42,0,0,16,0,0,0,1,0,0,3,0,0,0,0,0,130,0,0,0,0,0,1,6,0,0,3,0,6,0,0,1360,15,507,0,5,0,0,0,0,0,15,18,0,0,0,0,1,5,135,0,6,2,6,0,0,0,0,27,0,5,0,0,2,6,72,0,4,0,0,341,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,14,0,0,0,0,0,0,142,0,69,0,0,0,0,3,44,39,153,0,0,0,0,1,0,0,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,15,7,318,9,0,0,329,0,386,0,0,0,102,13,0,0,0,0,0,0,0,0,0,160,1,0,0,0,26,0,0,0,0,1,97,36,0,0,0,0,0,0,0,0,202,0,0,191,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,49,23,303,0,5,0,0,0,0,0,0,49,6,0,0,0,0,0,0,0,0,0,0,0,6,0,1,3,0,0,0,0,0,0,0,0,0,0,0,12,0,3,209,73,1 +2,0,0,1,0,32,8,0,19,0,1,0,0,0,10,0,19,0,9,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,19,2,32,3536,0,0,26,0,0,0,1,0,0,1,2,0,0,0,1,34,0,0,0,0,0,1,0,0,0,0,0,9,0,0,945,32,82,0,3,0,0,0,0,0,34,0,0,0,0,0,1,3,35,0,0,19,0,0,0,0,0,12,0,6,0,0,2,0,51,0,0,0,0,627,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,54,0,72,0,0,0,2,5,69,1491,53,0,0,0,0,1,0,0,0,0,0,0,0,0,1101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,23,3,198,1,0,0,158,0,347,0,0,0,79,15,0,0,0,0,0,0,0,0,0,66,1,0,5,0,2,0,0,0,0,2,118,24,0,0,0,0,0,0,0,0,3612,0,0,21,0,0,1,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,3,0,0,0,0,1,51,79,0,3,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,164,46,1 +12,0,0,5,0,62,10,0,37,10,3,0,0,2,21,0,682,0,7,3,0,0,0,8,1,10,0,0,7,0,3,0,0,0,28,945,62,6,2,0,101,0,0,0,1,0,0,6,0,0,0,0,4,276,0,0,0,0,0,1,0,0,0,18,0,23,0,0,23105,62,796,0,7,0,0,0,0,0,31,0,0,0,0,0,10,27,4012,0,0,28,0,0,0,0,0,111,5,12,1,0,2,0,738,0,17,0,0,2017,0,0,0,0,8,4,6,0,2,0,0,1,0,0,0,6,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,7,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,68,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,42,12,12,12,0,0,0,3009,0,119,0,0,0,6,10,279,439,2995,0,0,0,0,1,0,6,0,0,0,0,0,0,664,0,0,0,0,0,0,0,0,0,1,0,0,6,1,0,0,0,0,0,1,1,32,29,321,5,0,0,339,0,486,0,0,0,185,20,0,0,0,0,0,0,0,0,0,762,1,0,0,0,12,0,0,0,0,3,149,49,0,0,0,0,0,0,0,0,2096,1,0,107,7,0,1,1,0,0,0,0,13,0,0,0,5,0,0,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,68,1,1,1,0,9,0,0,0,0,1,90,484,0,8,12,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,702,58,1 +8,0,0,10,0,19,2,0,35,4,5,0,0,0,19,0,25,0,13,1,0,0,0,2,0,1,0,0,3,0,7,0,0,0,6,0,19,6,167,0,44,0,0,0,1,0,0,1,0,0,0,0,2,60,0,0,0,0,0,1,0,0,0,0,0,12,0,0,290,19,81,0,11,0,0,0,0,0,5,0,0,0,0,0,2,4,50,0,0,6,0,0,0,0,0,30,0,1,0,0,2,0,61,0,9,0,0,264,0,0,0,0,11,1,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0,59,0,65,0,0,0,4,9,62,596,65,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,53,20,190,26,0,0,196,0,266,0,0,0,84,1948,0,0,0,0,0,0,0,0,0,99,1,0,0,0,3,0,0,0,0,3,148,30,0,0,0,0,0,0,0,0,49,0,0,27,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,12,0,0,0,0,2,25,106,0,11,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,148,72,1 +7,0,0,4,2,24,14,2,70,2,21,0,0,0,7,0,33,0,7,5,0,4,0,2,0,0,0,0,6,0,2,0,0,2,10,0,26,6,0,0,76,0,0,0,1,0,0,2,0,0,0,0,1,78,0,0,0,0,0,1,2,0,0,1,0,11,0,0,528,24,263,0,7,0,0,0,0,0,14,6,0,0,0,0,2,5,59,0,2,10,2,0,3,34,0,314,65,1,0,0,2,2,193,0,5,0,0,364,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6,0,0,0,0,0,0,76,0,74,0,0,0,2,4,58,234,86,0,0,0,0,1,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,10,204,6,0,0,268,0,259,0,0,0,138,9,0,0,0,0,0,0,0,0,0,152,1,0,0,0,11,0,0,0,0,1,112,131,0,0,144,0,0,0,0,0,69,0,0,22,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,8,0,0,0,0,17,36,190,0,8,0,0,0,0,0,0,111,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,4,0,1,161,66,1 +7,0,0,6,0,16,66,0,166,0,29,0,0,0,4,0,21,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,5,0,16,18,0,0,297,0,0,0,1,0,0,2,0,0,0,0,0,129,0,0,0,0,0,1,0,0,0,1,0,7,0,0,477,16,292,0,2,0,0,0,0,0,10,0,0,0,0,0,1,5,50,0,0,5,0,0,2,157,0,1251,120,4,0,0,2,0,744,0,1,0,0,301,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,2,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,73,0,63,0,0,0,0,3,37,863,73,0,0,0,0,1,0,0,0,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,110,6,0,0,212,0,331,0,0,0,147,10,0,0,0,0,0,0,0,0,0,292,1,0,0,0,2,0,0,0,0,1,98,358,0,0,462,0,0,0,0,0,61,0,0,36,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,1,0,0,0,0,1,21,127,0,2,0,0,0,0,0,0,455,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,329,79,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,375,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,44,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,258,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,56,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,108,3,0,0,114,0,197,0,0,0,40,6,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,54,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,136,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,100,22,1 +51,0,0,13,0,88,40,0,89,13,18,0,0,0,22,0,56,0,7,1,0,0,0,1,0,23,24,0,31,0,9,0,0,0,36,0,88,6,0,0,223,0,0,0,1,0,0,21,0,0,0,0,31,621,0,0,0,0,0,1,0,0,0,24,0,24,0,0,4683,88,389,0,63,0,0,0,0,0,50,0,0,0,0,0,1,38,408,0,0,36,0,0,1,66,0,608,50,18,0,0,2,0,567,0,18,0,0,1924,0,0,0,0,205,0,18,0,0,0,0,1,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,43,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,3,9,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,4,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,414,0,268,0,0,0,39,62,134,486,438,0,0,0,0,1,0,0,0,0,0,0,0,0,2225,0,0,0,0,0,0,0,0,0,0,0,0,21,0,2,0,0,0,0,0,0,8,41,397,18,0,0,644,0,890,0,0,0,455,47,0,0,0,0,0,0,4,0,0,232,1,0,0,0,2,0,0,0,0,19,195,1930,0,0,106,0,18,0,0,0,295,0,0,313,0,0,1,0,0,0,0,0,33,0,0,0,15,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,59,0,0,0,0,1,124,522,0,87,0,0,0,0,0,0,281,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1317,305,1 +14,0,0,6,0,55,10,0,40,1,12,0,0,2,7,1,20,0,7,3,0,0,0,7,0,8,0,0,15,0,6,0,0,0,19,0,55,35,0,0,110,0,0,0,1,0,0,4,0,0,0,0,6,189,0,0,0,0,0,1,0,0,0,0,0,14,0,0,2423,55,159,0,19,0,0,0,0,2,36,0,0,0,0,0,9,19,387,0,0,19,0,0,1,28,0,333,20,9,0,0,2,0,193,0,5,0,0,798,0,0,0,0,12,3,6,0,0,0,0,1,0,0,0,12,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,322,0,143,0,0,0,10,11,207,270,341,0,0,0,0,1,0,2,0,0,9,0,0,0,979,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,36,17,229,6,0,0,314,0,460,0,0,0,182,17,0,0,0,0,0,0,4,0,0,99,1,0,0,0,10,0,0,0,0,5,141,154,0,0,31,0,0,0,0,0,772,0,0,293,3,0,1,1,0,0,0,0,14,0,2,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,69,1,1,1,0,23,0,0,0,0,1,74,395,0,20,9,0,0,0,0,0,171,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,442,252,1 +8,0,0,6,0,56,8,0,22,7,4,0,0,2,20,1,18,0,7,3,0,0,0,6,0,8,0,0,7,0,12,0,0,0,27,0,56,6,0,0,97,0,0,0,1,0,0,2,0,0,0,0,12,139,0,0,0,0,0,1,0,0,0,12,0,22,0,0,1186,56,92,0,17,0,0,0,0,0,14,0,0,0,0,0,8,16,174,0,0,27,0,0,0,0,0,111,5,3,0,0,2,0,89,0,18,0,0,1014,0,0,0,0,14,0,0,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,131,0,90,0,0,0,22,20,220,67,138,0,0,0,0,1,0,4,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,32,257,6,0,0,262,0,364,0,0,0,142,18,0,0,0,0,0,0,0,0,0,82,1,0,0,0,9,0,0,0,0,8,146,45,0,0,0,0,0,0,0,0,122,0,0,59,3,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,15,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,27,0,0,0,8,1,83,301,0,18,9,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,2,221,75,1 +6,0,0,5,3,38,33,9,50,2,7,0,1,2,9,0,79,0,8,7,0,2,1,7,0,8,0,0,5,0,2,0,0,3,12,0,41,90,10,0,61,0,0,0,1,0,0,1,0,0,0,0,2,108,0,0,0,0,0,1,0,0,0,8,0,9,0,0,1232,38,257,0,5,0,0,0,0,0,9,6,0,0,0,0,8,15,197,0,9,12,3,0,2,0,0,126,5,1,0,0,6,3,66,0,6,0,0,814,0,0,0,0,2,0,5,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,143,0,76,0,0,0,2,5,202,49,156,0,0,0,0,1,0,7,0,0,0,0,0,0,396,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,146,37,364,8,0,0,394,0,613,0,1,0,144,21,0,0,0,0,0,0,0,0,0,189,0,0,0,0,17,0,0,0,0,2,139,49,0,0,0,0,0,0,0,0,263,0,0,98,3,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,40,1,1,1,0,5,0,0,0,0,25,53,94,0,6,9,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,236,96,1 +2,0,0,11,0,47,10,0,42,3,14,0,0,6,16,1,556,0,7,1,0,0,0,9,0,11,0,0,15,0,8,0,0,0,12,4333,47,6,0,0,87,0,4,0,1,0,0,5,0,0,0,0,8,401,0,0,0,0,0,1,0,0,0,0,0,12,0,0,16005,47,701,0,19,0,0,0,0,0,34,0,0,0,0,0,9,40,3450,0,0,12,0,0,0,0,0,255,20,9,0,0,2,0,662,0,7,13,0,2551,0,0,0,0,16,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,32,12,12,12,0,0,0,1095,0,75,0,0,0,17,20,312,804,1065,0,0,0,0,1,0,4,0,0,0,0,0,0,646,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,84,53,314,14,0,0,340,0,382,0,0,0,172,22,0,0,0,0,0,0,0,0,0,652,1,0,0,0,10,0,0,0,0,8,146,38,0,0,21,0,0,0,0,0,2371,1,0,1047,12,0,1,1,1,0,0,0,10,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,12,368,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,34,0,0,0,8,1,59,186,0,20,14,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1250,117,1 +41,2,0,41,0,92,74,0,120,20,82,1,0,8,77,2,1081,0,160,6,0,0,0,11,3,14,36,0,47,0,37,2,0,0,32,2839,92,95,4092,0,318,0,0,0,1,0,0,14,3,0,0,0,21,1432,0,0,0,0,0,1,0,0,0,0,0,17,0,0,197690,92,1845,0,88,0,0,0,0,0,120,0,0,0,0,3,16,179,102716,0,0,32,0,0,0,0,0,641,30,28,0,0,2,0,1840,0,61,123,0,276455,0,0,0,0,35,9,1,0,0,0,3,1,0,0,0,6,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,12,0,9,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,1,0,65,12,12,12,0,0,0,71849,0,16617,0,0,0,53,141,17108,34576,71908,0,0,0,0,1,0,3,0,0,0,0,0,0,5575,0,0,0,0,0,0,0,0,0,6,0,7,14,1,0,0,0,0,0,3,2,899,87,17452,55,0,0,17316,0,1202,3,0,0,16993,6359,0,0,0,0,0,0,0,0,0,1605,1,0,11,0,20,0,0,0,0,22,608,172,0,0,193,0,0,0,0,0,32860,1,0,4602,27,0,1,1,0,0,0,0,42,0,6,6,4,0,0,0,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,27,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,91,1,1,1,0,173,0,0,0,0,1,124,1149,0,124,12,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,24,0,0,0,0,0,0,2,11,0,0,0,0,0,10,36220,517,1 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,1,0,0,58,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,63,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,20,0,0,0,0,3,22,7,23,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,34,2,0,0,63,0,76,0,0,0,33,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,32,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,104,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,5,1 +12,0,0,15,2,63,56,2,93,4,15,1,0,2,25,0,124,0,11,4,0,0,0,8,0,8,3,0,13,0,2,0,0,2,27,0,65,102,0,0,134,0,0,0,1,0,0,4,0,0,0,0,2,182,0,0,0,0,0,1,0,0,0,2,0,21,0,0,7329,63,272,0,13,0,0,0,0,0,16,0,0,0,0,1,11,22,1517,0,2,27,2,0,4,16,0,319,35,6,0,0,6,2,203,0,12,0,0,1497,0,0,0,0,35,2,1,0,4,0,0,1,0,0,0,10,0,0,0,0,0,0,0,2,0,0,0,6,0,0,0,0,0,0,0,7,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,10,10,10,10,0,0,0,904,0,124,0,0,0,2,7,253,1278,909,0,0,0,0,1,0,3,0,0,0,0,0,0,1381,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,241,85,606,20,0,0,658,0,1083,0,2,0,286,33,0,0,0,0,0,0,0,0,0,327,1,0,0,0,12,0,0,0,0,2,230,85,0,0,58,0,1,0,0,0,596,0,0,1150,3,0,1,1,0,0,0,0,8,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,72,1,1,1,0,12,0,0,0,0,17,92,208,0,17,9,0,0,0,0,0,137,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,2,833,550,1 +65,0,0,6,6,81,78,13,149,33,20,0,0,3,45,2,297,0,11,16,0,6,1,6,0,24,15,0,10,0,4,2,0,6,47,0,86,103,0,0,236,0,0,0,1,0,0,3,0,0,0,0,22,210,0,0,0,0,0,1,0,0,0,12,0,46,0,0,1563,81,1045,0,32,0,0,0,0,0,15,12,0,0,0,0,12,21,208,0,13,47,6,0,4,32,0,484,45,4,0,0,6,6,457,0,37,0,0,1339,0,0,0,0,37,9,2,0,0,0,1,1,0,0,0,16,0,0,0,0,2,0,0,1,0,0,0,9,0,0,0,0,0,5,3,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,5,6,0,0,0,0,0,0,0,1,10,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,26,10,10,10,0,0,0,216,0,210,0,0,0,26,43,320,500,215,0,0,0,0,1,0,4,0,0,0,0,0,0,1102,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,250,72,739,12,0,0,760,0,1003,0,2,0,311,177,0,0,0,0,0,0,0,0,0,605,1,0,0,0,29,0,0,0,0,20,202,92,0,0,92,0,0,0,0,0,1295,0,0,108,4,0,1,3,0,0,0,0,4,0,0,0,1,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,37,37,0,0,4,1,0,0,0,0,3,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,86,1,1,1,0,21,0,0,0,2,77,133,264,0,46,9,0,0,0,0,0,273,8,0,0,0,0,0,0,0,0,0,0,0,6,0,1,39,0,0,0,0,0,0,0,0,0,0,0,9,0,2,490,227,1 +3,0,0,5,0,47,111,0,80,2,97,0,0,7,4,0,1517,0,7,1,0,0,0,9,0,11,3,0,23,0,2,0,0,0,3,30669,47,6,0,0,43,0,1,0,1,0,0,3,0,0,0,0,2,1859,0,0,0,0,0,1,0,0,0,0,0,2,0,0,360863,47,2139,0,21,0,0,0,0,0,225,0,0,0,0,0,9,333,46860,0,0,3,0,0,0,0,0,1049,25,6,0,0,2,0,1789,0,0,764,0,41500,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,1,12,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,12,12,12,0,0,0,27385,0,105,0,0,0,16,41,817,59591,27355,0,0,0,0,1,0,5,0,0,0,0,0,0,3768,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,108,30,355,5,0,0,616,0,342,0,0,0,428,18,0,0,0,0,0,0,0,0,0,1823,1,0,0,0,10,0,0,0,0,2,188,117,0,0,804,0,0,0,0,0,13925,1,0,1421,104,0,1,1,1,0,0,0,10,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,104,368,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,108,0,0,0,0,1,50,467,0,25,14,0,1,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9404,157,1 +6,0,0,7,2,62,92,8,55,4,92,0,0,7,12,0,92,0,6,7,0,2,2,9,0,11,0,0,20,0,3,0,0,2,12,1594,64,6,0,0,73,0,0,0,1,0,0,3,0,0,0,0,3,1314,0,0,0,0,0,1,0,0,0,8,0,12,0,0,44869,62,687,0,19,0,0,0,0,0,191,6,0,0,0,0,11,442,8181,0,8,12,2,0,0,0,0,1171,25,6,0,0,2,2,289,0,8,1083,0,7454,0,0,0,0,2,0,3,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,5,0,0,0,6,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,36,12,12,12,0,0,0,1037,0,112,0,0,0,16,18,676,4180,1021,0,0,0,0,1,0,3,0,0,0,0,0,0,753,0,0,0,0,0,0,0,0,0,0,0,0,3,1,4,0,0,0,0,1,0,108,26,425,9,0,0,678,0,722,0,0,0,434,38,0,0,0,0,0,0,0,0,0,356,1,0,0,0,20,0,0,0,0,2,179,183,0,0,925,0,0,0,0,0,5128,1,0,511,92,0,1,1,0,0,0,0,8,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,92,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,56,0,0,0,0,17,76,661,0,20,14,0,0,0,0,0,139,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,8,0,0,0,0,0,0,0,0,0,0,0,5,0,3,3498,74,1 +6,0,0,4,0,18,3,0,15,1,4,0,0,0,6,1,15,0,7,1,0,0,0,2,0,0,0,0,5,0,5,0,0,0,5,0,18,6,0,0,24,0,0,0,1,0,0,2,0,0,0,0,4,108,0,1,0,0,0,1,0,0,0,0,0,6,0,0,832,18,59,0,10,0,0,0,0,0,8,0,0,0,0,1,2,6,183,0,0,5,0,0,0,0,0,27,0,4,0,0,2,0,37,0,4,0,0,577,0,0,0,0,4,1,1,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0,171,0,108,0,0,0,8,10,41,52,219,0,0,0,0,1,0,0,0,0,0,0,0,0,516,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,8,13,135,4,0,0,167,0,266,0,0,0,98,22,0,0,0,0,0,0,0,0,0,51,1,0,0,0,3,0,0,0,0,4,104,65,0,0,0,0,0,0,0,0,68,0,0,55,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,13,0,0,0,0,1,23,325,0,10,0,0,0,0,0,0,108,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,250,36,1 +0,0,0,0,0,26,4,0,6,0,1,0,1,0,2,0,12,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,2,0,26,6,0,0,21,0,0,0,1,0,0,0,0,0,0,0,1,59,0,0,0,0,0,1,0,0,0,0,0,0,0,0,405,26,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,62,0,0,2,0,0,0,0,0,68,0,0,0,0,2,0,21,0,0,0,0,370,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,34,0,0,0,0,3,177,8,41,0,0,0,0,1,0,3,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,17,10,74,0,0,0,87,0,133,0,0,0,18,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,8,0,0,0,0,0,108,11,0,0,0,0,0,0,0,0,61,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,0,0,0,0,0,1,28,30,0,2,8,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,19,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,79,0,0,0,0,0,1,0,0,0,0,0,2,0,0,640,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,43,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,254,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,55,0,0,0,4,10,32,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,110,3,0,0,114,0,248,0,0,0,40,11,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,52,0,0,38,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,123,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,98,23,1 +10,0,0,4,0,30,3,0,22,8,3,0,0,0,15,0,18,0,7,1,0,0,0,2,0,0,0,0,21,0,3,0,0,0,15,0,30,11,0,0,50,0,0,0,1,0,0,3,0,0,0,0,2,97,0,0,0,0,0,1,0,0,0,19,0,16,0,0,856,30,94,0,24,0,0,0,0,0,14,0,0,0,0,0,2,6,92,0,0,15,0,0,0,0,0,42,0,5,0,0,2,0,72,0,12,0,0,439,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,10,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,110,0,87,0,0,0,4,7,58,84,123,0,0,0,0,1,0,0,0,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,17,178,4,0,0,199,0,329,0,0,0,115,14,0,0,0,0,0,0,0,0,0,68,1,0,0,0,3,0,0,0,0,3,116,54,0,0,0,0,0,0,0,0,1252,0,0,105,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,25,0,0,0,2,1,45,501,0,24,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,3,198,58,1 +6,0,0,4,4,31,8,4,50,2,8,0,0,0,10,1,48,0,9,9,0,8,0,1,0,0,0,0,9,0,7,0,0,4,12,2,35,6,0,0,44,0,0,0,1,0,0,2,2,0,0,0,6,119,0,0,0,0,0,1,4,0,0,2,0,10,0,0,1084,31,362,0,16,0,0,0,0,0,15,12,0,0,0,0,1,4,50,0,4,12,4,0,0,0,0,33,0,7,0,0,2,4,61,0,8,0,0,2614,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,75,0,114,0,0,0,12,11,67,45,84,0,0,0,0,1,0,0,0,0,0,0,0,0,841,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,13,352,8,0,0,337,0,390,0,0,0,138,19,0,0,0,0,0,0,0,0,0,134,1,0,5,0,18,0,0,0,0,3,129,47,0,0,0,0,0,0,0,0,93,0,0,31,0,0,1,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,21,0,0,0,8,33,47,215,0,16,0,0,0,0,0,0,60,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,2,0,0,0,0,0,0,0,0,0,0,0,8,0,1,218,76,1 +5380,0,0,13,0,77,10,0,86,6,25,0,0,6,33,0,1677,0,7,3,0,0,0,8,0,13,6,0,104,0,5,1,0,0,35,71,77,6,0,0,183,0,0,0,1,0,0,2,0,0,0,0,9,177,0,0,0,0,0,1,0,0,0,0,0,22,0,0,122733,77,1970,0,110,0,0,0,0,0,22,0,0,0,0,0,10,25,13801,0,0,35,0,0,2,16,0,440,50,5,0,0,2,0,2002,0,16,1,0,114295,0,0,0,0,16332,3,1,0,1,0,0,1,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,5438,0,0,0,0,0,10926,0,5369,0,0,0,0,0,0,5452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5449,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,93,12,12,12,0,0,0,5602,0,107,0,0,0,15,18,331,31011,5575,0,0,0,0,1,0,3,0,0,0,0,0,0,100717,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,97,935,15,0,0,355,0,480,0,0,0,192,286,0,0,0,0,0,0,0,0,0,1844,1,0,0,0,11,0,0,0,0,3,168,63,0,0,64,0,0,0,0,0,7681,1,0,8971,6,0,1,1,0,0,0,0,6,0,1,0,3,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,6,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,81,1,1,1,0,116,0,0,0,0,1,112,238,0,117,12,0,0,0,0,0,176,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5695,290,1 +5,0,0,3,0,20,2,0,17,2,3,0,0,0,7,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,7,0,20,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,0,60,0,0,0,0,0,1,0,0,0,0,0,7,0,0,454,20,53,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,59,0,0,7,0,0,0,0,0,12,0,3,0,0,2,0,29,0,5,0,0,301,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,4,0,3,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,82,0,81,0,0,0,0,3,38,22,86,0,0,0,0,1,0,0,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,8,133,3,0,0,140,0,237,0,0,0,64,16,0,0,0,0,0,0,0,0,0,50,1,0,0,0,2,0,0,0,0,1,104,33,0,0,0,0,0,0,0,0,32,0,0,42,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,3,0,0,0,0,1,27,342,0,4,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,142,25,1 +12,0,0,5,8,47,11,32,79,8,12,0,0,0,20,0,60,0,7,23,0,8,4,2,0,0,0,0,15,0,8,0,0,8,34,0,55,6,21,0,93,0,0,0,1,0,0,10,0,0,0,0,7,148,0,0,0,0,0,1,0,0,0,19,0,21,0,0,1556,47,732,0,23,0,0,0,0,0,35,24,0,0,0,3,4,22,167,0,32,34,8,0,0,0,0,84,0,16,1,0,2,8,132,0,11,0,0,686,0,0,0,0,7,0,2,0,0,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,189,0,134,0,0,0,14,17,93,81,196,0,0,0,0,1,0,0,0,0,0,0,0,0,683,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,8,22,422,13,0,0,507,0,451,0,0,0,304,44,0,0,0,0,0,0,0,0,0,189,1,0,0,0,37,0,0,0,0,8,133,128,0,0,0,0,0,0,0,0,163,0,0,128,0,0,1,0,0,0,0,0,15,0,0,0,7,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,29,0,0,0,0,65,89,430,0,23,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,8,0,0,0,0,0,0,0,0,0,0,0,12,0,4,307,35,1 +5,0,0,4,6,29,3,6,93,2,10,0,0,0,11,1,63,0,7,13,0,12,0,1,0,0,0,0,6,0,11,0,0,6,12,0,35,6,0,0,62,0,0,0,1,0,0,5,0,0,0,0,10,133,0,0,0,0,0,1,6,0,0,0,0,11,0,0,1228,29,548,0,17,0,0,0,0,0,21,18,0,0,0,0,1,8,156,0,6,12,6,0,0,0,0,55,0,8,0,0,2,6,84,0,9,0,0,626,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,156,0,105,0,0,0,20,18,73,57,168,0,0,0,0,1,0,0,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,14,373,10,0,0,400,0,382,0,0,0,159,12,0,0,0,0,0,0,0,0,0,188,1,0,0,0,26,0,0,0,0,7,115,58,0,0,0,0,0,0,0,0,145,0,0,151,0,0,1,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,26,0,0,0,8,49,47,324,0,17,0,0,0,0,0,0,100,6,0,0,0,0,0,0,0,0,0,0,0,6,0,1,2,0,0,0,0,0,0,0,0,0,0,0,11,0,4,269,63,1 +0,0,0,6,6,60,14,20,99,0,17,0,0,6,7,0,843,0,7,14,0,8,4,8,0,10,0,0,5,0,1,0,0,6,18,12949,66,90,0,0,159,0,0,0,1,0,0,13,0,0,0,0,1,608,0,0,0,0,0,1,2,0,0,16,0,6,0,0,77979,60,1865,0,3,0,0,0,0,0,59,18,0,0,0,2,9,36,19124,0,20,18,6,0,1,10,0,305,35,24,0,0,2,6,916,0,0,11,0,3650,0,0,0,0,5,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,11,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,16484,0,132,0,0,0,1,4,397,1051,16498,0,0,0,0,1,0,13,0,0,0,0,0,0,1014,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,1,0,86,18,509,12,0,0,756,0,713,0,0,0,468,25,0,0,0,0,0,0,0,0,0,993,1,0,0,0,34,0,0,0,0,0,203,213,0,0,40,0,3,0,0,0,3462,1,0,637,8,0,1,4,0,0,0,0,31,0,0,0,2,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,72,1,1,1,0,5,0,0,0,0,33,84,1037,0,4,12,0,0,0,0,0,266,5,0,0,0,0,0,0,0,0,0,0,0,9,0,1,6,3,0,0,0,0,0,0,0,0,0,0,12,0,2,1570,87,1 +6,0,0,4,0,35,3,0,16,0,4,0,0,0,7,1,36,0,7,2,0,0,0,1,0,0,0,0,4,0,10,0,0,0,21,0,35,69,0,0,69,0,0,0,1,0,0,9,0,0,0,0,9,182,0,0,0,0,0,1,0,0,0,0,0,7,0,0,2791,35,156,0,14,0,0,0,0,0,46,0,0,0,0,0,2,12,516,0,0,21,0,0,0,0,0,49,0,15,0,0,2,0,43,0,5,0,0,535,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,11,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,405,0,152,0,0,0,18,16,68,50,432,0,0,0,0,1,0,0,0,0,0,0,0,0,1035,0,0,0,0,0,0,0,0,0,0,0,0,14,0,4,0,0,0,0,0,0,8,12,209,4,0,0,314,0,324,0,0,0,235,34,0,0,0,0,0,0,13,0,0,74,1,0,0,0,3,0,0,0,0,6,137,100,0,0,0,0,1,0,0,0,230,0,0,531,0,0,1,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,22,0,0,0,8,1,56,441,0,14,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,514,46,1 +17,0,0,4,0,67,6,0,36,8,3,0,0,2,13,0,688,0,6,4,0,0,0,6,0,10,0,0,13,0,10,0,0,0,23,976,67,6,0,0,104,0,0,0,1,0,0,6,0,0,0,0,10,239,0,0,0,0,0,1,0,0,0,0,0,14,0,0,24740,67,798,0,20,0,0,0,0,0,28,0,0,0,0,0,9,26,4534,0,0,23,0,0,0,0,0,142,5,10,1,0,2,0,744,0,11,0,0,2523,0,0,0,0,40,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,21,0,0,0,0,0,22,0,15,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,12,12,12,0,0,0,3114,0,124,0,0,0,18,21,305,542,3099,0,0,0,0,1,0,5,0,0,0,0,0,0,694,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,21,342,4,0,0,334,0,376,0,0,0,146,16,0,0,0,0,0,0,0,0,0,754,1,0,0,0,10,0,0,0,0,10,150,31,0,0,0,0,0,0,0,0,2297,1,0,157,6,0,1,1,0,0,0,0,11,0,0,0,3,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,72,1,1,1,0,28,0,0,0,0,1,90,173,0,21,12,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,932,59,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,148,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2225,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,44,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,450,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,55,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,121,3,0,0,115,0,638,0,0,0,40,14,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,55,0,0,35,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,130,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,99,27,1 +7,0,0,15,0,51,8,0,49,16,19,0,0,6,20,1,760,0,7,2,0,0,0,11,0,11,3,0,29,0,4,0,0,0,10,1658,51,36,0,0,90,0,3,0,1,0,0,3,0,0,0,0,4,200,0,0,0,0,0,1,0,0,0,0,0,15,0,0,24101,51,894,0,29,0,0,0,0,0,17,0,0,0,0,0,12,72,5410,0,0,10,0,0,0,0,0,301,20,3,0,0,2,0,886,0,10,11,0,4113,0,0,0,0,24,0,1,0,2,0,0,1,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,42,12,12,12,0,0,0,1614,0,77,0,0,0,17,24,341,1749,1597,0,0,0,0,1,0,3,0,0,0,0,0,0,485,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,89,117,303,26,0,0,290,0,469,0,0,0,120,13,0,0,0,0,0,0,0,0,0,870,1,0,0,0,13,0,0,0,0,4,138,40,0,0,56,0,0,0,0,0,3595,1,0,824,7,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,2,0,0,0,7,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,68,0,0,0,4,1,61,122,0,33,14,0,1,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1840,129,1 +4,0,0,10,0,56,9,0,42,7,11,0,0,6,23,1,585,0,7,2,0,0,0,8,0,11,0,0,12,0,6,0,0,0,17,2175,56,6,0,0,118,0,0,0,1,0,0,8,0,0,0,0,6,814,0,0,0,0,0,1,0,0,0,0,0,20,0,0,38764,56,742,0,14,0,0,0,0,0,45,0,0,0,0,0,9,41,8767,0,0,17,0,0,0,0,0,236,20,14,0,0,2,0,692,0,15,14,0,2657,0,0,0,0,12,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,32,12,12,12,0,0,0,4527,0,127,0,0,0,12,10,309,2456,4496,0,0,0,0,1,0,4,0,0,0,0,0,0,4391,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,84,50,425,12,0,0,907,0,520,0,0,0,577,24,0,0,0,0,0,0,0,0,0,684,1,0,0,0,10,0,0,0,0,4,165,586,0,0,17,0,0,0,0,0,4129,1,0,8450,10,0,1,1,0,0,0,0,18,0,0,0,2,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,24,0,0,0,2,1,73,4128,0,15,14,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,7,4268,1460,1 +2,0,0,4,0,21,10,0,23,0,4,0,0,0,7,1,16,0,7,1,0,0,0,1,0,0,0,0,3,0,8,0,0,0,8,0,21,6,0,0,30,0,0,0,1,0,0,1,0,0,0,0,7,44,0,1,0,0,0,1,0,0,0,0,0,7,0,0,336,21,71,0,11,0,0,0,0,0,12,0,0,0,1,0,1,3,43,0,0,8,0,0,0,0,0,22,0,1,0,0,2,0,47,0,5,0,0,306,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,56,0,63,0,0,0,14,13,46,35,67,0,0,0,0,1,0,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,10,136,4,0,0,139,0,206,0,0,0,54,15,0,0,0,0,0,0,0,0,0,68,1,0,0,0,2,0,0,0,0,4,108,19,0,0,0,0,0,0,0,0,51,0,0,26,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,17,0,0,0,8,1,29,65,0,11,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,129,21,1 +4,0,0,6,0,50,7,0,40,5,4,0,0,2,17,1,18,0,7,3,0,0,0,6,0,8,0,0,8,0,11,0,0,0,18,0,50,6,0,0,73,0,0,0,1,0,0,5,0,0,0,0,11,183,0,0,0,0,0,1,0,0,0,5,0,19,0,0,4140,50,128,0,17,0,0,0,0,0,23,0,0,0,0,0,8,23,240,0,0,18,0,0,0,0,0,112,5,8,0,0,2,0,102,0,14,0,0,2028,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,205,0,192,0,0,0,20,19,220,65,205,0,0,0,0,1,0,6,0,0,0,0,0,0,672,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,1,0,32,26,423,6,0,0,739,0,577,0,0,0,612,68,0,0,0,0,0,0,0,0,0,96,1,0,0,0,9,0,0,0,0,7,146,525,0,0,0,0,0,0,0,0,123,0,0,116,3,0,1,1,0,0,0,0,12,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,26,0,0,0,10,1,68,2097,0,18,9,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,3,383,188,1 +7,0,0,4,0,47,6,0,36,8,3,0,0,2,13,0,579,0,6,3,0,0,0,6,0,10,0,0,8,0,4,0,0,0,9,898,47,6,0,0,58,0,0,0,1,0,0,4,0,0,0,0,4,197,0,0,0,0,0,1,0,0,0,0,0,14,0,0,18637,47,672,0,9,0,0,0,0,0,25,0,0,0,0,0,8,21,3271,0,0,9,0,0,0,0,0,108,5,9,0,0,2,0,624,0,11,0,0,1372,0,0,0,0,14,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,8,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,12,12,12,0,0,0,2616,0,106,0,0,0,6,9,253,360,2587,0,0,0,0,1,0,3,0,0,0,0,0,0,495,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,258,4,0,0,268,0,327,0,0,0,98,8,0,0,0,0,0,0,0,0,0,645,1,0,0,0,9,0,0,0,0,4,130,27,0,0,0,0,0,0,0,0,1600,1,0,151,6,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,11,0,0,0,0,1,56,153,0,10,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,578,46,1 +6167,0,0,5,0,61,12,0,32,4,3,0,0,2,12,0,24,0,6,3,0,0,0,7,0,9,3,0,100,0,3,0,0,0,22,0,61,6,0,0,68,0,0,0,1,0,0,4,1,0,0,0,4,271,0,0,0,0,0,1,0,0,0,10,0,14,0,0,76255,61,232,0,102,0,0,0,0,0,43,0,0,0,0,0,9,23,3975,0,0,22,0,0,0,0,0,188,5,12,0,0,2,0,178,0,10,0,0,124184,0,0,0,0,18600,0,1,0,3,0,0,1,0,0,0,4,0,0,0,0,0,0,0,2,0,0,0,6201,0,0,0,2,0,12423,0,6165,0,0,0,0,0,0,6213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,6209,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,10,10,10,0,0,0,2075,0,143,0,0,0,5,10,237,35204,2072,0,0,0,0,1,0,3,0,0,0,0,0,0,105806,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,0,0,0,0,1,0,32,22,680,5,0,0,351,0,953,0,0,0,196,128,0,0,0,0,0,0,2,0,0,91,1,0,3,0,10,0,0,0,0,2,147,100,0,0,0,0,0,0,0,0,1235,0,0,4395,3,0,1,1,0,0,0,0,17,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,101,0,0,0,0,1,83,452,0,106,9,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,1,0,0,0,4,1939,170,1 +3,0,0,9,0,34,3,0,25,4,7,0,0,0,13,2,20,0,7,1,0,0,0,1,0,0,3,0,4,0,5,1,0,0,23,0,34,6,0,0,74,0,0,0,1,0,0,3,0,0,0,0,5,107,0,0,0,0,0,1,0,0,0,0,0,12,0,0,8829,34,99,0,10,0,0,0,0,0,13,0,0,0,0,0,1,6,2283,0,0,23,0,0,0,0,0,29,0,5,0,0,2,0,81,0,8,0,0,622,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,1449,0,79,0,0,0,10,15,62,64,1450,0,0,0,0,1,0,0,0,0,0,0,0,0,2714,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0,0,0,0,0,8,23,216,12,0,0,433,0,395,0,0,0,360,18,0,0,0,0,0,0,0,0,0,77,1,0,0,0,2,0,0,0,0,5,121,270,0,0,0,0,1,0,0,0,504,0,0,1876,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,15,0,0,0,0,1,57,1207,0,13,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1022,127,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,111,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1247,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,42,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,390,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,56,0,0,0,4,10,36,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,117,3,0,0,117,0,410,0,0,0,40,9,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,59,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,119,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,100,24,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,7,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,75,0,0,0,0,0,1,0,0,0,0,0,2,0,0,485,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,44,0,0,7,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,471,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,56,0,0,0,4,10,32,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,122,3,0,0,114,0,206,0,0,0,49,10,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,54,0,0,35,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,24,135,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,100,23,1 +8,0,0,4,0,46,6,0,36,8,3,0,0,2,13,0,566,0,6,3,0,0,0,6,0,10,0,0,8,0,5,0,0,0,9,898,46,6,0,0,64,0,0,0,1,0,0,4,0,0,0,0,5,199,0,0,0,0,0,1,0,0,0,0,0,14,0,0,21538,46,660,0,10,0,0,0,0,0,25,0,0,0,0,0,8,21,3737,0,0,9,0,0,0,0,0,112,5,9,0,0,2,0,612,0,11,0,0,1331,0,0,0,0,16,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,10,0,6,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,12,12,12,0,0,0,3115,0,106,0,0,0,8,11,244,367,3088,0,0,0,0,1,0,3,0,0,0,0,0,0,529,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,250,4,0,0,266,0,331,0,0,0,98,8,0,0,0,0,0,0,0,0,0,632,1,0,0,0,9,0,0,0,0,5,129,27,0,0,0,0,0,0,0,0,1551,1,0,149,6,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,13,0,0,0,0,1,55,157,0,11,12,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,564,45,1 +3,0,0,8,0,38,7,0,41,0,9,0,0,2,3,1,454,0,7,2,0,0,0,7,0,10,0,0,7,0,7,0,0,0,6,955,38,6,0,0,37,0,2,0,1,0,0,2,0,0,0,0,7,210,0,0,0,0,0,1,0,0,0,0,0,6,0,0,18565,38,537,0,11,0,0,0,0,0,17,0,0,0,0,0,8,19,4241,0,0,6,0,0,1,9,0,181,25,4,0,0,2,0,521,0,1,0,0,2995,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,12,12,12,0,0,0,667,0,49,0,0,0,12,11,232,1238,653,0,0,0,0,1,0,3,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,15,217,8,0,0,263,0,354,0,0,0,115,15,0,0,0,0,0,0,0,0,0,524,1,0,0,0,9,0,0,0,0,3,125,69,0,0,45,0,0,0,0,0,3091,1,0,881,6,0,1,1,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,6,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,16,0,0,0,8,1,44,204,0,12,12,0,0,0,0,0,42,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1815,51,1 +6784,0,0,10,0,38,9,0,25,2,11,0,0,0,16,0,17,0,6,1,0,0,0,1,0,2,0,0,94,0,1,0,0,0,17,0,38,6,0,0,62,0,0,0,1,0,0,1,1,0,0,0,2,147,0,0,0,0,0,1,0,0,0,0,0,15,0,0,67383,38,186,0,97,0,0,0,0,0,20,0,0,0,0,0,1,4,62,0,0,17,0,0,1,8,0,177,15,6,0,0,2,0,179,0,10,0,0,128712,0,0,0,0,20323,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,6777,0,0,0,2,0,13546,0,6775,0,0,0,0,0,0,6791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6780,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,85,0,108,0,0,0,2,5,69,37854,83,0,0,0,0,1,0,0,0,0,0,0,0,0,106738,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,25,532,12,0,0,368,0,278,0,0,0,266,155,0,0,0,0,0,0,0,0,0,84,1,0,4,0,2,0,0,0,0,4,120,215,0,0,29,0,0,0,0,0,132,0,0,41,0,0,1,0,0,0,0,0,8,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,94,0,0,0,0,1,55,736,0,97,0,0,0,0,0,0,64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,152,1 +391,0,0,3,0,20,2,0,15,7,3,0,0,0,11,0,15,0,6,1,0,0,0,1,0,0,0,0,88,0,386,0,0,0,4,0,20,6,0,0,2320,0,0,0,1,0,0,2,0,0,0,0,385,93,0,0,0,0,0,1,0,0,0,0,0,11,0,0,3058,20,527,0,474,0,0,0,0,0,10,0,0,0,0,0,1,5,72,0,0,4,0,0,0,0,0,1638,0,3,0,0,2,0,504,0,9,0,0,6835,0,0,0,0,1155,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,386,0,0,0,0,0,770,0,384,0,0,0,0,0,0,395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,387,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,85,0,53,0,0,0,770,772,46,3845,97,0,0,0,0,1,0,0,0,0,0,0,0,0,5899,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,12,1071,3,0,0,130,0,450,0,0,0,47,23,0,0,0,0,0,0,0,0,0,52,1,0,0,0,2,0,0,0,0,386,102,27,0,0,0,0,0,0,0,0,565,0,0,441,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,858,0,0,0,0,1,24,102,0,474,0,0,0,0,0,0,2336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,4,207,35,1 +2,0,0,11,0,58,11,0,59,42,52,0,0,6,14,1,1504,0,7,1,0,0,0,9,0,11,0,0,99,0,13,0,0,0,9,5803,58,6,0,0,100,0,8,0,1,0,0,8,0,0,0,0,13,369,0,0,0,0,0,1,0,0,0,0,0,10,0,0,88043,58,1797,0,108,0,0,0,0,0,37,0,0,0,0,0,9,208,19107,0,0,9,0,0,0,0,0,609,20,8,0,0,2,0,1652,0,5,55,0,13044,0,0,0,0,65,0,4,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,70,12,12,12,0,0,0,5547,0,165,0,0,0,67,70,557,6068,5526,0,0,0,0,1,0,6,0,0,0,0,0,0,999,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,84,290,544,13,0,0,514,0,506,0,0,0,313,21,0,0,0,0,0,0,0,0,0,1654,1,0,0,0,10,0,0,0,0,13,210,143,0,0,222,0,0,0,0,0,11377,1,0,1566,12,0,1,1,1,0,0,0,19,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,12,373,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,74,1,1,1,0,248,0,0,0,8,1,67,239,0,109,14,0,1,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,46,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6974,272,1 +11,0,0,10,0,27,4,0,29,2,7,0,0,0,17,1,31,0,12,1,0,0,0,2,0,1,3,0,10,0,21,0,0,0,12,0,27,6,112,0,59,0,5,0,1,0,0,5,0,0,0,0,15,151,0,0,0,0,0,1,0,0,0,0,0,10,0,0,4278,27,145,0,32,0,0,0,0,0,25,0,0,0,0,0,2,9,1179,0,0,12,0,0,0,0,0,93,0,6,0,0,2,0,104,0,6,0,0,547,0,0,0,0,20,3,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,1,0,0,1,3,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,6,0,0,0,0,0,0,491,0,92,0,0,0,30,40,77,554,490,0,0,0,0,1,0,0,0,0,0,0,0,0,1190,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,45,21,222,12,0,0,256,0,432,0,0,0,137,2005,0,0,0,0,0,0,4,0,0,101,1,0,0,0,3,0,0,0,0,15,152,59,0,0,0,0,0,0,0,0,437,0,0,1526,0,0,1,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,383,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,45,0,0,0,20,2,39,470,0,35,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,653,88,1 +2,0,0,3,2,24,5,2,32,0,5,0,0,0,3,0,32,0,7,5,0,4,0,1,0,0,0,0,4,0,1,0,0,2,7,1,26,6,0,0,21,0,0,0,1,0,0,3,3,0,0,0,0,67,0,0,0,0,0,1,2,0,0,1,0,3,0,0,1286,24,231,0,5,0,0,0,0,0,22,6,0,0,0,0,1,5,72,0,2,7,2,0,0,0,0,18,0,11,0,0,2,2,28,0,1,0,0,3465,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,101,0,124,0,0,0,0,3,54,29,107,0,0,0,0,1,0,0,0,0,0,0,0,0,1462,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,230,5,0,0,272,0,303,0,0,0,136,10,0,0,0,0,0,0,0,0,0,84,1,0,8,0,10,0,0,0,0,1,111,77,0,0,0,0,0,0,0,0,68,0,0,45,0,0,1,0,0,0,0,0,18,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,4,0,0,0,0,17,33,298,0,5,0,0,0,0,0,0,46,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,242,66,1 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,163,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,8,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,90,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,22,0,0,0,0,3,24,7,31,0,0,0,0,1,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,41,0,0,0,85,0,167,0,0,0,55,3,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,93,49,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,125,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,8,1 +3,0,0,7,0,29,3,0,32,1,7,0,0,0,12,1,25,0,7,4,0,0,0,5,0,0,6,0,2,0,5,0,0,0,11,0,29,6,0,0,49,0,2,0,1,0,0,9,0,0,0,0,4,147,0,0,0,0,0,1,0,0,0,0,0,10,0,0,3502,29,172,0,7,0,0,0,0,0,47,0,0,0,0,1,8,25,836,0,0,11,0,0,0,0,0,52,0,14,2,0,2,0,99,0,6,0,0,490,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,530,0,177,0,0,0,8,16,74,38,519,0,0,0,0,1,0,0,0,0,0,0,0,0,1244,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,8,25,175,9,0,0,223,0,286,0,0,0,128,12,0,0,0,0,0,0,2,0,0,87,1,0,0,0,9,0,0,0,0,5,115,52,0,0,0,0,0,0,0,0,229,0,0,952,0,0,1,0,1,0,0,0,22,0,0,0,7,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,185,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,8,0,0,0,0,1,40,392,0,13,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,603,141,1 +2,0,0,10,0,57,10,0,57,7,14,0,0,6,17,1,1002,0,7,1,0,0,0,9,0,11,0,0,14,0,7,0,0,0,15,3808,57,6,0,0,100,0,3,0,1,0,0,4,0,0,0,0,7,452,0,0,0,0,0,1,0,0,0,0,0,14,0,0,19123,57,1147,0,17,0,0,0,0,0,28,0,0,0,0,1,9,43,4020,0,0,15,0,0,0,0,0,258,20,5,0,0,2,0,1109,0,9,20,0,3228,0,0,0,0,28,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,50,12,12,12,0,0,0,1289,0,86,0,0,0,15,16,335,1528,1268,0,0,0,0,1,0,4,0,0,0,0,0,0,440,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,84,49,341,12,0,0,341,0,356,0,0,0,161,16,0,0,0,0,0,0,0,0,0,1114,1,0,0,0,10,0,0,0,0,7,159,18,0,0,29,0,0,0,0,0,3441,1,0,843,11,0,1,1,1,0,0,0,7,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,11,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,68,1,1,1,0,31,0,0,0,0,1,72,234,0,18,14,0,2,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1412,86,1 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,44,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,8,1 +1,0,0,0,1,10,3,4,14,0,2,0,1,0,4,0,17,0,6,3,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,11,9,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,51,10,87,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,9,0,4,0,0,0,1,0,0,9,0,0,0,0,4,1,16,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,14,0,20,0,0,0,0,3,28,6,29,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,17,79,2,0,0,76,0,106,0,0,0,10,3,0,0,0,0,0,0,0,0,0,47,0,0,0,0,6,0,0,0,0,0,93,2,0,0,0,0,0,0,0,0,201,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,9,11,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,39,6,1 +2,0,0,7,0,28,3,0,885,4,7,0,0,0,14,1,883,0,7,1,0,0,0,1,0,0,0,0,5,0,6,0,0,0,13,0,28,6,0,0,56,0,0,0,1,0,0,5,2,0,0,0,5,91,0,0,0,0,0,1,0,0,0,0,0,13,0,0,5419,28,972,0,11,0,0,0,0,0,25,0,0,0,0,0,1,7,110,0,0,13,0,0,0,0,0,38,0,13,0,0,2,0,59,0,8,0,0,4741,0,0,0,0,23,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,138,0,211,0,0,0,10,13,78,2013,127,0,0,0,0,1,0,0,0,0,0,0,0,0,949,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,1310,29,829,9,0,0,290,0,190,0,0,0,206,197,0,0,0,0,0,0,0,0,0,1800,1,0,6,0,2,0,0,0,0,6,114,144,0,0,0,0,0,0,0,0,458360,0,0,91,0,0,1,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,15,0,0,0,0,1,41,352,0,11,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,208,2309,1 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3964,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,2033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,33,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,41,2,0,0,40,0,35,0,0,0,10,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,9,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,17,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,5,1 +0,0,0,2,0,9,2,0,14,0,2,0,0,0,2,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,9,35,0,1,0,0,0,0,0,4,0,0,0,0,0,2,4,26,0,0,0,0,0,0,0,0,9,0,2,0,0,2,0,13,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0,33,0,30,0,0,0,0,3,26,5,47,0,0,0,0,1,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,99,0,0,0,30,4,0,0,0,0,0,0,0,0,0,40,1,0,0,0,3,0,0,0,0,0,93,21,0,0,0,0,0,0,0,0,26,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,9,88,0,1,0,0,0,1,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,12,1 +3,0,0,5,2,24,6,2,48,1,11,0,0,0,10,1,32,0,7,5,0,4,0,1,0,0,0,0,3,0,7,0,0,2,10,0,26,6,0,0,58,0,0,0,1,0,0,3,0,0,0,0,6,119,0,0,0,0,0,1,2,0,0,0,0,13,0,0,1107,24,234,0,10,0,0,0,0,0,16,6,0,0,0,0,1,7,209,0,2,10,2,0,1,13,0,134,15,6,0,0,2,2,119,0,8,0,0,372,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,155,0,99,0,0,0,12,11,51,285,162,0,0,0,0,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,13,210,7,0,0,227,0,264,0,0,0,96,10,0,0,0,0,0,0,0,0,0,115,1,0,0,0,10,0,0,0,0,3,110,59,0,0,30,0,0,0,0,0,109,0,0,292,0,0,1,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,15,0,0,0,8,17,36,261,0,10,0,0,0,0,0,0,89,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,1,0,4,1,2,287,39,1 +30,0,0,9,0,30,10,0,69,20,42,0,0,0,52,0,27,0,7,1,0,0,0,3,0,0,6,0,9,0,8,2,0,0,15,0,30,6,0,0,189,0,0,0,1,0,0,7,0,0,0,0,9,319,0,0,0,0,0,1,0,0,0,7,0,38,0,0,1527,30,274,0,19,0,0,0,0,0,31,0,0,0,0,0,3,12,220,0,0,15,0,0,2,50,0,458,35,11,0,0,2,0,437,0,27,0,0,772,0,0,0,0,8,8,0,0,8,0,1,1,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,7,0,0,0,0,0,1,0,7,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,3,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,10,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,12,0,0,0,0,0,0,222,0,138,0,0,0,18,25,60,433,235,0,0,0,0,1,0,0,0,0,0,0,0,0,846,0,0,0,0,0,0,0,0,0,1,0,0,7,0,0,0,0,0,0,0,1,8,61,265,11,0,0,246,0,323,0,0,0,165,43,0,0,0,0,0,0,0,0,0,207,1,0,0,0,4,0,0,0,0,8,139,991,0,0,74,0,0,0,0,0,137,0,0,242,0,0,1,0,0,0,0,0,15,0,1,0,2,0,0,0,0,0,19,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,25,0,0,0,0,1,45,442,0,25,0,0,0,0,0,0,200,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,7,493,154,1 +12,0,0,4,0,15,2,0,34,0,3,0,0,0,4,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,5,0,15,6,0,0,12,0,0,0,1,0,0,6,0,0,0,0,0,134,0,0,0,0,0,1,0,0,0,0,0,5,0,0,949,15,90,0,4,0,0,0,0,0,21,0,0,0,0,1,1,10,131,0,0,5,0,0,0,0,0,19,0,7,0,0,2,0,39,0,1,0,0,356,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,144,0,107,0,0,0,0,3,38,16,143,0,0,0,0,1,0,0,0,0,0,0,0,0,376,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,4,146,4,0,0,200,0,200,0,0,0,133,23,0,0,0,0,0,0,0,0,0,64,1,0,0,0,2,0,0,0,0,1,98,88,0,0,0,0,0,0,0,0,60,0,0,88,0,0,1,0,0,0,0,0,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,20,589,0,4,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,236,89,1 +13,0,0,6,0,31,34,0,134,7,39,0,0,0,14,0,61,0,7,1,0,0,0,3,0,5,35,0,7,0,11,0,0,0,18,0,31,6,0,0,194,0,0,0,1,0,0,2,0,0,0,0,15,130,0,0,0,0,0,1,0,0,0,12,0,18,0,0,1726,31,346,0,23,0,0,0,0,0,9,0,0,0,0,0,3,7,222,0,0,18,0,0,2,101,0,851,170,2,0,0,2,0,650,0,12,0,0,764,0,0,0,0,10,0,1,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,176,0,70,0,0,0,30,57,68,422,196,0,0,0,0,1,0,0,0,0,0,0,0,0,705,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,19,190,6,0,0,217,0,307,0,0,0,143,26,0,0,0,0,0,0,0,0,0,289,1,0,0,0,4,0,0,0,0,10,121,204,0,0,370,0,0,0,0,0,170,0,0,231,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,32,0,0,0,0,1,49,200,0,58,0,0,0,0,0,0,237,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,186,62,1 +2,0,0,4,0,24,3,0,5,2,4,0,0,0,10,1,19,0,7,2,0,0,0,0,0,0,6,0,6,0,11,0,0,0,13,0,24,6,0,0,38,0,0,0,1,0,0,1,0,0,0,0,10,32,0,0,0,0,0,1,0,0,0,0,0,10,0,0,250,24,63,0,17,0,0,0,0,0,2,0,0,0,0,0,1,3,9,0,0,13,0,0,0,0,0,28,0,0,0,0,2,0,77,0,8,0,0,315,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,23,0,43,0,0,0,20,20,46,31,35,0,0,0,0,1,0,0,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,13,109,4,0,0,106,0,165,0,0,0,67,5,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,5,110,23,0,0,0,0,0,0,0,0,67,0,0,13,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,24,0,0,0,8,1,37,69,0,23,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,15,1 +7647,0,0,3,0,19,2,0,8,1,3,0,0,0,5,0,15,0,6,1,0,0,0,1,0,0,0,0,98,0,1,0,0,0,4,0,19,6,0,0,15,0,0,0,1,0,0,2,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,5,0,0,77043,19,138,0,99,0,0,0,0,0,8,0,0,0,0,0,1,5,54,0,0,4,0,0,0,0,0,108,0,2,0,0,2,0,111,0,3,0,0,156824,0,0,0,0,22918,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,7640,0,0,0,0,0,15277,0,7640,0,0,0,0,0,0,7650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7639,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,69,0,50,0,0,0,0,3,39,42352,83,0,0,0,0,1,0,0,0,0,0,0,0,0,128272,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,6,967,3,0,0,96,0,314,0,0,0,25,359,0,0,0,0,0,0,0,0,0,39,1,0,0,0,2,0,0,0,0,1,102,4,0,0,0,0,0,0,0,0,130,0,0,25,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,98,0,0,0,0,1,23,8,0,99,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,190,305,1 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,0,0,0,163,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,8,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,84,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,22,0,0,0,0,3,24,7,31,0,0,0,0,1,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,41,0,0,0,85,0,166,0,0,0,55,3,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,93,49,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,125,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,8,1 +12,0,0,4,0,28,3,0,18,5,3,0,0,0,15,0,15,0,6,2,0,0,0,2,0,0,0,0,6,0,3,0,0,0,12,0,28,6,0,0,48,0,0,0,1,0,0,1,0,0,0,0,2,58,0,0,0,0,0,1,0,0,0,13,0,16,0,0,476,28,59,0,9,0,0,0,0,0,4,0,0,0,0,0,3,5,103,0,0,12,0,0,0,0,0,25,0,1,0,0,2,0,50,0,12,0,0,619,0,0,0,0,14,0,0,0,2,0,0,1,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,8,0,0,0,0,0,4,0,9,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,90,0,57,0,0,0,4,7,56,36,102,0,0,0,0,1,0,0,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,17,162,4,0,0,179,0,250,0,0,0,98,12,0,0,0,0,0,0,0,0,0,60,1,0,0,0,4,0,0,0,0,3,116,49,0,0,0,0,0,0,0,0,81,0,0,10,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,10,0,0,0,0,1,40,152,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,93,14,1 +7,0,0,5,6,43,5,6,72,7,10,0,0,0,18,1,63,0,8,13,0,12,0,2,0,0,0,0,11,0,13,0,0,6,21,1,49,6,0,0,80,0,0,0,1,0,0,4,3,0,0,0,12,122,0,0,0,0,0,1,6,0,0,6,0,19,0,0,2820,43,553,0,24,0,0,0,0,0,22,18,0,0,0,0,2,7,137,0,6,21,6,0,0,0,0,70,0,13,0,0,2,6,109,0,16,0,0,8626,0,0,0,0,8,0,1,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,154,0,152,0,0,0,24,23,98,81,167,0,0,0,0,1,0,0,0,0,0,0,0,0,2461,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,23,503,11,0,0,439,0,400,0,0,0,186,30,0,0,0,0,0,0,0,0,0,177,1,0,8,0,27,0,0,0,0,9,140,41,0,0,0,0,0,0,0,0,145,0,0,84,0,0,1,0,0,0,0,0,18,0,3,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,35,0,0,0,8,49,70,246,0,24,0,0,0,0,0,0,99,6,0,0,0,0,0,0,0,0,0,0,0,6,0,1,7,0,0,0,0,0,0,0,0,0,0,0,13,0,4,331,128,1 +1,0,0,4,0,26,3,0,24,0,4,0,0,0,3,1,15,0,7,1,0,0,0,3,0,0,0,0,10,0,11,0,0,0,12,0,26,6,0,0,32,0,0,0,1,0,0,8,0,0,0,0,10,144,0,0,0,0,0,1,0,0,0,0,0,3,0,0,3055,26,109,0,21,0,0,0,0,0,28,0,0,0,0,1,3,14,687,0,0,12,0,0,0,0,0,68,0,10,0,0,2,0,49,0,1,0,0,561,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0,495,0,117,0,0,0,20,20,61,148,495,0,0,0,0,1,0,0,0,0,0,0,0,0,882,0,0,0,0,0,0,0,0,0,0,0,0,8,0,12,0,0,0,0,0,0,8,6,174,4,0,0,228,0,327,0,0,0,147,12,0,0,0,0,0,0,7,0,0,57,1,0,0,0,4,0,0,0,0,10,112,83,0,0,0,0,0,0,0,0,171,0,0,498,0,0,1,0,0,0,0,0,18,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,30,0,0,0,0,1,38,395,0,21,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,438,110,1 +3,0,0,3,2,20,2,2,35,0,5,0,0,0,3,0,32,0,6,5,0,4,0,2,0,0,0,0,4,0,1,0,0,2,9,0,22,12,0,0,24,0,0,0,1,0,0,1,0,0,0,0,0,61,0,0,0,0,0,1,2,0,0,1,0,3,0,0,392,20,190,0,5,0,0,0,0,0,6,6,0,0,0,0,2,4,43,0,2,9,2,0,0,0,0,17,0,2,0,0,2,2,35,0,1,0,0,236,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6,0,0,0,0,0,0,54,0,41,0,0,0,0,3,42,23,63,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,176,5,0,0,191,0,267,0,0,0,71,3,0,0,0,0,0,0,0,0,0,83,1,0,0,0,11,0,0,0,0,1,102,21,0,0,0,0,0,0,0,0,73,0,0,56,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,4,0,0,0,0,17,31,106,0,5,0,0,0,0,0,0,35,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,86,42,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,1,5,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,65,0,0,0,0,0,1,0,0,0,0,0,2,0,0,575,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,51,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,263,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,64,0,56,0,0,0,4,10,32,174,73,0,0,0,0,1,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,121,3,0,0,114,0,200,0,0,0,40,6,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,59,0,0,58,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,72,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,107,23,1 +6,0,0,9,1,38,37,1,73,14,22,0,2,0,32,0,73,0,9,1,0,0,0,2,0,0,0,0,6,0,5,0,0,1,25,0,39,88,0,0,324,0,0,0,1,0,0,12,0,0,0,0,4,591,0,0,0,0,0,1,0,0,0,0,0,25,0,0,2862,38,271,0,11,0,0,0,0,0,46,0,0,0,0,0,2,15,708,0,1,25,1,0,5,16,0,218,30,15,0,0,8,1,210,0,20,0,0,785,0,0,0,0,11,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,8,0,0,0,0,0,0,557,0,228,0,0,0,8,6,73,672,543,0,0,0,0,1,0,0,0,0,0,0,0,0,1669,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,131,107,397,12,0,0,473,0,847,0,1,0,265,35,0,0,0,0,0,0,0,0,0,248,1,0,0,0,3,0,0,0,0,1,142,141,0,0,58,0,2,0,0,0,428,0,0,275,0,0,1,0,0,0,0,0,29,0,1,0,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,36,1,1,1,0,14,0,0,0,0,9,64,609,0,11,0,0,0,0,0,0,758,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,18,0,0,0,0,0,0,0,0,0,0,0,1,0,9,741,232,1 +2,0,0,5,0,23,3,0,22,2,3,1,0,0,9,0,18,0,7,1,0,0,0,1,0,0,0,0,4,0,5,0,0,0,13,0,23,6,0,0,51,0,0,0,1,0,0,2,0,0,0,0,4,59,0,0,0,0,0,1,0,0,0,0,0,8,0,0,330,23,64,0,9,0,0,0,0,0,3,0,0,0,0,1,1,4,38,0,0,13,0,0,0,0,0,26,0,2,0,0,2,0,52,0,6,0,0,265,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,46,0,43,0,0,0,8,10,46,28,53,0,0,0,0,1,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,11,140,6,0,0,162,0,196,0,0,0,99,14,0,0,0,0,0,0,0,0,0,63,1,0,0,0,2,0,0,0,0,5,105,46,0,0,0,0,0,0,0,0,41,0,0,22,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,12,0,0,0,0,1,36,214,0,9,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,16,1 +1,0,0,3,2,12,2,2,28,0,5,0,0,0,3,0,31,0,6,6,0,3,0,1,0,0,0,0,1,0,1,0,0,2,2,0,14,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,0,60,0,0,0,0,0,1,2,0,0,0,0,3,0,0,397,12,175,0,2,0,0,0,0,0,8,6,0,0,0,1,1,5,47,0,2,2,2,0,0,0,0,13,0,2,0,0,2,2,22,0,1,0,0,188,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,60,0,46,0,0,0,0,3,31,15,70,0,0,0,0,1,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,141,5,0,0,189,0,212,0,0,0,79,1,0,0,0,0,0,0,0,0,0,75,1,0,0,0,10,0,0,0,0,1,94,49,0,0,0,0,0,0,0,0,58,0,0,25,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,1,0,0,0,0,17,16,203,0,2,0,0,0,0,0,0,31,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,104,18,1 +18,0,0,14,5,48,102,9,125,9,26,0,0,0,38,0,210,0,15,2,0,1,2,0,1,2,0,0,6,0,1,0,0,5,33,0,53,261,0,0,156,0,0,0,1,0,0,0,0,0,0,0,3,126,0,0,0,0,0,1,0,0,0,0,0,30,0,0,1503,48,425,0,10,0,0,0,0,0,0,3,0,0,0,0,1,1,3,0,9,33,5,0,7,24,0,385,45,0,0,0,10,5,249,0,24,0,0,1058,0,0,0,0,25,3,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,7,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,26,0,64,0,0,0,5,8,89,1414,49,0,0,0,0,1,0,0,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,427,90,747,21,0,0,827,0,1198,0,4,0,306,16,0,0,0,0,0,0,0,0,0,516,0,0,0,0,6,0,0,0,0,3,208,76,0,0,87,0,3,0,0,0,600,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,46,1,1,1,0,10,0,0,0,0,33,86,121,0,9,0,0,0,0,0,0,188,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,15,0,0,0,0,0,0,0,0,0,0,0,6,0,0,325,133,1 +1,0,0,3,0,16,8,0,15,0,3,0,0,0,3,0,25,0,6,2,0,0,0,0,0,0,9,0,3,0,6,0,0,0,5,0,16,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,5,23,0,0,0,0,0,1,0,0,0,0,0,3,0,0,296,16,67,0,9,0,0,0,0,0,6,0,0,0,0,0,1,1,3,0,0,5,0,0,0,0,0,8,0,0,0,0,2,0,76,0,1,0,0,321,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,17,0,58,0,0,0,10,15,33,13,25,0,0,0,0,1,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,93,3,0,0,158,0,238,0,0,0,110,6,0,0,0,0,0,0,0,0,0,60,0,0,0,0,2,0,0,0,0,1,98,93,0,0,0,0,0,0,0,0,63,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,10,0,0,0,0,1,21,345,0,18,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,17,1 +2,0,0,4,0,23,3,0,16,2,4,0,0,0,9,1,15,0,7,1,0,0,0,1,0,0,0,0,4,0,10,0,0,0,12,0,23,6,0,0,40,0,0,0,1,0,0,1,0,0,0,0,9,75,0,0,0,0,0,1,0,0,0,0,0,9,0,0,328,23,62,0,14,0,0,0,0,0,6,0,0,0,0,0,1,3,42,0,0,12,0,0,0,0,0,31,0,2,0,0,2,0,46,0,7,0,0,284,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,51,0,41,0,0,0,18,16,49,35,57,0,0,0,0,1,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,12,135,4,0,0,151,0,224,0,0,0,82,9,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,6,109,35,0,0,0,0,0,0,0,0,48,0,0,33,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,22,0,0,0,8,1,35,186,0,14,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,84,19,1 +4,0,0,5,0,27,4,0,15,3,4,0,0,0,14,1,15,0,7,1,0,0,0,2,0,0,0,0,4,0,9,0,0,0,15,0,27,6,0,0,58,0,0,0,1,0,0,1,0,0,0,0,9,35,0,0,0,0,0,1,0,0,0,8,0,15,0,0,239,27,62,0,14,0,0,0,0,0,4,0,0,0,0,0,2,4,40,0,0,15,0,0,0,0,0,33,0,1,0,0,2,0,55,0,11,0,0,394,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,47,0,51,0,0,0,18,14,52,41,58,0,0,0,0,1,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,16,146,5,0,0,130,0,201,0,0,0,61,13,0,0,0,0,0,0,0,0,0,60,1,0,0,0,3,0,0,0,0,6,113,5,0,0,0,0,0,0,0,0,52,0,0,17,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,22,0,0,0,8,1,42,33,0,13,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,93,47,1 +5,0,0,4,6,29,3,6,93,2,10,0,0,0,11,1,63,0,7,13,0,12,0,1,0,0,0,0,5,0,11,0,0,6,12,0,35,6,0,0,62,0,0,0,1,0,0,5,0,0,0,0,10,133,0,0,0,0,0,1,6,0,0,0,0,11,0,0,1150,29,546,0,16,0,0,0,0,0,22,18,0,0,0,0,1,8,144,0,6,12,6,0,0,0,0,54,0,9,0,0,2,6,84,0,9,0,0,566,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,152,0,107,0,0,0,20,19,73,58,163,0,0,0,0,1,0,0,0,0,0,0,0,0,445,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,14,370,10,0,0,401,0,375,0,0,0,160,15,0,0,0,0,0,0,0,0,0,188,1,0,0,0,26,0,0,0,0,7,115,58,0,0,0,0,0,0,0,0,138,0,0,124,0,0,1,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,25,0,0,0,8,49,47,320,0,16,0,0,0,0,0,0,100,6,0,0,0,0,0,0,0,0,0,0,0,6,0,1,2,0,0,0,0,0,0,0,0,0,0,0,12,0,3,261,66,1 +5,0,0,4,2,16,13,2,63,1,17,0,0,0,4,0,33,0,6,5,0,4,0,1,0,0,0,0,5,0,1,0,0,2,3,0,18,6,0,0,48,0,0,0,1,0,0,2,0,0,0,0,0,69,0,0,0,0,0,1,2,0,0,1,0,7,0,0,490,16,251,0,6,0,0,0,0,0,14,6,0,0,0,0,1,4,42,0,2,3,2,0,2,26,0,239,50,1,0,0,2,2,148,0,2,0,0,414,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6,0,0,0,0,0,0,62,0,64,0,0,0,0,3,39,169,69,0,0,0,0,1,0,0,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,5,177,6,0,0,239,0,196,0,0,0,112,7,0,0,0,0,0,0,0,0,0,136,1,0,0,0,10,0,0,0,0,1,100,117,0,0,115,0,0,0,0,0,62,0,0,21,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,5,0,0,0,0,17,21,183,0,6,0,0,0,0,0,0,76,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,132,61,1 +2,0,0,7,0,36,6,0,38,1,6,0,0,2,4,0,524,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,3,762,36,8,0,0,27,0,0,0,1,0,0,3,0,0,0,0,1,189,0,0,0,0,0,1,0,0,0,1,0,4,0,0,4675,36,586,0,2,0,0,0,0,0,19,0,0,0,0,0,8,19,858,0,0,3,0,0,0,0,0,89,5,6,0,0,2,0,538,0,1,0,0,966,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,385,0,52,0,0,0,0,3,251,324,347,0,0,0,0,1,0,3,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,16,180,7,0,0,217,0,299,0,0,0,62,7,0,0,0,0,0,0,0,0,0,586,1,0,0,0,9,0,0,0,0,1,119,24,0,0,1,0,0,0,0,0,1343,1,0,49,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,1,0,0,0,0,1,39,126,0,3,12,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365,43,1 +7,0,0,5,8,55,58,8,106,2,66,0,0,7,4,0,133,0,6,18,0,16,0,8,0,10,0,0,43,0,1,0,0,8,10,6753,63,46,0,0,62,0,0,0,1,0,0,4,0,0,0,0,1,614,0,0,0,0,0,1,8,0,0,4,0,2,0,0,104995,55,1662,0,41,0,0,0,0,0,127,24,0,0,0,0,9,221,17744,0,8,10,8,0,0,0,0,641,25,7,0,0,2,8,274,0,0,228,0,4330,0,0,0,0,4,0,9,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,22,12,12,12,0,0,0,9727,0,103,0,0,0,24,27,921,2053,9694,0,0,0,0,1,0,6,0,0,0,0,0,0,671,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,116,25,613,13,0,0,727,0,564,0,0,0,344,20,0,0,0,0,0,0,0,0,0,380,1,0,0,0,42,0,0,0,0,2,203,46,0,0,358,0,0,0,0,0,4108,1,0,359,56,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,112,0,0,0,0,65,73,171,0,42,12,0,0,0,0,0,116,8,0,0,0,0,0,0,0,0,0,0,0,10,0,2,6,0,0,0,0,0,0,0,0,0,0,0,16,0,4,3407,105,1 +7,0,0,6,2,49,9,8,37,5,6,0,0,2,13,1,37,0,7,8,0,2,1,6,0,8,6,0,19,0,16,2,0,2,19,0,51,6,7,0,66,0,0,0,1,0,0,2,0,0,0,0,18,170,0,0,0,0,0,1,0,0,0,9,0,15,0,0,1324,49,253,0,35,0,0,0,0,0,12,6,0,0,0,0,8,16,191,0,8,19,2,0,0,0,0,151,5,3,0,0,2,2,136,0,11,0,0,821,0,0,0,0,4,0,3,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,136,0,67,0,0,0,34,39,215,126,144,0,0,0,0,1,0,5,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,25,287,8,0,0,283,0,422,0,0,0,131,18,0,0,0,0,0,0,0,0,0,112,1,0,0,0,17,0,0,0,0,14,139,47,0,0,0,0,0,0,0,0,181,0,0,91,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,54,0,0,0,22,17,70,275,0,42,9,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,4,0,3,210,48,1 +0,0,0,0,0,25,4,0,6,0,1,0,1,0,2,0,12,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,6,0,0,19,0,0,0,1,0,0,0,0,0,0,0,1,60,0,0,0,0,0,1,0,0,0,0,0,0,0,0,416,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,60,0,0,1,0,0,0,0,0,68,0,0,0,0,2,0,21,0,0,0,0,423,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,28,0,0,0,0,3,176,8,41,0,0,0,0,1,0,3,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,17,10,81,0,0,0,84,0,114,0,0,0,15,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,8,0,0,0,0,0,107,11,0,0,0,0,0,0,0,0,58,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,22,0,2,8,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,23,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,7,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,93,0,0,0,0,0,1,0,0,0,0,0,2,0,0,893,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,45,0,0,7,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,335,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,56,0,0,0,4,10,32,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,123,3,0,0,114,0,308,0,0,0,49,12,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,53,0,0,38,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,24,135,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,100,24,1 +2,0,0,10,0,50,7,0,1079,4,10,0,0,6,14,1,2651,0,7,2,0,0,0,7,0,10,0,0,8,0,11,0,0,0,8,248,50,6,0,0,78,0,0,0,1,0,0,2,2,0,0,0,11,233,0,0,0,0,0,1,0,0,0,0,0,11,0,0,65588,50,2784,0,16,0,0,0,0,0,22,0,0,0,0,0,8,18,1278,0,0,8,0,0,0,0,0,232,20,8,0,0,2,0,1727,0,6,1,0,75249,0,0,0,0,14,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,12,12,12,0,0,0,419,0,2237,0,0,0,20,23,273,19631,394,0,0,0,0,1,0,3,0,0,0,0,0,0,3692,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,1605,39,10449,12,0,0,1681,0,479,0,0,0,1507,2233,0,0,0,0,0,0,0,0,0,3775,1,0,5,0,9,0,0,0,0,11,141,1437,0,0,6,0,0,0,0,0,539199,1,0,45,6,1,1,1,0,0,0,0,11,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,25,0,0,0,16,1,58,5752,0,17,12,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,606,7726,1 +6797,0,0,4,0,42,6,0,54,1,3,0,0,2,5,0,1240,0,6,3,0,0,0,6,0,10,0,0,101,0,1,0,0,0,5,71,42,6,0,0,30,0,0,0,1,0,0,4,0,0,0,0,1,206,0,0,0,0,0,1,0,0,0,0,0,6,0,0,88582,42,1433,0,99,0,0,0,0,0,25,0,0,0,0,0,8,21,3584,0,0,5,0,0,0,0,0,189,5,9,0,0,2,0,1359,0,3,0,0,139575,0,0,0,0,20384,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,6797,0,0,0,0,0,13589,0,6796,0,0,0,0,0,0,6813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6799,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,67,12,12,12,0,0,0,2790,0,105,0,0,0,0,3,241,37958,2762,0,0,0,0,1,0,4,0,0,0,0,0,0,114226,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,13,912,4,0,0,237,0,472,0,0,0,83,309,0,0,0,0,0,0,0,0,0,1316,1,0,0,0,9,0,0,0,0,1,125,27,0,0,0,0,0,0,0,0,3078,1,0,119,6,0,1,1,0,0,0,0,9,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,98,0,0,0,0,1,47,157,0,100,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,711,279,1 +3,0,0,6,0,44,81,0,34,0,80,0,0,7,5,0,70,0,6,2,0,0,0,8,0,11,3,0,19,0,1,0,0,0,8,1109,44,6,0,0,51,0,0,0,1,0,0,2,0,0,0,0,2,1393,0,0,0,0,0,1,0,0,0,0,0,4,0,0,41940,44,502,0,17,0,0,0,0,0,166,0,0,0,0,0,9,335,8156,0,0,8,0,0,0,0,0,1081,25,3,0,0,2,0,277,0,1,1015,0,6576,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,1043,0,78,0,0,0,14,21,596,3844,1028,0,0,0,0,1,0,4,0,0,0,0,0,0,562,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,108,17,251,6,0,0,426,0,260,0,0,0,276,17,0,0,0,0,0,0,0,0,0,283,1,0,0,0,10,0,0,0,0,2,142,60,0,0,846,0,0,0,0,0,4925,1,0,439,82,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,82,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,56,0,0,0,0,1,52,352,0,20,14,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3463,48,1 +6,0,0,15,0,53,10,0,50,5,10,0,0,6,20,1,881,0,7,3,0,0,0,10,0,11,3,0,11,0,4,0,0,0,10,2229,53,36,0,0,90,0,3,0,1,0,0,3,0,0,0,0,4,278,0,0,0,0,0,1,0,0,0,0,0,15,0,0,14417,53,997,0,11,0,0,0,0,0,21,0,0,0,0,0,12,40,3191,0,0,10,0,0,0,0,0,235,20,3,0,0,2,0,1001,0,10,14,0,2304,0,0,0,0,24,0,1,0,2,0,0,1,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,46,12,12,12,0,0,0,1320,0,75,0,0,0,8,15,314,893,1301,0,0,0,0,1,0,3,0,0,0,0,0,0,416,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,89,57,310,26,0,0,318,0,494,0,0,0,139,10,0,0,0,0,0,0,0,0,0,985,1,0,0,0,13,0,0,0,0,4,149,39,0,0,17,0,0,0,0,0,2508,1,0,783,9,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,9,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,23,0,0,0,4,1,63,121,0,15,14,0,1,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,3,750,113,1 +36,0,0,12,2,34,52,2,69,16,59,0,2,0,80,6,120,0,11,2,0,0,0,1,0,0,0,0,9,0,11,0,0,2,18,0,36,108,0,0,107,0,0,0,1,0,0,2,0,0,0,0,10,134,0,0,0,0,0,1,0,0,0,18,0,28,0,0,789,34,341,0,20,0,0,0,0,0,11,0,0,0,0,0,2,5,82,0,2,18,2,0,4,0,0,130,0,4,0,0,10,2,273,0,24,0,0,784,0,0,0,0,10,13,0,0,0,0,0,1,0,0,0,4,0,0,4,0,0,0,0,7,0,0,0,8,0,0,0,0,0,5,0,7,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,25,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,103,0,64,0,0,0,20,19,79,158,123,0,0,0,0,1,0,0,0,0,0,0,0,0,616,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,231,79,479,17,0,0,506,0,859,0,2,0,180,25,0,0,0,0,0,0,0,0,0,399,1,0,0,0,3,0,0,0,0,9,151,38,0,0,0,0,0,0,0,0,483,0,0,75,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,37,1,1,1,0,29,0,0,0,0,17,54,235,0,20,0,0,0,0,0,0,155,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,16,0,0,0,0,0,0,0,0,0,0,0,2,0,5,376,52,1 +5,0,0,7,2,54,12,8,63,10,15,0,0,0,22,1,25,0,7,6,0,2,1,2,0,0,0,0,13,0,17,0,0,2,36,0,56,6,3,0,155,0,0,0,1,0,0,3,0,0,0,0,16,173,0,0,0,0,0,1,0,0,0,12,0,27,0,0,801,54,284,0,30,0,0,0,0,0,12,6,0,0,0,0,2,6,97,0,8,36,2,0,1,25,0,263,20,5,0,0,2,2,237,0,19,0,0,770,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,98,0,118,0,0,0,32,20,89,294,117,0,0,0,0,1,0,0,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,28,315,9,0,0,337,0,344,0,0,0,212,34,0,0,0,0,0,0,0,0,0,145,1,0,0,0,11,0,0,0,0,5,147,410,0,0,40,0,0,0,0,0,127,0,0,97,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,45,0,0,0,14,17,92,344,0,30,0,0,0,0,0,0,161,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,4,0,3,257,108,1 +3,0,0,1,0,21,4,0,12,3,8,0,0,0,9,0,14,0,7,1,0,0,0,2,0,1,0,0,3,0,3,0,0,0,12,0,21,6,0,0,65,0,0,0,0,0,0,0,0,0,0,0,3,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,138,21,57,0,7,0,0,0,0,0,0,0,0,0,0,0,2,2,26,0,0,12,0,0,1,8,0,84,15,0,0,0,2,0,76,0,4,0,0,253,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,35,0,37,0,0,0,5,5,46,83,46,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,28,90,1,0,0,80,0,107,0,0,0,47,8,0,0,0,0,0,0,0,0,0,54,0,0,0,0,3,0,0,0,0,2,111,15,0,0,29,0,0,0,0,0,44,0,0,2,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,7,0,0,0,0,1,33,12,0,7,0,0,0,0,0,0,67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,18,1 +0,0,0,0,0,25,4,0,6,0,1,0,1,0,2,0,12,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,1,64,0,0,0,0,0,1,0,0,0,0,0,0,0,0,430,25,27,0,1,0,0,0,0,0,5,0,0,0,0,0,7,14,64,0,0,1,0,0,0,0,0,70,0,0,0,0,2,0,21,0,0,0,0,430,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,37,0,23,0,0,0,0,3,176,9,44,0,0,0,0,1,0,3,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,17,10,71,0,0,0,90,0,140,0,0,0,21,2,0,0,0,0,0,0,0,0,0,32,1,0,0,0,8,0,0,0,0,0,107,17,0,0,0,0,0,0,0,0,61,0,0,3,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,33,0,2,8,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,20,1 +6,0,0,10,2,209,53,2,85,6,18,0,0,0,19,0,117,0,11,1,0,0,0,2,0,0,0,0,4,0,4,0,0,2,197,0,211,136,0,0,467,0,0,0,1,0,0,4,0,0,0,0,3,107,0,0,0,0,0,1,0,0,0,0,0,15,0,0,1718,209,253,0,8,0,0,0,0,0,17,0,0,0,0,1,2,8,474,0,2,197,2,0,4,15,0,229,30,6,0,0,6,2,163,0,10,0,0,3250,0,0,0,0,8,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,321,0,277,0,0,0,6,6,246,712,336,0,0,0,0,1,0,0,0,0,0,0,0,0,1068,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,224,66,987,14,0,0,1086,0,838,0,2,0,781,11,0,0,0,0,0,0,0,0,0,303,1,0,0,0,3,0,0,0,0,1,320,121,0,0,63,0,0,0,0,0,464,0,0,92,0,0,1,0,0,0,0,0,9,0,1,0,4,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,207,1,1,1,0,10,0,0,0,0,17,408,374,0,8,0,0,0,0,0,0,506,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,4,440,106,1 +8,0,0,5,12,44,9,12,153,1,22,0,0,2,4,0,115,0,6,27,0,24,0,5,0,8,0,0,8,0,1,0,0,12,10,0,56,6,0,0,81,0,0,0,1,0,0,7,0,0,0,0,1,476,0,0,0,0,0,1,12,0,0,4,0,10,0,0,2916,44,1660,0,7,0,0,0,0,0,39,36,0,0,0,0,7,21,471,0,12,10,12,0,1,23,0,299,20,14,0,0,2,12,209,0,2,0,0,928,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,6,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,10,10,10,0,0,0,375,0,130,0,0,0,0,3,232,855,369,0,0,0,0,1,0,4,0,0,0,0,0,0,924,0,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,1,0,32,12,623,17,0,0,634,0,533,0,0,0,202,10,0,0,0,0,0,0,5,0,0,311,1,0,0,0,56,0,0,0,0,1,126,262,0,0,114,0,0,0,0,0,330,0,0,429,3,0,1,1,0,0,0,0,32,0,0,0,1,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,6,0,0,0,0,97,66,416,0,8,9,0,0,0,0,0,121,13,0,0,0,0,0,0,0,0,0,0,0,13,0,1,5,0,0,0,0,0,0,0,0,0,0,0,24,0,8,478,117,1 +6,0,0,6,0,53,8,0,21,7,4,0,0,2,20,1,18,0,7,3,0,0,0,6,0,8,0,0,8,0,11,0,0,0,25,0,53,6,0,0,91,0,0,0,1,0,0,1,0,0,0,0,11,122,0,0,0,0,0,1,0,0,0,9,0,22,0,0,934,53,85,0,17,0,0,0,0,0,9,0,0,0,0,0,8,15,136,0,0,25,0,0,0,0,0,106,5,2,0,0,2,0,88,0,18,0,0,885,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,104,0,72,0,0,0,20,18,218,60,111,0,0,0,0,1,0,3,0,0,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,32,232,6,0,0,247,0,348,0,0,0,134,19,0,0,0,0,0,0,0,0,0,81,1,0,0,0,9,0,0,0,0,7,143,43,0,0,0,0,0,0,0,0,99,0,0,31,3,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,14,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,26,0,0,0,8,1,78,198,0,18,9,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,177,72,1 +11,0,0,6,0,52,4,0,47,2,10,0,0,0,16,1,78,0,14,2,0,0,0,2,0,0,0,0,5,0,12,0,0,0,37,0,52,6,344,0,108,0,0,0,1,0,0,3,0,0,0,0,7,130,0,0,0,0,0,1,0,0,0,9,0,13,0,0,603,52,163,0,17,0,0,0,0,0,11,0,0,0,0,0,3,9,72,0,0,37,0,0,1,8,0,125,15,4,0,0,2,0,120,0,8,0,0,785,0,0,0,0,48,1,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,6,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,6,0,0,0,0,0,0,101,0,138,0,0,0,14,21,128,555,102,0,0,0,0,1,0,0,0,0,0,0,0,0,371,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,72,15,301,25,0,0,330,0,400,0,0,0,210,2031,0,0,0,0,0,0,0,0,0,170,1,0,0,0,4,0,0,0,0,8,176,68,0,0,30,0,0,0,0,0,324,0,0,74,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,16,16,0,0,1,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,23,0,0,0,8,18,89,252,0,17,0,0,0,0,0,0,96,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,115,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,25,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,24,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,38,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,4,1 +2,0,0,3,2,53,12,8,59,4,9,0,0,6,27,1,775,0,8,8,0,2,1,8,0,11,0,0,15,0,20,0,0,2,11,2212,55,6,28,0,178,0,0,0,1,0,0,3,1,0,0,0,20,311,0,0,0,0,0,1,0,0,0,0,0,8,0,0,17746,53,1063,0,31,0,0,0,0,0,30,6,0,0,0,0,10,40,3237,0,8,11,2,0,0,0,0,300,20,18,0,0,2,2,925,0,6,16,0,2346,0,0,0,0,34,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,42,12,12,12,0,0,0,1639,0,112,0,0,0,40,43,303,945,1607,0,0,0,0,1,0,8,0,0,0,0,0,0,1485,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,108,125,379,5,0,0,393,0,470,0,0,0,175,32,0,0,0,0,0,0,0,0,0,897,1,0,14,0,19,0,0,0,0,20,146,51,0,0,18,0,0,0,0,0,2496,1,0,206,9,0,1,1,0,0,0,0,28,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,9,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,55,0,0,0,0,17,66,323,0,32,14,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,8,0,0,0,0,0,0,0,0,0,0,0,4,0,0,877,69,1 +3,0,0,6,0,37,10,0,69,0,18,0,0,2,3,1,534,0,7,2,0,0,0,7,0,10,0,0,6,0,7,0,0,0,4,955,37,6,0,0,83,0,3,0,1,0,0,4,0,0,0,0,7,224,0,0,0,0,0,1,0,0,0,0,0,10,0,0,19715,37,671,0,10,0,0,0,0,0,25,0,0,0,0,0,8,22,4279,0,0,4,0,0,2,36,0,397,50,6,0,0,2,0,726,0,1,0,0,2844,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,793,0,65,0,0,0,12,11,235,1406,764,0,0,0,0,1,0,3,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,4,1,4,0,0,0,0,1,0,32,13,223,6,0,0,282,0,420,0,0,0,131,10,0,0,0,0,0,0,7,0,0,644,1,0,0,0,9,0,0,0,0,3,124,141,0,0,100,0,0,0,0,0,3169,1,0,888,6,0,1,1,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,6,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,15,0,0,0,8,1,41,333,0,11,12,0,0,0,0,0,99,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1899,49,1 +20,0,0,7,0,53,41,0,239,1,43,0,0,2,9,1,111,0,7,3,0,0,0,5,0,8,54,0,21,0,24,0,0,0,25,0,53,32,0,0,425,0,0,0,1,0,0,1,0,0,0,0,24,142,0,0,0,0,0,1,0,0,0,0,0,48,0,0,1216,53,520,0,44,0,0,0,0,0,8,0,0,0,0,0,7,13,95,0,0,25,0,0,1,183,0,1534,20,2,0,0,2,0,1338,0,7,0,0,1145,0,0,0,0,57,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,36,0,19,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,10,10,10,0,0,0,87,0,62,0,0,0,46,99,228,1286,85,0,0,0,0,1,0,3,0,0,0,0,0,0,822,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,37,19,282,7,0,0,254,0,532,0,0,0,141,14,0,0,0,0,0,0,0,0,0,453,1,0,0,0,8,0,0,0,0,20,139,488,0,0,30,0,0,0,0,0,427,0,0,47,2,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,48,0,0,0,8,1,78,104,0,99,8,0,0,0,0,0,476,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,167,51,1 +3945,0,0,0,0,30,4,0,9,7,1,0,0,0,10,0,23,0,6,1,0,0,0,3,0,0,0,0,54,0,2,0,0,0,13,0,30,6,0,0,54,0,0,0,1,0,0,1,0,0,0,0,1,48,0,0,0,0,0,1,0,0,0,17,0,8,0,0,39271,30,105,0,56,0,0,0,0,0,5,0,0,0,0,0,3,5,45,0,0,13,0,0,0,0,0,68,0,2,0,0,2,0,96,0,7,0,0,82111,0,0,0,0,11809,3,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,3939,0,0,0,0,0,7868,0,3938,0,0,0,0,0,0,3945,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,8,0,0,0,0,3939,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,70,0,73,0,0,0,2,5,58,22006,83,0,0,0,0,1,0,0,0,0,0,0,0,0,65193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,12,428,0,0,0,158,0,359,0,0,0,81,117,0,0,0,0,0,0,0,0,0,53,1,0,0,0,4,0,0,0,0,2,116,29,0,0,0,0,0,0,0,0,100,0,0,25,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,56,0,0,0,0,1,43,68,0,56,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,124,1 +2,0,0,5,0,24,7,0,26,2,8,0,0,0,10,1,16,0,7,1,0,0,0,1,0,0,0,0,6,0,10,0,0,0,11,0,24,6,0,0,60,0,0,0,1,0,0,3,0,0,0,0,9,104,0,0,0,0,0,1,0,0,0,0,0,12,0,0,703,24,97,0,16,0,0,0,0,0,15,0,0,0,0,0,1,5,88,0,0,11,0,0,1,11,0,130,15,5,0,0,2,0,101,0,8,0,0,545,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,94,0,74,0,0,0,18,15,45,225,144,0,0,0,0,1,0,0,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,8,13,140,5,0,0,193,0,334,0,0,0,117,7,0,0,0,0,0,0,0,0,0,75,1,0,0,0,2,0,0,0,0,6,110,85,0,0,29,0,0,0,0,0,65,0,0,74,0,0,1,13,0,0,0,0,9,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,24,0,0,0,12,1,35,292,0,16,0,0,0,0,0,0,87,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,3,0,0,0,0,0,0,0,0,0,0,0,0,3,167,93,1 +2,0,0,8,0,18,3,0,29,2,21,0,0,0,26,1,30,0,7,1,0,0,0,1,0,0,0,0,8,0,20,0,0,0,7,0,18,6,0,0,140,0,2,0,1,0,0,3,0,0,0,0,19,59,0,0,0,0,0,1,0,0,0,0,0,10,0,0,1235,18,133,0,28,0,0,0,0,0,10,0,0,0,0,0,1,7,514,0,0,7,0,0,0,0,0,94,0,4,0,0,2,0,127,0,6,0,0,194,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,59,0,0,0,0,0,0,85,0,44,0,0,0,38,27,39,86,90,0,0,0,0,1,0,0,0,0,0,0,0,0,417,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,113,120,10,0,0,137,0,370,0,0,0,70,3,0,0,0,0,0,0,0,0,0,117,1,0,0,0,2,0,0,0,0,20,104,35,0,0,0,0,0,0,0,0,418,0,0,778,0,0,1,0,1,0,0,0,5,0,1,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,380,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,46,0,0,0,2,1,25,212,0,28,0,0,0,0,0,0,81,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,306,64,1 +18,0,0,3,0,12,2,0,14,0,3,0,0,0,4,0,14,0,6,1,0,0,0,1,0,18,0,0,18,0,1,0,0,0,2,0,12,6,0,0,28,0,0,0,1,0,0,1,0,0,0,0,18,62,0,0,0,0,0,1,0,0,0,0,0,4,0,0,203,12,72,0,37,0,0,0,0,0,4,0,0,0,0,0,1,3,26,0,0,2,0,0,0,0,0,61,0,1,0,0,2,0,52,0,2,0,0,162,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,33,0,37,0,0,0,18,20,30,79,50,0,0,0,0,1,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,89,3,0,0,87,0,240,0,0,0,24,4,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,18,94,11,0,0,0,0,0,0,0,0,137,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,18,0,0,0,0,1,14,109,0,37,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,88,182,1 +0,0,0,5,2,25,14,10,54,1,14,0,0,0,5,0,18,0,7,2,0,2,4,1,2,1,0,0,2,0,1,0,0,2,12,0,27,6,4,0,66,0,0,0,1,0,0,2,0,0,0,0,1,106,0,0,0,0,0,1,0,0,0,0,1,12,0,0,572,25,215,0,3,0,0,0,0,0,9,6,0,0,0,0,1,4,48,0,10,12,2,0,2,30,0,257,40,4,0,0,2,2,167,0,2,0,0,348,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,64,0,44,0,0,0,2,9,54,175,73,0,0,0,0,1,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,5,146,7,0,0,204,0,285,0,0,0,119,23,0,0,0,0,0,0,0,0,0,112,1,0,0,0,11,0,0,0,0,1,107,115,0,0,89,0,0,0,0,0,78,0,0,61,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,9,0,0,0,0,1,39,260,0,4,0,0,0,0,0,0,93,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,107,26,1 +0,0,0,0,0,9,2,0,15,0,1,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,9,6,0,0,11,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,0,0,0,110,9,37,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,24,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,14,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,33,0,0,0,0,3,25,5,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,66,0,0,0,79,0,107,0,0,0,16,0,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,92,9,0,0,0,0,0,0,0,0,28,0,0,17,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,105,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,72,8,1 +5,0,0,8,0,32,10,0,39,3,12,0,0,0,14,0,16,0,7,3,0,0,0,2,0,0,0,0,1,0,2,0,0,0,19,0,32,6,0,0,102,0,0,0,1,0,0,5,0,0,0,0,1,155,0,0,0,0,0,1,0,0,0,12,0,17,0,0,1995,32,121,0,3,0,0,0,0,0,23,0,0,0,0,0,4,10,528,0,0,19,0,0,2,21,0,204,30,9,0,0,2,0,144,0,10,0,0,530,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,363,0,133,0,0,0,2,5,65,207,410,0,0,0,0,1,0,0,0,0,0,0,0,0,1681,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,8,19,184,10,0,0,283,0,474,0,0,0,206,18,0,0,0,0,0,0,0,0,0,98,1,0,0,0,5,0,0,0,0,2,122,156,0,0,58,0,168,0,0,0,78,0,0,155,0,0,1,9,0,0,0,0,10,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,3,0,0,0,0,1,51,457,0,3,0,0,0,0,0,0,138,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,5,0,0,0,0,0,0,0,0,0,0,0,0,4,313,92,1 +6,0,22,6,8,31,155,10,345,13,103,0,6,1,34,0,332,0,18,9,0,1,0,1,1,0,0,0,5,0,12,0,0,6,17,21,38,417,0,0,317,0,0,0,1,0,0,2,0,0,0,0,11,251,0,0,0,0,0,1,0,0,0,0,0,24,0,0,9098,31,836,0,16,0,0,0,0,0,8,3,0,0,0,1,1,5,1955,0,10,17,6,0,12,177,0,1712,430,2,0,0,25,8,808,0,24,0,0,1713,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1087,5,81,0,0,0,22,25,67,1511,1115,0,0,0,0,1,0,0,0,0,1,0,0,0,2851,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3600,132,1078,14,0,0,1152,0,2074,0,5,0,325,38,0,0,0,0,0,0,0,0,0,994,1,0,0,0,12,0,0,0,0,12,203,301,0,23,1291,0,2,0,0,0,1971,0,0,2054,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,12,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,23,1,1,1,0,27,0,0,0,0,57,55,219,0,17,0,0,0,0,0,0,484,8,0,0,0,0,0,0,0,0,0,0,0,7,0,1,16,0,0,0,0,0,0,0,2,0,0,0,241,0,1,1755,142,1 +4,0,0,4,0,16,2,0,27,0,3,0,0,0,3,0,20,0,6,1,0,0,0,1,0,0,3,0,3,0,1,1,0,0,3,0,16,6,0,0,30,0,0,0,1,0,0,3,0,0,0,0,1,91,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2236,16,58,0,5,0,0,0,0,0,13,0,0,0,0,1,1,6,319,0,0,3,0,0,0,0,0,13,0,4,0,0,2,0,31,0,1,0,0,539,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,242,0,84,0,0,0,2,23,32,126,256,0,0,0,0,1,0,0,0,0,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,110,4,0,0,166,0,298,0,0,0,98,12,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,1,98,78,0,0,0,0,0,0,0,0,119,0,0,457,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,54,0,0,0,0,1,19,256,0,8,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,282,42,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,99,0,0,0,0,0,1,0,0,0,0,0,2,0,0,938,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,47,0,0,4,0,0,0,0,0,10,0,4,0,0,2,0,53,0,0,0,0,392,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,60,0,56,0,0,0,4,10,32,174,69,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,120,3,0,0,114,0,303,0,0,0,40,9,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,61,0,0,42,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,123,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,103,25,1 +13,0,0,12,0,68,11,0,52,10,13,0,0,6,24,19,1090,0,7,4,0,0,0,8,0,11,9,0,28,0,9,0,0,0,18,6076,68,74,0,0,143,0,0,0,1,0,0,3,0,0,0,0,10,389,0,0,0,0,0,1,0,0,0,0,0,21,0,0,35816,68,1280,0,34,0,0,0,0,0,28,0,0,0,0,0,11,42,7113,0,0,18,0,0,0,0,0,287,20,5,0,0,2,0,1318,0,15,20,0,4234,0,0,0,0,56,0,4,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,8,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,52,12,12,12,0,0,0,4555,0,112,0,0,0,21,37,371,1954,4534,0,0,0,0,1,0,5,0,0,0,0,0,0,572,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,99,52,406,15,0,0,386,0,485,0,0,0,181,42,0,0,0,0,0,0,0,0,0,1222,1,0,0,0,12,0,0,0,0,10,168,40,0,0,29,0,0,0,0,0,3764,1,0,116,13,0,1,1,0,0,0,0,7,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,13,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,80,1,1,1,0,58,0,0,0,0,1,86,346,0,43,14,0,1,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1440,176,1 +7,0,0,7,0,26,3,0,17,4,6,0,0,0,12,1,30,0,7,1,0,0,0,1,0,0,9,0,5,0,11,0,0,0,14,0,26,6,0,0,52,0,0,0,1,0,0,4,0,0,0,0,10,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,833,26,95,0,16,0,0,0,0,0,9,0,0,0,0,0,1,6,128,0,0,14,0,0,0,0,0,39,0,1,0,0,2,0,107,0,7,0,0,400,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,100,0,50,0,0,0,20,25,47,38,120,0,0,0,0,1,0,0,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,20,149,9,0,0,178,0,310,0,0,0,107,8,0,0,0,0,0,0,0,0,0,76,1,0,0,0,2,0,0,0,0,7,112,54,0,0,0,0,0,0,0,0,119,0,0,121,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,22,0,0,0,8,1,40,198,0,25,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,152,40,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,71,0,0,0,0,0,1,0,0,0,0,0,2,0,0,589,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,43,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,296,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,59,0,0,0,4,10,36,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,115,3,0,0,117,0,228,0,0,0,40,7,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,53,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,92,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,106,23,1 +14,0,0,6,0,55,10,0,40,1,12,0,0,2,7,1,20,0,7,3,0,0,0,7,0,8,0,0,14,0,6,0,0,0,19,0,55,35,0,0,110,0,0,0,1,0,0,4,0,0,0,0,6,201,0,0,0,0,0,1,0,0,0,0,0,14,0,0,2490,55,157,0,17,0,0,0,0,1,35,0,0,0,0,0,9,19,392,0,0,19,0,0,1,28,0,332,20,8,0,0,2,0,193,0,5,0,0,915,0,0,0,0,12,3,6,0,0,0,0,1,0,0,0,12,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,326,0,143,0,0,0,10,12,207,270,346,0,0,0,0,1,0,2,0,0,9,0,0,0,975,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,36,17,230,6,0,0,313,0,473,0,0,0,181,23,0,0,0,0,0,0,4,0,0,99,1,0,0,0,10,0,0,0,0,5,141,154,0,0,31,0,0,0,0,0,782,0,0,309,3,0,1,1,0,0,0,0,14,0,3,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,69,1,1,1,0,22,0,0,0,0,1,74,395,0,19,9,0,0,0,0,0,171,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,448,252,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,79,0,0,0,0,0,1,0,0,0,0,0,2,0,0,744,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,44,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,270,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,55,0,0,0,4,10,32,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,109,3,0,0,114,0,282,0,0,0,40,8,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,53,0,0,38,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,129,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,99,24,1 +167,0,0,43,0,78,76,0,324,23,96,0,0,0,93,6,87,0,7,4,0,0,0,4,0,1,38,0,14,0,11,0,0,0,59,0,78,190,0,0,1018,0,0,0,2,0,0,7,1,0,0,0,10,212,0,0,0,0,0,1,0,0,0,0,0,50,0,0,5674,78,785,0,25,0,0,0,0,0,36,0,0,0,0,1,7,19,635,0,0,59,0,0,1,187,0,1510,100,13,1,0,2,0,1544,0,28,0,0,2146,0,0,0,0,36,39,0,0,12,0,0,1,0,0,0,32,0,0,0,0,0,0,0,40,0,0,0,5,0,0,0,0,0,10,0,41,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,8,5,0,0,0,0,1,1,0,0,0,0,0,8,2,0,0,0,7,0,0,0,9,3,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,4,1,0,0,0,32,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,1,0,268,0,0,0,0,0,0,615,0,212,0,0,0,20,60,131,1267,647,0,0,0,0,1,0,0,0,0,0,0,0,0,2565,0,0,0,0,0,0,0,0,0,8,0,0,7,0,0,0,0,0,0,4,0,23,101,516,63,0,0,540,0,508,0,0,0,437,106,0,0,0,0,0,0,0,0,0,689,1,0,3,0,8,0,0,0,0,11,206,1193,0,0,236,0,42,0,0,0,909,0,0,641,0,0,1,0,0,0,0,0,18,0,0,0,5,0,0,1,0,0,23,9,0,0,0,0,0,2,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,81,1,1,1,0,40,0,0,0,0,1,137,809,0,64,0,0,1,0,0,0,1337,11,0,0,0,0,0,0,0,0,0,0,0,0,0,1,25,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1025,447,1 +0,0,0,0,0,8,18,0,83,0,17,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,16,0,0,13,8,130,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,80,0,597,0,0,0,0,2,0,406,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,12,0,0,0,0,3,21,518,20,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,48,0,50,0,0,0,18,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,2,0,0,0,0,0,90,241,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,203,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,165,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,10,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,102,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,22,0,0,0,0,3,24,7,31,0,0,0,0,1,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,42,0,0,0,85,0,166,0,0,0,55,4,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,93,49,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,125,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,8,1 +4,0,0,10,0,42,8,0,46,0,6,0,0,6,5,0,707,0,6,5,0,0,0,8,0,11,0,0,9,0,3,0,0,0,3,2313,42,36,0,0,47,0,0,0,1,0,0,1,0,0,0,0,3,254,0,0,0,0,0,1,0,0,0,0,0,2,0,0,9886,42,780,0,8,0,0,0,0,0,13,0,0,0,0,0,12,33,1825,0,0,3,0,0,0,0,0,222,20,1,0,0,2,0,773,0,0,10,0,1928,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,12,12,12,0,0,0,644,0,49,0,0,0,6,9,290,838,625,0,0,0,0,1,0,3,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,89,27,247,15,0,0,252,0,338,0,0,0,82,8,0,0,0,0,0,0,0,0,0,784,1,0,0,0,13,0,0,0,0,3,134,11,0,0,15,0,0,0,0,0,2119,1,0,29,9,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,15,0,0,0,4,1,45,48,0,9,14,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,651,87,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,109,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1164,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,43,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,286,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,58,0,57,0,0,0,4,10,32,174,67,0,0,0,0,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,114,3,0,0,114,0,381,0,0,0,40,12,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,59,0,0,35,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,162,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,102,25,1 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,55,0,0,0,3,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,9,1 +5,0,0,3,0,20,2,0,18,2,3,0,0,0,7,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,7,0,20,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,0,69,0,0,0,0,0,1,0,0,0,0,0,7,0,0,484,20,59,0,4,0,0,0,0,0,11,0,0,0,0,0,1,4,63,0,0,7,0,0,0,0,0,13,0,3,0,0,2,0,30,0,5,0,0,418,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,4,0,3,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,85,0,82,0,0,0,0,3,38,22,89,0,0,0,0,1,0,0,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,8,150,3,0,0,141,0,230,0,0,0,63,18,0,0,0,0,0,0,0,0,0,51,1,0,0,0,2,0,0,0,0,1,104,32,0,0,0,0,0,0,0,0,35,0,0,45,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,3,0,0,0,0,1,27,220,0,4,0,0,1,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,138,32,1 +3,0,0,6,0,52,97,0,67,1,95,0,0,7,5,0,1383,0,6,2,0,0,0,8,0,11,3,0,23,0,1,0,0,0,12,4185,52,6,0,0,47,0,0,0,1,0,0,4,0,0,0,0,2,1691,0,0,0,0,0,1,0,0,0,0,0,4,0,0,155814,52,1956,0,21,0,0,0,0,0,204,0,0,0,0,0,9,371,11178,0,0,12,0,0,0,0,0,1134,25,6,0,0,2,0,1638,0,1,966,0,10419,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,12,12,12,0,0,0,2629,0,115,0,0,0,16,41,741,16938,2619,0,0,0,0,1,0,6,0,0,0,0,0,0,744,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,108,23,379,6,0,0,561,0,361,0,0,0,392,18,0,0,0,0,0,0,0,0,0,1660,1,0,0,0,10,0,0,0,0,2,179,81,0,0,889,0,1,0,0,0,8288,1,0,548,98,0,1,1,0,0,0,0,13,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,98,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,108,0,0,0,0,1,64,395,0,24,14,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4067,90,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,60,0,0,0,0,0,1,0,0,0,0,0,2,0,0,379,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,51,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,245,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,62,0,56,0,0,0,4,10,32,174,71,0,0,0,0,1,0,0,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,107,3,0,0,114,0,180,0,0,0,40,7,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,59,0,0,50,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,91,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,107,21,1 +2,0,0,4,0,23,3,0,16,2,4,0,0,0,9,1,15,0,7,1,0,0,0,1,0,0,0,0,4,0,11,0,0,0,12,0,23,6,0,0,40,0,0,0,1,0,0,1,0,0,0,0,10,76,0,0,0,0,0,1,0,0,0,0,0,9,0,0,337,23,62,0,15,0,0,0,0,0,6,0,0,0,0,0,1,3,45,0,0,12,0,0,0,0,0,35,0,2,0,0,2,0,46,0,7,0,0,304,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,52,0,41,0,0,0,20,17,50,40,58,0,0,0,0,1,0,0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,12,128,4,0,0,151,0,218,0,0,0,82,11,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,7,109,35,0,0,0,0,0,0,0,0,62,0,0,34,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,24,0,0,0,8,1,35,186,0,15,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,88,19,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,108,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1375,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,55,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,555,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,65,0,55,0,0,0,4,10,32,174,74,0,0,0,0,1,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,114,3,0,0,114,0,425,0,0,0,40,10,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,60,0,0,66,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,139,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,110,24,1 +3,0,0,10,0,64,8,0,48,4,10,0,0,6,17,1,785,0,7,2,0,0,0,9,0,11,0,0,10,0,5,0,0,0,27,898,64,6,0,0,125,0,9,0,1,0,0,9,0,0,0,0,5,320,0,0,0,0,0,1,0,0,0,0,0,14,0,0,9232,64,948,0,11,0,0,0,0,0,49,0,0,0,0,0,10,34,1923,0,0,27,0,0,0,0,0,232,20,14,0,0,2,0,877,0,9,1,0,1781,0,0,0,0,26,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,44,12,12,12,0,0,0,662,0,145,0,0,0,9,11,302,384,636,0,0,0,0,1,0,3,0,0,0,0,0,0,859,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,1,0,84,41,319,12,0,0,412,0,436,0,0,0,250,20,0,0,0,0,0,0,0,0,0,882,1,0,0,0,11,0,0,0,0,5,150,106,0,0,6,0,0,0,0,0,2305,1,0,1107,8,0,1,1,1,0,0,0,23,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,8,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,77,1,1,1,0,17,0,0,0,2,1,91,523,0,12,14,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,999,101,1 +10,0,0,8,0,12,2,0,15,0,2,0,0,0,7,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,6,0,0,18,0,1,0,1,0,0,1,0,1,0,0,1,42,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1107,12,44,0,3,0,0,0,0,0,5,0,0,0,0,0,1,4,457,0,0,0,0,0,0,0,0,12,0,2,0,0,2,0,26,0,0,0,0,186,0,0,0,0,3,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,55,0,32,0,0,0,2,5,27,15,62,0,0,0,0,1,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,88,16,0,0,99,0,183,0,0,0,29,4,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,2,94,22,0,0,0,0,0,0,0,0,208,0,0,733,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,363,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,71,0,3,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,243,11,1 +2,0,0,9,0,42,5,0,16,4,21,0,0,2,29,1,72,0,7,4,0,0,0,4,0,8,27,0,7,0,8,2,0,0,12,0,42,6,0,0,159,0,0,0,1,0,0,2,0,0,0,0,10,87,0,0,0,0,0,1,0,0,0,0,0,14,0,0,1347,42,181,0,16,0,0,0,0,0,5,0,0,0,0,0,7,14,71,0,0,12,0,0,0,0,0,105,5,0,0,0,2,0,298,0,9,0,0,1259,0,0,0,0,26,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,20,10,10,10,0,0,0,57,0,52,0,0,0,18,60,208,201,63,0,0,0,0,1,0,3,0,0,0,0,0,0,437,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,119,162,11,0,0,155,0,277,0,0,0,67,15,0,0,0,0,0,0,0,0,0,153,1,0,0,0,8,0,0,0,0,8,128,26,0,0,0,0,0,0,0,0,340,0,0,53,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,68,0,0,0,0,1,54,132,0,44,8,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157,40,1 +7,0,0,15,0,52,9,0,48,5,9,0,0,6,20,1,820,0,7,4,0,0,0,9,0,11,3,0,9,0,4,0,0,0,10,1013,52,36,0,0,90,0,3,0,1,0,0,3,0,0,0,0,4,187,0,0,0,0,0,1,0,0,0,0,0,15,0,0,7499,52,925,0,9,0,0,0,0,0,18,0,0,0,0,0,12,32,1881,0,0,10,0,0,0,0,0,221,20,3,0,0,2,0,934,0,10,1,0,1826,0,0,0,0,24,0,1,0,2,0,0,1,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,44,12,12,12,0,0,0,557,0,77,0,0,0,7,14,299,843,539,0,0,0,0,1,0,3,0,0,0,0,0,0,415,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,89,54,292,26,0,0,285,0,496,0,0,0,113,14,0,0,0,0,0,0,0,0,0,920,1,0,0,0,13,0,0,0,0,4,139,39,0,0,6,0,0,0,0,0,2176,1,0,780,7,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,7,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,18,0,0,0,4,1,62,114,0,13,14,0,1,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,3,570,115,1 +13,0,0,11,0,45,5,0,36,6,13,0,0,0,21,0,18,0,7,1,0,0,0,5,0,0,0,0,5,0,1,0,0,0,27,0,45,6,0,0,111,0,0,0,1,0,0,2,0,0,0,0,0,69,0,0,0,0,0,1,0,0,0,0,0,20,0,0,3333,45,123,0,6,0,0,0,0,0,19,0,0,0,0,0,5,8,544,0,0,27,0,0,2,16,0,166,30,4,0,0,2,0,141,0,11,0,0,1009,0,0,0,0,35,2,3,0,4,0,0,1,0,0,0,10,0,0,0,0,0,0,0,2,0,0,0,5,0,0,1,4,0,0,0,8,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,8,0,0,0,0,0,0,374,0,106,0,0,0,0,3,89,1274,391,0,0,0,0,1,0,0,0,0,0,0,0,0,1040,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,0,8,47,266,13,0,0,275,0,319,0,0,0,180,39,0,0,0,0,0,0,7,0,0,100,1,0,0,0,6,0,0,0,0,1,174,64,0,0,58,0,1,0,0,0,158,0,0,377,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,5,0,0,0,0,1,72,152,0,6,0,0,0,0,0,0,104,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,2,355,56,1 +11,0,0,10,6,46,166,6,172,28,14,0,8,0,60,0,330,0,19,1,0,0,0,1,0,0,0,0,15,0,26,0,0,6,31,0,52,420,0,0,244,0,0,0,1,0,0,7,0,0,0,0,25,218,0,0,0,0,0,1,0,0,0,0,0,37,0,0,1524,46,583,0,41,0,0,0,0,0,24,0,0,0,0,1,1,10,234,0,6,31,6,0,14,0,0,362,0,9,0,0,30,6,278,0,39,0,0,982,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,227,0,172,0,0,0,50,44,88,229,275,0,0,0,0,1,0,0,0,0,6,0,0,0,1167,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,704,181,1125,22,0,0,1203,0,2073,0,6,0,388,40,0,0,0,0,0,0,0,0,0,769,1,0,0,0,2,0,0,0,0,23,222,53,0,0,0,0,7,0,0,0,1047,0,0,194,0,0,1,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,44,1,1,1,0,65,0,0,0,0,49,83,238,0,41,0,0,0,0,0,0,304,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,28,0,0,0,0,0,0,0,0,0,0,0,6,0,5,605,183,1 +4,0,0,5,4,55,93,4,71,0,94,0,0,7,4,0,98,0,6,10,0,8,0,8,0,11,0,0,24,0,1,0,0,4,13,4077,59,6,0,0,61,0,0,0,1,0,0,5,0,0,0,0,1,1743,0,0,0,0,0,1,4,0,0,2,0,2,0,0,52507,55,885,0,21,0,0,0,0,0,203,12,0,0,0,0,9,309,10377,0,4,13,4,0,0,0,0,1013,25,9,0,0,2,4,319,0,0,746,0,7017,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,14,12,12,12,0,0,0,3289,0,106,0,0,0,13,16,687,4060,3259,0,0,0,0,1,0,4,0,0,0,0,0,0,791,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,108,16,446,9,0,0,660,0,454,0,0,0,390,15,0,0,0,0,0,0,0,0,0,373,1,0,0,0,26,0,0,0,0,1,163,75,0,0,762,0,0,0,0,0,4793,1,0,584,95,0,1,1,0,0,0,0,13,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,95,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,59,0,0,0,0,33,72,458,0,22,14,0,0,0,0,0,98,4,0,0,0,0,0,0,0,0,0,0,0,6,0,1,4,0,0,0,0,0,0,0,0,0,0,0,8,0,5,3384,91,1 +7,0,0,15,0,52,8,0,52,17,20,0,0,6,20,1,862,0,7,4,0,0,0,9,0,11,3,0,31,0,4,0,0,0,10,1750,52,38,0,0,90,0,3,0,1,0,0,3,0,0,0,0,4,206,0,0,0,0,0,1,0,0,0,0,0,15,0,0,26485,52,1002,0,31,0,0,0,0,0,17,0,0,0,0,0,12,76,5989,0,0,10,0,0,0,0,0,309,20,3,0,0,2,0,990,0,10,12,0,4003,0,0,0,0,24,0,1,0,2,0,0,1,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,46,12,12,12,0,0,0,1743,0,79,0,0,0,18,25,349,1885,1726,0,0,0,0,1,0,3,0,0,0,0,0,0,495,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,89,123,296,26,0,0,295,0,532,0,0,0,119,13,0,0,0,0,0,0,0,0,0,976,1,0,0,0,13,0,0,0,0,4,142,40,0,0,61,0,0,0,0,0,4044,1,0,829,7,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,2,0,0,0,7,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,73,0,0,0,4,1,62,127,0,35,14,0,1,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2027,134,1 +5,0,0,10,4,94,8,10,55,4,9,0,0,2,20,0,45,0,7,11,0,6,1,7,0,8,0,0,9,0,5,0,0,4,59,0,98,36,18,0,199,0,0,0,1,0,0,5,0,0,0,0,5,145,0,0,0,0,0,1,2,0,0,9,0,13,0,0,7135,94,391,0,12,0,0,0,0,0,28,12,0,0,0,0,8,20,1601,0,10,59,4,0,0,0,0,107,5,9,0,0,2,4,105,0,9,0,0,1209,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,5,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,12,10,10,10,0,0,0,964,0,146,0,0,0,8,8,280,52,954,0,0,0,0,1,0,3,0,0,0,0,0,0,2158,0,0,0,0,0,0,0,0,0,0,0,0,5,1,3,0,0,0,0,1,0,37,104,463,15,0,0,525,0,593,0,0,0,311,37,0,0,0,0,0,0,9,0,0,146,1,0,0,0,25,0,0,0,0,3,180,84,0,0,1,0,0,0,0,0,536,0,0,1382,3,0,1,1,0,0,0,0,17,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0,1,0,0,97,1,1,1,0,15,0,0,0,2,33,157,356,0,13,9,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,0,1,0,6,0,1,6,0,0,0,0,0,0,0,0,0,0,0,7,0,5,977,92,1 +6,0,0,3,0,18,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,18,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,82,0,0,0,0,0,1,0,0,0,0,0,2,0,0,672,18,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,44,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,277,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,60,0,56,0,0,0,4,10,36,174,69,0,0,0,0,1,0,0,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,113,3,0,0,117,0,257,0,0,0,40,8,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,53,0,0,38,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,22,140,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,102,23,1 +5,0,0,6,0,47,7,0,21,6,4,0,0,2,16,1,18,0,7,3,0,0,0,6,0,8,0,0,7,0,12,0,0,0,18,0,47,6,0,0,78,0,0,0,1,0,0,1,0,0,0,0,12,108,0,0,0,0,0,1,0,0,0,9,0,18,0,0,933,47,82,0,17,0,0,0,0,0,9,0,0,0,0,0,8,15,125,0,0,18,0,0,0,0,0,109,5,2,0,0,2,0,81,0,14,0,0,889,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,94,0,58,0,0,0,22,21,212,56,94,0,0,0,0,1,0,3,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,28,211,6,0,0,229,0,313,0,0,0,113,9,0,0,0,0,0,0,0,0,0,76,1,0,0,0,9,0,0,0,0,8,137,43,0,0,0,0,0,0,0,0,100,0,0,40,3,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,27,0,0,0,8,1,65,163,0,18,9,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,166,60,1 +2,0,0,7,0,20,3,0,18,3,6,0,0,0,12,1,25,0,7,1,0,0,0,1,0,0,6,0,2,0,3,0,0,0,9,0,20,6,0,0,50,0,3,0,1,0,0,3,0,0,0,0,2,126,0,0,0,0,0,1,0,0,0,0,0,11,0,0,1496,20,89,0,5,0,0,0,0,0,13,0,0,0,0,0,1,6,513,0,0,9,0,0,0,0,0,20,0,4,0,0,2,0,81,0,7,0,0,462,0,0,0,0,23,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,92,0,52,0,0,0,4,13,44,25,92,0,0,0,0,1,0,0,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,8,24,137,9,0,0,148,0,255,0,0,0,80,7,0,0,0,0,0,0,4,0,0,72,1,0,0,0,2,0,0,0,0,3,108,34,0,0,0,0,0,0,0,0,251,0,0,796,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,364,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,9,0,0,0,0,1,29,748,0,11,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,303,25,1 +0,0,0,4,0,17,5,0,26,0,3,0,0,0,5,0,16,0,6,1,0,0,0,2,0,1,0,0,2,0,2,0,0,0,5,0,17,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,1,51,0,0,0,0,0,1,0,0,0,0,0,4,0,0,886,17,57,0,4,0,0,0,2,0,8,0,0,0,0,0,2,4,104,0,0,5,0,0,0,0,0,11,0,1,0,0,2,0,33,0,1,0,0,242,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,110,0,46,0,0,0,2,4,40,11,117,0,0,0,0,1,0,0,0,0,0,0,0,0,404,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,122,6,0,0,115,0,188,0,0,0,38,8,0,0,0,0,0,0,0,0,0,61,1,0,0,0,3,0,0,0,0,1,99,9,0,0,0,0,0,0,0,0,96,0,0,269,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,4,0,0,0,0,1,22,62,0,5,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,186,44,1 +17,0,0,8,0,49,15,0,48,0,10,1,0,2,8,0,500,0,7,4,0,0,0,6,0,10,8,0,10,0,9,0,0,0,11,898,49,6,0,0,78,0,0,0,1,0,0,8,0,0,0,0,9,278,0,0,0,0,0,1,0,0,0,8,0,13,0,0,23721,49,664,0,16,0,0,0,0,0,43,0,0,0,0,0,9,25,4064,0,0,11,0,0,1,17,0,272,35,16,0,0,2,0,642,0,4,0,0,1363,0,0,0,0,5,4,3,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,0,2,0,0,0,1,0,0,2,6,0,0,0,5,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,30,12,12,12,0,0,0,3469,0,140,0,0,0,16,23,267,437,3439,0,0,0,0,1,0,7,0,0,0,0,0,0,895,0,0,0,0,0,0,0,0,0,3,0,0,8,1,4,0,0,0,0,1,1,32,20,265,9,0,0,356,0,486,0,0,0,193,23,0,0,0,0,0,1,2,0,0,591,1,0,0,0,10,0,0,0,0,7,132,127,0,0,70,0,0,0,0,0,1456,1,0,333,7,0,1,1,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,7,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,23,0,0,0,12,1,60,635,0,25,12,0,0,0,0,0,95,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6,679,192,1 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,1,0,0,0,0,0,0,0,0,35,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,34,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,41,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,4,1 +0,0,0,7,0,35,7,0,42,1,9,0,0,6,4,0,516,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,1,898,35,6,0,0,55,0,0,0,1,0,0,1,0,0,0,0,1,157,0,0,0,0,0,1,0,0,0,0,0,5,0,0,5559,35,585,0,2,0,0,0,0,0,13,0,0,0,0,0,8,17,1065,0,0,1,0,0,1,8,0,259,35,2,0,0,2,0,593,0,0,1,0,1445,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,330,0,37,0,0,0,0,3,263,425,320,0,0,0,0,1,0,3,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,84,19,184,7,0,0,216,0,247,0,0,0,70,5,0,0,0,0,0,0,0,0,0,590,1,0,0,0,9,0,0,0,0,0,118,44,0,0,35,0,0,0,0,0,1490,1,0,75,6,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,1,0,0,0,0,1,36,180,0,3,12,0,1,0,0,0,78,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,524,35,1 +1,0,0,11,1,43,40,1,100,1,12,0,0,6,9,0,824,0,8,3,0,0,0,8,0,11,0,0,5,0,1,0,0,1,8,1083,44,54,0,0,109,0,0,0,1,0,0,4,1,0,0,0,1,192,0,0,0,0,0,1,0,0,0,0,0,5,0,0,11394,43,984,0,2,0,0,0,0,0,27,0,0,0,0,0,10,27,2029,0,1,8,1,0,1,17,0,379,35,11,0,0,4,1,928,0,2,1,0,1804,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,12,12,12,0,0,0,947,0,96,0,0,0,0,3,272,531,928,0,0,0,0,1,0,3,0,0,0,0,0,0,1751,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,187,32,433,14,0,0,425,0,685,0,1,0,151,10,0,0,0,0,0,0,0,0,0,999,1,0,5,0,11,0,0,0,0,0,142,71,0,0,40,0,0,0,0,0,2450,1,0,944,8,0,1,1,0,0,0,0,16,0,1,0,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,46,1,1,1,0,1,0,0,0,0,9,52,229,0,3,14,0,0,0,0,0,163,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,1,0,3,1058,93,1 +6468,0,0,4,0,23,4,0,26,2,7,0,0,0,8,0,16,0,6,2,0,0,0,1,0,0,0,0,82,0,1,0,0,0,5,0,23,6,0,0,38,0,0,0,1,0,0,1,0,0,0,0,0,164,0,0,0,0,0,1,0,0,0,0,0,9,0,0,65660,23,141,0,83,0,0,0,0,0,6,0,0,0,0,0,2,4,102,0,0,5,0,0,1,9,0,170,10,2,0,0,2,0,153,0,5,0,0,130052,0,0,0,0,19372,4,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,6460,0,0,0,0,0,12914,0,6459,0,0,0,0,0,0,6472,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6459,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,94,0,42,0,0,0,0,3,51,36160,100,0,0,0,0,1,0,0,0,0,0,0,0,0,86737,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,8,857,4,0,0,166,0,349,0,0,0,77,346,0,0,0,0,0,0,0,0,0,67,1,0,0,0,3,0,0,0,0,1,107,291,0,0,23,0,0,0,0,0,118,0,0,48,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,82,0,0,0,0,1,28,256,0,83,0,0,0,0,0,0,49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,189,308,1 +7,0,0,5,6,57,9,6,100,0,15,0,0,2,6,0,143,0,7,15,0,12,0,5,0,10,43,0,18,0,15,1,0,6,25,0,63,6,0,0,116,0,0,0,1,0,0,3,0,0,0,0,16,157,0,0,0,0,0,1,6,0,0,2,0,10,0,0,2325,57,884,0,32,0,0,0,0,0,21,18,0,0,0,0,7,16,340,0,6,25,6,0,1,18,0,253,20,6,0,0,2,6,448,0,3,0,0,1346,0,0,0,0,5,2,3,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,10,10,10,0,0,0,232,0,89,0,0,0,30,61,239,253,236,0,0,0,0,1,0,3,0,0,0,0,0,0,628,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,34,13,432,11,0,0,454,0,589,0,0,0,187,26,0,0,0,0,0,0,0,0,0,282,1,0,0,0,32,0,0,0,0,1,140,85,0,0,32,0,0,0,0,0,980,0,0,275,3,0,1,1,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,31,0,0,0,0,49,88,288,0,78,9,0,1,0,0,0,158,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,4,0,0,0,0,0,0,0,0,0,0,0,12,0,4,333,506,1 +6924,0,0,11,2,57,56,2,88,9,19,0,0,0,30,0,123,0,11,2,0,0,0,3,0,0,8,0,99,0,4,0,0,2,35,0,59,102,0,0,153,0,0,0,1,0,0,4,0,0,0,0,2,133,0,0,0,0,0,1,0,0,0,14,0,27,0,0,73085,57,370,0,103,0,0,0,0,0,11,0,0,0,0,0,4,9,813,0,2,35,2,0,5,24,0,413,45,6,0,0,6,2,331,0,22,0,0,143342,0,0,0,0,20777,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,6920,0,0,0,0,0,13840,0,6921,0,0,0,0,0,0,7208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6922,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,8,0,0,0,0,0,0,489,0,108,0,0,0,4,13,107,39986,508,0,0,0,0,1,0,0,0,0,0,0,0,0,100569,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,216,84,1314,15,0,0,584,0,966,0,2,0,252,364,0,0,0,0,0,0,0,0,0,327,1,0,0,0,5,0,0,0,0,3,200,68,0,0,87,0,2,0,0,0,691,0,0,78,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,2,58,1,1,1,0,104,0,0,0,0,17,94,137,0,111,0,0,0,0,0,0,167,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,15,0,0,0,0,0,0,0,0,0,0,0,2,0,0,825,434,1 +2,0,0,4,0,24,3,0,7,2,4,0,0,0,10,2,52,0,7,2,0,0,0,0,0,0,6,0,5,0,11,0,0,0,13,0,24,6,0,0,38,0,0,0,1,0,0,1,0,0,0,0,10,39,0,0,0,0,0,1,0,0,0,0,0,10,0,0,259,24,97,0,16,0,0,0,0,0,2,0,0,0,0,0,1,3,9,0,0,13,0,0,0,0,0,27,0,0,0,0,2,0,87,0,8,0,0,427,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,30,0,53,0,0,0,20,20,56,32,35,0,0,0,0,1,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,13,116,4,0,0,106,0,175,0,0,0,67,7,0,0,0,0,0,0,0,0,0,85,1,0,0,0,2,0,0,0,0,5,110,23,0,0,0,0,0,0,0,0,310,0,0,14,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,23,0,0,0,8,11,37,69,0,22,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,17,1 +4,0,0,6,1,18,40,1,105,6,31,0,3,0,13,0,71,0,8,1,0,0,0,1,0,0,0,0,3,0,1,0,0,1,10,0,19,93,0,0,175,0,0,0,1,0,0,1,0,0,0,0,0,79,0,0,0,0,0,1,0,0,0,0,0,23,0,0,13879,18,225,0,4,0,0,0,0,0,7,0,0,0,0,0,1,4,2333,0,1,10,1,0,9,70,0,635,75,1,0,0,10,1,392,0,8,0,0,445,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,6,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1655,0,45,0,0,0,0,3,40,505,1666,0,0,0,0,1,0,0,0,0,0,0,0,0,3154,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,136,53,294,7,0,0,295,0,545,0,1,0,117,24,0,0,0,0,0,0,0,0,0,271,1,0,0,0,2,0,0,0,0,1,119,175,0,0,145,0,0,0,0,0,1042,0,0,3228,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,1,1,1,0,3,0,0,0,0,9,29,90,0,4,0,0,0,0,0,0,214,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1301,126,1 +11,0,0,10,0,28,4,0,29,2,7,0,0,0,17,1,31,0,12,1,0,0,0,2,0,0,3,0,8,0,17,0,0,0,13,0,28,6,112,0,61,0,6,0,1,0,0,6,0,0,0,0,11,142,0,0,0,0,0,1,0,0,0,0,0,10,0,0,4450,28,143,0,25,0,0,0,0,0,28,0,0,0,0,0,2,10,1201,0,0,13,0,0,0,0,0,75,0,8,0,0,2,0,98,0,6,0,0,468,0,0,0,0,18,3,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,3,0,0,0,1,0,0,1,3,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,6,0,0,0,0,0,0,526,0,105,0,0,0,22,31,78,544,524,0,0,0,0,1,0,0,0,0,0,0,0,0,1284,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,45,21,232,12,0,0,260,0,440,0,0,0,141,2040,0,0,0,0,0,0,4,0,0,101,1,0,0,0,3,0,0,0,0,11,153,59,0,0,0,0,0,0,0,0,417,0,0,1587,0,0,1,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,379,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,34,0,0,0,10,2,41,475,0,28,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,695,84,1 +0,0,0,5,0,13,2,0,25,0,3,0,0,0,4,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,13,6,0,0,11,0,0,0,1,0,0,4,0,0,0,0,0,68,0,0,0,0,0,1,0,0,0,0,0,3,0,0,812,13,66,0,1,0,0,0,0,0,14,0,0,0,0,1,1,9,169,0,0,2,0,0,0,0,0,10,0,6,0,0,2,0,26,0,1,0,0,126,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,138,0,54,0,0,0,0,3,32,7,143,0,0,0,0,1,0,0,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,8,4,102,6,0,0,154,0,212,0,0,0,83,8,0,0,0,0,0,1,5,0,0,54,1,0,0,0,2,0,0,0,0,0,102,52,0,0,0,0,0,0,0,0,60,0,0,160,0,0,1,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,15,254,0,1,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,254,20,1 +6,0,0,5,1,37,70,1,187,3,41,0,5,0,8,0,73,0,8,1,0,0,0,1,0,0,0,0,5,0,1,0,0,1,16,0,38,99,0,0,300,0,0,0,1,0,0,2,2,0,0,0,0,89,0,0,0,0,0,1,0,0,0,0,0,28,0,0,14282,37,379,0,6,0,0,0,0,0,45,0,0,0,0,0,1,5,79,0,1,16,1,0,11,121,0,1004,80,15,0,0,14,1,691,0,5,0,0,4166,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,129,0,123,0,0,0,0,3,89,7842,128,0,0,0,0,1,0,0,0,0,0,0,0,0,9480,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,148,67,375,6,0,0,498,0,570,0,1,0,196,70,0,0,0,0,0,0,0,0,0,392,1,0,13,0,2,0,0,0,0,1,136,405,0,0,156,0,0,0,0,0,191,0,0,41,0,0,1,0,0,0,0,0,21,0,0,0,2,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,1,34,1,1,1,0,5,0,0,0,0,9,54,393,0,6,0,0,0,0,0,0,356,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,0,0,0,0,0,0,0,0,0,0,0,1,0,2,258,220,1 +6,0,0,5,4,30,10,4,57,5,8,0,0,0,12,1,49,0,7,9,0,8,0,3,0,0,0,0,6,0,10,0,0,4,14,0,34,74,0,0,49,0,0,0,1,0,0,3,1,0,0,0,9,92,0,0,0,0,0,1,4,0,0,7,0,13,0,0,1758,30,384,0,16,0,0,0,0,0,17,12,0,0,0,0,3,8,117,0,4,14,4,0,0,0,0,48,0,8,0,0,2,4,103,0,10,0,0,1053,0,0,0,0,7,0,1,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,134,0,162,0,0,0,18,17,65,59,140,0,0,0,0,1,0,0,0,0,0,0,0,0,899,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,35,17,380,9,0,0,316,0,375,0,0,0,125,23,0,0,0,0,0,0,0,0,0,144,1,0,3,0,20,0,0,0,0,6,121,27,0,0,0,0,0,0,0,0,230,0,0,71,0,0,1,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,24,0,0,0,8,33,48,283,0,16,0,0,0,0,0,0,75,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,5,0,0,0,0,0,0,0,0,0,0,0,8,0,2,302,97,1 +2,0,0,3,0,17,2,0,7,0,3,0,0,0,4,1,52,0,7,2,0,0,0,0,0,0,6,0,2,0,4,0,0,0,8,0,17,6,0,0,17,0,0,0,1,0,0,1,0,0,0,0,3,40,0,0,0,0,0,1,0,0,0,0,0,4,0,0,131,17,80,0,6,0,0,0,0,0,2,0,0,0,0,0,1,3,5,0,0,8,0,0,0,0,0,12,0,0,0,0,2,0,62,0,2,0,0,221,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,26,0,43,0,0,0,6,12,42,15,31,0,0,0,0,1,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,5,73,3,0,0,71,0,131,0,0,0,38,8,0,0,0,0,0,0,0,0,0,76,1,0,0,0,2,0,0,0,0,2,102,10,0,0,0,0,0,0,0,0,289,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,6,0,0,0,0,11,25,29,0,12,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,16,1 +3,0,0,4,2,28,6,8,39,11,5,0,0,0,15,0,24,0,6,6,0,2,1,2,0,0,0,0,4,0,6,0,0,2,16,0,30,6,4,0,46,0,0,0,1,0,0,8,0,0,0,0,5,97,0,0,0,0,0,1,0,0,0,12,0,16,0,0,894,28,249,0,10,0,0,0,0,0,29,6,0,0,0,3,2,16,142,0,8,16,2,0,0,0,0,38,0,13,0,0,2,2,70,0,13,0,0,334,0,0,0,0,3,0,1,0,2,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,8,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,159,0,83,0,0,0,10,11,55,64,161,0,0,0,0,1,0,0,0,0,0,0,0,0,485,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,20,217,6,0,0,271,0,257,0,0,0,165,33,0,0,0,0,0,0,0,0,0,95,1,0,0,0,11,0,0,0,0,4,118,72,0,0,0,0,0,0,0,0,80,0,0,112,0,0,1,0,0,0,0,0,13,0,0,0,5,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,14,0,0,0,0,17,46,241,0,10,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,4,0,4,191,70,1 +3,0,0,12,0,25,3,0,21,11,7,0,0,0,35,2,24,0,7,1,0,0,0,1,0,0,3,0,6,0,11,1,0,0,14,0,25,6,0,0,101,0,0,0,1,0,0,10,0,0,0,0,11,188,0,0,0,0,0,1,0,0,0,0,0,22,0,0,8510,25,173,0,18,0,0,0,0,0,41,0,0,0,0,0,1,14,2135,0,0,14,0,0,0,0,0,68,0,13,0,0,2,0,133,0,18,0,0,988,0,0,0,0,26,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,1438,0,172,0,0,0,22,25,54,817,1439,0,0,0,0,1,0,0,0,0,0,0,0,0,2742,0,0,0,0,0,0,0,0,0,0,0,0,384,0,0,0,0,0,0,0,0,8,35,317,16,0,0,370,0,389,0,0,0,297,28,0,0,0,0,0,0,2,0,0,99,1,0,0,0,2,0,0,0,0,11,156,182,0,0,0,0,3,0,0,0,788,0,0,1737,0,0,1,0,0,0,0,0,20,0,0,0,3,0,0,0,0,0,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,29,0,0,0,8,1,39,886,0,21,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1874,150,1 +4,0,0,0,0,20,3,0,3,2,1,0,0,0,5,0,15,0,7,2,0,0,0,1,0,0,0,0,3,0,5,0,0,0,9,0,20,6,0,0,47,0,0,0,0,0,0,0,0,0,0,0,4,21,0,0,0,0,0,1,0,0,0,4,0,3,0,0,157,20,36,0,8,0,0,0,0,0,0,0,0,0,0,0,2,2,6,0,0,9,0,0,0,0,0,26,0,0,0,0,2,0,34,0,2,0,0,222,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,24,0,44,0,0,0,8,11,46,31,31,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,86,0,0,0,68,0,150,0,0,0,29,9,0,0,0,0,0,0,0,0,0,34,0,0,0,0,3,0,0,0,0,5,102,1,0,0,0,0,0,0,0,0,30,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,11,0,0,0,0,1,29,9,0,8,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,15,1 +3,0,0,3,0,25,4,0,12,0,2,0,0,2,2,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,1,0,25,6,0,0,20,0,0,0,1,0,0,1,0,0,0,0,1,90,0,0,0,0,0,1,0,0,0,0,0,2,0,0,628,25,37,0,1,0,0,0,0,0,8,0,0,0,0,0,7,13,92,0,0,1,0,0,0,0,0,71,5,2,0,0,2,0,20,0,0,0,0,354,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,64,0,33,0,0,0,0,3,177,9,68,0,0,0,0,1,0,3,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,103,3,0,0,137,0,207,0,0,0,44,2,0,0,0,0,0,0,0,0,0,45,1,0,0,0,8,0,0,0,0,0,107,34,0,0,0,0,0,0,0,0,71,0,0,44,2,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,149,0,2,8,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,121,52,1 +4,0,0,6,0,26,21,0,43,2,8,0,0,0,14,1,17,0,7,1,0,0,0,1,0,0,0,0,4,0,8,0,0,0,9,0,26,6,0,0,86,0,0,0,1,0,0,2,1,0,0,0,7,59,0,0,0,0,0,1,0,0,0,0,0,12,0,0,7841,26,113,0,12,0,0,0,0,0,21,0,0,0,0,0,1,5,37,0,0,9,0,0,0,15,0,145,10,4,0,0,2,0,137,0,9,0,0,603,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,61,0,76,0,0,0,14,10,56,115,65,0,0,0,0,1,0,0,0,0,0,0,0,0,11297,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,14,160,6,0,0,197,0,379,0,0,0,92,10,0,0,0,0,0,0,0,0,0,111,1,0,2,0,2,0,0,0,0,4,115,83,0,0,19,0,0,0,0,0,36,0,0,20,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,18,0,0,0,8,1,35,132,0,12,0,0,0,0,0,0,87,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2330,90,1 +9,0,0,12,1,34,26,1,47,15,10,0,0,0,44,0,69,0,9,1,0,0,0,1,2,0,0,0,8,0,7,0,0,1,23,0,35,55,14,0,123,0,0,0,1,0,0,3,0,0,0,0,8,110,0,0,0,0,0,1,0,0,0,0,0,26,0,0,958,34,188,0,15,0,0,0,0,0,7,0,0,0,0,1,1,8,101,0,1,23,1,0,1,0,0,91,0,4,0,0,4,1,139,0,25,0,0,749,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,99,0,67,0,0,0,16,30,60,175,108,0,0,0,0,1,0,0,0,0,0,0,0,0,454,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,112,55,377,26,0,0,362,0,518,0,1,0,177,28,0,0,0,0,0,0,4,0,0,205,1,0,0,0,4,0,0,0,0,8,137,49,0,0,0,0,0,0,1,0,234,0,0,86,0,0,1,0,0,0,0,0,4,0,0,0,8,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,33,1,1,1,0,22,0,0,0,0,9,58,254,0,15,0,0,0,0,0,0,156,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,0,0,0,0,0,0,0,0,0,0,0,1,0,0,250,38,1 +2,0,0,4,0,20,3,0,16,1,4,0,0,0,9,1,15,0,7,1,0,0,0,1,0,0,0,0,4,0,9,0,0,0,8,0,20,6,0,0,33,0,0,0,1,0,0,1,0,0,0,0,8,59,0,0,0,0,0,1,0,0,0,0,0,9,0,0,313,20,60,0,13,0,0,0,0,0,6,0,0,0,0,0,1,3,42,0,0,8,0,0,0,0,0,27,0,2,0,0,2,0,45,0,7,0,0,246,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,52,0,40,0,0,0,16,13,48,29,58,0,0,0,0,1,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,12,120,4,0,0,127,0,206,0,0,0,54,7,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,5,106,19,0,0,0,0,0,0,0,0,42,0,0,48,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,20,0,0,0,8,1,28,130,0,13,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,93,16,1 +15,0,0,6,2,31,25,8,64,46,9,0,0,0,52,0,46,0,7,6,0,2,1,2,0,0,12,0,2,0,7,0,0,2,19,0,33,6,2,0,185,0,0,0,1,0,0,2,0,0,0,0,6,103,0,2,0,0,0,1,0,0,0,11,0,55,0,0,1912,31,326,0,9,0,0,0,0,0,9,6,0,0,0,0,2,5,171,0,8,19,2,0,1,27,0,244,15,4,0,0,2,2,339,0,50,0,0,1006,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,130,0,57,0,0,0,12,27,55,621,165,0,0,0,0,1,0,0,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,77,220,8,0,0,326,0,454,0,0,0,215,19,0,0,0,0,0,0,0,0,0,203,1,0,0,0,11,0,0,0,0,7,118,167,0,0,30,0,0,0,0,0,91,0,0,44,0,0,1,20,0,0,0,0,2,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,10,0,0,0,0,17,52,371,0,21,0,0,0,0,0,0,227,10,0,0,0,0,0,0,0,0,0,0,0,2,0,1,48,20,0,0,0,0,0,0,0,0,0,0,4,0,0,133,41,1 +10,0,0,4,10,35,14,40,89,9,14,0,0,0,17,0,135,0,6,26,0,10,5,2,0,0,0,0,8,0,4,0,0,10,19,0,45,231,84,0,153,0,8,0,1,0,0,10,0,0,0,0,3,211,2,0,0,0,0,1,0,0,0,14,0,16,0,0,3272,35,981,0,12,0,0,0,0,0,40,30,0,0,0,0,2,16,741,0,40,19,10,0,0,0,0,62,0,17,1,0,2,10,101,0,12,0,0,1127,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,315,0,127,0,0,0,6,9,81,82,438,0,0,0,0,1,0,0,0,0,0,0,0,0,800,0,0,0,0,0,0,0,0,0,0,0,0,10,0,4,0,0,0,0,0,0,8,18,1167,14,0,0,1283,0,712,0,0,0,1038,40,0,0,0,0,0,0,0,0,0,275,1,0,0,0,43,0,0,0,0,4,721,224,0,0,0,0,0,0,0,0,561,0,0,932,0,0,1,0,1,0,0,0,22,0,0,0,2,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,14,0,0,0,0,81,64,1303,0,12,0,0,0,0,0,0,517,2,0,0,0,0,0,0,0,0,0,0,0,10,0,1,9,0,0,0,0,0,0,0,0,0,0,0,16,0,5,2900,164,1 +7,0,0,4,0,46,6,0,37,8,3,0,0,2,13,0,565,0,6,3,0,0,0,6,0,10,0,0,8,0,4,0,0,0,9,898,46,6,0,0,58,0,0,0,1,0,0,4,0,0,0,0,4,203,0,0,0,0,0,1,0,0,0,0,0,14,0,0,19350,46,659,0,9,0,0,0,0,0,25,0,0,0,0,0,8,21,3348,0,0,9,0,0,0,0,0,108,5,9,0,0,2,0,611,0,11,0,0,1699,0,0,0,0,14,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,8,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,12,12,12,0,0,0,2700,0,104,0,0,0,6,9,246,360,2673,0,0,0,0,1,0,3,0,0,0,0,0,0,525,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,21,257,4,0,0,268,0,328,0,0,0,101,12,0,0,0,0,0,0,0,0,0,632,1,0,0,0,9,0,0,0,0,4,129,27,0,0,0,0,0,0,0,0,1571,1,0,159,6,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,11,0,0,0,0,1,55,178,0,10,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,584,45,1 +2,0,0,0,0,19,3,0,3,5,1,0,0,0,7,0,14,0,7,3,0,0,0,0,0,0,0,0,1,0,3,0,0,0,8,0,19,6,0,0,40,0,0,0,1,0,0,1,0,0,0,0,2,26,0,0,0,0,0,1,0,0,0,2,0,5,0,0,177,19,35,0,4,0,0,0,0,0,2,0,0,0,0,0,2,4,5,0,0,8,0,0,0,0,0,17,0,0,0,0,2,0,32,0,5,0,0,233,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,24,0,61,0,0,0,4,7,43,23,33,0,0,0,0,1,0,0,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,10,78,0,0,0,83,0,147,0,0,0,44,12,0,0,0,0,0,0,0,0,0,35,1,0,0,0,3,0,0,0,0,3,101,19,0,0,0,0,0,0,0,0,26,0,0,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,5,0,0,0,0,1,27,56,0,4,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,19,1 +6,0,0,3,0,17,2,0,21,0,3,0,0,0,2,0,25,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,4,0,17,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,2,94,0,0,0,0,0,1,0,0,0,0,0,2,0,0,725,17,65,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,48,0,0,4,0,0,0,0,0,10,0,3,0,0,2,0,53,0,0,0,0,276,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,59,0,56,0,0,0,4,10,32,174,68,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,113,3,0,0,114,0,277,0,0,0,40,6,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,101,18,0,0,0,0,0,0,0,0,62,0,0,38,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,21,169,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,103,23,1 +16,0,0,2,6,30,2,30,29,0,8,0,0,0,2,0,45,0,6,19,0,6,0,1,0,17,18,0,4,0,7,0,0,6,18,0,30,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,23,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1422,30,540,0,28,0,0,0,0,0,34,18,0,0,0,0,1,6,508,0,30,18,6,0,0,0,0,76,0,1,0,0,2,6,148,0,0,0,0,475,0,0,0,0,11,2,0,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,6,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,88,0,70,0,0,0,29,49,72,80,103,0,0,0,0,1,0,0,0,0,0,0,0,0,526,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,148,8,0,0,190,0,239,0,0,0,118,8,0,0,0,0,0,0,0,0,0,92,1,0,0,0,26,0,0,0,0,24,112,31,0,0,0,0,0,0,0,0,867,0,0,738,0,0,1,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,10,0,0,0,0,1,48,123,0,46,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,350,265,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,4,0,0,139,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,31,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,141,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,169,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,211,5,0,0,229,0,321,0,1,0,55,4,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,116,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,26,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,97,16,2 +0,0,0,2,0,14,2,0,16,0,4,0,0,0,2,0,14,0,6,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,2,0,14,6,0,0,5,0,0,0,1,0,0,4,0,0,0,0,0,75,0,1,0,0,0,1,0,0,0,0,0,1,0,0,10407,14,70,0,1,0,0,0,0,0,23,0,0,0,1,0,2,9,1397,0,0,2,0,0,0,0,0,17,0,9,0,0,2,0,17,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,980,0,87,0,0,0,0,3,38,10,995,0,0,0,0,1,0,0,0,0,0,0,0,0,4281,0,0,0,0,0,0,0,0,0,0,0,0,5,0,6,0,0,0,0,0,0,8,11,107,2,0,0,140,0,174,0,0,0,64,10,0,0,0,0,0,0,4,0,0,44,1,0,0,0,3,0,0,0,0,0,105,37,0,0,0,0,0,0,0,0,886,0,0,3475,0,0,1,0,0,0,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,16,121,0,1,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1453,51,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,11,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2547,11,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1013,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,460,0,0,0,0,29,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,390,0,123,0,0,0,0,3,59,19,432,0,0,0,0,1,0,0,0,0,0,0,0,0,1133,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,151,3,0,0,110,0,285,0,0,0,39,5,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,714,0,0,876,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,11,170,0,23,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,419,35,2 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,23,0,21,0,0,0,1,0,0,0,0,0,6,0,0,207,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,72,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,50,0,0,0,0,3,57,44,113,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,85,3,0,0,83,0,115,0,0,0,29,3,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,207,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,15,2 +6,0,0,2,0,14,2,0,20,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,8,0,0,0,0,0,153,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1833,14,93,0,3,0,0,0,0,0,32,0,0,0,0,0,1,13,296,0,0,3,0,0,0,0,0,22,0,12,0,0,2,0,20,0,0,0,0,275,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,259,0,111,0,0,0,0,3,33,20,265,0,0,0,0,1,0,0,0,0,0,0,0,0,590,0,0,0,0,0,0,0,0,0,0,0,0,8,0,2,0,0,0,0,0,0,10,3,129,2,0,0,252,0,424,0,0,0,180,27,0,0,0,0,0,0,6,0,0,48,1,0,0,0,2,0,0,0,0,1,108,139,0,0,0,0,0,0,0,0,670,0,0,258,0,0,1,0,0,0,0,0,15,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,553,0,3,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,313,52,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,97,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2532,10,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1014,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,338,0,0,0,0,31,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,388,0,128,0,0,0,0,3,56,19,429,0,0,0,0,1,0,0,0,0,0,0,0,0,1124,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,153,3,0,0,107,0,263,0,0,0,39,3,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,717,0,0,879,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,436,32,2 +4,0,0,2,0,10,2,0,10,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,4,0,3,0,0,0,2,0,10,6,0,0,5,0,1,0,2,0,0,1,0,0,0,0,2,57,0,0,0,0,0,1,0,0,0,0,0,1,0,0,7920,10,39,0,7,0,0,0,0,0,6,0,0,0,0,0,1,4,1876,0,0,2,0,0,0,0,0,19,0,1,0,0,2,0,14,0,0,0,0,136,0,0,0,0,5,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1082,0,113,0,0,0,4,7,26,28,1121,0,0,0,0,1,0,0,0,0,0,0,0,0,2768,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,83,2,0,0,108,0,212,0,0,0,55,7,0,0,0,0,0,0,127,0,0,38,1,0,0,0,2,0,0,0,0,3,92,42,0,0,0,0,0,0,0,0,1076,0,0,2219,0,0,1,1,1,0,0,0,4,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,124,0,0,0,0,247,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,63,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,8,0,0,0,0,1,12,180,0,7,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,63,0,0,0,0,0,0,0,1,1107,9,2 +0,0,0,2,0,11,2,0,17,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,4,0,0,0,0,0,56,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9652,11,52,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1247,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,16,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,875,0,49,0,0,0,0,3,27,8,892,0,0,0,0,1,0,0,0,0,0,0,0,0,3785,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,90,2,0,0,113,0,109,0,0,0,48,8,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,95,29,0,0,0,0,0,0,0,0,835,0,0,3289,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,102,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1287,22,2 +0,0,0,2,0,11,51,0,3,0,2,0,0,0,2,0,9,0,7,1,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,11,6,0,0,52,0,0,0,1,0,0,0,0,0,0,0,7,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,336,11,74,0,8,0,0,0,0,0,0,0,0,0,0,0,2,2,48,0,0,0,0,0,0,0,0,7,0,0,0,0,2,0,111,0,0,0,0,2946,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,44,0,40,0,0,0,14,9,36,20,66,0,0,0,0,1,0,0,0,0,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,97,2,0,0,68,0,122,0,0,0,29,5,0,0,0,0,0,0,0,0,0,74,0,0,0,0,3,0,0,0,0,1,93,28,0,0,0,0,2,0,0,0,180,0,0,7,0,0,1,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,14,0,0,0,0,1,11,56,0,8,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,15,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,59,0,1,0,0,0,1,0,0,0,0,0,1,0,0,8305,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1072,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,760,0,50,0,0,0,0,3,27,8,777,0,0,0,0,1,0,0,0,0,0,0,0,0,3296,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,87,2,0,0,109,0,108,0,0,0,46,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,718,0,0,2829,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1115,21,2 +9,0,0,3,0,12,7,0,47,0,2,0,0,0,4,12,15,0,7,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,12,6,0,0,54,0,0,0,1,0,0,11,0,0,0,0,0,150,0,0,0,0,0,1,0,0,0,0,0,4,0,0,3641,12,140,0,1,0,0,0,0,0,52,0,0,0,0,0,2,14,780,0,0,0,0,0,0,0,0,29,0,18,0,0,2,0,51,0,0,0,0,231,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,1,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,545,0,148,0,0,0,0,3,34,45,554,0,0,0,0,1,0,0,0,0,0,0,0,0,1352,0,0,0,0,0,0,0,0,0,0,0,0,11,0,4,0,0,0,0,0,0,10,3,122,3,0,0,161,0,268,0,0,0,88,7,0,0,0,0,0,0,14,0,0,94,1,0,0,0,3,0,0,0,0,0,95,54,0,0,0,0,0,0,0,0,830,0,0,811,0,0,1,0,0,0,0,0,27,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,12,414,0,1,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,685,143,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,12,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,74,0,0,0,0,0,1,0,0,0,0,0,1,0,0,985,12,59,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,128,0,0,0,0,0,0,0,0,15,0,5,0,0,2,0,14,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,120,0,86,0,0,0,0,3,34,13,137,0,0,0,0,1,0,0,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,8,3,114,2,0,0,249,0,313,0,0,0,179,12,0,0,0,0,0,0,2,0,0,41,1,0,0,0,2,0,0,0,0,0,101,160,0,0,0,0,0,0,0,0,58,0,0,82,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,12,499,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,208,31,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,154,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,53,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,183,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,29,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,18,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,39,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,138,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,176,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,31,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,1,0,0,950,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,495,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,286,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,112,2,0,0,119,0,145,0,0,0,61,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,26,2 +2,0,0,3,0,9,2,0,8,0,3,0,0,0,3,0,15,0,6,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,9,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,3,0,0,909,9,30,0,1,0,0,0,0,0,4,0,0,0,0,0,1,4,461,0,0,1,0,0,0,0,0,7,0,1,0,0,2,0,8,0,1,0,0,75,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,22,0,0,0,0,3,23,4,45,0,0,0,0,1,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,62,3,0,0,67,0,97,0,0,0,17,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,1,0,0,0,0,0,91,7,0,0,0,0,0,0,0,0,783,0,0,728,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,1,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,21,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,227,4,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,4,0,0,201,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,45,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,115,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,175,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,85,3,0,0,111,0,163,0,0,0,46,1,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,10,2 +3,0,0,5,0,34,6,0,38,0,5,0,0,6,5,0,565,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,762,34,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,1,173,0,0,0,0,0,1,0,0,0,0,0,2,0,0,7559,34,625,0,3,0,0,0,0,0,12,0,0,0,0,0,8,24,1490,0,0,1,0,0,0,0,0,190,20,3,0,0,2,0,604,0,0,2,0,1530,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,561,0,50,0,0,0,1,4,263,352,558,0,0,0,0,1,0,4,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,24,170,5,0,0,180,0,259,0,0,0,42,2,0,0,0,0,0,0,0,0,0,631,1,0,0,0,9,0,0,0,0,0,117,11,0,0,8,0,0,0,0,0,2291,1,0,61,6,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,20,0,4,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,612,29,2 +3,0,0,5,2,57,17,8,119,6,28,0,0,2,11,1,969,0,6,10,0,2,1,18,0,11,3,0,5,0,2,0,0,1,18,3462,59,6,60,0,150,0,0,0,1,0,0,5,0,0,0,0,2,404,0,0,0,0,0,1,0,0,0,0,0,23,0,0,53654,57,1497,0,3,0,0,0,0,0,48,6,0,0,0,0,22,38,8893,0,8,18,1,0,1,63,0,625,70,9,0,0,2,2,1201,0,9,0,0,2240,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,12,12,12,0,0,0,7824,0,232,0,0,0,2,8,372,885,7913,0,0,0,0,1,0,4,0,0,0,0,0,0,1680,0,96,0,0,0,0,0,0,0,0,0,0,5,1,6,0,0,0,0,1,0,44,19,367,7,0,0,414,0,486,0,0,0,209,26,0,0,0,0,0,0,4,0,0,1153,1,0,0,0,31,0,0,0,0,1,150,203,0,0,180,0,0,0,0,0,4444,1,0,936,16,0,1,2,0,0,0,0,9,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,41,41,0,0,4,0,0,0,0,0,16,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,7,0,0,0,0,51,77,225,0,7,14,0,0,0,0,0,397,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,977,108,2 +8,0,0,3,0,30,5,0,12,0,2,0,0,2,2,0,28,0,6,2,0,0,0,6,0,8,9,0,2,0,4,0,0,0,6,0,30,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,4,78,0,0,0,0,0,1,0,0,0,0,0,2,0,0,714,30,55,0,4,0,0,0,0,0,3,0,0,0,0,0,7,12,171,0,0,6,0,0,0,0,0,72,5,0,0,0,2,0,75,0,0,0,0,539,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,100,0,66,0,0,0,6,12,183,21,110,0,0,0,0,1,0,4,0,0,0,0,0,0,240,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,97,3,0,0,121,0,208,0,0,0,51,4,0,0,0,0,0,0,0,0,0,57,0,0,0,0,8,0,0,0,0,1,112,31,0,0,0,0,0,0,0,0,704,0,0,3,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,4,5,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,3,0,0,0,0,1,36,74,0,14,9,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,51,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,52,0,0,0,0,0,1,0,0,0,0,0,4,0,0,140,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,121,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,176,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,213,5,0,0,229,0,329,0,1,0,55,2,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,38,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,15,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,1,0,0,0,0,4,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,71,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,970,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,47,2,0,0,44,0,134,0,0,0,5,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,24,2 +19,0,0,3,0,26,2,0,4,19,3,0,0,0,22,0,10,0,7,1,0,0,0,2,0,0,0,0,2,0,3,0,0,0,6,0,26,6,0,0,10978,0,0,0,1,0,0,1,0,0,0,0,2,52,0,0,0,0,0,1,0,0,0,0,0,22,0,0,5371,26,46,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,18,0,1,0,0,2,0,51,0,20,0,0,65865,0,0,0,0,4,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,4,7,58,65,21973,0,0,0,0,1,0,0,0,0,0,0,0,0,97621,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,23,437,3,0,0,91,0,216,0,0,0,25,326,0,0,0,0,0,0,0,0,0,48,1,0,0,0,3,0,0,0,0,3,108,6,0,0,0,0,0,0,0,0,612,0,0,18,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,4,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,6,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,32161,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13741,0,0,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6201,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,71900,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,27523,0,0,0,0,1,0,0,0,0,0,0,0,0,91446,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,446,3,0,0,91,0,219,0,0,0,25,335,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,613,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,31023,2 +1,0,0,3,0,9,2,0,21,0,5,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,18,0,0,0,1,0,0,2,0,0,0,0,0,85,0,0,0,0,0,1,0,0,0,0,0,1,0,0,709,9,52,0,1,0,0,0,0,0,9,0,0,0,0,0,1,4,94,0,0,1,0,0,0,4,0,51,10,2,0,0,2,0,37,0,0,0,0,140,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,49,0,0,0,0,3,23,40,102,0,0,0,0,1,0,0,0,0,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,3,120,3,0,0,150,0,159,0,0,0,88,4,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,0,126,53,0,0,23,0,0,0,0,0,649,0,0,181,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,248,0,1,0,0,0,0,0,0,33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,219,18,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,0,0,0,20,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,18,0,0,0,0,3,21,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,42,0,57,0,0,0,12,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,11,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,20,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,4,2 +4,0,0,4,0,50,9,0,26,2,3,0,0,2,10,0,462,0,7,3,0,0,0,6,0,11,0,0,5,0,2,0,0,0,17,898,50,6,0,0,52,0,0,0,1,0,0,4,0,0,0,0,3,189,0,0,0,0,0,1,0,0,0,2,0,11,0,0,24873,50,533,0,5,0,0,0,0,0,21,0,0,0,0,2,8,21,4372,0,0,17,0,0,0,0,0,97,5,4,0,0,2,0,488,0,8,0,0,1538,0,0,0,0,8,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,12,12,12,0,0,0,3640,0,116,0,0,0,3,5,269,344,3633,0,0,0,0,1,0,5,0,0,0,0,0,0,516,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,1,32,18,255,4,0,0,261,0,310,0,0,0,116,12,0,0,0,0,0,0,0,0,0,519,1,0,0,0,9,0,0,0,0,2,133,23,0,0,0,0,0,0,0,0,1385,1,0,76,6,0,1,1,0,0,0,0,7,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,4,0,0,0,0,1,67,156,0,6,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,614,52,2 +0,0,0,2,0,13,2,0,16,0,4,0,0,0,2,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,13,6,0,0,5,0,0,0,1,0,0,4,0,0,0,0,0,62,0,1,0,0,0,1,0,0,0,0,0,1,0,0,10061,13,70,0,1,0,0,0,0,0,23,0,0,0,1,0,2,9,1348,0,0,2,0,0,0,0,0,17,0,9,0,0,2,0,17,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,953,0,86,0,0,0,0,3,34,10,968,0,0,0,0,1,0,0,0,0,0,0,0,0,4033,0,0,0,0,0,0,0,0,0,0,0,0,5,0,6,0,0,0,0,0,0,8,11,97,2,0,0,134,0,160,0,0,0,62,6,0,0,0,0,0,0,4,0,0,44,1,0,0,0,3,0,0,0,0,0,102,36,0,0,0,0,0,0,0,0,860,0,0,3366,0,0,1,0,0,0,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,15,121,0,1,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1399,50,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,11,6,0,0,73,0,3,0,1,0,0,5,0,0,0,0,0,95,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2579,11,80,0,24,0,0,0,0,0,16,0,0,0,0,0,1,10,1017,0,0,0,0,0,0,0,0,36,0,4,0,0,2,0,38,0,0,0,0,446,0,0,0,0,30,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,394,0,125,0,0,0,0,3,58,19,435,0,0,0,0,1,0,0,0,0,0,0,0,0,1147,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,155,3,0,0,110,0,291,0,0,0,39,3,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,722,0,0,891,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,23,0,0,0,0,1,11,170,0,24,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,432,33,2 +8,0,0,6,0,36,16,0,107,0,19,0,0,6,4,0,1281,0,6,1,0,0,0,8,0,10,0,0,5,0,33,0,0,0,4,95,36,6,0,0,135,0,1,0,1,0,0,1,0,0,0,0,1,154,0,0,0,0,0,1,0,0,0,0,0,12,0,0,119471,36,1473,0,3,0,0,0,0,0,16,0,0,0,0,0,8,23,28732,0,0,4,0,0,1,50,0,589,40,2,0,0,2,0,1566,0,0,6,0,1498,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,12,12,12,0,0,0,18638,0,61,0,0,0,1,4,261,542,18640,0,0,0,0,1,0,3,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,86,16,184,6,0,0,234,0,291,0,0,0,108,5,0,0,0,0,0,0,0,0,0,1439,1,0,0,0,9,0,0,0,0,0,123,165,0,0,57,0,0,0,0,0,3763,1,0,96,8,0,1,1,1,0,0,0,3,0,1,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,33,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,37,0,0,0,0,1,40,130,0,36,12,0,0,0,0,0,178,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,665,42,2 +8,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,8,0,0,0,0,21,0,0,0,2,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,8,38,0,0,0,0,0,1,0,0,0,0,0,11,0,0,69,11,121,0,9,0,0,0,0,0,1,0,0,0,0,0,1,1,35,0,0,2,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,65,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,27,366,58,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,125,0,0,0,22,2,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,604,0,0,19,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,21,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,36,0,0,0,0,1,13,6,0,29,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,3,2 +10,0,0,3,0,18,2,0,12,0,3,0,0,0,3,0,50,0,7,1,0,0,0,1,0,0,24,0,0,0,9,0,0,0,7,0,18,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,8,21,0,0,0,0,0,1,0,0,0,0,0,3,0,0,218,18,101,0,9,0,0,0,0,0,0,0,0,0,0,0,1,1,38,0,0,7,0,0,0,0,0,37,0,0,0,0,2,0,161,0,1,0,0,331,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,46,0,39,0,0,0,16,43,45,46,65,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,82,3,0,0,60,0,145,0,0,0,21,5,0,0,0,0,0,0,0,0,0,77,0,0,0,0,2,0,0,0,0,9,98,1,0,0,0,0,0,0,0,0,678,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,8,0,0,0,0,1,25,7,0,33,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,213,2 +2,0,0,3,0,58,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,9,0,0,0,0,1,0,0,0,49,0,58,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,9,38,0,0,0,0,0,1,0,0,0,0,0,10,0,0,461,58,96,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,39,0,0,49,0,0,1,47,0,390,35,0,0,0,2,0,236,0,0,0,0,915,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,47,0,89,0,0,0,9,12,73,371,80,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,196,3,0,0,186,0,228,0,0,0,153,5,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,10,140,112,0,0,84,0,0,0,0,0,598,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,0,0,0,0,0,1,107,49,0,10,0,0,0,0,0,0,141,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,6,2 +28,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,13,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,12,23,0,0,0,0,0,1,0,0,0,0,0,1,0,0,156,12,25,0,13,0,0,0,0,0,0,0,0,0,0,0,1,1,43,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,0,0,0,188,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,31,0,0,0,24,8,38,38,54,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,53,2,0,0,44,0,156,0,0,0,5,5,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,606,0,0,12,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,24,0,0,0,0,1,13,1,0,13,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,14,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,55,0,0,0,2,5,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +14,0,0,2,6,21,2,30,21,0,8,0,0,0,2,0,15,0,6,19,0,6,0,1,0,17,0,0,0,0,0,0,0,6,10,0,21,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,17,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1228,21,411,0,18,0,0,0,0,0,6,18,0,0,0,0,1,6,542,0,30,10,6,0,0,0,0,48,0,1,0,0,2,6,30,0,0,0,0,394,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,6,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,66,0,38,0,0,0,17,19,52,56,78,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,120,8,0,0,137,0,222,0,0,0,70,12,0,0,0,0,0,0,0,0,0,54,1,0,0,0,26,0,0,0,0,18,103,33,0,0,0,0,0,0,0,0,226,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,0,0,0,0,0,1,31,119,0,17,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,264,244,2 +3,0,0,4,1,39,26,1,54,0,5,0,0,0,6,0,179,0,8,1,0,0,0,1,0,0,69,0,0,0,0,23,0,1,28,0,40,54,0,0,11,0,0,0,1,0,0,1,0,0,0,0,23,71,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1162,39,328,0,24,0,0,0,0,0,4,0,0,0,0,0,1,3,101,0,1,28,1,0,1,0,0,44,0,1,0,0,4,1,457,0,2,0,0,1222,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,81,0,95,0,0,0,46,95,58,669,125,0,0,0,0,1,0,0,0,0,0,0,0,0,504,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,112,12,472,5,0,0,311,0,444,0,1,0,136,32,0,0,0,0,0,0,0,0,0,278,1,0,0,0,2,0,0,0,0,1,137,6,0,0,0,0,0,0,0,0,378,0,0,39,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,36,1,1,1,0,23,0,0,0,0,9,68,30,0,92,0,0,0,0,0,0,49,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,185,126,2 +17,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,13991,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5990,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,66,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,68958,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,9,54,69,28043,0,0,0,0,1,0,0,0,0,0,0,0,0,93226,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,380,3,0,0,78,0,216,0,0,0,12,308,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,616,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,31815,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,35,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,164,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,176,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,169,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,23,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,140,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,169,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,25,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,1,0,0,919,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,464,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,274,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,44,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,115,2,0,0,119,0,144,0,0,0,61,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,241,29,2 +3063,0,0,3,0,22,5,0,36,0,9,0,0,0,2,0,18,0,7,1,0,0,0,1,0,0,0,0,95,0,1,0,0,0,1,0,22,25,0,0,41,0,3,0,1,0,0,4,0,0,0,0,0,64,0,0,0,0,0,1,0,0,0,0,0,5,0,0,62440,22,6255,0,96,0,0,0,0,0,3052,0,0,0,0,0,1,8,6521,0,0,1,0,0,1,20,0,269,20,3,0,0,2,0,211,0,0,0,0,52017,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3061,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3109,0,71,0,0,0,0,3,68,138,3113,0,0,0,0,1,0,0,0,0,0,0,0,0,59450,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,14,3,967,3,0,0,3170,0,336,0,0,0,3071,393,0,0,0,0,0,0,4,0,0,77,1,0,0,0,2,0,0,0,0,1,106,58,0,0,46,0,0,0,0,0,3900,0,0,838,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,95,0,0,0,0,1,23,58,0,96,0,0,1,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,10733,6378,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +9,0,0,3,0,14,2,0,14,0,3,0,0,0,3,0,16,0,6,2,0,0,0,1,0,0,0,0,0,0,1,1,2,0,2,0,14,12,0,0,10,0,0,0,1,0,0,1,0,0,0,0,1,50,0,0,0,0,0,1,0,0,0,0,0,3,0,0,390,14,56,0,2,0,0,0,0,0,13,0,0,0,0,0,2,4,75,0,0,2,0,0,0,0,0,8,0,1,0,0,2,0,15,0,1,0,0,149,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,67,0,54,0,0,0,2,3,33,63,113,0,0,0,0,1,0,0,0,0,6,0,0,0,431,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,120,3,0,0,124,0,172,0,0,0,53,9,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,99,27,0,0,0,0,3,0,6,3,44,0,0,41,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,36,0,0,0,0,1,16,73,0,2,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,32,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,21,0,1,0,0,0,0,0,11,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,97,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2526,11,78,0,22,0,0,0,0,0,16,0,0,0,0,0,1,10,1005,0,0,0,0,0,0,0,0,34,0,4,0,0,2,0,36,0,0,0,0,483,0,0,0,0,34,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,385,0,125,0,0,0,0,3,60,19,426,0,0,0,0,1,0,0,0,0,0,0,0,0,1110,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,162,3,0,0,110,0,262,0,0,0,39,6,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,718,0,0,876,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,21,0,0,0,0,1,11,170,0,22,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,428,17,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,23,0,0,0,0,0,0,0,10,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,91,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2607,10,81,0,24,0,0,0,0,0,17,0,0,0,0,0,1,10,1033,0,0,0,0,0,0,0,0,36,0,4,0,0,2,0,38,0,0,0,0,406,0,0,0,0,29,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,396,0,121,0,0,0,0,3,55,19,436,0,0,0,0,1,0,0,0,0,0,0,0,0,1157,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,143,3,0,0,108,0,281,0,0,0,39,14,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,724,0,0,895,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,23,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,428,33,2 +67,0,0,15,3,120,69,9,200,20,31,0,8,7,33,46,1264,0,9,9,0,2,2,10,0,11,63,0,36,0,53,1,0,3,72,898,123,78,0,0,563,0,0,0,1,0,0,1,0,0,0,0,54,225,0,0,0,0,0,1,0,0,0,26,0,34,0,0,6893,120,2015,0,88,0,0,0,0,0,14,6,0,0,0,0,14,27,1116,0,9,72,3,0,9,83,0,1154,70,2,0,0,20,3,2059,0,26,3,0,3233,0,0,0,0,62,0,1,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,20,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,80,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,3,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,12,12,12,0,0,0,490,0,240,0,0,0,107,174,463,1142,583,0,0,0,0,1,0,4,0,0,0,0,0,0,1478,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,262,225,836,19,0,0,759,0,893,0,1,0,381,156,0,0,0,0,0,0,0,0,0,1667,1,0,0,0,23,0,0,0,0,54,217,246,0,0,119,0,0,0,0,0,4337,1,0,102,7,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,49,49,0,0,8,1,0,0,0,0,7,56,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,134,1,1,1,0,134,0,0,0,0,65,195,169,0,152,12,0,0,0,0,0,524,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,26,0,0,0,0,0,0,0,0,0,0,0,5,0,1,1645,301,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,22,0,0,0,0,0,1,0,0,0,0,0,1,0,0,94,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,117,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,55,2,0,0,44,0,160,0,0,0,5,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,4,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,206,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,48,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,262,0,0,0,0,3,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,40,0,0,0,0,3,30,238,74,0,0,0,0,1,0,0,0,0,0,0,0,0,178,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,83,3,0,0,111,0,153,0,0,0,46,1,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,11,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,144,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,82,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,31,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,973,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,518,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,305,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,113,2,0,0,119,0,146,0,0,0,61,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,237,27,2 +4,0,0,2,0,12,3,0,9,0,2,0,0,0,2,0,16,0,6,1,0,0,0,2,0,0,0,0,0,0,33,0,0,0,4,0,12,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,1,0,0,711,12,73,0,1,0,0,0,0,0,9,0,0,0,0,0,2,5,208,0,0,4,0,0,0,0,0,9,0,4,0,0,2,0,8,0,0,0,0,125,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,67,0,36,0,0,0,0,3,32,48,93,0,0,0,0,1,0,0,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,82,2,0,0,122,0,148,0,0,0,62,1,0,0,0,0,0,0,0,0,0,38,1,0,0,0,3,0,0,0,0,0,94,40,0,0,0,0,0,0,0,0,49,0,0,416,0,0,1,0,1,0,0,0,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,213,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,32,0,0,0,0,1,16,121,0,33,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,11,2 +11,0,0,9,2,91,11,8,51,10,8,0,0,6,24,0,92,0,7,9,0,2,1,11,0,10,6,0,16,0,14,1,0,2,49,4927,93,9,102,0,123,0,0,0,1,0,0,4,1,0,0,0,15,410,0,0,0,0,0,1,0,0,0,26,0,24,0,0,130630,91,517,0,28,0,0,0,0,0,28,6,0,0,0,1,14,32,20872,0,8,49,2,0,0,0,0,263,20,11,0,0,2,2,223,0,19,9,0,2274,0,0,0,0,29,0,3,0,0,0,4,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,3,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,12,12,12,0,0,0,20105,0,153,0,0,0,29,33,365,124601,20111,0,0,0,0,1,0,10,0,0,1,0,0,0,1771,0,0,0,0,0,0,0,0,0,5,0,0,4,1,0,0,0,0,0,1,0,86,37,506,12,0,0,492,0,706,0,0,0,283,83,0,0,0,0,0,0,0,0,0,199,1,0,4,0,23,0,0,0,0,11,196,41,0,0,10,0,3,0,0,0,970,1,0,323,6,0,1,1,0,0,0,0,12,0,0,0,2,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,6,23,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,103,1,1,1,0,42,0,0,0,6,17,142,289,0,35,12,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,14,0,0,0,0,0,0,0,0,0,0,0,4,0,4,784,138,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,1,0,0,19,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,52,0,64,0,0,0,22,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,21,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,4,2 +2,0,0,3,0,12,4,0,30,0,7,0,0,0,2,0,17,0,7,1,0,0,0,1,0,0,0,0,2,0,3,0,0,0,1,0,12,6,0,0,29,0,0,0,1,0,0,8,0,0,0,0,2,119,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2059,12,113,0,5,0,0,0,0,0,33,0,0,0,0,0,1,11,454,0,0,1,0,0,1,13,0,132,15,8,0,0,2,0,82,0,0,0,0,276,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,343,0,129,0,0,0,4,5,34,105,341,0,0,0,0,1,0,0,0,0,0,0,0,0,740,0,0,0,0,0,0,0,0,0,0,0,0,8,0,6,0,0,0,0,0,0,10,3,123,3,0,0,178,0,240,0,0,0,108,8,0,0,0,0,0,0,13,0,0,67,1,0,0,0,2,0,0,0,0,1,101,103,0,0,31,0,0,0,0,0,726,0,0,368,0,0,1,0,1,0,0,0,15,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,6,0,0,0,0,1,13,138,0,5,0,0,0,0,0,0,81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,8,451,38,2 +18,0,0,23,2,48,30,5,78,13,10,0,0,0,28,0,359,0,9,5,0,1,0,2,0,0,63,0,33,0,25,1,0,2,30,0,50,547,0,0,371,0,0,0,1,0,0,4,0,0,0,0,24,131,0,0,0,0,0,1,0,0,0,21,0,27,0,0,12358,48,653,0,59,0,0,0,0,0,19,3,0,0,0,0,3,8,1636,0,5,30,2,0,1,0,0,213,0,6,0,0,8,2,550,0,23,0,0,1302,0,0,0,0,31,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,9,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,1,0,0,0,0,50,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,1,0,49,0,0,0,0,0,0,1535,0,109,0,0,0,48,112,85,140,1701,0,0,0,0,1,0,0,0,0,0,4,4,0,3764,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,142,93,682,27,0,0,988,0,983,0,1,0,741,23,0,0,0,0,0,0,0,0,0,514,1,0,0,0,8,0,0,0,0,25,273,281,0,0,1,0,0,0,0,0,43573,0,0,3466,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,30,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,41,1,1,1,0,60,0,0,0,0,17,80,577,0,122,0,0,0,0,0,0,769,2,0,0,0,0,0,0,0,0,0,0,0,2,0,2,18,0,0,0,0,0,0,0,0,0,0,0,3,0,5,1235,129,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,12,0,0,0,0,3,21,3,21,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,22,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,2 +3,0,0,5,0,35,6,0,38,0,5,0,0,6,5,0,580,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,762,35,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,1,171,0,0,0,0,0,1,0,0,0,0,0,2,0,0,7182,35,638,0,3,0,0,0,0,0,11,0,0,0,0,0,8,24,1422,0,0,1,0,0,0,0,0,190,20,2,0,0,2,0,619,0,0,2,0,1402,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,517,0,57,0,0,0,1,4,267,352,516,0,0,0,0,1,0,4,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,24,175,5,0,0,182,0,259,0,0,0,41,8,0,0,0,0,0,0,0,0,0,646,1,0,0,0,9,0,0,0,0,0,118,11,0,0,8,0,0,0,0,0,2292,1,0,60,6,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,20,0,4,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,617,29,2 +8,0,19,7,4,47,40,9,161,0,23,0,1,7,10,0,1572,0,8,12,0,2,0,8,1,10,0,0,5,0,33,0,0,2,5,116,50,54,0,0,147,0,1,0,1,0,0,1,0,0,0,0,1,196,0,0,0,0,0,1,0,0,0,0,0,14,0,0,121652,47,1937,0,3,0,0,0,0,0,16,6,0,0,0,0,8,23,29181,0,9,5,2,0,2,50,0,630,40,2,0,0,5,4,1830,0,1,6,0,1522,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,12,12,12,0,0,0,18928,6,63,0,0,0,1,4,288,548,18931,0,0,0,0,1,0,3,0,0,0,25,1,0,386,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,5168,64,417,11,0,0,483,0,556,0,0,0,162,26,0,0,0,0,0,0,0,0,0,1822,1,0,0,0,23,0,0,0,0,0,147,165,0,38,57,0,0,0,0,0,4577,1,0,116,8,0,1,1,1,0,0,0,3,0,1,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,33,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,37,0,0,0,0,25,55,133,0,36,12,0,0,0,0,0,199,4,0,0,0,0,0,0,0,0,0,0,0,5,0,1,7,0,0,0,0,0,0,0,3,0,0,0,242,0,1,807,51,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +8,0,0,6,0,40,18,0,74,0,21,0,0,7,4,0,492,0,6,1,0,0,0,8,0,13,0,0,7,0,10,0,0,0,2,3541,40,6,0,0,117,0,1,0,1,0,0,1,0,0,0,0,4,278,0,0,0,0,0,1,0,0,0,0,0,10,0,0,13130,40,647,0,7,0,0,0,0,0,23,0,0,0,0,0,8,57,2514,0,0,2,0,0,1,40,0,597,45,2,0,0,2,0,738,0,0,94,0,2144,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,12,12,12,0,0,0,832,0,68,0,0,0,3,6,304,949,834,0,0,0,0,1,0,3,0,0,0,0,0,0,364,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,16,248,6,0,0,298,0,292,0,0,0,135,74,0,0,0,0,0,0,0,0,0,622,1,0,0,0,9,0,0,0,0,0,136,139,0,0,119,0,0,0,0,0,2532,1,0,101,11,0,1,1,1,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,11,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,28,0,0,0,0,1,42,128,0,18,12,0,0,0,0,0,157,1,0,0,0,0,0,0,0,0,0,0,0,2,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,957,46,2 +9,0,0,4,0,38,36,0,26,0,3,0,0,2,3,0,558,0,7,2,0,0,0,8,0,11,0,0,6,0,1,0,0,0,3,1537,38,6,0,0,23,0,0,0,1,0,0,2,0,0,0,0,1,442,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57698,38,724,0,3,0,0,0,0,0,74,0,0,0,0,0,9,21,9959,0,0,3,0,0,0,0,0,96,5,3,0,0,2,0,613,0,1,0,0,2234,0,2,0,0,2,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,8331,0,53,0,0,0,0,3,336,550,8322,0,0,0,0,1,0,4,0,0,0,0,0,0,342,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,11,212,4,0,0,296,0,299,0,0,0,144,21,0,0,0,0,0,0,0,0,0,635,1,0,0,0,10,0,0,0,0,1,133,37,0,0,0,0,0,0,0,0,2118,1,0,47,37,0,1,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,37,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,2,0,0,0,0,1,41,55,0,4,14,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,913,39,2 +169,0,0,11,8,117,126,17,327,226,38,0,0,6,253,2,2078,0,13,16,0,7,3,8,0,39,60,0,34,0,19,2,0,5,62,898,125,315,6,0,859,0,0,0,1,0,0,6,0,0,0,0,50,401,0,0,0,0,0,1,0,0,0,11,0,255,0,0,10464,117,3511,0,81,0,0,0,0,0,58,15,0,0,0,0,11,27,1372,0,17,62,5,0,6,95,0,1262,85,11,0,0,8,8,3053,0,238,1,0,3483,0,0,0,0,70,42,2,0,1,0,4,1,0,0,0,33,0,0,4,0,2,0,0,10,0,0,0,17,0,0,0,0,0,5,3,45,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,19,2,0,0,0,0,0,8,0,0,0,0,0,10,10,0,0,0,0,0,0,0,1,14,0,0,0,0,39,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,104,12,12,12,0,0,0,697,0,365,0,0,0,72,133,431,1959,729,0,0,0,0,1,0,5,0,0,0,0,0,0,3284,0,0,0,0,0,0,0,0,0,8,0,0,6,1,0,0,0,0,0,1,0,406,295,1210,19,0,0,1401,0,1754,0,3,0,691,108,0,0,0,0,0,0,0,0,0,2843,1,0,0,0,34,0,0,0,0,48,296,340,0,0,160,0,0,0,0,0,5364,1,0,636,7,0,1,7,0,0,0,0,8,0,0,0,1,0,0,0,0,0,224,4,0,0,0,0,0,0,0,0,0,0,62,62,0,0,5,1,0,0,0,0,7,23,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,126,1,1,1,0,65,0,0,0,6,111,187,506,0,140,14,0,0,0,0,0,901,11,0,0,0,0,0,0,0,0,0,0,0,10,0,1,236,0,0,0,0,0,0,0,0,0,0,0,13,0,4,1765,709,2 +20,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13895,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6237,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,0,0,0,2,0,39,0,14,0,0,72020,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,27833,0,0,0,0,1,0,0,0,0,0,0,0,0,89041,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,419,3,0,0,91,0,225,0,0,0,25,308,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,28542,2 +10,0,0,3,0,18,2,0,12,0,3,0,0,0,3,0,50,0,7,1,0,0,0,1,0,0,24,0,0,0,9,0,0,0,7,0,18,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,8,21,0,0,0,0,0,1,0,0,0,0,0,3,0,0,221,18,101,0,9,0,0,0,0,0,0,0,0,0,0,0,1,1,38,0,0,7,0,0,0,0,0,37,0,0,0,0,2,0,161,0,1,0,0,332,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,46,0,39,0,0,0,16,43,45,46,65,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,85,3,0,0,60,0,146,0,0,0,21,2,0,0,0,0,0,0,0,0,0,77,0,0,0,0,2,0,0,0,0,9,98,1,0,0,0,0,0,0,0,0,678,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,8,0,0,0,0,1,25,7,0,33,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,213,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,58,0,1,0,0,0,1,0,0,0,0,0,1,0,0,10051,12,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1304,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,913,0,49,0,0,0,0,3,31,8,930,0,0,0,0,1,0,0,0,0,0,0,0,0,3992,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,92,2,0,0,112,0,109,0,0,0,46,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,27,0,0,0,0,0,0,0,0,872,0,0,3436,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1347,20,2 +3,0,0,5,2,57,17,8,119,6,28,0,0,2,11,1,968,0,6,10,0,2,1,18,0,11,3,0,5,0,2,0,0,1,18,3454,59,6,66,0,150,0,0,0,1,0,0,5,0,0,0,0,2,312,0,0,0,0,0,1,0,0,0,0,0,23,0,0,63344,57,1495,0,3,0,0,0,0,0,48,6,0,0,0,0,22,38,10472,0,8,18,1,0,1,63,0,625,70,9,0,0,2,2,1200,0,9,0,0,2359,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,12,12,12,0,0,0,9495,0,232,0,0,0,2,8,372,877,9586,0,0,0,0,1,0,4,0,0,0,0,0,0,1751,0,98,0,0,0,0,0,0,0,0,0,0,5,1,4,0,0,0,0,1,0,44,19,352,7,0,0,415,0,487,0,0,0,210,28,0,0,0,0,0,0,4,0,0,1152,1,0,0,0,31,0,0,0,0,1,151,203,0,0,180,0,0,0,0,0,4386,1,0,999,16,0,1,2,0,0,0,0,9,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,41,41,0,0,5,0,0,0,0,0,16,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,7,0,0,0,0,51,77,238,0,7,14,0,0,0,0,0,398,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,956,109,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,1,0,0,0,0,0,2,0,0,49,11,71,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,24,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,9,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,41,0,0,0,8,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,86,34,2 +9,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,33,0,0,0,3,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,11,0,0,72,11,126,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,38,0,0,3,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,67,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,33,0,0,0,0,3,27,378,60,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,60,0,125,0,0,0,26,1,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,124,0,0,44,0,0,0,0,0,606,0,0,32,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,33,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,32,0,0,0,0,1,14,3,0,33,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,3,2 +18,0,0,2,0,14,2,0,18,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,66,0,0,0,0,1,0,0,0,3,0,14,6,0,0,11,0,2,0,1,0,0,2,0,0,0,0,66,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1203,14,109,0,67,0,0,0,0,0,8,0,0,0,0,0,1,4,173,0,0,3,0,0,0,0,0,7,0,4,0,0,2,0,82,0,0,0,0,549,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,47,0,24,0,0,0,66,69,28,5,49,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,3,92,2,0,0,107,0,238,0,0,0,35,3,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,1,94,21,0,0,0,0,0,0,0,0,611,0,0,366,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,17,120,0,67,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,6,2 +0,0,0,5,0,36,43,0,55,3,37,0,0,8,6,0,785,0,6,2,0,0,0,7,0,11,0,0,29,0,1,0,0,0,1,6287,36,6,0,0,48,0,0,0,1,0,0,1,0,0,0,0,1,499,0,0,0,0,0,1,0,0,0,0,0,2,0,0,102705,36,1039,0,28,0,0,0,0,0,78,0,0,0,0,0,8,213,10536,0,0,1,0,0,0,0,0,497,30,2,0,0,2,0,917,0,0,177,0,4005,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,7252,0,30,0,0,0,21,24,1106,7370,7195,0,0,0,0,1,0,3,0,0,0,0,0,0,9480,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,134,25,341,5,0,0,339,0,343,0,0,0,175,20,0,0,0,0,0,0,0,0,0,940,1,0,0,0,9,0,0,0,0,1,159,11,0,0,238,0,0,0,0,0,3660,1,0,11633,39,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,90,0,0,0,0,1,37,239,0,29,12,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1683,175,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,170,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,212,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,35,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,64,3,0,0,42,0,149,0,0,0,6,3,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,646,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,171,2 +3,0,0,3,1,14,26,1,29,1,3,0,0,0,4,0,69,0,8,2,0,0,0,2,0,2,6,0,10,0,2,0,0,1,2,0,15,51,0,0,14,0,0,0,0,0,0,0,0,0,0,0,4,39,0,0,0,0,0,1,0,0,0,0,0,2,0,0,741,14,121,0,15,0,0,0,0,0,2,0,0,0,0,0,3,3,238,0,1,2,1,0,1,0,0,68,0,0,0,0,4,1,66,0,1,0,0,389,0,0,0,0,33,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,150,0,45,0,0,0,6,15,37,315,174,0,0,0,0,0,0,0,0,0,0,0,0,0,528,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,14,199,4,0,0,205,0,291,0,1,0,47,6,0,0,0,0,0,0,0,0,0,139,0,0,0,0,4,0,0,0,0,6,110,2,0,0,0,0,0,0,0,0,808,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,13,1,1,1,0,12,0,0,0,0,9,17,3,0,20,0,0,0,0,0,0,41,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,194,31,2 +17,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14412,0,0,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5722,22,38,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,32,0,9,0,0,69005,0,0,0,0,2,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,58,0,0,0,8,10,56,69,28893,0,0,0,0,1,0,0,0,0,0,0,0,0,90569,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,372,3,0,0,78,0,230,0,0,0,12,287,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,613,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,28,1,1,1,0,12,0,0,0,2,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,28649,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,940,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,37,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,65,0,0,0,0,0,7,36,184,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,12,2,0,0,53,0,73,0,0,0,47,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,44,0,0,0,0,0,0,0,0,289,0,0,252,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,113,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,282,4,2 +8,0,0,2,0,15,14,0,16,0,2,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,4,0,5,0,0,0,4,0,15,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,4,59,0,0,0,0,0,1,0,0,0,0,0,1,0,0,340,15,56,0,9,0,0,0,0,0,7,0,0,0,0,0,1,4,51,0,0,4,0,0,0,0,0,11,0,4,0,0,2,0,43,0,0,0,0,221,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,64,0,43,0,0,0,8,5,34,19,81,0,0,0,0,1,0,0,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,31,96,2,0,0,110,0,181,0,0,0,40,5,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,1,97,21,0,0,0,0,0,0,0,0,651,0,0,37,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,12,0,0,0,4,1,19,79,0,9,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,12,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,1,0,0,0,0,104,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,205,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,48,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,138,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,40,0,0,0,0,3,30,238,74,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,84,3,0,0,111,0,151,0,0,0,46,5,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,10,2 +5,0,0,4,0,35,6,0,27,0,3,0,0,2,3,0,487,0,6,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,5,898,35,6,0,0,27,0,0,0,1,0,0,1,0,0,0,0,1,196,0,0,0,0,0,1,0,0,0,0,0,4,0,0,5276,35,553,0,1,0,0,0,0,0,22,0,0,0,0,0,8,17,963,0,0,5,0,0,0,0,0,85,5,11,0,0,2,0,493,0,1,0,0,1313,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,374,0,464,0,0,0,0,3,224,750,712,0,0,0,0,1,0,3,0,0,0,0,0,0,1337,0,39,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,34,11,195,4,0,0,204,0,297,0,0,0,71,3,0,0,0,0,0,0,0,0,0,534,1,0,0,0,9,0,0,0,0,0,118,6,0,0,0,0,0,0,0,0,1939,1,0,171,6,0,1,2,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,40,24,0,2,12,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1305,33,2 +18,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14151,0,0,0,1,0,0,1,0,0,0,0,4,52,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5633,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,68088,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,54,0,0,0,8,9,52,69,28375,0,0,0,0,1,0,0,0,0,0,0,0,0,93255,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,380,3,0,0,78,0,219,0,0,0,12,275,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,614,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,24,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,32233,2 +16,0,0,2,1,12,2,0,15,0,3,0,0,0,4,0,17,0,6,1,0,0,0,1,0,0,0,0,10,0,2,0,0,0,2,0,12,6,0,0,6,0,1,0,1,0,0,1,0,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,1,0,0,271,12,43,0,12,0,0,0,0,0,3,0,0,0,0,0,1,3,38,0,0,2,0,0,0,0,0,17,0,1,0,0,2,1,23,0,0,0,0,208,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,47,0,34,0,0,0,0,3,30,36,62,0,0,0,0,1,0,0,0,0,0,1,1,0,199,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,10,19,82,3,0,0,99,0,211,0,0,0,40,6,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,619,0,0,8,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,11,0,0,0,0,1,14,75,0,12,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,154,2 +5,0,0,4,0,35,7,0,28,0,3,0,0,2,3,0,529,0,6,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,2,898,35,6,0,0,23,0,0,0,1,0,0,3,0,0,0,0,1,162,0,0,0,0,0,1,0,0,0,0,0,4,0,0,19962,35,586,0,1,0,0,0,0,0,19,0,0,0,0,0,8,19,3387,0,0,2,0,0,0,0,0,88,5,4,0,0,2,0,538,0,1,0,0,1295,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,2799,0,73,0,0,0,0,3,244,850,2802,0,0,0,0,1,0,3,0,0,0,0,0,0,666,0,2,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,34,11,182,4,0,0,230,0,283,0,0,0,87,3,0,0,0,0,0,0,0,0,0,578,1,0,0,0,9,0,0,0,0,0,118,39,0,0,0,0,0,0,0,0,2016,1,0,80,7,0,1,2,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,37,92,0,2,12,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,468,37,2 +0,0,0,2,0,12,2,0,16,0,4,0,0,0,2,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,13,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,72,0,1,0,0,0,1,0,0,0,0,0,1,0,0,7565,13,70,0,1,0,0,0,0,0,23,0,0,0,1,0,2,9,989,0,0,2,0,0,0,0,0,17,0,9,0,0,2,0,17,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,740,0,88,0,0,0,0,3,34,10,755,0,0,0,0,1,0,0,0,0,0,0,0,0,2882,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,0,8,11,101,2,0,0,137,0,163,0,0,0,64,9,0,0,0,0,0,0,4,0,0,44,1,0,0,0,3,0,0,0,0,0,104,37,0,0,0,0,0,0,0,0,649,0,0,2504,0,0,1,0,0,0,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,15,118,0,1,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1046,59,2 +6,0,0,2,0,14,2,0,20,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,2,76,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2514,14,93,0,3,0,0,0,0,0,24,0,0,0,0,0,1,9,241,0,0,3,0,0,0,0,0,14,0,10,0,0,2,0,52,0,0,0,0,275,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,204,0,80,0,0,0,4,9,33,17,206,0,0,0,0,1,0,0,0,0,0,0,0,0,510,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,10,3,118,2,0,0,258,0,423,0,0,0,188,15,0,0,0,0,0,0,2,0,0,58,1,0,0,0,2,0,0,0,0,1,103,154,0,0,0,0,0,0,0,0,674,0,0,271,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,449,0,9,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,233,39,2 +2,0,0,3,0,13,2,0,11,4,3,0,0,0,7,0,21,0,6,1,0,0,0,1,0,0,3,0,2,0,2,0,1,0,2,0,13,6,0,0,16,0,23,0,1,0,0,53,0,0,0,0,1,61,0,0,0,0,0,1,0,0,0,0,0,7,0,0,4588,13,259,0,4,0,0,0,0,0,110,0,0,0,0,600,1,107,499,0,0,2,0,0,0,0,0,64,0,53,0,0,2,0,39,0,5,0,0,208,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,602,0,183,0,0,0,2,8,36,13,505,0,0,0,0,1,0,0,0,0,0,0,0,0,2800,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,10,8,94,3,0,0,134,0,430,0,0,0,72,6,0,0,0,0,0,0,0,0,0,50,1,0,0,0,2,0,0,0,0,2,95,6,0,0,0,0,0,0,0,0,763,0,0,410,0,0,1,0,0,0,0,0,104,0,0,0,52,22,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,84,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,48,0,7,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2252,24,2 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,3,0,0,114,9,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,31,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,8,0,1,0,0,1185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,30,0,0,0,0,3,23,9,46,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,45,3,0,0,35,0,183,0,0,0,5,16,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,3,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,5,2 +8,0,0,6,0,37,12,0,79,1,16,0,0,6,4,0,627,0,6,1,0,0,0,8,0,10,0,0,4,0,33,0,0,0,4,898,37,6,0,0,115,0,1,0,1,0,0,1,0,0,0,0,1,188,0,0,0,0,0,1,0,0,0,0,0,10,0,0,18503,37,773,0,2,0,0,0,0,0,12,0,0,0,0,0,8,18,4322,0,0,4,0,0,1,40,0,506,40,2,0,0,2,0,860,0,0,1,0,3079,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,677,0,55,0,0,0,0,3,260,1466,680,0,0,0,0,1,0,3,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,86,19,206,6,0,0,250,0,281,0,0,0,103,5,0,0,0,0,0,0,0,0,0,750,1,0,0,0,9,0,0,0,0,0,124,140,0,0,50,0,0,0,0,0,4018,1,0,814,6,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,6,393,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,33,0,0,0,0,1,41,215,0,35,12,0,0,0,0,0,154,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1906,45,2 +15,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,4558,21,34,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,2,0,0,0,0,0,12,0,1,0,0,2,0,27,0,8,0,0,37374,0,0,0,0,6,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,54,0,0,0,0,3,52,23,35288,0,0,0,0,1,0,0,0,0,0,0,0,0,96090,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,301,3,0,0,75,0,203,0,0,0,12,206,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,1,103,5,0,0,0,0,0,0,0,0,612,0,0,16,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,25,1,1,1,0,4,0,0,0,0,1,23,6,0,5,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,30674,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,960,11,59,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,122,0,0,0,0,0,0,0,0,15,0,5,0,0,2,0,14,0,0,0,0,461,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,116,0,86,0,0,0,0,3,30,13,133,0,0,0,0,1,0,0,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,8,3,112,2,0,0,247,0,323,0,0,0,180,11,0,0,0,0,0,0,2,0,0,41,1,0,0,0,2,0,0,0,0,0,101,160,0,0,0,0,0,0,0,0,54,0,0,72,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,499,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,203,32,2 +0,0,0,2,0,10,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,4,0,1,0,0,4,0,0,0,0,0,103,0,0,0,0,0,1,0,0,0,0,0,1,0,0,39900,10,53,0,1,0,0,0,0,0,20,0,0,0,0,0,1,7,3419,0,0,0,0,0,0,0,0,12,0,7,0,0,2,0,13,0,0,0,0,487,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,43,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3502,0,43,0,0,0,0,3,26,6,3537,0,0,0,0,1,0,0,0,0,0,0,0,0,13280,0,0,0,0,0,0,0,0,0,0,0,0,4,0,42,0,0,0,0,0,0,8,3,87,2,0,0,127,0,189,0,0,0,53,4,0,0,0,0,0,0,78,0,0,40,1,0,0,0,2,0,0,0,0,0,94,44,0,0,0,0,0,0,0,0,2776,0,0,12821,0,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,74,0,0,0,0,145,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,244,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,36,0,0,0,0,0,0,0,3,2842,76,2 +16,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,13911,0,0,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5883,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,71159,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,54,0,0,0,8,9,52,69,27883,0,0,0,0,1,0,0,0,0,0,0,0,0,94671,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,392,3,0,0,78,0,234,0,0,0,12,288,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,615,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,24,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,33724,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,22,0,0,0,0,0,1,0,0,0,0,0,1,0,0,93,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,997,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,54,2,0,0,44,0,159,0,0,0,5,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,4,2 +3,0,0,5,2,58,17,8,120,6,29,0,0,1,11,1,1026,0,6,10,0,2,1,18,0,11,3,0,5,0,2,0,0,1,18,3454,60,6,60,0,150,0,0,0,1,0,0,5,0,0,0,0,2,292,0,0,0,0,0,1,0,0,0,0,0,23,0,0,61364,58,1554,0,3,0,0,0,0,0,48,6,0,0,0,0,22,38,10159,0,8,18,1,0,1,63,0,625,70,9,0,0,2,2,1256,0,9,0,0,2086,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,12,12,12,0,0,0,9143,0,236,0,0,0,2,8,378,878,9233,0,0,0,0,1,0,4,0,0,0,0,0,0,1691,0,98,0,0,0,0,0,0,0,0,0,0,5,1,3,0,0,0,0,1,0,44,19,361,7,0,0,418,0,495,0,0,0,209,36,0,0,0,0,0,0,4,0,0,1211,1,0,0,0,31,0,0,0,0,1,152,203,0,0,180,0,0,0,0,0,4529,1,0,930,17,0,1,2,0,0,0,0,9,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,42,42,0,0,8,0,0,0,0,0,16,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,74,1,1,1,0,7,0,0,0,0,53,78,224,0,7,14,0,0,0,0,0,399,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,971,109,2 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,80,0,0,0,0,0,1,0,0,0,0,0,1,0,0,992,10,59,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,129,0,0,0,0,0,0,0,0,15,0,5,0,0,2,0,14,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,116,0,83,0,0,0,0,3,26,13,133,0,0,0,0,1,0,0,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,8,3,107,2,0,0,244,0,345,0,0,0,180,14,0,0,0,0,0,0,2,0,0,41,1,0,0,0,2,0,0,0,0,0,100,160,0,0,0,0,0,0,0,0,59,0,0,77,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,499,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,203,34,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,12,0,0,0,0,3,21,3,21,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,22,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,2 +18,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,13879,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5604,22,37,0,8,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,66514,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0,69,0,57,0,0,0,8,9,54,69,27819,0,0,0,0,1,0,0,0,0,0,0,0,0,89501,0,2,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,366,3,0,0,78,0,231,0,0,0,12,276,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,613,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,26,1,1,1,0,12,0,0,0,2,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,28846,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,57,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,5,2 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,28,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,9,2 +8,0,0,3,0,12,2,0,4,0,2,0,0,0,4,0,13,0,7,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,2,0,12,12,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,2,0,0,84,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,2,0,0,0,0,0,7,0,0,0,0,2,0,16,0,0,0,0,98,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,27,0,0,0,0,3,30,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,53,3,0,0,52,0,118,0,0,0,14,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,96,5,0,0,0,0,2,0,4,2,605,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,14,2,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,5,2 +28,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,13,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,12,23,0,0,0,0,0,1,0,0,0,0,0,1,0,0,157,12,32,0,13,0,0,0,0,0,0,0,0,0,0,0,1,1,43,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,19,0,0,0,0,1089,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,33,0,0,0,24,15,38,38,54,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,51,2,0,0,44,0,154,0,0,0,5,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,606,0,0,12,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,24,0,0,0,0,1,13,1,0,13,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,14,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14964,0,0,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5498,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73024,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,58,0,0,0,0,3,56,61,29969,0,0,0,0,1,0,0,0,0,0,0,0,0,92388,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,434,3,0,0,91,0,257,0,0,0,25,325,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,32324,2 +690,0,0,13,0,46,697,0,729,0,7,0,0,6,7,0,759,0,7,2,0,0,0,8,0,11,0,0,20,0,0,0,0,0,6,1058,46,6,0,0,3505,0,0,0,1,0,0,4,0,0,0,0,1,205,0,0,0,0,0,1,0,0,0,3460,0,6,0,0,29521,46,2239,0,17,0,0,0,0,0,25,0,0,0,0,1,9,28,7030,0,0,6,0,0,0,0,0,213,20,9,0,0,2,0,2207,0,2,3,0,8936,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,690,0,0,0,0,0,0,0,690,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2110,12,12,12,0,0,0,5337,0,72,0,0,0,1,4,977,1744,6677,0,0,0,0,1,0,5,0,0,0,0,0,0,15472,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,84,1398,436,705,0,0,270,0,339,0,0,0,103,144,0,0,0,0,0,0,0,0,0,2212,1,0,0,0,10,0,0,0,0,1,129,39,0,0,7,0,0,0,0,0,4999,1,0,139,9,0,1,1,0,0,0,0,12,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,739,1,1,1,0,19,0,0,0,0,1,52,276,0,17,14,0,0,0,0,0,760,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2228,1499,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,39,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,172,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,53,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,33,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,18,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,911,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,456,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,292,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,113,2,0,0,119,0,146,0,0,0,61,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,27,2 +0,0,0,2,0,33,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,21,0,1,0,0,0,25,0,33,6,0,0,5,0,3,0,1,0,0,3,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,531,33,54,0,22,0,0,0,0,0,7,0,0,0,0,0,1,5,142,0,0,25,0,0,0,0,0,29,0,3,0,0,2,0,27,0,0,0,0,227,0,0,0,0,28,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,134,0,109,0,0,0,0,3,70,34,207,0,0,0,0,1,0,0,0,0,0,0,0,0,505,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,139,2,0,0,204,0,189,0,0,0,154,7,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,115,70,0,0,0,0,0,0,0,0,87,0,0,45,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,25,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,21,0,0,0,0,1,58,99,0,22,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,244,221,2 +8,0,0,6,0,35,8,0,40,2,8,0,0,2,7,0,442,0,6,3,0,0,0,6,0,10,0,0,3,0,1,0,0,0,4,898,35,12,0,0,53,0,0,0,1,0,0,7,0,0,0,0,1,190,0,0,0,0,0,1,0,0,0,0,0,10,0,0,19758,35,549,0,1,0,0,0,0,0,37,0,0,0,0,0,8,23,3487,0,0,4,0,0,1,13,0,207,20,9,0,0,2,0,518,0,3,0,0,1066,0,0,0,0,2,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,12,12,12,0,0,0,2896,0,139,0,0,0,0,3,228,407,2889,0,0,0,0,1,0,3,0,0,0,0,0,0,795,0,1,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,34,13,193,6,0,0,249,0,351,0,0,0,108,5,0,0,0,0,0,0,7,0,0,513,1,0,0,0,9,0,0,0,0,1,119,70,0,0,29,0,2,0,4,2,1862,1,0,344,6,0,1,1,0,0,0,0,18,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,39,203,0,2,12,0,0,0,0,0,101,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,7,711,53,2 +9,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,32,0,0,0,2,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,11,0,0,68,11,124,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,34,0,0,2,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,62,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,34,0,0,0,0,3,27,377,58,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,125,0,0,0,22,1,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,603,0,0,30,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,32,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,31,0,0,0,0,1,13,6,0,32,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,3,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,169,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,208,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,66,3,0,0,42,0,150,0,0,0,6,3,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,171,2 +3,0,0,5,0,35,6,0,37,0,5,0,0,6,5,0,545,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,762,35,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,1,175,0,0,0,0,0,1,0,0,0,0,0,2,0,0,6381,35,602,0,3,0,0,0,0,0,11,0,0,0,0,0,8,24,1249,0,0,1,0,0,0,0,0,190,20,2,0,0,2,0,584,0,0,2,0,1327,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,436,0,56,0,0,0,1,4,270,351,434,0,0,0,0,1,0,4,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,24,174,5,0,0,181,0,260,0,0,0,41,9,0,0,0,0,0,0,0,0,0,610,1,0,0,0,9,0,0,0,0,0,118,11,0,0,8,0,0,0,0,0,2159,1,0,64,6,0,1,1,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,20,0,4,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,570,28,2 +2,0,0,3,0,58,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,9,0,0,0,0,1,0,0,0,49,0,58,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,9,34,0,0,0,0,0,1,0,0,0,0,0,10,0,0,332,58,96,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,40,0,0,49,0,0,1,47,0,390,35,0,0,0,2,0,236,0,0,0,0,622,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,47,0,89,0,0,0,9,12,73,370,80,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,185,3,0,0,186,0,226,0,0,0,153,9,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,11,140,112,0,0,84,0,0,0,0,0,599,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,0,0,0,0,0,1,107,49,0,10,0,0,0,0,0,0,141,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,4,2 +5,0,0,4,0,33,7,0,29,0,3,0,0,2,3,0,533,0,6,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,2,898,33,6,0,0,23,0,0,0,1,0,0,2,0,0,0,0,1,156,0,0,0,0,0,1,0,0,0,0,0,4,0,0,19745,33,587,0,1,0,0,0,0,0,16,0,0,0,0,0,8,18,3360,0,0,2,0,0,0,0,0,87,5,3,0,0,2,0,542,0,1,0,0,1280,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,2782,0,64,0,0,0,0,3,233,851,2791,0,0,0,0,1,0,3,0,0,0,0,0,0,621,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,182,4,0,0,217,0,267,0,0,0,80,4,0,0,0,0,0,0,0,0,0,583,1,0,0,0,9,0,0,0,0,0,116,33,0,0,0,0,0,0,0,0,1999,1,0,36,7,0,1,2,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,0,0,0,0,0,1,35,87,0,2,12,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,437,28,2 +8,0,0,3,0,10,2,0,22,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,20,0,1,0,0,0,0,0,10,6,0,0,57,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,2,0,0,245,10,65,0,21,0,0,0,0,0,3,0,0,0,0,1,1,4,115,0,0,0,0,0,0,0,0,26,0,1,0,0,2,0,41,0,0,0,0,136,0,0,0,0,46,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,75,0,48,0,0,0,0,3,49,6,91,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,73,3,0,0,79,0,134,0,0,0,15,1,0,0,0,0,0,0,0,0,0,50,1,0,0,0,2,0,0,0,0,0,90,3,0,0,0,0,0,0,0,0,667,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,20,0,0,0,0,1,10,73,0,21,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,3,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,169,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,184,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,65,3,0,0,42,0,150,0,0,0,6,3,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,171,2 +2,0,0,3,0,9,2,0,16,0,3,0,0,0,3,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,9,6,0,0,8,0,2,0,1,0,0,2,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,3,0,0,462,9,41,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,137,0,0,1,0,0,0,0,0,7,0,4,0,0,2,0,16,0,1,0,0,86,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,37,0,20,0,0,0,0,3,23,4,48,0,0,0,0,1,0,0,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,4,69,3,0,0,93,0,121,0,0,0,32,1,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,91,22,0,0,0,0,0,0,0,0,607,0,0,312,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,116,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,5,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,58,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,60,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9616,12,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1242,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,872,0,50,0,0,0,0,3,31,8,889,0,0,0,0,1,0,0,0,0,0,0,0,0,3741,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,95,2,0,0,114,0,109,0,0,0,48,6,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,97,28,0,0,0,0,0,0,0,0,831,0,0,3272,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,99,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1285,26,2 +0,0,0,4,1,12,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,0,0,0,1,2,0,13,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1,0,0,0,0,0,2,0,0,48,12,71,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,23,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,9,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,25,0,29,0,0,0,0,3,32,6,46,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,41,5,0,0,46,0,42,0,0,0,8,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,92,2,0,0,0,0,4,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,2,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,92,34,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,14,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,5,2 +1,0,0,5,0,32,9,0,34,0,10,0,0,2,2,0,25,0,6,4,0,0,0,5,0,8,3,0,4,0,3,0,0,0,5,0,32,11,0,0,55,0,0,0,1,0,0,1,1,0,0,0,3,159,0,0,0,0,0,1,0,0,0,0,0,6,0,0,13422,32,85,0,4,0,0,0,0,0,11,0,0,0,0,0,8,15,106,0,0,5,0,0,1,20,0,246,35,3,0,0,2,0,133,0,0,0,0,3887,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,91,0,55,0,0,0,4,10,189,1068496,88,0,0,0,0,1,0,4,0,0,0,0,0,0,6983,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,1,0,32,10,245,5,0,0,151,0,379,0,0,0,48,19,0,0,0,0,0,0,0,0,0,88,1,0,2,0,9,0,0,0,0,2,114,63,0,0,72,0,0,0,0,0,93,0,0,21,3,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3160,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,9,0,0,0,0,1,37,93,0,9,9,0,0,0,0,0,67,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,148,40,2 +4,0,0,2,0,11,3,0,7,0,2,0,0,0,2,0,12,0,6,1,0,0,0,1,0,2,0,0,0,0,1,0,0,0,3,0,11,9,0,0,7,0,0,0,1,0,0,0,0,0,0,0,2,26,0,0,0,0,0,1,0,0,0,0,0,1,0,0,71,11,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,3,0,0,0,0,0,7,0,0,0,0,2,0,9,0,0,0,0,95,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,26,0,24,0,0,0,2,5,25,12,38,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,6,49,2,0,0,47,0,143,0,0,0,14,11,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,3,0,0,0,0,0,0,0,0,599,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,3,0,3,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,72,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,140,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,174,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,2,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,41,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,50,0,0,0,0,0,1,0,0,0,0,0,4,0,0,143,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,128,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,172,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,214,5,0,0,229,0,327,0,1,0,55,3,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,18,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,16,2 +9,0,0,6,0,52,24,0,57,2,24,0,0,7,5,0,843,0,6,1,0,0,0,8,0,10,0,0,20,0,33,0,0,0,14,4605,52,6,0,0,56,0,0,0,1,0,0,2,0,0,0,0,33,381,0,0,0,0,0,1,0,0,0,0,0,4,0,0,18930,52,1054,0,50,0,0,0,0,0,50,0,0,0,0,0,8,125,3473,0,0,14,0,0,0,0,0,372,25,3,0,0,2,0,971,0,1,121,0,3095,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1102,0,85,0,0,0,75,46,609,1214,1069,0,0,0,0,1,0,3,0,0,0,0,0,0,485,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,106,23,354,6,0,0,337,0,361,0,0,0,165,37,0,0,0,0,0,0,0,0,0,966,1,0,0,0,9,0,0,0,0,2,157,10,0,0,147,0,0,0,0,0,3135,1,0,472,22,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,22,33,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,114,0,0,0,64,1,66,131,0,51,12,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1338,260,2 +7,0,0,3,0,29,5,0,11,0,2,0,0,2,2,0,23,0,6,2,0,0,0,6,0,8,6,0,2,0,3,0,0,0,5,0,29,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,3,77,0,0,0,0,0,1,0,0,0,0,0,2,0,0,681,29,47,0,3,0,0,0,0,0,3,0,0,0,0,0,7,12,163,0,0,5,0,0,0,0,0,72,5,0,0,0,2,0,58,0,0,0,0,487,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,91,0,56,0,0,0,4,10,182,16,95,0,0,0,0,1,0,3,0,0,0,0,0,0,196,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,95,3,0,0,112,0,202,0,0,0,42,4,0,0,0,0,0,0,0,0,0,51,0,0,0,0,8,0,0,0,0,1,111,25,0,0,0,0,0,0,0,0,694,0,0,2,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,3,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,2,0,0,0,0,1,34,69,0,10,9,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,40,2 +6,0,0,2,0,13,2,0,20,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,2,97,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3544,13,101,0,3,0,0,0,0,0,30,0,0,0,0,0,1,11,472,0,0,3,0,0,0,0,0,18,0,11,0,0,2,0,52,0,0,0,0,952,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,403,0,98,0,0,0,4,9,29,21,407,0,0,0,0,1,0,0,0,0,0,0,0,0,663,0,0,0,0,0,0,0,0,0,0,0,0,7,0,4,0,0,0,0,0,0,10,3,122,2,0,0,319,0,441,0,0,0,250,20,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,1,103,215,0,0,0,0,0,0,0,0,692,0,0,432,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,654,0,9,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,301,47,2 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,3,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,1,0,0,111,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,10,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,23,0,0,0,0,3,22,4,27,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,74,2,0,0,35,0,33,0,0,0,4,11,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,92,2,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,17,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,2,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,7,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14946,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5833,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,75938,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,29933,0,0,0,0,1,0,0,0,0,0,0,0,0,94482,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,441,3,0,0,91,0,214,0,0,0,25,310,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,34035,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13462,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6339,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,71163,0,0,0,0,3,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,26965,0,0,0,0,1,0,0,0,0,0,0,0,0,90071,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,429,3,0,0,91,0,227,0,0,0,25,295,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,616,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,30149,2 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,74,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,606,0,0,0,0,0,11,36,188,0,0,0,0,0,0,0,0,0,0,0,0,0,1562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,15,2,0,0,56,0,85,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,44,0,0,0,0,0,0,0,0,288,0,0,256,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,112,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1371,6,2 +8,0,0,2,0,13,2,0,21,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,5,0,2,0,13,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,182,13,61,0,1,0,0,0,0,0,19,0,0,0,0,2,1,6,64,0,0,2,0,0,0,0,0,7,0,2,0,0,2,0,20,0,0,0,0,67,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,57,0,162,0,0,0,0,3,35,17,75,0,0,0,0,1,0,0,0,0,0,0,0,0,446,0,1,0,0,0,8,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,83,2,0,0,106,0,135,0,0,0,26,0,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,95,5,0,0,0,0,0,0,0,0,42,0,0,16,0,0,1,1,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,15,73,0,1,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,53,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,934,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,479,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,283,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,41,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,112,2,0,0,119,0,132,0,0,0,61,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,27,2 +4,0,0,2,0,10,2,0,10,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,12,0,9,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,8,62,0,0,0,0,0,1,0,0,0,0,0,1,0,0,7896,10,53,0,21,0,0,0,0,0,6,0,0,0,0,0,1,4,1850,0,0,2,0,0,0,0,0,51,0,1,0,0,2,0,28,0,0,0,0,152,0,0,0,0,12,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1090,0,125,0,0,0,16,19,26,40,1129,0,0,0,0,1,0,0,0,0,0,0,0,0,2732,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,83,2,0,0,108,0,198,0,0,0,55,5,0,0,0,0,0,0,128,0,0,38,1,0,0,0,2,0,0,0,0,9,92,42,0,0,0,0,0,0,0,0,1093,0,0,2206,0,0,1,1,1,0,0,0,4,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,120,0,0,0,0,245,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,73,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,28,0,0,0,0,1,12,185,0,21,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,64,0,0,0,0,0,0,0,1,1125,9,2 +2,0,0,2,0,12,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,2,0,12,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,1,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,10126,12,45,0,2,0,0,0,0,0,10,0,0,0,0,0,1,4,1265,0,0,2,0,0,0,0,0,8,0,3,0,0,2,0,17,0,0,0,0,266,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,912,0,37,0,0,0,1,4,26,16,913,0,0,0,0,1,0,0,0,0,0,0,0,0,3927,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,92,2,0,0,110,0,141,0,0,0,39,3,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,96,25,0,0,0,0,0,0,0,0,885,0,0,3485,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,93,0,2,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1294,41,2 +10,0,0,3,0,18,2,0,4,0,3,0,0,0,3,0,10,0,7,1,0,0,0,1,0,8,0,0,0,0,1,0,0,0,7,0,18,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,8,19,0,0,0,0,0,1,0,0,0,0,0,3,0,0,160,18,29,0,9,0,0,0,0,0,0,0,0,0,0,0,1,1,38,0,0,7,0,0,0,0,0,21,0,0,0,0,2,0,17,0,1,0,0,257,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,39,0,0,0,8,11,45,47,65,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,68,3,0,0,60,0,140,0,0,0,21,6,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,10,98,1,0,0,0,0,0,0,0,0,598,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,0,0,0,0,0,1,25,7,0,9,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,204,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,45,0,0,0,34,0,52,0,0,0,4,4,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,8,2 +7,0,0,2,0,16,2,0,6,0,2,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,4,0,1,0,0,0,5,0,16,30,0,0,13,0,4,0,1,0,0,4,0,0,0,0,0,55,0,0,0,0,0,1,0,0,0,0,0,1,0,0,13729,16,50,0,5,0,0,0,0,0,12,0,0,0,0,0,1,6,103,0,0,5,0,0,0,0,0,16,0,0,0,0,2,0,12,0,0,0,0,2237,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,107,0,83,0,0,0,0,3,33,24,5972,0,0,0,0,1,0,0,0,0,0,0,0,0,6924,0,1949,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,10,3,79,2,0,0,130,0,283,0,0,0,86,8,0,0,0,0,0,0,2,0,0,36,1,0,0,0,2,0,0,0,0,1,100,60,0,0,0,0,0,0,0,0,628,0,0,18,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,4,0,0,0,0,1,21,144,0,5,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,169,8,2 +2,0,0,3,0,10,4,0,30,0,7,0,0,0,2,0,17,0,7,1,0,0,0,1,0,0,0,0,2,0,3,0,0,0,0,0,10,6,0,0,27,0,0,0,1,0,0,6,0,0,0,0,2,66,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2720,10,105,0,5,0,0,0,0,0,27,0,0,0,0,0,1,9,573,0,0,0,0,0,1,13,0,128,15,7,0,0,2,0,82,0,0,0,0,308,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,383,0,103,0,0,0,4,5,29,104,388,0,0,0,0,1,0,0,0,0,0,0,0,0,951,0,0,0,0,0,0,0,0,0,0,0,0,6,0,20,0,0,0,0,0,0,10,3,110,3,0,0,164,0,237,0,0,0,99,14,0,0,0,0,0,0,14,0,0,67,1,0,0,0,2,0,0,0,0,1,100,96,0,0,31,0,0,0,0,0,747,0,0,497,0,0,1,0,1,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,6,0,0,0,0,1,10,117,0,5,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,7,455,33,2 +11,0,0,4,0,29,5,0,55,1,21,0,0,0,8,0,38,0,7,2,0,0,0,1,0,7,12,0,14,0,9,0,0,0,14,0,29,13,0,0,66,0,0,0,1,0,0,2,0,0,0,0,15,80,0,0,0,0,0,1,0,0,0,0,0,7,0,0,2089,29,165,0,30,0,0,0,0,0,4,0,0,0,0,0,2,5,496,0,0,14,0,0,1,35,0,356,80,1,0,0,2,0,267,0,0,0,0,453,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,10,0,0,0,0,0,0,293,0,68,0,0,0,23,38,58,292,311,0,0,0,0,1,0,0,0,0,0,0,0,0,407,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,9,9,158,4,0,0,175,0,313,0,0,0,94,8,0,0,0,0,0,0,0,0,0,134,1,0,0,0,3,0,0,0,0,16,111,97,0,0,229,0,0,0,0,0,250,0,0,367,0,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,26,0,0,0,6,1,43,124,0,42,0,0,0,0,0,0,86,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,159,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,16,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,40,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,156,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,183,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,31,0,16,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +2,0,0,3,0,72,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,12,0,0,0,0,1,0,0,0,61,0,72,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,12,41,0,0,0,0,0,1,0,0,0,0,0,10,0,0,467,72,99,0,13,0,0,0,0,0,0,0,0,0,0,0,1,1,34,0,0,61,0,0,1,47,0,396,35,0,0,0,2,0,239,0,0,0,0,863,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,42,0,97,0,0,0,12,15,87,396,70,0,0,0,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,232,3,0,0,228,0,240,0,0,0,189,3,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,14,154,112,0,0,84,0,0,0,0,0,598,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,69,1,1,1,0,0,0,0,0,0,1,133,61,0,13,0,0,0,0,0,0,137,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,6,2 +9,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,8,0,0,0,0,21,0,0,0,2,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,8,38,0,0,0,0,0,1,0,0,0,0,0,11,0,0,68,11,121,0,9,0,0,0,0,0,1,0,0,0,0,0,1,1,34,0,0,2,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,50,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,27,366,58,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,123,0,0,0,22,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,603,0,0,19,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,36,0,0,0,0,1,13,6,0,29,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,3,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13981,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6308,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73507,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,28003,0,0,0,0,1,0,0,0,0,0,0,0,0,92870,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,448,3,0,0,91,0,211,0,0,0,25,318,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,612,0,0,16,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,31234,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,2,0,0,0,5,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,24,0,21,0,0,0,1,0,0,0,0,0,6,0,0,213,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,78,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,49,0,0,0,0,3,57,44,113,0,0,0,0,0,0,0,0,0,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,85,3,0,0,83,0,114,0,0,0,29,4,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,212,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,15,2 +8,0,0,6,0,36,12,0,74,0,16,0,0,6,4,0,507,0,6,1,0,0,0,8,0,11,0,0,5,0,33,0,0,0,4,762,36,6,0,0,115,0,1,0,1,0,0,1,0,0,0,0,1,177,0,0,0,0,0,1,0,0,0,0,0,10,0,0,4695,36,654,0,4,0,0,0,0,0,12,0,0,0,0,0,8,23,942,0,0,4,0,0,1,40,0,510,40,2,0,0,2,0,738,0,0,1,0,1280,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,295,0,66,0,0,0,2,5,256,621,298,0,0,0,0,1,0,3,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,86,16,192,6,0,0,236,0,278,0,0,0,98,4,0,0,0,0,0,0,0,0,0,625,1,0,0,0,9,0,0,0,0,0,123,139,0,0,50,0,0,0,0,0,2001,1,0,92,6,0,1,1,1,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,33,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,41,0,0,0,0,1,40,125,0,37,12,0,0,0,0,0,154,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,530,45,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,53,0,0,0,0,0,1,0,0,0,0,0,4,0,0,143,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,31,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,195,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,164,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,212,5,0,0,229,0,328,0,1,0,55,3,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,116,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,40,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,97,15,2 +2,0,0,5,0,40,22,0,114,3,34,0,0,2,6,0,614,0,6,3,0,0,0,12,0,11,0,0,4,0,1,0,0,0,6,916,40,6,0,0,171,0,2,0,1,0,0,5,0,0,0,0,1,191,0,0,0,0,0,1,0,0,0,0,0,21,0,0,24375,40,824,0,1,0,0,0,0,0,22,0,0,0,0,0,14,32,4190,0,0,6,0,0,6,83,0,797,95,4,0,0,2,0,1032,0,4,0,0,1348,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,3478,0,83,0,0,0,0,3,277,895,3488,0,0,0,0,1,0,3,0,0,0,0,0,0,606,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,34,14,212,5,0,0,250,0,287,0,0,0,103,10,0,0,0,0,0,0,0,0,0,798,1,0,0,0,15,0,0,0,0,0,123,202,0,0,180,0,0,0,0,0,2261,1,0,48,11,0,1,1,0,0,0,0,10,0,4,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,11,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,0,0,0,0,0,1,46,75,0,2,14,0,0,0,0,0,235,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,515,523,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,3,0,33,9,0,31,0,2,0,0,2,2,0,532,0,6,2,0,0,0,8,0,11,0,0,4,0,1,0,0,0,2,900,33,6,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,230,0,0,0,0,0,1,0,0,0,0,0,2,0,0,45403,33,586,0,1,0,0,0,0,0,16,0,0,0,0,0,9,21,8654,0,0,2,0,0,0,0,0,93,5,2,0,0,2,0,547,0,0,0,0,2486,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,5256,0,33,0,0,0,0,3,240,1128,5243,0,0,0,0,1,0,3,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,175,3,0,0,198,0,196,0,0,0,55,3,0,0,0,0,0,0,0,0,0,584,1,0,0,0,10,0,0,0,0,0,116,9,0,0,0,0,0,0,0,0,3084,1,0,775,10,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,10,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,35,285,0,2,14,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1758,30,2 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,971,10,59,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,122,0,0,0,0,0,0,0,0,15,0,6,0,0,2,0,14,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,115,0,81,0,0,0,0,3,26,13,132,0,0,0,0,1,0,0,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,8,3,104,2,0,0,244,0,308,0,0,0,180,12,0,0,0,0,0,0,2,0,0,41,1,0,0,0,2,0,0,0,0,0,100,160,0,0,0,0,0,0,0,0,55,0,0,77,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,499,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,195,34,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,230,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,89,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,172,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,183,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,633,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,51,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,19,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,55,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9103,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1162,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,832,0,48,0,0,0,0,3,27,8,849,0,0,0,0,1,0,0,0,0,0,0,0,0,3505,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,85,2,0,0,109,0,108,0,0,0,46,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,792,0,0,3115,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1203,21,2 +0,0,0,3,0,28,5,0,7,0,2,0,0,2,2,0,12,0,7,3,0,0,0,5,0,8,0,0,3,0,4,0,0,0,1,0,28,6,0,0,18,0,0,0,1,0,0,0,0,0,0,0,4,76,0,0,0,0,0,1,0,0,0,0,0,2,0,0,706,28,30,0,5,0,0,0,0,0,3,0,0,0,0,0,7,12,122,0,0,1,0,0,0,0,0,73,5,0,0,0,2,0,24,0,0,0,0,812,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,76,0,53,0,0,0,6,5,181,22,88,0,0,0,0,1,0,4,0,0,0,0,0,0,152,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,32,10,103,3,0,0,106,0,194,0,0,0,27,4,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,1,110,22,0,0,0,0,0,0,0,0,77,0,0,3,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,7,0,0,0,4,1,29,73,0,6,9,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,23,2 +2,0,0,6,0,16,2,0,4,1,3,0,0,0,6,0,9,0,6,2,0,0,0,1,0,0,0,0,1,0,2,0,0,0,7,0,16,6,0,0,31,0,0,0,1,0,0,0,0,0,0,0,1,31,0,0,0,0,0,1,0,0,0,5,0,9,0,0,92,16,25,0,3,0,0,0,0,0,0,0,0,0,0,0,2,2,6,0,0,7,0,0,0,0,0,12,0,0,0,0,2,0,17,0,3,0,0,181,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,22,0,29,0,0,0,2,5,34,15,29,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,66,8,0,0,81,0,170,0,0,0,48,15,0,0,0,0,0,0,0,0,0,30,0,0,0,0,3,0,0,0,0,2,98,26,0,0,0,0,0,0,0,0,19,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,23,71,0,3,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,25,2 +4,0,0,2,0,25,2,0,9,0,2,0,0,0,2,0,17,0,6,1,0,0,0,4,0,6,0,0,7,3,1,0,0,0,15,0,25,57,32,1,8,0,3,0,1,0,0,3,1,0,0,0,6,100,0,0,0,0,0,1,0,0,0,0,0,1,0,0,9402,25,67,0,11,0,0,0,0,0,12,0,0,0,0,0,1,5,136,0,0,15,0,0,0,0,0,36,0,6,0,0,2,0,40,0,0,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,174,0,105,0,0,0,6,37,44,68,3490,0,0,0,0,1,0,2,0,0,0,0,0,0,6651,0,1117,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,17,5,230,2,0,0,156,0,367,0,0,0,97,16,0,0,0,0,0,0,0,0,0,38,1,0,2,0,5,0,0,0,0,1,107,43,0,0,0,0,0,0,0,0,260,0,0,55,0,0,1,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,10,0,0,0,0,1,40,260,0,17,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,259,36,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,167,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,195,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,66,3,0,0,42,0,150,0,0,0,6,6,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,646,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,171,2 +0,0,0,2,0,15,2,0,17,0,4,0,0,0,2,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,15,6,0,0,6,0,8,0,1,0,0,10,0,0,0,0,0,173,0,2,0,0,0,1,0,0,0,0,0,1,0,0,17229,15,116,0,1,0,0,0,0,0,47,0,0,0,3,0,2,16,2935,0,0,3,0,0,0,0,0,28,0,16,0,0,2,0,19,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2018,0,221,0,0,0,0,3,40,18,2572,0,0,0,0,1,0,0,0,0,0,0,0,0,6589,0,0,0,0,0,0,0,0,0,0,0,0,10,0,8,0,0,0,0,0,0,8,13,142,2,0,0,179,0,272,0,0,0,106,18,0,0,0,0,0,0,183,0,0,45,1,0,0,0,3,0,0,0,0,0,112,53,0,0,0,0,0,0,0,0,1253,0,0,5519,0,0,1,1,1,0,0,0,26,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,170,0,0,0,0,337,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,86,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,18,204,0,1,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,0,0,0,0,11,2361,71,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,39,0,0,0,0,0,1,0,0,0,0,0,3,0,0,223,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,85,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,131,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,68,0,50,0,0,0,32,19,33,18,83,0,0,0,0,1,0,0,0,0,0,0,0,0,179,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,4,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,630,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,31,0,17,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,18,2 +9,0,0,6,0,48,8,0,50,3,9,0,0,6,10,0,845,0,6,2,0,0,0,7,0,16,0,0,7,0,1,0,0,0,12,952,48,6,0,0,55,0,0,0,1,0,0,4,0,0,0,0,7,238,0,0,0,0,0,1,0,0,0,0,0,6,0,0,30392,48,957,0,11,0,0,0,0,0,27,0,0,0,0,0,8,29,5818,0,0,12,0,0,0,0,0,201,20,8,0,0,2,0,913,0,3,4,0,2476,0,0,0,0,6,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,901,0,88,0,0,0,8,11,287,466,875,0,0,0,0,1,0,3,0,0,0,0,0,0,521,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,86,22,247,6,0,0,270,0,388,0,0,0,109,22,0,0,0,0,0,0,0,0,0,934,1,0,0,0,9,0,0,0,0,1,132,27,0,0,12,0,0,0,0,0,4402,1,0,218,7,0,1,1,0,0,0,0,6,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,7,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,10,0,0,0,0,1,60,103,0,12,12,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2283,215,2 +8,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,33,0,0,0,3,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,11,0,0,72,11,126,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,38,0,0,3,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,76,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,33,0,0,0,0,3,27,378,60,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,60,0,124,0,0,0,26,1,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,124,0,0,44,0,0,0,0,0,606,0,0,32,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,33,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,32,0,0,0,0,1,14,3,0,33,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,3,2 +6,0,0,2,0,14,2,0,26,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,0,107,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2239,14,89,0,3,0,0,0,0,0,27,0,0,0,0,0,1,9,345,0,0,3,0,0,0,0,0,19,0,7,0,0,2,0,26,0,0,0,0,288,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,267,0,102,0,0,0,0,3,33,15,270,0,0,0,0,1,0,0,0,0,0,0,0,0,597,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,10,3,143,2,0,0,283,0,323,0,0,0,211,21,0,0,0,0,0,0,10,0,0,54,1,0,0,0,2,0,0,0,0,1,115,159,0,0,0,0,0,0,0,0,690,0,0,309,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,548,0,3,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,335,49,2 +65,0,0,5,0,49,6,0,29,14,3,0,0,2,19,0,589,0,7,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,15,898,49,24,0,0,60,0,0,0,1,0,0,5,0,0,0,0,1,186,0,0,0,0,0,1,0,0,0,0,0,19,0,0,25667,49,674,0,1,0,0,0,0,0,27,0,0,0,0,0,8,21,4072,0,0,15,0,0,0,0,0,94,5,6,0,0,2,0,624,0,15,0,0,2346,0,0,0,0,14,15,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,3474,0,136,0,0,0,0,3,260,3714,3531,0,0,0,0,1,0,3,0,0,0,0,0,0,2951,0,15,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,34,25,280,5,0,0,283,0,396,0,0,0,133,8,0,0,0,0,0,0,4,0,0,655,1,0,0,0,9,0,0,0,0,1,137,35,0,0,0,0,12,0,26,13,2148,1,0,176,6,0,1,1,0,0,0,0,10,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,0,0,0,0,0,1,64,180,0,2,12,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,5,632,48,2 +8,0,0,6,0,37,8,0,42,2,8,0,0,2,7,0,536,0,6,3,0,0,0,6,0,10,0,0,3,0,1,0,0,0,4,898,37,12,0,0,53,0,0,0,1,0,0,7,0,0,0,0,1,186,0,0,0,0,0,1,0,0,0,0,0,10,0,0,6293,37,645,0,1,0,0,0,0,0,37,0,0,0,0,0,8,23,1265,0,0,4,0,0,1,13,0,207,20,9,0,0,2,0,612,0,3,0,0,1196,0,0,0,0,2,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,609,0,141,0,0,0,0,3,236,409,602,0,0,0,0,1,0,3,0,0,0,0,0,0,754,0,1,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,34,13,199,6,0,0,255,0,357,0,0,0,108,32,0,0,0,0,0,0,7,0,0,609,1,0,0,0,9,0,0,0,0,1,121,70,0,0,29,0,2,0,4,2,2101,1,0,331,6,0,1,1,0,0,0,0,15,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,0,0,0,0,0,1,41,204,0,2,12,0,0,0,0,0,101,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,7,760,54,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,169,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,350,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,65,3,0,0,42,0,150,0,0,0,6,3,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,171,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2538,10,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1021,0,0,0,0,0,0,0,0,35,0,5,0,0,2,0,37,0,0,0,0,603,0,0,0,0,32,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,388,0,130,0,0,0,0,3,56,19,429,0,0,0,0,1,0,0,0,0,0,0,0,0,1126,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,151,3,0,0,107,0,243,0,0,0,39,7,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,716,0,0,875,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,437,17,2 +63,0,0,5,0,50,6,0,27,13,3,0,0,2,18,0,569,0,7,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,15,898,50,24,0,0,57,0,0,0,1,0,0,5,0,0,0,0,1,167,0,0,0,0,0,1,0,0,0,0,0,18,0,0,20672,50,653,0,1,0,0,0,0,0,28,0,0,0,0,0,8,21,3216,0,0,15,0,0,0,0,0,94,5,6,0,0,2,0,601,0,14,0,0,2414,0,0,0,0,14,15,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,2677,0,131,0,0,0,0,3,265,3668,2731,0,0,0,0,1,0,3,0,0,0,0,0,0,2917,0,15,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,34,24,293,5,0,0,279,0,390,0,0,0,127,14,0,0,0,0,0,0,3,0,0,632,1,0,0,0,9,0,0,0,0,1,138,28,0,0,0,0,13,0,26,13,2080,1,0,181,6,0,1,1,0,0,0,0,11,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,0,0,0,0,0,1,65,142,0,2,12,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,5,610,52,2 +8,0,0,7,0,45,6,0,38,4,7,0,0,6,9,0,711,0,7,3,0,0,0,7,0,10,0,0,5,0,1,0,0,0,8,898,45,6,0,0,55,0,0,0,1,0,0,3,0,0,0,0,1,202,0,0,0,0,0,1,0,0,0,0,0,7,0,0,20440,45,804,0,3,0,0,0,0,0,28,0,0,0,0,0,9,21,3512,0,0,8,0,0,0,0,0,199,20,6,1,0,2,0,766,0,4,2,0,1597,0,2,0,0,0,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,2682,0,67,0,0,0,0,3,298,407,2679,0,0,0,0,1,0,4,0,0,0,0,0,0,407,0,0,0,0,2,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,84,26,246,7,0,0,301,0,471,0,0,0,145,20,0,0,0,0,0,0,0,0,0,784,1,0,0,0,10,0,0,0,0,0,128,75,0,0,11,0,0,0,0,0,1995,1,0,126,6,0,1,1,0,0,0,0,4,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,2,0,0,0,0,1,53,312,0,4,12,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,4,598,89,2 +3,0,0,4,1,39,26,1,54,0,5,0,0,0,6,0,179,0,8,1,0,0,0,1,0,0,69,0,0,0,24,0,0,1,15,0,40,54,0,0,11,0,0,0,1,0,0,1,0,0,0,0,23,70,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1061,39,315,0,24,0,0,0,0,0,4,0,0,0,0,0,1,3,98,0,1,15,1,0,1,0,0,44,0,1,0,0,4,1,444,0,2,0,0,1090,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,80,0,94,0,0,0,46,82,58,623,124,0,0,0,0,1,0,0,0,0,0,0,0,0,481,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,112,12,422,5,0,0,311,0,455,0,1,0,97,38,0,0,0,0,0,0,0,0,0,278,1,0,0,0,2,0,0,0,0,1,137,6,0,0,0,0,0,0,0,0,377,0,0,26,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,24,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,35,1,1,1,0,23,0,0,0,0,9,55,17,0,93,0,0,0,0,0,0,49,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,187,112,2 +28,0,0,3,0,11,9,0,66,0,20,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,11,6,0,0,117,0,0,0,0,0,0,0,0,0,0,0,2,44,0,0,0,0,0,1,0,0,0,0,0,13,0,0,245,11,125,0,3,0,0,0,0,0,8,0,0,0,0,0,1,1,62,0,0,1,0,0,1,62,0,518,35,0,0,0,2,0,303,0,0,0,0,510,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,38,0,0,0,4,4,28,438,71,0,0,0,0,0,0,0,0,0,0,0,0,0,311,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,58,3,0,0,54,0,168,0,0,0,18,4,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2,0,0,0,0,1,91,149,0,0,74,0,0,0,0,0,605,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,12,1,0,3,0,0,0,0,0,0,167,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,77,2 +2,0,0,4,0,15,3,0,25,1,7,0,0,0,4,0,37,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,7,0,15,69,0,0,49,0,3,0,1,0,0,4,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,6,0,0,649,15,90,0,1,0,0,0,0,0,16,0,0,0,0,0,1,7,89,0,0,7,0,0,1,8,0,82,15,6,0,0,2,0,56,0,2,0,0,276,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,55,0,0,0,0,3,29,62,140,0,0,0,0,1,0,0,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,5,120,4,0,0,227,0,217,0,0,0,162,4,0,0,0,0,0,0,0,0,0,82,1,0,0,0,2,0,0,0,0,0,113,107,0,0,30,0,2,0,0,0,663,0,0,67,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,22,321,0,1,0,0,0,0,0,0,178,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,126,28,2 +11,0,0,3,0,11,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,11,6,0,0,73,0,3,0,1,0,0,3,0,0,0,0,0,60,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1332,11,71,0,23,0,0,0,0,0,13,0,0,0,0,0,1,8,662,0,0,0,0,0,0,0,0,34,0,3,0,0,2,0,36,0,0,0,0,168,0,0,0,0,39,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,128,0,118,0,0,0,0,3,58,17,167,0,0,0,0,1,0,0,0,0,0,0,0,0,401,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,79,3,0,0,89,0,173,0,0,0,18,3,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,93,11,0,0,0,0,4,0,0,0,856,0,0,764,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,11,103,0,23,0,0,1,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,522,12,2 +5,0,0,4,0,35,7,0,30,0,3,0,0,2,3,0,596,0,6,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,2,898,35,6,0,0,23,0,0,0,1,0,0,2,0,0,0,0,1,149,0,0,0,0,0,1,0,0,0,0,0,4,0,0,20577,35,651,0,1,0,0,0,0,0,16,0,0,0,0,0,8,18,3506,0,0,2,0,0,0,0,0,87,5,3,0,0,2,0,605,0,1,0,0,1465,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,2888,0,67,0,0,0,0,3,244,852,2896,0,0,0,0,1,0,3,0,0,0,0,0,0,620,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,195,4,0,0,223,0,272,0,0,0,83,8,0,0,0,0,0,0,0,0,0,647,1,0,0,0,9,0,0,0,0,0,118,33,0,0,0,0,0,0,0,0,2160,1,0,36,7,0,1,2,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,7,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,37,86,0,2,12,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,474,32,2 +2,0,0,5,0,39,22,0,115,3,34,0,0,2,6,0,597,0,6,3,0,0,0,12,0,11,0,0,4,0,1,0,0,0,6,916,39,6,0,0,171,0,2,0,1,0,0,4,0,0,0,0,1,194,0,0,0,0,0,1,0,0,0,0,0,21,0,0,26445,39,804,0,1,0,0,0,0,0,20,0,0,0,0,0,14,30,4516,0,0,6,0,0,6,83,0,796,95,3,0,0,2,0,1016,0,4,0,0,1556,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,3803,0,79,0,0,0,0,3,265,895,3817,0,0,0,0,1,0,3,0,0,0,0,0,0,601,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,34,14,205,5,0,0,246,0,298,0,0,0,102,11,0,0,0,0,0,0,0,0,0,782,1,0,0,0,15,0,0,0,0,0,122,202,0,0,180,0,0,0,0,0,2243,1,0,43,11,0,1,1,0,0,0,0,9,0,4,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,11,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,0,0,0,0,0,1,45,75,0,2,14,0,0,0,0,0,235,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,551,521,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,919,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,469,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,298,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,40,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,110,2,0,0,119,0,135,0,0,0,61,1,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,26,2 +0,0,0,3,0,11,4,0,11,1,3,0,0,0,4,0,20,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,12,0,0,0,1,0,0,2,0,0,0,0,0,93,0,0,0,0,0,1,0,0,0,0,0,4,0,0,449,11,50,0,1,0,0,0,0,0,9,0,0,0,0,0,1,4,54,0,0,2,0,0,0,0,0,13,0,3,0,0,2,0,24,0,2,0,0,128,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,61,0,41,0,0,0,0,3,25,7,74,0,0,0,0,1,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,70,5,91,3,0,0,162,0,1263,0,0,0,96,3,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,95,78,0,0,0,0,0,0,0,0,122,0,0,29,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,390,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,88,27,2 +9,0,0,7,0,178,23,0,228,5,21,0,0,7,8,0,4015,0,6,1,0,0,0,8,0,10,414,0,16,0,139,0,0,0,53,1110,178,309,0,0,160,0,1,0,1,0,0,1,0,0,0,0,139,363,0,0,0,0,0,1,0,0,0,0,0,7,0,0,30646,178,4804,0,152,0,0,0,0,0,41,0,0,0,0,0,8,122,6283,0,0,53,0,0,0,0,0,321,25,1,0,0,2,0,5850,0,3,58,0,8903,0,0,0,0,40,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,12,12,12,0,0,0,1182,0,193,0,0,0,286,473,755,2080,1248,0,0,0,0,1,0,3,0,0,0,0,0,0,1482,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,28,1082,7,0,0,908,0,703,0,0,0,468,44,0,0,0,0,0,0,0,0,0,4308,1,0,0,0,9,0,0,0,0,2,289,125,0,0,102,0,0,0,0,0,11664,1,0,1067,20,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,20,499,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,180,1,1,1,0,181,0,0,0,0,1,231,155,0,567,12,0,2,0,0,0,548,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2645,680,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,97,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2550,10,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1020,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,538,0,0,0,0,34,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,390,0,128,0,0,0,0,3,56,19,431,0,0,0,0,1,0,0,0,0,0,0,0,0,1127,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,162,3,0,0,107,0,252,0,0,0,39,5,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,722,0,0,879,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,440,17,2 +59,0,0,15,15,54,47,35,233,21,48,1,0,0,35,2,590,0,105,20,3,38,5,2,3,50,49,0,43,0,19,0,0,11,21,0,65,850,0,0,716,0,0,0,1,0,0,2,0,0,0,0,68,220,0,0,0,0,0,1,4,0,0,45,0,36,0,0,4950,54,2793,0,112,0,0,0,0,0,16,32,0,0,0,0,5,9,160,0,35,22,10,0,2,102,0,1199,55,4,0,0,2,15,1116,0,27,0,0,6722,0,0,0,0,58,24,3,0,0,0,0,1,0,0,0,8,0,0,2,0,0,0,0,4,0,0,0,12,0,0,0,0,0,29,0,19,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,6,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,12,0,0,0,0,59,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,29,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,76,3,3,3,0,0,3,227,3,144,0,0,0,86,134,126,1098,509,0,0,0,0,1,0,0,0,0,0,0,0,0,2444,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,20,60,1175,36,0,0,1297,0,1982,0,0,0,949,215,0,0,0,0,0,0,0,0,0,1061,0,0,0,0,42,29,0,0,0,66,301,574,0,0,116,0,182,0,0,0,4802,0,0,145,0,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,1,69,0,0,0,8,208,87,223,0,161,0,0,0,0,0,0,1591,23,0,0,0,0,0,0,0,0,0,0,0,11,2,1,27,0,0,0,0,0,0,0,0,42,0,0,58,0,3,2073,781,2 +2,0,0,3,0,47,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,7,0,0,0,0,1,0,0,0,38,0,47,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,7,35,0,0,0,0,0,1,0,0,0,0,0,10,0,0,292,47,94,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,38,0,0,1,47,0,386,35,0,0,0,2,0,234,0,0,0,0,529,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,68,0,0,0,7,10,62,355,60,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,151,3,0,0,153,0,203,0,0,0,120,4,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,9,129,112,0,0,84,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,0,0,0,0,0,1,85,38,0,8,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,5,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,24,0,21,0,0,0,1,0,0,0,0,0,6,0,0,209,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,73,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,49,0,0,0,0,3,57,44,113,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,85,3,0,0,83,0,114,0,0,0,29,4,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,208,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,15,2 +27,0,0,3,0,13,2,0,19,2,3,0,0,0,5,0,17,0,6,1,0,0,0,1,0,0,0,0,13,0,1,0,0,0,2,0,13,6,0,0,17,0,0,0,1,0,0,5,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,5,0,0,614,13,71,0,14,0,0,0,0,0,16,0,0,0,0,0,1,8,69,0,0,2,0,0,0,0,0,24,0,6,0,0,2,0,36,0,3,0,0,331,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,6,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,94,0,68,0,0,0,0,3,30,56,106,0,0,0,0,1,0,0,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,6,145,3,0,0,106,0,260,0,0,0,28,15,0,0,0,0,0,0,0,0,0,52,1,0,0,0,2,0,0,0,0,1,95,13,0,0,0,0,0,0,0,0,630,0,0,58,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,13,0,0,0,0,1,15,79,0,14,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,161,402,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,39,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,121,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,168,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,29,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,18,2 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,1,0,0,50,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,19,0,22,0,0,0,0,3,21,5,40,0,0,0,0,1,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,58,0,52,0,0,0,28,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,27,0,0,0,0,2,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,52,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,56,0,1,0,0,0,1,0,0,0,0,0,1,0,0,10294,12,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1381,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,929,0,49,0,0,0,0,3,31,8,946,0,0,0,0,1,0,0,0,0,0,0,0,0,4211,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,88,2,0,0,112,0,109,0,0,0,46,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,27,0,0,0,0,0,0,0,0,886,0,0,3501,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1423,20,2 +11,0,0,2,0,21,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,11,0,21,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,939,21,31,0,1,0,0,0,0,0,5,0,0,0,0,0,1,4,472,0,0,11,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,264,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,38,0,0,0,0,3,37,10,48,0,0,0,0,1,0,0,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,105,2,0,0,111,0,139,0,0,0,53,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,103,13,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,0,0,0,0,0,1,32,83,0,1,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,27,2 +3,0,0,2,0,11,5,0,8,0,2,0,0,0,2,0,16,0,7,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,11,6,0,0,16,0,1,0,1,0,0,1,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,170,11,36,0,2,0,0,0,0,0,5,0,0,0,0,0,1,3,34,0,0,1,0,0,0,0,0,12,0,1,0,0,2,0,19,0,0,0,0,105,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,25,0,0,0,0,3,31,17,56,0,0,0,0,1,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,73,2,0,0,102,0,206,0,0,0,42,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,93,31,0,0,0,0,0,0,0,0,38,0,0,12,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,1,0,0,0,0,1,12,91,0,2,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,142,2 +11,0,0,4,0,33,4,0,14,0,3,0,0,2,3,0,19,0,6,3,0,0,0,5,0,14,0,0,1,0,1,0,0,0,7,0,33,6,0,0,23,0,0,0,1,0,0,2,0,0,0,0,7,108,0,0,0,0,0,1,0,0,0,0,0,4,0,0,13605,33,48,0,6,0,0,0,0,0,10,0,0,0,0,0,7,14,122,0,0,7,0,0,0,0,0,72,5,2,0,0,2,0,28,0,1,0,0,2495,0,0,0,0,0,3,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,95,0,64,0,0,0,6,8,186,25,6002,0,0,0,0,1,0,3,0,0,0,0,0,0,7026,0,1967,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,162,4,0,0,145,0,353,0,0,0,45,7,0,0,0,0,0,0,0,0,0,51,1,0,0,0,8,0,0,0,0,1,116,16,0,0,0,0,0,0,0,0,650,0,0,28,2,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,0,0,0,0,0,1,40,93,0,8,8,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,174,30,2 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 +10,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,168,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,294,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,66,3,0,0,42,0,150,0,0,0,6,4,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,171,2 +16,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14298,0,0,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5867,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73735,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,60,0,0,0,0,3,60,61,28637,0,0,0,0,1,0,0,0,0,0,0,0,0,90615,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,434,3,0,0,91,0,209,0,0,0,25,302,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,613,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,32,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,30476,2 +2,0,0,2,0,12,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,12,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,10432,12,45,0,3,0,0,0,0,0,10,0,0,0,0,0,1,4,1340,0,0,1,0,0,0,0,0,8,0,3,0,0,2,0,17,0,0,0,0,146,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,936,0,38,0,0,0,4,4,26,15,937,0,0,0,0,1,0,0,0,0,0,0,0,0,4135,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,93,2,0,0,110,0,143,0,0,0,36,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,96,25,0,0,0,0,0,0,0,0,908,0,0,3580,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,13,92,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1369,17,2 +12,0,0,3,0,10,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,73,0,3,0,1,0,0,3,0,0,0,0,0,66,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1225,10,70,0,23,0,0,0,0,0,12,0,0,0,0,0,1,8,563,0,0,0,0,0,0,0,0,34,0,3,0,0,2,0,36,0,0,0,0,171,0,0,0,0,35,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,125,0,119,0,0,0,0,3,54,17,165,0,0,0,0,1,0,0,0,0,0,0,0,0,401,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,74,3,0,0,85,0,173,0,0,0,18,3,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,92,11,0,0,0,0,4,0,0,0,865,0,0,760,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,22,0,0,0,0,1,10,103,0,23,0,0,1,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,534,11,2 +10,0,0,4,0,33,4,0,14,0,3,0,0,2,3,0,19,0,6,3,0,0,0,5,0,14,0,0,1,0,1,0,0,0,7,0,33,6,0,0,23,0,0,0,1,0,0,2,0,0,0,0,7,119,0,0,0,0,0,1,0,0,0,0,0,4,0,0,12449,33,48,0,6,0,0,0,0,0,10,0,0,0,0,0,7,14,133,0,0,7,0,0,0,0,0,72,5,2,0,0,2,0,28,0,1,0,0,2102,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,98,0,66,0,0,0,6,8,186,25,5849,0,0,0,0,1,0,2,0,0,0,0,0,0,5418,0,1911,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,164,4,0,0,146,0,330,0,0,0,46,4,0,0,0,0,0,0,0,0,0,51,1,0,0,0,8,0,0,0,0,1,117,16,0,0,0,0,0,0,0,0,658,0,0,32,2,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,0,0,0,0,0,1,40,93,0,8,8,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,184,31,2 +62,0,0,5,0,49,6,0,28,13,3,0,0,2,18,0,589,0,7,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,15,898,49,24,0,0,57,0,0,0,1,0,0,5,0,0,0,0,1,177,0,0,0,0,0,1,0,0,0,0,0,18,0,0,19164,49,672,0,1,0,0,0,0,0,27,0,0,0,0,0,8,21,2989,0,0,15,0,0,0,0,0,94,5,6,0,0,2,0,621,0,14,0,0,2510,0,0,0,0,14,15,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,2426,0,136,0,0,0,0,3,261,3633,2506,0,0,0,0,1,0,3,0,0,0,0,0,0,2925,0,24,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,34,24,276,5,0,0,272,0,394,0,0,0,123,7,0,0,0,0,0,0,4,0,0,653,1,0,0,0,9,0,0,0,0,1,134,28,0,0,0,0,13,0,26,13,2122,1,0,168,6,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,0,0,0,0,0,1,64,142,0,2,12,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,5,618,51,2 +6,0,0,2,0,14,2,0,22,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,8,0,0,0,0,2,150,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1755,14,111,0,3,0,0,0,0,0,32,0,0,0,0,0,1,13,292,0,0,3,0,0,0,0,0,20,0,12,0,0,2,0,56,0,0,0,0,322,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,256,0,112,0,0,0,4,11,33,26,262,0,0,0,0,1,0,0,0,0,0,0,0,0,612,0,0,0,0,0,0,0,0,0,0,0,0,8,0,2,0,0,0,0,0,0,10,3,132,2,0,0,253,0,436,0,0,0,180,20,0,0,0,0,0,0,6,0,0,60,1,0,0,0,2,0,0,0,0,1,109,139,0,0,0,0,0,0,0,0,686,0,0,245,0,0,1,0,0,0,0,0,15,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,553,0,9,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,309,52,2 +13,0,0,31,4,65,138,4,184,32,55,0,0,7,54,1,1118,0,15,11,0,0,0,7,0,11,9,0,42,0,7,0,0,4,26,15906,69,198,0,0,234,0,0,0,1,0,0,1,0,0,0,0,8,1064,0,0,0,0,0,1,0,0,0,12,0,39,0,0,45809,65,1552,0,47,0,0,0,0,0,72,0,0,0,0,0,17,209,6778,0,4,26,4,0,6,32,0,929,92,2,0,0,10,4,1350,0,33,156,0,5192,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,10,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,60,12,12,12,0,0,0,2561,0,71,0,0,0,34,52,1002,2289,2539,0,0,0,0,1,0,3,0,0,0,0,0,0,786,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,536,138,1002,42,0,0,1095,0,1396,0,4,0,452,66,0,0,0,0,0,0,0,0,0,1572,1,0,0,0,18,0,0,0,0,8,273,91,0,0,379,0,1,0,0,0,4806,1,0,489,35,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,35,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,69,1,1,1,0,129,0,0,0,0,33,95,175,0,57,12,0,0,0,0,0,272,5,0,0,0,0,0,0,0,0,0,0,0,7,0,2,40,0,0,0,0,0,0,0,0,0,0,0,4,0,1,2292,138,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,960,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,43,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,71,0,0,0,0,0,7,43,194,0,0,0,0,0,0,0,0,0,0,0,0,0,469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,5,2,0,0,53,0,92,0,0,0,47,1,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,44,0,0,0,0,0,0,0,0,289,0,0,252,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,114,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,302,3,2 +17,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,35,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5168,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,37540,0,0,0,0,3,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,54,0,0,0,14,17,52,37,35798,0,0,0,0,1,0,0,0,0,0,0,0,0,99817,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,332,3,0,0,75,0,226,0,0,0,12,238,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,613,0,0,23,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,25,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,29398,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,921,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,466,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,289,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,41,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,112,2,0,0,119,0,132,0,0,0,61,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,27,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,36,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,147,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,79,3,0,0,78,0,171,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,25,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,6,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,95,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2610,10,80,0,23,0,0,0,0,0,17,0,0,0,0,0,1,10,1033,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,471,0,0,0,0,32,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,399,0,124,0,0,0,0,3,55,19,440,0,0,0,0,1,0,0,0,0,0,0,0,0,1146,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,168,3,0,0,108,0,255,0,0,0,39,12,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,718,0,0,892,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,2,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,430,20,2 +4,0,0,15,7,18,6,29,84,1,17,0,0,0,5,0,52,0,6,22,0,7,0,1,1,0,0,0,0,0,1,0,0,7,3,0,25,6,0,0,64,0,0,0,1,0,0,1,0,0,0,0,0,85,2,0,0,0,0,1,0,0,0,0,0,12,0,0,240,18,578,0,1,0,0,0,0,0,9,21,0,0,0,0,2,4,33,0,29,3,7,0,1,16,0,159,25,0,0,0,2,7,120,0,2,0,0,431,0,0,0,0,12,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,16,0,0,0,0,0,0,39,0,39,0,0,0,0,3,56,180,69,0,0,0,0,1,0,0,0,0,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,10,7,286,23,0,0,287,0,303,0,0,0,75,18,0,0,0,0,0,0,0,0,0,170,1,0,0,0,31,0,0,0,0,0,100,34,0,0,70,0,0,0,0,0,649,0,0,8,0,0,1,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,16,1,1,1,0,0,0,0,0,0,49,28,20,0,1,0,0,0,0,0,0,48,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,3,0,0,0,0,0,0,0,0,0,0,0,9,0,0,88,93,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,61,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9727,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1270,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,883,0,48,0,0,0,0,3,27,8,900,0,0,0,0,1,0,0,0,0,0,0,0,0,3909,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,87,2,0,0,109,0,108,0,0,0,46,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,843,0,0,3320,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1310,21,2 +12,0,0,3,0,11,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,11,6,0,0,75,0,3,0,1,0,0,3,0,0,0,0,0,58,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1249,11,70,0,23,0,0,0,0,0,12,0,0,0,0,0,1,8,585,0,0,0,0,0,0,0,0,34,0,4,0,0,2,0,36,0,0,0,0,202,0,0,0,0,35,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,128,0,111,0,0,0,0,3,59,17,168,0,0,0,0,1,0,0,0,0,0,0,0,0,404,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,79,3,0,0,88,0,177,0,0,0,18,2,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,93,11,0,0,0,0,4,0,0,0,864,0,0,760,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,22,0,0,0,0,1,11,103,0,23,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,516,15,2 +53,0,0,15,11,78,215,10,328,11,44,0,0,6,42,3,1333,0,23,14,0,4,0,9,0,21,3,0,50,0,5,0,0,10,32,835,88,404,0,0,283,0,0,0,1,0,0,2,0,0,0,0,13,549,0,0,0,0,0,1,0,0,0,4,0,29,0,0,17187,78,2034,0,61,0,0,0,0,0,13,6,0,0,0,1,18,35,3129,0,10,32,10,0,10,58,0,1043,50,3,0,0,20,11,1467,0,20,3,0,2255,0,0,0,0,25,7,4,0,0,0,0,1,0,0,0,10,0,0,1,0,2,0,0,5,0,0,0,3,0,0,0,0,0,11,3,8,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,1,18,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,52,12,12,12,0,0,0,485,0,145,0,0,0,16,24,378,1135,536,0,0,0,0,1,0,4,0,0,0,0,0,0,1150,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,918,131,1559,32,0,0,1715,0,3313,0,8,0,531,98,0,0,0,0,0,0,0,0,0,1994,1,0,0,0,27,0,0,0,0,7,282,208,0,0,89,0,2,0,0,1,3862,1,0,37,7,0,1,3,0,0,0,0,2,0,0,0,1,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,91,1,1,1,0,62,0,0,0,6,81,120,264,0,65,14,0,0,0,0,0,408,17,0,0,0,0,0,0,0,0,0,0,0,12,0,3,19,0,0,0,0,0,0,0,0,0,0,0,10,0,1,1931,239,2 +4,0,0,2,0,11,3,0,4,0,2,0,0,0,2,0,9,0,6,1,0,0,0,2,0,0,0,0,0,0,17,0,0,0,3,0,11,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,1,0,0,77,11,43,0,1,0,0,0,0,0,2,0,0,0,0,0,2,2,38,0,0,3,0,0,0,0,0,7,0,0,0,0,2,0,7,0,0,0,0,74,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,34,0,0,0,0,3,29,27,63,0,0,0,0,1,0,0,0,0,0,0,0,0,152,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,42,2,0,0,50,0,68,0,0,0,17,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,3,0,0,0,0,0,93,4,0,0,0,0,0,0,0,0,29,0,0,16,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,16,0,0,0,0,1,14,7,0,17,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,3,2 +2,0,0,3,0,47,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,7,0,0,0,0,1,0,0,0,38,0,47,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,7,37,0,0,0,0,0,1,0,0,0,0,0,10,0,0,281,47,94,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,38,0,0,1,47,0,386,35,0,0,0,2,0,234,0,0,0,0,543,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,68,0,0,0,7,10,62,355,60,0,0,0,0,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,152,3,0,0,153,0,206,0,0,0,120,2,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,9,129,112,0,0,84,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,0,0,0,0,0,1,85,38,0,8,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,4,2 +2,0,0,3,0,46,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,7,0,0,0,0,1,0,0,0,37,0,46,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,7,32,0,0,0,0,0,1,0,0,0,0,0,10,0,0,290,46,94,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,37,0,0,1,47,0,386,35,0,0,0,2,0,234,0,0,0,0,526,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,67,0,0,0,7,10,61,355,60,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,150,3,0,0,150,0,202,0,0,0,117,2,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,9,128,112,0,0,84,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,0,0,0,0,0,1,83,37,0,8,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,5,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,978,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,49,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,71,0,0,0,0,0,7,43,196,0,0,0,0,0,0,0,0,0,0,0,0,0,490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,7,2,0,0,53,0,85,0,0,0,47,1,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,44,0,0,0,0,0,0,0,0,295,0,0,256,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,114,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,307,4,2 +19,0,0,3,0,13,128,0,284,0,49,0,0,0,2,0,252,0,6,1,0,0,0,1,0,0,141,0,47,0,48,0,0,0,0,0,13,25,0,0,359,0,0,0,1,0,0,1,0,0,0,0,47,149,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2354,13,1020,0,95,0,0,0,0,0,41,0,0,0,0,0,1,3,34,0,0,0,0,0,1,221,0,1890,225,1,0,0,2,0,1937,0,0,0,0,3419,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,54,0,53,0,0,0,94,237,31,1008,58,0,0,0,0,1,0,0,0,0,0,0,0,0,1594,0,1,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,3,309,3,0,0,327,0,264,0,0,0,253,58,0,0,0,0,0,0,0,0,0,721,1,0,0,0,2,0,0,0,0,48,96,546,0,0,532,0,0,0,0,0,664,0,0,55,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,48,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,94,0,0,0,0,1,13,93,0,236,0,0,0,0,0,0,424,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,85,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +10,0,0,3,0,10,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,3,0,0,0,0,0,58,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1290,10,71,0,24,0,0,0,0,0,12,0,0,0,0,0,1,8,628,0,0,0,0,0,0,0,0,35,0,3,0,0,2,0,37,0,0,0,0,370,0,0,0,0,37,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,127,0,120,0,0,0,0,3,55,17,167,0,0,0,0,1,0,0,0,0,0,0,0,0,408,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,76,3,0,0,85,0,173,0,0,0,18,1,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,92,11,0,0,0,0,4,0,0,0,867,0,0,760,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,23,0,0,0,0,1,10,103,0,24,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,537,11,2 +11,0,0,3,0,12,98,0,115,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,215,0,0,0,1,0,0,0,0,0,0,0,4,47,0,0,0,0,0,1,0,0,0,0,0,3,0,0,320,12,239,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,24,0,0,3,0,0,1,111,0,830,30,0,0,0,2,0,554,0,0,0,0,213,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,37,0,0,0,8,11,29,753,49,0,0,0,0,1,0,0,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,52,3,0,0,151,0,138,0,0,0,118,2,0,0,0,0,0,0,0,0,0,240,0,0,0,0,2,0,0,0,0,5,96,226,0,0,98,0,0,0,0,0,23,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,243,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,5,2 +2,0,0,3,0,47,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,7,0,0,0,0,1,0,0,0,38,0,47,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,7,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,289,47,94,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,38,0,0,1,47,0,386,35,0,0,0,2,0,234,0,0,0,0,535,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,67,0,0,0,7,10,62,355,60,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,151,3,0,0,153,0,206,0,0,0,120,4,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,9,129,112,0,0,84,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,0,0,0,0,0,1,85,38,0,8,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,5,2 +12,0,0,3,0,10,2,0,15,0,2,0,0,0,2,0,15,0,7,0,0,0,0,1,0,0,0,0,21,0,1,0,0,0,0,0,10,6,0,0,71,0,3,0,1,0,0,3,0,0,0,0,0,59,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1264,10,69,0,22,0,0,0,0,0,12,0,0,0,0,0,1,8,589,0,0,0,0,0,0,0,0,33,0,3,0,0,2,0,35,0,0,0,0,219,0,0,0,0,40,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,123,0,118,0,0,0,0,3,53,17,163,0,0,0,0,1,0,0,0,0,0,0,0,0,401,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,73,3,0,0,85,0,176,0,0,0,18,20,0,0,0,0,0,0,0,0,0,43,1,0,0,0,1,0,0,0,0,0,92,11,0,0,0,0,4,0,0,0,864,0,0,760,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,21,0,0,0,0,1,10,103,0,22,0,0,1,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,530,12,2 +15,0,0,6,0,53,10,0,56,9,11,0,0,6,9,0,1068,0,6,2,0,0,0,8,0,10,0,0,9,0,1,0,0,0,13,1367,53,6,0,0,61,0,0,0,1,0,0,3,1,0,0,0,1,352,0,0,0,0,0,1,0,0,0,0,0,7,0,0,45650,53,1186,0,7,0,0,0,0,0,29,0,0,0,0,0,9,20,8273,0,0,13,0,0,0,0,0,221,20,6,0,0,2,0,1139,0,4,6,0,3470,0,1,0,0,0,0,2,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,5626,0,79,0,0,0,0,3,401,1030,5622,0,0,0,0,1,0,9,0,0,0,0,0,0,420,0,0,0,0,2,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,84,41,293,6,0,0,344,0,400,0,0,0,161,15,0,0,0,0,0,0,0,0,0,1166,1,0,2,0,10,0,0,0,0,0,136,71,0,0,31,0,0,0,0,0,3817,1,0,79,10,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,10,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,6,0,0,0,0,1,66,325,0,8,12,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1435,78,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,153,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,175,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,37,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +0,0,0,7,0,14,2,0,8,0,2,0,0,0,2,0,9,0,6,1,0,0,0,1,0,4,0,0,9,0,9,0,0,0,3,0,14,6,0,0,11,0,0,0,1,0,0,1,0,0,0,0,12,41,0,0,0,0,0,1,0,0,0,0,0,2,0,0,8630,14,41,0,12,0,0,0,0,0,2,0,0,0,0,0,1,3,28,0,0,3,0,0,0,0,0,15,0,0,0,0,2,0,27,0,0,0,0,1354,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,96,0,183,0,0,0,3,14,29,17,2414,0,0,0,0,1,0,0,0,0,0,0,0,0,2991,0,789,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,63,10,0,0,74,0,155,0,0,0,35,4,0,0,0,0,0,0,0,0,0,29,1,0,0,0,2,0,0,0,0,1,98,23,0,0,0,0,0,0,0,0,55,0,0,35,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,25,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,63,0,0,0,0,1,17,31,0,22,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365,6,2 +0,0,0,2,0,29,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,20,0,1,0,0,0,21,0,29,6,0,0,5,0,3,0,1,0,0,3,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,498,29,53,0,21,0,0,0,0,0,7,0,0,0,0,0,1,5,126,0,0,21,0,0,0,0,0,28,0,3,0,0,2,0,26,0,0,0,0,261,0,0,0,0,23,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,123,0,95,0,0,0,0,3,64,30,188,0,0,0,0,1,0,0,0,0,0,0,0,0,464,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,127,2,0,0,186,0,181,0,0,0,136,2,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,111,64,0,0,0,0,0,0,0,0,80,0,0,41,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,21,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,20,0,0,0,0,1,50,91,0,21,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,199,2 +70,0,0,4,0,29,2,0,8,17,3,0,0,0,22,0,23,0,7,1,0,0,0,1,0,0,0,0,15,0,1,0,0,0,16,0,29,24,0,0,50,0,0,0,1,0,0,3,0,0,0,0,0,67,0,0,0,0,0,1,0,0,0,0,0,21,0,0,3559,29,89,0,16,0,0,0,0,0,13,0,0,0,0,0,1,5,196,0,0,16,0,0,0,0,0,26,0,3,0,0,2,0,65,0,18,0,0,1738,0,0,0,0,15,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,171,0,98,0,0,0,0,3,68,3993,256,0,0,0,0,1,0,0,0,0,0,0,0,0,3166,0,17,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,21,198,4,0,0,158,0,257,0,0,0,92,6,0,0,0,0,0,0,4,0,0,65,1,0,0,0,2,0,0,0,0,1,117,21,0,0,0,0,14,0,30,16,684,0,0,136,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,15,0,0,0,0,1,45,124,0,16,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,3,281,25,2 +11,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,48,0,0,0,0,0,1,0,0,0,0,0,3,0,0,326,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,33,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,211,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,42,0,0,0,8,11,29,400,145,0,0,0,0,1,0,0,0,0,0,0,0,0,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,55,3,0,0,62,0,138,0,0,0,29,5,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,28,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,10,2 +0,0,0,7,0,10,2,0,11,0,3,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,3,0,0,0,1,0,10,6,0,0,8,0,0,0,1,0,0,3,0,0,0,0,2,814,0,0,0,0,0,1,0,0,0,0,0,1,0,0,446,10,53,0,5,0,0,0,0,0,14,0,0,0,0,0,1,6,73,0,0,1,0,0,0,0,0,13,0,5,0,0,2,0,12,0,0,0,0,148,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,89,0,65,0,0,0,4,4,27,15,107,0,0,0,0,1,0,0,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,5,1072,10,0,0,1462,0,312,0,0,0,581,4,0,0,0,0,0,0,0,0,0,39,1,0,0,0,2,0,0,0,0,1,1084,400,0,0,0,0,0,0,0,0,37,0,0,48,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,11,2239,0,5,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,140,29,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,60,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9671,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1254,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,879,0,48,0,0,0,0,3,27,8,896,0,0,0,0,1,0,0,0,0,0,0,0,0,3859,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,85,2,0,0,109,0,108,0,0,0,46,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,838,0,0,3304,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1294,20,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14045,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6262,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73205,0,0,0,0,6,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,60,0,0,0,0,3,60,61,28131,0,0,0,0,1,0,0,0,0,0,0,0,0,91878,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,449,3,0,0,91,0,221,0,0,0,25,322,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,32,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,30568,2 +17,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14067,0,0,0,1,0,0,1,0,0,0,0,4,52,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5510,22,38,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,32,0,9,0,0,68260,0,0,0,0,5,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,57,0,0,0,8,10,54,69,28195,0,0,0,0,1,0,0,0,0,0,0,0,0,91287,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,369,3,0,0,78,0,231,0,0,0,12,257,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,613,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,2,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,29826,2 +11,0,0,3,0,18,2,0,12,0,3,0,0,0,3,0,50,0,7,1,0,0,0,1,0,0,24,0,0,0,9,0,0,0,7,0,18,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,8,21,0,0,0,0,0,1,0,0,0,0,0,3,0,0,226,18,101,0,9,0,0,0,0,0,0,0,0,0,0,0,1,1,38,0,0,7,0,0,0,0,0,37,0,0,0,0,2,0,161,0,1,0,0,367,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,46,0,39,0,0,0,16,43,45,46,65,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,85,3,0,0,60,0,145,0,0,0,21,3,0,0,0,0,0,0,0,0,0,77,0,0,0,0,2,0,0,0,0,9,98,1,0,0,0,0,0,0,0,0,678,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,8,0,0,0,0,1,25,7,0,33,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,213,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,50,0,0,0,0,0,1,0,0,0,0,0,4,0,0,140,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,120,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,169,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,215,5,0,0,229,0,328,0,1,0,55,3,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,32,0,3,0,0,0,0,0,0,53,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,15,2 +2,0,0,3,0,9,2,0,2,0,2,0,0,0,2,0,8,0,7,2,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,9,6,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,2,0,0,24,9,19,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,6,0,0,0,0,2,0,7,0,0,0,0,48,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,23,0,0,0,0,3,24,4,24,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,3,0,0,35,0,46,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,1,0,0,0,0,1,9,0,0,2,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,3,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,36,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,141,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,53,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,169,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,19,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,18,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,53,0,0,0,0,0,1,0,0,0,0,0,4,0,0,141,12,95,0,2,0,0,0,0,0,3,0,0,0,0,0,1,3,31,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,218,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,173,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,214,5,0,0,229,0,329,0,1,0,55,3,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,116,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,44,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,97,15,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,5,2 +18,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13932,0,0,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6135,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,69276,0,0,0,0,5,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,27905,0,0,0,0,1,0,0,0,0,0,0,0,0,89717,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,431,3,0,0,91,0,218,0,0,0,25,310,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,28164,2 +2,0,0,2,0,8,2,0,9,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,59,8,30,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,22,0,0,0,0,0,0,0,0,6,0,1,0,0,2,0,7,0,0,0,0,43,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,23,0,18,0,0,0,0,3,21,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,56,2,0,0,61,0,113,0,0,0,8,0,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,88,2,0,0,0,0,0,0,0,0,605,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,8,2 +5,0,0,4,0,34,7,0,28,0,3,0,0,2,3,0,504,0,6,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,2,898,34,6,0,0,23,0,0,0,1,0,0,2,0,0,0,0,1,151,0,0,0,0,0,1,0,0,0,0,0,4,0,0,19945,34,558,0,1,0,0,0,0,0,17,0,0,0,0,0,8,18,3405,0,0,2,0,0,0,0,0,88,5,3,0,0,2,0,513,0,1,0,0,1189,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,2826,0,77,0,0,0,0,3,237,850,2835,0,0,0,0,1,0,3,0,0,0,0,0,0,613,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,187,4,0,0,220,0,268,0,0,0,79,3,0,0,0,0,0,0,0,0,0,553,1,0,0,0,9,0,0,0,0,0,117,33,0,0,0,0,0,0,0,0,1948,1,0,36,7,0,1,2,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,36,87,0,2,12,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,455,30,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,1,0,0,0,0,0,0,0,0,32,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,31,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,60,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,12,2 +6,0,0,2,0,14,2,0,20,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,8,0,0,0,0,0,157,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1915,14,91,0,3,0,0,0,0,0,31,0,0,0,0,0,1,13,296,0,0,3,0,0,0,0,0,22,0,12,0,0,2,0,20,0,0,0,0,310,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,256,0,112,0,0,0,0,3,33,20,263,0,0,0,0,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,0,0,0,0,0,0,0,8,0,2,0,0,0,0,0,0,10,3,130,2,0,0,252,0,450,0,0,0,179,24,0,0,0,0,0,0,6,0,0,48,1,0,0,0,2,0,0,0,0,1,109,139,0,0,0,0,0,0,0,0,672,0,0,249,0,0,1,0,0,0,0,0,15,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,553,0,3,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,317,54,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,49,0,0,0,0,0,1,0,0,0,0,0,4,0,0,141,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,31,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,119,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,170,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,215,5,0,0,229,0,330,0,1,0,55,2,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,116,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,24,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,97,15,2 +224,0,0,3,0,120,3,0,113,2,3,0,0,0,5,0,548,0,6,1,0,0,0,1,0,1,324,1,0,0,107,0,0,0,110,0,120,6,0,0,63,0,0,0,0,0,0,0,0,0,0,0,108,80,0,0,0,0,0,1,0,0,0,0,0,5,0,0,1609,120,1101,0,109,0,0,0,0,0,0,0,0,0,0,0,1,1,67,0,0,110,0,0,0,0,0,437,0,0,0,0,2,0,2064,0,3,0,0,5245,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,112,0,0,0,0,0,0,18,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,160,0,160,0,0,0,216,542,242,601,173,0,0,0,0,0,0,0,0,0,0,0,0,0,1667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,722,3,0,0,368,0,295,0,0,0,332,32,0,0,0,0,0,0,0,0,0,678,0,0,0,0,2,0,0,0,0,109,202,1,0,0,0,0,0,0,0,0,1123,0,0,108,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,109,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,117,1,1,1,0,108,0,0,0,0,1,230,110,0,433,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,347,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,36,0,0,0,0,0,1,0,0,0,0,0,3,0,0,227,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,86,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,161,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,630,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,35,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,18,2 +0,0,0,3,0,23,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,23,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,27,0,21,0,0,0,1,0,0,0,0,0,6,0,0,208,23,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,73,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,70,0,51,0,0,0,0,3,61,44,114,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,88,3,0,0,86,0,115,0,0,0,29,3,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,105,2,0,0,0,0,0,0,0,0,208,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,0,0,0,4,0,1,29,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,15,2 +8,0,0,6,0,36,14,0,86,0,18,0,0,6,4,0,577,0,6,1,0,0,0,8,0,10,0,0,5,0,33,0,0,0,4,762,36,6,0,0,135,0,1,0,1,0,0,1,0,0,0,0,1,162,0,0,0,0,0,1,0,0,0,0,0,12,0,0,5503,36,739,0,3,0,0,0,0,0,12,0,0,0,0,0,8,21,1068,0,0,4,0,0,1,50,0,582,40,2,0,0,2,0,858,0,0,1,0,1193,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,378,0,61,0,0,0,1,4,255,687,380,0,0,0,0,1,0,3,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,86,16,186,6,0,0,239,0,288,0,0,0,100,2,0,0,0,0,0,0,0,0,0,711,1,0,0,0,9,0,0,0,0,0,123,165,0,0,50,0,0,0,0,0,2166,1,0,107,6,0,1,1,1,0,0,0,3,0,1,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,33,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,37,0,0,0,0,1,40,130,0,36,12,0,0,0,0,0,178,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,549,43,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,5,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,5,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,52,0,0,0,0,0,1,0,0,0,0,0,4,0,0,142,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,156,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,172,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,217,5,0,0,229,0,328,0,1,0,55,3,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,32,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,15,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,16,0,7,1,0,0,0,1,0,0,0,0,24,0,113,0,0,0,0,0,10,6,0,0,131,0,3,0,1,0,0,3,0,0,0,0,112,81,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1815,10,186,0,137,0,0,0,0,0,13,0,0,0,0,0,1,8,674,0,0,0,0,0,0,0,0,484,0,3,0,0,2,0,151,0,0,0,0,662,0,0,0,0,37,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,136,0,122,0,0,0,224,227,55,298,169,0,0,0,0,1,0,0,0,0,0,0,0,0,414,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,165,3,0,0,84,0,209,0,0,0,16,13,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,113,90,11,0,0,0,0,4,0,0,0,898,0,0,876,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,473,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,248,0,0,0,224,1,10,103,0,137,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,545,21,2 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,1,0,0,17,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,19,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,34,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,4,2 +0,0,0,0,0,9,2,0,14,0,1,0,0,0,2,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,76,9,36,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,24,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,24,0,0,0,0,3,24,7,46,0,0,0,0,1,0,0,0,0,0,0,0,0,85,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,65,0,0,0,81,0,84,0,0,0,20,0,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,91,13,0,0,0,0,0,0,0,0,27,0,0,12,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,9,64,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,51,1,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,230,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,89,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,126,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,169,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,633,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,21,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,20,2 +12,0,0,3,0,17,2,0,15,0,3,0,0,0,3,0,15,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,6,0,17,6,0,0,14,0,3,0,1,0,0,11,0,0,0,0,0,118,0,0,0,0,0,1,0,0,0,0,0,3,0,0,4529,17,117,0,4,0,0,0,0,0,45,0,0,0,0,0,1,24,885,0,0,6,0,0,0,0,0,27,0,17,0,0,2,0,20,0,1,0,0,747,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,4,1,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,419,0,101,0,0,0,0,3,36,26,417,0,0,0,0,1,0,0,0,0,0,0,0,0,1031,0,0,0,0,0,0,0,0,0,0,0,0,11,0,14,0,0,0,0,0,0,8,4,124,3,0,0,183,0,263,0,0,0,112,23,0,0,0,0,0,0,4,0,0,45,1,0,0,0,2,0,0,0,0,1,99,67,0,0,0,0,0,0,0,0,358,0,0,1274,0,0,1,0,1,0,0,0,18,0,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,3,0,0,0,0,1,23,440,0,4,0,0,1,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,612,116,2 +20,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14277,0,0,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6149,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73991,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,60,0,0,0,0,3,60,61,28597,0,0,0,0,1,0,0,0,0,0,0,0,0,90926,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,444,3,0,0,91,0,216,0,0,0,25,337,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,615,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,32,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,29142,2 +2,0,0,3,0,9,2,0,16,0,3,0,0,0,3,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,9,6,0,0,8,0,2,0,1,0,0,2,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,3,0,0,466,9,41,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,148,0,0,1,0,0,0,0,0,7,0,4,0,0,2,0,16,0,1,0,0,76,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,20,0,0,0,0,3,23,4,47,0,0,0,0,1,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,4,68,3,0,0,93,0,119,0,0,0,32,1,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,91,22,0,0,0,0,0,0,0,0,606,0,0,327,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,126,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,6,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,16,0,7,1,0,0,0,1,0,0,0,0,25,0,113,0,0,0,0,0,10,6,0,0,131,0,3,0,1,0,0,3,0,0,0,0,112,77,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1742,10,186,0,138,0,0,0,0,0,12,0,0,0,0,0,1,8,609,0,0,0,0,0,0,0,0,485,0,3,0,0,2,0,152,0,0,0,0,643,0,0,0,0,36,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,135,0,120,0,0,0,224,227,55,298,169,0,0,0,0,1,0,0,0,0,0,0,0,0,415,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,175,3,0,0,85,0,221,0,0,0,18,17,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,113,92,11,0,0,0,0,4,0,0,0,916,0,0,871,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,473,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,249,0,0,0,224,1,10,103,0,138,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,537,20,2 +0,0,0,2,0,8,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,111,8,34,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,18,0,0,0,0,0,0,0,0,6,0,1,0,0,2,0,13,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,22,0,18,0,0,0,0,3,22,4,35,0,0,0,0,1,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,70,2,0,0,93,0,116,0,0,0,35,1,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,92,27,0,0,0,0,0,0,0,0,26,0,0,8,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,82,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,8,2 +0,0,0,3,0,13,2,0,25,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,13,6,0,0,19,0,1,0,1,0,0,1,0,0,0,0,0,60,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1947,13,49,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,729,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,15,0,1,0,0,159,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,186,0,23,0,0,0,0,3,30,8,197,0,0,0,0,1,0,0,0,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,83,3,0,0,116,0,214,0,0,0,51,2,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,0,95,35,0,0,0,0,0,0,0,0,295,0,0,924,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,16,115,0,1,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,359,20,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,21,0,1,0,0,0,0,0,10,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,98,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2555,10,78,0,22,0,0,0,0,0,16,0,0,0,0,0,1,10,1016,0,0,0,0,0,0,0,0,34,0,4,0,0,2,0,36,0,0,0,0,398,0,0,0,0,32,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,391,0,124,0,0,0,0,3,55,19,433,0,0,0,0,1,0,0,0,0,0,0,0,0,1126,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,144,3,0,0,107,0,271,0,0,0,39,13,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,714,0,0,878,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,21,0,0,0,0,1,10,170,0,22,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,419,33,2 +5,0,0,4,0,35,7,0,28,0,3,0,0,2,3,0,529,0,6,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,2,898,35,6,0,0,23,0,0,0,1,0,0,2,0,0,0,0,1,145,0,0,0,0,0,1,0,0,0,0,0,4,0,0,21376,35,584,0,1,0,0,0,0,0,17,0,0,0,0,0,8,18,3647,0,0,2,0,0,0,0,0,88,5,3,0,0,2,0,538,0,1,0,0,1378,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,3032,0,80,0,0,0,0,3,245,847,3044,0,0,0,0,1,0,3,0,0,0,0,0,0,658,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,189,4,0,0,223,0,275,0,0,0,80,3,0,0,0,0,0,0,0,0,0,578,1,0,0,0,9,0,0,0,0,0,118,33,0,0,0,0,0,0,0,0,2028,1,0,37,7,0,1,2,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,7,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,37,81,0,2,12,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,494,33,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,34,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,4,2 +2,0,0,3,0,9,2,0,16,0,3,0,0,0,3,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,9,6,0,0,8,0,2,0,1,0,0,2,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,3,0,0,484,9,41,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,154,0,0,1,0,0,0,0,0,7,0,4,0,0,2,0,16,0,1,0,0,88,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,37,0,21,0,0,0,0,3,23,4,48,0,0,0,0,1,0,0,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,4,69,3,0,0,93,0,120,0,0,0,32,6,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,91,22,0,0,0,0,0,0,0,0,606,0,0,331,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,1,0,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,112,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,7,2 +4,0,0,2,0,11,2,0,9,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,4,0,5,0,0,0,2,0,11,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,4,61,0,0,0,0,0,1,0,0,0,0,0,1,0,0,8000,11,40,0,9,0,0,0,0,0,6,0,0,0,0,0,1,4,1810,0,0,2,0,0,0,0,0,27,0,1,0,0,2,0,15,0,0,0,0,307,0,0,0,0,4,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1086,0,123,0,0,0,8,11,30,36,1125,0,0,0,0,1,0,0,0,0,0,0,0,0,2672,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,84,2,0,0,110,0,203,0,0,0,55,6,0,0,0,0,0,0,56,0,0,37,1,0,0,0,2,0,0,0,0,5,93,42,0,0,0,0,0,0,0,0,1085,0,0,2199,0,0,1,1,1,0,0,0,4,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,92,0,0,0,0,185,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,54,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,12,0,0,0,0,1,13,167,0,9,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,60,0,0,0,0,0,0,0,1,1102,12,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,97,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2602,10,80,0,23,0,0,0,0,0,17,0,0,0,0,0,1,10,1019,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,378,0,0,0,0,32,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,395,0,123,0,0,0,0,3,55,19,436,0,0,0,0,1,0,0,0,0,0,0,0,0,1148,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,155,3,0,0,108,0,241,0,0,0,39,12,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,725,0,0,895,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,429,19,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,5,2 +3,0,0,6,0,36,63,0,133,1,15,0,0,6,5,0,835,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,2,835,36,6,0,0,195,0,2,0,1,0,0,2,0,0,0,0,1,202,0,0,0,0,0,1,0,0,0,0,0,7,0,0,44738,36,1042,0,3,0,0,0,0,0,15,0,0,0,0,0,8,23,10514,0,0,2,0,0,1,82,0,791,50,4,0,0,2,0,1280,0,0,1,0,5042,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,1978,0,61,0,0,0,1,4,251,1558,1974,0,0,0,0,1,0,3,0,0,0,0,0,0,657,0,1,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,1,0,86,16,240,6,0,0,300,0,364,0,0,0,127,13,0,0,0,0,0,0,0,0,0,1063,1,0,0,0,9,0,0,0,0,0,120,221,0,0,81,0,0,0,0,0,6885,1,0,777,6,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,6,361,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,38,211,0,4,12,0,0,0,0,0,243,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4365,36,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,28,0,21,0,0,0,1,0,0,0,0,0,6,0,0,208,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,71,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,49,0,0,0,0,3,57,44,113,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,86,3,0,0,83,0,114,0,0,0,29,4,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,206,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,15,2 +63,0,0,5,0,49,6,0,26,13,3,0,0,2,18,0,518,0,7,3,0,0,0,6,0,10,0,0,3,0,1,0,0,0,15,898,49,18,0,0,55,0,0,0,1,0,0,5,0,0,0,0,1,177,0,0,0,0,0,1,0,0,0,0,0,18,0,0,19612,49,602,0,1,0,0,0,0,0,27,0,0,0,0,0,8,21,3397,0,0,15,0,0,0,0,0,94,5,6,0,0,2,0,552,0,14,0,0,1247,0,0,0,0,13,15,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,2815,0,301,0,0,0,0,3,261,839,3456,0,0,0,0,1,0,3,0,0,0,0,0,0,2141,0,212,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,34,24,263,5,0,0,268,0,395,0,0,0,122,11,0,0,0,0,0,0,4,0,0,580,1,0,0,0,9,0,0,0,0,1,134,26,0,0,0,0,13,0,26,13,1997,1,0,184,6,0,1,1,0,0,0,0,10,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,0,0,0,0,0,1,64,142,0,2,12,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,5,944,48,2 +0,0,0,3,0,13,2,0,9,5,3,0,0,0,8,0,21,0,7,1,0,0,0,1,0,0,3,0,0,0,2,0,0,0,4,0,13,6,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,8,0,0,120,13,46,0,2,0,0,0,0,0,3,0,0,0,0,0,1,3,25,0,0,4,0,0,0,0,0,10,0,1,0,0,2,0,38,0,6,0,0,118,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,33,0,27,0,0,0,2,7,29,8,43,0,0,0,0,1,0,0,0,0,0,0,0,0,115,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,9,81,3,0,0,78,0,152,0,0,0,23,4,0,0,0,0,0,0,0,0,0,50,1,0,0,0,2,0,0,0,0,2,95,2,0,0,0,0,0,0,0,0,41,0,0,17,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,1,0,0,0,0,1,17,4,0,5,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,35,2 +9,0,0,5,38,126,17,58,281,9,104,0,0,2,14,1,1160,0,7,29,0,16,10,20,14,11,3,0,5,0,2,0,1,37,86,3454,150,6,75,0,224,0,0,0,1,0,0,5,0,0,0,0,2,445,0,0,0,0,0,1,0,0,0,0,0,32,0,0,52281,126,4070,0,3,0,0,0,0,0,50,132,0,0,0,0,24,40,8563,0,58,86,37,0,1,99,0,1648,100,9,0,0,2,38,1574,0,12,0,0,3681,0,0,0,0,0,5,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,119,19,19,19,0,0,7,7608,7,305,0,0,44,2,8,523,1129,7730,0,0,0,0,1,0,4,0,0,0,0,0,0,2104,0,96,0,0,0,3,0,0,0,0,0,0,5,1,6,0,0,0,0,1,0,44,30,912,43,0,0,972,0,871,0,0,0,515,49,0,0,0,0,0,0,4,0,0,1586,1,0,0,0,89,0,0,0,0,1,220,293,0,0,270,0,0,0,0,0,6243,1,0,1092,16,0,1,2,0,0,0,0,9,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,42,42,0,0,8,0,0,0,1,0,16,3,9,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,144,1,1,1,0,7,0,0,0,0,327,236,407,22,7,14,0,0,0,0,0,563,9,0,0,0,0,0,0,0,0,0,0,0,26,0,1,13,0,0,0,0,0,0,0,0,0,0,0,60,0,3,1238,115,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,11,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,97,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2500,11,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1000,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,378,0,0,0,0,30,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,383,0,123,0,0,0,0,3,59,19,425,0,0,0,0,1,0,0,0,0,0,0,0,0,1105,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,173,3,0,0,110,0,272,0,0,0,39,4,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,713,0,0,867,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,11,170,0,23,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,415,33,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,11,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,95,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2590,11,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1028,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,506,0,0,0,0,31,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,393,0,124,0,0,0,0,3,59,19,434,0,0,0,0,1,0,0,0,0,0,0,0,0,1144,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,166,3,0,0,110,0,252,0,0,0,39,3,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,726,0,0,891,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,11,170,0,23,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,439,16,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +8,0,0,3,0,13,2,0,3,0,3,0,0,0,3,0,10,0,6,2,0,0,0,1,0,0,0,0,0,0,1,1,2,0,2,0,13,12,0,0,8,0,0,0,0,0,0,0,0,0,0,0,1,42,0,0,0,0,0,1,0,0,0,0,0,3,0,0,325,13,41,0,2,0,0,0,0,0,10,0,0,0,0,0,2,2,59,0,0,2,0,0,0,0,0,7,0,0,0,0,2,0,8,0,1,0,0,162,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,54,0,43,0,0,0,2,3,29,61,90,0,0,0,0,0,0,0,0,0,6,0,0,0,330,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,105,3,0,0,63,0,107,0,0,0,24,7,0,0,0,0,0,0,0,0,0,27,0,0,0,0,3,0,0,0,0,0,97,3,0,0,0,0,2,0,4,2,32,0,0,34,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,44,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,37,0,0,0,0,1,15,2,0,2,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,26,2 +5,0,0,4,0,34,7,0,28,0,3,0,0,2,3,0,515,0,6,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,2,898,34,6,0,0,23,0,0,0,1,0,0,2,0,0,0,0,1,152,0,0,0,0,0,1,0,0,0,0,0,4,0,0,18671,34,568,0,1,0,0,0,0,0,16,0,0,0,0,0,8,18,3194,0,0,2,0,0,0,0,0,87,5,2,0,0,2,0,524,0,1,0,0,1309,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,2605,0,70,0,0,0,0,3,241,850,2613,0,0,0,0,1,0,3,0,0,0,0,0,0,616,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,186,4,0,0,220,0,271,0,0,0,80,2,0,0,0,0,0,0,0,0,0,564,1,0,0,0,9,0,0,0,0,0,117,33,0,0,0,0,0,0,0,0,1973,1,0,36,7,0,1,2,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,36,83,0,2,12,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,453,30,2 +8,0,0,3,0,30,5,0,12,0,2,0,0,2,2,0,28,0,6,2,0,0,0,6,0,8,9,0,2,0,4,0,0,0,6,0,30,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,4,80,0,0,0,0,0,1,0,0,0,0,0,2,0,0,695,30,55,0,3,0,0,0,0,0,3,0,0,0,0,0,7,12,158,0,0,6,0,0,0,0,0,72,5,0,0,0,2,0,75,0,0,0,0,495,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,100,0,64,0,0,0,6,12,183,20,108,0,0,0,0,1,0,4,0,0,0,0,0,0,242,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,102,3,0,0,121,0,207,0,0,0,51,12,0,0,0,0,0,0,0,0,0,57,0,0,0,0,8,0,0,0,0,1,112,31,0,0,0,0,0,0,0,0,695,0,0,3,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,4,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,3,0,0,0,0,1,36,74,0,14,9,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,51,2 +16,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,15116,0,0,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5623,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,70943,0,0,0,0,2,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,61,0,0,0,0,3,58,61,30278,0,0,0,0,1,0,0,0,0,0,0,0,0,94371,0,2,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,446,3,0,0,91,0,204,0,0,0,25,325,0,0,0,0,0,0,0,0,0,42,0,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,613,0,0,12,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,31715,2 +0,0,0,5,0,43,40,0,58,3,41,0,0,8,5,0,933,0,6,1,0,0,0,8,0,11,0,0,43,0,1,0,0,0,2,10486,43,6,0,0,50,0,2,0,1,0,0,2,0,0,0,0,1,601,0,0,0,0,0,1,0,0,0,0,0,2,0,0,44834,43,1217,0,40,0,0,0,0,0,79,0,0,0,0,0,8,242,6715,0,0,2,0,0,0,0,0,561,30,3,0,0,2,0,1075,0,0,231,0,4662,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,2272,0,53,0,0,0,22,25,1265,7515,2223,0,0,0,0,1,0,3,0,0,0,0,0,0,2613,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,136,136,308,5,0,0,399,0,467,0,0,0,220,22,0,0,0,0,0,0,0,0,0,1091,1,0,0,0,9,0,0,0,0,1,166,44,0,0,283,0,0,0,0,0,4746,1,0,3182,40,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,40,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,105,0,0,0,0,1,45,211,0,41,14,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2243,63,2 +25,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14148,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6382,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73772,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,58,0,0,0,0,3,56,61,28357,0,0,0,0,1,0,0,0,0,0,0,0,0,93693,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,459,3,0,0,91,0,214,0,0,0,25,321,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,31399,2 +9,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,33,0,0,0,2,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,11,0,0,71,11,125,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,36,0,0,2,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,65,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,33,0,0,0,0,3,27,378,59,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,126,0,0,0,22,1,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,604,0,0,31,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,33,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,32,0,0,0,0,1,13,6,0,33,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,3,2 +16,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,23,0,0,0,0,0,0,0,0,0,0,0,4,18,0,0,0,0,0,1,0,0,0,0,0,1,0,0,83,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,30,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,1424,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,39,0,0,0,8,5,28,19,53,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,39,47,2,0,0,44,0,138,0,0,0,5,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,598,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,3,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,55,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +28,0,0,3,0,12,9,0,72,0,22,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,12,6,0,0,127,0,0,0,0,0,0,0,0,0,0,0,2,45,0,0,0,0,0,1,0,0,0,0,0,14,0,0,240,12,133,0,3,0,0,0,0,0,8,0,0,0,0,0,1,1,63,0,0,1,0,0,1,68,0,564,40,0,0,0,2,0,330,0,0,0,0,117,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,63,0,39,0,0,0,4,4,32,474,72,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,55,3,0,0,57,0,157,0,0,0,18,3,0,0,0,0,0,0,0,0,0,123,0,0,0,0,2,0,0,0,0,1,92,163,0,0,85,0,0,0,0,0,606,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,4,0,0,0,2,1,13,1,0,3,0,0,0,0,0,0,180,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,80,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,2,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,4,0,0,143,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,31,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,115,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,170,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,212,5,0,0,229,0,327,0,1,0,55,4,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,116,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,36,0,2,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,97,15,2 +58,0,0,6,0,48,8,0,53,12,12,0,0,2,17,0,555,0,7,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,14,898,48,24,0,0,97,0,0,0,1,0,0,6,0,0,0,0,1,218,0,0,0,0,0,1,0,0,0,0,0,22,0,0,20198,48,684,0,1,0,0,0,0,0,32,0,0,0,0,0,8,22,3180,0,0,14,0,0,1,25,0,297,30,8,0,0,2,0,701,0,13,0,0,2463,0,0,0,0,12,14,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,10,2,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,2600,0,139,0,0,0,0,3,258,3548,2650,0,0,0,0,1,0,3,0,0,0,0,0,0,2830,0,14,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,34,23,289,6,0,0,294,0,415,0,0,0,147,11,0,0,0,0,0,0,4,0,0,654,1,0,0,0,9,0,0,0,0,1,136,99,0,0,51,0,12,0,24,12,2091,1,0,233,6,0,1,1,0,0,0,0,14,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,0,0,0,0,0,1,62,228,0,2,12,0,0,0,0,0,153,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,6,686,58,2 +2,0,0,3,0,9,2,0,16,0,3,0,0,0,3,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,9,6,0,0,8,0,2,0,1,0,0,2,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,3,0,0,530,9,41,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,152,0,0,1,0,0,0,0,0,7,0,4,0,0,2,0,16,0,1,0,0,85,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,19,0,0,0,0,3,23,4,52,0,0,0,0,1,0,0,0,0,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,4,68,3,0,0,93,0,122,0,0,0,32,1,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,91,22,0,0,0,0,0,0,0,0,611,0,0,341,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,115,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,5,2 +8,0,0,6,0,35,8,0,40,2,8,0,0,2,7,0,442,0,6,3,0,0,0,6,0,10,0,0,3,0,1,0,0,0,4,898,35,12,0,0,53,0,0,0,1,0,0,7,0,0,0,0,1,187,0,0,0,0,0,1,0,0,0,0,0,10,0,0,27531,35,549,0,1,0,0,0,0,0,37,0,0,0,0,0,8,23,4777,0,0,4,0,0,1,13,0,207,20,9,0,0,2,0,518,0,3,0,0,1194,0,0,0,0,2,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,12,12,12,0,0,0,4172,0,139,0,0,0,0,3,228,407,4165,0,0,0,0,1,0,3,0,0,0,0,0,0,793,0,1,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,34,13,195,6,0,0,249,0,352,0,0,0,108,7,0,0,0,0,0,0,7,0,0,513,1,0,0,0,9,0,0,0,0,1,119,70,0,0,29,0,2,0,4,2,1870,1,0,343,6,0,1,1,0,0,0,0,17,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,39,202,0,2,12,0,0,0,0,0,101,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,7,731,51,2 +0,0,0,6,0,47,63,0,104,1,5,0,0,2,25,0,877,0,8,2,0,0,0,7,0,10,0,0,4,0,2,0,0,0,11,898,47,6,0,0,101,0,0,0,1,0,0,14,1,0,0,0,2,318,0,0,0,0,0,1,0,0,0,0,0,8,0,0,50466,47,1169,0,3,0,0,0,0,0,103,0,0,0,0,4,8,34,7511,0,0,11,0,0,1,1,0,163,10,23,0,0,2,0,1029,0,3,0,0,20176,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,6850,0,211,0,0,0,2,4,257,18883,6815,0,0,0,0,1,0,4,0,0,0,0,0,0,1101,0,0,0,0,0,0,0,0,0,0,0,0,14,1,2,0,0,0,0,1,0,32,13,292,6,0,0,527,0,381,0,0,0,325,21,0,0,0,0,0,0,4,0,0,1084,1,0,4,0,9,0,0,0,0,1,131,226,0,0,11,0,0,0,0,0,2239,1,0,243,6,0,1,1,0,0,0,0,29,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,1,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,3,0,0,0,0,1,58,712,0,4,12,0,0,0,0,0,68,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5,898,77,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13749,0,0,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6179,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,71966,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,27539,0,0,0,0,1,0,0,0,0,0,0,0,0,91812,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,440,3,0,0,91,0,227,0,0,0,25,298,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,30387,2 +11,0,0,4,0,16,2,0,5,0,3,0,0,0,3,0,18,0,7,2,0,0,0,1,0,2,0,0,124,0,1,0,0,0,1,0,16,30,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,4,0,0,220165,16,159,0,127,0,0,0,0,0,3,0,0,0,0,0,2,4,43010,0,0,1,0,0,0,0,0,135,0,2,0,0,2,0,135,0,1,0,0,297615,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,22362,0,62,0,0,0,0,3,22335,719,24218,0,0,0,0,1,0,0,0,0,0,0,0,0,7757,0,706,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,1401,4,0,0,83,0,218,0,0,0,32,905,0,0,0,0,0,0,0,0,0,38,1,0,0,0,3,0,0,0,0,1,104,14,0,0,0,0,8,0,16,8,21399,0,0,16,0,0,1,0,0,0,0,0,3,0,698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22307,1,1,1,0,126,0,0,0,0,1,17,5,0,127,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,45008,1154,2 +11,0,0,3,0,12,7,0,24,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,3,0,12,6,0,0,33,0,0,0,1,0,0,0,0,0,0,0,2,49,0,0,0,0,0,1,0,0,0,0,0,3,0,0,314,12,55,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,27,0,0,3,0,0,1,20,0,185,30,0,0,0,2,0,97,0,0,0,0,229,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,36,0,0,0,4,7,29,384,139,0,0,0,0,1,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,55,3,0,0,60,0,138,0,0,0,27,5,0,0,0,0,0,0,0,0,0,58,0,0,0,0,2,0,0,0,0,3,96,44,0,0,98,0,0,0,0,0,26,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,0,1,15,19,0,3,0,0,0,0,0,0,61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,8,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,23,0,21,0,0,0,1,0,0,0,0,0,6,0,0,211,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,75,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,49,0,0,0,0,3,57,44,113,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,86,3,0,0,83,0,113,0,0,0,29,4,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,210,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,15,2 +0,0,0,3,0,11,2,0,16,0,3,0,0,0,3,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,34,0,0,0,1,0,0,3,0,0,0,0,0,58,0,0,0,0,0,1,0,0,0,0,0,3,0,0,425,11,47,0,1,0,0,0,0,0,13,0,0,0,0,0,2,6,48,0,0,2,0,0,0,0,0,10,0,7,0,0,2,0,17,0,1,0,0,136,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,59,0,32,0,0,0,0,3,28,5,63,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,83,3,0,0,117,0,132,0,0,0,47,4,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,93,34,0,0,0,0,0,0,0,0,36,0,0,79,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,188,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,23,2 +17,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,13940,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5544,22,37,0,8,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,68170,0,0,0,0,2,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,9,54,69,27947,0,0,0,0,1,0,0,0,0,0,0,0,0,91534,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,369,3,0,0,78,0,233,0,0,0,12,251,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,613,0,0,20,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,4,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,29872,2 +2,0,0,2,0,13,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,13,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,2,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,9770,13,45,0,3,0,0,0,0,0,10,0,0,0,0,0,1,4,1285,0,0,1,0,0,0,0,0,8,0,3,0,0,2,0,17,0,0,0,0,126,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,877,0,38,0,0,0,4,4,30,15,878,0,0,0,0,1,0,0,0,0,0,0,0,0,3795,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,92,2,0,0,113,0,146,0,0,0,36,1,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,97,25,0,0,0,0,0,0,0,0,850,0,0,3340,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,4,0,0,0,2,1,14,92,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1318,18,2 +0,0,0,2,0,11,2,0,17,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,56,0,1,0,0,0,1,0,0,0,0,0,1,0,0,8860,11,52,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1106,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,16,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,812,0,50,0,0,0,0,3,27,8,829,0,0,0,0,1,0,0,0,0,0,0,0,0,3310,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,90,2,0,0,113,0,109,0,0,0,48,3,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,95,29,0,0,0,0,0,0,0,0,771,0,0,3031,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,102,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1148,25,2 +0,0,0,2,0,11,2,0,17,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,57,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9523,11,52,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1242,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,16,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,863,0,49,0,0,0,0,3,27,8,880,0,0,0,0,1,0,0,0,0,0,0,0,0,3708,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,90,2,0,0,113,0,109,0,0,0,48,3,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,95,29,0,0,0,0,0,0,0,0,822,0,0,3238,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,102,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1282,22,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,4,0,0,201,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,45,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,117,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,86,3,0,0,111,0,163,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,10,2 +74,0,0,4,0,28,2,0,8,18,3,0,0,0,23,0,23,0,7,1,0,0,0,1,0,0,0,0,15,0,1,0,0,0,16,0,28,24,0,0,53,0,0,0,1,0,0,3,0,0,0,0,0,66,0,0,0,0,0,1,0,0,0,0,0,22,0,0,3508,28,90,0,16,0,0,0,0,0,13,0,0,0,0,0,1,5,209,0,0,16,0,0,0,0,0,26,0,3,0,0,2,0,67,0,19,0,0,1787,0,0,0,0,17,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,180,0,104,0,0,0,0,3,63,3869,273,0,0,0,0,1,0,0,0,0,0,0,0,0,3162,0,20,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,22,201,4,0,0,155,0,269,0,0,0,92,5,0,0,0,0,0,0,4,0,0,66,1,0,0,0,2,0,0,0,0,1,116,21,0,0,0,0,15,0,30,15,686,0,0,137,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,15,0,0,0,0,1,44,124,0,16,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,3,296,26,2 +17,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,3,0,5,0,1,0,2,0,22,6,0,0,14627,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5639,22,38,0,8,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,2,0,0,0,0,0,27,0,0,0,0,2,0,32,0,9,0,0,70706,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,11,54,69,29315,0,0,0,0,1,0,0,0,0,0,0,0,0,96014,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,389,3,0,0,78,0,221,0,0,0,12,283,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,613,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,11,0,0,0,4,1,24,2,0,8,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,33156,2 +14,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,34,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,141,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,176,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,13,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +18,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,37,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5209,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,38899,0,0,0,0,5,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,54,0,0,0,14,17,52,37,34298,0,0,0,0,1,0,0,0,0,0,0,0,0,97785,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,325,3,0,0,75,0,219,0,0,0,12,218,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,614,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,25,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,29205,2 +7,0,0,3,0,29,5,0,11,0,2,0,0,2,2,0,23,0,6,2,0,0,0,6,0,8,6,0,2,0,3,0,0,0,5,0,29,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,3,76,0,0,0,0,0,1,0,0,0,0,0,2,0,0,674,29,47,0,3,0,0,0,0,0,3,0,0,0,0,0,7,12,162,0,0,5,0,0,0,0,0,72,5,0,0,0,2,0,58,0,0,0,0,496,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,91,0,56,0,0,0,4,10,182,16,95,0,0,0,0,1,0,3,0,0,0,0,0,0,204,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,97,3,0,0,112,0,205,0,0,0,42,4,0,0,0,0,0,0,0,0,0,51,0,0,0,0,8,0,0,0,0,1,111,25,0,0,0,0,0,0,0,0,695,0,0,2,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,3,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,2,0,0,0,0,1,34,69,0,10,9,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,40,2 +14,0,0,3,0,22,2,0,4,10,3,0,0,0,13,0,10,0,7,2,0,0,0,1,0,0,0,0,0,0,5,0,0,0,2,0,22,6,0,0,11101,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,13,0,0,6052,22,37,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,61,0,0,2,0,0,0,0,0,24,0,1,0,0,2,0,33,0,11,0,0,67120,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,54,0,0,0,8,11,52,69,22257,0,0,0,0,1,0,0,0,0,0,0,0,0,108371,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,14,426,3,0,0,80,0,253,0,0,0,14,302,0,0,0,0,0,0,0,0,0,39,1,0,0,0,3,0,0,0,0,5,104,7,0,0,0,0,0,0,0,0,608,0,0,20,0,0,1,2,0,0,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,6,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,24,1,1,1,0,8,0,0,0,8,1,24,2,0,5,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,147,2 +73,0,0,4,0,28,2,0,8,18,3,0,0,0,23,0,24,0,7,1,0,0,0,1,0,0,0,0,15,0,1,0,0,0,16,0,28,27,0,0,54,0,0,0,1,0,0,3,0,0,0,0,0,61,0,0,0,0,0,1,0,0,0,0,0,22,0,0,3500,28,91,0,16,0,0,0,0,0,13,0,0,0,0,0,1,5,195,0,0,16,0,0,0,0,0,26,0,3,0,0,2,0,67,0,19,0,0,1774,0,0,0,0,16,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,171,0,101,0,0,0,0,3,63,3915,257,0,0,0,0,1,0,0,0,0,0,0,0,0,3144,0,17,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,22,195,4,0,0,158,0,248,0,0,0,95,8,0,0,0,0,0,0,4,0,0,67,1,0,0,0,2,0,0,0,0,1,117,22,0,0,0,0,15,0,28,15,684,0,0,129,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,15,0,0,0,0,1,44,124,0,16,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,3,284,26,2 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 +4,0,0,2,0,11,3,0,4,0,2,0,0,0,2,0,9,0,6,1,0,0,0,2,0,0,0,0,0,0,17,0,0,0,3,0,11,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,1,0,0,79,11,43,0,1,0,0,0,0,0,2,0,0,0,0,0,2,2,39,0,0,3,0,0,0,0,0,7,0,0,0,0,2,0,7,0,0,0,0,56,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,34,0,0,0,0,3,29,27,64,0,0,0,0,1,0,0,0,0,0,0,0,0,154,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,42,2,0,0,50,0,69,0,0,0,17,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,3,0,0,0,0,0,93,4,0,0,0,0,0,0,0,0,29,0,0,16,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,16,0,0,0,0,1,14,7,0,17,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,3,2 +7,0,0,3,0,29,5,0,11,0,2,0,0,2,2,0,23,0,6,2,0,0,0,6,0,8,6,0,2,0,3,0,0,0,5,0,29,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,3,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,641,29,47,0,3,0,0,0,0,0,3,0,0,0,0,0,7,12,148,0,0,5,0,0,0,0,0,72,5,0,0,0,2,0,58,0,0,0,0,454,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,91,0,56,0,0,0,4,10,182,20,94,0,0,0,0,1,0,3,0,0,0,0,0,0,201,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,99,3,0,0,112,0,206,0,0,0,42,4,0,0,0,0,0,0,0,0,0,51,0,0,0,0,8,0,0,0,0,1,111,25,0,0,0,0,0,0,0,0,682,0,0,2,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,3,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,2,0,0,0,0,1,34,69,0,10,9,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,27,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +2,0,0,2,0,17,2,0,16,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,6,0,0,0,3,0,17,6,0,0,9,0,0,0,1,0,0,8,0,0,0,0,5,106,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3674,17,96,0,9,0,0,0,0,0,37,0,0,0,0,0,1,11,703,0,0,3,0,0,0,0,0,22,0,15,0,0,2,0,20,0,0,0,0,287,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,512,0,119,0,0,0,10,5,39,19,518,0,0,0,0,1,0,0,0,0,0,0,0,0,1032,0,1,0,0,0,0,0,0,0,0,0,0,8,0,6,0,0,0,0,0,0,8,3,143,2,0,0,264,0,380,0,0,0,182,10,0,0,0,0,0,0,2,0,0,43,1,0,0,0,2,0,0,0,0,1,122,128,0,0,0,0,0,0,0,0,195,0,0,808,0,0,1,0,0,0,0,0,18,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,13,0,0,0,4,1,20,532,0,9,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,478,44,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,8,19,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,14,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,4,2 +11,0,0,6,0,48,14,0,54,2,12,0,0,7,10,0,773,0,6,2,0,0,0,7,0,11,0,0,8,0,12,0,0,0,7,898,48,6,0,0,58,0,0,0,1,0,0,4,0,0,0,0,13,262,0,0,0,0,0,1,0,0,0,0,0,6,0,0,8639,48,894,0,18,0,0,0,0,0,30,0,0,0,0,0,8,45,1646,0,0,7,0,0,0,0,0,238,25,7,0,0,2,0,857,0,3,28,0,1788,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,577,0,83,0,0,0,26,11,435,601,548,0,0,0,0,1,0,3,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,108,19,256,6,0,0,287,0,390,0,0,0,103,12,0,0,0,0,0,0,0,0,0,876,1,0,0,0,9,0,0,0,0,2,139,26,0,0,33,0,0,0,0,0,2783,1,0,148,10,0,1,1,0,0,0,0,6,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,10,14,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,35,0,0,0,12,1,55,164,0,19,12,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,756,68,2 +10,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,169,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,208,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,65,3,0,0,42,0,150,0,0,0,6,3,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,171,2 +11,0,0,3,0,12,98,0,115,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,215,0,0,0,1,0,0,0,0,0,0,0,4,48,0,0,0,0,0,1,0,0,0,0,0,3,0,0,324,12,239,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,25,0,0,3,0,0,1,111,0,830,30,0,0,0,2,0,554,0,0,0,0,209,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,37,0,0,0,8,11,29,753,49,0,0,0,0,1,0,0,0,0,0,0,0,0,534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,50,3,0,0,151,0,138,0,0,0,118,3,0,0,0,0,0,0,0,0,0,240,0,0,0,0,2,0,0,0,0,5,96,226,0,0,98,0,0,0,0,0,24,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,243,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,5,2 +3,0,0,5,2,57,17,8,119,6,28,0,0,2,11,1,968,0,6,9,0,2,1,19,0,11,3,0,5,0,2,0,0,1,18,3449,59,6,70,0,150,0,0,0,1,0,0,5,0,0,0,0,2,393,0,0,0,0,0,1,0,0,0,0,0,23,0,0,52264,57,1495,0,3,0,0,0,0,0,48,6,0,0,0,0,22,38,8676,0,8,18,1,0,1,63,0,625,70,9,0,0,2,2,1200,0,9,0,0,2313,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,12,12,12,0,0,0,7553,0,232,0,0,0,2,8,372,886,7644,0,0,0,0,1,0,4,0,0,0,0,0,0,1652,0,98,0,0,0,0,0,0,0,0,0,0,5,1,5,0,0,0,0,1,0,44,19,385,7,0,0,415,0,476,0,0,0,210,33,0,0,0,0,0,0,4,0,0,1152,1,0,0,0,31,0,0,0,0,1,151,203,0,0,180,0,0,0,0,0,4490,1,0,888,16,0,1,2,0,0,0,0,9,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,41,41,0,0,11,0,0,0,0,0,16,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,7,0,0,0,0,51,77,225,0,7,14,0,0,0,0,0,398,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,1014,114,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,205,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,48,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,144,0,0,0,0,3,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,42,0,0,0,0,3,30,238,74,0,0,0,0,1,0,0,0,0,0,0,0,0,179,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,83,3,0,0,111,0,151,0,0,0,46,1,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,10,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,39,0,0,0,0,0,1,0,0,0,0,0,3,0,0,227,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,150,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,68,0,50,0,0,0,32,19,33,18,83,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,23,0,17,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,19,2 +6,0,0,2,0,13,2,0,28,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,2,121,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2609,13,106,0,4,0,0,0,0,0,27,0,0,0,0,0,1,9,324,0,0,3,0,0,0,0,0,18,0,7,0,0,2,0,61,0,0,0,0,349,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,256,0,102,0,0,0,4,9,29,17,259,0,0,0,0,1,0,0,0,0,0,0,0,0,594,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,10,3,147,2,0,0,280,0,325,0,0,0,211,17,0,0,0,0,0,0,10,0,0,66,1,0,0,0,2,0,0,0,0,1,114,159,0,0,0,0,0,0,0,0,698,0,0,290,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,548,0,10,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,319,45,2 +2,0,0,2,0,13,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,13,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,2,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,10055,13,45,0,3,0,0,0,0,0,10,0,0,0,0,0,1,4,1270,0,0,1,0,0,0,0,0,8,0,3,0,0,2,0,17,0,0,0,0,135,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,907,0,38,0,0,0,4,4,30,15,908,0,0,0,0,1,0,0,0,0,0,0,0,0,3980,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,92,2,0,0,113,0,146,0,0,0,36,1,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,97,25,0,0,0,0,0,0,0,0,880,0,0,3460,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,4,0,0,0,2,1,14,92,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1303,17,2 +28,0,0,3,0,12,9,0,72,0,22,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,12,6,0,0,127,0,0,0,0,0,0,0,0,0,0,0,2,36,0,0,0,0,0,1,0,0,0,0,0,14,0,0,243,12,133,0,3,0,0,0,0,0,8,0,0,0,0,0,1,1,64,0,0,1,0,0,1,68,0,564,40,0,0,0,2,0,330,0,0,0,0,144,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,63,0,39,0,0,0,4,4,32,474,72,0,0,0,0,0,0,0,0,0,0,0,0,0,299,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,62,3,0,0,57,0,158,0,0,0,18,3,0,0,0,0,0,0,0,0,0,123,0,0,0,0,2,0,0,0,0,1,92,163,0,0,85,0,0,0,0,0,607,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,4,0,0,0,2,1,13,1,0,3,0,0,0,0,0,0,180,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,80,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,76,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,88,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,4,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,46,2,0,0,44,0,133,0,0,0,5,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,596,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,24,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13854,0,0,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6118,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,70890,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,58,0,0,0,0,3,56,61,27749,0,0,0,0,1,0,0,0,0,0,0,0,0,89404,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,437,3,0,0,91,0,223,0,0,0,25,320,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,615,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,29012,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,97,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2550,10,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1015,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,470,0,0,0,0,32,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,390,0,123,0,0,0,0,3,55,19,432,0,0,0,0,1,0,0,0,0,0,0,0,0,1139,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,162,3,0,0,107,0,275,0,0,0,39,4,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,711,0,0,878,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,417,32,2 +18,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,35,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5157,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,36559,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,55,0,0,0,14,17,54,37,32372,0,0,0,0,1,0,0,0,0,0,0,0,0,96823,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,326,3,0,0,75,0,227,0,0,0,12,241,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,612,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,27,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,29351,2 +11,0,0,2,0,25,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,25,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,913,25,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,458,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,268,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,43,0,0,0,0,3,44,10,52,0,0,0,0,1,0,0,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,117,2,0,0,122,0,145,0,0,0,61,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,107,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,0,0,0,0,0,1,39,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,241,28,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13934,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6256,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,71629,0,0,0,0,3,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,2,0,0,0,0,0,0,69,0,60,0,0,0,0,3,56,61,27909,0,0,0,0,1,0,0,0,0,0,0,0,0,92665,0,2,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,449,3,0,0,91,0,195,0,0,0,25,327,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,31105,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,170,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,200,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,64,3,0,0,42,0,151,0,0,0,6,12,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,646,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,171,2 +8,0,0,6,0,35,8,0,40,2,8,0,0,2,7,0,442,0,6,3,0,0,0,6,0,10,0,0,3,0,1,0,0,0,4,898,35,12,0,0,53,0,0,0,1,0,0,7,0,0,0,0,1,181,0,0,0,0,0,1,0,0,0,0,0,10,0,0,20374,35,549,0,1,0,0,0,0,0,37,0,0,0,0,0,8,23,3594,0,0,4,0,0,1,13,0,207,20,9,0,0,2,0,518,0,3,0,0,1100,0,0,0,0,2,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,12,12,12,0,0,0,2992,0,138,0,0,0,0,3,228,407,2985,0,0,0,0,1,0,3,0,0,0,0,0,0,763,0,1,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,34,13,195,6,0,0,249,0,355,0,0,0,108,9,0,0,0,0,0,0,7,0,0,513,1,0,0,0,9,0,0,0,0,1,119,70,0,0,29,0,2,0,4,2,1864,1,0,322,6,0,1,1,0,0,0,0,15,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,39,204,0,2,12,0,0,0,0,0,101,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,7,696,53,2 +12,0,0,3,0,11,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,11,6,0,0,75,0,3,0,1,0,0,3,0,0,0,0,0,61,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1247,11,71,0,24,0,0,0,0,0,12,0,0,0,0,0,1,8,583,0,0,0,0,0,0,0,0,35,0,3,0,0,2,0,37,0,0,0,0,157,0,0,0,0,35,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,128,0,119,0,0,0,0,3,59,17,168,0,0,0,0,1,0,0,0,0,0,0,0,0,417,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,79,3,0,0,88,0,177,0,0,0,18,2,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,93,11,0,0,0,0,4,0,0,0,860,0,0,760,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,2,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,23,0,0,0,0,1,11,103,0,24,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,529,13,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,58,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9766,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1282,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,886,0,47,0,0,0,0,3,27,8,903,0,0,0,0,1,0,0,0,0,0,0,0,0,3932,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,84,2,0,0,109,0,110,0,0,0,46,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,845,0,0,3332,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1322,23,2 +0,0,0,2,0,8,2,0,21,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,8,43,0,1,0,0,0,0,0,3,0,0,0,0,1,1,4,24,0,0,0,0,0,0,0,0,6,0,1,0,0,2,0,20,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,22,0,0,0,0,3,22,4,40,0,0,0,0,1,0,0,0,0,0,0,0,0,96,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,106,0,87,0,0,0,49,3,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,91,34,0,0,0,0,0,0,0,0,27,0,0,8,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,132,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,6,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +17,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,35,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5192,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,36946,0,0,0,0,6,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,54,0,0,0,14,17,52,37,33194,0,0,0,0,1,0,0,0,0,0,0,0,0,98784,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,323,3,0,0,75,0,215,0,0,0,12,237,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,614,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,25,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,30075,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,163,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,41,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,19,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +17,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14168,0,0,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5649,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,68888,0,0,0,0,7,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,9,54,69,28397,0,0,0,0,1,0,0,0,0,0,0,0,0,90841,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,371,3,0,0,78,0,227,0,0,0,12,281,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,616,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,2,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,29356,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +22,0,0,3,0,22,2,0,4,19,3,0,0,0,22,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,1,0,0,0,2,0,22,6,0,0,13784,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,22,0,0,6029,22,46,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,12,0,1,0,0,2,0,51,0,20,0,0,70709,0,0,0,0,6,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,0,3,52,61,27585,0,0,0,0,1,0,0,0,0,0,0,0,0,93555,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,23,384,3,0,0,79,0,206,0,0,0,13,286,0,0,0,0,0,0,0,0,0,48,1,0,0,0,3,0,0,0,0,1,104,6,0,0,0,0,0,0,0,0,615,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,24,1,1,1,0,4,0,0,0,0,1,24,2,0,5,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,32484,2 +11,0,0,13,2,50,56,2,81,23,11,0,0,6,31,0,174,0,10,2,0,0,0,9,0,20,0,0,18,0,1,0,0,2,8,207,52,102,0,0,117,0,3,0,1,0,0,3,0,0,0,0,10,337,0,0,0,0,0,1,0,0,0,4,0,28,0,0,68159,50,319,0,24,0,0,0,0,0,28,0,0,0,0,0,10,41,12429,0,2,8,2,0,2,0,0,323,20,6,0,0,6,2,210,0,25,9,0,1842,0,0,0,0,8,2,0,0,0,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,9,1,0,0,0,0,0,0,0,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6,12,12,12,0,0,0,8192,0,80,0,0,0,12,14,403,386,8188,0,0,0,0,1,0,3,0,0,0,0,0,0,19260,0,0,0,0,0,0,0,0,0,1,0,0,3,1,0,0,0,0,0,1,0,293,63,560,16,0,0,618,0,902,0,3,0,209,25,0,0,0,0,0,0,0,0,0,369,1,0,0,0,11,0,0,0,0,10,162,70,0,0,19,0,0,0,0,0,5414,1,0,16015,9,0,1,3,1,0,0,0,3,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,2,0,0,0,9,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,54,1,1,1,0,23,0,0,0,0,17,60,319,0,25,14,0,1,0,0,0,142,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,27,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8132,71,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,92,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2585,10,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1030,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,503,0,0,0,0,31,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,395,0,123,0,0,0,0,3,56,19,437,0,0,0,0,1,0,0,0,0,0,0,0,0,1149,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,184,3,0,0,107,0,252,0,0,0,39,3,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,724,0,0,886,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,432,18,2 +2,0,0,3,0,15,8,0,22,0,7,0,0,0,2,0,16,0,7,1,0,0,0,1,0,0,0,0,76,0,2,0,1,0,3,0,15,6,0,0,29,0,0,0,1,0,0,1,0,0,0,0,0,59,2,0,0,0,0,1,0,0,0,0,0,3,0,0,32879,15,132,0,78,0,0,0,0,0,5,0,0,0,0,0,1,3,230,0,0,3,0,0,1,14,0,204,20,1,0,0,2,0,149,0,0,0,0,6716,0,0,0,0,28641,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,171,0,40,0,0,0,0,3,34,57946,189,0,0,0,0,1,0,0,0,0,0,0,0,0,36746,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,883,3,0,0,100,0,237,0,0,0,35,449,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,1,97,38,0,0,47,0,0,0,0,0,146,0,0,297,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,77,0,0,0,0,1,18,56,0,78,0,0,0,0,0,0,54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,290,2 +2,0,0,3,0,46,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,7,0,0,0,0,1,0,0,0,37,0,46,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,7,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,290,46,94,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,37,0,0,1,47,0,386,35,0,0,0,2,0,234,0,0,0,0,541,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,67,0,0,0,7,10,61,355,60,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,149,3,0,0,150,0,201,0,0,0,117,2,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,9,128,112,0,0,84,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,0,0,0,0,0,1,83,37,0,8,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,5,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,8,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +7,0,0,3,0,29,5,0,11,0,2,0,0,2,2,0,23,0,6,2,0,0,0,6,0,8,6,0,2,0,3,0,0,0,5,0,29,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,3,77,0,0,0,0,0,1,0,0,0,0,0,2,0,0,667,29,47,0,3,0,0,0,0,0,3,0,0,0,0,0,7,12,151,0,0,5,0,0,0,0,0,72,5,0,0,0,2,0,58,0,0,0,0,580,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,91,0,56,0,0,0,4,10,182,20,94,0,0,0,0,1,0,3,0,0,0,0,0,0,198,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,96,3,0,0,112,0,204,0,0,0,42,4,0,0,0,0,0,0,0,0,0,51,0,0,0,0,8,0,0,0,0,1,111,25,0,0,0,0,0,0,0,0,685,0,0,2,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,3,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,2,0,0,0,0,1,34,69,0,10,9,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,28,2 +6,0,0,2,0,13,2,0,20,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,2,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2496,13,93,0,3,0,0,0,0,0,24,0,0,0,0,0,1,9,241,0,0,3,0,0,0,0,0,14,0,10,0,0,2,0,52,0,0,0,0,270,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,202,0,78,0,0,0,4,9,29,12,204,0,0,0,0,1,0,0,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,10,3,115,2,0,0,255,0,420,0,0,0,188,15,0,0,0,0,0,0,2,0,0,58,1,0,0,0,2,0,0,0,0,1,102,154,0,0,0,0,0,0,0,0,676,0,0,263,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,449,0,9,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,231,37,2 +17,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5219,21,41,0,11,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,36302,0,0,0,0,6,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,53,0,0,0,14,17,50,37,33266,0,0,0,0,1,0,0,0,0,0,0,0,0,98795,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,329,3,0,0,75,0,267,0,0,0,12,242,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,614,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,23,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,30975,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,14,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,4,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,48,11,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,23,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,30,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,38,0,0,0,8,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,100,20,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,8,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,39,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,243,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,53,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,35,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,18,2 +9,0,0,3,0,14,2,0,14,0,3,0,0,0,3,0,16,0,6,2,0,0,0,1,0,0,0,0,0,0,1,1,2,0,2,0,14,12,0,0,10,0,0,0,1,0,0,1,0,0,0,0,1,53,0,0,0,0,0,1,0,0,0,0,0,3,0,0,427,14,57,0,1,0,0,0,0,0,13,0,0,0,0,0,2,4,75,0,0,2,0,0,0,0,0,8,0,1,0,0,2,0,15,0,1,0,0,170,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,67,0,50,0,0,0,2,3,33,63,112,0,0,0,0,1,0,0,0,0,5,0,0,0,446,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,126,3,0,0,124,0,167,0,0,0,55,9,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,99,27,0,0,0,0,3,0,6,3,44,0,0,41,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,36,0,0,0,0,1,16,72,0,2,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,31,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,98,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2527,10,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1018,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,549,0,0,0,0,32,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,389,0,128,0,0,0,0,3,56,19,430,0,0,0,0,1,0,0,0,0,0,0,0,0,1130,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,159,3,0,0,107,0,265,0,0,0,39,7,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,721,0,0,870,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,434,34,2 +11,0,0,3,0,10,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,3,0,0,0,0,0,58,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1290,10,71,0,24,0,0,0,0,0,12,0,0,0,0,0,1,8,625,0,0,0,0,0,0,0,0,35,0,3,0,0,2,0,37,0,0,0,0,391,0,0,0,0,36,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,128,0,122,0,0,0,0,3,55,17,168,0,0,0,0,1,0,0,0,0,0,0,0,0,407,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,75,3,0,0,85,0,172,0,0,0,18,1,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,92,11,0,0,0,0,4,0,0,0,872,0,0,760,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,23,0,0,0,0,1,10,103,0,24,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,547,10,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,130,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,53,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,169,0,0,0,18,8,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,31,0,17,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,18,2 +0,0,0,5,0,22,6,0,28,3,12,0,0,0,7,0,21,0,7,3,0,0,0,2,0,1,3,0,3,0,3,0,0,0,8,0,22,6,0,0,57,0,0,0,1,0,0,2,0,0,0,0,3,87,0,0,0,0,0,1,0,0,0,0,0,11,0,0,648,22,83,0,7,0,0,0,0,0,8,0,0,0,0,0,4,7,92,0,0,8,0,0,2,20,0,195,35,2,0,0,2,0,130,0,5,0,0,358,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,97,0,76,0,0,0,6,10,50,253,110,0,0,0,0,1,0,0,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,1,0,8,8,123,5,0,0,158,0,239,0,0,0,87,8,0,0,0,0,0,0,0,0,0,81,1,0,0,0,5,0,0,0,0,2,104,87,0,0,81,0,0,0,0,0,84,0,0,101,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,12,0,0,0,0,1,30,146,0,10,0,0,0,0,0,0,68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,150,32,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,12,0,0,0,0,3,21,3,21,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,22,0,0,0,2,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,2 +9,0,0,3,0,11,7,0,47,0,2,0,0,0,4,12,15,0,7,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,54,0,0,0,1,0,0,11,0,0,0,0,0,156,0,0,0,0,0,1,0,0,0,0,0,4,0,0,3548,11,140,0,1,0,0,0,0,0,52,0,0,0,0,0,2,14,772,0,0,0,0,0,0,0,0,29,0,18,0,0,2,0,51,0,0,0,0,206,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,1,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,538,0,147,0,0,0,0,3,30,45,547,0,0,0,0,1,0,0,0,0,0,0,0,0,1332,0,0,0,0,0,0,0,0,0,0,0,0,11,0,4,0,0,0,0,0,0,10,3,131,3,0,0,158,0,255,0,0,0,88,14,0,0,0,0,0,0,14,0,0,94,1,0,0,0,3,0,0,0,0,0,94,54,0,0,0,0,0,0,0,0,819,0,0,779,0,0,1,0,0,0,0,0,28,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,414,0,1,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,676,145,2 +11,0,0,6,0,65,24,0,36,3,5,0,0,2,9,0,777,0,6,3,0,0,0,8,0,11,0,0,8,0,3,0,0,0,27,1098,65,6,0,0,68,0,0,0,1,0,0,8,0,0,0,0,3,247,0,0,0,0,0,1,0,0,0,4,0,9,0,0,36869,65,937,0,7,0,0,0,0,0,59,0,0,0,0,0,10,33,6361,0,0,27,0,0,0,0,0,119,5,14,0,0,2,0,827,0,6,0,0,2586,0,0,0,0,22,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,16,1,0,42,12,12,12,0,0,0,4970,0,178,0,0,0,4,7,332,630,4978,0,0,0,0,1,0,4,0,0,0,0,0,0,1087,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,32,19,315,6,0,0,432,0,416,0,0,0,269,16,0,0,0,0,0,0,0,0,0,859,1,0,0,0,11,0,0,0,0,3,148,109,0,0,1,0,0,0,0,0,2475,1,0,471,20,0,1,1,0,0,0,0,16,0,0,0,6,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,20,5,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,70,1,1,1,0,8,0,0,0,0,1,92,526,0,8,14,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1038,78,2 +28,0,0,3,0,11,9,0,66,0,20,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,11,6,0,0,117,0,0,0,0,0,0,0,0,0,0,0,2,45,0,0,0,0,0,1,0,0,0,0,0,13,0,0,245,11,125,0,3,0,0,0,0,0,8,0,0,0,0,0,1,1,63,0,0,1,0,0,1,62,0,518,35,0,0,0,2,0,303,0,0,0,0,369,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,38,0,0,0,4,4,28,438,71,0,0,0,0,0,0,0,0,0,0,0,0,0,304,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,57,3,0,0,54,0,170,0,0,0,18,5,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2,0,0,0,0,1,91,149,0,0,74,0,0,0,0,0,606,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,12,1,0,3,0,0,0,0,0,0,167,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,77,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,224,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,285,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,183,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,39,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,18,2 +1,0,0,0,0,10,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,51,10,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,31,0,0,0,0,3,26,4,40,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,35,0,0,0,38,0,28,0,0,0,5,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,92,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,1,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,1,2 +3,0,0,5,0,36,6,0,37,0,5,0,0,6,5,0,555,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,762,36,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,1,171,0,0,0,0,0,1,0,0,0,0,0,2,0,0,6567,36,612,0,3,0,0,0,0,0,11,0,0,0,0,0,8,24,1320,0,0,1,0,0,0,0,0,190,20,2,0,0,2,0,594,0,0,2,0,1300,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,12,12,12,0,0,0,441,0,56,0,0,0,1,4,274,351,439,0,0,0,0,1,0,4,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,24,179,5,0,0,184,0,260,0,0,0,41,10,0,0,0,0,0,0,0,0,0,620,1,0,0,0,9,0,0,0,0,0,119,11,0,0,8,0,0,0,0,0,2224,1,0,64,6,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,5,0,0,0,0,1,37,20,0,4,12,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,576,28,2 +2,0,0,2,0,12,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,12,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,2,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,9788,12,45,0,3,0,0,0,0,0,10,0,0,0,0,0,1,4,1228,0,0,1,0,0,0,0,0,8,0,3,0,0,2,0,17,0,0,0,0,132,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,883,0,37,0,0,0,4,4,26,15,884,0,0,0,0,1,0,0,0,0,0,0,0,0,3713,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,89,2,0,0,110,0,145,0,0,0,36,1,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,96,25,0,0,0,0,0,0,0,0,854,0,0,3370,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,13,92,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1256,17,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,56,0,1,0,0,0,1,0,0,0,0,0,1,0,0,8254,12,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1057,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,758,0,51,0,0,0,0,3,31,8,775,0,0,0,0,1,0,0,0,0,0,0,0,0,3207,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,90,2,0,0,112,0,111,0,0,0,46,9,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,27,0,0,0,0,0,0,0,0,716,0,0,2816,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1104,25,2 +17,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14346,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5465,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,68284,0,0,0,0,9,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,9,54,69,28753,0,0,0,0,1,0,0,0,0,0,0,0,0,93583,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,378,3,0,0,78,0,228,0,0,0,12,270,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,614,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,31658,2 +8,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,33,0,0,0,2,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,11,0,0,68,11,125,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,34,0,0,2,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,68,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,27,378,58,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,125,0,0,0,22,2,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,603,0,0,31,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,33,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,32,0,0,0,0,1,13,6,0,33,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,3,2 +57,0,0,6,0,47,8,0,52,12,12,0,0,2,17,0,506,0,7,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,14,898,47,24,0,0,97,0,0,0,1,0,0,6,0,0,0,0,1,216,0,0,0,0,0,1,0,0,0,0,0,22,0,0,22317,47,634,0,1,0,0,0,0,0,32,0,0,0,0,0,8,22,3550,0,0,14,0,0,1,25,0,297,30,8,0,0,2,0,652,0,13,0,0,2413,0,0,0,0,12,14,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,10,2,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,2922,0,135,0,0,0,0,3,254,3594,2971,0,0,0,0,1,0,3,0,0,0,0,0,0,2858,0,13,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,34,23,298,6,0,0,292,0,414,0,0,0,150,12,0,0,0,0,0,0,4,0,0,604,1,0,0,0,9,0,0,0,0,1,135,99,0,0,51,0,12,0,23,12,2017,1,0,215,6,0,1,1,0,0,0,0,13,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,0,0,0,0,0,1,61,228,0,2,12,0,0,0,0,0,153,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,6,674,59,2 +18,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14712,0,0,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5733,26,40,0,4,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,72733,0,0,0,0,3,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,60,0,0,0,0,3,60,61,29465,0,0,0,0,1,0,0,0,0,0,0,0,0,92429,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,433,3,0,0,91,0,227,0,0,0,25,324,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,613,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,32,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,31574,2 +2,0,0,2,0,8,2,0,5,0,2,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,3,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,1,0,0,35,8,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,45,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,16,0,20,0,0,0,0,3,21,9,31,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,31,2,0,0,54,0,83,0,0,0,21,5,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,88,21,0,0,0,0,0,0,0,0,596,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,7,2 +1,0,0,7,0,42,10,0,136,0,6,0,0,6,4,0,1480,0,6,1,0,0,0,9,0,11,249,0,138,0,85,0,0,0,7,1100,42,6,0,0,45,0,1,0,1,0,0,1,0,0,0,0,85,243,1,1,0,0,0,1,0,0,0,0,0,4,0,0,342193,42,2103,0,218,0,0,0,0,0,16,0,0,0,0,0,9,28,56979,0,0,7,0,0,0,0,0,666,20,3,0,0,2,0,2813,0,0,6,0,4214,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,12,12,12,0,0,0,55847,0,66,0,0,0,169,410,273,875,55844,0,0,0,0,1,0,3,0,0,0,0,0,0,799,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,84,16,435,7,0,0,218,0,308,0,0,0,71,419,0,0,0,0,0,0,0,0,0,1648,1,0,0,0,10,0,0,0,0,84,123,6,0,0,13,0,0,0,0,0,4623,1,0,129,11,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,11,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,226,0,0,0,0,1,49,35,0,469,14,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,840,69,2 +11,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,47,0,0,0,0,0,1,0,0,0,0,0,3,0,0,305,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,25,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,193,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,37,0,0,0,8,11,29,400,139,0,0,0,0,1,0,0,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,51,3,0,0,62,0,139,0,0,0,29,2,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,24,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,8,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,170,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,193,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,34,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,64,3,0,0,42,0,150,0,0,0,6,4,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,171,2 +17,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,34,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5158,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,38647,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0,68,0,53,0,0,0,14,17,50,37,35292,0,0,0,0,1,0,0,0,0,0,0,0,0,99606,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,325,3,0,0,75,0,215,0,0,0,12,240,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,613,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,23,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,30816,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,71,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,971,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,46,2,0,0,44,0,134,0,0,0,5,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,24,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,954,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,497,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,289,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,37,0,45,0,0,0,0,3,40,10,53,0,0,0,0,1,0,0,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,115,2,0,0,119,0,148,0,0,0,61,3,0,0,0,0,0,1,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,244,28,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,39,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,131,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,53,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,29,0,17,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,18,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +0,0,0,5,0,38,74,0,65,15,73,0,0,7,5,0,1090,0,6,1,0,0,0,8,0,10,0,0,57,0,1,0,0,0,1,6729,38,6,0,0,45,0,2,0,1,0,0,2,0,0,0,0,1,458,0,0,0,0,0,1,0,0,0,0,0,2,0,0,107136,38,1545,0,55,0,0,0,0,0,140,0,0,0,0,0,8,330,17253,0,0,1,0,0,0,0,0,723,25,3,0,0,2,0,1280,0,0,250,0,12216,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,12,12,12,0,0,0,4130,0,47,0,0,0,36,39,1298,3685,4074,0,0,0,0,1,0,3,0,0,0,0,0,0,544,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,108,58,336,5,0,0,435,0,383,0,0,0,271,18,0,0,0,0,0,0,0,0,0,1320,1,0,0,0,9,0,0,0,0,1,134,74,0,0,436,0,0,0,0,0,9482,1,0,1071,65,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,65,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,162,0,0,0,0,1,39,431,0,56,12,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,19,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6393,3996,2 +0,0,0,3,0,11,2,0,16,0,3,0,0,0,3,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,34,0,0,0,1,0,0,3,0,0,0,0,0,62,0,0,0,0,0,1,0,0,0,0,0,3,0,0,442,11,47,0,1,0,0,0,0,0,13,0,0,0,0,0,2,6,50,0,0,2,0,0,0,0,0,10,0,6,0,0,2,0,17,0,1,0,0,133,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,61,0,32,0,0,0,0,3,28,5,65,0,0,0,0,1,0,0,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,83,3,0,0,117,0,131,0,0,0,47,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,93,34,0,0,0,0,0,0,0,0,37,0,0,84,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,188,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,23,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1014,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,46,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,70,0,0,0,0,0,7,43,198,0,0,0,0,0,0,0,0,0,0,0,0,0,481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,7,2,0,0,53,0,91,0,0,0,47,1,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,44,0,0,0,0,0,0,0,0,296,0,0,272,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,114,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,303,3,2 +10,0,0,8,0,68,99,0,213,5,39,0,0,6,29,0,1440,0,6,1,0,0,0,11,0,12,12,0,34,0,10,0,0,0,21,11370,68,26,0,0,181,0,4,0,1,0,0,5,1,0,0,0,10,604,0,0,0,0,0,1,0,0,0,6,0,31,0,0,62012,68,1934,0,41,0,0,0,0,0,135,0,0,0,0,0,11,115,7152,0,0,21,0,0,1,23,0,589,60,13,0,0,2,0,1899,0,1,96,0,18755,0,0,0,0,6,0,4,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,10,0,0,0,0,0,0,29,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,70,12,12,12,0,0,0,3444,0,509,0,0,0,32,36,593,6219,3406,0,0,0,0,1,0,6,0,0,0,0,0,0,2438,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,86,22,1852,8,0,0,692,0,991,0,0,0,429,467,0,0,0,0,0,0,0,0,0,1832,1,0,5,0,12,0,0,0,0,3,183,256,0,0,267,0,0,0,1,0,5961,1,0,1522,29,0,1,2,1,0,0,0,15,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,2,0,0,0,29,370,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,75,1,1,1,0,89,0,0,0,4,1,89,6174,0,54,14,0,1,0,0,0,128,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2554,786,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,55,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9958,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1312,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,901,0,48,0,0,0,0,3,27,8,918,0,0,0,0,1,0,0,0,0,0,0,0,0,3984,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,85,2,0,0,109,0,108,0,0,0,46,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,858,0,0,3394,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1350,21,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +12,0,0,3,0,11,4,0,29,0,8,0,0,0,2,0,62,0,7,1,0,0,0,1,0,0,30,0,12,0,13,0,0,0,0,0,11,25,0,0,27,0,0,0,0,0,0,0,0,0,0,0,12,49,0,0,0,0,0,1,0,0,0,0,0,4,0,0,367,11,173,0,25,0,0,0,0,0,9,0,0,0,0,0,1,1,40,0,0,0,0,0,1,15,0,182,20,0,0,0,2,0,285,0,0,0,0,293,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,40,0,25,0,0,0,24,53,28,133,49,0,0,0,0,0,0,0,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,3,100,3,0,0,52,0,216,0,0,0,12,11,0,0,0,0,0,0,0,0,0,112,0,0,0,0,2,0,0,0,0,11,93,31,0,0,46,0,0,0,0,0,778,0,0,10,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,13,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,26,0,0,0,2,1,11,0,0,55,0,0,0,0,0,0,53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,25,2 +11,0,0,2,0,25,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,25,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,914,25,33,0,0,0,0,0,0,0,6,0,0,0,0,0,1,4,464,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,298,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,42,0,0,0,0,3,44,10,52,0,0,0,0,1,0,0,0,0,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,113,2,0,0,122,0,146,0,0,0,61,1,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,107,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,0,0,0,0,0,1,39,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,240,27,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,170,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,183,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,68,3,0,0,42,0,150,0,0,0,6,5,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,171,2 +18,0,0,3,0,22,2,0,4,7,3,0,0,0,10,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,8,0,1,0,2,0,22,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,37,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5167,22,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,61,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,37422,0,0,0,0,3,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,54,0,0,0,14,17,54,37,33658,0,0,0,0,1,0,0,0,0,0,0,0,0,98543,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,331,3,0,0,78,0,230,0,0,0,12,244,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,104,5,0,0,0,0,0,0,0,0,613,0,0,19,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,24,1,1,1,0,18,0,0,0,14,1,24,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,30052,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +9,0,0,7,0,183,121,0,231,11,116,0,0,7,8,0,4193,0,6,1,0,0,0,8,0,10,414,0,32,0,139,0,0,0,53,9570,183,306,0,0,159,0,1,0,1,0,0,1,0,0,0,0,139,2406,0,0,0,0,0,1,0,0,0,0,0,7,0,0,110164,183,5453,0,168,0,0,0,0,0,229,0,0,0,0,0,8,383,21183,0,0,53,0,0,0,0,0,1091,25,1,0,0,2,0,6224,0,3,691,0,16808,0,0,0,0,40,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,427,12,12,12,0,0,0,7739,0,194,0,0,0,296,481,2430,7448,7789,0,0,0,0,1,0,3,0,0,0,0,0,0,4577,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,110,46,1282,7,0,0,1221,0,746,10,0,0,739,53,0,0,0,0,0,0,0,0,0,4682,1,0,0,0,9,0,0,0,0,2,395,124,0,0,846,0,0,0,0,0,16246,1,0,2146,114,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,114,499,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,185,1,1,1,0,227,0,0,0,0,1,236,377,0,583,12,0,2,0,0,0,562,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,15,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5548,688,2 +2,0,0,5,0,38,22,0,113,3,34,0,0,2,6,0,549,0,6,3,0,0,0,12,0,11,0,0,4,0,1,0,0,0,6,916,38,6,0,0,171,0,2,0,1,0,0,4,0,0,0,0,1,193,0,0,0,0,0,1,0,0,0,0,0,21,0,0,25686,38,754,0,1,0,0,0,0,0,20,0,0,0,0,0,14,30,4393,0,0,6,0,0,6,83,0,796,95,3,0,0,2,0,967,0,4,0,0,1858,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,3693,0,78,0,0,0,0,3,261,893,3704,0,0,0,0,1,0,4,0,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,34,14,205,5,0,0,243,0,296,0,0,0,101,4,0,0,0,0,0,0,0,0,0,732,1,0,0,0,15,0,0,0,0,0,121,202,0,0,180,0,0,0,0,0,2138,1,0,43,11,0,1,1,0,0,0,0,9,0,4,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,11,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,0,0,0,0,0,1,44,75,0,2,14,0,0,0,0,0,231,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,521,2 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,28,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,9,2 +6,0,0,2,0,14,2,0,28,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,2,121,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2280,14,105,0,3,0,0,0,0,0,27,0,0,0,0,0,1,9,336,0,0,3,0,0,0,0,0,17,0,7,0,0,2,0,60,0,0,0,0,295,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,265,0,101,0,0,0,4,9,33,17,268,0,0,0,0,1,0,0,0,0,0,0,0,0,588,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,10,3,143,2,0,0,283,0,338,0,0,0,211,15,0,0,0,0,0,0,10,0,0,66,1,0,0,0,2,0,0,0,0,1,115,159,0,0,0,0,0,0,0,0,704,0,0,311,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,548,0,9,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,327,45,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,933,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,487,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,273,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,110,2,0,0,119,0,145,0,0,0,61,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,239,26,2 +23,0,0,17,0,129,45,0,202,43,57,0,0,0,70,0,45,0,6,4,0,0,0,4,9,25,12,0,63,0,14,0,0,0,103,0,129,41,32,0,548,0,0,0,1,0,0,1,0,0,0,0,6,121,0,0,0,0,0,1,0,1,0,51,0,86,0,0,46348,129,549,0,97,0,0,0,0,0,10,0,0,0,0,0,7,10,8908,0,0,103,0,0,5,168,0,1524,150,3,0,0,2,0,1134,0,57,0,0,2589,0,0,0,0,28,2,0,0,0,0,0,1,0,0,1,15,0,0,0,0,0,0,0,2,0,6,0,6,0,0,0,0,0,0,0,15,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,67,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,34,0,0,0,0,0,0,5355,0,189,0,0,0,16,58,171,1244,5421,0,0,0,0,1,0,0,0,0,0,0,0,0,11655,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,70,534,21,0,0,517,0,769,0,0,0,394,56,0,0,0,0,0,0,0,0,0,425,1,0,0,0,17,0,0,0,0,33,217,410,0,0,374,0,3,0,29,10,2187,0,0,12134,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,3,0,0,0,0,0,27,7,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,131,1,1,1,0,146,0,0,0,0,1,232,218,0,114,0,0,0,0,0,0,567,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,53,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4075,230,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,935,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,485,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,290,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,41,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,109,2,0,0,119,0,145,0,0,0,61,1,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,360,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,26,2 +0,0,0,2,0,15,2,0,21,0,3,0,0,0,3,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,6,0,15,6,0,0,9,0,8,0,1,0,0,13,1,0,0,0,0,168,0,2,0,0,0,1,0,0,0,0,0,1,0,0,3562,15,150,0,1,0,0,0,1,0,65,0,0,0,2,0,1,23,908,0,0,6,0,0,0,0,0,32,0,20,1,0,2,0,22,0,0,0,0,493,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,418,0,206,0,0,0,0,3,36,41,423,0,0,0,0,1,0,0,0,0,0,0,0,0,1067,0,0,0,0,3,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,8,5,204,2,0,0,301,0,218,0,0,0,230,21,0,0,0,0,0,0,9,0,0,50,1,0,5,0,2,0,0,0,0,0,131,145,0,0,0,0,0,0,0,0,322,0,0,1113,0,0,1,0,1,0,0,0,33,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,21,365,0,1,0,0,2,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,753,77,2 +3,0,0,5,0,34,6,0,36,0,5,0,0,6,5,0,526,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,762,34,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,1,175,0,0,0,0,0,1,0,0,0,0,0,2,0,0,6593,34,583,0,3,0,0,0,0,0,11,0,0,0,0,0,8,24,1277,0,0,1,0,0,0,0,0,190,20,2,0,0,2,0,565,0,0,2,0,1316,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,464,0,55,0,0,0,1,4,260,351,464,0,0,0,0,1,0,4,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,21,170,5,0,0,180,0,259,0,0,0,41,2,0,0,0,0,0,0,0,0,0,590,1,0,0,0,9,0,0,0,0,0,117,11,0,0,8,0,0,0,0,0,2123,1,0,62,6,0,1,1,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,20,0,4,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,567,28,2 +3,0,0,5,0,34,6,0,36,0,5,0,0,6,5,0,497,0,6,2,0,0,0,7,0,11,0,0,5,0,1,0,0,0,1,762,34,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,1,175,0,0,0,0,0,1,0,0,0,0,0,2,0,0,7177,34,554,0,4,0,0,0,0,0,11,0,0,0,0,0,8,26,1436,0,0,1,0,0,0,0,0,192,20,2,0,0,2,0,536,0,0,2,0,1269,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,519,0,55,0,0,0,2,5,264,349,518,0,0,0,0,1,0,4,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,24,170,5,0,0,179,0,260,0,0,0,41,19,0,0,0,0,0,0,0,0,0,561,1,0,0,0,9,0,0,0,0,0,117,11,0,0,8,0,0,0,0,0,2119,1,0,60,6,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,9,0,0,0,0,1,35,20,0,5,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,29,2 +0,0,0,2,0,11,2,0,17,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,56,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9204,11,52,0,0,0,0,0,0,0,14,0,0,0,1,0,1,6,1200,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,16,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,837,0,48,0,0,0,0,3,27,8,854,0,0,0,0,1,0,0,0,0,0,0,0,0,3590,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,87,2,0,0,113,0,108,0,0,0,48,3,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,95,29,0,0,0,0,0,0,0,0,796,0,0,3137,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,102,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1239,21,2 +0,0,0,3,0,12,2,0,25,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,19,0,1,0,1,0,0,1,0,0,0,0,0,60,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1928,12,49,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,700,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,15,0,1,0,0,159,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,189,0,22,0,0,0,0,3,26,8,200,0,0,0,0,1,0,0,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,79,3,0,0,113,0,215,0,0,0,51,2,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,0,94,35,0,0,0,0,0,0,0,0,284,0,0,924,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,32,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,114,0,1,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,345,18,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,6,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,6,46,0,0,0,0,0,1,0,0,0,0,0,4,0,0,209,14,166,0,7,0,0,0,0,0,4,0,0,0,0,0,1,3,49,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,117,0,0,0,0,3,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,40,0,0,0,0,3,30,238,74,0,0,0,0,1,0,0,0,0,0,0,0,0,178,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,83,3,0,0,111,0,153,0,0,0,46,4,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,615,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,116,0,0,0,0,1,17,71,0,111,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,10,2 +2,0,0,3,0,12,2,0,11,4,3,0,0,0,7,0,21,0,6,1,0,0,0,1,0,0,3,0,2,0,2,0,1,0,2,0,12,6,0,0,16,0,18,0,1,0,0,53,0,0,0,0,1,60,0,0,0,0,0,1,0,0,0,0,0,7,0,0,4505,12,259,0,4,0,0,0,0,0,110,0,0,0,0,600,1,107,494,0,0,2,0,0,0,0,0,64,0,53,0,0,2,0,39,0,5,0,0,799,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,578,0,183,0,0,0,2,8,32,13,481,0,0,0,0,1,0,0,0,0,0,0,0,0,2579,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,10,8,91,3,0,0,131,0,391,0,0,0,72,7,0,0,0,0,0,0,0,0,0,50,1,0,0,0,2,0,0,0,0,2,94,6,0,0,0,0,0,0,0,0,765,0,0,413,0,0,1,0,0,0,0,0,104,0,0,0,52,17,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,64,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,14,48,0,7,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2127,23,2 +4,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,4,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,29360,12,32,0,5,0,0,0,0,0,6,0,0,0,0,0,1,3,30,0,0,1,0,0,0,0,0,6,0,0,0,0,2,0,10,0,0,0,0,13854,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,43,0,1480,0,0,0,8,6,29,24,5970,0,0,0,0,1,0,0,0,0,0,0,0,0,8812,0,1966,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,107,2,0,0,89,0,198,0,0,0,49,20,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,1,95,41,0,0,0,0,0,0,0,0,23,0,0,13,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,6,1,13,113,0,5,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2957,63,2 +9,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,12,0,0,0,0,29,0,0,0,2,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,12,40,0,0,0,0,0,1,0,0,0,0,0,11,0,0,74,11,133,0,12,0,0,0,0,0,1,0,0,0,0,0,1,1,38,0,0,2,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,68,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,33,0,34,0,0,0,0,3,27,374,60,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,127,0,0,0,22,1,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,605,0,0,28,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,29,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,52,0,0,0,0,1,13,6,0,41,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,3,2 +6,0,0,2,0,14,2,0,18,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,0,92,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3582,14,88,0,3,0,0,0,0,0,30,0,0,0,0,0,1,11,485,0,0,3,0,0,0,0,0,20,0,10,0,0,2,0,18,0,0,0,0,329,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,408,0,102,0,0,0,0,3,33,19,412,0,0,0,0,1,0,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0,7,0,4,0,0,0,0,0,0,10,3,128,2,0,0,322,0,449,0,0,0,253,23,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,1,104,215,0,0,0,0,0,0,0,0,676,0,0,447,0,0,1,0,0,0,0,0,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,654,0,3,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,317,50,2 +5,0,0,4,0,36,6,0,27,0,3,0,0,2,3,0,501,0,6,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,5,898,36,6,0,0,27,0,0,0,1,0,0,1,0,0,0,0,1,217,0,0,0,0,0,1,0,0,0,0,0,4,0,0,5763,36,563,0,1,0,0,0,0,0,20,0,0,0,0,0,8,17,1045,0,0,5,0,0,0,0,0,85,5,9,0,0,2,0,507,0,1,0,0,1359,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,461,0,563,0,0,0,0,3,228,831,871,0,0,0,0,1,0,3,0,0,0,0,0,0,1552,0,55,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,34,11,210,4,0,0,205,0,313,0,0,0,69,3,0,0,0,0,0,0,0,0,0,548,1,0,0,0,9,0,0,0,0,0,119,6,0,0,0,0,0,0,0,0,1958,1,0,143,6,0,1,2,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,41,24,0,2,12,0,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1492,35,2 +28,0,0,3,0,13,9,0,72,0,22,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,13,6,0,0,127,0,0,0,0,0,0,0,0,0,0,0,2,37,0,0,0,0,0,1,0,0,0,0,0,14,0,0,240,13,133,0,3,0,0,0,0,0,8,0,0,0,0,0,1,1,62,0,0,1,0,0,1,68,0,564,40,0,0,0,2,0,330,0,0,0,0,391,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,63,0,40,0,0,0,4,4,36,474,72,0,0,0,0,0,0,0,0,0,0,0,0,0,286,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,60,3,0,0,60,0,158,0,0,0,18,3,0,0,0,0,0,0,0,0,0,123,0,0,0,0,2,0,0,0,0,1,93,163,0,0,85,0,0,0,0,0,606,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,2,1,14,1,0,3,0,0,0,0,0,0,180,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,80,2 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 +0,0,0,3,0,15,2,0,24,0,3,0,0,0,3,0,15,0,6,1,0,0,0,1,0,0,0,0,18,0,1,0,0,0,1,0,15,6,0,0,8,0,187,0,1,0,0,184,0,0,0,0,0,854,0,0,0,0,0,1,0,0,0,0,0,3,0,0,14045,15,611,0,19,0,0,0,0,0,375,0,0,0,0,0,1,189,2198,0,0,1,0,0,0,0,0,223,0,263,0,0,2,0,43,0,1,0,0,1199,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3118,0,889,0,0,0,0,3,45,229,3726,0,0,0,0,1,0,0,0,0,0,0,0,0,7414,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,8,4,166,3,0,0,274,0,1510,0,0,0,187,43,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,1,97,7,0,0,0,0,0,0,0,0,135,0,0,1580,0,0,1,0,0,0,0,0,414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,557,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,18,0,0,0,0,1,16,156,0,19,0,0,0,0,0,0,970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,1934,989,2 +33,0,0,6,0,23,29,0,10,7,3,0,0,0,12,1,130,0,7,2,0,0,0,2,0,8,0,0,3,0,1,0,0,0,2,0,23,32,585,0,201,0,0,0,1,0,0,3,1,0,0,0,8,71,0,0,0,0,0,1,0,0,0,8,0,12,0,0,1400,23,206,0,12,0,0,0,0,0,14,0,0,0,0,0,3,7,136,0,0,2,0,0,0,0,0,34,0,5,0,0,2,0,161,0,8,0,0,865,0,0,0,0,15,2,0,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,1,2,0,0,0,2,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,0,104,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,131,0,105,0,0,0,8,9,66,1264,130,0,0,0,0,1,0,0,0,0,0,0,0,0,810,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,15,58,210,6,0,0,152,0,304,0,0,0,59,31,0,0,0,0,0,0,0,0,0,192,1,0,3,0,4,0,0,0,0,10,110,30,0,1,0,0,0,0,0,0,519,0,0,88,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,22,22,0,0,3,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,19,25,74,0,12,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,3,227,153,2 +6,0,0,2,0,14,2,0,28,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,2,0,3,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,2,124,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2257,14,107,0,5,0,0,0,0,0,27,0,0,0,0,0,1,9,324,0,0,3,0,0,0,0,0,19,0,7,0,0,2,0,62,0,0,0,0,395,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,261,0,101,0,0,0,4,9,33,17,264,0,0,0,0,1,0,0,0,0,0,0,0,0,605,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,10,3,147,2,0,0,283,0,333,0,0,0,211,14,0,0,0,0,0,0,10,0,0,66,1,0,0,0,2,0,0,0,0,1,115,159,0,0,0,0,0,0,0,0,702,0,0,304,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,0,1,17,548,0,11,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,321,45,2 +11,0,0,3,0,12,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,24,0,1,0,0,0,0,0,12,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,97,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2538,12,81,0,24,0,0,0,0,0,16,0,0,0,0,0,1,10,1016,0,0,0,0,0,0,0,0,37,0,4,0,0,2,0,39,0,0,0,0,666,0,0,0,0,34,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,391,0,126,0,0,0,0,3,64,19,432,0,0,0,0,1,0,0,0,0,0,0,0,0,1136,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,155,3,0,0,113,0,264,0,0,0,39,10,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,94,29,0,0,0,0,4,0,0,0,715,0,0,875,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,24,0,0,0,0,1,12,170,0,25,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,430,17,2 +25,0,0,3,0,11,8,0,61,0,19,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,11,6,0,0,107,0,0,0,0,0,0,0,0,0,0,0,2,32,0,0,0,0,0,1,0,0,0,0,0,12,0,0,193,11,110,0,3,0,0,0,0,0,4,0,0,0,0,0,1,1,46,0,0,1,0,0,1,57,0,446,35,0,0,0,2,0,278,0,0,0,0,111,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,52,0,31,0,0,0,4,4,28,373,58,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,57,3,0,0,49,0,158,0,0,0,13,2,0,0,0,0,0,0,0,0,0,108,0,0,0,0,2,0,0,0,0,1,91,136,0,0,73,0,0,0,0,0,603,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,12,1,0,3,0,0,0,0,0,0,151,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,51,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,22,0,0,0,0,0,1,0,0,0,0,0,1,0,0,92,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,114,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,33,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,53,2,0,0,44,0,160,0,0,0,5,4,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,4,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,12,0,0,0,0,3,21,3,21,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,20,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,103,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,4,0,0,203,14,159,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,46,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,115,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,237,71,0,0,0,0,1,0,0,0,0,0,0,0,0,177,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,87,3,0,0,111,0,161,0,0,0,46,3,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,615,0,0,110,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,104,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,103,0,0,0,0,1,17,71,0,103,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,10,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1023,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,55,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,614,0,0,0,0,0,15,43,203,0,0,0,0,0,0,0,0,0,0,0,0,0,1561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,11,2,0,0,59,0,93,0,0,0,47,1,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,44,0,0,0,0,0,0,0,0,296,0,0,276,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,114,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1388,4,2 +4,0,0,4,1,13,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,14,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,50,0,0,0,0,0,1,0,0,0,0,0,4,0,0,140,13,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,131,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,38,0,0,0,4,4,35,11,54,0,0,0,0,1,0,0,0,0,0,0,0,0,169,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,217,5,0,0,232,0,330,0,1,0,55,3,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,109,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,4,0,0,0,2,9,16,22,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,99,16,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,103,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2557,10,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1027,0,0,0,0,0,0,0,0,35,0,5,0,0,2,0,37,0,0,0,0,406,0,0,0,0,31,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,390,0,128,0,0,0,0,3,56,19,431,0,0,0,0,1,0,0,0,0,0,0,0,0,1133,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,150,3,0,0,107,0,265,0,0,0,39,9,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,718,0,0,880,0,0,1,0,1,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,435,32,2 +9,0,0,5,0,52,7,0,38,1,5,0,0,6,4,0,795,0,6,1,0,0,0,8,0,10,0,0,4,0,17,0,0,0,7,898,52,6,0,0,51,0,0,0,1,0,0,2,0,0,0,0,17,164,0,0,0,0,0,1,0,0,0,0,0,2,0,0,6384,52,871,0,18,0,0,0,0,0,18,0,0,0,0,0,8,18,1239,0,0,7,0,0,0,0,0,188,20,2,0,0,2,0,844,0,0,1,0,1641,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,493,0,87,0,0,0,32,11,289,372,474,0,0,0,0,1,0,3,0,0,0,0,0,0,440,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,19,267,5,0,0,252,0,398,0,0,0,71,30,0,0,0,0,0,0,0,0,0,861,1,0,0,0,9,0,0,0,0,1,136,11,0,0,6,0,0,0,0,0,2064,1,0,266,6,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,6,17,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,33,0,0,0,16,1,59,124,0,19,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,620,106,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,26,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,25,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,39,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,4,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,27,0,21,0,0,0,1,0,0,0,0,0,6,0,0,213,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,77,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,49,0,0,0,0,3,57,44,113,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,84,3,0,0,83,0,116,0,0,0,29,3,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,210,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,15,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13862,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6202,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,61,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,70913,0,0,0,0,3,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,58,0,0,0,0,3,56,61,27765,0,0,0,0,1,0,0,0,0,0,0,0,0,91528,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,441,3,0,0,91,0,224,0,0,0,25,310,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,612,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,30879,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +10,0,0,4,0,36,4,0,15,0,3,0,0,2,3,0,19,0,6,2,0,0,0,6,0,14,0,0,1,0,1,0,0,0,7,0,36,6,0,0,23,0,0,0,1,0,0,2,0,0,0,0,7,128,0,0,0,0,0,1,0,0,0,0,0,4,0,0,14137,36,58,0,6,0,0,0,0,0,15,0,0,0,0,0,7,15,197,0,0,7,0,0,0,0,0,74,5,4,0,0,2,0,29,0,1,0,0,2384,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,154,0,87,0,0,0,6,8,197,26,6062,0,0,0,0,1,0,3,0,0,0,0,0,0,7611,0,1968,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,1,0,34,11,167,4,0,0,190,0,380,0,0,0,81,16,0,0,0,0,0,0,2,0,0,52,1,0,0,0,8,0,0,0,0,1,119,49,0,0,0,0,0,0,0,0,667,0,0,105,2,0,1,1,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,43,218,0,8,8,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,248,33,2 +6,0,0,2,0,14,2,0,20,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,8,0,0,0,0,0,152,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1698,14,93,0,3,0,0,0,0,0,32,0,0,0,0,0,1,13,288,0,0,3,0,0,0,0,0,22,0,12,0,0,2,0,20,0,0,0,0,278,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,252,0,112,0,0,0,0,3,33,20,258,0,0,0,0,1,0,0,0,0,0,0,0,0,558,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,10,3,131,2,0,0,252,0,431,0,0,0,180,13,0,0,0,0,0,0,6,0,0,48,1,0,0,0,2,0,0,0,0,1,108,139,0,0,0,0,0,0,0,0,667,0,0,229,0,0,1,0,0,0,0,0,15,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,553,0,3,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,307,51,2 +8,0,0,7,0,44,6,0,39,4,7,0,0,6,9,0,711,0,7,3,0,0,0,7,0,10,0,0,5,0,1,0,0,0,7,898,44,6,0,0,55,0,0,0,1,0,0,3,0,0,0,0,1,208,0,0,0,0,0,1,0,0,0,0,0,7,0,0,6658,44,804,0,3,0,0,0,0,0,28,0,0,0,0,0,9,21,1298,0,0,7,0,0,0,0,0,199,20,6,1,0,2,0,766,0,4,2,0,1632,0,2,0,0,0,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,436,0,69,0,0,0,0,3,296,406,433,0,0,0,0,1,0,4,0,0,0,0,0,0,419,0,0,0,0,2,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,84,29,241,7,0,0,297,0,463,0,0,0,139,12,0,0,0,0,0,0,0,0,0,785,1,0,0,0,10,0,0,0,0,0,127,75,0,0,11,0,0,0,0,0,2009,1,0,126,6,0,1,1,0,0,0,0,4,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,2,0,0,0,0,1,51,306,0,4,12,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,4,616,51,2 +12,0,0,3,1,15,26,1,26,1,3,0,0,0,4,0,58,0,8,2,0,0,0,2,0,9,0,0,0,0,1,0,0,1,2,0,16,51,0,0,14,0,0,0,0,0,0,0,0,0,0,0,9,34,0,0,0,0,0,1,0,0,0,0,0,2,0,0,4792,15,93,0,10,0,0,0,0,0,0,0,0,0,0,0,3,3,1814,0,1,2,1,0,1,0,0,64,0,0,0,0,4,1,25,0,1,0,0,1688,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,937,0,41,0,0,0,9,21,39,2681,959,0,0,0,0,0,0,0,0,0,0,0,0,0,2488,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,14,245,4,0,0,204,0,340,0,1,0,43,17,0,0,0,0,0,0,0,0,0,125,0,0,0,0,4,0,0,0,0,10,109,2,0,0,0,0,0,0,0,0,987,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,1,1,1,0,0,0,0,0,0,9,18,3,0,10,0,0,0,0,0,0,41,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,960,46,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,27,0,22,0,0,0,1,0,0,0,0,0,6,0,0,206,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,72,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,67,0,49,0,0,0,0,3,57,44,111,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,85,3,0,0,83,0,114,0,0,0,29,3,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,207,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,15,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,167,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,268,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,35,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,64,3,0,0,42,0,149,0,0,0,6,2,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,171,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14612,0,0,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5710,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73509,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,58,0,0,0,0,3,56,61,29265,0,0,0,0,1,0,0,0,0,0,0,0,0,91007,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,431,3,0,0,91,0,226,0,0,0,25,311,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,30007,2 +28,0,0,5,0,100,99,0,99,5,80,0,0,8,4,0,2225,0,6,2,0,0,0,7,0,10,0,0,45,0,47,0,0,0,23,67356,100,6,0,0,82,0,0,0,1,0,0,3,0,0,0,0,47,2840,0,0,0,0,0,1,0,0,0,0,0,2,0,0,197779,100,2777,0,89,0,0,0,0,0,193,0,0,0,0,0,8,387,43729,0,0,23,0,0,0,0,0,1046,30,6,0,0,2,0,2464,0,0,798,0,25987,0,0,0,0,18,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,2,0,0,0,0,0,138,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,12,12,12,0,0,0,9148,0,158,0,0,0,123,48,7075,9760,9071,0,0,0,0,1,0,4,0,0,0,0,0,0,1545,0,0,0,0,0,0,0,0,0,2,0,0,3,1,0,0,0,0,0,1,0,132,31,1082,5,0,0,826,0,717,0,0,0,535,56,0,0,0,0,0,0,0,0,0,2521,0,0,0,0,9,0,0,0,0,2,369,73,0,0,758,0,0,0,0,0,25639,1,0,1330,83,0,1,3,0,0,0,0,8,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,83,51,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,103,1,1,1,0,227,0,0,0,28,1,123,388,0,90,12,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,4,14324,380,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +11,0,0,3,0,10,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,3,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1260,10,71,0,24,0,0,0,0,0,12,0,0,0,0,0,1,8,595,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,164,0,0,0,0,35,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,128,0,120,0,0,0,0,3,55,17,168,0,0,0,0,1,0,0,0,0,0,0,0,0,405,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,72,3,0,0,83,0,173,0,0,0,16,2,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,90,11,0,0,0,0,4,0,0,0,863,0,0,760,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,23,0,0,0,0,1,10,103,0,24,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,534,11,2 +16,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,4848,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,37347,0,0,0,0,6,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,54,0,0,0,14,17,52,37,34109,0,0,0,0,1,0,0,0,0,0,0,0,0,97159,0,1,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,11,317,3,0,0,75,0,223,0,0,0,12,222,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,613,0,0,23,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,25,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,30469,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,1,0,0,937,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,482,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,266,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,113,2,0,0,119,0,144,0,0,0,61,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,28,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,11,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2600,11,80,0,24,0,0,0,0,0,16,0,0,0,0,0,1,10,1039,0,0,0,0,0,0,0,0,36,0,4,0,0,2,0,38,0,0,0,0,549,0,0,0,0,30,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,398,0,128,0,0,0,0,3,60,19,440,0,0,0,0,1,0,0,0,0,0,0,0,0,1158,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,157,3,0,0,110,0,273,0,0,0,39,3,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,724,0,0,887,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,23,0,0,0,0,1,11,170,0,24,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,445,33,2 +6,0,0,2,0,14,2,0,20,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,2,0,3,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,2,94,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3707,14,107,0,5,0,0,0,0,0,30,0,0,0,0,0,1,12,516,0,0,3,0,0,0,0,0,20,0,12,0,0,2,0,54,0,0,0,0,603,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,429,0,101,0,0,0,4,9,33,21,433,0,0,0,0,1,0,0,0,0,0,0,0,0,707,0,0,0,0,0,0,0,0,0,0,0,0,7,0,3,0,0,0,0,0,0,10,3,124,2,0,0,322,0,389,0,0,0,253,15,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,1,104,215,0,0,0,0,0,0,0,0,704,0,0,466,0,0,1,0,0,0,0,0,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,0,1,17,654,0,11,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,325,46,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,71,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,979,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,47,2,0,0,44,0,133,0,0,0,5,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,24,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,53,0,0,0,0,0,1,0,0,0,0,0,4,0,0,143,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,127,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,39,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,171,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,213,5,0,0,229,0,331,0,1,0,55,2,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,48,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,100,16,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,22,0,0,0,0,0,1,0,0,0,0,0,1,0,0,92,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,211,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,53,2,0,0,44,0,160,0,0,0,5,4,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,4,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,58,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,2,0,0,0,5,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,27,0,21,0,0,0,1,0,0,0,0,0,6,0,0,214,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,77,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,50,0,0,0,0,3,57,44,113,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,85,3,0,0,83,0,113,0,0,0,29,4,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,211,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,15,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,71,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,967,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,46,2,0,0,44,0,134,0,0,0,5,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,24,2 +30,0,0,5,0,91,7,0,53,1,6,0,0,6,5,0,1673,0,6,2,0,0,0,7,0,10,0,0,5,0,51,0,0,0,21,835,91,6,0,0,77,0,0,0,1,0,0,3,0,0,0,0,51,229,0,0,0,0,0,1,0,0,0,0,0,2,0,0,44176,91,1784,0,53,0,0,0,0,0,24,0,0,0,0,0,8,27,10644,0,0,21,0,0,0,0,0,195,20,5,0,0,2,0,1728,0,0,1,0,5821,0,0,0,0,18,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,12,12,12,0,0,0,2520,0,142,0,0,0,102,21,351,465,2504,0,0,0,0,1,0,4,0,0,0,0,0,0,561,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,86,19,446,5,0,0,371,0,609,0,0,0,115,51,0,0,0,0,0,0,0,0,0,1756,1,0,0,0,9,0,0,0,0,1,175,11,0,0,8,0,0,0,0,0,8106,1,0,253,6,0,1,1,0,0,0,0,8,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,6,51,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,94,1,1,1,0,108,0,0,0,32,1,112,50,0,54,12,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4286,312,2 +3,0,0,6,0,38,63,0,130,1,15,0,0,6,4,0,730,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,2,835,38,6,0,0,195,0,2,0,1,0,0,2,0,0,0,0,1,204,0,0,0,0,0,1,0,0,0,0,0,7,0,0,44516,38,930,0,3,0,0,0,0,0,14,0,0,0,0,0,8,23,10489,0,0,2,0,0,1,82,0,791,50,3,0,0,2,0,1175,0,0,1,0,5097,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,1976,0,59,0,0,0,1,4,265,1554,1971,0,0,0,0,1,0,3,0,0,0,0,0,0,673,0,1,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,1,0,86,19,242,6,0,0,303,0,367,0,0,0,126,9,0,0,0,0,0,0,0,0,0,954,1,0,0,0,9,0,0,0,0,0,122,221,0,0,81,0,0,0,0,0,6637,1,0,807,6,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,6,361,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,5,0,0,0,0,1,40,211,0,4,12,0,0,0,0,0,243,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4326,40,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,4,0,0,140,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,126,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,167,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,213,5,0,0,229,0,327,0,1,0,55,3,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,34,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,15,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,22,0,0,0,0,0,1,0,0,0,0,0,1,0,0,94,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,114,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,53,2,0,0,44,0,160,0,0,0,5,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,4,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,56,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9441,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1229,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,858,0,48,0,0,0,0,3,27,8,875,0,0,0,0,1,0,0,0,0,0,0,0,0,3767,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,87,2,0,0,109,0,108,0,0,0,46,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,817,0,0,3221,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1269,25,2 +13,0,0,9,4,38,21,10,72,7,7,0,0,4,23,0,70,0,7,6,0,4,6,6,3,0,19,0,13,0,7,0,0,4,13,0,42,6,3,0,93,0,0,0,1,0,0,3,0,0,0,0,7,141,0,0,0,0,0,1,0,0,0,19,0,24,0,0,1758,38,494,0,20,0,0,0,0,0,27,12,0,0,0,0,7,11,126,0,10,13,4,0,0,0,0,227,15,4,0,0,2,4,244,0,11,0,0,1169,0,0,0,0,23,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,2,0,0,0,0,0,0,0,0,6,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,20,2,2,2,0,0,2,148,2,145,0,0,0,14,34,134,875,160,0,0,0,0,1,0,0,0,0,0,0,0,0,736,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,60,38,362,13,0,0,410,0,488,0,0,0,223,28,0,0,0,0,0,0,0,0,0,204,1,0,0,0,25,0,0,0,0,8,143,133,0,0,0,0,0,0,0,0,250,0,0,41,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,23,0,0,0,0,61,55,261,0,39,0,0,0,0,0,0,87,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,9,0,0,0,0,0,0,0,0,0,0,0,8,0,2,359,392,2 +0,0,0,3,0,13,2,0,25,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,13,6,0,0,19,0,1,0,1,0,0,1,0,0,0,0,0,60,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1930,13,49,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,708,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,15,0,1,0,0,177,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,192,0,23,0,0,0,0,3,30,8,203,0,0,0,0,1,0,0,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,82,3,0,0,116,0,214,0,0,0,51,1,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,0,95,35,0,0,0,0,0,0,0,0,288,0,0,924,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,16,112,0,1,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,352,19,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,21,0,1,0,0,0,0,0,11,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,99,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2558,11,78,0,22,0,0,0,0,0,16,0,0,0,0,0,1,10,1022,0,0,0,0,0,0,0,0,34,0,4,0,0,2,0,36,0,0,0,0,386,0,0,0,0,28,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,392,0,124,0,0,0,0,3,59,19,433,0,0,0,0,1,0,0,0,0,0,0,0,0,1150,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,166,3,0,0,110,0,248,0,0,0,39,4,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,721,0,0,883,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,21,0,0,0,0,1,11,170,0,22,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,431,17,2 +17,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14213,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5907,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,70066,0,0,0,0,7,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,54,0,0,0,8,9,52,69,28487,0,0,0,0,1,0,0,0,0,0,0,0,0,92120,0,2,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,374,3,0,0,78,0,278,0,0,0,12,279,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,614,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,24,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,30533,2 +0,0,0,2,0,30,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,20,0,1,0,0,0,21,0,30,6,0,0,5,0,3,0,1,0,0,3,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,518,30,53,0,21,0,0,0,0,0,7,0,0,0,0,0,1,5,134,0,0,21,0,0,0,0,0,28,0,3,0,0,2,0,26,0,0,0,0,245,0,0,0,0,25,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,126,0,97,0,0,0,0,3,68,30,191,0,0,0,0,1,0,0,0,0,0,0,0,0,458,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,129,2,0,0,189,0,184,0,0,0,136,1,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,112,64,0,0,0,0,0,0,0,0,86,0,0,45,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,21,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,20,0,0,0,0,1,51,91,0,21,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,198,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,11,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,101,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2521,11,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1010,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,560,0,0,0,0,32,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,384,0,121,0,0,0,0,3,60,19,426,0,0,0,0,1,0,0,0,0,0,0,0,0,1103,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,163,3,0,0,110,0,272,0,0,0,39,5,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,715,0,0,872,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,22,0,0,0,0,1,11,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,418,33,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,169,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,193,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,66,3,0,0,42,0,149,0,0,0,6,3,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,171,2 +6,0,0,2,0,13,2,0,28,0,2,0,0,0,2,0,26,0,6,0,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,2,116,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2304,13,105,0,3,0,0,0,0,0,27,0,0,0,0,0,1,9,335,0,0,3,0,0,0,0,0,17,0,7,0,0,2,0,60,0,0,0,0,768,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,262,0,101,0,0,0,4,9,29,17,265,0,0,0,0,1,0,0,0,0,0,0,0,0,614,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,10,3,138,2,0,0,280,0,342,0,0,0,211,13,0,0,0,0,0,0,10,0,0,66,1,0,0,0,1,0,0,0,0,1,114,159,0,0,0,0,0,0,0,0,702,0,0,308,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,548,0,9,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,324,44,2 +3,0,0,4,0,50,7,0,31,4,4,0,2,0,6,0,72,0,6,2,0,0,0,8,0,10,0,0,23,0,29,0,0,0,10,684,50,6,0,0,58,0,0,0,1,0,0,1,0,0,0,0,29,371,0,0,0,0,0,1,0,0,0,0,0,0,0,0,5813,50,169,0,49,0,0,0,0,0,12,0,0,0,0,0,9,22,678,0,0,10,0,0,0,0,0,290,0,1,0,0,2,0,168,0,0,1,0,1285,0,0,0,0,3,1,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,11,12,12,12,0,0,0,388,0,70,0,0,0,57,60,274,334,378,0,0,0,0,1,0,3,0,0,0,0,0,0,1042,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,43,25,318,2,0,0,257,0,384,0,0,0,91,23,0,0,0,0,0,0,0,0,0,128,1,0,0,0,10,0,0,0,0,29,136,30,0,0,5,0,0,0,0,0,961,1,0,983,5,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,0,5,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,79,0,0,0,52,1,60,133,0,50,12,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,523,94,2 +2,0,0,3,0,47,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,7,0,0,0,0,1,0,0,0,38,0,47,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,7,37,0,0,0,0,0,1,0,0,0,0,0,10,0,0,288,47,94,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,38,0,0,1,47,0,386,35,0,0,0,2,0,234,0,0,0,0,541,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,68,0,0,0,7,10,62,355,60,0,0,0,0,0,0,0,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,152,3,0,0,153,0,206,0,0,0,120,1,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,9,129,112,0,0,84,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,0,0,0,0,0,1,85,38,0,8,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,5,2 +7,0,0,3,0,29,5,0,13,0,2,0,0,2,2,0,27,0,6,2,0,0,0,6,0,8,9,0,4,0,4,0,0,0,5,0,29,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,4,77,0,0,0,0,0,1,0,0,0,0,0,2,0,0,722,29,57,0,6,0,0,0,0,0,3,0,0,0,0,0,7,12,162,0,0,5,0,0,0,0,0,74,5,0,0,0,2,0,77,0,0,0,0,548,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,91,0,56,0,0,0,6,15,182,22,95,0,0,0,0,1,0,3,0,0,0,0,0,0,213,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,96,3,0,0,112,0,199,0,0,0,42,4,0,0,0,0,0,0,0,0,0,57,0,0,0,0,8,0,0,0,0,1,111,25,0,0,0,0,0,0,0,0,713,0,0,5,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,5,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,12,0,0,0,0,1,34,69,0,16,9,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,40,2 +11,0,0,3,0,12,96,0,113,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,211,0,0,0,1,0,0,0,0,0,0,0,4,48,0,0,0,0,0,1,0,0,0,0,0,3,0,0,314,12,233,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,26,0,0,1,0,0,1,109,0,800,30,0,0,0,2,0,542,0,0,0,0,195,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,37,0,0,0,8,5,29,731,49,0,0,0,0,1,0,0,0,0,0,0,0,0,519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,53,3,0,0,149,0,137,0,0,0,110,5,0,0,0,0,0,0,0,0,0,236,0,0,0,0,2,0,0,0,0,1,96,222,0,0,98,0,0,0,0,0,25,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,4,1,13,17,0,5,0,0,0,0,0,0,239,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,5,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,35,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,159,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,171,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,169,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,17,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,16,0,7,1,0,0,0,1,0,0,0,0,24,0,113,0,0,0,0,0,10,6,0,0,131,0,3,0,1,0,0,3,0,0,0,0,112,87,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1757,10,186,0,137,0,0,0,0,0,13,0,0,0,0,0,1,8,619,0,0,0,0,0,0,0,0,484,0,3,0,0,2,0,151,0,0,0,0,596,0,0,0,0,32,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,136,0,122,0,0,0,224,227,55,298,169,0,0,0,0,1,0,0,0,0,0,0,0,0,413,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,166,3,0,0,84,0,206,0,0,0,16,15,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,113,90,11,0,0,0,0,4,0,0,0,901,0,0,876,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,473,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,248,0,0,0,224,1,10,103,0,137,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,546,21,2 +7,0,0,0,0,19,5,0,34,0,11,0,0,0,4,0,32,0,6,1,0,0,0,1,0,5,12,0,8,0,5,0,0,0,6,0,19,6,0,0,41,0,0,0,0,0,0,0,0,0,0,0,9,50,0,0,0,0,0,1,0,0,0,0,0,3,0,0,161,19,114,0,18,0,0,0,0,0,1,0,0,0,0,0,1,1,13,0,0,6,0,0,0,24,0,227,45,0,0,0,2,0,195,0,0,0,0,1349,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,29,0,28,0,0,0,13,28,38,198,38,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,68,0,0,0,68,0,152,0,0,0,23,3,0,0,0,0,0,0,0,0,0,92,0,0,0,0,2,0,0,0,0,10,101,46,0,0,135,0,0,0,0,0,681,0,0,4,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,12,0,0,0,0,1,25,6,0,30,0,0,0,0,0,0,57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,82,2 +74,0,0,4,0,28,2,0,8,18,3,0,0,0,23,0,24,0,7,1,0,0,0,1,0,0,0,0,15,0,1,0,0,0,16,0,28,27,0,0,54,0,0,0,1,0,0,3,0,0,0,0,0,65,0,0,0,0,0,1,0,0,0,0,0,22,0,0,3478,28,87,0,16,0,0,0,0,0,13,0,0,0,0,0,1,5,195,0,0,16,0,0,0,0,0,26,0,3,0,0,2,0,67,0,19,0,0,1674,0,0,0,0,17,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,172,0,107,0,0,0,0,3,63,3894,277,0,0,0,0,1,0,0,0,0,0,0,0,0,3173,0,24,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,22,193,4,0,0,158,0,233,0,0,0,92,3,0,0,0,0,0,0,4,0,0,67,1,0,0,0,2,0,0,0,0,1,117,22,0,0,0,0,15,0,30,15,681,0,0,125,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,15,0,0,0,0,1,44,124,0,16,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,3,290,23,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,8,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13836,0,0,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6018,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,70878,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,60,0,0,0,0,3,58,61,27713,0,0,0,0,1,0,0,0,0,0,0,0,0,90091,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,443,3,0,0,91,0,204,0,0,0,25,328,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,30179,2 +6,0,0,2,0,14,2,0,20,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,8,0,0,0,0,0,156,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1845,14,91,0,3,0,0,0,0,0,31,0,0,0,0,0,1,13,309,0,0,3,0,0,0,0,0,22,0,12,0,0,2,0,20,0,0,0,0,257,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,259,0,112,0,0,0,0,3,33,20,266,0,0,0,0,1,0,0,0,0,0,0,0,0,587,0,0,0,0,0,0,0,0,0,0,0,0,8,0,2,0,0,0,0,0,0,10,3,133,2,0,0,251,0,419,0,0,0,179,15,0,0,0,0,0,0,6,0,0,48,1,0,0,0,2,0,0,0,0,1,108,139,0,0,0,0,0,0,0,0,683,0,0,260,0,0,1,0,0,0,0,0,15,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,553,0,3,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,331,52,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,53,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,14,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,45,0,0,0,34,0,49,0,0,0,4,5,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,8,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,940,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,485,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,284,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,41,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,113,2,0,0,119,0,134,0,0,0,61,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,27,2 +6,0,0,2,0,14,2,0,27,0,2,0,0,0,2,0,21,0,6,1,0,0,0,1,0,0,3,0,1,0,1,1,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,1,118,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2697,14,97,0,3,0,0,0,0,0,27,0,0,0,0,0,1,9,342,0,0,3,0,0,0,0,0,18,0,7,0,0,2,0,43,0,0,0,0,336,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,265,0,102,0,0,0,2,8,33,21,268,0,0,0,0,1,0,0,0,0,0,0,0,0,603,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,10,3,154,2,0,0,283,0,337,0,0,0,211,12,0,0,0,0,0,0,10,0,0,60,1,0,0,0,2,0,0,0,0,1,115,159,0,0,0,0,0,0,0,0,698,0,0,307,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,7,0,0,0,0,1,17,548,0,6,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,337,45,2 +2,0,0,3,0,47,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,7,0,0,0,0,1,0,0,0,38,0,47,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,7,37,0,0,0,0,0,1,0,0,0,0,0,10,0,0,290,47,94,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,38,0,0,1,47,0,386,35,0,0,0,2,0,234,0,0,0,0,535,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,68,0,0,0,7,10,62,355,60,0,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,152,3,0,0,153,0,202,0,0,0,120,3,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,9,129,112,0,0,84,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,0,0,0,0,0,1,85,38,0,8,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,5,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1030,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,67,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,73,0,0,0,0,0,7,36,188,0,0,0,0,0,0,0,0,0,0,0,0,0,468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,16,2,0,0,54,0,81,0,0,0,48,3,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,45,0,0,0,0,0,0,0,0,290,0,0,256,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,115,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,292,8,2 +16,0,0,9,2,229,54,2,74,6,10,0,0,2,19,0,120,0,11,3,0,0,0,6,0,8,0,0,9,0,7,0,0,2,202,0,231,148,0,0,471,0,0,0,1,0,0,2,0,0,0,0,7,134,0,0,0,0,0,1,0,0,0,0,0,17,0,0,1445,229,222,0,14,0,0,0,0,0,11,0,0,0,0,0,8,16,158,0,2,202,2,0,3,8,0,246,20,3,0,0,6,2,136,0,12,0,0,3703,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,7,0,0,1,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,5,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,10,10,10,0,0,0,123,0,252,0,0,0,12,13,408,663,134,0,0,0,0,1,0,3,0,0,0,0,0,0,804,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,244,54,1034,11,0,0,1068,0,970,0,2,0,725,47,0,0,0,0,0,0,0,0,0,290,1,0,0,0,9,0,0,0,0,5,339,52,0,0,29,0,0,0,0,0,336,0,0,67,3,0,1,1,0,0,0,0,3,0,1,0,2,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,8,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,232,1,1,1,0,19,0,0,0,2,17,433,418,0,15,9,0,0,0,0,0,492,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,1,222,84,2 +0,0,0,2,0,15,2,0,17,0,4,0,0,0,2,0,14,0,6,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,3,0,15,6,0,0,6,0,8,0,1,0,0,10,0,0,0,0,0,174,0,2,0,0,0,1,0,0,0,0,0,1,0,0,17239,15,116,0,1,0,0,0,0,0,47,0,0,0,2,0,2,16,2971,0,0,3,0,0,0,0,0,28,0,16,0,0,2,0,19,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2022,0,224,0,0,0,0,3,40,18,2576,0,0,0,0,1,0,0,0,0,0,0,0,0,6610,0,0,0,0,0,0,0,0,0,0,0,0,10,0,8,0,0,0,0,0,0,8,13,157,2,0,0,179,0,236,0,0,0,106,16,0,0,0,0,0,0,183,0,0,45,1,0,0,0,3,0,0,0,0,0,112,53,0,0,0,0,0,0,0,0,1242,0,0,5501,0,0,1,1,1,0,0,0,26,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,170,0,0,0,0,337,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,87,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,18,201,0,1,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,103,0,0,0,0,0,0,0,11,2382,70,2 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,3,0,0,99,9,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,29,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,8,0,1,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,30,0,0,0,0,3,23,9,46,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,44,3,0,0,35,0,168,0,0,0,5,2,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,3,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,22,0,0,0,0,0,1,0,0,0,0,0,3,0,0,166,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,245,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,35,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,63,3,0,0,42,0,150,0,0,0,6,2,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,171,2 +16,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,23,0,0,0,0,0,0,0,0,0,0,0,4,18,0,0,0,0,0,1,0,0,0,0,0,1,0,0,91,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,34,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,1313,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,39,0,0,0,8,5,28,19,53,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,39,48,2,0,0,44,0,138,0,0,0,5,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,602,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,3,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,5,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,4,0,0,204,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,48,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,124,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,172,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,83,3,0,0,111,0,151,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,616,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,10,2 +7,0,0,8,0,38,14,0,20,0,6,0,3,2,6,0,32,0,7,3,0,0,0,5,0,11,0,0,6,0,1,0,0,0,11,0,38,58,0,0,59,0,0,0,1,0,0,1,0,0,0,0,4,76,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1115,38,77,0,8,0,0,0,0,0,8,0,0,0,0,0,7,14,168,0,0,11,0,0,3,0,0,89,5,2,0,0,8,0,94,0,0,0,0,833,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,10,10,10,0,0,0,109,0,53,0,0,0,3,7,196,51,110,0,0,0,0,1,0,3,0,0,0,0,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,50,54,180,11,0,0,161,0,395,0,0,0,51,15,0,0,0,0,0,0,0,0,0,90,1,0,0,0,8,0,0,0,0,3,121,9,0,0,0,0,0,0,0,0,189,0,0,84,3,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,4,0,0,0,0,1,49,31,0,9,9,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,133,2 +5,0,0,4,0,37,6,0,26,0,3,0,0,2,3,0,469,0,6,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,6,898,37,6,0,0,31,0,0,0,1,0,0,1,0,0,0,0,1,196,0,0,0,0,0,1,0,0,0,0,0,4,0,0,5406,37,534,0,1,0,0,0,0,0,22,0,0,0,0,0,8,17,949,0,0,6,0,0,0,0,0,85,5,9,0,0,2,0,475,0,1,0,0,1327,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,382,0,524,0,0,0,0,3,229,803,742,0,0,0,0,1,0,3,0,0,0,0,0,0,1396,0,39,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,34,11,211,4,0,0,210,0,315,0,0,0,74,6,0,0,0,0,0,0,0,0,0,515,1,0,0,0,9,0,0,0,0,0,120,6,0,0,0,0,0,0,0,0,1889,1,0,164,6,0,1,2,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,0,0,0,0,0,1,43,25,0,2,12,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1394,32,2 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +14,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,36,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,164,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,53,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,33,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,18,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,22,0,0,0,0,0,1,0,0,0,0,0,1,0,0,94,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,205,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,55,2,0,0,44,0,160,0,0,0,5,6,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,4,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,56,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9774,12,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1263,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,889,0,48,0,0,0,0,3,31,8,906,0,0,0,0,1,0,0,0,0,0,0,0,0,3918,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,85,2,0,0,112,0,109,0,0,0,46,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,27,0,0,0,0,0,0,0,0,846,0,0,3340,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1305,22,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,163,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,251,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,66,3,0,0,42,0,149,0,0,0,6,3,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,646,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,171,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,0,0,0,0,6,0,26,6,0,0,14357,0,0,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5797,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,72326,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,61,0,0,0,0,3,58,61,28753,0,0,0,0,1,0,0,0,0,0,0,0,0,90060,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,429,3,0,0,91,0,209,0,0,0,25,305,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,4,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,30267,2 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,878,9,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,462,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,22,0,0,0,0,3,25,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,58,2,0,0,76,0,90,0,0,0,21,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,91,14,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,63,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,226,2,2 +6,0,0,2,0,14,2,0,20,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,8,0,0,0,0,0,167,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1789,14,91,0,3,0,0,0,0,0,31,0,0,0,0,0,1,13,298,0,0,3,0,0,0,0,0,22,0,12,0,1,2,0,20,0,0,0,0,302,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,252,0,111,0,0,0,0,3,33,20,259,0,0,0,0,1,0,0,0,0,0,0,0,0,557,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,10,3,129,2,0,0,251,0,436,0,0,0,179,13,0,0,0,1,0,0,6,0,0,48,1,0,0,0,2,0,0,0,0,1,108,139,0,0,0,0,0,0,0,0,670,0,0,231,0,0,1,0,0,0,0,0,15,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,553,0,3,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,322,51,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +6,0,0,2,0,13,2,0,18,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,0,89,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3544,13,85,0,3,0,0,0,0,0,28,0,0,0,0,0,1,12,482,0,0,3,0,0,0,0,0,20,0,9,0,0,2,0,18,0,0,0,0,285,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,400,0,102,0,0,0,0,3,29,19,406,0,0,0,0,1,0,0,0,0,0,0,0,0,650,0,0,0,0,0,0,0,0,0,0,0,0,7,0,4,0,0,0,0,0,0,10,3,123,2,0,0,317,0,427,0,0,0,251,18,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,1,103,215,0,0,0,0,0,0,0,0,678,0,0,433,0,0,1,0,0,0,0,0,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,654,0,3,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,319,49,2 +9,0,0,3,0,153,3,0,141,3,3,0,0,0,7,0,792,0,6,1,0,0,0,1,0,1,411,0,1,0,138,0,0,0,53,0,153,300,0,0,118,0,0,0,1,0,0,0,0,0,0,0,138,160,0,0,0,0,0,1,0,0,0,0,0,7,0,0,2403,153,1407,0,140,0,0,0,0,0,1,0,0,0,0,0,1,1,19,0,0,53,0,0,0,0,0,6,0,0,0,0,2,0,2533,0,5,0,0,4508,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0,0,0,32,0,174,0,0,0,275,463,171,284,143,0,0,0,0,1,0,0,0,0,0,0,0,0,1206,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,781,3,0,0,697,0,423,0,0,0,391,33,0,0,0,0,0,0,0,0,0,952,0,0,0,0,2,0,0,0,0,1,260,107,0,0,0,0,0,0,0,0,1588,0,0,48,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,138,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,150,1,1,1,0,138,0,0,0,0,1,206,57,0,551,0,0,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,462,2 +0,0,0,8,0,53,29,0,110,5,36,0,0,12,13,0,1330,0,7,2,0,0,0,11,0,11,0,0,20,0,4,0,0,0,11,21263,53,6,0,0,146,0,0,0,1,0,0,6,0,0,0,0,4,666,0,0,0,0,0,1,0,0,0,12,0,15,0,0,197395,53,1622,0,20,0,0,0,0,0,66,0,0,0,0,0,12,108,38608,0,0,11,0,0,2,40,0,801,100,12,0,0,2,0,1640,0,6,107,0,5433,0,0,0,0,8,0,4,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,12,12,12,0,0,0,33414,0,115,0,0,0,14,16,704,2374,33362,0,0,0,0,1,0,13,0,0,0,0,0,0,2340,0,0,0,0,0,0,0,0,0,0,0,0,6,1,4,0,0,0,0,1,0,218,22,400,11,0,0,552,0,533,0,0,0,366,23,0,0,0,0,0,0,4,0,0,1537,1,0,0,0,13,0,0,0,0,4,204,235,0,0,247,0,9,0,0,0,5981,1,0,1689,22,0,1,1,1,0,0,0,18,0,0,0,0,0,0,0,0,0,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,22,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,46,0,0,0,2,1,64,842,0,21,14,0,0,0,0,0,204,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,7,3242,169,2 +11,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,46,0,0,0,0,0,1,0,0,0,0,0,3,0,0,302,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,24,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,199,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,37,0,0,0,8,11,29,397,138,0,0,0,0,1,0,0,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,54,3,0,0,62,0,142,0,0,0,29,1,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,23,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,8,2 +18,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14699,0,0,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5790,22,38,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,32,0,9,0,0,72158,0,0,0,0,7,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,56,0,0,0,8,10,56,69,29459,0,0,0,0,1,0,0,0,0,0,0,0,0,96199,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,386,3,0,0,78,0,237,0,0,0,12,257,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,614,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,12,0,0,0,4,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,33104,2 +12,0,0,3,1,14,26,1,26,1,3,0,0,0,4,0,58,0,8,2,0,0,0,2,0,9,0,0,0,0,1,0,0,1,2,0,15,51,0,0,14,0,0,0,0,0,0,0,0,0,0,0,9,42,0,0,0,0,0,1,0,0,0,0,0,2,0,0,4609,14,93,0,10,0,0,0,0,0,0,0,0,0,0,0,3,3,1804,0,1,2,1,0,1,0,0,64,0,0,0,0,4,1,25,0,1,0,0,1591,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,933,0,38,0,0,0,9,21,38,2668,955,0,0,0,0,0,0,0,0,0,0,0,0,0,2401,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,14,221,4,0,0,203,0,310,0,1,0,45,6,0,0,0,0,0,0,0,0,0,125,0,0,0,0,4,0,0,0,0,10,110,2,0,0,0,0,0,0,0,0,981,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,13,1,1,1,0,0,0,0,0,0,9,17,3,0,10,0,0,0,0,0,0,41,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,954,31,2 +2,0,0,0,0,9,5,0,11,0,2,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,1,0,0,19,9,28,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,8,0,0,1,0,0,0,7,0,61,0,0,0,0,2,0,41,0,0,0,0,54,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,17,0,0,0,0,3,22,61,22,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,32,0,0,0,38,0,98,0,0,0,7,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,2,0,0,0,0,0,91,19,0,0,0,0,0,0,0,0,593,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,29,2 +16,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14465,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6292,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,74276,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,71,0,59,0,0,0,0,3,56,61,28974,0,0,0,0,1,0,0,0,0,0,0,0,0,88418,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,430,3,0,0,91,0,217,0,0,0,25,293,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,613,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,27259,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,61,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9632,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1242,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,876,0,48,0,0,0,0,3,27,8,893,0,0,0,0,1,0,0,0,0,0,0,0,0,3708,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,87,2,0,0,109,0,108,0,0,0,46,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,835,0,0,3293,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1281,22,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +14,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,39,0,0,0,0,0,1,0,0,0,0,0,3,0,0,230,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,89,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,147,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,633,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,31,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,18,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,55,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,8,0,48,171,0,62,1,6,0,0,6,7,0,1455,0,7,2,0,0,0,8,0,12,0,0,8,0,2,0,0,0,8,20160,48,6,0,0,50,0,0,0,1,0,0,4,0,0,0,0,2,1083,0,0,0,0,0,1,0,0,0,0,0,6,0,0,265113,48,2183,0,5,0,0,0,0,0,330,0,0,0,0,0,9,32,55896,0,0,8,0,0,0,0,0,214,20,6,0,0,2,0,1813,0,2,7,0,27028,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,12,12,12,0,0,0,40165,0,87,0,0,0,3,4,632,5407,40132,0,0,0,0,1,0,4,0,0,0,0,0,0,10521,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,84,18,900,8,0,0,1361,0,340,0,0,0,1177,11,0,0,0,0,0,0,0,0,0,1714,1,0,0,0,10,0,0,0,0,1,760,162,0,0,11,0,0,0,0,0,8950,1,0,4104,164,0,1,1,0,0,0,0,12,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,164,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,8,0,0,0,0,1,56,196,0,6,16,0,2,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5923,85,2 +28,0,0,3,0,11,9,0,66,0,20,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,11,6,0,0,117,0,0,0,0,0,0,0,0,0,0,0,2,45,0,0,0,0,0,1,0,0,0,0,0,13,0,0,244,11,125,0,3,0,0,0,0,0,8,0,0,0,0,0,1,1,62,0,0,1,0,0,1,62,0,518,35,0,0,0,2,0,303,0,0,0,0,362,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,38,0,0,0,4,4,28,438,71,0,0,0,0,0,0,0,0,0,0,0,0,0,303,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,54,3,0,0,54,0,171,0,0,0,18,11,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2,0,0,0,0,1,91,149,0,0,74,0,0,0,0,0,605,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,12,1,0,3,0,0,0,0,0,0,167,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,77,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14716,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5560,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,72827,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,29473,0,0,0,0,1,0,0,0,0,0,0,0,0,89960,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,420,3,0,0,91,0,205,0,0,0,25,311,0,0,0,0,0,0,0,0,0,42,0,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,29858,2 +19,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14189,0,0,0,1,0,0,1,0,0,0,0,4,52,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5832,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,68836,0,0,0,0,6,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,9,54,69,28439,0,0,0,0,1,0,0,0,0,0,0,0,0,92562,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,381,3,0,0,78,0,226,0,0,0,12,286,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,615,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,26,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,31244,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,4,2 +2,0,0,2,0,8,2,0,9,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,60,8,30,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,23,0,0,0,0,0,0,0,0,6,0,1,0,0,2,0,7,0,0,0,0,46,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,23,0,20,0,0,0,0,3,21,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,111,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,56,2,0,0,61,0,113,0,0,0,8,0,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,88,2,0,0,0,0,0,0,0,0,605,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,8,2 +11,0,0,3,0,12,99,0,116,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,217,0,0,0,1,0,0,0,0,0,0,0,4,50,0,0,0,0,0,1,0,0,0,0,0,3,0,0,327,12,241,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,25,0,0,3,0,0,1,112,0,837,30,0,0,0,2,0,559,0,0,0,0,202,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,36,0,0,0,8,11,29,760,49,0,0,0,0,1,0,0,0,0,0,0,0,0,548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,52,3,0,0,152,0,137,0,0,0,119,4,0,0,0,0,0,0,0,0,0,242,0,0,0,0,2,0,0,0,0,5,96,228,0,0,98,0,0,0,0,0,24,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,245,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,5,2 +11,0,0,3,0,12,7,0,24,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,3,0,12,6,0,0,33,0,0,0,1,0,0,0,0,0,0,0,2,49,0,0,0,0,0,1,0,0,0,0,0,3,0,0,314,12,55,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,26,0,0,3,0,0,1,20,0,185,30,0,0,0,2,0,97,0,0,0,0,204,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,36,0,0,0,4,7,29,381,138,0,0,0,0,1,0,0,0,0,0,0,0,0,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,59,3,0,0,60,0,136,0,0,0,27,5,0,0,0,0,0,0,0,0,0,58,0,0,0,0,2,0,0,0,0,3,96,44,0,0,98,0,0,0,0,0,25,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,0,1,15,19,0,3,0,0,0,0,0,0,61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,9,2 +16,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14102,0,0,0,1,0,0,1,0,0,0,0,4,51,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5926,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,70702,0,0,0,0,6,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,9,54,69,28265,0,0,0,0,1,0,0,0,0,0,0,0,0,93966,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,383,3,0,0,78,0,222,0,0,0,12,273,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,614,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,32733,2 +16,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,23,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,90,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,33,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,1306,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,39,0,0,0,8,5,28,19,53,0,0,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,39,49,2,0,0,44,0,137,0,0,0,5,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,601,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,3,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,39,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,144,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,37,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +16,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14952,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5276,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73371,0,0,0,0,3,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0,69,0,58,0,0,0,0,3,56,61,29945,0,0,0,0,1,0,0,0,0,0,0,0,0,90293,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,417,3,0,0,91,0,214,0,0,0,25,293,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,30574,2 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,858,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,442,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,19,0,0,0,0,3,21,4,41,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,53,2,0,0,71,0,88,0,0,0,19,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,61,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,2,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,14,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,5,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,1,0,0,915,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,459,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,294,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,113,2,0,0,119,0,144,0,0,0,61,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,27,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,1,0,0,936,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,481,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,297,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,112,2,0,0,119,0,144,0,0,0,61,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,28,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +18,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14318,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5697,22,39,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,33,0,9,0,0,67365,0,0,0,0,3,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,11,54,69,28697,0,0,0,0,1,0,0,0,0,0,0,0,0,90929,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,373,3,0,0,78,0,233,0,0,0,12,283,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,615,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,26,1,1,1,0,12,0,0,0,4,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,29338,2 +2,0,0,2,0,16,2,0,22,0,4,0,0,0,2,0,16,0,6,4,0,0,0,1,0,0,0,0,0,0,3,0,0,0,2,0,16,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,2,66,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9385,16,72,0,3,0,0,0,0,0,23,0,0,0,1,0,4,11,1274,0,0,2,0,0,0,0,0,21,0,9,0,0,2,0,18,0,0,0,0,197,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,908,0,92,0,0,0,4,3,42,13,917,0,0,0,0,1,0,0,0,0,0,0,0,0,3737,0,0,0,0,0,0,0,0,0,0,0,0,5,0,6,0,0,0,0,0,0,10,15,113,2,0,0,146,0,256,0,0,0,64,5,0,0,0,0,0,0,4,0,0,52,1,0,0,0,5,0,0,0,0,1,107,37,0,0,0,0,0,0,0,0,1372,0,0,3113,0,0,1,0,0,0,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,4,0,0,0,0,1,18,121,0,3,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1326,101,2 +20,0,0,8,0,44,17,0,45,20,8,0,0,0,29,0,41,0,7,1,0,0,0,4,0,3,12,0,10,0,3,2,0,0,16,0,44,44,0,0,160,0,0,0,1,0,0,7,1,0,0,0,7,169,0,0,0,0,0,1,0,0,0,12,0,28,0,0,3864,44,213,0,18,0,0,0,0,0,33,0,0,0,0,0,4,13,982,0,0,16,0,0,1,20,0,209,15,14,0,0,2,0,273,0,22,0,0,1416,0,0,0,0,14,0,0,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,7,0,0,0,11,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,96,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,649,0,218,0,0,0,11,27,84,207,656,0,0,0,0,1,0,0,0,0,0,0,0,0,1201,0,0,0,0,0,0,0,0,0,0,0,0,7,0,6,0,0,0,0,0,0,13,35,329,8,0,0,304,0,688,0,0,0,176,72,0,0,0,0,0,0,7,0,0,147,1,0,4,0,5,0,0,0,0,8,140,116,0,0,24,0,0,0,0,0,232,0,0,317,0,0,1,0,0,0,0,0,23,0,0,0,2,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,8,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,26,0,0,0,0,1,60,642,0,30,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,7,581,239,2 +6,0,0,2,0,14,2,0,18,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,0,98,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3654,14,83,0,3,0,0,0,0,0,29,0,0,0,0,0,1,11,502,0,0,3,0,0,0,0,0,19,0,10,0,0,2,0,18,0,0,0,0,345,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,416,0,96,0,0,0,0,3,33,19,420,0,0,0,0,1,0,0,0,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,0,7,0,4,0,0,0,0,0,0,10,3,124,2,0,0,322,0,434,0,0,0,250,13,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,1,104,215,0,0,0,0,0,0,0,0,677,0,0,469,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,654,0,3,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,307,47,2 +19,0,0,3,0,13,127,0,319,0,67,0,0,0,2,0,252,0,6,1,0,0,0,1,0,0,141,0,47,0,48,0,0,0,0,0,13,25,0,0,393,0,0,0,1,0,0,1,0,0,0,0,47,120,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2362,13,1073,0,95,0,0,0,0,0,41,0,0,0,0,0,1,3,34,0,0,0,0,0,1,256,0,2171,315,1,0,0,2,0,2058,0,0,0,0,3049,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,54,0,53,0,0,0,94,237,31,1076,58,0,0,0,0,1,0,0,0,0,0,0,0,0,1571,0,1,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,3,329,3,0,0,326,0,259,0,0,0,253,71,0,0,0,0,0,0,0,0,0,773,1,0,0,0,2,0,0,0,0,48,96,616,0,0,730,0,0,0,0,0,751,0,0,55,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,48,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,94,0,0,0,0,1,13,93,0,236,0,0,0,0,0,0,476,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,78,2 +4,0,0,2,0,13,3,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,13,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,1,68,0,0,0,0,0,1,0,0,0,0,0,1,0,0,681,13,59,0,2,0,0,0,0,0,21,0,0,0,0,0,1,9,145,0,0,0,0,0,0,0,0,13,0,8,0,0,2,0,15,0,0,0,0,216,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,124,0,78,0,0,0,1,4,39,55,161,0,0,0,0,1,0,0,0,0,0,0,0,0,408,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,10,3,102,2,0,0,119,0,178,0,0,0,39,13,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,98,25,0,0,0,0,0,0,0,0,644,0,0,108,0,0,1,0,0,0,0,0,8,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,13,96,0,2,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,217,42,2 +2,0,0,3,0,47,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,7,0,0,0,0,1,0,0,0,38,0,47,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,7,35,0,0,0,0,0,1,0,0,0,0,0,10,0,0,286,47,94,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,38,0,0,1,47,0,386,35,0,0,0,2,0,234,0,0,0,0,552,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,68,0,0,0,7,10,62,355,60,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,152,3,0,0,153,0,206,0,0,0,120,2,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,9,129,112,0,0,84,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,0,0,0,0,0,1,85,38,0,8,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,5,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,3,0,0,0,0,91,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,3,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,197,14,149,0,4,0,0,0,0,0,4,0,0,0,0,0,1,3,45,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,120,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,220,71,0,0,0,0,1,0,0,0,0,0,0,0,0,176,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,86,3,0,0,111,0,162,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,613,0,0,97,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,91,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,96,0,0,0,0,1,17,71,0,94,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,10,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,58,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,3,0,13,2,0,11,0,2,0,0,0,3,0,17,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,13,40,0,0,7,0,2,0,1,0,0,2,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,3,0,0,7146,13,51,0,1,0,0,0,0,0,15,0,0,0,0,0,2,6,1903,0,0,0,0,0,0,0,0,12,0,5,0,0,2,0,24,0,0,0,0,285,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,868,0,58,0,0,0,0,3,35,21,871,0,0,0,0,1,0,0,0,0,0,0,0,0,2094,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,18,3,81,3,0,0,110,0,221,0,0,0,41,8,0,0,0,0,0,0,5,0,0,41,1,0,0,0,3,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,474,0,0,2289,0,0,1,0,1,0,0,0,9,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,13,190,0,1,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,874,15,2 +5,0,0,4,1,12,26,1,32,0,4,0,0,0,5,0,65,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,52,0,0,0,0,0,1,0,0,0,0,0,4,0,0,146,12,96,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,34,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,125,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,39,0,0,0,4,4,31,12,56,0,0,0,0,1,0,0,0,0,0,0,0,0,177,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,115,14,212,5,0,0,229,0,340,0,1,0,55,4,0,0,0,0,0,0,0,0,0,141,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,692,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,30,0,3,0,0,0,0,0,0,55,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,102,16,2 +73,0,0,4,0,28,2,0,8,17,3,0,0,0,22,0,23,0,7,1,0,0,0,1,0,0,0,0,15,0,1,0,0,0,16,0,28,24,0,0,50,0,0,0,1,0,0,3,0,0,0,0,0,80,0,0,0,0,0,1,0,0,0,0,0,21,0,0,3408,28,88,0,16,0,0,0,0,0,13,0,0,0,0,0,1,5,202,0,0,16,0,0,0,0,0,26,0,3,0,0,2,0,65,0,18,0,0,1611,0,0,0,0,13,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,186,0,119,0,0,0,0,3,63,3739,319,0,0,0,0,1,0,0,0,0,0,0,0,0,3145,0,35,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,21,196,4,0,0,152,0,268,0,0,0,89,8,0,0,0,0,0,0,4,0,0,65,1,0,0,0,2,0,0,0,0,1,113,21,0,0,0,0,15,0,29,13,674,0,0,125,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,15,0,0,0,0,1,44,124,0,16,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,3,308,24,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,2,0,0,0,5,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,22,0,21,0,0,0,1,0,0,0,0,0,6,0,0,212,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,77,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,49,0,0,0,0,3,57,44,113,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,85,3,0,0,83,0,115,0,0,0,29,3,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,211,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,15,2 +36,0,0,3,0,11,9,0,86,0,24,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,11,6,0,0,157,0,0,0,0,0,0,0,0,0,0,0,2,43,0,0,0,0,0,1,0,0,0,0,0,17,0,0,277,11,149,0,3,0,0,0,0,0,8,0,0,0,0,0,1,1,67,0,0,1,0,0,1,82,0,686,35,0,0,0,2,0,403,0,0,0,0,126,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,64,0,38,0,0,0,4,4,28,566,73,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,56,3,0,0,54,0,168,0,0,0,18,6,0,0,0,0,0,0,0,0,0,139,0,0,0,0,2,0,0,0,0,1,91,197,0,0,74,0,0,0,0,0,608,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,12,1,0,3,0,0,0,0,0,0,215,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,82,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,2,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,4,0,0,142,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,132,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,176,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,216,5,0,0,229,0,330,0,1,0,55,4,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,36,0,2,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,15,2 +6,0,0,2,0,13,2,0,20,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,1,0,13,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,2,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2380,13,93,0,3,0,0,0,0,0,24,0,0,0,0,0,1,9,223,0,0,1,0,0,0,0,0,14,0,10,0,0,2,0,52,0,0,0,0,283,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,191,0,79,0,0,0,4,9,29,12,193,0,0,0,0,1,0,0,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,10,3,115,2,0,0,255,0,419,0,0,0,182,12,0,0,0,0,0,0,2,0,0,58,1,0,0,0,2,0,0,0,0,1,102,154,0,0,0,0,0,0,0,0,666,0,0,227,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,14,447,0,9,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,216,34,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,151,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,29,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,18,2 +17,0,0,3,0,22,2,0,4,9,3,0,0,0,12,0,10,0,7,1,0,0,0,2,0,0,0,0,0,0,5,0,1,0,2,0,22,6,0,0,14778,0,0,0,1,0,0,1,0,0,0,0,4,52,0,0,0,0,0,1,0,0,0,0,0,12,0,0,5391,22,36,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,24,0,1,0,0,2,0,31,0,10,0,0,74562,0,0,0,0,7,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,57,0,0,0,8,11,54,69,29623,0,0,0,0,1,0,0,0,0,0,0,0,0,90612,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,13,419,3,0,0,79,0,224,0,0,0,13,310,0,0,0,0,0,0,0,0,0,38,1,0,0,0,3,0,0,0,0,5,104,6,0,0,0,0,0,0,0,0,611,0,0,20,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,8,0,0,0,8,1,24,2,0,5,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,32398,2 +1,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,12,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,28070,12,24,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,0,1,0,0,0,0,0,6,0,0,0,0,2,0,8,0,0,0,0,17556,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,41,0,1490,0,0,0,4,4,29,10,5989,0,0,0,0,1,0,0,0,0,0,0,0,0,7812,0,1974,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,82,2,0,0,85,0,201,0,0,0,46,7,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,1,94,41,0,0,0,0,0,0,0,0,24,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,13,113,0,3,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2978,9,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,985,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,47,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,70,0,0,0,0,0,7,36,182,0,0,0,0,0,0,0,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,13,2,0,0,54,0,80,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,45,0,0,0,0,0,0,0,0,284,0,0,244,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,114,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,282,7,2 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,987,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,43,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,70,0,0,0,0,0,7,43,199,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,7,2,0,0,53,0,87,0,0,0,48,1,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,44,0,0,0,0,0,0,0,0,291,0,0,264,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,114,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,294,4,2 +5,0,0,4,1,12,26,1,32,0,4,0,0,0,5,0,65,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,52,0,0,0,0,0,1,0,0,0,0,0,4,0,0,156,12,96,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,39,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,128,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,41,0,0,0,4,4,31,12,58,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,115,14,213,5,0,0,229,0,322,0,1,0,55,4,0,0,0,0,0,0,0,0,0,141,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,695,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,30,0,3,0,0,0,0,0,0,59,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,109,16,2 +2,0,0,5,0,41,22,0,114,3,34,0,0,2,6,0,632,0,6,3,0,0,0,12,0,11,0,0,4,0,1,0,0,0,6,916,41,6,0,0,171,0,2,0,1,0,0,4,0,0,0,0,1,196,0,0,0,0,0,1,0,0,0,0,0,21,0,0,25509,41,838,0,1,0,0,0,0,0,20,0,0,0,0,0,14,30,4354,0,0,6,0,0,6,83,0,796,95,3,0,0,2,0,1050,0,4,0,0,1471,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,3647,0,77,0,0,0,0,3,276,894,3655,0,0,0,0,1,0,3,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,34,14,213,5,0,0,251,0,298,0,0,0,102,10,0,0,0,0,0,0,0,0,0,816,1,0,0,0,15,0,0,0,0,0,124,202,0,0,180,0,0,0,0,0,2306,1,0,39,11,0,1,1,0,0,0,0,8,0,4,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,11,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,0,0,0,0,0,1,47,75,0,2,14,0,0,0,0,0,231,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,545,514,2 +7,0,0,0,0,30,13,0,33,3,2,0,0,0,5,0,41,0,6,2,0,0,0,1,0,0,12,0,4,0,2,3,0,0,12,0,30,12,0,0,82,0,0,0,1,0,0,1,0,0,0,0,4,91,0,0,0,0,0,1,0,0,0,4,0,4,0,0,634,30,110,0,9,0,0,0,0,0,5,0,0,0,0,0,2,4,57,0,0,12,0,0,0,13,0,117,0,2,0,0,2,0,174,0,3,0,0,542,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,84,0,49,0,0,0,8,22,54,109,94,0,0,0,0,1,0,0,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,10,177,0,0,0,190,0,466,0,0,0,94,28,0,0,0,0,0,0,0,0,0,100,1,0,0,0,3,0,0,0,0,4,118,62,0,0,0,0,0,0,0,0,94,0,0,48,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,16,0,0,0,0,1,42,146,0,21,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,80,2 +0,0,0,4,3,16,55,2,51,0,4,0,2,0,7,0,121,0,11,1,0,0,0,1,0,0,0,0,0,0,1,0,0,2,7,0,18,167,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,0,1,0,0,0,0,0,2,0,0,182,16,161,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,20,0,2,7,2,0,4,0,0,83,0,0,0,0,10,3,63,0,2,0,0,1716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,23,0,27,0,0,0,0,3,41,21,56,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,43,390,7,0,0,387,0,560,0,2,0,105,101,0,0,0,0,0,0,0,0,0,251,0,0,0,0,2,0,0,0,0,0,129,7,0,0,0,0,0,0,0,0,284,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,14,1,1,1,0,0,0,0,0,0,17,25,9,0,1,0,0,0,0,0,0,86,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,42509,168,2 +3,0,0,5,0,35,6,0,36,0,5,0,0,6,5,0,504,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,762,35,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,1,171,0,0,0,0,0,1,0,0,0,0,0,2,0,0,7218,35,560,0,3,0,0,0,0,0,11,0,0,0,0,0,8,24,1391,0,0,1,0,0,0,0,0,190,20,2,0,0,2,0,543,0,0,2,0,1208,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,571,0,56,0,0,0,1,4,267,350,570,0,0,0,0,1,0,4,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,24,174,5,0,0,182,0,260,0,0,0,41,5,0,0,0,0,0,0,0,0,0,568,1,0,0,0,9,0,0,0,0,0,118,11,0,0,8,0,0,0,0,0,2065,1,0,64,6,0,1,1,0,0,0,0,10,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,20,0,4,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,575,30,2 +0,0,0,7,0,11,2,0,10,0,3,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,3,0,0,0,1,0,11,6,0,0,8,0,0,0,1,0,0,1,0,0,0,0,2,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,228,11,36,0,5,0,0,0,0,0,4,0,0,0,0,0,1,3,22,0,0,1,0,0,0,0,0,9,0,1,0,0,2,0,12,0,0,0,0,239,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,36,0,52,0,0,0,4,5,31,11,47,0,0,0,0,1,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,85,10,0,0,110,0,212,0,0,0,54,10,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,1,94,43,0,0,0,0,0,0,0,0,29,0,0,10,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,6,0,0,0,0,1,12,100,0,5,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,102,58,2 +1,0,0,6,0,33,7,0,33,0,5,0,0,7,6,0,460,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,33,40,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,178,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18454,33,526,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4198,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,521,0,0,1,0,2748,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,685,0,47,0,0,0,1,4,249,1161,672,0,0,0,0,1,0,3,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,113,13,182,6,0,0,199,0,282,0,0,0,58,4,0,0,0,0,0,0,0,0,0,524,1,0,0,0,10,0,0,0,0,0,116,15,0,0,6,0,0,0,0,0,3098,1,0,860,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,34,108,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1872,79,2 +16,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,23,0,0,0,0,0,0,0,0,0,0,0,4,18,0,0,0,0,0,1,0,0,0,0,0,1,0,0,88,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,31,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,1308,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,41,0,0,0,8,5,28,19,53,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,39,47,2,0,0,44,0,138,0,0,0,5,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,599,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,3,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,9,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,169,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,169,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,65,3,0,0,42,0,150,0,0,0,6,3,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,24,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,171,2 +3,0,0,5,2,58,17,8,119,6,28,0,0,2,11,1,970,0,6,10,0,2,1,18,0,11,3,0,5,0,2,0,0,1,18,3462,60,6,70,0,150,0,0,0,1,0,0,5,0,0,0,0,2,333,0,0,0,0,0,1,0,0,0,0,0,23,0,0,58910,58,1500,0,3,0,0,0,0,0,48,6,0,0,0,0,22,38,9717,0,8,18,1,0,1,63,0,625,70,9,0,0,2,2,1200,0,9,0,0,2330,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,12,12,12,0,0,0,8758,0,236,0,0,0,2,8,374,884,8849,0,0,0,0,1,0,4,0,0,0,0,0,0,1686,0,98,0,0,0,0,0,0,0,0,0,0,5,1,6,0,0,0,0,1,0,44,19,364,7,0,0,418,0,488,0,0,0,213,35,0,0,0,0,0,0,4,0,0,1154,1,0,0,0,31,0,0,0,0,1,152,203,0,0,180,0,0,0,0,0,4385,1,0,880,16,0,1,2,0,0,0,0,10,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,42,42,0,0,6,0,0,0,0,0,16,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,1,0,0,74,1,1,1,0,7,0,0,0,0,53,78,345,0,7,14,0,0,0,0,0,399,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,984,115,2 +0,0,0,2,0,14,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,14,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,60,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9716,14,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1243,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,888,0,51,0,0,0,0,3,39,8,905,0,0,0,0,1,0,0,0,0,0,0,0,0,3869,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,94,2,0,0,118,0,111,0,0,0,46,15,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,98,27,0,0,0,0,0,0,0,0,846,0,0,3328,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,17,96,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1293,20,2 +11,0,0,3,0,10,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,20,0,1,0,0,0,0,0,10,6,0,0,71,0,3,0,1,0,0,3,0,0,0,0,0,59,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1233,10,68,0,21,0,0,0,0,0,12,0,0,0,0,0,1,8,577,0,0,0,0,0,0,0,0,32,0,3,0,0,2,0,34,0,0,0,0,181,0,0,0,0,33,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,123,0,114,0,0,0,0,3,53,17,163,0,0,0,0,1,0,0,0,0,0,0,0,0,405,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,74,3,0,0,85,0,175,0,0,0,18,2,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,92,11,0,0,0,0,4,0,0,0,856,0,0,760,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,20,0,0,0,0,1,10,103,0,21,0,0,1,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,512,12,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,56,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9671,12,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1264,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,879,0,49,0,0,0,0,3,31,8,896,0,0,0,0,1,0,0,0,0,0,0,0,0,3868,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,88,2,0,0,112,0,109,0,0,0,46,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,27,0,0,0,0,0,0,0,0,837,0,0,3300,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1310,20,2 +9,0,0,3,0,154,3,0,4,2,3,0,0,0,6,0,61,0,6,1,0,0,0,1,0,0,0,0,60,0,2,0,0,0,143,0,154,162,0,0,74,0,0,0,1,0,0,0,0,0,0,0,1,79,0,0,0,0,0,1,0,0,0,0,0,6,0,0,1726,154,134,0,62,0,0,0,0,0,1,0,0,0,0,0,1,1,19,0,0,143,0,0,0,0,0,65,0,0,0,0,2,0,76,0,4,0,0,3032,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,71,0,175,0,0,0,2,4,172,148,101,0,0,0,0,1,0,0,0,0,0,0,0,0,252,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,698,3,0,0,596,0,320,0,0,0,549,31,0,0,0,0,0,0,0,0,0,83,0,0,0,0,2,0,0,0,0,1,249,61,0,0,0,0,0,0,0,0,185,0,0,27,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,151,1,1,1,0,62,0,0,0,0,1,297,147,0,62,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,1089,2 +5,0,0,4,0,37,6,0,31,0,3,0,0,2,3,0,629,0,6,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,6,898,37,6,0,0,29,0,0,0,1,0,0,1,0,0,0,0,1,190,0,0,0,0,0,1,0,0,0,0,0,4,0,0,8386,37,691,0,1,0,0,0,0,0,18,0,0,0,0,0,8,17,1448,0,0,6,0,0,0,0,0,85,5,7,0,0,2,0,635,0,1,0,0,1354,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,819,0,501,0,0,0,0,3,229,833,1211,0,0,0,0,1,0,3,0,0,0,0,0,0,1326,0,35,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,34,11,210,4,0,0,206,0,305,0,0,0,70,5,0,0,0,0,0,0,0,0,0,680,1,0,0,0,9,0,0,0,0,0,120,6,0,0,0,0,0,0,0,0,2248,1,0,127,6,0,1,2,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,0,0,0,0,0,1,43,25,0,2,12,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1379,34,2 +63,0,0,5,0,48,6,0,26,13,3,0,0,2,18,0,504,0,7,3,0,0,0,6,0,10,0,0,3,0,1,0,0,0,15,898,48,21,0,0,56,0,0,0,1,0,0,5,0,0,0,0,1,172,0,0,0,0,0,1,0,0,0,0,0,18,0,0,19428,48,585,0,1,0,0,0,0,0,27,0,0,0,0,0,8,21,3339,0,0,15,0,0,0,0,0,94,5,6,0,0,2,0,537,0,14,0,0,1583,0,0,0,0,13,15,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,2736,0,295,0,0,0,0,3,256,804,3330,0,0,0,0,1,0,3,0,0,0,0,0,0,2024,0,195,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,34,24,270,5,0,0,269,0,402,0,0,0,123,10,0,0,0,0,0,0,4,0,0,566,1,0,0,0,9,0,0,0,0,1,135,27,0,0,0,0,13,0,26,13,1992,1,0,172,6,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,0,0,0,0,0,1,63,142,0,2,12,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,5,947,51,2 +9,0,0,2,0,21,3,0,44,0,2,0,0,0,2,0,150,0,6,1,0,0,0,1,0,0,81,0,27,0,28,0,0,0,11,0,21,6,0,0,27,0,2,0,1,0,0,2,0,0,0,0,27,61,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1091,21,337,0,55,0,0,0,0,0,9,0,0,0,0,0,1,4,168,0,0,11,0,0,0,0,0,34,0,4,0,0,2,0,552,0,0,0,0,710,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,50,0,33,0,0,0,54,107,35,62,55,0,0,0,0,1,0,0,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,152,2,0,0,129,0,205,0,0,0,60,9,0,0,0,0,0,0,0,0,0,207,1,0,0,0,2,0,0,0,0,1,101,21,0,0,0,0,0,0,0,0,470,0,0,376,0,0,1,0,1,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,208,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,54,0,0,0,0,1,32,131,0,136,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,9,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,55,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,5,2 +9,0,0,3,0,153,3,0,4,3,3,0,0,0,7,0,65,0,6,1,0,0,0,1,0,1,0,0,61,0,1,0,0,0,142,0,153,174,0,0,76,0,0,0,1,0,0,0,0,0,0,0,1,79,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1717,153,140,0,63,0,0,0,0,0,1,0,0,0,0,0,1,1,20,0,0,142,0,0,0,0,0,66,0,0,0,0,2,0,79,0,5,0,0,3242,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,174,0,0,0,1,4,171,147,101,0,0,0,0,1,0,0,0,0,0,0,0,0,256,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,725,3,0,0,602,0,318,0,0,0,555,21,0,0,0,0,0,0,0,0,0,88,0,0,0,0,2,0,0,0,0,1,249,65,0,0,0,0,0,0,0,0,195,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,150,1,1,1,0,61,0,0,0,0,1,295,146,0,63,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,1101,2 +5,0,0,11,2,21,5,8,56,15,16,0,0,0,26,0,125,0,7,9,0,2,1,1,11,15,48,0,28,0,4,0,0,2,6,0,23,36,54,0,276,0,0,0,0,0,0,0,0,0,0,0,18,128,0,0,0,0,0,1,0,0,0,0,0,19,0,0,1368,21,445,0,34,0,0,0,0,0,0,6,0,0,0,0,2,2,19,0,8,6,2,0,1,17,0,296,20,0,0,0,2,2,503,0,13,0,0,1701,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,60,0,53,0,0,0,34,167,50,367,54,0,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,33,457,16,0,0,141,0,302,0,0,0,40,44,0,0,0,0,0,0,0,0,0,235,0,0,0,0,24,0,0,0,0,14,103,38,0,0,49,0,0,0,0,0,1430,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,105,0,0,0,0,17,29,6,0,95,0,0,0,0,0,0,118,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,17,0,0,0,0,0,0,0,0,0,0,0,3,0,0,187,405,2 +12,0,0,3,1,15,26,1,26,1,3,0,0,0,4,0,58,0,8,2,0,0,0,2,0,9,0,0,0,0,1,0,0,1,2,0,16,51,0,0,14,0,0,0,0,0,0,0,0,0,0,0,9,66,0,0,0,0,0,1,0,0,0,0,0,2,0,0,5021,15,93,0,10,0,0,0,0,0,0,0,0,0,0,0,3,3,1813,0,1,2,1,0,1,0,0,64,0,0,0,0,4,1,25,0,1,0,0,1862,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,947,0,41,0,0,0,9,21,39,2709,969,0,0,0,0,0,0,0,0,0,0,0,0,0,2652,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,14,400,4,0,0,204,0,487,0,1,0,43,45,0,0,0,0,0,0,0,0,0,125,0,0,0,0,4,0,0,0,0,10,109,2,0,0,0,0,0,0,0,0,976,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,1,1,1,0,0,0,0,0,0,9,18,3,0,10,0,0,0,0,0,0,41,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,949,66,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,55,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,45,0,0,0,34,0,52,0,0,0,4,7,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,8,2 +11,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,51,0,0,0,0,0,1,0,0,0,0,0,3,0,0,309,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,26,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,194,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,36,0,0,0,8,11,29,396,138,0,0,0,0,1,0,0,0,0,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,56,3,0,0,62,0,132,0,0,0,29,5,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,25,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,95,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,993,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,68,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,69,0,0,0,0,0,7,36,184,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,17,2,0,0,54,0,75,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,45,0,0,0,0,0,0,0,0,288,0,0,244,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,114,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,283,6,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,55,0,0,0,2,9,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,982,11,61,0,1,0,0,0,0,0,18,0,0,0,0,0,1,8,130,0,0,0,0,0,0,0,0,15,0,5,0,0,2,0,14,0,0,0,0,583,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,120,0,85,0,0,0,0,3,30,13,136,0,0,0,0,1,0,0,0,0,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,8,3,112,2,0,0,248,0,309,0,0,0,181,11,0,0,0,0,0,0,2,0,0,41,1,0,0,0,2,0,0,0,0,0,101,160,0,0,0,0,0,0,0,0,57,0,0,78,0,0,1,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,499,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,205,30,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,8,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,4,0,0,141,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,31,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,172,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,215,5,0,0,229,0,329,0,1,0,55,2,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,116,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,28,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,97,16,2 +17,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,35,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5166,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,60,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,36111,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,67,0,54,0,0,0,14,17,52,37,33917,0,0,0,0,1,0,0,0,0,0,0,0,0,97742,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,327,3,0,0,75,0,220,0,0,0,12,222,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,612,0,0,19,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,25,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,29493,2 +7,0,0,4,0,17,8,0,67,10,20,0,0,0,13,0,16,0,6,1,0,0,0,8,0,0,0,0,8,0,1,0,1,0,9,0,17,6,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,24,0,0,263,17,146,0,9,0,0,0,0,0,0,0,0,0,0,0,8,8,81,0,0,9,0,0,1,57,0,468,35,0,0,0,2,0,307,0,11,0,0,197,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,86,0,75,0,0,0,0,3,52,400,114,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,14,74,4,0,0,65,0,126,0,0,0,35,2,0,0,0,0,0,0,0,0,0,130,0,0,0,0,9,0,0,0,0,1,99,139,0,0,90,0,0,0,0,0,1881,0,0,0,0,0,1,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,8,0,0,0,0,1,26,9,0,9,0,0,0,0,0,0,245,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,3,2 +6,0,0,2,0,14,2,0,20,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,2,96,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3693,14,101,0,3,0,0,0,0,0,30,0,0,0,0,0,1,11,537,0,0,3,0,0,0,0,0,18,0,10,0,0,2,0,52,0,0,0,0,833,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,424,0,101,0,0,0,4,9,33,21,428,0,0,0,0,1,0,0,0,0,0,0,0,0,697,0,0,0,0,0,0,0,0,0,0,0,0,7,0,4,0,0,0,0,0,0,10,3,127,2,0,0,322,0,435,0,0,0,250,15,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,1,104,215,0,0,0,0,0,0,0,0,715,0,0,500,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,654,0,9,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,331,46,2 +6,0,0,2,0,13,2,0,22,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,1,0,3,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,8,0,0,0,0,2,144,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1723,13,110,0,4,0,0,0,0,0,32,0,0,0,0,0,1,13,293,0,0,3,0,0,0,0,0,21,0,11,0,0,2,0,55,0,0,0,0,298,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,258,0,111,0,0,0,4,9,29,22,264,0,0,0,0,1,0,0,0,0,0,0,0,0,598,0,0,0,0,0,0,0,0,0,0,0,0,8,0,2,0,0,0,0,0,0,10,3,119,2,0,0,249,0,427,0,0,0,180,17,0,0,0,0,0,0,6,0,0,60,1,0,0,0,2,0,0,0,0,1,107,139,0,0,0,0,0,0,0,0,686,0,0,254,0,0,1,0,0,0,0,0,15,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,553,0,10,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,307,51,2 +8,0,0,4,0,35,5,0,27,0,3,0,0,2,4,0,18,0,6,3,0,0,0,5,0,10,0,0,5,0,3,0,0,0,9,0,35,6,0,0,36,0,0,0,1,0,0,2,0,0,0,0,5,124,0,0,0,0,0,1,0,0,0,4,0,5,0,0,943,35,67,0,9,0,0,0,0,0,10,0,0,0,0,0,7,15,100,0,0,9,0,0,0,0,0,81,5,3,1,0,2,0,47,0,2,0,0,581,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,95,0,68,0,0,0,6,7,193,36,99,0,0,0,0,1,0,5,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,12,177,4,0,0,201,0,356,0,0,0,95,4,0,0,0,0,0,0,0,0,0,65,1,0,0,0,8,0,0,0,0,4,117,54,0,0,0,0,5,0,0,0,74,0,0,25,2,0,1,1,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,8,0,0,0,0,1,44,268,0,10,8,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,170,46,2 +5,0,0,4,1,11,26,1,27,2,3,0,0,0,4,1,96,0,9,1,0,0,0,1,0,0,0,0,7,0,1,0,0,1,0,0,12,54,0,0,39,0,0,0,1,0,0,2,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1175,11,133,0,8,0,0,0,0,0,3,0,0,0,0,0,1,4,52,0,1,0,1,0,1,0,0,51,0,2,0,0,4,1,34,0,1,0,0,1254,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,58,0,208,0,0,0,0,3,51,15,208,0,0,0,0,1,0,0,0,0,0,0,0,0,744,0,49,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,115,15,333,5,0,0,197,0,447,0,1,0,41,54,0,0,0,0,0,0,0,0,0,166,1,0,0,0,2,0,0,0,0,0,107,3,0,0,0,0,0,0,0,0,366,0,0,26,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,2,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,1,1,1,0,7,0,0,0,0,19,12,1,0,8,0,0,0,0,0,0,48,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,424,106,2 +18,0,0,3,0,22,2,0,4,10,3,0,0,0,13,0,10,0,7,2,0,0,0,1,0,0,0,0,0,0,5,0,0,0,2,0,22,6,0,0,10661,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,13,0,0,5703,22,37,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,24,0,1,0,0,2,0,33,0,11,0,0,64202,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,56,0,0,0,8,11,54,69,21377,0,0,0,0,1,0,0,0,0,0,0,0,0,100441,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,14,396,3,0,0,80,0,215,0,0,0,14,276,0,0,0,0,0,0,0,0,0,39,1,0,0,0,3,0,0,0,0,5,104,7,0,0,0,0,0,0,0,0,610,0,0,20,0,0,1,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,6,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,8,0,0,0,8,1,24,2,0,5,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,141,2 +13,0,0,6,0,53,9,0,49,3,10,0,0,7,11,0,875,0,6,2,0,0,0,7,0,10,0,0,10,0,13,0,0,0,11,945,53,6,0,0,60,0,0,0,1,0,0,7,0,0,0,0,13,214,0,0,0,0,0,1,0,0,0,0,0,7,0,0,7881,53,1001,0,20,0,0,0,0,0,35,0,0,0,0,0,8,30,1478,0,0,11,0,0,0,0,0,222,25,13,0,0,2,0,955,0,4,6,0,1954,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,575,0,113,0,0,0,25,10,292,481,543,0,0,0,0,1,0,3,0,0,0,0,0,0,613,0,0,0,0,0,0,0,0,0,1,0,0,8,1,0,0,0,0,0,1,0,108,20,276,6,0,0,296,0,411,0,0,0,115,33,0,0,0,0,0,0,0,0,0,967,1,0,0,0,9,0,0,0,0,1,138,32,0,0,13,0,0,0,0,0,2928,1,0,203,8,0,1,1,0,0,0,0,13,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,8,15,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,34,0,0,0,12,1,64,116,0,21,12,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,795,181,2 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1147,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,66,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,615,0,0,0,0,0,15,36,199,0,0,0,0,0,0,0,0,0,0,0,0,0,1589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,19,2,0,0,60,0,87,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,299,0,0,288,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,115,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1396,6,2 +2,0,0,2,0,12,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,12,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,9852,12,45,0,3,0,0,0,0,0,10,0,0,0,0,0,1,4,1255,0,0,1,0,0,0,0,0,8,0,3,0,0,2,0,17,0,0,0,0,160,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,886,0,37,0,0,0,4,4,26,15,887,0,0,0,0,1,0,0,0,0,0,0,0,0,3809,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,92,2,0,0,110,0,147,0,0,0,36,3,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,96,25,0,0,0,0,0,0,0,0,859,0,0,3381,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,13,92,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1285,18,2 +6,0,0,2,0,14,2,0,20,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,2,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2347,14,93,0,3,0,0,0,0,0,24,0,0,0,0,0,1,9,213,0,0,3,0,0,0,0,0,14,0,10,0,0,2,0,52,0,0,0,0,267,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,188,0,80,0,0,0,4,9,33,12,190,0,0,0,0,1,0,0,0,0,0,0,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,10,3,120,2,0,0,258,0,421,0,0,0,188,22,0,0,0,0,0,0,2,0,0,58,1,0,0,0,2,0,0,0,0,1,103,154,0,0,0,0,0,0,0,0,663,0,0,219,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,449,0,9,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,214,39,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,69,0,3,0,1,0,0,4,0,0,0,0,0,96,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2478,10,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,991,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,525,0,0,0,0,27,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,378,0,119,0,0,0,0,3,53,19,419,0,0,0,0,1,0,0,0,0,0,0,0,0,1097,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,162,3,0,0,107,0,242,0,0,0,39,6,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,709,0,0,871,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,2,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,404,17,2 +8,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,33,0,0,0,3,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,11,0,0,68,11,126,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,34,0,0,3,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,62,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,27,378,59,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,125,0,0,0,27,1,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,603,0,0,32,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,33,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,32,0,0,0,0,1,14,7,0,33,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,3,2 +16,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,13783,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5757,22,38,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,32,0,9,0,0,68979,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,10,54,69,27627,0,0,0,0,1,0,0,0,0,0,0,0,0,93671,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,382,3,0,0,78,0,225,0,0,0,12,298,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,614,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,2,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,32993,2 +5,0,0,2,0,15,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,7,0,15,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,39,0,1,0,0,0,1,0,0,0,0,0,1,0,0,7967,15,53,0,3,0,0,0,0,0,13,0,0,0,2,0,1,6,1007,0,0,7,0,0,0,0,0,11,0,4,0,0,2,0,18,0,0,0,0,209,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,736,0,62,0,0,0,0,3,33,21,748,0,0,0,0,1,0,0,0,0,0,0,0,0,3157,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,107,2,0,0,123,0,170,0,0,0,58,11,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,99,27,0,0,0,0,0,0,0,0,694,0,0,2701,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,2,0,0,0,0,1,22,91,0,3,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1066,76,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,197,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,46,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,488,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,39,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,172,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,85,3,0,0,111,0,161,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,10,2 +0,0,0,5,0,40,124,0,63,1,91,0,0,8,5,0,1185,0,6,1,0,0,0,8,0,11,0,0,69,0,1,0,0,0,1,15385,40,6,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,741,0,0,0,0,0,1,0,0,0,0,0,2,0,0,188418,40,1750,0,68,0,0,0,0,0,179,0,0,0,0,0,8,436,29292,0,0,1,0,0,0,0,0,943,30,3,0,0,2,0,1425,0,0,456,0,22152,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,12,12,12,0,0,0,12021,0,44,0,0,0,45,48,1562,6022,11965,0,0,0,0,1,0,3,0,0,0,0,0,0,23917,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,136,19,524,5,0,0,753,0,369,0,0,0,543,5,0,0,0,0,0,0,0,0,0,1482,1,0,0,0,9,0,0,0,0,1,371,70,0,0,618,0,0,0,0,0,11503,1,0,3284,87,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,87,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,202,0,0,0,0,1,41,774,0,69,12,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8096,42,2 +16,0,0,3,0,23,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,23,6,0,0,13759,0,0,0,1,0,0,1,0,0,0,0,4,56,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5945,23,38,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,32,0,9,0,0,70785,0,0,0,0,3,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,70,0,56,0,0,0,8,9,58,69,27580,0,0,0,0,1,0,0,0,0,0,0,0,0,92972,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,386,3,0,0,81,0,206,0,0,0,12,277,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,105,5,0,0,0,0,0,0,0,0,614,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,27,1,1,1,0,12,0,0,0,2,1,25,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,32797,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,6,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,6,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,207,14,166,0,7,0,0,0,0,0,4,0,0,0,0,0,1,3,49,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,120,0,0,0,0,3,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,40,0,0,0,0,3,30,238,74,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,84,3,0,0,111,0,153,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,615,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,116,0,0,0,0,1,17,71,0,111,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,11,2 +12,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,45,0,0,0,0,0,1,0,0,0,0,0,3,0,0,305,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,27,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,201,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,37,0,0,0,8,11,28,397,48,0,0,0,0,1,0,0,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,52,3,0,0,62,0,137,0,0,0,29,1,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,26,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,5,2 +11,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,51,0,0,0,0,0,1,0,0,0,0,0,3,0,0,325,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,31,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,242,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,43,0,0,0,8,11,29,400,145,0,0,0,0,1,0,0,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,60,3,0,0,62,0,136,0,0,0,29,11,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,26,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,10,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,55,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +12,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,50,0,0,0,0,0,1,0,0,0,0,0,3,0,0,312,12,61,0,4,0,0,0,0,0,1,0,0,0,0,0,1,1,24,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,207,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,36,0,0,0,8,11,28,397,48,0,0,0,0,1,0,0,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,56,3,0,0,62,0,139,0,0,0,29,8,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,23,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,5,2 +0,0,0,2,0,11,2,0,17,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,59,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9877,11,52,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1291,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,16,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,893,0,49,0,0,0,0,3,27,8,910,0,0,0,0,1,0,0,0,0,0,0,0,0,3943,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,92,2,0,0,113,0,109,0,0,0,48,3,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,95,29,0,0,0,0,0,0,0,0,851,0,0,3361,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,102,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1330,21,2 +5,0,0,2,0,10,2,0,10,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,10,0,41,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,40,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1088,10,81,0,51,0,0,0,0,0,4,0,0,0,0,0,1,4,501,0,0,2,0,0,0,0,0,17,0,1,0,0,2,0,58,0,0,0,0,249,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,26,0,0,0,80,43,26,26,50,0,0,0,0,1,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,82,2,0,0,67,0,194,0,0,0,16,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,1,90,5,0,0,0,0,0,0,0,0,836,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,401,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,90,0,0,0,80,1,12,50,0,51,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,242,7,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,6,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,6,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,204,14,166,0,6,0,0,0,0,0,4,0,0,0,0,0,1,3,46,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,128,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,169,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,83,3,0,0,111,0,151,0,0,0,46,3,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,111,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,116,0,0,0,0,1,17,71,0,111,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,10,2 +12,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,1,0,0,20,0,1,0,0,0,0,0,10,6,0,0,71,0,3,0,1,0,0,4,0,0,0,0,0,95,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2590,10,78,0,22,0,0,0,0,0,16,0,0,0,0,0,1,10,1027,0,0,0,0,0,0,0,0,34,0,4,0,0,2,0,36,0,0,0,0,420,0,0,0,0,33,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,395,0,124,0,0,0,0,3,54,19,436,0,0,0,0,1,0,0,0,0,0,0,0,0,1118,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,150,3,0,0,107,0,286,0,0,0,39,13,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,718,0,0,890,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,21,0,0,0,0,1,10,170,0,22,0,0,1,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,428,33,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,172,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,179,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,45,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,17,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,34,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,4,2 +0,0,0,4,0,34,6,0,20,0,2,0,0,2,3,0,18,0,7,2,0,0,0,6,0,8,0,0,2,0,1,0,0,0,2,0,34,6,0,0,27,0,0,0,1,0,0,1,0,0,0,0,1,90,0,0,0,0,0,1,0,0,0,4,0,4,0,0,393084,34,48,0,0,0,0,0,0,0,7,0,0,0,0,0,7,14,127,0,0,2,0,0,0,0,0,74,5,1,0,0,2,0,32,0,0,0,0,101266,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,79,0,54,0,0,0,0,3,194,9464,87,0,0,0,0,1,0,5,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,229,4,0,0,195,0,259,0,0,0,73,3,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,0,116,59,0,0,0,0,3,0,0,0,87,0,0,9,3,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4716,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,36,203,0,2,9,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,168,102,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,50,0,0,0,0,0,1,0,0,0,0,0,4,0,0,140,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,120,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,170,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,212,5,0,0,229,0,328,0,1,0,55,2,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,22,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,15,2 +11,0,0,4,0,20,2,0,5,0,3,0,0,0,3,0,18,0,7,2,0,0,0,2,0,0,0,0,107,0,1,0,0,0,1,0,20,30,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,4,0,0,84608,20,140,0,108,0,0,0,0,0,3,0,0,0,0,0,3,5,16287,0,0,1,0,0,0,0,0,118,0,1,0,0,2,0,116,0,1,0,0,111621,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,4,0,0,0,0,0,0,8474,0,115,0,0,0,0,3,8455,621,10060,0,0,0,0,1,0,0,0,0,0,0,0,0,6877,0,608,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,618,4,0,0,95,0,206,0,0,0,32,471,0,0,0,0,0,0,0,0,0,38,1,0,0,0,4,0,0,0,0,1,108,14,0,0,0,0,8,0,16,8,8550,0,0,12,0,0,1,0,0,0,0,0,2,0,597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,8416,1,1,1,0,107,0,0,0,0,1,21,5,0,108,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18101,784,2 +1,0,0,6,0,34,7,0,34,0,5,0,0,7,6,0,507,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,40,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,178,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18443,34,574,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4209,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,568,0,0,1,0,2864,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,725,0,46,0,0,0,1,4,256,1160,711,0,0,0,0,1,0,3,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,113,13,188,6,0,0,201,0,271,0,0,0,58,4,0,0,0,0,0,0,0,0,0,572,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3194,1,0,860,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,107,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1924,77,2 +63,0,0,5,0,48,6,0,27,13,3,0,0,2,18,0,539,0,7,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,15,898,48,24,0,0,57,0,0,0,1,0,0,5,0,0,0,0,1,165,0,0,0,0,0,1,0,0,0,0,0,18,0,0,18643,48,625,0,1,0,0,0,0,0,27,0,0,0,0,0,8,21,2898,0,0,15,0,0,0,0,0,94,5,6,0,0,2,0,571,0,14,0,0,2415,0,0,0,0,14,15,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,2303,0,126,0,0,0,0,3,257,3740,2360,0,0,0,0,1,0,3,0,0,0,0,0,0,2908,0,15,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,34,24,282,5,0,0,272,0,397,0,0,0,129,10,0,0,0,0,0,0,4,0,0,602,1,0,0,0,9,0,0,0,0,1,136,28,0,0,0,0,12,0,26,13,2049,1,0,172,6,0,1,1,0,0,0,0,10,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,0,0,0,0,0,1,63,142,0,2,12,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,5,605,51,2 +1,0,0,2,0,8,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,2,0,1,0,0,3,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1028,8,35,0,1,0,0,0,0,0,8,0,0,0,0,0,1,7,484,0,0,0,0,0,0,0,0,10,0,2,0,0,2,0,6,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,51,0,36,0,0,0,0,3,22,6,70,0,0,0,0,1,0,0,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,71,2,0,0,78,0,99,0,0,0,27,5,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,94,16,0,0,0,0,0,0,0,0,215,0,0,745,0,0,1,0,1,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,28,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,266,11,2 +2,0,0,3,0,47,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,7,0,0,0,0,1,0,0,0,38,0,47,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,7,34,0,0,0,0,0,1,0,0,0,0,0,10,0,0,287,47,94,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,38,0,0,1,47,0,386,35,0,0,0,2,0,234,0,0,0,0,540,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,68,0,0,0,7,10,62,355,60,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,151,3,0,0,153,0,205,0,0,0,120,1,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,9,129,112,0,0,84,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,0,0,0,0,0,1,85,38,0,8,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,5,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,959,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,504,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,283,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,112,2,0,0,119,0,146,0,0,0,61,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,27,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,104,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,201,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,46,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,113,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,175,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,86,3,0,0,111,0,161,0,0,0,46,3,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,104,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,10,2 +2,0,0,2,0,14,2,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,2,0,14,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,0,61,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1038,14,62,0,2,0,0,0,0,0,20,0,0,0,0,0,1,12,216,0,0,2,0,0,0,0,0,17,0,8,0,0,2,0,9,0,0,0,0,241,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,185,0,85,0,0,0,0,3,28,27,191,0,0,0,0,1,0,0,0,0,0,0,0,0,414,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,3,113,2,0,0,104,0,148,0,0,0,40,5,0,0,0,0,0,0,0,0,0,36,1,0,0,0,2,0,0,0,0,1,102,15,0,0,0,0,0,0,0,0,67,0,0,219,0,0,1,0,0,0,0,0,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,1,0,0,0,0,1,16,14,0,2,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,222,48,2 +2,0,0,2,0,12,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,2,0,12,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,10532,12,45,0,2,0,0,0,0,0,10,0,0,0,0,0,1,4,1368,0,0,2,0,0,0,0,0,9,0,3,0,0,2,0,17,0,0,0,0,145,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,944,0,38,0,0,0,0,3,26,16,945,0,0,0,0,1,0,0,0,0,0,0,0,0,4179,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,92,2,0,0,110,0,143,0,0,0,39,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,96,25,0,0,0,0,0,0,0,0,918,0,0,3613,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,1,0,0,0,0,1,14,93,0,2,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1399,33,2 +5,0,0,2,0,10,2,0,10,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,10,0,41,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,40,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1060,10,81,0,51,0,0,0,0,0,4,0,0,0,0,0,1,4,473,0,0,2,0,0,0,0,0,17,0,1,0,0,2,0,58,0,0,0,0,173,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,26,0,0,0,80,43,26,26,50,0,0,0,0,1,0,0,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,85,2,0,0,67,0,192,0,0,0,16,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,1,90,5,0,0,0,0,0,0,0,0,833,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,401,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,90,0,0,0,80,1,12,50,0,51,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,245,7,2 +229,0,0,3,0,120,3,0,112,2,3,0,0,0,5,0,549,0,6,1,0,0,0,1,0,0,324,0,0,0,108,0,0,0,38,0,120,6,0,0,27,0,0,0,0,0,0,0,0,0,0,0,108,138,0,0,0,0,0,1,0,0,0,0,0,5,0,0,1268,120,1024,0,109,0,0,0,0,0,0,0,0,0,0,0,1,1,60,0,0,38,0,0,0,0,0,437,0,0,0,0,2,0,1987,0,3,0,0,3131,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,18,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,154,0,152,0,0,0,216,465,242,373,166,0,0,0,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,625,3,0,0,368,0,392,0,0,0,116,33,0,0,0,0,0,0,0,0,0,678,0,0,0,0,2,0,0,0,0,109,202,1,0,0,0,0,0,0,0,0,1122,0,0,36,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,109,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,117,1,1,1,0,108,0,0,0,0,1,158,38,0,432,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,552,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,36,0,0,0,0,0,1,0,0,0,0,0,3,0,0,239,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,90,0,0,2,0,0,0,0,0,6,0,2,0,0,2,0,26,0,1,0,0,143,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,70,0,51,0,0,0,32,19,33,18,85,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,169,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,633,0,0,28,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,23,0,17,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,18,2 +57,0,0,5,0,47,6,0,28,12,3,0,0,2,17,0,539,0,7,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,14,898,47,24,0,0,55,0,0,0,1,0,0,5,0,0,0,0,1,180,0,0,0,0,0,1,0,0,0,0,0,17,0,0,8439,47,625,0,1,0,0,0,0,0,27,0,0,0,0,0,8,21,1246,0,0,14,0,0,0,0,0,94,5,6,0,0,2,0,570,0,13,0,0,2802,0,0,0,0,12,14,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,586,0,131,0,0,0,0,3,254,3513,639,0,0,0,0,1,0,3,0,0,0,0,0,0,2820,0,14,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,34,23,280,5,0,0,277,0,392,0,0,0,133,8,0,0,0,0,0,0,4,0,0,602,1,0,0,0,9,0,0,0,0,1,135,35,0,0,0,0,12,0,24,12,2105,1,0,184,6,0,1,1,0,0,0,0,11,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,0,0,0,0,0,1,61,178,0,2,12,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,5,666,50,2 +19,0,0,3,0,13,128,0,316,0,65,0,0,0,2,0,252,0,6,1,0,0,0,1,0,0,141,0,47,0,48,0,0,0,0,0,13,25,0,0,391,0,0,0,1,0,0,1,0,0,0,0,47,106,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2372,13,1068,0,95,0,0,0,0,0,41,0,0,0,0,0,1,3,34,0,0,0,0,0,1,253,0,2146,305,1,0,0,2,0,2049,0,0,0,0,3036,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,54,0,49,0,0,0,94,237,31,1072,58,0,0,0,0,1,0,0,0,0,0,0,0,0,1564,0,1,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,3,319,3,0,0,326,0,259,0,0,0,252,75,0,0,0,0,0,0,0,0,0,769,1,0,0,0,2,0,0,0,0,48,95,614,0,0,708,0,0,0,0,0,737,0,0,55,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,48,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,94,0,0,0,0,1,13,104,0,236,0,0,0,0,0,0,472,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,79,2 +8,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,170,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,194,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,157,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,68,3,0,0,42,0,149,0,0,0,6,4,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,646,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,171,2 +0,0,0,2,0,12,2,0,17,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,56,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9697,12,52,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1271,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,16,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,877,0,50,0,0,0,0,3,31,8,894,0,0,0,0,1,0,0,0,0,0,0,0,0,3867,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,95,2,0,0,116,0,110,0,0,0,48,3,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,96,29,0,0,0,0,0,0,0,0,833,0,0,3295,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,102,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1312,23,2 +11,0,0,3,0,11,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,11,6,0,0,75,0,3,0,1,0,0,3,0,0,0,0,0,60,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1332,11,70,0,23,0,0,0,0,0,12,0,0,0,0,0,1,8,649,0,0,0,0,0,0,0,0,34,0,4,0,0,2,0,36,0,0,0,0,185,0,0,0,0,35,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,129,0,119,0,0,0,0,3,59,17,169,0,0,0,0,1,0,0,0,0,0,0,0,0,408,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,79,3,0,0,88,0,177,0,0,0,18,20,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,93,11,0,0,0,0,4,0,0,0,866,0,0,760,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,22,0,0,0,0,1,11,103,0,23,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,536,11,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,1,0,0,910,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,455,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,292,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,41,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,112,2,0,0,119,0,132,0,0,0,61,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,27,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1020,11,59,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,134,0,0,0,0,0,0,0,0,15,0,5,0,0,2,0,14,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,121,0,86,0,0,0,0,3,30,13,138,0,0,0,0,1,0,0,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,8,3,107,2,0,0,247,0,351,0,0,0,180,17,0,0,0,0,0,0,2,0,0,41,1,0,0,0,2,0,0,0,0,0,101,160,0,0,0,0,0,0,0,0,62,0,0,87,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,499,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,214,32,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,59,0,1,0,0,0,1,0,0,0,0,0,1,0,0,8806,12,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1135,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,806,0,49,0,0,0,0,3,31,8,823,0,0,0,0,1,0,0,0,0,0,0,0,0,3485,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,88,2,0,0,112,0,110,0,0,0,46,7,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,27,0,0,0,0,0,0,0,0,765,0,0,3007,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1179,23,2 +8,0,0,3,0,12,2,0,4,0,2,0,0,0,3,0,13,0,7,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,2,0,12,12,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,2,0,0,87,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,2,0,0,0,0,0,7,0,0,0,0,2,0,14,0,0,0,0,1509,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,27,0,0,0,0,3,30,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,49,3,0,0,50,0,137,0,0,0,12,1,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,94,5,0,0,0,0,2,0,4,2,605,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,14,2,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,5,2 +3,0,0,6,0,37,63,0,131,1,15,0,0,6,5,0,748,0,6,1,0,0,0,8,0,11,0,0,5,0,0,0,0,0,2,835,37,6,0,0,195,0,2,0,1,0,0,2,0,0,0,0,1,212,0,0,0,0,0,1,0,0,0,0,0,7,0,0,44714,37,950,0,3,0,0,0,0,0,14,0,0,0,0,0,8,23,10297,0,0,2,0,0,1,82,0,791,50,3,0,0,2,0,1193,0,0,1,0,5881,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1920,0,58,0,0,0,1,4,258,1555,1916,0,0,0,0,1,0,3,0,0,0,0,0,0,646,0,1,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,1,0,86,19,235,6,0,0,301,0,366,0,0,0,126,4,0,0,0,0,0,0,0,0,0,974,1,0,0,0,9,0,0,0,0,0,121,221,0,0,81,0,0,0,0,0,6633,1,0,776,6,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,6,361,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,5,0,0,0,0,1,39,211,0,4,12,0,0,0,0,0,243,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4254,31,2 +18,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14766,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5749,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,75848,0,0,0,0,8,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,58,0,0,0,0,3,56,61,29573,0,0,0,0,1,0,0,0,0,0,0,0,0,93234,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,438,3,0,0,91,0,220,0,0,0,25,336,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,32746,2 +7,0,0,11,2,64,13,2,61,31,8,0,0,6,55,0,825,0,7,7,0,4,0,8,0,13,9,0,16,0,6,1,0,2,19,1039,66,84,0,0,163,0,0,0,1,0,0,2,0,0,0,0,9,217,0,0,0,0,0,1,0,0,0,18,0,38,0,0,27461,64,1101,0,20,0,0,0,0,0,22,6,0,0,0,0,10,22,4830,0,2,19,2,0,0,0,0,237,20,3,0,0,2,2,1063,0,34,1,0,3529,0,2,0,0,12,0,4,0,3,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,1,0,16,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,12,12,12,0,0,0,3055,0,128,0,0,0,13,27,338,674,3059,0,0,0,0,1,0,8,0,0,0,0,0,0,949,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,2,0,97,51,467,25,0,0,409,0,588,0,0,0,170,49,0,0,0,0,0,0,0,0,0,975,1,0,0,0,19,0,0,0,0,8,151,50,0,0,6,1,3,0,0,0,2992,1,0,567,9,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,31,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,9,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,75,1,1,1,0,31,0,0,0,6,17,85,577,0,31,14,0,0,0,0,0,284,2,0,0,0,0,0,0,0,0,0,0,0,5,0,1,35,0,0,0,0,0,0,0,0,0,0,0,4,0,1,1489,128,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14223,0,0,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6299,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73646,0,0,0,0,6,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,60,0,0,0,0,3,60,61,28487,0,0,0,0,1,0,0,0,0,0,0,0,0,92546,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,449,3,0,0,91,0,215,0,0,0,25,323,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,615,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,32,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,30632,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,16,0,7,1,0,0,0,1,0,0,0,0,25,0,113,0,0,0,0,0,11,6,0,0,131,0,3,0,1,0,0,3,0,0,0,0,112,76,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1760,11,186,0,138,0,0,0,0,0,12,0,0,0,0,0,1,8,609,0,0,0,0,0,0,0,0,485,0,3,0,0,2,0,152,0,0,0,0,884,0,0,0,0,39,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,135,0,121,0,0,0,224,227,59,298,169,0,0,0,0,1,0,0,0,0,0,0,0,0,430,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,153,3,0,0,86,0,226,0,0,0,16,35,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,113,91,11,0,0,0,0,4,0,0,0,940,0,0,872,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,473,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,249,0,0,0,224,1,11,103,0,138,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,543,20,2 +20,0,0,3,0,18,26,0,81,0,2,6,0,0,2,5,19,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,8,0,18,6,0,0,19,0,2,0,1,0,0,7,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,13,0,0,1895,18,177,0,4,0,0,0,0,0,27,0,0,0,0,1,1,12,308,0,0,8,0,0,0,0,0,16,0,10,0,0,2,0,95,0,0,0,0,982,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,255,0,102,0,0,0,0,3,37,18,269,0,0,0,0,1,0,0,0,0,0,0,0,0,714,0,2,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,16,9,137,3,0,0,189,0,267,0,0,0,124,10,0,0,0,0,0,0,0,0,0,147,1,0,0,0,2,0,0,0,0,1,101,69,0,0,0,0,0,0,0,0,1595,0,0,293,0,0,1,0,1,0,0,0,14,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,26,221,0,4,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,311,456,2 +6,0,0,2,0,14,2,0,18,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,76,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2393,14,77,0,3,0,0,0,0,0,24,0,0,0,0,0,1,9,228,0,0,3,0,0,0,0,0,16,0,10,0,0,2,0,18,0,0,0,0,268,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,195,0,80,0,0,0,0,3,33,10,197,0,0,0,0,1,0,0,0,0,0,0,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,10,3,120,2,0,0,258,0,420,0,0,0,188,14,0,0,0,0,0,0,2,0,0,46,1,0,0,0,2,0,0,0,0,1,103,154,0,0,0,0,0,0,0,0,648,0,0,234,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,449,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,226,38,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14247,0,0,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6031,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,72249,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,60,0,0,0,0,3,60,61,28535,0,0,0,0,1,0,0,0,0,0,0,0,0,90223,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,434,3,0,0,91,0,217,0,0,0,25,312,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,32,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,28730,2 +11,0,0,3,0,12,7,0,24,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,3,0,12,6,0,0,33,0,0,0,1,0,0,0,0,0,0,0,2,48,0,0,0,0,0,1,0,0,0,0,0,3,0,0,325,12,55,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,25,0,0,3,0,0,1,20,0,185,30,0,0,0,2,0,97,0,0,0,0,268,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,37,0,0,0,4,7,29,383,138,0,0,0,0,1,0,0,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,69,3,0,0,60,0,137,0,0,0,27,4,0,0,0,0,0,0,0,0,0,58,0,0,0,0,2,0,0,0,0,3,96,44,0,0,98,0,0,0,0,0,24,0,0,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,0,1,15,19,0,3,0,0,0,0,0,0,61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,10,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,1,0,0,945,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,490,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,295,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,112,2,0,0,119,0,145,0,0,0,61,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,27,2 +21,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14232,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6307,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,72372,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,28505,0,0,0,0,1,0,0,0,0,0,0,0,0,93819,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,458,3,0,0,91,0,237,0,0,0,25,320,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,615,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,32033,2 +10,0,0,3,0,18,2,0,12,0,3,0,0,0,3,0,50,0,7,1,0,0,0,1,0,0,24,0,0,0,9,0,0,0,7,0,18,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,8,25,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,18,101,0,9,0,0,0,0,0,0,0,0,0,0,0,1,1,39,0,0,7,0,0,0,0,0,37,0,0,0,0,2,0,161,0,1,0,0,302,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,46,0,39,0,0,0,16,43,45,46,65,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,82,3,0,0,60,0,147,0,0,0,21,11,0,0,0,0,0,0,0,0,0,77,0,0,0,0,2,0,0,0,0,9,98,1,0,0,0,0,0,0,0,0,679,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,8,0,0,0,0,1,25,7,0,33,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,213,2 +2,0,0,3,0,10,2,0,13,0,2,0,0,0,4,0,18,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,40,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,81,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1637,10,52,0,1,0,0,0,0,0,15,0,0,0,0,0,2,9,605,0,0,1,0,0,0,0,0,14,0,5,0,0,2,0,26,0,0,0,0,157,0,0,0,0,1,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,152,0,54,0,0,0,0,3,28,21,157,0,0,0,0,1,0,0,0,0,0,0,0,0,408,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,20,3,84,3,0,0,101,0,203,0,0,0,44,8,0,0,0,0,0,0,2,0,0,45,1,0,0,0,3,0,0,0,0,1,92,30,0,0,0,0,0,0,0,0,877,0,0,878,0,0,1,0,1,0,0,0,9,0,3,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,216,0,1,0,0,1,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,368,64,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,1,0,0,920,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,470,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,251,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,41,0,0,0,0,3,40,10,52,0,0,0,0,1,0,0,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,111,2,0,0,119,0,146,0,0,0,61,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,27,2 +6,0,0,3,0,17,3,0,7,1,3,0,0,0,4,1,55,0,6,1,0,0,0,3,0,0,0,0,4,0,1,0,0,0,4,0,17,6,0,0,8,0,0,0,1,0,0,1,0,0,0,0,0,36,0,0,0,0,0,1,0,1,0,0,0,4,0,0,27159,17,85,0,5,0,0,0,0,0,4,0,0,0,0,0,3,5,71,0,0,4,0,0,0,0,0,14,0,0,0,0,2,0,30,0,2,0,0,13523,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,85,0,91,0,0,0,0,3,55,23,6046,0,0,0,0,1,0,0,0,0,0,0,0,0,7805,0,1978,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,5,96,3,0,0,72,0,183,0,0,0,27,17,0,0,0,0,0,0,0,0,0,79,1,0,0,0,4,0,0,0,0,1,99,11,0,0,0,0,0,0,0,0,861,0,0,8,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,2,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,4,0,0,0,0,13,21,20,0,5,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,124,2 +178,0,0,9,5,176,386,4,682,262,90,0,0,6,273,1,1917,0,11,15,0,4,0,9,0,40,3,0,68,0,6,0,0,4,110,1110,180,102,0,0,1808,0,0,0,1,0,0,14,0,0,0,0,18,573,0,0,0,0,0,1,0,0,0,1,0,304,0,0,38485,176,3814,0,95,0,0,0,0,0,111,6,0,0,0,7,19,76,8035,0,4,110,4,0,7,528,0,4327,160,19,0,0,8,5,5089,0,261,12,0,6908,0,0,0,0,25,112,10,0,0,0,0,1,0,0,0,7,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,8,2,24,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,1,1,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,69,12,12,12,0,0,0,2348,0,539,0,0,0,22,38,575,3812,2303,0,0,0,0,1,0,10,0,0,0,0,0,0,4180,0,0,0,0,0,0,0,0,0,2,0,0,14,1,0,0,0,0,0,1,1,302,340,1144,15,0,0,1532,0,1857,0,2,0,987,91,0,0,0,0,0,0,0,0,0,3366,1,0,0,0,28,0,0,0,0,11,302,1250,0,0,421,0,1,0,0,0,7679,1,0,311,11,0,1,4,0,0,0,0,25,0,0,0,8,0,0,0,0,0,253,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,11,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,198,1,1,1,0,135,0,0,0,8,33,290,476,0,103,14,0,0,0,0,0,2196,7,0,0,0,0,0,0,1,0,0,0,0,6,0,4,276,0,0,0,0,0,0,0,0,0,0,0,4,0,2,4626,1631,2 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1090,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,54,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,620,0,0,0,0,0,15,43,205,0,0,0,0,0,0,0,0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,20,2,0,0,60,0,84,0,0,0,48,3,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,293,0,0,264,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,112,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1393,7,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,174,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,31,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,202,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,67,3,0,0,42,0,150,0,0,0,6,5,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,648,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,171,2 +3,0,0,5,0,36,6,0,37,0,5,0,0,6,5,0,555,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,762,36,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,1,177,0,0,0,0,0,1,0,0,0,0,0,2,0,0,6684,36,612,0,3,0,0,0,0,0,11,0,0,0,0,0,8,24,1328,0,0,1,0,0,0,0,0,190,20,2,0,0,2,0,594,0,0,2,0,1271,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,485,0,59,0,0,0,1,4,274,351,483,0,0,0,0,1,0,4,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,24,178,5,0,0,184,0,260,0,0,0,41,2,0,0,0,0,0,0,0,0,0,620,1,0,0,0,9,0,0,0,0,0,119,11,0,0,8,0,0,0,0,0,2213,1,0,60,6,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,5,0,0,0,0,1,37,20,0,4,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,603,28,2 +6,0,0,2,0,14,2,0,28,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,6,0,1,0,0,2,119,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2314,14,105,0,3,0,0,0,0,0,27,0,0,0,0,0,1,9,338,0,0,3,0,0,0,0,0,17,0,7,0,0,2,0,60,0,0,0,0,304,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,266,0,101,0,0,0,4,9,33,17,269,0,0,0,0,1,0,0,0,0,0,0,0,0,618,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,10,3,144,2,0,0,283,0,338,0,0,0,211,20,0,0,0,0,0,0,10,0,0,66,1,0,0,0,2,0,0,0,0,1,115,159,0,0,0,0,0,0,0,0,704,0,0,315,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,548,0,9,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,329,44,2 +8,0,0,4,0,36,9,0,40,0,3,0,0,2,3,0,683,0,6,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,2,937,36,6,0,0,23,0,2,0,1,0,0,3,0,0,0,0,1,292,0,0,0,0,0,1,0,0,0,0,0,4,0,0,34268,36,767,0,1,0,0,0,0,0,25,0,0,0,0,0,8,20,6317,0,0,2,0,0,0,0,0,87,5,9,0,0,2,0,704,0,1,0,0,1373,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,5351,0,473,0,0,0,0,3,258,690,5879,0,0,0,0,1,0,3,0,0,0,0,0,0,2405,0,266,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,34,11,213,4,0,0,234,0,308,0,0,0,80,4,0,0,0,0,0,0,0,0,0,746,1,0,0,0,9,0,0,0,0,0,117,25,0,0,0,0,0,0,0,0,2577,1,0,138,9,0,1,1,0,0,0,0,26,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,38,76,0,2,12,0,0,0,0,0,390,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1519,31,2 +17,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,13774,0,0,0,1,0,0,1,0,0,0,0,4,56,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5473,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,67403,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0,69,0,57,0,0,0,8,9,54,69,27609,0,0,0,0,1,0,0,0,0,0,0,0,0,90152,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,371,3,0,0,78,0,257,0,0,0,12,245,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,615,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,6,1,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,30327,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +4,0,0,6,2,28,3,8,132,6,5,0,0,0,13,0,422,0,6,6,0,3,2,2,0,0,388,0,4,0,2,0,0,2,14,0,30,6,31,0,48,0,0,0,1,0,0,3,0,0,0,0,1,154,0,19,0,0,0,1,0,0,0,5,0,13,0,0,1783,28,1095,0,6,0,0,0,0,0,10,6,0,0,0,2,4,10,193,0,8,14,2,0,0,0,0,28,0,5,0,0,2,2,1504,0,9,0,0,899,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,12,0,0,2,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,2,0,0,0,0,0,1,23,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,1,0,208,0,0,0,0,0,0,182,0,68,0,0,0,2,296,61,80,1043,0,0,0,0,1,0,0,0,0,1,0,0,0,2309,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,14,15,281,8,0,0,265,0,498,0,0,0,145,26,0,0,0,0,0,0,0,0,0,581,1,0,0,0,13,0,0,0,0,2,110,78,0,0,0,0,3,0,0,0,1442,0,0,175,0,0,1,0,1,0,0,0,3,0,3,0,2,0,0,0,0,0,6,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,6,0,0,0,2,18,44,314,0,394,0,0,0,0,0,0,44,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,4,0,1,242,52,2 +228,0,0,3,0,120,3,0,114,2,3,0,0,0,5,0,547,0,6,1,0,0,0,1,0,0,323,1,0,0,109,0,0,0,110,0,120,6,0,0,63,0,0,0,0,0,0,0,0,0,0,0,108,80,0,0,0,0,0,1,0,0,0,0,0,5,0,0,1585,120,1110,0,109,0,0,0,0,0,4,0,0,0,0,0,1,1,70,0,0,110,0,0,0,0,0,437,0,0,0,0,2,0,2065,0,3,0,0,5393,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,20,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,162,0,165,0,0,0,216,543,242,592,175,0,0,0,0,0,0,0,0,0,0,0,0,0,1692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,705,3,0,0,372,0,297,0,0,0,336,26,0,0,0,0,0,0,0,0,0,678,0,0,0,0,2,0,0,0,0,109,202,1,0,0,0,0,0,0,0,0,1124,0,0,108,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,109,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,117,1,1,1,0,108,0,0,0,0,1,230,110,0,433,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,355,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,61,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9141,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1175,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,830,0,49,0,0,0,0,3,27,8,847,0,0,0,0,1,0,0,0,0,0,0,0,0,3468,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,94,2,0,0,111,0,108,0,0,0,48,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,28,0,0,0,0,0,0,0,0,789,0,0,3109,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,99,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1218,24,2 +18,0,0,3,0,22,2,0,4,19,3,0,0,0,22,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,1,0,2,0,22,6,0,0,14671,0,0,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,22,0,0,5650,22,46,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,12,0,1,0,0,2,0,51,0,20,0,0,75380,0,0,0,0,8,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,0,3,54,61,29359,0,0,0,0,1,0,0,0,0,0,0,0,0,87270,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,23,408,3,0,0,79,0,205,0,0,0,13,313,0,0,0,0,0,0,0,0,0,48,1,0,0,0,3,0,0,0,0,1,104,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,4,0,0,0,0,1,24,2,0,5,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,28330,2 +17,0,0,8,0,69,73,0,124,9,19,0,0,2,30,0,28,0,7,3,0,0,0,9,0,8,3,0,13,0,12,0,0,0,34,0,69,13752,0,0,169,0,0,0,1,0,0,1,1,0,0,0,12,392,0,0,0,0,0,1,0,0,0,16,0,30,0,0,6316,69,291,0,23,0,0,0,0,0,68,0,0,0,0,0,11,18,175,0,0,34,0,0,2,31,0,376,60,5,0,0,2,0,331,0,12,0,0,3213,0,0,0,0,16,1,1,0,0,0,0,1,0,0,0,10,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,4,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,144,0,181,0,0,0,22,23,259,6405,148,0,0,0,0,1,0,3,0,0,0,0,0,0,6685,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,49,370,8,0,0,481,0,1272,0,0,0,294,36,0,0,0,0,0,0,0,0,0,283,1,0,2,0,12,0,0,0,0,7,152,226,0,0,140,0,0,0,1,0,13880,0,0,31,3,0,1,1,0,0,0,0,5,0,1,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1397,0,0,0,0,0,3,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,76,1,1,1,0,34,0,0,0,8,1,103,6042,0,27,9,0,0,0,0,0,144,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,2,453,103,2 +3,0,0,5,2,57,17,8,120,6,28,0,0,2,11,1,1007,0,6,10,0,2,1,18,0,11,3,0,5,0,2,0,0,1,18,3454,59,6,58,0,150,0,0,0,1,0,0,5,0,0,0,0,2,311,0,0,0,0,0,1,0,0,0,0,0,23,0,0,43817,57,1536,0,3,0,0,0,0,0,48,6,0,0,0,0,22,38,7229,0,8,18,1,0,1,63,0,625,70,9,0,0,2,2,1239,0,9,0,0,2299,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,12,12,12,0,0,0,6241,0,234,0,0,0,2,8,372,868,6332,0,0,0,0,1,0,4,0,0,0,0,0,0,1583,0,99,0,0,0,0,0,0,0,0,0,0,5,1,6,0,0,0,0,1,0,44,19,360,7,0,0,414,0,486,0,0,0,209,46,0,0,0,0,0,0,4,0,0,1192,1,0,0,0,31,0,0,0,0,1,150,203,0,0,180,0,0,0,0,0,4470,1,0,772,16,0,1,2,0,0,0,0,9,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,41,41,0,0,10,0,0,0,0,0,16,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,7,0,0,0,0,51,77,224,0,7,14,0,0,0,0,0,402,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,962,105,2 +4,0,0,0,0,11,2,0,4,0,1,0,0,0,3,0,9,0,6,1,0,0,0,3,0,0,0,0,1,0,5,0,0,0,1,0,11,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,4,14,0,0,0,0,0,1,0,0,0,0,0,1,0,0,66,11,25,0,5,0,0,0,0,0,0,0,0,0,0,0,3,3,21,0,0,1,0,0,0,0,0,10,0,0,0,0,2,0,14,0,1,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,24,0,0,0,8,7,31,11,42,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,45,0,0,0,41,0,97,0,0,0,5,2,0,0,0,0,0,0,0,0,0,25,0,0,0,0,4,0,0,0,0,1,93,1,0,0,0,0,0,0,0,0,30,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,9,0,0,0,8,1,12,1,0,6,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,8,2 +9,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,33,0,0,0,3,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,11,0,0,68,11,126,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,34,0,0,3,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,73,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,27,378,59,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,123,0,0,0,27,1,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,603,0,0,32,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,33,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,32,0,0,0,0,1,14,7,0,33,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,3,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,905,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,450,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,265,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,43,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,112,2,0,0,119,0,135,0,0,0,61,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,240,27,2 +20,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,15014,0,0,0,1,0,0,1,0,0,0,0,4,50,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5909,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,59,0,0,2,0,0,0,0,0,28,0,0,0,0,2,0,31,0,9,0,0,73184,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,67,0,55,0,0,0,8,9,54,69,30087,0,0,0,0,1,0,0,0,0,0,0,0,0,97893,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,395,3,0,0,78,0,231,0,0,0,12,275,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,611,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,33690,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,4,0,0,209,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,49,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,134,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,40,0,0,0,0,3,30,238,74,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,83,3,0,0,111,0,151,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,615,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,10,2 +7,0,0,3,0,29,5,0,12,0,2,0,0,2,2,0,28,0,6,2,0,0,0,6,0,8,9,0,4,0,4,0,0,0,5,0,29,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,4,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,675,29,57,0,6,0,0,0,0,0,3,0,0,0,0,0,7,12,154,0,0,5,0,0,0,0,0,74,5,0,0,0,2,0,77,0,0,0,0,514,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,91,0,56,0,0,0,6,15,182,22,95,0,0,0,0,1,0,3,0,0,0,0,0,0,204,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,95,3,0,0,112,0,199,0,0,0,42,4,0,0,0,0,0,0,0,0,0,57,0,0,0,0,8,0,0,0,0,1,111,25,0,0,0,0,0,0,0,0,706,0,0,5,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,5,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,12,0,0,0,0,1,34,69,0,16,9,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,40,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,49,11,71,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,24,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,9,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,41,0,0,0,8,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,96,34,2 +10,0,0,3,0,18,2,0,12,0,3,0,0,0,3,0,50,0,7,1,0,0,0,1,0,0,24,0,0,0,9,0,0,0,7,0,18,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,8,22,0,0,0,0,0,1,0,0,0,0,0,3,0,0,217,18,101,0,9,0,0,0,0,0,0,0,0,0,0,0,1,1,38,0,0,7,0,0,0,0,0,37,0,0,0,0,2,0,161,0,1,0,0,301,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,46,0,39,0,0,0,16,43,45,46,65,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,84,3,0,0,60,0,147,0,0,0,21,5,0,0,0,0,0,0,0,0,0,77,0,0,0,0,2,0,0,0,0,9,98,1,0,0,0,0,0,0,0,0,678,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,8,0,0,0,0,1,25,7,0,33,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,213,2 +10,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,21,0,1,0,0,0,0,0,10,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,98,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2568,10,78,0,22,0,0,0,0,0,16,0,0,0,0,0,1,10,1021,0,0,0,0,0,0,0,0,34,0,5,0,0,2,0,36,0,0,0,0,633,0,0,0,0,37,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,390,0,124,0,0,0,0,3,55,19,432,0,0,0,0,1,0,0,0,0,0,0,0,0,1127,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,153,3,0,0,107,0,265,0,0,0,39,6,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,720,0,0,887,0,0,1,0,1,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,21,0,0,0,0,1,10,170,0,22,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,430,32,2 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,978,10,59,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,121,0,0,0,0,0,0,0,0,15,0,5,0,0,2,0,14,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,118,0,84,0,0,0,0,3,26,13,135,0,0,0,0,1,0,0,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,8,3,113,2,0,0,244,0,311,0,0,0,180,14,0,0,0,0,0,0,2,0,0,41,1,0,0,0,2,0,0,0,0,0,100,160,0,0,0,0,0,0,0,0,53,0,0,81,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,499,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,195,32,2 +12,0,0,3,0,18,2,0,15,0,3,0,0,0,3,0,15,0,7,1,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,18,6,0,0,14,0,3,0,1,0,0,11,0,0,0,0,0,126,0,0,0,0,0,1,0,0,0,0,0,3,0,0,5226,18,118,0,5,0,0,0,0,0,45,0,0,0,0,0,1,24,1034,0,0,6,0,0,0,0,0,28,0,17,0,0,2,0,21,0,1,0,0,611,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,4,1,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,504,0,106,0,0,0,0,3,41,30,502,0,0,0,0,1,0,0,0,0,0,0,0,0,1154,0,0,0,0,0,0,0,0,0,0,0,0,11,0,14,0,0,0,0,0,0,8,4,137,3,0,0,186,0,272,0,0,0,112,19,0,0,0,0,0,0,4,0,0,45,1,0,0,0,2,0,0,0,0,1,100,67,0,0,0,0,0,0,0,0,428,0,0,1451,0,0,1,0,1,0,0,0,17,0,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,4,0,0,0,0,1,24,436,0,5,0,0,1,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,735,141,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13921,0,0,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6125,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,72575,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,27883,0,0,0,0,1,0,0,0,0,0,0,0,0,90308,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,434,3,0,0,91,0,221,0,0,0,25,305,0,0,0,0,0,0,0,0,0,42,0,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,29243,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,8,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,5,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +11,0,0,3,0,12,98,0,115,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,3,0,12,6,0,0,215,0,0,0,1,0,0,0,0,0,0,0,16,48,0,0,0,0,0,1,0,0,0,0,0,3,0,0,350,12,251,0,17,0,0,0,0,0,1,0,0,0,0,0,1,1,25,0,0,3,0,0,1,111,0,878,30,0,0,0,2,0,566,0,0,0,0,438,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,37,0,0,0,32,35,29,777,49,0,0,0,0,1,0,0,0,0,0,0,0,0,532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,57,3,0,0,151,0,139,0,0,0,118,3,0,0,0,0,0,0,0,0,0,240,0,0,0,0,2,0,0,0,0,17,96,226,0,0,98,0,0,0,0,0,24,0,0,16,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,32,0,0,0,32,1,15,19,0,17,0,0,0,0,0,0,243,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,6,2 +18,0,0,3,0,22,2,0,4,19,3,0,0,0,22,0,10,0,7,2,0,0,0,1,0,0,0,0,2,0,3,0,0,0,2,0,22,6,0,0,14661,0,0,0,1,0,0,1,0,0,0,0,2,54,0,0,0,0,0,1,0,0,0,0,0,22,0,0,5306,22,46,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,2,0,0,0,0,0,18,0,1,0,0,2,0,51,0,20,0,0,73174,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,4,7,54,65,29339,0,0,0,0,1,0,0,0,0,0,0,0,0,93440,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,23,369,3,0,0,79,0,204,0,0,0,13,264,0,0,0,0,0,0,0,0,0,48,1,0,0,0,3,0,0,0,0,3,104,6,0,0,0,0,0,0,0,0,611,0,0,18,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,4,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,6,0,0,0,4,1,24,2,0,5,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,34872,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14451,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5897,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,71802,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,58,0,0,0,0,3,56,63,28943,0,0,0,0,1,0,0,0,0,0,0,0,0,91838,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,437,3,0,0,91,0,231,0,0,0,25,381,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,615,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,28,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,31296,2 +0,0,0,8,0,34,21,0,36,24,3,0,0,2,28,0,482,0,7,3,0,0,0,6,0,10,0,0,3,0,1,0,0,0,2,898,34,9,0,0,108,0,0,0,1,0,0,18,0,0,0,0,1,405,0,0,0,0,0,1,0,0,0,0,0,28,0,0,28618,34,707,0,1,0,0,0,0,0,87,0,0,0,0,0,8,35,4549,0,0,2,0,0,0,0,0,192,5,19,0,0,2,0,599,0,25,0,0,1650,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,3966,0,208,0,0,0,0,3,234,387,3954,0,0,0,0,1,0,3,0,0,0,0,0,0,1247,0,0,0,0,0,0,0,0,0,0,0,0,18,1,8,0,0,0,0,1,0,32,42,286,14,0,0,443,0,996,0,0,0,292,18,0,0,0,0,0,0,0,0,0,579,1,0,0,0,9,0,0,0,0,0,125,214,0,0,0,0,0,0,0,1,1435,1,0,466,6,0,1,1,0,0,0,0,50,0,0,0,1,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,961,0,2,12,0,0,0,0,0,118,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,26,0,0,0,0,0,0,0,0,0,0,0,0,0,18,905,162,2 +8,0,0,3,0,30,5,0,12,0,2,0,0,2,2,0,28,0,6,2,0,0,0,6,0,8,9,0,2,0,4,0,0,0,6,0,30,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,4,87,0,0,0,0,0,1,0,0,0,0,0,2,0,0,707,30,55,0,4,0,0,0,0,0,3,0,0,0,0,0,7,12,163,0,0,6,0,0,0,0,0,72,5,0,0,0,2,0,75,0,0,0,0,513,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,99,0,63,0,0,0,6,12,183,21,109,0,0,0,0,1,0,4,0,0,0,0,0,0,237,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,99,3,0,0,121,0,208,0,0,0,51,4,0,0,0,0,0,0,0,0,0,57,0,0,0,0,8,0,0,0,0,1,112,31,0,0,0,0,0,0,0,0,701,0,0,3,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,4,5,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,3,0,0,0,0,1,36,74,0,14,9,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,51,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,4,0,0,143,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,31,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,128,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,170,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,214,5,0,0,229,0,327,0,1,0,55,3,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,116,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,34,0,3,0,0,0,0,0,0,53,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,97,15,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,7,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +11,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,51,0,0,0,0,0,1,0,0,0,0,0,3,0,0,316,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,25,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,200,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,36,0,0,0,8,11,28,400,48,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,54,3,0,0,62,0,130,0,0,0,29,7,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,24,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,5,2 +25,0,0,4,0,50,5,0,18,27,3,0,0,0,37,0,20,0,6,1,0,0,0,2,0,0,0,0,5,0,3,0,0,0,37,0,50,6,0,0,130,0,0,0,1,0,0,1,1,0,0,0,2,64,0,0,0,0,0,1,0,0,0,26,0,38,0,0,12502,50,98,0,8,0,0,0,0,0,11,0,0,0,0,0,2,4,39,0,0,37,0,0,0,0,0,23,0,4,0,0,2,0,106,0,32,0,0,5636,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,13,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,59,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,68,0,79,0,0,0,4,7,79,5892,89,0,0,0,0,1,0,0,0,0,0,0,0,0,10234,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,39,362,4,0,0,241,0,282,0,0,0,165,137,0,0,0,0,0,0,0,0,0,89,1,0,2,0,3,0,0,0,0,3,140,35,0,0,0,0,0,0,0,0,51,0,0,14,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3697410,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,9,0,0,0,0,1,87,146,0,8,0,0,1,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,27,0,0,0,0,0,0,0,0,0,0,0,0,0,1,107,26804,2 +0,0,0,2,0,10,2,0,23,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,3,0,1,0,0,4,0,0,0,0,0,90,0,0,0,0,0,1,0,0,0,0,0,1,0,0,7987,10,70,0,1,0,0,0,0,0,19,0,0,0,0,0,1,8,1984,0,0,0,0,0,0,0,0,13,0,4,0,0,2,0,22,0,0,0,0,593,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,73,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1122,0,154,0,0,0,0,3,26,7,1161,0,0,0,0,1,0,0,0,0,0,0,0,0,3002,0,0,0,0,0,0,0,0,0,0,0,0,4,0,71,0,0,0,0,0,0,8,3,85,2,0,0,99,0,219,0,0,0,31,4,0,0,0,0,0,0,142,0,0,49,1,0,0,0,2,0,0,0,0,0,92,11,0,0,0,0,0,0,0,0,512,0,0,2471,0,0,1,1,1,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,132,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,71,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,109,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,67,0,0,0,0,0,0,0,4,1177,15,2 +1,0,0,3,0,13,2,0,36,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,13,6,0,0,8,0,3,0,1,0,0,4,0,0,0,0,0,80,0,0,0,0,0,1,0,0,0,0,0,3,0,0,22354,13,84,0,1,0,0,0,0,0,19,0,0,0,0,0,1,8,2974,0,0,3,0,0,0,0,0,13,0,6,0,0,2,0,15,0,1,0,0,566,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,53,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,2190,0,134,0,0,0,0,3,29,7,2228,0,0,0,0,1,0,0,0,0,0,0,0,0,6629,0,0,0,0,0,0,0,0,0,0,0,0,4,0,52,0,0,0,0,0,0,8,4,107,3,0,0,134,0,234,0,0,0,69,18,0,0,0,0,0,0,58,0,0,64,1,0,0,0,2,0,0,0,0,0,95,46,0,0,0,0,0,0,0,0,1689,0,0,7296,0,0,1,1,1,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,103,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,52,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,16,318,0,1,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,59,0,0,0,0,0,0,0,4,2287,26,2 +2,0,0,3,0,12,198,0,1011,0,201,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,12,6,0,0,1967,0,1,0,1,0,0,1,0,0,0,0,0,94,0,0,0,0,0,1,0,0,0,0,0,198,0,0,1192,12,1429,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,35,0,0,1,0,0,1,983,0,7293,15,2,0,0,2,0,4927,0,0,0,0,589,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,38,0,26,0,0,0,0,3,29,6886,54,0,0,0,0,1,0,0,0,0,0,0,0,0,915,0,1,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,101,3,0,0,294,0,271,0,0,0,224,7,0,0,0,0,0,0,0,0,0,1434,1,0,0,0,2,0,0,0,0,0,94,2567,0,0,30,0,0,0,0,0,609,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,116,0,1,0,0,0,0,0,0,2388,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,22,2 +11,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,50,0,0,0,0,0,1,0,0,0,0,0,3,0,0,300,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,26,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,186,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,37,0,0,0,8,11,29,397,138,0,0,0,0,1,0,0,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,52,3,0,0,62,0,139,0,0,0,29,1,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,25,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,8,2 +6,0,0,3,0,13,2,0,7,3,3,0,0,0,6,0,15,0,7,1,0,0,0,1,0,0,0,0,6,0,3,0,0,0,2,0,13,6,0,0,17,0,0,0,1,0,0,1,0,0,0,0,2,40,0,0,0,0,0,1,0,0,0,0,0,6,0,0,13943,13,41,0,9,0,0,0,0,0,3,0,0,0,0,0,1,3,36,0,0,2,0,0,0,0,0,12,0,1,0,0,2,0,23,0,4,0,0,2142,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,36,0,0,0,4,5,34,24,56,0,0,0,0,1,0,0,0,0,0,0,0,0,146,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,7,93,3,0,0,77,0,186,0,0,0,18,11,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,97,3,0,0,0,0,0,0,0,0,42,0,0,14,0,0,1,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,10,0,0,0,0,1,15,6,0,9,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,76,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,58,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +8,0,0,6,0,35,8,0,39,2,8,0,0,2,7,0,410,0,6,3,0,0,0,6,0,10,0,0,3,0,1,0,0,0,4,898,35,12,0,0,53,0,0,0,1,0,0,7,0,0,0,0,1,192,0,0,0,0,0,1,0,0,0,0,0,10,0,0,19928,35,516,0,1,0,0,0,0,0,37,0,0,0,0,0,8,23,3504,0,0,4,0,0,1,13,0,207,20,9,0,0,2,0,486,0,3,0,0,1214,0,0,0,0,2,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,12,12,12,0,0,0,2896,0,136,0,0,0,0,3,229,408,2891,0,0,0,0,1,0,3,0,0,0,0,0,0,769,0,1,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,34,13,202,6,0,0,249,0,341,0,0,0,108,9,0,0,0,0,0,0,7,0,0,480,1,0,0,0,9,0,0,0,0,1,119,70,0,0,29,0,2,0,4,2,1811,1,0,327,6,0,1,1,0,0,0,0,15,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,39,203,0,2,12,0,0,0,0,0,101,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,7,719,54,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,48,11,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,23,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,38,0,0,0,8,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,89,20,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,73,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,974,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,46,2,0,0,44,0,134,0,0,0,5,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,597,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,24,2 +1,0,0,4,0,13,3,0,28,0,8,0,0,0,2,0,15,0,7,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,13,6,0,0,47,0,0,0,1,0,0,2,0,0,0,0,0,56,0,0,0,0,0,1,0,0,0,0,0,5,0,0,411,13,66,0,1,0,0,0,0,0,9,0,0,0,0,0,2,6,68,0,0,3,0,0,1,20,0,176,20,3,0,0,2,0,101,0,0,0,0,204,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,68,0,42,0,0,0,0,3,30,110,92,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,13,90,4,0,0,149,0,194,0,0,0,89,3,0,0,0,0,0,0,0,0,0,63,1,0,0,0,3,0,0,0,0,0,99,107,0,0,37,0,0,0,0,0,40,0,0,57,0,0,1,0,1,0,0,0,4,0,1,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,16,213,0,1,0,0,0,0,0,0,73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,91,27,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,16,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,131,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,31,0,16,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,937,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,482,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,310,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,113,2,0,0,119,0,146,0,0,0,61,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,27,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,239,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,90,0,0,2,0,0,0,0,0,6,0,2,0,0,2,0,26,0,1,0,0,156,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,70,0,51,0,0,0,32,19,33,18,85,0,0,0,0,1,0,0,0,0,0,0,0,0,176,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,634,0,0,28,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,27,0,17,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,18,2 +6,0,0,2,0,13,2,0,20,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,2,94,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3626,13,101,0,3,0,0,0,0,0,30,0,0,0,0,0,1,11,504,0,0,3,0,0,0,0,0,18,0,10,0,0,2,0,52,0,0,0,0,933,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,414,0,99,0,0,0,4,9,29,21,418,0,0,0,0,1,0,0,0,0,0,0,0,0,681,0,0,0,0,0,0,0,0,0,0,0,0,7,0,4,0,0,0,0,0,0,10,3,125,2,0,0,319,0,434,0,0,0,250,14,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,1,103,215,0,0,0,0,0,0,0,0,699,0,0,471,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,654,0,9,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,309,50,2 +10,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,23,0,0,0,0,0,1,0,0,0,0,0,3,0,0,167,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,279,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,68,3,0,0,42,0,149,0,0,0,6,5,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,171,2 +11,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,51,0,0,0,0,0,1,0,0,0,0,0,3,0,0,325,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,32,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,220,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,42,0,0,0,8,11,29,400,145,0,0,0,0,1,0,0,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,59,3,0,0,62,0,140,0,0,0,29,4,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,27,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,10,2 +12,0,0,3,0,17,2,0,15,0,3,0,0,0,3,0,15,0,7,1,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,17,6,0,0,14,0,3,0,1,0,0,11,0,0,0,0,0,122,0,0,0,0,0,1,0,0,0,0,0,3,0,0,4754,17,118,0,5,0,0,0,0,0,45,0,0,0,0,0,1,24,928,0,0,6,0,0,0,0,0,28,0,17,0,0,2,0,21,0,1,0,0,581,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,4,1,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,431,0,101,0,0,0,0,3,37,30,429,0,0,0,0,1,0,0,0,0,0,0,0,0,1067,0,0,0,0,0,0,0,0,0,0,0,0,11,0,14,0,0,0,0,0,0,8,4,139,3,0,0,183,0,273,0,0,0,112,19,0,0,0,0,0,0,4,0,0,45,1,0,0,0,2,0,0,0,0,1,99,67,0,0,0,0,0,0,0,0,370,0,0,1315,0,0,1,0,1,0,0,0,17,0,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,4,0,0,0,0,1,23,436,0,5,0,0,1,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,628,142,2 +2,0,0,3,0,14,2,0,11,4,3,0,0,0,7,0,21,0,6,1,0,0,0,1,0,0,3,0,2,0,2,0,1,0,2,0,14,6,0,0,16,0,18,0,1,0,0,53,0,0,0,0,1,59,0,0,0,0,0,1,0,0,0,0,0,7,0,0,4522,14,257,0,4,0,0,0,0,0,109,0,0,0,0,602,1,107,488,0,0,2,0,0,0,0,0,64,0,52,0,0,2,0,39,0,5,0,0,199,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,576,0,184,0,0,0,2,8,40,13,480,0,0,0,0,1,0,0,0,0,0,0,0,0,2678,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,10,8,96,3,0,0,136,0,467,0,0,0,71,8,0,0,0,0,0,0,0,0,0,50,1,0,0,0,2,0,0,0,0,2,96,6,0,0,0,0,0,0,0,0,760,0,0,406,0,0,1,0,0,0,0,0,104,0,0,0,52,17,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,48,0,7,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2181,27,2 +2,0,0,2,0,8,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,2,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,968,8,30,0,1,0,0,0,0,0,5,0,0,0,0,0,1,6,472,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,6,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,24,0,0,0,0,3,22,5,48,0,0,0,0,1,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,70,2,0,0,76,0,95,0,0,0,26,4,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,93,16,0,0,0,0,0,0,0,0,207,0,0,729,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,28,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,229,9,2 +1,0,0,0,0,9,3,0,6,0,1,0,1,0,3,0,11,0,6,2,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,9,9,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,0,0,0,35,9,25,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0,0,1,0,0,1,0,0,8,0,0,0,0,4,0,11,0,0,0,0,1451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,19,0,15,0,0,0,0,3,23,11,25,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,13,50,0,0,0,42,0,146,0,0,0,6,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,91,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,1,0,0,0,0,1,10,1,0,2,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,40,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2538,10,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1015,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,528,0,0,0,0,34,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,390,0,127,0,0,0,0,3,56,19,431,0,0,0,0,1,0,0,0,0,0,0,0,0,1138,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,154,3,0,0,107,0,263,0,0,0,39,6,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,723,0,0,879,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,437,32,2 +16,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13676,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6446,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,72888,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,58,0,0,0,0,3,56,61,27395,0,0,0,0,1,0,0,0,0,0,0,0,0,93120,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,456,3,0,0,91,0,213,0,0,0,25,323,0,0,0,0,0,0,0,0,0,42,0,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,33032,2 +28,0,0,3,0,11,9,0,66,0,20,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,11,6,0,0,117,0,0,0,0,0,0,0,0,0,0,0,2,45,0,0,0,0,0,1,0,0,0,0,0,13,0,0,245,11,125,0,3,0,0,0,0,0,8,0,0,0,0,0,1,1,62,0,0,1,0,0,1,62,0,518,35,0,0,0,2,0,303,0,0,0,0,115,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,40,0,0,0,4,4,28,438,71,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,54,3,0,0,54,0,160,0,0,0,18,5,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2,0,0,0,0,1,91,149,0,0,74,0,0,0,0,0,605,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,12,1,0,3,0,0,0,0,0,0,167,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,77,2 +0,0,0,2,0,29,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,20,0,1,0,0,0,21,0,29,6,0,0,5,0,3,0,1,0,0,3,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,520,29,53,0,21,0,0,0,0,0,7,0,0,0,0,0,1,5,133,0,0,21,0,0,0,0,0,28,0,3,0,0,2,0,26,0,0,0,0,236,0,0,0,0,23,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,125,0,96,0,0,0,0,3,64,30,190,0,0,0,0,1,0,0,0,0,0,0,0,0,467,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,127,2,0,0,186,0,181,0,0,0,136,2,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,111,64,0,0,0,0,0,0,0,0,84,0,0,48,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,21,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,20,0,0,0,0,1,50,91,0,21,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,200,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,203,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,46,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,131,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,40,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,86,3,0,0,111,0,162,0,0,0,46,3,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,10,2 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,3,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,1,0,0,109,8,19,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,10,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,22,0,0,0,0,3,22,4,27,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,76,2,0,0,35,0,34,0,0,0,4,10,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,92,2,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,17,2 +48,0,0,21,7,98,78,8,619,52,195,0,0,0,77,0,225,0,9,12,0,10,4,18,1,4,63,0,20,0,19,3,0,7,61,0,106,97,8,0,1082,0,0,0,1,0,0,3,0,0,0,0,25,378,0,0,0,0,0,1,0,0,0,112,0,118,0,0,13799,98,1630,0,42,0,0,0,0,0,14,18,0,0,0,0,18,23,3541,0,8,61,7,0,5,472,0,3948,655,3,0,0,4,7,2655,0,66,0,0,4073,0,0,0,0,31,0,0,0,0,0,0,1,0,0,0,24,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,2,0,16,0,25,0,0,0,0,0,0,14,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,1,0,0,0,0,0,0,0,0,3,1,0,0,0,2,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,68,2,2,2,0,0,2,2639,2,276,0,0,0,46,136,244,24134,2887,0,0,0,0,1,0,0,0,0,0,1,1,0,4950,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,2,0,116,185,955,32,0,0,792,0,1535,0,1,0,387,180,0,0,0,0,0,0,4,0,0,1203,1,0,0,0,45,0,0,0,0,22,223,1031,0,0,2253,0,4,0,0,0,1076,0,0,1915,0,0,1,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,53,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,32,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,1,121,1,1,1,0,109,0,0,0,0,106,168,255,0,109,0,0,0,0,0,0,1122,18,0,0,0,0,0,0,0,0,0,0,0,8,0,1,60,0,0,0,0,0,0,0,0,0,0,0,10,0,4,1384,1604,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,24,0,21,0,0,0,1,0,0,0,0,0,6,0,0,207,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,71,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,49,0,0,0,0,3,58,44,113,0,0,0,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,87,3,0,0,83,0,113,0,0,0,29,4,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,208,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,15,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,57,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,5,2 +28,0,0,3,0,11,9,0,66,0,20,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,11,6,0,0,117,0,0,0,0,0,0,0,0,0,0,0,2,45,0,0,0,0,0,1,0,0,0,0,0,13,0,0,244,11,125,0,3,0,0,0,0,0,8,0,0,0,0,0,1,1,62,0,0,1,0,0,1,62,0,518,35,0,0,0,2,0,303,0,0,0,0,520,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,38,0,0,0,4,4,28,438,71,0,0,0,0,0,0,0,0,0,0,0,0,0,299,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,55,3,0,0,54,0,165,0,0,0,18,5,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2,0,0,0,0,1,91,149,0,0,74,0,0,0,0,0,605,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,12,1,0,3,0,0,0,0,0,0,167,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,77,2 +12,0,0,4,1,16,26,1,32,0,4,0,0,0,5,0,65,0,9,2,0,0,0,2,0,0,0,0,0,0,17,0,0,1,2,0,17,54,0,0,12,0,1,0,1,0,0,1,0,0,0,0,16,51,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2188,16,111,0,17,0,0,0,0,0,3,0,0,0,0,0,3,5,859,0,1,2,1,0,1,0,0,47,0,1,0,0,4,1,34,0,2,0,0,377,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,460,0,54,0,0,0,32,19,46,20,479,0,0,0,0,1,0,0,0,0,0,0,0,0,243,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,114,14,225,5,0,0,241,0,378,0,1,0,55,5,0,0,0,0,0,0,0,0,0,141,1,0,0,0,4,0,0,0,0,1,112,6,0,0,0,0,0,0,0,0,717,0,0,24,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,20,1,1,1,0,32,0,0,0,32,9,19,28,0,17,0,0,0,0,0,0,93,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,181,11,2 +15,0,0,35,5,68,161,5,210,34,57,0,0,8,59,2,1275,0,17,10,0,0,0,8,0,12,9,0,43,0,7,0,0,5,31,16980,73,246,0,0,258,0,0,0,1,0,0,1,0,0,0,0,8,981,0,0,0,0,0,1,0,0,0,12,0,42,0,0,44745,68,1735,0,49,0,0,0,0,0,72,0,0,0,0,0,17,209,6636,0,5,31,5,0,7,32,0,984,97,2,0,0,12,5,1379,0,36,154,0,5002,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,11,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,62,12,12,12,0,0,0,2382,0,117,0,0,0,35,53,1033,2298,2351,0,0,0,0,1,0,4,0,0,0,0,0,0,863,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,662,156,1144,48,0,0,1253,0,1763,0,6,0,499,97,0,0,0,0,0,0,0,0,0,1789,1,0,0,0,18,0,0,0,0,8,285,92,0,0,378,0,1,0,0,0,5258,1,0,495,35,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,42,42,0,0,6,1,0,0,0,0,35,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,72,1,1,1,0,134,0,0,0,0,71,104,116,0,59,12,0,0,0,0,0,302,6,0,0,0,0,0,0,0,0,0,0,0,7,0,2,42,0,0,0,0,0,0,0,0,0,0,0,5,0,1,2683,157,2 +17,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14217,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5748,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,69767,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,56,0,0,0,8,9,56,69,28509,0,0,0,0,1,0,0,0,0,0,0,0,0,95020,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,387,3,0,0,78,0,223,0,0,0,12,285,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,614,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,27,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,32944,2 +0,0,0,6,0,33,6,0,36,1,5,0,0,6,4,0,522,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,1,955,33,6,0,0,42,0,0,0,1,0,0,1,0,0,0,0,1,162,0,0,0,0,0,1,0,0,0,0,0,3,0,0,6165,33,578,0,2,0,0,0,0,0,12,0,0,0,0,0,8,17,1206,0,0,1,0,0,0,0,0,186,20,2,0,0,2,0,564,0,0,1,0,1500,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,397,0,34,0,0,0,0,3,254,424,387,0,0,0,0,1,0,3,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,84,19,197,6,0,0,214,0,555,0,0,0,73,9,0,0,0,0,0,0,0,0,0,585,1,0,0,0,9,0,0,0,0,0,119,31,0,0,6,0,0,0,0,0,1563,1,0,50,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,1,0,0,0,0,1,34,219,0,3,12,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,537,45,2 +19,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14015,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6317,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73203,0,0,0,0,5,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,28071,0,0,0,0,1,0,0,0,0,0,0,0,0,91983,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,443,3,0,0,91,0,218,0,0,0,25,308,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,30027,2 +1,0,0,7,2,30,53,2,81,2,9,0,0,2,11,0,119,0,10,3,0,0,0,5,0,9,0,0,3,0,1,0,0,2,6,0,32,174,0,0,68,0,0,0,1,0,0,3,0,0,0,0,2,157,0,0,0,0,0,1,0,0,0,0,0,12,0,0,976,30,208,0,3,0,0,0,0,0,14,0,0,0,0,1,7,17,174,0,2,6,2,0,3,7,0,218,20,5,0,0,6,2,108,0,7,0,0,613,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,128,0,62,0,0,0,1,4,189,105,139,0,0,0,0,1,0,3,0,0,0,0,0,0,409,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,245,35,431,9,0,0,482,0,800,0,2,0,145,10,0,0,0,0,0,0,0,0,0,285,1,0,0,0,8,0,0,0,0,3,140,52,0,0,34,0,0,0,0,0,347,0,0,59,3,0,1,1,0,0,0,0,7,0,0,0,7,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,31,1,1,1,0,1,0,0,0,0,17,38,265,0,4,9,0,0,0,0,0,100,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,1,242,61,2 +6,0,0,2,0,13,2,0,20,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,2,78,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2425,13,93,0,3,0,0,0,0,0,24,0,0,0,0,0,1,9,223,0,0,3,0,0,0,0,0,14,0,10,0,0,2,0,52,0,0,0,0,275,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,193,0,79,0,0,0,4,9,29,12,195,0,0,0,0,1,0,0,0,0,0,0,0,0,487,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,10,3,116,2,0,0,255,0,419,0,0,0,188,13,0,0,0,0,0,0,2,0,0,58,1,0,0,0,2,0,0,0,0,1,102,154,0,0,0,0,0,0,0,0,672,0,0,246,0,0,1,0,0,0,0,0,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,449,0,9,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,224,37,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +11,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,49,0,0,0,0,0,1,0,0,0,0,0,3,0,0,317,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,27,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,222,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,36,0,0,0,8,11,28,400,48,0,0,0,0,1,0,0,0,0,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,56,3,0,0,62,0,129,0,0,0,29,4,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,26,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,5,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,53,0,0,0,0,0,1,0,0,0,0,0,4,0,0,142,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,127,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,166,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,219,5,0,0,229,0,328,0,1,0,55,4,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,32,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,16,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,40,0,0,0,0,0,1,0,0,0,0,0,3,0,0,244,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,92,0,0,2,0,0,0,0,0,6,0,2,0,0,2,0,26,0,1,0,0,129,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,71,0,52,0,0,0,32,19,33,18,86,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,634,0,0,28,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,45,0,17,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,19,2 +22,0,0,3,0,13,2,0,19,2,3,0,0,0,5,0,17,0,6,1,0,0,0,1,0,0,0,0,7,0,3,0,0,0,2,0,13,6,0,0,14,0,0,0,1,0,0,5,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,5,0,0,540,13,65,0,10,0,0,0,0,0,16,0,0,0,0,0,1,8,73,0,0,2,0,0,0,0,0,20,0,5,0,0,2,0,32,0,3,0,0,340,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,95,0,66,0,0,0,0,3,30,44,107,0,0,0,0,1,0,0,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,6,119,3,0,0,106,0,251,0,0,0,28,7,0,0,0,0,0,0,0,0,0,52,1,0,0,0,2,0,0,0,0,1,95,13,0,0,0,0,0,0,0,0,625,0,0,53,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,9,0,0,0,0,1,15,79,0,10,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,155,269,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,59,0,1,0,0,0,1,0,0,0,0,0,1,0,0,8782,12,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1086,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,808,0,48,0,0,0,0,3,31,8,825,0,0,0,0,1,0,0,0,0,0,0,0,0,3248,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,85,2,0,0,112,0,109,0,0,0,46,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,27,0,0,0,0,0,0,0,0,766,0,0,3016,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1129,21,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,171,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,29,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,166,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,64,3,0,0,42,0,149,0,0,0,6,4,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,647,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,171,2 +0,0,0,3,0,12,2,0,16,0,3,0,0,0,3,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,34,0,0,0,1,0,0,3,0,0,0,0,0,55,0,0,0,0,0,1,0,0,0,0,0,3,0,0,409,12,47,0,1,0,0,0,0,0,13,0,0,0,0,0,2,6,43,0,0,2,0,0,0,0,0,10,0,6,0,0,2,0,17,0,1,0,0,145,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,59,0,35,0,0,0,0,3,32,5,63,0,0,0,0,1,0,0,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,86,3,0,0,120,0,133,0,0,0,47,1,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,94,34,0,0,0,0,0,0,0,0,35,0,0,76,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,14,188,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,23,2 +5,0,0,4,0,40,2,0,32,0,4,0,0,0,4,0,131,0,6,1,0,0,0,1,0,0,69,0,0,0,1,23,0,0,29,0,40,6,0,0,10,0,0,0,1,0,0,1,0,0,0,0,23,53,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1164,40,265,0,24,0,0,0,0,0,4,0,0,0,0,0,1,3,118,0,0,29,0,0,0,0,0,7,0,1,0,0,2,0,449,0,1,0,0,1092,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,96,0,111,0,0,0,46,95,56,679,143,0,0,0,0,1,0,0,0,0,0,0,0,0,499,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,262,4,0,0,159,0,266,0,0,0,101,14,0,0,0,0,0,0,0,0,0,179,1,0,0,0,2,0,0,0,0,1,123,5,0,0,0,0,0,0,0,0,869,0,0,39,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,24,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,23,0,0,0,0,1,69,30,0,93,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,204,82,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,57,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,5,2 +1,0,0,7,2,30,53,2,81,2,9,0,0,2,11,0,119,0,10,3,0,0,0,5,0,9,0,0,3,0,1,0,0,2,6,0,32,174,0,0,66,0,0,0,1,0,0,3,0,0,0,0,2,154,0,0,0,0,0,1,0,0,0,0,0,12,0,0,949,30,207,0,3,0,0,0,0,0,13,0,0,0,0,1,7,17,145,0,2,6,2,0,3,7,0,218,20,5,0,0,6,2,108,0,7,0,0,662,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,117,0,51,0,0,0,1,4,189,98,121,0,0,0,0,1,0,3,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,245,35,433,9,0,0,481,0,790,0,2,0,145,10,0,0,0,0,0,0,0,0,0,285,1,0,0,0,8,0,0,0,0,2,140,52,0,0,34,0,0,0,0,0,335,0,0,63,3,0,1,1,0,0,0,0,4,0,0,0,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,31,1,1,1,0,1,0,0,0,0,17,38,265,0,4,9,0,0,0,0,0,92,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,1,215,60,2 +9,0,0,2,0,14,2,0,5,0,2,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,14,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,1,0,0,98,14,24,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,6,0,0,0,0,0,9,0,0,0,0,2,0,11,0,0,0,0,192,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,29,0,0,0,0,3,28,6,36,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,55,2,0,0,48,0,123,0,0,0,18,4,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,600,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,0,1,20,6,0,5,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,106,2 +12,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,49,0,0,0,0,0,1,0,0,0,0,0,3,0,0,306,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,28,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,198,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,37,0,0,0,8,11,29,397,138,0,0,0,0,1,0,0,0,0,0,0,0,0,350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,52,3,0,0,62,0,139,0,0,0,29,7,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,27,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,8,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,148,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,179,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,29,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +28,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,13,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,12,22,0,0,0,0,0,1,0,0,0,0,0,1,0,0,159,12,25,0,13,0,0,0,0,0,0,0,0,0,0,0,1,1,43,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,0,0,0,161,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,33,0,0,0,24,8,38,38,54,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,51,2,0,0,44,0,156,0,0,0,5,4,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,606,0,0,12,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,24,0,0,0,0,1,13,1,0,13,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,14,2 +8,0,0,4,0,35,9,0,39,0,3,0,0,2,3,0,631,0,6,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,2,937,35,6,0,0,23,0,2,0,1,0,0,3,0,0,0,0,1,302,0,0,0,0,0,1,0,0,0,0,0,4,0,0,26956,35,710,0,1,0,0,0,0,0,23,0,0,0,0,0,8,20,4852,0,0,2,0,0,0,0,0,87,5,7,0,0,2,0,652,0,1,0,0,1393,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,4056,0,301,0,0,0,0,3,250,633,4529,0,0,0,0,1,0,3,0,0,0,0,0,0,1953,0,237,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,34,11,207,4,0,0,229,0,310,0,0,0,78,2,0,0,0,0,0,0,0,0,0,693,1,0,0,0,9,0,0,0,0,0,116,25,0,0,0,0,0,0,0,0,2345,1,0,114,9,0,1,1,0,0,0,0,21,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,37,76,0,2,12,0,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1048,29,2 +73,0,0,3,0,28,2,0,8,0,2,0,0,0,4,0,23,0,7,1,0,0,0,1,0,0,0,0,15,0,1,0,0,0,15,0,28,24,0,0,13,0,0,0,1,0,0,3,0,0,0,0,0,66,0,0,0,0,0,1,0,0,0,0,0,2,0,0,3390,28,67,0,16,0,0,0,0,0,13,0,0,0,0,0,1,5,188,0,0,15,0,0,0,0,0,26,0,3,0,0,2,0,29,0,0,0,0,1590,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,166,0,102,0,0,0,0,3,64,3849,256,0,0,0,0,1,0,0,0,0,0,0,0,0,3089,0,19,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,167,3,0,0,155,0,270,0,0,0,86,9,0,0,0,0,0,0,5,0,0,46,1,0,0,0,2,0,0,0,0,1,116,21,0,0,0,0,15,0,30,15,680,0,0,129,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,15,0,0,0,0,1,43,123,0,16,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,263,23,2 +13,0,0,3,0,13,12,0,31,0,10,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,7,0,0,0,4,0,13,6,0,0,45,0,0,0,1,0,0,0,0,0,0,0,6,53,0,0,0,0,0,1,0,0,0,0,0,3,0,0,330,13,72,0,7,0,0,0,0,0,1,0,0,0,0,0,1,1,35,0,0,4,0,0,1,27,0,252,35,0,0,0,2,0,133,0,0,0,0,234,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,44,0,0,0,12,15,31,418,145,0,0,0,0,1,0,0,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,62,3,0,0,68,0,144,0,0,0,35,8,0,0,0,0,0,0,0,0,0,71,0,0,0,0,2,0,0,0,0,7,97,57,0,0,113,0,0,0,0,0,29,0,0,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,12,0,0,0,12,1,17,20,0,7,0,0,0,0,0,0,78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,10,2 +0,0,0,3,0,11,2,0,16,0,3,0,0,0,3,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,34,0,0,0,1,0,0,4,0,0,0,0,0,58,0,0,0,0,0,1,0,0,0,0,0,3,0,0,429,11,47,0,1,0,0,0,0,0,13,0,0,0,0,0,2,6,46,0,0,2,0,0,0,0,0,10,0,6,0,0,2,0,17,0,1,0,0,136,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,59,0,32,0,0,0,0,3,28,5,63,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,85,3,0,0,117,0,131,0,0,0,47,3,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,93,34,0,0,0,0,0,0,0,0,35,0,0,80,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,188,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,24,2 +12,0,0,3,36,65,3,92,183,6,52,0,0,0,10,0,260,0,7,26,0,23,22,1,23,0,0,0,3,0,8,0,0,36,49,0,101,171,0,0,97,0,0,0,1,0,0,8,1,0,0,0,7,235,0,1,0,0,0,1,0,0,0,0,0,10,0,0,4725,65,1904,0,11,0,0,0,0,0,36,69,0,0,3,1,2,14,985,0,92,49,36,0,0,0,0,429,0,14,0,0,2,36,278,0,8,0,0,1308,0,2,0,0,30,5,0,0,0,0,0,1,0,0,0,68,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,1,0,1,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,12,66,12,12,12,0,0,12,662,12,201,0,0,26,14,10,211,154,774,0,0,0,0,1,0,3,0,0,0,0,0,0,1750,0,0,0,0,1,0,0,0,0,1,0,0,8,0,2,0,0,0,0,0,0,10,24,776,39,0,0,887,0,789,0,0,0,473,21,0,0,0,0,0,0,5,0,0,515,1,0,3,0,95,0,0,0,0,1,183,95,0,0,0,0,0,0,0,0,1968,0,0,957,0,0,1,0,0,0,0,0,20,0,0,0,3,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,101,1,1,1,0,17,0,0,0,0,428,150,278,13,11,0,0,0,0,0,0,433,12,0,0,0,0,0,0,0,0,0,0,0,36,0,1,6,0,0,0,0,0,0,0,0,0,0,0,66,0,4,966,1208,2 +22,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14932,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5550,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,74623,0,0,0,0,4,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,60,0,0,0,0,3,60,61,29905,0,0,0,0,1,0,0,0,0,0,0,0,0,93663,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,434,3,0,0,91,0,211,0,0,0,25,301,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,615,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,32,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,32604,2 +17,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5036,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,35433,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,55,0,0,0,14,17,50,37,35916,0,0,0,0,1,0,0,0,0,0,0,0,0,100228,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,327,3,0,0,75,0,234,0,0,0,12,240,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,614,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,23,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,29113,2 +3,0,0,6,0,13,18,0,59,0,10,0,0,0,2,6,72,0,6,3,0,0,0,1,0,2,0,0,3,0,1,0,0,0,2,0,13,171,4,0,158,0,0,0,1,0,0,2,0,0,0,0,1,137,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1579,13,177,0,6,0,0,0,0,0,10,0,0,0,0,0,2,5,305,0,0,2,0,0,1,45,0,366,25,4,0,0,2,0,241,0,0,0,0,205,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,201,0,57,0,0,0,2,9,34,707,265,0,0,0,0,1,0,0,0,0,0,0,0,0,621,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,139,15,0,0,266,0,321,0,0,0,201,7,0,0,0,0,0,0,2,0,0,173,1,0,0,0,4,0,0,0,0,3,131,216,0,0,103,0,0,0,0,0,239,0,0,295,0,0,1,7,0,0,0,0,3,0,1,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,0,1,15,194,0,6,0,0,0,0,0,0,348,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,263,117,2 +6,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,104,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,4,0,0,202,14,159,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,47,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,124,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,237,71,0,0,0,0,1,0,0,0,0,0,0,0,0,167,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,86,3,0,0,111,0,161,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,615,0,0,110,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,104,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,103,0,0,0,0,1,17,71,0,104,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,10,2 +16,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,35,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5344,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,37463,0,0,0,0,6,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,54,0,0,0,14,17,52,37,32730,0,0,0,0,1,0,0,0,0,0,0,0,0,97554,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,323,3,0,0,75,0,225,0,0,0,12,221,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,612,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,25,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,29717,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,53,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,14,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,45,0,0,0,34,0,48,0,0,0,2,5,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,8,2 +3,0,0,5,0,35,6,0,36,0,5,0,0,6,5,0,510,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,762,35,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,1,174,0,0,0,0,0,1,0,0,0,0,0,2,0,0,8331,35,566,0,3,0,0,0,0,0,11,0,0,0,0,0,8,24,1625,0,0,1,0,0,0,0,0,190,20,2,0,0,2,0,549,0,0,2,0,1209,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,733,0,57,0,0,0,1,4,270,350,731,0,0,0,0,1,0,4,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,24,174,5,0,0,181,0,260,0,0,0,40,10,0,0,0,0,0,0,0,0,0,574,1,0,0,0,9,0,0,0,0,0,118,11,0,0,8,0,0,0,0,0,2135,1,0,72,6,0,1,1,0,0,0,0,10,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,20,0,4,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,29,2 +25,0,0,3,0,13,8,0,61,0,19,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,13,6,0,0,107,0,0,0,0,0,0,0,0,0,0,0,2,35,0,0,0,0,0,1,0,0,0,0,0,12,0,0,186,13,110,0,3,0,0,0,0,0,4,0,0,0,0,0,1,1,46,0,0,1,0,0,1,57,0,446,35,0,0,0,2,0,278,0,0,0,0,265,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,54,0,33,0,0,0,4,4,36,373,60,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,63,3,0,0,55,0,158,0,0,0,13,2,0,0,0,0,0,0,0,0,0,108,0,0,0,0,2,0,0,0,0,1,93,136,0,0,73,0,0,0,0,0,603,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,2,1,14,1,0,3,0,0,0,0,0,0,151,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,51,2 +144,0,0,14,11,78,211,10,327,11,42,0,0,6,42,1,1398,0,23,13,0,4,0,9,0,22,0,0,48,0,5,0,0,10,29,852,88,390,0,0,264,0,0,0,1,0,0,2,0,0,0,0,14,500,0,0,0,0,0,1,0,0,0,0,0,29,0,0,16722,78,2116,0,57,0,0,0,0,0,14,6,0,0,0,1,17,34,3100,0,10,29,10,0,10,57,0,1014,50,3,0,0,20,11,1508,0,20,2,0,2153,0,0,0,0,19,5,4,0,0,0,0,1,0,0,0,7,0,0,0,0,1,0,0,4,0,0,0,1,0,0,0,0,0,10,2,55,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,1,17,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,52,12,12,12,0,0,0,507,0,227,0,0,0,17,19,375,1448,558,0,0,0,0,1,0,4,0,0,0,0,0,0,1470,0,0,0,0,0,0,0,0,0,1,0,0,2,1,0,0,0,0,0,1,1,915,118,1589,27,0,0,1720,0,3051,0,8,0,526,151,0,0,0,0,0,0,0,0,0,2050,1,0,0,0,26,0,0,0,0,6,287,208,0,0,84,0,2,0,0,1,3990,1,0,55,7,0,1,3,0,0,0,0,3,0,0,0,1,0,0,0,0,0,12,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,92,1,1,1,0,60,0,0,0,6,81,117,261,0,61,14,0,0,0,0,0,404,13,0,0,0,0,0,0,0,0,0,0,0,12,0,3,20,0,0,0,0,0,0,0,0,0,0,0,10,0,1,2146,323,2 +7,0,0,3,0,29,5,0,11,0,2,0,0,2,2,0,23,0,6,2,0,0,0,6,0,8,6,0,2,0,3,0,0,0,5,0,29,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,3,76,0,0,0,0,0,1,0,0,0,0,0,2,0,0,644,29,47,0,3,0,0,0,0,0,3,0,0,0,0,0,7,12,142,0,0,5,0,0,0,0,0,72,5,0,0,0,2,0,58,0,0,0,0,509,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,91,0,56,0,0,0,4,10,182,21,95,0,0,0,0,1,0,3,0,0,0,0,0,0,196,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,99,3,0,0,112,0,207,0,0,0,42,7,0,0,0,0,0,0,0,0,0,51,0,0,0,0,8,0,0,0,0,1,111,25,0,0,0,0,0,0,0,0,678,0,0,2,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,3,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,2,0,0,0,0,1,34,69,0,10,9,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,28,2 +4,0,0,2,0,13,3,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,13,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,1,67,0,0,0,0,0,1,0,0,0,0,0,1,0,0,735,13,59,0,2,0,0,0,0,0,21,0,0,0,0,0,1,9,145,0,0,0,0,0,0,0,0,13,0,8,0,0,2,0,15,0,0,0,0,334,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,129,0,78,0,0,0,1,4,39,55,166,0,0,0,0,1,0,0,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,10,3,102,2,0,0,119,0,178,0,0,0,39,17,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,98,25,0,0,0,0,0,0,0,0,645,0,0,128,0,0,1,0,0,0,0,0,8,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,13,96,0,2,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,217,43,2 +8,0,0,6,0,37,8,0,39,2,8,0,0,2,7,0,432,0,6,3,0,0,0,6,0,10,0,0,3,0,1,0,0,0,4,898,37,12,0,0,53,0,0,0,1,0,0,7,0,0,0,0,1,191,0,0,0,0,0,1,0,0,0,0,0,10,0,0,19510,37,538,0,1,0,0,0,0,0,37,0,0,0,0,0,8,23,3477,0,0,4,0,0,1,13,0,207,20,10,0,0,2,0,508,0,3,0,0,980,0,0,0,0,2,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,12,12,12,0,0,0,2854,0,139,0,0,0,0,3,236,406,2849,0,0,0,0,1,0,3,0,0,0,0,0,0,745,0,1,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,34,13,199,6,0,0,255,0,355,0,0,0,108,6,0,0,0,0,0,0,7,0,0,502,1,0,0,0,9,0,0,0,0,1,121,70,0,0,29,0,2,0,4,2,1855,1,0,314,6,0,1,1,0,0,0,0,14,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,0,0,0,0,0,1,41,203,0,2,12,0,0,0,0,0,101,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,7,691,52,2 +28,0,0,3,0,11,9,0,66,0,20,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,11,6,0,0,117,0,0,0,0,0,0,0,0,0,0,0,2,45,0,0,0,0,0,1,0,0,0,0,0,13,0,0,245,11,125,0,3,0,0,0,0,0,8,0,0,0,0,0,1,1,64,0,0,1,0,0,1,62,0,518,35,0,0,0,2,0,303,0,0,0,0,133,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,38,0,0,0,4,4,28,438,71,0,0,0,0,0,0,0,0,0,0,0,0,0,311,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,55,3,0,0,54,0,160,0,0,0,18,4,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2,0,0,0,0,1,91,149,0,0,74,0,0,0,0,0,607,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,12,1,0,3,0,0,0,0,0,0,167,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,77,2 +1,0,0,6,0,34,7,0,37,0,5,0,0,7,6,0,609,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,172,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18105,34,679,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4143,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,668,0,0,1,0,2996,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,629,0,47,0,0,0,1,4,256,1161,615,0,0,0,0,1,0,3,0,0,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,187,6,0,0,201,0,278,0,0,0,57,4,0,0,0,0,0,0,0,0,0,677,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3380,1,0,852,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,111,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1912,78,2 +12,0,0,3,0,17,2,0,15,0,3,0,0,0,3,0,15,0,7,1,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,17,6,0,0,14,0,3,0,1,0,0,11,0,0,0,0,0,124,0,0,0,0,0,1,0,0,0,0,0,3,0,0,4648,17,118,0,5,0,0,0,0,0,45,0,0,0,0,0,1,24,940,0,0,6,0,0,0,0,0,28,0,17,0,0,2,0,21,0,1,0,0,942,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,4,1,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,413,0,101,0,0,0,0,3,37,30,411,0,0,0,0,1,0,0,0,0,0,0,0,0,1049,0,0,0,0,0,0,0,0,0,0,0,0,11,0,14,0,0,0,0,0,0,8,4,130,3,0,0,183,0,274,0,0,0,112,12,0,0,0,0,0,0,4,0,0,45,1,0,0,0,2,0,0,0,0,1,99,67,0,0,0,0,0,0,0,0,361,0,0,1274,0,0,1,0,1,0,0,0,17,0,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,4,0,0,0,0,1,23,440,0,5,0,0,1,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,621,143,2 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1082,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,91,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,614,0,0,0,0,0,15,36,192,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,21,2,0,0,60,0,80,0,0,0,48,14,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,293,0,0,264,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,113,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1392,7,2 +3,0,0,5,2,57,17,8,122,6,28,0,0,2,11,1,1089,0,6,9,0,2,1,19,0,11,3,0,5,0,2,0,0,1,18,3449,59,6,60,0,150,0,0,0,1,0,0,5,0,0,0,0,2,402,0,0,0,0,0,1,0,0,0,0,0,23,0,0,70238,57,1618,0,3,0,0,0,0,0,48,6,0,0,0,0,22,38,11645,0,8,18,1,0,1,63,0,625,70,9,0,0,2,2,1321,0,9,0,0,2161,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,12,12,12,0,0,0,10543,0,231,0,0,0,2,8,372,889,10634,0,0,0,0,1,0,4,0,0,0,0,0,0,1720,0,99,0,0,0,0,0,0,0,0,0,0,5,1,4,0,0,0,0,1,0,44,19,396,7,0,0,415,0,488,0,0,0,210,26,0,0,0,0,0,0,4,0,0,1276,1,0,0,0,31,0,0,0,0,1,151,203,0,0,180,0,0,0,0,0,4693,1,0,993,16,0,1,2,0,0,0,0,9,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,41,41,0,0,9,0,0,0,0,0,16,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,7,0,0,0,0,51,77,225,0,7,14,0,0,0,0,0,399,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,977,106,2 +3,0,0,5,0,33,6,0,37,0,5,0,0,6,5,0,550,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,762,33,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,1,172,0,0,0,0,0,1,0,0,0,0,0,2,0,0,6984,33,608,0,3,0,0,0,0,0,11,0,0,0,0,0,8,24,1362,0,0,1,0,0,0,0,0,190,20,2,0,0,2,0,589,0,0,2,0,1403,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,510,0,54,0,0,0,1,4,256,352,510,0,0,0,0,1,0,4,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,21,170,5,0,0,177,0,258,0,0,0,41,10,0,0,0,0,0,0,0,0,0,615,1,0,0,0,9,0,0,0,0,0,116,11,0,0,8,0,0,0,0,0,2202,1,0,56,6,0,1,1,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,34,20,0,4,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,587,29,2 +0,0,0,4,0,9,2,0,23,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,9,0,0,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,4,0,0,704,9,51,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,167,0,0,1,0,0,0,0,0,7,0,1,0,0,2,0,32,0,1,0,0,266,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,102,0,25,0,0,0,0,3,23,5,116,0,0,0,0,1,0,0,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,79,4,0,0,102,0,88,0,0,0,40,2,0,0,0,0,0,0,2,0,0,55,1,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,88,0,0,156,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,131,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,149,7,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,56,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9221,12,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1171,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,843,0,49,0,0,0,0,3,31,8,860,0,0,0,0,1,0,0,0,0,0,0,0,0,3602,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,88,2,0,0,112,0,109,0,0,0,46,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,27,0,0,0,0,0,0,0,0,801,0,0,3157,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1214,21,2 +6,0,0,2,0,13,2,0,26,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,0,114,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2313,13,89,0,3,0,0,0,0,0,27,0,0,0,0,0,1,9,353,0,0,3,0,0,0,0,0,19,0,7,0,0,2,0,26,0,0,0,0,289,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,270,0,102,0,0,0,0,3,29,15,273,0,0,0,0,1,0,0,0,0,0,0,0,0,616,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,10,3,141,2,0,0,280,0,321,0,0,0,211,19,0,0,0,0,0,0,10,0,0,54,1,0,0,0,2,0,0,0,0,1,114,159,0,0,0,0,0,0,0,0,693,0,0,320,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,548,0,3,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,342,47,2 +73,0,0,4,0,29,2,0,8,17,3,0,0,0,22,0,23,0,7,1,0,0,0,1,0,0,0,0,15,0,1,0,0,0,16,0,29,24,0,0,50,0,0,0,1,0,0,3,0,0,0,0,0,82,0,0,0,0,0,1,0,0,0,0,0,21,0,0,3459,29,87,0,16,0,0,0,0,0,14,0,0,0,0,0,1,5,198,0,0,16,0,0,0,0,0,26,0,3,0,0,2,0,65,0,18,0,0,1768,0,0,0,0,15,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,182,0,108,0,0,0,0,3,67,3855,300,0,0,0,0,1,0,0,0,0,0,0,0,0,3129,0,30,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,21,201,4,0,0,156,0,282,0,0,0,87,8,0,0,0,0,0,0,4,0,0,65,1,0,0,0,2,0,0,0,0,1,114,21,0,0,0,0,15,0,30,15,677,0,0,126,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,15,0,0,0,0,1,45,124,0,16,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,3,288,24,2 +2,0,0,2,0,13,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,13,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,2,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,9224,13,45,0,3,0,0,0,0,0,10,0,0,0,0,0,1,4,1207,0,0,1,0,0,0,0,0,8,0,3,0,0,2,0,17,0,0,0,0,141,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,830,0,41,0,0,0,4,4,30,15,831,0,0,0,0,1,0,0,0,0,0,0,0,0,3644,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,95,2,0,0,113,0,146,0,0,0,36,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,97,25,0,0,0,0,0,0,0,0,802,0,0,3153,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,4,0,0,0,2,1,14,92,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1244,18,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,4,0,0,140,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,117,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,168,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,214,5,0,0,229,0,330,0,1,0,55,3,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,40,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,15,2 +9,0,0,3,0,11,10,0,63,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,32,0,0,0,2,0,11,6,0,0,113,0,0,0,1,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,13,0,0,73,11,134,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,38,0,0,2,0,0,1,58,0,459,20,0,0,0,2,0,291,0,0,0,0,77,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,33,0,0,0,0,3,27,433,59,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,128,0,0,0,22,1,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,97,145,0,0,44,0,0,0,0,0,606,0,0,30,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,32,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,31,0,0,0,0,1,13,6,0,32,0,0,0,0,0,0,155,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,3,2 +3,0,0,5,2,58,17,8,119,6,28,0,0,2,11,1,982,0,6,9,0,2,1,19,0,11,3,0,5,0,2,0,0,1,18,3454,60,6,72,0,150,0,0,0,1,0,0,5,0,0,0,0,2,316,0,0,0,0,0,1,0,0,0,0,0,23,0,0,49849,58,1508,0,2,0,0,0,0,0,48,6,0,0,0,0,22,38,8219,0,8,18,1,0,1,63,0,625,70,9,0,0,2,2,1212,0,9,0,0,2208,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,12,12,12,0,0,0,7263,0,236,0,0,0,2,8,378,877,7353,0,0,0,0,1,0,4,0,0,0,0,0,0,1665,0,98,0,0,0,0,0,0,0,0,0,0,5,1,2,0,0,0,0,1,0,44,19,357,7,0,0,418,0,501,0,0,0,210,21,0,0,0,0,0,0,4,0,0,1166,1,0,0,0,31,0,0,0,0,1,152,203,0,0,180,0,0,0,0,0,4411,1,0,881,17,0,1,2,0,0,0,0,9,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,42,42,0,0,8,0,0,0,0,0,16,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,74,1,1,1,0,7,0,0,0,0,53,78,224,0,7,14,0,0,0,0,0,398,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,960,113,2 +18,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14288,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5773,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,70104,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,54,0,0,0,8,9,52,69,28637,0,0,0,0,1,0,0,0,0,0,0,0,0,93786,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,378,3,0,0,78,0,233,0,0,0,12,271,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,614,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,24,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,31308,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,4,0,0,141,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,31,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,39,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,179,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,214,5,0,0,229,0,330,0,1,0,55,3,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,116,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,42,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,101,15,2 +8,0,0,6,0,36,8,0,40,2,8,0,0,2,7,0,455,0,6,3,0,0,0,6,0,10,0,0,3,0,1,0,0,0,4,898,36,12,0,0,53,0,0,0,1,0,0,7,0,0,0,0,1,188,0,0,0,0,0,1,0,0,0,0,0,10,0,0,18150,36,562,0,1,0,0,0,0,0,37,0,0,0,0,0,8,23,3227,0,0,4,0,0,1,13,0,207,20,9,0,0,2,0,531,0,3,0,0,1096,0,0,0,0,2,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,12,12,12,0,0,0,2576,0,141,0,0,0,0,3,232,407,2569,0,0,0,0,1,0,3,0,0,0,0,0,0,754,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,1,0,34,13,198,6,0,0,252,0,366,0,0,0,108,7,0,0,0,0,0,0,7,0,0,526,1,0,0,0,9,0,0,0,0,1,120,70,0,0,29,0,2,0,4,2,1928,1,0,310,6,0,1,1,0,0,0,0,15,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,40,204,0,2,12,0,0,0,0,0,101,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,7,709,55,2 +3,0,0,6,0,39,63,0,135,1,15,0,0,6,4,0,938,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,2,835,39,6,0,0,195,0,2,0,1,0,0,2,0,0,0,0,1,218,0,0,0,0,0,1,0,0,0,0,0,7,0,0,44590,39,1143,0,3,0,0,0,0,0,14,0,0,0,0,0,8,23,10475,0,0,2,0,0,1,82,0,791,50,3,0,0,2,0,1383,0,0,1,0,5501,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,1906,0,60,0,0,0,1,4,269,1559,1901,0,0,0,0,1,0,3,0,0,0,0,0,0,670,0,1,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,1,0,86,19,242,6,0,0,306,0,366,0,0,0,126,13,0,0,0,0,0,0,0,0,0,1167,1,0,0,0,9,0,0,0,0,0,123,221,0,0,81,0,0,0,0,0,7148,1,0,792,6,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,6,361,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,5,0,0,0,0,1,41,211,0,4,12,0,0,0,0,0,242,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4406,38,2 +11,0,0,2,0,25,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,25,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,915,25,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,460,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,275,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,45,0,0,0,0,3,44,10,52,0,0,0,0,1,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,116,2,0,0,122,0,144,0,0,0,61,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,107,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,0,0,0,0,0,1,39,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,245,28,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +18,0,0,3,0,26,2,0,4,19,3,0,0,0,22,0,10,0,7,2,0,0,0,1,0,0,0,0,2,0,3,0,0,0,6,0,26,6,0,0,11935,0,0,0,1,0,0,1,0,0,0,0,2,56,0,0,0,0,0,1,0,0,0,0,0,22,0,0,5473,26,46,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,18,0,1,0,0,2,0,51,0,20,0,0,67681,0,0,0,0,3,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,61,0,0,0,4,7,58,65,23893,0,0,0,0,1,0,0,0,0,0,0,0,0,100279,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,23,449,3,0,0,91,0,214,0,0,0,25,320,0,0,0,0,0,0,0,0,0,48,1,0,0,0,3,0,0,0,0,3,108,6,0,0,0,0,0,0,0,0,612,0,0,18,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,4,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,30,1,1,1,0,6,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,32314,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,68,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,67,0,0,0,0,0,7,36,182,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,14,2,0,0,54,0,82,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,45,0,0,0,0,0,0,0,0,282,0,0,240,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,113,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,275,7,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +12,0,0,4,0,16,2,0,5,0,3,0,0,0,3,0,18,0,7,2,0,0,0,1,0,1,0,0,129,0,1,0,0,0,1,0,16,30,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,4,0,0,222189,16,162,0,131,0,0,0,0,0,3,0,0,0,0,0,2,4,43526,0,0,1,0,0,0,0,0,139,0,1,0,0,2,0,139,0,1,0,0,300924,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,22620,0,62,0,0,0,0,3,22594,720,24474,0,0,0,0,1,0,0,0,0,0,0,0,0,7690,0,708,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,1416,4,0,0,83,0,213,0,0,0,30,910,0,0,0,0,0,0,0,0,0,38,1,0,0,0,3,0,0,0,0,1,104,14,0,0,0,0,9,0,18,9,21659,0,0,12,0,0,1,0,0,0,0,0,2,0,700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22566,1,1,1,0,130,0,0,0,0,1,17,5,0,131,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,45472,1159,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,56,0,1,0,0,0,1,0,0,0,0,0,1,0,0,10081,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1326,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,912,0,48,0,0,0,0,3,27,8,929,0,0,0,0,1,0,0,0,0,0,0,0,0,4067,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,89,2,0,0,109,0,109,0,0,0,46,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,872,0,0,3438,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1365,21,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,39,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,149,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,169,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,43,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +11,0,0,2,0,22,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,11,0,22,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,927,22,31,0,1,0,0,0,0,0,5,0,0,0,0,0,1,4,457,0,0,11,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,265,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,39,0,0,0,0,3,41,10,49,0,0,0,0,1,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,112,2,0,0,114,0,131,0,0,0,53,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,104,13,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,0,0,0,0,0,1,33,83,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,25,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,21,0,1,0,0,0,0,0,11,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,104,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2590,11,78,0,22,0,0,0,0,0,16,0,0,0,0,0,1,10,1032,0,0,0,0,0,0,0,0,34,0,4,0,0,2,0,36,0,0,0,0,433,0,0,0,0,30,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,396,0,125,0,0,0,0,3,59,19,438,0,0,0,0,1,0,0,0,0,0,0,0,0,1160,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,169,3,0,0,110,0,285,0,0,0,39,12,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,725,0,0,887,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,21,0,0,0,0,1,11,170,0,22,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,437,32,2 +0,0,0,3,0,13,3,0,2,0,2,0,0,0,2,0,8,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,13,6,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,13,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,70,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,22,0,0,0,0,3,31,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,44,3,0,0,48,0,77,0,0,0,3,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,95,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,13,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,12,0,0,0,0,3,21,3,20,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,42,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,1,2 +0,0,0,3,0,11,2,0,23,0,3,0,0,0,3,0,14,0,6,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,34,0,0,0,1,0,0,3,0,0,0,0,0,74,0,0,0,0,0,1,0,0,0,0,0,3,0,0,474,11,54,0,1,0,0,0,0,0,13,0,0,0,0,0,2,6,49,0,0,2,0,0,0,0,0,10,0,6,0,0,2,0,24,0,1,0,0,139,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,61,0,34,0,0,0,0,3,28,5,65,0,0,0,0,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,91,3,0,0,124,0,136,0,0,0,53,3,0,0,0,0,0,0,0,0,0,51,1,0,0,0,3,0,0,0,0,0,93,34,0,0,0,0,0,0,0,0,37,0,0,86,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,220,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,23,2 +2,0,0,2,0,8,2,0,5,0,2,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,3,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,1,0,0,35,8,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,42,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,16,0,22,0,0,0,0,3,21,9,31,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,31,2,0,0,54,0,83,0,0,0,21,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,88,21,0,0,0,0,0,0,0,0,596,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,7,2 +17,0,0,3,0,22,2,0,4,19,3,0,0,0,22,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,2,0,22,6,0,0,14256,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,22,0,0,6027,22,46,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,12,0,1,0,0,2,0,51,0,20,0,0,72745,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,0,3,54,61,28529,0,0,0,0,1,0,0,0,0,0,0,0,0,95373,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,23,392,3,0,0,79,0,217,0,0,0,13,287,0,0,0,0,0,0,0,0,0,48,1,0,0,0,3,0,0,0,0,1,104,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,4,0,0,0,0,1,24,2,0,5,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,33284,2 +8,0,0,6,0,37,16,0,86,0,19,0,0,6,4,0,593,0,6,1,0,0,0,8,0,10,0,0,5,0,33,0,0,0,4,938,37,6,0,0,135,0,1,0,1,0,0,1,0,0,0,0,1,171,0,0,0,0,0,1,0,0,0,0,0,12,0,0,8629,37,764,0,3,0,0,0,0,0,16,0,0,0,0,0,8,23,1716,0,0,4,0,0,1,50,0,588,40,2,0,0,2,0,878,0,0,6,0,1365,0,0,0,0,6,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,662,0,52,0,0,0,1,4,268,751,664,0,0,0,0,1,0,3,0,0,0,0,0,0,343,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,86,16,206,6,0,0,254,0,298,0,0,0,112,5,0,0,0,0,0,0,0,0,0,730,1,0,0,0,9,0,0,0,0,0,124,165,0,0,57,0,0,0,0,0,2326,1,0,127,8,0,1,1,1,0,0,0,4,0,1,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,33,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,37,0,0,0,0,1,41,127,0,36,12,0,0,0,0,0,179,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,46,2 +10,0,0,0,0,130,2,0,5,0,1,0,0,0,2,0,59,0,6,1,0,0,0,1,0,0,0,0,51,0,1,0,0,0,119,0,130,150,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1424,130,118,0,52,0,0,0,0,0,1,0,0,0,0,0,1,1,12,0,0,119,0,0,0,0,0,56,0,0,0,0,2,0,60,0,0,0,0,4679,0,0,0,0,32,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,136,0,0,0,0,3,147,120,84,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,638,0,0,0,507,0,322,0,0,0,460,20,0,0,0,0,0,0,0,0,0,75,0,0,0,0,2,0,0,0,0,1,224,49,0,0,0,0,0,0,0,0,743,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,127,1,1,1,0,51,0,0,0,0,1,249,119,0,52,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,892,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,2,0,0,0,5,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,24,0,22,0,0,0,1,0,0,0,0,0,6,0,0,208,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,73,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,49,0,0,0,0,3,57,44,113,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,86,3,0,0,83,0,112,0,0,0,29,5,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,208,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,15,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,56,0,1,0,0,0,1,0,0,0,0,0,1,0,0,8204,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1039,0,0,3,0,0,0,0,0,11,0,6,0,0,2,0,14,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,754,0,50,0,0,0,0,3,27,8,771,0,0,0,0,1,0,0,0,0,0,0,0,0,3093,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,87,2,0,0,109,0,108,0,0,0,46,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,714,0,0,2804,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1083,22,2 +8,0,0,6,0,36,8,0,50,2,12,0,0,2,7,0,424,0,7,3,0,0,0,6,0,10,0,0,3,0,1,0,0,0,4,898,36,12,0,0,73,0,0,0,1,0,0,7,0,0,0,0,1,191,0,0,0,0,0,1,0,0,0,0,0,12,0,0,19106,36,546,0,1,0,0,0,0,0,37,0,0,0,2,0,8,23,3402,0,0,4,0,0,1,25,0,299,30,9,0,0,2,0,554,0,3,0,0,1279,0,0,0,0,2,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,12,12,12,0,0,0,2778,0,140,0,0,0,0,3,235,503,2779,0,0,0,0,1,0,3,0,0,0,0,0,0,752,0,1,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,34,13,200,6,0,0,253,0,385,0,0,0,109,8,0,0,0,0,0,0,7,0,0,510,1,0,0,0,9,0,0,0,0,1,120,99,0,0,51,0,2,0,4,2,1850,1,0,317,6,0,1,1,0,0,0,0,14,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,0,0,0,0,0,1,40,232,0,2,12,0,0,0,0,0,127,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,7,723,53,2 +14,0,0,3,1,15,26,1,26,1,3,0,0,0,4,0,58,0,8,2,0,0,0,2,0,11,0,0,0,0,1,0,0,1,2,0,16,51,0,0,14,0,0,0,0,0,0,0,0,0,0,0,11,33,0,0,0,0,0,1,0,0,0,0,0,2,0,0,4774,15,95,0,12,0,0,0,0,0,0,0,0,0,0,0,3,3,1789,0,1,2,1,0,1,0,0,68,0,0,0,0,4,1,27,0,1,0,0,1928,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,929,0,45,0,0,0,11,25,39,2651,951,0,0,0,0,0,0,0,0,0,0,0,0,0,2440,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,14,250,4,0,0,204,0,340,0,1,0,43,17,0,0,0,0,0,0,0,0,0,125,0,0,0,0,4,0,0,0,0,12,109,2,0,0,0,0,0,0,0,0,970,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,1,1,1,0,0,0,0,0,0,9,18,3,0,12,0,0,0,0,0,0,41,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,951,53,2 +16,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,0,0,5,0,1,0,2,0,22,6,0,0,14043,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,6005,22,35,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,24,0,1,0,0,2,0,29,0,9,0,0,70720,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,11,54,69,28145,0,0,0,0,1,0,0,0,0,0,0,0,0,95620,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,387,3,0,0,78,0,225,0,0,0,12,296,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,611,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,8,0,0,0,8,1,24,2,0,5,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,33311,2 +8,0,0,3,1,163,51,1,100,9,26,0,1,7,6,0,726,0,9,1,0,0,0,8,0,11,0,0,74,0,1,0,0,1,127,1112,164,210,0,0,111,0,1,0,1,0,0,1,0,0,0,0,1,349,0,0,0,0,0,1,0,0,0,0,0,1,0,0,32095,163,993,0,73,0,0,0,0,0,43,0,0,0,0,0,8,142,6758,0,1,127,1,0,1,0,0,453,25,1,0,0,4,1,783,0,1,68,0,7750,0,0,0,0,36,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,12,12,12,0,0,0,1471,0,171,0,0,0,14,17,770,2071,1486,0,0,0,0,1,0,3,0,0,0,0,0,0,543,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,214,47,1009,4,0,0,911,0,766,0,1,0,624,27,0,0,0,0,0,0,0,0,0,926,1,0,0,0,9,0,0,0,0,2,274,76,0,0,134,0,0,0,0,0,5181,1,0,1006,21,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,21,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,165,1,1,1,0,114,0,0,0,0,9,291,242,0,74,12,0,1,0,0,0,368,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,13,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2753,1426,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,60,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9904,12,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1280,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,896,0,50,0,0,0,0,3,31,8,913,0,0,0,0,1,0,0,0,0,0,0,0,0,3954,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,99,2,0,0,114,0,109,0,0,0,48,7,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,97,28,0,0,0,0,0,0,0,0,854,0,0,3369,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,99,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1322,25,2 +0,0,0,3,0,26,4,0,7,0,2,0,0,2,2,0,11,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,2,0,26,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,1,68,0,0,0,0,0,1,0,0,0,0,0,2,0,0,405,26,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,60,0,0,2,0,0,0,0,0,69,5,0,0,0,2,0,19,0,0,0,0,380,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,25,0,0,0,0,3,178,8,41,0,0,0,0,1,0,3,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,32,10,78,3,0,0,103,0,132,0,0,0,32,1,0,0,0,0,0,0,0,0,0,34,0,0,0,0,8,0,0,0,0,0,109,25,0,0,0,0,0,0,0,0,55,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,0,0,0,0,0,1,28,66,0,2,8,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,20,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,12,0,0,0,0,3,21,3,21,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,22,0,0,0,2,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,2 +16,0,0,3,0,26,2,0,4,20,3,0,0,0,23,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,10791,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,23,0,0,6289,26,47,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,53,0,21,0,0,67199,0,0,0,0,5,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,21595,0,0,0,0,1,0,0,0,0,0,0,0,0,97995,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,24,468,3,0,0,92,0,214,0,0,0,26,358,0,0,0,0,0,0,0,0,0,49,1,0,0,0,3,0,0,0,0,1,108,7,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,30710,2 +18,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,1,0,2,0,22,6,0,0,14237,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5064,22,35,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,12,0,1,0,0,2,0,29,0,9,0,0,66564,0,0,0,0,3,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,54,0,0,0,0,3,52,61,28541,0,0,0,0,1,0,0,0,0,0,0,0,0,93332,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,366,3,0,0,78,0,218,0,0,0,12,256,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,1,104,5,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,1,3,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,24,1,1,1,0,4,0,0,0,0,1,24,2,0,5,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,34736,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,52,0,0,0,0,0,1,0,0,0,0,0,4,0,0,140,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,31,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,122,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,177,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,216,5,0,0,229,0,330,0,1,0,55,2,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,116,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,42,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,97,16,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,135,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,53,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,182,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,33,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,18,2 +0,0,0,3,0,10,2,0,11,0,2,0,0,0,3,0,17,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,40,0,0,7,0,0,0,1,0,0,2,0,0,0,0,0,69,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1511,10,43,0,1,0,0,0,0,0,11,0,0,0,0,0,2,5,338,0,0,1,0,0,0,0,0,11,0,4,0,0,2,0,24,0,0,0,0,218,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,228,0,48,0,0,0,0,3,28,20,230,0,0,0,0,1,0,0,0,0,0,0,0,0,625,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,18,3,77,3,0,0,98,0,202,0,0,0,41,4,0,0,0,0,0,0,2,0,0,41,1,0,0,0,3,0,0,0,0,1,92,28,0,0,0,0,0,0,0,0,169,0,0,349,0,0,1,0,0,0,0,0,6,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,199,0,1,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,267,18,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,60,0,1,0,0,0,1,0,0,0,0,0,1,0,0,8478,12,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1091,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,775,0,51,0,0,0,0,3,31,8,792,0,0,0,0,1,0,0,0,0,0,0,0,0,3259,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,95,2,0,0,114,0,109,0,0,0,48,7,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,97,28,0,0,0,0,0,0,0,0,733,0,0,2879,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,99,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1136,26,2 +3,0,0,5,0,41,6,0,45,0,5,0,0,6,5,0,635,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,5,762,41,6,0,0,50,0,0,0,1,0,0,5,0,0,0,0,1,228,0,1,0,0,0,1,0,0,0,0,0,2,0,0,10512,41,724,0,3,0,0,0,0,0,26,0,0,0,1,0,8,32,1957,0,0,5,0,0,0,0,0,200,20,11,0,0,2,0,676,0,0,4,0,2070,0,0,0,0,0,2,4,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,685,0,119,0,0,0,1,4,302,443,683,0,0,0,0,1,0,6,0,0,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,86,30,201,5,0,0,219,0,295,0,0,0,72,4,0,0,0,0,0,0,0,0,0,708,1,0,0,0,9,0,0,0,0,0,126,27,0,0,12,0,0,0,0,0,2741,1,0,705,6,0,1,1,0,0,0,0,23,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,5,0,0,0,0,1,46,36,0,4,12,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1150,44,2 +0,0,0,3,0,23,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,23,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,23,0,21,0,0,0,1,0,0,0,0,0,6,0,0,207,23,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,73,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,70,0,51,0,0,0,0,3,61,44,114,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,90,3,0,0,86,0,113,0,0,0,29,2,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,105,2,0,0,0,0,0,0,0,0,208,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,0,0,0,4,0,1,29,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,15,2 +0,0,0,3,0,11,2,0,16,0,3,0,0,0,3,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,34,0,0,0,1,0,0,3,0,0,0,0,0,57,0,0,0,0,0,1,0,0,0,0,0,3,0,0,419,11,47,0,1,0,0,0,0,0,13,0,0,0,0,0,2,6,46,0,0,2,0,0,0,0,0,10,0,6,0,0,2,0,17,0,1,0,0,142,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,59,0,32,0,0,0,0,3,28,5,63,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,79,3,0,0,117,0,154,0,0,0,47,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,93,34,0,0,0,0,0,0,0,0,35,0,0,79,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,188,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,23,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,56,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9134,12,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1159,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,836,0,49,0,0,0,0,3,31,8,853,0,0,0,0,1,0,0,0,0,0,0,0,0,3449,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,92,2,0,0,112,0,111,0,0,0,46,5,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,27,0,0,0,0,0,0,0,0,796,0,0,3128,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1203,22,2 +3,0,0,5,0,34,6,0,37,0,5,0,0,6,5,0,531,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,762,34,6,0,0,46,0,0,0,1,0,0,2,0,0,0,0,1,185,0,0,0,0,0,1,0,0,0,0,0,2,0,0,6883,34,592,0,3,0,0,0,0,0,13,0,0,0,0,0,8,24,1321,0,0,1,0,0,0,0,0,190,20,5,0,0,2,0,570,0,0,2,0,1153,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,557,0,67,0,0,0,1,4,263,354,556,0,0,0,0,1,0,4,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,26,183,5,0,0,189,0,263,0,0,0,51,3,0,0,0,0,0,0,0,0,0,596,1,0,0,0,9,0,0,0,0,0,119,17,0,0,8,0,0,0,0,0,2095,1,0,79,6,0,1,1,0,0,0,0,14,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,29,0,4,12,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,559,38,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,14,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,57,0,0,0,2,10,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,5,2 +11,0,0,3,0,12,99,0,116,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,217,0,0,0,1,0,0,0,0,0,0,0,4,51,0,0,0,0,0,1,0,0,0,0,0,3,0,0,334,12,241,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,25,0,0,3,0,0,1,112,0,837,30,0,0,0,2,0,559,0,0,0,0,200,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,36,0,0,0,8,11,29,760,49,0,0,0,0,1,0,0,0,0,0,0,0,0,533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,56,3,0,0,152,0,137,0,0,0,119,4,0,0,0,0,0,0,0,0,0,242,0,0,0,0,2,0,0,0,0,5,96,228,0,0,98,0,0,0,0,0,24,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,245,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,6,2 +0,0,0,5,0,39,30,0,56,0,30,0,0,8,5,0,857,0,6,1,0,0,0,8,0,10,0,0,28,0,1,0,0,0,2,5870,39,6,0,0,50,0,2,0,1,0,0,2,0,0,0,0,1,1453,0,0,0,0,0,1,0,0,0,0,0,2,0,0,54760,39,1074,0,26,0,0,0,0,0,62,0,0,0,0,0,8,160,9454,0,0,2,0,0,0,0,0,847,30,3,0,0,2,0,975,0,0,956,0,7225,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,2364,0,45,0,0,0,14,17,1745,8575,2329,0,0,0,0,1,0,3,0,0,0,0,0,0,3138,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,130,94,363,5,0,0,415,0,478,0,0,0,245,22,0,0,0,0,0,0,0,0,0,992,1,0,0,0,9,0,0,0,0,1,222,43,0,0,596,0,0,0,0,0,6783,1,0,3521,30,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,30,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,67,0,0,0,0,1,41,197,0,27,12,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3801,51,2 +19,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14178,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6235,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,75097,0,0,0,0,4,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,58,0,0,0,0,3,56,61,28397,0,0,0,0,1,0,0,0,0,0,0,0,0,93216,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,449,3,0,0,91,0,237,0,0,0,25,328,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,30652,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,58,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +19,0,0,3,0,15,2,0,19,2,3,0,0,0,5,0,17,0,6,1,0,0,0,1,0,0,0,0,8,0,1,0,0,0,3,0,15,6,0,0,15,0,0,0,1,0,0,5,0,0,0,0,0,68,0,0,0,0,0,1,0,0,0,0,0,5,0,0,633,15,66,0,9,0,0,0,0,0,15,0,0,0,0,0,1,8,81,0,0,3,0,0,0,0,0,19,0,6,0,0,2,0,31,0,3,0,0,375,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,112,0,77,0,0,0,0,3,36,39,124,0,0,0,0,1,0,0,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,6,120,3,0,0,111,0,254,0,0,0,32,6,0,0,0,0,0,0,0,0,0,52,1,0,0,0,2,0,0,0,0,1,97,13,0,0,0,0,0,0,0,0,625,0,0,61,0,0,1,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,8,0,0,0,0,1,18,80,0,9,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,174,374,2 +11,0,0,0,0,46,33,0,68,3,9,2,8,0,7,0,96,0,6,5,0,0,0,5,0,8,39,0,6,0,14,0,0,0,20,0,46,83,0,0,153,0,0,0,1,0,0,0,0,0,0,0,14,104,0,0,0,0,0,1,0,0,0,0,0,4,0,0,950,46,252,0,18,0,0,0,0,0,3,0,0,0,0,0,9,14,147,0,0,20,0,0,7,32,0,392,35,0,0,0,16,0,461,0,3,0,0,879,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,12,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,35,10,10,10,0,0,0,106,0,70,0,0,0,26,68,218,250,223,0,0,0,0,1,0,3,0,0,0,0,0,0,535,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,61,85,212,0,0,0,187,0,337,0,0,0,87,53,0,0,0,0,0,0,0,0,0,229,0,0,0,0,10,0,0,0,0,14,129,75,0,0,77,0,1,0,0,0,333,0,0,13,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,14,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,21,0,0,0,0,1,66,32,0,58,9,0,0,0,0,0,140,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,165,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,57,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9339,12,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1183,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,853,0,49,0,0,0,0,3,31,8,870,0,0,0,0,1,0,0,0,0,0,0,0,0,3638,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,88,2,0,0,112,0,109,0,0,0,46,8,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,27,0,0,0,0,0,0,0,0,812,0,0,3198,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1225,19,2 +0,0,0,2,0,13,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,13,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,63,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9633,13,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1214,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,878,0,51,0,0,0,0,3,35,8,895,0,0,0,0,1,0,0,0,0,0,0,0,0,3717,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,100,2,0,0,117,0,110,0,0,0,48,6,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,98,28,0,0,0,0,0,0,0,0,836,0,0,3291,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,16,99,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1264,24,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,14,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,7,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,4,2 +17,0,0,2,6,26,2,30,21,0,8,0,0,0,2,0,15,0,6,19,0,6,0,1,0,20,0,0,0,0,1,0,0,6,14,0,26,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,20,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1300,26,450,0,21,0,0,0,0,0,18,18,0,0,0,0,1,6,520,0,30,14,6,0,0,0,0,54,0,1,0,0,2,6,33,0,0,0,0,550,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,6,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,85,0,55,0,0,0,20,22,64,65,98,0,0,0,0,1,0,0,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,134,8,0,0,162,0,228,0,0,0,92,5,0,0,0,0,0,0,0,0,0,54,1,0,0,0,26,0,0,0,0,21,108,31,0,0,0,0,0,0,0,0,236,0,0,731,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,0,0,0,0,0,1,40,119,0,21,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,309,282,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,7,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1090,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,74,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,621,0,0,0,0,0,15,43,205,0,0,0,0,0,0,0,0,0,0,0,0,0,1587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,19,2,0,0,60,0,83,0,0,0,48,7,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,293,0,0,268,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,114,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1401,7,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,951,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,61,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,75,0,0,0,0,0,7,48,203,0,0,0,0,0,0,0,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,13,2,0,0,53,0,72,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,44,0,0,0,0,0,0,0,0,295,0,0,244,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,114,0,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,308,4,2 +17,0,0,3,0,26,2,0,4,20,3,0,0,0,23,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,10667,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,23,0,0,6099,26,47,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,53,0,21,0,0,64546,0,0,0,0,2,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0,69,0,60,0,0,0,0,3,60,61,21347,0,0,0,0,1,0,0,0,0,0,0,0,0,96304,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,24,452,3,0,0,92,0,209,0,0,0,26,326,0,0,0,0,0,0,0,0,0,49,1,0,0,0,3,0,0,0,0,1,108,7,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,32,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,29524,2 +6,0,0,2,0,13,2,0,18,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,74,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2510,13,77,0,3,0,0,0,0,0,24,0,0,0,0,0,1,9,239,0,0,3,0,0,0,0,0,16,0,10,0,0,2,0,18,0,0,0,0,926,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,204,0,79,0,0,0,0,3,29,10,206,0,0,0,0,1,0,0,0,0,0,0,0,0,483,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,10,3,118,2,0,0,255,0,403,0,0,0,188,12,0,0,0,0,0,0,2,0,0,46,1,0,0,0,2,0,0,0,0,1,102,154,0,0,0,0,0,0,0,0,654,0,0,269,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,449,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,229,38,2 +18,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,13558,0,0,0,1,0,0,1,0,0,0,0,4,52,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5778,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,68097,0,0,0,0,3,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,9,54,69,27177,0,0,0,0,1,0,0,0,0,0,0,0,0,92268,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,377,3,0,0,78,0,224,0,0,0,12,282,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,614,0,0,20,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,1,0,6,1,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,32638,2 +6,0,0,2,0,13,2,0,28,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,2,0,3,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,2,119,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2262,13,109,0,5,0,0,0,0,0,27,0,0,0,0,0,1,9,325,0,0,3,0,0,0,0,0,19,0,7,0,0,2,0,64,0,0,0,0,309,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,257,0,99,0,0,0,4,11,29,21,260,0,0,0,0,1,0,0,0,0,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,10,3,140,2,0,0,281,0,336,0,0,0,211,11,0,0,0,0,0,0,10,0,0,66,1,0,0,0,2,0,0,0,0,1,115,159,0,0,0,0,0,0,0,0,704,0,0,298,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,4,0,0,0,0,1,16,548,0,11,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,321,48,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,99,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2554,10,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1016,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,389,0,0,0,0,34,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,391,0,126,0,0,0,0,3,56,19,432,0,0,0,0,1,0,0,0,0,0,0,0,0,1130,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,148,3,0,0,107,0,242,0,0,0,39,6,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,719,0,0,879,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,430,16,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,73,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,975,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,46,2,0,0,44,0,134,0,0,0,5,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,597,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,3,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,5,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,58,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,39,0,0,0,0,0,1,0,0,0,0,0,3,0,0,226,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,135,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,2,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,27,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,18,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,14,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,58,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,4,2 +18,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14124,0,0,0,1,0,0,1,0,0,0,0,4,51,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5781,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,68878,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,56,0,0,0,8,9,56,69,28309,0,0,0,0,1,0,0,0,0,0,0,0,0,92770,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,378,3,0,0,78,0,226,0,0,0,12,294,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,615,0,0,20,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,30758,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,16,0,0,0,0,89,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,16,44,0,0,0,0,0,1,0,0,0,0,0,4,0,0,200,14,160,0,17,0,0,0,0,0,4,0,0,0,0,0,1,3,44,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,110,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,222,71,0,0,0,0,1,0,0,0,0,0,0,0,0,179,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,85,3,0,0,111,0,163,0,0,0,46,1,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,613,0,0,95,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,120,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,10,2 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,1,0,0,66,8,29,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,17,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,7,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,23,0,32,0,0,0,0,3,21,4,35,0,0,0,0,1,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,55,2,0,0,62,0,78,0,0,0,11,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,4,0,0,0,0,0,0,0,0,25,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,35,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,65,8,2 +21,0,0,8,0,44,17,0,45,20,7,0,0,0,30,0,41,0,7,2,0,0,0,3,0,3,12,0,10,0,3,2,0,0,16,0,44,44,0,0,160,0,0,0,1,0,0,7,1,0,0,0,7,167,0,0,0,0,0,1,0,0,0,12,0,28,0,0,3910,44,213,0,18,0,0,0,0,0,33,0,0,0,0,0,4,13,990,0,0,16,0,0,1,20,0,209,15,14,0,0,2,0,273,0,22,0,0,1284,0,0,0,0,14,0,0,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,5,0,0,0,11,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,96,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,656,0,216,0,0,0,11,27,86,207,663,0,0,0,0,1,0,0,0,0,0,0,0,0,1206,0,0,0,0,0,0,0,0,0,0,0,0,7,0,6,0,0,0,0,0,0,13,35,314,8,0,0,303,0,631,0,0,0,176,51,0,0,0,0,0,0,7,0,0,147,1,0,4,0,5,0,0,0,0,8,139,116,0,0,24,0,0,0,0,0,236,0,0,334,0,0,1,0,0,0,0,0,23,0,0,0,2,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,8,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,26,0,0,0,0,1,60,642,0,30,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,9,584,240,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,135,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,53,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,29,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,18,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,36,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,160,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,2,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,33,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,18,2 +16,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14443,0,0,0,1,0,0,2,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5803,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,72576,0,0,0,0,6,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,58,0,0,0,0,3,56,61,28927,0,0,0,0,1,0,0,0,0,0,0,0,0,91964,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,437,3,0,0,91,0,194,0,0,0,25,306,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,28,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,31336,2 +15,0,0,4,0,17,13,0,36,0,6,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,3,0,4,0,3,0,6,0,17,6,0,0,39,0,1,0,1,0,0,1,0,0,0,0,3,90,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2124,17,77,0,7,0,0,0,0,0,6,0,0,0,0,0,1,4,1187,0,0,6,0,0,1,17,0,162,15,2,0,0,2,0,101,0,0,0,0,138,0,0,0,0,6,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,448,0,45,0,0,0,6,6,37,148,468,0,0,0,0,1,0,0,0,0,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,98,4,0,0,128,0,183,0,0,0,57,4,0,0,0,0,0,0,0,0,0,79,1,0,0,0,2,0,0,0,0,3,100,52,0,0,36,0,0,0,0,0,615,0,0,743,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,3,0,364,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,9,0,0,0,0,1,23,104,0,7,0,0,0,0,0,0,61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,89,60,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +2,0,0,3,0,52,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,8,0,0,0,0,1,0,0,0,43,0,52,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,8,38,0,0,0,0,0,1,0,0,0,0,0,10,0,0,294,52,95,0,9,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,43,0,0,1,47,0,388,35,0,0,0,2,0,235,0,0,0,0,611,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,73,0,0,0,8,11,67,363,60,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,168,3,0,0,168,0,214,0,0,0,135,1,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,10,134,112,0,0,84,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,0,0,0,0,0,1,95,43,0,9,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,4,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,104,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,4,0,0,207,14,159,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,47,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,114,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,40,0,0,0,0,3,30,237,74,0,0,0,0,1,0,0,0,0,0,0,0,0,179,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,87,3,0,0,111,0,155,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,110,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,103,0,0,0,0,1,17,71,0,104,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,10,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,9,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,8,22,0,0,0,0,0,1,0,0,0,0,0,3,0,0,170,12,72,0,9,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,37,0,0,0,0,2,0,105,0,1,0,0,202,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,35,0,0,0,16,32,28,37,54,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,58,3,0,0,42,0,145,0,0,0,6,24,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,9,92,1,0,0,0,0,0,0,0,0,645,0,0,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,11,0,0,0,2,1,14,2,0,24,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,171,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,967,11,59,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,128,0,0,0,0,0,0,0,0,15,0,5,0,0,2,0,14,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,117,0,85,0,0,0,0,3,30,13,134,0,0,0,0,1,0,0,0,0,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,8,3,111,2,0,0,247,0,310,0,0,0,180,12,0,0,0,0,0,0,2,0,0,41,1,0,0,0,2,0,0,0,0,0,101,160,0,0,0,0,0,0,0,0,60,0,0,73,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,499,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,206,32,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,238,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,93,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,150,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,71,0,53,0,0,0,32,19,33,18,86,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,635,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,29,0,17,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,19,2 +17,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14035,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5735,22,38,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,59,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,32,0,9,0,0,69888,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,55,0,0,0,8,10,54,71,28130,0,0,0,0,1,0,0,0,0,0,0,0,0,93113,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,378,3,0,0,78,0,227,0,0,0,12,299,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,612,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,4,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,31554,2 +10,0,0,2,0,9,3,0,7,0,2,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3104,9,27,0,1,0,0,0,0,0,2,0,0,0,0,0,1,1,1236,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,857,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,635,0,54,0,0,0,0,3,23,1780,656,0,0,0,0,0,0,0,0,0,0,0,0,0,1723,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,3,49,2,0,0,41,0,138,0,0,0,5,4,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,1198,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,14,2 +6,0,0,2,0,14,2,0,22,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,8,0,0,0,0,2,151,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1771,14,109,0,3,0,0,0,0,0,32,0,0,0,0,0,1,13,300,0,0,3,0,0,0,0,0,20,0,12,0,0,2,0,54,0,0,0,0,318,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,259,0,112,0,0,0,4,9,33,22,265,0,0,0,0,1,0,0,0,0,0,0,0,0,604,0,0,0,0,0,0,0,0,0,0,0,0,8,0,2,0,0,0,0,0,0,10,3,137,2,0,0,252,0,437,0,0,0,180,13,0,0,0,0,0,0,6,0,0,60,1,0,0,0,2,0,0,0,0,1,108,139,0,0,0,0,0,0,0,0,693,0,0,251,0,0,1,0,0,0,0,0,15,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,553,0,9,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,316,50,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,7,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,137,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,182,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,25,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,146,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,23,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,18,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,21,0,1,0,0,0,0,0,11,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,99,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2558,11,78,0,22,0,0,0,0,0,16,0,0,0,0,0,1,10,1026,0,0,0,0,0,0,0,0,34,0,4,0,0,2,0,36,0,0,0,0,481,0,0,0,0,32,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,393,0,130,0,0,0,0,3,59,19,435,0,0,0,0,1,0,0,0,0,0,0,0,0,1147,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,167,3,0,0,110,0,260,0,0,0,39,4,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,719,0,0,883,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,21,0,0,0,0,1,11,170,0,22,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,439,17,2 +28,0,0,3,0,11,9,0,66,0,20,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,11,6,0,0,117,0,0,0,0,0,0,0,0,0,0,0,2,45,0,0,0,0,0,1,0,0,0,0,0,13,0,0,241,11,125,0,3,0,0,0,0,0,8,0,0,0,0,0,1,1,61,0,0,1,0,0,1,62,0,518,35,0,0,0,2,0,303,0,0,0,0,110,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,40,0,0,0,4,4,28,438,71,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,51,3,0,0,54,0,160,0,0,0,18,2,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2,0,0,0,0,1,91,149,0,0,74,0,0,0,0,0,604,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,12,1,0,3,0,0,0,0,0,0,167,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,77,2 +9,0,0,3,0,153,3,0,141,3,3,0,0,0,7,0,793,0,6,1,0,0,0,1,0,2,411,0,0,0,138,0,0,0,54,0,153,303,0,0,120,0,0,0,1,0,0,0,0,0,0,0,139,162,0,0,0,0,0,1,0,0,0,0,0,7,0,0,2397,153,1405,0,140,0,0,0,0,0,1,0,0,0,0,0,1,1,19,0,0,54,0,0,0,0,0,7,0,0,0,0,2,0,2530,0,5,0,0,4696,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0,0,0,32,0,174,0,0,0,276,461,171,288,145,0,0,0,0,1,0,0,0,0,0,0,0,0,1214,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,803,3,0,0,699,0,420,0,0,0,396,52,0,0,0,0,0,0,0,0,0,953,0,0,0,0,2,0,0,0,0,3,260,108,0,0,0,0,0,0,0,0,1589,0,0,49,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,138,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,150,1,1,1,0,137,0,0,0,0,1,207,58,0,551,0,0,0,0,0,0,686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,467,2 +12,0,0,7,0,43,6,0,37,3,13,0,0,2,11,0,20,0,7,3,0,0,0,6,0,8,0,0,10,0,9,0,0,0,17,0,43,6,0,0,93,0,0,0,1,0,0,3,0,0,0,0,9,129,0,0,0,0,0,1,0,0,0,0,0,12,0,0,944,43,103,0,17,0,0,0,0,0,11,0,0,0,0,0,8,16,164,0,0,17,0,0,2,17,0,262,40,4,0,0,2,0,139,0,6,0,0,752,0,0,0,0,10,2,1,0,0,0,0,1,0,0,0,6,0,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,118,0,61,0,0,0,16,14,209,188,120,0,0,0,0,1,0,3,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,30,180,7,0,0,205,0,371,0,0,0,98,39,0,0,0,0,0,0,0,0,0,96,1,0,0,0,9,0,0,0,0,7,125,67,0,0,73,0,0,0,0,0,132,0,0,69,3,0,1,1,0,0,0,0,3,0,1,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,11,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,24,0,0,0,4,1,60,230,0,18,9,0,0,0,0,0,95,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,186,41,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,104,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,207,14,159,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,49,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,110,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,40,0,0,0,0,3,30,237,74,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,83,3,0,0,111,0,153,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,615,0,0,110,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,104,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,103,0,0,0,0,1,17,71,0,104,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,10,2 +18,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14079,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6259,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,72621,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,28199,0,0,0,0,1,0,0,0,0,0,0,0,0,92897,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,456,3,0,0,91,0,216,0,0,0,25,338,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,31389,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,49,11,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,24,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,38,0,0,0,8,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,90,20,2 +6,0,0,8,0,64,10,0,72,5,6,0,0,6,13,0,646,0,6,3,0,0,0,8,0,12,0,0,11,0,4,0,0,0,27,6965,64,6,0,0,99,0,0,0,1,0,0,7,0,0,0,0,6,391,0,0,0,0,0,1,0,0,0,16,0,12,0,0,134435,64,808,0,14,0,0,0,0,0,42,0,0,0,0,1,10,32,34014,0,0,27,0,0,0,0,0,230,20,13,0,0,2,0,730,0,9,16,0,2480,0,0,0,0,4,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,12,12,12,0,0,0,32114,0,151,0,0,0,9,12,336,690,32108,0,0,0,0,1,0,13,0,0,0,0,0,0,1931,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,4,0,86,33,364,15,0,0,443,0,602,0,0,0,274,19,0,0,0,0,0,0,0,0,0,759,1,0,0,0,11,0,0,0,0,4,164,101,0,0,15,0,3,0,0,0,2780,1,0,1488,7,0,1,1,0,0,0,0,14,0,0,0,1,0,0,0,0,0,7,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,7,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,70,1,1,1,0,17,0,0,0,6,1,91,482,0,15,12,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1716,148,2 +2,0,0,3,0,47,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,7,0,0,0,0,1,0,0,0,38,0,47,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,7,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,290,47,94,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,38,0,0,1,47,0,386,35,0,0,0,2,0,234,0,0,0,0,562,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,68,0,0,0,7,10,62,355,60,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,153,3,0,0,153,0,205,0,0,0,120,1,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,9,129,112,0,0,84,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,0,0,0,0,0,1,85,38,0,8,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,5,2 +4,0,0,2,0,13,3,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,13,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,1,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,713,13,59,0,2,0,0,0,0,0,21,0,0,0,0,0,1,9,140,0,0,0,0,0,0,0,0,13,0,8,0,0,2,0,15,0,0,0,0,212,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,128,0,79,0,0,0,1,4,39,55,165,0,0,0,0,1,0,0,0,0,0,0,0,0,439,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,10,3,105,2,0,0,119,0,178,0,0,0,39,7,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,98,25,0,0,0,0,0,0,0,0,643,0,0,121,0,0,1,0,0,0,0,0,9,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,13,96,0,2,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,213,43,2 +0,0,0,3,0,23,2,0,2,1,2,0,0,0,6,0,9,0,7,2,0,0,0,5,0,0,0,0,0,0,1,0,0,0,6,0,23,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,24,0,22,0,0,0,1,0,0,0,0,0,6,0,0,210,23,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,74,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,71,0,50,0,0,0,0,3,62,44,115,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,87,3,0,0,86,0,116,0,0,0,29,5,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,105,2,0,0,0,0,0,0,0,0,209,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,0,0,0,4,0,1,29,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,15,2 +9,0,0,6,0,49,13,0,54,2,11,0,0,7,9,0,712,0,6,2,0,0,0,7,0,10,0,0,11,0,7,0,0,0,12,898,49,6,0,0,58,0,0,0,1,0,0,4,0,0,0,0,7,251,0,0,0,0,0,1,0,0,0,0,0,6,0,0,8753,49,840,0,15,0,0,0,0,0,33,0,0,0,0,0,8,45,1683,0,0,12,0,0,0,0,0,241,25,8,0,0,2,0,796,0,3,26,0,1650,0,0,0,0,6,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,630,0,88,0,0,0,14,10,444,590,597,0,0,0,0,1,0,3,0,0,0,0,0,0,486,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,108,19,254,6,0,0,290,0,338,0,0,0,121,4,0,0,0,0,0,0,0,0,0,812,1,0,0,0,9,0,0,0,0,2,140,26,0,0,32,0,0,0,0,0,2673,1,0,224,10,0,1,1,0,0,0,0,7,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,10,8,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,26,0,0,0,0,1,61,163,0,16,12,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,772,68,2 +11,0,0,2,0,25,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,25,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,920,25,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,470,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,285,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,41,0,0,0,0,3,44,10,52,0,0,0,0,1,0,0,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,113,2,0,0,122,0,133,0,0,0,61,1,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,107,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,0,0,0,0,0,1,39,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,28,2 +6,0,0,2,0,14,2,0,28,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,2,0,3,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,2,123,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2490,14,107,0,5,0,0,0,0,0,27,0,0,0,0,0,1,9,330,0,0,3,0,0,0,0,0,19,0,7,0,0,2,0,62,0,0,0,0,290,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,262,0,102,0,0,0,4,9,33,17,265,0,0,0,0,1,0,0,0,0,0,0,0,0,601,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,10,3,147,2,0,0,283,0,336,0,0,0,211,11,0,0,0,0,0,0,10,0,0,66,1,0,0,0,2,0,0,0,0,1,115,159,0,0,0,0,0,0,0,0,702,0,0,305,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,0,1,17,548,0,11,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,324,46,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,101,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2583,10,80,0,23,0,0,0,0,0,17,0,0,0,0,0,1,10,1038,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,487,0,0,0,0,30,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,396,0,132,0,0,0,0,3,56,19,436,0,0,0,0,1,0,0,0,0,0,0,0,0,1162,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,164,3,0,0,108,0,249,0,0,0,39,6,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,723,0,0,880,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,448,16,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,4,0,0,140,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,130,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,175,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,216,5,0,0,229,0,331,0,1,0,55,3,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,38,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,15,2 +18,0,0,1,0,14,198,0,991,0,200,0,0,0,2,0,16,0,7,1,0,0,0,1,0,0,0,0,18,0,37,0,0,0,1,0,14,6,0,0,1969,0,0,0,1,0,0,1,0,0,0,0,36,200,0,0,0,0,0,1,0,0,0,0,0,197,0,0,5413,14,1460,0,55,0,0,0,0,0,3,0,0,0,0,0,1,3,741,0,0,1,0,0,1,983,0,7415,15,0,0,0,2,0,4972,0,0,0,0,1654,0,0,0,0,214,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,398,0,25,0,0,0,72,73,51,8210,4829,0,0,0,0,1,0,0,0,0,176,0,0,0,3538,0,525,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,252,1,0,0,275,0,232,0,0,0,209,8,0,0,0,0,0,0,0,0,0,1414,1,0,0,0,2,0,0,0,0,37,96,2552,0,0,31,0,0,0,0,0,166,0,0,62,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,108,0,0,0,0,1,15,26,0,55,0,0,0,0,0,0,2373,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,14,2 +4,0,0,2,0,12,3,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,12,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,1,70,0,0,0,0,0,1,0,0,0,0,0,1,0,0,662,12,59,0,2,0,0,0,0,0,21,0,0,0,0,0,1,9,131,0,0,0,0,0,0,0,0,13,0,8,0,0,2,0,15,0,0,0,0,250,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,121,0,76,0,0,0,1,4,35,55,158,0,0,0,0,1,0,0,0,0,0,0,0,0,391,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,10,3,99,2,0,0,116,0,177,0,0,0,39,6,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,97,25,0,0,0,0,0,0,0,0,637,0,0,105,0,0,1,0,0,0,0,0,8,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,0,0,0,0,0,1,12,96,0,2,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,199,44,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,4,0,0,201,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,46,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,105,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,40,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,175,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,86,3,0,0,111,0,162,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,10,2 +20,0,0,8,0,43,17,0,45,20,7,0,0,0,30,0,41,0,7,1,0,0,0,4,0,3,12,0,10,0,3,2,0,0,16,0,43,44,0,0,160,0,0,0,1,0,0,7,1,0,0,0,7,174,0,0,0,0,0,1,0,0,0,12,0,28,0,0,3984,43,215,0,18,0,0,0,0,0,34,0,0,0,0,0,4,13,984,0,0,16,0,0,1,20,0,209,15,14,0,0,2,0,273,0,22,0,0,1477,0,0,0,0,16,0,0,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,7,0,0,0,11,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,97,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,652,0,229,0,0,0,11,27,80,207,658,0,0,0,0,1,0,0,0,0,0,0,0,0,1216,0,0,0,0,0,0,0,0,0,0,0,0,7,0,6,0,0,0,0,0,0,13,35,358,8,0,0,303,0,619,0,0,0,178,71,0,0,0,0,0,0,7,0,0,147,1,0,4,0,5,0,0,0,0,8,140,116,0,0,24,0,0,0,0,0,236,0,0,337,0,0,1,0,0,0,0,0,22,0,0,0,2,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,8,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,26,0,0,0,0,1,59,642,0,30,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,7,585,259,2 +10,0,0,6,0,50,14,0,54,1,11,0,0,7,8,0,814,0,6,2,0,0,0,7,0,10,0,0,8,0,13,0,0,0,6,898,50,6,0,0,55,0,0,0,1,0,0,4,0,0,0,0,13,263,0,0,0,0,0,1,0,0,0,0,0,5,0,0,9001,50,937,0,18,0,0,0,0,0,32,0,0,0,0,0,8,47,1688,0,0,6,0,0,0,0,0,240,25,8,0,0,2,0,893,0,2,28,0,2040,0,0,0,0,4,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,622,0,88,0,0,0,27,12,459,605,589,0,0,0,0,1,0,3,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,108,18,257,6,0,0,297,0,378,0,0,0,106,17,0,0,0,0,0,0,0,0,0,914,1,0,0,0,9,0,0,0,0,2,145,26,0,0,33,0,0,0,0,0,2875,1,0,172,10,0,1,1,0,0,0,0,7,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,10,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,38,0,0,0,12,1,56,163,0,19,12,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,773,50,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1097,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,84,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,157,0,82,0,0,0,0,0,7,48,210,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,15,2,0,0,54,0,81,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,45,0,0,0,0,0,0,0,0,300,0,0,264,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,114,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,333,7,2 +4,0,0,2,0,11,3,0,4,0,2,0,0,0,2,0,9,0,6,1,0,0,0,2,0,0,0,0,0,0,17,0,0,0,3,0,11,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,1,0,0,76,11,43,0,1,0,0,0,0,0,2,0,0,0,0,0,2,2,37,0,0,3,0,0,0,0,0,7,0,0,0,0,2,0,7,0,0,0,0,62,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,33,0,0,0,0,3,29,27,63,0,0,0,0,1,0,0,0,0,0,0,0,0,144,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,42,2,0,0,50,0,68,0,0,0,17,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,3,0,0,0,0,0,93,4,0,0,0,0,0,0,0,0,28,0,0,16,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,16,0,0,0,0,1,14,7,0,17,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,3,2 +0,0,0,2,0,13,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,13,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,62,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9449,13,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1223,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,334,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,858,0,51,0,0,0,0,3,35,8,875,0,0,0,0,1,0,0,0,0,0,0,0,0,3581,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,98,2,0,0,117,0,110,0,0,0,48,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,98,28,0,0,0,0,0,0,0,0,816,0,0,3213,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,16,99,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1269,25,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,21,0,1,0,0,0,0,0,11,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,95,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2529,11,78,0,22,0,0,0,0,0,16,0,0,0,0,0,1,10,1001,0,0,0,0,0,0,0,0,34,0,4,0,0,2,0,36,0,0,0,0,711,0,0,0,0,33,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,387,0,124,0,0,0,0,3,59,19,428,0,0,0,0,1,0,0,0,0,0,0,0,0,1111,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,163,3,0,0,110,0,254,0,0,0,39,3,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,713,0,0,879,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,21,0,0,0,0,1,11,170,0,22,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,418,17,2 +63,0,0,5,0,48,6,0,29,13,3,0,0,2,18,0,572,0,7,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,15,898,48,21,0,0,56,0,0,0,1,0,0,5,0,0,0,0,1,179,0,0,0,0,0,1,0,0,0,0,0,18,0,0,7242,48,656,0,1,0,0,0,0,0,27,0,0,0,0,0,8,21,998,0,0,15,0,0,0,0,0,94,5,7,0,0,2,0,606,0,14,0,0,2484,0,0,0,0,13,15,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,436,0,132,0,0,0,0,3,256,3615,489,0,0,0,0,1,0,3,0,0,0,0,0,0,2922,0,14,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,34,24,285,5,0,0,277,0,399,0,0,0,130,13,0,0,0,0,0,0,4,0,0,637,1,0,0,0,9,0,0,0,0,1,135,34,0,0,0,0,13,0,26,13,2097,1,0,199,6,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,0,0,0,0,0,1,63,179,0,2,12,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,5,630,52,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,226,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,86,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,120,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,68,0,50,0,0,0,32,19,33,18,83,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,31,0,17,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,18,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,1,0,0,0,0,2,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,4,0,0,139,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,31,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,187,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,161,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,213,5,0,0,229,0,328,0,1,0,55,4,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,116,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,26,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,97,15,2 +4,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,4,0,0,209,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,48,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,99,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,42,0,0,0,0,3,30,238,74,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,83,3,0,0,111,0,151,0,0,0,46,3,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,111,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,10,2 +0,0,0,4,1,12,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,13,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1,0,0,0,0,0,2,0,0,49,12,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,24,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,25,0,29,0,0,0,0,3,32,6,46,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,41,5,0,0,46,0,39,0,0,0,8,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,92,2,0,0,0,0,4,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,87,20,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,141,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,178,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,39,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,18,2 +16,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13632,0,0,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6132,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,70609,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,61,0,0,0,0,3,58,61,27305,0,0,0,0,1,0,0,0,0,0,0,0,0,90937,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,431,3,0,0,91,0,218,0,0,0,25,304,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,30724,2 +0,0,0,2,0,17,1,0,43,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,17,47,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,59,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,157,0,617,0,0,0,0,0,15,43,206,0,0,0,0,0,0,0,0,0,0,0,0,0,1577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,20,2,0,0,60,0,88,0,0,0,48,2,0,0,0,0,0,0,0,0,0,51,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,302,0,0,280,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,114,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1395,6,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,170,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,193,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,64,3,0,0,42,0,150,0,0,0,6,4,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,171,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,36,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,135,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,169,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,31,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,18,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,36,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,141,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,169,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,27,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,18,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,896,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,46,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,70,0,0,0,0,0,7,43,189,0,0,0,0,0,0,0,0,0,0,0,0,0,446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,6,2,0,0,53,0,79,0,0,0,48,1,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,44,0,0,0,0,0,0,0,0,286,0,0,228,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,113,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,289,4,2 +25,0,0,3,0,13,8,0,61,0,19,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,13,6,0,0,107,0,0,0,0,0,0,0,0,0,0,0,2,34,0,0,0,0,0,1,0,0,0,0,0,12,0,0,187,13,110,0,3,0,0,0,0,0,4,0,0,0,0,0,1,1,46,0,0,1,0,0,1,57,0,446,35,0,0,0,2,0,278,0,0,0,0,251,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,54,0,35,0,0,0,4,4,36,373,60,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,63,3,0,0,55,0,158,0,0,0,13,3,0,0,0,0,0,0,0,0,0,108,0,0,0,0,2,0,0,0,0,1,93,136,0,0,73,0,0,0,0,0,603,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,2,1,14,1,0,3,0,0,0,0,0,0,151,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,51,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,55,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +7,0,0,3,0,29,5,0,13,0,2,0,0,2,2,0,33,0,6,2,0,0,0,6,0,8,12,0,4,0,3,2,0,0,5,0,29,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,5,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,715,29,69,0,7,0,0,0,0,0,3,0,0,0,0,0,7,12,160,0,0,5,0,0,0,0,0,74,5,0,0,0,2,0,98,0,0,0,0,550,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,91,0,56,0,0,0,8,20,182,28,94,0,0,0,0,1,0,3,0,0,0,0,0,0,220,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,107,3,0,0,112,0,219,0,0,0,42,5,0,0,0,0,0,0,0,0,0,63,0,0,0,0,8,0,0,0,0,1,111,25,0,0,0,0,0,0,0,0,718,0,0,8,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,7,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,10,0,0,0,0,1,34,69,0,20,9,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,19,2 +11,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,16,49,0,0,0,0,0,1,0,0,0,0,0,3,0,0,336,12,73,0,17,0,0,0,0,0,1,0,0,0,0,0,1,1,25,0,0,3,0,0,1,22,0,255,30,0,0,0,2,0,121,0,0,0,0,215,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,37,0,0,0,32,35,29,421,138,0,0,0,0,1,0,0,0,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,57,3,0,0,62,0,138,0,0,0,29,9,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,17,96,48,0,0,98,0,0,0,0,0,24,0,0,16,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,33,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,32,0,0,0,32,1,15,19,0,17,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,9,2 +16,0,0,3,0,26,2,0,4,20,3,0,0,0,23,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,10803,0,0,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,23,0,0,6213,26,47,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,53,0,21,0,0,65216,0,0,0,0,5,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0,69,0,61,0,0,0,0,3,58,61,21619,0,0,0,0,1,0,0,0,0,0,0,0,0,96786,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,24,458,3,0,0,92,0,208,0,0,0,26,317,0,0,0,0,0,0,0,0,0,49,1,0,0,0,3,0,0,0,0,1,108,7,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,30048,2 +2,0,0,2,0,8,2,0,9,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,59,8,30,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,22,0,0,0,0,0,0,0,0,6,0,1,0,0,2,0,7,0,0,0,0,49,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,23,0,18,0,0,0,0,3,21,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,56,2,0,0,61,0,113,0,0,0,8,1,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,88,2,0,0,0,0,0,0,0,0,605,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,9,2 +52,0,0,9,2,33,65,2,74,13,40,0,5,0,58,0,120,0,11,1,0,0,0,1,0,1,0,0,7,0,7,0,0,2,17,0,35,117,0,0,95,0,0,0,1,0,0,3,0,0,0,0,7,80,0,0,0,0,0,1,0,0,0,18,0,25,0,0,904,33,325,0,15,0,0,0,0,0,24,0,0,0,0,0,1,7,167,0,2,17,2,0,7,0,0,123,0,4,0,0,16,2,194,0,21,0,0,1085,0,0,0,0,8,16,0,0,0,0,0,1,0,0,0,6,0,0,5,0,0,0,0,9,0,0,0,10,0,0,0,0,0,5,0,11,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,23,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,157,0,106,0,0,0,13,15,78,87,189,0,0,0,0,1,0,0,0,0,0,0,0,0,905,0,0,0,0,0,0,0,0,0,6,0,0,3,0,0,0,0,0,0,0,1,244,94,469,12,0,0,499,0,771,0,2,0,173,14,0,0,0,0,0,0,0,0,0,373,1,0,0,0,2,0,0,0,0,6,145,25,0,0,0,0,0,0,0,0,291,0,0,108,0,0,1,0,0,0,0,0,9,0,0,0,2,0,0,0,0,0,13,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,38,1,1,1,0,19,0,0,0,0,17,52,45,0,15,0,0,0,0,0,0,179,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,13,0,0,0,0,0,0,0,0,0,0,0,2,0,6,445,207,2 +6,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,6,0,0,0,0,104,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,6,46,0,0,0,0,0,1,0,0,0,0,0,4,0,0,203,14,166,0,7,0,0,0,0,0,4,0,0,0,0,0,1,3,45,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,96,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,176,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,85,3,0,0,111,0,162,0,0,0,46,3,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,613,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,116,0,0,0,0,1,17,71,0,110,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,10,2 +2,0,0,5,0,38,22,0,115,3,34,0,0,2,6,0,581,0,6,3,0,0,0,12,0,11,0,0,4,0,1,0,0,0,6,916,38,6,0,0,171,0,2,0,1,0,0,4,0,0,0,0,1,197,0,0,0,0,0,1,0,0,0,0,0,21,0,0,24753,38,788,0,1,0,0,0,0,0,20,0,0,0,0,0,14,30,4230,0,0,6,0,0,6,83,0,796,95,3,0,0,2,0,1000,0,4,0,0,1225,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,3563,0,78,0,0,0,0,3,261,895,3577,0,0,0,0,1,0,3,0,0,0,0,0,0,586,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,34,14,206,5,0,0,243,0,292,0,0,0,102,5,0,0,0,0,0,0,0,0,0,766,1,0,0,0,15,0,0,0,0,0,121,202,0,0,180,0,0,0,0,0,2175,1,0,43,11,0,1,1,0,0,0,0,9,0,4,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,11,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,0,0,0,0,0,1,44,75,0,2,14,0,0,0,0,0,235,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,508,522,2 +3,0,0,5,0,37,6,0,37,0,5,0,0,6,5,0,563,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,762,37,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,1,181,0,0,0,0,0,1,0,0,0,0,0,2,0,0,6188,37,622,0,3,0,0,0,0,0,12,0,0,0,0,0,8,24,1181,0,0,1,0,0,0,0,0,190,20,3,0,0,2,0,602,0,0,2,0,1355,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,427,0,60,0,0,0,1,4,278,351,423,0,0,0,0,1,0,4,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,24,178,5,0,0,188,0,261,0,0,0,42,3,0,0,0,0,0,0,0,0,0,628,1,0,0,0,9,0,0,0,0,0,120,11,0,0,8,0,0,0,0,0,2160,1,0,61,6,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,5,0,0,0,0,1,38,20,0,4,12,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,574,29,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,40,0,0,0,0,0,1,0,0,0,0,0,3,0,0,230,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,89,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,192,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,179,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,633,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,33,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,18,2 +18,0,0,14,2,50,51,2,333,70,91,2,0,0,86,0,68,0,7,9,0,4,0,7,0,8,17,0,15,0,13,1,0,2,16,0,52,6,0,0,681,0,0,0,1,0,0,1,0,0,0,0,20,212,0,0,0,0,0,1,0,0,0,99,0,116,0,0,1647,50,798,0,36,0,0,0,0,0,5,6,0,0,0,0,11,13,161,0,2,16,2,0,6,277,0,2321,260,1,0,0,2,2,1618,0,78,0,0,1528,0,0,0,0,85,0,5,0,0,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,7,0,8,0,0,0,0,0,2,0,15,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,30,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,0,0,0,0,0,0,168,0,89,0,0,0,33,56,114,2197,302,0,0,0,0,1,0,0,0,0,0,0,0,0,1420,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,12,217,383,23,0,0,416,0,664,0,0,0,224,70,0,0,0,0,0,0,0,0,0,638,1,0,0,0,20,0,0,0,0,20,170,725,0,0,750,0,2,0,1,1,2364,0,0,29,0,0,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1,0,0,0,0,0,18,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,48,0,0,0,0,17,68,176,0,54,0,0,0,0,0,0,684,66,0,0,0,0,0,0,0,0,0,0,0,2,0,1,82,1,0,0,0,0,0,0,0,0,0,0,3,0,1,219,84,2 +222,0,0,3,0,120,3,0,113,2,3,0,0,0,5,0,548,0,6,1,0,0,0,1,0,1,323,0,0,0,109,0,0,0,110,0,120,6,0,0,63,0,0,0,0,0,0,0,0,0,0,0,108,72,0,0,0,0,0,1,0,0,0,0,0,5,0,0,1571,120,1101,0,109,0,0,0,0,0,0,0,0,0,0,0,1,1,57,0,0,110,0,0,0,0,0,437,0,0,0,0,2,0,2064,0,3,0,0,3247,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,18,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,154,0,152,0,0,0,216,542,242,595,167,0,0,0,0,0,0,0,0,0,0,0,0,0,1657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,698,3,0,0,368,0,288,0,0,0,332,40,0,0,0,0,0,0,0,0,0,678,0,0,0,0,2,0,0,0,0,109,202,1,0,0,0,0,0,0,0,0,1119,0,0,108,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,109,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,117,1,1,1,0,108,0,0,0,0,1,230,110,0,433,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,354,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +10,0,0,3,0,18,2,0,12,0,3,0,0,0,3,0,50,0,7,1,0,0,0,1,0,0,24,0,0,0,9,0,0,0,7,0,18,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,8,21,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,18,101,0,9,0,0,0,0,0,0,0,0,0,0,0,1,1,38,0,0,7,0,0,0,0,0,37,0,0,0,0,2,0,161,0,1,0,0,307,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,46,0,41,0,0,0,16,43,45,46,65,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,86,3,0,0,60,0,145,0,0,0,21,8,0,0,0,0,0,0,0,0,0,77,0,0,0,0,2,0,0,0,0,9,98,1,0,0,0,0,0,0,0,0,678,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,8,0,0,0,0,1,25,7,0,33,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,213,2 +0,0,0,0,0,9,2,0,14,0,1,0,0,0,2,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,0,0,0,75,9,36,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,23,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,24,0,0,0,0,3,24,7,46,0,0,0,0,1,0,0,0,0,0,0,0,0,81,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,65,0,0,0,81,0,84,0,0,0,20,1,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,91,13,0,0,0,0,0,0,0,0,27,0,0,12,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,9,64,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,50,1,2 +6,0,0,3,0,17,25,0,144,0,34,0,0,0,2,0,17,0,7,2,0,0,0,1,0,0,0,0,5,0,1,0,0,0,3,0,17,6,0,0,267,0,0,0,1,0,0,3,0,0,0,0,0,86,0,0,0,0,0,1,0,0,0,0,0,28,0,0,887,17,243,0,6,0,0,0,0,0,14,0,0,0,0,0,2,6,161,0,0,3,0,0,1,136,0,1040,30,6,0,0,2,0,680,0,0,0,0,204,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,143,0,78,0,0,0,0,3,38,889,158,0,0,0,0,1,0,0,0,0,0,0,0,0,522,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,104,3,0,0,138,0,238,0,0,0,68,17,0,0,0,0,0,0,4,0,0,229,1,0,0,0,3,0,0,0,0,1,99,365,0,0,62,0,0,0,0,0,651,0,0,138,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,5,0,0,0,0,1,20,156,0,6,0,0,0,0,0,0,355,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,217,18,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,73,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,98,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,47,2,0,0,44,0,131,0,0,0,5,5,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,24,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,58,0,1,0,0,0,1,0,0,0,0,0,1,0,0,8819,12,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1179,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,802,0,51,0,0,0,0,3,31,8,819,0,0,0,0,1,0,0,0,0,0,0,0,0,3520,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,90,2,0,0,112,0,109,0,0,0,46,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,27,0,0,0,0,0,0,0,0,761,0,0,2993,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1226,24,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,56,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9136,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1187,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,832,0,48,0,0,0,0,3,27,8,849,0,0,0,0,1,0,0,0,0,0,0,0,0,3555,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,85,2,0,0,109,0,108,0,0,0,46,7,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,792,0,0,3117,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1227,21,2 +14,0,0,4,0,39,22,0,25,0,3,0,0,2,3,0,54,0,7,2,0,0,0,8,0,11,0,0,6,0,1,0,0,0,3,3908,39,6,0,0,25,0,0,0,1,0,0,2,0,0,0,0,1,393,0,0,0,0,0,1,0,0,0,0,0,4,0,0,75648,39,165,0,3,0,0,0,0,0,48,0,0,0,0,0,9,21,12902,0,0,3,0,0,0,0,0,96,5,3,0,0,2,0,109,0,1,0,0,2773,0,4,0,0,2,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,12,12,0,0,0,10744,0,53,0,0,0,0,3,301,277,10735,0,0,0,0,1,0,4,0,0,0,0,0,0,317,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,11,228,4,0,0,287,0,308,0,0,0,125,21,0,0,0,0,0,0,0,0,0,116,1,0,0,0,10,0,0,0,0,1,142,25,0,0,0,0,0,0,0,0,1476,1,0,47,25,0,1,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,25,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,2,0,0,0,0,1,42,85,0,4,14,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1141,37,2 +49,0,0,21,7,104,79,8,689,52,221,0,0,0,78,0,215,0,10,13,0,11,4,19,1,4,57,0,16,0,17,3,0,7,66,0,112,97,7,0,1221,0,0,0,1,0,0,3,0,0,0,0,23,351,0,0,0,0,0,1,0,0,0,108,0,128,0,0,12954,104,1723,0,36,0,0,0,0,0,14,18,0,0,0,0,21,26,3126,0,8,66,7,0,5,546,0,4516,735,3,0,0,4,7,2937,0,66,0,0,4089,0,0,0,0,23,0,0,0,0,0,0,1,0,0,0,23,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,2,0,10,0,26,0,0,0,0,0,0,14,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,1,0,0,0,0,0,0,0,0,3,1,0,0,0,2,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,64,2,2,2,0,0,2,2472,2,310,0,0,0,42,127,260,25096,2732,0,0,0,0,1,0,0,0,0,0,1,1,0,5030,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,2,0,115,185,943,32,0,0,812,0,1517,0,1,0,403,194,0,0,0,0,0,0,3,0,0,1292,1,0,0,0,48,0,0,0,0,21,229,1203,0,0,2530,0,4,0,0,0,1063,0,0,1956,0,0,1,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,53,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,29,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,1,128,1,1,1,0,102,0,0,0,0,106,179,265,0,97,0,0,0,0,0,0,1280,19,0,0,0,0,0,0,0,0,0,0,0,8,0,1,60,0,0,0,0,0,0,0,0,0,0,0,12,0,4,1428,1549,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,23,0,0,0,0,0,1,0,0,0,0,0,3,0,0,171,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,173,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,35,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,61,3,0,0,42,0,146,0,0,0,6,9,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,646,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,171,2 +6,0,0,2,0,14,2,0,20,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,8,0,0,0,0,0,161,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1917,14,91,0,3,0,0,0,0,0,31,0,0,0,0,0,1,13,300,0,0,3,0,0,0,0,0,22,0,12,0,1,2,0,20,0,0,0,0,303,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,255,0,114,0,0,0,0,3,33,20,262,0,0,0,0,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,10,3,131,2,0,0,251,0,397,0,0,0,179,24,0,0,0,1,0,0,6,0,0,48,1,0,0,0,2,0,0,0,0,1,108,139,0,0,0,0,0,0,0,0,671,0,0,245,0,0,1,0,0,0,0,0,15,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,553,0,3,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,333,52,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,58,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,3,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,6,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1285,15,47,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,125,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,7,6,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,111,0,0,0,0,0,7,41,209,0,0,0,0,0,0,0,0,0,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,42,2,0,0,53,0,167,0,0,0,48,3,0,0,0,0,0,0,0,0,0,51,0,0,0,0,4,0,0,0,0,0,3,42,0,0,0,0,0,0,0,0,292,0,0,188,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,113,0,1,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,377,15,2 +10,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,21,0,1,0,0,0,0,0,10,6,0,0,71,0,3,0,1,0,0,4,0,0,0,0,0,97,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2571,10,78,0,22,0,0,0,0,0,16,0,0,0,0,0,1,10,1021,0,0,0,0,0,0,0,0,34,0,4,0,0,2,0,36,0,0,0,0,408,0,0,0,0,28,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,392,0,123,0,0,0,0,3,54,19,434,0,0,0,0,1,0,0,0,0,0,0,0,0,1151,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,165,3,0,0,107,0,264,0,0,0,39,7,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,716,0,0,887,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,21,0,0,0,0,1,10,170,0,22,0,0,1,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,422,32,2 +27,0,0,3,0,15,2,0,19,2,3,0,0,0,5,0,17,0,6,1,0,0,0,1,0,0,0,0,13,0,1,0,0,0,3,0,15,6,0,0,17,0,0,0,1,0,0,5,0,0,0,0,0,74,0,0,0,0,0,1,0,0,0,0,0,5,0,0,588,15,71,0,14,0,0,0,0,0,16,0,0,0,0,0,1,8,64,0,0,3,0,0,0,0,0,24,0,6,0,0,2,0,36,0,3,0,0,351,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,6,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,69,0,0,0,0,3,36,56,105,0,0,0,0,1,0,0,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,6,140,3,0,0,112,0,270,0,0,0,31,22,0,0,0,0,0,0,0,0,0,52,1,0,0,0,2,0,0,0,0,1,97,13,0,0,0,0,0,0,0,0,627,0,0,51,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,13,0,0,0,0,1,18,80,0,14,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,157,402,2 +6,0,0,2,0,13,2,0,26,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,0,120,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2245,13,89,0,3,0,0,0,0,0,27,0,0,0,0,0,1,9,329,0,0,3,0,0,0,0,0,19,0,7,0,0,2,0,26,0,0,0,0,277,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,258,0,101,0,0,0,0,3,29,15,261,0,0,0,0,1,0,0,0,0,0,0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,10,3,139,2,0,0,280,0,326,0,0,0,211,13,0,0,0,0,0,0,10,0,0,54,1,0,0,0,2,0,0,0,0,1,114,159,0,0,0,0,0,0,0,0,685,0,0,296,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,548,0,3,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,323,43,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,50,0,0,0,0,0,1,0,0,0,0,0,4,0,0,141,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,29,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,117,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,170,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,213,5,0,0,229,0,328,0,1,0,55,3,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,114,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,30,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,95,16,2 +8,0,0,7,0,47,6,0,37,4,7,0,0,6,9,0,665,0,7,3,0,0,0,7,0,10,0,0,5,0,1,0,0,0,8,898,47,6,0,0,55,0,0,0,1,0,0,3,0,0,0,0,1,207,0,0,0,0,0,1,0,0,0,0,0,7,0,0,6866,47,756,0,3,0,0,0,0,0,28,0,0,0,0,0,9,21,1348,0,0,8,0,0,0,0,0,199,20,6,1,0,2,0,720,0,4,2,0,1707,0,2,0,0,0,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,474,0,67,0,0,0,0,3,308,403,468,0,0,0,0,1,0,4,0,0,0,0,0,0,413,0,0,0,0,2,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,84,29,246,7,0,0,305,0,475,0,0,0,142,12,0,0,0,0,0,0,0,0,0,737,1,0,0,0,10,0,0,0,0,0,130,75,0,0,11,0,0,0,0,0,1909,1,0,126,6,0,1,1,0,0,0,0,4,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,2,0,0,0,0,1,55,313,0,4,12,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,5,611,91,2 +2,0,0,3,0,10,2,0,21,0,5,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,0,87,0,0,0,0,0,1,0,0,0,0,0,1,0,0,727,10,52,0,0,0,0,0,0,0,9,0,0,0,0,0,1,4,91,0,0,2,0,0,0,4,0,51,10,2,0,0,2,0,37,0,0,0,0,153,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,50,0,0,0,0,3,24,40,104,0,0,0,0,1,0,0,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,3,122,3,0,0,155,0,158,0,0,0,93,5,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,0,127,55,0,0,23,0,0,0,0,0,649,0,0,185,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,257,0,1,0,0,0,0,0,0,37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,215,19,2 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 +14,0,0,3,1,15,26,1,26,1,3,0,0,0,4,0,58,0,8,2,0,0,0,2,0,11,0,0,0,0,1,0,0,1,2,0,16,51,0,0,14,0,0,0,0,0,0,0,0,0,0,0,11,29,0,0,0,0,0,1,0,0,0,0,0,2,0,0,4749,15,95,0,12,0,0,0,0,0,0,0,0,0,0,0,3,3,1805,0,1,2,1,0,1,0,0,68,0,0,0,0,4,1,27,0,1,0,0,1753,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,933,0,45,0,0,0,11,25,39,2662,991,0,0,0,0,0,0,0,0,0,0,0,0,0,2609,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,14,231,4,0,0,206,0,259,0,1,0,45,12,0,0,0,0,0,0,0,0,0,125,0,0,0,0,4,0,0,0,0,12,111,2,0,0,0,0,0,0,0,0,982,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,1,1,1,0,0,0,0,0,0,9,18,3,0,12,0,0,0,0,0,0,41,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,963,307,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +28,0,0,3,0,11,9,0,66,0,20,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,11,6,0,0,117,0,0,0,0,0,0,0,0,0,0,0,2,46,0,0,0,0,0,1,0,0,0,0,0,13,0,0,240,11,124,0,2,0,0,0,0,0,8,0,0,0,0,0,1,1,63,0,0,1,0,0,1,62,0,518,35,0,0,0,2,0,303,0,0,0,0,83,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,38,0,0,0,4,4,28,438,71,0,0,0,0,0,0,0,0,0,0,0,0,0,305,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,57,3,0,0,54,0,162,0,0,0,17,5,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2,0,0,0,0,1,91,149,0,0,74,0,0,0,0,0,606,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,12,1,0,3,0,0,0,0,0,0,167,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,76,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,34,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +8,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,33,0,0,0,3,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,11,0,0,68,11,126,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,34,0,0,3,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,65,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,34,0,0,0,0,3,27,378,59,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,125,0,0,0,27,1,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,603,0,0,32,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,33,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,32,0,0,0,0,1,14,7,0,33,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,3,2 +125,0,0,3,0,38,2,0,17,0,3,0,0,0,4,0,15,0,6,1,0,0,0,2,0,1,0,0,62,0,1,0,0,0,23,0,38,6,0,0,14,0,0,0,1,0,0,5,0,0,0,0,1,148,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61159,38,133,0,63,0,0,0,0,0,18,0,0,0,0,0,2,13,1036,0,0,23,0,0,0,0,0,77,0,9,1,0,2,0,82,0,2,0,0,29189,0,0,0,0,63,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,875,0,176,0,0,0,0,3,79,81613,1102,0,0,0,0,1,0,0,0,0,0,0,0,0,2005,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,2,1,8,5,516,3,0,0,231,0,369,0,0,0,151,35,0,0,0,0,0,0,0,0,0,47,1,0,0,0,3,0,0,0,0,1,126,61,0,0,0,0,0,0,0,0,389,0,0,660,0,0,1,0,0,0,0,0,11,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,63,0,0,0,0,1,61,259,0,64,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,731,1343,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,63,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9503,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1226,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,862,0,50,0,0,0,0,3,27,8,879,0,0,0,0,1,0,0,0,0,0,0,0,0,3688,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,94,2,0,0,111,0,108,0,0,0,48,8,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,28,0,0,0,0,0,0,0,0,820,0,0,3233,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,99,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1267,24,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,60,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9759,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1257,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,887,0,47,0,0,0,0,3,27,8,904,0,0,0,0,1,0,0,0,0,0,0,0,0,3871,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,84,2,0,0,109,0,108,0,0,0,46,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,846,0,0,3338,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1296,20,2 +12,0,0,3,0,10,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,71,0,3,0,1,0,0,3,0,0,0,0,0,57,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1269,10,70,0,23,0,0,0,0,0,12,0,0,0,0,0,1,8,614,0,0,0,0,0,0,0,0,34,0,3,0,0,2,0,36,0,0,0,0,304,0,0,0,0,30,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,123,0,116,0,0,0,0,3,53,17,163,0,0,0,0,1,0,0,0,0,0,0,0,0,408,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,73,3,0,0,83,0,174,0,0,0,16,1,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,90,11,0,0,0,0,4,0,0,0,860,0,0,760,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,22,0,0,0,0,1,10,103,0,23,0,0,1,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,521,14,2 +17,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5187,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,39042,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,54,0,0,0,14,17,52,37,33078,0,0,0,0,1,0,0,0,0,0,0,0,0,96999,0,1,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,11,327,3,0,0,75,0,200,0,0,0,12,227,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,615,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,25,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,29906,2 +2,0,0,2,0,40,22,0,29,0,22,0,1,4,5,0,67,0,6,1,0,0,0,9,0,11,0,0,23,0,2,0,0,0,3,2634,40,6,0,0,49,0,0,0,1,0,0,3,0,0,0,0,2,282,0,0,0,0,0,1,0,0,0,0,0,1,0,0,44710,40,213,0,21,0,0,0,0,0,49,0,0,0,0,0,9,92,7304,0,0,3,0,0,0,0,0,332,15,5,0,0,2,0,147,0,0,73,0,2227,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,12,12,12,0,0,0,5159,0,71,0,0,0,14,16,487,841,5120,0,0,0,0,1,0,4,0,0,0,0,0,0,845,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,71,19,268,2,0,0,303,0,276,0,0,0,151,5,0,0,0,0,0,0,0,0,0,156,1,0,0,0,10,0,0,0,0,2,163,25,0,0,114,0,0,0,0,0,1560,1,0,846,22,0,1,1,0,0,0,0,4,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,22,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,57,0,0,0,0,1,43,107,0,22,14,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1204,60,2 +4,0,0,0,0,58,2,0,4,0,1,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,0,0,20,0,1,0,0,0,47,0,58,54,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,544,58,54,0,21,0,0,0,0,0,1,0,0,0,0,0,1,1,9,0,0,47,0,0,0,0,0,25,0,0,0,0,2,0,29,0,0,0,0,1036,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,23,0,62,0,0,0,0,3,75,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,247,0,0,0,219,0,222,0,0,0,172,10,0,0,0,0,0,0,0,0,0,41,0,0,0,0,2,0,0,0,0,1,144,17,0,0,0,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,20,0,0,0,0,1,105,47,0,21,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,346,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,83,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,67,0,0,0,0,0,7,36,186,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,14,2,0,0,54,0,80,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,45,0,0,0,0,0,0,0,0,289,0,0,260,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,115,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,281,6,2 +2,0,0,3,0,47,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,7,0,0,0,0,1,0,0,0,38,0,47,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,7,37,0,0,0,0,0,1,0,0,0,0,0,10,0,0,286,47,94,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,38,0,0,1,47,0,386,35,0,0,0,2,0,234,0,0,0,0,541,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,68,0,0,0,7,10,62,355,60,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,151,3,0,0,153,0,206,0,0,0,120,3,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,9,129,112,0,0,84,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,0,0,0,0,0,1,85,38,0,8,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,5,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,923,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,468,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,292,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,41,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,113,2,0,0,119,0,132,0,0,0,61,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,27,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,4,0,0,206,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,49,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,131,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,40,0,0,0,0,3,30,238,74,0,0,0,0,1,0,0,0,0,0,0,0,0,182,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,83,3,0,0,111,0,151,0,0,0,46,1,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,615,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,10,2 +16,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14239,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5804,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,72325,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,62,0,0,0,0,3,60,63,28519,0,0,0,0,1,0,0,0,0,0,0,0,0,92094,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,443,3,0,0,91,0,207,0,0,0,25,408,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,32,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,32584,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,7,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +11,0,0,3,0,10,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,3,0,0,0,0,0,58,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1292,10,70,0,23,0,0,0,0,0,12,0,0,0,0,0,1,8,628,0,0,0,0,0,0,0,0,34,0,3,0,0,2,0,36,0,0,0,0,366,0,0,0,0,39,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,127,0,122,0,0,0,0,3,55,17,167,0,0,0,0,1,0,0,0,0,0,0,0,0,398,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,77,3,0,0,85,0,175,0,0,0,18,1,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,92,11,0,0,0,0,4,0,0,0,867,0,0,760,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,10,103,0,23,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,541,11,2 +4,0,0,2,0,31,2,0,9,0,2,0,0,0,2,0,17,0,6,1,0,0,0,5,1,5,0,0,7,5,1,0,0,0,21,0,31,57,63,0,8,0,0,0,1,0,0,19,0,0,0,0,9,143,0,0,0,0,0,1,0,0,0,0,0,1,0,0,11869,31,159,0,13,0,0,0,0,0,64,0,0,0,0,0,1,22,535,0,0,21,0,0,0,0,0,82,0,21,0,0,2,0,41,0,0,0,0,2490,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,497,0,259,0,0,0,10,57,50,104,1330,0,0,0,0,1,0,0,0,0,0,0,0,0,4365,0,287,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,4,0,17,5,252,2,0,0,280,0,506,0,0,0,223,37,0,0,0,0,0,0,0,0,0,38,1,0,0,0,7,0,0,0,0,1,113,131,0,0,0,0,0,0,0,0,522,0,0,349,0,0,1,0,1,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,11,0,0,0,0,1,52,310,0,18,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,758,78,2 +8,0,0,3,0,30,5,0,12,0,2,0,0,2,2,0,28,0,6,2,0,0,0,6,0,8,9,0,2,0,4,0,0,0,6,0,30,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,4,80,0,0,0,0,0,1,0,0,0,0,0,2,0,0,710,30,55,0,4,0,0,0,0,0,3,0,0,0,0,0,7,12,171,0,0,6,0,0,0,0,0,72,5,0,0,0,2,0,75,0,0,0,0,552,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,100,0,64,0,0,0,6,12,183,21,110,0,0,0,0,1,0,4,0,0,0,0,0,0,237,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,98,3,0,0,121,0,208,0,0,0,51,4,0,0,0,0,0,0,0,0,0,57,0,0,0,0,8,0,0,0,0,1,112,31,0,0,0,0,0,0,0,0,704,0,0,3,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,4,5,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,3,0,0,0,0,1,36,74,0,14,9,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,51,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,1,0,0,924,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,469,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,301,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,113,2,0,0,119,0,144,0,0,0,61,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,28,2 +0,0,0,2,0,8,2,0,21,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,68,8,43,0,1,0,0,0,0,0,3,0,0,0,0,1,1,4,23,0,0,0,0,0,0,0,0,6,0,1,0,0,2,0,20,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,20,0,0,0,0,3,21,4,39,0,0,0,0,1,0,0,0,0,0,0,0,0,86,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,98,0,88,0,0,0,41,0,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,90,27,0,0,0,0,0,0,0,0,26,0,0,8,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,125,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,4,2 +9,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,32,0,0,0,2,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,11,0,0,69,11,124,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,35,0,0,2,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,71,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,27,377,58,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,124,0,0,0,22,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,604,0,0,30,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,31,0,0,0,0,1,13,6,0,32,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,3,2 +15,0,0,6,0,52,10,0,58,9,11,0,0,6,9,0,1130,0,6,2,0,0,0,8,0,10,0,0,9,0,1,0,0,0,13,1354,52,6,0,0,61,0,0,0,1,0,0,3,1,0,0,0,1,358,0,0,0,0,0,1,0,0,0,0,0,7,0,0,36671,52,1250,0,7,0,0,0,0,0,29,0,0,0,0,0,9,20,6731,0,0,13,0,0,0,0,0,221,20,6,0,0,2,0,1201,0,4,6,0,3993,0,1,0,0,0,0,2,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,4153,0,79,0,0,0,0,3,395,1035,4150,0,0,0,0,1,0,9,0,0,0,0,0,0,425,0,0,0,0,2,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,84,41,295,6,0,0,344,0,393,0,0,0,164,21,0,0,0,0,0,0,0,0,0,1230,1,0,2,0,10,0,0,0,0,0,135,71,0,0,31,0,0,0,0,0,3896,1,0,79,10,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,10,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,6,0,0,0,0,1,65,325,0,8,12,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1487,77,2 +2,0,0,3,0,47,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,7,0,0,0,0,1,0,0,0,38,0,47,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,7,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,288,47,94,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,38,0,0,1,47,0,386,35,0,0,0,2,0,234,0,0,0,0,546,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,68,0,0,0,7,10,62,355,60,0,0,0,0,0,0,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,153,3,0,0,153,0,205,0,0,0,120,1,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,9,129,112,0,0,84,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,0,0,0,0,0,1,85,38,0,8,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,5,2 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 +6,0,0,2,0,13,2,0,20,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,2,94,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3546,13,104,0,3,0,0,0,0,0,30,0,0,0,0,0,1,11,488,0,0,3,0,0,0,0,0,18,0,10,0,0,2,0,52,0,0,0,0,323,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,402,0,99,0,0,0,4,9,29,21,406,0,0,0,0,1,0,0,0,0,0,0,0,0,669,0,0,0,0,0,0,0,0,0,0,0,0,7,0,4,0,0,0,0,0,0,10,3,126,2,0,0,319,0,440,0,0,0,253,18,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,1,103,215,0,0,0,0,0,0,0,0,696,0,0,453,0,0,1,0,0,0,0,0,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,654,0,9,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,308,50,2 +6,0,0,2,0,14,2,0,20,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,2,0,2,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,2,78,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2491,14,95,0,5,0,0,0,0,0,24,0,0,0,0,0,1,9,236,0,0,3,0,0,0,0,0,16,0,10,0,0,2,0,54,0,0,0,0,267,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,202,0,80,0,0,0,4,9,33,12,204,0,0,0,0,1,0,0,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,10,3,121,2,0,0,258,0,419,0,0,0,188,15,0,0,0,0,0,0,2,0,0,58,1,0,0,0,2,0,0,0,0,1,103,154,0,0,0,0,0,0,0,0,674,0,0,264,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,0,1,17,449,0,10,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,232,38,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,60,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9184,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1178,0,0,3,0,0,0,0,0,11,0,6,0,0,2,0,14,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,838,0,49,0,0,0,0,3,27,8,855,0,0,0,0,1,0,0,0,0,0,0,0,0,3594,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,85,2,0,0,109,0,108,0,0,0,46,5,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,796,0,0,3138,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1218,24,2 +15,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,0,0,5,0,1,0,2,0,22,6,0,0,14063,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5672,22,35,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,2,0,0,0,0,0,24,0,1,0,0,2,0,29,0,9,0,0,67816,0,0,0,0,5,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,11,54,69,28187,0,0,0,0,1,0,0,0,0,0,0,0,0,89881,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,365,3,0,0,78,0,211,0,0,0,12,254,0,0,0,0,0,0,0,0,0,37,0,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,609,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,8,0,0,0,8,1,24,2,0,5,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,28719,2 +0,0,0,2,0,8,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,115,8,34,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,17,0,0,0,0,0,0,0,0,6,0,1,0,0,2,0,13,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,22,0,19,0,0,0,0,3,22,4,35,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,72,2,0,0,93,0,116,0,0,0,35,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,92,27,0,0,0,0,0,0,0,0,26,0,0,8,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,81,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,7,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,55,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9260,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1186,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,845,0,47,0,0,0,0,3,27,8,862,0,0,0,0,1,0,0,0,0,0,0,0,0,3635,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,82,2,0,0,109,0,108,0,0,0,46,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,805,0,0,3168,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1226,20,2 +2,0,0,3,0,48,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,7,0,0,0,0,1,0,0,0,39,0,48,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,7,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,349,48,94,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,39,0,0,1,47,0,386,35,0,0,0,2,0,234,0,0,0,0,647,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,69,0,0,0,7,10,63,357,60,0,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,154,3,0,0,156,0,209,0,0,0,123,1,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,8,130,112,0,0,84,0,0,0,0,0,596,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,0,0,0,0,0,1,87,39,0,8,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,4,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,11,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,98,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2530,11,80,0,24,0,0,0,0,0,16,0,0,0,0,0,1,10,1014,0,0,0,0,0,0,0,0,36,0,4,0,0,2,0,38,0,0,0,0,492,0,0,0,0,32,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,387,0,124,0,0,0,0,3,59,19,428,0,0,0,0,1,0,0,0,0,0,0,0,0,1118,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,161,3,0,0,110,0,254,0,0,0,39,9,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,720,0,0,875,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,23,0,0,0,0,1,11,170,0,24,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,428,16,2 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,10,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,94,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2549,10,80,0,24,0,0,0,0,0,16,0,0,0,0,0,1,10,1008,0,0,0,0,0,0,0,0,36,0,4,0,0,2,0,38,0,0,0,0,615,0,0,0,0,27,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,386,0,119,0,0,0,0,3,55,19,427,0,0,0,0,1,0,0,0,0,0,0,0,0,1100,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,149,3,0,0,107,0,241,0,0,0,39,4,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,717,0,0,883,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,23,0,0,0,0,1,10,170,0,24,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,414,19,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,933,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,478,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,303,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,41,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,113,2,0,0,119,0,135,0,0,0,61,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,26,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,204,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,46,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,112,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,183,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,85,3,0,0,111,0,162,0,0,0,46,3,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,10,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,143,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,35,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +2,0,0,6,0,18,2,0,8,1,3,0,0,0,6,0,10,0,6,2,0,0,0,1,0,0,0,0,1,0,2,0,0,0,6,0,18,6,0,0,29,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,5,0,9,0,0,46,18,27,0,3,0,0,0,0,0,0,0,0,0,0,0,2,2,7,0,0,6,0,0,0,0,0,12,0,0,0,0,2,0,18,0,3,0,0,161,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,23,0,32,0,0,0,2,5,39,15,30,0,0,0,0,1,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,68,8,0,0,66,0,199,0,0,0,21,12,0,0,0,0,0,0,0,0,0,35,0,0,0,0,3,0,0,0,0,2,100,1,0,0,0,0,0,0,0,0,20,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,3,0,0,0,0,1,24,6,0,3,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,22,2 +20,0,0,8,0,45,17,0,47,17,7,0,0,0,27,0,51,0,7,1,0,0,0,4,0,3,18,0,12,0,5,2,0,0,17,0,45,44,0,0,161,0,0,0,1,0,0,7,1,0,0,0,9,181,0,0,0,0,0,1,0,0,0,13,0,25,0,0,3921,45,233,0,22,0,0,0,0,0,34,0,0,0,0,0,4,13,987,0,0,17,0,0,1,20,0,215,15,14,0,0,2,0,306,0,19,0,0,1403,0,0,0,0,18,0,0,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,9,0,0,0,11,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,97,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,22,0,0,0,0,0,0,657,0,231,0,0,0,15,38,85,212,669,0,0,0,0,1,0,0,0,0,0,0,0,0,1227,0,0,0,0,0,0,0,0,0,0,0,0,7,0,5,0,0,0,0,0,0,13,32,341,8,0,0,307,0,690,0,0,0,180,62,0,0,0,0,0,0,7,0,0,156,1,0,4,0,5,0,0,0,0,9,140,116,0,0,24,0,0,0,0,0,260,0,0,320,0,0,1,0,0,0,0,0,23,0,0,0,2,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,11,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,37,0,0,0,0,1,62,643,0,40,0,0,0,0,0,0,142,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,7,605,231,2 +10,0,0,0,0,151,2,0,143,1,1,0,0,0,3,0,800,0,6,1,0,0,0,1,0,0,414,0,0,0,139,0,0,0,51,0,151,303,0,0,111,0,0,0,0,0,0,0,0,0,0,0,138,158,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2331,151,1408,0,139,0,0,0,0,0,1,0,0,0,0,0,1,1,19,0,0,51,0,0,0,0,0,5,0,0,0,0,2,0,2542,0,1,0,0,4877,0,0,0,0,38,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0,0,0,28,0,161,0,0,0,276,464,168,279,136,0,0,0,0,0,0,0,0,0,0,0,0,0,1184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,775,0,0,0,685,0,448,0,0,0,371,32,0,0,0,0,0,0,0,0,0,955,0,0,0,0,2,0,0,0,0,1,258,100,0,0,0,0,0,0,0,0,2178,0,0,49,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,148,1,1,1,0,138,0,0,0,0,1,202,51,0,553,0,0,0,0,0,0,421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,415,2 +6,0,0,3,0,17,25,0,144,0,34,0,0,0,2,0,17,0,7,2,0,0,0,1,0,0,0,0,5,0,1,0,0,0,3,0,17,6,0,0,267,0,0,0,1,0,0,3,0,0,0,0,0,86,0,0,0,0,0,1,0,0,0,0,0,28,0,0,907,17,243,0,6,0,0,0,0,0,14,0,0,0,0,0,2,6,162,0,0,3,0,0,1,136,0,1040,30,6,0,0,2,0,680,0,0,0,0,216,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,143,0,78,0,0,0,0,3,38,889,158,0,0,0,0,1,0,0,0,0,0,0,0,0,505,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,100,3,0,0,138,0,239,0,0,0,68,25,0,0,0,0,0,0,4,0,0,229,1,0,0,0,3,0,0,0,0,1,99,365,0,0,62,0,0,0,0,0,653,0,0,143,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,5,0,0,0,0,1,20,156,0,6,0,0,0,0,0,0,355,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,217,19,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,36,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,142,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,174,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,35,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +0,0,0,2,0,9,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,895,9,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,470,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,6,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,20,0,0,0,0,3,25,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,57,2,0,0,98,0,112,0,0,0,44,0,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,37,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,123,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,222,3,2 +17,0,0,3,0,22,2,0,4,19,3,0,0,0,22,0,10,0,7,2,0,0,0,1,0,0,0,0,2,0,3,0,0,0,2,0,22,6,0,0,14550,0,0,0,1,0,0,1,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,22,0,0,5194,22,46,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,18,0,1,0,0,2,0,51,0,20,0,0,71753,0,0,0,0,3,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,56,0,0,0,4,7,56,65,29117,0,0,0,0,1,0,0,0,0,0,0,0,0,92199,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,23,363,3,0,0,79,0,206,0,0,0,13,247,0,0,0,0,0,0,0,0,0,48,1,0,0,0,3,0,0,0,0,3,104,6,0,0,0,0,0,0,0,0,611,0,0,18,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,4,2,0,0,1,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,6,0,0,0,4,1,24,2,0,5,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,33346,2 +22,0,0,2,0,14,14,0,16,0,2,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,8,0,11,0,0,0,3,0,14,6,0,0,18,0,0,0,1,0,0,2,0,0,0,0,10,57,0,0,0,0,0,1,0,0,0,0,0,1,0,0,447,14,62,0,19,0,0,0,0,0,7,0,0,0,0,0,1,4,73,0,0,3,0,0,0,0,0,15,0,4,0,0,2,0,49,0,0,0,0,282,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,76,0,42,0,0,0,20,5,41,63,93,0,0,0,0,1,0,0,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,31,100,2,0,0,107,0,199,0,0,0,37,5,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,1,96,21,0,0,0,0,0,0,0,0,676,0,0,56,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,28,0,0,0,0,1,17,78,0,19,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,61,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,899,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,444,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,310,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,112,2,0,0,119,0,144,0,0,0,61,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,28,2 +0,0,0,3,0,12,2,0,16,0,3,0,0,0,3,0,14,0,6,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,34,0,0,0,1,0,0,3,0,0,0,0,0,63,0,0,0,0,0,1,0,0,0,0,0,3,0,0,377,12,47,0,1,0,0,0,0,0,13,0,0,0,0,0,2,6,38,0,0,2,0,0,0,0,0,10,0,6,0,0,2,0,17,0,1,0,0,129,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,56,0,33,0,0,0,0,3,32,5,60,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,86,3,0,0,120,0,131,0,0,0,47,4,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,94,34,0,0,0,0,0,0,0,0,32,0,0,64,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,14,188,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,23,2 +2,0,0,2,0,12,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,12,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,2,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,9201,12,45,0,3,0,0,0,0,0,10,0,0,0,0,0,1,4,1214,0,0,1,0,0,0,0,0,8,0,3,0,0,2,0,17,0,0,0,0,155,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,826,0,40,0,0,0,4,4,26,15,827,0,0,0,0,1,0,0,0,0,0,0,0,0,3719,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,92,2,0,0,110,0,145,0,0,0,36,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,96,25,0,0,0,0,0,0,0,0,799,0,0,3141,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,13,92,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1248,17,2 +0,0,0,7,0,9,2,0,10,0,3,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,3,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,1,0,0,0,0,2,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,9,35,0,5,0,0,0,0,0,4,0,0,0,0,0,1,3,20,0,0,1,0,0,0,0,0,9,0,1,0,0,2,0,11,0,0,0,0,142,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,34,0,50,0,0,0,4,4,23,11,44,0,0,0,0,1,0,0,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,75,10,0,0,105,0,225,0,0,0,55,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,1,93,43,0,0,0,0,0,0,0,0,27,0,0,10,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,6,0,0,0,0,1,10,100,0,5,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,94,57,2 +3,0,0,5,2,54,8,8,121,6,28,0,0,2,11,1,933,0,6,9,0,2,1,19,0,11,3,0,5,0,2,0,0,1,18,1079,56,6,60,0,150,0,0,0,1,0,0,5,0,0,0,0,2,266,0,0,0,0,0,1,0,0,0,0,0,23,0,0,9265,54,1429,0,3,0,0,0,0,0,32,6,0,0,0,0,22,38,1636,0,8,18,1,0,1,63,0,625,70,9,0,0,2,2,1157,0,9,0,0,2021,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,12,12,12,0,0,0,812,0,227,0,0,0,2,8,331,813,907,0,0,0,0,1,0,4,0,0,0,0,0,0,1312,0,97,0,0,0,0,0,0,0,0,0,0,5,1,3,0,0,0,0,1,0,44,19,322,7,0,0,351,0,502,0,0,0,157,21,0,0,0,0,0,0,4,0,0,1110,1,0,0,0,31,0,0,0,0,1,137,196,0,0,180,0,0,0,0,0,4237,1,0,353,8,0,1,2,0,0,0,0,9,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,38,38,0,0,8,0,0,0,0,0,8,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,70,1,1,1,0,7,0,0,0,0,47,74,298,0,7,14,0,0,0,0,0,398,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,886,129,2 +2,0,0,2,0,12,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,12,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,2,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,10596,12,45,0,3,0,0,0,0,0,10,0,0,0,0,0,1,4,1401,0,0,1,0,0,0,0,0,8,0,3,0,0,2,0,17,0,0,0,0,151,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,946,0,38,0,0,0,4,4,26,15,947,0,0,0,0,1,0,0,0,0,0,0,0,0,4289,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,93,2,0,0,110,0,145,0,0,0,36,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,96,25,0,0,0,0,0,0,0,0,919,0,0,3623,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,13,92,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1430,17,2 +12,0,0,3,1,15,26,1,26,1,3,0,0,0,4,0,58,0,8,2,0,0,0,2,0,9,0,0,0,0,0,0,0,1,2,0,16,51,0,0,14,0,0,0,0,0,0,0,0,0,0,0,9,36,0,0,0,0,0,1,0,0,0,0,0,2,0,0,4733,15,93,0,10,0,0,0,0,0,0,0,0,0,0,0,3,3,1786,0,1,2,1,0,1,0,0,64,0,0,0,0,4,1,25,0,1,0,0,1524,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,927,0,40,0,0,0,9,21,39,2650,949,0,0,0,0,0,0,0,0,0,0,0,0,0,2374,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,14,254,4,0,0,204,0,349,0,1,0,43,15,0,0,0,0,0,0,0,0,0,125,0,0,0,0,4,0,0,0,0,10,109,2,0,0,0,0,0,0,0,0,969,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,1,1,1,0,0,0,0,0,0,9,18,3,0,9,0,0,0,0,0,0,41,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,942,48,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,204,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,46,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,89,0,0,0,0,3,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,174,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,83,3,0,0,111,0,151,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,10,2 +11,0,0,6,0,50,14,0,52,2,12,0,0,7,10,0,720,0,6,2,0,0,0,7,0,10,0,0,8,0,13,0,0,0,7,898,50,6,0,0,58,0,0,0,1,0,0,4,0,0,0,0,13,278,0,0,0,0,0,1,0,0,0,0,0,6,0,0,8853,50,841,0,18,0,0,0,0,0,31,0,0,0,0,0,8,45,1702,0,0,7,0,0,0,0,0,239,25,7,0,0,2,0,804,0,3,28,0,1741,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,625,0,88,0,0,0,26,11,443,606,596,0,0,0,0,1,0,3,0,0,0,0,0,0,478,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,108,19,268,6,0,0,297,0,388,0,0,0,108,7,0,0,0,0,0,0,0,0,0,821,1,0,0,0,9,0,0,0,0,2,145,26,0,0,33,0,0,0,0,0,2677,1,0,172,10,0,1,1,0,0,0,0,6,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,10,15,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,35,0,0,0,12,1,57,188,0,19,12,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,757,71,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,59,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9897,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1267,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,896,0,49,0,0,0,0,3,27,8,913,0,0,0,0,1,0,0,0,0,0,0,0,0,3915,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,92,2,0,0,111,0,108,0,0,0,48,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,28,0,0,0,0,0,0,0,0,854,0,0,3373,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,99,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1306,25,2 +11,0,0,3,0,12,98,0,115,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,215,0,0,0,1,0,0,0,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,3,0,0,342,12,239,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,32,0,0,3,0,0,1,111,0,830,30,0,0,0,2,0,554,0,0,0,0,217,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,42,0,0,0,8,11,29,753,55,0,0,0,0,1,0,0,0,0,0,0,0,0,551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,54,3,0,0,151,0,135,0,0,0,118,5,0,0,0,0,0,0,0,0,0,240,0,0,0,0,2,0,0,0,0,5,96,226,0,0,98,0,0,0,0,0,27,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,247,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,5,2 +13,0,0,3,0,13,12,0,31,0,10,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,7,0,0,0,4,0,13,6,0,0,45,0,0,0,1,0,0,0,0,0,0,0,6,47,0,0,0,0,0,1,0,0,0,0,0,3,0,0,309,13,72,0,7,0,0,0,0,0,1,0,0,0,0,0,1,1,29,0,0,4,0,0,1,27,0,252,35,0,0,0,2,0,133,0,0,0,0,2272,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,39,0,0,0,12,15,30,424,50,0,0,0,0,1,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,57,3,0,0,68,0,148,0,0,0,35,1,0,0,0,0,0,0,0,0,0,71,0,0,0,0,2,0,0,0,0,7,97,57,0,0,113,0,0,0,0,0,27,0,0,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,12,0,0,0,12,1,17,20,0,7,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,5,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,35,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,86,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,138,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,68,0,50,0,0,0,32,19,33,18,83,0,0,0,0,1,0,0,0,0,0,0,0,0,178,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,81,3,0,0,78,0,171,0,0,0,18,4,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,23,0,17,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,18,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,2,0,8,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,1,0,0,73,8,28,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,18,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,6,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,32,0,0,0,0,3,21,4,36,0,0,0,0,1,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,54,2,0,0,84,0,98,0,0,0,34,0,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,90,27,0,0,0,0,0,0,0,0,25,0,0,8,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,81,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,65,6,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +2,0,0,0,0,9,5,0,11,0,2,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,1,0,0,19,9,28,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,8,0,0,1,0,0,0,7,0,61,0,0,0,0,2,0,41,0,0,0,0,50,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,17,0,0,0,0,3,22,61,22,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,32,0,0,0,38,0,98,0,0,0,7,1,0,0,0,0,0,0,0,0,0,35,0,0,0,0,2,0,0,0,0,0,91,19,0,0,0,0,0,0,0,0,593,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,29,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,21,0,1,0,0,0,0,0,11,6,0,0,71,0,3,0,1,0,0,4,0,0,0,0,0,93,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2569,11,78,0,22,0,0,0,0,0,16,0,0,0,0,0,1,10,1020,0,0,0,0,0,0,0,0,34,0,4,0,0,2,0,36,0,0,0,0,479,0,0,0,0,33,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,392,0,123,0,0,0,0,3,58,19,433,0,0,0,0,1,0,0,0,0,0,0,0,0,1133,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,165,3,0,0,110,0,253,0,0,0,39,5,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,717,0,0,887,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,21,0,0,0,0,1,11,170,0,22,0,0,1,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,422,19,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,123,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,182,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,27,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +10,0,0,2,0,9,3,0,7,0,2,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3096,9,27,0,1,0,0,0,0,0,2,0,0,0,0,0,1,1,1235,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,804,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,632,0,50,0,0,0,0,3,23,1778,653,0,0,0,0,0,0,0,0,0,0,0,0,0,1756,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,3,48,2,0,0,41,0,160,0,0,0,5,3,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,1200,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,707,14,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,68,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,69,0,0,0,0,0,7,41,196,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,10,2,0,0,53,0,84,0,0,0,48,1,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,44,0,0,0,0,0,0,0,0,295,0,0,260,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,114,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,296,5,2 +2,0,0,2,0,12,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,12,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,2,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,9579,12,45,0,3,0,0,0,0,0,10,0,0,0,0,0,1,4,1184,0,0,1,0,0,0,0,0,8,0,3,0,0,2,0,17,0,0,0,0,125,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,867,0,38,0,0,0,4,4,26,15,868,0,0,0,0,1,0,0,0,0,0,0,0,0,3512,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,93,2,0,0,110,0,145,0,0,0,36,1,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,96,25,0,0,0,0,0,0,0,0,841,0,0,3305,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,13,92,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1214,17,2 +7,0,0,3,0,29,5,0,11,0,2,0,0,2,2,0,23,0,6,2,0,0,0,6,0,8,6,0,2,0,3,0,0,0,5,0,29,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,3,76,0,0,0,0,0,1,0,0,0,0,0,2,0,0,649,29,47,0,3,0,0,0,0,0,3,0,0,0,0,0,7,12,149,0,0,5,0,0,0,0,0,72,5,0,0,0,2,0,58,0,0,0,0,453,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,91,0,56,0,0,0,4,10,182,20,94,0,0,0,0,1,0,3,0,0,0,0,0,0,196,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,99,3,0,0,112,0,206,0,0,0,42,4,0,0,0,0,0,0,0,0,0,51,0,0,0,0,8,0,0,0,0,1,111,25,0,0,0,0,0,0,0,0,682,0,0,2,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,3,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,2,0,0,0,0,1,34,69,0,10,9,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,28,2 +0,0,0,5,0,22,6,0,28,3,12,0,0,0,7,0,21,0,7,3,0,0,0,2,0,0,3,0,3,0,4,0,0,0,8,0,22,6,0,0,57,0,0,0,1,0,0,2,0,0,0,0,3,85,0,0,0,0,0,1,0,0,0,0,0,11,0,0,717,22,83,0,7,0,0,0,0,0,8,0,0,0,0,0,4,7,106,0,0,8,0,0,2,20,0,195,35,2,0,0,2,0,130,0,5,0,0,343,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,106,0,76,0,0,0,6,10,50,253,119,0,0,0,0,1,0,0,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,1,0,8,8,121,5,0,0,158,0,242,0,0,0,87,7,0,0,0,0,0,0,0,0,0,81,1,0,0,0,5,0,0,0,0,2,104,87,0,0,81,0,0,0,0,0,56,0,0,122,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,12,0,0,0,0,1,30,146,0,10,0,0,0,0,0,0,68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,155,32,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,17,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,35,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,4,2 +3,0,0,5,2,57,17,8,121,6,28,0,0,2,11,1,1007,0,6,10,0,2,1,18,0,11,3,0,5,0,2,0,0,1,18,3454,59,6,59,0,150,0,0,0,1,0,0,5,0,0,0,0,2,347,0,0,0,0,0,1,0,0,0,0,0,23,0,0,54807,57,1538,0,3,0,0,0,0,0,48,6,0,0,0,0,22,38,9039,0,8,18,1,0,1,63,0,625,70,9,0,0,2,2,1239,0,9,0,0,2087,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,12,12,12,0,0,0,8084,0,234,0,0,0,2,8,372,878,8175,0,0,0,0,1,0,4,0,0,0,0,0,0,1632,0,98,0,0,0,0,0,0,0,0,0,0,5,1,5,0,0,0,0,1,0,44,19,359,7,0,0,415,0,506,0,0,0,213,20,0,0,0,0,0,0,4,0,0,1193,1,0,0,0,31,0,0,0,0,1,151,203,0,0,180,0,0,0,0,0,4447,1,0,894,16,0,1,2,0,0,0,0,10,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,41,41,0,0,7,0,0,0,0,0,16,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,7,0,0,0,0,51,77,224,0,7,14,0,0,0,0,0,399,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,944,107,2 +4,0,0,2,0,11,2,0,9,0,2,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,17,0,13,0,0,0,3,0,11,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,12,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1052,11,63,0,30,0,0,0,0,0,6,0,0,0,0,0,1,6,475,0,0,3,0,0,0,0,0,73,0,1,0,0,2,0,38,0,0,0,0,222,0,0,0,0,18,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,30,0,0,0,24,27,28,59,57,0,0,0,0,1,0,0,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,77,2,0,0,98,0,182,0,0,0,47,4,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,13,93,31,0,0,0,0,0,0,0,0,825,0,0,744,0,0,1,0,1,0,0,0,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,373,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,41,0,0,0,4,1,14,124,0,30,0,0,1,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,261,8,2 +6,0,0,2,0,14,2,0,20,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,2,93,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3875,14,101,0,3,0,0,0,0,0,29,0,0,0,0,0,1,11,573,0,0,3,0,0,0,0,0,17,0,10,0,0,2,0,54,0,0,0,0,434,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,435,0,97,0,0,0,4,11,33,25,439,0,0,0,0,1,0,0,0,0,0,0,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,7,0,3,0,0,0,0,0,0,10,3,125,2,0,0,323,0,383,0,0,0,251,34,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,1,104,216,0,0,0,0,0,0,0,0,720,0,0,541,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,658,0,9,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,333,50,2 +61,0,0,6,0,48,8,0,53,13,12,0,0,2,18,0,540,0,7,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,15,898,48,24,0,0,99,0,0,0,1,0,0,6,0,0,0,0,1,221,0,0,0,0,0,1,0,0,0,0,0,23,0,0,19127,48,673,0,1,0,0,0,0,0,33,0,0,0,0,0,8,22,2993,0,0,15,0,0,1,25,0,297,30,9,0,0,2,0,688,0,14,0,0,2619,0,0,0,0,13,15,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,10,2,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,2388,0,139,0,0,0,0,3,257,3705,2441,0,0,0,0,1,0,3,0,0,0,0,0,0,2991,0,15,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,34,24,313,6,0,0,295,0,414,0,0,0,153,11,0,0,0,0,0,0,4,0,0,640,1,0,0,0,9,0,0,0,0,1,136,99,0,0,51,0,13,0,26,13,2080,1,0,243,6,0,1,1,0,0,0,0,15,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,0,0,0,0,0,1,63,230,0,2,12,0,0,0,0,0,154,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,6,701,58,2 +28,0,0,3,0,14,2,0,19,2,3,0,0,0,5,0,17,0,6,1,0,0,0,1,0,0,0,0,13,0,1,0,0,0,2,0,14,6,0,0,17,0,0,0,1,0,0,5,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,5,0,0,596,14,71,0,14,0,0,0,0,0,16,0,0,0,0,0,1,8,66,0,0,2,0,0,0,0,0,24,0,6,0,0,2,0,36,0,3,0,0,342,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,6,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,68,0,0,0,0,3,34,56,104,0,0,0,0,1,0,0,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,6,125,3,0,0,109,0,276,0,0,0,28,15,0,0,0,0,0,0,0,0,0,52,1,0,0,0,2,0,0,0,0,1,96,13,0,0,0,0,0,0,0,0,628,0,0,49,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,13,0,0,0,0,1,16,79,0,14,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,159,403,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,55,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +10,0,0,3,0,18,2,0,12,0,3,0,0,0,3,0,50,0,7,1,0,0,0,1,0,0,24,0,0,0,9,0,0,0,7,0,18,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,8,21,0,0,0,0,0,1,0,0,0,0,0,3,0,0,226,18,101,0,9,0,0,0,0,0,0,0,0,0,0,0,1,1,38,0,0,7,0,0,0,0,0,37,0,0,0,0,2,0,161,0,1,0,0,390,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,46,0,39,0,0,0,16,43,46,46,65,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,88,3,0,0,60,0,148,0,0,0,21,3,0,0,0,0,0,0,0,0,0,77,0,0,0,0,2,0,0,0,0,9,98,1,0,0,0,0,0,0,0,0,678,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,8,0,0,0,0,1,25,7,0,33,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,213,2 +0,0,0,3,0,8,2,0,17,0,2,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,60,0,0,7,0,2,0,1,0,0,2,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1096,8,49,0,1,0,0,0,0,0,11,0,0,0,0,0,1,7,492,0,0,0,0,0,0,0,0,10,0,3,0,0,2,0,35,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,53,0,30,0,0,0,0,3,22,7,64,0,0,0,0,1,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,20,3,82,3,0,0,84,0,160,0,0,0,23,6,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,0,88,16,0,0,0,0,0,0,0,0,291,0,0,758,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,168,0,1,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,247,40,2 +8,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,32,0,0,0,2,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,11,0,0,72,11,124,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,37,0,0,2,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,61,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,33,0,0,0,0,3,27,377,59,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,125,0,0,0,22,6,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,605,0,0,30,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,32,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,31,0,0,0,0,1,13,6,0,32,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,3,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,26,0,22,0,0,0,1,0,0,0,0,0,6,0,0,212,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,75,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,49,0,0,0,0,3,57,44,113,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,84,3,0,0,83,0,114,0,0,0,29,3,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,209,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,15,2 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,34,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,4,2 +4,0,0,2,0,12,3,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,12,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,1,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,698,12,59,0,2,0,0,0,0,0,21,0,0,0,0,0,1,9,142,0,0,0,0,0,0,0,0,13,0,8,0,0,2,0,15,0,0,0,0,191,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,127,0,78,0,0,0,1,4,36,55,164,0,0,0,0,1,0,0,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,10,3,99,2,0,0,116,0,177,0,0,0,39,10,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,97,25,0,0,0,0,0,0,0,0,641,0,0,113,0,0,1,0,0,0,0,0,9,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,12,97,0,2,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,212,43,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,62,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9715,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1243,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,880,0,49,0,0,0,0,3,27,8,897,0,0,0,0,1,0,0,0,0,0,0,0,0,3746,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,92,2,0,0,111,0,108,0,0,0,48,5,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,28,0,0,0,0,0,0,0,0,839,0,0,3310,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,99,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1282,23,2 +6,0,0,3,0,17,25,0,144,0,34,0,0,0,2,0,17,0,7,2,0,0,0,1,0,0,0,0,5,0,1,0,0,0,3,0,17,6,0,0,267,0,0,0,1,0,0,3,0,0,0,0,0,83,0,0,0,0,0,1,0,0,0,0,0,28,0,0,910,17,243,0,6,0,0,0,0,0,14,0,0,0,0,0,2,6,174,0,0,3,0,0,1,136,0,1040,30,6,0,0,2,0,680,0,0,0,0,228,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,147,0,81,0,0,0,0,3,38,889,162,0,0,0,0,1,0,0,0,0,0,0,0,0,526,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,101,3,0,0,138,0,238,0,0,0,68,7,0,0,0,0,0,0,4,0,0,229,1,0,0,0,3,0,0,0,0,1,99,365,0,0,62,0,0,0,0,0,656,0,0,150,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,5,0,0,0,0,1,20,156,0,6,0,0,0,0,0,0,355,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,233,18,2 +12,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,16,0,7,1,0,0,0,1,0,0,0,0,26,0,113,0,0,0,0,0,10,6,0,0,131,0,3,0,1,0,0,3,0,0,0,0,112,81,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1719,10,187,0,139,0,0,0,0,0,12,0,0,0,0,0,1,8,585,0,0,0,0,0,0,0,0,486,0,3,0,0,2,0,153,0,0,0,0,491,0,0,0,0,31,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,134,0,116,0,0,0,224,227,55,298,168,0,0,0,0,1,0,0,0,0,0,0,0,0,422,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,164,3,0,0,83,0,233,0,0,0,16,14,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,113,90,11,0,0,0,0,4,0,0,0,896,0,0,872,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,473,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,250,0,0,0,224,1,10,103,0,139,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,534,21,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,1,0,0,0,0,0,2,0,0,48,11,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,23,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,38,0,0,0,8,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,87,20,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,104,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,4,0,0,203,14,159,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,46,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,102,0,0,0,0,3,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,237,71,0,0,0,0,1,0,0,0,0,0,0,0,0,172,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,85,3,0,0,111,0,163,0,0,0,46,3,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,110,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,104,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,103,0,0,0,0,1,17,71,0,104,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,10,2 +2,0,0,4,0,12,2,0,33,0,8,0,0,0,4,0,19,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,12,40,0,0,23,0,5,0,1,0,0,5,0,0,0,0,0,121,0,0,0,0,0,1,0,0,0,0,0,5,0,0,2350,12,96,0,1,0,0,0,0,0,25,0,0,0,0,0,2,11,747,0,0,1,0,0,1,12,0,122,25,9,0,0,2,0,85,0,0,0,0,200,0,0,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,252,0,82,0,0,0,0,3,34,91,254,0,0,0,0,1,0,0,0,0,0,0,0,0,654,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,20,3,96,4,0,0,123,0,224,0,0,0,52,7,0,0,0,0,0,0,6,0,0,72,1,0,0,0,3,0,0,0,0,1,94,52,0,0,51,0,0,0,0,0,921,0,0,1031,0,0,1,0,1,0,0,0,19,0,3,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,13,292,0,1,0,0,1,0,0,0,67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,5,491,71,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +0,0,0,3,0,11,2,0,16,0,3,0,0,0,3,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,34,0,0,0,1,0,0,3,0,0,0,0,0,65,0,0,0,0,0,1,0,0,0,0,0,3,0,0,461,11,47,0,1,0,0,0,0,0,13,0,0,0,0,0,2,6,52,0,0,2,0,0,0,0,0,10,0,6,0,0,2,0,17,0,1,0,0,160,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,62,0,32,0,0,0,0,3,28,5,66,0,0,0,0,1,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,83,3,0,0,117,0,130,0,0,0,47,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,93,34,0,0,0,0,0,0,0,0,38,0,0,89,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,188,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,23,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1070,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,67,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,74,0,0,0,0,0,7,43,199,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,17,2,0,0,53,0,80,0,0,0,48,3,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,44,0,0,0,0,0,0,0,0,296,0,0,264,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,115,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,311,7,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +2,0,0,3,0,14,2,0,11,4,3,0,0,0,7,0,21,0,6,1,0,0,0,1,0,0,3,0,2,0,2,0,1,0,2,0,14,6,0,0,16,0,23,0,1,0,0,53,0,0,0,0,1,60,0,0,0,0,0,1,0,0,0,0,0,7,0,0,4680,14,263,0,4,0,0,0,0,0,112,0,0,0,0,602,1,107,514,0,0,2,0,0,0,0,0,64,0,55,0,0,2,0,39,0,5,0,0,430,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,609,0,186,0,0,0,2,8,40,13,510,0,0,0,0,1,0,0,0,0,0,0,0,0,2730,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,10,8,99,3,0,0,139,0,403,0,0,0,74,8,0,0,0,0,0,0,0,0,0,50,1,0,0,0,2,0,0,0,0,2,96,6,0,0,0,0,0,0,0,0,771,0,0,418,0,0,1,0,0,0,0,0,104,0,0,0,52,22,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,84,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,48,0,7,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2198,27,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,50,11,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,25,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,30,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,38,0,0,0,8,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,95,20,2 +16,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,1,0,6,0,26,6,0,0,14254,0,0,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5916,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73651,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,28549,0,0,0,0,1,0,0,0,0,0,0,0,0,90478,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,428,3,0,0,91,0,199,0,0,0,25,296,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,1,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,30721,2 +0,0,0,3,0,9,2,0,8,0,3,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,71,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,88753,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,35349,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,19,0,0,0,0,27032,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17670,0,24,0,0,0,0,3,23,6,17681,0,0,0,0,1,0,0,0,1,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,3,76,3,0,0,79,0,151,0,0,0,24,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,95,13,0,0,0,0,0,0,0,0,17674,0,0,739,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,38,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17621,15,2 +3,0,0,4,0,11,6,0,32,0,8,0,0,0,3,0,17,0,7,1,0,0,0,1,0,0,0,0,3,0,5,0,0,0,1,0,11,6,0,0,34,0,0,0,1,0,0,6,0,0,0,0,4,84,0,0,0,0,0,1,0,0,0,0,0,6,0,0,1870,11,108,0,8,0,0,0,0,0,26,0,0,0,0,0,1,9,376,0,0,1,0,0,1,15,0,143,15,7,0,0,2,0,95,0,1,0,0,280,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,286,0,112,0,0,0,8,5,32,116,293,0,0,0,0,1,0,0,0,0,0,0,0,0,665,0,0,0,0,0,0,0,0,0,0,0,0,6,0,11,0,0,0,0,0,0,10,4,117,4,0,0,174,0,417,0,0,0,107,17,0,0,0,0,0,0,11,0,0,73,1,0,0,0,2,0,0,0,0,1,100,107,0,0,31,0,0,0,0,0,704,0,0,286,0,0,1,0,1,0,0,0,13,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,11,0,0,0,0,1,12,120,0,8,0,0,0,0,0,0,88,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,6,381,31,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,238,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,89,0,0,2,0,0,0,0,0,6,0,2,0,0,2,0,26,0,1,0,0,132,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,70,0,51,0,0,0,32,19,33,18,85,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,169,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,28,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,25,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,18,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,12,0,0,0,0,3,21,3,21,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,23,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,2 +11,0,0,3,0,10,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,10,6,0,0,71,0,3,0,1,0,0,3,0,0,0,0,0,59,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1274,10,72,0,24,0,0,0,0,0,13,0,0,0,0,0,1,8,613,0,0,0,0,0,0,0,0,35,0,3,0,0,2,0,37,0,0,0,0,197,0,0,0,0,34,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,124,0,116,0,0,0,0,3,53,17,163,0,0,0,0,1,0,0,0,0,0,0,0,0,412,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,74,3,0,0,86,0,176,0,0,0,18,2,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,92,11,0,0,0,0,4,0,0,0,859,0,0,761,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,23,0,0,0,0,1,10,103,0,24,0,0,1,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,520,13,2 +3,0,0,5,0,35,6,0,36,0,5,0,0,6,5,0,504,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,762,35,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,1,178,0,0,0,0,0,1,0,0,0,0,0,2,0,0,6891,35,562,0,3,0,0,0,0,0,12,0,0,0,0,0,8,24,1320,0,0,1,0,0,0,0,0,190,20,3,0,0,2,0,543,0,0,2,0,1270,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,547,0,54,0,0,0,1,4,267,350,544,0,0,0,0,1,0,4,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,24,175,5,0,0,183,0,259,0,0,0,42,3,0,0,0,0,0,0,0,0,0,568,1,0,0,0,9,0,0,0,0,0,118,11,0,0,8,0,0,0,0,0,2063,1,0,61,6,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,20,0,4,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,30,2 +11,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,141,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,27,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +25,0,0,3,0,13,8,0,61,0,19,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,13,6,0,0,107,0,0,0,0,0,0,0,0,0,0,0,2,34,0,0,0,0,0,1,0,0,0,0,0,12,0,0,187,13,110,0,3,0,0,0,0,0,4,0,0,0,0,0,1,1,46,0,0,1,0,0,1,57,0,446,35,0,0,0,2,0,278,0,0,0,0,258,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,54,0,33,0,0,0,4,4,36,373,60,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,64,3,0,0,55,0,158,0,0,0,13,2,0,0,0,0,0,0,0,0,0,108,0,0,0,0,2,0,0,0,0,1,93,136,0,0,73,0,0,0,0,0,603,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,2,1,14,1,0,3,0,0,0,0,0,0,151,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,51,2 +16,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14534,0,0,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6006,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73362,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,58,0,0,0,0,3,56,61,29109,0,0,0,0,1,0,0,0,0,0,0,0,0,91990,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,440,3,0,0,91,0,214,0,0,0,25,312,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,28,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,31387,2 +3,0,0,5,2,57,17,8,119,6,28,0,0,2,11,1,968,0,6,9,0,2,1,19,0,11,3,0,5,0,2,0,0,1,18,3454,59,6,60,0,150,0,0,0,1,0,0,4,0,0,0,0,2,295,0,0,0,0,0,1,0,0,0,0,0,23,0,0,43639,57,1496,0,3,0,0,0,0,0,48,6,0,0,0,0,22,38,7183,0,8,18,1,0,1,63,0,625,70,9,0,0,2,2,1200,0,9,0,0,2189,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,12,12,12,0,0,0,6258,0,233,0,0,0,2,8,372,877,6349,0,0,0,0,1,0,4,0,0,0,0,0,0,1539,0,98,0,0,0,0,0,0,0,0,0,0,5,1,4,0,0,0,0,1,0,44,19,357,7,0,0,414,0,521,0,0,0,208,30,0,0,0,0,0,0,4,0,0,1152,1,0,0,0,31,0,0,0,0,1,150,203,0,0,180,0,0,0,0,0,4338,1,0,736,16,0,1,2,0,0,0,0,9,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,41,41,0,0,7,0,0,0,0,0,16,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,7,0,0,0,0,51,77,224,0,7,14,0,0,0,0,0,398,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,913,106,2 +14,0,0,4,0,69,11,0,102,30,28,0,0,0,40,0,19,0,7,2,0,0,0,3,0,0,0,0,15,0,16,0,0,0,45,0,69,13,0,0,318,0,0,0,1,0,0,9,2,0,0,0,15,213,0,0,0,0,0,1,0,0,0,26,0,40,0,0,22498,69,307,0,31,0,0,0,0,0,53,0,0,0,1,0,4,18,8027,0,0,45,0,0,0,75,0,684,75,17,1,0,2,0,469,0,36,0,0,4823,0,0,0,0,19,1,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,13,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,7,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,6596,0,275,0,0,0,30,32,118,1616,6569,0,0,0,0,1,0,0,0,0,0,0,0,0,4493,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,8,47,479,6,0,0,458,0,397,0,0,0,341,1003,0,0,0,0,0,0,0,0,0,207,1,0,7,0,5,0,0,0,0,16,155,322,0,0,181,0,0,0,0,0,1289,0,0,1413,0,0,1,0,0,0,0,0,27,0,0,0,3,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,69,1,1,1,0,45,0,0,0,24,1,114,616,0,31,0,0,0,0,0,0,314,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,32,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1715,206,2 +28,0,0,3,0,12,9,0,72,0,22,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,12,6,0,0,127,0,0,0,0,0,0,0,0,0,0,0,2,45,0,0,0,0,0,1,0,0,0,0,0,14,0,0,248,12,133,0,3,0,0,0,0,0,8,0,0,0,0,0,1,1,63,0,0,1,0,0,1,68,0,564,40,0,0,0,2,0,330,0,0,0,0,146,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,63,0,39,0,0,0,4,4,32,474,72,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,60,3,0,0,57,0,160,0,0,0,18,11,0,0,0,0,0,0,0,0,0,123,0,0,0,0,2,0,0,0,0,1,92,163,0,0,85,0,0,0,0,0,606,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,4,0,0,0,2,1,13,1,0,3,0,0,0,0,0,0,180,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,80,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,4,0,0,0,0,0,58,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9860,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1284,0,0,3,0,0,0,0,0,11,0,6,0,0,2,0,14,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,896,0,49,0,0,0,0,3,27,8,913,0,0,0,0,1,0,0,0,0,0,0,0,0,3934,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,87,2,0,0,109,0,108,0,0,0,46,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,856,0,0,3368,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1326,22,2 +2,0,0,3,0,47,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,7,0,0,0,0,1,0,0,0,38,0,47,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,7,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,291,47,94,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,29,0,0,38,0,0,1,47,0,386,35,0,0,0,2,0,234,0,0,0,0,552,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,68,0,0,0,7,10,62,355,60,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,151,3,0,0,153,0,206,0,0,0,120,3,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,9,129,112,0,0,84,0,0,0,0,0,598,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,0,0,0,0,0,1,85,38,0,8,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,5,2 +12,0,0,4,0,15,2,0,5,0,3,0,0,0,3,0,19,0,7,2,0,0,0,1,0,1,0,0,125,0,1,0,0,0,1,0,15,33,0,0,16,0,0,0,1,0,0,1,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,4,0,0,217486,15,160,0,127,0,0,0,0,0,3,0,0,0,0,0,2,4,42474,0,0,1,0,0,0,0,0,135,0,1,0,0,2,0,135,0,1,0,0,295660,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,21986,0,62,0,0,0,0,3,21956,724,23859,0,0,0,0,1,0,0,0,0,0,0,0,0,7811,0,712,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,1389,4,0,0,83,0,199,0,0,0,35,869,0,0,0,0,0,0,0,0,0,39,1,0,0,0,3,0,0,0,0,1,104,15,0,0,0,0,9,0,18,9,21241,0,0,12,0,0,1,0,0,0,0,0,2,0,707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21932,1,1,1,0,126,0,0,0,0,1,16,5,0,127,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,44516,1155,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,6,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,6,48,0,0,0,0,0,1,0,0,0,0,0,4,0,0,208,14,166,0,7,0,0,0,0,0,4,0,0,0,0,0,1,3,49,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,108,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,40,0,0,0,0,3,30,238,74,0,0,0,0,1,0,0,0,0,0,0,0,0,182,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,86,3,0,0,111,0,162,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,615,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,116,0,0,0,0,1,17,71,0,111,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,10,2 +63,0,0,5,0,50,6,0,27,13,3,0,0,2,18,0,566,0,7,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,15,898,50,15,0,0,54,0,0,0,1,0,0,5,0,0,0,0,1,177,0,0,0,0,0,1,0,0,0,0,0,18,0,0,19831,50,651,0,1,0,0,0,0,0,28,0,0,0,0,0,8,21,3407,0,0,15,0,0,0,0,0,94,5,7,0,0,2,0,601,0,14,0,0,1475,0,0,0,0,13,15,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,2842,0,297,0,0,0,0,3,264,870,3498,0,0,0,0,1,0,3,0,0,0,0,0,0,2147,0,217,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,34,24,273,5,0,0,270,0,397,0,0,0,120,18,0,0,0,0,0,0,4,0,0,629,1,0,0,0,9,0,0,0,0,1,135,25,0,0,0,0,13,0,27,13,2089,1,0,180,6,0,1,1,0,0,0,0,10,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,0,0,0,0,0,1,65,142,0,2,12,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,5,950,49,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,39,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,143,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,169,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,17,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +3,0,0,5,0,36,6,0,37,0,5,0,0,6,5,0,559,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,762,36,6,0,0,46,0,0,0,1,0,0,2,0,0,0,0,1,175,0,0,0,0,0,1,0,0,0,0,0,2,0,0,7321,36,620,0,3,0,0,0,0,0,13,0,0,0,0,0,8,24,1445,0,0,1,0,0,0,0,0,190,20,4,0,0,2,0,598,0,0,2,0,1341,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,582,0,63,0,0,0,1,4,274,354,581,0,0,0,0,1,0,4,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,26,176,5,0,0,191,0,263,0,0,0,48,3,0,0,0,0,0,0,0,0,0,624,1,0,0,0,9,0,0,0,0,0,120,15,0,0,8,0,0,0,0,0,2228,1,0,86,6,0,1,1,0,0,0,0,13,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,5,0,0,0,0,1,37,28,0,4,12,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,621,31,2 +0,0,0,6,0,40,56,0,100,0,37,0,0,8,3,0,1023,0,6,1,0,0,0,8,0,10,0,0,44,0,1,0,0,0,1,14897,40,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,543,0,0,0,0,0,1,0,0,0,0,0,2,0,0,104746,40,1355,0,42,0,0,0,0,0,109,0,0,0,0,0,8,304,12979,0,0,1,0,0,0,0,0,561,30,2,0,0,2,0,1207,0,0,211,0,7908,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,5952,0,37,0,0,0,26,29,1404,6832,5884,0,0,0,0,1,0,3,0,0,0,0,0,0,7332,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,19,423,6,0,0,419,0,366,0,0,0,239,52,0,0,0,0,0,0,0,0,0,1233,1,0,0,0,9,0,0,0,0,1,194,72,0,0,282,0,0,0,0,0,6481,1,0,9568,53,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,53,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,119,0,0,0,0,1,41,295,0,43,12,0,1,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3554,234,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,55,0,1,0,0,0,1,0,0,0,0,0,1,0,0,8942,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1165,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,814,0,50,0,0,0,0,3,27,8,831,0,0,0,0,1,0,0,0,0,0,0,0,0,3515,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,86,2,0,0,109,0,108,0,0,0,46,5,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,773,0,0,3046,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1210,21,2 +16,0,0,9,2,227,54,2,74,6,10,0,0,2,19,0,120,0,11,3,0,0,0,6,0,8,0,0,9,0,7,0,0,2,201,0,229,148,0,0,469,0,0,0,1,0,0,2,0,0,0,0,7,149,0,0,0,0,0,1,0,0,0,0,0,17,0,0,1401,227,222,0,14,0,0,0,0,0,11,0,0,0,0,0,8,16,153,0,2,201,2,0,3,8,0,246,20,4,0,0,6,2,136,0,12,0,0,3701,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,7,0,0,1,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,5,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,10,10,10,0,0,0,124,0,251,0,0,0,12,13,400,665,136,0,0,0,0,1,0,3,0,0,0,0,0,0,800,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,244,54,1026,11,0,0,1063,0,969,0,2,0,722,34,0,0,0,0,0,0,0,0,0,290,1,0,0,0,9,0,0,0,0,5,337,52,0,0,29,0,0,0,0,0,327,0,0,67,3,0,1,1,0,0,0,0,3,0,1,0,2,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,8,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,230,1,1,1,0,19,0,0,0,2,17,430,416,0,15,9,0,0,0,0,0,490,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,1,221,85,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,52,0,0,0,0,0,1,0,0,0,0,0,4,0,0,140,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,132,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,174,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,216,5,0,0,229,0,330,0,1,0,55,2,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,40,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,15,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +2,0,0,3,0,47,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,7,0,0,0,0,1,0,0,0,38,0,47,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,7,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,290,47,94,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,38,0,0,1,47,0,386,35,0,0,0,2,0,234,0,0,0,0,559,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,68,0,0,0,7,10,62,355,60,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,151,3,0,0,153,0,205,0,0,0,120,3,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,9,129,112,0,0,84,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,0,0,0,0,0,1,85,38,0,8,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,5,2 +11,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,48,0,0,0,0,0,1,0,0,0,0,0,3,0,0,306,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,26,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,205,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,37,0,0,0,8,11,29,400,139,0,0,0,0,1,0,0,0,0,0,0,0,0,350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,52,3,0,0,62,0,139,0,0,0,29,2,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,25,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,8,2 +11,0,0,2,0,25,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,25,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,960,25,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,505,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,271,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,43,0,0,0,0,3,44,10,52,0,0,0,0,1,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,116,2,0,0,122,0,146,0,0,0,61,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,107,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,0,0,0,0,0,1,39,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,240,27,2 +0,0,0,2,0,15,2,0,5,0,2,0,0,0,2,0,9,0,6,13,0,0,0,7,0,6,0,0,0,0,1,0,0,0,4,0,15,9,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,1,0,0,171,15,26,0,7,0,0,0,0,0,0,0,0,0,0,0,1,1,32,0,0,4,0,0,0,0,0,53,0,0,0,0,2,0,15,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,28,0,36,0,0,0,6,9,29,187,48,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,8,3,50,2,0,0,53,0,141,0,0,0,14,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,20,0,0,0,0,149,97,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,19,4,0,7,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,28,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,56,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9834,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1300,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,892,0,49,0,0,0,0,3,27,8,909,0,0,0,0,1,0,0,0,0,0,0,0,0,3942,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,85,2,0,0,109,0,108,0,0,0,46,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,852,0,0,3352,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1342,20,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,55,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,1,0,0,902,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,486,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,19,0,0,0,0,3,21,4,41,0,0,0,0,1,0,0,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,53,2,0,0,71,0,89,0,0,0,19,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,67,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,2,2 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,3,0,0,93,9,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,29,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,8,0,1,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,30,0,0,0,0,3,23,9,46,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,46,3,0,0,35,0,168,0,0,0,5,2,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,3,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +11,0,0,3,0,13,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,13,6,0,0,71,0,3,0,1,0,0,3,0,0,0,0,0,63,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1273,13,71,0,24,0,0,0,0,0,12,0,0,0,0,0,1,8,608,0,0,0,0,0,0,0,0,35,0,3,0,0,2,0,37,0,0,0,0,205,0,0,0,0,36,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,126,0,119,0,0,0,0,3,65,17,166,0,0,0,0,1,0,0,0,0,0,0,0,0,396,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,83,3,0,0,94,0,177,0,0,0,18,11,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,95,11,0,0,0,0,4,0,0,0,863,0,0,760,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,23,0,0,0,0,1,13,103,0,24,0,0,1,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,530,12,2 +55,0,0,5,1,18,26,1,326,2,3,0,0,0,4,0,66,0,9,1,0,0,0,1,0,0,0,0,37,0,1,0,0,1,3,0,19,54,0,0,11,0,2,0,1,0,0,2,0,0,0,0,0,160,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2051,18,151,0,37,0,0,0,0,0,9,0,0,0,0,0,1,4,99,0,1,3,1,0,1,0,0,81,0,2,0,0,4,1,61,0,1,0,0,1926,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,35,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,100,0,75,0,0,0,0,3,43,866,131,0,0,0,0,1,0,0,0,0,0,0,0,0,1965,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,113,595,508,7,0,0,291,0,805,0,1,0,91,47,0,0,0,0,0,0,0,0,0,434,1,0,0,0,2,0,0,0,0,1,117,31,0,0,0,0,0,0,0,0,772,0,0,34,0,0,1,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,1,1,1,0,37,0,0,0,0,9,22,80,0,38,0,0,0,0,0,0,64,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,240,7376,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,58,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9337,12,50,0,0,0,0,0,0,0,14,0,0,0,2,0,1,6,1198,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,854,0,49,0,0,0,0,3,31,8,871,0,0,0,0,1,0,0,0,0,0,0,0,0,3683,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,85,2,0,0,112,0,110,0,0,0,46,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,27,0,0,0,0,0,0,0,0,815,0,0,3195,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1245,21,2 +16,0,0,3,0,22,2,0,4,10,3,0,0,0,13,0,10,0,7,2,0,0,0,1,0,0,0,0,0,0,5,0,0,0,2,0,22,6,0,0,10755,0,0,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,13,0,0,5781,22,37,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,24,0,1,0,0,2,0,33,0,11,0,0,63773,0,0,0,0,6,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,58,0,0,0,8,11,56,69,21569,0,0,0,0,1,0,0,0,0,0,0,0,0,102829,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,14,399,3,0,0,80,0,223,0,0,0,14,286,0,0,0,0,0,0,0,0,0,39,1,0,0,0,3,0,0,0,0,5,104,7,0,0,0,0,0,0,0,0,610,0,0,20,0,0,1,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,6,2,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,8,0,0,0,8,1,24,2,0,5,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,148,2 +19,0,0,3,0,22,2,0,4,19,3,0,0,0,22,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,2,0,22,6,0,0,14016,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,22,0,0,5976,22,46,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,12,0,1,0,0,2,0,51,0,20,0,0,71906,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,56,0,0,0,0,3,54,61,28049,0,0,0,0,1,0,0,0,0,0,0,0,0,89582,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,23,380,3,0,0,79,0,201,0,0,0,13,278,0,0,0,0,0,0,0,0,0,48,1,0,0,0,3,0,0,0,0,1,104,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,26,1,1,1,0,4,0,0,0,0,1,24,2,0,5,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,29327,2 +2,0,0,3,0,68,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,11,0,0,0,0,1,0,0,0,57,0,68,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,11,39,0,0,0,0,0,1,0,0,0,0,0,10,0,0,474,68,98,0,12,0,0,0,0,0,0,0,0,0,0,0,1,1,34,0,0,57,0,0,1,47,0,394,35,0,0,0,2,0,238,0,0,0,0,830,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,42,0,93,0,0,0,11,14,83,388,70,0,0,0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,225,3,0,0,216,0,247,0,0,0,177,6,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,13,150,112,0,0,84,0,0,0,0,0,598,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,65,1,1,1,0,0,0,0,0,0,1,125,57,0,12,0,0,0,0,0,0,137,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,6,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,11,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,101,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2542,11,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1011,0,0,0,0,0,0,0,0,35,0,5,0,0,2,0,37,0,0,0,0,500,0,0,0,0,32,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,392,0,128,0,0,0,0,3,60,19,434,0,0,0,0,1,0,0,0,0,0,0,0,0,1131,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,170,3,0,0,110,0,266,0,0,0,39,3,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,714,0,0,876,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,22,0,0,0,0,1,11,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,427,33,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +2,0,0,3,0,52,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,8,0,0,0,0,1,0,0,0,43,0,52,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,8,38,0,0,0,0,0,1,0,0,0,0,0,10,0,0,299,52,95,0,9,0,0,0,0,0,0,0,0,0,0,0,1,1,29,0,0,43,0,0,1,47,0,388,35,0,0,0,2,0,235,0,0,0,0,607,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,73,0,0,0,8,11,67,362,60,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,166,3,0,0,168,0,214,0,0,0,135,5,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,9,134,112,0,0,84,0,0,0,0,0,598,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,0,0,0,0,0,1,95,43,0,9,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,4,2 +9,0,0,7,0,178,23,0,226,3,19,0,0,7,8,0,3757,0,6,1,0,0,0,8,0,10,414,0,14,0,139,0,0,0,53,1108,178,294,0,0,154,0,1,0,1,0,0,1,0,0,0,0,139,358,0,0,0,0,0,1,0,0,0,0,0,7,0,0,30160,178,4540,0,150,0,0,0,0,0,41,0,0,0,0,0,8,110,6036,0,0,53,0,0,0,0,0,306,25,1,0,0,2,0,5597,0,3,54,0,8875,0,0,0,0,40,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,12,12,12,0,0,0,1200,0,193,0,0,0,284,471,744,2026,1257,0,0,0,0,1,0,3,0,0,0,0,0,0,1462,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,22,1017,7,0,0,898,0,709,0,0,0,458,42,0,0,0,0,0,0,0,0,0,4046,1,0,0,0,9,0,0,0,0,2,289,120,0,0,91,0,0,0,0,0,10943,1,0,1031,20,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,20,499,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,180,1,1,1,0,173,0,0,0,0,1,231,155,0,565,12,0,1,0,0,0,524,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2492,678,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,95,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2586,10,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1037,0,0,0,0,0,0,0,0,35,0,5,0,0,2,0,37,0,0,0,0,829,0,0,0,0,33,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,396,0,126,0,0,0,0,3,56,19,437,0,0,0,0,1,0,0,0,0,0,0,0,0,1157,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,141,3,0,0,107,0,261,0,0,0,39,5,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,724,0,0,884,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,437,19,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +1,0,0,3,0,9,2,0,21,0,5,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,18,0,0,0,1,0,0,2,0,0,0,0,0,82,0,0,0,0,0,1,0,0,0,0,0,1,0,0,692,9,52,0,1,0,0,0,0,0,9,0,0,0,0,0,1,4,88,0,0,1,0,0,0,4,0,51,10,2,0,0,2,0,37,0,0,0,0,142,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,49,0,0,0,0,3,23,40,101,0,0,0,0,1,0,0,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,3,117,3,0,0,147,0,158,0,0,0,85,5,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,0,124,52,0,0,23,0,0,0,0,0,647,0,0,177,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,244,0,1,0,0,0,0,0,0,33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,213,19,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +1,0,0,5,0,43,14,0,30,5,8,0,0,2,10,1,183,0,6,4,0,0,0,9,0,11,3,0,5,0,2,0,0,0,9,916,43,6,0,0,55,0,0,0,1,0,0,2,0,0,0,0,2,269,0,0,0,0,0,1,0,0,0,0,0,13,0,0,35267,43,284,0,3,0,0,0,0,0,31,0,0,0,0,0,12,24,5842,0,0,9,0,0,1,9,0,181,25,4,0,0,2,0,189,0,8,0,0,1730,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,12,12,12,0,0,0,5089,0,114,0,0,0,2,7,313,314,5156,0,0,0,0,1,0,3,0,0,0,0,0,0,1000,0,98,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,36,18,219,5,0,0,270,0,351,0,0,0,128,40,0,0,0,0,0,0,0,0,0,254,1,0,0,0,13,0,0,0,0,1,136,49,0,0,45,0,0,0,0,0,1107,1,0,554,16,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,35,35,0,0,6,0,0,0,0,0,16,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,4,0,0,0,0,29,52,118,0,7,14,0,0,0,0,0,172,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,63,2 +5,0,0,15,7,18,6,29,84,1,17,0,0,0,5,0,52,0,6,22,0,7,0,1,1,0,0,0,0,0,1,0,0,7,3,0,25,6,0,0,64,0,0,0,1,0,0,1,0,0,0,0,0,83,2,0,0,0,0,1,0,0,0,0,0,12,0,0,247,18,579,0,1,0,0,0,0,0,9,21,0,0,0,0,2,4,38,0,29,3,7,0,1,16,0,159,25,0,0,0,2,7,120,0,2,0,0,291,0,0,0,0,12,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,16,0,0,0,0,0,0,42,0,39,0,0,0,0,3,56,180,72,0,0,0,0,1,0,0,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,10,7,288,23,0,0,287,0,305,0,0,0,76,11,0,0,0,0,0,0,0,0,0,170,1,0,0,0,31,0,0,0,0,0,100,34,0,0,70,0,0,0,0,0,651,0,0,8,0,0,1,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,16,1,1,1,0,0,0,0,0,0,49,28,20,0,1,0,0,0,0,0,0,48,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,3,0,0,0,0,0,0,0,0,0,0,0,9,0,0,87,94,2 +2,0,0,2,0,12,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,2,0,12,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,1,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,10025,12,45,0,2,0,0,0,0,0,10,0,0,0,0,0,1,4,1286,0,0,2,0,0,0,0,0,8,0,3,0,0,2,0,17,0,0,0,0,154,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,900,0,37,0,0,0,1,4,26,16,901,0,0,0,0,1,0,0,0,0,0,0,0,0,3925,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,92,2,0,0,110,0,140,0,0,0,39,3,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,96,25,0,0,0,0,0,0,0,0,874,0,0,3437,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,93,0,2,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1316,42,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,939,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,484,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,265,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,41,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,112,2,0,0,119,0,134,0,0,0,61,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,26,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,164,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,172,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,35,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,69,3,0,0,42,0,149,0,0,0,6,3,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,171,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,24,0,21,0,0,0,1,0,0,0,0,0,6,0,0,207,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,71,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,49,0,0,0,0,3,57,44,113,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,85,3,0,0,83,0,113,0,0,0,29,5,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,206,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,15,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,55,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,5,2 +11,0,0,4,0,16,2,0,5,0,3,0,0,0,3,0,17,0,7,3,0,0,0,1,0,0,0,0,111,0,1,0,0,0,1,0,16,27,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,4,0,0,81103,16,143,0,112,0,0,0,0,0,3,0,0,0,0,0,3,5,15691,0,0,1,0,0,0,0,0,122,0,1,0,0,2,0,120,0,1,0,0,105575,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,4,0,0,0,0,0,0,8226,0,114,0,0,0,0,3,8195,627,9834,0,0,0,0,1,0,0,0,0,0,0,0,0,6911,0,613,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,597,4,0,0,80,0,213,0,0,0,29,426,0,0,0,0,0,0,0,0,0,37,1,0,0,0,4,0,0,0,0,1,103,13,0,0,0,0,8,0,16,8,8200,0,0,12,0,0,1,0,0,0,0,0,2,0,608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,8168,1,1,1,0,111,0,0,0,0,1,17,5,0,112,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17498,787,2 +17,0,0,3,0,22,2,0,4,19,3,0,0,0,22,0,10,0,7,2,0,0,0,1,0,0,0,0,2,0,3,0,0,0,2,0,22,6,0,0,15301,0,0,0,1,0,0,0,0,0,0,0,2,52,0,0,0,0,0,1,0,0,0,0,0,22,0,0,5072,22,46,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,18,0,1,0,0,2,0,51,0,20,0,0,75186,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,67,0,56,0,0,0,4,7,50,65,30617,0,0,0,0,1,0,0,0,0,0,0,0,0,91730,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,23,362,3,0,0,79,0,195,0,0,0,13,245,0,0,0,0,0,0,0,0,0,48,1,0,0,0,3,0,0,0,0,3,104,6,0,0,0,0,0,0,0,0,612,0,0,18,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,4,2,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,24,1,1,1,0,6,0,0,0,4,1,24,2,0,5,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,32337,2 +20,0,0,8,0,45,16,0,48,17,7,0,0,0,27,0,51,0,7,1,0,0,0,4,0,3,18,0,11,0,5,2,0,0,17,0,45,44,0,0,161,0,0,0,1,0,0,7,1,0,0,0,9,167,0,0,0,0,0,1,0,0,0,12,0,25,0,0,4040,45,232,0,21,0,0,0,0,0,34,0,0,0,0,0,4,13,999,0,0,17,0,0,1,20,0,214,15,14,0,0,2,0,305,0,19,0,0,1486,0,0,0,0,18,0,0,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,6,0,0,0,11,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,95,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,22,0,0,0,0,0,0,664,0,232,0,0,0,15,38,87,212,676,0,0,0,0,1,0,0,0,0,0,0,0,0,1289,0,0,0,0,0,0,0,0,0,0,0,0,7,0,5,0,0,0,0,0,0,13,32,307,8,0,0,308,0,648,0,0,0,180,55,0,0,0,0,0,0,7,0,0,156,1,0,4,0,5,0,0,0,0,9,141,116,0,0,24,0,0,0,0,0,269,0,0,353,0,0,1,0,0,0,0,0,23,0,0,0,2,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,11,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,36,0,0,0,0,1,62,643,0,39,0,0,0,0,0,0,142,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,7,619,231,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,5,2 +2,0,0,2,0,13,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,13,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,2,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,10206,13,45,0,3,0,0,0,0,0,10,0,0,0,0,0,1,4,1314,0,0,1,0,0,0,0,0,8,0,3,0,0,2,0,17,0,0,0,0,140,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,917,0,38,0,0,0,4,4,30,15,918,0,0,0,0,1,0,0,0,0,0,0,0,0,4001,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,92,2,0,0,113,0,146,0,0,0,36,1,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,97,25,0,0,0,0,0,0,0,0,889,0,0,3503,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,4,0,0,0,2,1,14,92,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1346,17,2 +8,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,8,0,0,0,0,21,0,0,0,2,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,8,38,0,0,0,0,0,1,0,0,0,0,0,11,0,0,67,11,121,0,9,0,0,0,0,0,1,0,0,0,0,0,1,1,33,0,0,2,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,74,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,27,366,58,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,124,0,0,0,22,1,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,602,0,0,19,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,21,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,36,0,0,0,0,1,13,6,0,29,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,3,2 +11,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,1,0,0,0,0,4,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,50,0,0,0,0,0,1,0,0,0,0,0,3,0,0,307,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,25,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,211,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,37,0,0,0,8,11,29,400,139,0,0,0,0,1,0,0,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,54,3,0,0,62,0,142,0,0,0,29,3,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,24,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,8,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,55,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,5,2 +1,0,0,6,0,23,5,0,21,0,6,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,6,0,1,0,0,0,15,0,23,6,0,0,25,0,0,0,1,0,0,2,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,424,23,57,0,7,0,0,0,0,0,8,0,0,0,0,0,1,5,60,0,0,15,0,0,0,0,0,14,0,3,0,0,2,0,33,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,75,0,48,0,0,0,0,3,42,29,81,0,0,0,0,1,0,0,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,126,9,0,0,155,0,210,0,0,0,94,8,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,1,108,38,0,0,0,0,3,0,0,0,39,0,0,33,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,6,0,0,0,0,1,38,165,0,7,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,77,53,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,55,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +1,0,0,7,2,29,55,2,83,3,9,0,2,2,11,0,121,0,10,3,0,0,0,5,0,8,0,0,3,0,1,0,0,2,5,0,31,157,0,0,84,0,0,0,1,0,0,3,0,0,0,0,1,149,0,0,0,0,0,1,0,0,0,0,0,12,0,0,996,29,210,0,2,0,0,0,0,0,13,0,0,0,0,1,7,17,174,0,2,5,2,0,5,7,0,220,20,5,0,0,10,2,109,0,7,0,0,645,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,133,0,67,0,0,0,0,3,188,103,151,0,0,0,0,1,0,3,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,259,55,436,9,0,0,487,0,695,0,2,0,145,15,0,0,0,0,0,0,0,0,0,293,1,0,0,0,8,0,0,0,0,1,142,52,0,0,34,0,0,0,0,0,330,0,0,63,3,0,1,1,0,0,0,0,4,0,0,0,7,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,30,1,1,1,0,1,0,0,0,0,17,36,264,0,3,9,0,0,0,0,0,116,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,1,245,80,2 +18,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13904,0,0,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6177,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73217,0,0,0,0,6,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,61,0,0,0,0,3,58,61,27849,0,0,0,0,1,0,0,0,0,0,0,0,0,91922,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,449,3,0,0,91,0,213,0,0,0,25,320,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,31078,2 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 +2,0,0,2,0,8,2,0,9,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,60,8,30,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,23,0,0,0,0,0,0,0,0,6,0,1,0,0,2,0,7,0,0,0,0,45,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,23,0,20,0,0,0,0,3,21,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,56,2,0,0,61,0,113,0,0,0,8,0,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,88,2,0,0,0,0,0,0,0,0,605,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,8,2 +11,0,0,2,0,25,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,25,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,957,25,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,507,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,266,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,42,0,0,0,0,3,44,10,52,0,0,0,0,1,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,112,2,0,0,122,0,145,0,0,0,61,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,107,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,0,0,0,0,0,1,39,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,240,28,2 +2,0,0,6,0,36,192,0,990,0,195,0,0,6,3,0,889,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,2,0,4,898,36,6,0,0,1895,0,2,0,1,0,0,2,0,0,0,0,1,197,0,0,0,0,0,1,0,0,0,0,0,186,0,0,7024,36,2273,0,1,0,0,0,0,0,14,0,0,0,0,0,8,18,1082,0,0,4,0,0,1,931,0,7083,60,4,0,0,2,0,5572,0,0,0,0,1509,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,12,12,12,0,0,0,356,0,39,0,0,0,0,3,246,6816,349,0,0,0,0,1,0,3,0,0,0,0,0,0,971,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,16,206,6,0,0,405,0,394,0,0,0,259,19,0,0,0,0,0,0,0,0,0,2281,1,0,0,0,9,0,0,0,0,0,119,2435,0,0,86,0,0,0,0,0,2798,1,0,61,5,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,40,218,0,2,12,0,0,0,0,0,2298,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,53,2 +19,0,0,2,6,27,2,30,22,0,8,0,0,0,2,0,16,0,6,19,0,6,0,1,0,20,0,0,0,0,0,0,0,6,16,0,27,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,20,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1313,27,472,0,21,0,0,0,0,0,26,18,0,0,0,0,1,6,494,0,30,16,6,0,0,0,0,54,0,1,0,0,2,6,33,0,0,0,0,392,0,0,0,0,7,2,0,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,6,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,75,0,56,0,0,0,20,22,62,65,88,0,0,0,0,1,0,0,0,0,0,0,0,0,451,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,136,8,0,0,173,0,229,0,0,0,106,6,0,0,0,0,0,0,0,0,0,56,1,0,0,0,26,0,0,0,0,21,109,31,0,0,0,0,0,0,0,0,803,0,0,732,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,0,0,0,0,0,1,43,121,0,20,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,315,299,2 +7,0,0,3,0,29,5,0,11,0,2,0,0,2,2,0,23,0,6,2,0,0,0,6,0,8,6,0,2,0,3,0,0,0,5,0,29,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,3,77,0,0,0,0,0,1,0,0,0,0,0,2,0,0,652,29,47,0,3,0,0,0,0,0,3,0,0,0,0,0,7,12,135,0,0,5,0,0,0,0,0,72,5,0,0,0,2,0,58,0,0,0,0,892,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,91,0,56,0,0,0,4,10,182,21,95,0,0,0,0,1,0,3,0,0,0,0,0,0,206,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,96,3,0,0,112,0,207,0,0,0,42,4,0,0,0,0,0,0,0,0,0,51,0,0,0,0,8,0,0,0,0,1,111,25,0,0,0,0,0,0,0,0,675,0,0,2,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,3,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,2,0,0,0,0,1,34,69,0,10,9,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173,28,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,12,0,0,0,0,3,21,3,21,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,22,0,0,0,2,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,2 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,79,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1127,10,59,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,122,0,0,0,0,0,0,0,0,15,0,5,0,0,2,0,14,0,0,0,0,538,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,115,0,83,0,0,0,0,3,26,13,132,0,0,0,0,1,0,0,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,8,3,109,2,0,0,244,0,351,0,0,0,180,15,0,0,0,0,0,0,2,0,0,41,1,0,0,0,2,0,0,0,0,0,100,160,0,0,0,0,0,0,0,0,54,0,0,73,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,499,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,195,31,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,938,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,483,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,276,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,41,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,113,2,0,0,119,0,132,0,0,0,61,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,27,2 +18,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,0,0,5,0,1,0,2,0,22,6,0,0,14516,0,0,0,1,0,0,1,0,0,0,0,4,55,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5755,22,35,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,60,0,0,2,0,0,0,0,0,24,0,1,0,0,2,0,29,0,9,0,0,71266,0,0,0,0,3,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,2,0,0,0,0,0,0,68,0,56,0,0,0,8,11,56,69,29092,0,0,0,0,1,0,0,0,0,0,0,0,0,95144,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,389,3,0,0,78,0,222,0,0,0,12,275,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,608,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,28,1,1,1,0,8,0,0,0,8,1,24,2,0,5,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,32537,2 +15,0,0,3,0,14,2,0,19,2,3,0,0,0,5,0,17,0,6,1,0,0,0,1,0,0,0,0,7,0,1,0,0,0,2,0,14,6,0,0,14,0,0,0,1,0,0,5,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,5,0,0,575,14,64,0,8,0,0,0,0,0,15,0,0,0,0,0,1,8,76,0,0,2,0,0,0,0,0,18,0,7,0,0,2,0,30,0,3,0,0,450,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,109,0,72,0,0,0,0,3,34,38,114,0,0,0,0,1,0,0,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,6,117,3,0,0,108,0,265,0,0,0,28,5,0,0,0,0,0,0,0,0,0,52,1,0,0,0,2,0,0,0,0,1,96,13,0,0,0,0,0,0,0,0,623,0,0,58,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,7,0,0,0,0,1,16,79,0,8,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,165,269,2 +11,0,0,3,0,12,7,0,24,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,3,0,12,6,0,0,33,0,0,0,1,0,0,0,0,0,0,0,2,47,0,0,0,0,0,1,0,0,0,0,0,3,0,0,314,12,55,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,26,0,0,3,0,0,1,20,0,185,30,0,0,0,2,0,97,0,0,0,0,206,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,36,0,0,0,4,7,29,381,138,0,0,0,0,1,0,0,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,55,3,0,0,60,0,133,0,0,0,27,13,0,0,0,0,0,0,0,0,0,58,0,0,0,0,2,0,0,0,0,3,96,44,0,0,98,0,0,0,0,0,25,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,0,1,15,19,0,3,0,0,0,0,0,0,61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,8,2 +19,0,0,6,0,55,10,0,58,11,13,0,0,6,8,0,1184,0,6,2,0,0,0,8,0,10,0,0,11,0,1,0,0,0,15,1439,55,6,0,0,61,0,0,0,1,0,0,3,1,0,0,0,1,401,0,0,0,0,0,1,0,0,0,0,0,7,0,0,68582,55,1307,0,9,0,0,0,0,0,29,0,0,0,0,0,9,20,12334,0,0,15,0,0,0,0,0,233,20,6,0,0,2,0,1257,0,4,8,0,4542,0,1,0,0,0,0,2,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,8892,0,89,0,0,0,0,3,435,1185,8891,0,0,0,0,1,0,11,0,0,0,0,0,0,475,0,0,0,0,2,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,84,47,315,6,0,0,352,0,408,0,0,0,167,23,0,0,0,0,0,0,0,0,0,1285,1,0,2,0,10,0,0,0,0,0,138,71,0,0,41,0,0,0,0,0,4576,1,0,75,10,0,1,1,0,0,0,0,10,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,10,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,66,1,1,1,0,8,0,0,0,0,1,70,327,0,10,12,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1868,83,2 +2,0,0,0,0,9,5,0,11,0,2,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,1,0,0,20,9,28,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,9,0,0,1,0,0,0,7,0,61,0,0,0,0,2,0,41,0,0,0,0,56,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,17,0,0,0,0,3,22,61,22,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,32,0,0,0,38,0,98,0,0,0,7,1,0,0,0,0,0,0,0,0,0,35,0,0,0,0,2,0,0,0,0,0,91,19,0,0,0,0,0,0,0,0,594,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,31,2 +15,0,0,3,0,22,2,0,4,19,3,0,0,0,22,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,1,0,1,0,2,0,22,6,0,0,14798,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,22,0,0,5513,22,46,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,12,0,1,0,0,2,0,51,0,20,0,0,73288,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,0,3,54,61,29620,0,0,0,0,1,0,0,0,0,0,0,0,0,93792,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,23,433,3,0,0,79,0,201,0,0,0,13,308,0,0,0,0,0,0,0,0,0,48,1,0,0,0,3,0,0,0,0,1,104,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,4,0,0,0,0,1,24,2,0,5,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,33522,2 +2,0,0,2,0,12,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,12,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,2,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,10007,12,45,0,3,0,0,0,0,0,10,0,0,0,0,0,1,4,1308,0,0,1,0,0,0,0,0,8,0,3,0,0,2,0,17,0,0,0,0,145,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,897,0,38,0,0,0,4,4,26,15,898,0,0,0,0,1,0,0,0,0,0,0,0,0,3948,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,93,2,0,0,110,0,145,0,0,0,36,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,96,25,0,0,0,0,0,0,0,0,871,0,0,3426,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,13,92,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1338,16,2 +31,0,0,5,0,98,124,0,114,20,89,0,0,9,4,0,2109,0,6,2,0,0,0,7,0,10,0,0,60,0,51,0,0,0,21,87542,98,6,0,0,89,0,0,0,1,0,0,3,0,0,0,0,51,1899,0,0,0,0,0,1,0,0,0,0,0,2,0,0,108982,98,2738,0,108,0,0,0,0,0,197,0,0,0,0,0,8,578,18431,0,0,21,0,0,0,0,0,1015,35,5,0,0,2,0,2396,0,0,580,0,12824,0,0,0,0,18,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,12,12,12,0,0,0,5319,0,145,0,0,0,137,56,2938,6453,5226,0,0,0,0,1,0,4,0,0,0,0,0,0,1506,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,165,106,1493,5,0,0,1019,0,648,26,0,0,685,81,0,0,0,0,0,0,0,0,0,2455,0,0,0,0,9,0,0,0,0,2,477,54,0,0,690,0,0,0,0,0,12804,1,0,1041,87,0,1,1,0,0,0,0,8,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,87,51,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,101,1,1,1,0,268,0,0,0,32,1,119,262,0,109,12,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,24,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6198,335,2 +5,0,0,14,0,81,63,0,35,8,3,0,0,2,16,0,755,0,7,4,0,0,0,8,1,12,3,0,9,0,3,0,0,0,43,6113,81,6,3,0,143,0,0,0,1,0,0,4,0,0,0,0,4,373,0,0,0,0,0,1,0,0,0,10,0,21,0,0,107295,81,1075,0,8,0,0,0,0,0,134,0,0,0,0,0,11,26,18122,0,0,43,0,0,0,0,0,130,5,8,0,0,2,0,918,0,14,0,0,3483,0,0,0,0,6,0,3,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,42,12,12,12,0,0,0,15783,0,159,0,0,0,6,17,432,823,15763,0,0,0,0,1,0,5,0,0,0,0,0,0,632,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,30,404,30,0,0,542,0,445,0,0,0,377,38,0,0,0,0,0,0,0,0,0,881,1,0,0,0,13,0,0,0,0,4,181,72,0,0,0,0,0,0,0,0,2986,1,0,82,64,0,1,1,0,0,0,0,13,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,64,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,88,1,1,1,0,11,0,0,0,0,1,124,191,0,13,14,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1406,81,2 +30,0,0,2,0,19,2,0,5,0,2,0,0,0,2,0,10,0,6,1,0,0,0,1,0,9,0,0,0,0,1,0,0,0,11,0,19,6,0,0,7,0,0,0,1,0,0,0,0,0,0,0,9,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1455,19,37,0,10,0,0,0,0,0,4,0,0,0,0,0,1,1,815,0,0,11,0,0,0,0,0,5,0,0,0,0,2,0,16,0,0,0,0,199,0,0,0,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,441,0,38,0,0,0,9,12,42,24,455,0,0,0,0,1,0,0,0,0,0,0,0,0,287,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,83,2,0,0,98,0,159,0,0,0,59,7,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,101,30,0,0,0,0,0,0,0,0,600,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,0,0,0,0,0,1,30,68,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,230,2 +4,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1,0,0,0,0,0,1,0,0,32,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,16,0,21,0,0,0,0,3,21,4,29,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,31,0,0,0,2,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,1,2 +15,0,0,3,0,26,2,0,4,20,3,0,0,0,23,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,10529,0,0,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,23,0,0,6072,26,47,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,53,0,21,0,0,65584,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,60,0,0,0,0,3,60,61,21071,0,0,0,0,1,0,0,0,0,0,0,0,0,97112,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,24,462,3,0,0,92,0,202,0,0,0,26,327,0,0,0,0,0,0,0,0,0,49,1,0,0,0,3,0,0,0,0,1,108,7,0,0,0,0,0,0,0,0,613,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,32,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,30328,2 +1,0,0,4,0,30,4,0,13,0,2,0,0,2,2,0,18,0,7,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,4,0,30,6,0,0,27,0,0,0,1,0,0,1,0,0,0,0,1,415,0,0,0,0,0,1,0,0,0,2,0,3,0,0,13982,30,38,0,1,0,0,0,0,0,8,0,0,0,0,0,7,13,223,0,0,4,0,0,0,0,0,71,5,2,0,0,2,0,21,0,0,0,0,6031,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,147,0,796,0,0,0,0,3,1504,12,142,0,0,0,0,1,0,3,0,0,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,2539,4,0,0,533,0,1315,0,0,0,435,129,0,0,0,0,0,0,5,0,0,48,1,0,0,0,8,0,0,0,0,1,269,259,0,0,0,0,0,0,0,0,101,0,0,155,2,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,0,1350,1,1,1,0,0,0,0,0,0,1,34,272,0,2,8,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1582,1164,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,910,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,455,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,311,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,41,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,113,2,0,0,119,0,135,0,0,0,61,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,26,2 +2,0,0,2,0,8,2,0,9,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,60,8,30,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,23,0,0,0,0,0,0,0,0,6,0,1,0,0,2,0,7,0,0,0,0,42,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,23,0,18,0,0,0,0,3,21,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,100,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,56,2,0,0,61,0,113,0,0,0,8,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,88,2,0,0,0,0,0,0,0,0,605,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,8,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,142,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,53,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,17,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,18,2 +2,0,0,3,0,15,8,0,24,0,7,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,181,0,1491,0,0,0,4,0,15,6,0,0,31,0,0,0,1,0,0,1,0,0,0,0,1490,72,2,0,0,0,0,1,0,0,0,0,0,3,0,0,7211,15,1726,0,1671,0,0,0,0,0,5,0,0,0,0,0,1,3,295,0,0,4,0,0,1,14,0,308,20,1,0,0,2,0,1742,0,0,0,0,7083,0,0,0,0,747,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,179,0,38,0,0,0,2980,1491,33,3107,197,0,0,0,0,1,0,0,0,0,0,0,0,0,1762,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,632,3,0,0,98,0,202,0,0,0,35,190,0,0,0,0,0,0,2,0,0,63,1,0,0,0,2,0,0,0,0,1,97,35,0,0,47,0,0,0,0,0,1169,0,0,1768,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1491,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3161,0,0,0,10,1,19,54,0,1672,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,381,944,2 +11,0,0,2,0,26,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,26,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,924,26,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,472,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,299,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,44,0,0,0,0,3,48,10,55,0,0,0,0,1,0,0,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,116,2,0,0,125,0,153,0,0,0,61,11,0,0,0,0,0,1,0,0,0,37,1,0,0,0,2,0,0,0,0,0,108,11,0,0,0,0,0,0,0,0,787,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,0,0,0,0,0,1,40,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,247,27,2 +11,0,0,13,4,87,32,13,86,17,23,0,0,2,45,0,94,0,9,7,0,9,0,6,1,8,0,0,11,0,9,0,0,3,58,0,91,55,13,0,246,0,0,0,1,0,0,3,0,0,0,0,11,180,0,0,0,0,0,1,0,0,0,0,0,33,0,0,41865,87,539,0,18,0,0,0,0,0,19,9,0,0,0,0,8,17,8542,0,13,58,3,0,3,16,0,311,35,7,0,0,4,4,237,0,25,0,0,2273,0,0,0,0,23,0,2,0,1,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,10,10,10,0,0,0,5172,0,120,0,0,0,20,29,266,749,5177,0,0,0,0,1,0,4,0,0,0,0,0,0,10015,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,136,81,683,29,0,0,600,0,772,0,1,0,292,52,0,0,0,0,0,0,0,0,0,291,1,0,0,0,23,0,0,0,0,8,183,70,0,0,58,0,0,0,0,0,2100,0,0,11691,3,0,1,1,0,0,0,0,7,0,1,0,4,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,11,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,91,1,1,1,0,27,0,0,0,0,33,149,275,0,19,9,0,0,0,0,0,262,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,23,0,0,0,0,0,0,0,0,0,0,0,7,0,4,3664,1773,2 +2,0,0,3,0,48,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,7,0,0,0,0,1,0,0,0,39,0,48,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,7,37,0,0,0,0,0,1,0,0,0,0,0,10,0,0,290,48,94,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,39,0,0,1,47,0,386,35,0,0,0,2,0,234,0,0,0,0,545,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,69,0,0,0,7,10,63,355,60,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,155,3,0,0,156,0,206,0,0,0,123,3,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,9,130,112,0,0,84,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,0,0,0,0,0,1,87,39,0,8,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,5,2 +13,0,0,3,0,13,2,0,10,0,3,0,0,0,3,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,238,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,89,0,0,2,0,0,0,0,0,6,0,2,0,0,2,0,26,0,1,0,0,128,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,70,0,53,0,0,0,32,19,33,18,85,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,84,3,0,0,78,0,169,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,28,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,27,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,18,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,0,0,11,2,0,11,1,1,0,0,0,3,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,17,0,0,0,1,0,0,1,0,0,0,0,0,78,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1586,11,39,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,45,0,0,2,0,0,0,0,0,6,0,2,0,0,2,0,13,0,1,0,0,431,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,45,0,25,0,0,0,0,3,25,7,57,0,0,0,0,1,0,0,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,4,93,0,0,0,152,0,347,0,0,0,99,11,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,94,82,0,0,0,0,0,0,0,0,377,0,0,52,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,356,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,24,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,50,0,0,0,0,0,1,0,0,0,0,0,4,0,0,140,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,168,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,165,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,214,5,0,0,229,0,330,0,1,0,55,2,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,18,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,15,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,69,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,89,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,47,2,0,0,44,0,133,0,0,0,5,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,3,2 +4,0,0,2,0,12,3,0,9,0,2,0,0,0,2,0,16,0,6,1,0,0,0,2,0,0,0,0,0,0,33,0,0,0,4,0,12,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,1,0,0,715,12,73,0,1,0,0,0,0,0,9,0,0,0,0,0,2,5,209,0,0,4,0,0,0,0,0,9,0,4,0,0,2,0,8,0,0,0,0,122,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,68,0,37,0,0,0,0,3,32,48,94,0,0,0,0,1,0,0,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,82,2,0,0,122,0,148,0,0,0,62,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,3,0,0,0,0,0,94,40,0,0,0,0,0,0,0,0,50,0,0,420,0,0,1,0,1,0,0,0,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,213,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,32,0,0,0,0,1,16,121,0,33,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,11,2 +2,0,0,5,0,39,22,0,115,3,34,0,0,2,6,0,633,0,6,3,0,0,0,12,0,11,0,0,4,0,1,0,0,0,6,916,39,6,0,0,171,0,2,0,1,0,0,4,0,0,0,0,1,194,0,0,0,0,0,1,0,0,0,0,0,21,0,0,23507,39,840,0,1,0,0,0,0,0,20,0,0,0,0,0,14,30,4020,0,0,6,0,0,6,83,0,796,95,3,0,0,2,0,1051,0,4,0,0,1276,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,3320,0,76,0,0,0,0,3,265,895,3329,0,0,0,0,1,0,3,0,0,0,0,0,0,572,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,34,14,209,5,0,0,246,0,292,0,0,0,102,8,0,0,0,0,0,0,0,0,0,818,1,0,0,0,15,0,0,0,0,0,122,202,0,0,180,0,0,0,0,0,2297,1,0,43,11,0,1,1,0,0,0,0,9,0,4,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,11,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,0,0,0,0,0,1,45,75,0,2,14,0,0,0,0,0,231,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,518,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,3,0,11,2,0,7,4,3,0,0,0,7,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,17,0,0,0,1,0,0,1,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,7,0,0,175,11,33,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,19,0,0,1,0,0,0,0,0,7,0,1,0,0,2,0,16,0,5,0,0,103,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,33,0,0,0,0,3,29,11,40,0,0,0,0,1,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,8,75,3,0,0,99,0,199,0,0,0,43,3,0,0,0,0,0,0,0,0,0,39,1,0,0,0,2,0,0,0,0,0,93,33,0,0,0,0,0,0,0,0,25,0,0,8,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,106,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,70,16,2 +17,0,0,3,0,13,125,0,314,0,66,0,0,0,2,0,247,0,6,1,0,0,0,1,0,0,138,0,46,0,47,0,0,0,0,0,13,25,0,0,387,0,0,0,1,0,0,1,0,0,0,0,46,115,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2322,13,1055,0,93,0,0,0,0,0,41,0,0,0,0,0,1,3,34,0,0,0,0,0,1,252,0,2136,310,1,0,0,2,0,2021,0,0,0,0,3526,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,53,0,49,0,0,0,92,232,31,1060,58,0,0,0,0,1,0,0,0,0,0,0,0,0,1538,0,1,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,3,296,3,0,0,322,0,264,0,0,0,249,54,0,0,0,0,0,0,0,0,0,760,1,0,0,0,2,0,0,0,0,47,95,610,0,0,715,0,0,0,0,0,723,0,0,54,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,47,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,92,0,0,0,0,1,13,104,0,231,0,0,0,0,0,0,469,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,80,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,5,2 +4,0,0,2,0,12,2,0,9,0,2,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,16,0,10,0,0,0,3,0,12,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,9,36,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1041,12,59,0,26,0,0,0,0,0,6,0,0,0,0,0,1,6,473,0,0,3,0,0,0,0,0,60,0,1,0,0,2,0,34,0,0,0,0,140,0,0,0,0,18,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,30,0,0,0,18,21,32,69,58,0,0,0,0,1,0,0,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,80,2,0,0,101,0,211,0,0,0,47,4,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,10,94,31,0,0,0,0,0,0,0,0,807,0,0,741,0,0,1,0,0,0,0,0,2,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,370,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,34,0,0,0,12,1,15,124,0,26,0,0,1,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,264,16,2 +16,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,23,0,0,0,0,0,0,0,0,0,0,0,4,18,0,0,0,0,0,1,0,0,0,0,0,1,0,0,86,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,91,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,37,0,0,0,8,5,28,19,53,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,39,48,2,0,0,44,0,128,0,0,0,5,5,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,3,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +2,0,0,3,0,9,2,0,16,0,3,0,0,0,3,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,9,6,0,0,8,0,2,0,1,0,0,2,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,3,0,0,481,9,41,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,172,0,0,1,0,0,0,0,0,7,0,4,0,0,2,0,16,0,1,0,0,81,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,20,0,0,0,0,3,23,4,46,0,0,0,0,1,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,4,69,3,0,0,93,0,121,0,0,0,32,1,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,91,22,0,0,0,0,0,0,0,0,605,0,0,349,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,1,0,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,115,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,7,2 +8,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,33,0,0,0,2,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,11,0,0,69,11,125,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,35,0,0,2,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,71,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,27,378,58,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,125,0,0,0,22,3,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,604,0,0,31,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,33,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,32,0,0,0,0,1,13,6,0,33,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,3,2 +17,0,0,3,0,26,2,0,4,20,3,0,0,0,23,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,10870,0,0,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,23,0,0,6177,26,47,0,4,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,53,0,21,0,0,66970,0,0,0,0,6,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,21753,0,0,0,0,1,0,0,0,0,0,0,0,0,98605,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,24,467,3,0,0,92,0,214,0,0,0,26,352,0,0,0,0,0,0,0,0,0,49,1,0,0,0,3,0,0,0,0,1,108,7,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,30854,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1049,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,57,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,76,0,0,0,0,0,2,41,193,0,0,0,0,0,0,0,0,0,0,0,0,0,474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,14,2,0,0,49,0,66,0,0,0,46,3,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,1,44,0,0,0,0,0,0,0,0,290,0,0,252,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,111,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,293,8,2 +11,0,0,3,0,12,7,0,24,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,3,0,12,6,0,0,33,0,0,0,1,0,0,0,0,0,0,0,2,50,0,0,0,0,0,1,0,0,0,0,0,3,0,0,314,12,55,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,24,0,0,3,0,0,1,20,0,185,30,0,0,0,2,0,97,0,0,0,0,237,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,36,0,0,0,4,7,29,381,138,0,0,0,0,1,0,0,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,58,3,0,0,60,0,131,0,0,0,27,6,0,0,0,0,0,0,0,0,0,58,0,0,0,0,2,0,0,0,0,3,96,44,0,0,98,0,0,0,0,0,23,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,0,1,15,19,0,3,0,0,0,0,0,0,61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,9,2 +6,0,0,4,1,12,26,1,32,0,4,0,0,0,5,0,65,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,4,0,0,156,12,96,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,40,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,122,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,43,0,0,0,4,4,31,13,61,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,115,14,213,5,0,0,229,0,340,0,1,0,55,2,0,0,0,0,0,0,0,0,0,141,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,694,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,22,0,3,0,0,0,0,0,0,62,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,112,18,2 +8,0,0,6,0,36,8,0,40,2,8,0,0,2,7,0,455,0,6,3,0,0,0,6,0,10,0,0,3,0,1,0,0,0,4,898,36,12,0,0,53,0,0,0,1,0,0,7,0,0,0,0,1,191,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5792,36,562,0,1,0,0,0,0,0,37,0,0,0,0,0,8,23,1149,0,0,4,0,0,1,13,0,207,20,9,0,0,2,0,531,0,3,0,0,971,0,0,0,0,2,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,12,12,12,0,0,0,568,0,140,0,0,0,0,3,232,407,561,0,0,0,0,1,0,3,0,0,0,0,0,0,795,0,1,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,34,13,199,6,0,0,252,0,341,0,0,0,108,10,0,0,0,0,0,0,7,0,0,526,1,0,0,0,9,0,0,0,0,1,120,70,0,0,29,0,2,0,4,2,1882,1,0,343,6,0,1,1,0,0,0,0,15,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,40,204,0,2,12,0,0,0,0,0,101,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,7,704,50,2 +25,0,0,5,0,48,6,0,22,1,5,0,0,6,4,0,69,0,6,2,0,0,0,9,0,10,0,0,16,0,13,0,0,0,12,716,48,9,0,0,42,0,1,0,1,0,0,2,0,0,0,0,13,165,0,0,0,0,0,1,0,0,0,0,0,2,0,0,7972,48,148,0,26,0,0,0,0,0,17,0,0,0,0,0,10,25,1621,0,0,12,0,0,0,0,0,253,20,4,0,0,2,0,129,0,0,1,0,3986,0,0,0,0,0,3,5,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,593,0,99,0,0,0,25,28,269,334,525,0,0,0,0,1,0,3,0,0,0,0,0,0,445,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,19,249,5,0,0,240,0,452,0,0,0,94,7,0,0,0,0,0,0,0,0,0,118,1,0,0,0,11,0,0,0,0,13,132,22,0,0,6,0,1,0,2,1,1352,1,0,100,6,0,1,1,0,0,0,0,7,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,13,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,52,0,0,0,24,1,60,27,0,27,12,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,829,715,2 +0,0,0,4,0,14,3,0,8,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,4,0,1,0,0,0,5,0,14,6,0,0,9,0,0,0,1,0,0,3,1,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1527,14,52,0,5,0,0,0,0,0,17,0,0,0,0,0,1,5,58,0,0,5,0,0,0,0,0,15,0,6,0,0,2,0,11,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,79,0,53,0,0,0,0,3,34,14,81,0,0,0,0,1,0,0,0,0,0,0,0,0,542,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,86,4,0,0,95,0,172,0,0,0,37,7,0,0,0,0,0,0,0,0,0,36,1,0,3,0,2,0,0,0,0,1,96,11,0,0,0,0,3,0,0,0,41,0,0,42,0,0,1,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,0,1,19,79,0,5,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,116,21,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,202,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,45,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,110,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,40,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,173,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,85,3,0,0,111,0,162,0,0,0,46,3,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,613,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,10,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,36,0,0,0,0,0,1,0,0,0,0,0,3,0,0,226,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,86,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,129,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,68,0,50,0,0,0,32,19,33,18,83,0,0,0,0,1,0,0,0,0,0,0,0,0,177,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,6,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,21,0,17,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,18,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13832,0,0,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6462,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73466,0,0,0,0,8,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,27719,0,0,0,0,1,0,0,0,0,0,0,0,0,91252,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,452,3,0,0,91,0,212,0,0,0,25,342,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,613,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,31582,2 +15,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5021,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,36570,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,54,0,0,0,14,17,52,37,32856,0,0,0,0,1,0,0,0,0,0,0,0,0,95618,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,311,3,0,0,75,0,209,0,0,0,12,225,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,614,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,25,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,29071,2 +11,0,0,3,0,18,2,0,12,0,3,0,0,0,3,0,50,0,7,1,0,0,0,1,0,0,24,0,0,0,9,0,0,0,7,0,18,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,8,22,0,0,0,0,0,1,0,0,0,0,0,3,0,0,223,18,101,0,9,0,0,0,0,0,0,0,0,0,0,0,1,1,39,0,0,7,0,0,0,0,0,37,0,0,0,0,2,0,161,0,1,0,0,401,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,46,0,39,0,0,0,16,43,45,46,65,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,81,3,0,0,60,0,149,0,0,0,21,6,0,0,0,0,0,0,0,0,0,77,0,0,0,0,2,0,0,0,0,9,98,1,0,0,0,0,0,0,0,0,679,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,8,0,0,0,0,1,25,7,0,33,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,213,2 +2,0,0,2,0,12,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,2,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,10363,12,45,0,3,0,0,0,0,0,10,0,0,0,0,0,1,4,1356,0,0,1,0,0,0,0,0,8,0,3,0,0,2,0,17,0,0,0,0,149,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,928,0,38,0,0,0,4,4,26,15,929,0,0,0,0,1,0,0,0,0,0,0,0,0,4137,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,93,2,0,0,110,0,145,0,0,0,36,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,96,25,0,0,0,0,0,0,0,0,901,0,0,3549,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,13,92,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1386,17,2 +17,0,0,2,6,25,2,30,21,0,8,0,0,0,2,0,15,0,6,19,0,6,0,1,0,20,0,0,0,0,1,0,0,6,14,0,25,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,20,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1269,25,450,0,21,0,0,0,0,0,18,18,0,0,0,0,1,6,492,0,30,14,6,0,0,0,0,54,0,1,0,0,2,6,33,0,0,0,0,401,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,6,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,80,0,50,0,0,0,20,22,60,65,93,0,0,0,0,1,0,0,0,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,129,8,0,0,159,0,226,0,0,0,92,6,0,0,0,0,0,0,0,0,0,54,1,0,0,0,26,0,0,0,0,21,107,31,0,0,0,0,0,0,0,0,234,0,0,732,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,0,0,0,0,0,1,39,119,0,21,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,291,281,2 +62,0,0,5,0,49,6,0,29,13,3,0,0,2,18,0,588,0,7,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,15,898,49,21,0,0,56,0,0,0,1,0,0,5,0,0,0,0,1,180,0,0,0,0,0,1,0,0,0,0,0,18,0,0,19513,49,676,0,1,0,0,0,0,0,27,0,0,0,0,0,8,21,3048,0,0,15,0,0,0,0,0,94,5,6,0,0,2,0,622,0,14,0,0,2482,0,0,0,0,12,15,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,2457,0,133,0,0,0,0,3,260,3622,2510,0,0,0,0,1,0,3,0,0,0,0,0,0,2853,0,14,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,34,24,286,5,0,0,280,0,401,0,0,0,133,9,0,0,0,0,0,0,4,0,0,653,1,0,0,0,9,0,0,0,0,1,136,34,0,0,0,0,13,0,25,14,2151,1,0,184,6,0,1,1,0,0,0,0,12,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,0,0,0,0,0,1,64,180,0,2,12,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,5,650,50,2 +2,0,0,3,0,11,191,0,971,0,193,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,11,6,0,0,1887,0,1,0,1,0,0,1,0,0,0,0,0,93,0,0,0,0,0,1,0,0,0,0,0,190,0,0,3036,11,1373,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,1166,0,0,0,0,0,1,943,0,6997,15,2,0,0,2,0,4727,0,0,0,0,745,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,607,0,28,0,0,0,0,3,28,6607,623,0,0,0,0,1,0,0,0,0,0,0,0,0,2597,0,1,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,95,3,0,0,284,0,283,0,0,0,214,6,0,0,0,0,0,0,0,0,0,1379,1,0,0,0,2,0,0,0,0,0,93,2464,0,0,30,0,0,0,0,0,610,0,0,28,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,140,0,1,0,0,0,0,0,0,2292,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,24,2 +18,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,0,0,5,0,1,0,2,0,22,6,0,0,14035,0,0,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5586,22,35,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,24,0,1,0,0,2,0,29,0,9,0,0,69730,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,71,0,56,0,0,0,8,11,54,69,28132,0,0,0,0,1,0,0,0,0,0,0,0,0,93181,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,380,3,0,0,78,0,233,0,0,0,12,281,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,610,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,8,0,0,0,8,1,24,2,0,5,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,32061,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +15,0,0,6,0,52,10,0,58,8,10,0,0,6,9,0,1130,0,6,2,0,0,0,8,0,10,0,0,8,0,1,0,0,0,13,1354,52,6,0,0,61,0,0,0,1,0,0,3,1,0,0,0,1,353,0,0,0,0,0,1,0,0,0,0,0,7,0,0,43861,52,1248,0,6,0,0,0,0,0,29,0,0,0,0,0,9,20,7892,0,0,13,0,0,0,0,0,215,20,6,0,0,2,0,1200,0,4,5,0,3461,0,1,0,0,0,0,2,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,5406,0,79,0,0,0,0,3,393,1030,5403,0,0,0,0,1,0,9,0,0,0,0,0,0,441,0,0,0,0,2,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,84,38,295,6,0,0,342,0,391,0,0,0,161,11,0,0,0,0,0,0,0,0,0,1229,1,0,2,0,10,0,0,0,0,0,135,71,0,0,26,0,0,0,0,0,3835,1,0,79,10,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,10,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,5,0,0,0,0,1,65,325,0,7,12,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1429,77,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,97,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2524,10,80,0,24,0,0,0,0,0,16,0,0,0,0,0,1,10,1010,0,0,0,0,0,0,0,0,36,0,4,0,0,2,0,38,0,0,0,0,696,0,0,0,0,31,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,386,0,128,0,0,0,0,3,56,19,427,0,0,0,0,1,0,0,0,0,0,0,0,0,1091,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,162,3,0,0,107,0,243,0,0,0,39,6,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,715,0,0,871,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,23,0,0,0,0,1,10,170,0,24,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,430,18,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,55,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,75,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,282,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,46,2,0,0,44,0,133,0,0,0,5,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,24,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,54,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,5,2 +13,0,0,3,0,13,99,0,118,0,10,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,7,0,0,0,1,0,13,6,0,0,219,0,0,0,1,0,0,0,0,0,0,0,6,51,0,0,0,0,0,1,0,0,0,0,0,3,0,0,347,13,243,0,7,0,0,0,0,0,1,0,0,0,0,0,1,1,28,0,0,1,0,0,1,114,0,837,35,0,0,0,2,0,565,0,0,0,0,254,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,37,0,38,0,0,0,12,6,31,751,51,0,0,0,0,1,0,0,0,0,0,0,0,0,546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,59,3,0,0,155,0,140,0,0,0,113,7,0,0,0,0,0,0,0,0,0,245,0,0,0,0,2,0,0,0,0,1,97,231,0,0,113,0,0,0,0,0,26,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,12,0,0,0,6,1,14,17,0,7,0,0,0,0,0,0,248,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,6,2 +28,0,0,5,0,93,7,0,58,1,6,0,0,6,4,0,2043,0,6,2,0,0,0,7,0,10,0,0,7,0,49,0,0,0,23,835,93,6,0,0,77,0,0,0,1,0,0,3,0,0,0,0,49,206,0,0,0,0,0,1,0,0,0,0,0,2,0,0,46801,93,2180,0,53,0,0,0,0,0,34,0,0,0,0,0,8,27,11316,0,0,23,0,0,0,0,0,197,20,5,0,0,2,0,2100,0,0,1,0,7611,0,0,0,0,18,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,12,12,12,0,0,0,2598,0,164,0,0,0,98,21,335,464,2582,0,0,0,0,1,0,4,0,0,0,0,0,0,781,0,0,0,0,0,0,0,0,0,2,0,0,3,1,0,0,0,0,0,1,0,86,19,389,5,0,0,385,0,494,0,0,0,131,23,0,0,0,0,0,0,0,0,0,2130,1,0,0,0,9,0,0,0,0,1,177,11,0,0,8,0,0,0,0,0,9184,1,0,328,6,0,1,3,0,0,0,0,8,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,6,53,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,1,1,1,0,106,0,0,0,32,1,116,52,0,54,12,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4673,201,2 +11,0,0,3,0,10,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,3,0,0,0,0,0,56,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1300,10,71,0,24,0,0,0,0,0,12,0,0,0,0,0,1,8,636,0,0,0,0,0,0,0,0,35,0,3,0,0,2,0,37,0,0,0,0,371,0,0,0,0,35,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,127,0,120,0,0,0,0,3,55,17,167,0,0,0,0,1,0,0,0,0,0,0,0,0,404,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,73,3,0,0,83,0,173,0,0,0,16,4,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,90,11,0,0,0,0,4,0,0,0,868,0,0,760,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,23,0,0,0,0,1,10,103,0,24,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,539,10,2 +0,0,0,0,0,10,2,0,15,0,1,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,3,0,1,0,0,3,0,0,0,0,0,90,0,0,0,0,0,1,0,0,0,0,0,0,0,0,7614,10,44,0,1,0,0,0,0,0,11,0,0,0,0,0,1,6,1727,0,0,0,0,0,0,0,0,10,0,5,0,0,2,0,14,0,0,0,0,970,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,89,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,990,0,29,0,0,0,0,3,26,5,1031,0,0,0,0,1,0,0,0,0,0,0,0,0,2948,0,0,0,0,0,0,0,0,0,0,0,0,3,0,96,0,0,0,0,0,0,8,3,86,0,0,0,102,0,168,0,0,0,34,4,0,0,0,0,0,0,181,0,0,40,1,0,0,0,2,0,0,0,0,0,94,25,0,0,0,0,0,0,0,0,454,0,0,2423,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,184,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,132,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,94,0,0,0,0,0,0,0,2,894,10,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,49,11,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,24,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,38,0,0,0,8,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,90,20,2 +16,0,0,3,0,26,2,0,4,20,3,0,0,0,23,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,11210,0,0,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,23,0,0,5644,26,47,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,53,0,21,0,0,66264,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,22435,0,0,0,0,1,0,0,0,0,0,0,0,0,105560,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,24,410,3,0,0,92,0,216,0,0,0,26,307,0,0,0,0,0,0,0,0,0,49,1,0,0,0,3,0,0,0,0,1,108,7,0,0,0,0,0,0,0,0,615,0,0,16,0,0,1,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,140,2 +0,0,0,3,0,10,3,0,24,1,3,0,0,0,8,0,26,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,44,0,1,0,1,0,0,1,1,0,0,0,0,282,0,0,0,0,0,1,0,0,0,0,0,9,0,0,4686,10,63,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,482,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,68,0,0,0,0,1202,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,36,0,38,0,0,0,0,3,28,12,45,0,0,0,0,1,0,0,0,0,0,0,0,0,2156,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,158,3,0,0,161,0,174,0,0,0,102,11,0,0,0,0,0,0,0,0,0,70,1,0,2,0,2,0,0,0,0,0,92,95,0,0,0,0,0,0,0,0,272,0,0,736,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,96,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,73,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,61,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9564,12,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1210,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,871,0,50,0,0,0,0,3,31,8,888,0,0,0,0,1,0,0,0,0,0,0,0,0,3706,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,99,2,0,0,114,0,109,0,0,0,48,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,97,28,0,0,0,0,0,0,0,0,831,0,0,3267,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,99,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1255,24,2 +1,0,0,2,0,15,3,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,7,0,15,6,0,0,19,0,2,0,1,0,0,2,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,546,15,43,0,0,0,0,0,0,0,9,0,0,0,0,0,1,4,184,0,0,7,0,0,0,0,0,7,0,4,0,0,2,0,15,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,27,0,0,0,0,3,29,5,54,0,0,0,0,1,0,0,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,85,2,0,0,111,0,110,0,0,0,48,2,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,95,21,0,0,0,0,0,0,0,0,36,0,0,368,0,0,1,0,1,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,181,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,22,127,0,1,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,6,2 +6,0,0,2,0,14,2,0,18,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,0,92,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3607,14,88,0,3,0,0,0,0,0,30,0,0,0,0,0,1,11,502,0,0,3,0,0,0,0,0,20,0,10,0,0,2,0,18,0,0,0,0,318,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,409,0,103,0,0,0,0,3,33,19,413,0,0,0,0,1,0,0,0,0,0,0,0,0,675,0,0,0,0,0,0,0,0,0,0,0,0,7,0,4,0,0,0,0,0,0,10,3,125,2,0,0,322,0,439,0,0,0,253,14,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,1,104,215,0,0,0,0,0,0,0,0,685,0,0,461,0,0,1,0,0,0,0,0,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,654,0,3,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,328,48,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,14,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,4,2 +2,0,0,3,0,48,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,7,0,0,0,0,1,0,0,0,39,0,48,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,7,35,0,0,0,0,0,1,0,0,0,0,0,10,0,0,286,48,94,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,39,0,0,1,47,0,386,35,0,0,0,2,0,234,0,0,0,0,556,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,69,0,0,0,7,10,63,355,60,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,154,3,0,0,156,0,207,0,0,0,123,2,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,9,130,112,0,0,84,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,0,0,0,0,0,1,87,39,0,8,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,5,2 +11,0,0,2,0,25,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,25,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,944,25,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,489,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,295,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,45,0,0,0,0,3,44,10,52,0,0,0,0,1,0,0,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,115,2,0,0,122,0,146,0,0,0,61,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,107,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,0,0,0,0,0,1,39,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,245,28,2 +8,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,33,0,0,0,3,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,11,0,0,68,11,126,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,34,0,0,3,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,62,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,27,378,59,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,125,0,0,0,27,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,603,0,0,32,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,32,0,0,0,0,1,14,7,0,33,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,3,2 +7,0,0,0,0,19,4,0,20,7,1,0,0,0,10,0,26,0,12,1,0,0,0,2,0,0,0,0,2,0,4,0,0,0,9,0,19,6,0,0,52,0,0,0,1,0,0,1,1,0,0,0,3,33,0,0,0,0,0,1,0,0,0,16,0,8,0,0,165,19,67,0,6,0,0,0,0,0,3,0,0,0,0,0,2,4,20,0,0,9,0,0,0,0,0,26,0,4,0,0,2,0,49,0,7,0,0,382,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,7,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,39,0,36,0,0,0,6,9,42,36,54,0,0,0,0,1,0,1,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,15,138,2,0,0,141,0,532,0,0,0,59,21,0,0,0,0,0,0,0,0,0,73,1,0,2,0,3,0,0,0,0,4,109,9,0,0,0,0,0,0,0,0,50,0,0,15,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,8,0,0,0,0,1,28,33,0,6,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,38,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,39,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,167,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,53,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,174,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,29,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,18,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,7,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +0,0,0,3,0,12,2,0,14,1,3,0,0,0,4,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,10,0,3,0,1,0,0,3,0,0,0,0,0,65,0,0,0,0,0,1,0,0,0,0,0,4,0,0,7661,12,47,0,1,0,0,0,0,0,13,0,0,0,0,0,1,6,1739,0,0,2,0,0,0,0,0,10,0,3,0,0,2,0,17,0,2,0,0,1041,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,92,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,996,0,41,0,0,0,0,3,28,6,1038,0,0,0,0,1,0,0,0,0,0,0,0,0,3073,0,0,0,0,0,0,0,0,0,0,0,0,3,0,95,0,0,0,0,0,0,8,5,98,3,0,0,130,0,218,0,0,0,59,8,0,0,0,0,0,0,180,0,0,43,1,0,0,0,2,0,0,0,0,0,96,46,0,0,0,0,0,0,0,0,457,0,0,2425,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,186,0,0,0,0,357,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,171,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,90,0,0,0,0,1,0,0,2,918,11,2 +18,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,0,0,0,0,6,0,26,6,0,0,14593,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5607,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73785,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,29237,0,0,0,0,1,0,0,0,0,0,0,0,0,91429,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,430,3,0,0,91,0,216,0,0,0,25,315,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,4,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,31358,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,4,0,0,203,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,47,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,110,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,168,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,85,3,0,0,111,0,163,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,615,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,10,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,39,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,141,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,4,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,27,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +2,0,0,2,0,12,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,3,0,0,0,1,0,12,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,2,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,9799,12,47,0,5,0,0,0,0,0,10,0,0,0,0,0,1,4,1261,0,0,1,0,0,0,0,0,10,0,3,0,0,2,0,19,0,0,0,0,137,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,880,0,38,0,0,0,4,4,26,15,881,0,0,0,0,1,0,0,0,0,0,0,0,0,3699,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,93,2,0,0,110,0,147,0,0,0,36,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,96,25,0,0,0,0,0,0,0,0,856,0,0,3359,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,6,0,0,0,2,1,13,92,0,5,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1291,17,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,59,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9523,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1244,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,865,0,48,0,0,0,0,3,27,8,882,0,0,0,0,1,0,0,0,0,0,0,0,0,3739,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,85,2,0,0,109,0,109,0,0,0,46,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,825,0,0,3249,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1284,23,2 +6,0,0,2,0,13,2,0,18,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,0,87,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3674,13,89,0,3,0,0,0,0,0,30,0,0,0,0,0,1,12,523,0,0,3,0,0,0,0,0,20,0,10,0,0,2,0,18,0,0,0,0,283,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,431,0,100,0,0,0,0,3,29,19,435,0,0,0,0,1,0,0,0,0,0,0,0,0,673,0,0,0,0,0,0,0,0,0,0,0,0,7,0,3,0,0,0,0,0,0,10,3,124,2,0,0,319,0,449,0,0,0,253,19,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,1,103,215,0,0,0,0,0,0,0,0,683,0,0,490,0,0,1,0,0,0,0,0,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,654,0,3,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,323,47,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,106,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,203,14,161,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,46,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,111,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,239,71,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,85,3,0,0,111,0,162,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,112,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,105,0,0,0,0,1,17,71,0,106,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,10,2 +2,0,0,1,0,38,6,0,27,0,1,0,0,2,6,0,18,0,7,4,0,0,0,5,0,8,0,0,3,0,2,0,0,0,12,0,38,6,0,0,64,0,0,0,1,0,0,3,0,0,0,0,2,133,0,0,0,0,0,1,0,0,0,2,0,5,0,0,1048,38,67,0,3,0,0,0,0,0,16,0,0,0,0,0,8,17,140,0,0,12,0,0,0,0,0,82,5,6,0,0,2,0,46,0,4,0,0,682,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,10,10,10,0,0,0,115,0,61,0,0,0,2,4,197,23,110,0,0,0,0,1,0,3,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,14,178,1,0,0,202,0,278,0,0,0,88,7,0,0,0,0,0,0,0,0,0,67,1,0,0,0,9,0,0,0,0,2,120,38,0,0,0,0,0,0,0,0,87,0,0,85,3,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,3,0,0,0,0,1,50,240,0,4,9,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,47,2 +11,0,0,3,0,12,99,0,116,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,217,0,0,0,1,0,0,0,0,0,0,0,4,50,0,0,0,0,0,1,0,0,0,0,0,3,0,0,335,12,241,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,27,0,0,3,0,0,1,112,0,837,30,0,0,0,2,0,559,0,0,0,0,227,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,36,0,0,0,8,11,29,760,49,0,0,0,0,1,0,0,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,53,3,0,0,152,0,134,0,0,0,119,5,0,0,0,0,0,0,0,0,0,242,0,0,0,0,2,0,0,0,0,5,96,228,0,0,98,0,0,0,0,0,26,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,245,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,5,2 +2,0,0,3,0,9,2,0,16,0,3,0,0,0,3,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,9,6,0,0,8,0,2,0,1,0,0,2,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,3,0,0,509,9,41,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,148,0,0,1,0,0,0,0,0,7,0,4,0,0,2,0,16,0,1,0,0,92,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,20,0,0,0,0,3,23,4,51,0,0,0,0,1,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,4,69,3,0,0,93,0,120,0,0,0,32,2,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,91,22,0,0,0,0,0,0,0,0,610,0,0,335,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,1,0,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,113,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,6,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,16,0,0,0,0,88,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,16,46,0,0,0,0,0,1,0,0,0,0,0,4,0,0,201,14,159,0,17,0,0,0,0,0,4,0,0,0,0,0,1,3,46,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,118,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,221,71,0,0,0,0,1,0,0,0,0,0,0,0,0,173,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,85,3,0,0,111,0,161,0,0,0,46,1,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,94,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,119,0,0,0,0,1,17,71,0,104,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,10,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,11,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,95,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2562,11,80,0,24,0,0,0,0,0,16,0,0,0,0,0,1,10,1017,0,0,0,0,0,0,0,0,36,0,4,0,0,2,0,38,0,0,0,0,515,0,0,0,0,29,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,393,0,121,0,0,0,0,3,59,19,435,0,0,0,0,1,0,0,0,0,0,0,0,0,1154,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,155,3,0,0,110,0,293,0,0,0,39,3,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,720,0,0,882,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,23,0,0,0,0,1,11,170,0,24,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,424,34,2 +8,0,0,9,0,61,36,0,90,9,15,0,0,6,19,0,819,0,7,4,0,0,0,8,1,11,16,0,14,0,3,0,0,0,21,5940,61,6,3,0,164,0,0,0,1,0,0,2,0,0,0,0,4,370,3,0,0,0,0,1,0,0,0,10,0,30,0,0,146852,61,1062,0,13,0,0,0,0,0,55,0,0,0,0,0,11,23,24824,0,0,21,0,0,3,32,0,484,70,4,0,0,2,0,1134,0,15,0,0,3750,0,0,0,0,25,1,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,7,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,50,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,48,12,12,12,0,0,0,22609,0,82,0,0,0,6,23,346,1421,22519,0,0,0,0,1,0,12,0,0,0,0,0,0,644,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,27,392,13,0,0,446,0,541,0,0,0,275,36,0,0,0,0,0,0,0,0,0,992,1,0,0,0,13,0,0,0,0,3,182,115,0,0,108,0,0,0,0,0,3125,1,0,96,28,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,28,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,69,1,1,1,0,15,0,0,0,0,1,82,300,0,30,14,0,0,0,0,0,163,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1376,348,2 +28,0,0,3,0,11,9,0,66,0,20,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,11,6,0,0,117,0,0,0,0,0,0,0,0,0,0,0,2,45,0,0,0,0,0,1,0,0,0,0,0,13,0,0,245,11,125,0,3,0,0,0,0,0,8,0,0,0,0,0,1,1,63,0,0,1,0,0,1,62,0,518,35,0,0,0,2,0,303,0,0,0,0,130,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,38,0,0,0,4,4,28,438,71,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,54,3,0,0,54,0,157,0,0,0,18,5,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2,0,0,0,0,1,91,149,0,0,74,0,0,0,0,0,606,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,12,1,0,3,0,0,0,0,0,0,167,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,77,2 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,32,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,4,2 +8,0,0,6,0,37,16,0,86,0,19,0,0,6,4,0,598,0,6,1,0,0,0,8,0,21,0,0,5,0,28,0,0,0,3,898,37,6,0,0,135,0,1,0,1,0,0,1,0,0,0,0,12,170,0,0,0,0,0,1,0,0,0,0,0,12,0,0,6612,37,771,0,13,0,0,0,0,0,16,0,0,0,0,0,8,23,1259,0,0,3,0,0,1,50,0,588,40,2,0,0,2,0,883,0,0,6,0,1252,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,452,0,47,0,0,0,1,4,268,747,453,0,0,0,0,1,0,3,0,0,0,0,0,0,331,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,86,16,206,6,0,0,254,0,301,0,0,0,104,4,0,0,0,0,0,0,0,0,0,735,1,0,0,0,9,0,0,0,0,0,124,165,0,0,57,0,0,0,0,0,2259,1,0,107,8,0,1,1,1,0,0,0,1,0,1,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,28,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,54,0,0,0,0,1,40,126,0,42,12,0,0,0,0,0,178,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,46,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,157,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,53,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,178,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,27,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,18,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,48,11,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,23,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,38,0,0,0,8,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,90,20,2 +2,0,0,3,0,42,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,33,0,42,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,6,35,0,0,0,0,0,1,0,0,0,0,0,10,0,0,268,42,93,0,7,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,33,0,0,1,47,0,384,35,0,0,0,2,0,233,0,0,0,0,493,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,32,0,64,0,0,0,6,9,57,350,50,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,137,3,0,0,139,0,190,0,0,0,106,4,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,7,124,113,0,0,84,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,0,0,0,0,0,1,75,37,0,7,0,0,0,0,0,0,131,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,4,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,21,0,1,0,0,0,0,0,10,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,95,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2509,10,78,0,22,0,0,0,0,0,16,0,0,0,0,0,1,10,1002,0,0,0,0,0,0,0,0,34,0,5,0,0,2,0,36,0,0,0,0,594,0,0,0,0,31,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,385,0,127,0,0,0,0,3,55,19,426,0,0,0,0,1,0,0,0,0,0,0,0,0,1123,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,167,3,0,0,107,0,242,0,0,0,39,5,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,714,0,0,870,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,21,0,0,0,0,1,10,170,0,22,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,427,20,2 +6,0,0,2,0,13,2,0,28,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,2,125,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2234,13,105,0,3,0,0,0,0,0,27,0,0,0,0,0,1,9,333,0,0,3,0,0,0,0,0,17,0,7,0,0,2,0,60,0,0,0,0,496,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,260,0,101,0,0,0,4,9,29,17,263,0,0,0,0,1,0,0,0,0,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,10,3,145,2,0,0,281,0,346,0,0,0,211,14,0,0,0,0,0,0,9,0,0,66,1,0,0,0,2,0,0,0,0,1,115,159,0,0,0,0,0,0,0,0,704,0,0,301,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,548,0,9,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,326,47,2 +11,0,0,3,0,10,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,21,0,1,0,0,0,0,0,10,6,0,0,71,0,3,0,1,0,0,3,0,0,0,0,0,54,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1289,10,70,0,22,0,0,0,0,0,13,0,0,0,0,0,1,8,625,0,0,0,0,0,0,0,0,33,0,3,0,0,2,0,35,0,0,0,0,233,0,0,0,0,36,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,125,0,120,0,0,0,0,3,53,17,164,0,0,0,0,1,0,0,0,0,0,0,0,0,415,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,75,3,0,0,86,0,173,0,0,0,18,1,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,92,11,0,0,0,0,4,0,0,0,866,0,0,764,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,21,0,0,0,0,1,10,103,0,22,0,0,1,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,536,11,2 +17,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14067,0,0,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5809,22,38,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,32,0,9,0,0,68305,0,0,0,0,8,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,2,0,0,0,0,0,0,69,0,56,0,0,0,8,10,56,69,28215,0,0,0,0,1,0,0,0,0,0,0,0,0,95595,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,389,3,0,0,78,0,232,0,0,0,12,298,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,613,0,0,20,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,12,0,0,0,4,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,33231,2 +4,0,0,2,0,12,3,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,12,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,1,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,755,12,59,0,2,0,0,0,0,0,21,0,0,0,0,0,1,9,146,0,0,0,0,0,0,0,0,13,0,8,0,0,2,0,15,0,0,0,0,212,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,128,0,77,0,0,0,1,4,35,53,162,0,0,0,0,1,0,0,0,0,0,0,0,0,435,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,10,3,105,2,0,0,116,0,176,0,0,0,39,7,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,97,25,0,0,0,0,0,0,0,0,646,0,0,133,0,0,1,0,0,0,0,0,9,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,0,0,0,0,0,1,12,96,0,2,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,213,42,2 +3,0,0,5,0,35,6,0,38,0,5,0,0,6,5,0,580,0,6,2,0,0,0,7,0,11,0,0,5,0,1,0,0,0,1,762,35,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,1,176,0,0,0,0,0,1,0,0,0,0,0,2,0,0,7299,35,639,0,4,0,0,0,0,0,11,0,0,0,0,0,8,26,1427,0,0,1,0,0,0,0,0,192,20,2,0,0,2,0,619,0,0,2,0,1396,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,527,0,54,0,0,0,2,5,271,352,525,0,0,0,0,1,0,4,0,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,24,174,5,0,0,181,0,259,0,0,0,41,2,0,0,0,0,0,0,0,0,0,646,1,0,0,0,9,0,0,0,0,0,118,11,0,0,8,0,0,0,0,0,2281,1,0,60,6,0,1,1,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,9,0,0,0,0,1,36,20,0,5,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,29,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14708,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5842,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,61,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,72806,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,29463,0,0,0,0,1,0,0,0,0,0,0,0,0,94997,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,449,3,0,0,91,0,207,0,0,0,25,308,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,612,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,33683,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +13,0,0,4,1,16,26,1,32,0,4,0,0,0,5,0,65,0,9,3,0,0,0,1,0,0,0,0,0,0,17,0,0,1,2,0,17,54,0,0,12,0,1,0,1,0,0,1,0,0,0,0,16,53,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2176,16,111,0,17,0,0,0,0,0,3,0,0,0,0,0,3,5,857,0,1,2,1,0,1,0,0,47,0,1,0,0,4,1,34,0,2,0,0,413,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,460,0,54,0,0,0,32,19,46,20,479,0,0,0,0,1,0,0,0,0,0,0,0,0,238,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,114,14,230,5,0,0,241,0,379,0,1,0,55,4,0,0,0,0,0,0,0,0,0,141,1,0,0,0,4,0,0,0,0,1,112,6,0,0,0,0,0,0,0,0,716,0,0,24,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,20,1,1,1,0,32,0,0,0,32,9,19,32,0,17,0,0,0,0,0,0,93,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,180,11,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,23,0,0,0,0,0,1,0,0,0,0,0,1,0,0,92,12,22,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,114,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,55,2,0,0,44,0,160,0,0,0,5,4,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,4,2 +0,0,0,3,0,23,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,23,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,25,0,20,0,0,0,1,0,0,0,0,0,6,0,0,212,23,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,74,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,70,0,50,0,0,0,0,3,61,44,114,0,0,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,88,3,0,0,86,0,115,0,0,0,29,10,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,105,2,0,0,0,0,0,0,0,0,209,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,0,0,0,4,0,1,29,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,15,2 +6,0,0,2,0,13,2,0,18,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2421,13,77,0,3,0,0,0,0,0,24,0,0,0,0,0,1,9,230,0,0,3,0,0,0,0,0,16,0,10,0,0,2,0,18,0,0,0,0,306,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,197,0,79,0,0,0,0,3,29,10,199,0,0,0,0,1,0,0,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,10,3,119,2,0,0,255,0,419,0,0,0,188,20,0,0,0,0,0,0,2,0,0,46,1,0,0,0,2,0,0,0,0,1,102,154,0,0,0,0,0,0,0,0,650,0,0,241,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,449,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,220,39,2 +17,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14072,0,0,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5700,22,38,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,32,0,9,0,0,68775,0,0,0,0,6,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,10,54,69,28205,0,0,0,0,1,0,0,0,0,0,0,0,0,92500,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,377,3,0,0,78,0,232,0,0,0,12,271,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,615,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,2,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,31095,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,98,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,202,14,153,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,46,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,112,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,231,71,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,86,3,0,0,111,0,163,0,0,0,46,3,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,104,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,98,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,97,0,0,0,0,1,17,71,0,98,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,10,2 +6,0,0,2,0,14,2,0,26,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,0,113,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2476,14,89,0,3,0,0,0,0,0,27,0,0,0,0,0,1,9,332,0,0,3,0,0,0,0,0,19,0,7,0,0,2,0,26,0,0,0,0,275,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,260,0,102,0,0,0,0,3,33,15,263,0,0,0,0,1,0,0,0,0,0,0,0,0,587,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,10,3,140,2,0,0,283,0,323,0,0,0,211,12,0,0,0,0,0,0,10,0,0,54,1,0,0,0,2,0,0,0,0,1,115,159,0,0,0,0,0,0,0,0,685,0,0,299,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,548,0,3,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,330,45,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,93,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2608,10,80,0,23,0,0,0,0,0,17,0,0,0,0,0,1,10,1030,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,543,0,0,0,0,33,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,398,0,124,0,0,0,0,3,56,19,438,0,0,0,0,1,0,0,0,0,0,0,0,0,1158,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,173,3,0,0,108,0,241,0,0,0,39,5,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,722,0,0,891,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,430,19,2 +28,0,0,3,0,11,9,0,66,0,20,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,11,6,0,0,117,0,0,0,0,0,0,0,0,0,0,0,2,36,0,0,0,0,0,1,0,0,0,0,0,13,0,0,249,11,125,0,3,0,0,0,0,0,8,0,0,0,0,0,1,1,65,0,0,1,0,0,1,62,0,518,35,0,0,0,2,0,303,0,0,0,0,371,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,38,0,0,0,4,4,28,438,71,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,60,3,0,0,54,0,164,0,0,0,18,5,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2,0,0,0,0,1,91,149,0,0,74,0,0,0,0,0,608,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,12,1,0,3,0,0,0,0,0,0,167,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,77,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,2,0,14,2,0,16,0,4,0,0,0,2,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,14,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,69,0,1,0,0,0,1,0,0,0,0,0,1,0,0,10257,14,70,0,1,0,0,0,0,0,23,0,0,0,1,0,2,9,1360,0,0,2,0,0,0,0,0,17,0,9,0,0,2,0,17,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,969,0,87,0,0,0,0,3,38,10,984,0,0,0,0,1,0,0,0,0,0,0,0,0,4058,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,0,8,11,107,2,0,0,140,0,175,0,0,0,64,11,0,0,0,0,0,0,4,0,0,44,1,0,0,0,3,0,0,0,0,0,105,37,0,0,0,0,0,0,0,0,876,0,0,3431,0,0,1,0,0,0,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,16,121,0,1,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1417,50,2 +0,0,0,2,0,13,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,13,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,0,54,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9355,13,50,0,1,0,0,0,0,0,14,0,0,0,2,0,1,6,1180,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,856,0,50,0,0,0,0,3,35,8,873,0,0,0,0,1,0,0,0,0,0,0,0,0,3616,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,93,2,0,0,115,0,112,0,0,0,46,15,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,97,27,0,0,0,0,0,0,0,0,812,0,0,3206,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,16,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1225,26,2 +28,0,0,5,0,99,99,0,100,5,80,0,0,8,4,0,2262,0,6,2,0,0,0,7,0,11,0,0,45,0,47,0,0,0,23,70412,99,6,0,0,82,0,0,0,1,0,0,3,0,0,0,0,47,2902,0,0,0,0,0,1,0,0,0,0,0,2,0,0,204941,99,2818,0,90,0,0,0,0,0,194,0,0,0,0,0,8,401,45684,0,0,23,0,0,0,0,0,1044,30,5,0,0,2,0,2501,0,0,790,0,27711,0,0,0,0,18,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,2,0,0,0,0,0,72,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,12,12,12,0,0,0,8689,0,163,0,0,0,124,49,7637,10328,8610,0,0,0,0,1,0,4,0,0,0,0,0,0,1611,0,0,0,0,0,0,0,0,0,2,0,0,3,1,0,0,0,0,0,1,0,132,31,912,5,0,0,801,0,573,0,0,0,511,49,0,0,0,0,0,0,0,0,0,2559,1,0,0,0,9,0,0,0,0,2,342,73,0,0,754,0,0,0,0,0,27297,1,0,1523,83,0,1,3,0,0,0,0,8,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,83,51,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,102,1,1,1,0,231,0,0,0,28,1,122,388,0,91,12,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,4,15447,298,2 +0,0,0,4,0,29,6,0,22,0,7,0,0,2,3,0,23,0,7,4,0,0,0,4,0,8,6,0,3,0,3,0,0,0,4,0,29,6,0,0,44,0,0,0,1,0,0,0,0,0,0,0,3,109,0,0,0,0,0,1,0,0,0,2,0,5,0,0,587,29,67,0,5,0,0,0,0,0,2,0,0,0,0,0,7,11,76,0,0,4,0,0,1,13,0,180,20,0,0,0,2,0,122,0,0,0,0,673,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,45,0,28,0,0,0,4,9,183,107,49,0,0,0,0,1,0,5,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,32,10,97,4,0,0,109,0,268,0,0,0,36,24,0,0,0,0,0,0,0,0,0,70,0,0,0,0,8,0,0,0,0,1,111,222,0,0,29,0,0,0,0,0,90,0,0,2,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,4,0,0,0,0,1,33,52,0,12,8,0,0,0,0,0,49,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,35,2 +2,0,0,2,0,8,2,0,5,0,2,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,3,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,1,0,0,35,8,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,39,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,16,0,20,0,0,0,0,3,21,9,31,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,31,2,0,0,54,0,83,0,0,0,21,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,88,21,0,0,0,0,0,0,0,0,596,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,7,2 +12,0,0,4,0,15,2,0,5,0,3,0,0,0,3,0,18,0,7,2,0,0,0,1,0,1,0,0,126,0,1,0,0,0,1,0,15,30,0,0,16,0,0,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,4,0,0,217409,15,160,0,128,0,0,0,0,0,3,0,0,0,0,0,2,4,42221,0,0,1,0,0,0,0,0,136,0,1,0,0,2,0,136,0,1,0,0,294043,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,22041,0,62,0,0,0,0,3,22011,718,23895,0,0,0,0,1,0,0,0,0,0,0,0,0,7754,0,706,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,1382,4,0,0,80,0,215,0,0,0,32,916,0,0,0,0,0,0,0,0,0,38,1,0,0,0,3,0,0,0,0,1,103,14,0,0,0,0,10,0,18,9,20930,0,0,12,0,0,1,0,0,0,0,0,2,0,702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21986,1,1,1,0,127,0,0,0,0,1,16,5,0,128,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,44205,1148,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,12,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,987,12,59,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,130,0,0,0,0,0,0,0,0,15,0,5,0,0,2,0,14,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,121,0,86,0,0,0,0,3,34,13,138,0,0,0,0,1,0,0,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,8,3,112,2,0,0,250,0,310,0,0,0,180,8,0,0,0,0,0,0,2,0,0,41,1,0,0,0,2,0,0,0,0,0,102,160,0,0,0,0,0,0,0,0,60,0,0,84,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,12,499,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,211,29,2 +13,0,0,6,0,55,9,0,49,3,10,0,0,7,11,0,913,0,6,2,0,0,0,7,0,10,0,0,9,0,13,0,0,0,11,945,55,6,0,0,60,0,0,0,1,0,0,7,0,0,0,0,13,213,0,0,0,0,0,1,0,0,0,0,0,7,0,0,8145,55,1044,0,19,0,0,0,0,0,38,0,0,0,0,0,8,30,1532,0,0,11,0,0,0,0,0,222,25,14,0,0,2,0,992,0,4,6,0,1764,0,0,0,0,10,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,649,0,121,0,0,0,25,10,300,485,614,0,0,0,0,1,0,3,0,0,0,0,0,0,709,0,0,0,0,0,0,0,0,0,1,0,0,7,1,0,0,0,0,0,1,0,108,20,274,6,0,0,304,0,407,0,0,0,117,17,0,0,0,0,0,0,0,0,0,1005,1,0,0,0,9,0,0,0,0,1,140,32,0,0,13,0,0,0,0,0,2994,1,0,292,8,0,1,1,0,0,0,0,13,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,8,15,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,33,0,0,0,12,1,66,116,0,20,12,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,812,173,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,57,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9557,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1241,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,869,0,48,0,0,0,0,3,27,8,886,0,0,0,0,1,0,0,0,0,0,0,0,0,3759,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,87,2,0,0,109,0,108,0,0,0,46,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,829,0,0,3262,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1281,21,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +10,0,0,8,0,69,99,0,209,5,39,0,0,6,29,0,1221,0,6,1,0,0,0,11,0,11,12,0,36,0,10,0,0,0,21,11438,69,26,0,0,181,0,4,0,1,0,0,5,1,0,0,0,10,581,0,0,0,0,0,1,0,0,0,6,0,31,0,0,64714,69,1706,0,42,0,0,0,0,0,133,0,0,0,0,0,11,115,8633,0,0,21,0,0,1,23,0,583,60,13,0,0,2,0,1677,0,1,84,0,15207,0,0,0,0,6,0,4,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,10,0,0,0,0,0,0,32,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,60,12,12,12,0,0,0,4537,0,530,0,0,0,33,37,597,6182,4498,0,0,0,0,1,0,6,0,0,0,0,0,0,2457,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,86,34,1811,8,0,0,700,0,975,0,0,0,435,481,0,0,0,0,0,0,0,0,0,1609,1,0,4,0,12,0,0,0,0,3,190,252,0,0,259,0,0,0,1,0,5374,1,0,1582,28,0,1,2,1,0,0,0,14,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,2,0,0,0,28,370,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,76,1,1,1,0,93,0,0,0,4,1,90,6177,0,55,14,0,1,0,0,0,127,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2491,705,2 +28,0,0,3,0,11,9,0,66,0,20,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,11,6,0,0,117,0,0,0,0,0,0,0,0,0,0,0,2,36,0,0,0,0,0,1,0,0,0,0,0,13,0,0,243,11,125,0,3,0,0,0,0,0,8,0,0,0,0,0,1,1,62,0,0,1,0,0,1,62,0,518,35,0,0,0,2,0,303,0,0,0,0,306,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,38,0,0,0,4,4,28,438,71,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,55,3,0,0,54,0,158,0,0,0,18,3,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2,0,0,0,0,1,91,149,0,0,74,0,0,0,0,0,605,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,12,1,0,3,0,0,0,0,0,0,167,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,77,2 +2,0,0,3,0,12,3,0,25,0,6,0,0,0,2,0,17,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,12,6,0,0,17,0,0,0,1,0,0,8,0,0,0,0,2,100,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2202,12,107,0,3,0,0,0,0,0,34,0,0,0,0,0,1,11,455,0,0,0,0,0,1,8,0,93,15,10,0,0,2,0,54,0,0,0,0,227,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,341,0,122,0,0,0,4,4,35,75,345,0,0,0,0,1,0,0,0,0,0,0,0,0,743,0,0,0,0,0,0,0,0,0,0,0,0,8,0,8,0,0,0,0,0,0,10,3,117,3,0,0,182,0,376,0,0,0,110,8,0,0,0,0,0,0,15,0,0,60,1,0,0,0,2,0,0,0,0,1,101,94,0,0,31,0,0,0,0,0,723,0,0,369,0,0,1,0,1,0,0,0,16,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,2,1,12,139,0,3,0,0,0,0,0,0,70,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,9,434,37,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,23,0,0,0,0,0,1,0,0,0,0,0,3,0,0,163,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,30,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,276,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,64,3,0,0,42,0,150,0,0,0,6,4,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,647,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,171,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,2,0,0,0,5,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,24,0,20,0,0,0,1,0,0,0,0,0,6,0,0,211,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,74,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,49,0,0,0,0,3,57,44,113,0,0,0,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,85,3,0,0,83,0,115,0,0,0,29,4,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,210,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,15,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,2,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,4,0,0,141,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,31,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,120,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,177,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,214,5,0,0,229,0,330,0,1,0,55,2,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,116,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,36,0,2,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,97,15,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,203,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,47,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,110,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,86,3,0,0,111,0,163,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,615,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,10,2 +12,0,0,0,0,13,6,0,39,0,8,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,7,0,0,0,1,0,13,6,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,7,0,0,36,13,70,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,1,0,0,0,35,0,284,0,0,0,0,2,0,182,0,0,0,0,89,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,23,0,25,0,0,0,0,3,31,239,47,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,50,0,0,0,56,0,66,0,0,0,9,1,0,0,0,0,0,0,0,0,0,70,0,0,0,0,2,0,0,0,0,0,97,92,0,0,0,0,0,0,0,0,22,0,0,5,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,6,0,0,0,0,1,14,1,0,7,0,0,0,0,0,0,97,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,3,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,4,0,0,199,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,44,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,109,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,40,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,175,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,86,3,0,0,111,0,160,0,0,0,46,1,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,612,0,0,111,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,11,2 +10,0,0,3,0,10,2,0,17,0,2,0,0,0,2,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,10,6,0,0,35,0,3,0,1,0,0,4,0,0,0,0,4,81,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2429,10,63,0,5,0,0,0,0,0,17,0,0,0,0,0,1,11,950,0,0,0,0,0,0,0,0,30,0,4,0,0,2,0,19,0,0,0,0,353,0,0,0,0,4,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,372,0,136,0,0,0,8,10,32,35,407,0,0,0,0,1,0,0,0,0,0,0,0,0,1092,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,119,3,0,0,106,0,269,0,0,0,38,12,0,0,0,0,0,0,4,0,0,46,1,0,0,0,2,0,0,0,0,5,92,28,0,0,0,0,4,0,0,0,672,0,0,850,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,0,0,0,0,365,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,8,0,0,0,6,1,10,170,0,5,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,372,18,2 +2,0,0,3,1,11,26,1,27,2,4,0,0,0,5,0,59,0,10,1,0,0,0,1,0,0,0,0,1,0,2,0,0,1,2,0,12,54,0,0,9,0,0,0,1,0,0,0,0,0,0,0,1,57,0,0,0,0,0,1,0,0,0,0,0,3,0,0,102,11,88,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,1,2,1,0,1,0,0,43,0,0,0,0,4,1,19,0,2,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,23,0,22,0,0,0,2,3,28,9,35,0,0,0,0,1,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,14,198,4,0,0,205,0,679,0,1,0,52,8,0,0,0,0,0,0,0,0,0,131,0,0,0,0,2,0,0,0,0,1,111,4,0,0,0,0,0,0,0,0,133,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,1,1,1,0,3,0,0,0,0,9,14,3,0,3,0,0,0,0,0,0,44,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,89,656,2 +2,0,0,2,0,12,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,12,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,2,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,10145,12,45,0,3,0,0,0,0,0,10,0,0,0,0,0,1,4,1309,0,0,1,0,0,0,0,0,8,0,3,0,0,2,0,17,0,0,0,0,130,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,911,0,37,0,0,0,4,4,26,15,912,0,0,0,0,1,0,0,0,0,0,0,0,0,3972,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,89,2,0,0,110,0,145,0,0,0,36,1,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,96,25,0,0,0,0,0,0,0,0,884,0,0,3482,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,13,92,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1339,19,2 +12,0,0,4,0,15,2,0,11,0,2,0,0,0,2,0,40,0,6,1,0,0,0,1,0,0,18,0,0,0,7,0,0,0,2,0,15,6,0,0,194,0,0,0,1,0,0,0,0,0,0,0,6,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,575,15,77,0,7,0,0,0,0,0,0,0,0,0,0,0,1,1,36,0,0,2,0,0,0,0,0,5,0,0,0,0,2,0,118,0,0,0,0,390,0,0,0,0,0,2,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,49,0,47,0,0,0,12,24,34,575,73,0,0,0,0,1,0,0,0,0,0,0,0,0,1345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,385,65,5,0,0,74,0,192,0,0,0,29,4,0,0,0,0,0,0,0,0,0,63,0,0,0,0,2,0,0,0,0,1,97,22,0,0,0,0,0,0,0,0,656,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,6,0,0,0,0,1,17,54,0,25,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,43,2 +17,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5174,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,39458,0,0,0,0,3,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0,68,0,54,0,0,0,14,17,52,37,34502,0,0,0,0,1,0,0,0,0,0,0,0,0,97962,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,327,3,0,0,75,0,224,0,0,0,12,236,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,612,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,25,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,29690,2 +16,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13815,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6321,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,71673,0,0,0,0,3,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,27671,0,0,0,0,1,0,0,0,0,0,0,0,0,91718,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,447,3,0,0,91,0,212,0,0,0,25,315,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,613,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,31013,2 +8,0,0,3,0,12,2,0,4,0,2,0,0,0,4,0,13,0,7,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,2,0,12,12,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,2,0,0,91,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,2,0,0,0,0,0,7,0,0,0,0,2,0,16,0,0,0,0,94,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,27,0,0,0,0,3,30,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,52,3,0,0,52,0,121,0,0,0,14,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,96,5,0,0,0,0,2,0,4,2,605,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,14,2,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,5,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,1,0,0,927,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,472,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,271,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,114,2,0,0,119,0,146,0,0,0,61,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,27,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +11,0,0,2,0,25,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,25,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,956,25,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,501,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,296,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,43,0,0,0,0,3,44,10,52,0,0,0,0,1,0,0,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,115,2,0,0,122,0,147,0,0,0,61,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,107,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,0,0,0,0,0,1,39,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,241,28,2 +12,0,0,9,2,48,54,2,75,6,11,0,0,2,19,0,119,0,11,3,0,0,0,6,0,8,0,0,9,0,5,0,0,2,22,0,50,148,0,0,108,0,0,0,1,0,0,2,0,0,0,0,5,148,0,0,0,0,0,1,0,0,0,0,0,17,0,0,984,48,218,0,12,0,0,0,0,0,11,0,0,0,0,0,8,16,154,0,2,22,2,0,3,8,0,242,20,4,0,0,6,2,130,0,12,0,0,821,0,0,0,0,5,1,1,0,0,0,0,1,0,0,0,5,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6,10,10,10,0,0,0,128,0,72,0,0,0,8,7,219,123,140,0,0,0,0,1,0,3,0,0,0,0,0,0,423,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,244,56,474,11,0,0,526,0,748,0,2,0,185,19,0,0,0,0,0,0,0,0,0,291,1,0,0,0,9,0,0,0,0,4,158,52,0,0,29,0,0,0,0,0,325,0,0,65,3,0,1,1,0,0,0,0,3,0,1,0,2,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,51,1,1,1,0,15,0,0,0,2,17,72,236,0,13,9,0,0,0,0,0,129,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,1,218,107,2 +1,0,0,0,0,20,2,0,11,1,1,0,0,0,3,0,10,0,6,2,0,0,0,0,0,0,0,0,6,0,1,0,0,0,11,0,20,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,1,0,0,523,20,29,0,7,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,11,0,0,0,0,0,11,0,0,0,0,2,0,17,0,1,0,0,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,88,0,27,0,0,0,0,3,36,236,31,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,94,0,0,0,70,0,154,0,0,0,37,11,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,102,3,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,6,0,0,0,0,1,31,11,0,7,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,279,2 +18,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14572,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5769,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73715,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,58,0,0,0,0,3,56,61,29197,0,0,0,0,1,0,0,0,0,0,0,0,0,92244,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,435,3,0,0,91,0,216,0,0,0,25,311,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,613,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,30433,2 +24,0,0,5,0,46,18,0,119,12,29,0,1,4,17,0,597,0,6,3,0,0,0,9,0,11,0,0,14,0,1,0,0,0,6,1058,46,6,0,0,218,0,0,0,1,0,0,3,0,0,0,0,1,213,0,0,0,0,0,1,0,0,0,0,0,13,0,0,7361,46,802,0,11,0,0,0,0,0,19,0,0,0,0,0,11,25,1396,0,0,6,0,0,1,73,0,783,95,5,0,0,2,0,1014,0,12,1,0,1480,0,0,0,0,11,1,1,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,1,0,11,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,34,12,12,12,0,0,0,667,0,60,0,0,0,0,3,285,788,647,0,0,0,0,1,0,3,0,0,0,0,0,0,775,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,69,35,244,9,0,0,276,0,331,0,0,0,103,11,0,0,0,0,0,0,0,0,0,791,1,0,0,0,12,0,0,0,0,1,132,188,0,0,193,0,41,0,0,0,1676,1,0,250,8,0,1,1,0,0,0,0,6,0,0,0,2,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,10,0,0,0,0,1,52,136,0,12,14,0,0,0,0,0,257,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,3,563,45,2 +2,0,0,2,0,13,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,13,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,2,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,9865,13,45,0,3,0,0,0,0,0,10,0,0,0,0,0,1,4,1289,0,0,1,0,0,0,0,0,8,0,4,0,0,2,0,17,0,0,0,0,152,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,886,0,39,0,0,0,4,4,30,15,887,0,0,0,0,1,0,0,0,0,0,0,0,0,3900,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,96,2,0,0,113,0,147,0,0,0,36,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,97,25,0,0,0,0,0,0,0,0,859,0,0,3375,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,4,0,0,0,2,1,14,92,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1322,19,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,12,0,0,0,0,3,21,3,21,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,23,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,2 +0,0,0,3,0,11,2,0,16,0,3,0,0,0,3,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,34,0,0,0,1,0,0,3,0,0,0,0,0,58,0,0,0,0,0,1,0,0,0,0,0,3,0,0,390,11,47,0,1,0,0,0,0,0,13,0,0,0,0,0,2,6,43,0,0,2,0,0,0,0,0,10,0,6,0,0,2,0,17,0,1,0,0,142,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,56,0,32,0,0,0,0,3,28,5,60,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,83,3,0,0,117,0,131,0,0,0,47,4,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,93,34,0,0,0,0,0,0,0,0,33,0,0,66,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,188,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,23,2 +9,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,33,0,0,0,3,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,11,0,0,68,11,126,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,35,0,0,3,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,65,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,27,378,59,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,60,0,124,0,0,0,26,1,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,124,0,0,44,0,0,0,0,0,604,0,0,32,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,33,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,32,0,0,0,0,1,14,3,0,33,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,3,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,4,0,0,143,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,31,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,132,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,176,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,215,5,0,0,229,0,329,0,1,0,55,3,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,116,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,36,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,97,15,2 +17,0,0,3,0,22,2,0,4,19,3,0,0,0,22,0,10,0,7,2,0,0,0,1,0,0,0,0,2,0,3,0,0,0,2,0,22,6,0,0,14329,0,0,0,1,0,0,1,0,0,0,0,2,53,0,0,0,0,0,1,0,0,0,0,0,22,0,0,4944,22,46,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,18,0,1,0,0,2,0,51,0,20,0,0,73335,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,4,7,54,65,28677,0,0,0,0,1,0,0,0,0,0,0,0,0,90813,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,23,357,3,0,0,79,0,210,0,0,0,13,255,0,0,0,0,0,0,0,0,0,48,1,0,0,0,3,0,0,0,0,3,104,6,0,0,0,0,0,0,0,0,612,0,0,18,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,4,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,6,0,0,0,4,1,24,2,0,5,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,33968,2 +10,0,0,11,0,41,6,0,45,23,15,0,0,0,42,0,48,0,7,4,0,0,0,4,0,2,12,0,10,0,8,2,0,0,21,0,41,6,0,0,193,0,0,0,1,0,0,3,0,0,0,0,11,101,0,0,0,0,0,1,0,0,0,27,0,36,0,0,2235,41,202,0,22,0,0,0,0,0,15,0,0,0,0,0,7,11,591,0,0,21,0,0,2,16,0,197,30,3,0,0,2,0,286,0,29,0,0,1577,0,0,0,0,66,0,0,0,0,0,0,1,0,0,0,11,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,0,0,0,0,0,0,386,0,140,0,0,0,22,31,77,234,398,0,0,0,0,1,0,0,0,0,0,0,0,0,1980,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,8,81,321,18,0,0,230,0,424,0,0,0,132,55,0,0,0,0,0,0,7,0,0,163,1,0,0,0,8,0,0,0,0,6,140,66,0,0,58,0,169,0,0,0,167,0,0,203,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,32,0,0,0,0,1,62,158,0,34,0,0,0,0,0,0,119,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,27,0,0,0,0,0,0,0,0,0,0,0,0,0,3,486,336,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +11,0,0,3,0,10,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,21,0,1,0,0,0,0,0,10,6,0,0,71,0,3,0,1,0,0,3,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1302,10,70,0,22,0,0,0,0,0,13,0,0,0,0,0,1,8,630,0,0,0,0,0,0,0,0,33,0,4,0,0,2,0,35,0,0,0,0,163,0,0,0,0,35,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,126,0,116,0,0,0,0,3,53,17,165,0,0,0,0,1,0,0,0,0,0,0,0,0,391,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,74,3,0,0,84,0,175,0,0,0,16,1,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,90,11,0,0,0,0,4,0,0,0,860,0,0,768,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,21,0,0,0,0,1,10,103,0,22,0,0,1,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,521,11,2 +11,0,0,3,0,12,99,0,116,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,217,0,0,0,1,0,0,0,0,0,0,0,4,51,0,0,0,0,0,1,0,0,0,0,0,3,0,0,333,12,241,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,27,0,0,3,0,0,1,112,0,837,30,0,0,0,2,0,559,0,0,0,0,211,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,36,0,0,0,8,11,29,760,49,0,0,0,0,1,0,0,0,0,0,0,0,0,539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,56,3,0,0,152,0,136,0,0,0,119,5,0,0,0,0,0,0,0,0,0,242,0,0,0,0,2,0,0,0,0,5,96,228,0,0,98,0,0,0,0,0,26,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,245,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,5,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,53,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,14,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,45,0,0,0,34,0,49,0,0,0,4,5,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,9,2 +1,0,0,3,0,14,2,0,36,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,14,6,0,0,8,0,3,0,1,0,0,4,0,0,0,0,0,80,0,0,0,0,0,1,0,0,0,0,0,3,0,0,21148,14,84,0,1,0,0,0,0,0,19,0,0,0,0,0,1,8,2874,0,0,3,0,0,0,0,0,13,0,6,0,0,2,0,15,0,1,0,0,517,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,53,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,2097,0,138,0,0,0,0,3,33,7,2135,0,0,0,0,1,0,0,0,0,0,0,0,0,6319,0,0,0,0,0,0,0,0,0,0,0,0,4,0,53,0,0,0,0,0,0,8,4,106,3,0,0,137,0,232,0,0,0,69,9,0,0,0,0,0,0,54,0,0,64,1,0,0,0,2,0,0,0,0,0,96,46,0,0,0,0,0,0,0,0,1599,0,0,6899,0,0,1,1,1,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,104,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,54,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,17,324,0,1,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,58,0,0,0,0,0,0,0,4,2181,29,2 +3,0,0,5,0,35,6,0,37,0,5,0,0,6,5,0,545,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,762,35,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,1,173,0,0,0,0,0,1,0,0,0,0,0,2,0,0,6630,35,602,0,3,0,0,0,0,0,11,0,0,0,0,0,8,24,1292,0,0,1,0,0,0,0,0,190,20,2,0,0,2,0,584,0,0,2,0,1293,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,481,0,57,0,0,0,1,4,267,351,480,0,0,0,0,1,0,4,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,24,175,5,0,0,182,0,260,0,0,0,41,3,0,0,0,0,0,0,0,0,0,610,1,0,0,0,9,0,0,0,0,0,118,11,0,0,8,0,0,0,0,0,2161,1,0,60,6,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,20,0,4,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,29,2 +16,0,0,3,0,26,2,0,4,19,3,0,0,0,22,0,10,0,7,2,0,0,0,1,0,0,0,0,2,0,3,0,0,0,6,0,26,6,0,0,10986,0,0,0,1,0,0,1,0,0,0,0,2,53,0,0,0,0,0,1,0,0,0,0,0,22,0,0,5342,26,46,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,18,0,1,0,0,2,0,51,0,20,0,0,66718,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,4,7,58,65,21991,0,0,0,0,1,0,0,0,0,0,0,0,0,97025,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,23,436,3,0,0,91,0,223,0,0,0,25,312,0,0,0,0,0,0,0,0,0,48,1,0,0,0,3,0,0,0,0,3,108,6,0,0,0,0,0,0,0,0,612,0,0,18,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,4,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,6,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,32083,2 +20,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5076,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,36234,0,0,0,0,7,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,55,0,0,0,14,17,54,37,35786,0,0,0,0,1,0,0,0,0,0,0,0,0,100781,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,331,3,0,0,75,0,223,0,0,0,12,227,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,614,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,27,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,29996,2 +8,0,0,7,0,43,6,0,37,4,7,0,0,6,9,0,620,0,7,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,7,898,43,6,0,0,55,0,0,0,0,0,0,3,0,0,0,0,1,211,0,0,0,0,0,1,0,0,0,0,0,7,0,0,7231,43,711,0,3,0,0,0,0,0,28,0,0,0,0,0,9,21,1395,0,0,7,0,0,0,0,0,199,20,7,1,0,2,0,675,0,4,2,0,1703,0,2,0,0,0,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,506,0,66,0,0,0,0,3,289,406,504,0,0,0,0,1,0,4,0,0,0,0,0,0,405,0,0,0,0,2,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,84,29,241,7,0,0,295,0,459,0,0,0,139,10,0,0,0,0,0,0,0,0,0,692,1,0,0,0,9,0,0,0,0,0,126,75,0,0,11,0,0,0,0,0,1835,1,0,110,6,0,1,1,0,0,0,0,4,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,2,0,0,0,0,1,50,309,0,4,12,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,4,618,51,2 +0,0,0,3,0,13,2,0,25,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,13,6,0,0,19,0,1,0,1,0,0,1,0,0,0,0,0,61,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1944,13,49,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,721,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,15,0,1,0,0,161,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,192,0,25,0,0,0,0,3,30,8,203,0,0,0,0,1,0,0,0,0,0,0,0,0,423,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,84,3,0,0,117,0,214,0,0,0,51,1,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,0,96,35,0,0,0,0,0,0,0,0,285,0,0,924,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,16,112,0,1,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,355,19,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,4,0,0,203,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,46,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,121,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,40,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,86,3,0,0,111,0,162,0,0,0,46,6,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,10,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,2,0,0,51,11,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,26,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,40,5,0,0,45,0,38,0,0,0,10,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,93,2,0,0,0,0,4,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,112,20,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14261,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6036,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,72246,0,0,0,0,2,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,28563,0,0,0,0,1,0,0,0,0,0,0,0,0,90046,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,433,3,0,0,91,0,225,0,0,0,25,318,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,28203,2 +10,0,0,8,0,71,102,0,209,5,41,0,0,7,29,0,1202,0,6,1,0,0,0,11,0,12,12,0,40,0,10,0,0,0,21,12022,71,26,0,0,183,0,4,0,1,0,0,5,1,0,0,0,10,600,0,0,0,0,0,1,0,0,0,6,0,31,0,0,60459,71,1708,0,47,0,0,0,0,0,141,0,0,0,0,0,11,142,7012,0,0,21,0,0,1,23,0,621,65,12,0,0,2,0,1673,0,1,96,0,16977,0,0,0,0,6,0,4,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,10,0,0,0,0,0,0,30,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,12,12,12,0,0,0,3129,0,386,0,0,0,35,39,744,6356,3082,0,0,0,0,1,0,6,0,0,0,0,0,0,2458,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,108,40,1678,8,0,0,713,0,958,0,0,0,442,440,0,0,0,0,0,0,0,0,0,1596,1,0,5,0,12,0,0,0,0,3,194,252,0,0,274,0,0,0,1,0,5549,1,0,1620,32,0,1,2,1,0,0,0,15,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,2,0,0,0,32,370,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,78,1,1,1,0,104,0,0,0,4,1,92,6174,0,60,14,0,1,0,0,0,136,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2708,828,2 +6,0,0,2,0,14,2,0,28,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,2,113,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2248,14,107,0,3,0,0,0,0,0,27,0,0,0,0,0,1,9,324,0,0,3,0,0,0,0,0,17,0,7,0,0,2,0,62,0,0,0,0,278,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,258,0,102,0,0,0,4,11,33,21,261,0,0,0,0,1,0,0,0,0,0,0,0,0,602,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,10,3,148,2,0,0,284,0,337,0,0,0,211,12,0,0,0,0,0,0,10,0,0,66,1,0,0,0,2,0,0,0,0,1,116,159,0,0,0,0,0,0,0,0,701,0,0,292,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,548,0,9,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,323,45,2 +23,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,35,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5098,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,37850,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,54,0,0,0,14,17,52,37,32960,0,0,0,0,1,0,0,0,0,0,0,0,0,96703,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,321,3,0,0,75,0,216,0,0,0,12,222,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,613,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,25,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,30639,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +8,0,0,3,0,30,5,0,12,0,2,0,0,2,2,0,28,0,6,2,0,0,0,6,0,8,9,0,2,0,4,0,0,0,6,0,30,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,4,78,0,0,0,0,0,1,0,0,0,0,0,2,0,0,683,30,55,0,4,0,0,0,0,0,3,0,0,0,0,0,7,12,163,0,0,6,0,0,0,0,0,72,5,0,0,0,2,0,75,0,0,0,0,462,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,100,0,64,0,0,0,6,12,183,20,108,0,0,0,0,1,0,4,0,0,0,0,0,0,228,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,102,3,0,0,121,0,207,0,0,0,51,3,0,0,0,0,0,0,0,0,0,57,0,0,0,0,8,0,0,0,0,1,112,31,0,0,0,0,0,0,0,0,695,0,0,3,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,4,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,3,0,0,0,0,1,36,74,0,14,9,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,51,2 +55,0,0,5,1,19,26,1,327,2,3,0,0,0,4,0,66,0,9,1,0,0,0,1,0,0,0,0,37,0,1,0,0,1,3,0,20,54,0,0,11,0,2,0,1,0,0,2,0,0,0,0,0,159,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2037,19,151,0,38,0,0,0,0,0,9,0,0,0,0,0,1,4,94,0,1,3,1,0,1,0,0,81,0,2,0,0,4,1,61,0,1,0,0,2186,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,35,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,100,0,76,0,0,0,0,3,47,869,131,0,0,0,0,1,0,0,0,0,0,0,0,0,1955,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,113,597,648,7,0,0,294,0,762,0,1,0,91,49,0,0,0,0,0,0,0,0,0,435,1,0,0,0,2,0,0,0,0,1,118,31,0,0,0,0,0,0,0,0,767,0,0,29,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,1,1,1,0,37,0,0,0,0,9,23,80,0,38,0,0,0,0,0,0,64,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,238,7390,2 +3,0,0,3,0,13,2,0,22,0,4,0,0,0,3,0,30,0,6,1,0,0,0,2,0,0,3,0,0,0,2,0,0,0,3,0,13,30,0,0,14,0,0,0,1,0,0,2,0,0,0,0,1,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,426,13,66,0,1,0,0,0,0,0,11,0,0,0,0,0,2,5,47,0,0,3,0,0,0,0,0,13,0,4,0,0,2,0,41,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,64,0,63,0,0,0,2,7,32,13,81,0,0,0,0,1,0,0,0,0,0,0,0,0,314,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,8,25,97,3,0,0,148,0,243,0,0,0,79,4,0,0,0,0,0,0,0,0,0,67,1,0,0,0,3,0,0,0,0,2,101,47,0,0,0,0,0,0,0,0,65,0,0,48,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,1,0,0,0,0,1,16,125,0,5,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,120,2 +0,0,0,3,0,12,2,0,15,1,3,0,0,0,4,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,10,0,3,0,1,0,0,3,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,4,0,0,7559,12,48,0,1,0,0,0,0,0,13,0,0,0,0,0,1,6,1715,0,0,2,0,0,0,0,0,10,0,3,0,0,2,0,18,0,2,0,0,933,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,86,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,979,0,38,0,0,0,0,3,28,6,1020,0,0,0,0,1,0,0,0,0,0,0,0,0,2995,0,0,0,0,0,0,0,0,0,0,0,0,3,0,87,0,0,0,0,0,0,8,5,86,3,0,0,129,0,194,0,0,0,59,4,0,0,0,0,0,0,169,0,0,44,1,0,0,0,2,0,0,0,0,0,94,46,0,0,0,0,0,0,0,0,454,0,0,2354,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,170,0,0,0,0,333,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,235,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,85,0,0,0,0,1,0,0,2,910,5,2 +0,0,0,6,0,43,11,0,34,1,4,0,0,2,6,0,689,0,7,2,0,0,0,9,0,11,0,0,4,0,1,0,0,0,2,1039,43,27,0,0,30,0,2,0,1,0,0,3,0,0,0,0,1,221,0,0,0,0,0,1,0,0,0,1,0,3,0,0,25199,43,767,0,1,0,0,0,0,0,25,0,0,0,0,0,10,24,4592,0,0,2,0,0,0,0,0,101,5,4,0,0,2,0,719,0,0,0,0,2502,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,3051,0,71,0,0,0,0,3,303,481,3034,0,0,0,0,1,0,5,0,0,0,0,0,0,659,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,35,14,230,6,0,0,247,0,261,0,0,0,75,12,0,0,0,0,0,0,0,0,0,753,1,0,0,0,11,0,0,0,0,0,126,21,0,0,1,0,0,0,0,0,2364,1,0,573,11,0,1,1,0,0,0,0,7,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,0,0,0,0,0,1,45,368,0,2,14,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1147,51,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,206,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,49,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,121,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,40,0,0,0,0,3,30,238,74,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,83,3,0,0,111,0,151,0,0,0,46,0,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,615,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,10,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,22,0,0,0,0,0,1,0,0,0,0,0,3,0,0,167,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,287,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,66,3,0,0,42,0,149,0,0,0,6,2,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,171,2 +3,0,0,5,0,36,6,0,38,0,5,0,0,6,5,0,581,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,2,762,36,6,0,0,45,0,0,0,1,0,0,3,0,0,0,0,1,175,0,1,0,0,0,1,0,0,0,0,0,2,0,0,6044,36,645,0,3,0,0,0,0,0,14,0,0,0,2,0,8,26,1191,0,0,2,0,0,0,0,0,191,20,4,0,0,2,0,620,0,0,2,0,1188,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,396,0,65,0,0,0,1,4,269,358,402,0,0,0,0,1,0,4,0,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,86,24,181,5,0,0,190,0,261,0,0,0,49,2,0,0,0,0,0,0,0,0,0,647,1,0,0,0,9,0,0,0,0,0,120,13,0,0,8,0,0,0,0,0,2217,1,0,77,6,0,1,1,0,0,0,0,14,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,5,0,0,0,0,1,38,25,0,4,12,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,593,30,2 +1,0,0,2,0,8,2,0,6,0,2,0,0,0,2,1,39,0,6,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,13,0,0,0,0,0,1,0,0,0,0,0,1,0,0,36,8,52,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,13,0,0,0,0,2,0,18,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,22,0,34,0,0,0,4,6,31,11,22,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,27,2,0,0,30,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,2,0,0,0,0,3,88,1,0,0,0,0,0,0,0,0,253,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,4,0,0,0,2,11,8,0,0,3,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,3,2 +8,0,0,7,0,45,6,0,37,3,6,0,0,6,9,0,671,0,7,2,0,0,0,8,0,10,0,0,4,0,1,0,0,0,8,898,45,6,0,0,55,0,0,0,1,0,0,4,0,0,0,0,1,207,0,0,0,0,0,1,0,0,0,0,0,7,0,0,7047,45,761,0,2,0,0,0,0,0,28,0,0,0,0,0,9,21,1396,0,0,8,0,0,0,0,0,193,20,7,1,0,2,0,725,0,4,1,0,1805,0,2,0,0,0,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,500,0,70,0,0,0,0,3,292,400,496,0,0,0,0,1,0,4,0,0,0,0,0,0,412,0,0,0,0,2,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,84,23,248,7,0,0,301,0,472,0,0,0,142,13,0,0,0,0,0,0,0,0,0,742,1,0,0,0,10,0,0,0,0,0,128,75,0,0,6,0,0,0,0,0,1942,1,0,122,6,0,1,1,0,0,0,0,4,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,1,0,0,0,0,1,53,304,0,3,12,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,4,618,89,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +14,0,0,4,0,39,22,0,25,0,3,0,0,2,3,0,54,0,7,2,0,0,0,8,0,11,0,0,6,0,1,0,0,0,3,4226,39,6,0,0,25,0,0,0,1,0,0,2,0,0,0,0,1,389,0,0,0,0,0,1,0,0,0,0,0,4,0,0,87576,39,167,0,3,0,0,0,0,0,48,0,0,0,0,0,9,21,15272,0,0,3,0,0,0,0,0,96,5,3,0,0,2,0,111,0,1,0,0,2872,0,4,0,0,2,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,12,12,0,0,0,13112,0,55,0,0,0,0,3,301,289,13103,0,0,0,0,1,0,4,0,0,0,0,0,0,317,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,11,225,4,0,0,289,0,309,0,0,0,126,8,0,0,0,0,0,0,0,0,0,116,1,0,0,0,10,0,0,0,0,1,142,25,0,0,0,0,0,0,0,0,1505,1,0,39,25,0,1,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,25,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,2,0,0,0,0,1,42,92,0,4,14,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1196,33,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,8,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +3,0,0,5,0,34,6,0,36,0,5,0,0,6,5,0,498,0,6,1,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,762,34,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,1,181,0,0,0,0,0,1,0,0,0,0,0,2,0,0,6760,34,554,0,3,0,0,0,0,0,11,0,0,0,0,0,8,24,1340,0,0,1,0,0,0,0,0,190,20,2,0,0,2,0,537,0,0,2,0,1417,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,442,0,48,0,0,0,1,4,263,350,441,0,0,0,0,1,0,4,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,24,169,5,0,0,179,0,259,0,0,0,41,2,0,0,0,0,0,0,0,0,0,562,1,0,0,0,8,0,0,0,0,0,117,11,0,0,8,0,0,0,0,0,2125,1,0,63,6,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,20,0,4,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,596,28,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,207,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,46,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,150,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,174,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,85,3,0,0,111,0,155,0,0,0,46,6,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,10,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,23,0,0,0,0,0,1,0,0,0,0,0,3,0,0,172,12,73,0,9,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,203,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,66,3,0,0,42,0,149,0,0,0,6,5,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,171,2 +2,0,0,3,0,15,2,0,11,4,3,0,0,0,7,0,21,0,6,1,0,0,0,1,0,0,3,0,2,0,1,0,1,0,2,0,15,6,0,0,16,0,22,0,1,0,0,53,0,0,0,0,1,61,0,0,0,0,0,1,0,0,0,0,0,7,0,0,4610,15,259,0,4,0,0,0,0,0,110,0,0,0,0,601,1,107,493,0,0,2,0,0,0,0,0,64,0,53,0,0,2,0,39,0,5,0,0,221,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,599,0,184,0,0,0,2,8,44,13,502,0,0,0,0,1,0,0,0,0,0,0,0,0,2780,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,10,8,98,3,0,0,140,0,427,0,0,0,72,12,0,0,0,0,0,0,0,0,0,50,1,0,0,0,2,0,0,0,0,2,97,6,0,0,0,0,0,0,0,0,768,0,0,410,0,0,1,0,0,0,0,0,104,0,0,0,52,21,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,17,48,0,6,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2278,26,2 +2,0,0,2,0,16,2,0,20,0,4,0,0,0,2,0,16,0,6,3,0,0,0,2,0,0,0,0,0,0,5,0,0,0,2,0,16,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,4,72,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9904,16,74,0,5,0,0,0,0,0,23,0,0,0,2,0,4,11,1321,0,0,2,0,0,0,0,0,21,0,9,0,0,2,0,20,0,0,0,0,201,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,950,0,92,0,0,0,8,5,42,13,959,0,0,0,0,1,0,0,0,0,0,0,0,0,3945,0,0,0,0,0,0,0,0,0,0,0,0,5,0,6,0,0,0,0,0,0,10,15,112,2,0,0,147,0,260,0,0,0,65,13,0,0,0,0,0,0,4,0,0,50,1,0,0,0,5,0,0,0,0,1,106,39,0,0,0,0,0,0,0,0,1423,0,0,3304,0,0,1,0,0,0,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,8,0,0,0,4,1,18,126,0,5,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1380,75,2 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,3,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,1,0,0,109,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,10,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,22,0,0,0,0,3,22,4,27,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,72,2,0,0,35,0,33,0,0,0,4,10,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,92,2,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,17,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,230,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,89,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,174,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,178,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,633,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,35,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,18,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,1,0,0,986,11,61,0,1,0,0,0,0,0,18,0,0,0,0,0,1,8,128,0,0,0,0,0,0,0,0,15,0,5,0,0,2,0,14,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,118,0,85,0,0,0,0,3,30,13,134,0,0,0,0,1,0,0,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,8,3,107,2,0,0,248,0,345,0,0,0,181,14,0,0,0,0,0,0,2,0,0,41,1,0,0,0,2,0,0,0,0,0,101,160,0,0,0,0,0,0,0,0,60,0,0,74,0,0,1,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,499,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,206,33,2 +3,0,0,5,0,34,6,0,36,0,5,0,0,6,5,0,497,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,762,34,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,1,171,0,0,0,0,0,1,0,0,0,0,0,2,0,0,6620,34,553,0,3,0,0,0,0,0,11,0,0,0,0,0,8,24,1291,0,0,1,0,0,0,0,0,190,20,2,0,0,2,0,536,0,0,2,0,1472,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,427,0,56,0,0,0,1,4,260,349,427,0,0,0,0,1,0,4,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,24,173,5,0,0,181,0,258,0,0,0,44,10,0,0,0,0,0,0,0,0,0,561,1,0,0,0,9,0,0,0,0,0,117,11,0,0,8,0,0,0,0,0,2100,1,0,68,6,0,1,1,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,20,0,4,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,629,29,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,3,0,0,109,9,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,31,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,8,0,1,0,0,1184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,30,0,0,0,0,3,23,9,46,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,47,3,0,0,35,0,183,0,0,0,5,11,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,3,2 +2,0,0,3,0,13,2,0,11,4,3,0,0,0,7,0,21,0,6,1,0,0,0,1,0,0,3,0,2,0,2,0,1,0,2,0,13,6,0,0,16,0,23,0,1,0,0,53,0,0,0,0,1,61,0,0,0,0,0,1,0,0,0,0,0,7,0,0,4591,13,257,0,4,0,0,0,0,0,109,0,0,0,0,604,1,107,498,0,0,2,0,0,0,0,0,64,0,52,0,0,2,0,39,0,5,0,0,232,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,599,0,182,0,0,0,2,8,36,13,503,0,0,0,0,1,0,0,0,0,0,0,0,0,2764,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,10,8,99,3,0,0,133,0,452,0,0,0,71,9,0,0,0,0,0,0,0,0,0,50,1,0,0,0,2,0,0,0,0,2,95,6,0,0,0,0,0,0,0,0,762,0,0,406,0,0,1,0,0,0,0,0,104,0,0,0,52,22,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,48,0,7,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2190,20,2 +3,0,0,2,0,13,2,0,9,0,2,0,0,0,2,0,16,0,6,1,0,0,0,2,0,0,0,0,0,0,5,0,0,0,1,0,13,6,0,0,7,0,2,0,1,0,0,2,0,0,0,0,4,61,0,0,0,0,0,1,0,0,0,0,0,1,0,0,21675,13,41,0,5,0,0,0,0,0,8,0,0,0,0,0,2,5,162,0,0,1,0,0,0,0,0,10,0,2,0,0,2,0,9,0,0,0,0,10725,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,131,0,74,0,0,0,8,5,33,13,6185,0,0,0,0,1,0,0,0,0,0,0,0,0,5974,0,2016,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,3,99,2,0,0,100,0,229,0,0,0,37,6,0,0,0,0,0,0,4,0,0,37,1,0,0,0,3,0,0,0,0,1,95,25,0,0,0,0,0,0,0,0,647,0,0,90,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,14,73,0,5,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,200,11,2 +0,0,0,5,0,40,41,0,57,2,42,0,0,8,5,0,920,0,6,1,0,0,0,8,0,11,0,0,32,0,1,0,0,0,2,11165,40,6,0,0,49,0,2,0,1,0,0,2,0,0,0,0,1,471,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41868,40,1202,0,31,0,0,0,0,0,82,0,0,0,0,0,8,143,6243,0,0,2,0,0,0,0,0,535,30,3,0,0,2,0,1058,0,0,210,0,4094,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,1913,0,49,0,0,0,16,19,678,7532,1892,0,0,0,0,1,0,3,0,0,0,0,0,0,2624,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,137,139,284,5,0,0,392,0,441,0,0,0,226,9,0,0,0,0,0,0,0,0,0,1079,1,0,0,0,9,0,0,0,0,1,165,43,0,0,277,0,0,0,0,0,4642,1,0,3092,39,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,39,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,78,0,0,0,0,1,42,198,0,32,12,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2313,68,2 +16,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14451,0,0,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6241,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73582,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,28943,0,0,0,0,1,0,0,0,0,0,0,0,0,95829,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,467,3,0,0,91,0,218,0,0,0,25,326,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,32907,2 +19,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14158,0,0,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6234,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73804,0,0,0,0,5,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,71,0,60,0,0,0,0,3,58,61,28358,0,0,0,0,1,0,0,0,0,0,0,0,0,93246,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,455,3,0,0,91,0,221,0,0,0,25,327,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,31580,2 +72,0,0,4,0,29,2,0,8,17,3,0,0,0,22,0,22,0,7,1,0,0,0,1,0,0,0,0,15,0,1,0,0,0,16,0,29,21,0,0,49,0,0,0,1,0,0,3,0,0,0,0,0,67,0,0,0,0,0,1,0,0,0,0,0,21,0,0,3443,29,87,0,16,0,0,0,0,0,13,0,0,0,0,0,1,5,188,0,0,16,0,0,0,0,0,26,0,3,0,0,2,0,65,0,18,0,0,1872,0,0,0,0,15,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,174,0,105,0,0,0,0,3,67,3885,268,0,0,0,0,1,0,0,0,0,0,0,0,0,3131,0,21,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,21,188,4,0,0,153,0,245,0,0,0,87,4,0,0,0,0,0,0,4,0,0,64,1,0,0,0,2,0,0,0,0,1,114,20,0,0,0,0,15,0,30,14,672,0,0,125,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,15,0,0,0,0,1,45,124,0,16,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,3,280,24,2 +3,0,0,5,0,35,6,0,37,0,5,0,0,6,5,0,538,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,762,35,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,1,172,0,0,0,0,0,1,0,0,0,0,0,2,0,0,7233,35,595,0,3,0,0,0,0,0,11,0,0,0,0,0,8,24,1415,0,0,1,0,0,0,0,0,190,20,2,0,0,2,0,577,0,0,2,0,1372,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,572,0,56,0,0,0,1,4,267,351,571,0,0,0,0,1,0,4,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,24,175,5,0,0,182,0,259,0,0,0,41,2,0,0,0,0,0,0,0,0,0,603,1,0,0,0,9,0,0,0,0,0,118,11,0,0,8,0,0,0,0,0,2175,1,0,56,6,0,1,1,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,20,0,4,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,597,29,2 +10,0,0,2,0,8,3,0,7,0,2,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,1,0,0,99,8,23,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,58,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,51,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,41,0,43,0,0,0,0,3,21,6,62,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,3,33,2,0,0,36,0,93,0,0,0,3,1,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,613,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,11,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13987,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6110,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,71268,0,0,0,0,9,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,28015,0,0,0,0,1,0,0,0,0,0,0,0,0,89671,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,431,3,0,0,91,0,213,0,0,0,25,307,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,28388,2 +17,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,37,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5254,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,38755,0,0,0,0,7,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,54,0,0,0,14,17,52,37,36288,0,0,0,0,1,0,0,0,0,0,0,0,0,100886,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,333,3,0,0,75,0,211,0,0,0,12,242,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,615,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,25,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,29387,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,5,2 +236,0,0,3,0,120,3,0,113,2,3,0,0,0,5,0,548,0,6,1,0,0,0,1,0,1,324,0,0,0,108,0,0,0,38,0,120,6,0,0,27,0,0,0,0,0,0,0,0,0,0,0,108,134,0,0,0,0,0,1,0,0,0,0,0,5,0,0,1315,120,1024,0,109,0,0,0,0,0,0,0,0,0,0,0,1,1,56,0,0,38,0,0,0,0,0,437,0,0,0,0,2,0,1987,0,3,0,0,3346,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,19,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,154,0,152,0,0,0,216,465,242,373,166,0,0,0,0,0,0,0,0,0,0,0,0,0,1494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,588,3,0,0,368,0,389,0,0,0,116,45,0,0,0,0,0,0,0,0,0,678,0,0,0,0,2,0,0,0,0,109,202,1,0,0,0,0,0,0,0,0,1118,0,0,36,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,109,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,117,1,1,1,0,108,0,0,0,0,1,158,38,0,433,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,553,2 +0,0,0,5,0,23,6,0,28,3,12,0,0,0,7,0,21,0,7,4,0,0,0,1,0,0,3,0,3,0,4,0,0,0,8,0,23,6,0,0,57,0,0,0,1,0,0,2,0,0,0,0,3,88,0,0,0,0,0,1,0,0,0,0,0,11,0,0,648,23,82,0,7,0,0,0,0,0,7,0,0,0,0,0,4,7,93,0,0,8,0,0,2,20,0,195,35,1,0,0,2,0,130,0,5,0,0,347,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,97,0,77,0,0,0,6,10,54,253,111,0,0,0,0,1,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,1,0,8,8,126,5,0,0,160,0,245,0,0,0,87,7,0,0,0,0,0,0,0,0,0,81,1,0,0,0,5,0,0,0,0,2,105,87,0,0,81,0,0,0,0,0,53,0,0,103,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,12,0,0,0,0,1,31,146,0,10,0,0,0,0,0,0,68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,155,31,2 +17,0,0,3,0,27,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,27,6,0,0,13945,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6029,27,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,61,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,72635,0,0,0,0,6,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,70,0,60,0,0,0,0,3,62,61,27932,0,0,0,0,1,0,0,0,0,0,0,0,0,90680,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,446,3,0,0,94,0,213,0,0,0,25,305,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,109,6,0,0,0,0,0,0,0,0,612,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,31,1,1,1,0,4,0,0,0,0,1,33,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,29391,2 +9,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,32,0,0,0,2,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,11,0,0,69,11,124,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,35,0,0,2,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,70,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,27,377,58,0,0,0,0,1,0,0,0,0,0,0,0,0,177,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,123,0,0,0,22,1,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,604,0,0,30,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,32,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,31,0,0,0,0,1,13,6,0,32,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,3,2 +0,0,0,2,0,14,2,0,17,0,4,0,0,0,2,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,14,6,0,0,6,0,8,0,1,0,0,8,0,1,0,0,0,171,0,2,0,0,0,1,0,0,0,0,0,1,0,0,17479,14,116,0,1,0,0,0,0,0,47,0,0,0,3,0,2,16,3010,0,0,3,0,0,0,0,0,28,0,17,0,0,2,0,19,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2040,0,219,0,0,0,0,3,36,18,2606,0,0,0,0,1,0,0,0,0,0,0,0,0,6672,0,0,0,0,0,0,0,0,0,0,0,0,10,0,6,0,0,0,0,0,0,8,13,130,2,0,0,172,0,309,0,0,0,102,8,0,0,0,0,0,0,186,0,0,45,1,0,0,0,3,0,0,0,0,0,105,55,0,0,0,0,0,0,0,0,1256,0,0,5562,0,0,1,1,1,0,0,0,28,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,174,0,0,0,0,345,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,85,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,17,178,0,1,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,100,0,0,0,0,0,0,0,11,2396,70,2 +10,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,102,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2462,10,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,996,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,1106,0,0,0,0,34,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,382,0,126,0,0,0,0,3,56,19,423,0,0,0,0,1,0,0,0,0,0,0,0,0,1112,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,159,3,0,0,107,0,263,0,0,0,39,5,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,709,0,0,858,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,414,33,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,138,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,171,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,23,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,6,2 +0,0,0,3,0,11,2,0,16,0,3,0,0,0,3,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,34,0,0,0,1,0,0,3,0,0,0,0,0,63,0,0,0,0,0,1,0,0,0,0,0,3,0,0,438,11,47,0,1,0,0,0,0,0,13,0,0,0,0,0,2,6,48,0,0,2,0,0,0,0,0,10,0,6,0,0,2,0,17,0,1,0,0,119,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,60,0,32,0,0,0,0,3,28,5,64,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,84,3,0,0,117,0,130,0,0,0,47,5,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,93,34,0,0,0,0,0,0,0,0,36,0,0,81,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,188,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,23,2 +0,0,0,3,0,12,2,0,14,1,3,0,0,0,4,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,10,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,4,0,0,7698,12,47,0,1,0,0,0,0,0,13,0,0,0,0,0,1,6,1746,0,0,2,0,0,0,0,0,10,0,3,0,0,2,0,17,0,2,0,0,1154,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,95,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,42,0,0,0,0,3,28,6,1042,0,0,0,0,1,0,0,0,0,0,0,0,0,3056,0,0,0,0,0,0,0,0,0,0,0,0,3,0,93,0,0,0,0,0,0,8,5,96,3,0,0,130,0,225,0,0,0,59,7,0,0,0,0,0,0,184,0,0,43,1,0,0,0,2,0,0,0,0,0,96,46,0,0,0,0,0,0,0,0,458,0,0,2439,0,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,186,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,172,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,91,0,0,0,0,1,0,0,2,919,11,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +12,0,0,7,0,43,6,0,37,3,13,0,0,2,11,0,20,0,7,3,0,0,0,6,0,8,0,0,10,0,9,0,0,0,17,0,43,6,0,0,93,0,0,0,1,0,0,2,0,0,0,0,9,129,0,0,0,0,0,1,0,0,0,0,0,12,0,0,898,43,103,0,17,0,0,0,0,0,11,0,0,0,0,0,8,16,142,0,0,17,0,0,2,17,0,262,40,4,0,0,2,0,139,0,6,0,0,708,0,0,0,0,10,2,1,0,0,0,0,1,0,0,0,6,0,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,118,0,62,0,0,0,16,14,209,188,120,0,0,0,0,1,0,3,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,30,197,7,0,0,205,0,339,0,0,0,98,28,0,0,0,0,0,0,0,0,0,96,1,0,0,0,9,0,0,0,0,7,125,67,0,0,73,0,0,0,0,0,114,0,0,69,3,0,1,1,0,0,0,0,3,0,1,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,11,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,24,0,0,0,4,1,60,230,0,18,9,0,0,0,0,0,95,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,174,44,2 +0,0,0,3,0,23,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,23,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,24,0,21,0,0,0,1,0,0,0,0,0,6,0,0,207,23,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,72,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,71,0,50,0,0,0,0,3,62,44,115,0,0,0,0,0,0,0,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,89,3,0,0,86,0,117,0,0,0,29,2,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,105,2,0,0,0,0,0,0,0,0,207,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,0,0,0,4,0,1,29,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,15,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,16,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,36,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,142,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,173,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,27,0,16,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +8,0,0,6,0,38,20,0,83,0,23,0,0,7,4,0,422,0,6,1,0,0,0,8,0,10,0,0,7,0,33,0,0,0,4,3541,38,6,0,0,137,0,1,0,1,0,0,1,0,0,0,0,1,314,0,0,0,0,0,1,0,0,0,0,0,12,0,0,13788,38,611,0,5,0,0,0,0,0,23,0,0,0,0,0,8,71,2592,0,0,4,0,0,1,50,0,680,45,2,0,0,2,0,718,0,0,112,0,2490,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,12,12,12,0,0,0,919,0,64,0,0,0,3,6,296,1073,920,0,0,0,0,1,0,3,0,0,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,16,239,6,0,0,294,0,291,0,0,0,146,5,0,0,0,0,0,0,0,0,0,565,1,0,0,0,9,0,0,0,0,0,134,165,0,0,128,0,0,0,0,0,2405,1,0,112,11,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,11,33,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,45,0,0,0,0,1,42,130,0,38,12,0,0,0,0,0,181,1,0,0,0,0,0,0,0,0,0,0,0,2,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,939,43,2 +8,0,19,7,4,45,40,9,141,0,23,0,1,7,10,0,751,0,8,12,0,2,0,8,1,10,0,0,5,0,33,0,0,2,5,959,48,54,0,0,147,0,1,0,1,0,0,1,0,0,0,0,1,188,0,0,0,0,0,1,0,0,0,0,0,14,0,0,6611,45,1098,0,3,0,0,0,0,0,17,6,0,0,0,0,8,23,1252,0,9,5,2,0,2,50,0,630,40,2,0,0,5,4,1009,0,1,6,0,1299,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,12,12,12,0,0,0,429,6,63,0,0,0,1,4,274,760,434,0,0,0,0,1,0,3,0,0,0,27,1,0,402,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,3294,67,426,11,0,0,497,0,552,0,0,0,166,25,0,0,0,0,0,0,0,0,0,981,1,0,0,0,23,0,0,0,0,0,145,165,0,38,57,0,0,0,0,0,2792,1,0,119,8,0,1,1,1,0,0,0,3,0,1,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,33,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,37,0,0,0,0,25,53,130,0,36,12,0,0,0,0,0,199,4,0,0,0,0,0,0,0,0,0,0,0,5,0,1,7,0,0,0,0,0,0,0,3,0,0,0,93,0,1,722,49,2 +17,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14185,0,0,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5627,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,66,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,70394,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,9,54,69,28431,0,0,0,0,1,0,0,0,0,0,0,0,0,93555,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,378,3,0,0,78,0,226,0,0,0,12,277,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,616,0,0,20,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,32225,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +8,0,0,4,0,15,3,0,17,6,8,0,0,0,9,0,16,0,6,1,0,0,0,1,3,0,0,0,7,0,3,0,0,0,7,0,15,9,15,0,33,0,0,0,1,0,0,0,0,0,0,0,5,54,0,0,0,0,0,1,0,0,0,0,0,11,0,0,191,15,60,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,43,0,0,7,0,0,1,10,0,115,20,0,0,0,2,0,77,0,7,0,0,456,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,51,0,47,0,0,0,10,6,31,117,66,0,0,0,0,1,0,0,0,0,0,0,0,0,152,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,68,4,0,0,68,0,156,0,0,0,38,3,0,0,0,0,0,0,0,0,0,59,0,0,0,0,5,0,0,0,0,1,97,32,0,0,41,0,0,0,0,0,689,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,8,0,0,0,0,1,22,31,0,10,0,0,0,0,0,0,67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,27,2 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1031,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,55,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,610,0,0,0,0,0,11,47,203,0,0,0,0,0,0,0,0,0,0,0,0,0,1565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,14,2,0,0,56,0,82,0,0,0,47,1,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,44,0,0,0,0,0,0,0,0,296,0,0,272,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,115,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1387,3,2 +6,0,0,2,0,13,2,0,19,0,2,0,0,0,2,0,21,0,6,1,0,0,0,1,0,0,3,0,1,0,1,1,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2276,13,85,0,3,0,0,0,0,0,24,0,0,0,0,0,1,9,199,0,0,3,0,0,0,0,0,15,0,10,0,0,2,0,35,0,0,0,0,290,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,176,0,79,0,0,0,2,8,29,17,178,0,0,0,0,1,0,0,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,10,3,115,2,0,0,255,0,435,0,0,0,188,15,0,0,0,0,0,0,2,0,0,52,1,0,0,0,2,0,0,0,0,1,102,154,0,0,0,0,0,0,0,0,652,0,0,194,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,7,0,0,0,0,1,16,449,0,6,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,209,33,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,151,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,53,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,23,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,18,2 +0,0,0,4,0,10,2,0,4,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,6,0,0,3,0,1,0,0,0,0,0,10,6,0,0,6,0,0,0,1,0,0,0,0,0,0,0,6,23,0,0,0,0,0,1,0,0,0,0,0,2,0,0,52,10,25,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,15,0,0,0,0,0,0,0,0,8,0,0,0,0,2,0,13,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,19,0,22,0,0,0,6,7,23,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,5,35,4,0,0,60,0,70,0,0,0,23,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,92,23,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,10,52,0,10,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,3,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,227,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,256,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,2,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,17,0,17,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,19,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,5,2 +10,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,9,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,8,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,164,12,72,0,9,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,37,0,0,0,0,2,0,105,0,1,0,0,188,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,16,32,28,37,54,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,66,3,0,0,42,0,150,0,0,0,6,14,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,9,92,1,0,0,0,0,0,0,0,0,645,0,0,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,11,0,0,0,2,1,14,2,0,24,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,171,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,923,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,468,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,301,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,42,0,0,0,0,3,40,10,52,0,0,0,0,1,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,112,2,0,0,119,0,146,0,0,0,61,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,27,2 +5,0,0,2,0,10,2,0,10,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,10,0,41,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,40,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1080,10,81,0,51,0,0,0,0,0,4,0,0,0,0,0,1,4,485,0,0,2,0,0,0,0,0,17,0,1,0,0,2,0,58,0,0,0,0,176,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,28,0,0,0,80,43,26,26,50,0,0,0,0,1,0,0,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,81,2,0,0,67,0,192,0,0,0,16,7,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,1,90,5,0,0,0,0,0,0,0,0,836,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,401,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,90,0,0,0,80,1,12,50,0,51,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,247,7,2 +19,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,35,0,0,0,0,0,1,0,0,0,0,0,10,0,0,4963,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,38201,0,0,0,0,3,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0,68,0,54,0,0,0,14,17,52,37,32654,0,0,0,0,1,0,0,0,0,0,0,0,0,96903,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,321,3,0,0,75,0,220,0,0,0,12,225,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,614,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,25,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,31102,2 +18,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,1,0,2,0,22,6,0,0,14882,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5196,22,35,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,12,0,1,0,0,2,0,29,0,9,0,0,71135,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,54,0,0,0,0,3,52,61,29825,0,0,0,0,1,0,0,0,0,0,0,0,0,94385,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,367,3,0,0,78,0,226,0,0,0,12,272,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,1,104,5,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,24,1,1,1,0,4,0,0,0,0,1,24,2,0,5,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,34055,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,72,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,90,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,46,2,0,0,44,0,130,0,0,0,5,4,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,3,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,141,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,53,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,49,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,18,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14427,0,0,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6216,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,74455,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,2,0,0,0,0,0,0,69,0,61,0,0,0,0,3,60,61,28895,0,0,0,0,1,0,0,0,0,0,0,0,0,93203,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,449,3,0,0,91,0,216,0,0,0,25,324,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,32,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,30208,2 +2,0,0,2,0,8,2,0,9,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,14,0,0,0,0,0,1,0,0,0,0,0,1,0,0,60,8,30,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,23,0,0,0,0,0,0,0,0,6,0,1,0,0,2,0,7,0,0,0,0,40,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,23,0,18,0,0,0,0,3,21,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,56,2,0,0,61,0,114,0,0,0,8,0,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,88,2,0,0,0,0,0,0,0,0,605,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,9,2 +0,0,0,6,0,32,6,0,35,1,5,0,0,6,4,0,476,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,1,955,32,6,0,0,42,0,0,0,1,0,0,1,0,0,0,0,1,165,0,0,0,0,0,1,0,0,0,0,0,3,0,0,5856,32,531,0,2,0,0,0,0,0,12,0,0,0,0,0,8,17,1160,0,0,1,0,0,0,0,0,186,20,2,0,0,2,0,518,0,0,1,0,1387,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,341,0,33,0,0,0,0,3,247,422,332,0,0,0,0,1,0,3,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,84,19,197,6,0,0,209,0,579,0,0,0,70,15,0,0,0,0,0,0,0,0,0,538,1,0,0,0,9,0,0,0,0,0,115,31,0,0,6,0,0,0,0,0,1462,1,0,50,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,1,0,0,0,0,1,33,217,0,3,12,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,525,44,2 +19,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14370,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5545,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,72492,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,28787,0,0,0,0,1,0,0,0,0,0,0,0,0,89554,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,417,3,0,0,91,0,209,0,0,0,25,301,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,30024,2 +12,0,0,3,1,15,26,1,26,1,3,0,0,0,4,0,58,0,8,2,0,0,0,2,0,9,0,0,0,0,1,0,0,1,2,0,16,51,0,0,14,0,0,0,0,0,0,0,0,0,0,0,9,34,0,0,0,0,0,1,0,0,0,0,0,2,0,0,4761,15,93,0,10,0,0,0,0,0,0,0,0,0,0,0,3,3,1799,0,1,2,1,0,1,0,0,64,0,0,0,0,4,1,25,0,1,0,0,1642,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,932,0,41,0,0,0,9,20,39,2666,954,0,0,0,0,0,0,0,0,0,0,0,0,0,2530,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,14,239,4,0,0,204,0,335,0,1,0,43,17,0,0,0,0,0,0,0,0,0,125,0,0,0,0,4,0,0,0,0,10,109,2,0,0,0,0,0,0,0,0,977,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,1,1,1,0,0,0,0,0,0,9,18,3,0,10,0,0,0,0,0,0,41,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,950,47,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,35,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,140,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,81,3,0,0,78,0,172,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,17,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,6,2 +18,0,0,3,0,22,2,0,4,14,3,0,0,0,17,0,10,0,7,2,0,0,0,1,0,0,0,0,8,0,7,0,1,0,2,0,22,6,0,0,13745,0,0,0,1,0,0,1,0,0,0,0,6,47,0,0,0,0,0,1,0,0,0,0,0,17,0,0,5968,22,49,0,15,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,49,0,15,0,0,70215,0,0,0,0,4,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,12,13,54,108,27527,0,0,0,0,1,0,0,0,0,0,0,0,0,90676,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,18,377,3,0,0,79,0,220,0,0,0,13,281,0,0,0,0,0,0,0,0,0,43,1,0,0,0,3,0,0,0,0,7,104,6,0,0,0,0,0,0,0,0,618,0,0,22,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,7,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,20,0,0,0,0,1,24,2,0,15,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,29860,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14398,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6174,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73895,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,28837,0,0,0,0,1,0,0,0,0,0,0,0,0,94912,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,465,3,0,0,91,0,218,0,0,0,25,337,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,32704,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,0,0,1,0,0,1,0,0,0,0,16,39,0,0,0,0,0,1,0,0,0,0,0,3,0,0,231,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,135,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,182,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,168,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,39,0,17,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +0,0,0,2,0,9,2,0,9,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,943,9,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,444,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,8,0,0,0,0,65,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,20,0,0,0,0,3,26,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,63,2,0,0,86,0,245,0,0,0,30,1,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,91,23,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,93,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,222,34,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +2,0,0,3,0,67,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,11,0,0,0,0,1,0,0,0,54,0,67,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,11,35,0,0,0,0,0,1,0,0,0,0,0,10,0,0,464,67,97,0,12,0,0,0,0,0,0,0,0,0,0,0,1,1,34,0,0,54,0,0,1,47,0,394,35,0,0,0,2,0,237,0,0,0,0,788,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,42,0,92,0,0,0,11,13,82,385,70,0,0,0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,222,3,0,0,213,0,239,0,0,0,168,5,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,12,149,112,0,0,84,0,0,0,0,0,598,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,0,0,0,0,0,1,121,54,0,12,0,0,0,0,0,0,137,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,6,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,4,0,0,140,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,123,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,39,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,173,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,215,5,0,0,229,0,329,0,1,0,55,2,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,28,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,100,16,2 +19,0,0,3,0,13,127,0,316,0,66,0,0,0,2,0,247,0,6,1,0,0,0,1,0,0,138,0,48,0,47,0,0,0,0,0,13,25,0,0,391,0,0,0,1,0,0,1,0,0,0,0,46,132,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2357,13,1062,0,95,0,0,0,0,0,41,0,0,0,0,0,1,3,34,0,0,0,0,0,1,254,0,2152,310,1,0,0,2,0,2033,0,0,0,0,2936,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,53,0,49,0,0,0,92,232,31,1069,58,0,0,0,0,1,0,0,0,0,0,0,0,0,1567,0,1,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,3,319,3,0,0,328,0,254,0,0,0,256,75,0,0,0,0,0,0,0,0,0,764,1,0,0,0,2,0,0,0,0,47,97,620,0,0,715,0,0,0,0,0,724,0,0,57,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,47,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,94,0,0,0,0,1,13,97,0,233,0,0,0,0,0,0,473,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,77,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,27,0,21,0,0,0,1,0,0,0,0,0,6,0,0,204,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,71,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,68,0,49,0,0,0,0,3,57,44,112,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,84,3,0,0,83,0,115,0,0,0,29,5,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,207,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,15,2 +6,0,0,2,0,13,2,0,28,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,2,120,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2257,13,105,0,3,0,0,0,0,0,27,0,0,0,0,0,1,9,336,0,0,3,0,0,0,0,0,17,0,7,0,0,2,0,60,0,0,0,0,304,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,261,0,100,0,0,0,4,9,29,17,264,0,0,0,0,1,0,0,0,0,0,0,0,0,605,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,10,3,141,2,0,0,280,0,337,0,0,0,211,19,0,0,0,0,0,0,10,0,0,66,1,0,0,0,2,0,0,0,0,1,114,159,0,0,0,0,0,0,0,0,703,0,0,305,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,548,0,9,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,325,45,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,987,11,59,0,0,0,0,0,0,0,17,0,0,0,0,0,1,8,131,0,0,0,0,0,0,0,0,15,0,5,0,0,2,0,14,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,119,0,86,0,0,0,0,3,30,13,136,0,0,0,0,1,0,0,0,0,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,8,3,111,2,0,0,247,0,321,0,0,0,180,9,0,0,0,0,0,0,2,0,0,41,1,0,0,0,2,0,0,0,0,0,101,160,0,0,0,0,0,0,0,0,60,0,0,81,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,499,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,211,31,2 +17,0,0,7,0,51,7,0,45,3,6,0,0,6,11,0,750,0,6,3,0,0,0,7,2,10,0,0,11,0,0,0,0,0,14,898,51,6,8,0,82,0,0,0,1,0,0,3,0,0,0,0,4,205,0,0,0,0,0,1,0,0,0,6,0,10,0,0,6989,51,842,0,9,0,0,0,0,0,19,0,0,0,0,0,8,23,1259,0,0,14,0,0,0,0,0,221,20,5,0,0,2,0,808,0,6,3,0,2331,0,0,2,0,17,5,3,0,2,0,0,1,0,0,0,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,401,0,93,0,0,0,7,18,289,451,403,0,0,0,0,1,0,6,0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,1,0,0,3,1,0,0,0,0,0,1,0,84,30,318,7,0,0,337,0,451,0,0,0,182,25,0,0,0,0,0,0,0,0,0,831,1,0,0,0,12,0,0,0,0,4,146,89,0,0,7,0,5,0,0,0,2071,1,0,65,6,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,14,0,0,0,0,1,65,418,0,9,12,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645,87,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,5,2 +17,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14130,0,0,0,1,0,0,1,0,0,0,0,4,55,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5806,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,28,0,0,0,0,2,0,31,0,9,0,0,68945,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,56,0,0,0,8,9,56,69,28321,0,0,0,0,1,0,0,0,0,0,0,0,0,93197,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,381,3,0,0,78,0,227,0,0,0,12,272,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,614,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,28,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,30885,2 +19,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5277,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,38691,0,0,0,0,3,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,54,0,0,0,14,17,52,37,34012,0,0,0,0,1,0,0,0,0,0,0,0,0,97599,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,323,3,0,0,75,0,226,0,0,0,12,222,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,613,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,12,1,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,25,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,29044,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,72,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,621,0,0,0,0,0,11,48,216,0,0,0,0,0,0,0,0,0,0,0,0,0,1599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,15,2,0,0,57,0,85,0,0,0,48,6,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,45,0,0,0,0,0,0,0,0,305,0,0,288,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,115,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1411,6,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,7,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +0,0,0,3,0,11,2,0,16,0,3,0,0,0,3,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,28,0,0,0,1,0,0,2,0,0,0,0,0,58,0,0,0,0,0,1,0,0,0,0,0,3,0,0,325,11,43,0,1,0,0,0,0,0,9,0,0,0,0,0,2,5,33,0,0,2,0,0,0,0,0,9,0,4,0,0,2,0,17,0,1,0,0,144,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,44,0,28,0,0,0,0,3,28,5,52,0,0,0,0,1,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,83,3,0,0,114,0,133,0,0,0,47,5,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,93,34,0,0,0,0,0,0,0,0,32,0,0,46,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,174,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,10,2 +25,0,0,3,0,12,8,0,61,0,19,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,12,6,0,0,107,0,0,0,0,0,0,0,0,0,0,0,2,32,0,0,0,0,0,1,0,0,0,0,0,12,0,0,190,12,110,0,3,0,0,0,0,0,4,0,0,0,0,0,1,1,47,0,0,1,0,0,1,57,0,446,35,0,0,0,2,0,278,0,0,0,0,247,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,53,0,33,0,0,0,4,4,32,373,59,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,59,3,0,0,52,0,156,0,0,0,13,1,0,0,0,0,0,0,0,0,0,108,0,0,0,0,2,0,0,0,0,1,92,136,0,0,73,0,0,0,0,0,604,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,4,0,0,0,2,1,13,1,0,3,0,0,0,0,0,0,151,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,51,2 +2,0,0,0,0,9,5,0,11,0,2,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,1,0,0,19,9,28,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,8,0,0,1,0,0,0,7,0,61,0,0,0,0,2,0,41,0,0,0,0,57,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,17,0,0,0,0,3,22,61,22,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,32,0,0,0,38,0,98,0,0,0,7,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,2,0,0,0,0,0,91,19,0,0,0,0,0,0,0,0,593,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,29,2 +10,0,0,8,0,69,93,0,201,4,38,0,0,6,28,0,1265,0,6,1,0,0,0,11,0,12,12,0,32,0,8,0,0,0,19,11051,69,26,0,0,176,0,4,0,1,0,0,5,1,0,0,0,9,509,0,0,0,0,0,1,0,0,0,6,0,30,0,0,62818,69,1731,0,37,0,0,0,0,0,127,0,0,0,0,0,11,105,8389,0,0,19,0,0,1,23,0,568,60,13,0,0,2,0,1712,0,1,84,0,13933,0,0,0,0,5,0,4,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,10,0,0,0,0,0,0,27,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,60,12,12,12,0,0,0,4767,0,563,0,0,0,29,35,595,5976,4725,0,0,0,0,1,0,6,0,0,0,0,0,0,1618,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,86,36,1779,8,0,0,682,0,1143,0,0,0,414,484,0,0,0,0,0,0,0,0,0,1637,1,0,5,0,12,0,0,0,0,3,189,238,0,0,250,0,0,0,1,0,5498,1,0,1566,27,0,1,2,1,0,0,0,15,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,2,0,0,0,27,369,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,76,1,1,1,0,81,0,0,0,4,1,88,6128,0,50,14,0,1,0,0,0,124,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2498,643,2 +0,0,0,3,0,12,2,0,25,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,19,0,1,0,1,0,0,1,0,0,0,0,0,58,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1932,12,49,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,718,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,15,0,1,0,0,166,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,185,0,24,0,0,0,0,3,26,8,196,0,0,0,0,1,0,0,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,79,3,0,0,113,0,213,0,0,0,51,2,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,0,94,35,0,0,0,0,0,0,0,0,286,0,0,924,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,110,0,1,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,350,19,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,55,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,74,0,0,0,0,0,11,36,194,0,0,0,0,0,0,0,0,0,0,0,0,0,468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,17,2,0,0,58,0,94,0,0,0,49,1,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,46,0,0,0,0,0,0,0,0,295,0,0,260,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,121,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,301,4,2 +30,0,0,2,0,15,14,0,16,0,2,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,13,0,15,0,0,0,4,0,15,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,14,63,0,0,0,0,0,1,0,0,0,0,0,1,0,0,475,15,78,0,28,0,0,0,0,0,7,0,0,0,0,0,1,4,73,0,0,4,0,0,0,0,0,20,0,4,0,0,2,0,65,0,0,0,0,435,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,76,0,43,0,0,0,28,14,46,45,93,0,0,0,0,1,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,31,103,2,0,0,110,0,201,0,0,0,40,11,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,1,97,21,0,0,0,0,0,0,0,0,698,0,0,45,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,15,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,41,0,0,0,0,1,19,79,0,28,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,28,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,5,2 +8,0,0,7,0,42,6,0,28,3,9,0,0,2,10,0,19,0,7,3,0,0,0,6,0,8,0,0,6,0,5,0,0,0,16,0,42,6,0,0,80,0,0,0,1,0,0,3,0,0,0,0,5,124,0,0,0,0,0,1,0,0,0,0,0,10,0,0,969,42,92,0,9,0,0,0,0,0,14,0,0,0,0,0,8,17,168,0,0,16,0,0,1,8,0,167,20,5,0,0,2,0,91,0,5,0,0,670,0,0,0,0,7,1,1,0,0,0,0,1,0,0,0,5,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,134,0,69,0,0,0,8,9,206,101,135,0,0,0,0,1,0,3,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,31,179,7,0,0,204,0,325,0,0,0,100,23,0,0,0,0,0,0,0,0,0,81,1,0,0,0,9,0,0,0,0,4,124,53,0,0,29,0,0,0,0,0,110,0,0,78,3,0,1,1,0,0,0,0,6,0,1,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,12,0,0,0,2,1,58,228,0,10,9,0,0,0,0,0,75,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,3,197,37,2 +9,0,0,7,0,178,25,0,226,4,22,0,0,7,8,0,3647,0,6,1,0,0,0,8,0,10,414,0,16,0,139,0,0,0,53,1116,178,297,0,0,156,0,1,0,1,0,0,1,0,0,0,0,139,407,0,0,0,0,0,1,0,0,0,0,0,7,0,0,33892,178,4436,0,152,0,0,0,0,0,43,0,0,0,0,0,8,126,6783,0,0,53,0,0,0,0,0,328,25,1,0,0,2,0,5486,0,3,63,0,9207,0,0,0,0,40,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,423,12,12,12,0,0,0,1479,0,193,0,0,0,286,470,760,2213,1538,0,0,0,0,1,0,3,0,0,0,0,0,0,1527,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,1073,7,0,0,904,0,721,0,0,0,462,39,0,0,0,0,0,0,0,0,0,3941,1,0,0,0,9,0,0,0,0,2,289,121,0,0,109,0,0,0,0,0,11063,1,0,1114,21,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,21,499,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,180,1,1,1,0,181,0,0,0,0,1,231,184,0,567,12,0,1,0,0,0,532,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2721,681,2 +16,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14281,0,0,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5595,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,68224,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0,69,0,56,0,0,0,8,9,56,69,28625,0,0,0,0,1,0,0,0,0,0,0,0,0,88235,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,12,365,3,0,0,78,0,230,0,0,0,12,269,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,616,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,27492,2 +2,0,0,3,0,47,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,7,0,0,0,0,1,0,0,0,38,0,47,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,7,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,283,47,94,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,38,0,0,1,47,0,386,35,0,0,0,2,0,234,0,0,0,0,542,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,68,0,0,0,7,10,62,355,60,0,0,0,0,0,0,0,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,151,3,0,0,153,0,204,0,0,0,120,3,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,9,129,112,0,0,84,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,0,0,0,0,0,1,85,38,0,8,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,4,2 +8,0,0,3,0,15,2,0,3,0,3,0,0,0,3,0,10,0,6,2,0,0,0,1,0,0,0,0,0,0,1,1,2,0,2,0,15,12,0,0,8,0,0,0,0,0,0,0,0,0,0,0,1,41,0,0,0,0,0,1,0,0,0,0,0,3,0,0,321,15,41,0,2,0,0,0,0,0,10,0,0,0,0,0,2,2,57,0,0,2,0,0,0,0,0,7,0,0,0,0,2,0,8,0,1,0,0,182,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,54,0,46,0,0,0,2,3,37,61,90,0,0,0,0,0,0,0,0,0,6,0,0,0,332,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,107,3,0,0,69,0,110,0,0,0,24,11,0,0,0,0,0,0,0,0,0,27,0,0,0,0,3,0,0,0,0,0,99,3,0,0,0,0,2,0,4,2,32,0,0,34,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,44,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,37,0,0,0,0,1,17,2,0,2,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,25,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +2,0,0,4,0,17,2,0,19,4,3,0,0,0,8,0,16,0,6,1,0,0,0,1,0,0,0,0,5,0,5,0,0,0,5,0,17,6,0,0,24,0,0,0,1,0,0,2,0,0,0,0,4,49,0,0,0,0,0,1,0,0,0,0,0,6,0,0,274,17,58,0,10,0,0,0,0,0,6,0,0,0,0,0,1,4,43,0,0,5,0,0,0,0,0,13,0,3,0,0,2,0,39,0,4,0,0,153,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,58,0,77,0,0,0,8,7,39,36,76,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,8,110,4,0,0,109,0,202,0,0,0,34,3,0,0,0,0,0,0,0,0,0,54,1,0,0,0,2,0,0,0,0,1,99,11,0,0,0,0,0,0,0,0,54,0,0,19,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,13,0,0,0,4,1,22,64,0,10,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,169,42,2 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,34,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,4,2 +3,0,0,5,0,34,6,0,37,0,5,0,0,6,5,0,532,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,762,34,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,1,176,0,0,0,0,0,1,0,0,0,0,0,2,0,0,6631,34,591,0,3,0,0,0,0,0,12,0,0,0,0,0,8,24,1303,0,0,1,0,0,0,0,0,190,20,3,0,0,2,0,571,0,0,2,0,1208,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,464,0,51,0,0,0,1,4,263,351,461,0,0,0,0,1,0,4,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,24,171,5,0,0,181,0,258,0,0,0,45,3,0,0,0,0,0,0,0,0,0,597,1,0,0,0,9,0,0,0,0,0,117,11,0,0,8,0,0,0,0,0,2149,1,0,61,6,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,20,0,4,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,551,30,2 +2,0,0,2,0,8,2,0,9,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,60,8,30,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,23,0,0,0,0,0,0,0,0,6,0,1,0,0,2,0,7,0,0,0,0,28,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,23,0,18,0,0,0,0,3,21,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,56,2,0,0,61,0,113,0,0,0,8,1,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,88,2,0,0,0,0,0,0,0,0,605,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,8,2 +8,0,0,3,0,12,2,0,4,0,2,0,0,0,3,0,13,0,7,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,2,0,12,12,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,2,0,0,87,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,2,0,0,0,0,0,7,0,0,0,0,2,0,14,0,0,0,0,1489,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,27,0,0,0,0,3,30,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,49,3,0,0,50,0,135,0,0,0,12,1,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,94,5,0,0,0,0,2,0,4,2,605,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,14,2,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,5,2 +0,0,0,0,0,11,2,0,15,2,1,0,0,0,4,0,17,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,6,0,1,0,1,0,0,2,1,0,0,0,0,62,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6900,11,50,0,1,0,0,0,0,0,9,0,0,0,0,0,1,6,1550,0,0,0,0,0,0,0,0,8,0,6,0,0,2,0,22,0,0,0,0,613,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,52,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,893,0,32,0,0,0,0,3,28,5,934,0,0,0,0,1,0,0,0,0,0,0,0,0,2279,0,0,0,0,0,0,0,0,0,0,0,0,2,0,53,0,0,0,0,0,0,8,5,78,0,0,0,124,0,242,0,0,0,53,3,0,0,0,0,0,0,71,0,0,46,1,0,2,0,2,0,0,0,0,0,93,43,0,0,0,0,0,0,0,0,429,0,0,2228,0,0,1,1,1,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,139,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,162,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,50,0,0,0,0,0,0,0,1,779,13,2 +16,0,0,3,0,22,2,0,4,19,3,0,0,0,22,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,2,0,22,6,0,0,14439,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,22,0,0,5429,22,46,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,66,0,0,2,0,0,0,0,0,12,0,1,0,0,2,0,51,0,20,0,0,72167,0,0,0,0,6,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0,72,0,62,0,0,0,0,3,56,61,28897,0,0,0,0,1,0,0,0,0,0,0,0,0,89765,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,23,420,3,0,0,79,0,203,0,0,0,13,302,0,0,0,0,0,0,0,0,0,48,1,0,0,0,3,0,0,0,0,1,104,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,4,0,0,0,0,1,24,2,0,5,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,31466,2 +1,0,0,2,0,8,2,0,6,0,2,0,0,0,2,1,39,0,6,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,11,0,0,0,0,0,1,0,0,0,0,0,1,0,0,36,8,52,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,13,0,0,0,0,2,0,18,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,22,0,34,0,0,0,4,6,31,11,22,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,27,2,0,0,30,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,2,0,0,0,0,3,88,1,0,0,0,0,0,0,0,0,253,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,4,0,0,0,2,11,8,0,0,3,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,3,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,915,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,460,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,298,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,114,2,0,0,119,0,144,0,0,0,61,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,28,2 +8,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,33,0,0,0,3,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,11,0,0,69,11,126,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,35,0,0,3,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,65,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,27,378,59,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,124,0,0,0,27,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,604,0,0,32,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,32,0,0,0,0,1,14,7,0,33,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,3,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,1,0,0,0,0,0,2,0,0,49,11,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,24,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,38,0,0,0,8,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,85,20,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,8,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,39,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,138,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,53,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,43,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,18,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,99,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2573,10,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1039,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,743,0,0,0,0,31,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,394,0,127,0,0,0,0,3,56,19,436,0,0,0,0,1,0,0,0,0,0,0,0,0,1136,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,164,3,0,0,107,0,270,0,0,0,39,3,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,730,0,0,879,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,444,31,2 +6,0,0,2,0,14,2,0,18,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2329,14,77,0,3,0,0,0,0,0,24,0,0,0,0,0,1,9,214,0,0,3,0,0,0,0,0,16,0,10,0,0,2,0,18,0,0,0,0,260,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,186,0,81,0,0,0,0,3,33,10,188,0,0,0,0,1,0,0,0,0,0,0,0,0,466,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,10,3,119,2,0,0,258,0,421,0,0,0,188,16,0,0,0,0,0,0,2,0,0,46,1,0,0,0,2,0,0,0,0,1,103,154,0,0,0,0,0,0,0,0,646,0,0,213,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,449,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,222,38,2 +2,0,0,2,0,12,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,2,0,12,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,1,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,9888,12,45,0,2,0,0,0,0,0,10,0,0,0,0,0,1,4,1265,0,0,2,0,0,0,0,0,8,0,3,0,0,2,0,17,0,0,0,0,152,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,889,0,37,0,0,0,1,4,26,16,890,0,0,0,0,1,0,0,0,0,0,0,0,0,3803,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,93,2,0,0,110,0,141,0,0,0,39,3,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,96,25,0,0,0,0,0,0,0,0,863,0,0,3392,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,100,0,2,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1296,42,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,967,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,42,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,68,0,0,0,0,0,7,41,192,0,0,0,0,0,0,0,0,0,0,0,0,0,486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,6,2,0,0,53,0,81,0,0,0,47,1,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,44,0,0,0,0,0,0,0,0,291,0,0,256,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,113,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,297,3,2 +2,0,0,3,0,47,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,7,0,0,0,0,1,0,0,0,38,0,47,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,7,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,292,47,94,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,38,0,0,1,47,0,386,35,0,0,0,2,0,234,0,0,0,0,540,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,68,0,0,0,7,10,62,355,60,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,152,3,0,0,153,0,203,0,0,0,120,1,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,9,129,112,0,0,84,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,0,0,0,0,0,1,85,38,0,8,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,5,2 +9,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,33,0,0,0,3,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,11,0,0,69,11,126,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,35,0,0,3,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,68,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,27,378,59,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,125,0,0,0,27,1,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,604,0,0,32,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,33,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,32,0,0,0,0,1,14,7,0,33,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,3,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,14,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,57,0,0,0,2,10,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,4,2 +1,0,0,3,0,9,2,0,21,0,5,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,18,0,0,0,1,0,0,2,0,0,0,0,0,85,0,0,0,0,0,1,0,0,0,0,0,1,0,0,771,9,56,0,1,0,0,0,0,0,9,0,0,0,0,0,1,4,92,0,0,1,0,0,0,4,0,51,10,2,0,0,2,0,37,0,0,0,0,211,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,48,0,0,0,0,3,23,42,101,0,0,0,0,1,0,0,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,3,124,3,0,0,149,0,157,0,0,0,90,3,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,0,124,54,0,0,23,0,0,0,0,0,648,0,0,176,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,252,0,1,0,0,0,0,0,0,33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,217,20,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14261,0,0,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6374,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,74564,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,28565,0,0,0,0,1,0,0,0,0,0,0,0,0,94362,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,455,3,0,0,91,0,212,0,0,0,25,331,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,615,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,31803,2 +28,0,0,3,0,11,9,0,66,0,20,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,11,6,0,0,117,0,0,0,0,0,0,0,0,0,0,0,2,45,0,0,0,0,0,1,0,0,0,0,0,13,0,0,244,11,125,0,3,0,0,0,0,0,8,0,0,0,0,0,1,1,63,0,0,1,0,0,1,62,0,518,35,0,0,0,2,0,303,0,0,0,0,118,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,38,0,0,0,4,4,28,438,71,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,57,3,0,0,54,0,156,0,0,0,18,4,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2,0,0,0,0,1,91,149,0,0,74,0,0,0,0,0,606,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,12,1,0,3,0,0,0,0,0,0,167,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,77,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +9,0,0,6,0,47,15,0,54,1,11,0,0,7,8,0,773,0,6,2,0,0,0,7,0,10,0,0,8,0,13,0,0,0,6,898,47,6,0,0,55,0,0,0,1,0,0,4,0,0,0,0,13,284,0,0,0,0,0,1,0,0,0,0,0,5,0,0,9170,47,896,0,18,0,0,0,0,0,32,0,0,0,0,0,8,49,1758,0,0,6,0,0,0,0,0,238,25,8,0,0,2,0,852,0,2,26,0,1772,0,0,0,0,6,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,653,0,84,0,0,0,27,12,444,605,620,0,0,0,0,1,0,3,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,108,18,261,6,0,0,291,0,376,0,0,0,107,20,0,0,0,0,0,0,0,0,0,874,1,0,0,0,9,0,0,0,0,2,142,26,0,0,32,0,0,0,0,0,2799,1,0,255,10,0,1,1,0,0,0,0,6,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,10,15,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,38,0,0,0,12,1,53,188,0,19,12,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,756,54,2 +0,0,0,2,0,8,2,0,9,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,958,8,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,457,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,8,0,0,0,0,65,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,19,0,0,0,0,3,22,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,60,2,0,0,83,0,244,0,0,0,30,2,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,90,23,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,95,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,34,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,104,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,207,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,49,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,118,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,40,0,0,0,0,3,30,238,74,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,83,3,0,0,111,0,151,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,615,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,104,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,10,2 +14,0,0,3,1,15,26,1,26,1,3,0,0,0,4,0,58,0,8,2,0,0,0,2,0,11,0,0,0,0,1,0,0,1,2,0,16,51,0,0,14,0,0,0,0,0,0,0,0,0,0,0,11,27,0,0,0,0,0,1,0,0,0,0,0,2,0,0,4771,15,95,0,12,0,0,0,0,0,0,0,0,0,0,0,3,3,1811,0,1,2,1,0,1,0,0,68,0,0,0,0,4,1,27,0,1,0,0,1617,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,936,0,45,0,0,0,11,25,39,2671,958,0,0,0,0,0,0,0,0,0,0,0,0,0,2502,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,14,231,4,0,0,206,0,261,0,1,0,45,13,0,0,0,0,0,0,0,0,0,125,0,0,0,0,4,0,0,0,0,12,111,2,0,0,0,0,0,0,0,0,984,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,1,1,1,0,0,0,0,0,0,9,18,3,0,12,0,0,0,0,0,0,41,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,965,48,2 +11,0,0,4,0,11,2,0,11,0,7,0,0,0,3,0,10,0,6,1,0,0,0,2,0,0,0,0,2,0,1,0,0,0,1,0,11,6,0,0,16,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,5,0,0,174,11,33,0,2,0,0,0,0,0,0,0,0,0,0,0,2,2,66,0,0,1,0,0,1,7,0,74,15,0,0,0,2,0,43,0,1,0,0,103,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,55,0,36,0,0,0,0,3,28,78,71,0,0,0,0,1,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,8,4,44,4,0,0,56,0,142,0,0,0,20,5,0,0,0,0,0,0,0,0,0,39,0,0,0,0,3,0,0,0,0,1,93,28,0,0,33,0,0,0,0,0,33,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,2,0,0,0,0,1,12,41,0,3,0,0,0,0,0,0,58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,99,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,28,0,20,0,0,0,1,0,0,0,0,0,6,0,0,211,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,75,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,68,0,49,0,0,0,0,3,57,44,112,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,86,3,0,0,83,0,113,0,0,0,29,4,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,210,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,15,2 +17,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,13878,0,0,0,1,0,0,1,0,0,0,0,4,52,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5605,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,67985,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,56,0,0,0,8,9,56,69,27835,0,0,0,0,1,0,0,0,0,0,0,0,0,91750,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,374,3,0,0,78,0,222,0,0,0,12,285,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,613,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,30833,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,941,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,491,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,292,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,40,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,110,2,0,0,119,0,135,0,0,0,61,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,360,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,26,2 +0,0,0,5,0,23,6,0,28,3,12,0,0,0,7,0,21,0,7,4,0,0,0,1,0,0,3,0,3,0,4,0,0,0,8,0,23,6,0,0,57,0,0,0,1,0,0,2,0,0,0,0,3,84,0,0,0,0,0,1,0,0,0,0,0,11,0,0,622,23,82,0,7,0,0,0,0,0,7,0,0,0,0,0,4,7,89,0,0,8,0,0,2,20,0,195,35,1,0,0,2,0,130,0,5,0,0,402,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,95,0,77,0,0,0,6,10,54,253,109,0,0,0,0,1,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,1,0,8,8,124,5,0,0,160,0,247,0,0,0,87,6,0,0,0,0,0,0,0,0,0,81,1,0,0,0,5,0,0,0,0,2,105,87,0,0,81,0,0,0,0,0,70,0,0,96,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,12,0,0,0,0,1,31,146,0,10,0,0,0,0,0,0,68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,151,33,2 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,40,0,0,0,0,0,1,0,0,0,0,0,3,0,0,226,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,86,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,129,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,68,0,50,0,0,0,32,19,33,18,83,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,31,0,17,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,18,2 +30,0,0,2,0,19,2,0,5,0,2,0,0,0,2,0,10,0,6,1,0,0,0,1,0,8,1,0,0,0,1,0,0,0,11,0,19,6,0,0,7,0,0,0,1,0,0,0,0,0,0,0,9,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1458,19,37,0,10,0,0,0,0,0,4,0,0,0,0,0,1,1,817,0,0,11,0,0,0,0,0,5,0,0,0,0,2,0,16,0,0,0,0,183,0,0,0,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,441,0,38,0,0,0,9,12,42,24,455,0,0,0,0,1,0,0,0,0,0,0,0,0,276,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,81,2,0,0,98,0,159,0,0,0,59,6,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,101,30,0,0,0,0,0,0,0,0,601,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,0,0,0,0,0,1,30,68,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,230,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,53,0,0,0,0,0,1,0,0,0,0,0,4,0,0,133,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,188,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,39,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,175,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,215,5,0,0,229,0,328,0,1,0,55,1,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,32,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,100,15,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,4,0,27,3,0,42,23,3,0,0,0,28,0,82,0,6,12,0,0,0,1,0,2,68,0,0,0,1,0,0,0,16,0,27,6,0,2,62,0,5,0,1,0,0,6,1,0,0,0,2,147,0,1,0,0,0,1,0,0,0,0,0,28,0,0,4272,27,300,0,1,0,0,0,10,0,31,0,0,0,0,0,12,19,672,0,0,16,0,0,0,0,0,34,0,13,0,0,2,0,325,0,26,0,0,943,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,1,0,60,0,0,0,0,0,0,236,0,108,0,0,0,0,56,57,19,231,0,0,0,0,1,0,0,0,0,0,0,0,0,966,0,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,2,0,8,45,283,4,0,0,302,0,231,0,0,0,230,42,0,0,0,0,0,0,0,0,0,164,1,0,4,0,13,0,0,0,0,0,134,135,0,0,0,0,0,0,0,0,400,0,0,940,0,0,1,0,1,0,0,0,16,0,1,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,10,10,0,0,0,2,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,3,0,0,0,0,1,43,658,0,71,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,0,0,0,0,0,0,0,0,2,497,66,2 +4,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,4,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,28618,12,32,0,5,0,0,0,0,0,6,0,0,0,0,0,1,3,31,0,0,1,0,0,0,0,0,6,0,0,0,0,2,0,10,0,0,0,0,10962,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,41,0,1449,0,0,0,8,6,29,24,5923,0,0,0,0,1,0,0,0,0,0,0,0,0,9140,0,1955,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,102,2,0,0,89,0,198,0,0,0,49,9,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,1,95,41,0,0,0,0,0,0,0,0,24,0,0,12,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,6,1,13,113,0,5,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2897,62,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,919,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,464,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,282,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,112,2,0,0,119,0,145,0,0,0,61,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,27,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,171,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,29,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,184,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,65,3,0,0,42,0,150,0,0,0,6,5,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,646,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,171,2 +61,0,0,21,7,101,96,8,759,52,230,0,0,0,77,0,225,0,9,13,0,10,4,20,1,4,63,0,21,0,19,3,0,7,61,0,109,97,6,0,1344,0,0,0,1,0,0,3,0,0,0,0,25,333,0,0,0,0,0,1,0,0,0,125,0,143,0,0,12419,101,1834,0,43,0,0,0,0,0,14,18,0,0,0,0,21,26,2999,0,8,61,7,0,5,611,0,5002,705,3,0,0,4,7,3321,0,66,1,0,3994,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,24,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,2,0,12,0,34,0,0,0,0,0,0,13,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,88,0,1,0,0,0,0,0,0,0,0,3,1,0,0,0,2,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,68,2,2,2,0,0,2,2385,2,304,0,0,0,46,136,253,24489,2669,0,0,0,0,1,0,0,0,0,0,1,1,0,5130,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,2,0,115,185,882,32,0,0,818,0,1512,0,1,0,404,157,0,0,0,0,0,0,4,0,0,1396,1,0,0,0,48,0,0,0,0,23,225,1380,0,0,2432,0,4,0,0,0,1057,0,0,1866,0,0,1,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,53,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,30,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,1,123,1,1,1,0,109,0,0,0,0,106,171,242,0,110,0,0,0,0,0,0,1454,18,0,0,0,0,0,0,0,0,0,0,0,8,0,1,60,0,0,0,0,0,0,0,0,0,0,0,10,0,4,1394,1553,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,48,11,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,23,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,38,0,0,0,8,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,89,20,2 +17,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,0,0,4,0,1,0,2,0,22,6,0,0,14230,0,0,0,1,0,0,1,0,0,0,0,4,52,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5596,22,35,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,24,0,1,0,0,2,0,29,0,9,0,0,69693,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,56,0,0,0,8,11,56,69,28521,0,0,0,0,1,0,0,0,0,0,0,0,0,94691,0,2,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,382,3,0,0,78,0,232,0,0,0,12,286,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,610,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,8,0,0,0,8,1,24,2,0,4,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,32061,2 +8,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,33,0,0,0,2,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,11,0,0,68,11,125,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,34,0,0,2,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,68,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,34,0,0,0,0,3,27,378,58,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,123,0,0,0,22,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,603,0,0,31,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,32,0,0,0,0,1,13,6,0,33,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,3,2 +5,0,0,3,0,17,25,0,144,0,34,0,0,0,2,0,17,0,7,2,0,0,0,1,0,0,0,0,5,0,1,0,0,0,3,0,17,6,0,0,267,0,0,0,1,0,0,3,0,0,0,0,0,82,0,0,0,0,0,1,0,0,0,0,0,28,0,0,860,17,243,0,6,0,0,0,0,0,14,0,0,0,0,0,2,6,163,0,0,3,0,0,1,136,0,1040,30,6,0,0,2,0,680,0,0,0,0,215,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,142,0,78,0,0,0,0,3,38,889,157,0,0,0,0,1,0,0,0,0,0,0,0,0,501,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,103,3,0,0,138,0,238,0,0,0,68,8,0,0,0,0,0,0,4,0,0,229,1,0,0,0,3,0,0,0,0,1,99,365,0,0,62,0,0,0,0,0,652,0,0,134,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,5,0,0,0,0,1,20,156,0,6,0,0,0,0,0,0,355,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,216,18,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,12,0,0,0,0,3,21,3,21,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,22,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,2 +0,0,0,2,0,13,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,13,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,59,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9696,13,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1263,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,882,0,50,0,0,0,0,3,35,8,899,0,0,0,0,1,0,0,0,0,0,0,0,0,3867,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,93,2,0,0,115,0,111,0,0,0,46,9,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,97,27,0,0,0,0,0,0,0,0,838,0,0,3309,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,16,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1308,22,2 +9,0,0,5,38,125,17,58,278,9,104,0,0,2,14,1,1128,0,7,28,0,16,10,20,14,11,3,0,5,0,2,0,1,37,85,3455,149,6,72,0,224,0,0,0,1,0,0,5,0,0,0,0,2,711,0,0,0,0,0,1,0,0,0,0,0,32,0,0,73051,125,4023,0,3,0,0,0,0,0,50,132,0,0,0,0,23,39,12090,0,58,85,37,0,1,99,0,1646,100,10,0,0,2,38,1542,0,12,0,0,3348,0,0,0,0,0,5,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,117,19,19,19,0,0,7,10824,7,303,0,0,44,2,8,519,1149,10946,0,0,0,0,1,0,4,0,0,0,0,0,0,2052,0,98,0,0,0,3,0,0,0,0,0,0,5,1,3,0,0,0,0,1,0,44,30,933,43,0,0,969,0,882,0,0,0,514,39,0,0,0,0,0,0,4,0,0,1551,1,0,0,0,88,0,0,0,0,1,218,293,0,0,270,0,0,0,0,0,6340,1,0,1081,16,0,1,2,0,0,0,0,9,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,42,42,0,0,9,0,0,0,1,0,16,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,142,1,1,1,0,7,0,0,0,0,327,234,429,22,7,14,0,0,0,0,0,561,9,0,0,0,0,0,0,0,0,0,0,0,26,0,1,13,0,0,0,0,0,0,0,0,0,0,0,60,0,3,1337,116,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,63,0,1,0,0,0,1,0,0,0,0,0,1,0,0,8863,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1075,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,813,0,49,0,0,0,0,3,27,8,830,0,0,0,0,1,0,0,0,0,0,0,0,0,3182,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,92,2,0,0,111,0,108,0,0,0,48,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,28,0,0,0,0,0,0,0,0,773,0,0,3039,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,99,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1116,23,2 +63,0,0,5,0,49,6,0,27,13,3,0,0,2,18,0,553,0,7,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,15,898,49,21,0,0,57,0,0,0,1,0,0,5,0,0,0,0,1,168,0,0,0,0,0,1,0,0,0,0,0,18,0,0,20311,49,639,0,1,0,0,0,0,0,27,0,0,0,0,0,8,21,3166,0,0,15,0,0,0,0,0,94,5,6,0,0,2,0,586,0,14,0,0,2582,0,0,0,0,13,15,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,2581,0,128,0,0,0,0,3,260,3719,2635,0,0,0,0,1,0,3,0,0,0,0,0,0,2885,0,14,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,34,24,292,5,0,0,272,0,385,0,0,0,126,19,0,0,0,0,0,0,4,0,0,616,1,0,0,0,9,0,0,0,0,1,136,27,0,0,0,0,13,0,25,13,2085,1,0,180,6,0,1,1,0,0,0,0,11,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,0,0,0,0,0,1,64,142,0,2,12,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,5,646,53,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,973,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,518,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,306,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,41,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,112,2,0,0,119,0,135,0,0,0,61,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,27,2 +5,0,0,2,0,10,2,0,11,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,10,0,41,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,40,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1045,10,81,0,51,0,0,0,0,0,4,0,0,0,0,0,1,4,455,0,0,2,0,0,0,0,0,17,0,1,0,0,2,0,58,0,0,0,0,168,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,26,0,0,0,80,43,26,26,50,0,0,0,0,1,0,0,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,81,2,0,0,67,0,192,0,0,0,16,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,1,90,5,0,0,0,0,0,0,0,0,834,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,401,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,90,0,0,0,80,1,12,50,0,51,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,242,7,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14004,0,0,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6402,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,72714,0,0,0,0,5,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,28049,0,0,0,0,1,0,0,0,0,0,0,0,0,92742,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,449,3,0,0,91,0,213,0,0,0,25,313,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,31005,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,16,0,7,1,0,0,0,1,0,0,0,0,22,0,105,0,0,0,0,0,10,6,0,0,123,0,3,0,1,0,0,4,0,0,0,0,104,80,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1704,10,175,0,127,0,0,0,0,0,12,0,0,0,0,0,1,8,594,0,0,0,0,0,0,0,0,450,0,3,0,0,2,0,141,0,0,0,0,457,0,0,0,0,33,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,130,0,118,0,0,0,208,211,53,278,164,0,0,0,0,1,0,0,0,0,0,0,0,0,404,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,154,3,0,0,85,0,212,0,0,0,18,13,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,105,92,11,0,0,0,0,4,0,0,0,921,0,0,864,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,465,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,230,0,0,0,208,1,10,103,0,127,0,0,1,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,527,20,2 +0,0,0,2,0,12,2,0,17,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,57,0,1,0,0,0,1,0,0,0,0,0,1,0,0,10005,12,52,0,1,0,0,0,0,0,14,0,0,0,2,0,1,6,1301,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,16,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,906,0,51,0,0,0,0,3,31,8,923,0,0,0,0,1,0,0,0,0,0,0,0,0,3987,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,95,2,0,0,116,0,110,0,0,0,48,4,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,96,29,0,0,0,0,0,0,0,0,863,0,0,3406,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,102,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1343,21,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,171,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,29,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,198,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,65,3,0,0,42,0,150,0,0,0,6,4,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,647,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,171,2 +7,0,0,3,0,29,5,0,11,0,2,0,0,2,2,0,23,0,6,2,0,0,0,6,0,8,6,0,2,0,3,0,0,0,5,0,29,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,3,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,647,29,47,0,3,0,0,0,0,0,3,0,0,0,0,0,7,12,150,0,0,5,0,0,0,0,0,72,5,0,0,0,2,0,58,0,0,0,0,492,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,91,0,56,0,0,0,4,10,182,16,95,0,0,0,0,1,0,3,0,0,0,0,0,0,199,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,99,3,0,0,112,0,202,0,0,0,42,4,0,0,0,0,0,0,0,0,0,51,0,0,0,0,8,0,0,0,0,1,111,25,0,0,0,0,0,0,0,0,683,0,0,2,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,3,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,2,0,0,0,0,1,34,69,0,10,9,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,40,2 +0,0,0,2,0,11,2,0,17,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,64,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9640,11,52,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1247,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,16,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,876,0,47,0,0,0,0,3,27,8,893,0,0,0,0,1,0,0,0,0,0,0,0,0,3760,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,86,2,0,0,115,0,111,0,0,0,50,2,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,95,31,0,0,0,0,0,0,0,0,836,0,0,3292,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,115,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1287,22,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,72,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,93,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,46,2,0,0,44,0,133,0,0,0,5,4,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,3,2 +12,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,3,0,0,309,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,26,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,202,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,36,0,0,0,8,11,29,400,139,0,0,0,0,1,0,0,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,55,3,0,0,62,0,133,0,0,0,29,4,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,25,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,8,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,2,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +3,0,0,5,0,35,6,0,38,0,5,0,0,6,5,0,572,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,762,35,6,0,0,46,0,0,0,1,0,0,2,0,0,0,0,1,186,0,0,0,0,0,1,0,0,0,0,0,2,0,0,7604,35,634,0,3,0,0,0,0,0,13,0,0,0,0,0,8,24,1453,0,0,1,0,0,0,0,0,190,20,4,0,0,2,0,611,0,0,2,0,1356,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,595,0,73,0,0,0,1,4,267,354,594,0,0,0,0,1,0,4,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,26,179,5,0,0,192,0,264,0,0,0,51,6,0,0,0,0,0,0,0,0,0,638,1,0,0,0,9,0,0,0,0,0,120,17,0,0,8,0,0,0,0,0,2242,1,0,81,6,0,1,1,0,0,0,0,13,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,32,0,4,12,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,32,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,97,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2625,10,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1037,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,412,0,0,0,0,35,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,399,0,124,0,0,0,0,3,55,19,441,0,0,0,0,1,0,0,0,0,0,0,0,0,1149,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,153,3,0,0,107,0,289,0,0,0,39,9,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,722,0,0,895,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,431,33,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,153,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,52,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,175,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,79,3,0,0,78,0,171,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,19,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,6,2 +18,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14181,0,0,0,1,0,0,1,0,0,0,0,4,55,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5808,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,60,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,70349,0,0,0,0,2,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,9,54,69,28423,0,0,0,0,1,0,0,0,0,0,0,0,0,94233,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,387,3,0,0,78,0,219,0,0,0,12,272,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,611,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,32383,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +11,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,51,0,0,0,0,0,1,0,0,0,0,0,3,0,0,328,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,31,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,218,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,42,0,0,0,8,11,29,400,145,0,0,0,0,1,0,0,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,52,3,0,0,62,0,135,0,0,0,29,5,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,26,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,10,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,5,2 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 +0,0,0,3,0,11,2,0,16,0,3,0,0,0,3,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,34,0,0,0,1,0,0,3,0,0,0,0,0,63,0,0,0,0,0,1,0,0,0,0,0,3,0,0,439,11,47,0,1,0,0,0,0,0,13,0,0,0,0,0,2,6,48,0,0,2,0,0,0,0,0,10,0,6,0,0,2,0,17,0,1,0,0,148,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,60,0,32,0,0,0,0,3,28,5,64,0,0,0,0,1,0,0,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,83,3,0,0,117,0,132,0,0,0,47,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,93,34,0,0,0,0,0,0,0,0,36,0,0,82,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,188,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,23,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,58,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +6,0,0,2,0,14,2,0,20,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,2,77,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2333,14,93,0,3,0,0,0,0,0,24,0,0,0,0,0,1,9,213,0,0,3,0,0,0,0,0,14,0,10,0,0,2,0,52,0,0,0,0,278,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,186,0,80,0,0,0,4,9,33,12,188,0,0,0,0,1,0,0,0,0,0,0,0,0,466,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,10,3,121,2,0,0,258,0,423,0,0,0,188,17,0,0,0,0,0,0,2,0,0,58,1,0,0,0,2,0,0,0,0,1,103,154,0,0,0,0,0,0,0,0,660,0,0,215,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,449,0,9,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,215,37,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +8,0,0,6,0,37,16,0,108,0,19,0,0,6,4,0,1352,0,6,1,0,0,0,8,0,10,0,0,5,0,33,0,0,0,4,276,37,6,0,0,135,0,1,0,1,0,0,1,0,0,0,0,1,173,0,0,0,0,0,1,0,0,0,0,0,12,0,0,116498,37,1545,0,3,0,0,0,0,0,16,0,0,0,0,0,8,23,28107,0,0,4,0,0,1,50,0,588,40,2,0,0,2,0,1637,0,0,6,0,1542,0,0,0,0,4,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,12,12,12,0,0,0,18168,0,54,0,0,0,1,4,268,576,18170,0,0,0,0,1,0,3,0,0,0,0,0,0,335,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,86,16,193,6,0,0,243,0,301,0,0,0,109,5,0,0,0,0,0,0,0,0,0,1511,1,0,0,0,9,0,0,0,0,0,124,165,0,0,57,0,0,0,0,0,3937,1,0,108,8,0,1,1,1,0,0,0,3,0,1,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,8,33,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,37,0,0,0,0,1,41,127,0,36,12,0,0,0,0,0,178,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,656,44,2 +16,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,23,0,0,0,0,0,0,0,0,0,0,0,4,18,0,0,0,0,0,1,0,0,0,0,0,1,0,0,86,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,29,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,1280,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,42,0,0,0,8,5,28,19,53,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,39,47,2,0,0,44,0,138,0,0,0,5,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,597,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,3,2 +11,0,0,3,0,10,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,3,0,0,0,0,0,57,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1250,10,71,0,24,0,0,0,0,0,12,0,0,0,0,0,1,8,585,0,0,0,0,0,0,0,0,35,0,3,0,0,2,0,37,0,0,0,0,180,0,0,0,0,34,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,128,0,120,0,0,0,0,3,55,17,168,0,0,0,0,1,0,0,0,0,0,0,0,0,411,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,73,3,0,0,83,0,174,0,0,0,16,3,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,90,11,0,0,0,0,4,0,0,0,864,0,0,760,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,23,0,0,0,0,1,10,103,0,24,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,535,11,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,4,1,12,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,13,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1,0,0,0,0,0,2,0,0,49,12,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,24,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,25,0,29,0,0,0,0,3,32,6,46,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,41,5,0,0,46,0,39,0,0,0,8,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,92,2,0,0,0,0,4,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,88,20,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,24,0,1,0,0,0,0,0,11,6,0,0,75,0,0,0,0,0,0,4,0,0,0,0,0,89,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1843,11,78,0,25,0,0,0,0,0,14,0,0,0,0,0,1,7,663,0,0,0,0,0,0,0,0,36,0,4,0,0,2,0,39,0,0,0,0,402,0,0,0,0,34,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,386,0,121,0,0,0,0,3,60,19,428,0,0,0,0,1,0,0,0,0,0,0,0,0,1083,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,160,3,0,0,109,0,280,0,0,0,39,5,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,720,0,0,167,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,24,0,0,0,0,1,11,170,0,25,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,424,34,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,21,0,1,0,0,0,0,0,10,6,0,0,69,0,3,0,1,0,0,4,0,0,0,0,0,96,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2562,10,78,0,22,0,0,0,0,0,16,0,0,0,0,0,1,10,1018,0,0,0,0,0,0,0,0,34,0,4,0,0,2,0,36,0,0,0,0,414,0,0,0,0,29,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,389,0,119,0,0,0,0,3,53,19,430,0,0,0,0,1,0,0,0,0,0,0,0,0,1128,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,160,3,0,0,107,0,243,0,0,0,39,3,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,716,0,0,886,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,21,0,0,0,0,1,10,170,0,22,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,413,19,2 +9,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,12,0,0,0,0,29,0,0,0,2,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,12,39,0,0,0,0,0,1,0,0,0,0,0,11,0,0,70,11,133,0,12,0,0,0,0,0,1,0,0,0,0,0,1,1,36,0,0,2,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,62,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,27,374,58,0,0,0,0,1,0,0,0,0,0,0,0,0,183,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,125,0,0,0,22,1,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,605,0,0,28,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,29,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,52,0,0,0,0,1,13,6,0,41,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,3,2 +9,0,0,6,0,48,14,0,54,1,11,0,0,7,8,0,791,0,6,2,0,0,0,7,0,10,0,0,8,0,13,0,0,0,6,898,48,6,0,0,55,0,0,0,1,0,0,4,0,0,0,0,13,278,0,0,0,0,0,1,0,0,0,0,0,5,0,0,9273,48,912,0,18,0,0,0,0,0,31,0,0,0,0,0,8,49,1785,0,0,6,0,0,0,0,0,241,25,7,0,0,2,0,870,0,2,30,0,2081,0,0,0,0,6,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,624,0,85,0,0,0,27,12,455,613,593,0,0,0,0,1,0,3,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,108,18,261,6,0,0,290,0,380,0,0,0,105,16,0,0,0,0,0,0,0,0,0,891,1,0,0,0,9,0,0,0,0,2,143,26,0,0,34,0,0,0,0,0,2876,1,0,177,10,0,1,1,0,0,0,0,6,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,10,15,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,38,0,0,0,12,1,54,187,0,19,12,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,797,57,2 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,55,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,75,0,0,0,0,0,7,56,217,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,7,2,0,0,53,0,86,0,0,0,47,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,44,0,0,0,0,0,0,0,0,299,0,0,272,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,115,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,317,4,2 +11,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,46,0,0,0,0,0,1,0,0,0,0,0,3,0,0,303,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,25,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,208,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,37,0,0,0,8,11,28,397,48,0,0,0,0,1,0,0,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,54,3,0,0,62,0,141,0,0,0,29,1,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,24,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,5,2 +11,0,0,3,0,12,97,0,114,0,9,0,0,0,2,0,13,0,6,1,0,0,0,1,2,0,0,0,4,0,3,0,0,0,3,0,12,6,10,0,214,0,0,0,1,0,0,0,0,0,0,0,4,68,0,0,0,0,0,1,0,0,0,0,0,3,0,0,429,12,246,0,7,0,0,0,0,0,1,0,0,0,0,0,1,1,25,0,0,3,0,0,1,110,0,837,30,0,0,0,2,0,553,0,0,0,0,295,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,39,0,0,0,8,19,29,775,49,0,0,0,0,1,0,0,0,0,0,0,0,0,535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,80,3,0,0,150,0,164,0,0,0,117,8,0,0,0,0,0,0,0,0,0,241,0,0,0,0,4,0,0,0,0,5,96,224,0,0,98,0,0,0,0,0,73,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,10,0,0,0,0,1,15,19,0,7,0,0,0,0,0,0,256,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,12,2 +3,0,0,5,0,35,6,0,37,0,5,0,0,6,5,0,545,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,762,35,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,1,175,0,0,0,0,0,1,0,0,0,0,0,2,0,0,6668,35,604,0,3,0,0,0,0,0,12,0,0,0,0,0,8,24,1342,0,0,1,0,0,0,0,0,190,20,3,0,0,2,0,584,0,0,2,0,1229,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,448,0,58,0,0,0,1,4,267,351,445,0,0,0,0,1,0,4,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,24,174,5,0,0,183,0,260,0,0,0,42,2,0,0,0,0,0,0,0,0,0,610,1,0,0,0,9,0,0,0,0,0,118,11,0,0,8,0,0,0,0,0,2205,1,0,61,6,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,20,0,4,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,605,30,2 +13,0,0,5,0,15,2,0,20,0,3,0,0,0,4,0,24,0,7,1,0,0,0,2,0,0,8,0,4,0,7,0,0,0,6,0,15,6,0,0,42,0,0,0,1,0,0,3,0,0,0,0,6,64,0,0,0,0,0,1,0,0,0,8,0,4,0,0,477,15,80,0,11,0,0,0,0,0,13,0,0,0,0,0,2,6,42,0,0,6,0,0,0,0,0,38,0,6,0,0,2,0,61,0,2,0,0,323,0,0,0,0,2,4,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,6,0,0,0,0,0,0,64,0,41,0,0,0,12,21,32,32,65,0,0,0,0,1,0,3,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,8,7,118,6,0,0,134,0,274,0,0,0,61,6,0,0,0,0,0,0,0,0,0,60,1,0,0,0,3,0,0,0,0,7,97,35,0,0,0,0,0,0,0,0,59,0,0,69,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,16,0,0,0,12,1,21,193,0,19,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,143,2 +28,0,0,3,0,11,9,0,66,0,20,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,11,6,0,0,117,0,0,0,0,0,0,0,0,0,0,0,2,45,0,0,0,0,0,1,0,0,0,0,0,13,0,0,245,11,125,0,3,0,0,0,0,0,8,0,0,0,0,0,1,1,63,0,0,1,0,0,1,62,0,518,35,0,0,0,2,0,303,0,0,0,0,521,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,38,0,0,0,4,4,28,438,71,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,57,3,0,0,54,0,170,0,0,0,18,5,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2,0,0,0,0,1,91,149,0,0,74,0,0,0,0,0,606,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,12,1,0,3,0,0,0,0,0,0,167,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,77,2 +17,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,35,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5051,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,39463,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,53,0,0,0,14,17,50,37,33364,0,0,0,0,1,0,0,0,0,0,0,0,0,97162,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,323,3,0,0,75,0,261,0,0,0,12,217,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,614,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,23,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,30690,2 +8,0,0,2,0,15,14,0,16,0,2,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,4,0,15,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,4,59,0,0,0,0,0,1,0,0,0,0,0,1,0,0,337,15,55,0,5,0,0,0,0,0,7,0,0,0,0,0,1,4,48,0,0,4,0,0,0,0,0,7,0,4,0,0,2,0,42,0,0,0,0,368,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,42,0,0,0,8,5,34,19,79,0,0,0,0,1,0,0,0,0,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,31,99,2,0,0,110,0,201,0,0,0,40,12,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,1,97,21,0,0,0,0,0,0,0,0,632,0,0,33,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,8,0,0,0,4,1,19,79,0,5,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,13,2 +6,0,0,2,0,13,2,0,20,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,8,0,0,0,0,0,161,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1860,13,93,0,3,0,0,0,0,0,32,0,0,0,0,0,1,13,291,0,0,3,0,0,0,0,0,22,0,12,0,0,2,0,20,0,0,0,0,410,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,252,0,112,0,0,0,0,3,29,20,258,0,0,0,0,1,0,0,0,0,0,0,0,0,561,0,0,0,0,0,0,0,0,0,0,0,0,8,0,2,0,0,0,0,0,0,10,3,128,2,0,0,249,0,420,0,0,0,180,18,0,0,0,0,0,0,6,0,0,48,1,0,0,0,2,0,0,0,0,1,107,139,0,0,0,0,0,0,0,0,666,0,0,228,0,0,1,0,0,0,0,0,15,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,553,0,3,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,309,54,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +2,0,0,4,0,12,2,0,11,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,4,0,12,6,0,0,11,0,2,0,1,0,0,3,0,0,0,0,0,57,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1108,12,47,0,4,0,0,0,0,0,11,0,0,0,0,1,1,7,497,0,0,4,0,0,0,0,0,13,0,4,0,0,2,0,12,0,0,0,0,197,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,41,0,0,0,0,3,27,15,73,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,80,4,0,0,88,0,173,0,0,0,34,4,0,0,0,0,0,0,0,0,0,39,1,0,0,0,2,0,0,0,0,1,94,13,0,0,0,0,3,0,0,0,797,0,0,756,0,0,1,0,1,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,77,0,4,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,275,18,2 +10,0,0,2,0,8,3,0,7,0,2,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,1,0,0,67,8,23,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,37,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,48,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,30,0,32,0,0,0,0,3,21,6,51,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,33,2,0,0,36,0,86,0,0,0,3,1,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,603,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,11,2 +8,0,0,6,0,37,16,0,109,0,19,0,0,6,4,0,1350,0,6,1,0,0,0,8,0,10,0,0,5,0,33,0,0,0,4,95,37,6,0,0,135,0,1,0,1,0,0,1,0,0,0,0,1,175,0,0,0,0,0,1,0,0,0,0,0,12,0,0,121381,37,1544,0,3,0,0,0,0,0,16,0,0,0,0,0,8,23,29169,0,0,4,0,0,1,50,0,589,40,2,0,0,2,0,1636,0,0,6,0,1582,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,12,12,12,0,0,0,18931,0,66,0,0,0,1,4,268,543,18934,0,0,0,0,1,0,3,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,86,16,186,6,0,0,235,0,279,0,0,0,108,5,0,0,0,0,0,0,0,0,0,1510,1,0,0,0,9,0,0,0,0,0,124,165,0,0,57,0,0,0,0,0,3879,1,0,108,8,0,1,1,1,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,8,33,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,37,0,0,0,0,1,41,127,0,36,12,0,0,0,0,0,178,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,652,45,2 +4,0,0,3,0,20,2,0,19,1,2,0,0,0,4,0,17,0,6,1,0,0,0,1,0,0,0,0,6,0,6,0,0,0,9,0,20,6,0,0,20,0,8,0,1,0,0,8,0,0,0,0,6,77,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1673,20,79,0,13,0,0,0,0,0,27,0,0,0,0,0,1,13,577,0,0,9,0,0,0,0,0,21,0,15,0,0,2,0,33,0,0,0,0,260,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,1,0,1,1,0,0,2,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,168,0,68,0,0,0,12,9,42,47,175,0,0,0,0,1,0,0,0,0,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,10,4,130,3,0,0,171,0,300,0,0,0,86,5,0,0,0,0,0,0,0,0,0,50,1,0,0,0,2,0,0,0,0,1,103,50,0,0,0,0,0,0,0,0,832,0,0,905,0,0,1,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,367,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,18,0,0,0,8,1,29,173,0,12,0,0,1,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,805,51,2 +8,0,0,6,0,37,14,0,86,0,18,0,0,6,4,0,597,0,6,0,0,0,0,8,0,22,0,0,5,0,29,0,0,0,3,762,37,6,0,0,135,0,1,0,1,0,0,1,0,0,0,0,13,164,0,0,0,0,0,1,0,0,0,0,0,12,0,0,5476,37,766,0,14,0,0,0,0,0,12,0,0,0,0,0,8,21,1088,0,0,3,0,0,1,50,0,582,40,2,0,0,2,0,878,0,0,1,0,1319,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,347,0,61,0,0,0,1,4,259,683,348,0,0,0,0,1,0,3,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,86,16,188,6,0,0,242,0,289,0,0,0,95,3,0,0,0,0,0,0,0,0,0,731,1,0,0,0,8,0,0,0,0,0,124,165,0,0,50,0,0,0,0,0,2221,1,0,99,6,0,1,1,1,0,0,0,3,0,1,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,29,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,57,0,0,0,0,1,40,129,0,44,12,0,0,0,0,0,178,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,565,43,2 +10,0,0,4,0,36,4,0,15,0,3,0,0,2,3,0,19,0,6,2,0,0,0,6,0,14,0,0,1,0,1,0,0,0,7,0,36,6,0,0,23,0,0,0,1,0,0,3,0,0,0,0,7,128,0,0,0,0,0,1,0,0,0,0,0,4,0,0,14108,36,58,0,6,0,0,0,0,0,15,0,0,0,0,0,7,15,202,0,0,7,0,0,0,0,0,74,5,4,0,0,2,0,29,0,1,0,0,2330,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,157,0,91,0,0,0,6,8,194,26,6066,0,0,0,0,1,0,4,0,0,0,0,0,0,7041,0,1966,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,1,0,34,11,174,4,0,0,192,0,392,0,0,0,82,8,0,0,0,0,0,0,2,0,0,52,1,0,0,0,8,0,0,0,0,1,120,49,0,0,0,0,0,0,0,0,668,0,0,109,2,0,1,1,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,43,218,0,8,8,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,259,35,2 +9,0,0,7,0,179,31,0,228,7,30,0,0,7,8,0,3944,0,6,1,0,0,0,8,0,10,414,0,24,0,139,0,0,0,53,1116,179,300,0,0,156,0,1,0,1,0,0,1,0,0,0,0,139,406,0,0,0,0,0,1,0,0,0,0,0,7,0,0,37656,179,4775,0,160,0,0,0,0,0,53,0,0,0,0,0,8,166,7475,0,0,53,0,0,0,0,0,395,25,1,0,0,2,0,5796,0,3,93,0,10304,0,0,0,0,40,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,12,12,12,0,0,0,1742,0,193,0,0,0,294,482,799,2383,1802,0,0,0,0,1,0,3,0,0,0,0,0,0,1505,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,34,1005,7,0,0,919,0,711,0,0,0,473,39,0,0,0,0,0,0,0,0,0,4254,1,0,0,0,9,0,0,0,0,2,290,122,0,0,160,0,0,0,0,0,11751,1,0,1127,26,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,26,499,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,181,1,1,1,0,213,0,0,0,0,1,232,188,0,575,12,0,1,0,0,0,532,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2744,681,2 +8,0,0,6,0,38,16,0,87,0,19,0,0,6,4,0,643,0,6,1,0,0,0,8,0,10,0,0,5,0,33,0,0,0,4,898,38,6,0,0,135,0,1,0,1,0,0,1,0,0,0,0,1,147,0,0,0,0,0,1,0,0,0,0,0,12,0,0,6895,38,812,0,3,0,0,0,0,0,16,0,0,0,0,0,8,23,1344,0,0,4,0,0,1,50,0,588,40,2,0,0,2,0,928,0,0,6,0,1445,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,432,0,48,0,0,0,1,4,275,754,433,0,0,0,0,1,0,3,0,0,0,0,0,0,334,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,86,16,206,6,0,0,257,0,301,0,0,0,112,6,0,0,0,0,0,0,0,0,0,781,1,0,0,0,9,0,0,0,0,0,125,165,0,0,57,0,0,0,0,0,2418,1,0,111,8,0,1,1,1,0,0,0,1,0,1,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,8,33,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,37,0,0,0,0,1,42,127,0,36,12,0,0,0,0,0,178,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,46,2 +6,0,0,2,0,14,2,0,20,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,2,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2408,14,93,0,3,0,0,0,0,0,24,0,0,0,0,0,1,9,225,0,0,3,0,0,0,0,0,14,0,10,0,0,2,0,52,0,0,0,0,261,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,195,0,81,0,0,0,4,9,33,12,197,0,0,0,0,1,0,0,0,0,0,0,0,0,476,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,3,121,2,0,0,258,0,433,0,0,0,188,14,0,0,0,0,0,0,2,0,0,58,1,0,0,0,2,0,0,0,0,1,103,154,0,0,0,0,0,0,0,0,666,0,0,237,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,449,0,9,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,222,38,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,104,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,202,14,159,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,46,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,144,0,0,0,0,3,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,237,71,0,0,0,0,1,0,0,0,0,0,0,0,0,183,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,85,3,0,0,111,0,151,0,0,0,46,1,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,110,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,103,0,0,0,0,1,17,71,0,104,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,10,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,2,0,0,0,5,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,26,0,21,0,0,0,1,0,0,0,0,0,6,0,0,213,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,77,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,49,0,0,0,0,3,57,44,113,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,86,3,0,0,83,0,114,0,0,0,29,6,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,212,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,15,2 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,3,0,0,95,9,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,29,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,8,0,1,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,30,0,0,0,0,3,23,9,46,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,47,3,0,0,35,0,168,0,0,0,5,3,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,3,2 +2,0,0,2,0,12,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,12,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,2,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,9237,12,45,0,3,0,0,0,0,0,10,0,0,0,0,0,1,4,1204,0,0,1,0,0,0,0,0,8,0,3,0,0,2,0,17,0,0,0,0,148,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,830,0,40,0,0,0,4,4,26,15,831,0,0,0,0,1,0,0,0,0,0,0,0,0,3669,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,93,2,0,0,110,0,145,0,0,0,36,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,96,25,0,0,0,0,0,0,0,0,802,0,0,3158,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,13,92,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1237,17,2 +3,0,0,5,0,34,6,0,37,0,5,0,0,6,5,0,518,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,2,762,34,6,0,0,45,0,0,0,1,0,0,3,0,0,0,0,1,169,0,1,0,0,0,1,0,0,0,0,0,2,0,0,6899,34,583,0,3,0,0,0,0,0,15,0,0,0,2,0,8,26,1377,0,0,2,0,0,0,0,0,191,20,5,0,0,2,0,557,0,0,2,0,1468,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,463,0,63,0,0,0,1,4,258,357,469,0,0,0,0,1,0,4,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,86,24,172,5,0,0,186,0,261,0,0,0,50,2,0,0,0,0,0,0,0,0,0,583,1,0,0,0,9,0,0,0,0,0,118,13,0,0,8,0,0,0,0,0,2182,1,0,90,6,0,1,1,0,0,0,0,16,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,36,25,0,4,12,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,648,32,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +9,0,0,6,0,47,9,0,48,3,9,0,0,7,9,0,749,0,6,2,0,0,0,7,0,16,0,0,7,0,1,0,0,0,12,945,47,6,0,0,57,0,0,0,1,0,0,4,0,0,0,0,7,188,0,0,0,0,0,1,0,0,0,0,0,6,0,0,7685,47,859,0,11,0,0,0,0,0,27,0,0,0,0,0,8,29,1410,0,0,12,0,0,0,0,0,217,25,7,0,0,2,0,822,0,3,4,0,1788,0,0,0,0,4,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,12,12,12,0,0,0,529,0,86,0,0,0,8,11,281,482,507,0,0,0,0,1,0,3,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,108,22,233,6,0,0,267,0,365,0,0,0,108,22,0,0,0,0,0,0,0,0,0,837,1,0,0,0,9,0,0,0,0,1,131,26,0,0,12,0,0,0,0,0,2634,1,0,131,8,0,1,1,0,0,0,0,6,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,8,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,10,0,0,0,0,1,59,100,0,12,12,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,685,216,2 +2,0,0,6,1,38,37,1,73,2,11,0,0,9,6,0,795,0,9,2,0,0,0,7,0,10,0,0,6,0,1,0,0,1,3,9601,39,54,0,0,58,0,0,0,1,0,0,3,0,0,0,0,1,478,0,0,0,0,0,1,0,0,0,4,0,2,0,0,35415,38,917,0,4,0,0,0,0,0,31,0,0,0,0,0,8,37,5854,0,1,3,1,0,1,0,0,309,30,5,0,0,4,1,821,0,1,32,0,2802,0,0,0,0,6,2,2,0,0,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,3767,0,69,0,0,0,2,5,426,740,3777,0,0,0,0,1,0,6,0,0,0,0,0,0,449,2,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,1,0,219,28,396,7,0,0,495,0,740,0,1,0,229,11,0,0,0,0,0,0,0,0,0,940,1,0,0,0,9,0,0,0,0,2,154,101,0,0,37,0,0,0,0,0,2998,1,0,119,11,0,1,1,1,0,0,0,6,0,0,0,1,0,0,0,0,0,3,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,47,1,1,1,0,9,0,0,0,0,9,42,210,0,5,12,0,0,0,0,0,164,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,3,1181,58,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,23,0,21,0,0,0,1,0,0,0,0,0,6,0,0,212,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,73,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,49,0,0,0,0,3,57,44,113,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,86,3,0,0,83,0,114,0,0,0,29,9,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,208,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,15,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1,0,0,0,0,0,2,0,0,48,11,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,23,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,37,0,0,0,8,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,82,20,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,893,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,438,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,307,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,112,2,0,0,119,0,132,0,0,0,61,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,28,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,21,0,1,0,0,0,0,0,11,6,0,0,71,0,3,0,1,0,0,4,0,0,0,0,0,94,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2565,11,78,0,22,0,0,0,0,0,16,0,0,0,0,0,1,10,1016,0,0,0,0,0,0,0,0,34,0,4,0,0,2,0,36,0,0,0,0,472,0,0,0,0,32,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,390,0,121,0,0,0,0,3,57,19,431,0,0,0,0,1,0,0,0,0,0,0,0,0,1146,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,147,3,0,0,110,0,248,0,0,0,39,4,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,716,0,0,891,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,21,0,0,0,0,1,11,170,0,22,0,0,1,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,416,20,2 +8,0,0,6,0,40,7,0,55,3,6,0,0,6,7,0,1217,0,6,1,0,0,0,8,0,10,3,0,5,0,2,0,0,0,4,968,40,6,0,0,48,0,4,0,1,0,0,4,0,0,0,0,2,299,0,0,0,0,0,1,0,0,0,0,0,6,0,0,46415,40,1418,0,4,0,0,0,0,0,71,0,0,0,0,0,8,25,9765,0,0,4,0,0,0,0,0,190,20,58,0,0,2,0,1280,0,3,1,0,1707,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,12,12,12,0,0,0,4486,0,434,0,0,0,3,8,276,730,4914,0,0,0,0,1,0,3,0,0,0,0,0,0,3287,0,245,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,86,22,229,6,0,0,279,0,359,0,0,0,130,6,0,0,0,0,0,0,0,0,0,1304,1,0,0,0,9,0,0,0,0,1,121,24,0,0,6,0,0,0,0,0,5608,1,0,770,7,0,1,1,0,0,0,0,133,0,0,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,28,0,0,0,7,2,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,6,0,0,0,0,1,44,72,0,8,12,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3665,60,2 +0,0,0,5,0,40,44,0,70,1,47,0,0,8,5,0,1423,0,6,1,0,0,0,8,0,10,0,0,49,0,1,0,0,0,2,4677,40,6,0,0,52,0,2,0,1,0,0,2,0,0,0,0,1,986,0,0,0,0,0,1,0,0,0,0,0,2,0,0,233442,40,1747,0,47,0,0,0,0,0,86,0,0,0,0,0,8,303,6894,0,0,2,0,0,0,0,0,646,30,3,0,0,2,0,1570,0,0,331,0,11556,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,12,12,12,0,0,0,2040,0,46,0,0,0,28,31,1477,20599,1959,0,0,0,0,1,0,3,0,0,0,0,0,0,2978,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,136,145,323,5,0,0,406,0,460,0,0,0,244,21,0,0,0,0,0,0,0,0,0,1603,1,0,0,0,9,0,0,0,0,1,201,43,0,0,360,0,0,0,0,0,6093,1,0,3292,40,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,40,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,130,0,0,0,0,1,42,219,0,48,12,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2524,48,2 +18,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14640,0,0,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6288,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,61,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,72364,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,58,0,0,0,0,3,56,61,29321,0,0,0,0,1,0,0,0,0,0,0,0,0,93135,0,1,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,17,455,3,0,0,91,0,207,0,0,0,25,334,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,612,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,30635,2 +14,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14159,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5852,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,70759,0,0,0,0,5,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,9,54,69,28379,0,0,0,0,1,0,0,0,0,0,0,0,0,94536,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,389,3,0,0,78,0,218,0,0,0,12,286,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,615,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,26,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,33128,2 +17,0,0,3,0,22,2,0,4,19,3,0,0,0,22,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,2,0,22,6,0,0,14594,0,0,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,22,0,0,5681,22,46,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,12,0,1,0,0,2,0,51,0,20,0,0,72312,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,54,0,0,0,0,3,52,61,29205,0,0,0,0,1,0,0,0,0,0,0,0,0,91423,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,23,422,3,0,0,79,0,189,0,0,0,13,306,0,0,0,0,0,0,0,0,0,48,1,0,0,0,3,0,0,0,0,1,104,6,0,0,0,0,0,0,0,0,613,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,24,1,1,1,0,4,0,0,0,0,1,24,2,0,5,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,31482,2 +0,0,0,5,0,24,6,0,28,3,12,0,0,0,7,0,21,0,7,3,0,0,0,2,0,0,3,0,3,0,4,0,0,0,8,0,24,6,0,0,57,0,0,0,1,0,0,2,0,0,0,0,3,84,0,0,0,0,0,1,0,0,0,0,0,11,0,0,641,24,82,0,7,0,0,0,0,0,7,0,0,0,0,0,4,7,91,0,0,8,0,0,2,20,0,195,35,1,0,0,2,0,130,0,5,0,0,475,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,96,0,78,0,0,0,6,10,58,253,110,0,0,0,0,1,0,0,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,1,0,8,8,132,5,0,0,163,0,244,0,0,0,87,10,0,0,0,0,0,0,0,0,0,81,1,0,0,0,5,0,0,0,0,2,106,87,0,0,81,0,0,0,0,0,72,0,0,96,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,12,0,0,0,0,1,32,146,0,10,0,0,0,0,0,0,68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,157,34,2 +10,0,0,5,0,53,14,0,52,2,12,0,0,7,4,0,821,0,6,1,0,0,0,8,0,10,0,0,8,0,17,0,0,0,9,2267,53,6,0,0,56,0,0,0,1,0,0,2,0,0,0,0,17,326,0,0,0,0,0,1,0,0,0,0,0,2,0,0,13640,53,951,0,22,0,0,0,0,0,34,0,0,0,0,0,8,80,2634,0,0,9,0,0,0,0,0,268,25,3,0,0,2,0,897,0,0,54,0,2205,0,0,0,0,5,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,844,0,93,0,0,0,35,14,532,644,825,0,0,0,0,1,0,3,0,0,0,0,0,0,580,0,2,0,0,0,0,0,0,0,1,0,0,2,1,0,0,0,0,0,1,0,108,22,299,5,0,0,309,0,364,0,0,0,118,22,0,0,0,0,0,0,0,0,0,916,1,0,0,0,9,0,0,0,0,2,146,10,0,0,64,0,0,0,0,0,3306,1,0,356,13,0,1,2,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,13,19,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,46,0,0,0,16,1,62,52,0,23,12,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1137,77,2 +1,0,0,4,1,12,26,1,27,0,4,0,0,0,5,0,58,0,8,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,1,0,13,54,0,0,10,0,0,0,1,0,0,1,0,0,0,0,2,63,0,0,0,0,0,1,0,1,0,0,0,4,0,0,27549,12,91,0,3,0,0,0,0,0,4,0,0,0,0,0,1,3,32,0,1,1,1,0,1,0,0,43,0,0,0,0,4,1,18,0,2,0,0,10371,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,1459,0,0,0,4,4,32,12,5894,0,0,0,0,1,0,0,0,0,0,0,0,0,9207,0,1947,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,341,5,0,0,242,0,479,0,1,0,86,68,0,0,0,0,0,0,0,0,0,128,1,0,0,0,2,0,0,0,0,1,110,42,0,0,0,0,0,0,0,0,110,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,1,1,1,0,4,0,0,0,2,9,14,114,0,3,0,0,0,0,0,0,50,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2931,87,2 +18,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,35,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5226,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,38822,0,0,0,0,2,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,54,0,0,0,14,17,52,37,34874,0,0,0,0,1,0,0,0,0,0,0,0,0,99678,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,328,3,0,0,75,0,217,0,0,0,12,225,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,615,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,25,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,30824,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1,0,0,0,0,0,2,0,0,48,11,71,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,23,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,9,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,41,0,0,0,8,8,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,83,34,2 +20,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14489,0,0,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5718,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,70589,0,0,0,0,6,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,61,0,0,0,0,3,58,61,29032,0,0,0,0,1,0,0,0,0,0,0,0,0,88098,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,424,3,0,0,91,0,204,0,0,0,25,316,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,28469,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,48,11,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,23,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,38,0,0,0,8,5,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,90,20,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,63,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9727,11,50,0,1,0,0,0,0,0,14,0,0,0,2,0,1,6,1237,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,882,0,49,0,0,0,0,3,27,8,899,0,0,0,0,1,0,0,0,0,0,0,0,0,3797,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,94,2,0,0,111,0,108,0,0,0,48,5,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,28,0,0,0,0,0,0,0,0,841,0,0,3317,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,99,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1276,26,2 +6,0,0,4,1,12,26,1,32,0,4,0,0,0,5,0,65,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,50,0,0,0,0,0,1,0,0,0,0,0,4,0,0,152,12,96,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,37,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,118,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,41,0,0,0,4,4,31,13,59,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,115,14,213,5,0,0,229,0,337,0,1,0,55,4,0,0,0,0,0,0,0,0,0,141,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,693,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,32,0,3,0,0,0,0,0,0,58,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,107,17,2 +4,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,1,0,0,32,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,16,0,23,0,0,0,0,3,21,4,29,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,30,0,0,0,2,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,1,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +12,0,0,3,1,14,26,1,26,1,3,0,0,0,4,0,58,0,8,2,0,0,0,2,0,9,0,0,0,0,1,0,0,1,2,0,15,51,0,0,14,0,0,0,0,0,0,0,0,0,0,0,9,36,0,0,0,0,0,1,0,0,0,0,0,2,0,0,4616,14,93,0,10,0,0,0,0,0,0,0,0,0,0,0,3,3,1802,0,1,2,1,0,1,0,0,64,0,0,0,0,4,1,25,0,1,0,0,1669,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,930,0,39,0,0,0,9,21,38,2660,952,0,0,0,0,0,0,0,0,0,0,0,0,0,2473,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,14,233,4,0,0,203,0,320,0,1,0,45,7,0,0,0,0,0,0,0,0,0,125,0,0,0,0,4,0,0,0,0,10,110,2,0,0,0,0,0,0,0,0,982,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,13,1,1,1,0,0,0,0,0,0,9,17,3,0,10,0,0,0,0,0,0,41,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,955,33,2 +19,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13986,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6297,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,71589,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,62,0,0,0,0,3,60,61,28013,0,0,0,0,1,0,0,0,0,0,0,0,0,90450,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,434,3,0,0,91,0,217,0,0,0,25,307,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,615,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,32,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,29201,2 +18,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14348,0,0,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5807,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,72236,0,0,0,0,8,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,58,0,0,0,0,3,56,61,28745,0,0,0,0,1,0,0,0,0,0,0,0,0,92330,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,440,3,0,0,91,0,211,0,0,0,25,318,0,0,0,0,0,0,0,0,0,42,0,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,32311,2 +0,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,67,0,0,0,0,0,1,0,0,0,0,0,1,0,0,6244,10,40,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,1566,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,15,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,808,0,32,0,0,0,0,3,29,5,823,0,0,0,0,1,0,0,0,0,0,0,0,0,2137,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,68,2,0,0,79,0,84,0,0,0,13,2,0,0,0,0,0,0,2,0,0,42,1,0,0,0,2,0,0,0,0,0,92,6,0,0,0,0,0,0,0,0,412,0,0,1550,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,94,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,834,7,2 +0,0,0,2,0,11,2,0,17,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,59,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9797,11,52,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1275,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,16,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,889,0,48,0,0,0,0,3,27,8,906,0,0,0,0,1,0,0,0,0,0,0,0,0,3879,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,89,2,0,0,113,0,108,0,0,0,48,4,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,95,29,0,0,0,0,0,0,0,0,848,0,0,3344,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,102,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1318,20,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,935,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,485,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,278,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,41,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,109,2,0,0,119,0,146,0,0,0,61,1,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,27,2 +1,0,0,3,0,9,2,0,21,0,5,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,18,0,0,0,1,0,0,2,0,0,0,0,0,83,0,0,0,0,0,1,0,0,0,0,0,1,0,0,653,9,52,0,1,0,0,0,0,0,9,0,0,0,0,0,1,4,84,0,0,1,0,0,0,4,0,51,10,2,0,0,2,0,37,0,0,0,0,164,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,85,0,49,0,0,0,0,3,23,40,98,0,0,0,0,1,0,0,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,3,116,3,0,0,145,0,158,0,0,0,83,4,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,0,122,52,0,0,23,0,0,0,0,0,644,0,0,165,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,244,0,1,0,0,0,0,0,0,33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,209,19,2 +18,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,37,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5147,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,40271,0,0,0,0,4,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,54,0,0,0,14,17,52,37,33304,0,0,0,0,1,0,0,0,0,0,0,0,0,98536,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,330,3,0,0,75,0,228,0,0,0,12,246,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,614,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,25,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,32129,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,40,0,0,0,0,0,1,0,0,0,0,0,3,0,0,227,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,145,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,175,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,2,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,27,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,1,0,0,930,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,480,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,295,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,41,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,110,2,0,0,119,0,145,0,0,0,61,1,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,27,2 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 +8,0,0,6,0,38,16,0,87,0,19,0,0,6,4,0,644,0,6,1,0,0,0,8,0,10,0,0,5,0,33,0,0,0,4,938,38,6,0,0,135,0,1,0,1,0,0,1,0,0,0,0,1,172,0,0,0,0,0,1,0,0,0,0,0,12,0,0,7801,38,816,0,3,0,0,0,0,0,16,0,0,0,0,0,8,23,1544,0,0,4,0,0,1,50,0,589,40,2,0,0,2,0,929,0,0,6,0,1360,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,491,0,66,0,0,0,1,4,275,754,493,0,0,0,0,1,0,3,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,86,16,210,6,0,0,255,0,280,0,0,0,114,4,0,0,0,0,0,0,0,0,0,782,1,0,0,0,9,0,0,0,0,0,125,165,0,0,57,0,0,0,0,0,2456,1,0,120,8,0,1,1,1,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,33,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,37,0,0,0,0,1,42,127,0,36,12,0,0,0,0,0,178,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,689,45,2 +0,0,0,5,0,23,6,0,28,3,12,0,0,0,7,0,21,0,7,3,0,0,0,2,0,0,3,0,3,0,4,0,0,0,8,0,23,6,0,0,57,0,0,0,1,0,0,2,0,0,0,0,3,88,0,0,0,0,0,1,0,0,0,0,0,11,0,0,640,23,82,0,7,0,0,0,0,0,7,0,0,0,0,0,4,7,92,0,0,8,0,0,2,20,0,195,35,1,0,0,2,0,130,0,5,0,0,378,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,96,0,79,0,0,0,6,10,54,253,110,0,0,0,0,1,0,0,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,1,0,8,8,125,5,0,0,160,0,246,0,0,0,87,13,0,0,0,0,0,0,0,0,0,81,1,0,0,0,5,0,0,0,0,2,105,87,0,0,81,0,0,0,0,0,85,0,0,99,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,12,0,0,0,0,1,31,146,0,10,0,0,0,0,0,0,68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,158,32,2 +3,0,0,6,0,38,63,0,134,1,15,0,0,6,5,0,879,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,2,835,38,6,0,0,195,0,2,0,1,0,0,2,0,0,0,0,1,213,0,0,0,0,0,1,0,0,0,0,0,7,0,0,44880,38,1085,0,3,0,0,0,0,0,14,0,0,0,0,0,8,23,10578,0,0,2,0,0,1,82,0,791,50,3,0,0,2,0,1324,0,0,1,0,4930,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,1937,0,61,0,0,0,1,4,262,1558,1933,0,0,0,0,1,0,3,0,0,0,0,0,0,673,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,0,86,19,242,6,0,0,304,0,367,0,0,0,127,6,0,0,0,0,0,0,0,0,0,1108,1,0,0,0,9,0,0,0,0,0,122,221,0,0,81,0,0,0,0,0,7077,1,0,795,6,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,6,361,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,5,0,0,0,0,1,40,211,0,4,12,0,0,0,0,0,243,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4417,36,2 +3,0,0,6,0,38,63,0,132,1,15,0,0,6,5,0,805,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,2,835,38,6,0,0,195,0,2,0,1,0,0,2,0,0,0,0,1,214,0,0,0,0,0,1,0,0,0,0,0,7,0,0,44153,38,1007,0,3,0,0,0,0,0,14,0,0,0,0,0,8,23,10361,0,0,2,0,0,1,82,0,791,50,3,0,0,2,0,1250,0,0,1,0,6126,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,12,12,12,0,0,0,1910,0,58,0,0,0,1,4,262,1556,1906,0,0,0,0,1,0,3,0,0,0,0,0,0,660,0,1,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,1,0,86,19,239,6,0,0,304,0,366,0,0,0,125,6,0,0,0,0,0,0,0,0,0,1032,1,0,0,0,9,0,0,0,0,0,122,221,0,0,81,0,0,0,0,0,6805,1,0,792,6,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,6,361,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,5,0,0,0,0,1,40,211,0,4,12,0,0,0,0,0,243,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4380,36,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +0,0,0,3,0,41,15,0,35,0,4,0,0,2,2,0,405,0,6,4,0,0,0,6,0,10,0,0,3,0,1,0,0,0,7,2489,41,6,0,0,24,0,0,0,1,0,0,9,0,0,0,0,1,390,0,2,0,0,0,1,0,0,0,0,0,2,0,0,38942,41,548,0,1,0,0,0,0,0,60,0,0,0,1,0,9,30,6481,0,0,7,0,0,0,0,0,106,5,12,1,0,2,0,442,0,0,0,0,1602,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,12,12,12,0,0,0,5595,0,192,0,0,0,0,3,292,602,5590,0,0,0,0,1,0,3,0,0,0,0,0,0,732,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,32,12,321,3,0,0,444,0,374,0,0,0,273,8,0,0,0,0,0,0,6,0,0,469,1,0,0,0,10,0,0,0,0,0,144,132,0,0,0,0,0,0,0,0,1401,1,0,255,15,0,1,1,0,0,0,0,19,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,0,0,0,0,0,1,48,355,0,2,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,11,902,71,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,165,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,365,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,67,3,0,0,42,0,150,0,0,0,6,4,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,171,2 +8,0,0,4,0,35,9,0,37,0,3,0,0,2,3,0,563,0,6,2,0,0,0,7,0,10,0,0,3,0,0,0,0,0,2,937,35,6,0,0,23,0,2,0,1,0,0,3,0,0,0,0,1,304,0,0,0,0,0,1,0,0,0,0,0,4,0,0,32111,35,640,0,1,0,0,0,0,0,23,0,0,0,0,0,8,20,5955,0,0,2,0,0,0,0,0,87,5,7,0,0,2,0,584,0,1,0,0,1573,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,5014,0,484,0,0,0,0,3,250,679,5539,0,0,0,0,1,0,3,0,0,0,0,0,0,2375,0,263,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,34,11,213,4,0,0,229,0,307,0,0,0,78,8,0,0,0,0,0,0,0,0,0,623,1,0,0,0,9,0,0,0,0,0,116,25,0,0,0,0,0,0,0,0,2323,1,0,118,9,0,1,1,0,0,0,0,22,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,9,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,37,76,0,1,12,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1560,28,2 +8,0,0,2,0,15,14,0,16,0,2,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,4,0,15,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,4,59,0,0,0,0,0,1,0,0,0,0,0,1,0,0,361,15,55,0,5,0,0,0,0,0,7,0,0,0,0,0,1,4,55,0,0,4,0,0,0,0,0,7,0,4,0,0,2,0,42,0,0,0,0,204,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,64,0,43,0,0,0,8,5,34,19,81,0,0,0,0,1,0,0,0,0,0,0,0,0,326,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,31,99,2,0,0,110,0,194,0,0,0,40,9,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,1,97,21,0,0,0,0,0,0,0,0,637,0,0,37,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,8,0,0,0,4,1,19,79,0,5,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,12,2 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,3,0,0,109,9,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,31,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,8,0,1,0,0,1174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,30,0,0,0,0,3,23,9,46,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,48,3,0,0,35,0,183,0,0,0,5,11,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,3,2 +0,0,0,3,0,12,2,0,25,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,19,0,1,0,1,0,0,1,0,0,0,0,0,58,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1927,12,49,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,692,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,15,0,1,0,0,173,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,189,0,23,0,0,0,0,3,26,8,200,0,0,0,0,1,0,0,0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,82,3,0,0,113,0,241,0,0,0,51,2,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,0,94,35,0,0,0,0,0,0,0,0,288,0,0,923,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,110,0,1,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,350,18,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,104,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,4,0,0,203,14,159,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,46,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,109,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,237,71,0,0,0,0,1,0,0,0,0,0,0,0,0,177,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,85,3,0,0,111,0,162,0,0,0,46,4,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,110,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,104,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,103,0,0,0,0,1,17,71,0,104,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,11,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 +0,0,0,5,0,22,6,0,28,3,12,0,0,0,7,0,21,0,7,4,0,0,0,1,0,0,3,0,3,0,4,0,0,0,8,0,22,6,0,0,57,0,0,0,1,0,0,2,0,0,0,0,3,87,0,0,0,0,0,1,0,0,0,0,0,11,0,0,661,22,82,0,7,0,0,0,0,0,7,0,0,0,0,0,4,7,94,0,0,8,0,0,2,20,0,195,35,1,0,0,2,0,130,0,5,0,0,391,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,97,0,77,0,0,0,6,10,50,253,111,0,0,0,0,1,0,0,0,0,0,0,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,1,0,8,8,129,5,0,0,157,0,243,0,0,0,87,8,0,0,0,0,0,0,0,0,0,81,1,0,0,0,5,0,0,0,0,2,104,87,0,0,81,0,0,0,0,0,83,0,0,103,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,12,0,0,0,0,1,30,146,0,10,0,0,0,0,0,0,68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,150,32,2 +25,0,0,3,0,11,8,0,61,0,19,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,11,6,0,0,107,0,0,0,0,0,0,0,0,0,0,0,2,33,0,0,0,0,0,1,0,0,0,0,0,12,0,0,189,11,110,0,3,0,0,0,0,0,4,0,0,0,0,0,1,1,46,0,0,1,0,0,1,57,0,446,35,0,0,0,2,0,278,0,0,0,0,114,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,52,0,31,0,0,0,4,4,28,373,58,0,0,0,0,0,0,0,0,0,0,0,0,0,227,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,56,3,0,0,49,0,155,0,0,0,13,8,0,0,0,0,0,0,0,0,0,108,0,0,0,0,2,0,0,0,0,1,91,136,0,0,73,0,0,0,0,0,603,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,12,1,0,3,0,0,0,0,0,0,151,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,51,2 +1,0,0,11,0,53,43,0,117,15,31,0,1,4,27,0,57,0,7,6,0,0,0,5,9,12,12,0,23,0,9,0,0,0,19,0,53,92,20,0,197,0,0,0,1,0,0,3,0,0,0,0,21,198,0,0,0,0,0,1,0,0,0,0,0,24,0,0,3246,53,349,0,31,0,0,0,0,0,20,0,0,0,0,1,7,17,286,0,0,19,0,0,4,79,0,866,115,5,0,0,2,0,551,0,12,0,4,1800,0,0,0,0,10,0,1,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,10,10,10,0,0,0,354,0,91,0,0,0,40,92,202,723,288,0,0,0,0,1,0,2,0,0,0,0,0,0,903,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,1,0,36,31,276,12,0,0,327,0,695,0,0,0,201,255,0,0,0,0,0,0,4,0,0,287,1,0,0,0,20,0,0,0,0,21,145,222,0,0,271,0,0,0,0,0,481,0,0,461,3,0,1,1,0,0,0,0,9,0,0,0,5,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,3,15,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,72,0,0,0,0,1,72,291,0,47,9,0,0,0,0,0,258,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,23,0,0,0,0,0,0,0,0,0,0,0,0,0,3,488,103,2 +0,0,0,3,0,11,2,0,16,0,3,0,0,0,3,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,34,0,0,0,1,0,0,4,0,0,0,0,0,59,0,0,0,0,0,1,0,0,0,0,0,3,0,0,445,11,47,0,1,0,0,0,0,0,13,0,0,0,0,0,2,6,49,0,0,2,0,0,0,0,0,10,0,6,0,0,2,0,17,0,1,0,0,136,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,61,0,32,0,0,0,0,3,28,5,65,0,0,0,0,1,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,83,3,0,0,117,0,131,0,0,0,47,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,93,34,0,0,0,0,0,0,0,0,38,0,0,85,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,188,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,23,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,21,0,1,0,0,0,0,0,10,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2563,10,78,0,22,0,0,0,0,0,16,0,0,0,0,0,1,10,1023,0,0,0,0,0,0,0,0,34,0,4,0,0,2,0,36,0,0,0,0,494,0,0,0,0,32,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,393,0,124,0,0,0,0,3,55,19,435,0,0,0,0,1,0,0,0,0,0,0,0,0,1153,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,151,3,0,0,107,0,263,0,0,0,39,4,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,720,0,0,883,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,21,0,0,0,0,1,10,170,0,22,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,427,32,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,104,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,202,14,159,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,45,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,96,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,237,71,0,0,0,0,1,0,0,0,0,0,0,0,0,173,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,88,3,0,0,111,0,161,0,0,0,46,3,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,613,0,0,110,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,104,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,103,0,0,0,0,1,17,71,0,104,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,10,2 +25,0,0,3,0,12,8,0,61,0,19,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,12,6,0,0,107,0,0,0,0,0,0,0,0,0,0,0,2,32,0,0,0,0,0,1,0,0,0,0,0,12,0,0,188,12,110,0,3,0,0,0,0,0,4,0,0,0,0,0,1,1,45,0,0,1,0,0,1,57,0,446,35,0,0,0,2,0,278,0,0,0,0,245,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,53,0,32,0,0,0,4,4,32,373,59,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,62,3,0,0,52,0,156,0,0,0,13,7,0,0,0,0,0,0,0,0,0,108,0,0,0,0,2,0,0,0,0,1,92,136,0,0,73,0,0,0,0,0,602,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,4,0,0,0,2,1,13,1,0,3,0,0,0,0,0,0,151,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,51,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,56,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9764,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1245,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,889,0,48,0,0,0,0,3,27,8,906,0,0,0,0,1,0,0,0,0,0,0,0,0,3803,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,85,2,0,0,109,0,108,0,0,0,46,5,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,848,0,0,3345,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1288,21,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,5,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1008,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,78,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,71,0,0,0,0,0,7,36,184,0,0,0,0,0,0,0,0,0,0,0,0,0,473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,16,2,0,0,54,0,81,0,0,0,48,3,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,45,0,0,0,0,0,0,0,0,288,0,0,244,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,112,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,295,7,2 +0,0,0,3,0,11,2,0,16,0,3,0,0,0,3,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,34,0,0,0,1,0,0,3,0,0,0,0,0,63,0,0,0,0,0,1,0,0,0,0,0,3,0,0,428,11,47,0,1,0,0,0,0,0,13,0,0,0,0,0,2,6,49,0,0,2,0,0,0,0,0,10,0,6,0,0,2,0,17,0,1,0,0,150,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,59,0,32,0,0,0,0,3,28,5,63,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,84,3,0,0,117,0,130,0,0,0,47,5,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,93,34,0,0,0,0,0,0,0,0,36,0,0,79,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,188,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,23,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,50,0,0,0,0,0,1,0,0,0,0,0,4,0,0,141,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,31,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,123,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,174,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,216,5,0,0,229,0,330,0,1,0,55,3,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,116,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,34,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,97,15,2 +2,0,0,5,0,39,22,0,113,3,34,0,0,2,6,0,564,0,6,3,0,0,0,12,0,11,0,0,4,0,1,0,0,0,6,916,39,6,0,0,171,0,2,0,1,0,0,4,0,0,0,0,1,198,0,0,0,0,0,1,0,0,0,0,0,21,0,0,25250,39,769,0,1,0,0,0,0,0,20,0,0,0,0,0,14,30,4312,0,0,6,0,0,6,83,0,796,95,3,0,0,2,0,982,0,4,0,0,1445,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,3645,0,78,0,0,0,0,3,268,894,3658,0,0,0,0,1,0,3,0,0,0,0,0,0,589,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,34,14,207,5,0,0,245,0,286,0,0,0,102,5,0,0,0,0,0,0,0,0,0,747,1,0,0,0,15,0,0,0,0,0,122,202,0,0,180,0,0,0,0,0,2148,1,0,43,11,0,1,1,0,0,0,0,9,0,4,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,11,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,0,0,0,0,0,1,45,75,0,2,14,0,0,0,0,0,235,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,534,521,2 +0,0,0,3,0,11,2,0,16,0,3,0,0,0,3,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,34,0,0,0,1,0,0,3,0,0,0,0,0,59,0,0,0,0,0,1,0,0,0,0,0,3,0,0,421,11,47,0,1,0,0,0,0,0,13,0,0,0,0,0,2,6,46,0,0,2,0,0,0,0,0,10,0,6,0,0,2,0,17,0,1,0,0,130,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,59,0,32,0,0,0,0,3,28,5,63,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,84,3,0,0,117,0,130,0,0,0,47,3,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,93,34,0,0,0,0,0,0,0,0,36,0,0,79,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,188,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,23,2 +3,0,0,4,0,13,51,0,87,1,18,0,0,0,6,0,46,0,7,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,3,0,13,104,0,0,179,0,0,0,1,0,0,1,0,0,0,0,1,87,0,0,0,0,0,1,0,0,0,0,0,8,0,0,536,13,208,0,3,0,0,0,0,0,5,0,0,0,0,0,1,3,6,0,0,3,0,0,1,80,0,619,70,0,0,0,2,0,384,0,4,0,0,575,0,0,1,0,2,0,19,0,1,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,0,1,0,11,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,2,0,0,0,0,0,0,24,0,47,0,0,0,2,5,64,574,71,0,0,0,0,1,0,0,0,0,0,0,0,0,414,0,1,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,7,184,4,0,0,269,0,288,0,0,0,203,21,0,0,0,0,0,0,0,0,0,215,1,0,0,0,2,0,0,0,0,2,145,214,0,0,269,0,9,0,0,0,96,0,0,10,0,0,1,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,3,0,0,0,0,1,16,181,0,3,0,0,0,0,0,0,286,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,48,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,154,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,53,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,179,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,31,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,18,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,16,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,34,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,144,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,15,0,16,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,18,2 +8,0,0,3,0,12,2,0,4,0,2,0,0,0,4,0,13,0,7,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,2,0,12,12,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,2,0,0,90,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,2,0,0,0,0,0,7,0,0,0,0,2,0,16,0,0,0,0,1751,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,27,0,0,0,0,3,30,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,53,3,0,0,52,0,136,0,0,0,14,1,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,96,5,0,0,0,0,2,0,4,2,606,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,14,2,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,5,2 +4,0,0,2,0,12,3,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,12,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,1,67,0,0,0,0,0,1,0,0,0,0,0,1,0,0,688,12,59,0,2,0,0,0,0,0,21,0,0,0,0,0,1,9,134,0,0,0,0,0,0,0,0,13,0,8,0,0,2,0,15,0,0,0,0,223,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,126,0,76,0,0,0,1,4,36,55,163,0,0,0,0,1,0,0,0,0,0,0,0,0,421,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,10,3,95,2,0,0,116,0,184,0,0,0,39,9,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,97,25,0,0,0,0,0,0,0,0,642,0,0,120,0,0,1,0,0,0,0,0,8,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,12,96,0,2,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,199,41,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,24,0,21,0,0,0,1,0,0,0,0,0,6,0,0,211,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,74,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,49,0,0,0,0,3,57,44,113,0,0,0,0,0,0,0,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,86,3,0,0,83,0,113,0,0,0,29,3,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,209,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,15,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,49,11,71,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,24,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,9,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,41,0,0,0,8,6,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,83,34,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +6,0,0,2,0,13,2,0,22,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,8,0,0,0,0,2,154,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1770,13,109,0,3,0,0,0,0,0,32,0,0,0,0,0,1,13,306,0,0,3,0,0,0,0,0,20,0,12,0,1,2,0,54,0,0,0,0,306,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,256,0,111,0,0,0,4,9,29,22,262,0,0,0,0,1,0,0,0,0,0,0,0,0,614,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,10,3,129,2,0,0,249,0,449,0,0,0,180,27,0,0,0,1,0,0,6,0,0,60,1,0,0,0,2,0,0,0,0,1,107,139,0,0,0,0,0,0,0,0,692,0,0,245,0,0,1,0,0,0,0,0,15,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,553,0,9,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,323,51,2 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,52,0,0,0,0,0,1,0,0,0,0,0,4,0,0,140,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,123,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,39,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,171,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,216,5,0,0,229,0,329,0,1,0,55,2,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,28,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,100,16,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,3,1,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,23,0,21,0,0,0,1,0,0,0,0,0,6,0,0,208,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,72,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,49,0,0,0,0,3,57,44,113,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,84,3,0,0,83,0,115,0,0,0,29,8,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,207,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,15,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,39,0,0,0,0,0,1,0,0,0,0,0,3,0,0,238,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,89,0,0,2,0,0,0,0,0,6,0,2,0,0,2,0,26,0,1,0,0,138,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,70,0,51,0,0,0,32,19,33,18,85,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,28,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,27,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,18,2 +8,0,0,2,0,15,14,0,16,0,2,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,4,0,5,0,0,0,4,0,15,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,4,61,0,0,0,0,0,1,0,0,0,0,0,1,0,0,354,15,60,0,9,0,0,0,0,0,7,0,0,0,0,0,1,4,51,0,0,4,0,0,0,0,0,11,0,4,0,0,2,0,47,0,0,0,0,324,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,63,0,43,0,0,0,8,5,34,19,80,0,0,0,0,1,0,0,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,31,103,2,0,0,110,0,203,0,0,0,40,4,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,1,97,21,0,0,0,0,0,0,0,0,656,0,0,33,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,12,0,0,0,4,1,19,79,0,9,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,13,2 +0,0,0,6,0,55,7,0,310,3,8,0,0,2,9,0,708,0,7,4,0,0,0,6,0,10,3,0,10,0,8,0,0,0,14,898,55,203,0,0,174,0,0,0,1,0,0,7,0,0,0,0,8,377,0,0,0,0,0,1,0,0,0,0,0,14,0,0,100225,55,1091,0,15,0,0,0,0,0,31,0,0,0,0,0,9,24,5159,0,0,14,0,0,1,7,0,191,20,12,0,0,2,0,1108,0,6,0,0,32668,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,12,12,12,0,0,0,4375,0,123,0,0,0,14,17,259,2814,4362,0,0,0,0,1,0,6,0,0,0,0,0,0,2781,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,62,18,496,6,0,0,659,0,761,0,0,0,487,43,0,0,0,0,0,0,0,0,0,1051,1,0,0,0,10,0,0,0,0,7,140,408,0,0,30,0,0,0,0,0,2750,1,0,2809,6,0,1,1,1,0,0,0,14,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,20,0,0,0,4,1,69,574,0,19,12,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1412,95,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,53,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9713,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1260,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,882,0,48,0,0,0,0,3,27,8,899,0,0,0,0,1,0,0,0,0,0,0,0,0,3865,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,87,2,0,0,109,0,110,0,0,0,46,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,840,0,0,3317,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1299,23,2 +1,0,0,6,0,33,7,0,33,0,5,0,0,7,6,0,460,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,33,40,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,170,0,0,0,0,0,1,0,0,0,0,0,5,0,0,19083,33,526,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4297,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,521,0,0,1,0,2682,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,793,0,47,0,0,0,1,4,249,1159,780,0,0,0,0,1,0,3,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,113,13,186,6,0,0,199,0,279,0,0,0,58,5,0,0,0,0,0,0,0,0,0,524,1,0,0,0,10,0,0,0,0,0,116,15,0,0,6,0,0,0,0,0,3082,1,0,852,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,34,108,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1831,78,2 +2,0,0,2,0,109,2,0,8,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,99,0,0,0,0,1,0,0,0,96,0,109,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,99,37,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1089,109,129,0,100,0,0,0,0,0,6,0,0,0,0,1,1,3,24,0,0,96,0,0,0,0,0,205,0,1,0,0,2,0,103,0,0,0,0,1971,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,37,0,136,0,0,0,99,99,124,303,245,0,0,0,0,1,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,380,2,0,0,393,0,383,0,0,0,328,6,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,100,192,30,0,0,0,0,0,0,0,0,28,0,0,8,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,106,1,1,1,0,0,0,0,0,0,1,205,168,0,100,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,75,109,2 +6,0,0,2,0,13,2,0,18,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,1,0,0,2,0,0,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2329,13,77,0,3,0,0,0,0,0,24,0,0,0,0,0,1,9,214,0,0,3,0,0,0,0,0,16,0,10,0,0,2,0,18,0,0,0,0,258,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,185,0,79,0,0,0,0,3,29,10,187,0,0,0,0,1,0,0,0,0,0,0,0,0,453,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,10,3,121,2,0,0,255,0,407,0,0,0,188,16,0,0,0,0,0,0,2,0,0,46,1,0,0,0,2,0,0,0,0,1,102,154,0,0,0,0,0,0,0,0,645,0,0,213,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,449,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,215,39,2 +12,0,0,3,1,15,26,1,26,1,3,0,0,0,4,0,58,0,8,2,0,0,0,2,0,9,0,0,0,0,1,0,0,1,2,0,16,51,0,0,14,0,0,0,0,0,0,0,0,0,0,0,9,34,0,0,0,0,0,1,0,0,0,0,0,2,0,0,4790,15,93,0,10,0,0,0,0,0,0,0,0,0,0,0,3,3,1811,0,1,2,1,0,1,0,0,64,0,0,0,0,4,1,25,0,1,0,0,1731,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,936,0,41,0,0,0,9,21,39,2678,958,0,0,0,0,0,0,0,0,0,0,0,0,0,2516,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,14,246,4,0,0,204,0,352,0,1,0,43,22,0,0,0,0,0,0,0,0,0,125,0,0,0,0,4,0,0,0,0,10,109,2,0,0,0,0,0,0,0,0,985,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,1,1,1,0,0,0,0,0,0,9,18,3,0,10,0,0,0,0,0,0,41,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,958,46,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,925,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,470,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,274,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,41,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,112,2,0,0,119,0,132,0,0,0,61,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,29,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,1,0,0,0,0,0,2,0,0,49,11,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,24,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,38,0,0,0,8,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,83,20,2 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,3,0,0,96,9,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,30,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,8,0,1,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,32,0,0,0,0,3,23,9,46,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,49,3,0,0,35,0,168,0,0,0,5,3,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,3,2 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,3,0,0,96,9,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,30,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,8,0,1,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,30,0,0,0,0,3,23,9,46,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,49,3,0,0,35,0,168,0,0,0,5,3,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,3,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1017,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,64,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,71,0,0,0,0,0,7,36,186,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,16,2,0,0,54,0,85,0,0,0,48,4,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,45,0,0,0,0,0,0,0,0,288,0,0,252,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,115,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,294,7,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,203,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,46,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,114,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,178,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,86,3,0,0,111,0,162,0,0,0,46,3,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,11,2 +1,0,0,3,0,9,2,0,21,0,5,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,18,0,0,0,1,0,0,2,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,1,0,0,793,9,53,0,1,0,0,0,0,0,9,0,0,0,0,0,1,4,86,0,0,1,0,0,0,4,0,51,10,2,0,0,2,0,37,0,0,0,0,206,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,90,0,48,0,0,0,0,3,23,42,103,0,0,0,0,1,0,0,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,3,127,3,0,0,151,0,158,0,0,0,89,4,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,0,126,54,0,0,23,0,0,0,0,0,649,0,0,185,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,252,0,1,0,0,0,0,0,0,33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,211,21,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,60,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9421,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1204,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,859,0,48,0,0,0,0,3,27,8,876,0,0,0,0,1,0,0,0,0,0,0,0,0,3750,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,89,2,0,0,109,0,108,0,0,0,46,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,819,0,0,3224,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1244,22,2 +28,0,0,3,0,12,9,0,72,0,22,0,0,0,2,0,11,0,7,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,12,6,0,0,127,0,0,0,0,0,0,0,0,0,0,0,2,46,0,0,0,0,0,1,0,0,0,0,0,14,0,0,242,12,133,0,3,0,0,0,0,0,8,0,0,0,0,0,1,1,62,0,0,1,0,0,1,68,0,564,40,0,0,0,2,0,330,0,0,0,0,389,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,39,0,0,0,4,4,32,474,71,0,0,0,0,0,0,0,0,0,0,0,0,0,298,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,61,3,0,0,57,0,161,0,0,0,18,3,0,0,0,0,0,0,0,0,0,123,0,0,0,0,2,0,0,0,0,1,92,163,0,0,85,0,0,0,0,0,606,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,4,0,0,0,2,1,13,1,0,3,0,0,0,0,0,0,180,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,80,2 +4,0,0,2,0,11,2,0,10,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,4,0,0,14,0,5,0,0,0,2,0,11,6,0,0,5,0,1,0,1,0,0,1,0,1,0,0,8,56,0,0,0,0,0,1,0,0,0,0,0,1,0,0,7926,11,55,0,23,0,0,0,0,0,6,0,0,0,0,0,1,4,1869,0,0,2,0,0,0,0,0,45,0,1,0,0,2,0,30,0,0,0,0,171,0,0,0,0,12,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1109,0,147,0,0,0,12,19,30,48,1148,0,0,0,0,1,0,0,0,0,0,0,0,0,2801,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,80,2,0,0,111,0,209,0,0,0,55,6,0,0,0,0,0,0,124,0,0,38,1,0,0,0,2,0,0,0,0,9,93,42,0,0,0,0,0,0,0,0,1117,0,0,2195,0,0,1,1,1,0,0,0,4,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,122,0,0,0,0,241,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,84,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,22,0,0,0,8,1,13,185,0,23,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,60,0,0,0,0,0,0,0,1,1177,9,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +18,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,1,0,0,0,2,0,0,0,0,0,0,5,0,1,0,2,0,22,6,0,0,13931,0,0,0,1,0,0,1,0,0,0,0,4,41,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5556,22,35,0,4,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,24,0,1,0,0,2,0,29,0,9,0,0,67874,0,0,0,0,3,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,2,0,0,0,0,0,0,69,0,56,0,0,0,8,11,52,69,27931,0,0,0,0,1,0,0,0,0,0,0,0,0,92642,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,371,3,0,0,78,0,236,0,0,0,12,279,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,610,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,24,1,1,1,0,8,0,0,0,8,1,24,2,0,5,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,30927,2 +3,0,0,5,0,40,6,0,45,0,5,0,0,6,5,0,657,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,5,762,40,6,0,0,50,0,0,0,1,0,0,5,0,0,0,0,1,201,0,1,0,0,0,1,0,0,0,0,0,2,0,0,10096,40,745,0,3,0,0,0,0,0,25,0,0,0,1,0,8,32,1944,0,0,5,0,0,0,0,0,199,20,11,0,0,2,0,698,0,0,4,0,1838,0,0,0,0,0,2,4,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,635,0,103,0,0,0,1,4,295,442,633,0,0,0,0,1,0,6,0,0,0,0,0,0,994,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,86,27,199,5,0,0,217,0,301,0,0,0,72,7,0,0,0,0,0,0,0,0,0,730,1,0,0,0,9,0,0,0,0,0,125,27,0,0,12,0,0,0,0,0,2775,1,0,575,6,0,1,1,0,0,0,0,21,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,5,0,0,0,0,1,45,36,0,4,12,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1060,42,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,167,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,250,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,58,3,0,0,42,0,147,0,0,0,6,4,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,646,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,171,2 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,977,10,59,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,121,0,0,0,0,0,0,0,0,15,0,5,0,0,2,0,14,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,117,0,85,0,0,0,0,3,26,13,134,0,0,0,0,1,0,0,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,8,3,104,2,0,0,244,0,353,0,0,0,180,11,0,0,0,0,0,0,2,0,0,41,1,0,0,0,2,0,0,0,0,0,100,160,0,0,0,0,0,0,0,0,52,0,0,76,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,499,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,196,29,2 +11,0,0,5,0,39,5,0,16,1,3,0,0,2,8,0,27,0,6,4,0,0,0,5,4,8,0,0,11,0,1,0,0,0,12,0,39,6,14,0,51,0,0,0,1,0,0,1,0,0,0,0,6,123,0,0,0,0,0,1,0,0,0,6,0,9,0,0,1130,39,75,0,10,0,0,0,0,0,10,0,0,0,0,0,7,14,141,0,0,12,0,0,0,0,0,126,5,2,0,0,2,0,49,0,5,0,0,939,0,0,0,0,20,4,2,0,2,0,0,1,0,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,19,0,0,0,0,4,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,117,0,61,0,0,0,10,27,199,128,130,0,0,0,0,1,0,4,0,0,0,0,0,0,390,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,1,0,32,23,176,5,0,0,186,0,332,0,0,0,84,37,0,0,0,0,0,0,0,0,0,67,1,0,0,0,13,0,0,0,0,6,121,40,0,0,0,0,10,0,0,0,189,0,0,57,3,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,14,0,0,0,0,1,51,112,0,11,9,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,210,62,2 +16,0,0,3,0,14,2,0,19,2,3,0,0,0,5,0,17,0,6,1,0,0,0,1,0,0,0,0,7,0,1,0,0,0,2,0,14,6,0,0,14,0,0,0,1,0,0,5,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,5,0,0,538,14,63,0,8,0,0,0,0,0,15,0,0,0,0,0,1,8,67,0,0,2,0,0,0,0,0,18,0,6,0,0,2,0,30,0,3,0,0,285,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,100,0,80,0,0,0,0,3,34,38,104,0,0,0,0,1,0,0,0,0,0,0,0,0,326,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,6,113,3,0,0,108,0,255,0,0,0,27,12,0,0,0,0,0,0,0,0,0,52,1,0,0,0,2,0,0,0,0,1,96,13,0,0,0,0,0,0,0,0,622,0,0,49,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,7,0,0,0,0,1,16,79,0,8,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,181,267,2 +0,0,0,5,0,24,6,0,28,3,12,0,0,0,7,0,21,0,7,4,0,0,0,1,0,0,3,0,3,0,4,0,0,0,8,0,24,6,0,0,57,0,0,0,1,0,0,2,0,0,0,0,3,85,0,0,0,0,0,1,0,0,0,0,0,11,0,0,727,24,83,0,7,0,0,0,0,0,8,0,0,0,0,0,4,7,106,0,0,8,0,0,2,20,0,195,35,2,0,0,2,0,130,0,5,0,0,353,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,108,0,79,0,0,0,6,10,58,253,121,0,0,0,0,1,0,0,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,1,0,8,8,135,5,0,0,164,0,245,0,0,0,87,12,0,0,0,0,0,0,0,0,0,81,1,0,0,0,5,0,0,0,0,2,106,87,0,0,81,0,0,0,0,0,67,0,0,120,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,12,0,0,0,0,1,32,146,0,10,0,0,0,0,0,0,68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,162,33,2 +16,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,13652,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5504,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,66,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,66501,0,0,0,0,3,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0,71,0,56,0,0,0,8,9,54,69,27366,0,0,0,0,1,0,0,0,0,0,0,0,0,89740,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,364,3,0,0,78,0,222,0,0,0,12,291,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,615,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,29459,2 +18,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13888,0,0,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6434,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73381,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,27819,0,0,0,0,1,0,0,0,0,0,0,0,0,92925,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,449,3,0,0,91,0,235,0,0,0,25,324,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,30995,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,4,0,0,200,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,44,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,104,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,87,3,0,0,111,0,163,0,0,0,46,1,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,613,0,0,111,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,10,2 +2,0,0,3,0,11,2,0,11,4,3,0,0,0,7,0,21,0,6,1,0,0,0,1,0,0,3,0,2,0,2,0,1,0,2,0,11,6,0,0,16,0,23,0,1,0,0,53,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,7,0,0,3877,11,257,0,4,0,0,0,0,0,109,0,0,0,0,601,1,107,500,0,0,2,0,0,0,0,0,64,0,52,0,0,2,0,39,0,5,0,0,179,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,599,0,184,0,0,0,2,8,28,13,503,0,0,0,0,1,0,0,0,0,0,0,0,0,2604,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,10,8,87,3,0,0,127,0,498,0,0,0,71,5,0,0,0,0,0,0,0,0,0,50,1,0,0,0,2,0,0,0,0,2,93,6,0,0,0,0,0,0,0,0,762,0,0,409,0,0,1,0,0,0,0,0,105,0,0,0,52,22,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,13,48,0,7,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1980,22,2 +16,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,13902,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5760,22,39,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,33,0,9,0,0,66986,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,11,54,69,27865,0,0,0,0,1,0,0,0,0,0,0,0,0,90830,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,360,3,0,0,78,0,218,0,0,0,12,268,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,614,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,4,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,29560,2 +12,0,0,3,0,13,2,0,10,0,3,0,0,0,3,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,251,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,178,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,37,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,18,2 +11,0,0,3,0,10,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,3,0,0,0,0,0,57,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1272,10,71,0,24,0,0,0,0,0,12,0,0,0,0,0,1,8,608,0,0,0,0,0,0,0,0,35,0,3,0,0,2,0,37,0,0,0,0,191,0,0,0,0,35,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,127,0,122,0,0,0,0,3,55,17,167,0,0,0,0,1,0,0,0,0,0,0,0,0,420,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,77,3,0,0,85,0,173,0,0,0,18,5,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,92,11,0,0,0,0,4,0,0,0,864,0,0,760,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,23,0,0,0,0,1,10,103,0,24,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,540,10,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,104,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,4,0,0,200,14,159,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,45,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,101,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,237,71,0,0,0,0,1,0,0,0,0,0,0,0,0,171,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,86,3,0,0,111,0,161,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,613,0,0,110,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,104,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,103,0,0,0,0,1,17,71,0,104,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,10,2 +4,0,0,2,0,13,3,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,13,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,1,70,0,0,0,0,0,1,0,0,0,0,0,1,0,0,675,13,59,0,2,0,0,0,0,0,21,0,0,0,0,0,1,9,140,0,0,0,0,0,0,0,0,13,0,8,0,0,2,0,15,0,0,0,0,220,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,124,0,78,0,0,0,1,4,39,53,160,0,0,0,0,1,0,0,0,0,0,0,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,10,3,102,2,0,0,119,0,177,0,0,0,39,5,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,98,25,0,0,0,0,0,0,0,0,642,0,0,108,0,0,1,0,0,0,0,0,8,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,13,96,0,2,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,212,42,2 +1,0,0,6,0,35,7,0,34,0,5,0,0,7,6,0,521,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,175,0,0,0,0,0,1,0,0,0,0,0,5,0,0,19054,35,588,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4285,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,580,0,0,1,0,3241,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,683,0,47,0,0,0,1,4,263,1158,668,0,0,0,0,1,0,3,0,0,0,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,214,6,0,0,203,0,337,0,0,0,58,17,0,0,0,0,0,0,0,0,0,586,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3275,1,0,853,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,111,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1897,90,2 +8,0,19,7,4,46,40,9,141,0,23,0,1,7,10,0,766,0,8,12,0,2,0,8,1,10,0,0,5,0,33,0,0,2,5,959,49,54,0,0,147,0,1,0,1,0,0,1,0,0,0,0,1,192,0,0,0,0,0,1,0,0,0,0,0,14,0,0,6384,46,1111,0,3,0,0,0,0,0,16,6,0,0,0,0,8,23,1234,0,9,5,2,0,2,50,0,630,40,2,0,0,5,4,1024,0,1,6,0,1433,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,12,12,12,0,0,0,400,6,62,0,0,0,1,4,284,760,403,0,0,0,0,1,0,3,0,0,0,25,1,0,406,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,3374,64,429,11,0,0,497,0,554,0,0,0,165,25,0,0,0,0,0,0,0,0,0,996,1,0,0,0,23,0,0,0,0,0,146,165,0,38,57,0,0,0,0,0,2862,1,0,115,8,0,1,1,1,0,0,0,3,0,1,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,33,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,37,0,0,0,0,25,54,133,0,36,12,0,0,0,0,0,199,4,0,0,0,0,0,0,0,0,0,0,0,5,0,1,7,0,0,0,0,0,0,0,3,0,0,0,295,0,1,728,50,2 +18,0,0,3,0,22,2,0,4,14,3,0,0,0,17,0,10,0,7,2,0,0,0,1,0,0,0,0,8,0,7,0,1,0,2,0,22,6,0,0,14254,0,0,0,1,0,0,1,0,0,0,0,6,53,0,0,0,0,0,1,0,0,0,0,0,17,0,0,6230,22,49,0,15,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,49,0,15,0,0,73804,0,0,0,0,8,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,54,0,0,0,12,13,52,108,28545,0,0,0,0,1,0,0,0,0,0,0,0,0,95115,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,18,392,3,0,0,79,0,242,0,0,0,13,339,0,0,0,0,0,0,0,0,0,43,1,0,0,0,3,0,0,0,0,7,104,6,0,0,0,0,0,0,0,0,617,0,0,22,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,1,0,7,3,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,24,1,1,1,0,20,0,0,0,0,1,24,2,0,15,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,32889,2 +7,0,0,0,0,18,4,0,20,8,1,0,0,0,11,0,26,0,12,1,0,0,0,2,0,0,0,0,2,0,4,0,0,0,9,0,18,6,0,0,56,0,0,0,1,0,0,1,1,0,0,0,3,38,0,0,0,0,0,1,0,0,0,16,0,9,0,0,205,18,68,0,6,0,0,0,0,0,3,0,0,0,0,0,2,4,20,0,0,9,0,0,0,0,0,26,0,4,0,0,2,0,51,0,8,0,0,266,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,7,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,1,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,38,0,35,0,0,0,6,9,38,36,53,0,0,0,0,1,0,1,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,16,150,2,0,0,138,0,530,0,0,0,59,15,0,0,0,0,0,0,0,0,0,74,1,0,2,0,3,0,0,0,0,4,108,9,0,0,0,0,0,0,0,0,77,0,0,15,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,8,0,0,0,0,1,27,33,0,6,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,37,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,972,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,52,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,64,0,0,0,0,0,7,36,186,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,13,2,0,0,53,0,69,0,0,0,48,3,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,44,0,0,0,0,0,0,0,0,291,0,0,260,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,114,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,282,5,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,11,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,96,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2585,11,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1022,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,349,0,0,0,0,33,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,395,0,126,0,0,0,0,3,60,19,437,0,0,0,0,1,0,0,0,0,0,0,0,0,1114,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,157,3,0,0,110,0,286,0,0,0,39,6,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,720,0,0,888,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,22,0,0,0,0,1,11,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,435,33,2 +6,0,0,2,0,13,2,0,26,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,0,115,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2280,13,89,0,3,0,0,0,0,0,27,0,0,0,0,0,1,9,335,0,0,3,0,0,0,0,0,19,0,7,0,0,2,0,26,0,0,0,0,434,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,262,0,102,0,0,0,0,3,29,15,265,0,0,0,0,1,0,0,0,0,0,0,0,0,588,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,10,3,142,2,0,0,280,0,324,0,0,0,211,24,0,0,0,0,0,0,10,0,0,54,1,0,0,0,2,0,0,0,0,1,114,159,0,0,0,0,0,0,0,0,686,0,0,306,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,548,0,3,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,328,45,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,933,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,478,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,290,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,41,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,113,2,0,0,119,0,135,0,0,0,61,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,27,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +0,0,0,3,0,33,9,0,32,0,2,0,0,2,2,0,532,0,6,2,0,0,0,8,0,11,0,0,4,0,1,0,0,0,2,900,33,6,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,234,0,0,0,0,0,1,0,0,0,0,0,2,0,0,42490,33,587,0,1,0,0,0,0,0,16,0,0,0,0,0,9,21,8250,0,0,2,0,0,0,0,0,93,5,2,0,0,2,0,548,0,0,0,0,3158,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,4655,0,33,0,0,0,0,3,240,1128,4642,0,0,0,0,1,0,3,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,177,3,0,0,199,0,196,0,0,0,55,3,0,0,0,0,0,0,0,0,0,585,1,0,0,0,10,0,0,0,0,0,116,9,0,0,0,0,0,0,0,0,3294,1,0,775,10,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,10,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,35,323,0,2,14,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1825,30,2 +6,0,0,2,0,14,2,0,20,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,2,0,3,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,2,94,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3587,14,103,0,5,0,0,0,0,0,30,0,0,0,0,0,1,11,484,0,0,3,0,0,0,0,0,20,0,11,0,0,2,0,54,0,0,0,0,341,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,407,0,98,0,0,0,4,9,33,21,411,0,0,0,0,1,0,0,0,0,0,0,0,0,698,0,0,0,0,0,0,0,0,0,0,0,0,7,0,4,0,0,0,0,0,0,10,3,125,2,0,0,322,0,398,0,0,0,250,16,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,1,104,215,0,0,0,0,0,0,0,0,694,0,0,449,0,0,1,0,0,0,0,0,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,0,1,17,654,0,11,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,309,47,2 +11,0,0,2,0,25,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,25,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,930,25,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,480,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,293,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,42,0,0,0,0,2,44,10,52,0,0,0,0,1,0,0,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,113,2,0,0,122,0,145,0,0,0,61,1,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,107,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,0,0,0,0,0,1,39,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,241,29,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,39,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,149,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,182,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,33,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1007,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,46,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,71,0,0,0,0,0,7,43,200,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,9,2,0,0,53,0,86,0,0,0,48,1,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,44,0,0,0,0,0,0,0,0,295,0,0,268,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,114,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,306,3,2 +3,0,0,5,2,57,17,8,119,6,28,0,0,2,11,1,966,0,6,9,0,2,1,19,0,11,3,0,5,0,2,0,0,1,18,3462,59,6,72,0,150,0,0,0,1,0,0,5,0,0,0,0,2,353,0,0,0,0,0,1,0,0,0,0,0,23,0,0,54519,57,1496,0,3,0,0,0,0,0,48,6,0,0,0,0,22,38,9035,0,8,18,1,0,1,63,0,625,70,9,0,0,2,2,1197,0,9,0,0,2246,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,12,12,12,0,0,0,7965,0,232,0,0,0,2,8,369,882,8057,0,0,0,0,1,0,5,0,0,0,0,0,0,1750,0,99,0,0,0,0,0,0,0,0,0,0,5,1,5,0,0,0,0,1,0,44,19,379,7,0,0,414,0,492,0,0,0,213,28,0,0,0,0,0,0,4,0,0,1150,1,0,0,0,31,0,0,0,0,1,151,203,0,0,180,0,0,0,0,0,4452,1,0,965,16,0,1,2,0,0,0,0,10,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,41,41,0,0,8,0,0,0,0,0,16,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,7,0,0,0,0,49,77,345,0,7,14,0,0,0,0,0,399,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,1002,115,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,136,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,25,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,5,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14120,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6399,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73193,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,58,0,0,0,0,3,56,61,28281,0,0,0,0,1,0,0,0,0,0,0,0,0,92633,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,449,3,0,0,91,0,218,0,0,0,25,330,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,30841,2 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,962,10,59,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,123,0,0,0,0,0,0,0,0,15,0,5,0,0,2,0,14,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,116,0,83,0,0,0,0,3,26,13,133,0,0,0,0,1,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,8,3,105,2,0,0,244,0,310,0,0,0,180,9,0,0,0,0,0,0,2,0,0,41,1,0,0,0,2,0,0,0,0,0,100,160,0,0,0,0,0,0,0,0,55,0,0,76,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,499,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,197,33,2 +8,0,19,7,4,45,40,9,141,0,23,0,1,7,10,0,768,0,8,12,0,2,0,8,1,10,0,0,5,0,33,0,0,2,5,959,49,54,0,0,147,0,1,0,1,0,0,1,0,0,0,0,1,201,0,0,0,0,0,1,0,0,0,0,0,14,0,0,11113,46,1115,0,3,0,0,0,0,0,17,6,0,0,0,0,8,23,2232,0,9,5,2,0,2,50,0,630,40,2,0,0,5,4,1026,0,1,6,0,1559,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,12,12,12,0,0,0,1095,6,62,0,0,0,1,4,281,758,1099,0,0,0,0,1,0,3,0,0,0,25,1,0,399,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,3349,64,424,11,0,0,499,0,554,0,0,0,166,23,0,0,0,0,0,0,0,0,0,998,1,0,0,0,23,0,0,0,0,0,146,165,0,38,57,0,0,0,0,0,2855,1,0,103,8,0,1,1,1,0,0,0,3,0,1,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,33,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,37,0,0,0,0,25,54,130,0,36,12,0,0,0,0,0,199,4,0,0,0,0,0,0,0,0,0,0,0,5,0,1,7,0,0,0,0,0,0,0,3,0,0,0,183,0,1,706,46,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,2,0,0,49,11,71,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,24,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,9,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,40,5,0,0,45,0,41,0,0,0,10,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,93,2,0,0,0,0,4,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,655,34,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +1,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,1,0,0,65,9,29,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,17,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,7,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,31,0,0,0,0,3,25,4,36,0,0,0,0,1,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,56,2,0,0,64,0,82,0,0,0,10,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,89,5,0,0,0,0,0,0,0,0,25,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,48,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,64,12,2 +11,0,0,3,0,12,99,0,116,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,217,0,0,0,1,0,0,0,0,0,0,0,4,46,0,0,0,0,0,1,0,0,0,0,0,3,0,0,326,12,241,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,26,0,0,3,0,0,1,112,0,837,30,0,0,0,2,0,559,0,0,0,0,206,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,37,0,0,0,8,11,29,760,49,0,0,0,0,1,0,0,0,0,0,0,0,0,536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,53,3,0,0,152,0,140,0,0,0,119,4,0,0,0,0,0,0,0,0,0,242,0,0,0,0,2,0,0,0,0,5,96,228,0,0,98,0,0,0,0,0,25,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,245,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,5,2 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,1,0,0,26,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,59,0,69,0,0,0,29,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,28,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,72,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,30,2 +19,0,0,3,0,14,127,0,311,0,63,0,0,0,2,0,252,0,6,1,0,0,0,1,0,0,141,0,47,0,48,0,0,0,0,0,14,25,0,0,385,0,0,0,1,0,0,1,0,0,0,0,47,117,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2379,14,1061,0,95,0,0,0,0,0,41,0,0,0,0,0,1,3,34,0,0,0,0,0,1,248,0,2107,295,1,0,0,2,0,2030,0,0,0,0,3227,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,55,0,49,0,0,0,94,237,35,1060,59,0,0,0,0,1,0,0,0,0,0,0,0,0,1612,0,1,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,3,303,3,0,0,330,0,256,0,0,0,254,75,0,0,0,0,0,0,0,0,0,761,1,0,0,0,2,0,0,0,0,48,97,601,0,0,686,0,0,0,0,0,738,0,0,55,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,94,0,0,0,0,1,14,97,0,236,0,0,0,0,0,0,464,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,77,2 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,6403,10,38,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,1585,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,14,0,0,0,0,86,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,823,0,32,0,0,0,0,3,26,5,835,0,0,0,0,1,0,0,0,0,0,0,0,0,1908,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,77,2,0,0,113,0,120,0,0,0,47,7,0,0,0,0,0,0,4,0,0,41,1,0,0,0,2,0,0,0,0,0,93,39,0,0,0,0,0,0,0,0,424,0,0,1576,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,158,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,838,10,2 +9,0,0,3,0,11,10,0,63,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,32,0,0,0,2,0,11,6,0,0,113,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,13,0,0,69,11,134,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,35,0,0,2,0,0,1,58,0,459,20,0,0,0,2,0,291,0,0,0,0,71,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,27,433,58,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,127,0,0,0,22,1,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,97,145,0,0,44,0,0,0,0,0,604,0,0,30,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,32,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,31,0,0,0,0,1,13,6,0,32,0,0,0,0,0,0,155,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,3,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,949,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,494,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,286,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,112,2,0,0,119,0,145,0,0,0,61,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,27,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +2,0,0,3,0,11,185,0,941,0,187,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,11,6,0,0,1827,0,1,0,1,0,0,1,0,0,0,0,0,94,0,0,0,0,0,1,0,0,0,0,0,184,0,0,3033,11,1331,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,1194,0,0,0,0,0,1,913,0,6775,15,2,0,0,2,0,4577,0,0,0,0,679,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,622,0,27,0,0,0,0,3,28,6397,638,0,0,0,0,1,0,0,0,0,0,0,0,0,2614,0,1,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,10,3,96,3,0,0,278,0,282,0,0,0,208,8,0,0,0,0,0,0,0,0,0,1337,1,0,0,0,2,0,0,0,0,0,93,2386,0,0,30,0,0,0,0,0,609,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,127,0,1,0,0,0,0,0,0,2220,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,25,2 +9,0,0,3,0,11,7,0,47,0,2,0,0,0,4,12,15,0,7,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,54,0,0,0,1,0,0,11,0,0,0,0,0,148,0,0,0,0,0,1,0,0,0,0,0,4,0,0,3610,11,140,0,1,0,0,0,0,0,52,0,0,0,0,0,2,14,765,0,0,0,0,0,0,0,0,29,0,18,0,0,2,0,51,0,0,0,0,201,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,538,0,148,0,0,0,0,3,30,45,547,0,0,0,0,1,0,0,0,0,0,0,0,0,1320,0,0,0,0,0,0,0,0,0,0,0,0,11,0,4,0,0,0,0,0,0,10,3,122,3,0,0,158,0,263,0,0,0,88,17,0,0,0,0,0,0,14,0,0,94,1,0,0,0,3,0,0,0,0,0,94,54,0,0,0,0,0,0,0,0,822,0,0,779,0,0,1,0,0,0,0,0,28,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,391,0,1,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,665,147,2 +6,0,0,2,0,14,2,0,18,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,0,102,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3564,14,85,0,3,0,0,0,0,0,30,0,0,0,0,0,1,11,483,0,0,3,0,0,0,0,0,20,0,10,0,0,2,0,18,0,0,0,0,594,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,410,0,101,0,0,0,0,3,33,19,414,0,0,0,0,1,0,0,0,0,0,0,0,0,672,0,0,0,0,0,0,0,0,0,0,0,0,7,0,4,0,0,0,0,0,0,10,3,124,2,0,0,322,0,429,0,0,0,250,16,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,1,104,215,0,0,0,0,0,0,0,0,676,0,0,441,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,654,0,3,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,315,51,2 +63,0,0,5,0,49,6,0,26,13,3,0,0,2,18,0,518,0,7,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,15,898,49,21,0,0,56,0,0,0,1,0,0,5,0,0,0,0,1,174,0,0,0,0,0,1,0,0,0,0,0,18,0,0,21538,49,603,0,1,0,0,0,0,0,27,0,0,0,0,0,8,21,3416,0,0,15,0,0,0,0,0,94,5,6,0,0,2,0,551,0,14,0,0,2407,0,0,0,0,13,15,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,2825,0,130,0,0,0,0,3,260,3660,2879,0,0,0,0,1,0,3,0,0,0,0,0,0,2874,0,15,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,34,24,284,5,0,0,272,0,389,0,0,0,126,20,0,0,0,0,0,0,4,0,0,580,1,0,0,0,9,0,0,0,0,1,136,27,0,0,0,0,13,0,26,13,2002,1,0,172,6,0,1,1,0,0,0,0,11,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,0,0,0,0,0,1,64,142,0,2,12,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,5,594,54,2 +12,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,16,0,7,1,0,0,0,1,0,0,0,0,24,0,105,0,0,0,0,0,10,6,0,0,123,0,3,0,1,0,0,3,0,0,0,0,104,86,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1715,10,177,0,129,0,0,0,0,0,12,0,0,0,0,0,1,8,602,0,0,0,0,0,0,0,0,452,0,3,0,0,2,0,143,0,0,0,0,740,0,0,0,0,30,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,130,0,114,0,0,0,208,211,53,278,164,0,0,0,0,1,0,0,0,0,0,0,0,0,393,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,173,3,0,0,85,0,225,0,0,0,18,12,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,105,92,11,0,0,0,0,4,0,0,0,916,0,0,864,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,465,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,232,0,0,0,208,1,10,103,0,129,0,0,1,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,519,21,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,4,0,0,140,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,125,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,168,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,219,5,0,0,229,0,330,0,1,0,55,2,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,36,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,15,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,57,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9411,12,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1204,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,859,0,49,0,0,0,0,3,31,8,876,0,0,0,0,1,0,0,0,0,0,0,0,0,3700,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,88,2,0,0,112,0,109,0,0,0,46,5,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,27,0,0,0,0,0,0,0,0,817,0,0,3220,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1247,21,2 +18,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,0,0,0,0,2,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14617,0,0,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5852,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,72701,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,60,0,0,0,0,3,60,61,29275,0,0,0,0,1,0,0,0,0,0,0,0,0,92418,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,437,3,0,0,91,0,202,0,0,0,25,300,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,615,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,32,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,30512,2 +0,0,0,4,0,27,3,0,41,23,3,0,0,0,28,0,82,0,6,12,0,0,0,1,0,2,68,0,0,0,1,0,0,0,16,0,27,6,0,2,62,0,5,0,1,0,0,6,1,0,0,0,2,141,0,1,0,0,0,1,0,0,0,0,0,28,0,0,3328,27,302,0,1,0,0,0,10,0,33,0,0,0,0,0,12,19,674,0,0,16,0,0,0,0,0,34,0,13,0,0,2,0,324,0,26,0,0,844,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,1,0,60,0,0,0,0,0,0,245,0,102,0,0,0,0,56,57,19,240,0,0,0,0,1,0,0,0,0,0,0,0,0,1003,0,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,2,0,8,45,258,4,0,0,306,0,217,0,0,0,235,23,0,0,0,0,0,0,0,0,0,163,1,0,4,0,13,0,0,0,0,0,140,133,0,0,0,0,0,0,0,0,407,0,0,968,0,0,1,0,1,0,0,0,16,0,1,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,10,10,0,0,0,2,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,3,0,0,0,0,1,43,547,0,71,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,0,0,0,0,0,0,0,0,2,505,63,2 +2,0,0,5,0,20,30,0,98,4,28,0,0,0,10,0,30,0,7,6,0,0,0,1,9,0,0,0,17,0,1,0,0,0,7,0,20,6,25,0,149,0,0,0,1,0,0,7,0,0,0,0,13,294,0,0,0,0,0,1,0,0,0,0,0,19,0,0,2257,20,279,0,17,0,0,0,0,0,36,0,0,0,0,0,2,10,256,0,0,7,0,0,3,79,0,733,110,14,0,0,2,0,390,0,7,0,0,782,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,269,0,104,0,0,0,26,51,43,533,267,0,0,0,0,1,0,2,0,0,0,0,0,0,828,0,0,0,0,0,0,0,0,0,0,0,0,7,0,2,0,0,0,0,0,0,8,10,295,5,0,0,331,0,311,0,0,0,255,27,0,0,0,0,0,0,14,0,0,203,1,0,0,0,16,0,0,0,0,2,116,310,0,0,282,0,1,0,0,0,273,0,0,316,0,0,1,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,29,0,0,0,0,1,27,608,0,18,0,0,0,0,0,0,225,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,355,86,2 +6,0,0,2,0,13,2,0,20,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,2,97,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3615,13,105,0,3,0,0,0,0,0,30,0,0,0,0,0,1,12,500,0,0,3,0,0,0,0,0,18,0,10,0,0,2,0,52,0,0,0,0,426,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,419,0,101,0,0,0,4,9,29,21,423,0,0,0,0,1,0,0,0,0,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,7,0,4,0,0,0,0,0,0,10,3,125,2,0,0,319,0,440,0,0,0,253,28,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,1,103,215,0,0,0,0,0,0,0,0,693,0,0,450,0,0,1,0,0,0,0,0,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,654,0,9,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,308,48,2 +8,0,0,2,0,15,14,0,16,0,2,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,4,0,15,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,4,60,0,0,0,0,0,1,0,0,0,0,0,1,0,0,349,15,56,0,5,0,0,0,0,0,7,0,0,0,0,0,1,4,49,0,0,4,0,0,0,0,0,7,0,4,0,0,2,0,43,0,0,0,0,217,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,63,0,43,0,0,0,8,5,34,19,80,0,0,0,0,1,0,0,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,31,105,2,0,0,110,0,205,0,0,0,40,6,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,1,97,21,0,0,0,0,0,0,0,0,633,0,0,33,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,8,0,0,0,4,1,19,79,0,5,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,12,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,95,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2625,10,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1038,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,463,0,0,0,0,36,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,399,0,121,0,0,0,0,3,56,19,440,0,0,0,0,1,0,0,0,0,0,0,0,0,1164,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,170,3,0,0,107,0,246,0,0,0,39,6,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,723,0,0,895,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,431,16,2 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,1,0,0,891,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,475,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,19,0,0,0,0,3,21,4,41,0,0,0,0,1,0,0,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,53,2,0,0,71,0,89,0,0,0,19,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,59,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,2,2 +12,0,0,8,0,83,35,0,85,6,31,0,0,7,17,0,915,0,7,2,0,0,0,8,1,11,8,0,29,0,5,0,0,0,44,1033,83,6,3,0,139,0,0,0,1,0,0,4,0,0,0,0,6,459,0,0,0,0,0,1,0,0,0,5,0,21,0,0,18128,83,1164,0,30,0,0,0,0,0,55,0,0,0,0,0,9,83,3230,0,0,44,0,0,2,22,0,575,55,8,0,0,2,0,1158,0,13,99,0,4133,0,0,0,0,16,0,3,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,19,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,4,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,1122,0,124,0,0,0,18,26,409,1752,973,0,0,0,0,1,0,7,0,0,0,0,0,0,731,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,106,32,415,8,0,0,454,0,517,0,0,0,278,28,0,0,0,0,0,0,0,0,0,1097,1,0,0,0,11,0,0,0,0,3,169,116,0,0,191,0,0,0,0,0,3305,1,0,348,21,0,1,1,0,0,0,0,6,0,0,0,2,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,21,9,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,91,1,1,1,0,58,0,0,0,0,1,127,483,0,39,14,0,3,0,0,0,216,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1389,604,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,982,11,59,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,126,0,0,0,0,0,0,0,0,15,0,5,0,0,2,0,14,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,119,0,85,0,0,0,0,3,30,13,136,0,0,0,0,1,0,0,0,0,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,8,3,111,2,0,0,247,0,309,0,0,0,180,16,0,0,0,0,0,0,2,0,0,41,1,0,0,0,2,0,0,0,0,0,101,160,0,0,0,0,0,0,0,0,57,0,0,80,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,499,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,201,30,2 +6,0,0,2,0,10,3,0,18,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,2,0,0,0,0,1,0,0,0,2,0,10,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,2,60,0,0,0,0,0,1,0,0,0,0,0,1,0,0,693,10,44,0,3,0,0,0,0,0,7,0,0,0,0,0,1,4,191,0,0,2,0,0,0,0,0,7,0,4,0,0,2,0,18,0,0,0,0,110,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,53,0,27,0,0,0,2,5,24,5,69,0,0,0,0,1,0,0,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,3,78,2,0,0,99,0,164,0,0,0,36,3,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,0,92,23,0,0,0,0,0,0,0,0,617,0,0,386,0,0,1,0,1,0,0,0,2,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,181,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,108,0,3,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,10,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,99,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2561,10,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1020,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,471,0,0,0,0,33,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,391,0,123,0,0,0,0,3,55,19,432,0,0,0,0,1,0,0,0,0,0,0,0,0,1126,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,176,3,0,0,107,0,276,0,0,0,39,5,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,719,0,0,883,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,423,34,2 +3,0,0,6,0,37,63,0,131,1,15,0,0,6,5,0,748,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,2,835,37,6,0,0,195,0,2,0,1,0,0,2,0,0,0,0,1,215,0,0,0,0,0,1,0,0,0,0,0,7,0,0,44314,37,950,0,2,0,0,0,0,0,14,0,0,0,0,0,8,23,10333,0,0,2,0,0,1,82,0,791,50,3,0,0,2,0,1193,0,0,1,0,5908,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1932,0,59,0,0,0,1,4,258,1555,1928,0,0,0,0,1,0,3,0,0,0,0,0,0,688,0,1,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,1,0,86,19,238,6,0,0,301,0,366,0,0,0,126,6,0,0,0,0,0,0,0,0,0,974,1,0,0,0,9,0,0,0,0,0,121,221,0,0,81,0,0,0,0,0,6654,1,0,800,6,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,6,361,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,5,0,0,0,0,1,39,211,0,4,12,0,0,0,0,0,243,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4316,40,2 +0,0,0,1,0,12,6,0,15,0,5,0,0,0,2,0,10,0,7,1,0,0,0,1,0,2,0,0,0,0,1,0,0,0,2,0,12,6,0,0,27,0,0,0,0,0,0,0,0,0,0,0,2,34,0,0,0,0,0,1,0,0,0,0,0,2,0,0,325,12,46,0,3,0,0,0,0,0,3,0,0,0,0,0,1,1,23,0,0,2,0,0,1,11,0,100,15,0,0,0,2,0,61,0,0,0,0,880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,24,0,0,0,2,5,27,399,38,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,13,52,1,0,0,53,0,114,0,0,0,17,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,2,0,0,0,0,2,94,23,0,0,30,0,0,0,0,0,24,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,14,2,0,3,0,0,0,0,0,0,34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,97,2 +6,0,0,2,0,13,2,0,22,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,2,0,3,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,8,0,0,0,0,2,156,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1831,13,111,0,5,0,0,0,0,0,32,0,0,0,0,0,1,13,313,0,0,3,0,0,0,0,0,22,0,12,0,1,2,0,56,0,0,0,0,398,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,261,0,110,0,0,0,4,9,29,22,267,0,0,0,0,1,0,0,0,0,0,0,0,0,615,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,10,3,126,2,0,0,249,0,440,0,0,0,180,18,0,0,0,1,0,0,6,0,0,60,1,0,0,0,2,0,0,0,0,1,107,139,0,0,0,0,0,0,0,0,692,0,0,252,0,0,1,0,0,0,0,0,15,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,4,0,0,0,0,1,16,553,0,11,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,323,52,2 +0,0,0,2,0,13,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,13,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,58,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9598,13,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1245,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,871,0,51,0,0,0,0,3,35,8,888,0,0,0,0,1,0,0,0,0,0,0,0,0,3720,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,98,2,0,0,117,0,110,0,0,0,48,14,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,98,28,0,0,0,0,0,0,0,0,832,0,0,3263,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,16,99,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1294,23,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,948,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,491,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,283,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,37,0,45,0,0,0,0,3,40,10,53,0,0,0,0,1,0,0,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,112,2,0,0,119,0,151,0,0,0,61,3,0,0,0,0,0,1,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,787,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,245,27,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,1,0,0,0,0,2,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,50,0,0,0,0,0,1,0,0,0,0,0,4,0,0,142,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,139,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,176,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,212,5,0,0,229,0,328,0,1,0,55,3,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,28,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,16,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,34,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 +11,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,51,0,0,0,0,0,1,0,0,0,0,0,3,0,0,315,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,24,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,36,0,0,0,8,11,28,400,48,0,0,0,0,1,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,54,3,0,0,62,0,130,0,0,0,29,7,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,23,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,5,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,49,11,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,24,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,38,0,0,0,8,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,87,20,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,54,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9549,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1230,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,868,0,48,0,0,0,0,3,27,8,885,0,0,0,0,1,0,0,0,0,0,0,0,0,3775,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,87,2,0,0,109,0,109,0,0,0,46,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,825,0,0,3262,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1268,25,2 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1010,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,37,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,71,0,0,0,0,0,7,43,201,0,0,0,0,0,0,0,0,0,0,0,0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,7,2,0,0,53,0,87,0,0,0,48,1,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,44,0,0,0,0,0,0,0,0,301,0,0,268,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,114,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,308,3,2 +4,0,0,2,0,13,3,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,13,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,1,65,0,0,0,0,0,1,0,0,0,0,0,1,0,0,660,13,59,0,2,0,0,0,0,0,21,0,0,0,0,0,1,9,136,0,0,0,0,0,0,0,0,13,0,8,0,0,2,0,15,0,0,0,0,182,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,123,0,78,0,0,0,1,4,39,55,160,0,0,0,0,1,0,0,0,0,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,10,3,103,2,0,0,119,0,178,0,0,0,39,6,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,98,25,0,0,0,0,0,0,0,0,638,0,0,108,0,0,1,0,0,0,0,0,8,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,13,96,0,2,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,206,42,2 +5,0,0,5,5,16,124,20,812,32,135,0,0,0,44,0,733,0,6,12,0,10,0,1,1,0,339,0,70,0,113,1,0,5,4,0,21,6,1,0,1319,0,0,0,1,0,0,2,1,0,0,0,114,167,0,0,0,0,0,1,1,0,0,0,0,160,0,0,12149,16,2698,0,184,0,0,0,0,0,15,15,0,0,0,0,2,6,88,0,20,4,5,0,1,619,0,4690,20,10,0,0,2,5,5519,0,33,0,0,5032,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0,0,0,106,0,79,0,0,0,228,569,1799,5239,162,0,0,0,0,1,0,1,0,0,0,0,0,0,3017,0,16,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,230,41,573,10,0,0,437,0,513,0,0,0,224,117,0,0,0,0,0,0,0,0,0,1854,1,0,11,0,24,0,0,0,0,1,128,1608,0,0,46,0,0,0,0,0,4573,0,0,170,0,0,1,0,0,0,0,0,18,0,0,0,1,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,299,0,0,0,0,41,25,4,0,523,0,0,0,0,0,0,1552,6,0,0,0,0,0,0,0,0,0,0,0,5,0,1,34,0,0,0,0,0,0,0,0,0,0,0,10,0,1,806,8686,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,2,0,0,48,11,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,23,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,40,5,0,0,45,0,38,0,0,0,10,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,93,2,0,0,0,0,4,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1023,20,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,48,11,71,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,23,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,9,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,41,0,0,0,8,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,84,34,2 +7,0,0,4,0,12,2,0,8,8,3,0,0,0,12,0,18,0,6,1,0,0,0,1,0,6,0,0,3,0,1,0,0,0,1,0,12,32,0,0,53,0,1,0,1,0,0,1,0,0,0,0,6,36,0,0,0,0,0,1,0,0,0,0,0,12,0,0,991,12,48,0,10,0,0,0,0,0,4,0,0,0,0,0,1,4,387,0,0,1,0,0,0,0,0,22,0,1,0,0,2,0,46,0,9,0,0,206,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,26,0,0,0,6,8,27,46,48,0,0,0,0,1,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,12,99,4,0,0,99,0,251,0,0,0,37,8,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,7,94,26,0,0,0,0,0,0,0,0,82,0,0,728,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,13,67,0,10,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,75,132,2 +6,0,0,2,0,13,2,0,18,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2320,13,77,0,3,0,0,0,0,0,24,0,0,0,0,0,1,9,208,0,0,3,0,0,0,0,0,16,0,10,0,0,2,0,18,0,0,0,0,265,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,184,0,79,0,0,0,0,3,29,10,186,0,0,0,0,1,0,0,0,0,0,0,0,0,447,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,10,3,117,2,0,0,255,0,414,0,0,0,188,10,0,0,0,0,0,0,2,0,0,46,1,0,0,0,2,0,0,0,0,1,102,154,0,0,0,0,0,0,0,0,645,0,0,214,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,449,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,214,39,2 +8,0,0,7,0,46,6,0,37,4,7,0,0,6,9,0,648,0,7,3,0,0,0,7,0,10,0,0,5,0,1,0,0,0,8,898,46,6,0,0,55,0,0,0,1,0,0,3,0,0,0,0,1,209,0,0,0,0,0,1,0,0,0,0,0,7,0,0,7112,46,739,0,3,0,0,0,0,0,28,0,0,0,0,0,9,21,1377,0,0,8,0,0,0,0,0,199,20,6,1,0,2,0,703,0,4,2,0,1802,0,2,0,0,0,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,457,0,67,0,0,0,0,3,302,404,454,0,0,0,0,1,0,4,0,0,0,0,0,0,416,0,0,0,0,2,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,84,29,246,7,0,0,303,0,472,0,0,0,142,13,0,0,0,0,0,0,0,0,0,720,1,0,0,0,10,0,0,0,0,0,129,75,0,0,11,0,0,0,0,0,1923,1,0,130,6,0,1,1,0,0,0,0,4,0,0,0,2,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,2,0,0,0,0,1,54,307,0,4,12,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,3,635,90,2 +15,0,0,6,0,53,10,0,57,9,11,0,0,6,9,0,1112,0,6,2,0,0,0,8,0,10,0,0,9,0,1,0,0,0,13,1367,53,6,0,0,61,0,0,0,1,0,0,3,1,0,0,0,1,357,0,0,0,0,0,1,0,0,0,0,0,7,0,0,45872,53,1231,0,7,0,0,0,0,0,29,0,0,0,0,0,9,20,8278,0,0,13,0,0,0,0,0,221,20,6,0,0,2,0,1183,0,4,6,0,3705,0,1,0,0,0,0,2,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,5598,0,78,0,0,0,0,3,401,1026,5594,0,0,0,0,1,0,10,0,0,0,0,0,0,427,0,0,0,0,2,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,84,41,298,6,0,0,344,0,395,0,0,0,161,12,0,0,0,0,0,0,0,0,0,1211,1,0,2,0,10,0,0,0,0,0,136,71,0,0,31,0,0,0,0,0,3939,1,0,79,10,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,10,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,6,0,0,0,0,1,66,325,0,8,12,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1476,80,2 +19,0,0,7,0,84,7,0,38,37,3,0,0,2,51,8,22,0,7,6,0,0,0,8,0,8,0,0,9,0,3,0,0,0,47,0,84,56,0,0,578,0,0,0,1,0,0,2,0,0,0,0,3,133,0,8,0,0,0,1,0,0,0,13,0,57,0,0,2661,84,216,0,10,0,0,0,0,1,49,0,0,0,2,0,13,21,353,0,0,47,0,0,0,0,0,102,5,4,0,0,2,0,153,0,45,0,0,2226,0,0,2,0,13,6,2,0,4,0,0,1,0,0,0,145,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,8,0,0,0,9,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,2,0,1,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,0,0,0,32,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,44,10,10,10,0,0,0,253,0,149,0,0,0,4,7,286,291,378,0,0,0,0,1,0,4,0,0,2,0,0,0,1649,0,2,0,0,0,4,0,0,0,0,0,0,4,1,8,0,0,0,0,1,0,34,63,356,7,0,0,509,0,866,0,0,0,375,44,0,0,0,0,0,0,3,0,0,138,1,0,0,0,14,0,0,0,0,3,174,180,0,0,0,0,1,0,2,2,801,0,0,144,3,0,1,3,0,0,0,0,5,0,2,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,105,1,1,1,0,11,0,0,0,0,1,131,500,0,11,9,0,0,0,0,0,1449,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,39,0,0,0,0,0,0,0,0,0,0,0,0,0,1,507,343,2 +48,0,0,21,7,99,77,8,618,53,196,0,0,0,77,0,215,0,9,12,0,10,4,19,1,4,58,0,16,0,17,3,0,7,59,0,107,97,8,0,1083,0,0,0,1,0,0,3,0,0,0,0,23,369,0,0,0,0,0,1,0,0,0,116,0,119,0,0,4800,99,1611,0,37,0,0,0,0,0,14,18,0,0,0,0,19,24,1406,0,8,59,7,0,5,472,0,3943,655,3,0,0,4,7,2610,0,67,0,0,4443,0,0,0,0,24,0,0,0,0,0,0,1,0,0,0,26,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,2,0,10,0,25,0,0,0,0,0,0,14,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,1,0,0,0,0,0,0,0,0,3,1,0,0,0,2,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,64,2,2,2,0,0,2,995,2,278,0,0,0,42,123,244,3988,1243,0,0,0,0,1,0,0,0,0,0,1,1,0,3582,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,2,0,115,186,886,32,0,0,811,0,1545,0,1,0,396,197,0,0,0,0,0,0,4,0,0,1192,1,0,0,0,46,0,0,0,0,21,229,1042,0,0,2253,0,4,0,0,0,632,0,0,260,0,0,1,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,54,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,29,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,1,117,1,1,1,0,103,0,0,0,0,106,167,312,0,98,0,0,0,0,0,0,1125,18,0,0,0,0,0,0,0,0,0,0,0,8,0,1,61,0,0,0,0,0,0,0,0,0,0,0,13,0,4,720,1565,2 +2,0,0,3,0,9,2,0,11,0,6,0,0,0,2,0,10,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,3,0,0,215,9,31,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,1,7,0,70,15,0,0,0,2,0,39,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,18,0,0,0,0,3,23,59,23,0,0,0,0,1,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,52,3,0,0,97,0,115,0,0,0,64,7,0,0,0,0,0,0,0,0,0,37,0,0,0,0,2,0,0,0,0,0,91,71,0,0,30,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,153,0,1,0,0,0,0,0,0,29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,15,2 +11,0,0,3,0,10,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,2,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1295,10,71,0,24,0,0,0,0,0,12,0,0,0,0,0,1,8,631,0,0,0,0,0,0,0,0,35,0,3,0,0,2,0,37,0,0,0,0,368,0,0,0,0,38,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,128,0,120,0,0,0,0,3,55,17,168,0,0,0,0,1,0,0,0,0,0,0,0,0,409,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,74,3,0,0,83,0,173,0,0,0,16,1,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,90,11,0,0,0,0,4,0,0,0,867,0,0,759,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,23,0,0,0,0,1,10,103,0,24,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,537,14,2 +8,0,0,3,0,62,10,0,70,8,6,0,0,6,12,0,871,0,11,2,0,0,0,10,0,10,0,0,11,0,7,0,0,0,21,4,62,13,0,0,131,0,4,0,1,0,0,6,1,0,0,0,7,203,0,0,0,0,0,1,0,0,0,8,0,10,0,0,40566,62,1017,0,15,0,0,0,0,0,30,0,0,0,0,0,11,32,13852,0,0,21,0,0,0,17,0,354,20,13,0,0,2,0,1042,0,9,0,0,8044,0,0,0,0,10,1,1,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,7,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,44,12,12,12,0,0,0,7555,0,110,0,0,0,13,15,290,444,7536,0,0,0,0,1,0,3,0,0,0,0,0,0,2321,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,84,26,350,3,0,0,379,0,961,0,0,0,197,1080,0,0,0,0,0,0,0,0,0,986,1,0,2,0,12,0,0,0,0,7,145,130,0,0,1,0,0,0,0,0,5408,1,0,289,6,0,1,1,0,0,0,0,16,0,0,0,3,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,6,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,23,0,0,0,8,1,83,301,0,16,12,0,0,0,0,0,156,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3817,124,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,172,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,29,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,191,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,66,3,0,0,42,0,150,0,0,0,6,4,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,647,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,171,2 +0,0,0,3,0,12,2,0,25,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,19,0,1,0,1,0,0,1,0,0,0,0,0,59,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1981,12,49,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,755,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,15,0,1,0,0,174,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,187,0,22,0,0,0,0,3,26,8,198,0,0,0,0,1,0,0,0,0,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,80,3,0,0,113,0,215,0,0,0,51,2,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,0,94,35,0,0,0,0,0,0,0,0,303,0,0,924,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,111,0,1,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,364,18,2 +9,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,33,0,0,0,3,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,11,0,0,68,11,126,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,35,0,0,3,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,71,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,27,378,59,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,60,0,122,0,0,0,26,1,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,124,0,0,44,0,0,0,0,0,604,0,0,32,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,33,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,32,0,0,0,0,1,14,3,0,33,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,3,2 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 +0,0,0,4,0,11,2,0,8,0,4,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,33,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,5,0,0,10728,11,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,4317,0,0,1,0,0,0,0,0,8,0,1,0,0,2,0,21,0,1,0,0,2263,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1978,0,23,0,0,0,0,3,28,6,1989,0,0,0,0,1,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,4,88,4,0,0,101,0,153,0,0,0,43,5,0,0,0,0,0,0,0,0,0,39,1,0,0,0,2,0,0,0,0,0,96,30,0,0,0,0,0,0,0,0,2164,0,0,740,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,73,0,1,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2152,11,2 +11,0,0,2,0,25,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,25,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,1,0,0,957,25,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,502,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,280,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,43,0,0,0,0,3,44,10,52,0,0,0,0,1,0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,116,2,0,0,122,0,147,0,0,0,61,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,107,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,0,0,0,0,0,1,39,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,240,29,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,164,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,193,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,65,3,0,0,42,0,149,0,0,0,6,3,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,171,2 +17,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,37,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5246,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,39209,0,0,0,0,6,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,54,0,0,0,14,17,52,37,35707,0,0,0,0,1,0,0,0,0,0,0,0,0,99505,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,323,3,0,0,75,0,223,0,0,0,12,220,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,614,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,12,1,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,25,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,29785,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,26,0,21,0,0,0,1,0,0,0,0,0,6,0,0,208,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,73,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,70,0,50,0,0,0,0,3,58,44,114,0,0,0,0,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,85,3,0,0,83,0,115,0,0,0,29,5,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,208,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,15,2 +12,0,0,3,0,17,2,0,15,0,3,0,0,0,3,0,15,0,7,1,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,17,6,0,0,14,0,3,0,1,0,0,11,0,0,0,0,0,119,0,0,0,0,0,1,0,0,0,0,0,3,0,0,4930,17,118,0,5,0,0,0,0,0,45,0,0,0,0,0,1,24,968,0,0,6,0,0,0,0,0,28,0,17,0,2,2,0,21,0,1,0,0,793,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,16,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,4,1,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,455,0,103,0,0,0,0,3,37,30,453,0,0,0,0,1,0,0,0,0,0,0,0,0,1135,0,0,0,0,0,0,0,0,0,0,0,0,11,0,10,0,0,0,0,0,0,8,4,127,3,0,0,183,0,283,0,0,0,112,19,0,0,0,2,0,0,4,0,0,45,1,0,0,0,2,0,0,0,0,1,99,67,0,0,0,0,0,0,0,0,384,0,0,1354,0,0,1,0,1,0,0,0,17,0,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,4,0,0,0,0,1,23,440,0,5,0,0,1,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,665,139,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,11,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,92,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2605,11,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1030,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,483,0,0,0,0,35,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,400,0,124,0,0,0,0,3,59,19,442,0,0,0,0,1,0,0,0,0,0,0,0,0,1158,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,160,3,0,0,110,0,285,0,0,0,39,7,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,721,0,0,894,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,11,170,0,23,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,434,31,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,55,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9618,12,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1239,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,876,0,49,0,0,0,0,3,31,8,893,0,0,0,0,1,0,0,0,0,0,0,0,0,3792,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,90,2,0,0,112,0,109,0,0,0,46,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,27,0,0,0,0,0,0,0,0,835,0,0,3289,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,96,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1282,20,2 +11,0,0,3,0,12,96,0,113,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,211,0,0,0,1,0,0,0,0,0,0,0,4,48,0,0,0,0,0,1,0,0,0,0,0,3,0,0,331,12,233,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,31,0,0,1,0,0,1,109,0,800,30,0,0,0,2,0,542,0,0,0,0,280,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,43,0,0,0,8,5,29,731,55,0,0,0,0,1,0,0,0,0,0,0,0,0,534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,50,3,0,0,149,0,140,0,0,0,110,4,0,0,0,0,0,0,0,0,0,236,0,0,0,0,2,0,0,0,0,1,96,222,0,0,98,0,0,0,0,0,26,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,4,1,13,17,0,5,0,0,0,0,0,0,243,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,5,2 +9,0,0,3,0,13,2,0,14,0,3,0,0,0,3,0,16,0,6,2,0,0,0,1,0,0,0,0,0,0,1,1,2,0,2,0,13,12,0,0,10,0,0,0,1,0,0,1,0,0,0,0,1,56,0,0,0,0,0,1,0,0,0,0,0,3,0,0,436,13,57,0,2,0,0,0,0,0,13,0,0,0,0,0,2,4,79,0,0,2,0,0,0,0,0,8,0,1,0,0,2,0,15,0,1,0,0,237,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,68,0,51,0,0,0,2,3,29,63,114,0,0,0,0,1,0,0,0,0,6,0,0,0,442,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,139,3,0,0,121,0,166,0,0,0,55,10,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,98,27,0,0,0,0,3,0,6,3,46,0,0,41,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,36,0,0,0,0,1,15,70,0,2,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,33,2 +8,0,0,3,0,10,2,0,22,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,20,0,1,0,0,0,0,0,10,6,0,0,57,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,2,0,0,244,10,65,0,21,0,0,0,0,0,3,0,0,0,0,1,1,4,114,0,0,0,0,0,0,0,0,26,0,1,0,0,2,0,41,0,0,0,0,118,0,0,0,0,38,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,75,0,48,0,0,0,0,3,49,6,91,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,73,3,0,0,79,0,134,0,0,0,15,1,0,0,0,0,0,0,0,0,0,50,1,0,0,0,2,0,0,0,0,0,90,3,0,0,0,0,0,0,0,0,665,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,20,0,0,0,0,1,10,73,0,21,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,3,2 +1,0,0,6,1,39,35,1,67,2,10,0,0,9,6,0,811,0,9,2,0,0,0,7,0,10,0,0,6,0,1,0,0,1,3,6761,40,54,0,0,54,0,0,0,1,0,0,1,0,0,0,0,1,438,0,0,0,0,0,1,0,0,0,2,0,2,0,0,12408,39,905,0,4,0,0,0,0,0,17,0,0,0,0,0,8,34,1924,0,1,3,1,0,1,0,0,291,30,1,0,0,4,1,828,0,1,32,0,1874,0,0,0,0,3,1,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,551,0,46,0,0,0,2,5,414,571,540,0,0,0,0,1,0,4,0,0,0,0,0,0,280,1,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,217,28,391,7,0,0,401,0,481,0,1,0,134,13,0,0,0,0,0,0,0,0,0,947,1,0,0,0,9,0,0,0,0,2,157,9,0,0,35,0,0,0,0,0,2595,1,0,64,9,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,1,1,1,0,9,0,0,0,0,9,43,27,0,5,12,0,0,0,0,0,103,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,2,824,44,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,7,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +10,0,0,8,3,34,42,9,86,13,8,0,0,0,31,0,82,0,14,3,0,6,0,2,1,0,0,0,15,0,7,0,0,2,11,4,37,55,3,0,125,0,0,0,1,0,0,4,1,0,0,0,7,199,0,0,0,0,0,1,0,0,0,0,0,30,0,0,4771,34,372,0,22,0,0,0,0,0,40,6,0,0,0,0,2,9,924,0,9,11,2,0,1,0,0,103,0,9,0,0,4,3,121,0,20,0,0,4011,0,0,0,0,26,2,0,0,1,0,0,1,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,5,0,5,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,572,0,219,0,0,0,14,26,85,1336,589,0,0,0,0,1,0,0,0,0,0,0,0,0,3426,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,112,54,1029,11,0,0,691,0,761,0,1,0,284,158,0,0,0,0,0,0,0,0,0,263,1,0,9,0,12,0,0,0,0,8,257,169,0,0,0,0,0,0,0,0,215,0,0,54,0,0,1,0,0,0,0,0,18,0,0,0,5,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,45,1,1,1,0,28,0,0,0,0,25,48,405,0,22,0,0,0,0,0,0,114,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,13,0,0,0,0,0,0,0,0,0,0,0,5,0,4,1726,1696,2 +3,0,0,5,2,57,17,8,120,6,28,0,0,2,11,1,1005,0,6,8,0,2,1,20,0,11,3,0,5,0,2,0,0,1,18,3454,59,6,58,0,150,0,0,0,1,0,0,5,0,0,0,0,2,313,0,0,0,0,0,1,0,0,0,0,0,23,0,0,48644,57,1534,0,3,0,0,0,0,0,48,6,0,0,0,0,22,38,8005,0,8,18,1,0,1,63,0,625,70,9,0,0,2,2,1237,0,9,0,0,2258,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,12,12,12,0,0,0,7054,0,233,0,0,0,2,8,372,877,7144,0,0,0,0,1,0,4,0,0,0,0,0,0,1666,0,97,0,0,0,0,0,0,0,0,0,0,5,1,6,0,0,0,0,1,0,44,19,349,7,0,0,414,0,488,0,0,0,209,21,0,0,0,0,0,0,4,0,0,1190,1,0,0,0,31,0,0,0,0,1,150,203,0,0,180,0,0,0,0,0,4445,1,0,851,16,0,1,2,0,0,0,0,10,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,41,41,0,0,5,0,0,0,0,0,16,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,7,0,0,0,0,51,77,224,0,7,14,0,0,0,0,0,398,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,950,107,2 +2,0,0,3,0,56,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,9,0,0,0,0,1,0,0,0,47,0,56,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,9,40,0,0,0,0,0,1,0,0,0,0,0,10,0,0,462,56,96,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,39,0,0,47,0,0,1,47,0,390,35,0,0,0,2,0,236,0,0,0,0,681,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,47,0,87,0,0,0,9,12,71,369,80,0,0,0,0,0,0,0,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,185,3,0,0,180,0,228,0,0,0,147,3,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,11,138,112,0,0,84,0,0,0,0,0,598,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,0,0,0,0,0,1,103,47,0,10,0,0,0,0,0,0,141,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,6,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,53,0,0,0,0,0,1,0,0,0,0,0,4,0,0,154,12,96,0,3,0,0,0,0,0,4,0,0,0,0,0,1,3,32,0,1,2,1,0,1,0,0,43,0,2,0,0,4,1,19,0,2,0,0,115,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,39,0,0,0,4,4,31,11,54,0,0,0,0,1,0,0,0,0,0,0,0,0,176,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,214,5,0,0,230,0,328,0,1,0,55,5,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,116,0,0,13,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,40,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,102,16,2 +5,0,0,2,0,10,2,0,10,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,10,0,41,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,40,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1085,10,81,0,51,0,0,0,0,0,4,0,0,0,0,0,1,4,489,0,0,2,0,0,0,0,0,17,0,1,0,0,2,0,58,0,0,0,0,179,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,26,0,0,0,80,43,26,26,50,0,0,0,0,1,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,85,2,0,0,67,0,192,0,0,0,16,9,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,1,90,5,0,0,0,0,0,0,0,0,837,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,401,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,90,0,0,0,80,1,12,50,0,51,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,243,7,2 +8,0,0,3,0,153,3,0,141,3,3,0,0,0,7,0,789,0,6,1,0,0,0,1,0,2,411,0,0,0,138,0,0,0,54,0,153,291,0,0,118,0,0,0,1,0,0,0,0,0,0,0,139,159,0,0,0,0,0,1,0,0,0,0,0,7,0,0,2402,153,1404,0,140,0,0,0,0,0,1,0,0,0,0,0,1,1,19,0,0,54,0,0,0,0,0,7,0,0,0,0,2,0,2533,0,5,0,0,4645,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0,0,0,32,0,174,0,0,0,276,464,171,288,143,0,0,0,0,1,0,0,0,0,0,0,0,0,1209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,779,3,0,0,690,0,431,0,0,0,387,44,0,0,0,0,0,0,0,0,0,949,0,0,0,0,2,0,0,0,0,3,259,104,0,0,0,0,0,0,0,0,1581,0,0,49,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,138,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,150,1,1,1,0,137,0,0,0,0,1,207,58,0,551,0,0,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,467,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,4,0,0,200,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,44,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,101,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,178,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,86,3,0,0,111,0,162,0,0,0,46,1,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,613,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,11,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,48,11,71,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,23,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,9,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,41,0,0,0,8,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,90,34,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,71,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,983,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,47,2,0,0,44,0,134,0,0,0,5,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,24,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,938,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,483,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,300,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,41,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,113,2,0,0,119,0,134,0,0,0,61,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,26,2 +0,0,0,5,0,38,38,0,59,2,37,0,0,8,5,0,951,0,6,1,0,0,0,8,0,11,0,0,41,0,1,0,0,0,2,15164,38,6,0,0,49,0,2,0,1,0,0,2,0,0,0,0,1,507,0,0,0,0,0,1,0,0,0,0,0,2,0,0,50086,38,1224,0,40,0,0,0,0,0,76,0,0,0,0,0,8,164,6504,0,0,2,0,0,0,0,0,514,30,3,0,0,2,0,1087,0,0,185,0,4009,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,2283,0,45,0,0,0,21,24,714,7852,2257,0,0,0,0,1,0,3,0,0,0,0,0,0,3055,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,137,133,319,5,0,0,396,0,450,0,0,0,233,5,0,0,0,0,0,0,0,0,0,1104,1,0,0,0,9,0,0,0,0,1,174,43,0,0,242,0,0,0,0,0,4541,1,0,3423,36,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,36,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,102,0,0,0,0,1,40,179,0,41,12,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2163,48,2 +19,0,0,3,0,13,128,0,298,0,56,0,0,0,2,0,252,0,6,1,0,0,0,1,0,0,141,0,47,0,48,0,0,0,0,0,13,25,0,0,373,0,0,0,1,0,0,1,0,0,0,0,47,103,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2368,13,1042,0,95,0,0,0,0,0,41,0,0,0,0,0,1,3,36,0,0,0,0,0,1,235,0,2002,260,1,0,0,2,0,1986,0,0,0,0,2687,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,55,0,47,0,0,0,94,237,31,1036,59,0,0,0,0,1,0,0,0,0,0,0,0,0,1601,0,1,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,3,283,3,0,0,327,0,251,0,0,0,254,77,0,0,0,0,0,0,0,0,0,742,1,0,0,0,2,0,0,0,0,48,96,583,0,0,609,0,0,0,0,0,700,0,0,58,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,94,0,0,0,0,1,13,93,0,236,0,0,0,0,0,0,445,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,73,2 +6,0,0,2,0,14,2,0,18,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,0,92,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3573,14,82,0,3,0,0,0,0,0,28,0,0,0,0,0,1,11,481,0,0,3,0,0,0,0,0,19,0,9,0,0,2,0,18,0,0,0,0,353,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,402,0,97,0,0,0,0,3,33,19,407,0,0,0,0,1,0,0,0,0,0,0,0,0,661,0,0,0,0,0,0,0,0,0,0,0,0,7,0,4,0,0,0,0,0,0,10,3,124,2,0,0,321,0,439,0,0,0,250,20,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,1,104,215,0,0,0,0,0,0,0,0,678,0,0,453,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,654,0,3,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,309,47,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2500,10,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1003,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,346,0,0,0,0,35,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,383,0,130,0,0,0,0,3,55,19,425,0,0,0,0,1,0,0,0,0,0,0,0,0,1123,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,174,3,0,0,107,0,270,0,0,0,39,7,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,714,0,0,867,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,429,33,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,22,0,0,0,0,0,1,0,0,0,0,0,1,0,0,92,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,119,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,33,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,52,2,0,0,44,0,164,0,0,0,5,5,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,4,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,55,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,4,2 +4,0,0,4,0,20,541,0,5518,18,1487,0,0,0,24,0,78,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,11,0,20,171,0,0,10180,0,0,0,1,0,0,4,0,0,0,0,0,257,0,0,0,0,0,1,0,0,0,0,0,1029,0,0,7097,20,7750,0,1,0,0,0,0,0,58,0,0,0,0,1,1,6,254,0,0,11,0,0,2,5510,0,41567,2395,6,0,0,2,0,26184,0,21,0,0,994,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,2,0,0,0,0,74,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,213,0,124,0,0,0,0,3,45,32550,302,0,0,0,0,1,0,0,0,0,0,0,0,0,3405,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,2,0,8,24,207,4,0,0,886,0,465,0,0,0,830,24,0,0,0,0,0,0,4,0,0,7654,1,0,0,0,2,0,0,0,0,0,103,14955,0,0,7210,0,0,0,0,0,220,0,0,173,0,0,1,6,1,0,0,0,8,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,0,0,0,0,0,1,31,289,0,1,0,0,0,0,0,0,12909,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,4,376,113,2 +7,0,0,3,0,29,5,0,11,0,2,0,0,2,2,0,23,0,6,2,0,0,0,6,0,8,6,0,2,0,3,0,0,0,5,0,29,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,3,67,0,0,0,0,0,1,0,0,0,0,0,2,0,0,659,29,47,0,3,0,0,0,0,0,3,0,0,0,0,0,7,12,155,0,0,5,0,0,0,0,0,72,5,0,0,0,2,0,58,0,0,0,0,598,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,91,0,56,0,0,0,4,10,182,16,95,0,0,0,0,1,0,3,0,0,0,0,0,0,208,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,96,3,0,0,112,0,204,0,0,0,42,4,0,0,0,0,0,0,0,0,0,51,0,0,0,0,8,0,0,0,0,1,111,25,0,0,0,0,0,0,0,0,688,0,0,2,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,3,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,2,0,0,0,0,1,34,69,0,10,9,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,40,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,2,0,0,0,5,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,27,0,21,0,0,0,1,0,0,0,0,0,6,0,0,213,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,76,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,49,0,0,0,0,3,57,44,113,0,0,0,0,0,0,0,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,84,3,0,0,83,0,113,0,0,0,29,4,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,211,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,3,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,15,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,135,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,29,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,18,2 +13,0,0,6,0,53,9,0,49,3,10,0,0,7,11,0,859,0,6,1,0,0,0,8,0,10,0,0,9,0,13,0,0,0,11,945,53,6,0,0,60,0,6,0,1,0,0,7,0,0,0,0,13,216,0,0,0,0,0,1,0,0,0,0,0,7,0,0,8549,53,986,0,19,0,0,0,0,0,36,0,0,0,0,0,8,30,1723,0,0,11,0,0,0,0,0,222,25,13,0,0,2,0,938,0,4,6,0,1940,0,0,0,0,12,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,603,0,125,0,0,0,25,10,286,493,573,0,0,0,0,1,0,3,0,0,0,0,0,0,728,0,0,0,0,0,0,0,0,0,1,0,0,7,1,0,0,0,0,0,1,0,108,20,270,6,0,0,297,0,418,0,0,0,115,15,0,0,0,0,0,0,0,0,0,951,1,0,0,0,9,0,0,0,0,1,138,32,0,0,13,0,0,0,0,0,2928,1,0,565,8,0,1,1,1,0,0,0,15,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,8,195,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,33,0,0,0,12,1,64,116,0,20,12,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,844,173,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +34,0,0,21,8,59,47,17,143,23,31,0,0,6,27,1,215,0,9,10,0,8,9,7,3,9,69,0,24,0,29,0,0,8,21,0,67,54,0,0,212,0,0,0,1,0,0,4,0,0,0,0,30,231,0,0,0,0,0,1,0,0,0,12,0,25,0,0,3377,59,1309,0,52,0,0,0,0,0,20,21,0,0,0,0,8,18,296,0,17,21,8,0,2,28,0,653,35,9,0,0,4,8,763,0,16,0,0,1838,0,0,0,0,56,0,1,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1,0,18,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,32,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,70,13,13,13,0,0,3,209,3,84,0,0,0,57,119,269,1668,222,0,0,0,0,1,0,3,0,0,0,0,0,0,1091,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,188,81,592,33,0,0,567,0,789,0,1,0,190,78,0,0,0,0,0,0,0,0,0,479,1,0,0,0,37,0,0,0,0,27,160,98,0,0,36,0,2,0,0,0,669,0,0,226,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,62,1,1,1,0,61,0,0,0,4,107,88,148,0,122,9,0,0,0,0,0,160,12,0,0,0,0,0,0,0,0,0,0,0,9,0,1,29,0,0,0,0,0,0,0,0,0,0,0,15,0,0,378,183,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,23,0,21,0,0,0,1,0,0,0,0,0,6,0,0,210,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,76,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,70,0,49,0,0,0,0,3,58,44,114,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,85,3,0,0,83,0,114,0,0,0,29,8,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,211,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,15,2 +5,0,0,15,0,92,12,0,93,20,11,0,0,6,42,0,1670,0,7,5,0,0,0,7,0,13,21,0,19,0,6,4,0,0,52,276,92,44,7,0,153,0,0,0,1,0,0,3,0,0,0,0,12,284,0,0,0,0,0,1,0,0,0,11,0,26,0,0,268508,92,1883,0,27,0,0,0,0,0,30,0,0,0,0,0,9,49,31514,0,0,52,0,0,0,0,0,269,20,6,0,0,2,0,1935,0,22,18,0,59405,0,0,0,0,12,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,141,12,12,12,0,0,0,20687,0,122,0,0,0,24,59,560,15996,20613,0,0,0,0,1,0,19,0,0,0,0,0,0,609,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,2,0,90,44,439,27,0,0,402,0,709,0,0,0,242,79,0,0,0,0,0,0,0,0,0,1841,1,0,0,0,12,0,0,0,0,8,183,30,0,0,37,0,0,0,0,0,5857,1,0,178,11,0,1,1,0,0,0,0,4,0,0,0,1,0,0,0,0,0,21,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,11,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,134,1,1,1,0,55,0,0,0,2,1,144,252,0,51,12,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2312,102,2 +11,0,0,3,0,12,99,0,116,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,217,0,0,0,1,0,0,0,0,0,0,0,4,49,0,0,0,0,0,1,0,0,0,0,0,3,0,0,330,12,241,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,26,0,0,3,0,0,1,112,0,837,30,0,0,0,2,0,559,0,0,0,0,212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,36,0,0,0,8,11,29,760,49,0,0,0,0,1,0,0,0,0,0,0,0,0,533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,52,3,0,0,152,0,133,0,0,0,119,4,0,0,0,0,0,0,0,0,0,242,0,0,0,0,2,0,0,0,0,5,96,228,0,0,98,0,0,0,0,0,25,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,245,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,6,2 +17,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5050,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,38293,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,54,0,0,0,14,17,52,37,33272,0,0,0,0,1,0,0,0,0,0,0,0,0,97494,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,322,3,0,0,75,0,215,0,0,0,12,217,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,615,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,25,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,30989,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +16,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,23,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,87,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,30,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,1289,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,39,0,0,0,8,5,28,19,53,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,39,48,2,0,0,44,0,137,0,0,0,5,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,598,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,3,2 +29,0,0,17,0,130,57,0,285,45,78,0,0,0,77,0,58,0,6,6,0,0,0,4,8,26,18,0,66,0,15,0,0,0,103,0,130,41,33,0,698,0,0,0,1,0,0,2,0,0,0,0,8,132,0,0,0,0,0,1,0,1,0,63,0,103,0,0,47690,130,694,0,101,0,0,0,0,0,10,0,0,0,0,0,7,10,9111,0,0,103,0,0,5,243,0,2110,190,3,0,0,2,0,1546,0,61,0,0,2836,0,0,0,0,30,2,0,0,0,0,0,1,0,0,1,15,0,0,0,0,0,0,0,2,0,6,0,8,0,0,0,0,0,0,0,20,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,0,0,0,0,78,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,50,0,0,0,0,0,0,5513,0,204,0,0,0,20,67,175,1727,5582,0,0,0,0,2,0,0,0,0,0,0,0,0,12017,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,13,76,571,21,0,0,531,0,809,0,0,0,405,54,0,0,0,0,0,0,0,0,0,561,1,0,0,0,18,0,0,0,0,29,220,597,0,0,478,0,3,0,28,10,2232,0,0,12460,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,28,7,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,132,1,1,1,0,144,0,0,0,0,1,233,219,0,125,0,0,0,0,0,0,751,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,55,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4167,312,2 +8,0,0,3,0,30,5,0,12,0,2,0,0,2,2,0,28,0,6,2,0,0,0,6,0,8,9,0,2,0,4,0,0,0,6,0,30,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,4,81,0,0,0,0,0,1,0,0,0,0,0,2,0,0,732,30,55,0,4,0,0,0,0,0,3,0,0,0,0,0,7,12,172,0,0,6,0,0,0,0,0,72,5,0,0,0,2,0,75,0,0,0,0,531,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,99,0,66,0,0,0,6,12,183,21,109,0,0,0,0,1,0,4,0,0,0,0,0,0,244,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,101,3,0,0,121,0,208,0,0,0,51,4,0,0,0,0,0,0,0,0,0,57,0,0,0,0,8,0,0,0,0,1,112,31,0,0,0,0,0,0,0,0,704,0,0,3,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,4,6,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,3,0,0,0,0,1,36,74,0,14,9,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,50,2 +2,0,0,3,0,15,2,0,11,4,3,0,0,0,7,0,21,0,6,1,0,0,0,1,0,0,3,0,2,0,2,0,1,0,2,0,15,6,0,0,16,0,23,0,1,0,0,53,0,0,0,0,1,78,0,0,0,0,0,1,0,0,0,0,0,7,0,0,3943,15,257,0,4,0,0,0,0,0,109,0,0,0,0,601,1,107,498,0,0,2,0,0,0,0,0,64,0,52,0,0,2,0,39,0,5,0,0,297,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,603,0,185,0,0,0,2,8,44,13,507,0,0,0,0,1,0,0,0,0,0,0,0,0,2639,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,10,8,103,3,0,0,139,0,413,0,0,0,71,8,0,0,0,0,0,0,0,0,0,50,1,0,0,0,2,0,0,0,0,2,97,6,0,0,0,0,0,0,0,0,763,0,0,409,0,0,1,0,0,0,0,0,104,0,0,0,52,22,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,84,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,17,48,0,7,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2149,22,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,3,0,12,2,0,15,1,3,0,0,0,4,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,10,0,3,0,1,0,0,3,0,0,0,0,0,76,0,0,0,0,0,1,0,0,0,0,0,4,0,0,7597,12,48,0,1,0,0,0,0,0,13,0,0,0,0,0,1,6,1627,0,0,2,0,0,0,0,0,10,0,3,0,0,2,0,18,0,2,0,0,869,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,74,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1001,0,41,0,0,0,0,3,28,6,1042,0,0,0,0,1,0,0,0,0,0,0,0,0,2764,0,0,0,0,0,0,0,0,0,0,0,0,3,0,73,0,0,0,0,0,0,8,5,99,3,0,0,121,0,213,0,0,0,49,11,0,0,0,0,0,0,71,0,0,44,1,0,0,0,2,0,0,0,0,0,96,36,0,0,0,0,0,0,0,0,472,0,0,2277,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,176,0,0,0,0,277,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,183,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,70,0,0,0,0,0,0,0,2,909,13,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,35,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,171,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,79,3,0,0,78,0,172,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,32,0,0,0,32,1,15,25,0,17,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,6,2 +6,0,0,2,0,13,2,0,26,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,0,116,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2433,13,89,0,3,0,0,0,0,0,27,0,0,0,0,0,1,9,324,0,0,3,0,0,0,0,0,19,0,7,0,0,2,0,26,0,0,0,0,291,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,254,0,101,0,0,0,0,3,29,15,257,0,0,0,0,1,0,0,0,0,0,0,0,0,572,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,10,3,142,2,0,0,280,0,321,0,0,0,211,21,0,0,0,0,0,0,10,0,0,54,1,0,0,0,2,0,0,0,0,1,114,159,0,0,0,0,0,0,0,0,682,0,0,286,0,0,1,0,0,0,0,0,13,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,548,0,3,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,324,46,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,60,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9194,12,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1182,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,836,0,50,0,0,0,0,3,31,8,853,0,0,0,0,1,0,0,0,0,0,0,0,0,3532,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,97,2,0,0,114,0,109,0,0,0,48,5,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,97,28,0,0,0,0,0,0,0,0,794,0,0,3128,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,99,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1225,23,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +9,0,0,11,132,106,51,132,313,13,184,0,0,0,18,0,157,0,7,397,0,132,0,1,0,3,48,0,15,0,18,0,0,132,90,0,106,177,0,0,425,0,0,0,1,0,0,13,0,0,0,0,18,236,0,0,0,0,0,1,132,0,0,0,0,18,0,0,8650,106,9008,0,35,0,0,0,0,0,55,396,0,0,1,1,1,17,743,0,132,90,132,0,0,143,0,1344,240,20,0,0,2,132,959,0,14,0,0,3056,0,0,0,0,17,0,2,0,1,0,0,1,0,0,68,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,6,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,47,0,0,0,0,45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,0,0,0,0,0,0,598,0,235,0,0,0,34,79,285,668,807,0,0,0,0,1,0,0,0,0,0,0,0,0,2760,0,0,0,0,0,0,0,0,0,0,0,0,13,0,6,0,0,0,0,1,0,8,17,605,145,0,0,822,0,946,0,0,0,734,81,0,0,0,0,0,0,0,0,0,730,1,0,0,0,530,0,0,0,0,13,243,514,0,0,705,0,189,0,0,0,8296,0,0,323,0,0,1,0,0,0,0,0,31,0,0,0,1,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,103,1,1,1,0,34,0,0,0,0,1,196,886,0,84,0,0,0,0,0,0,588,17,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,0,0,0,0,0,0,133,0,12,1374,915,2 +60,0,0,6,0,48,8,0,52,13,12,0,0,2,18,0,520,0,7,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,14,898,48,24,0,0,100,0,0,0,1,0,0,6,0,0,0,0,1,235,0,0,0,0,0,1,0,0,0,0,0,23,0,0,21860,48,651,0,1,0,0,0,0,0,33,0,0,0,0,0,8,22,3468,0,0,14,0,0,1,25,0,297,30,9,0,0,2,0,668,0,14,0,0,2402,0,0,0,0,15,14,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,10,2,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,2853,0,144,0,0,0,0,3,259,3569,2899,0,0,0,0,1,0,3,0,0,0,0,0,0,2901,0,13,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,34,24,288,6,0,0,294,0,404,0,0,0,147,9,0,0,0,0,0,0,4,0,0,619,1,0,0,0,9,0,0,0,0,1,135,99,0,0,51,0,11,0,24,12,2044,1,0,252,6,0,1,1,0,0,0,0,15,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,0,0,0,0,0,1,62,229,0,2,12,0,0,0,0,0,158,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,6,703,64,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +11,0,0,3,0,12,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,12,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,93,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2576,12,81,0,24,0,0,0,0,0,17,0,0,0,0,0,1,10,1023,0,0,0,0,0,0,0,0,36,0,4,0,0,2,0,38,0,0,0,0,526,0,0,0,0,32,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,395,0,127,0,0,0,0,3,64,19,435,0,0,0,0,1,0,0,0,0,0,0,0,0,1157,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,169,3,0,0,114,0,287,0,0,0,39,3,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,94,29,0,0,0,0,4,0,0,0,723,0,0,887,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,23,0,0,0,0,1,12,170,0,24,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,442,31,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,35,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,140,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,179,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,169,0,0,0,18,2,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,21,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,18,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,12,0,0,0,0,3,21,3,21,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,20,0,0,0,2,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,12,0,0,0,0,3,21,3,21,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,21,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,2 +19,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,1,0,1,0,2,0,22,6,0,0,14975,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5336,22,35,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,12,0,1,0,0,2,0,29,0,9,0,0,71574,0,0,0,0,7,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,0,3,54,61,30011,0,0,0,0,1,0,0,0,0,0,0,0,0,95451,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,367,3,0,0,78,0,201,0,0,0,12,281,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,1,104,5,0,0,0,0,0,0,0,0,615,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,1,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,4,0,0,0,0,1,24,2,0,5,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,34186,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,50,0,0,0,0,0,1,0,0,0,0,0,4,0,0,137,12,95,0,2,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,108,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,168,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,212,5,0,0,229,0,323,0,1,0,55,3,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,14,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,15,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1089,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,80,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,84,0,0,0,0,0,11,48,212,0,0,0,0,0,0,0,0,0,0,0,0,0,514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,16,2,0,0,57,0,88,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,45,0,0,0,0,0,0,0,0,298,0,0,264,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,115,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,331,7,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,53,0,0,0,0,0,1,0,0,0,0,0,4,0,0,140,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,118,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,168,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,212,5,0,0,229,0,328,0,1,0,55,2,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,32,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,15,2 +12,0,0,3,0,18,2,0,15,0,3,0,0,0,3,0,15,0,7,1,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,18,6,0,0,14,0,3,0,1,0,0,11,0,0,0,0,0,129,0,0,0,0,0,1,0,0,0,0,0,3,0,0,4999,18,118,0,5,0,0,0,0,0,45,0,0,0,0,0,1,24,984,0,0,6,0,0,0,0,0,28,0,17,0,0,2,0,21,0,1,0,0,603,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,4,1,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,463,0,103,0,0,0,0,3,41,30,461,0,0,0,0,1,0,0,0,0,0,0,0,0,1130,0,0,0,0,0,0,0,0,0,0,0,0,11,0,14,0,0,0,0,0,0,8,4,133,3,0,0,186,0,277,0,0,0,112,23,0,0,0,0,0,0,4,0,0,45,1,0,0,0,2,0,0,0,0,1,100,67,0,0,0,0,0,0,0,0,385,0,0,1375,0,0,1,0,1,0,0,0,17,0,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,4,0,0,0,0,1,24,440,0,5,0,0,1,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,665,140,2 +11,0,0,4,0,19,2,0,13,0,3,0,0,0,3,0,18,0,7,3,0,0,0,1,0,0,0,0,95,0,1,0,0,0,1,0,19,30,0,0,15,0,0,0,1,0,0,2,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,4,0,0,12450,19,138,0,96,0,0,0,0,0,4,0,0,0,0,0,3,7,1662,0,0,1,0,0,0,0,0,107,0,1,0,0,2,0,112,0,1,0,0,14849,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,4,0,0,0,0,0,0,880,0,118,0,0,0,0,3,851,661,2570,0,0,0,0,1,0,0,0,0,0,0,0,0,7465,0,651,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,4,314,4,0,0,114,0,259,0,0,0,46,186,0,0,0,0,0,0,0,0,0,46,1,0,0,0,4,0,0,0,0,1,107,28,0,0,0,0,8,0,16,8,1506,0,0,13,0,0,1,0,0,0,0,0,3,0,629,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,815,1,1,1,0,95,0,0,0,0,1,20,73,0,96,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3569,20287,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,5,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,169,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,176,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,64,3,0,0,42,0,150,0,0,0,6,3,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,171,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,5,2 +3,0,0,6,0,38,63,0,133,1,15,0,0,6,5,0,841,0,6,1,0,0,0,8,0,11,0,0,5,0,1,0,0,0,2,835,38,6,0,0,195,0,2,0,1,0,0,2,0,0,0,0,1,208,0,0,0,0,0,1,0,0,0,0,0,7,0,0,44958,38,1046,0,4,0,0,0,0,0,14,0,0,0,0,0,8,25,10630,0,0,2,0,0,1,82,0,793,50,3,0,0,2,0,1286,0,0,1,0,4833,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1947,0,59,0,0,0,2,5,264,1557,1943,0,0,0,0,1,0,3,0,0,0,0,0,0,665,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,0,86,19,245,6,0,0,304,0,366,0,0,0,126,7,0,0,0,0,0,0,0,0,0,1069,1,0,0,0,9,0,0,0,0,0,122,221,0,0,81,0,0,0,0,0,7031,1,0,799,6,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,6,361,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,9,0,0,0,0,1,40,211,0,5,12,0,0,0,0,0,243,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4421,38,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,939,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,484,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,292,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,114,2,0,0,119,0,146,0,0,0,61,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,27,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +2,0,0,2,0,12,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,12,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,2,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,9404,12,45,0,3,0,0,0,0,0,10,0,0,0,0,0,1,4,1199,0,0,1,0,0,0,0,0,8,0,3,0,0,2,0,17,0,0,0,0,161,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,847,0,38,0,0,0,4,4,26,15,848,0,0,0,0,1,0,0,0,0,0,0,0,0,3624,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,92,2,0,0,110,0,145,0,0,0,36,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,96,25,0,0,0,0,0,0,0,0,819,0,0,3227,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,13,92,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1228,17,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,61,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9492,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1236,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,859,0,49,0,0,0,0,3,27,8,876,0,0,0,0,1,0,0,0,0,0,0,0,0,3645,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,92,2,0,0,111,0,108,0,0,0,48,8,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,28,0,0,0,0,0,0,0,0,819,0,0,3225,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,99,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1276,26,2 +18,0,0,2,6,130,2,30,26,0,8,0,0,0,2,0,36,0,6,19,0,6,0,1,0,19,12,0,2,0,5,0,69,6,114,0,130,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,23,60,0,0,0,0,0,1,0,0,0,0,0,1,0,0,4435,130,1186,0,25,0,0,0,0,0,350,18,0,0,0,0,1,3,295,0,30,114,6,0,0,0,0,69,0,2,0,0,2,6,110,0,0,0,0,1402,0,0,0,0,7,2,0,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,6,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,372,0,948,0,0,0,27,41,278,78,454,0,0,0,0,1,0,0,0,0,0,0,0,0,5348,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,449,8,0,0,807,0,395,0,0,0,718,17,0,0,0,0,0,0,0,0,0,80,1,0,0,0,26,0,0,0,0,24,212,31,0,0,0,0,0,0,0,0,701,0,0,20,0,0,1,3,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,69,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,127,1,1,1,0,6,0,0,0,0,1,244,219,0,38,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,2580,425,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,48,11,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,23,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,30,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,38,0,0,0,8,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,88,20,2 +11,0,0,3,0,10,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,71,0,3,0,1,0,0,3,0,0,0,0,0,60,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1265,10,70,0,23,0,0,0,0,0,12,0,0,0,0,0,1,8,610,0,0,0,0,0,0,0,0,34,0,3,0,0,2,0,36,0,0,0,0,168,0,0,0,0,34,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,123,0,118,0,0,0,0,3,53,17,163,0,0,0,0,1,0,0,0,0,0,0,0,0,401,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,75,3,0,0,85,0,176,0,0,0,18,1,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,92,11,0,0,0,0,4,0,0,0,862,0,0,760,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,22,0,0,0,0,1,10,103,0,23,0,0,1,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,526,13,2 +2,0,0,2,0,8,2,0,9,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,1,0,0,60,8,30,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,23,0,0,0,0,0,0,0,0,6,0,1,0,0,2,0,7,0,0,0,0,52,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,23,0,18,0,0,0,0,3,21,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,105,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,56,2,0,0,61,0,113,0,0,0,8,0,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,88,2,0,0,0,0,0,0,0,0,605,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,9,2 +3,0,0,5,2,58,18,8,120,6,28,0,0,2,11,1,1020,0,6,8,0,2,1,20,0,11,3,0,5,0,2,0,0,1,18,3449,60,6,71,0,150,0,0,0,1,0,0,5,0,0,0,0,2,683,0,0,0,0,0,1,0,0,0,0,0,23,0,0,66464,58,1551,0,3,0,0,0,0,0,48,6,0,0,0,0,22,38,11066,0,8,18,1,0,1,63,0,625,70,9,0,0,2,2,1250,0,9,0,0,2468,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,12,12,12,0,0,0,9615,0,235,0,0,0,2,8,378,910,9705,0,0,0,0,1,0,4,0,0,0,0,0,0,1798,0,98,0,0,0,0,0,0,0,0,0,0,5,1,6,0,0,0,0,1,0,44,19,364,7,0,0,418,0,509,0,0,0,209,21,0,0,0,0,0,0,4,0,0,1206,1,0,0,0,31,0,0,0,0,1,151,203,0,0,180,0,0,0,0,0,4725,1,0,1100,16,0,1,2,0,0,0,0,9,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,42,42,0,0,7,0,0,0,0,0,16,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,74,1,1,1,0,7,0,0,0,0,53,78,232,0,7,14,0,0,0,0,0,399,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,1136,117,2 +12,0,0,3,1,15,26,1,26,1,3,0,0,0,4,0,58,0,8,2,0,0,0,2,0,9,0,0,0,0,1,0,0,1,2,0,16,51,0,0,14,0,0,0,0,0,0,0,0,0,0,0,9,28,0,0,0,0,0,1,0,0,0,0,0,2,0,0,4718,15,93,0,10,0,0,0,0,0,0,0,0,0,0,0,3,3,1800,0,1,2,1,0,1,0,0,64,0,0,0,0,4,1,25,0,1,0,0,1617,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,929,0,41,0,0,0,9,21,39,2657,951,0,0,0,0,0,0,0,0,0,0,0,0,0,2464,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,14,225,4,0,0,206,0,261,0,1,0,45,15,0,0,0,0,0,0,0,0,0,125,0,0,0,0,4,0,0,0,0,10,111,2,0,0,0,0,0,0,0,0,981,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,1,1,1,0,0,0,0,0,0,9,18,3,0,10,0,0,0,0,0,0,41,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,954,44,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,99,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2513,10,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,998,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,379,0,0,0,0,29,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,386,0,127,0,0,0,0,3,56,19,427,0,0,0,0,1,0,0,0,0,0,0,0,0,1128,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,147,3,0,0,107,0,255,0,0,0,39,4,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,712,0,0,875,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,422,18,2 +49,0,0,21,7,99,77,8,619,52,195,0,0,0,77,0,220,0,9,13,0,10,4,18,1,3,61,0,17,0,18,3,0,7,61,0,107,97,8,0,1083,0,0,0,1,0,0,4,0,0,0,0,24,351,0,0,0,0,0,1,0,0,0,115,0,118,0,0,5588,99,1621,0,38,0,0,0,0,0,14,18,0,0,0,0,19,24,1511,0,8,61,7,0,5,472,0,3947,655,3,0,0,4,7,2633,0,66,0,0,3746,0,0,0,0,23,0,0,0,0,0,0,1,0,0,0,27,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,2,0,11,0,26,0,0,0,0,0,0,14,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,1,0,0,0,0,0,0,0,0,3,1,0,0,0,2,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,66,2,2,2,0,0,2,1078,2,279,0,0,0,44,132,243,4754,1328,0,0,0,0,0,0,0,0,0,0,1,1,0,3674,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,2,0,116,185,935,32,0,0,808,0,1568,0,1,0,398,168,0,0,0,0,0,0,4,0,0,1197,1,0,0,0,46,0,0,0,0,22,228,1040,0,0,2253,0,4,0,0,0,674,0,0,368,0,0,1,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,53,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,29,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,1,117,1,1,1,0,103,0,0,0,0,106,169,320,0,102,0,0,0,0,0,0,1124,18,0,0,0,0,0,0,0,0,0,0,0,8,0,1,60,0,0,0,0,0,0,0,0,0,0,0,13,0,4,773,1581,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +2,0,0,3,0,12,2,0,11,4,3,0,0,0,7,0,21,0,6,1,0,0,0,1,0,0,3,0,2,0,2,0,1,0,2,0,12,6,0,0,16,0,23,0,1,0,0,53,0,0,0,0,1,58,0,0,0,0,0,1,0,0,0,0,0,7,0,0,4637,12,259,0,4,0,0,0,0,0,110,0,0,0,0,601,1,107,498,0,0,2,0,0,0,0,0,64,0,53,0,0,2,0,39,0,5,0,0,400,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,601,0,182,0,0,0,2,8,32,13,504,0,0,0,0,1,0,0,0,0,0,0,0,0,2752,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,10,8,92,3,0,0,131,0,385,0,0,0,72,11,0,0,0,0,0,0,0,0,0,50,1,0,0,0,2,0,0,0,0,2,94,6,0,0,0,0,0,0,0,0,763,0,0,413,0,0,1,0,0,0,0,0,104,0,0,0,52,22,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,84,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,14,48,0,7,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2272,28,2 +11,0,0,2,0,25,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,25,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,891,25,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,441,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,253,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,41,0,0,0,0,3,44,10,52,0,0,0,0,1,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,112,2,0,0,122,0,135,0,0,0,61,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,107,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,0,0,0,0,0,1,39,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,26,2 +3,0,0,5,0,36,6,0,37,0,5,0,0,6,5,0,547,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,2,762,36,6,0,0,45,0,0,0,1,0,0,3,0,0,0,0,1,178,0,1,0,0,0,1,0,0,0,0,0,2,0,0,7610,36,608,0,3,0,0,0,0,0,13,0,0,0,1,0,8,26,1474,0,0,2,0,0,0,0,0,191,20,3,0,0,2,0,586,0,0,2,0,1411,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,597,0,62,0,0,0,1,4,272,357,604,0,0,0,0,1,0,4,0,0,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,86,24,177,5,0,0,189,0,262,0,0,0,51,2,0,0,0,0,0,0,0,0,0,612,1,0,0,0,9,0,0,0,0,0,120,13,0,0,8,0,0,0,0,0,2215,1,0,83,6,0,1,1,0,0,0,0,16,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,5,0,0,0,0,1,38,25,0,4,12,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,613,30,2 +18,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14146,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6277,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,72501,0,0,0,0,9,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,60,0,0,0,0,3,60,61,28333,0,0,0,0,1,0,0,0,0,0,0,0,0,90002,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,438,3,0,0,91,0,222,0,0,0,25,300,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,32,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,28702,2 +0,0,0,0,1,8,23,5,73,0,2,0,0,0,0,0,93,0,3,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,5,0,10,59,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,8,125,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,1,0,0,0,0,41,0,0,0,0,0,1,13,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1,1,0,0,1,6,1,8,0,0,0,0,1,21,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,3,338,2,0,0,352,0,3699,0,0,0,145,1,0,0,0,0,0,0,0,0,0,194,0,0,0,0,1,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,142,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,38,15,9,0,1,0,0,0,0,0,0,22,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,13,2 +8,0,0,3,0,30,5,0,12,0,2,0,0,2,2,0,28,0,6,2,0,0,0,6,0,8,9,0,2,0,4,0,0,0,6,0,30,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,4,78,0,0,0,0,0,1,0,0,0,0,0,2,0,0,720,30,55,0,4,0,0,0,0,0,3,0,0,0,0,0,7,12,165,0,0,6,0,0,0,0,0,72,5,0,0,0,2,0,75,0,0,0,0,551,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,100,0,65,0,0,0,6,12,183,21,110,0,0,0,0,1,0,4,0,0,0,0,0,0,247,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,98,3,0,0,121,0,209,0,0,0,51,4,0,0,0,0,0,0,0,0,0,57,0,0,0,0,8,0,0,0,0,1,112,31,0,0,0,0,0,0,0,0,701,0,0,3,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,4,5,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,3,0,0,0,0,1,36,74,0,14,9,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,51,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,82,0,0,0,0,0,1,0,0,0,0,0,1,0,0,984,11,59,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,124,0,0,0,0,0,0,0,0,15,0,5,0,0,2,0,14,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,117,0,85,0,0,0,0,3,30,13,134,0,0,0,0,1,0,0,0,0,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,8,3,111,2,0,0,247,0,363,0,0,0,180,15,0,0,0,0,0,0,2,0,0,41,1,0,0,0,2,0,0,0,0,0,101,160,0,0,0,0,0,0,0,0,55,0,0,76,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,499,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,203,31,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,5,0,18,2,0,107,4,3,0,0,0,9,0,403,0,6,3,0,0,0,1,0,0,388,0,2,0,1,0,0,0,7,0,18,6,0,0,26,0,0,0,1,0,0,2,0,0,0,0,0,103,0,16,0,0,0,1,0,0,0,0,0,9,0,0,1583,18,919,0,3,0,0,0,0,0,8,0,0,0,0,1,3,7,159,0,0,7,0,0,0,0,0,14,0,4,0,0,2,0,1480,0,7,0,0,845,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,1,0,196,0,0,0,0,0,0,141,0,41,0,0,0,0,294,37,15,260,0,0,0,0,1,0,0,0,0,0,0,0,0,1583,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,10,175,5,0,0,169,0,255,0,0,0,106,11,0,0,0,0,0,0,0,0,0,530,1,0,0,0,4,0,0,0,0,1,100,77,0,0,0,0,3,0,0,0,860,0,0,175,0,0,1,0,1,0,0,0,2,0,1,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,2,0,0,0,0,1,25,303,0,391,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,154,25,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,149,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,178,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,31,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +17,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14038,0,0,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5657,22,38,0,8,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,32,0,9,0,0,68370,0,0,0,0,3,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,10,54,69,28137,0,0,0,0,1,0,0,0,0,0,0,0,0,92631,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,370,3,0,0,78,0,218,0,0,0,12,282,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,613,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,2,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,31012,2 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,1,0,0,26,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,59,0,69,0,0,0,29,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,28,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,72,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,30,2 +28,0,0,5,0,97,99,0,101,5,80,0,0,8,4,0,2240,0,6,2,0,0,0,7,0,10,0,0,44,0,49,0,0,0,23,67684,97,6,0,0,82,0,0,0,1,0,0,3,0,0,0,0,49,2782,0,0,0,0,0,1,0,0,0,0,0,2,0,0,209844,97,2798,0,90,0,0,0,0,0,194,0,0,0,0,0,8,385,44927,0,0,23,0,0,0,0,0,1053,30,5,0,0,2,0,2481,0,0,816,0,27855,0,0,0,0,18,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,2,0,0,0,0,0,138,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,12,12,12,0,0,0,7524,0,156,0,0,0,126,49,7690,10391,7448,0,0,0,0,1,0,4,0,0,0,0,0,0,1615,0,0,0,0,0,0,0,0,0,2,0,0,3,1,0,0,0,0,0,1,0,132,31,1053,5,0,0,814,0,739,0,0,0,532,56,0,0,0,0,0,0,0,0,0,2538,1,0,0,0,9,0,0,0,0,2,361,73,0,0,767,0,0,0,0,0,27479,1,0,1417,83,0,1,3,0,0,0,0,8,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,83,53,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,100,1,1,1,0,227,0,0,0,32,1,120,388,0,91,12,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,4,15538,383,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,980,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,525,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,284,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,113,2,0,0,119,0,146,0,0,0,61,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,27,2 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1045,11,49,0,1,0,0,0,0,0,12,0,0,0,0,0,1,5,215,0,0,1,0,0,0,0,0,9,0,5,0,0,2,0,15,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,165,0,62,0,0,0,0,3,28,8,167,0,0,0,0,1,0,0,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,75,2,0,0,107,0,121,0,0,0,40,2,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,26,0,0,0,0,0,0,0,0,73,0,0,268,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,83,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,204,17,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,4,0,0,209,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,49,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,113,0,0,0,0,3,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,40,0,0,0,0,3,30,238,74,0,0,0,0,1,0,0,0,0,0,0,0,0,177,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,86,3,0,0,111,0,155,0,0,0,46,3,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,615,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,10,2 +17,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,35,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5121,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,38723,0,0,0,0,2,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0,68,0,55,0,0,0,14,17,54,37,34004,0,0,0,0,1,0,0,0,0,0,0,0,0,98559,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,324,3,0,0,75,0,217,0,0,0,12,206,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,614,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,27,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,30872,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,1,0,0,0,0,104,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,4,0,0,201,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,45,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,122,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,182,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,85,3,0,0,111,0,162,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,104,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,10,2 +8,0,0,6,0,35,8,0,40,2,8,0,0,2,7,0,442,0,6,3,0,0,0,6,0,10,0,0,3,0,1,0,0,0,4,898,35,12,0,0,53,0,0,0,1,0,0,7,0,0,0,0,1,189,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5750,35,549,0,1,0,0,0,0,0,37,0,0,0,0,0,8,23,1146,0,0,4,0,0,1,13,0,207,20,9,0,0,2,0,518,0,3,0,0,1019,0,0,0,0,2,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,12,12,12,0,0,0,548,0,140,0,0,0,0,3,228,407,541,0,0,0,0,1,0,3,0,0,0,0,0,0,790,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,1,0,34,13,196,6,0,0,249,0,366,0,0,0,108,8,0,0,0,0,0,0,7,0,0,513,1,0,0,0,9,0,0,0,0,1,119,70,0,0,29,0,2,0,4,2,1868,1,0,332,6,0,1,1,0,0,0,0,16,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,39,203,0,2,12,0,0,0,0,0,101,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,7,720,59,2 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,97,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2577,10,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1021,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,419,0,0,0,0,32,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,392,0,123,0,0,0,0,3,55,19,434,0,0,0,0,1,0,0,0,0,0,0,0,0,1143,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,154,3,0,0,107,0,286,0,0,0,39,7,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,718,0,0,887,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,422,33,2 +6,0,0,5,0,32,82,0,136,1,27,0,0,0,5,0,18,0,6,2,0,0,0,1,0,5,0,0,6,0,0,0,0,0,21,0,32,12,0,0,239,0,1,0,1,0,0,1,0,0,0,0,0,110,0,2,0,0,0,1,0,0,0,0,0,6,0,0,744,32,281,0,7,0,0,0,0,0,8,0,0,0,1,0,2,4,127,0,0,21,0,0,1,126,0,953,115,1,0,0,2,0,596,0,2,0,0,376,0,1,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,113,0,71,0,0,0,0,8,59,697,138,0,0,0,0,1,0,0,0,0,0,0,0,0,663,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,5,167,5,0,0,235,0,359,0,0,0,173,10,0,0,0,0,0,0,6,0,0,274,1,0,0,0,3,0,0,0,0,1,122,266,0,0,371,0,0,0,0,0,650,0,0,84,0,0,1,12,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,6,0,0,0,0,1,53,104,0,11,0,0,0,0,0,0,425,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,159,510,2 +8,0,0,3,0,12,2,0,4,0,2,0,0,0,3,0,13,0,7,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,2,0,12,12,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,2,0,0,86,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,2,0,0,0,0,0,7,0,0,0,0,2,0,14,0,0,0,0,1470,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,27,0,0,0,0,3,30,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,49,3,0,0,50,0,135,0,0,0,12,1,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,94,5,0,0,0,0,2,0,4,2,605,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,14,2,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,5,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,2,0,0,48,11,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,23,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,38,0,0,0,8,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,92,20,2 +7,0,0,3,0,29,5,0,11,0,2,0,0,2,2,0,23,0,6,2,0,0,0,6,0,8,6,0,2,0,3,0,0,0,5,0,29,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,3,67,0,0,0,0,0,1,0,0,0,0,0,2,0,0,671,29,47,0,3,0,0,0,0,0,3,0,0,0,0,0,7,12,149,0,0,5,0,0,0,0,0,72,5,0,0,0,2,0,58,0,0,0,0,764,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,91,0,56,0,0,0,4,10,182,20,95,0,0,0,0,1,0,3,0,0,0,0,0,0,203,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,96,3,0,0,112,0,204,0,0,0,42,3,0,0,0,0,0,0,0,0,0,51,0,0,0,0,8,0,0,0,0,1,111,25,0,0,0,0,0,0,0,0,686,0,0,2,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,3,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,2,0,0,0,0,1,34,69,0,10,9,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,28,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,895,24,33,0,0,0,0,0,0,0,6,0,0,0,0,0,1,4,440,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,301,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,114,2,0,0,119,0,144,0,0,0,61,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,29,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,4,0,0,206,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,49,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,126,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,40,0,0,0,0,3,30,238,74,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,83,3,0,0,111,0,151,0,0,0,46,1,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,615,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,10,2 +1,0,0,3,0,10,2,0,21,0,5,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,18,0,0,0,1,0,0,2,0,0,0,0,0,84,0,0,0,0,0,1,0,0,0,0,0,1,0,0,703,10,53,0,1,0,0,0,0,0,9,0,0,0,0,0,1,4,80,0,0,1,0,0,0,4,0,51,10,2,0,0,2,0,37,0,0,0,0,203,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,83,0,52,0,0,0,0,3,27,42,96,0,0,0,0,1,0,0,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,3,127,3,0,0,147,0,160,0,0,0,82,4,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,0,121,53,0,0,23,0,0,0,0,0,641,0,0,153,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,248,0,1,0,0,0,0,0,0,33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,212,21,2 +19,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,37,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5100,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,37151,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,54,0,0,0,14,17,52,37,34870,0,0,0,0,1,0,0,0,0,0,0,0,0,101105,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,332,3,0,0,75,0,214,0,0,0,12,225,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,613,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,25,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,30874,2 +1,0,0,62,2,27,68,2,134,10,26,0,0,0,22,2,121,0,11,3,0,0,0,1,0,1,0,0,2,0,1,0,0,2,15,0,29,139,15,0,166,0,0,0,1,0,0,1,0,0,0,0,1,144,0,2,0,0,0,1,0,0,0,1,0,28,0,0,36761,27,292,0,3,0,0,0,0,0,6,0,0,0,0,0,2,4,72,0,2,15,2,0,5,54,0,537,85,2,0,0,6,2,328,0,16,0,0,9638,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,86,0,71,0,0,0,2,24,56,27137,114,0,0,0,0,1,0,0,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,221,64,458,55,0,0,503,0,1008,0,2,0,190,36,0,4,0,0,0,0,0,0,0,384,1,0,0,0,4,0,0,0,0,1,146,131,0,0,213,1,0,0,0,0,400,0,0,24,0,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,25,1,1,1,0,39,0,0,0,0,17,44,141,0,4,0,0,0,0,0,0,211,16,0,0,0,0,0,0,0,0,0,0,0,2,0,1,14,1,0,0,0,0,0,0,0,0,0,0,2,0,2,333,64,2 +4,0,0,0,0,116,2,0,4,0,1,0,0,0,2,0,54,0,6,1,0,0,0,1,0,0,0,0,45,0,1,0,0,0,105,0,116,138,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1227,116,107,0,46,0,0,0,0,0,1,0,0,0,0,0,1,1,8,0,0,105,0,0,0,0,0,50,0,0,0,0,2,0,54,0,0,0,0,2239,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,22,0,120,0,0,0,0,3,133,108,73,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,546,0,0,0,456,0,279,0,0,0,409,16,0,0,0,0,0,0,0,0,0,69,0,0,0,0,2,0,0,0,0,1,209,45,0,0,0,0,0,0,0,0,153,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,113,1,1,1,0,45,0,0,0,0,1,221,105,0,46,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,788,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,5,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,6,0,0,0,0,104,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,6,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,205,14,165,0,7,0,0,0,0,0,4,0,0,0,0,0,1,3,49,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,107,0,0,0,0,3,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,40,0,0,0,0,3,30,237,74,0,0,0,0,1,0,0,0,0,0,0,0,0,177,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,83,3,0,0,111,0,153,0,0,0,46,0,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,615,0,0,110,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,115,0,0,0,0,1,17,71,0,110,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,10,2 +19,0,0,3,0,22,2,0,4,14,3,0,0,0,17,0,10,0,7,2,0,0,0,1,0,0,0,0,8,0,6,0,1,0,2,0,22,6,0,0,13730,0,0,0,1,0,0,1,0,0,0,0,6,47,0,0,0,0,0,1,0,0,0,0,0,17,0,0,6122,22,49,0,15,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,49,0,15,0,0,71464,0,0,0,0,6,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,54,0,0,0,12,13,52,108,27497,0,0,0,0,1,0,0,0,0,0,0,0,0,91693,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,18,377,3,0,0,79,0,227,0,0,0,13,277,0,0,0,0,0,0,0,0,0,43,1,0,0,0,3,0,0,0,0,7,104,6,0,0,0,0,0,0,0,0,619,0,0,22,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,7,1,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,24,1,1,1,0,20,0,0,0,0,1,24,2,0,14,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,30721,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,11,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2544,11,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1020,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,353,0,0,0,0,33,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,392,0,128,0,0,0,0,3,60,19,434,0,0,0,0,1,0,0,0,0,0,0,0,0,1140,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,150,3,0,0,110,0,266,0,0,0,39,6,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,719,0,0,875,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,22,0,0,0,0,1,11,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,434,33,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,95,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2564,10,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1020,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,509,0,0,0,0,32,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,391,0,123,0,0,0,0,3,55,19,433,0,0,0,0,1,0,0,0,0,0,0,0,0,1155,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,155,3,0,0,107,0,290,0,0,0,39,5,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,719,0,0,880,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,424,33,2 +2,0,0,3,0,11,4,0,29,0,7,0,0,0,2,0,17,0,7,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,11,6,0,0,27,0,0,0,1,0,0,8,0,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2304,11,112,0,3,0,0,0,0,0,33,0,0,0,0,0,1,11,465,0,0,0,0,0,1,13,0,132,15,8,0,0,2,0,79,0,0,0,0,244,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,347,0,123,0,0,0,0,3,33,108,351,0,0,0,0,1,0,0,0,0,0,0,0,0,741,0,0,0,0,0,0,0,0,0,0,0,0,8,0,8,0,0,0,0,0,0,10,3,112,3,0,0,178,0,370,0,0,0,111,9,0,0,0,0,0,0,16,0,0,66,1,0,0,0,2,0,0,0,0,1,100,107,0,0,31,0,0,0,0,0,728,0,0,378,0,0,1,0,1,0,0,0,16,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,11,136,0,3,0,0,0,0,0,0,82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,9,440,40,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +2,0,0,5,0,39,22,0,115,3,34,0,0,2,6,0,632,0,6,2,0,0,0,13,0,11,0,0,4,0,1,0,0,0,6,916,39,6,0,0,171,0,2,0,1,0,0,4,0,0,0,0,1,195,0,0,0,0,0,1,0,0,0,0,0,21,0,0,23190,39,839,0,1,0,0,0,0,0,20,0,0,0,0,0,14,30,3988,0,0,6,0,0,6,83,0,796,95,3,0,0,2,0,1050,0,4,0,0,1583,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,3223,0,76,0,0,0,0,3,268,895,3231,0,0,0,0,1,0,3,0,0,0,0,0,0,579,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,34,14,208,5,0,0,245,0,297,0,0,0,102,12,0,0,0,0,0,0,0,0,0,817,1,0,0,0,15,0,0,0,0,0,122,202,0,0,180,0,0,0,0,0,2343,1,0,43,11,0,1,1,0,0,0,0,9,0,4,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,11,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,0,0,0,0,0,1,45,75,0,2,14,0,0,0,0,0,231,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,514,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,104,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2521,10,80,0,23,0,0,0,0,0,17,0,0,0,0,0,1,10,1017,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,564,0,0,0,0,30,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,388,0,131,0,0,0,0,3,55,19,428,0,0,0,0,1,0,0,0,0,0,0,0,0,1163,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,146,3,0,0,108,0,252,0,0,0,39,2,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,721,0,0,871,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,442,17,2 +71,0,0,4,0,29,2,0,8,17,3,0,0,0,22,0,24,0,7,1,0,0,0,1,0,0,0,0,15,0,1,0,0,0,16,0,29,27,0,0,51,0,0,0,1,0,0,3,0,0,0,0,0,64,0,0,0,0,0,1,0,0,0,0,0,21,0,0,3428,29,86,0,16,0,0,0,0,0,13,0,0,0,0,0,1,5,182,0,0,16,0,0,0,0,0,26,0,3,0,0,2,0,65,0,18,0,0,1660,0,0,0,0,15,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,163,0,98,0,0,0,0,3,67,3846,249,0,0,0,0,1,0,0,0,0,0,0,0,0,3049,0,17,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,21,197,4,0,0,161,0,261,0,0,0,92,5,0,0,0,0,0,0,4,0,0,66,1,0,0,0,2,0,0,0,0,1,118,22,0,0,0,0,15,0,28,14,679,0,0,125,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,15,0,0,0,0,1,45,124,0,16,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,3,269,23,2 +11,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,48,0,0,0,0,0,1,0,0,0,0,0,3,0,0,304,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,25,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,196,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,37,0,0,0,8,11,29,400,139,0,0,0,0,1,0,0,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,50,3,0,0,62,0,138,0,0,0,29,5,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,24,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,8,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,11,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,95,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2538,11,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1025,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,432,0,0,0,0,33,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,390,0,127,0,0,0,0,3,60,19,431,0,0,0,0,1,0,0,0,0,0,0,0,0,1136,0,2,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,3,155,3,0,0,110,0,254,0,0,0,39,4,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,722,0,0,875,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,22,0,0,0,0,1,11,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,438,18,2 +10,0,0,2,0,15,15,0,16,0,2,0,0,0,4,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,4,0,15,6,0,0,21,0,0,0,1,0,0,2,0,0,0,0,4,60,0,0,0,0,0,1,0,0,0,0,0,1,0,0,366,15,59,0,5,0,0,0,0,0,8,0,0,0,0,0,1,4,50,0,0,4,0,0,0,0,0,7,0,4,0,0,2,0,46,0,0,0,0,220,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,64,0,43,0,0,0,8,5,34,19,81,0,0,0,0,1,0,0,0,0,0,0,0,0,338,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,35,112,2,0,0,111,0,195,0,0,0,41,11,0,0,0,0,0,0,0,0,0,60,1,0,0,0,2,0,0,0,0,1,97,21,0,0,0,0,0,0,0,0,634,0,0,33,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,8,0,0,0,4,1,19,79,0,5,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,15,2 +21,0,0,13,1,47,46,1,182,4,54,0,0,0,17,0,103,0,9,1,0,0,0,2,0,12,20,0,12,0,9,0,0,1,25,0,48,57,0,0,317,0,0,0,1,0,0,6,0,0,0,0,19,159,0,0,0,0,0,1,0,0,0,5,0,31,0,0,1432,47,429,0,32,0,0,0,0,0,17,0,0,0,0,3,2,12,181,0,1,25,1,0,10,125,0,1207,160,8,0,0,4,1,802,0,11,0,0,1190,0,0,0,0,26,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,5,0,11,0,0,0,0,0,0,12,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,200,0,133,0,0,0,27,60,89,1118,213,0,0,0,0,1,0,0,0,0,0,0,0,0,1025,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,115,121,433,50,0,0,440,0,750,0,1,0,218,34,0,0,0,0,0,0,0,0,0,411,1,0,0,0,3,0,0,0,0,20,172,362,0,0,364,0,0,0,0,0,581,0,0,71,0,0,1,0,0,0,0,0,9,0,0,0,3,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,52,1,1,1,0,53,0,0,0,0,9,73,235,0,53,0,0,0,0,0,0,326,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,22,0,0,0,0,0,0,0,0,0,0,0,1,0,3,468,188,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13714,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6189,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,71627,0,0,0,0,9,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,60,0,0,0,0,3,58,63,27471,0,0,0,0,1,0,0,0,0,0,0,0,0,88841,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,425,3,0,0,91,0,223,0,0,0,25,381,0,0,0,0,0,0,0,0,0,42,0,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,29066,2 +48,0,0,21,7,102,78,8,627,52,196,0,0,0,77,0,223,0,9,13,0,10,4,17,1,3,64,0,19,0,19,3,0,7,64,0,110,97,8,0,1111,0,0,0,1,0,0,3,0,0,0,0,25,361,0,0,0,0,0,1,0,0,0,114,0,119,0,0,5253,102,1642,0,41,0,0,0,0,0,14,18,0,0,0,0,18,23,1464,0,8,64,7,0,5,477,0,3984,655,3,0,0,4,7,2679,0,66,0,0,4680,0,0,0,0,24,0,0,0,0,0,0,1,0,0,0,26,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,2,0,10,0,25,0,0,0,0,0,0,14,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,1,0,0,0,0,0,0,0,0,3,1,0,0,0,2,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,68,2,2,2,0,0,2,1037,2,288,0,0,0,46,136,245,4458,1289,0,0,0,0,1,0,0,0,0,0,1,1,0,3649,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,2,0,116,187,948,32,0,0,818,0,1566,0,1,0,408,148,0,0,0,0,0,0,4,0,0,1210,1,0,0,0,45,0,0,0,0,22,231,1054,0,0,2253,0,4,0,0,0,671,0,0,308,0,0,1,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,53,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,29,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,1,119,1,1,1,0,105,0,0,0,0,106,175,320,0,108,0,0,0,0,0,0,1134,19,0,0,0,0,0,0,0,0,0,0,0,8,0,1,60,0,0,0,0,0,0,0,0,0,0,0,11,0,4,748,1563,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,167,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,285,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,35,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,66,3,0,0,42,0,150,0,0,0,6,3,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,171,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,75,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,91,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,46,2,0,0,44,0,133,0,0,0,5,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,3,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,14,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,55,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,4,2 +21,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14388,0,0,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6038,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73958,0,0,0,0,4,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,28817,0,0,0,0,1,0,0,0,0,0,0,0,0,92752,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,440,3,0,0,91,0,183,0,0,0,25,313,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,31877,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,14,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,57,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,5,2 +9,0,0,6,0,47,14,0,54,1,11,0,0,7,8,0,773,0,6,2,0,0,0,7,0,10,0,0,7,0,13,0,0,0,6,898,47,6,0,0,55,0,0,0,1,0,0,4,0,0,0,0,13,276,0,0,0,0,0,1,0,0,0,0,0,5,0,0,9150,47,897,0,17,0,0,0,0,0,33,0,0,0,0,0,8,45,1735,0,0,6,0,0,0,0,0,240,25,8,0,0,2,0,852,0,2,32,0,2002,0,0,0,0,6,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,620,0,87,0,0,0,26,11,438,611,588,0,0,0,0,1,0,3,0,0,0,0,0,0,503,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,108,18,261,6,0,0,289,0,375,0,0,0,106,22,0,0,0,0,0,0,0,0,0,873,1,0,0,0,9,0,0,0,0,2,141,26,0,0,35,0,0,0,0,0,2813,1,0,207,10,0,1,1,0,0,0,0,6,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,10,15,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,34,0,0,0,12,1,53,163,0,18,12,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,802,52,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,8,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,48,11,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,23,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,38,0,0,0,8,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,88,20,2 +9,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,33,0,0,0,2,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,11,0,0,67,11,125,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,33,0,0,2,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,58,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,34,0,0,0,0,3,27,378,58,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,124,0,0,0,22,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,602,0,0,31,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,32,0,0,0,0,1,13,6,0,33,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,3,2 +0,0,0,3,0,11,2,0,16,0,3,0,0,0,3,0,14,0,6,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,34,0,0,0,1,0,0,3,0,0,0,0,0,64,0,0,0,0,0,1,0,0,0,0,0,3,0,0,433,11,47,0,1,0,0,0,0,0,13,0,0,0,0,0,2,6,50,0,0,2,0,0,0,0,0,10,0,6,0,0,2,0,17,0,1,0,0,123,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,60,0,32,0,0,0,0,3,28,5,64,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,85,3,0,0,117,0,131,0,0,0,47,1,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,93,34,0,0,0,0,0,0,0,0,38,0,0,81,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,188,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,23,2 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,67,0,0,0,0,0,1,0,0,0,0,0,1,0,0,990,10,59,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,125,0,0,0,0,0,0,0,0,15,0,5,0,0,2,0,14,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,117,0,82,0,0,0,0,3,26,13,134,0,0,0,0,1,0,0,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,8,3,105,2,0,0,244,0,350,0,0,0,180,9,0,0,0,0,0,0,2,0,0,41,1,0,0,0,2,0,0,0,0,0,100,160,0,0,0,0,0,0,0,0,57,0,0,83,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,499,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,197,32,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,57,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,5,2 +50,0,0,21,7,100,78,8,655,53,208,0,0,0,78,0,215,0,9,13,0,10,4,18,1,3,58,0,17,0,17,3,0,7,62,0,108,97,8,0,1142,0,0,0,1,0,0,3,0,0,0,0,23,359,0,0,0,0,0,1,0,0,0,112,0,124,0,0,12893,100,1668,0,37,0,0,0,0,0,14,18,0,0,0,0,19,24,3129,0,8,62,7,0,5,509,0,4224,695,3,0,0,4,7,2777,0,67,0,0,4284,0,0,0,0,24,0,0,0,0,0,0,1,0,0,0,23,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,2,0,11,0,27,0,0,0,0,0,0,14,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,1,0,0,0,0,0,0,0,0,3,1,0,0,0,2,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,64,2,2,2,0,0,2,2440,2,293,0,0,0,42,126,252,24798,2695,0,0,0,0,0,0,0,0,0,0,1,1,0,4904,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,2,0,115,186,946,32,0,0,798,0,1579,0,1,0,389,150,0,0,0,0,0,0,3,0,0,1243,1,0,0,0,46,0,0,0,0,20,224,1117,0,0,2394,0,3,0,0,0,1045,0,0,1940,0,0,1,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,54,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,29,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,1,128,1,1,1,0,103,0,0,0,0,106,171,258,0,98,0,0,0,0,0,0,1201,18,0,0,0,0,0,0,0,0,0,0,0,8,0,1,61,0,0,0,0,0,0,0,0,0,0,0,10,0,4,1411,1582,2 +10,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,169,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,200,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,65,3,0,0,42,0,152,0,0,0,6,4,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,171,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,24,0,22,0,0,0,1,0,0,0,0,0,6,0,0,205,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,71,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,67,0,50,0,0,0,0,3,57,44,111,0,0,0,0,0,0,0,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,85,3,0,0,83,0,113,0,0,0,29,8,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,209,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,15,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,34,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,5,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,12,0,0,0,0,3,21,3,21,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,22,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,2 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,629,11,49,0,1,0,0,0,0,0,12,0,0,0,0,0,1,5,128,0,0,1,0,0,0,0,0,9,0,5,0,0,2,0,15,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,113,0,60,0,0,0,0,3,28,8,115,0,0,0,0,1,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,76,2,0,0,107,0,122,0,0,0,40,2,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,26,0,0,0,0,0,0,0,0,52,0,0,147,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,83,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,162,18,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,104,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,4,0,0,202,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,46,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,117,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,176,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,86,3,0,0,111,0,163,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,615,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,104,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,10,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,946,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,496,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,278,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,41,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,109,2,0,0,119,0,144,0,0,0,61,1,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,28,2 +11,0,0,2,0,25,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,25,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,932,25,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,477,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,304,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,42,0,0,0,0,3,44,10,52,0,0,0,0,1,0,0,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,115,2,0,0,122,0,136,0,0,0,61,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,107,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,0,0,0,0,0,1,39,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,239,27,2 +3,0,0,5,0,38,6,0,38,0,5,0,0,6,5,0,585,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,2,762,38,6,0,0,45,0,0,0,1,0,0,2,3,0,0,0,1,183,0,1,0,0,0,1,0,0,0,0,0,2,0,0,6944,38,651,0,3,0,0,0,0,0,15,0,0,0,1,0,8,26,1350,0,0,2,0,0,0,0,0,191,20,5,0,0,2,0,624,0,0,2,0,1498,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,517,0,66,0,0,0,1,4,277,358,522,0,0,0,0,1,0,4,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,86,24,182,5,0,0,197,0,264,0,0,0,50,3,0,0,0,0,0,0,0,0,0,651,1,0,0,0,9,0,0,0,0,0,122,13,0,0,8,0,0,0,0,0,2267,1,0,77,6,0,1,1,0,0,0,0,14,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,5,0,0,0,0,1,40,25,0,4,12,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,654,33,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,1,15,0,0,0,9,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,170,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,184,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,67,3,0,0,42,0,150,0,0,0,6,5,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,646,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,171,2 +11,0,0,5,0,23,35,0,78,27,26,0,0,0,34,0,24,0,7,3,0,0,0,1,0,1,3,0,3,0,2,0,0,0,8,0,23,11,3,0,844,0,0,0,1,0,0,2,1,0,0,0,2,93,0,0,0,0,0,1,0,0,0,0,0,41,0,0,927,23,207,0,5,0,0,0,1,0,8,0,0,0,0,0,2,8,66,0,0,8,0,0,2,69,0,566,110,5,1,0,2,0,382,0,31,0,0,1104,0,0,1,0,5,0,0,0,1,0,0,1,0,0,0,75,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,79,0,59,0,0,0,4,13,49,593,109,0,0,0,0,1,0,0,0,0,0,0,0,0,947,0,3,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,34,165,5,0,0,185,0,296,0,0,0,114,23,0,0,0,0,0,0,0,0,0,204,1,0,4,0,4,0,0,0,0,3,125,146,0,0,301,0,0,0,0,1,80,0,0,71,0,0,1,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,9,0,0,0,0,1,31,156,0,9,0,0,0,0,0,0,199,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,150,75,2 +5,0,0,4,0,37,2,0,30,0,4,0,0,0,4,0,121,0,6,1,0,0,0,1,0,0,63,0,0,0,22,0,0,0,14,0,37,6,0,0,10,0,0,0,1,0,0,1,0,0,0,0,21,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1001,37,233,0,22,0,0,0,0,0,4,0,0,0,0,0,1,3,111,0,0,14,0,0,0,0,0,7,0,1,0,0,2,0,399,0,1,0,0,1004,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,92,0,102,0,0,0,42,75,53,628,139,0,0,0,0,1,0,0,0,0,0,0,0,0,455,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,215,4,0,0,150,0,277,0,0,0,56,12,0,0,0,0,0,0,0,0,0,167,1,0,0,0,2,0,0,0,0,1,120,5,0,0,0,0,0,0,0,0,846,0,0,25,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,22,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,21,0,0,0,0,1,51,15,0,85,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,189,66,2 +6,0,0,2,0,14,2,0,20,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,2,0,3,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,2,74,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2330,14,95,0,5,0,0,0,0,0,24,0,0,0,0,0,1,9,213,0,0,3,0,0,0,0,0,16,0,10,0,0,2,0,54,0,0,0,0,316,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,186,0,79,0,0,0,4,9,33,12,188,0,0,0,0,1,0,0,0,0,0,0,0,0,440,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,10,3,117,2,0,0,258,0,418,0,0,0,188,14,0,0,0,0,0,0,2,0,0,58,1,0,0,0,2,0,0,0,0,1,103,154,0,0,0,0,0,0,0,0,667,0,0,215,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,0,1,17,449,0,11,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,218,40,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,57,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9277,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1200,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,845,0,48,0,0,0,0,3,27,8,862,0,0,0,0,1,0,0,0,0,0,0,0,0,3649,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,85,2,0,0,109,0,108,0,0,0,46,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,806,0,0,3168,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1240,22,2 +49,0,0,21,7,98,77,8,614,52,196,0,0,0,76,0,215,0,9,13,0,10,4,17,1,3,58,0,17,0,17,3,0,7,61,0,106,97,7,0,1083,0,0,0,1,0,0,3,0,0,0,0,23,354,0,0,0,0,0,1,0,0,0,105,0,118,0,0,5320,98,1608,0,37,0,0,0,0,0,14,18,0,0,0,0,18,23,1477,0,8,61,7,0,5,472,0,3941,655,3,0,0,4,7,2614,0,66,0,0,4275,0,0,0,0,25,0,0,0,0,0,0,1,0,0,0,25,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,2,0,10,0,26,0,0,0,0,0,0,14,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,1,0,0,0,0,0,0,0,0,3,1,0,0,0,2,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,64,2,2,2,0,0,2,1035,2,275,0,0,0,42,127,236,4504,1274,0,0,0,0,1,0,0,0,0,0,1,1,0,3621,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,2,0,115,177,916,32,0,0,808,0,1565,0,1,0,401,150,0,0,0,0,0,0,4,0,0,1187,1,0,0,0,45,0,0,0,0,21,228,1042,0,0,2253,0,4,0,0,0,656,0,0,327,0,0,1,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,53,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,29,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,1,115,1,1,1,0,103,0,0,0,0,106,168,312,0,98,0,0,0,0,0,0,1122,18,0,0,0,0,0,0,0,0,0,0,0,8,0,1,60,0,0,0,0,0,0,0,0,0,0,0,12,0,4,757,1522,2 +2,0,0,3,0,10,4,0,30,0,7,0,0,0,2,0,17,0,7,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,10,6,0,0,27,0,0,0,1,0,0,8,0,0,0,0,0,108,0,0,0,0,0,1,0,0,0,0,0,4,0,0,5719,10,111,0,3,0,0,0,0,0,33,0,0,0,0,0,1,11,1286,0,0,0,0,0,1,13,0,132,15,8,0,0,2,0,80,0,0,0,0,246,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,760,0,120,0,0,0,0,3,29,108,767,0,0,0,0,1,0,0,0,0,0,0,0,0,1720,0,0,0,0,0,0,0,0,0,0,0,0,8,0,6,0,0,0,0,0,0,10,3,111,3,0,0,176,0,454,0,0,0,109,8,0,0,0,0,0,0,13,0,0,67,1,0,0,0,2,0,0,0,0,1,99,107,0,0,31,0,0,0,0,0,934,0,0,1212,0,0,1,0,1,0,0,0,16,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,10,142,0,3,0,0,0,0,0,0,82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,9,847,37,2 +19,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14140,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5784,22,38,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,32,0,9,0,0,70175,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,54,0,0,0,8,10,52,69,28341,0,0,0,0,1,0,0,0,0,0,0,0,0,92899,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,378,3,0,0,78,0,199,0,0,0,12,302,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,615,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,24,1,1,1,0,12,0,0,0,4,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,31847,2 +11,0,0,3,0,12,98,0,115,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,215,0,0,0,1,0,0,0,0,0,0,0,4,50,0,0,0,0,0,1,0,0,0,0,0,3,0,0,329,12,239,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,25,0,0,3,0,0,1,111,0,830,30,0,0,0,2,0,554,0,0,0,0,218,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,36,0,0,0,8,11,29,753,49,0,0,0,0,1,0,0,0,0,0,0,0,0,536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,54,3,0,0,151,0,135,0,0,0,118,11,0,0,0,0,0,0,0,0,0,240,0,0,0,0,2,0,0,0,0,5,96,226,0,0,98,0,0,0,0,0,24,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,243,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,5,2 +18,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,4869,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,62,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,38112,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,54,0,0,0,14,17,52,37,32780,0,0,0,0,1,0,0,0,0,0,0,0,0,94705,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,316,3,0,0,75,0,213,0,0,0,12,216,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,612,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,25,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,29083,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,57,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9884,11,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1300,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,896,0,48,0,0,0,0,3,27,8,913,0,0,0,0,1,0,0,0,0,0,0,0,0,4009,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,85,2,0,0,109,0,108,0,0,0,46,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,856,0,0,3372,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1341,20,2 +8,0,0,6,0,37,16,0,88,0,19,0,0,6,4,0,627,0,6,1,0,0,0,8,0,10,0,0,5,0,33,0,0,0,4,898,37,6,0,0,135,0,1,0,1,0,0,1,0,0,0,0,1,169,0,0,0,0,0,1,0,0,0,0,0,12,0,0,6372,37,797,0,3,0,0,0,0,0,16,0,0,0,0,0,8,23,1239,0,0,4,0,0,1,50,0,588,40,2,0,0,2,0,913,0,0,6,0,1205,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,412,0,47,0,0,0,1,4,268,756,414,0,0,0,0,1,0,3,0,0,0,0,0,0,329,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,86,16,205,6,0,0,254,0,298,0,0,0,109,3,0,0,0,0,0,0,0,0,0,766,1,0,0,0,9,0,0,0,0,0,124,165,0,0,57,0,0,0,0,0,2320,1,0,107,8,0,1,1,1,0,0,0,1,0,1,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,33,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,37,0,0,0,0,1,41,127,0,36,12,0,0,0,0,0,178,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,521,44,2 +6,0,0,2,0,13,2,0,18,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,0,88,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3615,13,89,0,3,0,0,0,0,0,30,0,0,0,0,0,1,12,498,0,0,3,0,0,0,0,0,20,0,10,0,0,2,0,18,0,0,0,0,503,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,419,0,103,0,0,0,0,3,29,19,423,0,0,0,0,1,0,0,0,0,0,0,0,0,684,0,0,0,0,0,0,0,0,0,0,0,0,7,0,4,0,0,0,0,0,0,10,3,127,2,0,0,319,0,428,0,0,0,253,17,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,1,103,215,0,0,0,0,0,0,0,0,678,0,0,451,0,0,1,0,0,0,0,0,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,654,0,3,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,320,48,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,3,0,34,17,0,31,0,2,0,0,2,2,0,547,0,6,2,0,0,0,8,0,11,0,0,4,0,1,0,0,0,2,900,34,6,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,440,0,0,0,0,0,1,0,0,0,0,0,2,0,0,48098,34,617,0,1,0,0,0,0,0,24,0,0,0,0,0,9,21,9196,0,0,2,0,0,0,0,0,93,5,2,0,0,2,0,570,0,0,0,0,2965,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,5391,0,36,0,0,0,0,3,256,1161,5377,0,0,0,0,1,0,3,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,178,3,0,0,218,0,201,0,0,0,68,6,0,0,0,0,0,0,0,0,0,607,1,0,0,0,10,0,0,0,0,0,118,13,0,0,0,0,0,0,0,0,3424,1,0,775,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,359,0,2,14,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1908,30,2 +16,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,13909,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5470,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,68339,0,0,0,0,3,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,9,54,69,27879,0,0,0,0,1,0,0,0,0,0,0,0,0,93316,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,380,3,0,0,78,0,225,0,0,0,12,279,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,615,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,32396,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1023,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,82,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,66,0,0,0,0,0,7,36,185,0,0,0,0,0,0,0,0,0,0,0,0,0,468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,11,2,0,0,53,0,81,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,44,0,0,0,0,0,0,0,0,288,0,0,252,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,111,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,289,7,2 +2,0,0,3,0,47,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,7,0,0,0,0,1,0,0,0,38,0,47,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,7,35,0,0,0,0,0,1,0,0,0,0,0,10,0,0,292,47,94,0,7,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,38,0,0,1,47,0,386,35,0,0,0,2,0,234,0,0,0,0,517,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,68,0,0,0,7,10,62,355,60,0,0,0,0,0,0,0,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,151,3,0,0,153,0,205,0,0,0,120,4,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,9,129,112,0,0,84,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,0,0,0,0,0,1,85,38,0,8,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,5,2 +12,0,0,3,0,18,2,0,15,0,3,0,0,0,3,0,15,0,7,1,0,0,0,1,0,1,0,0,3,0,1,0,0,0,6,0,18,6,0,0,14,0,3,0,1,0,0,11,0,0,0,0,0,116,0,0,0,0,0,1,0,0,0,0,0,3,0,0,4721,18,118,0,5,0,0,0,0,0,45,0,0,0,0,0,1,24,958,0,0,6,0,0,0,0,0,28,0,17,0,0,2,0,21,0,1,0,0,508,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,4,1,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,457,0,103,0,0,0,0,3,41,30,455,0,0,0,0,1,0,0,0,0,0,0,0,0,1144,0,0,0,0,0,0,0,0,0,0,0,0,11,0,14,0,0,0,0,0,0,8,4,116,3,0,0,182,0,255,0,0,0,108,22,0,0,0,0,0,0,4,0,0,45,1,0,0,0,2,0,0,0,0,1,100,63,0,0,0,0,0,0,0,0,384,0,0,1363,0,0,1,0,1,0,0,0,17,0,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,4,0,0,0,0,1,24,341,0,5,0,0,1,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,666,137,2 +0,0,0,3,0,13,3,0,6,0,2,0,0,0,2,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,13,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,1,0,0,124,13,28,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,24,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,6,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,54,0,0,0,0,3,32,5,43,0,0,0,0,1,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,3,0,0,78,0,93,0,0,0,13,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,96,5,0,0,0,0,0,0,0,0,27,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,13,8,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,103,10,2 +6,0,0,2,0,13,2,0,18,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,79,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2409,13,77,0,3,0,0,0,0,0,24,0,0,0,0,0,1,9,230,0,0,3,0,0,0,0,0,16,0,10,0,0,2,0,18,0,0,0,0,290,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,195,0,80,0,0,0,0,3,29,10,197,0,0,0,0,1,0,0,0,0,0,0,0,0,468,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,10,3,119,2,0,0,255,0,416,0,0,0,188,16,0,0,0,0,0,0,2,0,0,46,1,0,0,0,2,0,0,0,0,1,102,154,0,0,0,0,0,0,0,0,649,0,0,238,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,449,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,226,38,2 +17,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,1,0,0,0,2,0,0,0,0,0,0,5,0,1,0,2,0,22,6,0,0,14383,0,0,0,1,0,0,1,0,0,0,0,4,55,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5594,22,35,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,24,0,1,0,0,2,0,29,0,9,0,0,70560,0,0,0,0,6,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,56,0,0,0,8,11,52,71,28827,0,0,0,0,1,0,0,0,0,0,0,0,0,93083,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,381,3,0,0,78,0,247,0,0,0,12,298,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,611,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,24,1,1,1,0,8,0,0,0,8,1,24,2,0,5,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,31610,2 +11,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,49,0,0,0,0,0,1,0,0,0,0,0,3,0,0,313,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,26,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,208,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,36,0,0,0,8,11,28,397,48,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,53,3,0,0,62,0,131,0,0,0,29,4,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,25,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,5,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,200,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,45,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,122,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,177,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,85,3,0,0,111,0,163,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,613,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,11,2 +0,0,0,2,26,43,2,62,140,0,28,0,0,0,2,0,85,0,6,21,0,17,14,1,17,0,0,0,0,0,1,0,0,26,33,0,69,6,0,0,14,0,1,0,1,0,0,1,0,0,0,0,0,137,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1074,43,1154,0,1,0,0,0,0,0,6,51,0,0,0,0,1,6,460,0,62,33,26,0,0,0,0,283,0,1,0,0,2,26,101,0,0,0,0,615,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,54,8,8,8,0,0,8,49,8,54,0,0,18,0,3,112,53,87,0,0,0,0,1,0,0,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,12,547,28,0,0,571,0,474,0,0,0,214,7,0,0,0,0,0,0,0,0,0,263,1,0,0,0,70,0,0,0,0,0,125,11,0,0,0,0,0,0,0,0,896,0,0,731,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,0,0,0,0,0,312,102,156,9,1,0,0,1,0,0,0,47,9,0,0,0,0,0,0,0,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,0,0,0,43,0,1,352,9,2 +18,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,13989,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5737,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,69340,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,9,54,69,28039,0,0,0,0,1,0,0,0,0,0,0,0,0,92455,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,378,3,0,0,78,0,211,0,0,0,12,272,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,615,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,31757,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,14,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,4,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +17,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14110,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5512,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,67183,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,2,0,0,0,0,0,0,69,0,56,0,0,0,8,9,56,71,28281,0,0,0,0,1,0,0,0,0,0,0,0,0,89101,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,363,3,0,0,78,0,216,0,0,0,12,263,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,614,0,0,20,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,28,1,1,1,0,12,0,0,0,2,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,27961,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,226,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,232,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,179,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,2,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,27,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,19,2 +0,0,0,3,0,12,2,0,14,1,3,0,0,0,4,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,10,0,3,0,1,0,0,3,0,0,0,0,0,68,0,0,0,0,0,1,0,0,0,0,0,4,0,0,7594,12,47,0,1,0,0,0,0,0,13,0,0,0,0,0,1,6,1724,0,0,2,0,0,0,0,0,10,0,3,0,0,2,0,17,0,2,0,0,1063,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,93,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,988,0,43,0,0,0,0,3,28,6,1030,0,0,0,0,1,0,0,0,0,0,0,0,0,3080,0,0,0,0,0,0,0,0,0,0,0,0,3,0,93,0,0,0,0,0,0,8,5,97,3,0,0,130,0,218,0,0,0,59,8,0,0,0,0,0,0,178,0,0,43,1,0,0,0,2,0,0,0,0,0,96,46,0,0,0,0,0,0,0,0,454,0,0,2398,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,181,0,0,0,0,353,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,171,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,90,0,0,0,0,1,0,0,2,911,11,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,22,0,0,0,0,0,1,0,0,0,0,0,1,0,0,93,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,995,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,33,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,54,2,0,0,44,0,159,0,0,0,5,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,4,2 +2,0,0,3,0,46,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,7,0,0,0,0,1,0,0,0,37,0,46,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,7,35,0,0,0,0,0,1,0,0,0,0,0,10,0,0,290,46,94,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,37,0,0,1,47,0,386,35,0,0,0,2,0,234,0,0,0,0,534,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,67,0,0,0,7,10,61,355,60,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,148,3,0,0,150,0,202,0,0,0,117,3,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,9,128,112,0,0,84,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,0,0,0,0,0,1,83,37,0,8,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,5,2 +6,0,0,2,0,14,2,0,20,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,8,0,0,0,0,0,145,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1718,14,93,0,3,0,0,0,0,0,32,0,0,0,0,0,1,13,302,0,0,3,0,0,0,0,0,22,0,12,0,1,2,0,20,0,0,0,0,257,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,260,0,113,0,0,0,0,3,33,20,266,0,0,0,0,1,0,0,0,0,0,0,0,0,593,0,0,0,0,0,0,0,0,0,0,0,0,8,0,2,0,0,0,0,0,0,10,3,123,2,0,0,252,0,414,0,0,0,180,11,0,0,0,1,0,0,6,0,0,48,1,0,0,0,2,0,0,0,0,1,108,139,0,0,0,0,0,0,0,0,666,0,0,249,0,0,1,0,0,0,0,0,15,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,553,0,3,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,320,49,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,225,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,85,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,144,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,68,0,50,0,0,0,32,19,33,18,83,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,630,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,39,0,17,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,18,2 +7,0,0,3,0,29,5,0,11,0,2,0,0,2,2,0,23,0,6,2,0,0,0,6,0,8,6,0,2,0,3,0,0,0,5,0,29,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,3,70,0,0,0,0,0,1,0,0,0,0,0,2,0,0,656,29,47,0,3,0,0,0,0,0,3,0,0,0,0,0,7,12,149,0,0,5,0,0,0,0,0,72,5,0,0,0,2,0,58,0,0,0,0,461,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,91,0,56,0,0,0,4,10,182,20,95,0,0,0,0,1,0,3,0,0,0,0,0,0,194,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,94,3,0,0,112,0,203,0,0,0,42,5,0,0,0,0,0,0,0,0,0,51,0,0,0,0,8,0,0,0,0,1,111,25,0,0,0,0,0,0,0,0,685,0,0,2,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,3,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,2,0,0,0,0,1,34,69,0,10,9,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,28,2 +7,0,0,3,0,29,5,0,11,0,2,0,0,2,2,0,23,0,6,2,0,0,0,6,0,8,6,0,2,0,3,0,0,0,5,0,29,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,3,76,0,0,0,0,0,1,0,0,0,0,0,2,0,0,660,29,47,0,3,0,0,0,0,0,3,0,0,0,0,0,7,12,158,0,0,5,0,0,0,0,0,72,5,0,0,0,2,0,58,0,0,0,0,539,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,91,0,56,0,0,0,4,10,182,21,95,0,0,0,0,1,0,3,0,0,0,0,0,0,201,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,97,3,0,0,112,0,207,0,0,0,42,3,0,0,0,0,0,0,0,0,0,51,0,0,0,0,8,0,0,0,0,1,111,25,0,0,0,0,0,0,0,0,693,0,0,2,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,3,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,2,0,0,0,0,1,34,69,0,10,9,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,28,2 +6,0,0,2,0,13,2,0,20,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,2,0,3,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,2,78,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2408,13,95,0,5,0,0,0,0,0,24,0,0,0,0,0,1,9,226,0,0,3,0,0,0,0,0,16,0,10,0,0,2,0,54,0,0,0,0,267,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,194,0,80,0,0,0,4,9,29,12,196,0,0,0,0,1,0,0,0,0,0,0,0,0,481,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,10,3,118,2,0,0,255,0,439,0,0,0,188,16,0,0,0,0,0,0,2,0,0,58,1,0,0,0,2,0,0,0,0,1,102,154,0,0,0,0,0,0,0,0,668,0,0,236,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,4,0,0,0,0,1,16,449,0,11,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,221,39,2 +55,0,0,6,0,48,8,0,52,12,12,0,0,2,17,0,519,0,7,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,14,898,48,21,0,0,96,0,0,0,1,0,0,6,0,0,0,0,1,223,0,0,0,0,0,1,0,0,0,0,0,22,0,0,20655,48,647,0,1,0,0,0,0,0,32,0,0,0,0,0,8,22,3264,0,0,14,0,0,1,25,0,297,30,8,0,0,2,0,666,0,13,0,0,2580,0,0,0,0,12,14,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,10,2,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,2675,0,137,0,0,0,0,3,258,3591,2723,0,0,0,0,1,0,3,0,0,0,0,0,0,2890,0,13,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,34,23,289,6,0,0,291,0,414,0,0,0,144,6,0,0,0,0,0,0,4,0,0,617,1,0,0,0,9,0,0,0,0,1,135,98,0,0,51,0,12,0,24,12,2010,1,0,231,6,0,1,1,0,0,0,0,13,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,0,0,0,0,0,1,62,229,0,2,12,0,0,0,0,0,149,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,6,656,59,2 +63,0,0,5,0,50,6,0,29,13,3,0,0,2,18,0,604,0,7,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,15,898,50,24,0,0,57,0,0,0,1,0,0,5,0,0,0,0,1,182,0,0,0,0,0,1,0,0,0,0,0,18,0,0,25288,50,692,0,1,0,0,0,0,0,27,0,0,0,0,0,8,21,4025,0,0,15,0,0,0,0,0,94,5,6,0,0,2,0,637,0,14,0,0,2533,0,0,0,0,13,15,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,3385,0,137,0,0,0,0,3,264,3718,3444,0,0,0,0,1,0,3,0,0,0,0,0,0,2973,0,16,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,34,24,294,5,0,0,283,0,416,0,0,0,133,6,0,0,0,0,0,0,4,0,0,669,1,0,0,0,9,0,0,0,0,1,135,35,0,0,0,0,13,0,25,13,2217,1,0,197,6,0,1,1,0,0,0,0,13,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,0,0,0,0,0,1,65,180,0,2,12,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,5,666,51,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,951,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,501,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,284,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,40,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,110,2,0,0,119,0,132,0,0,0,61,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,27,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,55,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +27,0,0,16,0,71,7,0,70,12,6,0,0,6,35,0,1135,0,7,3,0,0,0,8,6,16,37,0,25,0,15,0,0,0,29,1125,71,44,13,0,154,0,0,0,1,0,0,3,1,0,0,0,21,241,0,0,0,0,0,1,0,0,0,8,0,24,0,0,16750,71,1340,0,37,0,0,0,0,0,17,0,0,0,0,0,10,22,3212,0,0,29,0,0,0,0,0,325,20,4,0,0,2,0,1435,0,18,1,0,2905,0,0,0,0,42,5,2,0,2,0,0,1,0,0,0,14,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,21,0,0,0,0,0,0,36,0,0,0,0,5,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,8,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,76,12,12,12,0,0,0,1431,0,95,0,0,0,40,103,348,903,1428,0,0,0,0,1,0,19,0,0,0,0,0,0,757,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,1,89,51,399,34,0,0,335,0,765,0,0,0,152,44,0,0,0,0,0,0,0,0,0,1266,1,0,1,0,17,0,0,0,0,20,155,18,0,0,6,0,11,0,0,1,3730,1,0,54,7,0,1,1,0,0,0,0,7,0,0,0,1,0,0,0,0,0,13,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,7,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,91,1,1,1,0,66,0,0,0,16,1,100,136,0,81,12,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1257,138,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,6,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,6,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,202,14,166,0,7,0,0,0,0,0,4,0,0,0,0,0,1,3,46,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,110,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,172,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,86,3,0,0,111,0,163,0,0,0,46,3,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,615,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,116,0,0,0,0,1,17,71,0,111,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,10,2 +15,0,0,3,0,14,11,0,32,0,11,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,5,0,14,6,0,0,45,0,0,0,1,0,0,0,0,0,0,0,4,47,0,0,0,0,0,1,0,0,0,0,0,3,0,0,348,14,70,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,33,0,0,5,0,0,1,28,0,253,40,0,0,0,2,0,132,0,0,0,0,213,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,9,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,44,0,0,0,8,10,33,439,154,0,0,0,0,1,0,0,0,0,0,0,0,0,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,61,3,0,0,70,0,145,0,0,0,37,3,0,0,0,0,0,0,0,0,0,72,0,0,0,0,2,0,0,0,0,5,98,58,0,0,128,0,0,0,0,0,28,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,0,1,19,21,0,5,0,0,0,0,0,0,77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,6,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1037,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,58,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,68,0,0,0,0,0,7,36,185,0,0,0,0,0,0,0,0,0,0,0,0,0,468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,17,2,0,0,54,0,82,0,0,0,48,9,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,45,0,0,0,0,0,0,0,0,292,0,0,252,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,114,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,295,7,2 +10,0,0,2,0,9,3,0,7,0,2,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3111,9,27,0,1,0,0,0,0,0,2,0,0,0,0,0,1,1,1241,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,842,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,635,0,50,0,0,0,0,3,23,1787,656,0,0,0,0,0,0,0,0,0,0,0,0,0,1733,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,3,47,2,0,0,41,0,159,0,0,0,5,2,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,1203,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,710,14,2 +0,0,0,3,0,10,2,0,14,1,3,0,0,0,4,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,4,0,0,119,10,36,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,17,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,17,0,2,0,0,74,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,23,0,22,0,0,0,0,3,24,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,70,3,0,0,96,0,132,0,0,0,39,1,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,92,26,0,0,0,0,0,0,0,0,26,0,0,8,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,76,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,9,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,983,11,61,0,1,0,0,0,0,0,18,0,0,0,0,0,1,8,128,0,0,0,0,0,0,0,0,15,0,5,0,0,2,0,14,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,119,0,87,0,0,0,0,3,30,13,135,0,0,0,0,1,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,8,3,108,2,0,0,248,0,309,0,0,0,181,18,0,0,0,0,0,0,2,0,0,41,1,0,0,0,2,0,0,0,0,0,101,160,0,0,0,0,0,0,0,0,58,0,0,77,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,499,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,210,31,2 +6,0,0,2,0,13,2,0,19,0,2,0,0,0,2,0,21,0,6,1,0,0,0,1,0,0,3,0,1,0,1,1,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,1,86,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3626,13,96,0,3,0,0,0,0,0,30,0,0,0,0,0,1,11,493,0,0,3,0,0,0,0,0,19,0,10,0,0,2,0,35,0,0,0,0,354,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,415,0,102,0,0,0,2,8,29,25,419,0,0,0,0,1,0,0,0,0,0,0,0,0,683,0,0,0,0,0,0,0,0,0,0,0,0,7,0,3,0,0,0,0,0,0,10,3,122,2,0,0,319,0,446,0,0,0,253,23,0,0,0,0,0,0,0,0,0,52,1,0,0,0,2,0,0,0,0,1,103,215,0,0,0,0,0,0,0,0,687,0,0,444,0,0,1,0,0,0,0,0,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,7,0,0,0,0,1,16,654,0,6,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,318,42,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +16,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,23,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,92,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,29,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,89,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,41,0,0,0,8,5,28,19,53,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,39,47,2,0,0,44,0,127,0,0,0,5,5,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,597,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,3,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,40,0,0,0,0,0,1,0,0,0,0,0,3,0,0,232,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,146,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,169,0,0,0,18,7,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,41,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,18,2 +16,0,0,3,0,26,2,0,4,20,3,0,0,0,23,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,10567,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,23,0,0,5996,26,47,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,53,0,21,0,0,63064,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,61,0,0,0,0,3,58,61,21147,0,0,0,0,1,0,0,0,0,0,0,0,0,95830,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,24,455,3,0,0,92,0,223,0,0,0,26,323,0,0,0,0,0,0,0,0,0,49,1,0,0,0,3,0,0,0,0,1,108,7,0,0,0,0,0,0,0,0,615,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,29588,2 +14,0,0,12,2,32,60,2,185,22,57,0,0,0,35,5,116,0,11,1,0,0,0,1,0,0,0,0,8,0,12,0,0,2,18,0,34,102,0,0,341,0,0,0,1,0,0,1,1,0,0,0,11,94,0,0,0,0,0,1,0,0,0,9,0,53,0,0,689,32,407,0,20,0,0,0,0,0,4,0,0,0,0,0,1,4,39,0,2,18,2,0,10,128,0,1218,140,5,1,0,6,2,718,0,29,0,0,694,0,0,0,0,10,6,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,2,0,2,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,18,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,65,0,54,0,0,0,22,23,75,1003,77,0,0,0,0,1,0,0,0,0,0,0,0,0,619,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,216,88,450,28,0,0,468,0,2757,0,2,0,159,35,0,0,0,0,0,0,0,0,0,469,1,0,5,0,2,0,0,0,0,12,143,287,0,0,311,0,0,0,0,0,221,0,0,31,0,0,1,0,0,0,0,0,8,0,0,0,3,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,19,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,2,34,1,1,1,0,30,0,0,0,0,17,52,36,0,20,0,0,0,0,0,0,422,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,38,0,0,0,0,0,0,0,0,0,0,0,2,0,1,170,64,2 +11,0,0,3,0,10,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,21,0,1,0,0,0,0,0,10,6,0,0,71,0,3,0,1,0,0,3,0,0,0,0,0,60,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1273,10,69,0,22,0,0,0,0,0,12,0,0,0,0,0,1,8,619,0,0,0,0,0,0,0,0,33,0,3,0,0,2,0,35,0,0,0,0,228,0,0,0,0,31,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,123,0,114,0,0,0,0,3,53,17,163,0,0,0,0,1,0,0,0,0,0,0,0,0,388,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,74,3,0,0,85,0,173,0,0,0,18,1,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,92,11,0,0,0,0,4,0,0,0,857,0,0,760,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,21,0,0,0,0,1,10,103,0,22,0,0,1,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,513,11,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +0,0,0,3,0,12,2,0,14,1,3,0,0,0,4,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,10,0,3,0,1,0,0,3,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,4,0,0,7585,12,47,0,1,0,0,0,0,0,13,0,0,0,0,0,1,6,1723,0,0,2,0,0,0,0,0,10,0,3,0,0,2,0,17,0,2,0,0,953,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,91,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,986,0,42,0,0,0,0,3,28,6,1028,0,0,0,0,1,0,0,0,0,0,0,0,0,3085,0,0,0,0,0,0,0,0,0,0,0,0,3,0,88,0,0,0,0,0,0,8,5,97,3,0,0,130,0,220,0,0,0,59,7,0,0,0,0,0,0,172,0,0,43,1,0,0,0,2,0,0,0,0,0,96,46,0,0,0,0,0,0,0,0,457,0,0,2380,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,177,0,0,0,0,341,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,172,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,88,0,0,0,0,1,0,0,2,914,11,2 +18,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,0,0,17,0,0,0,6,0,26,6,0,0,14836,0,0,0,1,0,0,1,0,0,0,0,16,47,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5347,26,52,0,17,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,72,0,1,0,0,2,0,51,0,14,0,0,72110,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,32,35,58,93,29717,0,0,0,0,1,0,0,0,0,0,0,0,0,87727,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,408,3,0,0,91,0,212,0,0,0,25,286,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,17,108,6,0,0,0,0,0,0,0,0,609,0,0,32,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,21,2,0,0,1,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,32,0,0,0,32,1,32,6,0,17,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,28691,2 +3,0,0,5,2,58,17,8,120,6,28,0,0,2,11,1,1025,0,6,9,0,2,1,19,0,11,3,0,5,0,2,0,0,1,18,3454,60,6,74,0,150,0,0,0,1,0,0,5,0,0,0,0,2,329,0,0,0,0,0,1,0,0,0,0,0,23,0,0,54242,58,1553,0,3,0,0,0,0,0,48,6,0,0,0,0,22,38,8918,0,8,18,1,0,1,63,0,625,70,9,0,0,2,2,1255,0,9,0,0,2288,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,12,12,12,0,0,0,8037,0,232,0,0,0,2,8,380,867,8125,0,0,0,0,1,0,4,0,0,0,0,0,0,1692,0,97,0,0,0,0,0,0,0,0,0,0,5,1,5,0,0,0,0,1,0,44,19,382,7,0,0,418,0,508,0,0,0,210,32,0,0,0,0,0,0,4,0,0,1210,1,0,0,0,31,0,0,0,0,1,152,203,0,0,180,0,0,0,0,0,4428,1,0,874,16,0,1,2,0,0,0,0,9,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,42,42,0,0,7,0,0,0,0,0,16,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,74,1,1,1,0,7,0,0,0,0,55,78,224,0,7,14,0,0,0,0,0,390,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,910,118,2 +3,0,0,10,1,236,29,1,51,1,6,0,0,2,9,0,70,0,9,3,0,0,0,5,0,8,0,0,4,0,2,0,0,1,208,0,237,54,0,0,48,0,0,0,1,0,0,7,0,0,0,0,3,125,0,0,0,0,0,1,0,0,0,4,0,9,0,0,1334,236,172,0,5,0,0,0,0,0,30,0,0,0,0,0,7,22,288,0,1,208,1,0,1,0,0,134,5,11,0,0,4,1,60,0,3,0,0,1899,0,0,0,0,2,1,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,10,10,10,0,0,0,254,0,331,0,0,0,4,6,402,236,254,0,0,0,0,1,0,4,0,0,0,0,0,0,586,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,135,24,925,12,0,0,949,0,710,0,1,0,719,11,0,0,0,0,0,0,5,0,0,176,1,0,0,0,8,0,0,0,0,3,341,25,0,0,0,0,0,0,0,0,507,0,0,160,3,0,1,1,0,0,0,0,18,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,239,1,1,1,0,6,0,0,0,0,9,445,303,0,5,9,0,0,0,0,0,83,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,1,0,11,422,342,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,96,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2547,10,80,0,23,0,0,0,0,0,17,0,0,0,0,0,1,10,1005,0,0,0,0,0,0,0,0,35,0,6,0,0,2,0,37,0,0,0,0,357,0,0,0,0,29,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,388,0,125,0,0,0,0,3,56,19,428,0,0,0,0,1,0,0,0,0,0,0,0,0,1122,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,172,3,0,0,108,0,259,0,0,0,39,4,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,712,0,0,884,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,422,17,2 +4,0,0,2,0,12,3,0,9,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,1,0,0,0,0,0,33,0,0,0,4,0,12,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,1,0,0,697,12,73,0,1,0,0,0,0,0,9,0,0,0,0,0,2,5,204,0,0,4,0,0,0,0,0,9,0,4,0,0,2,0,8,0,0,0,0,111,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,66,0,36,0,0,0,0,3,32,48,92,0,0,0,0,1,0,0,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,81,2,0,0,122,0,147,0,0,0,62,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,3,0,0,0,0,0,94,40,0,0,0,0,0,0,0,0,48,0,0,409,0,0,1,0,1,0,0,0,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,213,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,32,0,0,0,0,1,16,121,0,33,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,11,2 +7,0,0,3,0,29,5,0,11,0,2,0,0,2,2,0,23,0,6,2,0,0,0,6,0,8,6,0,2,0,3,0,0,0,5,0,29,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,3,67,0,0,0,0,0,1,0,0,0,0,0,2,0,0,661,29,47,0,3,0,0,0,0,0,3,0,0,0,0,0,7,12,154,0,0,5,0,0,0,0,0,72,5,0,0,0,2,0,58,0,0,0,0,471,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,91,0,56,0,0,0,4,10,182,16,95,0,0,0,0,1,0,3,0,0,0,0,0,0,198,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,96,3,0,0,112,0,204,0,0,0,42,4,0,0,0,0,0,0,0,0,0,51,0,0,0,0,8,0,0,0,0,1,111,25,0,0,0,0,0,0,0,0,687,0,0,2,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,3,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,2,0,0,0,0,1,34,69,0,10,9,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,40,2 +7,0,0,3,0,29,5,0,11,0,2,0,0,2,2,0,23,0,6,2,0,0,0,6,0,8,6,0,2,0,3,0,0,0,5,0,29,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,3,77,0,0,0,0,0,1,0,0,0,0,0,2,0,0,642,29,47,0,2,0,0,0,0,0,3,0,0,0,0,0,7,12,146,0,0,5,0,0,0,0,0,72,5,0,0,0,2,0,58,0,0,0,0,455,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,91,0,56,0,0,0,4,10,182,20,94,0,0,0,0,1,0,3,0,0,0,0,0,0,197,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,99,3,0,0,112,0,206,0,0,0,42,6,0,0,0,0,0,0,0,0,0,51,0,0,0,0,8,0,0,0,0,1,111,25,0,0,0,0,0,0,0,0,679,0,0,2,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,3,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,2,0,0,0,0,1,34,69,0,10,9,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,28,2 +11,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,47,0,0,0,0,0,1,0,0,0,0,0,3,0,0,304,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,26,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,207,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,37,0,0,0,8,11,28,397,48,0,0,0,0,1,0,0,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,52,3,0,0,62,0,137,0,0,0,29,1,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,25,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,5,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,14,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,57,0,0,0,2,10,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,4,2 +16,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14089,0,0,0,1,0,0,1,0,0,0,0,4,52,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5595,22,38,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,32,0,9,0,0,66411,0,0,0,0,6,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,10,54,69,28239,0,0,0,0,1,0,0,0,0,0,0,0,0,89836,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,362,3,0,0,78,0,230,0,0,0,12,262,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,614,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,6,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,28289,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13963,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6451,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,73803,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,27966,0,0,0,0,1,0,0,0,0,0,0,0,0,93007,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,453,3,0,0,91,0,222,0,0,0,25,316,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,31015,2 +9,0,0,3,0,153,3,0,141,3,3,0,0,0,7,0,794,0,6,1,0,0,0,1,0,2,411,0,0,0,138,0,0,0,53,0,153,306,0,0,122,0,0,0,1,0,0,0,0,0,0,0,139,156,0,0,0,0,0,1,0,0,0,0,0,7,0,0,2400,153,1401,0,140,0,0,0,0,0,1,0,0,0,0,0,1,1,21,0,0,53,0,0,0,0,0,7,0,0,0,0,2,0,2529,0,5,0,0,4663,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0,0,0,32,0,174,0,0,0,276,460,171,288,147,0,0,0,0,1,0,0,0,0,0,0,0,0,1209,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,778,3,0,0,702,0,418,0,0,0,388,45,0,0,0,0,0,0,0,0,0,954,0,0,0,0,2,0,0,0,0,3,261,109,0,0,0,0,0,0,0,0,1593,0,0,48,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,138,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,150,1,1,1,0,137,0,0,0,0,1,206,57,0,551,0,0,0,0,0,0,694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,458,2 +3,0,0,5,2,58,17,8,119,6,28,0,0,2,11,1,977,0,6,10,0,2,1,18,0,11,3,0,5,0,2,0,0,1,18,3454,60,6,65,0,150,0,0,0,1,0,0,5,0,0,0,0,2,317,0,0,0,0,0,1,0,0,0,0,0,23,0,0,62350,58,1502,0,3,0,0,0,0,0,48,6,0,0,0,0,22,38,10304,0,8,18,1,0,1,63,0,625,70,9,0,0,2,2,1207,0,9,0,0,2227,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,12,12,12,0,0,0,9335,0,234,0,0,0,2,8,378,879,9424,0,0,0,0,1,0,4,0,0,0,0,0,0,1719,0,97,0,0,0,0,0,0,0,0,0,0,5,1,5,0,0,0,0,1,0,44,19,359,7,0,0,417,0,489,0,0,0,209,32,0,0,0,0,0,0,4,0,0,1161,1,0,0,0,31,0,0,0,0,1,151,203,0,0,180,0,0,0,0,0,4400,1,0,956,16,0,1,2,0,0,0,0,9,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,42,42,0,0,6,0,0,0,0,0,16,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,74,1,1,1,0,7,0,0,0,0,53,78,224,0,7,14,0,0,0,0,0,397,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,947,111,2 +24,0,0,18,0,122,46,0,206,43,57,0,0,0,70,1,143,0,6,5,0,0,0,5,6,23,15,0,58,0,12,0,0,0,95,0,122,41,31,0,546,0,0,0,1,0,0,2,0,0,0,0,7,124,0,0,0,0,0,1,0,1,0,51,0,87,0,0,47246,122,640,0,87,0,0,0,0,0,10,0,0,0,0,0,7,10,9031,0,0,95,0,0,5,169,0,1519,150,3,0,0,2,0,1173,0,57,0,0,2900,0,0,0,0,26,2,0,0,0,0,0,1,0,0,1,15,0,0,0,0,0,0,0,2,0,6,0,7,0,0,0,0,0,0,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,73,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,38,0,0,0,0,0,0,5483,0,220,0,0,0,16,57,191,1255,5534,0,0,0,0,1,0,0,0,0,0,0,0,0,11845,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,15,70,512,22,0,0,496,0,745,0,0,0,370,68,0,0,0,0,0,0,0,0,0,529,1,0,0,0,16,0,0,0,0,22,209,410,0,0,374,0,3,0,29,10,2499,0,0,12364,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,30,30,0,0,10,3,0,0,0,0,0,25,7,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,124,1,1,1,0,132,0,0,0,0,25,217,216,0,108,0,0,0,0,0,0,584,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,53,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4107,304,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14022,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6172,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,71261,0,0,0,0,2,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,28085,0,0,0,0,1,0,0,0,0,0,0,0,0,90298,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,425,3,0,0,91,0,212,0,0,0,25,303,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,29120,2 +0,0,0,4,1,11,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,12,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,48,11,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,23,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,28,0,0,0,0,3,28,6,45,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,5,0,0,43,0,38,0,0,0,8,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,91,2,0,0,0,0,4,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,90,20,2 +8,0,0,2,0,15,14,0,16,0,2,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,4,0,15,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,4,58,0,0,0,0,0,1,0,0,0,0,0,1,0,0,338,15,55,0,5,0,0,0,0,0,7,0,0,0,0,0,1,4,50,0,0,4,0,0,0,0,0,7,0,4,0,0,2,0,42,0,0,0,0,195,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,63,0,43,0,0,0,8,5,34,19,80,0,0,0,0,1,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,31,103,2,0,0,110,0,234,0,0,0,40,6,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,1,97,21,0,0,0,0,0,0,0,0,632,0,0,33,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,8,0,0,0,4,1,19,79,0,5,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,13,2 +2,0,0,2,0,17,2,0,16,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,6,0,0,0,3,0,17,6,0,0,9,0,0,0,1,0,0,9,0,0,0,0,5,93,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3287,17,96,0,9,0,0,0,0,0,37,0,0,0,0,0,1,11,626,0,0,3,0,0,0,0,0,22,0,15,0,0,2,0,20,0,0,0,0,307,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,9,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,465,0,121,0,0,0,10,5,39,19,471,0,0,0,0,1,0,0,0,0,0,0,0,0,1003,0,1,0,0,0,0,0,0,0,0,0,0,8,0,5,0,0,0,0,0,0,8,3,145,2,0,0,268,0,393,0,0,0,186,10,0,0,0,0,0,0,2,0,0,43,1,0,0,0,2,0,0,0,0,1,126,128,0,0,0,0,0,0,0,0,181,0,0,695,0,0,1,0,0,0,0,0,18,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,13,0,0,0,4,1,20,532,0,9,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,448,50,2 +8,0,0,2,0,15,14,0,16,0,2,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,4,0,15,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,4,58,0,0,0,0,0,1,0,0,0,0,0,1,0,0,346,15,55,0,5,0,0,0,0,0,7,0,0,0,0,0,1,4,51,0,0,4,0,0,0,0,0,7,0,4,0,0,2,0,42,0,0,0,0,263,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,63,0,43,0,0,0,8,5,34,19,80,0,0,0,0,1,0,0,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,31,98,2,0,0,110,0,197,0,0,0,40,8,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,1,97,21,0,0,0,0,0,0,0,0,633,0,0,33,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,8,0,0,0,4,1,19,79,0,5,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,13,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +9,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,33,0,0,0,3,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,11,0,0,68,11,126,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,35,0,0,3,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,58,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,27,378,59,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,60,0,123,0,0,0,26,1,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,124,0,0,44,0,0,0,0,0,604,0,0,32,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,33,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,32,0,0,0,0,1,14,3,0,33,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,3,2 +11,0,0,2,0,25,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,25,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,944,25,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,494,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,307,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,42,0,0,0,0,3,44,10,52,0,0,0,0,1,0,0,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,112,2,0,0,122,0,145,0,0,0,61,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,107,11,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,0,0,0,0,0,1,39,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,240,29,2 +9,0,0,2,0,14,2,0,5,0,2,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,6,0,14,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,1,0,0,98,14,23,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,6,0,0,0,0,0,8,0,0,0,0,2,0,10,0,0,0,0,176,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,27,0,0,0,0,3,28,6,36,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,56,2,0,0,48,0,122,0,0,0,18,4,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,599,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,20,6,0,4,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,101,2 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,42,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,14,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,42,0,0,0,34,0,49,0,0,0,2,3,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,7,2 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,61,0,1,0,0,0,1,0,0,0,0,0,1,0,0,8464,11,50,0,1,0,0,0,0,0,14,0,0,0,2,0,1,6,1083,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,776,0,50,0,0,0,0,3,27,8,793,0,0,0,0,1,0,0,0,0,0,0,0,0,3210,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,89,2,0,0,109,0,109,0,0,0,46,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,734,0,0,2889,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1126,24,2 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1074,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,81,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,82,0,0,0,0,0,7,48,209,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,13,2,0,0,54,0,81,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,45,0,0,0,0,0,0,0,0,300,0,0,260,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,114,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,326,7,2 +10,0,0,0,0,144,2,0,5,0,1,0,0,0,2,0,63,0,6,1,0,0,0,1,0,0,0,0,57,0,1,0,0,0,133,0,144,162,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1580,144,128,0,58,0,0,0,0,0,1,0,0,0,0,0,1,1,17,0,0,133,0,0,0,0,0,62,0,0,0,0,2,0,66,0,0,0,0,3128,0,0,0,0,36,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,153,0,0,0,0,3,161,134,92,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,660,0,0,0,558,0,334,0,0,0,511,19,0,0,0,0,0,0,0,0,0,79,0,0,0,0,2,0,0,0,0,1,239,53,0,0,0,0,0,0,0,0,759,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,141,1,1,1,0,57,0,0,0,0,1,277,133,0,58,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,1000,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,10,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,172,12,73,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,2,0,0,0,0,0,41,0,0,0,0,2,0,106,0,1,0,0,181,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,33,0,0,0,18,34,28,39,54,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,67,3,0,0,42,0,150,0,0,0,6,5,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,10,92,1,0,0,0,0,0,0,0,0,645,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,13,0,0,0,4,1,14,2,0,25,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,171,2 +1,0,0,4,1,12,26,1,27,0,4,0,0,0,5,0,58,0,8,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,1,0,13,54,0,0,10,0,0,0,1,0,0,1,0,0,0,0,2,64,0,0,0,0,0,1,0,1,0,0,0,4,0,0,26937,12,91,0,3,0,0,0,0,0,4,0,0,0,0,0,1,3,40,0,1,1,1,0,1,0,0,43,0,0,0,0,4,1,18,0,2,0,0,13024,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,47,0,1495,0,0,0,4,4,32,12,5955,0,0,0,0,1,0,0,0,0,0,0,0,0,8933,0,1965,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,112,14,273,5,0,0,242,0,491,0,1,0,86,28,0,0,0,0,0,0,0,0,0,128,1,0,0,0,2,0,0,0,0,1,110,42,0,0,0,0,0,0,0,0,114,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,1,1,1,0,4,0,0,0,2,9,14,114,0,3,0,0,0,0,0,0,50,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3087,54,2 +2,0,0,2,0,12,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,12,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,2,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,9553,12,45,0,3,0,0,0,0,0,10,0,0,0,0,0,1,4,1237,0,0,1,0,0,0,0,0,8,0,3,0,0,2,0,17,0,0,0,0,140,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,859,0,38,0,0,0,4,4,26,15,860,0,0,0,0,1,0,0,0,0,0,0,0,0,3783,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,94,2,0,0,110,0,146,0,0,0,36,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,96,25,0,0,0,0,0,0,0,0,832,0,0,3271,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,13,92,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1267,19,2 +0,0,0,4,1,12,2,5,5,0,3,0,0,0,3,0,8,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,2,0,13,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1,0,0,0,0,0,2,0,0,49,12,72,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,24,0,5,2,1,0,0,0,0,7,0,0,0,0,2,1,10,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,25,0,29,0,0,0,0,2,32,6,46,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,41,5,0,0,46,0,39,0,0,0,8,8,0,0,0,0,0,0,0,0,0,27,0,0,0,0,6,0,0,0,0,0,92,2,0,0,0,0,4,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,2,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,92,20,2 +5,0,0,5,3,34,29,9,60,9,7,0,0,2,15,0,83,0,9,6,0,6,0,5,0,8,0,0,9,0,8,0,0,2,6,0,37,54,10,0,76,0,0,0,1,0,0,3,0,0,0,0,9,163,0,0,0,0,0,1,0,0,0,0,0,16,0,0,41902,34,339,0,15,0,0,0,0,0,17,6,0,0,0,0,7,16,8762,0,9,6,2,0,1,0,0,160,5,6,0,0,4,3,83,0,12,0,0,903,0,0,0,0,27,0,2,0,5,0,0,1,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,5257,0,63,0,0,0,16,27,202,103,5259,0,0,0,0,1,0,4,0,0,0,0,0,0,10864,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,136,36,399,8,0,0,404,0,631,0,1,0,124,30,0,0,0,0,0,0,0,0,0,205,1,0,0,0,17,0,0,0,0,9,130,42,0,0,0,0,0,0,0,0,2048,0,0,11901,3,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,39,1,1,1,0,22,0,0,0,6,25,43,223,0,16,9,0,0,0,0,0,122,3,0,0,0,0,0,0,0,0,0,0,0,4,0,1,11,0,0,0,0,0,0,0,0,0,0,0,5,0,3,3708,1740,2 +33,0,0,14,2,60,113,2,140,15,68,0,3,6,66,0,688,0,11,4,0,0,0,7,0,12,0,0,15,0,7,0,0,2,18,945,62,117,0,0,155,0,0,0,1,0,0,10,0,0,0,0,9,386,0,0,0,0,0,1,0,0,0,12,0,33,0,0,24774,60,1125,0,21,0,0,0,2,0,98,0,0,0,0,2,10,109,4478,0,2,18,2,0,6,8,0,550,35,17,0,0,12,2,918,0,26,98,0,3198,0,0,0,0,6,9,2,0,0,0,0,1,0,0,0,7,0,0,3,0,0,0,2,4,0,0,0,4,0,0,0,0,0,0,0,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,2,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,20,0,0,2,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,12,12,12,0,0,0,2449,0,176,0,0,0,20,22,451,1509,2442,0,0,0,0,1,0,4,0,0,0,0,0,0,1598,0,0,0,0,2,0,0,0,0,4,0,0,10,1,0,0,0,0,0,1,1,308,108,590,18,0,0,825,0,913,0,2,0,388,39,0,0,0,0,0,0,0,0,0,1095,1,0,0,0,11,0,0,0,0,8,183,180,0,0,187,0,2,0,0,0,2711,1,0,508,27,0,1,1,1,0,0,0,23,0,1,0,4,0,0,0,0,0,17,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,27,12,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,71,1,1,1,0,42,0,0,0,0,17,80,905,0,22,12,0,0,0,0,0,226,3,0,0,0,0,0,0,0,0,0,0,0,5,0,1,21,0,0,0,0,0,0,0,0,0,0,0,2,0,8,1639,220,2 +0,0,0,0,0,13,25,0,39,0,1,0,1,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,13,9,0,0,12,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,0,0,0,240,13,83,0,1,0,0,0,0,0,26,0,0,0,0,0,1,3,23,0,0,1,0,0,1,0,0,9,0,1,0,0,4,0,37,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,33,0,75,0,0,0,0,3,33,6,46,0,0,0,0,1,0,0,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,13,115,0,0,0,176,0,130,0,0,0,74,7,0,0,0,0,0,0,0,0,0,90,1,0,0,0,2,0,0,0,0,0,110,53,0,0,0,0,0,0,0,0,32,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,14,91,0,1,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,166,18,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,21,0,1,0,0,0,0,0,10,6,0,0,73,0,3,0,1,0,0,4,0,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2537,10,78,0,22,0,0,0,0,0,16,0,0,0,0,0,1,10,1012,0,0,0,0,0,0,0,0,34,0,4,0,0,2,0,36,0,0,0,0,365,0,0,0,0,29,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,388,0,122,0,0,0,0,3,55,19,430,0,0,0,0,1,0,0,0,0,0,0,0,0,1127,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,147,3,0,0,107,0,269,0,0,0,39,4,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,719,0,0,879,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,21,0,0,0,0,1,10,170,0,22,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,421,31,2 +14,0,0,4,0,40,21,0,25,0,3,0,0,2,3,0,54,0,7,2,0,0,0,8,0,11,0,0,6,0,1,0,0,0,3,4224,40,6,0,0,25,0,0,0,1,0,0,2,0,0,0,0,1,377,0,0,0,0,0,1,0,0,0,0,0,4,0,0,96448,40,163,0,3,0,0,0,0,0,46,0,0,0,0,0,9,21,16670,0,0,3,0,0,0,0,0,96,5,3,0,0,2,0,109,0,1,0,0,2620,0,4,0,0,2,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,12,12,0,0,0,14603,0,54,0,0,0,0,3,303,280,14594,0,0,0,0,1,0,4,0,0,0,0,0,0,310,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,11,236,4,0,0,292,0,306,0,0,0,129,11,0,0,0,0,0,0,0,0,0,115,1,0,0,0,10,0,0,0,0,1,145,24,0,0,0,0,0,0,0,0,1397,1,0,43,24,0,1,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,24,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,2,0,0,0,0,1,43,90,0,4,14,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1103,36,2 +15,0,0,3,0,14,2,0,19,2,3,0,0,0,5,0,17,0,6,1,0,0,0,1,0,0,0,0,7,0,1,0,0,0,2,0,14,6,0,0,14,0,0,0,1,0,0,5,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,5,0,0,516,14,63,0,8,0,0,0,0,0,15,0,0,0,0,0,1,8,66,0,0,2,0,0,0,0,0,18,0,5,0,0,2,0,30,0,3,0,0,304,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,69,0,0,0,0,3,34,38,104,0,0,0,0,1,0,0,0,0,0,0,0,0,307,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,6,118,3,0,0,108,0,255,0,0,0,27,9,0,0,0,0,0,0,0,0,0,52,1,0,0,0,2,0,0,0,0,1,96,13,0,0,0,0,0,0,0,0,622,0,0,50,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,7,0,0,0,0,1,16,79,0,8,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,155,266,2 +6,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,1,0,0,33,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,42,0,58,0,0,0,12,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,11,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,24,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,7,2 +2,0,0,2,0,16,2,0,20,0,4,0,0,0,2,0,16,0,6,4,0,0,0,1,0,0,0,0,0,0,3,0,0,0,2,0,16,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,2,68,0,1,0,0,0,1,0,0,0,0,0,1,0,0,10176,16,72,0,3,0,0,0,0,0,23,0,0,0,1,0,4,11,1366,0,0,2,0,0,0,0,0,21,0,9,0,0,2,0,18,0,0,0,0,552,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,979,0,94,0,0,0,4,3,42,13,988,0,0,0,0,1,0,0,0,0,0,0,0,0,4107,0,0,0,0,0,0,0,0,0,0,0,0,5,0,6,0,0,0,0,0,0,10,15,107,2,0,0,146,0,277,0,0,0,64,4,0,0,0,0,0,0,4,0,0,50,1,0,0,0,5,0,0,0,0,1,107,37,0,0,0,0,0,0,0,0,1448,0,0,3404,0,0,1,0,0,0,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,4,0,0,0,0,1,18,121,0,3,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1427,76,2 +64,0,0,5,0,48,6,0,30,14,3,0,0,2,19,0,573,0,7,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,15,898,48,24,0,0,60,0,0,0,1,0,0,5,0,0,0,0,1,184,0,0,0,0,0,1,0,0,0,0,0,19,0,0,22174,48,658,0,1,0,0,0,0,0,27,0,0,0,0,0,8,21,3475,0,0,15,0,0,0,0,0,94,5,6,0,0,2,0,608,0,15,0,0,2533,0,0,0,0,15,15,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,2897,0,136,0,0,0,0,3,257,3602,2951,0,0,0,0,1,0,3,0,0,0,0,0,0,2914,0,14,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,34,25,289,5,0,0,280,0,392,0,0,0,133,6,0,0,0,0,0,0,4,0,0,640,1,0,0,0,9,0,0,0,0,1,136,35,0,0,0,0,13,0,26,13,2120,1,0,173,6,0,1,1,0,0,0,0,10,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,0,0,0,0,0,1,63,180,0,2,12,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,5,651,50,2 +12,0,0,3,1,15,26,1,26,1,3,0,0,0,4,0,58,0,8,2,0,0,0,2,0,9,0,0,0,0,1,0,0,1,2,0,16,51,0,0,14,0,0,0,0,0,0,0,0,0,0,0,9,34,0,0,0,0,0,1,0,0,0,0,0,2,0,0,4743,15,93,0,10,0,0,0,0,0,0,0,0,0,0,0,3,3,1794,0,1,2,1,0,1,0,0,64,0,0,0,0,4,1,25,0,1,0,0,1733,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,929,0,41,0,0,0,9,21,39,2655,951,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,14,245,4,0,0,204,0,363,0,1,0,43,16,0,0,0,0,0,0,0,0,0,125,0,0,0,0,4,0,0,0,0,10,109,2,0,0,0,0,0,0,0,0,975,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,1,1,1,0,0,0,0,0,0,9,18,3,0,10,0,0,0,0,0,0,41,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,948,47,2 +2,0,0,6,0,45,8,0,36,0,5,0,0,6,11,0,247,0,7,1,0,0,0,9,0,10,0,0,5,0,1,0,0,0,5,12256,45,6,0,0,71,0,0,0,1,0,0,1,1,0,0,0,1,673,0,0,0,0,0,1,0,0,0,8,0,8,0,0,379913,45,319,0,3,0,0,0,0,0,18,0,0,0,0,0,9,22,35574,0,0,5,0,0,0,0,0,194,20,5,0,0,2,0,304,0,0,9,0,79411,0,0,0,0,3,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,33663,0,53,0,0,0,1,4,299,4656,33651,0,0,0,0,1,0,7,0,0,0,0,0,0,39948,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,88,16,587,6,0,0,350,0,509,0,0,0,174,29,0,0,0,0,0,0,0,0,0,320,1,0,3,0,10,0,0,0,0,0,191,13,0,0,10,0,3,0,0,0,2069,1,0,44,6,0,1,1,0,0,0,0,6,0,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1831,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,5,0,0,0,0,1,50,24,0,4,12,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,822,12851,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,3,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,24,0,21,0,0,0,1,0,0,0,0,0,6,0,0,213,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,75,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,49,0,0,0,0,3,57,44,113,0,0,0,0,0,0,0,0,0,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,87,3,0,0,83,0,114,0,0,0,29,8,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,210,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,15,2 +11,0,0,2,0,21,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,11,0,21,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,951,21,31,0,1,0,0,0,0,0,5,0,0,0,0,0,1,4,492,0,0,11,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,270,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,39,0,0,0,0,3,37,10,48,0,0,0,0,1,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,103,2,0,0,111,0,141,0,0,0,53,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,103,13,0,0,0,0,0,0,0,0,785,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,0,0,0,0,0,1,32,84,0,1,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,234,24,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,198,14,160,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,45,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,104,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,238,71,0,0,0,0,1,0,0,0,0,0,0,0,0,172,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,86,3,0,0,111,0,161,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,613,0,0,111,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,10,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +2,0,0,3,0,62,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,10,0,0,0,0,1,0,0,0,52,0,62,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,10,42,0,0,0,0,0,1,0,0,0,0,0,10,0,0,466,62,97,0,11,0,0,0,0,0,0,0,0,0,0,0,1,1,40,0,0,52,0,0,1,47,0,392,35,0,0,0,2,0,237,0,0,0,0,725,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,48,0,92,0,0,0,10,13,80,377,81,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,203,3,0,0,198,0,230,0,0,0,162,7,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,12,144,112,0,0,84,0,0,0,0,0,599,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,0,0,0,0,0,1,114,52,0,11,0,0,0,0,0,0,141,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,6,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +5,0,0,4,0,39,2,0,31,0,4,0,0,0,4,0,126,0,6,1,0,0,0,1,0,0,66,0,0,0,23,0,0,0,15,0,39,6,0,0,10,0,0,0,1,0,0,1,0,0,0,0,22,46,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1010,39,242,0,23,0,0,0,0,0,4,0,0,0,0,0,1,3,117,0,0,15,0,0,0,0,0,7,0,1,0,0,2,0,417,0,1,0,0,1006,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,95,0,107,0,0,0,44,78,55,626,141,0,0,0,0,1,0,0,0,0,0,0,0,0,465,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,215,4,0,0,156,0,275,0,0,0,59,23,0,0,0,0,0,0,0,0,0,173,1,0,0,0,2,0,0,0,0,1,122,5,0,0,0,0,0,0,0,0,859,0,0,25,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,23,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,54,16,0,89,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,193,64,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,35,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,147,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,21,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +12,0,0,3,0,19,3,0,7,1,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,6,0,6,0,0,0,9,0,19,6,0,0,11,0,0,0,1,0,0,0,0,0,0,0,5,38,0,0,0,0,0,1,0,0,0,0,0,5,0,0,172,19,35,0,12,0,0,0,0,0,0,0,0,0,0,0,1,1,27,0,0,9,0,0,0,0,0,31,0,0,0,0,2,0,25,0,3,0,0,185,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,35,0,36,0,0,0,10,13,35,38,49,0,0,0,0,1,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,6,73,3,0,0,69,0,139,0,0,0,33,10,0,0,0,0,0,0,0,0,0,34,0,0,0,0,2,0,0,0,0,6,102,4,0,0,0,0,0,0,0,0,623,0,0,5,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,16,0,0,0,10,1,28,13,0,12,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,118,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,937,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,487,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,279,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,41,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,10,3,109,2,0,0,119,0,145,0,0,0,61,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,27,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,22,0,0,0,0,0,1,0,0,0,0,0,1,0,0,93,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,1020,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,54,2,0,0,44,0,159,0,0,0,5,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,4,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +19,0,0,3,0,15,128,0,308,0,61,0,0,0,2,0,252,0,6,1,0,0,0,1,0,0,141,0,47,0,48,0,0,0,0,0,15,25,0,0,383,0,0,0,1,0,0,1,0,0,0,0,47,127,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2338,15,1056,0,95,0,0,0,0,0,41,0,0,0,0,0,1,3,36,0,0,0,0,0,1,245,0,2082,285,1,0,0,2,0,2021,0,0,0,0,3816,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,57,0,57,0,0,0,94,237,39,1056,61,0,0,0,0,1,0,0,0,0,0,0,0,0,1604,0,1,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,3,402,3,0,0,335,0,261,0,0,0,255,53,0,0,0,0,0,0,0,0,0,757,1,0,0,0,2,0,0,0,0,48,99,599,0,0,664,0,0,0,0,0,730,0,0,58,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,48,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,94,0,0,0,0,1,15,100,0,236,0,0,0,0,0,0,460,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,92,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,135,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,27,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +6,0,0,2,0,13,2,0,26,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,0,109,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2206,13,89,0,3,0,0,0,0,0,27,0,0,0,0,0,1,9,333,0,0,3,0,0,0,0,0,19,0,7,0,0,2,0,26,0,0,0,0,275,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,261,0,102,0,0,0,0,3,29,15,264,0,0,0,0,1,0,0,0,0,0,0,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,10,3,143,2,0,0,280,0,321,0,0,0,211,17,0,0,0,0,0,0,10,0,0,54,1,0,0,0,2,0,0,0,0,1,114,159,0,0,0,0,0,0,0,0,684,0,0,304,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,548,0,3,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,328,44,2 +30,0,0,2,0,19,2,0,5,0,2,0,0,0,2,0,10,0,6,1,0,0,0,1,0,9,0,0,0,0,1,0,0,0,11,0,19,6,0,0,7,0,0,0,1,0,0,0,0,0,0,0,9,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1449,19,37,0,10,0,0,0,0,0,4,0,0,0,0,0,1,1,812,0,0,11,0,0,0,0,0,5,0,0,0,0,2,0,16,0,0,0,0,208,0,0,0,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,440,0,38,0,0,0,9,12,42,24,454,0,0,0,0,1,0,0,0,0,0,0,0,0,278,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,82,2,0,0,98,0,159,0,0,0,59,5,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,101,30,0,0,0,0,0,0,0,0,600,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,0,0,0,0,0,1,30,68,0,10,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,230,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,57,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,5,2 +2,0,0,2,0,13,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,13,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,2,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,10449,13,45,0,3,0,0,0,0,0,10,0,0,0,0,0,1,4,1347,0,0,1,0,0,0,0,0,8,0,3,0,0,2,0,17,0,0,0,0,146,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,938,0,39,0,0,0,4,4,30,15,939,0,0,0,0,1,0,0,0,0,0,0,0,0,4185,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,96,2,0,0,113,0,147,0,0,0,36,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,97,25,0,0,0,0,0,0,0,0,910,0,0,3584,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,4,0,0,0,2,1,14,92,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1379,18,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,948,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,498,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,282,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,41,0,0,0,0,3,40,10,52,0,0,0,0,1,0,0,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,109,2,0,0,119,0,144,0,0,0,61,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,29,2 +11,0,0,3,1,15,26,1,26,1,3,0,0,0,4,0,58,0,8,2,0,0,0,2,0,9,0,0,0,0,1,0,0,1,2,0,16,51,0,0,14,0,0,0,0,0,0,0,0,0,0,0,9,67,0,0,0,0,0,1,0,0,0,0,0,2,0,0,4975,15,93,0,10,0,0,0,0,0,0,0,0,0,0,0,3,3,1796,0,1,2,1,0,1,0,0,64,0,0,0,0,4,1,25,0,1,0,0,2317,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,941,0,41,0,0,0,9,21,39,2692,963,0,0,0,0,0,0,0,0,0,0,0,0,0,2637,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,14,397,4,0,0,204,0,383,0,1,0,43,39,0,0,0,0,0,0,0,0,0,125,0,0,0,0,4,0,0,0,0,10,109,2,0,0,0,0,0,0,0,0,965,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,1,1,1,0,0,0,0,0,0,9,18,3,0,10,0,0,0,0,0,0,41,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,938,67,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,67,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,1084,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,46,2,0,0,44,0,134,0,0,0,5,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,3,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,135,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,31,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +12,0,0,3,0,18,2,0,14,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,4,0,1,0,0,0,7,0,18,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,0,65,0,0,0,0,0,1,0,0,0,0,0,3,0,0,29791,18,36,0,5,0,0,0,0,0,4,0,0,0,0,0,1,4,12378,0,0,7,0,0,0,0,0,11,0,1,0,0,2,0,14,0,1,0,0,723,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9716,0,6032,0,0,0,0,3,49,10,11745,0,0,0,0,1,0,0,0,0,0,0,0,0,20720,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,150,3,0,0,93,0,219,0,0,0,33,31,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,1,100,5,0,0,0,0,0,0,0,0,3842,0,0,4877,0,0,1,0,1,0,0,0,1040,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,750,0,0,0,0,366,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,4,0,0,0,0,1,25,38,0,5,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,15359,2163,2 +6,0,0,2,0,13,2,0,18,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2407,13,77,0,3,0,0,0,0,0,24,0,0,0,0,0,1,9,219,0,0,3,0,0,0,0,0,16,0,10,0,0,2,0,18,0,0,0,0,412,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,191,0,79,0,0,0,0,3,29,10,193,0,0,0,0,1,0,0,0,0,0,0,0,0,462,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,10,3,117,2,0,0,255,0,401,0,0,0,188,22,0,0,0,0,0,0,2,0,0,46,1,0,0,0,2,0,0,0,0,1,102,154,0,0,0,0,0,0,0,0,648,0,0,236,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,449,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,219,36,2 +18,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,4946,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,63,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,37658,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,54,0,0,0,14,17,52,37,31986,0,0,0,0,1,0,0,0,0,0,0,0,0,93903,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,311,3,0,0,75,0,207,0,0,0,12,220,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,613,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,25,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,28651,2 +10,0,0,2,0,9,3,0,7,0,2,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3098,9,27,0,1,0,0,0,0,0,2,0,0,0,0,0,1,1,1236,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,864,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,633,0,51,0,0,0,0,3,23,1777,654,0,0,0,0,0,0,0,0,0,0,0,0,0,1681,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,3,48,2,0,0,41,0,136,0,0,0,5,2,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,1200,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,709,14,2 +6,0,0,2,0,13,2,0,18,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,0,87,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3410,13,81,0,3,0,0,0,0,0,28,0,0,0,0,0,1,11,462,0,0,3,0,0,0,0,0,20,0,9,0,0,2,0,18,0,0,0,0,364,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,394,0,101,0,0,0,0,3,29,19,400,0,0,0,0,1,0,0,0,0,0,0,0,0,655,0,0,0,0,0,0,0,0,0,0,0,0,7,0,3,0,0,0,0,0,0,10,3,121,2,0,0,317,0,450,0,0,0,248,14,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,1,103,215,0,0,0,0,0,0,0,0,667,0,0,413,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,654,0,3,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,303,48,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,60,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9485,12,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1221,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,861,0,50,0,0,0,0,3,31,8,878,0,0,0,0,1,0,0,0,0,0,0,0,0,3588,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,95,2,0,0,114,0,109,0,0,0,48,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,97,28,0,0,0,0,0,0,0,0,819,0,0,3229,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,99,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1263,25,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +4,0,0,9,0,63,58,0,93,21,50,0,0,10,25,0,1349,0,6,2,0,0,0,9,0,10,0,0,27,0,2,0,0,0,20,22826,63,6,0,0,137,0,5,0,1,0,0,6,0,0,0,0,2,1404,0,0,0,0,0,1,0,0,0,20,0,27,0,0,176778,63,1751,0,26,0,0,0,0,0,124,0,0,0,1,0,10,231,11609,0,0,20,0,0,1,15,0,754,55,9,0,0,2,0,1635,0,20,222,0,13255,0,0,0,0,3,0,2,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,2,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,64,12,12,12,0,0,0,4696,0,159,0,0,0,16,19,1346,3760,4678,0,0,0,0,1,0,4,0,0,0,0,0,0,1408,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,139,74,520,9,0,0,684,0,502,0,0,0,480,21,0,0,0,0,0,0,0,0,0,1591,0,0,0,0,11,0,0,0,0,3,252,204,0,0,332,0,0,0,0,0,6701,1,0,3051,49,0,1,1,1,0,0,0,16,0,0,0,1,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,4,0,0,0,49,363,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,68,1,1,1,0,68,0,0,0,0,1,83,657,0,27,12,0,1,0,0,0,191,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,29,0,0,0,0,0,0,0,0,0,0,0,0,0,9,3445,68,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,4,0,0,141,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,31,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,123,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,168,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,213,5,0,0,229,0,329,0,1,0,55,3,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,116,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,30,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,97,16,2 +9,0,0,3,0,16,2,0,4,1,3,0,0,0,4,0,10,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,7,0,16,6,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,4,0,0,157,16,37,0,4,0,0,0,0,0,8,0,0,0,6,0,1,1,44,0,0,7,0,0,0,0,0,8,0,0,0,0,2,0,14,0,2,0,0,1231,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,51,0,0,0,0,3,32,39,107,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,5,59,3,0,0,64,0,157,0,0,0,27,7,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,1,98,1,0,0,0,0,0,0,0,0,603,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,3,0,0,0,0,1,23,7,0,4,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,182,2 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,1,0,0,948,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,493,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,289,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,112,2,0,0,119,0,145,0,0,0,61,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,1,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,27,2 +0,0,0,3,0,22,2,0,2,1,2,0,0,0,6,0,9,0,7,2,0,0,0,5,0,0,0,0,0,0,1,0,0,0,6,0,22,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,23,0,21,0,0,0,1,0,0,0,0,0,6,0,0,208,22,48,0,1,0,0,0,0,0,8,0,0,0,0,0,6,6,73,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,13,0,4,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,49,0,0,0,0,3,57,44,113,0,0,0,0,0,0,0,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,84,3,0,0,83,0,116,0,0,0,29,3,4,0,0,0,0,0,0,0,0,28,0,0,0,0,7,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,208,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,4,0,1,28,6,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,15,2 +2,0,0,2,0,12,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,1,0,12,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,2,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,9894,12,45,0,3,0,0,0,0,0,10,0,0,0,0,0,1,4,1278,0,0,1,0,0,0,0,0,8,0,3,0,0,2,0,17,0,0,0,0,146,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,889,0,38,0,0,0,4,4,26,15,890,0,0,0,0,1,0,0,0,0,0,0,0,0,3903,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,92,2,0,0,110,0,145,0,0,0,36,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,96,25,0,0,0,0,0,0,0,0,862,0,0,3391,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,2,1,13,92,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1308,18,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +17,0,0,4,0,40,3,0,10,7,3,0,0,0,17,0,16,0,6,1,0,0,0,2,0,0,0,0,4,0,2,0,0,0,28,0,40,6,0,0,80,0,0,0,1,0,0,1,1,0,0,0,1,124,0,0,0,0,0,1,0,0,0,15,0,18,0,0,13778,40,61,0,6,0,0,0,0,0,10,0,0,0,0,0,2,4,37,0,0,28,0,0,0,0,0,18,0,4,0,0,2,0,48,0,12,0,0,6675,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,8,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,26,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,61,0,70,0,0,0,2,5,63,37,73,0,0,0,0,1,0,0,0,0,0,0,0,0,7298,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,17,582,4,0,0,244,0,400,0,0,0,178,262,0,0,0,0,0,0,0,0,0,55,1,0,2,0,3,0,0,0,0,2,126,82,0,0,0,0,0,0,0,0,39,0,0,17,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2392556,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,6,0,0,0,0,1,68,332,0,6,0,0,2,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,109,24927,2 +5,0,0,6,0,25,10,0,56,4,12,0,0,0,7,0,16,0,6,1,0,0,0,1,0,0,0,0,5,0,1,0,0,0,13,0,25,6,0,0,95,0,0,0,1,0,0,4,0,0,0,0,0,269,0,0,0,0,0,1,0,0,0,0,0,14,0,0,3043,25,138,0,6,0,0,0,0,0,26,0,0,0,0,0,1,7,238,0,0,13,0,0,1,35,0,291,15,10,0,0,2,0,207,0,5,0,0,715,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,10,74,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,222,0,112,0,0,0,0,3,50,330,233,0,0,0,0,1,0,0,0,0,0,0,0,0,954,0,0,0,0,0,0,0,0,0,0,0,0,5,0,65,0,0,0,0,0,5,8,8,157,6,0,0,304,0,499,0,0,0,230,20,0,0,0,0,0,1,2,0,0,107,1,0,0,0,2,0,0,0,0,1,107,243,0,0,32,0,3,0,0,0,99,0,0,273,0,0,1,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,5,0,0,0,0,1,38,787,0,6,0,0,0,0,0,0,136,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,5,320,114,2 +0,0,0,2,0,13,2,0,16,0,4,0,0,0,2,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,13,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,0,71,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9733,13,70,0,1,0,0,0,0,0,23,0,0,0,1,0,2,9,1269,0,0,2,0,0,0,0,0,17,0,9,0,0,2,0,17,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,926,0,86,0,0,0,0,3,34,10,941,0,0,0,0,1,0,0,0,0,0,0,0,0,3837,0,0,0,0,0,0,0,0,0,0,0,0,4,0,6,0,0,0,0,0,0,8,11,101,2,0,0,137,0,163,0,0,0,64,13,0,0,0,0,0,0,4,0,0,44,1,0,0,0,3,0,0,0,0,0,104,37,0,0,0,0,0,0,0,0,830,0,0,3255,0,0,1,0,0,0,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,15,121,0,1,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1321,50,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +12,0,0,3,0,18,2,0,15,0,3,0,0,0,3,0,15,0,7,1,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,18,6,0,0,14,0,3,0,1,0,0,11,0,0,0,0,0,115,0,0,0,0,0,1,0,0,0,0,0,3,0,0,4847,18,118,0,4,0,0,0,0,0,45,0,0,0,0,0,1,24,990,0,0,6,0,0,0,0,0,28,0,18,0,0,2,0,21,0,1,0,0,559,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,4,1,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,461,0,103,0,0,0,0,3,41,30,459,0,0,0,0,1,0,0,0,0,0,0,0,0,1106,0,0,0,0,0,0,0,0,0,0,0,0,11,0,14,0,0,0,0,0,0,8,4,116,3,0,0,187,0,251,0,0,0,113,22,0,0,0,0,0,0,4,0,0,45,1,0,0,0,2,0,0,0,0,1,100,68,0,0,0,0,0,0,0,0,383,0,0,1364,0,0,1,0,1,0,0,0,17,0,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,4,0,0,0,0,1,24,444,0,5,0,0,2,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,678,141,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,59,0,1,0,0,0,1,0,0,0,0,0,1,0,0,9414,12,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1188,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,857,0,50,0,0,0,0,3,31,8,874,0,0,0,0,1,0,0,0,0,0,0,0,0,3519,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,97,2,0,0,114,0,109,0,0,0,48,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,97,28,0,0,0,0,0,0,0,0,814,0,0,3213,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,99,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1233,23,2 +2,0,0,3,0,9,2,0,16,0,3,0,0,0,3,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,9,6,0,0,8,0,2,0,1,0,0,2,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,3,0,0,533,9,41,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,161,0,0,1,0,0,0,0,0,7,0,4,0,0,2,0,16,0,1,0,0,88,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,20,0,0,0,0,3,23,4,52,0,0,0,0,1,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,4,68,3,0,0,93,0,121,0,0,0,32,1,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,91,22,0,0,0,0,0,0,0,0,611,0,0,352,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,113,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,6,2 +6,0,0,2,0,13,2,0,22,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,0,0,3,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,8,0,0,0,0,2,161,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1877,13,109,0,3,0,0,0,0,0,32,0,0,0,0,0,1,13,317,0,0,3,0,0,0,0,0,20,0,12,0,1,2,0,54,0,0,0,0,326,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,264,0,111,0,0,0,4,9,29,22,270,0,0,0,0,1,0,0,0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,10,3,133,2,0,0,249,0,441,0,0,0,180,15,0,0,0,1,0,0,6,0,0,60,1,0,0,0,2,0,0,0,0,1,107,139,0,0,0,0,0,0,0,0,700,0,0,272,0,0,1,0,0,0,0,0,15,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,553,0,9,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,332,52,2 +17,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14033,0,0,0,1,0,0,1,0,0,0,0,4,55,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5721,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,69238,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,9,54,69,28127,0,0,0,0,1,0,0,0,0,0,0,0,0,93326,0,2,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,378,3,0,0,78,0,232,0,0,0,12,271,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,615,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,32170,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,5,0,0,0,0,0,99,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2528,10,79,0,23,0,0,0,0,0,16,0,0,0,0,0,1,10,1018,0,0,0,0,0,0,0,0,35,0,4,0,0,2,0,37,0,0,0,0,540,0,0,0,0,33,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,388,0,128,0,0,0,0,3,56,19,430,0,0,0,0,1,0,0,0,0,0,0,0,0,1134,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,145,3,0,0,107,0,290,0,0,0,39,6,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,4,0,0,0,720,0,0,871,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,435,31,2 +3,0,0,5,0,41,6,0,46,0,5,0,0,6,5,0,674,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,5,762,41,6,0,0,50,0,0,0,1,0,0,5,0,0,0,0,1,222,0,1,0,0,0,1,0,0,0,0,0,2,0,0,10188,41,768,0,3,0,0,0,0,0,28,0,0,0,1,0,8,32,1925,0,0,5,0,0,0,0,0,200,20,12,0,0,2,0,715,0,0,4,0,1966,0,0,0,0,0,2,4,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,12,12,12,0,0,0,615,0,119,0,0,0,1,4,302,444,610,0,0,0,0,1,0,6,0,0,0,0,0,0,1120,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,86,30,204,5,0,0,221,0,295,0,0,0,74,5,0,0,0,0,0,0,0,0,0,748,1,0,0,0,9,0,0,0,0,0,126,27,0,0,12,0,0,0,0,0,2842,1,0,703,6,0,1,1,0,0,0,0,21,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,5,0,0,0,0,1,46,36,0,4,12,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1124,47,2 +16,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,23,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,86,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,94,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,39,0,0,0,8,5,28,19,53,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,39,48,2,0,0,44,0,129,0,0,0,5,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,596,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,3,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,141,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,53,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,31,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,18,2 +0,0,0,2,0,8,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,1,0,0,115,8,34,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,17,0,0,0,0,0,0,0,0,6,0,1,0,0,2,0,13,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,22,0,17,0,0,0,0,3,22,4,35,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,96,0,116,0,0,0,38,2,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,95,27,0,0,0,0,0,0,0,0,26,0,0,8,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,79,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,7,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,105,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,4,0,0,217,14,161,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,50,0,0,3,0,0,1,15,0,133,25,2,0,0,2,0,74,0,0,0,0,111,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,40,0,0,0,0,3,30,238,75,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,85,3,0,0,112,0,162,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,615,0,0,115,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,105,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,104,0,0,0,0,1,17,71,0,105,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,10,2 +59,0,0,21,7,102,95,8,745,52,227,0,0,0,77,0,210,0,9,15,0,10,4,19,0,3,55,0,17,0,17,2,0,7,61,0,110,97,7,0,1322,0,0,0,1,0,0,3,0,0,0,0,22,356,0,0,0,0,0,1,0,0,0,124,0,141,0,0,5028,102,1774,0,36,0,0,0,0,0,14,18,0,0,0,0,21,26,1466,0,8,61,7,0,5,600,0,4897,700,3,0,0,4,7,3206,0,66,0,0,4631,0,0,0,0,34,0,0,0,0,0,0,1,0,0,0,25,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,2,0,12,0,34,0,0,0,0,0,0,14,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,87,0,1,0,0,0,0,0,0,0,0,3,1,0,0,0,2,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,62,2,2,2,0,0,2,1044,2,311,0,0,0,40,119,257,4877,1320,0,0,0,0,1,0,0,0,0,0,1,1,0,3798,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,2,0,115,185,870,32,0,0,840,0,1541,0,1,0,422,176,0,0,0,0,0,0,4,0,0,1363,1,0,0,0,48,0,0,0,0,19,234,1365,0,0,2405,0,3,0,0,0,631,0,0,264,0,0,1,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,53,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,30,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,126,1,1,1,0,104,0,0,0,0,106,172,309,0,94,0,0,0,0,0,0,1429,18,0,0,0,0,0,0,0,0,0,0,0,8,0,1,60,0,0,0,0,0,0,0,0,0,0,0,13,0,3,783,1560,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,103,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,4,0,0,200,14,158,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,45,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,117,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,40,0,0,0,0,3,30,236,71,0,0,0,0,1,0,0,0,0,0,0,0,0,178,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,87,3,0,0,111,0,162,0,0,0,46,2,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,613,0,0,109,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,103,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,102,0,0,0,0,1,17,71,0,103,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,10,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,8,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,5,2 +9,0,0,5,38,127,17,58,276,9,104,0,0,2,14,1,1060,0,7,26,0,16,12,21,14,11,3,0,5,0,2,0,1,37,86,3462,151,6,68,0,224,0,0,0,1,0,0,5,0,0,0,0,2,563,0,0,0,0,0,1,0,0,0,0,0,32,0,0,54447,127,3960,0,3,0,0,0,0,0,50,132,0,0,0,0,24,40,9025,0,58,86,37,0,1,99,0,1648,100,9,0,0,2,38,1472,0,12,0,0,3016,0,0,0,0,0,5,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,113,19,19,19,0,0,7,7961,7,305,0,0,44,2,8,529,1132,8078,0,0,0,0,1,0,4,0,0,0,0,0,0,2063,0,94,0,0,0,3,0,0,0,0,0,0,5,1,3,0,0,0,0,1,0,44,30,904,43,0,0,975,0,885,0,0,0,515,44,0,0,0,0,0,0,4,0,0,1481,1,0,0,0,89,0,0,0,0,1,221,293,0,0,270,0,0,0,0,0,6120,1,0,1038,16,0,1,2,0,0,0,0,9,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,43,43,0,0,14,0,0,0,1,0,16,3,9,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,145,1,1,1,0,7,0,0,0,0,329,237,408,22,7,14,0,0,0,0,0,559,9,0,0,0,0,0,0,0,0,0,0,0,26,0,1,13,0,0,0,0,0,0,0,0,0,0,0,60,0,3,1253,111,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1003,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,74,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,77,0,0,0,0,0,7,39,197,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,17,2,0,0,54,0,82,0,0,0,48,3,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,45,0,0,0,0,0,0,0,0,285,0,0,248,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,115,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,299,8,2 +4,0,0,2,0,12,2,0,9,0,2,0,0,0,3,0,24,0,6,1,0,0,0,1,6,0,0,0,24,0,13,0,0,0,3,0,12,6,13,0,7,0,1,0,1,0,0,1,0,0,0,0,18,78,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1312,12,90,0,37,0,0,0,0,0,6,0,0,0,0,0,1,6,477,0,0,3,0,0,0,0,0,134,0,1,0,0,2,0,49,0,0,0,0,481,0,0,0,0,19,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,57,0,33,0,0,0,36,132,32,159,58,0,0,0,0,1,0,0,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,126,2,0,0,101,0,241,0,0,0,47,13,0,0,0,0,0,0,0,0,0,46,1,0,0,0,8,0,0,0,0,19,94,31,0,0,0,0,0,0,0,0,1081,0,0,744,0,0,1,0,1,0,0,0,2,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,373,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,54,0,0,0,6,1,15,122,0,37,0,0,1,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,304,18,2 +9,0,0,7,0,188,120,0,255,11,110,0,0,7,8,0,4150,0,6,1,0,0,0,8,0,10,414,0,32,0,139,0,0,0,55,9454,188,306,0,0,167,0,1,0,1,0,0,5,0,0,0,0,139,2423,0,0,0,0,0,1,0,0,0,0,0,7,0,0,108250,188,5432,0,168,0,0,0,0,0,225,0,0,0,0,4,8,387,20735,0,0,55,0,0,0,0,0,1060,25,6,0,0,2,0,6182,0,3,675,0,16645,0,0,0,0,44,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,516,12,12,12,0,0,0,7510,0,221,0,0,0,296,485,2387,7462,7556,0,0,0,0,1,0,3,0,0,0,0,0,0,5677,0,1,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,110,46,1245,7,0,0,1220,0,733,10,0,0,735,54,0,0,0,0,0,0,0,0,0,4656,1,0,0,0,9,0,0,0,0,2,387,126,0,0,811,0,0,0,0,0,16146,1,0,2196,108,0,1,1,1,0,0,0,5,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,108,499,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,190,1,1,1,0,227,0,0,0,0,1,243,420,0,583,12,0,1,0,0,0,627,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,15,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5591,709,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,52,0,0,0,0,0,1,0,0,0,0,0,4,0,0,142,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,123,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,168,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,216,5,0,0,229,0,330,0,1,0,55,4,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,40,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,15,2 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,3,0,0,93,9,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,29,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,8,0,1,0,0,1182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,30,0,0,0,0,3,23,9,46,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,45,3,0,0,35,0,183,0,0,0,5,2,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,3,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,5,2 +11,0,0,3,0,12,7,0,24,0,9,0,0,0,2,0,13,0,6,1,0,0,0,1,2,0,0,0,4,0,3,0,0,0,3,0,12,6,11,0,34,0,0,0,1,0,0,0,0,0,0,0,4,68,0,0,0,0,0,1,0,0,0,0,0,3,0,0,406,12,66,0,7,0,0,0,0,0,1,0,0,0,0,0,1,1,25,0,0,3,0,0,1,20,0,207,30,0,0,0,2,0,103,0,0,0,0,271,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,38,0,0,0,8,19,28,412,48,0,0,0,0,1,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,77,3,0,0,60,0,165,0,0,0,27,9,0,0,0,0,0,0,0,0,0,61,0,0,0,0,4,0,0,0,0,5,96,44,0,0,98,0,0,0,0,0,75,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,10,0,0,0,0,1,15,19,0,7,0,0,0,0,0,0,76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,11,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +6,0,0,2,0,13,2,0,18,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,79,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2349,13,77,0,3,0,0,0,0,0,24,0,0,0,0,0,1,9,218,0,0,3,0,0,0,0,0,16,0,10,0,0,2,0,18,0,0,0,0,250,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,188,0,79,0,0,0,0,3,29,10,190,0,0,0,0,1,0,0,0,0,0,0,0,0,439,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,10,3,116,2,0,0,255,0,410,0,0,0,188,11,0,0,0,0,0,0,2,0,0,46,1,0,0,0,2,0,0,0,0,1,102,154,0,0,0,0,0,0,0,0,647,0,0,220,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,449,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,217,37,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +11,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,16,0,7,1,0,0,0,1,0,0,0,0,20,0,27,0,0,0,0,0,10,6,0,0,123,0,3,0,1,0,0,4,0,0,0,0,26,69,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1516,10,89,0,47,0,0,0,0,0,12,0,0,0,0,0,1,8,614,0,0,0,0,0,0,0,0,136,0,4,0,0,2,0,55,0,0,0,0,330,0,0,0,0,33,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,131,0,114,0,0,0,52,49,53,122,165,0,0,0,0,1,0,0,0,0,0,0,0,0,392,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,139,3,0,0,85,0,227,0,0,0,18,18,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,27,92,11,0,0,0,0,4,0,0,0,869,0,0,790,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,387,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,72,0,0,0,0,1,10,103,0,47,0,0,1,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,519,16,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,213,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,169,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,39,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,18,2 +15,0,0,3,0,13,2,0,19,2,3,0,0,0,5,0,17,0,6,1,0,0,0,1,0,0,0,0,7,0,1,0,0,0,2,0,13,6,0,0,14,0,0,0,1,0,0,5,0,0,0,0,0,68,0,0,0,0,0,1,0,0,0,0,0,5,0,0,522,13,65,0,8,0,0,0,0,0,16,0,0,0,0,0,1,8,68,0,0,2,0,0,0,0,0,18,0,5,0,0,2,0,30,0,3,0,0,340,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,66,0,0,0,0,3,30,38,104,0,0,0,0,1,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,6,111,3,0,0,106,0,261,0,0,0,28,15,0,0,0,0,0,0,0,0,0,52,1,0,0,0,2,0,0,0,0,1,95,13,0,0,0,0,0,0,0,0,622,0,0,51,0,0,1,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,7,0,0,0,0,1,15,79,0,8,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,149,266,2 +8,0,0,2,0,16,14,0,16,0,2,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,4,0,5,0,0,0,4,0,16,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,4,62,0,0,0,0,0,1,0,0,0,0,0,1,0,0,363,16,60,0,9,0,0,0,0,0,7,0,0,0,0,0,1,4,53,0,0,4,0,0,0,0,0,11,0,4,0,0,2,0,47,0,0,0,0,347,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,64,0,44,0,0,0,8,5,38,19,81,0,0,0,0,1,0,0,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,31,107,2,0,0,113,0,199,0,0,0,40,9,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,1,98,21,0,0,0,0,0,0,0,0,650,0,0,33,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,12,0,0,0,4,1,20,79,0,9,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,12,2 +72,0,0,4,0,29,2,0,8,17,3,0,0,0,22,0,22,0,7,1,0,0,0,1,0,0,0,0,15,0,1,0,0,0,16,0,29,21,0,0,49,0,0,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,21,0,0,3371,29,87,0,16,0,0,0,0,0,13,0,0,0,0,0,1,5,197,0,0,16,0,0,0,0,0,26,0,3,0,0,2,0,65,0,18,0,0,1606,0,0,0,0,15,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,178,0,106,0,0,0,0,3,67,3747,280,0,0,0,0,1,0,0,0,0,0,0,0,0,2975,0,24,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,21,201,4,0,0,152,0,249,0,0,0,86,8,0,0,0,0,0,0,4,0,0,64,1,0,0,0,2,0,0,0,0,1,113,20,0,0,0,0,13,0,28,14,676,0,0,132,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,15,0,0,0,0,1,45,124,0,16,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,3,288,24,2 +8,0,0,2,0,17,14,0,16,0,2,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,4,0,17,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,4,60,0,0,0,0,0,1,0,0,0,0,0,1,0,0,353,17,56,0,5,0,0,0,0,0,7,0,0,0,0,0,1,4,51,0,0,4,0,0,0,0,0,7,0,4,0,0,2,0,43,0,0,0,0,229,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,65,0,45,0,0,0,8,5,42,19,82,0,0,0,0,1,0,0,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,31,108,2,0,0,116,0,202,0,0,0,40,14,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,1,99,21,0,0,0,0,0,0,0,0,634,0,0,33,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,8,0,0,0,4,1,21,79,0,5,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,13,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,40,0,0,0,0,0,1,0,0,0,0,0,3,0,0,228,13,47,0,16,0,0,0,0,0,3,0,0,0,0,0,1,3,87,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,147,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,631,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,41,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,18,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +0,0,0,2,0,13,2,0,9,0,2,0,0,0,2,0,20,0,6,1,0,0,0,1,0,0,3,0,0,0,2,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,1,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1000,13,46,0,2,0,0,0,0,0,7,0,0,0,0,0,1,7,473,0,0,3,0,0,0,0,0,8,0,1,1,0,2,0,25,0,0,0,0,114,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,52,0,31,0,0,0,2,6,32,6,60,0,0,0,0,1,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,72,2,0,0,101,0,167,0,0,0,46,4,0,0,0,0,0,0,0,0,0,41,0,0,0,0,2,0,0,0,0,1,95,27,0,0,0,0,0,0,0,0,222,0,0,740,0,0,1,0,1,0,0,0,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,1,0,0,0,0,1,16,74,0,5,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,247,7,2 +13,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,11,6,0,0,83,0,4,0,1,0,0,5,0,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2637,11,81,0,24,0,0,0,0,0,17,0,0,0,0,0,1,11,1041,0,0,0,0,0,0,0,0,37,0,6,0,0,2,0,38,0,0,0,0,411,0,0,0,0,33,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,412,0,110,0,0,0,0,3,61,21,466,0,0,0,0,1,0,0,0,0,0,0,0,0,1167,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,3,169,3,0,0,111,0,245,0,0,0,40,5,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,30,0,0,0,0,4,0,0,0,722,0,0,899,0,0,1,0,1,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,23,0,0,0,0,1,11,170,0,24,0,0,1,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,406,23,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,13771,0,0,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,16,0,0,6119,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,71216,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,60,0,0,0,0,3,58,61,27583,0,0,0,0,1,0,0,0,0,0,0,0,0,89399,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,440,3,0,0,91,0,217,0,0,0,25,303,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,615,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,29468,2 +0,0,0,3,0,11,2,0,16,0,3,0,0,0,3,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,34,0,0,0,1,0,0,3,0,0,0,0,0,61,0,0,0,0,0,1,0,0,0,0,0,3,0,0,447,11,47,0,1,0,0,0,0,0,13,0,0,0,0,0,2,6,49,0,0,2,0,0,0,0,0,10,0,6,0,0,2,0,17,0,1,0,0,142,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,61,0,32,0,0,0,0,3,28,5,65,0,0,0,0,1,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,83,3,0,0,117,0,131,0,0,0,47,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,93,34,0,0,0,0,0,0,0,0,36,0,0,85,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,188,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,23,2 +6,0,0,2,0,14,2,0,22,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,2,0,3,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,9,0,0,0,0,2,148,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1762,14,111,0,5,0,0,0,0,0,32,0,0,0,0,0,1,13,302,0,0,3,0,0,0,0,0,22,0,12,0,0,2,0,56,0,0,0,0,321,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,257,0,112,0,0,0,4,9,33,22,263,0,0,0,0,1,0,0,0,0,0,0,0,0,596,0,0,0,0,0,0,0,0,0,0,0,0,8,0,2,0,0,0,0,0,0,10,3,137,2,0,0,252,0,433,0,0,0,180,16,0,0,0,0,0,0,6,0,0,60,1,0,0,0,2,0,0,0,0,1,108,139,0,0,0,0,0,0,0,0,692,0,0,241,0,0,1,0,0,0,0,0,15,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,0,1,17,553,0,11,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,321,48,2 +8,0,0,2,0,15,14,0,17,0,2,0,0,0,3,0,15,0,7,1,0,0,0,1,0,0,0,0,4,0,5,0,0,0,4,0,15,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,4,61,0,0,0,0,0,1,0,0,0,0,0,1,0,0,389,15,60,0,9,0,0,0,0,0,7,0,0,0,0,0,1,4,55,0,0,4,0,0,0,0,0,11,0,4,0,0,2,0,47,0,0,0,0,249,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,66,0,45,0,0,0,8,5,34,19,83,0,0,0,0,1,0,0,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,31,102,2,0,0,110,0,197,0,0,0,40,5,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,1,97,21,0,0,0,0,0,0,0,0,657,0,0,45,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,12,0,0,0,4,1,19,79,0,9,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,14,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,2 +16,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,13896,0,0,0,1,0,0,1,0,0,0,0,4,55,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5961,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,69176,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,9,54,69,27853,0,0,0,0,1,0,0,0,0,0,0,0,0,92865,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,374,3,0,0,78,0,223,0,0,0,12,269,0,0,0,0,0,0,0,0,0,37,2,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,614,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,31526,2 +9,0,0,6,0,49,13,0,54,1,11,0,0,7,8,0,801,0,6,2,0,0,0,7,0,10,0,0,7,0,13,0,0,0,6,898,49,6,0,0,55,0,0,0,1,0,0,4,0,0,0,0,13,256,0,0,0,0,0,1,0,0,0,0,0,5,0,0,8808,49,925,0,17,0,0,0,0,0,33,0,0,0,0,0,8,45,1697,0,0,6,0,0,0,0,0,237,25,8,0,0,2,0,880,0,2,26,0,2104,0,0,0,0,6,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,595,0,90,0,0,0,26,11,443,591,562,0,0,0,0,1,0,3,0,0,0,0,0,0,523,0,0,0,0,0,0,0,0,0,1,0,0,5,1,0,0,0,0,0,1,0,108,18,260,6,0,0,294,0,382,0,0,0,106,14,0,0,0,0,0,0,0,0,0,900,1,0,0,0,9,0,0,0,0,2,144,26,0,0,32,0,0,0,0,0,2873,1,0,255,10,0,1,1,0,0,0,0,6,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,10,15,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,34,0,0,0,12,1,55,157,0,18,12,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,822,52,2 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,46,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,69,0,0,0,0,0,7,43,190,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,5,2,0,0,53,0,86,0,0,0,47,1,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,44,0,0,0,0,0,0,0,0,291,0,0,240,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,114,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,290,4,2 +18,0,0,3,0,22,2,0,4,10,3,0,0,0,13,0,10,0,7,2,0,0,0,1,0,0,0,0,0,0,5,0,0,0,2,0,22,6,0,0,10619,0,0,0,1,0,0,1,0,0,0,0,4,50,0,0,0,0,0,1,0,0,0,0,0,13,0,0,5895,22,37,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,24,0,1,0,0,2,0,33,0,11,0,0,64803,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,54,0,0,0,8,11,52,69,21293,0,0,0,0,1,0,0,0,0,0,0,0,0,99566,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,14,395,3,0,0,80,0,210,0,0,0,14,313,0,0,0,0,0,0,0,0,0,39,1,0,0,0,3,0,0,0,0,5,104,7,0,0,0,0,0,0,0,0,611,0,0,20,0,0,1,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,6,3,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,24,1,1,1,0,8,0,0,0,8,1,24,2,0,5,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,140,2 +62,0,0,5,0,49,6,0,29,13,3,0,0,2,18,0,587,0,7,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,15,898,49,21,0,0,56,0,0,0,1,0,0,5,0,0,0,0,1,180,0,0,0,0,0,1,0,0,0,0,0,18,0,0,21208,49,675,0,1,0,0,0,0,0,27,0,0,0,0,0,8,21,3322,0,0,15,0,0,0,0,0,94,5,6,0,0,2,0,621,0,14,0,0,2329,0,0,0,0,13,16,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,2766,0,139,0,0,0,0,3,260,3570,2829,0,0,0,0,1,0,3,0,0,0,0,0,0,2911,0,18,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,34,24,285,5,0,0,278,0,395,0,0,0,131,10,0,0,0,0,0,0,4,0,0,652,1,0,0,0,9,0,0,0,0,1,134,34,0,0,0,0,13,0,25,13,2122,1,0,181,6,0,1,1,0,0,0,0,11,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,0,0,0,0,0,1,64,180,0,2,12,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,5,630,51,2 +2,0,0,3,0,42,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,33,0,42,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,6,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,278,42,93,0,7,0,0,0,0,0,0,0,0,0,0,0,1,1,25,0,0,33,0,0,1,47,0,384,35,0,0,0,2,0,233,0,0,0,0,498,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,32,0,64,0,0,0,6,9,57,350,50,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,136,3,0,0,139,0,191,0,0,0,106,10,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,7,124,113,0,0,84,0,0,0,0,0,599,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,0,0,0,0,0,1,75,37,0,7,0,0,0,0,0,0,131,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,4,2 +13,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,230,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,89,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,139,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,53,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,633,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,43,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,18,2 +16,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,23,0,0,0,0,0,0,0,0,0,0,0,4,18,0,0,0,0,0,1,0,0,0,0,0,1,0,0,87,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,30,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,1299,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,41,0,0,0,8,5,28,19,53,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,39,47,2,0,0,44,0,138,0,0,0,5,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,598,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,3,2 +5,0,0,4,1,12,26,1,32,0,4,0,0,0,5,0,65,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,52,0,0,0,0,0,1,0,0,0,0,0,4,0,0,148,12,96,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,33,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,139,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,39,0,0,0,4,4,31,12,56,0,0,0,0,1,0,0,0,0,0,0,0,0,173,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,115,14,215,5,0,0,229,0,347,0,1,0,55,3,0,0,0,0,0,0,0,0,0,141,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,691,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,40,0,3,0,0,0,0,0,0,55,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,101,17,2 +2,0,0,3,0,57,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,9,0,0,0,0,1,0,0,0,48,0,57,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,9,40,0,0,0,0,0,1,0,0,0,0,0,10,0,0,466,57,96,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,41,0,0,48,0,0,1,47,0,390,35,0,0,0,2,0,236,0,0,0,0,663,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,47,0,88,0,0,0,9,12,72,369,80,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,188,3,0,0,183,0,231,0,0,0,150,3,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,11,139,112,0,0,84,0,0,0,0,0,600,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,0,0,0,0,0,1,105,48,0,10,0,0,0,0,0,0,141,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,6,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,50,0,0,0,0,0,1,0,0,0,0,0,4,0,0,143,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,178,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,178,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,212,5,0,0,229,0,324,0,1,0,55,5,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,42,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,16,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,72,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,98,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,47,2,0,0,44,0,133,0,0,0,5,4,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,3,2 +0,0,0,2,0,8,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,116,8,34,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,18,0,0,0,0,0,0,0,0,6,0,1,0,0,2,0,13,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,22,0,19,0,0,0,0,3,22,4,35,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,73,2,0,0,93,0,116,0,0,0,35,2,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,92,27,0,0,0,0,0,0,0,0,26,0,0,8,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,84,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,2 +6,0,0,2,0,14,2,0,20,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,2,0,3,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,2,79,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2406,14,95,0,5,0,0,0,0,0,24,0,0,0,0,0,1,9,222,0,0,3,0,0,0,0,0,16,0,10,0,0,2,0,54,0,0,0,0,524,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,192,0,79,0,0,0,4,9,33,17,194,0,0,0,0,1,0,0,0,0,0,0,0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,10,3,113,2,0,0,258,0,435,0,0,0,188,13,0,0,0,0,0,0,2,0,0,58,1,0,0,0,2,0,0,0,0,1,103,154,0,0,0,0,0,0,0,0,673,0,0,239,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,0,1,17,449,0,11,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,229,39,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,4,0,0,137,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,31,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,196,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,167,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,213,5,0,0,229,0,330,0,1,0,55,3,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,116,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,32,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,97,16,2 +8,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,33,0,0,0,3,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,11,0,0,68,11,126,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,34,0,0,3,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,71,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,27,378,59,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,123,0,0,0,27,1,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,603,0,0,32,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,33,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,32,0,0,0,0,1,14,7,0,33,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,3,2 +13,0,0,3,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,81,0,4,0,1,0,0,5,0,0,0,0,0,96,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2656,10,80,0,23,0,0,0,0,0,17,0,0,0,0,0,1,11,1044,0,0,0,0,0,0,0,0,36,0,6,0,0,2,0,37,0,0,0,0,646,0,0,0,0,31,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,412,0,104,0,0,0,0,3,56,21,466,0,0,0,0,1,0,0,0,0,0,0,0,0,1191,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,3,161,3,0,0,108,0,265,0,0,0,40,3,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,92,30,0,0,0,0,4,0,0,0,726,0,0,907,0,0,1,0,1,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,10,170,0,23,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,397,24,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,59,0,0,0,2,2,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,58,0,0,0,2,6,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 +5,0,0,4,0,36,2,0,29,0,4,0,0,0,4,0,116,0,6,1,0,0,0,1,0,0,60,0,0,0,21,0,0,0,14,0,36,6,0,0,10,0,0,0,1,0,0,1,0,0,0,0,20,45,0,0,0,0,0,1,0,0,0,0,0,4,0,0,984,36,224,0,21,0,0,0,0,0,4,0,0,0,0,0,1,3,106,0,0,14,0,0,0,0,0,7,0,1,0,0,2,0,381,0,1,0,0,909,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,90,0,101,0,0,0,40,72,52,624,136,0,0,0,0,1,0,0,0,0,0,0,0,0,448,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,216,4,0,0,147,0,273,0,0,0,56,18,0,0,0,0,0,0,0,0,0,161,1,0,0,0,2,0,0,0,0,1,119,5,0,0,0,0,0,0,0,0,832,0,0,25,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,21,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,20,0,0,0,0,1,50,15,0,81,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,186,64,2 +11,0,0,3,0,10,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,3,0,0,0,0,0,61,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1290,10,71,0,24,0,0,0,0,0,12,0,0,0,0,0,1,8,627,0,0,0,0,0,0,0,0,35,0,3,0,0,2,0,37,0,0,0,0,393,0,0,0,0,34,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,127,0,124,0,0,0,0,3,55,17,167,0,0,0,0,1,0,0,0,0,0,0,0,0,415,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,75,3,0,0,85,0,174,0,0,0,18,1,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,92,11,0,0,0,0,4,0,0,0,866,0,0,760,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,23,0,0,0,0,1,10,103,0,24,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,544,12,2 +13,0,0,4,1,16,26,1,32,0,4,0,0,0,5,0,65,0,9,2,0,0,0,2,0,0,0,0,0,0,17,0,0,1,2,0,17,54,0,0,12,0,1,0,1,0,0,1,0,0,0,0,16,52,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2211,16,111,0,17,0,0,0,0,0,3,0,0,0,0,0,3,5,871,0,1,2,1,0,1,0,0,47,0,1,0,0,4,1,34,0,2,0,0,510,0,0,0,0,3,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,468,0,58,0,0,0,32,19,46,20,487,0,0,0,0,1,0,0,0,0,0,0,0,0,249,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,114,14,230,5,0,0,241,0,375,0,1,0,55,4,0,0,0,0,0,0,0,0,0,141,1,0,0,0,4,0,0,0,0,1,112,6,0,0,0,0,0,0,0,0,719,0,0,24,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,20,1,1,1,0,32,0,0,0,32,9,19,28,0,17,0,0,0,0,0,0,93,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,191,11,2 +14,0,0,14,4,99,34,13,95,17,30,0,0,2,51,0,94,0,9,8,0,9,0,6,1,8,0,0,13,0,11,0,0,3,69,0,103,55,11,0,295,0,0,0,1,0,0,3,0,0,0,0,13,197,0,0,0,0,0,1,0,0,0,0,0,37,0,0,41986,99,565,0,22,0,0,0,0,0,16,9,0,0,0,0,9,18,8639,0,13,69,3,0,4,24,0,391,50,6,0,0,4,4,296,0,28,0,0,2112,0,0,0,0,26,0,2,0,1,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,10,10,10,0,0,0,5225,0,132,0,0,0,24,33,289,820,5236,0,0,0,0,1,0,4,0,0,0,0,0,0,10073,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,136,104,647,30,0,0,634,0,745,0,1,0,323,29,0,0,0,0,0,0,0,0,0,315,1,0,0,0,24,0,0,0,0,9,195,84,0,0,87,0,0,0,0,0,2092,0,0,11795,3,0,1,1,0,0,0,0,5,0,0,0,5,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,13,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,104,1,1,1,0,33,0,0,0,2,33,172,286,0,23,9,0,0,0,0,0,301,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,25,0,0,0,0,0,0,0,0,0,0,0,8,0,3,3699,1737,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,51,0,0,0,0,0,1,0,0,0,0,0,4,0,0,142,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,129,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,169,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,213,5,0,0,229,0,327,0,1,0,55,3,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,44,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,15,2 +9,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,33,0,0,0,2,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,11,0,0,69,11,125,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,35,0,0,2,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,59,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,34,0,0,0,0,3,27,378,58,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,124,0,0,0,22,6,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,604,0,0,31,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,33,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,32,0,0,0,0,1,13,6,0,33,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,3,2 +43,0,0,23,3,62,85,3,129,33,89,0,1,0,125,5,168,0,13,1,0,0,0,3,0,0,0,0,12,0,10,0,0,3,44,0,65,159,0,0,280,0,0,0,1,0,0,4,0,0,0,0,9,184,0,0,0,0,0,1,0,0,0,26,0,60,0,0,2910,62,539,0,22,0,0,0,0,0,18,0,0,0,0,0,3,10,265,0,3,44,3,0,8,33,0,484,65,7,1,0,10,3,545,0,51,0,0,1665,0,0,0,0,37,10,1,0,0,0,0,1,0,0,0,7,0,0,3,0,0,0,0,6,2,0,0,7,0,0,0,4,0,3,0,12,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,4,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,24,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,231,0,139,0,0,0,18,17,127,1521,256,0,0,0,0,1,0,0,0,0,0,0,0,0,1172,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,325,152,778,31,0,0,849,0,1346,0,3,0,400,35,0,0,0,0,0,0,0,0,0,615,1,0,0,0,4,0,0,0,0,8,228,160,0,0,127,0,3,0,0,2,489,0,0,161,0,0,1,0,0,0,0,0,8,0,0,0,4,0,0,0,0,0,32,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,19,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,80,1,1,1,0,30,0,0,0,2,25,109,411,0,22,0,0,0,0,0,0,250,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,41,0,0,0,0,0,0,0,0,0,0,0,3,0,3,800,488,2 +3,0,0,5,0,35,6,0,36,0,5,0,0,6,5,0,510,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,762,35,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,1,167,0,0,0,0,0,1,0,0,0,0,0,2,0,0,6631,35,568,0,3,0,0,0,0,0,12,0,0,0,0,0,8,24,1317,0,0,1,0,0,0,0,0,190,20,3,0,0,2,0,549,0,0,2,0,1292,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,485,0,51,0,0,0,1,4,270,350,481,0,0,0,0,1,0,4,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,24,174,5,0,0,182,0,259,0,0,0,42,2,0,0,0,0,0,0,0,0,0,574,1,0,0,0,9,0,0,0,0,0,118,11,0,0,8,0,0,0,0,0,2101,1,0,57,6,0,1,1,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,20,0,4,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,30,2 +10,0,0,0,0,151,2,0,5,1,1,0,0,0,3,0,63,0,6,1,0,0,0,1,0,0,0,0,60,0,1,0,0,0,140,0,151,162,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1655,151,132,0,61,0,0,0,0,0,1,0,0,0,0,0,1,1,17,0,0,140,0,0,0,0,0,65,0,0,0,0,2,0,71,0,1,0,0,3228,0,0,0,0,38,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,160,0,0,0,0,3,168,141,92,0,0,0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,684,0,0,0,579,0,337,0,0,0,532,18,0,0,0,0,0,0,0,0,0,80,0,0,0,0,2,0,0,0,0,1,246,53,0,0,0,0,0,0,0,0,762,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,148,1,1,1,0,60,0,0,0,0,1,291,140,0,61,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,1054,2 +9,0,0,3,0,11,10,0,55,0,15,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,32,0,0,0,2,0,11,6,0,0,97,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,11,0,0,68,11,124,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,34,0,0,2,0,0,1,50,0,399,20,0,0,0,2,0,251,0,0,0,0,68,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,27,377,58,0,0,0,0,1,0,0,0,0,0,0,0,0,176,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,47,3,0,0,61,0,124,0,0,0,22,1,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,97,125,0,0,44,0,0,0,0,0,603,0,0,30,0,0,1,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,32,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,31,0,0,0,0,1,13,6,0,32,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,3,2 +22,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14164,0,0,0,1,0,0,1,0,0,0,0,4,51,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5704,22,37,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,31,0,9,0,0,68962,0,0,0,0,2,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,9,54,69,28389,0,0,0,0,1,0,0,0,0,0,0,0,0,93284,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,377,3,0,0,78,0,216,0,0,0,12,264,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,614,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,0,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,31335,2 +2,0,0,3,0,71,6,0,52,0,17,0,0,0,2,0,11,0,6,1,0,0,0,1,0,12,0,0,0,0,1,0,0,0,58,0,71,6,0,0,87,0,0,0,0,0,0,0,0,0,0,0,12,38,0,0,0,0,0,1,0,0,0,0,0,10,0,0,474,71,98,0,13,0,0,0,0,0,0,0,0,0,0,0,1,1,34,0,0,58,0,0,1,47,0,396,35,0,0,0,2,0,238,0,0,0,0,858,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,42,0,96,0,0,0,12,14,86,393,70,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,231,3,0,0,225,0,243,0,0,0,180,6,0,0,0,0,0,0,0,0,0,94,0,0,0,0,2,0,0,0,0,13,153,112,0,0,84,0,0,0,0,0,598,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,68,1,1,1,0,0,0,0,0,0,1,129,58,0,13,0,0,0,0,0,0,137,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,6,2 +1,0,0,6,0,36,7,0,33,0,5,0,0,7,6,0,499,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,36,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,181,0,0,0,0,0,1,0,0,0,0,0,5,0,0,17923,36,565,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4202,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,558,0,0,1,0,3486,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,673,0,47,0,0,0,1,4,267,1157,658,0,0,0,0,1,0,3,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,191,6,0,0,206,0,272,0,0,0,58,8,0,0,0,0,0,0,0,0,0,563,1,0,0,0,10,0,0,0,0,0,119,15,0,0,6,0,0,0,0,0,3171,1,0,840,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,5,0,0,0,0,1,37,107,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1989,76,2 +0,0,0,3,0,12,4,0,11,0,3,0,0,0,3,0,20,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,10,0,0,0,1,0,0,2,0,0,0,0,0,101,0,0,0,0,0,1,0,0,0,0,0,3,0,0,445,12,49,0,1,0,0,0,0,0,9,0,0,0,0,0,1,4,52,0,0,2,0,0,0,0,0,13,0,3,0,0,2,0,22,0,1,0,0,145,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,40,0,0,0,0,3,29,7,75,0,0,0,0,1,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,68,4,93,3,0,0,165,0,1267,0,0,0,95,2,0,0,0,0,0,0,0,0,0,48,1,0,0,0,2,0,0,0,0,0,96,78,0,0,0,0,0,0,0,0,118,0,0,29,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,383,0,1,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,84,27,2 +16,0,0,3,0,22,2,0,4,8,3,0,0,0,11,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,5,0,1,0,2,0,22,6,0,0,14066,0,0,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,11,0,0,5874,22,38,0,9,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,28,0,1,0,0,2,0,32,0,9,0,0,68696,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,55,0,0,0,8,10,54,69,28193,0,0,0,0,1,0,0,0,0,0,0,0,0,94692,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,12,381,3,0,0,78,0,227,0,0,0,12,282,0,0,0,0,0,0,0,0,0,37,1,0,0,0,3,0,0,0,0,5,104,5,0,0,0,0,0,0,0,0,615,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,6,2,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,26,1,1,1,0,12,0,0,0,4,1,24,2,0,9,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,32320,2 +6,0,0,2,0,14,2,0,20,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,8,0,0,0,0,0,155,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1866,14,91,0,3,0,0,0,0,0,31,0,0,0,0,0,1,13,308,0,0,3,0,0,0,0,0,22,0,12,0,0,2,0,20,0,0,0,0,286,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,260,0,112,0,0,0,0,3,33,20,267,0,0,0,0,1,0,0,0,0,0,0,0,0,609,0,0,0,0,0,0,0,0,0,0,0,0,8,0,2,0,0,0,0,0,0,10,3,129,2,0,0,251,0,420,0,0,0,179,19,0,0,0,0,0,0,6,0,0,48,1,0,0,0,2,0,0,0,0,1,108,139,0,0,0,0,0,0,0,0,680,0,0,261,0,0,1,0,0,0,0,0,15,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,553,0,3,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,328,50,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,104,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,205,14,159,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,48,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,130,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,40,0,0,0,0,3,30,237,74,0,0,0,0,1,0,0,0,0,0,0,0,0,179,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,83,3,0,0,111,0,151,0,0,0,46,1,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,615,0,0,110,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,104,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,103,0,0,0,0,1,17,71,0,104,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,10,2 +6,0,0,4,0,35,6,0,15,3,3,0,0,2,9,0,22,0,7,3,0,0,0,5,0,9,4,0,4,0,2,0,0,0,7,0,35,6,0,0,40,0,0,0,1,0,0,3,0,0,0,0,3,123,0,0,0,0,0,1,0,0,0,2,0,10,0,0,1398,35,75,0,5,0,0,0,0,0,16,0,0,0,0,1,7,17,210,0,0,7,0,0,0,0,0,79,5,5,0,0,2,0,56,0,7,0,0,571,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,159,0,74,0,0,0,3,8,195,22,161,0,0,0,0,1,0,4,0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,1,0,32,17,149,4,0,0,186,0,308,0,0,0,80,20,0,0,0,0,0,0,0,0,0,64,1,0,0,0,8,0,0,0,0,1,117,47,0,0,0,0,0,0,0,0,127,0,0,122,3,0,1,1,0,0,0,0,5,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,4,0,0,0,0,1,42,296,0,10,9,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,251,37,2 +5,0,0,3,0,14,2,0,25,0,9,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,104,0,0,0,3,0,14,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,4,0,0,204,14,159,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,46,0,0,3,0,0,1,15,0,133,25,1,0,0,2,0,74,0,0,0,0,102,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,30,237,71,0,0,0,0,1,0,0,0,0,0,0,0,0,174,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,85,3,0,0,111,0,155,0,0,0,46,3,0,0,0,0,0,0,0,0,0,62,1,0,0,0,2,0,0,0,0,0,96,56,0,0,51,0,0,0,0,0,614,0,0,110,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,104,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,103,0,0,0,0,1,17,71,0,104,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,10,2 +6,0,0,4,0,16,5,0,43,2,9,0,0,0,5,0,19,0,6,1,0,0,0,1,0,2,0,0,2,0,1,0,0,0,6,0,16,6,0,0,51,0,0,0,1,0,0,5,0,0,0,0,2,131,0,0,0,0,0,1,0,0,0,0,0,9,0,0,1270,16,112,0,5,0,0,0,0,0,21,0,0,0,0,0,1,7,183,0,0,6,0,0,1,18,0,158,15,10,0,0,2,0,124,0,3,0,0,207,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,154,0,81,0,0,0,2,5,32,161,156,0,0,0,0,1,0,0,0,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,10,6,115,4,0,0,180,0,258,0,0,0,112,13,0,0,0,0,0,0,2,0,0,87,1,0,0,0,2,0,0,0,0,1,98,106,0,0,34,0,0,0,0,0,649,0,0,191,0,0,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,2,0,0,0,0,1,22,399,0,5,0,0,0,0,0,0,88,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,79,2 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,80,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1159,10,59,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,133,0,0,0,0,0,0,0,0,15,0,5,0,0,2,0,14,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,119,0,87,0,0,0,0,3,26,13,136,0,0,0,0,1,0,0,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,8,3,112,2,0,0,244,0,361,0,0,0,180,12,0,0,0,0,0,0,2,0,0,41,1,0,0,0,2,0,0,0,0,0,100,160,0,0,0,0,0,0,0,0,62,0,0,83,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,499,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,217,33,2 +12,0,0,3,0,13,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,36,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,195,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,27,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +10,0,0,2,0,12,2,0,4,0,2,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,12,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,72,12,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,9,0,0,0,0,94,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,8,5,28,16,43,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,19,46,2,0,0,44,0,133,0,0,0,5,4,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,0,595,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,8,0,0,0,4,1,13,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,24,2 +17,0,0,3,0,26,2,0,4,13,3,0,0,0,16,0,10,0,7,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,6,0,26,6,0,0,14404,0,0,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,16,0,0,5936,26,40,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,6,0,0,0,0,0,12,0,1,0,0,2,0,39,0,14,0,0,74563,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,69,0,59,0,0,0,0,3,58,61,28849,0,0,0,0,1,0,0,0,0,0,0,0,0,92451,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,17,447,3,0,0,91,0,255,0,0,0,25,324,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,614,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,30,1,1,1,0,4,0,0,0,0,1,32,6,0,5,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,31984,2 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,59,0,1,0,0,0,1,0,0,0,0,0,1,0,0,8649,12,50,0,1,0,0,0,0,0,14,0,0,0,1,0,1,6,1132,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,790,0,51,0,0,0,0,3,31,8,807,0,0,0,0,1,0,0,0,0,0,0,0,0,3452,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,92,2,0,0,112,0,109,0,0,0,46,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,96,27,0,0,0,0,0,0,0,0,748,0,0,2944,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,95,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1179,23,2 +4,0,0,4,1,12,26,1,31,0,4,0,0,0,5,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,3,0,0,1,2,0,13,54,0,0,12,0,0,0,1,0,0,1,0,0,0,0,2,52,0,0,0,0,0,1,0,0,0,0,0,4,0,0,140,12,95,0,3,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,1,2,1,0,1,0,0,43,0,1,0,0,4,1,19,0,2,0,0,126,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,37,0,0,0,4,4,31,11,53,0,0,0,0,1,0,0,0,0,0,0,0,0,169,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,214,5,0,0,229,0,331,0,1,0,55,3,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,1,108,6,0,0,0,0,0,0,0,0,115,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,4,0,0,0,2,9,15,24,0,3,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,15,2 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,1,0,0,858,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,442,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,19,0,0,0,0,3,21,10,41,0,0,0,0,1,0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,53,2,0,0,71,0,91,0,0,0,19,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,63,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,2,2 +14,0,0,3,0,13,2,0,9,0,4,0,0,0,2,0,15,0,8,1,0,0,0,1,0,0,0,0,0,0,17,0,0,0,2,0,13,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,16,36,0,0,0,0,0,1,0,0,0,0,0,3,0,0,229,13,47,0,17,0,0,0,0,0,3,0,0,0,0,0,1,3,88,0,0,2,0,0,0,0,0,6,0,1,0,0,2,0,26,0,1,0,0,138,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,51,0,0,0,32,19,33,18,84,0,0,0,0,1,0,0,0,0,0,0,0,0,178,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,78,3,0,0,78,0,170,0,0,0,18,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,95,5,0,0,0,0,0,0,0,0,632,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,32,0,0,0,32,1,15,27,0,17,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,18,2 +6,0,0,4,0,19,7,0,28,1,9,0,0,0,6,0,72,0,6,2,0,0,0,1,0,2,0,0,1,0,1,0,0,0,4,0,19,171,0,0,98,0,0,0,1,0,0,1,1,0,0,0,2,179,0,0,0,0,0,1,0,0,0,6,0,8,0,0,1364,19,128,0,4,0,0,0,0,0,9,0,0,0,0,0,2,4,40,0,0,4,0,0,1,17,0,153,25,3,0,0,2,0,96,0,4,0,0,414,0,0,0,0,3,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,68,0,63,0,0,0,2,5,43,2290,119,0,0,0,0,1,0,0,0,0,0,0,0,0,1348,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,7,188,4,0,0,282,0,404,0,0,0,202,6,0,0,0,0,0,0,0,0,0,128,1,0,2,0,3,0,0,0,0,3,146,126,0,0,98,0,0,0,3,0,144,0,0,19,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,1,0,0,0,0,1,23,100,0,4,0,0,0,0,0,0,282,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,106,35,2 +14,0,0,13,4,91,32,13,86,17,23,0,0,2,46,0,94,0,9,7,0,9,0,6,1,8,0,0,12,0,9,0,0,3,63,0,95,55,13,0,253,0,0,0,1,0,0,3,0,0,0,0,11,178,0,0,0,0,0,1,0,0,0,0,0,34,0,0,42232,91,543,0,18,0,0,0,0,0,19,9,0,0,0,0,8,17,8589,0,13,63,3,0,3,16,0,312,35,7,0,0,4,4,242,0,26,0,0,2568,0,0,0,0,23,0,2,0,1,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,5,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,12,10,10,10,0,0,0,5222,0,128,0,0,0,20,31,267,757,5229,0,0,0,0,1,0,4,0,0,0,0,0,0,9981,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,136,82,702,29,0,0,612,0,796,0,1,0,307,52,0,0,0,0,0,0,0,0,0,292,1,0,0,0,23,0,0,0,0,8,187,70,0,0,58,0,0,0,0,0,2076,0,0,11794,3,0,1,1,0,0,0,0,7,0,1,0,4,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,11,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,95,1,1,1,0,28,0,0,0,0,33,158,280,0,20,9,0,0,0,0,0,269,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,23,0,0,0,0,0,0,0,0,0,0,0,7,0,4,3666,1819,2 +14,0,0,16,4,77,121,4,269,9,65,0,0,2,36,0,1009,0,14,2,0,0,0,9,0,12,0,0,11,0,1,0,0,4,36,1228,81,284,0,0,342,0,0,0,1,0,0,3,0,0,0,0,2,347,0,0,0,0,0,1,0,0,0,0,0,42,0,0,37875,77,1395,0,9,0,0,0,0,0,32,0,0,0,0,1,10,24,6173,0,4,36,4,0,12,124,0,1295,195,7,0,0,10,4,1519,0,23,0,0,5584,0,0,0,0,31,1,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,5,0,8,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,42,12,12,12,0,0,0,3859,0,129,0,0,0,1,4,334,2916,3845,0,0,0,0,1,0,3,0,0,0,0,0,0,2290,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,459,115,966,22,0,0,1038,0,1651,0,4,0,388,37,0,0,0,0,0,0,0,0,0,1516,1,0,0,0,11,0,0,0,0,2,249,274,0,0,403,0,2,0,0,0,3970,1,0,742,12,0,1,1,0,0,0,0,9,0,0,0,4,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,12,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,81,1,1,1,0,7,0,0,0,0,33,117,247,0,10,14,0,0,0,0,0,443,5,0,0,0,0,0,0,0,0,0,0,0,7,0,1,27,0,0,0,0,0,0,0,0,0,0,0,4,0,2,2172,231,2 +3,0,0,5,0,37,6,0,37,0,5,0,0,6,5,0,553,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,2,762,37,6,0,0,45,0,0,0,1,0,0,3,0,0,0,0,1,181,0,1,0,0,0,1,0,0,0,0,0,2,0,0,6566,37,618,0,3,0,0,0,0,0,15,0,0,0,1,0,8,26,1287,0,0,2,0,0,0,0,0,191,20,5,0,0,2,0,592,0,0,2,0,1439,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,472,0,66,0,0,0,1,4,276,357,476,0,0,0,0,1,0,4,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,86,24,181,5,0,0,193,0,263,0,0,0,50,9,0,0,0,0,0,0,0,0,0,618,1,0,0,0,9,0,0,0,0,0,121,13,0,0,8,0,0,0,0,0,2193,1,0,81,6,0,1,1,0,0,0,0,15,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,5,0,0,0,0,1,39,25,0,4,12,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,31,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,5,2 +11,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,49,0,0,0,0,0,1,0,0,0,0,0,3,0,0,323,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,30,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,221,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,42,0,0,0,8,11,29,400,145,0,0,0,0,1,0,0,0,0,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,54,3,0,0,62,0,137,0,0,0,29,4,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,25,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,10,2 +11,0,0,3,0,10,2,0,15,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,10,6,0,0,75,0,3,0,1,0,0,3,0,0,0,0,0,60,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1288,10,70,0,23,0,0,0,0,0,12,0,0,0,0,0,1,8,627,0,0,0,0,0,0,0,0,34,0,3,0,0,2,0,36,0,0,0,0,200,0,0,0,0,34,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,127,0,122,0,0,0,0,3,55,17,167,0,0,0,0,1,0,0,0,0,0,0,0,0,401,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,78,3,0,0,85,0,176,0,0,0,18,2,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,92,11,0,0,0,0,4,0,0,0,867,0,0,759,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,22,0,0,0,0,1,10,103,0,23,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,541,13,2 +4,0,0,2,0,11,3,0,8,0,2,0,0,0,2,0,15,0,6,1,0,0,0,2,0,0,0,0,0,0,16,0,0,0,3,0,11,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,690,11,55,0,1,0,0,0,0,0,9,0,0,0,0,0,2,5,188,0,0,3,0,0,0,0,0,9,0,4,0,0,2,0,7,0,0,0,0,121,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,65,0,34,0,0,0,0,3,30,27,86,0,0,0,0,1,0,0,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,73,2,0,0,115,0,129,0,0,0,58,1,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,0,93,40,0,0,0,0,0,0,0,0,48,0,0,383,0,0,1,0,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,197,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,16,0,0,0,0,1,14,120,0,16,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,8,2 +11,0,0,3,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,11,6,0,0,75,0,3,0,1,0,0,4,0,0,0,0,0,93,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2549,11,80,0,24,0,0,0,0,0,16,0,0,0,0,0,1,10,1012,0,0,0,0,0,0,0,0,36,0,4,0,0,2,0,38,0,0,0,0,640,0,0,0,0,31,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,390,0,124,0,0,0,0,3,60,19,431,0,0,0,0,1,0,0,0,0,0,0,0,0,1136,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,3,166,3,0,0,110,0,252,0,0,0,39,2,0,0,0,0,0,0,2,0,0,44,1,0,0,0,2,0,0,0,0,0,93,29,0,0,0,0,4,0,0,0,725,0,0,883,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,23,0,0,0,0,1,11,170,0,24,0,0,1,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,433,18,2 +2,0,0,4,0,16,2,0,19,4,3,0,0,0,8,0,16,0,6,1,0,0,0,1,0,0,0,0,5,0,5,0,0,0,5,0,16,6,0,0,24,0,0,0,1,0,0,2,0,0,0,0,4,47,0,0,0,0,0,1,0,0,0,0,0,6,0,0,268,16,59,0,10,0,0,0,0,0,6,0,0,0,0,0,1,4,44,0,0,5,0,0,0,0,0,13,0,3,0,0,2,0,39,0,4,0,0,216,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,58,0,76,0,0,0,8,7,35,35,76,0,0,0,0,1,0,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,8,101,4,0,0,106,0,207,0,0,0,35,4,0,0,0,0,0,0,0,0,0,54,1,0,0,0,2,0,0,0,0,1,98,11,0,0,0,0,0,0,0,0,58,0,0,22,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,13,0,0,0,4,1,21,64,0,10,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,167,43,2 +6,0,0,2,0,14,2,0,20,0,2,0,0,0,2,0,26,0,6,1,0,0,0,1,0,0,6,0,2,0,3,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,7,0,0,0,0,2,89,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3516,14,103,0,5,0,0,0,0,0,30,0,0,0,0,0,1,11,479,0,0,3,0,0,0,0,0,20,0,10,0,0,2,0,54,0,0,0,0,336,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,401,0,99,0,0,0,4,9,33,21,405,0,0,0,0,1,0,0,0,0,0,0,0,0,674,0,0,0,0,0,0,0,0,0,0,0,0,7,0,3,0,0,0,0,0,0,10,3,129,2,0,0,322,0,393,0,0,0,250,13,0,0,0,0,0,0,0,0,0,58,1,0,0,0,2,0,0,0,0,1,104,215,0,0,0,0,0,0,0,0,697,0,0,439,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,0,1,17,654,0,11,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,314,46,2 +9,0,0,3,0,12,2,0,10,0,3,0,0,0,3,0,35,0,6,1,0,0,0,1,0,0,15,0,0,0,9,0,0,0,2,0,12,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,8,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,170,12,72,0,9,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,2,0,0,0,0,0,37,0,0,0,0,2,0,105,0,1,0,0,185,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,37,0,34,0,0,0,16,32,28,37,54,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,64,3,0,0,42,0,150,0,0,0,6,5,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,9,92,1,0,0,0,0,0,0,0,0,646,0,0,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,11,0,0,0,2,1,14,2,0,24,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,171,2 +0,0,0,7,0,9,2,0,20,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,1,0,0,2,0,0,0,0,0,103,0,0,0,0,0,1,0,0,0,0,0,2,0,0,4521,9,48,0,1,0,0,0,0,0,9,0,0,0,0,0,1,4,953,0,0,1,0,0,0,0,0,9,0,2,0,0,2,0,19,0,0,0,0,775,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,543,0,74,0,0,0,0,3,24,7,556,0,0,0,0,1,0,0,0,0,0,0,0,0,1195,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,244,9,0,0,152,0,212,0,0,0,85,79,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,98,67,0,0,0,0,0,0,0,0,276,0,0,1001,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,361,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,585,106,2 +63,0,0,5,0,48,6,0,26,13,3,0,0,2,18,0,505,0,7,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,15,898,48,24,0,0,57,0,0,0,1,0,0,5,0,0,0,0,1,164,0,0,0,0,0,1,0,0,0,0,0,18,0,0,20524,48,590,0,1,0,0,0,0,0,27,0,0,0,0,0,8,21,3225,0,0,15,0,0,0,0,0,94,5,6,0,0,2,0,537,0,14,0,0,2564,0,0,0,0,13,15,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,2667,0,129,0,0,0,0,3,257,3747,2719,0,0,0,0,1,0,3,0,0,0,0,0,0,2893,0,14,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,34,24,302,5,0,0,272,0,393,0,0,0,129,15,0,0,0,0,0,0,4,0,0,567,1,0,0,0,9,0,0,0,0,1,136,28,0,0,0,0,13,0,25,13,1949,1,0,188,6,0,1,1,0,0,0,0,11,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,0,0,0,0,0,1,63,142,0,2,12,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,5,604,50,2 +18,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,1,0,0,0,2,0,0,0,0,4,0,8,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5175,21,41,0,12,0,0,0,0,0,2,0,0,0,0,0,2,4,64,0,0,2,0,0,0,0,0,40,0,1,0,0,2,0,34,0,8,0,0,36634,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,56,0,0,0,14,17,52,37,34564,0,0,0,0,1,0,0,0,0,0,0,0,0,97811,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,329,3,0,0,75,0,227,0,0,0,12,237,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,614,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,12,2,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,25,1,1,1,0,18,0,0,0,14,1,23,6,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,29145,2 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,29,0,0,0,32,0,56,0,0,0,2,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,2 +18,0,0,3,0,21,2,0,4,7,3,0,0,0,10,0,10,0,7,1,0,0,0,2,0,1,0,0,4,0,0,0,1,0,2,0,21,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,10,0,0,5137,21,34,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,65,0,0,2,0,0,0,0,0,12,0,1,0,0,2,0,27,0,8,0,0,37454,0,0,0,0,3,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0,68,0,55,0,0,0,0,3,54,23,32441,0,0,0,0,1,0,0,0,0,0,0,0,0,97188,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,11,328,3,0,0,75,0,216,0,0,0,12,235,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,1,103,5,0,0,0,0,0,0,0,0,615,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,1,0,1,2,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,27,1,1,1,0,4,0,0,0,0,1,23,6,0,5,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,30110,2 +11,0,0,3,0,12,9,0,26,0,9,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,3,0,12,6,0,0,37,0,0,0,1,0,0,0,0,0,0,0,4,51,0,0,0,0,0,1,0,0,0,0,0,3,0,0,314,12,61,0,5,0,0,0,0,0,1,0,0,0,0,0,1,1,26,0,0,3,0,0,1,22,0,207,30,0,0,0,2,0,109,0,0,0,0,219,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,36,0,0,0,8,11,28,400,48,0,0,0,0,1,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,54,3,0,0,62,0,130,0,0,0,29,5,0,0,0,0,0,0,0,0,0,62,0,0,0,0,2,0,0,0,0,5,96,48,0,0,98,0,0,0,0,0,25,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,8,1,15,19,0,5,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,5,2 +10,0,0,3,0,18,2,0,12,0,3,0,0,0,3,0,50,0,7,1,0,0,0,1,0,0,24,0,0,0,9,0,0,0,7,0,18,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,8,21,0,0,0,0,0,1,0,0,0,0,0,3,0,0,222,18,101,0,9,0,0,0,0,0,0,0,0,0,0,0,1,1,39,0,0,7,0,0,0,0,0,37,0,0,0,0,2,0,161,0,1,0,0,332,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,46,0,39,0,0,0,16,43,45,46,65,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,83,3,0,0,60,0,143,0,0,0,21,3,0,0,0,0,0,0,0,0,0,77,0,0,0,0,2,0,0,0,0,9,98,1,0,0,0,0,0,0,0,0,679,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,8,0,0,0,0,1,25,7,0,33,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,213,2 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,3,0,0,95,9,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,29,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,8,0,1,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,30,0,0,0,0,3,23,9,46,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,45,3,0,0,35,0,168,0,0,0,5,3,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,3,2 +4,0,0,2,0,13,2,0,9,0,2,0,0,0,3,0,16,0,6,1,0,0,0,1,0,6,0,0,20,0,11,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,16,36,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1067,13,70,0,37,0,0,0,0,0,6,0,0,0,0,0,1,6,473,0,0,3,0,0,0,0,0,80,0,1,0,0,2,0,45,0,0,0,0,182,0,0,0,0,19,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,50,0,32,0,0,0,26,35,36,76,59,0,0,0,0,1,0,0,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,87,2,0,0,104,0,197,0,0,0,47,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,17,95,31,0,0,0,0,0,0,0,0,862,0,0,742,0,0,1,0,1,0,0,0,2,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,371,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,40,0,0,0,18,1,16,123,0,37,0,0,1,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,10,2 +0,0,0,4,0,9,2,0,17,0,6,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,16,0,0,0,1,0,0,1,0,0,0,0,0,86,0,0,0,0,0,1,0,0,0,0,0,4,0,0,6532,9,44,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,1589,0,0,0,0,0,1,7,0,72,15,2,0,0,2,0,40,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,826,0,28,0,0,0,0,3,26,137,840,0,0,0,0,1,0,0,0,0,0,0,0,0,1960,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,66,4,0,0,100,0,139,0,0,0,43,3,0,0,0,0,0,0,2,0,0,48,1,0,0,0,2,0,0,0,0,0,91,48,0,0,44,0,0,0,0,0,426,0,0,1612,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,170,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,842,11,2 +0,0,0,3,0,9,2,0,8,0,3,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,71,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,3,0,0,88666,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,35340,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,19,0,0,0,0,27216,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17640,0,22,0,0,0,0,3,23,6,17651,0,0,0,0,1,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,3,80,3,0,0,79,0,153,0,0,0,24,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,95,13,0,0,0,0,0,0,0,0,17672,0,0,740,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,38,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17628,15,2 +11,0,0,2,0,24,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,14,0,24,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,1,0,0,934,24,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,479,0,0,14,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,307,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,42,0,0,0,0,3,40,10,51,0,0,0,0,1,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,3,112,2,0,0,119,0,144,0,0,0,61,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,106,11,0,0,0,0,0,0,0,0,786,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,38,82,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,27,2 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,68,0,0,0,0,0,1,0,0,0,0,0,2,0,0,463,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,65,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,515,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1078,3,0,0,1071,0,302,0,0,0,14,7,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1090,9,0,0,0,0,0,0,0,0,99,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,30,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,27,2,0,0,30,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +5,0,0,5,0,35,12,0,20,0,4,0,0,2,9,0,69,0,6,0,0,0,0,8,0,10,0,0,4,0,2,0,0,0,1,1605,35,60,0,0,22,0,0,0,1,0,0,1,0,0,0,0,2,358,0,0,0,0,0,1,0,0,0,0,0,2,0,0,92613,35,132,0,3,0,0,0,0,0,24,0,0,0,0,0,8,17,15412,0,0,1,0,0,0,0,0,92,5,2,0,0,2,0,126,0,0,0,0,1650,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,14724,0,57,0,0,0,2,5,272,156,14707,0,0,0,0,1,0,3,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,256,5,0,0,233,0,517,0,0,0,93,24,0,0,0,0,0,0,0,0,0,122,1,0,0,0,8,0,0,0,0,2,139,15,0,0,1,0,0,0,0,0,1374,1,0,49,12,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,12,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,3,0,0,0,0,1,36,52,0,4,12,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,854,83,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,63,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,266,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,107,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1069,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,491,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,121,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,23,0,0,0,0,3,24,6,53,0,0,0,0,1,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,73,3,0,0,80,0,155,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,252,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,106,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,231,162,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,141,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,76,2,0,0,91,0,272,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,108,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,28,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,76,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1336,10,58,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,526,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,42,0,0,0,0,3,27,6,102,0,0,0,0,1,0,0,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,81,2,0,0,128,0,120,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,227,0,0,822,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,207,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,296,15,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1361,10,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,542,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,39,0,0,0,0,3,27,6,101,0,0,0,0,1,0,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,81,2,0,0,127,0,121,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,228,0,0,827,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,193,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,295,14,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1242,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,569,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,30,0,0,0,0,3,31,6,108,0,0,0,0,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,81,2,0,0,93,0,156,0,0,0,27,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,15,0,0,0,0,0,0,0,0,228,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,149,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1222,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,547,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,90,0,156,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,13,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,133,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,93,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,182,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,141,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,57,0,88,0,0,0,27,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,11,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,109,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,53,3,0,0,63,0,92,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,93,10,24,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,15,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,43,3,0,0,58,0,80,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,22,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,14,3 +7,0,0,3,0,19,2,0,7,3,3,0,0,0,6,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,8,0,19,6,0,0,28,0,5,0,1,0,0,5,0,0,0,0,0,83,0,0,0,0,0,1,0,0,0,0,0,6,0,0,33015,19,59,0,1,0,0,0,0,0,21,0,0,0,1,0,1,7,6847,0,0,8,0,0,0,0,0,13,0,8,0,0,2,0,14,0,4,0,0,561,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4154,0,74,0,0,0,0,3,38,217,4174,0,0,0,0,1,0,0,0,0,0,0,0,0,8350,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,148,3,0,0,145,0,238,0,0,0,82,17,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,102,43,0,0,0,0,0,0,0,0,2051,0,0,9605,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,0,0,0,0,0,1,27,253,0,1,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2880,59,3 +1,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,175,10,37,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,109,0,253,0,0,0,41,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,37,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,141,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,62,23,3 +2,0,0,3,0,19,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,0,18,0,0,0,7,0,0,0,3,0,19,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,6,59,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2192,19,89,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,860,0,0,3,0,0,0,0,0,32,0,2,0,0,2,0,118,0,1,0,0,449,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,254,0,37,0,0,0,12,27,36,669,262,0,0,0,0,1,0,0,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,93,3,0,0,122,0,199,0,0,0,45,7,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,99,31,0,0,0,0,0,0,0,0,469,0,0,775,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,6,0,0,0,0,1,22,204,0,25,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,445,28,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1230,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,550,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,156,0,0,0,27,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +0,0,0,3,0,25,5,0,11,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,2,0,1,0,25,6,0,0,20,0,1,0,1,0,0,1,0,0,0,0,1,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1647,25,44,0,1,0,0,0,0,0,12,0,0,0,0,0,7,15,611,0,0,1,0,0,0,0,0,74,5,3,0,0,2,0,20,0,0,0,0,734,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,97,0,40,0,0,0,0,3,177,8,98,0,0,0,0,1,0,3,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,117,3,0,0,136,0,279,0,0,0,44,5,0,0,0,0,0,0,0,0,0,45,1,0,0,0,8,0,0,0,0,0,107,30,0,0,0,0,0,0,0,0,277,0,0,784,3,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,3,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,89,0,2,9,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,350,126,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,271,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,28,3 +2,0,0,2,0,8,2,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,1,0,0,849,8,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,431,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,42,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,21,0,0,0,0,3,21,12,43,0,0,0,0,1,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,53,2,0,0,71,0,120,0,0,0,19,0,0,0,0,0,0,0,0,0,0,36,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,781,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,67,0,1,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,225,2,3 +1,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,174,10,37,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,109,0,253,0,0,0,41,6,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,37,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,135,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,62,24,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1259,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,507,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,84,0,38,0,0,0,0,3,23,6,94,0,0,0,0,1,0,0,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,116,0,0,0,65,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,222,0,0,803,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,189,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,281,16,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,53,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,63,0,0,0,0,0,1,0,0,0,0,0,2,0,0,483,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,66,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,462,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,28,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1142,3,0,0,1135,0,299,0,0,0,14,9,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1154,9,0,0,0,0,0,0,0,0,98,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,29,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,3,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1163,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,466,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,55,0,29,0,0,0,0,3,25,72,73,0,0,0,0,1,0,0,0,0,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,71,2,0,0,81,0,121,0,0,0,25,5,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,17,0,0,0,0,0,0,0,0,222,0,0,788,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,3,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,93,0,1,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,258,8,3 +4,0,0,5,0,34,21,0,41,0,4,0,0,2,7,0,647,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,34,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,254,0,0,0,0,0,1,0,0,0,0,0,2,0,0,116809,34,741,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19965,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,706,0,0,0,0,4933,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,15770,0,67,0,0,0,0,3,275,1593,15760,0,0,0,0,1,0,3,0,0,0,0,0,0,835,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,367,5,0,0,274,0,878,0,0,0,120,19,0,0,0,0,0,0,0,0,0,728,1,0,0,0,9,0,0,0,0,0,137,19,0,0,1,0,0,0,0,0,7980,1,0,1139,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,35,218,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3101,93,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,7,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,2,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1175,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,496,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,31,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,156,0,0,0,27,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,149,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,4,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1411,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,34,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,612,0,0,0,0,0,19,41,233,0,0,0,0,0,0,0,0,0,0,0,0,0,1638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,16,2,0,0,62,0,94,0,0,0,47,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,5,44,0,0,0,0,0,0,0,0,325,0,0,400,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,4,113,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1400,1,3 +12,0,0,5,0,38,34,0,51,0,4,0,0,2,13,0,1132,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,2,10261,38,56,0,0,22,0,1,0,1,0,0,2,0,0,0,0,1,549,0,0,0,0,0,1,0,0,0,0,0,2,0,0,179034,38,1297,0,4,0,0,0,0,0,56,0,0,0,0,0,8,19,34729,0,0,2,0,0,0,0,0,91,5,4,1,0,2,0,1251,0,0,0,0,6027,0,0,0,0,5,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,12,12,12,0,0,0,32333,0,51,0,0,0,0,3,314,1293,32317,0,0,0,0,1,0,4,0,0,0,0,0,0,1358,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,377,5,0,0,351,0,477,0,0,0,186,39,0,0,0,0,0,0,0,0,0,1242,1,0,0,0,9,0,0,0,0,1,159,29,0,0,1,0,0,0,0,0,8920,1,0,676,26,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,26,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,3,0,0,0,0,1,40,254,0,5,12,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2712,84,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,112,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,80,0,0,0,33,10,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,908,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,463,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,19,0,0,0,0,3,22,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,63,2,0,0,73,0,78,0,0,0,21,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,14,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,63,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,3,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,69,0,0,0,0,0,1,0,0,0,0,0,2,0,0,564,25,24,0,0,0,0,0,0,0,2,0,0,0,0,0,7,11,70,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,556,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,56,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,173,3,0,0,83,0,355,0,0,0,13,14,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,101,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,59,3 +8,0,0,3,0,32,4,0,21,0,2,0,0,2,2,0,19,0,7,3,0,0,0,5,0,8,0,0,4,0,5,0,0,0,5,0,32,6,0,0,28,0,0,0,1,0,0,2,0,0,0,0,5,142,0,0,0,0,0,1,0,0,0,0,0,2,0,0,674,32,63,0,8,0,0,0,0,0,13,0,0,0,0,0,7,14,124,0,0,5,0,0,0,0,0,76,5,3,0,0,2,0,36,0,0,0,0,476,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,100,0,62,0,0,0,8,7,196,22,101,0,0,0,0,1,0,3,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,10,140,3,0,0,154,0,237,0,0,0,45,4,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,113,21,0,0,0,0,0,0,0,0,664,0,0,43,2,0,1,1,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,11,0,0,0,0,1,37,184,0,9,8,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,180,32,3 +2,0,0,3,0,20,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,0,18,0,0,0,7,0,0,0,3,0,20,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,6,60,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2194,20,89,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,853,0,0,3,0,0,0,0,0,32,0,2,0,0,2,0,118,0,1,0,0,476,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,257,0,36,0,0,0,12,27,40,667,265,0,0,0,0,1,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,99,3,0,0,127,0,200,0,0,0,47,7,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,102,31,0,0,0,0,0,0,0,0,471,0,0,778,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,6,0,0,0,0,1,23,204,0,25,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,444,28,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,115,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,135,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,50,3,0,0,68,0,62,0,0,0,37,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,30,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,2,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,6,0,34,7,0,34,0,5,0,0,7,6,0,507,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,78,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,181,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18759,34,574,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4416,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,566,0,0,1,0,3216,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,668,0,50,0,0,0,1,4,256,1158,654,0,0,0,0,1,0,3,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,218,6,0,0,204,0,712,0,0,0,61,18,0,0,0,0,0,0,0,0,0,572,1,0,0,0,10,0,0,0,0,0,120,15,0,0,6,0,0,0,0,0,3354,1,0,843,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,115,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1940,84,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1240,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,531,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,86,2,0,0,91,0,173,0,0,0,31,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,226,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,259,150,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,136,9,21,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,1,0,0,0,0,0,6,0,0,0,0,2,0,8,0,1,0,0,90,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,23,0,0,0,0,3,23,5,25,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,46,3,0,0,72,0,65,0,0,0,42,4,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,0,91,38,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,73,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,7,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,254,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,26,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1230,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,545,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,28,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,69,2,0,0,79,0,160,0,0,0,25,2,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,257,0,0,799,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,364,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,270,101,3 +10,0,0,5,0,40,21,0,45,0,4,0,0,2,14,0,765,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5870,40,156,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,437,0,0,0,0,0,1,0,0,0,0,0,2,0,0,130027,40,885,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,22361,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,898,0,0,0,0,4865,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18193,0,52,0,0,0,8,19,282,1626,18184,0,0,0,0,1,0,3,0,0,0,0,0,0,872,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,312,5,0,0,296,0,458,0,0,0,139,17,0,0,0,0,0,0,0,0,0,857,1,0,0,0,9,0,0,0,0,2,148,19,0,0,1,0,0,0,0,0,6769,1,0,1104,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,11,0,0,0,0,1,46,213,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3162,104,3 +0,0,0,2,0,9,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,5188,9,40,0,1,0,0,0,0,1,7,0,0,0,0,0,1,4,52,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,15,0,0,0,0,1682,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,52,0,37,0,0,0,0,3,23,4839,62,0,0,0,0,1,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,74,2,0,0,104,0,121,0,0,0,40,5,0,0,0,0,0,0,4,0,0,42,1,0,0,0,2,0,0,0,0,0,92,32,0,0,0,0,0,0,0,0,44,0,0,66,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,126,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,97,12,3 +2,0,0,3,0,19,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,0,18,0,0,0,7,0,0,0,3,0,19,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,6,62,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2226,19,89,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,889,0,0,3,0,0,0,0,0,32,0,2,0,0,2,0,118,0,1,0,0,484,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,254,0,37,0,0,0,12,27,36,666,262,0,0,0,0,1,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,95,3,0,0,124,0,199,0,0,0,47,7,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,101,31,0,0,0,0,0,0,0,0,470,0,0,779,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,6,0,0,0,0,1,22,204,0,25,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,444,28,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,7,0,0,210,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,184,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,7,38,0,0,0,0,1,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,59,3,0,0,69,0,86,0,0,0,39,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,37,3 +2,0,0,3,0,21,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,0,18,0,0,0,7,0,0,0,3,0,21,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,6,58,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2181,21,89,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,889,0,0,3,0,0,0,0,0,32,0,2,0,0,2,0,118,0,1,0,0,499,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,254,0,37,0,0,0,12,27,44,667,262,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,99,3,0,0,128,0,203,0,0,0,45,8,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,101,31,0,0,0,0,0,0,0,0,468,0,0,763,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,6,0,0,0,0,1,24,204,0,25,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,441,28,3 +10,0,0,5,0,42,21,0,49,0,4,0,0,2,14,0,950,0,6,2,0,0,0,7,0,11,9,0,7,0,4,0,0,0,6,5868,42,150,0,0,22,0,0,0,1,0,0,1,0,0,0,0,5,391,0,0,0,0,0,1,0,0,0,0,0,2,0,0,124863,42,1074,0,9,0,0,0,0,0,32,0,0,0,0,0,8,17,20356,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,1083,0,0,0,0,3650,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,19035,0,49,0,0,0,8,19,296,816,19024,0,0,0,0,1,0,3,0,0,0,0,0,0,858,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,311,5,0,0,303,0,379,0,0,0,141,21,0,0,0,0,0,0,0,0,0,1046,1,0,0,0,9,0,0,0,0,2,152,19,0,0,1,0,0,0,0,0,5494,1,0,377,16,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,16,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,11,0,0,0,0,1,48,193,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1857,103,3 +29,0,0,5,0,40,17,0,34,1,3,0,0,2,4,0,721,0,7,2,0,0,0,8,0,11,0,0,4,0,4,0,0,0,4,5031,40,6,0,0,27,0,2,0,1,0,0,2,0,0,0,0,4,328,0,0,0,0,0,1,0,0,0,0,0,6,0,0,99654,40,815,0,4,0,0,0,0,0,32,0,0,0,0,0,9,22,17074,0,0,4,0,0,0,0,0,107,5,4,0,0,2,0,752,0,2,0,0,1995,0,0,0,0,6,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,13,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,15335,0,129,0,0,0,6,9,286,485,15330,0,0,0,0,1,0,3,0,0,0,0,0,0,599,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,12,252,5,0,0,279,0,308,0,0,0,119,21,0,0,0,0,0,0,0,0,0,788,1,0,0,0,10,0,0,0,0,4,141,16,0,0,0,0,0,0,0,0,3030,1,0,826,16,0,1,1,1,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,16,364,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,6,0,0,0,6,1,44,134,0,5,14,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1147,74,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,71,0,0,0,0,0,1,0,0,0,0,0,2,0,0,434,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,55,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,450,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,28,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1124,3,0,0,1117,0,302,0,0,0,14,8,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1136,9,0,0,0,0,0,0,0,0,89,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,30,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2108,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,856,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,431,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,245,0,30,0,0,0,8,19,29,605,254,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,82,2,0,0,110,0,175,0,0,0,45,4,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,442,0,0,766,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,427,8,3 +16,0,0,6,0,40,21,0,45,6,5,0,0,2,12,0,782,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,5870,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,410,0,0,0,0,0,1,0,0,0,0,0,10,0,0,145253,40,902,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,24686,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,893,0,7,0,0,5249,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,20643,0,53,0,0,0,8,20,285,1630,20634,0,0,0,0,1,0,3,0,0,0,0,0,0,957,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,311,6,0,0,291,0,411,0,0,0,128,23,0,0,0,0,0,0,0,0,0,873,1,0,0,0,9,0,0,0,0,1,143,19,0,0,1,0,0,0,0,0,4977,1,0,1142,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,19,0,0,0,0,1,44,204,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2243,149,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,11,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1087,11,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,474,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,110,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,24,0,0,0,0,3,28,6,57,0,0,0,0,1,0,0,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,73,3,0,0,83,0,157,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,91,16,0,0,0,0,0,0,0,0,254,0,0,784,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,106,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,239,242,3 +2,0,0,3,0,21,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,0,18,0,0,0,7,0,0,0,3,0,21,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,6,59,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2186,21,89,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,843,0,0,3,0,0,0,0,0,32,0,2,0,0,2,0,118,0,1,0,0,504,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,257,0,37,0,0,0,12,27,44,669,265,0,0,0,0,1,0,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,100,3,0,0,128,0,202,0,0,0,45,9,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,101,31,0,0,0,0,0,0,0,0,469,0,0,779,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,6,0,0,0,0,1,24,204,0,25,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,445,29,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1268,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,554,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,89,2,0,0,91,0,177,0,0,0,32,9,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,150,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,123,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,156,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,58,3,0,0,72,0,90,0,0,0,41,7,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,35,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1256,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,550,0,0,3,0,0,0,0,0,11,0,2,0,0,2,0,11,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,92,2,0,0,91,0,181,0,0,0,31,9,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,35,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,150,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,50,0,0,0,28,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1212,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,520,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,72,2,0,0,79,0,161,0,0,0,25,5,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,264,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,101,3 +0,0,0,2,0,18,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,5,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,18,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,193,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,619,0,0,0,0,0,23,43,243,0,0,0,0,0,0,0,0,0,0,0,0,0,1684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,26,2,0,0,66,0,98,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,6,45,0,0,0,0,0,0,0,0,331,0,0,416,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,5,114,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1434,5,3 +1,0,0,2,0,12,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,12,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,130,12,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,19,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,31,0,0,0,0,3,34,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,81,2,0,0,97,0,264,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,94,18,0,0,0,0,0,0,0,0,26,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,12,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,62,28,3 +1,0,0,6,0,35,7,0,37,0,5,0,0,7,6,0,626,0,6,1,0,0,0,9,0,12,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,184,0,0,0,0,0,1,0,0,0,0,0,5,0,0,20067,35,697,0,4,0,0,0,0,0,18,0,0,0,0,0,9,28,4499,0,0,1,0,0,0,0,0,215,25,4,0,0,2,0,685,0,0,1,0,2929,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,798,0,46,0,0,0,2,5,265,1161,783,0,0,0,0,1,0,3,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,190,6,0,0,203,0,272,0,0,0,58,5,0,0,0,0,0,0,0,0,0,694,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3497,1,0,817,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,9,0,0,0,0,1,36,104,0,5,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1894,76,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1302,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,541,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,86,0,39,0,0,0,0,3,23,6,96,0,0,0,0,1,0,0,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,119,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,225,0,0,807,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,191,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,284,13,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,94,10,24,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,13,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,41,3,0,0,58,0,88,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,20,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,16,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +4,0,0,5,0,37,21,0,44,0,4,0,0,2,7,0,716,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,37,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,272,0,0,0,0,0,1,0,0,0,0,0,2,0,0,113639,37,821,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,19257,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,784,0,0,0,0,5879,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15238,0,73,0,0,0,6,9,277,1615,15222,0,0,0,0,1,0,3,0,0,0,0,0,0,807,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,669,5,0,0,282,0,949,0,0,0,128,83,0,0,0,0,0,0,0,0,0,800,1,0,0,0,9,0,0,0,0,4,139,19,0,0,1,0,0,0,0,0,8875,1,0,1118,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,12,0,0,0,6,1,41,207,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3370,145,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,3,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1152,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,486,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,52,0,29,0,0,0,0,3,25,72,70,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,70,2,0,0,81,0,115,0,0,0,25,3,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,17,0,0,0,0,0,0,0,0,218,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,93,0,1,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,9,3 +4,0,0,5,0,35,21,0,42,0,4,0,0,2,7,0,700,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,283,0,0,0,0,0,1,0,0,0,0,0,2,0,0,113287,35,795,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19438,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,759,0,0,0,0,4999,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,15286,0,63,0,0,0,0,3,281,1596,15275,0,0,0,0,1,0,3,0,0,0,0,0,0,842,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,328,5,0,0,276,0,806,0,0,0,120,11,0,0,0,0,0,0,0,0,0,782,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8053,1,0,1146,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,176,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3134,83,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1216,13,37,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,539,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,74,2,0,0,88,0,154,0,0,0,25,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,149,3 +4,0,0,3,0,14,2,0,18,5,3,0,0,0,9,0,16,0,6,1,0,0,0,2,0,0,0,0,1,0,2,0,1,0,5,0,14,6,0,0,23,0,3,0,1,0,0,3,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,9,0,0,4055,14,70,0,3,0,0,0,0,0,15,0,0,0,0,0,2,9,538,0,0,5,0,0,0,0,0,15,0,4,0,0,2,0,32,0,7,0,0,1563,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,102,0,61,0,0,0,2,4,32,13,113,0,0,0,0,1,0,0,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,10,100,3,0,0,127,0,168,0,0,0,64,4,0,0,0,0,0,0,0,0,0,54,1,0,0,0,3,0,0,0,0,1,96,37,0,0,0,0,0,0,0,0,806,0,0,775,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,1,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,19,163,0,3,0,0,1,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,322,50,3 +4,0,0,5,0,35,21,0,43,0,4,0,0,2,7,0,735,0,6,1,0,0,0,8,0,11,0,0,2,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,278,0,0,0,0,0,1,0,0,0,0,0,2,0,0,105717,35,831,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,18081,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,794,0,0,0,0,5053,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,13887,0,65,0,0,0,0,3,281,1603,13876,0,0,0,0,1,0,3,0,0,0,0,0,0,812,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,323,5,0,0,272,0,870,0,0,0,116,21,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,0,134,19,0,0,1,0,0,0,0,0,8519,1,0,1130,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,199,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3206,85,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2031,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,869,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,240,0,21,0,0,0,0,3,24,594,251,0,0,0,0,1,0,0,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,62,2,0,0,85,0,91,0,0,0,29,4,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,21,0,0,0,0,0,0,0,0,409,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,110,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,427,6,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,46,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,78,0,0,0,0,0,1,0,0,0,0,0,2,0,0,483,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,62,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,517,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,29,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1113,3,0,0,1095,0,386,0,0,0,14,10,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1114,9,0,0,0,0,0,0,0,0,108,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,35,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,261,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,25,3 +4,0,0,5,0,35,21,0,43,0,4,0,0,2,7,0,735,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,272,0,0,0,0,0,1,0,0,0,0,0,2,0,0,117058,35,831,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20111,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,794,0,0,0,0,5043,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15813,0,66,0,0,0,0,3,281,1597,15802,0,0,0,0,1,0,3,0,0,0,0,0,0,833,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,337,5,0,0,276,0,807,0,0,0,120,14,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8214,1,0,1146,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,218,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3151,88,3 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,3,0,0,138,9,21,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,1,0,0,0,0,0,6,0,0,0,0,2,0,8,0,1,0,0,112,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,22,0,0,0,0,3,23,5,25,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,46,3,0,0,72,0,66,0,0,0,42,4,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,0,91,38,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,73,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,7,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,1,0,0,22,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,24,0,0,0,0,3,21,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,34,2,0,0,39,0,58,0,0,0,9,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,95,3,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,9,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,39,3,0,0,58,0,53,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,64,0,0,0,0,0,1,0,0,0,0,0,2,0,0,535,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,57,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,518,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,56,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,173,3,0,0,83,0,352,0,0,0,13,6,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,91,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,60,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1220,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,547,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,90,0,156,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,149,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1284,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,511,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,87,0,39,0,0,0,0,3,23,6,97,0,0,0,0,1,0,0,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,118,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,225,0,0,811,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,193,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,285,14,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1323,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,538,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,39,0,0,0,0,3,23,6,98,0,0,0,0,1,0,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,119,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,230,0,0,814,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,200,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,292,13,3 +5,0,0,3,0,11,2,0,17,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,1,0,0,3,0,0,0,0,0,1,0,11,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1822,11,47,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,551,0,0,1,0,0,0,0,0,11,0,2,0,0,2,0,21,0,1,0,0,133,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,134,0,25,0,0,0,0,3,31,32,140,0,0,0,0,1,0,0,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,82,3,0,0,97,0,163,0,0,0,28,4,0,0,0,0,0,0,0,0,0,48,1,0,0,0,2,0,0,0,0,1,95,18,0,0,0,0,0,0,0,0,870,0,0,984,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,12,161,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,333,9,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1243,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,532,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,28,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,93,2,0,0,91,0,173,0,0,0,31,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,261,150,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1195,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,522,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,90,0,156,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,264,149,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1223,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,551,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,31,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,88,0,154,0,0,0,25,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,270,149,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2150,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,873,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,249,0,32,0,0,0,8,19,29,615,258,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,81,2,0,0,110,0,177,0,0,0,45,8,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,449,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,442,8,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1213,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,536,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,88,0,155,0,0,0,25,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,264,149,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,244,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,113,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,25,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,52,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,19,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,0,18,0,0,0,7,0,0,0,3,0,19,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,6,57,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2150,19,89,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,848,0,0,3,0,0,0,0,0,32,0,2,0,0,2,0,118,0,1,0,0,492,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,251,0,37,0,0,0,12,27,36,664,259,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,94,3,0,0,122,0,199,0,0,0,45,6,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,99,31,0,0,0,0,0,0,0,0,469,0,0,767,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,6,0,0,0,0,1,22,204,0,25,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,441,28,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1185,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,513,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,90,0,155,0,0,0,27,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +12,0,0,5,0,39,36,0,47,0,4,0,0,2,13,0,1011,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,2,10035,39,56,0,0,22,0,1,0,1,0,0,2,0,0,0,0,1,529,0,0,0,0,0,1,0,0,0,0,0,2,0,0,191595,39,1174,0,4,0,0,0,0,0,56,0,0,0,0,0,8,19,39512,0,0,2,0,0,0,0,0,91,5,4,1,0,2,0,1130,0,0,0,0,6581,0,0,0,0,5,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,37143,0,52,0,0,0,0,3,319,1342,37127,0,0,0,0,1,0,4,0,0,0,0,0,0,1558,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,357,5,0,0,355,0,466,0,0,0,187,43,0,0,0,0,0,0,0,0,0,1119,1,0,0,0,9,0,0,0,0,1,164,29,0,0,1,0,0,0,0,0,8922,1,0,813,26,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,26,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,3,0,0,0,0,1,41,271,0,5,12,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2770,90,3 +2,0,0,3,0,19,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,0,18,0,0,0,7,0,0,0,3,0,19,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,6,58,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2187,19,89,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,861,0,0,3,0,0,0,0,0,32,0,2,0,0,2,0,118,0,1,0,0,448,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,253,0,37,0,0,0,12,27,36,671,261,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,93,3,0,0,122,0,200,0,0,0,45,8,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,99,31,0,0,0,0,0,0,0,0,468,0,0,771,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,6,0,0,0,0,1,22,204,0,25,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,440,28,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,1,0,0,855,8,32,0,0,0,0,0,0,0,6,0,0,0,0,0,1,6,437,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,21,0,0,0,0,3,21,4,41,0,0,0,0,1,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,55,2,0,0,79,0,92,0,0,0,27,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,20,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,73,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,223,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +10,0,0,4,0,21,4,0,38,0,7,0,0,0,2,0,22,0,6,1,0,0,0,1,0,0,3,0,8,0,1,1,0,0,11,0,21,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,1,113,0,0,0,0,0,1,0,0,0,0,0,5,0,0,1188,21,77,0,10,0,0,0,0,0,4,0,0,0,0,0,1,4,471,0,0,11,0,0,1,13,0,128,15,1,0,0,2,0,104,0,0,0,0,346,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,55,0,44,0,0,0,2,9,45,183,70,0,0,0,0,1,0,0,0,0,3,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,128,4,0,0,154,0,197,0,0,0,89,4,0,0,0,0,0,0,0,0,0,79,1,0,0,0,2,0,0,0,0,2,103,74,0,0,29,0,0,0,0,0,807,0,0,730,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,362,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,13,0,0,0,0,1,32,269,0,13,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,256,157,3 +4,0,0,3,0,13,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,13,36,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,5,0,0,317,13,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,56,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,214,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,39,0,0,0,0,3,31,7,61,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,98,3,0,0,105,0,198,0,0,0,41,9,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,97,20,0,0,0,0,0,0,0,0,79,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,17,134,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,92,12,3 +4,0,0,3,0,14,2,0,18,6,3,0,0,0,10,0,16,0,6,1,0,0,0,2,0,0,0,0,1,0,2,0,1,0,5,0,14,6,0,0,25,0,3,0,1,0,0,3,0,0,0,0,1,71,0,0,0,0,0,1,0,0,0,0,0,10,0,0,4105,14,71,0,3,0,0,0,0,0,15,0,0,0,0,0,2,9,552,0,0,5,0,0,0,0,0,15,0,4,0,0,2,0,34,0,8,0,0,1605,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,103,0,65,0,0,0,2,4,32,13,115,0,0,0,0,1,0,0,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,11,108,3,0,0,127,0,163,0,0,0,63,3,0,0,0,0,0,0,0,0,0,55,1,0,0,0,3,0,0,0,0,1,98,35,0,0,0,0,0,0,0,0,809,0,0,776,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,1,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,19,155,0,3,0,0,1,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,333,50,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,0,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1253,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,543,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,89,2,0,0,91,0,173,0,0,0,32,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,3,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,258,150,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1237,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,563,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,157,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,125,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,119,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,72,0,90,0,0,0,41,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,605,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,36,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,5,0,0,82,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,53,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,138,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,54,3,0,0,63,0,85,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,48,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1216,8,50,0,1,0,0,0,0,0,12,0,0,0,0,0,1,7,505,0,0,0,0,0,0,0,0,10,0,4,0,0,2,0,30,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,68,0,30,0,0,0,0,3,22,7,78,0,0,0,0,1,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,17,3,83,2,0,0,86,0,143,0,0,0,25,3,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,88,17,0,0,0,0,0,0,0,0,285,0,0,810,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,152,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,262,16,3 +2,0,0,3,0,19,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,0,18,0,0,0,7,0,0,0,3,0,19,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,6,62,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2130,19,89,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,851,0,0,3,0,0,0,0,0,32,0,2,0,0,2,0,118,0,1,0,0,679,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,248,0,35,0,0,0,12,27,36,658,256,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,96,3,0,0,124,0,198,0,0,0,47,7,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,101,31,0,0,0,0,0,0,0,0,462,0,0,763,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,6,0,0,0,0,1,22,204,0,25,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,427,28,3 +6,0,0,3,0,20,2,0,8,5,3,0,0,0,8,0,21,0,7,5,0,0,0,1,0,0,0,0,8,0,5,0,0,0,9,0,20,6,6,0,38,0,8,0,1,0,0,8,0,0,0,0,8,119,0,0,0,0,0,1,0,0,0,0,0,8,0,0,31125,20,100,0,13,0,0,0,0,0,29,0,0,0,1,0,1,10,7749,0,0,9,0,0,0,0,0,36,0,13,0,0,2,0,33,0,6,0,0,554,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4136,0,111,0,0,0,16,19,40,278,4159,0,0,0,0,1,0,0,0,0,0,0,0,0,3715,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,10,9,172,3,0,0,156,0,285,0,0,0,96,22,0,0,0,0,0,0,0,0,0,49,1,0,0,0,6,0,0,0,0,1,102,47,0,0,0,0,0,0,0,0,3151,0,0,9217,0,2,1,0,0,0,0,0,26,0,6,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,20,0,0,0,0,1,29,255,0,13,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3978,81,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,3,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1101,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,465,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,33,0,0,0,0,3,25,72,67,0,0,0,0,1,0,0,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,85,0,129,0,0,0,29,4,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,215,0,0,764,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,3,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,74,0,1,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,256,13,3 +5,0,0,4,0,12,24,0,138,1,35,0,0,0,4,0,19,0,7,1,0,0,0,2,0,0,0,0,3,0,1,0,0,0,2,0,12,6,0,0,254,0,0,0,1,0,0,2,0,0,0,0,0,78,0,0,0,0,0,1,0,0,0,0,0,29,0,0,1393,12,231,0,4,0,0,0,0,0,9,0,0,0,0,0,2,5,708,0,0,2,0,0,2,128,0,988,40,3,0,0,2,0,642,0,2,0,0,157,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,397,0,37,0,0,0,0,3,33,849,412,0,0,0,0,1,0,0,0,0,0,0,0,0,309,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,5,78,4,0,0,119,0,197,0,0,0,61,5,0,0,0,0,0,0,0,0,0,227,1,0,0,0,3,0,0,0,0,1,94,340,0,0,86,0,0,0,0,0,968,0,0,73,0,0,1,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,14,116,0,4,0,0,0,0,0,0,336,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,13,3 +0,0,0,3,0,11,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1073,11,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,470,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,24,0,0,0,0,3,28,6,57,0,0,0,0,1,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,74,3,0,0,83,0,157,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,91,16,0,0,0,0,0,0,0,0,253,0,0,779,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,101,0,1,0,0,2,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,239,65,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,5,0,0,72,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,38,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,6,3 +2,0,0,5,0,36,21,0,42,0,4,0,0,2,7,0,752,0,7,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5706,36,42,0,0,22,0,0,0,1,0,0,1,0,0,0,0,1,258,0,0,0,0,0,1,0,0,0,0,0,2,0,0,102773,36,851,0,2,0,0,0,0,0,32,0,0,0,0,0,8,17,16641,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,811,0,0,0,0,3600,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15342,0,45,0,0,0,0,3,285,790,15324,0,0,0,0,1,0,3,0,0,0,0,0,0,801,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,1277,5,0,0,1277,0,423,0,0,0,119,19,0,0,0,0,0,0,0,0,0,835,1,0,0,0,9,0,0,0,0,1,1132,19,0,0,1,0,0,0,0,0,3655,1,0,411,16,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,1,0,0,0,0,1,37,219,0,3,12,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1393,88,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,63,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,57,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,3,0,26,4,0,20,0,2,0,0,2,2,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,1,0,26,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,1,148,0,0,0,0,0,1,0,0,0,0,0,2,0,0,585,26,52,0,1,0,0,0,0,0,12,0,0,0,0,0,7,14,95,0,0,1,0,0,0,0,0,73,5,3,0,0,2,0,28,0,0,0,0,420,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,77,0,47,0,0,0,0,3,181,10,81,0,0,0,0,1,0,3,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,121,3,0,0,136,0,173,0,0,0,32,3,0,0,0,0,0,0,0,0,0,53,1,0,0,0,8,0,0,0,0,0,107,21,0,0,0,0,0,0,0,0,67,0,0,37,2,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,0,0,0,0,0,1,27,187,0,2,8,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,149,29,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,212,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,129,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,86,0,0,0,33,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1077,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,465,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,189,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,23,0,0,0,0,3,24,6,55,0,0,0,0,1,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,71,3,0,0,82,0,152,0,0,0,29,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,92,16,0,0,0,0,0,0,0,0,254,0,0,780,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,106,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,240,176,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,12,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1233,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,556,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,156,0,0,0,27,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,149,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,93,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,91,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,32,0,0,0,2,3,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,46,3,0,0,57,0,89,0,0,0,27,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,606,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,10,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1209,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,538,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,30,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,88,0,154,0,0,0,25,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,149,3 +5,0,0,3,0,12,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,46,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,5,0,0,346,12,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,242,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,38,0,0,0,0,3,27,7,60,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,101,3,0,0,101,0,272,0,0,0,40,15,0,0,0,0,0,0,0,0,0,49,0,0,0,0,2,0,0,0,0,0,95,20,0,0,0,0,0,0,0,0,89,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,149,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,15,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,3,0,15,2,0,18,5,3,0,0,0,9,0,16,0,6,1,0,0,0,2,0,0,0,0,1,0,2,0,1,0,5,0,15,6,0,0,25,0,3,0,1,0,0,3,0,0,0,0,1,68,0,0,0,0,0,1,0,0,0,0,0,9,0,0,4125,15,71,0,3,0,0,0,0,0,16,0,0,0,0,0,2,9,527,0,0,5,0,0,0,0,0,15,0,4,0,0,2,0,32,0,7,0,0,1555,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,106,0,63,0,0,0,2,4,36,13,116,0,0,0,0,1,0,0,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,10,113,3,0,0,138,0,169,0,0,0,71,4,0,0,0,0,0,0,0,0,0,54,1,0,0,0,3,0,0,0,0,1,97,44,0,0,0,0,0,0,0,0,808,0,0,784,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,3,0,0,0,0,1,20,163,0,3,0,0,1,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,332,71,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,101,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,20,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,82,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,29,0,0,0,2,3,24,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,47,3,0,0,56,0,72,0,0,0,26,12,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,19,0,0,0,0,0,0,0,0,605,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,10,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,220,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,131,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,29,0,0,0,2,4,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,51,3,0,0,63,0,91,0,0,0,33,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,12,3 +0,0,0,3,0,15,2,0,15,0,3,0,0,0,3,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,15,6,0,0,16,0,3,0,1,0,0,3,0,0,0,0,0,131,0,0,0,0,0,1,0,0,0,0,0,3,0,0,3605,15,59,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,995,0,0,5,0,0,0,0,0,12,0,5,0,0,2,0,17,0,1,0,0,464,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,340,0,45,0,0,0,0,3,33,250520,350,0,0,0,0,1,0,0,0,0,0,0,0,0,926,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,126,3,0,0,127,0,126,0,0,0,61,4,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,97,33,0,0,0,0,0,0,0,0,478,0,0,1407,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,20,214,0,1,0,0,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,653,14,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1228,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,555,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,88,0,154,0,0,0,25,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,2,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,149,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,124,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,125,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,58,3,0,0,72,0,90,0,0,0,41,10,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,35,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +3,0,0,6,0,38,7,0,35,4,5,0,0,2,9,0,567,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,6,898,38,36,0,0,38,0,3,0,1,0,0,3,0,0,0,0,4,171,1,0,0,0,0,1,0,0,0,0,0,9,0,0,32164,38,652,0,7,0,0,0,0,0,22,0,0,0,0,0,8,20,6479,0,0,6,0,0,0,0,0,94,5,6,0,0,2,0,637,0,6,0,0,2707,0,0,0,0,24,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,2991,0,69,0,0,0,6,19,244,1135,2985,0,0,0,0,1,0,4,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,19,210,6,0,0,217,0,315,0,0,0,78,7,0,0,0,0,0,0,0,0,0,631,1,0,0,0,9,0,0,0,0,1,121,16,0,0,1,0,0,0,0,0,3234,1,0,900,5,0,1,1,1,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,5,363,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,16,0,0,0,0,1,44,133,0,17,12,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1740,182,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1235,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,558,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,156,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,149,3 +0,0,0,3,0,8,2,0,9,0,2,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,60,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1137,8,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,466,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,27,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,22,0,0,0,0,3,22,6,55,0,0,0,0,1,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,20,3,84,3,0,0,75,0,195,0,0,0,22,12,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,15,0,0,0,0,0,0,0,0,295,0,0,780,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,106,0,1,0,0,1,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,239,188,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,71,0,0,0,0,0,1,0,0,0,0,0,2,0,0,459,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,64,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,479,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1060,3,0,0,1053,0,299,0,0,0,14,8,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1072,9,0,0,0,0,0,0,0,0,98,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,29,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1239,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,527,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,26,0,0,0,0,3,27,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,94,2,0,0,91,0,177,0,0,0,31,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,150,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,63,0,0,0,0,0,1,0,0,0,0,0,2,0,0,589,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,78,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,582,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,58,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,175,3,0,0,83,0,347,0,0,0,13,10,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,107,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,59,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,782,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,369,0,0,0,0,0,1,0,0,0,0,0,2,0,0,132070,41,904,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,22496,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,917,0,0,0,0,5623,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18358,0,53,0,0,0,8,19,290,1638,18348,0,0,0,0,1,0,3,0,0,0,0,0,0,945,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,306,5,0,0,296,0,422,0,0,0,135,24,0,0,0,0,0,0,0,0,0,874,1,0,0,0,9,0,0,0,0,2,146,19,0,0,1,0,0,0,0,0,6904,1,0,1149,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,189,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3249,81,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1070,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,490,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,25,0,0,0,0,3,24,6,53,0,0,0,0,1,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,70,3,0,0,80,0,155,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,252,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,105,0,0,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,240,176,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,7,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +7,0,0,6,0,40,8,0,43,4,5,0,0,2,9,0,583,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,7,898,40,36,0,0,39,0,3,0,1,0,0,3,0,0,0,0,4,164,1,0,0,0,0,1,0,0,0,0,0,9,0,0,32208,40,675,0,7,0,0,0,0,0,22,0,0,0,0,0,8,20,6468,0,0,7,0,0,0,0,0,94,5,5,0,0,2,0,660,0,6,0,0,2732,0,0,0,0,24,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,2946,0,71,0,0,0,6,18,250,1136,2941,0,0,0,0,1,0,4,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,19,225,6,0,0,240,0,358,0,0,0,88,8,0,0,0,0,0,0,0,0,0,656,1,0,0,0,9,0,0,0,0,1,124,25,0,0,1,0,0,0,0,0,3391,1,0,859,5,0,1,1,1,0,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,5,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,16,0,0,0,0,1,47,161,0,17,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1876,189,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,120,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,137,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,55,3,0,0,71,0,90,0,0,0,41,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,35,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,782,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,356,0,0,0,0,0,1,0,0,0,0,0,2,0,0,140876,41,906,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,24055,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,919,0,0,0,0,5104,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19834,0,55,0,0,0,8,17,290,1631,19827,0,0,0,0,1,0,3,0,0,0,0,0,0,921,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,310,5,0,0,296,0,423,0,0,0,135,18,0,0,0,0,0,0,0,0,0,874,1,0,0,0,9,0,0,0,0,2,146,19,0,0,1,0,0,0,0,0,6691,1,0,1134,16,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,227,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3175,264,3 +2,0,0,3,0,19,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,1,18,0,0,0,6,0,0,0,3,0,19,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,6,58,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2197,19,89,0,6,0,0,0,0,0,7,0,0,0,0,0,1,6,867,0,0,3,0,0,0,0,0,32,0,2,0,0,2,0,118,0,1,0,0,470,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,254,0,35,0,0,0,12,27,36,669,262,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,93,3,0,0,122,0,199,0,0,0,45,5,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,99,31,0,0,0,0,0,0,0,0,468,0,0,775,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,6,0,0,0,0,1,22,204,0,25,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,436,28,3 +0,0,0,6,0,38,10,0,39,0,9,0,0,6,4,0,655,0,7,1,0,0,0,8,0,10,0,0,7,0,4,0,0,0,2,945,38,6,0,0,44,0,7,0,1,0,0,7,0,0,0,0,4,226,0,0,0,0,0,1,0,0,0,0,0,4,0,0,34683,38,775,0,8,0,0,0,0,0,42,0,0,0,0,0,8,34,6121,0,0,2,0,0,0,0,0,215,20,14,0,0,2,0,711,0,1,13,0,3320,0,0,0,0,0,0,2,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,2057,0,82,0,0,0,7,7,287,1319,2033,0,0,0,0,1,0,4,0,0,0,0,0,0,3787,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,84,17,206,6,0,0,278,0,322,0,0,0,126,9,0,0,0,0,0,0,0,0,0,730,1,0,0,0,9,0,0,0,0,1,121,66,0,0,23,0,0,0,0,0,4615,1,0,4272,10,0,1,1,1,0,0,0,14,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,10,364,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,13,0,0,0,0,1,40,155,0,9,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2992,84,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1201,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,522,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,30,0,0,0,0,3,31,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,81,2,0,0,93,0,157,0,0,0,27,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,149,3 +2,0,0,3,0,19,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,0,18,0,0,0,6,0,0,0,3,0,19,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,6,55,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2201,19,89,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,864,0,0,3,0,0,0,0,0,32,0,2,0,0,2,0,118,0,1,0,0,497,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,254,0,35,0,0,0,12,27,36,664,262,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,93,3,0,0,122,0,198,0,0,0,45,7,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,99,31,0,0,0,0,0,0,0,0,470,0,0,779,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,6,0,0,0,0,1,22,204,0,24,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,442,28,3 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,875,8,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,458,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,15,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,19,0,0,0,0,3,21,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,61,2,0,0,78,0,88,0,0,0,17,0,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,88,13,0,0,0,0,0,0,0,0,205,0,0,731,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,107,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,220,2,3 +2,0,0,3,0,17,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,0,18,0,0,0,7,0,0,0,3,0,17,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,6,56,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2261,17,89,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,882,0,0,3,0,0,0,0,0,32,0,2,0,0,2,0,118,0,1,0,0,475,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,254,0,35,0,0,0,12,27,34,634,262,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,87,3,0,0,116,0,200,0,0,0,45,7,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,97,31,0,0,0,0,0,0,0,0,470,0,0,775,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,6,0,0,0,0,1,20,201,0,25,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,444,29,3 +1,0,0,6,0,34,7,0,35,0,5,0,0,7,6,0,539,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,179,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18362,34,607,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4123,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,598,0,0,1,0,2615,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,672,0,47,0,0,0,1,4,256,1159,658,0,0,0,0,1,0,3,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,185,6,0,0,201,0,269,0,0,0,57,7,0,0,0,0,0,0,0,0,0,605,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3192,1,0,821,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,114,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1825,76,3 +10,0,0,5,0,42,21,0,43,0,4,0,0,2,14,0,727,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5871,42,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,365,0,0,0,0,0,1,0,0,0,0,0,2,0,0,33792,42,850,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,6292,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,865,0,0,0,0,5409,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1881,0,54,0,0,0,8,17,295,1639,1871,0,0,0,0,1,0,3,0,0,0,0,0,0,944,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,315,5,0,0,299,0,399,0,0,0,136,16,0,0,0,0,0,0,0,0,0,817,1,0,0,0,9,0,0,0,0,2,147,19,0,0,1,0,0,0,0,0,6640,1,0,1136,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,12,0,0,0,2,1,48,261,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3209,137,3 +16,0,0,6,0,38,17,0,43,6,5,0,0,2,12,0,709,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,38,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,365,0,0,0,0,0,1,0,0,0,0,0,10,0,0,138744,38,817,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,24042,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,813,0,7,0,0,3563,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,20257,0,51,0,0,0,8,20,273,1247,20248,0,0,0,0,1,0,3,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,281,6,0,0,272,0,406,0,0,0,112,14,0,0,0,0,0,0,0,0,0,794,1,0,0,0,9,0,0,0,0,1,138,17,0,0,1,0,0,0,0,0,4658,1,0,790,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,19,0,0,0,0,1,42,205,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2022,126,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1214,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,541,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,88,0,154,0,0,0,25,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,150,3 +0,0,0,3,0,11,2,0,16,4,3,0,0,0,7,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,2,0,1,0,11,6,0,0,16,0,0,0,1,0,0,5,0,0,0,0,0,93,0,0,0,0,0,1,0,0,0,0,0,7,0,0,11457,11,62,0,1,0,0,0,0,0,15,0,0,0,1,0,1,6,2497,0,0,1,0,0,0,0,0,9,0,8,0,0,2,0,25,0,5,0,0,143,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1469,0,43,0,0,0,0,3,31,14,1486,0,0,0,0,1,0,0,0,0,0,0,0,0,2351,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,8,109,3,0,0,135,0,127,0,0,0,70,3,0,0,0,0,0,0,0,0,0,48,1,0,0,0,2,0,0,0,0,0,93,51,0,0,0,0,0,0,0,0,642,0,0,3300,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,217,0,1,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1149,25,3 +3,0,0,3,0,31,4,0,21,0,2,0,0,2,2,0,19,0,7,3,0,0,0,5,0,8,0,0,1,0,5,0,0,0,5,0,31,6,0,0,28,0,0,0,1,0,0,2,0,0,0,0,5,138,0,0,0,0,0,1,0,0,0,0,0,2,0,0,660,31,56,0,5,0,0,0,0,0,12,0,0,0,0,0,7,14,105,0,0,5,0,0,0,0,0,73,5,3,0,0,2,0,31,0,0,0,0,555,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,92,0,62,0,0,0,8,5,187,16,95,0,0,0,0,1,0,3,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,10,151,3,0,0,151,0,231,0,0,0,44,9,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,112,21,0,0,0,0,0,0,0,0,646,0,0,39,2,0,1,1,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,2,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,8,0,0,0,4,1,36,155,0,6,8,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,176,33,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,65,0,0,0,0,0,1,0,0,0,0,0,2,0,0,488,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,69,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,496,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,28,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1146,3,0,0,1141,0,300,0,0,0,14,10,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1160,9,0,0,0,0,0,0,0,0,100,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,29,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +16,0,0,6,0,39,17,0,45,6,5,0,0,2,12,0,799,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4946,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,353,0,0,0,0,0,1,0,0,0,0,0,10,0,0,129359,39,909,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,22586,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,903,0,7,0,0,3374,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,18612,0,52,0,0,0,8,20,281,1257,18602,0,0,0,0,1,0,3,0,0,0,0,0,0,390,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,288,6,0,0,274,0,395,0,0,0,112,15,0,0,0,0,0,0,0,0,0,886,1,0,0,0,9,0,0,0,0,1,138,17,0,0,1,0,0,0,0,0,4953,1,0,804,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,197,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2036,127,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,39,3,0,0,58,0,53,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +1,0,0,6,0,34,7,0,35,0,5,0,0,7,6,0,541,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,176,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18829,34,609,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4388,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,600,0,0,1,0,2911,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,708,0,46,0,0,0,1,4,256,1160,694,0,0,0,0,1,0,3,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,190,6,0,0,201,0,266,0,0,0,58,4,0,0,0,0,0,0,0,0,0,607,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3358,1,0,840,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,111,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1923,78,3 +1,0,0,6,0,34,7,0,34,0,5,0,0,7,6,0,507,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,177,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18393,34,574,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4113,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,566,0,0,1,0,2799,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,685,0,46,0,0,0,1,4,256,1158,671,0,0,0,0,1,0,3,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,186,6,0,0,201,0,269,0,0,0,58,11,0,0,0,0,0,0,0,0,0,572,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3141,1,0,844,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,112,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1872,76,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,5,0,0,86,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,25,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,55,3,0,0,58,0,56,0,0,0,28,8,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,7,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,7,0,0,211,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,167,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,60,3,0,0,70,0,86,0,0,0,39,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,95,26,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,37,3 +16,0,0,6,0,39,17,0,43,6,5,0,0,2,12,0,727,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4944,39,154,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,347,0,0,0,0,0,1,0,0,0,0,0,10,0,0,129495,39,836,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,22585,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,832,0,7,0,0,3529,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,18717,0,52,0,0,0,8,20,281,1258,18707,0,0,0,0,1,0,3,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,289,6,0,0,275,0,451,0,0,0,113,17,0,0,0,0,0,0,0,0,0,812,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4742,1,0,788,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,20,0,0,0,2,1,43,238,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2004,140,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1039,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,464,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,22,0,0,0,0,3,24,6,53,0,0,0,0,1,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,68,3,0,0,80,0,149,0,0,0,27,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,253,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,108,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,63,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,6,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1319,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,525,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,39,0,0,0,0,3,23,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,119,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,819,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,191,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,292,14,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1353,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,556,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,39,0,0,0,0,3,23,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,119,0,0,0,65,5,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,819,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,191,0,1,0,0,2,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,291,14,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1197,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,519,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,88,0,153,0,0,0,25,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,229,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1067,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,476,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,23,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,73,3,0,0,82,0,154,0,0,0,29,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,92,16,0,0,0,0,0,0,0,0,252,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,111,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,65,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,69,0,0,0,0,0,1,0,0,0,0,0,2,0,0,536,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,63,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,528,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,53,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,164,3,0,0,83,0,386,0,0,0,13,11,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,95,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,56,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +1,0,0,6,0,34,7,0,38,0,5,0,0,7,6,0,643,0,6,2,0,0,0,8,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,0,0,1,0,0,2,0,0,0,0,1,173,0,0,0,0,0,1,0,0,0,0,0,5,0,0,6677,34,714,0,3,0,0,0,0,0,18,0,0,0,0,0,9,25,1271,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,702,0,0,1,0,1151,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,546,0,42,0,0,0,1,4,255,353,532,0,0,0,0,1,0,3,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,187,6,0,0,201,0,263,0,0,0,58,5,0,0,0,0,0,0,0,0,0,712,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,1770,1,0,101,8,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,8,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,107,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,519,73,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,15,2,0,15,0,3,0,0,0,3,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,15,6,0,0,16,0,3,0,1,0,0,3,0,0,0,0,0,116,0,0,0,0,0,1,0,0,0,0,0,3,0,0,3507,15,59,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,954,0,0,5,0,0,0,0,0,12,0,5,0,0,2,0,17,0,1,0,0,438,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,336,0,46,0,0,0,0,3,33,202441,346,0,0,0,0,1,0,0,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,128,3,0,0,127,0,124,0,0,0,61,4,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,97,33,0,0,0,0,0,0,0,0,471,0,0,1387,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,20,212,0,1,0,0,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,635,16,3 +4,0,0,5,0,36,21,0,43,0,4,0,0,2,7,0,754,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,36,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,298,0,0,0,0,0,1,0,0,0,0,0,2,0,0,111883,36,850,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19166,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,813,0,0,0,0,4967,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,14972,0,66,0,0,0,0,3,285,1592,14961,0,0,0,0,1,0,3,0,0,0,0,0,0,840,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,362,5,0,0,275,0,880,0,0,0,115,11,0,0,0,0,0,0,0,0,0,837,1,0,0,0,9,0,0,0,0,0,135,19,0,0,1,0,0,0,0,0,8153,1,0,1143,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,37,239,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3082,91,3 +5,0,0,4,0,37,13,0,35,0,3,0,0,2,3,0,650,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2507,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,245,0,0,0,0,0,1,0,0,0,0,0,4,0,0,99229,37,738,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,17442,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,688,0,1,0,0,3199,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,13759,0,45,0,0,0,2,7,266,1184,13735,0,0,0,0,1,0,3,0,0,0,0,0,0,906,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,238,4,0,0,278,0,362,0,0,0,126,12,0,0,0,0,0,0,0,0,0,712,1,0,0,0,10,0,0,0,0,1,130,36,0,0,0,0,0,0,0,0,4129,1,0,1835,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1901,35,3 +4,0,0,5,0,37,21,0,46,0,4,0,0,2,7,0,786,0,6,1,0,0,0,8,0,10,0,0,7,0,4,0,0,0,4,5704,37,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,282,0,0,0,0,0,1,0,0,0,0,0,2,0,0,112975,37,891,0,8,0,0,0,0,0,32,0,0,0,0,0,8,18,19414,0,0,4,0,0,0,0,0,103,5,2,0,0,2,0,852,0,0,0,0,5559,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,12,12,12,0,0,0,15114,0,72,0,0,0,6,9,277,1619,15098,0,0,0,0,1,0,3,0,0,0,0,0,0,844,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,597,5,0,0,282,0,947,0,0,0,129,93,0,0,0,0,0,0,0,0,0,872,1,0,0,0,9,0,0,0,0,4,140,19,0,0,1,0,0,0,0,0,9111,1,0,1141,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,10,0,0,0,2,1,41,195,0,9,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3407,150,3 +4,0,0,5,0,34,21,0,41,0,4,0,0,2,7,0,648,0,6,1,0,0,0,8,0,10,0,0,3,0,0,0,0,0,1,5704,34,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,257,0,0,0,0,0,1,0,0,0,0,0,2,0,0,122450,34,742,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20875,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,707,0,0,0,0,5079,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,16827,0,64,0,0,0,0,3,273,1591,16817,0,0,0,0,1,0,3,0,0,0,0,0,0,817,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,334,5,0,0,271,0,877,0,0,0,118,17,0,0,0,0,0,0,0,0,0,729,1,0,0,0,9,0,0,0,0,0,135,19,0,0,1,0,0,0,0,0,7879,1,0,1127,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,35,218,0,1,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3061,86,3 +23,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,3,0,1,0,0,3,0,0,0,0,0,197,0,0,0,0,0,1,0,0,0,0,0,1,0,0,6303,11,59,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,1387,0,0,0,0,0,0,0,0,12,0,6,0,0,2,0,15,0,0,0,0,923,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,97,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,840,0,60,0,0,0,0,3,30,6,882,0,0,0,0,1,0,0,0,0,0,0,0,0,2613,0,0,0,0,0,0,0,0,0,0,0,0,3,0,93,0,0,0,0,0,0,8,3,96,2,0,0,103,0,200,0,0,0,33,3,0,0,0,0,0,24,181,0,0,42,1,0,0,0,2,0,0,0,0,0,91,22,0,0,0,0,0,0,0,0,379,0,0,2087,0,0,1,1,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,188,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,168,0,1,0,0,1,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,89,0,0,0,0,0,0,0,3,781,23,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1237,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,532,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,28,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,94,2,0,0,91,0,173,0,0,0,31,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,260,150,3 +4,0,0,5,0,35,21,0,43,0,4,0,0,2,7,0,735,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5706,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,257,0,0,0,0,0,1,0,0,0,0,0,2,0,0,115265,35,831,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19710,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,794,0,0,0,0,5226,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15506,0,65,0,0,0,0,3,281,1601,15495,0,0,0,0,1,0,3,0,0,0,0,0,0,850,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,345,5,0,0,276,0,878,0,0,0,120,12,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8149,1,0,1149,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,246,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3097,88,3 +7,0,0,3,0,31,4,0,21,0,2,0,0,2,2,0,19,0,7,3,0,0,0,5,0,8,0,0,4,0,5,0,0,0,5,0,31,6,0,0,28,0,0,0,1,0,0,2,0,0,0,0,5,139,0,0,0,0,0,1,0,0,0,0,0,2,0,0,647,31,63,0,8,0,0,0,0,0,13,0,0,0,0,0,7,14,111,0,0,5,0,0,0,0,0,76,5,3,0,0,2,0,36,0,0,0,0,447,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,98,0,62,0,0,0,8,7,189,22,100,0,0,0,0,1,0,3,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,10,140,3,0,0,152,0,236,0,0,0,45,7,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,112,21,0,0,0,0,0,0,0,0,650,0,0,43,2,0,1,1,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,11,0,0,0,0,1,36,157,0,9,8,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,181,32,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,193,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,125,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,57,0,85,0,0,0,27,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,2,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,34,3 +0,0,0,0,0,37,29,0,106,2,2,0,1,2,4,0,843,0,6,1,0,0,0,8,0,10,0,0,7,0,1,0,0,0,1,1093,37,6,0,0,45,0,1,0,1,0,0,1,0,0,0,0,1,322,0,0,0,0,0,1,0,0,0,0,0,0,0,0,231611,37,1014,0,4,0,0,0,0,0,54,0,0,0,0,0,8,33,26988,0,0,1,0,0,0,0,0,203,5,2,0,0,2,0,954,0,0,11,0,53374,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19530,0,31,0,0,0,2,5,488,7106,19510,0,0,0,0,1,0,3,0,0,0,0,0,0,15404,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,63,14,220,0,0,0,263,0,275,0,0,0,114,5,0,0,0,0,0,0,0,0,0,993,1,0,0,0,9,0,0,0,0,1,140,121,0,0,31,0,0,0,0,0,7336,1,0,10540,27,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,27,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,10,0,0,0,0,1,38,173,0,6,12,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5862,28,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,267,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,888,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,441,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,21,0,0,0,0,3,22,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,64,2,0,0,71,0,79,0,0,0,19,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,12,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,65,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,7,3 +2,0,0,3,0,10,2,0,24,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,10,6,0,0,6,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,2,0,0,920,10,48,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,447,0,0,1,0,0,0,0,0,8,0,1,0,0,2,0,21,0,0,0,0,74,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,34,0,25,0,0,0,0,3,27,4,46,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,80,4,0,0,108,0,116,0,0,0,45,3,0,0,0,0,0,0,0,0,0,51,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,0,0,0,0,782,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,160,0,0,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,233,13,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,260,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,1,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,113,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,26,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1238,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,529,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,28,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,93,2,0,0,91,0,180,0,0,0,31,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,261,150,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1056,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,465,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,109,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,25,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,72,3,0,0,80,0,152,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,252,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,108,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,240,64,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1189,13,37,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,517,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,155,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,2,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,26,5,0,11,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,2,0,1,0,26,6,0,0,20,0,1,0,1,0,0,1,0,0,0,0,1,75,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1621,26,42,0,1,0,0,0,0,0,11,0,0,0,0,0,7,15,625,0,0,1,0,0,0,0,0,74,5,3,0,0,2,0,20,0,0,0,0,447,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,93,0,38,0,0,0,0,3,181,8,95,0,0,0,0,1,0,3,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,111,3,0,0,138,0,298,0,0,0,43,31,0,0,0,0,0,0,0,0,0,45,1,0,0,0,8,0,0,0,0,0,108,30,0,0,0,0,0,0,0,0,266,0,0,772,3,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,2,3,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,0,0,0,0,0,1,27,89,0,2,9,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,336,125,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1244,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,572,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,88,0,154,0,0,0,25,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +1,0,0,3,0,11,3,0,16,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,36,0,0,10,0,0,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,576,11,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,59,0,0,3,0,0,0,0,0,7,0,2,0,0,2,0,29,0,1,0,0,525,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,37,0,0,0,0,3,26,6,59,0,0,0,0,1,0,0,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,4,152,3,0,0,98,0,246,0,0,0,37,46,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,94,20,0,0,0,0,0,0,0,0,80,0,0,48,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,137,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,89,33,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,115,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,124,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,51,3,0,0,68,0,62,0,0,0,37,3,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,30,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,132,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,29,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,79,2,0,0,94,0,245,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,25,3 +0,0,0,1,0,0,1,0,12,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,123,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,120,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,10,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,359,0,0,0,0,0,1,0,0,0,0,0,10,0,0,127697,39,871,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,22327,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,866,0,7,0,0,3672,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18425,0,52,0,0,0,6,19,281,1246,18415,0,0,0,0,1,0,3,0,0,0,0,0,0,360,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,273,6,0,0,275,0,391,0,0,0,112,19,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4833,1,0,777,14,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,204,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2076,133,3 +10,0,0,5,0,40,21,0,45,0,4,0,0,2,14,0,763,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5870,40,164,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,373,0,0,0,0,0,1,0,0,0,0,0,2,0,0,144855,40,888,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,24732,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,901,0,0,0,0,5425,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,20381,0,53,0,0,0,8,17,282,1640,20372,0,0,0,0,1,0,3,0,0,0,0,0,0,932,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,315,5,0,0,293,0,490,0,0,0,136,18,0,0,0,0,0,0,0,0,0,855,1,0,0,0,9,0,0,0,0,2,145,19,0,0,1,0,0,0,0,0,6980,1,0,1145,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,12,0,0,0,2,1,46,204,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3222,170,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,54,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,50,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +1,0,0,6,0,33,7,0,35,0,5,0,0,7,6,0,525,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,33,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,174,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18660,33,593,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4258,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,584,0,0,1,0,2776,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,649,0,48,0,0,0,1,4,249,1159,636,0,0,0,0,1,0,3,0,0,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,184,6,0,0,199,0,269,0,0,0,58,7,0,0,0,0,0,0,0,0,0,591,1,0,0,0,10,0,0,0,0,0,116,15,0,0,6,0,0,0,0,0,3276,1,0,832,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,34,105,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1856,75,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,125,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,120,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,36,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,22,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,58,0,62,0,0,0,28,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,27,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,68,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,5,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1243,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,533,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,32,0,0,0,0,3,31,6,108,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,86,2,0,0,95,0,175,0,0,0,28,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,17,0,0,0,0,0,0,0,0,228,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,34,0,4,0,0,2,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,270,153,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1244,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,552,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,67,2,0,0,79,0,161,0,0,0,25,6,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,257,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,263,101,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,2,3 +5,0,0,6,0,35,6,0,41,1,5,0,0,6,4,0,627,0,6,2,0,0,0,8,0,10,0,0,7,0,2,0,0,0,1,898,35,6,3,0,44,0,1,0,1,0,0,1,0,0,0,0,3,176,0,0,0,0,0,1,0,0,0,0,0,2,0,0,18543,35,687,0,6,0,0,0,0,0,12,0,0,0,0,0,8,18,4284,0,0,1,0,0,0,0,0,196,20,2,0,0,2,0,669,0,0,1,0,2752,0,0,0,0,1,2,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,640,0,34,0,0,0,4,7,252,1185,622,0,0,0,0,1,0,5,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,88,19,184,6,0,0,196,0,321,0,0,0,47,10,0,0,0,0,0,0,0,0,0,695,1,0,0,0,10,0,0,0,0,2,118,9,0,0,6,0,0,0,0,0,4212,1,0,775,6,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,6,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,7,0,0,0,0,1,36,144,0,7,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1913,30,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1236,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,557,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,156,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,2,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +1,0,0,3,0,11,3,0,16,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,36,0,0,10,0,0,0,1,0,0,1,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,3,0,0,310,11,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,29,0,1,0,0,183,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,38,0,0,0,0,3,26,6,58,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,4,90,3,0,0,98,0,198,0,0,0,37,10,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,94,20,0,0,0,0,0,0,0,0,79,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,135,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,14,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1209,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,532,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,31,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,88,0,154,0,0,0,25,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,149,3 +5,0,0,4,0,30,5,0,15,0,3,0,0,2,3,0,22,0,6,3,0,0,0,6,0,8,0,0,5,0,2,0,0,0,3,0,30,6,3,0,28,0,1,0,1,0,0,1,0,0,0,0,3,84,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1533,30,50,0,5,0,0,0,0,0,9,0,0,0,0,0,7,17,639,0,0,3,0,0,0,0,0,85,5,1,0,0,2,0,30,0,0,0,0,628,0,0,0,0,1,2,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,87,0,38,0,0,0,4,8,182,36,86,0,0,0,0,1,0,5,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,36,10,128,4,0,0,134,0,285,0,0,0,33,18,0,0,0,0,0,0,0,0,0,56,1,0,0,0,9,0,0,0,0,2,112,16,0,0,0,0,0,0,0,0,1035,0,0,733,3,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,3,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,6,0,0,0,0,1,33,74,0,6,9,0,1,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,318,43,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,84,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,55,3,0,0,58,0,58,0,0,0,28,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,7,3 +10,0,0,5,0,41,17,0,43,0,4,0,0,2,14,0,747,0,6,2,0,0,0,7,0,11,9,0,10,0,4,0,0,0,6,5022,41,150,0,0,22,0,0,0,1,0,0,1,0,0,0,0,5,366,0,0,0,0,0,1,0,0,0,0,0,2,0,0,131846,41,860,0,12,0,0,0,0,0,28,0,0,0,0,0,8,17,21984,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,878,0,0,0,0,1744,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,20985,0,53,0,0,0,8,17,285,448,20975,0,0,0,0,1,0,3,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,311,5,0,0,292,0,405,0,0,0,130,18,0,0,0,0,0,0,0,0,0,833,1,0,0,0,9,0,0,0,0,2,152,17,0,0,1,0,0,0,0,0,4688,1,0,55,14,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,14,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,196,0,22,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1513,135,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1197,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,518,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,88,0,158,0,0,0,25,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,149,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,269,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,100,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1012,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,467,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,19,0,0,0,0,3,22,4,52,0,0,0,0,1,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,59,2,0,0,76,0,112,0,0,0,22,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,213,0,0,768,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,111,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,234,7,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,251,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,112,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,27,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,60,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1073,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,488,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,21,0,0,0,0,3,22,4,57,0,0,0,0,1,0,0,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,58,2,0,0,76,0,86,0,0,0,23,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,216,0,0,783,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,171,0,1,0,0,2,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,241,7,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1205,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,532,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,88,0,154,0,0,0,25,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,122,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,132,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,71,0,90,0,0,0,41,1,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,36,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,270,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,5,0,0,231,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,133,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,57,3,0,0,74,0,68,0,0,0,43,10,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,36,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,1,0,0,46,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,19,0,0,0,0,3,22,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,42,2,0,0,38,0,33,0,0,0,8,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,92,5,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,4,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,8,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +7,0,0,5,0,35,21,0,43,0,4,0,0,2,9,0,781,0,6,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5870,35,44,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,385,0,0,0,0,0,1,0,0,0,0,0,2,0,0,142160,35,881,0,2,0,0,0,0,0,32,0,0,0,0,0,8,18,24122,0,0,1,0,0,0,0,0,88,5,3,0,0,2,0,857,0,0,0,0,5312,0,0,0,0,3,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,19994,0,42,0,0,0,0,3,281,1619,19979,0,0,0,0,1,0,3,0,0,0,0,0,0,872,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,323,5,0,0,284,0,419,0,0,0,129,32,0,0,0,0,0,0,0,0,0,866,1,0,0,0,9,0,0,0,0,1,145,19,0,0,1,0,0,0,0,0,7551,1,0,1146,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,1,0,0,0,0,1,36,229,0,3,12,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2800,64,3 +16,0,0,6,0,40,17,0,44,6,5,0,0,2,12,0,781,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,5553,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,431,0,0,0,0,0,1,0,0,0,0,0,10,0,0,131033,40,891,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,22792,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,885,0,7,0,0,3779,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18736,0,52,0,0,0,8,20,285,1329,18726,0,0,0,0,1,0,3,0,0,0,0,0,0,421,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,313,6,0,0,293,0,405,0,0,0,134,13,0,0,0,0,0,0,0,0,0,867,1,0,0,0,9,0,0,0,0,1,154,17,0,0,1,0,0,0,0,0,5002,1,0,831,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,20,0,0,0,2,1,44,249,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2122,203,3 +12,0,0,8,0,33,14,0,32,5,9,0,0,2,12,0,19,0,6,4,0,0,0,5,0,11,3,0,5,0,1,0,0,0,5,0,33,6,0,0,78,0,0,0,1,0,0,0,0,0,0,0,4,101,0,0,0,0,0,1,0,0,0,12,0,12,0,0,630,33,90,0,7,0,0,0,0,0,3,0,0,0,0,0,8,13,104,0,0,5,0,0,1,18,0,227,30,0,0,0,2,0,150,0,6,0,0,753,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,7,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,10,10,10,0,0,0,68,0,34,0,0,0,4,10,190,138,76,0,0,0,0,1,0,3,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,18,122,8,0,0,117,0,299,0,0,0,35,4,0,0,0,0,0,0,0,0,0,94,0,0,0,0,9,0,0,0,0,2,119,39,0,0,54,0,0,0,0,0,668,0,0,1,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,4,0,0,0,0,1,38,21,0,11,9,0,0,0,0,0,71,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,21,3 +4,0,0,3,0,9,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,4,0,0,88,9,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,86,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,26,0,0,0,0,3,23,4,33,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,5,45,3,0,0,54,0,59,0,0,0,23,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,92,19,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,29,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,32,3 +0,0,0,3,0,25,5,0,11,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,1,0,1,0,25,6,0,0,20,0,1,0,1,0,0,1,0,0,0,0,1,78,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1605,25,42,0,1,0,0,0,0,0,11,0,0,0,0,0,7,15,614,0,0,1,0,0,0,0,0,74,5,3,0,0,2,0,20,0,0,0,0,892,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,92,0,37,0,0,0,0,3,177,8,94,0,0,0,0,1,0,3,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,109,3,0,0,135,0,288,0,0,0,43,7,0,0,0,0,0,0,0,0,0,45,1,0,0,0,8,0,0,0,0,0,107,30,0,0,0,0,0,0,0,0,267,0,0,772,3,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,1,3,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,89,0,2,9,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,333,121,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1326,9,58,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,526,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,90,0,38,0,0,0,0,3,23,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,125,0,116,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,227,0,0,823,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,189,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,286,15,3 +0,0,0,3,0,9,2,0,16,4,3,0,0,0,7,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,9,6,0,0,16,0,0,0,1,0,0,3,0,0,0,0,0,94,0,0,0,0,0,1,0,0,0,0,0,7,0,0,435,9,60,0,1,0,0,0,0,0,14,0,0,0,1,0,1,5,84,0,0,1,0,0,0,0,0,11,0,5,0,0,2,0,25,0,5,0,0,97,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,82,0,49,0,0,0,0,3,23,14,102,0,0,0,0,1,0,0,0,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,8,76,3,0,0,109,0,113,0,0,0,50,5,0,0,0,0,0,0,0,0,0,48,1,0,0,0,2,0,0,0,0,0,91,34,0,0,0,0,0,0,0,0,48,0,0,77,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,226,0,1,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,131,18,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,7,0,0,216,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,149,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,33,0,0,0,2,4,26,6,40,0,0,0,0,1,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,60,3,0,0,70,0,86,0,0,0,39,8,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,95,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,37,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,61,0,0,0,0,0,1,0,0,0,0,0,2,0,0,472,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,60,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,507,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,28,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1140,3,0,0,1135,0,295,0,0,0,14,7,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1154,9,0,0,0,0,0,0,0,0,99,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,30,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1214,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,537,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,32,0,0,0,0,3,31,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,93,0,157,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,272,150,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,201,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,169,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,30,0,0,0,2,4,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,66,3,0,0,65,0,85,0,0,0,35,14,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,22,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,32,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,38,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1331,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,528,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,90,0,39,0,0,0,0,3,23,6,100,0,0,0,0,1,0,0,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,119,0,0,0,65,0,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,229,0,0,823,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,190,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,293,14,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1221,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,542,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,156,0,0,0,27,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,262,149,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,260,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,108,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,27,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +16,0,0,6,0,39,17,0,45,6,5,0,0,2,12,0,799,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,370,0,0,0,0,0,1,0,0,0,0,0,10,0,0,132877,39,909,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,23120,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,903,0,7,0,0,4199,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,19351,0,52,0,0,0,8,20,282,1259,19341,0,0,0,0,1,0,3,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,277,6,0,0,275,0,395,0,0,0,113,16,0,0,0,0,0,0,0,0,0,886,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4836,1,0,792,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,193,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2040,122,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,255,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,26,3 +0,0,0,2,0,10,2,0,10,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,896,10,35,0,2,0,0,0,0,0,6,0,0,0,0,0,1,6,434,0,0,1,0,0,0,0,0,9,0,1,0,0,2,0,10,0,0,0,0,85,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,38,0,23,0,0,0,0,3,27,5,44,0,0,0,0,1,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,71,2,0,0,78,0,125,0,0,0,22,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,92,12,0,0,0,0,0,0,0,0,206,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,1,0,0,0,0,1,11,81,0,2,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,223,8,3 +0,0,0,2,0,9,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,1,0,0,63,9,28,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,17,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,6,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,29,0,0,0,0,3,25,4,36,0,0,0,0,1,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,57,2,0,0,62,0,75,0,0,0,9,0,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,25,0,0,8,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,7,3 +8,0,0,4,0,13,3,0,3,0,3,0,0,0,4,0,22,0,7,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,1,0,13,42,0,0,20,0,0,0,1,0,0,0,0,0,0,0,0,50,0,2,0,0,0,1,0,0,0,0,0,4,0,0,28559,13,36,0,3,0,0,0,0,0,0,0,0,0,2,0,1,1,38,0,0,1,0,0,0,0,0,7,0,0,0,0,2,0,16,0,1,0,0,3851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,50,0,3285,0,0,0,0,3,34,21,11323,0,0,0,0,1,0,0,0,0,0,0,0,0,16898,0,3649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,110,4,0,0,74,0,463,0,0,0,32,16,0,0,0,0,0,0,0,0,0,42,0,0,0,0,2,0,0,0,0,1,96,15,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,2,0,0,0,0,1,14,1,0,3,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6577,11,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1254,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,544,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,29,0,0,0,0,3,31,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,89,2,0,0,94,0,169,0,0,0,32,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,17,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,150,3 +2,0,0,3,0,12,3,0,16,0,3,0,0,0,3,0,16,0,6,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,52,0,0,10,0,0,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,3,0,0,584,12,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,29,0,1,0,0,649,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,37,0,0,0,0,3,30,6,59,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,4,166,3,0,0,101,0,338,0,0,0,37,40,0,0,0,0,0,0,0,0,0,47,1,0,0,0,1,0,0,0,0,0,95,20,0,0,0,0,0,0,0,0,95,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,137,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,89,48,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1245,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,534,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,90,0,29,0,0,0,0,3,31,5,103,0,0,0,0,1,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,90,2,0,0,94,0,174,0,0,0,32,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,16,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,17,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,150,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,783,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5870,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,434,0,0,0,0,0,1,0,0,0,0,0,2,0,0,145644,41,908,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,24826,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,921,0,0,0,0,5478,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,20593,0,53,0,0,0,8,17,290,1636,20583,0,0,0,0,1,0,3,0,0,0,0,0,0,932,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,288,5,0,0,292,0,400,0,0,0,132,25,0,0,0,0,0,0,0,0,0,875,1,0,0,0,9,0,0,0,0,2,142,19,0,0,1,0,0,0,0,0,6771,1,0,1141,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,202,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3210,164,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1256,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,551,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,93,2,0,0,91,0,183,0,0,0,31,10,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,258,150,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,52,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,535,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,67,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,570,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,33,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1039,3,0,0,1018,0,425,0,0,0,14,11,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1037,9,0,0,0,0,0,0,0,0,116,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,35,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,212,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,95,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,31,0,0,0,2,4,24,7,38,0,0,0,0,1,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,79,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,11,3 +10,0,0,5,0,41,21,0,44,0,4,0,0,2,14,0,746,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,6,5870,41,52,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,396,0,0,0,0,0,1,0,0,0,0,0,2,0,0,141046,41,867,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,24067,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,881,0,0,0,0,5445,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19838,0,58,0,0,0,8,16,290,1626,19831,0,0,0,0,1,0,3,0,0,0,0,0,0,919,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,324,5,0,0,295,0,475,0,0,0,136,19,0,0,0,0,0,0,0,0,0,837,1,0,0,0,9,0,0,0,0,2,145,19,0,0,1,0,0,0,0,0,6735,1,0,1123,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,10,0,0,0,2,1,47,224,0,20,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3274,274,3 +4,0,0,3,0,11,2,0,8,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,36,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,5,0,0,333,11,34,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,39,0,0,3,0,0,0,0,0,7,0,2,0,0,2,0,25,0,3,0,0,180,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,39,0,0,0,0,3,25,7,52,0,0,0,0,1,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,85,3,0,0,85,0,180,0,0,0,32,7,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,93,16,0,0,0,0,0,0,0,0,81,0,0,60,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,112,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,91,17,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,68,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1341,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,513,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,39,0,0,0,0,3,23,6,101,0,0,0,0,1,0,0,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,119,0,0,0,65,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,230,0,0,827,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,204,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,292,13,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,54,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,50,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,3,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,413,10,62,0,7,0,0,0,0,0,6,0,0,0,0,0,1,3,101,0,0,2,0,0,0,0,0,22,0,1,0,0,2,0,65,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,85,0,24,0,0,0,6,15,24,21,100,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,66,2,0,0,79,0,160,0,0,0,25,2,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,79,0,0,75,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,82,101,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +7,0,0,5,0,41,21,0,43,0,4,0,0,2,12,0,712,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,376,0,0,0,0,0,1,0,0,0,0,0,2,0,0,137409,41,829,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23282,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,843,0,0,0,0,5587,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,19328,0,55,0,0,0,8,16,290,1631,19320,0,0,0,0,1,0,3,0,0,0,0,0,0,921,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,309,5,0,0,292,0,432,0,0,0,132,31,0,0,0,0,0,0,0,0,0,800,1,0,0,0,9,0,0,0,0,2,142,19,0,0,1,0,0,0,0,0,6532,1,0,1141,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,364,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,9,0,0,0,0,1,47,210,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2965,140,3 +4,0,0,5,0,39,21,0,48,0,4,0,0,2,7,0,900,0,6,2,0,0,0,7,0,11,0,0,5,0,4,0,0,0,4,5704,39,34,0,0,22,0,0,0,1,0,0,1,0,0,0,0,4,260,0,0,0,0,0,1,0,0,0,0,0,2,0,0,144414,39,1006,0,7,0,0,0,0,0,32,0,0,0,0,0,8,17,33094,0,0,4,0,0,0,0,0,102,5,2,0,0,2,0,965,0,0,0,0,3801,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,31890,0,69,0,0,0,6,9,288,707,31873,0,0,0,0,1,0,3,0,0,0,0,0,0,519,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,651,5,0,0,283,0,940,0,0,0,124,88,0,0,0,0,0,0,0,0,0,988,1,0,0,0,9,0,0,0,0,4,137,19,0,0,1,0,0,0,0,0,7715,1,0,242,16,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,16,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,9,0,0,0,0,1,43,238,0,8,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1945,153,3 +16,0,0,6,0,39,17,0,43,6,5,0,0,2,12,0,725,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,366,0,0,0,0,0,1,0,0,0,0,0,10,0,0,124045,39,832,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,21728,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,828,0,7,0,0,3290,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,17870,0,52,0,0,0,6,19,281,1254,17860,0,0,0,0,1,0,3,0,0,0,0,0,0,403,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,274,6,0,0,275,0,389,0,0,0,113,15,0,0,0,0,0,0,0,0,0,810,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4705,1,0,795,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,234,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2013,133,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,3,3 +0,0,0,3,0,14,2,0,15,0,3,0,0,0,3,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,14,6,0,0,16,0,3,0,1,0,0,3,0,0,0,0,0,120,0,0,0,0,0,1,0,0,0,0,0,3,0,0,3467,14,59,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,972,0,0,5,0,0,0,0,0,12,0,5,0,0,2,0,17,0,1,0,0,469,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,329,0,44,0,0,0,0,3,29,189088,339,0,0,0,0,1,0,0,0,0,0,0,0,0,867,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,118,3,0,0,124,0,124,0,0,0,61,4,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,96,33,0,0,0,0,0,0,0,0,460,0,0,1367,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,19,211,0,1,0,0,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,627,14,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1206,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,532,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,81,2,0,0,90,0,155,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,267,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +2,0,0,2,0,12,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1020,12,44,0,1,0,0,0,0,0,6,0,0,0,0,0,2,7,517,0,0,3,0,0,0,0,0,10,0,1,0,0,2,0,15,0,0,0,0,154,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,58,0,32,0,0,0,0,3,29,57,71,0,0,0,0,1,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,86,2,0,0,88,0,112,0,0,0,25,3,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,95,8,0,0,0,0,0,0,0,0,801,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,15,96,0,1,0,0,1,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,253,7,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1023,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,490,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,19,0,0,0,0,3,22,4,51,0,0,0,0,1,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,58,2,0,0,77,0,104,0,0,0,23,4,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,17,0,0,0,0,0,0,0,0,211,0,0,764,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,120,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,230,6,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1301,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,554,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,86,0,40,0,0,0,0,3,23,6,96,0,0,0,0,1,0,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,119,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,225,0,0,800,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,190,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,286,15,3 +0,0,0,3,0,11,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1083,11,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,470,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,111,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,24,0,0,0,0,3,28,6,57,0,0,0,0,1,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,77,3,0,0,87,0,157,0,0,0,31,4,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,95,16,0,0,0,0,0,0,0,0,254,0,0,784,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,104,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,243,273,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,95,10,24,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,13,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,42,3,0,0,58,0,76,0,0,0,28,12,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,15,3 +5,0,0,3,0,33,4,0,21,0,2,0,0,2,2,0,19,0,7,3,0,0,0,5,0,8,0,0,1,0,5,0,0,0,5,0,33,6,0,0,28,0,0,0,1,0,0,2,0,0,0,0,5,145,0,0,0,0,0,1,0,0,0,0,0,2,0,0,643,33,58,0,5,0,0,0,0,0,13,0,0,0,0,0,7,14,100,0,0,5,0,0,0,0,0,73,5,3,0,0,2,0,31,0,0,0,0,449,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,96,0,63,0,0,0,8,5,198,16,97,0,0,0,0,1,0,3,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,10,153,3,0,0,157,0,233,0,0,0,45,4,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,114,21,0,0,0,0,0,0,0,0,642,0,0,40,2,0,1,1,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,8,0,0,0,4,1,38,155,0,6,8,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,171,33,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,11,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,19,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,0,18,0,0,0,7,0,0,0,3,0,19,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,6,57,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2215,19,89,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,872,0,0,3,0,0,0,0,0,32,0,2,0,0,2,0,118,0,1,0,0,462,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,255,0,37,0,0,0,12,27,36,669,263,0,0,0,0,1,0,0,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,93,3,0,0,122,0,198,0,0,0,45,7,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,99,31,0,0,0,0,0,0,0,0,473,0,0,779,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,6,0,0,0,0,1,22,204,0,25,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,446,28,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1315,10,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,524,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,90,0,42,0,0,0,0,3,27,6,100,0,0,0,0,1,0,0,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,82,2,0,0,127,0,119,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,227,0,0,819,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,189,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,295,16,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,56,3,0,0,58,0,57,0,0,0,28,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +2,0,0,2,0,11,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2025,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,857,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,241,0,26,0,0,0,0,3,25,595,256,0,0,0,0,1,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,65,2,0,0,98,0,123,0,0,0,42,2,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,408,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,434,7,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1094,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,483,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,204,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,23,0,0,0,0,3,24,6,56,0,0,0,0,1,0,0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,76,3,0,0,84,0,157,0,0,0,31,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,94,16,0,0,0,0,0,0,0,0,254,0,0,784,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,104,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,92,3 +8,0,0,3,0,20,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,9,0,20,6,0,0,30,0,5,0,1,0,0,5,0,0,0,0,0,82,0,0,0,0,0,1,0,0,0,0,0,6,0,0,33020,20,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,6839,0,0,9,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,617,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4150,0,74,0,0,0,0,3,39,221,4164,0,0,0,0,1,0,0,0,0,0,0,0,0,8177,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,196,3,0,0,148,0,241,0,0,0,85,20,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,102,44,0,0,0,0,0,0,0,0,2038,0,0,9593,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,1,29,255,0,4,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2871,56,3 +0,0,0,2,0,10,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1361,10,50,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,543,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,6,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,40,0,0,0,0,3,27,6,102,0,0,0,0,1,0,0,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,74,2,0,0,120,0,121,0,0,0,65,0,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,229,0,0,827,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,154,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,296,14,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,4,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +5,0,0,4,0,12,24,0,138,1,35,0,0,0,4,0,19,0,7,1,0,0,0,2,0,0,0,0,3,0,1,0,0,0,2,0,12,6,0,0,254,0,0,0,1,0,0,2,0,0,0,0,0,82,0,0,0,0,0,1,0,0,0,0,0,29,0,0,1418,12,231,0,4,0,0,0,0,0,9,0,0,0,0,0,2,5,722,0,0,2,0,0,2,128,0,988,40,3,0,0,2,0,642,0,2,0,0,160,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,402,0,37,0,0,0,0,3,33,849,417,0,0,0,0,1,0,0,0,0,0,0,0,0,320,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,5,78,4,0,0,119,0,199,0,0,0,61,2,0,0,0,0,0,0,0,0,0,227,1,0,0,0,3,0,0,0,0,1,94,340,0,0,86,0,0,0,0,0,970,0,0,77,0,0,1,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,14,116,0,4,0,0,0,0,0,0,336,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,13,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1228,13,36,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,552,0,0,2,0,0,0,0,0,10,0,1,0,0,2,0,10,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,90,0,156,0,0,0,26,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,15,73,0,3,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,143,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,62,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,55,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1001,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,492,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,19,0,0,0,0,3,22,4,50,0,0,0,0,1,0,0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,56,2,0,0,75,0,85,0,0,0,21,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,17,0,0,0,0,0,0,0,0,210,0,0,756,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,117,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,227,6,3 +2,0,0,3,0,9,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,5,0,0,87,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,82,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,26,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,44,3,0,0,52,0,59,0,0,0,22,3,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,91,18,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,29,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,9,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1234,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,562,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,30,0,0,0,0,3,31,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,91,0,155,0,0,0,25,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,94,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,149,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,219,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,137,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,31,0,0,0,2,4,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,53,3,0,0,63,0,93,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,11,3 +4,0,0,5,0,38,21,0,47,0,4,0,0,2,7,0,841,0,6,1,0,0,0,8,0,10,0,0,6,0,4,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,283,0,0,0,0,0,1,0,0,0,0,0,2,0,0,124369,38,946,0,7,0,0,0,0,0,32,0,0,0,0,0,8,18,21252,0,0,4,0,0,0,0,0,102,5,2,0,0,2,0,906,0,0,0,0,6234,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,16931,0,70,0,0,0,6,9,284,1622,16914,0,0,0,0,1,0,3,0,0,0,0,0,0,851,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,639,5,0,0,286,0,949,0,0,0,131,89,0,0,0,0,0,0,0,0,0,928,1,0,0,0,9,0,0,0,0,4,141,19,0,0,1,0,0,0,0,0,9308,1,0,1160,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,9,0,0,0,0,1,42,228,0,8,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3470,150,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,272,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,115,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,29,3 +13,0,0,4,0,41,12,0,36,4,3,0,0,2,7,0,729,0,6,2,0,0,0,8,0,11,0,0,5,0,1,0,8,0,7,2512,41,32,0,0,33,0,1,0,1,0,0,2,0,0,0,0,1,266,0,0,0,0,0,1,0,0,0,0,0,8,0,0,142785,41,810,0,2,0,0,0,0,0,26,0,0,0,0,0,9,23,24649,0,0,7,0,0,0,0,0,95,5,4,0,0,2,0,768,0,5,0,0,4055,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,20103,0,53,0,0,0,0,3,545,1866,20081,0,0,0,0,1,0,3,0,0,0,0,0,0,1758,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,39,15,267,4,0,0,292,0,347,0,0,0,135,16,0,0,0,0,0,0,0,0,0,795,1,0,0,0,10,0,0,0,0,1,142,33,0,0,0,0,0,0,0,0,4800,1,0,3117,13,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,8,13,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,1,0,0,0,0,1,48,158,0,3,14,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2337,167,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,15,2,0,8,1,3,0,0,0,4,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,6,0,15,6,0,0,18,0,0,0,1,0,0,5,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,4,0,0,3560,15,57,0,1,0,0,0,0,0,21,0,0,0,0,0,1,7,730,0,0,6,0,0,0,0,0,13,0,8,0,0,2,0,10,0,2,0,0,394,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,482,0,73,0,0,0,0,3,29,207,493,0,0,0,0,1,0,0,0,0,0,0,0,0,1066,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,5,111,3,0,0,130,0,193,0,0,0,73,16,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,97,41,0,0,0,0,0,0,0,0,823,0,0,853,0,0,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,21,252,0,1,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,488,47,3 +5,0,0,4,0,37,13,0,35,0,3,0,0,2,3,0,650,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2849,37,6,0,0,23,0,1,0,1,0,0,3,0,0,0,0,2,484,0,0,0,0,0,1,0,0,0,0,0,4,0,0,76261,37,738,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,13694,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,688,0,1,0,0,3358,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,9867,0,44,0,0,0,2,7,266,1218,9843,0,0,0,0,1,0,3,0,0,0,0,0,0,793,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,250,4,0,0,280,0,359,0,0,0,130,13,0,0,0,0,0,0,0,0,0,712,1,0,0,0,10,0,0,0,0,1,131,36,0,0,0,0,0,0,0,0,4193,1,0,1602,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,223,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1939,41,3 +16,0,0,6,0,37,21,0,45,6,5,0,0,2,12,0,690,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,5868,37,146,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,340,0,0,0,0,0,1,0,0,0,0,0,10,0,0,141522,37,810,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,24204,0,0,4,0,0,0,0,0,95,5,2,0,0,2,0,802,0,7,0,0,5151,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19954,0,50,0,0,0,8,21,270,1628,19946,0,0,0,0,1,0,3,0,0,0,0,0,0,945,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,276,6,0,0,281,0,396,0,0,0,126,16,0,0,0,0,0,0,0,0,0,781,1,0,0,0,9,0,0,0,0,2,138,19,0,0,1,0,0,0,0,0,4989,1,0,1128,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,19,0,0,0,0,1,41,189,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2265,138,3 +10,0,0,5,0,42,21,0,46,0,4,0,0,2,14,0,838,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5870,42,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,380,0,0,0,0,0,1,0,0,0,0,0,2,0,0,136279,42,964,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,23170,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,976,0,0,0,0,5194,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,18860,0,54,0,0,0,8,17,294,1633,18850,0,0,0,0,1,0,3,0,0,0,0,0,0,924,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,304,5,0,0,297,0,399,0,0,0,136,17,0,0,0,0,0,0,0,0,0,931,1,0,0,0,9,0,0,0,0,2,144,19,0,0,1,0,0,0,0,0,6919,1,0,1134,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,12,0,0,0,2,1,48,211,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3123,163,3 +1,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,169,10,37,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,34,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,109,0,241,0,0,0,41,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,37,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,144,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,23,3 +13,0,0,4,1,42,12,4,42,3,4,0,0,2,6,0,723,0,6,4,0,1,1,8,0,11,0,0,5,0,1,0,0,0,7,2505,43,32,132,0,32,0,1,0,1,0,0,2,0,0,0,0,1,245,0,0,0,0,0,1,0,0,0,0,0,7,0,0,84210,42,922,0,2,0,0,0,0,0,26,3,0,0,0,0,9,23,14959,0,4,7,0,0,0,0,0,97,5,4,0,0,2,1,754,0,4,0,0,2812,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,11438,0,54,0,0,0,0,3,273,1183,11419,0,0,0,0,1,0,3,0,0,0,0,0,0,811,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,41,14,260,5,0,0,307,0,364,0,0,0,134,11,0,0,0,0,0,0,0,0,0,795,1,0,0,0,14,0,0,0,0,1,136,33,0,0,0,0,0,0,0,0,4445,1,0,1534,13,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,13,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,1,0,0,0,0,9,50,152,0,3,14,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1927,117,3 +4,0,0,5,0,35,21,0,42,0,4,0,0,2,7,0,700,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,319,0,0,0,0,0,1,0,0,0,0,0,2,0,0,118837,35,795,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20278,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,759,0,0,0,0,5248,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,16055,0,65,0,0,0,0,3,281,1592,16044,0,0,0,0,1,0,3,0,0,0,0,0,0,816,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,373,5,0,0,277,0,868,0,0,0,121,15,0,0,0,0,0,0,0,0,0,782,1,0,0,0,9,0,0,0,0,0,139,19,0,0,1,0,0,0,0,0,8130,1,0,1139,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,239,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3131,90,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1240,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,531,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,89,2,0,0,91,0,177,0,0,0,31,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,259,150,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1097,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,456,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,22,0,0,0,0,3,26,4,53,0,0,0,0,1,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,88,2,0,0,82,0,224,0,0,0,26,14,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,91,19,0,0,0,0,0,0,0,0,212,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,92,0,1,0,0,2,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,14,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,7,0,0,92,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,18,0,5,0,0,106,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,33,0,0,0,2,3,26,6,40,0,0,0,0,1,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,55,3,0,0,66,0,103,0,0,0,36,5,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,97,20,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,17,0,3,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,14,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2161,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,870,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,433,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,254,0,34,0,0,0,8,19,29,614,265,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,180,0,0,0,45,9,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,451,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,445,10,3 +13,0,0,5,0,38,21,0,51,0,4,0,0,2,13,0,1034,0,6,2,0,0,0,7,0,10,0,0,9,0,4,0,0,0,4,5704,38,34,0,0,22,0,0,0,1,0,0,1,0,0,0,0,4,276,0,0,0,0,0,1,0,0,0,0,0,2,0,0,129173,38,1153,0,10,0,0,0,0,0,32,0,0,0,0,0,8,17,21096,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,1131,0,0,0,0,3446,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,12,12,12,0,0,0,19740,0,70,0,0,0,6,9,286,820,19728,0,0,0,0,1,0,3,0,0,0,0,0,0,843,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,394,5,0,0,283,0,918,0,0,0,127,19,0,0,0,0,0,0,0,0,0,1131,1,0,0,0,9,0,0,0,0,4,139,19,0,0,1,0,0,0,0,0,12706,1,0,398,16,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,16,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,239,0,11,12,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3684,99,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,31,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,260,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,61,27,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,120,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,132,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,58,3,0,0,72,0,84,0,0,0,41,1,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,36,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,92,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,100,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,32,0,0,0,2,3,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,47,3,0,0,57,0,89,0,0,0,27,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,10,3 +0,0,0,3,0,8,2,0,17,0,2,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,52,0,0,7,0,2,0,1,0,0,2,0,0,0,0,0,57,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1185,8,51,0,1,0,0,0,0,0,12,0,0,0,0,0,1,7,495,0,0,0,0,0,0,0,0,10,0,4,0,0,2,0,33,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,66,0,29,0,0,0,0,3,22,7,76,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,18,3,80,3,0,0,88,0,151,0,0,0,27,3,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,0,90,17,0,0,0,0,0,0,0,0,287,0,0,797,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,184,0,1,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,259,41,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1286,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,510,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,87,0,39,0,0,0,0,3,23,6,97,0,0,0,0,1,0,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,118,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,226,0,0,811,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,194,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,290,12,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,13,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1242,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,533,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,91,2,0,0,91,0,174,0,0,0,31,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,256,151,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,53,0,0,0,28,4,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,2,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,64,0,0,0,0,0,1,0,0,0,0,0,2,0,0,469,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,59,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,493,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,96,3,0,0,83,0,290,0,0,0,13,9,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,92,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,26,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,953,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,433,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,19,0,0,0,0,3,22,4,50,0,0,0,0,1,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,58,2,0,0,75,0,101,0,0,0,21,1,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,17,0,0,0,0,0,0,0,0,210,0,0,760,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,114,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,228,6,3 +1,0,0,6,0,35,7,0,38,0,5,0,0,7,6,0,661,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,174,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18395,35,732,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4245,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,720,0,0,1,0,2854,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,723,0,48,0,0,0,1,4,260,1162,709,0,0,0,0,1,0,3,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,190,6,0,0,204,0,280,0,0,0,58,6,0,0,0,0,0,0,0,0,0,730,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3466,1,0,832,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,114,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1892,72,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,50,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,87,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,106,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,3,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,46,3,0,0,57,0,87,0,0,0,27,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,10,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,4,0,13,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,1,0,0,454,13,34,0,3,0,0,0,0,0,6,0,0,0,0,0,1,3,101,0,0,4,0,0,0,0,0,9,0,1,0,0,2,0,10,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,85,0,37,0,0,0,0,3,27,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,92,2,0,0,89,0,179,0,0,0,33,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,16,0,0,0,0,0,0,0,0,46,0,0,72,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,17,36,0,3,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,101,147,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1076,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,474,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,23,0,0,0,0,3,24,6,55,0,0,0,0,1,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,68,3,0,0,80,0,155,0,0,0,27,4,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,253,0,0,780,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,111,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,253,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,91,0,263,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,103,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,26,3 +1,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,182,10,38,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,23,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,33,0,32,0,0,0,0,3,26,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,74,2,0,0,110,0,250,0,0,0,41,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,37,0,0,0,0,0,0,0,0,27,0,0,16,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,136,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,64,24,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,87,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,65,0,62,0,0,0,35,6,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,4,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1572,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,676,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,145,0,20,0,0,0,0,3,23,303,156,0,0,0,0,1,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,60,2,0,0,82,0,89,0,0,0,26,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,89,21,0,0,0,0,0,0,0,0,312,0,0,784,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,109,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,333,5,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,258,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,26,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1238,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,566,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,155,0,0,0,27,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +1,0,0,6,0,34,7,0,36,0,5,0,0,7,6,0,575,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,184,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18360,34,644,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4318,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,634,0,0,1,0,2985,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,721,0,47,0,0,0,1,4,256,1160,707,0,0,0,0,1,0,3,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,186,6,0,0,201,0,271,0,0,0,57,10,0,0,0,0,0,0,0,0,0,642,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3340,1,0,813,8,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,111,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1937,70,3 +5,0,0,4,0,37,13,0,35,0,3,0,0,2,3,0,650,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2843,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,248,0,0,0,0,0,1,0,0,0,0,0,4,0,0,82017,37,738,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,14585,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,688,0,1,0,0,3641,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,10932,0,44,0,0,0,2,7,266,1206,10908,0,0,0,0,1,0,3,0,0,0,0,0,0,819,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,244,4,0,0,279,0,372,0,0,0,127,15,0,0,0,0,0,0,0,0,0,712,1,0,0,0,10,0,0,0,0,1,131,36,0,0,0,0,0,0,0,0,4102,1,0,1690,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,243,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1924,50,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +3,0,0,3,0,14,4,0,28,0,9,0,0,0,2,0,22,0,7,1,0,0,0,1,0,0,3,0,1,0,2,0,0,0,2,0,14,6,0,0,37,0,1,0,1,0,0,1,0,0,0,0,1,100,0,0,0,0,0,1,0,0,0,0,0,5,0,0,4343,14,72,0,3,0,0,0,0,0,6,0,0,0,0,0,1,3,1386,0,0,2,0,0,1,19,0,163,20,1,0,0,2,0,116,0,0,0,0,821,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,740,0,40,0,0,0,2,7,33,324,752,0,0,0,0,1,0,0,0,0,0,0,0,0,659,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,123,3,0,0,95,0,201,0,0,0,31,4,0,0,0,0,0,0,0,0,0,72,1,0,0,0,2,0,0,0,0,1,96,56,0,0,44,0,0,0,0,0,1123,0,0,473,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,2,0,0,0,0,1,16,81,0,6,0,0,0,0,0,0,67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,683,298,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,88,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,130,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,54,3,0,0,65,0,107,0,0,0,35,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,22,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,17,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,35,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,5,0,0,235,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,137,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,9,34,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,58,3,0,0,74,0,68,0,0,0,43,5,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,36,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,9,3 +3,0,0,2,0,11,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,11,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1215,11,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,525,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,92,0,27,0,0,0,6,15,28,21,107,0,0,0,0,1,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,71,2,0,0,82,0,163,0,0,0,25,3,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,91,15,0,0,0,0,0,0,0,0,258,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,6,0,0,0,0,1,13,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,102,3 +12,0,0,5,0,38,24,0,47,0,4,0,0,2,13,0,994,0,6,1,0,0,0,8,0,10,0,0,6,0,3,0,0,0,2,9641,38,56,0,0,22,0,1,0,1,0,0,2,0,0,0,0,3,396,0,0,0,0,0,1,0,0,0,0,0,2,0,0,159159,38,1139,0,6,0,0,0,0,0,48,0,0,0,0,0,8,19,33025,0,0,2,0,0,0,0,0,99,5,4,1,0,2,0,1107,0,0,0,0,2763,0,0,0,0,5,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,31206,0,53,0,0,0,4,7,306,749,31190,0,0,0,0,1,0,4,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,359,5,0,0,314,0,452,0,0,0,151,46,0,0,0,0,0,0,0,0,0,1090,1,0,0,0,9,0,0,0,0,3,142,25,0,0,1,0,0,0,0,0,8683,1,0,82,22,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,22,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,7,0,0,0,0,1,40,145,0,7,12,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2216,88,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1535,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,66,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,614,0,0,0,0,0,11,43,238,0,0,0,0,0,0,0,0,0,0,0,0,0,1671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,17,2,0,0,57,0,84,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,45,0,0,0,0,0,0,0,0,335,0,0,416,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,114,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1417,4,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1237,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,527,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,87,2,0,0,91,0,173,0,0,0,32,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,150,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,125,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,108,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,72,0,90,0,0,0,41,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,115,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,127,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,9,34,0,0,0,0,1,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,51,3,0,0,68,0,62,0,0,0,37,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,30,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +5,0,0,4,0,37,13,0,40,0,3,0,0,2,3,0,785,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2318,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,261,0,0,0,0,0,1,0,0,0,0,0,4,0,0,76873,37,878,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,13726,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,824,0,1,0,0,3309,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,9978,0,44,0,0,0,2,7,266,1185,9954,0,0,0,0,1,0,3,0,0,0,0,0,0,797,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,227,4,0,0,278,0,342,0,0,0,125,7,0,0,0,0,0,0,0,0,0,852,1,0,0,0,10,0,0,0,0,1,130,36,0,0,0,0,0,0,0,0,4443,1,0,1638,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1930,38,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,264,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +6,0,0,4,0,11,3,0,13,0,7,0,0,0,3,0,11,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,1,0,11,6,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,5,0,0,193,11,44,0,3,0,0,0,0,0,4,0,0,0,0,0,1,1,41,0,0,1,0,0,1,8,0,79,15,0,0,0,2,0,48,0,1,0,0,108,0,0,0,0,0,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,36,0,0,0,0,3,27,68,59,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,45,4,0,0,44,0,108,0,0,0,8,9,0,0,0,0,0,0,0,0,0,43,0,0,0,0,2,0,0,0,0,1,91,15,0,0,30,0,0,0,0,0,605,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,2,0,0,0,0,1,12,1,0,3,0,0,0,0,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,80,3 +2,0,0,2,0,9,2,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,912,9,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,465,0,0,1,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,71,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,23,0,0,0,0,3,23,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,66,2,0,0,74,0,129,0,0,0,22,2,0,0,0,0,0,0,0,0,0,36,1,0,0,0,2,0,0,0,0,0,91,12,0,0,0,0,0,0,0,0,782,0,0,732,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,81,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,228,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,174,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,93,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1241,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,549,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,79,0,161,0,0,0,25,5,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,258,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,101,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,75,0,0,0,0,0,1,0,0,0,0,0,2,0,0,521,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,74,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,762,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,98,3,0,0,83,0,289,0,0,0,13,11,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,104,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,26,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,3,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1103,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,472,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,29,0,0,0,0,3,25,72,67,0,0,0,0,1,0,0,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,71,2,0,0,81,0,119,0,0,0,25,4,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,17,0,0,0,0,0,0,0,0,215,0,0,764,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,93,0,1,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,249,8,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,5,0,0,73,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,38,3,0,0,58,0,56,0,0,0,28,4,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,6,3 +7,0,0,3,0,32,4,0,21,0,2,0,0,2,2,0,19,0,7,3,0,0,0,5,0,8,0,0,4,0,5,0,0,0,5,0,32,6,0,0,28,0,0,0,1,0,0,2,0,0,0,0,5,143,0,0,0,0,0,1,0,0,0,0,0,2,0,0,649,32,61,0,8,0,0,0,0,0,12,0,0,0,0,0,7,14,117,0,0,5,0,0,0,0,0,76,5,3,0,0,2,0,36,0,0,0,0,631,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,97,0,63,0,0,0,8,7,193,22,100,0,0,0,0,1,0,3,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,10,142,3,0,0,154,0,246,0,0,0,44,5,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,113,21,0,0,0,0,0,0,0,0,655,0,0,41,2,0,1,1,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,11,0,0,0,0,1,37,157,0,9,8,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,184,32,3 +0,0,0,3,0,10,2,0,3,0,3,0,0,0,3,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,138,10,21,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,1,0,0,0,0,0,6,0,0,0,0,2,0,8,0,1,0,0,104,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,24,0,0,0,0,3,27,5,26,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,51,3,0,0,75,0,68,0,0,0,42,3,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,0,92,38,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,73,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,7,3 +2,0,0,3,0,9,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,5,0,0,83,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,85,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,51,3,0,0,52,0,52,0,0,0,22,6,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,91,18,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,14,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,7,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,271,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,113,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1236,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,564,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,30,0,0,0,0,3,31,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,91,0,155,0,0,0,25,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,94,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +10,0,0,5,0,40,17,0,45,0,4,0,0,2,14,0,797,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5024,40,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,387,0,0,0,0,0,1,0,0,0,0,0,2,0,0,146946,40,911,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,25612,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,927,0,0,0,0,3527,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,21671,0,53,0,0,0,8,19,279,1258,21662,0,0,0,0,1,0,3,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,294,5,0,0,281,0,389,0,0,0,123,23,0,0,0,0,0,0,0,0,0,885,1,0,0,0,9,0,0,0,0,2,141,17,0,0,1,0,0,0,0,0,6547,1,0,784,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,11,0,0,0,0,1,46,204,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2918,102,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,7,0,0,212,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,207,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,61,3,0,0,71,0,88,0,0,0,40,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,96,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,37,3 +2,0,0,3,0,17,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,0,18,0,0,0,7,0,0,0,3,0,17,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,6,56,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2280,17,89,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,889,0,0,3,0,0,0,0,0,32,0,2,0,0,2,0,118,0,1,0,0,429,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,254,0,35,0,0,0,12,27,34,631,262,0,0,0,0,1,0,0,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,87,3,0,0,116,0,199,0,0,0,45,5,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,97,31,0,0,0,0,0,0,0,0,469,0,0,779,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,6,0,0,0,0,1,20,201,0,25,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,446,29,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,54,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,50,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,128,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,144,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,7,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +16,0,0,6,0,39,17,0,45,6,5,0,0,2,12,0,799,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,365,0,0,0,0,0,1,0,0,0,0,0,10,0,0,126877,39,908,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,22210,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,902,0,7,0,0,3566,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,18253,0,54,0,0,0,6,19,281,1258,18243,0,0,0,0,1,0,3,0,0,0,0,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,301,6,0,0,276,0,397,0,0,0,114,13,0,0,0,0,0,0,0,0,0,886,1,0,0,0,9,0,0,0,0,1,140,17,0,0,1,0,0,0,0,0,4939,1,0,799,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,210,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2101,135,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1336,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,527,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,90,0,40,0,0,0,0,3,23,6,100,0,0,0,0,1,0,0,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,120,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,230,0,0,820,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,205,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,294,12,3 +4,0,0,3,0,12,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,36,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,5,0,0,320,12,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,219,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,38,0,0,0,0,3,27,7,60,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,93,3,0,0,101,0,196,0,0,0,40,7,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,95,20,0,0,0,0,0,0,0,0,79,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,134,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,12,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1241,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,562,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,157,0,0,0,27,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,265,149,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1059,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,479,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,23,0,0,0,0,3,24,6,53,0,0,0,0,1,0,0,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,72,3,0,0,80,0,153,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,251,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,105,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,233,64,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,91,0,269,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,26,3 +5,0,0,3,0,18,2,0,10,1,3,0,0,0,4,0,16,0,6,1,0,0,0,1,0,0,0,0,9,0,1,0,0,0,4,0,18,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1105,18,44,0,10,0,0,0,0,0,5,0,0,0,0,0,1,4,512,0,0,4,0,0,0,0,0,16,0,2,0,0,2,0,20,0,2,0,0,145,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,57,0,45,0,0,0,0,3,35,36,68,0,0,0,0,1,0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,5,90,3,0,0,91,0,155,0,0,0,23,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,1,100,3,0,0,0,0,0,0,0,0,806,0,0,748,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,9,0,0,0,0,1,22,4,0,10,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,286,69,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,55,0,51,0,0,0,25,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,21,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,30,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,255,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,107,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,26,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +12,0,0,5,0,37,36,0,47,0,4,0,0,2,13,0,964,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,2,10035,37,56,0,0,22,0,1,0,1,0,0,2,0,0,0,0,1,554,0,0,0,0,0,1,0,0,0,0,0,2,0,0,195699,37,1127,0,4,0,0,0,0,0,56,0,0,0,0,0,8,19,40595,0,0,2,0,0,0,0,0,91,5,4,1,0,2,0,1083,0,0,0,0,6513,0,0,0,0,5,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,38384,0,51,0,0,0,0,3,307,1350,38369,0,0,0,0,1,0,4,0,0,0,0,0,0,1586,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,365,5,0,0,349,0,458,0,0,0,190,44,0,0,0,0,0,0,0,0,0,1072,1,0,0,0,9,0,0,0,0,1,161,29,0,0,1,0,0,0,0,0,8721,1,0,833,26,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,26,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,3,0,0,0,0,1,39,239,0,5,12,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2716,196,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,783,0,6,1,0,0,0,8,0,12,9,0,9,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,440,0,0,0,0,0,1,0,0,0,0,0,2,0,0,139942,41,908,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,23681,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,921,0,0,0,0,5339,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19646,0,57,0,0,0,8,17,290,1630,19636,0,0,0,0,1,0,3,0,0,0,0,0,0,941,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,310,5,0,0,298,0,413,0,0,0,138,20,0,0,0,0,0,0,0,0,0,875,1,0,0,0,9,0,0,0,0,2,148,19,0,0,1,0,0,0,0,0,6803,1,0,1139,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,239,0,22,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3200,147,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,53,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,8,2,0,9,0,2,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,32,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1101,8,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,490,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,20,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,21,0,0,0,0,3,22,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,3,72,3,0,0,73,0,185,0,0,0,20,4,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,88,15,0,0,0,0,0,0,0,0,252,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,113,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,233,50,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,212,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,125,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,53,3,0,0,63,0,92,0,0,0,33,7,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +0,0,0,3,0,9,2,0,17,0,2,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,52,0,0,7,0,2,0,1,0,0,2,0,0,0,0,0,58,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1166,9,51,0,1,0,0,0,0,0,12,0,0,0,0,0,1,7,494,0,0,0,0,0,0,0,0,10,0,4,0,0,2,0,33,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,64,0,31,0,0,0,0,3,26,7,74,0,0,0,0,1,0,0,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,18,3,87,3,0,0,92,0,150,0,0,0,28,4,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,0,92,17,0,0,0,0,0,0,0,0,285,0,0,790,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,183,0,1,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,261,42,3 +0,0,0,3,0,12,2,0,16,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,6,0,0,12,0,0,0,1,0,0,3,0,0,0,0,0,94,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1671,12,56,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,345,0,0,4,0,0,0,0,0,11,0,4,0,0,2,0,17,0,1,0,0,304,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,251,0,58,0,0,0,0,3,26,210,268,0,0,0,0,1,0,0,0,0,0,0,0,0,532,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,94,3,0,0,106,0,180,0,0,0,47,13,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,94,22,0,0,0,0,0,0,0,0,145,0,0,353,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,172,0,1,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,296,16,3 +4,0,0,5,0,35,21,0,44,0,4,0,0,2,7,0,733,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5706,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,268,0,0,0,0,0,1,0,0,0,0,0,2,0,0,113801,35,830,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19511,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,793,0,0,0,0,5149,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15221,0,63,0,0,0,0,3,281,1597,15210,0,0,0,0,1,0,3,0,0,0,0,0,0,845,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,375,5,0,0,276,0,885,0,0,0,120,14,0,0,0,0,0,0,0,0,0,817,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8631,1,0,1146,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,226,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3243,87,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1030,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,439,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,23,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,71,3,0,0,80,0,155,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,252,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,108,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,64,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,268,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,117,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +1,0,0,3,0,10,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,19,0,0,0,0,0,1,0,0,0,0,0,5,0,0,88,10,25,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,15,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,23,0,0,0,2,3,25,7,37,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,47,3,0,0,58,0,71,0,0,0,28,3,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,22,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,19,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,128,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,126,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,34,0,0,0,2,3,26,6,39,0,0,0,0,1,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,72,0,90,0,0,0,41,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,35,3 +4,0,0,3,0,14,2,0,18,6,3,0,0,0,10,0,16,0,6,1,0,0,0,2,0,0,0,0,1,0,2,0,1,0,5,0,14,6,0,0,25,0,3,0,1,0,0,3,0,0,0,0,1,66,0,0,0,0,0,1,0,0,0,0,0,10,0,0,4040,14,70,0,3,0,0,0,0,0,15,0,0,0,0,0,2,9,544,0,0,5,0,0,0,0,0,15,0,4,0,0,2,0,33,0,8,0,0,1565,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,101,0,61,0,0,0,2,3,32,13,113,0,0,0,0,1,0,0,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,11,93,3,0,0,127,0,169,0,0,0,63,1,0,0,0,0,0,0,0,0,0,55,1,0,0,0,3,0,0,0,0,1,98,35,0,0,0,0,0,0,0,0,806,0,0,776,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,19,155,0,3,0,0,1,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,323,48,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1229,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,551,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,73,2,0,0,88,0,154,0,0,0,25,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,229,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,781,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,404,0,0,0,0,0,1,0,0,0,0,0,2,0,0,138009,41,902,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23553,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,915,0,0,0,0,5403,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19319,0,57,0,0,0,8,16,290,1626,19312,0,0,0,0,1,0,3,0,0,0,0,0,0,925,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,302,5,0,0,295,0,425,0,0,0,135,19,0,0,0,0,0,0,0,0,0,873,1,0,0,0,9,0,0,0,0,2,145,19,0,0,1,0,0,0,0,0,6834,1,0,1127,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,9,0,0,0,0,1,47,207,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3257,257,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1212,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,540,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,30,0,0,0,0,3,31,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,91,0,155,0,0,0,25,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,94,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,51,0,0,0,28,4,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,27,2,0,0,30,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,3,3 +2,0,0,6,0,34,7,0,48,0,10,0,0,6,4,0,608,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,5,0,1,762,34,32,0,0,55,0,1,0,1,0,0,2,0,0,0,0,1,170,0,0,0,0,0,1,0,0,0,0,0,4,0,0,19219,34,692,0,3,0,0,0,0,0,19,0,0,0,0,1,8,24,4205,0,0,1,0,0,1,10,0,278,40,5,0,0,2,0,700,0,0,1,0,3044,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,643,0,57,0,0,0,1,4,257,1192,627,0,0,0,0,1,0,3,0,0,0,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,91,16,169,6,0,0,189,0,272,0,0,0,47,3,0,0,0,0,0,0,0,0,0,689,1,0,0,0,9,0,0,0,0,0,115,28,0,0,51,0,0,0,0,0,4000,1,0,814,6,0,1,1,1,0,0,0,7,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,5,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,35,54,0,4,12,0,0,0,0,0,81,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1900,60,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,125,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,20,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,116,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,59,3,0,0,72,0,84,0,0,0,41,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,35,3 +0,0,0,2,0,9,2,0,3,0,2,0,0,0,2,0,10,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,32,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,1,0,0,72,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,17,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,16,0,0,0,0,3,23,7,23,0,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,3,47,2,0,0,39,0,126,0,0,0,9,3,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,91,5,0,0,0,0,0,0,0,0,54,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,9,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,5,3 +1,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,176,10,37,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,33,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,74,2,0,0,109,0,255,0,0,0,41,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,37,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,132,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,64,24,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,53,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,7,0,0,87,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,18,0,5,0,0,132,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,55,3,0,0,66,0,101,0,0,0,36,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,97,20,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,17,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,14,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,10,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,3,0,13,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,13,36,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,5,0,0,318,13,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,186,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,39,0,0,0,0,3,31,7,61,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,97,3,0,0,104,0,196,0,0,0,40,9,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,96,20,0,0,0,0,0,0,0,0,79,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,17,146,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,93,12,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,50,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1201,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,529,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,31,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,88,0,154,0,0,0,25,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,63,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,471,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,62,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,483,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,28,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1131,3,0,0,1117,0,292,0,0,0,14,9,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1136,9,0,0,0,0,0,0,0,0,94,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,30,3 +12,0,0,5,0,38,28,0,45,0,4,0,0,2,13,0,948,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,2,9463,38,56,0,0,22,0,1,0,1,0,0,2,0,0,0,0,1,449,0,0,0,0,0,1,0,0,0,0,0,2,0,0,175022,38,1091,0,4,0,0,0,0,0,48,0,0,0,0,0,8,19,38795,0,0,2,0,0,0,0,0,91,5,4,1,0,2,0,1058,0,0,0,0,3059,0,0,0,0,5,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,37032,0,52,0,0,0,0,3,306,606,37016,0,0,0,0,1,0,4,0,0,0,0,0,0,443,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,330,5,0,0,319,0,445,0,0,0,155,42,0,0,0,0,0,0,0,0,0,1046,1,0,0,0,9,0,0,0,0,1,148,25,0,0,1,0,0,0,0,0,8345,1,0,136,22,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,22,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,3,0,0,0,0,1,40,205,0,5,12,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2255,202,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,66,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,7,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,61,0,58,0,0,0,31,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,27,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,53,0,1,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,74,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1254,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,517,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,482,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,84,0,39,0,0,0,0,3,23,6,94,0,0,0,0,1,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,119,0,0,0,65,0,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,223,0,0,799,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,191,0,1,0,0,2,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,283,14,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,76,2,0,0,91,0,266,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +4,0,0,6,0,41,20,0,45,4,5,0,0,2,8,0,810,0,6,1,0,0,0,9,0,12,9,0,7,0,2,0,0,0,5,5767,41,32,0,0,35,0,1,0,1,0,0,1,0,0,0,0,4,341,0,0,0,0,0,1,0,0,0,0,0,8,0,0,147745,41,921,0,7,0,0,0,0,0,30,0,0,0,0,0,9,21,25023,0,0,5,0,0,0,0,0,97,5,2,0,0,2,0,903,0,5,0,0,5511,0,0,0,0,16,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,20927,0,53,0,0,0,6,19,289,1601,20913,0,0,0,0,1,0,3,0,0,0,0,0,0,917,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,37,18,302,6,0,0,288,0,387,0,0,0,125,16,0,0,0,0,0,0,0,0,0,896,1,0,0,0,10,0,0,0,0,1,141,18,0,0,1,0,0,0,0,0,4231,1,0,1134,17,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,17,363,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,16,0,0,0,0,1,46,213,0,16,14,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2233,92,3 +7,0,0,5,0,41,21,0,42,0,4,0,0,2,12,0,767,0,6,1,0,0,0,8,0,10,0,0,8,0,2,0,0,0,6,5870,41,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,2,389,0,0,0,0,0,1,0,0,0,0,0,2,0,0,139827,41,873,0,7,0,0,0,0,0,32,0,0,0,0,0,8,18,23834,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,858,0,0,0,0,5933,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,19531,0,55,0,0,0,2,5,290,1633,19523,0,0,0,0,1,0,3,0,0,0,0,0,0,912,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,333,5,0,0,301,0,427,0,0,0,141,29,0,0,0,0,0,0,0,0,0,854,1,0,0,0,9,0,0,0,0,2,151,19,0,0,1,0,0,0,0,0,6819,1,0,1134,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,362,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,7,0,0,0,2,1,47,224,0,8,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3042,174,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1311,10,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,530,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,40,0,0,0,0,3,27,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,81,2,0,0,127,0,121,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,227,0,0,810,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,203,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,290,12,3 +4,0,0,5,0,38,21,0,43,0,4,0,0,2,7,0,701,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5706,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,336,0,0,0,0,0,1,0,0,0,0,0,2,0,0,116963,38,805,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,19968,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,769,0,0,0,0,5771,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,15787,0,69,0,0,0,6,9,284,1524,15770,0,0,0,0,1,0,3,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,623,5,0,0,280,0,941,0,0,0,124,85,0,0,0,0,0,0,0,0,0,784,1,0,0,0,9,0,0,0,0,4,136,19,0,0,1,0,0,0,0,0,8923,1,0,965,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,195,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3241,146,3 +0,0,0,3,0,10,2,0,15,2,3,0,0,0,5,0,14,0,7,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,10,6,0,0,12,0,3,0,1,0,0,3,0,0,0,0,0,112,0,0,0,0,0,1,0,0,0,0,0,5,0,0,3640,10,61,0,1,0,0,0,0,0,16,0,0,0,1,0,1,8,966,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,21,0,3,0,0,250,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,338,0,41,0,0,0,0,3,25,10,355,0,0,0,0,1,0,0,0,0,0,0,0,0,861,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,6,114,3,0,0,112,0,110,0,0,0,49,7,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,0,92,33,0,0,0,0,0,0,0,0,473,0,0,1407,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,204,0,1,0,0,1,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,629,15,3 +2,0,0,5,0,36,21,0,42,0,4,0,0,2,7,0,752,0,7,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5706,36,58,0,0,22,0,0,0,1,0,0,1,0,0,0,0,1,279,0,0,0,0,0,1,0,0,0,0,0,2,0,0,131172,36,851,0,2,0,0,0,0,0,32,0,0,0,0,0,8,17,21360,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,811,0,0,0,0,3846,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,20065,0,47,0,0,0,0,3,287,781,20046,0,0,0,0,1,0,3,0,0,0,0,0,0,768,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,1266,5,0,0,1271,0,517,0,0,0,118,16,0,0,0,0,0,0,0,0,0,835,1,0,0,0,9,0,0,0,0,1,1127,19,0,0,1,0,0,0,0,0,3661,1,0,389,16,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,1,0,0,0,0,1,37,203,0,3,12,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1385,97,3 +1,0,0,6,0,33,7,0,35,0,5,0,0,7,6,0,526,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,33,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,178,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18990,33,594,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4379,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,585,0,0,1,0,2803,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,676,0,46,0,0,0,1,4,249,1159,663,0,0,0,0,1,0,3,0,0,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,182,6,0,0,199,0,269,0,0,0,58,5,0,0,0,0,0,0,0,0,0,592,1,0,0,0,10,0,0,0,0,0,116,15,0,0,6,0,0,0,0,0,3348,1,0,821,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,34,112,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1912,71,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,53,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +4,0,0,3,0,12,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,36,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,5,0,0,325,12,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,191,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,38,0,0,0,0,3,27,7,60,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,94,3,0,0,103,0,205,0,0,0,42,15,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,97,20,0,0,0,0,0,0,0,0,79,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,138,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,12,3 +1,0,0,6,0,35,7,0,35,0,5,0,0,7,6,0,556,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,182,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18754,35,624,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4411,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,615,0,0,1,0,2728,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,734,0,47,0,0,0,1,4,260,1159,720,0,0,0,0,1,0,3,0,0,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,188,6,0,0,204,0,270,0,0,0,58,5,0,0,0,0,0,0,0,0,0,622,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3346,1,0,824,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,111,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1918,75,3 +4,0,0,5,0,36,21,0,43,0,4,0,0,2,7,0,754,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5706,36,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,315,0,0,0,0,0,1,0,0,0,0,0,2,0,0,157441,36,850,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,26894,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,813,0,0,0,0,5169,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,22642,0,64,0,0,0,0,3,285,1595,22631,0,0,0,0,1,0,3,0,0,0,0,0,0,820,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,325,5,0,0,274,0,871,0,0,0,115,18,0,0,0,0,0,0,0,0,0,837,1,0,0,0,9,0,0,0,0,0,134,19,0,0,1,0,0,0,0,0,8631,1,0,1119,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,37,246,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3234,83,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,7,0,0,215,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,137,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,33,0,0,0,2,4,26,6,40,0,0,0,0,1,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,60,3,0,0,70,0,86,0,0,0,39,1,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,95,26,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,37,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +10,0,0,5,0,41,17,0,45,0,4,0,0,2,14,0,820,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,6,5022,41,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,366,0,0,0,0,0,1,0,0,0,0,0,2,0,0,133981,41,934,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,23393,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,950,0,0,0,0,3560,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,12,12,12,0,0,0,19430,0,56,0,0,0,8,16,286,1259,19423,0,0,0,0,1,0,3,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,303,5,0,0,286,0,429,0,0,0,125,15,0,0,0,0,0,0,0,0,0,908,1,0,0,0,9,0,0,0,0,2,146,17,0,0,1,0,0,0,0,0,6509,1,0,795,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,10,0,0,0,2,1,47,181,0,20,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2913,272,3 +1,0,0,6,0,34,7,0,34,0,5,0,0,7,6,0,507,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,175,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18296,34,574,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4341,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,566,0,0,1,0,2882,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,665,0,45,0,0,0,1,4,256,1158,651,0,0,0,0,1,0,3,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,187,6,0,0,201,0,270,0,0,0,58,8,0,0,0,0,0,0,0,0,0,572,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3259,1,0,840,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,108,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1911,78,3 +2,0,0,2,0,16,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,16,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2150,16,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,857,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,428,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,251,0,33,0,0,0,8,19,33,612,260,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,113,0,178,0,0,0,45,9,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,96,31,0,0,0,0,0,0,0,0,450,0,0,778,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,4,0,0,0,0,1,19,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,444,8,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,42,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,480,25,27,0,0,0,0,0,0,0,2,0,0,0,0,0,7,11,63,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,561,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,28,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1157,3,0,0,1141,0,368,0,0,0,14,10,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1160,9,0,0,0,0,0,0,0,0,106,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,32,3 +4,0,0,5,0,39,21,0,44,0,4,0,0,2,7,0,755,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,39,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,335,0,0,0,0,0,1,0,0,0,0,0,2,0,0,112670,39,860,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,19304,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,823,0,0,0,0,5727,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15039,0,71,0,0,0,6,9,288,1616,15022,0,0,0,0,1,0,3,0,0,0,0,0,0,813,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,706,5,0,0,290,0,948,0,0,0,131,84,0,0,0,0,0,0,0,0,0,839,1,0,0,0,9,0,0,0,0,4,144,19,0,0,1,0,0,0,0,0,9873,1,0,1122,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,12,0,0,0,6,1,43,221,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3643,150,3 +0,0,0,3,0,9,2,0,7,0,3,0,0,0,3,0,14,0,6,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,2,0,1,0,0,2,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,581,9,32,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,164,0,0,1,0,0,0,0,0,7,0,4,0,0,2,0,8,0,1,0,0,120,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,20,0,0,0,0,3,23,4,49,0,0,0,0,1,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,71,3,0,0,87,0,99,0,0,0,34,4,0,0,0,0,0,0,0,0,0,35,1,0,0,0,1,0,0,0,0,0,92,23,0,0,0,0,0,0,0,0,36,0,0,368,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,105,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,9,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,231,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,136,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,59,3,0,0,74,0,68,0,0,0,43,5,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,36,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1346,9,58,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,542,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,39,0,0,0,0,3,23,6,100,0,0,0,0,1,0,0,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,125,0,118,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,227,0,0,824,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,190,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,289,15,3 +1,0,0,6,0,34,7,0,35,0,5,0,0,7,6,0,541,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,181,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18867,34,609,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4328,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,600,0,0,1,0,3116,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,645,0,48,0,0,0,1,4,256,1159,631,0,0,0,0,1,0,3,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,188,6,0,0,201,0,270,0,0,0,58,11,0,0,0,0,0,0,0,0,0,607,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3320,1,0,825,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,107,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1862,71,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1384,9,58,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,568,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,39,0,0,0,0,3,23,6,101,0,0,0,0,1,0,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,125,0,120,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,827,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,193,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,291,13,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,61,0,0,0,0,0,1,0,0,0,0,0,2,0,0,460,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,60,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,464,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,28,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1169,3,0,0,1162,0,298,0,0,0,14,6,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1181,9,0,0,0,0,0,0,0,0,97,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,30,3 +4,0,0,5,0,35,13,0,42,0,4,0,0,2,7,0,700,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5383,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,347,0,0,0,0,0,1,0,0,0,0,0,2,0,0,108799,35,779,0,1,0,0,0,0,0,24,0,0,0,0,0,8,18,18610,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,751,0,0,0,0,4617,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,14653,0,65,0,0,0,0,3,278,1584,14642,0,0,0,0,1,0,3,0,0,0,0,0,0,589,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,368,5,0,0,260,0,864,0,0,0,111,16,0,0,0,0,0,0,0,0,0,774,1,0,0,0,9,0,0,0,0,0,137,15,0,0,1,0,0,0,0,0,7900,1,0,1123,12,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,12,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,196,0,2,12,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3015,83,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,126,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,124,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,33,0,0,0,2,3,26,6,39,0,0,0,0,1,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,72,0,90,0,0,0,41,1,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,35,3 +5,0,0,6,0,36,6,0,42,1,5,0,0,6,4,0,679,0,6,2,0,0,0,8,0,10,0,0,7,0,2,0,0,0,1,898,36,6,3,0,44,0,1,0,1,0,0,1,0,0,0,0,3,166,0,0,0,0,0,1,0,0,0,0,0,2,0,0,17881,36,740,0,6,0,0,0,0,0,12,0,0,0,0,0,8,18,4145,0,0,1,0,0,0,0,0,196,20,2,0,0,2,0,721,0,0,1,0,2764,0,0,0,0,1,2,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,687,0,34,0,0,0,4,7,259,1185,668,0,0,0,0,1,0,5,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,88,19,184,6,0,0,198,0,305,0,0,0,48,14,0,0,0,0,0,0,0,0,0,748,1,0,0,0,10,0,0,0,0,2,119,9,0,0,6,0,0,0,0,0,4140,1,0,775,6,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,6,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,7,0,0,0,0,1,37,136,0,7,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1835,33,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1258,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,579,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,90,0,156,0,0,0,27,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,229,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,149,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,123,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,127,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,36,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,7,0,0,85,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,18,0,5,0,0,114,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,53,3,0,0,62,0,100,0,0,0,32,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,19,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,17,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,10,3 +2,0,0,3,0,12,3,0,16,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,44,0,0,10,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,3,0,0,459,12,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,29,0,1,0,0,535,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,40,0,0,0,0,3,30,6,59,0,0,0,0,1,0,0,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,4,125,3,0,0,101,0,311,0,0,0,37,25,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,95,20,0,0,0,0,0,0,0,0,87,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,145,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,93,26,3 +2,0,0,3,0,9,2,0,18,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,2,0,0,881,9,42,0,0,0,0,0,0,0,6,0,0,0,0,0,1,6,435,0,0,1,0,0,0,0,0,8,0,1,0,0,2,0,15,0,0,0,0,90,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,32,0,24,0,0,0,0,3,23,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,75,4,0,0,78,0,106,0,0,0,18,2,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,91,8,0,0,0,0,0,0,0,0,781,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,98,0,1,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,226,17,3 +3549,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,119,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1844,11,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,618,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,172,0,64,0,0,0,0,3,31,9,171,0,0,0,0,1,0,0,0,0,0,0,0,0,9938,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,100,2,0,0,131,0,240,0,0,0,61,4,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,91,43,0,0,0,0,0,0,0,0,258,0,0,946,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,375,48,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,1,0,0,22,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,58,0,62,0,0,0,28,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,27,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,68,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,5,3 +0,0,0,4,0,36,28,0,38,0,2,0,0,2,2,0,709,0,6,3,0,0,0,6,0,10,0,0,4,0,1,0,0,0,3,1581,36,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,1,215,0,0,0,0,0,1,0,0,0,0,0,3,0,0,52141,36,817,0,2,0,0,0,0,0,37,0,0,0,0,0,8,18,8118,0,0,3,0,0,0,0,0,89,5,4,0,0,2,0,738,0,0,0,0,5396,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,6048,0,51,0,0,0,0,3,278,1191,6027,0,0,0,0,1,0,4,0,0,0,0,0,0,1219,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,214,4,0,0,262,0,320,0,0,0,111,6,0,0,0,0,0,0,0,0,0,787,1,0,0,0,9,0,0,0,0,1,119,34,0,0,0,0,0,0,0,0,2802,1,0,761,16,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,1,0,0,0,0,1,39,263,0,3,12,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1305,41,3 +3549,0,0,2,0,12,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,12,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,140,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2089,12,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,686,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,224,0,92,0,0,0,0,3,35,9,223,0,0,0,0,1,0,0,0,0,0,0,0,0,9773,0,0,0,0,0,0,0,0,0,0,0,0,6,0,9,0,0,0,0,0,0,8,3,121,2,0,0,134,0,279,0,0,0,61,12,0,0,0,0,0,42,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,279,0,0,942,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,12,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,450,47,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,57,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,48,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,77,0,0,0,0,0,1,0,0,0,0,0,2,0,0,484,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,58,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,560,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,31,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1073,3,0,0,1052,0,400,0,0,0,14,9,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1071,9,0,0,0,0,0,0,0,0,108,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,36,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,127,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,172,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,58,3,0,0,72,0,90,0,0,0,41,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,36,3 +1,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,173,10,37,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,33,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,74,2,0,0,109,0,266,0,0,0,41,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,37,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,143,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,64,23,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,56,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,77,0,0,0,0,0,1,0,0,0,0,0,2,0,0,527,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,78,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,590,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,28,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1054,3,0,0,1033,0,480,0,0,0,14,10,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1052,9,0,0,0,0,0,0,0,0,130,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,40,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,147,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,92,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,11,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,123,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,137,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,72,0,90,0,0,0,41,9,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,70,0,0,0,0,0,1,0,0,0,0,0,2,0,0,489,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,74,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,532,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1055,3,0,0,1050,0,288,0,0,0,14,6,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1069,9,0,0,0,0,0,0,0,0,105,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,30,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,1,0,0,67,10,20,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,6,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,20,0,0,0,0,3,24,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,38,2,0,0,73,0,76,0,0,0,43,1,0,0,0,0,0,0,0,0,0,23,1,0,0,0,2,0,0,0,0,0,92,36,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,74,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,6,3 +16,0,0,6,0,40,15,0,42,6,5,0,0,2,12,0,708,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4925,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,349,0,0,0,0,0,1,0,0,0,0,0,10,0,0,112700,40,811,0,9,0,0,0,0,0,26,0,0,0,0,0,8,18,19837,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,810,0,7,0,0,3857,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,16043,0,54,0,0,0,8,20,287,1242,16032,0,0,0,0,1,0,3,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,319,6,0,0,275,0,409,0,0,0,113,26,0,0,0,0,0,0,0,0,0,790,1,0,0,0,9,0,0,0,0,1,141,16,0,0,1,0,0,0,0,0,4641,1,0,789,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,13,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,19,0,0,0,0,1,44,202,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2065,140,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,7,0,0,210,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,150,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,58,3,0,0,69,0,80,0,0,0,39,4,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,37,3 +3,0,0,2,0,12,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,12,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1222,12,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,529,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,94,0,28,0,0,0,6,15,32,21,109,0,0,0,0,1,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,85,0,163,0,0,0,25,2,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,92,15,0,0,0,0,0,0,0,0,258,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,6,0,0,0,0,1,14,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,273,101,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,68,0,0,0,0,0,1,0,0,0,0,0,2,0,0,458,25,27,0,0,0,0,0,0,0,2,0,0,0,0,0,7,11,57,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,479,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1031,3,0,0,1025,0,293,0,0,0,14,8,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1044,9,0,0,0,0,0,0,0,0,93,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,29,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,7,0,0,216,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,138,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,33,0,0,0,2,4,26,7,40,0,0,0,0,1,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,59,3,0,0,69,0,88,0,0,0,39,4,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,37,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,77,2,0,0,91,0,262,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,28,3 +1,0,0,6,0,34,7,0,33,0,5,0,0,7,6,0,473,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,181,0,0,0,0,0,1,0,0,0,0,0,5,0,0,17816,34,539,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4141,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,532,0,0,1,0,2819,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,693,0,46,0,0,0,1,4,256,1157,679,0,0,0,0,1,0,3,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,188,6,0,0,201,0,270,0,0,0,58,5,0,0,0,0,0,0,0,0,0,537,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3071,1,0,836,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,105,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1879,75,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1257,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,546,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,29,0,0,0,0,3,31,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,94,2,0,0,94,0,175,0,0,0,31,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,17,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,262,150,3 +4,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,0,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,195,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,134,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,4,24,6,35,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,58,3,0,0,59,0,91,0,0,0,29,3,0,0,0,0,0,0,0,0,0,31,0,0,0,0,1,0,0,0,0,1,92,22,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,34,3 +10,0,0,5,0,38,21,0,44,0,4,0,0,2,13,0,768,0,6,1,0,0,0,8,0,11,6,0,6,0,3,0,0,0,4,5868,38,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,369,0,0,0,0,0,1,0,0,0,0,0,2,0,0,136393,38,879,0,7,0,0,0,0,0,32,0,0,0,0,0,8,18,23159,0,0,4,0,0,0,0,0,94,5,2,0,0,2,0,875,0,0,0,0,5508,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,18959,0,46,0,0,0,6,14,285,1620,18945,0,0,0,0,1,0,3,0,0,0,0,0,0,867,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,287,5,0,0,286,0,402,0,0,0,129,26,0,0,0,0,0,0,0,0,0,858,1,0,0,0,9,0,0,0,0,2,142,19,0,0,1,0,0,0,0,0,6038,1,0,1122,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,364,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,11,0,0,0,0,1,42,206,0,14,12,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2964,139,3 +4,0,0,3,0,12,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,52,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,5,0,0,408,12,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,58,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,508,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,38,0,0,0,0,3,27,7,60,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,105,3,0,0,101,0,281,0,0,0,40,15,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,95,20,0,0,0,0,0,0,0,0,95,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,145,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,91,18,3 +0,0,0,7,0,42,16,0,56,0,10,0,0,6,8,0,803,0,7,1,0,0,0,8,0,10,9,0,11,0,5,2,0,0,4,945,42,6,0,0,53,0,2,0,1,0,0,12,0,0,0,0,7,295,0,0,0,0,0,1,0,0,0,0,0,4,0,0,24046,42,994,0,15,0,0,0,0,0,57,0,0,0,0,0,8,61,6131,0,0,4,0,0,0,0,0,237,20,21,1,0,2,0,924,0,1,21,0,3806,0,0,0,0,0,0,2,0,4,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,618,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,12,12,12,0,0,0,3664,0,122,0,0,0,14,21,409,612,3629,0,0,0,0,1,0,4,0,0,0,0,0,0,4034,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,1,0,84,17,298,7,0,0,404,0,388,0,0,0,233,26,0,0,0,0,0,0,0,0,0,906,1,0,0,0,9,0,0,0,0,2,126,154,0,0,36,0,0,0,0,0,6794,1,0,3596,12,0,1,1,1,0,0,0,19,0,0,0,10,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,28,0,0,0,0,1,46,506,0,25,12,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6815,110,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,456,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,64,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,442,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1043,3,0,0,1038,0,285,0,0,0,14,8,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1057,9,0,0,0,0,0,0,0,0,97,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,29,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,77,2,0,0,91,0,265,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,26,3 +10,0,0,5,0,41,21,0,44,0,4,0,0,2,14,0,746,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,41,154,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,447,0,0,0,0,0,1,0,0,0,0,0,2,0,0,137578,41,870,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,23483,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,884,0,0,0,0,5400,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19403,0,53,0,0,0,8,17,290,1634,19393,0,0,0,0,1,0,3,0,0,0,0,0,0,940,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,305,5,0,0,298,0,420,0,0,0,138,17,0,0,0,0,0,0,0,0,0,837,1,0,0,0,9,0,0,0,0,2,148,19,0,0,1,0,0,0,0,0,6741,1,0,1146,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,213,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3222,168,3 +0,0,0,3,0,11,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1056,11,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,475,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,24,0,0,0,0,3,28,6,55,0,0,0,0,1,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,74,3,0,0,83,0,153,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,91,16,0,0,0,0,0,0,0,0,251,0,0,771,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,112,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,65,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,85,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,102,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,3,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,46,3,0,0,57,0,88,0,0,0,27,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,10,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,9,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,5,0,0,79,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,81,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,38,3,0,0,58,0,59,0,0,0,28,1,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,596,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,6,3 +4,0,0,6,0,38,7,0,34,4,5,0,0,2,9,0,534,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,6,898,38,36,0,0,38,0,3,0,1,0,0,3,0,0,0,0,4,173,1,0,0,0,0,1,0,0,0,0,0,9,0,0,32515,38,618,0,7,0,0,0,0,0,22,0,0,0,0,0,8,20,6501,0,0,6,0,0,0,0,0,94,5,6,0,0,2,0,604,0,6,0,0,3036,0,0,0,0,15,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,3096,0,69,0,0,0,6,19,244,1134,3090,0,0,0,0,1,0,4,0,0,0,0,0,0,417,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,19,218,6,0,0,217,0,336,0,0,0,76,11,0,0,0,0,0,0,0,0,0,597,1,0,0,0,9,0,0,0,0,1,122,16,0,0,1,0,0,0,0,0,3138,1,0,864,5,0,1,1,1,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,5,363,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,16,0,0,0,0,1,44,122,0,17,12,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1802,67,3 +16,0,0,6,0,39,17,0,48,6,5,0,0,2,12,0,870,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4625,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,356,0,0,0,0,0,1,0,0,0,0,0,10,0,0,136166,39,982,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,23705,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,974,0,7,0,0,3672,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,19815,0,53,0,0,0,6,19,281,1260,19805,0,0,0,0,1,0,3,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,276,6,0,0,276,0,387,0,0,0,114,11,0,0,0,0,0,0,0,0,0,960,1,0,0,0,9,0,0,0,0,1,140,17,0,0,1,0,0,0,0,0,5041,1,0,783,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,216,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2011,132,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,42,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,500,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,66,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,571,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,105,3,0,0,83,0,352,0,0,0,13,16,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,105,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,29,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,67,0,0,0,0,0,1,0,0,0,0,0,2,0,0,481,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,66,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,537,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,32,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1014,3,0,0,1008,0,297,0,0,0,14,9,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1027,9,0,0,0,0,0,0,0,0,101,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,29,3 +3,0,0,2,0,13,3,0,10,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1221,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,545,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,30,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,74,2,0,0,88,0,154,0,0,0,25,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +1,0,0,3,0,11,3,0,16,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,50,0,0,10,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,3,0,0,342,11,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,29,0,1,0,0,246,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,37,0,0,0,0,3,26,6,58,0,0,0,0,1,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,4,102,3,0,0,98,0,298,0,0,0,37,12,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,94,20,0,0,0,0,0,0,0,0,93,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,137,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,86,15,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,103,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,156,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,3,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,57,0,67,0,0,0,27,8,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,10,3 +2,0,0,3,0,24,4,0,12,0,2,0,0,2,2,0,18,0,7,2,0,0,0,6,0,8,0,0,3,0,2,0,0,0,1,0,24,6,0,0,18,0,3,0,1,0,0,3,0,0,0,0,2,109,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1625,24,59,0,3,0,0,0,0,0,19,0,0,0,0,0,7,19,639,0,0,1,0,0,0,0,0,80,5,5,0,0,2,0,21,0,0,0,0,386,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,129,0,50,0,0,0,2,4,144,11,123,0,0,0,0,1,0,2,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,34,10,110,3,0,0,128,0,269,0,0,0,37,4,0,0,0,0,0,0,0,0,0,47,1,0,0,0,8,0,0,0,0,1,104,23,0,0,0,0,0,0,0,0,844,0,0,805,3,0,1,1,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,3,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,3,0,0,0,0,1,25,165,0,4,9,0,1,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,351,32,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,15,2,0,8,1,3,0,0,0,4,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,6,0,15,6,0,0,18,0,0,0,1,0,0,5,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,4,0,0,3375,15,57,0,1,0,0,0,0,0,21,0,0,0,0,0,1,7,667,0,0,6,0,0,0,0,0,13,0,8,0,0,2,0,10,0,2,0,0,425,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,474,0,71,0,0,0,0,3,29,209,485,0,0,0,0,1,0,0,0,0,0,0,0,0,981,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,5,119,3,0,0,130,0,194,0,0,0,73,11,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,97,41,0,0,0,0,0,0,0,0,765,0,0,809,0,0,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,21,252,0,1,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,414,50,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,54,9,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,4,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,4,0,27,4,0,20,0,3,0,0,2,3,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,3,0,27,6,0,0,25,0,0,0,1,0,0,2,0,0,0,0,1,144,0,0,0,0,0,1,0,0,0,0,0,4,0,0,620,27,53,0,1,0,0,0,0,0,12,0,0,0,0,0,7,14,109,0,0,3,0,0,0,0,0,73,5,3,0,0,2,0,30,0,1,0,0,383,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,82,0,56,0,0,0,0,3,179,13,91,0,0,0,0,1,0,3,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,11,117,4,0,0,139,0,184,0,0,0,38,4,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,0,110,19,0,0,0,0,0,0,0,0,71,0,0,32,2,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,0,0,1,30,168,0,2,8,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,164,28,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,122,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,134,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,58,3,0,0,72,0,90,0,0,0,41,1,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,601,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,54,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +4,0,0,3,0,9,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,4,0,0,80,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,69,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,33,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,5,39,3,0,0,60,0,61,0,0,0,29,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,92,25,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,29,3 +4,0,0,5,0,36,21,0,43,0,4,0,0,2,7,0,754,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,36,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,280,0,0,0,0,0,1,0,0,0,0,0,2,0,0,114395,36,850,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19635,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,813,0,0,0,0,5199,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15411,0,64,0,0,0,0,3,285,1597,15400,0,0,0,0,1,0,3,0,0,0,0,0,0,828,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,374,5,0,0,277,0,871,0,0,0,118,17,0,0,0,0,0,0,0,0,0,837,1,0,0,0,9,0,0,0,0,0,137,19,0,0,1,0,0,0,0,0,8197,1,0,1142,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,37,235,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3107,84,3 +4,0,0,5,0,38,21,0,42,0,4,0,0,2,8,0,670,0,6,1,0,0,0,8,0,10,0,0,6,0,4,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,331,0,0,0,0,0,1,0,0,0,0,0,2,0,0,123479,38,771,0,7,0,0,0,0,0,32,0,0,0,0,0,8,18,21075,0,0,4,0,0,0,0,0,102,5,2,0,0,2,0,740,0,0,0,0,5370,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,17076,0,73,0,0,0,6,9,284,1531,17059,0,0,0,0,1,0,3,0,0,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,604,5,0,0,286,0,958,0,0,0,130,88,0,0,0,0,0,0,0,0,0,753,1,0,0,0,9,0,0,0,0,4,142,19,0,0,1,0,0,0,0,0,10383,1,0,998,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,9,0,0,0,0,1,42,219,0,8,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3776,154,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1029,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,471,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,108,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,23,0,0,0,0,3,24,6,51,0,0,0,0,1,0,0,0,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,72,3,0,0,80,0,153,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,249,0,0,764,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,112,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,229,65,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,79,2,0,0,94,0,271,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,105,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,63,27,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1069,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,483,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,108,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,22,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,68,3,0,0,80,0,151,0,0,0,27,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,252,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,112,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,64,3 +5,0,0,4,0,36,13,0,35,0,3,0,0,2,3,0,633,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2507,36,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,251,0,0,0,0,0,1,0,0,0,0,0,4,0,0,72282,36,721,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,13072,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,671,0,1,0,0,3255,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,9285,0,45,0,0,0,2,7,258,1183,9262,0,0,0,0,1,0,3,0,0,0,0,0,0,647,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,225,4,0,0,275,0,361,0,0,0,126,9,0,0,0,0,0,0,0,0,0,695,1,0,0,0,10,0,0,0,0,1,129,36,0,0,0,0,0,0,0,0,4169,1,0,1381,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,2,0,0,0,0,1,40,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1925,37,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,67,0,0,0,0,0,1,0,0,0,0,0,2,0,0,475,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,72,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,514,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,32,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1028,3,0,0,1020,0,305,0,0,0,14,8,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1039,9,0,0,0,0,0,0,0,0,102,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,31,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,259,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,113,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,27,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,77,2,0,0,91,0,266,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,105,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,30,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,251,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,26,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,497,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,73,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,535,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1143,3,0,0,1135,0,305,0,0,0,14,9,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1154,9,0,0,0,0,0,0,0,0,105,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,29,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1212,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,540,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,31,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,74,2,0,0,88,0,153,0,0,0,25,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,270,150,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1223,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,544,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,90,0,155,0,0,0,27,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,149,3 +4,0,0,3,0,9,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,84,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,90,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,33,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,5,54,3,0,0,54,0,54,0,0,0,23,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,92,19,0,0,0,0,0,0,0,0,596,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,14,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,30,3 +1,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,173,10,37,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,35,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,74,2,0,0,109,0,263,0,0,0,41,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,37,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,137,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,68,24,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,62,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,9,2,0,10,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,912,9,35,0,2,0,0,0,0,0,6,0,0,0,0,0,1,6,450,0,0,1,0,0,0,0,0,9,0,1,0,0,2,0,10,0,0,0,0,91,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,37,0,22,0,0,0,0,3,23,5,43,0,0,0,0,1,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,75,0,124,0,0,0,22,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,91,12,0,0,0,0,0,0,0,0,206,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,1,0,0,0,0,1,10,81,0,2,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,220,8,3 +0,0,0,3,0,25,4,0,20,0,2,0,0,2,2,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,1,0,25,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,1,140,0,0,0,0,0,1,0,0,0,0,0,2,0,0,589,25,52,0,1,0,0,0,0,0,12,0,0,0,0,0,7,14,100,0,0,1,0,0,0,0,0,73,5,3,0,0,2,0,28,0,0,0,0,400,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,76,0,45,0,0,0,0,3,177,10,80,0,0,0,0,1,0,3,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,116,3,0,0,133,0,166,0,0,0,32,1,0,0,0,0,0,0,0,0,0,53,1,0,0,0,8,0,0,0,0,0,106,21,0,0,0,0,0,0,0,0,68,0,0,35,2,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,151,0,2,8,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,144,29,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1075,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,472,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,25,0,0,0,0,3,24,6,56,0,0,0,0,1,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,71,3,0,0,80,0,154,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,253,0,0,779,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,105,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,64,3 +6,0,0,6,0,41,8,0,40,4,5,0,0,2,9,0,494,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,7,898,41,36,0,0,39,0,3,0,1,0,0,3,0,0,0,0,4,154,1,0,0,0,0,1,0,0,0,0,0,9,0,0,30914,41,584,0,7,0,0,0,0,0,22,0,0,0,0,0,8,20,6198,0,0,7,0,0,0,0,0,94,5,5,0,0,2,0,572,0,6,0,0,2958,0,0,0,0,24,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,2779,0,72,0,0,0,6,19,253,1133,2774,0,0,0,0,1,0,4,0,0,0,0,0,0,506,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,19,240,6,0,0,244,0,342,0,0,0,89,9,0,0,0,0,0,0,0,0,0,564,1,0,0,0,9,0,0,0,0,1,126,25,0,0,1,0,0,0,0,0,3069,1,0,859,5,0,1,1,1,0,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,5,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,16,0,0,0,0,1,48,156,0,17,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1793,188,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,66,0,55,0,0,0,36,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,32,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,69,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,127,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,20,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,113,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,33,0,0,0,2,3,26,6,39,0,0,0,0,1,0,0,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,72,0,90,0,0,0,41,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,36,3 +16,0,0,6,0,39,17,0,46,6,5,0,0,2,12,0,835,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4944,39,166,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,378,0,0,0,0,0,1,0,0,0,0,0,10,0,0,145877,39,946,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,25315,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,939,0,7,0,0,3748,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,21342,0,51,0,0,0,8,20,281,1262,21332,0,0,0,0,1,0,3,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,300,6,0,0,280,0,554,0,0,0,118,25,0,0,0,0,0,0,0,0,0,923,1,0,0,0,9,0,0,0,0,1,144,17,0,0,1,0,0,0,0,0,5069,1,0,804,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,20,0,0,0,2,1,43,236,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2071,150,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1462,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,52,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,607,0,0,0,0,0,11,41,234,0,0,0,0,0,0,0,0,0,0,0,0,0,1634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,11,2,0,0,56,0,91,0,0,0,47,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,44,0,0,0,0,0,0,0,0,324,0,0,420,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,115,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1394,2,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,5,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,106,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1702,9,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,379,0,0,1,0,0,0,0,0,7,0,1,0,0,2,0,7,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,218,0,38,0,0,0,0,3,24,5,233,0,0,0,0,1,0,0,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,75,0,93,0,0,0,22,9,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,91,12,0,0,0,0,0,0,0,0,208,0,0,384,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,103,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,336,12,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1217,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,537,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,90,0,156,0,0,0,27,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,149,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,125,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,53,3,0,0,63,0,92,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,5,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +5,0,0,4,0,37,13,0,36,0,3,0,0,2,3,0,685,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2311,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,245,0,0,0,0,0,1,0,0,0,0,0,4,0,0,70163,37,774,0,2,0,0,0,0,0,29,0,0,0,0,0,9,23,12595,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,723,0,1,0,0,2931,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,8943,0,44,0,0,0,2,7,266,1182,8919,0,0,0,0,1,0,3,0,0,0,0,0,0,923,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,254,4,0,0,279,0,369,0,0,0,127,17,0,0,0,0,0,0,0,0,0,748,1,0,0,0,10,0,0,0,0,1,131,36,0,0,0,0,0,0,0,0,4138,1,0,1845,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1886,46,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,123,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,128,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,58,3,0,0,72,0,90,0,0,0,41,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,36,3 +5,0,0,3,0,12,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,36,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,5,0,0,315,12,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,55,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,180,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,40,0,0,0,0,3,27,7,60,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,6,94,3,0,0,101,0,197,0,0,0,40,9,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,95,20,0,0,0,0,0,0,0,0,79,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,134,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,92,12,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,214,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,140,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,92,0,0,0,33,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1207,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,529,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,30,0,0,0,0,3,31,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,81,2,0,0,91,0,172,0,0,0,25,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,94,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,73,0,4,0,0,2,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,7,0,0,211,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,142,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,61,3,0,0,71,0,86,0,0,0,40,4,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,96,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,37,3 +10,0,0,5,0,40,21,0,45,0,4,0,0,2,14,0,763,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5870,40,4591,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,415,0,0,0,0,0,1,0,0,0,0,0,2,0,0,132762,40,886,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,22676,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,899,0,0,0,0,5220,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18516,0,53,0,0,0,8,17,283,1636,18507,0,0,0,0,1,0,3,0,0,0,0,0,0,912,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,301,5,0,0,295,0,410,0,0,0,137,22,0,0,0,0,0,0,0,0,0,855,1,0,0,0,9,0,0,0,0,2,146,19,0,0,1,0,0,0,0,0,11273,1,0,1126,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,12,0,0,0,2,1,46,198,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3226,161,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1211,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,534,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,74,2,0,0,88,0,153,0,0,0,25,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,149,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2158,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,866,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,253,0,36,0,0,0,8,19,29,615,264,0,0,0,0,1,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,180,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,449,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,449,10,3 +7,0,0,5,0,36,21,0,40,0,4,0,0,2,9,0,693,0,6,1,0,0,0,8,0,11,0,0,4,0,0,0,0,0,1,5868,36,44,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,381,0,0,0,0,0,1,0,0,0,0,0,2,0,0,144546,36,790,0,2,0,0,0,0,0,32,0,0,0,0,0,8,18,24579,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,769,0,0,0,0,4915,0,0,0,0,3,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,20529,0,43,0,0,0,0,3,285,1610,20514,0,0,0,0,1,0,3,0,0,0,0,0,0,869,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,292,5,0,0,277,0,442,0,0,0,117,22,0,0,0,0,0,0,0,0,0,775,1,0,0,0,9,0,0,0,0,1,137,19,0,0,1,0,0,0,0,0,7291,1,0,1143,16,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,1,0,0,0,0,1,37,230,0,3,12,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2801,64,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1296,10,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,515,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,40,0,0,0,0,3,27,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,81,2,0,0,127,0,120,0,0,0,65,0,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,227,0,0,815,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,191,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,289,14,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,133,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,93,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,782,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5870,41,166,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,381,0,0,0,0,0,1,0,0,0,0,0,2,0,0,131090,41,902,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,22333,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,915,0,0,0,0,5712,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18188,0,54,0,0,0,8,19,290,1638,18178,0,0,0,0,1,0,3,0,0,0,0,0,0,920,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,308,5,0,0,299,0,512,0,0,0,139,18,0,0,0,0,0,0,0,0,0,874,1,0,0,0,9,0,0,0,0,2,149,19,0,0,1,0,0,0,0,0,6863,1,0,1129,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,204,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3181,107,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,40,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,71,0,0,0,0,0,1,0,0,0,0,0,2,0,0,515,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,77,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,567,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,102,3,0,0,83,0,317,0,0,0,13,14,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,112,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,28,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,133,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,250,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,113,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,25,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,77,0,0,0,0,0,1,0,0,0,0,0,2,0,0,487,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,66,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,507,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,32,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,91,3,0,0,83,0,292,0,0,0,13,8,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,99,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,25,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,3,3 +10,0,0,5,0,42,21,0,45,0,4,0,0,2,14,0,802,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5870,42,156,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,363,0,0,0,0,0,1,0,0,0,0,0,2,0,0,138355,42,925,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,23575,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,938,0,0,0,0,5528,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19353,0,58,0,0,0,8,17,294,1632,19343,0,0,0,0,1,0,3,0,0,0,0,0,0,896,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,327,5,0,0,305,0,442,0,0,0,142,18,0,0,0,0,0,0,0,0,0,894,1,0,0,0,9,0,0,0,0,2,153,19,0,0,1,0,0,0,0,0,6982,1,0,1116,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,12,0,0,0,2,1,48,198,0,22,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3223,166,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,8,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1199,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,528,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,31,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,88,0,154,0,0,0,25,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,271,149,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,0,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1272,13,36,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,558,0,0,3,0,0,0,0,0,10,0,1,0,0,2,0,10,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,91,2,0,0,91,0,179,0,0,0,32,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,16,78,0,2,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,258,144,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,249,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,618,0,0,0,0,0,15,41,232,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,21,2,0,0,60,0,90,0,0,0,48,3,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,322,0,0,388,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,114,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1413,4,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1050,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,471,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,253,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,23,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,73,3,0,0,84,0,155,0,0,0,31,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,94,16,0,0,0,0,0,0,0,0,251,0,0,771,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,104,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,230,272,3 +1,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,173,11,37,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,33,0,0,0,0,3,30,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,77,2,0,0,112,0,252,0,0,0,41,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,93,37,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,146,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,65,24,3 +0,0,0,3,0,11,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1078,11,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,475,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,26,0,0,0,0,3,28,6,57,0,0,0,0,1,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,74,3,0,0,83,0,154,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,91,16,0,0,0,0,0,0,0,0,253,0,0,779,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,108,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,245,64,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,127,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,126,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,34,0,0,0,2,3,26,6,39,0,0,0,0,1,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,35,3 +7,0,0,5,0,35,21,0,47,0,4,0,0,2,9,0,921,0,6,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5870,35,44,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,402,0,0,0,0,0,1,0,0,0,0,0,2,0,0,174926,35,1025,0,2,0,0,0,0,0,32,0,0,0,0,0,8,18,29599,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,997,0,0,0,0,5421,0,0,0,0,3,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,25427,0,43,0,0,0,0,3,281,1621,25412,0,0,0,0,1,0,3,0,0,0,0,0,0,852,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,306,5,0,0,280,0,432,0,0,0,123,30,0,0,0,0,0,0,0,0,0,1010,1,0,0,0,9,0,0,0,0,1,142,19,0,0,1,0,0,0,0,0,7854,1,0,1135,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,1,0,0,0,0,1,36,212,0,3,12,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2809,64,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1214,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,542,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,88,0,154,0,0,0,25,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,253,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,107,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,26,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1235,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,522,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,95,2,0,0,91,0,173,0,0,0,31,10,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,226,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,258,150,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2130,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,845,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,391,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,250,0,32,0,0,0,8,19,29,615,259,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,81,2,0,0,110,0,177,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,450,0,0,774,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,440,8,3 +10,0,0,5,0,36,17,0,46,0,4,0,0,2,16,0,776,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,3,5022,36,148,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,362,0,0,0,0,0,1,0,0,0,0,0,2,0,0,130107,36,890,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,22806,0,0,3,0,0,0,0,0,95,5,2,0,0,2,0,908,0,0,0,0,3543,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,18887,0,49,0,0,0,8,21,265,1260,18880,0,0,0,0,1,0,3,0,0,0,0,0,0,376,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,282,5,0,0,269,0,386,0,0,0,112,16,0,0,0,0,0,0,0,0,0,867,1,0,0,0,9,0,0,0,0,2,138,17,0,0,1,0,0,0,0,0,6523,1,0,804,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,19,0,0,0,0,1,39,180,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3135,142,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,53,0,0,0,28,6,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,263,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,26,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,12,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,12,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,146,12,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,23,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,31,0,0,0,0,3,34,4,45,0,0,0,0,1,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,81,2,0,0,98,0,268,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,94,18,0,0,0,0,0,0,0,0,28,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,12,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,65,27,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,7,0,0,214,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,174,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,60,3,0,0,70,0,86,0,0,0,39,9,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,95,26,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,37,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,42,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,574,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,74,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,544,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,51,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,164,3,0,0,83,0,395,0,0,0,13,10,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,110,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,55,3 +0,0,0,3,0,8,2,0,17,0,2,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,52,0,0,7,0,2,0,1,0,0,2,0,0,0,0,0,56,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1198,8,51,0,1,0,0,0,0,0,12,0,0,0,0,0,1,7,482,0,0,0,0,0,0,0,0,10,0,4,0,0,2,0,33,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,67,0,30,0,0,0,0,3,22,7,77,0,0,0,0,1,0,0,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,18,3,83,3,0,0,86,0,162,0,0,0,25,4,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,0,88,17,0,0,0,0,0,0,0,0,289,0,0,806,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,175,0,1,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,264,44,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1224,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,552,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,88,0,154,0,0,0,25,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,218,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,132,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,31,0,0,0,2,4,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,63,0,93,0,0,0,33,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,605,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,12,3 +0,0,0,3,0,11,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1085,11,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,472,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,165,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,24,0,0,0,0,3,28,6,57,0,0,0,0,1,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,73,3,0,0,83,0,160,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,91,16,0,0,0,0,0,0,0,0,254,0,0,784,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,105,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,243,64,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,31,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,80,2,0,0,94,0,273,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,62,27,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1208,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,535,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,31,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,88,0,154,0,0,0,25,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +0,0,0,3,0,10,2,0,5,4,3,0,0,0,7,0,14,0,6,2,0,0,0,0,0,0,3,0,1,0,2,0,1,0,2,0,10,6,0,0,14,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,7,0,0,103,10,36,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,4,0,0,2,0,0,0,0,0,10,0,0,0,0,2,0,36,0,5,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,18,0,26,0,0,0,2,8,24,12,25,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,56,3,0,0,42,0,95,0,0,0,12,5,0,0,0,0,0,0,0,0,0,37,0,0,0,0,2,0,0,0,0,2,92,4,0,0,0,0,0,0,0,0,28,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,4,0,0,0,0,1,12,3,0,6,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,10,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,59,0,0,0,0,0,1,0,0,0,0,0,2,0,0,455,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,55,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,464,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1161,3,0,0,1153,0,305,0,0,0,14,7,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1172,9,0,0,0,0,0,0,0,0,91,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,30,3 +1,0,0,6,0,33,7,0,34,0,5,0,0,7,6,0,493,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,33,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,177,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18368,33,560,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4239,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,552,0,0,1,0,2934,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,702,0,46,0,0,0,1,4,249,1158,689,0,0,0,0,1,0,3,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,185,6,0,0,199,0,268,0,0,0,58,4,0,0,0,0,0,0,0,0,0,558,1,0,0,0,10,0,0,0,0,0,116,15,0,0,6,0,0,0,0,0,3157,1,0,848,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,34,105,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1902,78,3 +0,0,0,2,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,1,0,0,63,10,20,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,6,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,21,0,0,0,0,3,24,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,38,2,0,0,73,0,76,0,0,0,43,2,0,0,0,0,0,0,0,0,0,23,1,0,0,0,2,0,0,0,0,0,92,36,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,74,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,6,3 +4,0,0,5,0,37,21,0,44,0,4,0,0,2,7,0,717,0,6,1,0,0,0,8,0,10,0,0,7,0,4,0,0,0,4,5704,37,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,312,0,0,0,0,0,1,0,0,0,0,0,2,0,0,121502,37,820,0,8,0,0,0,0,0,32,0,0,0,0,0,8,18,20743,0,0,4,0,0,0,0,0,103,5,2,0,0,2,0,783,0,0,0,0,6022,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,16570,0,70,0,0,0,6,9,276,1611,16554,0,0,0,0,1,0,3,0,0,0,0,0,0,805,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,617,5,0,0,277,0,941,0,0,0,124,91,0,0,0,0,0,0,0,0,0,801,1,0,0,0,9,0,0,0,0,4,135,19,0,0,1,0,0,0,0,0,8933,1,0,1122,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,10,0,0,0,2,1,41,238,0,9,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3407,144,3 +2,0,0,3,0,18,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,0,18,0,0,0,7,0,0,0,3,0,18,6,0,0,10,0,0,0,1,0,0,1,0,0,0,0,6,53,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1410,18,87,0,7,0,0,0,0,0,6,0,0,0,0,0,1,3,425,0,0,3,0,0,0,0,0,31,0,2,0,0,2,0,118,0,1,0,0,472,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,246,0,32,0,0,0,12,27,38,631,254,0,0,0,0,1,0,0,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,91,3,0,0,119,0,189,0,0,0,45,7,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,98,31,0,0,0,0,0,0,0,0,288,0,0,43,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,6,0,0,0,0,1,21,201,0,25,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,254,29,3 +3,0,0,2,0,13,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1233,13,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,551,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,29,0,0,0,6,15,27,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,72,2,0,0,88,0,170,0,0,0,25,2,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,93,15,0,0,0,0,0,0,0,0,264,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,6,0,0,0,0,1,15,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,101,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,54,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,78,0,0,0,0,0,1,0,0,0,0,0,2,0,0,516,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,57,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,563,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,107,3,0,0,83,0,412,0,0,0,13,16,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,112,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,32,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,7,0,0,212,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,185,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,60,3,0,0,70,0,86,0,0,0,39,8,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,95,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,37,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,69,0,0,0,0,0,1,0,0,0,0,0,2,0,0,474,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,68,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,483,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1038,3,0,0,1032,0,292,0,0,0,14,8,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1051,9,0,0,0,0,0,0,0,0,99,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,29,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,10,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1229,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,516,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,91,2,0,0,91,0,181,0,0,0,31,11,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,256,150,3 +1,0,0,3,0,11,3,0,16,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,40,0,0,10,0,0,0,1,0,0,1,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,3,0,0,328,11,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,29,0,1,0,0,184,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,37,0,0,0,0,3,26,6,58,0,0,0,0,1,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,4,96,3,0,0,98,0,232,0,0,0,37,10,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,94,20,0,0,0,0,0,0,0,0,83,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,138,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,86,15,3 +1,0,0,6,0,35,7,0,35,0,5,0,0,7,6,0,556,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,174,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18614,35,624,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4343,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,615,0,0,1,0,2922,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,737,0,47,0,0,0,1,4,260,1159,723,0,0,0,0,1,0,3,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,190,6,0,0,205,0,270,0,0,0,61,8,0,0,0,0,0,0,0,0,0,622,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3310,1,0,840,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,114,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1940,76,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,7,0,0,211,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,142,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,59,3,0,0,69,0,89,0,0,0,39,13,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,16,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,5,0,0,242,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,131,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,31,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,55,3,0,0,73,0,63,0,0,0,43,5,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,36,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,9,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,54,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,346,0,0,0,0,0,1,0,0,0,0,0,10,0,0,132022,39,872,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,22990,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,867,0,7,0,0,3530,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19096,0,52,0,0,0,8,20,281,1257,19086,0,0,0,0,1,0,3,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,284,6,0,0,275,0,394,0,0,0,113,24,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4789,1,0,804,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,225,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2028,128,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,7,0,0,213,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,1004,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,56,3,0,0,69,0,88,0,0,0,39,5,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,11,3 +5,0,0,4,0,36,13,0,37,0,3,0,0,2,3,0,699,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2318,36,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,250,0,0,0,0,0,1,0,0,0,0,0,4,0,0,71187,36,789,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,12933,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,737,0,1,0,0,3123,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,9128,0,43,0,0,0,2,7,258,1183,9105,0,0,0,0,1,0,3,0,0,0,0,0,0,722,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,236,4,0,0,276,0,365,0,0,0,127,12,0,0,0,0,0,0,0,0,0,763,1,0,0,0,10,0,0,0,0,1,130,36,0,0,0,0,0,0,0,0,4273,1,0,1539,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,2,0,0,0,0,1,40,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1909,37,3 +7,0,0,5,0,41,21,0,46,0,4,0,0,2,12,0,820,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,6,5868,41,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,378,0,0,0,0,0,1,0,0,0,0,0,2,0,0,138734,41,941,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,23634,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,952,0,0,0,0,5296,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,19539,0,55,0,0,0,8,16,290,1637,19531,0,0,0,0,1,0,3,0,0,0,0,0,0,911,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,315,5,0,0,297,0,431,0,0,0,137,22,0,0,0,0,0,0,0,0,0,911,1,0,0,0,9,0,0,0,0,2,147,19,0,0,1,0,0,0,0,0,6787,1,0,1145,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,364,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,10,0,0,0,2,1,47,193,0,20,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2996,136,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,256,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,27,3 +4,0,0,5,0,34,21,0,41,0,4,0,0,2,7,0,648,0,6,1,0,0,0,8,0,10,0,0,3,0,0,0,0,0,1,5704,34,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,286,0,0,0,0,0,1,0,0,0,0,0,2,0,0,129427,34,742,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,22118,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,707,0,0,0,0,6261,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,17923,0,62,0,0,0,0,3,273,1597,17913,0,0,0,0,1,0,3,0,0,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,358,5,0,0,273,0,877,0,0,0,120,17,0,0,0,0,0,0,0,0,0,729,1,0,0,0,9,0,0,0,0,0,137,19,0,0,1,0,0,0,0,0,7984,1,0,1142,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,35,239,0,1,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3105,85,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,783,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,41,160,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,424,0,0,0,0,0,1,0,0,0,0,0,2,0,0,141739,41,908,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,24142,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,921,0,0,0,0,5951,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19851,0,53,0,0,0,8,17,290,1636,19841,0,0,0,0,1,0,3,0,0,0,0,0,0,937,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,295,5,0,0,293,0,482,0,0,0,135,20,0,0,0,0,0,0,0,0,0,875,1,0,0,0,9,0,0,0,0,2,142,19,0,0,1,0,0,0,0,0,6969,1,0,1134,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,252,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3261,145,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,143,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,93,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,123,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,122,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,71,0,90,0,0,0,41,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,73,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,59,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,3,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,193,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,116,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,57,0,87,0,0,0,27,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,13,3 +2,0,0,2,0,11,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2039,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,884,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,240,0,26,0,0,0,0,3,25,595,255,0,0,0,0,1,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,65,2,0,0,98,0,125,0,0,0,42,3,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,409,0,0,764,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,435,7,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,7,0,0,210,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,992,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,7,38,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,58,3,0,0,69,0,80,0,0,0,39,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,37,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,125,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,20,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,128,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,36,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,7,0,0,209,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,163,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,63,3,0,0,71,0,88,0,0,0,40,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,96,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,37,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,261,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,108,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,27,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,36,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,70,0,0,0,0,0,1,0,0,0,0,0,2,0,0,417,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,48,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,450,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1044,3,0,0,1038,0,304,0,0,0,14,7,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1057,9,0,0,0,0,0,0,0,0,89,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,29,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,7,0,0,210,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,168,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,57,3,0,0,68,0,105,0,0,0,38,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,25,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,11,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1252,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,548,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,28,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,92,0,167,0,0,0,28,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,17,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,77,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,153,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,78,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,65,0,60,0,0,0,35,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,53,0,0,0,28,9,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +5,0,0,4,0,38,13,0,36,0,3,0,0,2,3,0,703,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2311,38,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,271,0,0,0,0,0,1,0,0,0,0,0,4,0,0,76875,38,792,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,13671,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,741,0,1,0,0,3114,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,10087,0,45,0,0,0,2,7,270,1182,10063,0,0,0,0,1,0,3,0,0,0,0,0,0,604,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,245,4,0,0,282,0,377,0,0,0,127,8,0,0,0,0,0,0,0,0,0,766,1,0,0,0,10,0,0,0,0,1,132,36,0,0,0,0,0,0,0,0,4186,1,0,1341,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,2,0,0,0,0,1,42,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1840,49,3 +2,0,0,2,0,14,2,0,11,0,2,0,0,0,2,0,21,0,6,1,0,0,0,1,0,0,3,0,1,0,2,0,2,0,1,0,14,6,0,0,5,0,22,0,1,0,0,55,0,0,0,0,1,62,0,0,0,0,0,1,0,0,0,0,0,1,0,0,4709,14,255,0,3,0,0,0,0,0,112,0,0,0,0,770,1,111,471,0,0,1,0,0,0,0,0,65,0,53,0,0,2,0,27,0,0,0,0,221,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,604,0,199,0,0,0,2,8,43,12,505,0,0,0,0,1,0,0,0,0,0,0,0,0,2840,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,10,3,97,2,0,0,140,0,509,0,0,0,68,18,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,2,96,9,0,0,0,0,0,0,0,0,738,0,0,391,0,0,1,0,0,0,0,0,106,0,0,0,54,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,80,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,0,1,15,23,0,6,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2362,47,3 +0,0,0,4,0,37,23,0,32,0,2,0,0,2,2,0,575,0,6,3,0,0,0,6,0,10,0,0,4,0,1,0,0,0,4,945,37,6,0,0,22,0,0,0,1,0,0,3,0,0,0,0,1,191,0,0,0,0,0,1,0,0,0,0,0,3,0,0,31540,37,672,0,2,0,0,0,0,0,36,0,0,0,0,0,8,20,5498,0,0,4,0,0,0,0,0,91,5,5,0,0,2,0,597,0,0,0,0,1930,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,4345,0,57,0,0,0,0,3,267,601,4323,0,0,0,0,1,0,4,0,0,0,0,0,0,693,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,10,203,4,0,0,253,0,336,0,0,0,100,6,0,0,0,0,0,0,0,0,0,642,1,0,0,0,9,0,0,0,0,1,120,28,0,0,0,0,0,0,0,0,2005,1,0,455,13,0,1,1,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,1,0,0,0,0,1,41,193,0,3,12,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,871,41,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,10,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,143,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2160,10,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,700,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,9,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,228,0,90,0,0,0,0,3,27,9,225,0,0,0,0,1,0,0,0,0,0,0,0,0,9815,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,124,2,0,0,132,0,254,0,0,0,65,10,0,0,0,0,0,38,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,280,0,0,952,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,284,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,446,51,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +10,0,0,5,0,40,21,0,44,0,4,0,0,2,14,0,727,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5870,40,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,369,0,0,0,0,0,1,0,0,0,0,0,2,0,0,140220,40,848,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23849,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,862,0,0,0,0,5208,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19681,0,53,0,0,0,8,21,283,1630,19672,0,0,0,0,1,0,3,0,0,0,0,0,0,921,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,307,5,0,0,293,0,406,0,0,0,138,26,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,2,143,19,0,0,1,0,0,0,0,0,6614,1,0,1138,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,19,0,0,0,0,1,46,208,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3133,126,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,125,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1820,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,578,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,167,0,68,0,0,0,0,3,27,9,166,0,0,0,0,1,0,0,0,0,0,0,0,0,9900,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,107,2,0,0,128,0,247,0,0,0,61,14,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,253,0,0,930,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,375,48,3 +7,0,0,5,0,35,21,0,42,0,4,0,0,2,9,0,746,0,6,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5868,35,50,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,386,0,0,0,0,0,1,0,0,0,0,0,2,0,0,138949,35,845,0,2,0,0,0,0,0,32,0,0,0,0,0,8,18,23811,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,822,0,0,0,0,5659,0,0,0,0,3,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,19555,0,42,0,0,0,0,3,281,1620,19540,0,0,0,0,1,0,3,0,0,0,0,0,0,853,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,298,5,0,0,274,0,464,0,0,0,117,26,0,0,0,0,0,0,0,0,0,830,1,0,0,0,9,0,0,0,0,1,136,19,0,0,1,0,0,0,0,0,7525,1,0,1133,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,1,0,0,0,0,1,36,209,0,3,12,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2875,61,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,74,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,65,0,58,0,0,0,35,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,77,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,65,0,59,0,0,0,35,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,62,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,5,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,37,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +2,0,0,3,0,9,2,0,18,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,2,0,0,895,9,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,449,0,0,1,0,0,0,0,0,8,0,1,0,0,2,0,15,0,0,0,0,87,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,32,0,24,0,0,0,0,3,23,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,76,4,0,0,78,0,106,0,0,0,18,3,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,91,8,0,0,0,0,0,0,0,0,781,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,94,0,1,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,225,17,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,60,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,4,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +16,0,0,6,0,39,15,0,47,6,5,0,0,2,12,0,870,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4923,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,353,0,0,0,0,0,1,0,0,0,0,0,10,0,0,124559,39,980,0,9,0,0,0,0,0,26,0,0,0,0,0,8,18,21708,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,974,0,7,0,0,3570,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,17857,0,51,0,0,0,8,20,279,1243,17847,0,0,0,0,1,0,3,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,279,6,0,0,271,0,405,0,0,0,113,21,0,0,0,0,0,0,0,0,0,957,1,0,0,0,9,0,0,0,0,1,138,16,0,0,1,0,0,0,0,0,5046,1,0,766,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,13,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,235,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2022,142,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1080,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,478,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,90,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,25,0,0,0,0,3,24,6,55,0,0,0,0,1,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,71,3,0,0,80,0,154,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,253,0,0,780,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,105,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,242,64,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,5,0,0,72,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,38,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,6,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1988,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,834,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,240,0,21,0,0,0,0,3,24,597,251,0,0,0,0,1,0,0,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,62,2,0,0,85,0,91,0,0,0,29,7,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,21,0,0,0,0,0,0,0,0,407,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,110,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,423,6,3 +16,0,0,6,0,40,17,0,44,6,5,0,0,2,12,0,782,0,6,1,0,0,0,8,0,11,9,0,7,0,2,0,0,0,4,4623,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,363,0,0,0,0,0,1,0,0,0,0,0,10,0,0,122899,40,892,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,21578,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,887,0,7,0,0,3718,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,17626,0,52,0,0,0,6,19,285,1257,17616,0,0,0,0,1,0,3,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,290,6,0,0,282,0,385,0,0,0,116,18,0,0,0,0,0,0,0,0,0,868,1,0,0,0,9,0,0,0,0,1,144,17,0,0,1,0,0,0,0,0,4875,1,0,795,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,17,0,0,0,0,1,44,205,0,17,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2083,133,3 +0,0,0,3,0,9,2,0,7,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,2,0,1,0,0,2,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,3,0,0,560,9,32,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,157,0,0,1,0,0,0,0,0,7,0,4,0,0,2,0,8,0,1,0,0,98,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,17,0,0,0,0,3,23,4,48,0,0,0,0,1,0,0,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,67,3,0,0,87,0,99,0,0,0,34,2,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,92,23,0,0,0,0,0,0,0,0,35,0,0,359,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +2,0,0,2,0,10,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,64,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1044,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,466,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,26,0,0,0,0,3,24,5,60,0,0,0,0,1,0,0,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,64,2,0,0,98,0,127,0,0,0,45,2,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,92,32,0,0,0,0,0,0,0,0,214,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,237,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,240,7,3 +0,0,0,3,0,14,2,0,15,0,3,0,0,0,3,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,14,6,0,0,16,0,3,0,1,0,0,3,0,0,0,0,0,117,0,0,0,0,0,1,0,0,0,0,0,3,0,0,3459,14,59,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,934,0,0,5,0,0,0,0,0,12,0,5,0,0,2,0,17,0,1,0,0,433,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,333,0,44,0,0,0,0,3,29,189140,343,0,0,0,0,1,0,0,0,0,0,0,0,0,855,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,120,3,0,0,124,0,122,0,0,0,61,5,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,96,33,0,0,0,0,0,0,0,0,466,0,0,1378,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,19,216,0,1,0,0,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,623,15,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,212,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,139,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,54,3,0,0,63,0,87,0,0,0,33,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,7,0,0,211,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,183,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,60,3,0,0,70,0,84,0,0,0,39,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,95,26,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,37,3 +0,0,0,2,0,11,2,0,8,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,2,0,11,6,0,0,9,0,0,0,1,0,0,1,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,102,11,31,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,22,0,0,2,0,0,0,0,0,8,0,1,0,0,2,0,9,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,36,0,0,0,0,3,26,10,43,0,0,0,0,1,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,70,2,0,0,71,0,146,0,0,0,17,2,0,0,0,0,0,0,0,0,0,36,1,0,0,0,2,0,0,0,0,1,91,6,0,0,0,0,0,0,0,0,29,0,0,8,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,1,0,0,0,0,1,13,40,0,2,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,74,31,3 +16,0,0,6,0,38,17,0,43,6,5,0,0,2,12,0,709,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,38,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,362,0,0,0,0,0,1,0,0,0,0,0,10,0,0,142017,38,817,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,24543,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,813,0,7,0,0,3667,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,20815,0,50,0,0,0,8,20,273,1257,20806,0,0,0,0,1,0,3,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,284,6,0,0,272,0,395,0,0,0,112,20,0,0,0,0,0,0,0,0,0,794,1,0,0,0,9,0,0,0,0,1,138,17,0,0,1,0,0,0,0,0,4640,1,0,772,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,19,0,0,0,0,1,42,224,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1945,116,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1223,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,511,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,88,2,0,0,91,0,172,0,0,0,32,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,150,3 +0,0,0,3,0,14,2,0,15,0,3,0,0,0,3,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,14,6,0,0,16,0,3,0,1,0,0,3,0,0,0,0,0,114,0,0,0,0,0,1,0,0,0,0,0,3,0,0,3542,14,59,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,990,0,0,5,0,0,0,0,0,12,0,5,0,0,2,0,17,0,1,0,0,454,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,334,0,44,0,0,0,0,3,29,227205,344,0,0,0,0,1,0,0,0,0,0,0,0,0,893,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,126,3,0,0,124,0,122,0,0,0,61,4,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,96,33,0,0,0,0,0,0,0,0,467,0,0,1387,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,19,215,0,1,0,0,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,641,14,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,39,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,19,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,0,18,0,0,0,7,0,0,0,3,0,19,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,6,57,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2211,19,89,0,6,0,0,0,0,0,7,0,0,0,0,0,1,6,889,0,0,3,0,0,0,0,0,32,0,2,0,0,2,0,118,0,1,0,0,451,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,253,0,35,0,0,0,12,27,36,669,261,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,93,3,0,0,122,0,200,0,0,0,45,8,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,99,31,0,0,0,0,0,0,0,0,470,0,0,771,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,6,0,0,0,0,1,22,201,0,25,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,442,28,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1318,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,528,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,42,0,0,0,0,3,23,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,120,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,816,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,190,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,294,14,3 +10,0,0,5,0,42,21,0,44,0,4,0,0,2,14,0,765,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,42,160,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,329,0,0,0,0,0,1,0,0,0,0,0,2,0,0,136306,42,888,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,23202,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,902,0,0,0,0,5645,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19010,0,53,0,0,0,8,17,297,1643,18999,0,0,0,0,1,0,3,0,0,0,0,0,0,972,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,290,5,0,0,295,0,497,0,0,0,133,23,0,0,0,0,0,0,0,0,0,856,1,0,0,0,9,0,0,0,0,2,144,19,0,0,1,0,0,0,0,0,6876,1,0,1156,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,12,0,0,0,2,1,48,204,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3248,168,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,3,3 +2,0,0,6,0,34,7,0,48,0,10,0,0,6,4,0,608,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,3,0,1,762,34,32,0,0,55,0,1,0,1,0,0,2,0,0,0,0,1,166,0,0,0,0,0,1,0,0,0,0,0,4,0,0,18021,34,692,0,3,0,0,0,0,0,19,0,0,0,0,1,8,22,4069,0,0,1,0,0,1,10,0,278,40,5,0,0,2,0,700,0,0,1,0,2825,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,618,0,59,0,0,0,1,4,254,1200,603,0,0,0,0,1,0,3,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,91,16,172,6,0,0,191,0,274,0,0,0,50,11,0,0,0,0,0,0,0,0,0,689,1,0,0,0,9,0,0,0,0,0,115,28,0,0,51,0,0,0,0,0,3925,1,0,834,6,0,1,1,1,0,0,0,8,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,3,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,35,54,0,4,12,0,0,0,0,0,81,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1878,53,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,254,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,25,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1435,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,62,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,616,0,0,0,0,0,11,41,230,0,0,0,0,0,0,0,0,0,0,0,0,0,1652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,16,2,0,0,57,0,90,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,45,0,0,0,0,0,0,0,0,319,0,0,380,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,115,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1404,4,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1231,14,36,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,519,0,0,3,0,0,0,0,0,10,0,1,0,0,2,0,10,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,27,0,0,0,0,3,31,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,89,2,0,0,94,0,180,0,0,0,32,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,35,0,3,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,261,144,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1324,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,525,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,90,0,40,0,0,0,0,3,23,6,100,0,0,0,0,1,0,0,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,120,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,231,0,0,819,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,194,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,295,14,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,125,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,117,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,59,3,0,0,72,0,90,0,0,0,41,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1279,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,526,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,85,0,39,0,0,0,0,3,23,6,95,0,0,0,0,1,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,120,0,0,0,65,0,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,223,0,0,803,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,200,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,285,14,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1490,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,71,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,616,0,0,0,0,0,15,41,235,0,0,0,0,0,0,0,0,0,0,0,0,0,1637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,23,2,0,0,60,0,80,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,329,0,0,400,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,115,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1411,5,3 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,874,8,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,458,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,15,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,21,0,0,0,0,3,21,4,41,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,61,2,0,0,78,0,88,0,0,0,17,0,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,88,13,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,107,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,223,2,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,3,0,0,992,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,463,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,38,0,22,0,0,0,0,3,24,6,49,0,0,0,0,1,0,0,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,69,3,0,0,80,0,146,0,0,0,27,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,247,0,0,756,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,101,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,228,62,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1345,10,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,530,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,41,0,0,0,0,3,27,6,103,0,0,0,0,1,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,81,2,0,0,127,0,121,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,231,0,0,826,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,192,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,301,13,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,263,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,26,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1261,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,554,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,30,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,82,2,0,0,92,0,164,0,0,0,29,9,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,17,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,77,0,4,0,0,2,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,261,153,3 +6,0,0,6,0,38,7,0,32,4,5,0,0,2,9,0,469,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,6,898,38,36,0,0,39,0,3,0,1,0,0,3,0,0,0,0,4,172,1,0,0,0,0,1,0,0,0,0,0,9,0,0,30197,38,550,0,7,0,0,0,0,0,22,0,0,0,0,0,8,20,6259,0,0,6,0,0,0,0,0,94,5,6,0,0,2,0,538,0,6,0,0,3166,0,0,0,0,24,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,2815,0,69,0,0,0,6,18,244,1133,2810,0,0,0,0,1,0,4,0,0,0,0,0,0,500,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,19,218,6,0,0,218,0,323,0,0,0,77,9,0,0,0,0,0,0,0,0,0,530,1,0,0,0,9,0,0,0,0,1,123,16,0,0,1,0,0,0,0,0,3018,1,0,872,5,0,1,1,1,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,5,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,16,0,0,0,0,1,44,136,0,17,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1818,182,3 +10,0,0,5,0,40,21,0,43,0,4,0,0,2,14,0,692,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,40,152,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,408,0,0,0,0,0,1,0,0,0,0,0,2,0,0,131776,40,812,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,22559,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,827,0,0,0,0,5182,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,18425,0,53,0,0,0,8,19,283,1622,18416,0,0,0,0,1,0,3,0,0,0,0,0,0,916,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,302,5,0,0,289,0,402,0,0,0,132,17,0,0,0,0,0,0,0,0,0,782,1,0,0,0,9,0,0,0,0,2,140,19,0,0,1,0,0,0,0,0,6621,1,0,1116,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,11,0,0,0,0,1,46,204,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3197,101,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1398,10,58,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,574,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,41,0,0,0,0,3,27,6,102,0,0,0,0,1,0,0,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,82,2,0,0,128,0,120,0,0,0,65,5,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,229,0,0,827,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,11,203,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,298,13,3 +0,0,0,3,0,11,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1056,11,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,465,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,120,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,24,0,0,0,0,3,28,6,55,0,0,0,0,1,0,0,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,74,3,0,0,83,0,154,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,91,16,0,0,0,0,0,0,0,0,253,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,108,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,65,3 +6,0,0,6,0,38,7,0,34,4,5,0,0,2,9,0,534,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,6,898,38,36,0,0,39,0,3,0,1,0,0,3,0,0,0,0,4,167,1,0,0,0,0,1,0,0,0,0,0,9,0,0,31710,38,618,0,7,0,0,0,0,0,22,0,0,0,0,0,8,20,6432,0,0,6,0,0,0,0,0,94,5,5,0,0,2,0,604,0,6,0,0,2794,0,0,0,0,24,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,3045,0,71,0,0,0,6,19,241,1135,3041,0,0,0,0,1,0,4,0,0,0,0,0,0,453,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,19,212,6,0,0,217,0,315,0,0,0,75,10,0,0,0,0,0,0,0,0,0,597,1,0,0,0,9,0,0,0,0,1,121,16,0,0,1,0,0,0,0,0,3107,1,0,857,5,0,1,1,1,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,5,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,16,0,0,0,0,1,44,135,0,17,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1798,184,3 +1,0,0,6,0,34,7,0,35,0,5,0,0,7,6,0,541,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,180,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18496,34,609,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4265,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,600,0,0,1,0,2771,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,663,0,46,0,0,0,1,4,256,1160,649,0,0,0,0,1,0,3,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,186,6,0,0,201,0,271,0,0,0,58,8,0,0,0,0,0,0,0,0,0,607,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3306,1,0,813,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,106,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1884,71,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2005,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,870,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,326,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,237,0,21,0,0,0,0,3,24,591,248,0,0,0,0,1,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,63,2,0,0,85,0,91,0,0,0,29,5,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,21,0,0,0,0,0,0,0,0,405,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,110,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,422,6,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,53,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1216,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,537,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,155,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +1,0,0,3,0,11,3,0,16,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,50,0,0,10,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,3,0,0,579,11,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,55,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,29,0,1,0,0,610,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,36,0,0,0,0,3,26,6,58,0,0,0,0,1,0,0,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,4,159,3,0,0,98,0,318,0,0,0,37,51,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,94,20,0,0,0,0,0,0,0,0,93,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,137,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,84,39,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1271,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,560,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,89,2,0,0,91,0,179,0,0,0,31,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,150,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1235,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,548,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,28,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,70,2,0,0,79,0,162,0,0,0,25,2,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,263,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,101,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,132,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,251,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,113,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,25,3 +0,0,0,3,0,10,4,0,17,0,2,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,3,0,1,0,10,6,0,0,5,0,3,0,1,0,0,3,0,0,0,0,0,104,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1289,10,58,0,1,0,0,0,0,0,15,0,0,0,0,0,1,8,505,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,21,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,80,0,45,0,0,0,0,3,28,9,90,0,0,0,0,1,0,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,11,126,3,0,0,122,0,177,0,0,0,58,9,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,0,92,44,0,0,0,0,0,0,0,0,226,0,0,790,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,182,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,285,56,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1002,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,482,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,19,0,0,0,0,3,22,4,50,0,0,0,0,1,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,56,2,0,0,75,0,101,0,0,0,21,1,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,17,0,0,0,0,0,0,0,0,210,0,0,760,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,114,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,227,7,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,63,0,0,0,0,0,1,0,0,0,0,0,2,0,0,469,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,56,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,494,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,96,3,0,0,83,0,301,0,0,0,13,11,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,90,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,28,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,51,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,2,0,9,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,1,0,0,304,9,30,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,34,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,6,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,29,0,0,0,0,3,23,5,52,0,0,0,0,1,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,71,2,0,0,103,0,124,0,0,0,51,1,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,41,0,0,0,0,0,0,0,0,34,0,0,49,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,118,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,68,14,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1239,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,562,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,155,0,0,0,27,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +1,0,0,6,0,33,7,0,34,0,5,0,0,7,6,0,493,0,6,1,0,0,0,9,0,12,0,0,5,0,1,0,0,0,1,898,33,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,175,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18700,33,560,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4281,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,552,0,0,1,0,2529,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,605,0,46,0,0,0,1,4,249,1158,592,0,0,0,0,1,0,3,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,186,6,0,0,200,0,268,0,0,0,61,5,0,0,0,0,0,0,0,0,0,558,1,0,0,0,10,0,0,0,0,0,116,15,0,0,6,0,0,0,0,0,3295,1,0,844,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,34,113,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1896,77,3 +1,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,173,11,37,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,34,0,0,0,0,3,30,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,78,2,0,0,112,0,262,0,0,0,41,8,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,93,37,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,143,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,67,24,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,30,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,79,2,0,0,94,0,268,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,102,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,27,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,1,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,1,0,0,1,0,1,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,121,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,152,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,59,3,0,0,72,0,90,0,0,0,41,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,35,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1334,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,524,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,90,0,41,0,0,0,0,3,23,6,100,0,0,0,0,1,0,0,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,120,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,823,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,207,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,296,14,3 +6,0,0,3,0,19,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,8,0,19,6,0,0,28,0,5,0,1,0,0,5,0,0,0,0,0,83,0,0,0,0,0,1,0,0,0,0,0,6,0,0,31696,19,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,6550,0,0,8,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,521,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3999,0,75,0,0,0,0,3,38,222,4013,0,0,0,0,1,0,0,0,0,0,0,0,0,7976,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,137,3,0,0,144,0,225,0,0,0,81,12,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,101,43,0,0,0,0,0,0,0,0,1995,0,0,9201,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,3,0,0,0,0,1,27,253,0,4,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2761,68,3 +2,0,0,2,0,11,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2039,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,857,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,243,0,26,0,0,0,0,3,25,597,258,0,0,0,0,1,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,67,2,0,0,98,0,124,0,0,0,42,4,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,410,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,439,6,3 +2,0,0,3,0,9,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,86,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,90,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,23,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,52,3,0,0,58,0,59,0,0,0,28,1,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,7,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,5,0,0,58,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,5,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,37,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1007,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,463,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,19,0,0,0,0,3,22,4,52,0,0,0,0,1,0,0,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,56,2,0,0,75,0,85,0,0,0,21,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,17,0,0,0,0,0,0,0,0,212,0,0,768,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,114,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,233,7,3 +2362,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,139,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2090,11,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,662,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,2362,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,231,0,97,0,0,0,0,3,31,9,228,0,0,0,0,1,0,0,0,0,0,0,0,0,6828,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,112,2,0,0,133,0,249,0,0,0,63,11,0,0,0,0,0,46,0,0,0,44,1,0,0,0,2,0,0,0,0,1,91,43,0,0,0,0,0,0,0,0,278,0,0,944,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,275,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,454,43,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,130,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,19,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,30,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,254,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,27,3 +0,0,0,3,0,11,2,0,7,0,3,0,0,0,3,0,15,0,7,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,11,6,0,0,8,0,1,0,1,0,0,2,0,0,0,0,0,92,0,0,0,0,0,1,0,0,0,0,0,3,0,0,8120,11,41,0,2,0,0,0,0,0,10,0,0,0,0,0,1,6,1803,0,0,1,0,0,0,0,0,9,0,4,0,0,2,0,10,0,1,0,0,399,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,50,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1103,0,150,0,0,0,0,3,29,9,1134,0,0,0,0,1,0,0,0,0,0,0,0,0,2805,0,0,0,0,0,0,0,0,0,0,0,0,2,0,40,0,0,0,0,0,0,8,4,84,3,0,0,127,0,219,0,0,0,69,7,0,0,0,0,0,0,83,0,0,37,1,0,0,0,1,0,0,0,0,1,93,56,0,0,0,0,0,0,0,0,524,0,0,2232,0,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,99,0,0,0,0,189,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,59,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,1,0,0,0,0,1,12,189,0,2,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,92,0,0,0,0,0,0,0,1,1178,9,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,11,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,22,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,33,0,30,0,0,0,0,3,30,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,79,2,0,0,95,0,263,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,27,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,112,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,61,28,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,53,3,0,0,58,0,56,0,0,0,28,7,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +16,0,0,6,0,39,17,0,43,6,5,0,0,2,12,0,726,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,361,0,0,0,0,0,1,0,0,0,0,0,10,0,0,124036,39,834,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,21639,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,830,0,7,0,0,3555,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,17706,0,51,0,0,0,8,20,280,1256,17696,0,0,0,0,1,0,3,0,0,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,294,6,0,0,274,0,394,0,0,0,113,13,0,0,0,0,0,0,0,0,0,811,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4836,1,0,792,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,201,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2056,124,3 +8,0,0,4,0,13,3,0,3,0,3,0,0,0,4,0,18,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,1,0,13,30,0,0,16,0,0,0,1,0,0,0,0,0,0,0,0,42,0,2,0,0,0,1,0,0,0,0,0,4,0,0,28018,13,33,0,4,0,0,0,0,0,0,0,0,0,2,0,1,1,39,0,0,1,0,0,0,0,0,8,0,0,0,0,2,0,17,0,1,0,0,3771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,51,0,3355,0,0,0,0,3,34,21,11470,0,0,0,0,1,0,0,0,0,0,0,0,0,17953,0,3773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,112,4,0,0,65,0,437,0,0,0,23,10,0,0,0,0,0,0,0,0,0,38,0,0,0,0,2,0,0,0,0,1,95,11,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,3,0,0,0,0,1,14,1,0,4,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6718,11,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,216,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,112,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,31,0,0,0,2,4,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,94,0,0,0,33,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,12,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1211,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,508,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,97,2,0,0,91,0,175,0,0,0,32,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,35,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,256,150,3 +2362,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,131,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2095,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,681,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,2362,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,218,0,89,0,0,0,0,3,27,9,217,0,0,0,0,1,0,0,0,0,0,0,0,0,6838,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,114,2,0,0,128,0,236,0,0,0,61,11,0,0,0,0,0,33,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,278,0,0,953,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,288,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,441,48,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,5,0,0,121,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,20,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,120,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,31,0,0,0,2,3,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,49,3,0,0,67,0,63,0,0,0,37,9,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,30,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,8,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,68,0,0,0,0,0,1,0,0,0,0,0,2,0,0,468,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,63,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,488,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,96,3,0,0,83,0,289,0,0,0,13,8,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,96,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,27,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,218,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,127,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,31,0,0,0,2,4,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,55,3,0,0,63,0,86,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,12,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,1,0,0,867,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,451,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,19,0,0,0,0,3,21,10,41,0,0,0,0,1,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,53,2,0,0,71,0,92,0,0,0,19,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,63,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,2,3 +6,0,0,3,0,21,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,8,0,21,6,0,0,28,0,5,0,1,0,0,5,0,0,0,0,0,79,0,0,0,0,0,1,0,0,0,0,0,6,0,0,28825,21,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,5939,0,0,8,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,490,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3655,0,76,0,0,0,0,3,46,221,3669,0,0,0,0,1,0,0,0,0,0,0,0,0,7231,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,151,3,0,0,150,0,236,0,0,0,81,26,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,103,43,0,0,0,0,0,0,0,0,1837,0,0,8359,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,3,0,0,0,0,1,29,253,0,4,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2479,67,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,3,0,0,965,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,442,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,92,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,37,0,23,0,0,0,0,3,24,6,48,0,0,0,0,1,0,0,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,74,3,0,0,84,0,156,0,0,0,31,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,94,16,0,0,0,0,0,0,0,0,246,0,0,752,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,104,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,225,274,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,121,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,183,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,59,3,0,0,71,0,90,0,0,0,41,1,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,35,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,940,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,437,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,104,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,22,0,0,0,0,3,24,6,46,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,69,3,0,0,80,0,146,0,0,0,27,7,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,244,0,0,744,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,109,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,223,63,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1266,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,553,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,27,0,0,0,0,3,31,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,95,2,0,0,94,0,185,0,0,0,32,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,17,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,260,150,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,53,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,53,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,180,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,133,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,3,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,57,0,87,0,0,0,27,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,11,3 +1,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,241,10,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,34,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,29,0,0,0,0,3,26,4,51,0,0,0,0,1,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,68,2,0,0,83,0,245,0,0,0,22,4,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,92,17,0,0,0,0,0,0,0,0,34,0,0,45,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,62,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,68,26,3 +10,0,0,5,0,41,22,0,45,0,4,0,0,2,14,0,782,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5036,41,152,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,381,0,0,0,0,0,1,0,0,0,0,0,2,0,0,125693,41,913,0,9,0,0,0,0,0,38,0,0,0,0,0,8,18,21504,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,920,0,0,0,0,5583,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,17242,0,53,0,0,0,8,19,300,1770,17232,0,0,0,0,1,0,3,0,0,0,0,0,0,910,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,287,5,0,0,300,0,405,0,0,0,140,19,0,0,0,0,0,0,0,0,0,875,1,0,0,0,9,0,0,0,0,2,145,22,0,0,1,0,0,0,0,0,6781,1,0,1133,19,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,19,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,183,0,19,12,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3229,102,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2362,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,136,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2215,10,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,733,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,2362,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,235,0,90,0,0,0,0,3,27,9,232,0,0,0,0,1,0,0,0,0,0,0,0,0,6873,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,103,2,0,0,130,0,249,0,0,0,63,15,0,0,0,0,0,38,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,284,0,0,979,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,307,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,457,46,3 +5,0,0,4,0,37,13,0,37,0,3,0,0,2,3,0,718,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2311,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,258,0,0,0,0,0,1,0,0,0,0,0,4,0,0,64554,37,808,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,11723,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,756,0,1,0,0,3190,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,7935,0,44,0,0,0,2,7,263,1186,7912,0,0,0,0,1,0,3,0,0,0,0,0,0,742,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,228,4,0,0,278,0,331,0,0,0,126,12,0,0,0,0,0,0,0,0,0,782,1,0,0,0,10,0,0,0,0,1,130,36,0,0,0,0,0,0,0,0,4348,1,0,1538,14,0,1,1,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1921,38,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1458,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,88,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,622,0,0,0,0,0,11,48,241,0,0,0,0,0,0,0,0,0,0,0,0,0,1637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,17,2,0,0,57,0,87,0,0,0,48,7,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,45,0,0,0,0,0,0,0,0,325,0,0,376,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,115,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1419,6,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,77,2,0,0,91,0,245,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,24,3 +0,0,0,2,0,8,2,0,9,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,910,8,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,454,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,8,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,23,0,0,0,0,3,22,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,67,2,0,0,72,0,75,0,0,0,19,4,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,90,12,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,83,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,223,8,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,120,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,132,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,58,3,0,0,72,0,90,0,0,0,41,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,96,10,24,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,14,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,41,3,0,0,58,0,61,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,21,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,14,3 +1,0,0,6,0,34,7,0,33,0,5,0,0,7,6,0,473,0,6,1,0,0,0,9,0,12,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,177,0,0,0,0,0,1,0,0,0,0,0,5,0,0,19130,34,540,0,4,0,0,0,0,0,18,0,0,0,0,0,9,28,4389,0,0,1,0,0,0,0,0,215,25,3,0,0,2,0,532,0,0,1,0,2962,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,719,0,46,0,0,0,2,5,258,1157,705,0,0,0,0,1,0,3,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,186,6,0,0,201,0,269,0,0,0,58,7,0,0,0,0,0,0,0,0,0,537,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3212,1,0,820,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,9,0,0,0,0,1,35,112,0,5,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1900,77,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,120,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,92,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,11,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,56,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,78,0,0,0,0,0,1,0,0,0,0,0,2,0,0,524,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,71,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,576,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,28,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1052,3,0,0,1033,0,477,0,0,0,14,11,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1052,9,0,0,0,0,0,0,0,0,123,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,37,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,218,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,138,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,31,0,0,0,2,4,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,51,3,0,0,63,0,86,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,605,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,12,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,4,0,11,20,0,104,0,27,0,0,0,3,0,17,0,7,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,1,0,11,6,0,0,192,0,0,0,1,0,0,2,0,0,0,0,0,64,0,0,0,0,0,1,0,0,0,0,0,22,0,0,1365,11,180,0,3,0,0,0,0,0,9,0,0,0,0,0,1,4,712,0,0,1,0,0,2,96,0,745,30,3,0,0,2,0,485,0,1,0,0,126,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,393,0,32,0,0,0,0,3,29,649,404,0,0,0,0,1,0,0,0,0,0,0,0,0,260,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,4,81,4,0,0,111,0,180,0,0,0,53,5,0,0,0,0,0,0,0,0,0,178,1,0,0,0,2,0,0,0,0,1,93,258,0,0,60,0,0,0,0,0,623,0,0,65,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,12,115,0,3,0,0,0,0,0,0,259,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,11,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,4,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1299,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,58,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,620,0,0,0,0,0,19,41,229,0,0,0,0,0,0,0,0,0,0,0,0,0,1600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,23,2,0,0,64,0,84,0,0,0,49,1,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,5,46,0,0,0,0,0,0,0,0,319,0,0,348,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,4,122,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1416,2,3 +5,0,0,4,0,12,24,0,138,1,35,0,0,0,4,0,19,0,7,1,0,0,0,2,0,0,0,0,3,0,1,0,0,0,2,0,12,6,0,0,254,0,0,0,1,0,0,2,0,0,0,0,0,83,0,0,0,0,0,1,0,0,0,0,0,29,0,0,1380,12,231,0,4,0,0,0,0,0,9,0,0,0,0,0,2,5,712,0,0,2,0,0,2,128,0,988,40,3,0,0,2,0,642,0,2,0,0,139,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,400,0,39,0,0,0,0,3,33,849,415,0,0,0,0,1,0,0,0,0,0,0,0,0,314,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,5,77,4,0,0,119,0,199,0,0,0,61,5,0,0,0,0,0,0,0,0,0,227,1,0,0,0,3,0,0,0,0,1,94,340,0,0,86,0,0,0,0,0,966,0,0,66,0,0,1,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,14,116,0,4,0,0,0,0,0,0,336,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,14,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1067,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,478,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,106,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,23,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,72,3,0,0,80,0,152,0,0,0,27,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,253,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,108,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,66,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,124,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,88,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,91,10,24,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,14,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,21,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,43,3,0,0,58,0,83,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,21,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,14,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,53,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,121,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,117,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,71,0,84,0,0,0,41,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1397,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,101,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,617,0,0,0,0,0,15,41,229,0,0,0,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,22,2,0,0,60,0,91,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,323,0,0,376,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,115,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1407,4,3 +10,0,0,5,0,37,21,0,45,0,4,0,0,2,16,0,762,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,3,5868,37,156,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,393,0,0,0,0,0,1,0,0,0,0,0,2,0,0,138686,37,883,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23743,0,0,3,0,0,0,0,0,95,5,2,0,0,2,0,898,0,0,0,0,5405,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19455,0,49,0,0,0,8,21,276,1630,19447,0,0,0,0,1,0,3,0,0,0,0,0,0,904,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,288,5,0,0,286,0,424,0,0,0,129,17,0,0,0,0,0,0,0,0,0,856,1,0,0,0,9,0,0,0,0,2,144,19,0,0,1,0,0,0,0,0,6967,1,0,1128,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,19,0,0,0,0,1,40,227,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3460,143,3 +4,0,0,6,0,39,7,0,35,4,5,0,0,2,9,0,582,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,6,898,39,36,0,0,38,0,3,0,1,0,0,3,0,0,0,0,4,213,1,0,0,0,0,1,0,0,0,0,0,9,0,0,32452,39,667,0,7,0,0,0,0,0,22,0,0,0,0,0,8,20,6601,0,0,6,0,0,0,0,0,94,5,6,0,0,2,0,652,0,6,0,0,2986,0,0,0,0,15,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,3068,0,82,0,0,0,6,19,248,1135,3062,0,0,0,0,1,0,4,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,19,260,6,0,0,219,0,359,0,0,0,75,13,0,0,0,0,0,0,0,0,0,646,1,0,0,0,9,0,0,0,0,1,122,16,0,0,1,0,0,0,0,0,3332,1,0,895,5,0,1,1,1,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,5,363,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,16,0,0,0,0,1,45,128,0,17,12,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1852,105,3 +1,0,0,6,0,35,7,0,36,0,5,0,0,7,6,0,591,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,176,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18834,35,660,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4233,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,650,0,0,1,0,2743,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,671,0,46,0,0,0,1,4,263,1160,656,0,0,0,0,1,0,3,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,190,6,0,0,203,0,271,0,0,0,58,5,0,0,0,0,0,0,0,0,0,658,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3388,1,0,817,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,111,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1834,70,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,34,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,5,3 +2362,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,5,0,0,0,0,0,105,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1746,10,77,0,1,0,0,0,0,0,27,0,0,0,0,0,1,10,590,0,0,0,0,0,0,0,0,16,0,10,0,0,2,0,15,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,2362,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,154,0,62,0,0,0,0,3,26,8,161,0,0,0,0,1,0,0,0,0,0,0,0,0,6802,0,0,0,0,0,0,0,0,0,0,0,0,5,0,8,0,0,0,0,0,0,8,3,90,2,0,0,118,0,185,0,0,0,51,6,0,0,0,0,0,1,0,0,0,42,1,0,0,0,2,0,0,0,0,0,90,34,0,0,0,0,0,0,0,0,257,0,0,940,0,0,1,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,252,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,377,34,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,76,0,0,0,0,0,1,0,0,0,0,0,2,0,0,462,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,61,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,469,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1037,3,0,0,1032,0,287,0,0,0,14,8,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1051,9,0,0,0,0,0,0,0,0,95,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,30,3 +10,0,0,5,0,40,21,0,44,0,4,0,0,2,14,0,727,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,40,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,373,0,0,0,0,0,1,0,0,0,0,0,2,0,0,132859,40,846,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,22613,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,860,0,0,0,0,5476,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,18362,0,52,0,0,0,8,19,282,1626,18353,0,0,0,0,1,0,3,0,0,0,0,0,0,908,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,300,5,0,0,294,0,415,0,0,0,137,20,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,2,146,19,0,0,1,0,0,0,0,0,6635,1,0,1126,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,11,0,0,0,0,1,46,208,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3143,76,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1223,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,546,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,155,0,0,0,27,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,263,149,3 +2,0,0,5,0,34,21,0,41,0,4,0,0,2,7,0,678,0,7,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5706,34,46,0,0,22,0,0,0,1,0,0,1,0,0,0,0,1,249,0,0,0,0,0,1,0,0,0,0,0,2,0,0,109053,34,776,0,2,0,0,0,0,0,32,0,0,0,0,0,8,17,17633,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,737,0,0,0,0,3581,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,16362,0,44,0,0,0,0,3,273,793,16345,0,0,0,0,1,0,3,0,0,0,0,0,0,862,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,1303,5,0,0,1301,0,417,0,0,0,121,19,0,0,0,0,0,0,0,0,0,760,1,0,0,0,9,0,0,0,0,1,1159,19,0,0,1,0,0,0,0,0,3500,1,0,434,16,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,1,0,0,0,0,1,35,183,0,3,12,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1403,93,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,265,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,108,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,76,0,0,0,0,0,1,0,0,0,0,0,2,0,0,488,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,69,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,485,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1071,3,0,0,1065,0,304,0,0,0,14,8,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1084,9,0,0,0,0,0,0,0,0,100,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,30,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,7,0,0,213,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,153,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,55,3,0,0,68,0,103,0,0,0,38,5,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,25,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,11,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,30,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,78,2,0,0,94,0,263,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,28,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,264,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,113,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,28,3 +6,0,0,6,0,40,7,0,34,4,5,0,0,2,9,0,563,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,6,898,40,36,0,0,39,0,3,0,1,0,0,3,0,0,0,0,4,181,1,0,0,0,0,1,0,0,0,0,0,9,0,0,30137,40,647,0,7,0,0,0,0,0,22,0,0,0,0,0,8,20,6229,0,0,6,0,0,0,0,0,94,5,6,0,0,2,0,633,0,6,0,0,2777,0,0,0,0,24,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,2683,0,73,0,0,0,6,19,255,1135,2677,0,0,0,0,1,0,4,0,0,0,0,0,0,500,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,19,215,6,0,0,221,0,318,0,0,0,75,7,0,0,0,0,0,0,0,0,0,626,1,0,0,0,9,0,0,0,0,1,123,16,0,0,1,0,0,0,0,0,3226,1,0,876,5,0,1,1,1,0,0,0,8,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,5,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,16,0,0,0,0,1,46,129,0,17,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1807,184,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,29,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,78,2,0,0,94,0,262,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,28,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,123,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,270,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,71,0,90,0,0,0,41,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,35,3 +10,0,0,5,0,38,21,0,44,0,4,0,0,2,16,0,746,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,3,5868,38,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,375,0,0,0,0,0,1,0,0,0,0,0,2,0,0,140183,38,868,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23831,0,0,3,0,0,0,0,0,95,5,2,0,0,2,0,884,0,0,0,0,5576,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19582,0,50,0,0,0,8,21,284,1635,19573,0,0,0,0,1,0,3,0,0,0,0,0,0,942,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,288,5,0,0,288,0,406,0,0,0,128,24,0,0,0,0,0,0,0,0,0,839,1,0,0,0,9,0,0,0,0,2,144,19,0,0,1,0,0,0,0,0,6922,1,0,1146,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,19,0,0,0,0,1,41,201,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3467,141,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1028,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,472,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,112,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,23,0,0,0,0,3,24,6,51,0,0,0,0,1,0,0,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,72,3,0,0,80,0,153,0,0,0,27,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,249,0,0,764,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,109,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,230,64,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,217,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,20,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,143,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,30,0,0,0,2,4,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,91,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,12,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1225,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,546,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,156,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +6,0,0,4,0,11,3,0,13,0,7,0,0,0,3,0,11,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,1,0,11,6,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,5,0,0,193,11,44,0,3,0,0,0,0,0,4,0,0,0,0,0,1,1,43,0,0,1,0,0,1,8,0,79,15,0,0,0,2,0,48,0,1,0,0,494,0,0,0,0,0,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,36,0,0,0,0,3,27,68,59,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,47,4,0,0,44,0,127,0,0,0,8,1,0,0,0,0,0,0,0,0,0,43,0,0,0,0,2,0,0,0,0,1,91,15,0,0,30,0,0,0,0,0,607,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,2,0,0,0,0,1,12,1,0,3,0,0,0,0,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,80,3 +4,0,0,5,0,38,21,0,44,0,4,0,0,2,7,0,737,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,266,0,0,0,0,0,1,0,0,0,0,0,2,0,0,32005,38,842,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,5781,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,805,0,0,0,0,6036,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1593,0,70,0,0,0,6,9,284,1610,1576,0,0,0,0,1,0,3,0,0,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,680,5,0,0,285,0,948,0,0,0,128,84,0,0,0,0,0,0,0,0,0,821,1,0,0,0,9,0,0,0,0,4,141,19,0,0,1,0,0,0,0,0,9082,1,0,1125,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,197,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3446,147,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,5,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,10,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,134,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,252,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,25,3 +4,0,0,3,0,12,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,42,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,5,0,0,382,12,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,221,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,38,0,0,0,0,3,27,7,60,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,103,3,0,0,101,0,240,0,0,0,40,9,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,95,20,0,0,0,0,0,0,0,0,85,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,145,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,16,3 +7,0,0,5,0,42,21,0,43,0,4,0,0,2,12,0,822,0,6,1,0,0,0,8,0,10,0,0,7,0,2,0,0,0,6,5868,42,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,2,360,0,0,0,0,0,1,0,0,0,0,0,2,0,0,146638,42,926,0,6,0,0,0,0,0,32,0,0,0,0,0,8,18,24952,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,910,0,0,0,0,5369,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,20678,0,55,0,0,0,2,5,297,1619,20669,0,0,0,0,1,0,3,0,0,0,0,0,0,900,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,316,5,0,0,296,0,428,0,0,0,135,30,0,0,0,0,0,0,0,0,0,910,1,0,0,0,9,0,0,0,0,2,145,19,0,0,1,0,0,0,0,0,6750,1,0,1133,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,362,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,6,0,0,0,0,1,48,238,0,7,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2976,180,3 +4,0,0,5,0,36,21,0,42,0,4,0,0,2,7,0,718,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,36,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,250,0,0,0,0,0,1,0,0,0,0,0,2,0,0,114977,36,813,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19636,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,777,0,0,0,0,4965,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,15455,0,68,0,0,0,0,3,285,1597,15444,0,0,0,0,1,0,3,0,0,0,0,0,0,838,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,372,5,0,0,278,0,882,0,0,0,118,20,0,0,0,0,0,0,0,0,0,800,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8532,1,0,1143,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,37,226,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3197,92,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1230,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,529,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,28,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,89,2,0,0,91,0,171,0,0,0,31,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,35,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,260,150,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,5,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,5,0,0,233,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,130,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,56,3,0,0,74,0,63,0,0,0,43,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,36,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +0,0,0,3,0,9,2,0,7,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,2,0,1,0,0,2,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,494,9,32,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,152,0,0,1,0,0,0,0,0,7,0,4,0,0,2,0,8,0,1,0,0,131,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,33,0,18,0,0,0,0,3,23,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,70,3,0,0,87,0,99,0,0,0,34,5,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,92,23,0,0,0,0,0,0,0,0,29,0,0,339,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,105,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,9,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,64,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,7,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,61,0,56,0,0,0,31,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,27,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,53,0,1,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1067,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,487,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,117,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,23,0,0,0,0,3,24,6,53,0,0,0,0,1,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,71,3,0,0,80,0,157,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,252,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,112,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,233,65,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1200,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,528,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,74,2,0,0,88,0,154,0,0,0,25,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,149,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,56,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,76,0,0,0,0,0,1,0,0,0,0,0,2,0,0,500,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,58,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,581,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1038,3,0,0,1018,0,483,0,0,0,14,11,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1037,9,0,0,0,0,0,0,0,0,113,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,38,3 +10,0,0,5,0,39,17,0,42,0,4,0,0,2,14,0,676,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5022,39,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,357,0,0,0,0,0,1,0,0,0,0,0,2,0,0,129970,39,784,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,22768,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,803,0,0,0,0,3598,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,12,12,12,0,0,0,18876,0,54,0,0,0,8,19,271,1256,18868,0,0,0,0,1,0,3,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,288,5,0,0,278,0,420,0,0,0,122,18,0,0,0,0,0,0,0,0,0,761,1,0,0,0,9,0,0,0,0,2,141,17,0,0,1,0,0,0,0,0,6267,1,0,799,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,11,0,0,0,0,1,45,193,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2924,203,3 +0,0,0,3,0,26,4,0,20,0,2,0,0,2,2,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,1,0,26,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,1,146,0,0,0,0,0,1,0,0,0,0,0,2,0,0,593,26,52,0,1,0,0,0,0,0,12,0,0,0,0,0,7,14,101,0,0,1,0,0,0,0,0,73,5,3,0,0,2,0,28,0,0,0,0,374,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,77,0,45,0,0,0,0,3,184,10,80,0,0,0,0,1,0,3,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,123,3,0,0,137,0,168,0,0,0,34,2,0,0,0,0,0,0,0,0,0,53,1,0,0,0,8,0,0,0,0,0,109,21,0,0,0,0,0,0,0,0,70,0,0,35,2,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,0,0,0,0,0,1,27,181,0,2,8,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,146,29,3 +7,0,0,5,0,42,21,0,43,0,4,0,0,2,12,0,825,0,6,1,0,0,0,8,0,10,0,0,7,0,2,0,0,0,6,5868,42,58,0,0,22,0,1,0,1,0,0,1,0,0,0,0,2,382,0,0,0,0,0,1,0,0,0,0,0,2,0,0,137996,42,931,0,6,0,0,0,0,0,32,0,0,0,0,0,8,18,23480,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,915,0,0,0,0,5074,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,19352,0,59,0,0,0,2,5,294,1615,19344,0,0,0,0,1,0,3,0,0,0,0,0,0,837,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,360,5,0,0,299,0,540,0,0,0,137,23,0,0,0,0,0,0,0,0,0,913,1,0,0,0,9,0,0,0,0,2,147,19,0,0,1,0,0,0,0,0,6843,1,0,1100,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,362,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,6,0,0,0,0,1,48,225,0,7,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2954,182,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1230,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,518,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,92,2,0,0,91,0,176,0,0,0,32,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,258,150,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,1,0,0,871,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,455,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,21,0,0,0,0,3,21,10,41,0,0,0,0,1,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,53,2,0,0,71,0,91,0,0,0,19,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,205,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,63,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,225,2,3 +10,0,0,5,0,40,21,0,45,0,4,0,0,2,14,0,762,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,40,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,442,0,0,0,0,0,1,0,0,0,0,0,2,0,0,131799,40,887,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,22475,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,900,0,0,0,0,5589,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18346,0,53,0,0,0,8,17,283,1639,18337,0,0,0,0,1,0,3,0,0,0,0,0,0,933,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,299,5,0,0,295,0,401,0,0,0,136,26,0,0,0,0,0,0,0,0,0,854,1,0,0,0,9,0,0,0,0,2,146,19,0,0,1,0,0,0,0,0,6771,1,0,1137,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,12,0,0,0,2,1,46,218,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3225,164,3 +2362,0,0,2,0,11,2,0,17,0,2,0,0,0,2,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,126,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1655,11,84,0,1,0,0,0,0,0,30,0,0,0,0,0,1,12,581,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,2362,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,161,0,69,0,0,0,0,3,31,9,159,0,0,0,0,1,0,0,0,0,0,0,0,0,6838,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,97,2,0,0,132,0,249,0,0,0,62,7,0,0,0,0,0,1,0,0,0,44,1,0,0,0,2,0,0,0,0,1,91,43,0,0,0,0,0,0,0,0,248,0,0,891,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,294,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,369,40,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,78,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,65,0,58,0,0,0,35,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,12,2,0,16,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,6,0,0,12,0,0,0,1,0,0,3,0,0,0,0,0,89,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1345,12,56,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,276,0,0,4,0,0,0,0,0,11,0,4,0,0,2,0,17,0,1,0,0,287,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,226,0,59,0,0,0,0,3,26,211,243,0,0,0,0,1,0,0,0,0,0,0,0,0,419,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,92,3,0,0,106,0,180,0,0,0,47,9,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,94,22,0,0,0,0,0,0,0,0,101,0,0,249,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,174,0,1,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,228,17,3 +4,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,198,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,116,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,4,24,6,35,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,58,3,0,0,59,0,89,0,0,0,29,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,22,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,34,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,10,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,2,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,95,10,24,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,13,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,42,3,0,0,58,0,75,0,0,0,28,11,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,20,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,15,3 +0,0,0,3,0,9,2,0,16,4,3,0,0,0,7,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,9,6,0,0,16,0,0,0,1,0,0,4,0,0,0,0,0,98,0,0,0,0,0,1,0,0,0,0,0,7,0,0,11585,9,62,0,1,0,0,0,0,0,15,0,0,0,1,0,1,6,2529,0,0,1,0,0,0,0,0,9,0,8,0,0,2,0,25,0,5,0,0,140,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1482,0,40,0,0,0,0,3,23,14,1498,0,0,0,0,1,0,0,0,0,0,0,0,0,2351,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,8,96,3,0,0,129,0,120,0,0,0,70,6,0,0,0,0,0,0,0,0,0,48,1,0,0,0,2,0,0,0,0,0,91,51,0,0,0,0,0,0,0,0,648,0,0,3338,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,218,0,1,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,24,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,30,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,79,2,0,0,94,0,265,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,26,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,132,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,266,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,26,3 +9,0,0,3,0,21,2,0,7,3,3,0,0,0,6,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,7,0,21,6,0,0,28,0,5,0,1,0,0,5,0,0,0,0,0,81,0,0,0,0,0,1,0,0,0,0,0,6,0,0,40937,21,59,0,1,0,0,0,0,0,21,0,0,0,1,0,1,7,6901,0,0,7,0,0,0,0,0,13,0,8,0,0,2,0,14,0,4,0,0,4296,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4185,0,76,0,0,0,0,3,46,7852,4205,0,0,0,0,1,0,0,0,0,0,0,0,0,8436,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,156,3,0,0,150,0,295,0,0,0,78,20,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,103,43,0,0,0,0,0,0,0,0,2072,0,0,9673,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,28,229,0,1,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2929,66,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,30,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,81,2,0,0,94,0,262,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,27,3 +0,0,0,3,0,25,4,0,20,0,2,0,0,2,2,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,1,0,25,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,1,141,0,0,0,0,0,1,0,0,0,0,0,2,0,0,613,25,54,0,1,0,0,0,0,0,13,0,0,0,0,0,7,14,105,0,0,1,0,0,0,0,0,73,5,3,0,0,2,0,28,0,0,0,0,422,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,78,0,45,0,0,0,0,3,177,10,81,0,0,0,0,1,0,3,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,118,3,0,0,134,0,167,0,0,0,33,2,0,0,0,0,0,0,0,0,0,53,1,0,0,0,8,0,0,0,0,0,106,21,0,0,0,0,0,0,0,0,71,0,0,39,2,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,151,0,2,8,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,146,30,3 +3,0,0,4,0,12,20,0,104,0,27,0,0,0,3,0,17,0,7,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,1,0,12,6,0,0,192,0,0,0,1,0,0,2,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,22,0,0,1469,12,180,0,3,0,0,0,0,0,9,0,0,0,0,0,1,4,719,0,0,1,0,0,2,96,0,745,30,3,0,0,2,0,485,0,1,0,0,142,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,402,0,34,0,0,0,0,3,33,649,413,0,0,0,0,1,0,0,0,0,0,0,0,0,304,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,4,77,4,0,0,115,0,187,0,0,0,54,5,0,0,0,0,0,0,0,0,0,178,1,0,0,0,2,0,0,0,0,1,94,259,0,0,60,0,0,0,0,0,629,0,0,95,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,13,115,0,3,0,0,0,0,0,0,259,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,12,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,31,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,258,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,61,28,3 +2366,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,122,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1986,10,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,615,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,191,0,70,0,0,0,0,3,27,9,188,0,0,0,0,1,0,0,0,0,0,0,0,0,6881,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,92,2,0,0,130,0,241,0,0,0,63,4,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,260,0,0,975,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,392,50,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,5,0,0,118,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,182,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,50,3,0,0,61,0,66,0,0,0,31,11,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,24,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,8,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,62,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,2,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,5,0,0,75,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,38,3,0,0,58,0,56,0,0,0,28,5,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,6,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,128,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,131,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,33,0,0,0,2,3,26,6,39,0,0,0,0,1,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,72,0,90,0,0,0,41,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,35,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2066,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,864,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,244,0,23,0,0,0,0,3,24,597,255,0,0,0,0,1,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,62,2,0,0,85,0,89,0,0,0,29,3,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,21,0,0,0,0,0,0,0,0,411,0,0,788,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,110,0,1,0,0,2,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,440,7,3 +4,0,0,5,0,38,21,0,43,0,4,0,0,2,7,0,701,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,278,0,0,0,0,0,1,0,0,0,0,0,2,0,0,31773,38,805,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,5871,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,769,0,0,0,0,5929,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,1578,0,63,0,0,0,6,9,280,1612,1562,0,0,0,0,1,0,3,0,0,0,0,0,0,815,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,678,5,0,0,283,0,1009,0,0,0,127,83,0,0,0,0,0,0,0,0,0,784,1,0,0,0,9,0,0,0,0,4,139,19,0,0,1,0,0,0,0,0,8884,1,0,1129,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,242,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3352,137,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1234,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,559,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,156,0,0,0,27,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,264,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1234,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,521,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,27,0,0,0,0,3,31,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,95,2,0,0,94,0,177,0,0,0,31,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,17,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,260,150,3 +10,0,0,5,0,42,21,0,43,0,4,0,0,2,14,0,728,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5870,42,4608,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,385,0,0,0,0,0,1,0,0,0,0,0,2,0,0,140800,42,852,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,23912,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,867,0,0,0,0,5149,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,19944,0,53,0,0,0,8,17,298,1626,19933,0,0,0,0,1,0,3,0,0,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,315,5,0,0,300,0,412,0,0,0,138,25,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,2,149,19,0,0,1,0,0,0,0,0,11137,1,0,1113,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,12,0,0,0,2,1,48,213,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3213,162,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1225,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,551,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,31,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,155,0,0,0,27,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,2,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,270,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,64,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,10,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +10,0,0,5,0,40,21,0,45,0,4,0,0,2,14,0,763,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,40,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,391,0,0,0,0,0,1,0,0,0,0,0,2,0,0,144259,40,885,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,24640,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,898,0,0,0,0,5916,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,20408,0,53,0,0,0,8,19,283,1630,20399,0,0,0,0,1,0,3,0,0,0,0,0,0,929,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,283,5,0,0,290,0,390,0,0,0,132,25,0,0,0,0,0,0,0,0,0,855,1,0,0,0,9,0,0,0,0,2,141,19,0,0,1,0,0,0,0,0,6737,1,0,1134,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,11,0,0,0,0,1,46,194,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3216,103,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,136,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2128,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,709,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,338,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,222,0,92,0,0,0,0,3,27,9,221,0,0,0,0,1,0,0,0,0,0,0,0,0,10017,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,121,2,0,0,128,0,260,0,0,0,61,8,0,0,0,0,0,47,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,281,0,0,942,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,284,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,451,53,3 +7,0,0,5,0,41,21,0,44,0,4,0,0,2,12,0,747,0,6,1,0,0,0,7,1,11,9,0,7,0,4,0,0,0,6,5868,41,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,408,0,0,0,0,0,1,0,0,0,0,0,2,0,0,142595,41,865,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,24102,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,878,0,0,0,0,5525,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,20085,0,55,0,0,0,8,16,290,1629,20077,0,0,0,0,1,0,3,0,0,0,0,0,0,918,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,326,5,0,0,301,0,440,0,0,0,141,27,0,0,0,0,0,0,0,0,0,836,1,0,0,0,9,0,0,0,0,2,151,19,0,0,1,0,0,0,0,0,6474,1,0,1145,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,364,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,9,0,0,0,0,1,47,227,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2870,263,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,123,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,290,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,11,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +0,0,0,2,0,9,2,0,7,0,2,0,0,0,2,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,2,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1605,9,41,0,1,0,0,0,0,0,11,0,0,0,0,0,1,8,567,0,0,0,0,0,0,0,0,9,0,4,0,0,2,0,7,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,110,0,23,0,0,0,0,3,25,4,117,0,0,0,0,1,0,0,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,84,2,0,0,95,0,239,0,0,0,39,20,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,91,29,0,0,0,0,0,0,0,0,229,0,0,889,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,9,131,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,270,13,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,64,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,7,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,61,0,57,0,0,0,31,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,27,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,53,0,1,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,2,0,16,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,16,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2129,16,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,880,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,399,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,249,0,37,0,0,0,8,19,33,609,260,0,0,0,0,1,0,0,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,113,0,182,0,0,0,45,4,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,96,31,0,0,0,0,0,0,0,0,445,0,0,758,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,4,0,0,0,0,1,19,201,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,444,10,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1488,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,62,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,616,0,0,0,0,0,11,41,233,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,16,2,0,0,57,0,90,0,0,0,48,3,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,45,0,0,0,0,0,0,0,0,326,0,0,392,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,115,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1419,5,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,7,0,0,216,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,129,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,33,0,0,0,2,4,26,7,40,0,0,0,0,1,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,61,3,0,0,71,0,86,0,0,0,40,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,96,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,37,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,121,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,124,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,72,0,84,0,0,0,41,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,36,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1225,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,496,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,84,0,39,0,0,0,0,3,23,6,94,0,0,0,0,1,0,0,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,119,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,222,0,0,794,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,189,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,282,14,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,65,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,125,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,63,0,92,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,92,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,86,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,32,0,0,0,2,3,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,46,3,0,0,57,0,88,0,0,0,27,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,605,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,10,3 +7,0,0,5,0,41,21,0,42,0,4,0,0,2,12,0,771,0,6,1,0,0,0,8,0,10,0,0,7,0,2,0,0,0,6,5868,41,44,0,0,22,0,1,0,1,0,0,1,0,0,0,0,2,391,0,0,0,0,0,1,0,0,0,0,0,2,0,0,148784,41,876,0,6,0,0,0,0,0,32,0,0,0,0,0,8,18,25300,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,861,0,0,0,0,5988,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,21149,0,54,0,0,0,2,5,289,1620,21141,0,0,0,0,1,0,3,0,0,0,0,0,0,878,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,348,5,0,0,297,0,421,0,0,0,138,23,0,0,0,0,0,0,0,0,0,858,1,0,0,0,9,0,0,0,0,2,148,19,0,0,1,0,0,0,0,0,9528,1,0,1129,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,363,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,6,0,0,0,0,1,47,199,0,7,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3595,75,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1344,9,58,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,523,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,40,0,0,0,0,3,23,6,102,0,0,0,0,1,0,0,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,125,0,119,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,827,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,200,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,293,13,3 +2,0,0,5,0,35,21,0,41,0,4,0,0,2,7,0,697,0,7,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5704,35,42,0,0,22,0,0,0,1,0,0,1,0,0,0,0,1,251,0,0,0,0,0,1,0,0,0,0,0,2,0,0,105831,35,795,0,2,0,0,0,0,0,32,0,0,0,0,0,8,17,17200,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,756,0,0,0,0,3549,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,15887,0,45,0,0,0,0,3,276,784,15870,0,0,0,0,1,0,3,0,0,0,0,0,0,797,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,1265,5,0,0,1266,0,409,0,0,0,120,13,0,0,0,0,0,0,0,0,0,779,1,0,0,0,9,0,0,0,0,1,1123,19,0,0,1,0,0,0,0,0,3574,1,0,408,16,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,1,0,0,0,0,1,36,219,0,3,12,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1420,87,3 +4,0,0,5,0,38,21,0,43,0,4,0,0,2,7,0,701,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,286,0,0,0,0,0,1,0,0,0,0,0,2,0,0,120234,38,805,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,20515,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,769,0,0,0,0,5978,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,16270,0,71,0,0,0,6,9,284,1615,16253,0,0,0,0,1,0,3,0,0,0,0,0,0,829,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,675,5,0,0,287,0,950,0,0,0,130,88,0,0,0,0,0,0,0,0,0,784,1,0,0,0,9,0,0,0,0,4,143,19,0,0,1,0,0,0,0,0,9782,1,0,1145,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,195,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3640,151,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,63,0,0,0,0,0,1,0,0,0,0,0,2,0,0,446,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,60,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,372,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1058,3,0,0,1050,0,298,0,0,0,14,7,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1069,9,0,0,0,0,0,0,0,0,93,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,29,3 +7,0,0,5,0,41,21,0,45,0,4,0,0,2,12,0,875,0,6,1,0,0,0,8,0,10,0,0,7,0,2,0,0,0,6,5871,41,58,0,0,22,0,1,0,1,0,0,1,0,0,0,0,2,469,0,0,0,0,0,1,0,0,0,0,0,2,0,0,170678,41,983,0,6,0,0,0,0,0,32,0,0,0,0,0,8,18,28975,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,965,0,0,0,0,5724,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,24697,0,55,0,0,0,2,5,290,1614,24689,0,0,0,0,1,0,3,0,0,0,0,0,0,837,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,337,5,0,0,296,0,556,0,0,0,136,36,0,0,0,0,0,0,0,0,0,965,1,0,0,0,9,0,0,0,0,2,146,19,0,0,1,0,0,0,0,0,7007,1,0,1088,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,362,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,6,0,0,0,0,1,47,194,0,7,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3038,185,3 +10,0,0,5,0,41,21,0,47,0,4,0,0,2,14,0,853,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5870,41,152,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,403,0,0,0,0,0,1,0,0,0,0,0,2,0,0,196782,41,975,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,33401,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,986,0,0,0,0,5524,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,29171,0,53,0,0,0,8,19,290,1637,29161,0,0,0,0,1,0,3,0,0,0,0,0,0,921,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,307,5,0,0,298,0,416,0,0,0,140,24,0,0,0,0,0,0,0,0,0,947,1,0,0,0,9,0,0,0,0,2,148,19,0,0,1,0,0,0,0,0,7044,1,0,1138,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,222,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3245,83,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,5,0,0,84,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,53,3,0,0,58,0,56,0,0,0,28,4,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,7,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,180,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,127,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,57,0,88,0,0,0,27,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,9,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1032,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,454,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,120,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,23,0,0,0,0,3,24,6,53,0,0,0,0,1,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,73,3,0,0,80,0,152,0,0,0,27,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,251,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,105,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,233,64,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,130,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,53,3,0,0,63,0,88,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +4,0,0,5,0,34,21,0,40,0,4,0,0,2,7,0,614,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5706,34,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,261,0,0,0,0,0,1,0,0,0,0,0,2,0,0,119243,34,707,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20231,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,673,0,0,0,0,5317,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,16170,0,64,0,0,0,0,3,274,1592,16160,0,0,0,0,1,0,3,0,0,0,0,0,0,836,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,340,5,0,0,271,0,877,0,0,0,117,11,0,0,0,0,0,0,0,0,0,694,1,0,0,0,9,0,0,0,0,0,135,19,0,0,1,0,0,0,0,0,8250,1,0,1135,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,35,226,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3226,87,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,124,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,117,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1240,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,565,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,30,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,156,0,0,0,27,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,229,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,29,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,252,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,114,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,27,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1230,13,36,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,554,0,0,2,0,0,0,0,0,10,0,1,0,0,2,0,10,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,90,0,151,0,0,0,26,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,15,73,0,3,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,143,3 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,872,8,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,456,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,15,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,19,0,0,0,0,3,21,4,41,0,0,0,0,1,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,61,2,0,0,78,0,88,0,0,0,17,0,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,88,13,0,0,0,0,0,0,0,0,205,0,0,732,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,107,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,220,2,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +5,0,0,4,0,37,13,0,35,0,3,0,0,2,3,0,649,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2849,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,276,0,0,0,0,0,1,0,0,0,0,0,4,0,0,146270,37,737,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,25236,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,687,0,1,0,0,3294,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,21519,0,46,0,0,0,2,7,263,1206,21496,0,0,0,0,1,0,3,0,0,0,0,0,0,1256,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,247,4,0,0,280,0,375,0,0,0,130,9,0,0,0,0,0,0,0,0,0,711,1,0,0,0,10,0,0,0,0,1,131,36,0,0,0,0,0,0,0,0,4135,1,0,2427,14,0,1,1,1,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,219,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1899,51,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,53,0,0,0,28,8,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +10,0,0,5,0,41,17,0,46,0,4,0,0,2,14,0,852,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5022,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,393,0,0,0,0,0,1,0,0,0,0,0,2,0,0,158191,41,967,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,27487,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,982,0,0,0,0,4209,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,23439,0,53,0,0,0,8,19,287,1254,23429,0,0,0,0,1,0,3,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,298,5,0,0,284,0,412,0,0,0,122,20,0,0,0,0,0,0,0,0,0,941,1,0,0,0,9,0,0,0,0,2,144,17,0,0,1,0,0,0,0,0,6722,1,0,765,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,183,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2919,79,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,112,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,51,3,0,0,63,0,84,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,11,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,48,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,73,0,0,0,0,0,1,0,0,0,0,0,2,0,0,495,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,52,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,532,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,31,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,104,3,0,0,83,0,372,0,0,0,13,8,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,100,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,32,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,55,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2140,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,849,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,414,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,250,0,30,0,0,0,8,19,29,612,259,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,84,2,0,0,110,0,174,0,0,0,45,4,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,450,0,0,778,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,440,8,3 +16,0,0,6,0,40,17,0,43,6,5,0,0,2,12,0,745,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,349,0,0,0,0,0,1,0,0,0,0,0,10,0,0,147311,40,853,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,25481,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,849,0,7,0,0,3497,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,21757,0,51,0,0,0,8,20,288,1255,21746,0,0,0,0,1,0,3,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,289,6,0,0,277,0,393,0,0,0,113,24,0,0,0,0,0,0,0,0,0,830,1,0,0,0,9,0,0,0,0,1,140,17,0,0,1,0,0,0,0,0,4736,1,0,776,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,19,0,0,0,0,1,44,207,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1998,119,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,181,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,115,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,57,0,83,0,0,0,27,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,11,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1048,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,491,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,112,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,23,0,0,0,0,3,24,6,52,0,0,0,0,1,0,0,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,71,3,0,0,80,0,154,0,0,0,27,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,249,0,0,763,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,112,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,230,64,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,10,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3,0,0,3,0,14,9,0,48,0,14,0,0,0,2,0,17,0,7,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,2,0,14,6,0,0,75,0,1,0,1,0,0,1,0,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,8,0,0,4418,14,100,0,2,0,0,0,0,0,9,0,0,0,0,0,1,3,1392,0,0,2,0,0,1,40,0,321,30,3,0,0,2,0,196,0,0,0,0,661,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,768,0,70,0,0,0,0,3,33,458,778,0,0,0,0,1,0,0,0,0,0,0,0,0,746,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,112,3,0,0,102,0,216,0,0,0,38,5,0,0,0,0,0,0,0,0,0,97,1,0,0,0,2,0,0,0,0,1,96,105,0,0,66,0,0,0,0,0,1116,0,0,504,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,1,0,0,0,0,1,16,84,0,2,0,0,0,0,0,0,117,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,755,376,3 +0,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,11,0,3,0,1,0,0,3,0,0,0,0,0,78,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1287,11,58,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,541,0,0,3,0,0,0,0,0,12,0,5,0,0,2,0,15,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,86,0,41,0,0,0,0,3,25,6,96,0,0,0,0,1,0,0,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,86,2,0,0,102,0,120,0,0,0,42,1,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,20,0,0,0,0,0,0,0,0,229,0,0,819,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,169,0,1,0,0,1,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,293,13,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1210,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,538,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,88,0,154,0,0,0,25,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +2,0,0,3,0,17,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,0,18,0,0,0,7,0,0,0,3,0,17,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,6,55,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2252,17,89,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,864,0,0,3,0,0,0,0,0,32,0,2,0,0,2,0,118,0,1,0,0,468,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,255,0,33,0,0,0,12,27,34,634,263,0,0,0,0,1,0,0,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,88,3,0,0,116,0,200,0,0,0,45,5,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,97,31,0,0,0,0,0,0,0,0,470,0,0,779,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,6,0,0,0,0,1,20,201,0,25,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,439,29,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,253,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,106,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,26,3 +0,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,11,0,3,0,1,0,0,3,0,0,0,0,0,80,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1253,11,59,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,511,0,0,3,0,0,0,0,0,12,0,5,0,0,2,0,15,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,87,0,43,0,0,0,0,3,25,6,96,0,0,0,0,1,0,0,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,86,2,0,0,103,0,120,0,0,0,42,1,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,20,0,0,0,0,0,0,0,0,227,0,0,819,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,173,0,1,0,0,1,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,294,14,3 +4,0,0,5,0,36,21,0,43,0,4,0,0,2,7,0,755,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5706,36,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,296,0,0,0,0,0,1,0,0,0,0,0,2,0,0,115885,36,851,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19782,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,814,0,0,0,0,5213,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15775,0,63,0,0,0,0,3,288,1597,15763,0,0,0,0,1,0,3,0,0,0,0,0,0,823,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,385,5,0,0,275,0,882,0,0,0,117,17,0,0,0,0,0,0,0,0,0,838,1,0,0,0,9,0,0,0,0,0,136,19,0,0,1,0,0,0,0,0,8449,1,0,1146,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,37,199,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3204,86,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,7,0,0,194,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,143,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,30,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,62,3,0,0,62,0,97,0,0,0,32,5,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,19,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,32,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,13,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,11,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1256,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,568,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,70,2,0,0,79,0,161,0,0,0,25,3,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,265,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,364,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,101,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,102,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,83,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1235,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,563,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,88,0,154,0,0,0,25,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,149,3 +5,0,0,7,0,40,12,0,37,4,12,0,0,2,8,0,19,0,7,3,0,0,0,5,0,9,0,0,18,0,1,0,0,0,6,0,40,6,0,0,83,0,0,0,1,0,0,4,0,0,0,0,2,133,0,0,0,0,0,1,0,0,0,0,0,15,0,0,1268,40,125,0,18,0,0,0,1,0,21,0,0,0,0,0,7,19,190,0,0,6,0,0,2,23,0,284,40,6,0,0,2,0,152,0,4,0,0,958,0,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,1,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,10,10,0,0,0,142,0,95,0,0,0,1,4,204,198,143,0,0,0,0,1,0,4,0,0,0,0,0,0,461,0,0,0,0,1,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,17,178,7,0,0,193,0,382,0,0,0,72,28,0,0,0,0,0,0,0,0,0,97,1,0,0,0,8,0,0,0,0,1,122,70,0,0,82,0,1,0,0,0,125,0,0,96,3,0,1,1,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,16,0,0,0,0,1,46,123,0,19,9,0,0,0,0,0,84,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,1,2,295,98,3 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,869,8,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,453,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,15,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,19,0,0,0,0,3,21,4,41,0,0,0,0,1,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,61,2,0,0,78,0,88,0,0,0,17,0,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,88,13,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,107,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,2,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,264,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +7,0,0,3,0,20,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,8,0,20,6,0,0,30,0,5,0,1,0,0,5,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,6,0,0,40708,20,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,6846,0,0,8,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,4330,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4175,0,77,0,0,0,0,3,39,7865,4189,0,0,0,0,1,0,0,0,0,0,0,0,0,8312,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,165,3,0,0,148,0,252,0,0,0,82,18,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,102,44,0,0,0,0,0,0,0,0,2032,0,0,9605,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,1,28,230,0,4,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2863,51,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,5,0,0,72,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,38,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,6,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,67,0,0,0,0,0,1,0,0,0,0,0,2,0,0,472,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,59,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,486,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,32,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,96,3,0,0,83,0,286,0,0,0,13,9,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,93,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,27,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,27,2,0,0,30,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,46,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,83,0,0,0,0,0,1,0,0,0,0,0,2,0,0,501,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,68,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,574,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,31,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1084,3,0,0,1064,0,381,0,0,0,14,13,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1083,9,0,0,0,0,0,0,0,0,113,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,35,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,95,10,24,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,14,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,42,3,0,0,58,0,94,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,21,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,15,3 +7,0,0,3,0,20,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,9,0,20,6,0,0,30,0,5,0,1,0,0,5,0,0,0,0,0,85,0,0,0,0,0,1,0,0,0,0,0,6,0,0,32512,20,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,6718,0,0,9,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,480,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4110,0,74,0,0,0,0,3,39,223,4124,0,0,0,0,1,0,0,0,0,0,0,0,0,8115,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,143,3,0,0,148,0,263,0,0,0,85,18,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,102,44,0,0,0,0,0,0,0,0,2006,0,0,9435,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,1,29,255,0,4,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2810,62,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,145,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,93,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,11,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1024,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,483,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,19,0,0,0,0,3,22,4,52,0,0,0,0,1,0,0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,58,2,0,0,76,0,105,0,0,0,22,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,212,0,0,768,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,110,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,231,6,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1076,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,485,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,115,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,23,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,71,3,0,0,80,0,158,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,253,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,105,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,65,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,97,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,144,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,35,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,62,0,82,0,0,0,32,9,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,25,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,10,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1237,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,528,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,89,2,0,0,91,0,176,0,0,0,31,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,35,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,258,150,3 +1,0,0,6,0,34,7,0,36,0,5,0,0,7,6,0,575,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,179,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18091,34,644,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4169,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,634,0,0,1,0,2724,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,655,0,46,0,0,0,1,4,256,1160,641,0,0,0,0,1,0,3,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,189,6,0,0,201,0,271,0,0,0,58,5,0,0,0,0,0,0,0,0,0,642,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3288,1,0,840,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,114,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1851,78,3 +1,0,0,6,0,34,7,0,33,0,5,0,0,7,6,0,473,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,164,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18097,34,539,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4309,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,532,0,0,1,0,2672,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,659,0,47,0,0,0,1,4,256,1158,645,0,0,0,0,1,0,3,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,189,6,0,0,201,0,277,0,0,0,57,4,0,0,0,0,0,0,0,0,0,537,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3173,1,0,817,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,109,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1914,74,3 +16,0,0,6,0,39,21,0,48,6,5,0,0,2,12,0,870,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,5868,39,146,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,376,0,0,0,0,0,1,0,0,0,0,0,10,0,0,144279,39,993,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,24711,0,0,4,0,0,0,0,0,95,5,2,0,0,2,0,981,0,7,0,0,5416,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,20382,0,52,0,0,0,8,21,285,1638,20372,0,0,0,0,1,0,3,0,0,0,0,0,0,949,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,278,6,0,0,286,0,396,0,0,0,126,17,0,0,0,0,0,0,0,0,0,964,1,0,0,0,9,0,0,0,0,2,140,19,0,0,1,0,0,0,0,0,5405,1,0,1128,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,186,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2384,139,3 +2,0,0,2,0,11,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2055,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,886,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,242,0,26,0,0,0,0,3,25,597,257,0,0,0,0,1,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,65,2,0,0,98,0,124,0,0,0,42,2,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,408,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,436,6,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,122,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,140,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,36,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,93,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,98,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,32,0,0,0,2,3,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,47,3,0,0,57,0,90,0,0,0,27,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,8,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,116,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,122,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,50,3,0,0,62,0,66,0,0,0,31,3,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,24,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,8,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,359,0,0,0,0,0,1,0,0,0,0,0,10,0,0,164258,39,872,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,28349,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,867,0,7,0,0,3488,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,24472,0,52,0,0,0,8,20,281,1255,24462,0,0,0,0,1,0,3,0,0,0,0,0,0,378,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,303,6,0,0,275,0,402,0,0,0,113,11,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4815,1,0,796,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,193,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2039,125,3 +0,0,0,4,0,25,4,0,21,0,2,0,0,2,3,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,1,0,25,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,1,148,0,0,0,0,0,1,0,0,0,0,0,4,0,0,600,25,53,0,1,0,0,0,0,0,12,0,0,0,0,0,7,14,106,0,0,1,0,0,0,0,0,73,5,3,0,0,2,0,30,0,0,0,0,389,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,76,0,47,0,0,0,0,3,177,10,80,0,0,0,0,1,0,3,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,119,4,0,0,133,0,172,0,0,0,32,2,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,0,106,21,0,0,0,0,0,0,0,0,75,0,0,35,2,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,187,0,2,8,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,158,55,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,39,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,30,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,252,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,108,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,27,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,5,0,0,74,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,38,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,6,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,135,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,30,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,79,2,0,0,94,0,265,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,26,3 +2,0,0,3,0,9,2,0,18,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,2,0,0,913,9,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,467,0,0,1,0,0,0,0,0,8,0,1,0,0,2,0,15,0,0,0,0,90,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,32,0,24,0,0,0,0,3,23,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,76,4,0,0,78,0,106,0,0,0,18,2,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,91,8,0,0,0,0,0,0,0,0,781,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,96,0,1,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,225,17,3 +3549,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,122,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1768,11,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,612,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,167,0,66,0,0,0,0,3,31,9,166,0,0,0,0,1,0,0,0,0,0,0,0,0,9897,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,103,2,0,0,133,0,247,0,0,0,63,6,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,93,43,0,0,0,0,0,0,0,0,250,0,0,921,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,283,0,1,0,0,2,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,368,43,3 +2,0,0,3,0,26,4,0,12,0,2,0,0,2,2,0,18,0,7,2,0,0,0,6,0,9,0,0,2,0,1,0,0,0,1,0,26,6,0,0,18,0,4,0,1,0,0,4,0,0,0,0,1,95,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1854,26,61,0,2,0,0,0,0,0,21,0,0,0,0,0,7,20,679,0,0,1,0,0,0,0,0,79,5,8,0,0,2,0,19,0,0,0,0,408,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,152,0,54,0,0,0,0,3,152,11,143,0,0,0,0,1,0,2,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,34,10,109,3,0,0,144,0,249,0,0,0,47,4,0,0,0,0,0,0,0,0,0,47,1,0,0,0,8,0,0,0,0,1,106,31,0,0,0,0,0,0,0,0,849,0,0,871,3,0,1,1,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,3,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,1,0,0,0,0,1,27,154,0,3,9,0,1,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,387,65,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,261,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,102,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,28,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +16,0,0,6,0,40,15,0,42,6,5,0,0,2,12,0,709,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4923,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,363,0,0,0,0,0,1,0,0,0,0,0,10,0,0,143209,40,813,0,10,0,0,0,0,0,26,0,0,0,0,0,8,18,24886,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,812,0,7,0,0,3553,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,21066,0,53,0,0,0,8,20,283,1238,21056,0,0,0,0,1,0,3,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,303,6,0,0,274,0,395,0,0,0,110,15,0,0,0,0,0,0,0,0,0,791,1,0,0,0,9,0,0,0,0,1,140,16,0,0,1,0,0,0,0,0,4677,1,0,774,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,13,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,20,0,0,0,2,1,44,218,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2005,134,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1317,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,64,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,611,0,0,0,0,0,15,41,223,0,0,0,0,0,0,0,0,0,0,0,0,0,1632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,17,2,0,0,59,0,80,0,0,0,47,1,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,44,0,0,0,0,0,0,0,0,317,0,0,364,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,114,0,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1414,1,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,253,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,104,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,26,3 +1,0,0,6,0,34,7,0,35,0,5,0,0,7,6,0,541,0,6,1,0,0,0,9,0,12,0,0,6,0,0,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,180,0,0,0,0,0,1,0,0,0,0,0,5,0,0,19233,34,609,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4386,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,600,0,0,1,0,2865,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,756,0,46,0,0,0,1,4,256,1160,742,0,0,0,0,1,0,3,0,0,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,187,6,0,0,201,0,270,0,0,0,58,6,0,0,0,0,0,0,0,0,0,607,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3338,1,0,840,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,110,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1940,79,3 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,138,9,21,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,1,0,0,0,0,0,6,0,0,0,0,2,0,8,0,1,0,0,86,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,21,0,0,0,0,3,23,5,25,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,48,3,0,0,72,0,66,0,0,0,42,4,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,0,91,38,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,73,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,7,3 +2,0,0,5,0,36,6,0,40,1,5,0,0,6,5,0,687,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,2,898,36,6,0,0,41,0,1,0,1,0,0,2,0,0,0,0,1,158,0,0,0,0,0,1,0,0,0,0,0,2,0,0,25439,36,755,0,4,0,0,0,0,0,15,0,0,0,0,0,8,20,5536,0,0,2,0,0,0,0,0,189,20,4,0,0,2,0,727,0,0,1,0,1925,0,0,0,0,0,2,4,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,1911,0,39,0,0,0,0,3,264,345,1899,0,0,0,0,1,0,6,0,0,0,0,0,0,2392,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,19,196,5,0,0,213,0,377,0,0,0,68,6,0,0,0,0,0,0,0,0,0,755,1,0,0,0,9,0,0,0,0,0,117,27,0,0,6,0,0,0,0,0,3702,1,0,3336,5,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,5,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,3,0,0,0,0,1,38,134,0,5,12,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2152,136,3 +4,0,0,3,0,9,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,4,0,0,89,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,123,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,26,0,0,0,0,3,23,4,33,0,0,0,0,1,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,5,45,3,0,0,54,0,59,0,0,0,23,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,92,19,0,0,0,0,0,0,0,0,596,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,29,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,32,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,11,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,22,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,33,0,29,0,0,0,0,3,30,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,79,2,0,0,95,0,259,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,27,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,108,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,28,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,49,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1204,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,524,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,74,2,0,0,88,0,168,0,0,0,25,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,1,0,0,79,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,22,0,0,0,0,3,22,4,25,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,39,2,0,0,54,0,50,0,0,0,24,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,23,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,49,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,8,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +7,0,0,5,0,41,21,0,44,0,4,0,0,2,12,0,841,0,6,1,0,0,0,8,0,10,0,0,8,0,2,0,0,0,6,5870,41,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,2,395,0,0,0,0,0,1,0,0,0,0,0,2,0,0,133255,41,949,0,7,0,0,0,0,0,32,0,0,0,0,0,8,18,22657,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,932,0,0,0,0,5672,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,18477,0,55,0,0,0,2,5,287,1634,18470,0,0,0,0,1,0,3,0,0,0,0,0,0,899,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,353,5,0,0,295,0,432,0,0,0,135,25,0,0,0,0,0,0,0,0,0,930,1,0,0,0,9,0,0,0,0,2,145,19,0,0,1,0,0,0,0,0,6773,1,0,1143,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,362,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,7,0,0,0,2,1,47,217,0,8,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3004,179,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,77,2,0,0,91,0,243,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,26,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,11,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,53,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,30,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,79,2,0,0,94,0,263,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,26,3 +2362,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,148,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2190,11,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,695,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,665,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,2362,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,243,0,95,0,0,0,0,3,31,9,240,0,0,0,0,1,0,0,0,0,0,0,0,0,6906,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,110,2,0,0,133,0,255,0,0,0,63,7,0,0,0,0,0,48,0,0,0,44,1,0,0,0,2,0,0,0,0,1,91,43,0,0,0,0,0,0,0,0,287,0,0,971,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,305,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,471,50,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,403,0,0,0,0,0,1,0,0,0,0,0,10,0,0,143617,39,871,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,24929,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,866,0,7,0,0,3572,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,21026,0,52,0,0,0,6,19,281,1257,21016,0,0,0,0,1,0,3,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,286,6,0,0,275,0,388,0,0,0,113,20,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4855,1,0,787,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,207,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2010,132,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1234,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,533,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,28,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,92,0,167,0,0,0,29,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,17,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,34,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,258,153,3 +2,0,0,3,0,19,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,0,18,0,0,0,7,0,0,0,3,0,19,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,6,57,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2205,19,89,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,867,0,0,3,0,0,0,0,0,32,0,2,0,0,2,0,118,0,1,0,0,482,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,254,0,35,0,0,0,12,27,36,666,262,0,0,0,0,1,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,93,3,0,0,122,0,198,0,0,0,45,5,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,99,31,0,0,0,0,0,0,0,0,468,0,0,779,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,6,0,0,0,0,1,22,204,0,25,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,437,28,3 +12,0,0,5,0,38,36,0,50,0,4,0,0,2,13,0,1095,0,6,2,0,0,0,7,0,10,0,0,6,0,1,0,0,0,2,11283,38,56,0,0,22,0,0,0,1,0,0,2,0,0,0,0,1,487,0,0,0,0,0,1,0,0,0,0,0,2,0,0,171328,38,1261,0,4,0,0,0,0,0,56,0,0,0,0,0,8,19,33709,0,0,2,0,0,0,0,0,91,5,4,1,0,2,0,1214,0,0,0,0,6460,0,0,0,0,5,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,12,12,12,0,0,0,31297,0,47,0,0,0,0,3,314,1346,31281,0,0,0,0,1,0,4,0,0,0,0,0,0,1486,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,356,5,0,0,344,0,450,0,0,0,178,41,0,0,0,0,0,0,0,0,0,1206,1,0,0,0,9,0,0,0,0,1,157,29,0,0,1,0,0,0,0,0,9098,1,0,789,26,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,26,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,3,0,0,0,0,1,40,262,0,5,12,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2743,91,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,429,13,35,0,4,0,0,0,0,0,6,0,0,0,0,0,1,3,93,0,0,3,0,0,0,0,0,10,0,1,0,0,2,0,11,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,82,0,24,0,0,0,0,3,27,5,95,0,0,0,0,1,0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,95,2,0,0,91,0,178,0,0,0,31,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,45,0,0,72,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,35,0,4,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,71,150,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,8,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +10,0,0,5,0,42,21,0,44,0,4,0,0,2,14,0,764,0,6,1,0,0,0,8,0,12,9,0,6,0,4,0,0,0,6,5868,42,156,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,339,0,0,0,0,0,1,0,0,0,0,0,2,0,0,133323,42,885,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,22692,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,899,0,0,0,0,5599,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,18619,0,56,0,0,0,8,19,294,1627,18612,0,0,0,0,1,0,3,0,0,0,0,0,0,957,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,308,5,0,0,294,0,449,0,0,0,131,17,0,0,0,0,0,0,0,0,0,855,1,0,0,0,9,0,0,0,0,2,142,19,0,0,1,0,0,0,0,0,6633,1,0,1142,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,11,0,0,0,0,1,48,207,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3185,206,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1310,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,526,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,40,0,0,0,0,3,23,6,98,0,0,0,0,1,0,0,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,120,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,812,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,201,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,292,15,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4946,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,362,0,0,0,0,0,1,0,0,0,0,0,10,0,0,142684,39,873,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,24678,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,868,0,7,0,0,3804,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,20835,0,52,0,0,0,8,20,281,1259,20825,0,0,0,0,1,0,3,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,289,6,0,0,273,0,394,0,0,0,112,15,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,1,137,17,0,0,1,0,0,0,0,0,4854,1,0,776,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,20,0,0,0,2,1,43,201,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2055,133,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,128,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,123,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,34,0,0,0,2,3,26,6,39,0,0,0,0,1,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,605,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,36,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1221,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,542,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,90,0,155,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,149,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,5,0,0,233,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,150,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,59,3,0,0,74,0,70,0,0,0,43,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,36,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,50,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,6,0,32,7,0,48,0,10,0,0,6,4,0,576,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,5,0,1,762,32,32,0,0,55,0,1,0,1,0,0,2,0,0,0,0,1,175,0,0,0,0,0,1,0,0,0,0,0,4,0,0,18239,32,660,0,3,0,0,0,0,0,19,0,0,0,0,1,8,22,4122,0,0,1,0,0,1,10,0,278,40,5,0,0,2,0,668,0,0,1,0,2752,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,623,0,59,0,0,0,1,4,243,1196,609,0,0,0,0,1,0,3,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,91,16,167,6,0,0,185,0,269,0,0,0,47,5,0,0,0,0,0,0,0,0,0,657,1,0,0,0,9,0,0,0,0,0,113,28,0,0,51,0,0,0,0,0,3916,1,0,822,6,0,1,1,1,0,0,0,8,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,5,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,5,0,0,0,0,1,33,54,0,4,12,0,0,0,0,0,81,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1892,72,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,31,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,256,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,62,26,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1223,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,551,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,30,0,0,0,0,3,31,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,91,0,155,0,0,0,25,10,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,94,15,0,0,0,0,0,0,0,0,229,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,273,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,105,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,54,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +7,0,0,5,0,41,21,0,42,0,4,0,0,2,12,0,770,0,6,1,0,0,0,8,0,10,0,0,7,0,2,0,0,0,6,5870,41,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,2,444,0,0,0,0,0,1,0,0,0,0,0,2,0,0,147167,41,873,0,6,0,0,0,0,0,32,0,0,0,0,0,8,18,25177,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,858,0,0,0,0,5342,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,21064,0,56,0,0,0,2,5,290,1604,21056,0,0,0,0,1,0,3,0,0,0,0,0,0,802,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,356,5,0,0,299,0,428,0,0,0,141,25,0,0,0,0,0,0,0,0,0,857,1,0,0,0,9,0,0,0,0,2,148,19,0,0,1,0,0,0,0,0,6487,1,0,1067,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,362,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,6,0,0,0,0,1,47,217,0,7,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2952,176,3 +1,0,0,6,0,34,7,0,34,0,5,0,0,7,6,0,507,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,60,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,166,0,0,0,0,0,1,0,0,0,0,0,5,0,0,17886,34,574,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4209,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,573,0,0,1,0,2774,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,735,0,48,0,0,0,1,4,256,1158,721,0,0,0,0,1,0,3,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,118,13,195,6,0,0,201,0,285,0,0,0,58,5,0,0,0,0,0,0,0,0,0,572,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3128,1,0,816,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,124,0,4,14,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1900,91,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +7,0,0,5,0,35,21,0,45,0,4,0,0,2,9,0,851,0,6,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5870,35,44,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,381,0,0,0,0,0,1,0,0,0,0,0,2,0,0,144643,35,953,0,2,0,0,0,0,0,32,0,0,0,0,0,8,18,24721,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,927,0,0,0,0,4999,0,0,0,0,3,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,20503,0,45,0,0,0,0,3,282,1601,20488,0,0,0,0,1,0,3,0,0,0,0,0,0,787,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,293,5,0,0,281,0,433,0,0,0,123,29,0,0,0,0,0,0,0,0,0,938,1,0,0,0,9,0,0,0,0,1,143,19,0,0,1,0,0,0,0,0,7732,1,0,1087,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,1,0,0,0,0,1,36,212,0,3,12,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2827,57,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,123,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,157,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,58,3,0,0,72,0,90,0,0,0,41,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,36,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1220,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,533,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,79,0,162,0,0,0,25,4,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,258,0,0,799,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,101,3 +1,0,0,2,0,12,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,12,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,12,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,31,0,0,0,0,3,34,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,81,2,0,0,97,0,270,0,0,0,22,10,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,94,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,12,108,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,62,28,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1229,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,555,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,156,0,0,0,27,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,149,3 +4,0,0,5,0,36,21,0,44,0,4,0,0,2,7,0,790,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,36,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,252,0,0,0,0,0,1,0,0,0,0,0,2,0,0,112684,36,887,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19306,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,849,0,0,0,0,5312,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,15113,0,64,0,0,0,0,3,285,1593,15102,0,0,0,0,1,0,3,0,0,0,0,0,0,835,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,329,5,0,0,277,0,807,0,0,0,118,12,0,0,0,0,0,0,0,0,0,874,1,0,0,0,9,0,0,0,0,0,137,19,0,0,1,0,0,0,0,0,8282,1,0,1139,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,37,218,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3119,85,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1266,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,557,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,26,0,0,0,0,3,27,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,90,2,0,0,91,0,182,0,0,0,31,9,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,226,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,150,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,87,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,106,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,3,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,46,3,0,0,57,0,87,0,0,0,27,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,10,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,123,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,132,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +10,0,0,5,0,42,21,0,45,0,4,0,0,2,14,0,802,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,42,158,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,380,0,0,0,0,0,1,0,0,0,0,0,2,0,0,145699,42,924,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,24910,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,937,0,0,0,0,5442,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,12,12,0,0,0,20617,0,53,0,0,0,8,19,297,1639,20606,0,0,0,0,1,0,3,0,0,0,0,0,0,941,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,328,5,0,0,301,0,475,0,0,0,141,19,0,0,0,0,0,0,0,0,0,894,1,0,0,0,9,0,0,0,0,2,149,19,0,0,1,0,0,0,0,0,6957,1,0,1141,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,11,0,0,0,0,1,48,213,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3230,109,3 +0,0,0,3,0,8,2,0,18,0,2,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,8,0,2,0,1,0,0,2,0,0,0,0,0,83,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1133,8,51,0,1,0,0,0,0,0,12,0,0,0,0,0,1,7,500,0,0,0,0,0,0,0,0,10,0,4,0,0,2,0,17,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,63,0,28,0,0,0,0,3,22,6,73,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,70,3,0,0,86,0,110,0,0,0,25,5,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,90,15,0,0,0,0,0,0,0,0,218,0,0,785,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,113,0,1,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,256,9,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,124,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,131,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +0,0,0,3,0,25,6,0,11,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,0,0,1,0,25,6,0,0,20,0,2,0,1,0,0,3,0,0,0,0,1,102,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2380,25,63,0,1,0,0,0,0,0,22,0,0,0,0,0,7,18,762,0,0,1,0,0,0,0,0,79,5,5,0,0,2,0,20,0,0,0,0,529,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,192,0,58,0,0,0,0,3,177,10,193,0,0,0,0,1,0,3,0,0,0,0,0,0,469,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,10,122,3,0,0,165,0,346,0,0,0,73,6,0,0,0,0,0,0,0,0,0,46,1,0,0,0,8,0,0,0,0,0,107,54,0,0,0,0,0,0,0,0,312,0,0,925,3,0,1,1,1,0,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,203,0,2,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,443,145,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,271,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,5,0,0,233,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,341,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,9,34,0,0,0,0,1,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,55,3,0,0,74,0,68,0,0,0,43,5,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,36,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +0,0,0,3,0,12,2,0,16,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,6,0,0,12,0,0,0,1,0,0,3,0,0,0,0,0,86,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1542,12,56,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,313,0,0,4,0,0,0,0,0,11,0,4,0,0,2,0,17,0,1,0,0,351,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,236,0,51,0,0,0,0,3,26,202,249,0,0,0,0,1,0,0,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,95,3,0,0,105,0,166,0,0,0,46,6,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,94,21,0,0,0,0,0,0,0,0,128,0,0,313,0,0,1,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,175,0,1,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,257,16,3 +0,0,0,3,0,13,2,0,16,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,13,6,0,0,14,0,0,0,1,0,0,3,0,0,0,0,0,90,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1301,13,56,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,276,0,0,5,0,0,0,0,0,11,0,4,0,0,2,0,17,0,1,0,0,276,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,218,0,53,0,0,0,0,3,27,203,231,0,0,0,0,1,0,0,0,0,0,0,0,0,390,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,95,3,0,0,109,0,186,0,0,0,50,10,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,95,22,0,0,0,0,0,0,0,0,104,0,0,241,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,18,178,0,1,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,220,16,3 +4,0,0,5,0,36,16,0,42,0,4,0,0,2,7,0,752,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,4341,36,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,1154,0,0,0,0,0,1,0,0,0,0,0,2,0,0,114733,36,835,0,1,0,0,0,0,0,26,0,0,0,0,0,8,18,20162,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,804,0,0,0,0,3942,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15786,0,65,0,0,0,0,3,282,1267,15774,0,0,0,0,1,0,3,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,402,5,0,0,258,0,879,0,0,0,100,22,0,0,0,0,0,0,0,0,0,829,1,0,0,0,9,0,0,0,0,0,131,16,0,0,1,0,0,0,0,0,8263,1,0,792,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,13,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,37,188,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3069,90,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,183,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,301,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,57,0,72,0,0,0,27,9,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,10,3 +4,0,0,5,0,36,21,0,43,0,4,0,0,2,7,0,755,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5706,36,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,287,0,0,0,0,0,1,0,0,0,0,0,2,0,0,132350,36,851,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,22664,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,814,0,0,0,0,5088,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,18449,0,64,0,0,0,0,3,287,1597,18437,0,0,0,0,1,0,3,0,0,0,0,0,0,836,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,374,5,0,0,276,0,873,0,0,0,120,14,0,0,0,0,0,0,0,0,0,838,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8171,1,0,1142,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,37,218,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3110,87,3 +1,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,256,10,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,36,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,28,0,0,0,0,3,26,4,52,0,0,0,0,1,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,69,2,0,0,83,0,252,0,0,0,22,8,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,92,17,0,0,0,0,0,0,0,0,35,0,0,49,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,59,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,68,28,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,70,0,0,0,0,0,1,0,0,0,0,0,2,0,0,454,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,59,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,470,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1098,3,0,0,1092,0,302,0,0,0,14,9,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1111,9,0,0,0,0,0,0,0,0,94,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,30,3 +4,0,0,6,0,40,17,0,41,6,5,0,0,2,10,0,682,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,5,5033,40,36,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,373,0,0,0,0,0,1,0,0,0,0,0,10,0,0,132619,40,787,0,7,0,0,0,0,0,28,0,0,0,0,0,8,18,23106,0,0,5,0,0,0,0,0,90,5,2,0,0,2,0,774,0,7,0,0,3418,0,0,0,0,9,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,19214,0,51,0,0,0,6,19,283,1254,19204,0,0,0,0,1,0,3,0,0,0,0,0,0,362,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,37,20,286,6,0,0,281,0,399,0,0,0,119,13,0,0,0,0,0,0,0,0,0,763,1,0,0,0,9,0,0,0,0,1,143,17,0,0,1,0,0,0,0,0,3796,1,0,799,14,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,363,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,16,0,0,0,0,1,45,171,0,17,12,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1991,113,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,77,2,0,0,91,0,266,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,28,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2167,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,871,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,253,0,34,0,0,0,8,19,29,611,264,0,0,0,0,1,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,181,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,452,0,0,774,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,446,9,3 +4,0,0,5,0,39,21,0,45,0,4,0,0,2,7,0,792,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,39,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,251,0,0,0,0,0,1,0,0,0,0,0,2,0,0,113583,39,898,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,19238,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,860,0,0,0,0,6069,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,15137,0,71,0,0,0,6,9,288,1616,15120,0,0,0,0,1,0,3,0,0,0,0,0,0,825,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,613,5,0,0,287,0,937,0,0,0,128,84,0,0,0,0,0,0,0,0,0,877,1,0,0,0,9,0,0,0,0,4,141,19,0,0,1,0,0,0,0,0,9082,1,0,1137,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,12,0,0,0,6,1,43,255,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3331,146,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,7,0,0,194,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,156,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,30,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,63,3,0,0,62,0,97,0,0,0,32,5,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,19,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,32,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,13,3 +4,0,0,5,0,35,21,0,42,0,4,0,0,2,7,0,700,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,255,0,0,0,0,0,1,0,0,0,0,0,2,0,0,113421,35,795,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19302,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,759,0,0,0,0,5215,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,15350,0,65,0,0,0,0,3,281,1596,15339,0,0,0,0,1,0,3,0,0,0,0,0,0,839,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,333,5,0,0,276,0,807,0,0,0,120,17,0,0,0,0,0,0,0,0,0,782,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,7913,1,0,1142,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,236,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3059,87,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,978,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,452,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,126,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,38,0,23,0,0,0,0,3,24,6,49,0,0,0,0,1,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,72,3,0,0,80,0,155,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,247,0,0,752,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,105,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,227,66,3 +4,0,0,5,0,38,21,0,41,0,4,0,0,2,7,0,630,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,4,5706,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,339,0,0,0,0,0,1,0,0,0,0,0,2,0,0,116354,38,726,0,4,0,0,0,0,0,32,0,0,0,0,0,8,18,20133,0,0,4,0,0,0,0,0,90,5,2,0,0,2,0,692,0,0,0,0,5359,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,15808,0,72,0,0,0,0,3,285,1537,15791,0,0,0,0,1,0,3,0,0,0,0,0,0,626,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,620,5,0,0,288,0,943,0,0,0,131,87,0,0,0,0,0,0,0,0,0,711,1,0,0,0,9,0,0,0,0,1,144,19,0,0,1,0,0,0,0,0,8976,1,0,1009,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,3,0,0,0,0,1,42,233,0,5,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3393,153,3 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1285,11,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,521,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,41,0,0,0,0,3,31,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,86,2,0,0,130,0,120,0,0,0,65,0,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,93,49,0,0,0,0,0,0,0,0,227,0,0,810,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,189,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,295,13,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,86,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,98,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,3,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,46,3,0,0,57,0,87,0,0,0,27,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,8,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,196,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,139,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,4,24,6,35,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,58,3,0,0,59,0,91,0,0,0,29,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,22,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,34,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,54,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,55,0,51,0,0,0,25,7,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,21,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2169,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,868,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,254,0,36,0,0,0,8,19,29,614,265,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,180,0,0,0,45,8,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,451,0,0,774,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,454,9,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1539,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,675,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,143,0,22,0,0,0,0,3,23,302,154,0,0,0,0,1,0,0,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,60,2,0,0,82,0,88,0,0,0,26,3,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,89,21,0,0,0,0,0,0,0,0,311,0,0,771,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,109,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,334,6,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,49,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,122,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,20,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,138,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,60,3,0,0,72,0,90,0,0,0,41,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,606,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,35,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1547,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,688,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,141,0,20,0,0,0,0,3,23,299,152,0,0,0,0,1,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,60,2,0,0,82,0,88,0,0,0,26,5,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,89,21,0,0,0,0,0,0,0,0,311,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,109,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,329,5,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,70,0,0,0,0,0,1,0,0,0,0,0,2,0,0,443,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,55,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,453,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1052,3,0,0,1044,0,309,0,0,0,14,10,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1063,9,0,0,0,0,0,0,0,0,90,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,29,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,208,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,114,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,53,3,0,0,63,0,93,0,0,0,33,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,8,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1235,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,524,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,27,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,93,2,0,0,91,0,182,0,0,0,31,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,226,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,260,150,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1211,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,539,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,31,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,74,2,0,0,88,0,154,0,0,0,25,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,263,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +4,0,0,5,0,34,21,0,44,0,4,0,0,2,7,0,750,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5706,34,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,259,0,0,0,0,0,1,0,0,0,0,0,2,0,0,122484,34,847,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20782,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,809,0,0,0,0,5117,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,16789,0,64,0,0,0,0,3,273,1602,16779,0,0,0,0,1,0,3,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,347,5,0,0,274,0,877,0,0,0,121,19,0,0,0,0,0,0,0,0,0,834,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8457,1,0,1141,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,35,199,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3164,87,3 +4,0,0,5,0,35,21,0,45,0,4,0,0,2,7,0,803,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5706,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,334,0,0,0,0,0,1,0,0,0,0,0,2,0,0,137717,35,901,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,23354,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,862,0,0,0,0,5135,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19230,0,65,0,0,0,0,3,281,1591,19219,0,0,0,0,1,0,3,0,0,0,0,0,0,793,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,362,5,0,0,271,0,881,0,0,0,115,12,0,0,0,0,0,0,0,0,0,888,1,0,0,0,9,0,0,0,0,0,133,19,0,0,1,0,0,0,0,0,8280,1,0,1101,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,218,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3053,85,3 +10,0,0,5,0,41,17,0,42,0,4,0,0,2,14,0,712,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5024,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,436,0,0,0,0,0,1,0,0,0,0,0,2,0,0,127262,41,823,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,22230,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,842,0,0,0,0,3375,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,18405,0,53,0,0,0,8,19,286,1254,18395,0,0,0,0,1,0,3,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,295,5,0,0,288,0,419,0,0,0,126,23,0,0,0,0,0,0,0,0,0,797,1,0,0,0,9,0,0,0,0,2,148,17,0,0,1,0,0,0,0,0,6285,1,0,784,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,204,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2885,101,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,214,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,130,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,53,3,0,0,63,0,92,0,0,0,33,7,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,1,0,0,59,10,20,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,6,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,22,0,0,0,0,3,24,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,38,2,0,0,73,0,74,0,0,0,43,2,0,0,0,0,0,0,0,0,0,23,1,0,0,0,2,0,0,0,0,0,92,36,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,74,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,6,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,1,0,0,973,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,450,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,19,0,0,0,0,3,22,4,50,0,0,0,0,1,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,58,2,0,0,77,0,84,0,0,0,23,1,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,17,0,0,0,0,0,0,0,0,210,0,0,760,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,117,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,226,6,3 +10,0,0,5,0,41,21,0,46,0,4,0,0,2,14,0,819,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,162,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,391,0,0,0,0,0,1,0,0,0,0,0,2,0,0,133438,41,942,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,22733,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,954,0,0,0,0,5627,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,18553,0,54,0,0,0,8,19,290,1635,18543,0,0,0,0,1,0,3,0,0,0,0,0,0,919,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,325,5,0,0,300,0,485,0,0,0,140,19,0,0,0,0,0,0,0,0,0,912,1,0,0,0,9,0,0,0,0,2,150,19,0,0,1,0,0,0,0,0,7009,1,0,1134,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,211,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3246,109,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2362,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,137,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2430,10,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,741,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,2362,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,266,0,91,0,0,0,0,3,27,9,263,0,0,0,0,1,0,0,0,0,0,0,0,0,6815,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,111,2,0,0,130,0,242,0,0,0,63,8,0,0,0,0,0,39,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,288,0,0,1041,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,294,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,461,48,3 +0,0,0,2,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,1,0,0,64,10,20,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,6,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,20,0,0,0,0,3,24,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,39,2,0,0,73,0,75,0,0,0,43,3,0,0,0,0,0,0,0,0,0,23,1,0,0,0,2,0,0,0,0,0,92,36,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,74,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,6,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,123,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,126,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,36,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1,0,0,0,0,0,4,0,0,23,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,10,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,16,0,0,0,0,3,22,5,26,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,32,3,0,0,41,0,37,0,0,0,11,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,7,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,1,3 +0,0,0,3,0,13,2,0,16,0,3,0,0,0,3,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,13,6,0,0,14,0,3,0,1,0,0,3,0,0,0,0,0,121,0,0,0,0,0,1,0,0,0,0,0,3,0,0,3466,13,60,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,985,0,0,4,0,0,0,0,0,12,0,5,0,0,2,0,18,0,1,0,0,441,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,329,0,43,0,0,0,0,3,28,168963,339,0,0,0,0,1,0,0,0,0,0,0,0,0,835,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,121,3,0,0,123,0,121,0,0,0,59,6,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,95,34,0,0,0,0,0,0,0,0,463,0,0,1362,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,17,214,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,634,14,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,121,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,109,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,71,0,89,0,0,0,41,10,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,65,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,126,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,20,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,120,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,31,0,0,0,2,3,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,49,3,0,0,61,0,68,0,0,0,31,5,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,24,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,8,3 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,80,0,0,0,0,0,1,0,0,0,0,0,1,0,0,236,8,46,0,1,0,0,0,0,0,10,0,0,0,0,0,1,4,41,0,0,0,0,0,0,0,0,9,0,3,0,0,2,0,15,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,41,0,0,0,0,3,22,5,60,0,0,0,0,1,0,0,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,76,2,0,0,89,0,93,0,0,0,28,2,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,89,20,0,0,0,0,0,0,0,0,32,0,0,30,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,152,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,91,13,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +7,0,0,5,0,41,21,0,45,0,4,0,0,2,12,0,782,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,437,0,0,0,0,0,1,0,0,0,0,0,2,0,0,137877,41,901,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23433,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,913,0,0,0,0,5205,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19304,0,55,0,0,0,8,16,290,1618,19296,0,0,0,0,1,0,3,0,0,0,0,0,0,899,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,328,5,0,0,294,0,437,0,0,0,134,25,0,0,0,0,0,0,0,0,0,872,1,0,0,0,9,0,0,0,0,2,144,19,0,0,1,0,0,0,0,0,6758,1,0,1120,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,364,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,9,0,0,0,0,1,47,228,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2970,137,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,10,38,0,0,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,269,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,28,3 +3,0,0,2,0,11,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,11,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1229,11,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,537,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,92,0,29,0,0,0,6,15,28,21,107,0,0,0,0,1,0,0,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,71,2,0,0,82,0,162,0,0,0,25,2,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,91,15,0,0,0,0,0,0,0,0,257,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,6,0,0,0,0,1,13,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,272,101,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,123,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,137,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,71,0,90,0,0,0,41,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1194,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,524,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,88,0,154,0,0,0,25,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,149,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,134,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,272,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,115,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,88,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,25,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,54,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,7,3 +8,0,0,3,0,20,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,9,0,20,6,0,0,30,0,5,0,1,0,0,5,0,0,0,0,0,79,0,0,0,0,0,1,0,0,0,0,0,6,0,0,33466,20,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,6921,0,0,9,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,530,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4215,0,76,0,0,0,0,3,39,222,4229,0,0,0,0,1,0,0,0,0,0,0,0,0,8512,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,168,3,0,0,148,0,251,0,0,0,85,23,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,102,44,0,0,0,0,0,0,0,0,2060,0,0,9723,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,1,29,255,0,4,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2910,55,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1068,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,488,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,25,0,0,0,0,3,24,6,53,0,0,0,0,1,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,73,3,0,0,82,0,153,0,0,0,29,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,92,16,0,0,0,0,0,0,0,0,251,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,111,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,64,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,7,0,0,92,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,18,0,5,0,0,139,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,34,0,0,0,2,3,26,6,40,0,0,0,0,1,0,0,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,52,3,0,0,63,0,101,0,0,0,33,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,20,0,0,0,0,0,0,0,0,605,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,20,0,3,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,10,3 +2,0,0,2,0,11,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2051,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,863,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,242,0,26,0,0,0,0,3,25,592,257,0,0,0,0,1,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,65,2,0,0,98,0,124,0,0,0,42,2,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,407,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,435,7,3 +7,0,0,5,0,41,21,0,43,0,4,0,0,2,12,0,806,0,6,1,0,0,0,8,0,10,0,0,7,0,2,0,0,0,6,5868,41,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,2,333,0,0,0,0,0,1,0,0,0,0,0,2,0,0,142347,41,912,0,6,0,0,0,0,0,32,0,0,0,0,0,8,18,24523,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,896,0,0,0,0,5109,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,20212,0,55,0,0,0,2,5,290,1597,20204,0,0,0,0,1,0,3,0,0,0,0,0,0,786,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,338,5,0,0,293,0,437,0,0,0,133,30,0,0,0,0,0,0,0,0,0,894,1,0,0,0,9,0,0,0,0,2,143,19,0,0,1,0,0,0,0,0,6689,1,0,1067,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,362,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,6,0,0,0,0,1,47,217,0,7,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2980,179,3 +4,0,0,3,0,12,3,0,19,1,3,0,0,0,5,1,47,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,4,0,12,32,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,5,0,0,2112,12,76,0,2,0,0,0,0,0,6,0,0,0,0,0,1,3,58,0,0,4,0,0,0,0,0,8,0,1,0,0,2,0,44,0,3,0,0,2740,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,62,0,43,0,0,0,0,3,38,11,62,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,6,566,3,0,0,102,0,270,0,0,0,41,233,0,0,0,0,0,0,0,0,0,84,1,0,0,0,2,0,0,0,0,1,95,20,0,0,0,0,0,0,0,0,315,0,0,48,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,1,0,0,0,0,11,16,136,0,2,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,83,277,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,81,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,54,3,0,0,58,0,56,0,0,0,28,4,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,10,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +4,0,0,5,0,36,21,0,44,0,4,0,0,2,7,0,790,0,6,1,0,0,0,8,0,10,0,0,3,0,0,0,0,0,1,5704,36,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,253,0,0,0,0,0,1,0,0,0,0,0,2,0,0,114918,36,887,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19543,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,849,0,0,0,0,5542,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,15380,0,65,0,0,0,0,3,285,1602,15369,0,0,0,0,1,0,3,0,0,0,0,0,0,833,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,342,5,0,0,279,0,880,0,0,0,120,16,0,0,0,0,0,0,0,0,0,874,1,0,0,0,9,0,0,0,0,0,139,19,0,0,1,0,0,0,0,0,8715,1,0,1145,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,37,226,0,1,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3260,86,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +5,0,0,4,0,36,12,0,37,0,3,0,0,2,3,0,666,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,3032,36,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,449,0,0,0,0,0,1,0,0,0,0,0,4,0,0,86322,36,755,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,15319,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,704,0,1,0,0,3220,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,11467,0,46,0,0,0,2,7,258,1212,11444,0,0,0,0,1,0,3,0,0,0,0,0,0,839,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,249,4,0,0,276,0,357,0,0,0,127,6,0,0,0,0,0,0,0,0,0,729,1,0,0,0,10,0,0,0,0,1,130,36,0,0,0,0,0,0,0,0,4266,1,0,1719,14,0,1,1,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,2,0,0,0,0,1,40,193,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1966,43,3 +0,0,0,3,0,13,2,0,15,0,3,0,0,0,3,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,13,6,0,0,14,0,3,0,1,0,0,3,0,0,0,0,0,128,0,0,0,0,0,1,0,0,0,0,0,3,0,0,3372,13,59,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,960,0,0,4,0,0,0,0,0,12,0,5,0,0,2,0,17,0,1,0,0,440,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,326,0,45,0,0,0,0,3,28,191944,336,0,0,0,0,1,0,0,0,0,0,0,0,0,876,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,116,3,0,0,117,0,117,0,0,0,54,5,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,95,29,0,0,0,0,0,0,0,0,461,0,0,1363,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,17,208,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,638,14,3 +13,0,0,2,0,19,2,0,9,0,2,0,0,0,2,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,8,0,3,0,9,0,19,6,0,0,21,0,2,0,1,0,0,3,0,0,0,0,8,93,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2982,19,52,0,9,0,0,0,0,0,12,0,0,0,0,0,1,7,956,0,0,9,0,0,0,0,0,11,0,3,0,0,2,0,14,0,0,0,0,461,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,298,0,69,0,0,0,16,9,43,228,317,0,0,0,0,1,0,0,0,0,0,0,0,0,626,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,155,2,0,0,110,0,204,0,0,0,53,11,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,1,101,15,0,0,0,0,0,0,0,0,1004,0,0,1157,0,0,1,0,1,0,0,0,5,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,3,0,369,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,16,0,0,0,0,1,28,74,0,8,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,625,29,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +1,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,253,10,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,35,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,31,0,0,0,0,3,26,4,52,0,0,0,0,1,0,0,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,67,2,0,0,83,0,254,0,0,0,22,4,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,92,17,0,0,0,0,0,0,0,0,35,0,0,49,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,59,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,73,27,3 +1,0,0,4,0,36,16,0,35,0,2,0,0,2,7,0,678,0,6,2,0,0,0,8,0,11,0,0,4,0,1,0,2,0,3,4921,36,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,1,339,0,0,0,0,0,1,0,0,0,0,0,8,0,0,125590,36,757,0,1,0,0,0,0,0,26,0,0,0,0,0,9,21,21862,0,0,3,0,0,0,0,0,93,5,2,0,0,2,0,710,0,0,0,0,3247,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,18162,0,43,0,0,0,0,3,269,1211,18149,0,0,0,0,1,0,3,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,234,4,0,0,263,0,277,0,0,0,106,5,0,0,0,0,0,0,0,0,0,746,1,0,0,0,10,0,0,0,0,0,136,15,0,0,0,0,0,0,0,0,3638,1,0,770,15,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,2,15,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,0,0,0,0,0,1,39,131,0,2,14,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1895,27,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,55,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2151,15,70,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,866,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,250,0,30,0,0,0,8,19,29,614,259,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,85,2,0,0,110,0,173,0,0,0,45,6,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,451,0,0,774,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,438,8,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1200,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,525,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,155,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,66,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1370,9,58,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,557,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,41,0,0,0,0,3,23,6,100,0,0,0,0,1,0,0,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,125,0,119,0,0,0,65,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,823,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,203,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,295,13,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,55,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,3,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1005,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,464,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,19,0,0,0,0,3,22,4,52,0,0,0,0,1,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,58,2,0,0,76,0,102,0,0,0,22,1,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,212,0,0,768,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,110,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,231,7,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,54,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,15,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,38,2,0,0,44,0,118,0,0,0,13,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,15,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,36,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,27,3 +10,0,0,5,0,40,21,0,46,0,4,0,0,2,14,0,798,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,40,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,399,0,0,0,0,0,1,0,0,0,0,0,2,0,0,141009,40,921,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23997,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,933,0,0,0,0,5220,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,19819,0,52,0,0,0,8,19,282,1623,19810,0,0,0,0,1,0,3,0,0,0,0,0,0,909,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,294,5,0,0,291,0,415,0,0,0,133,21,0,0,0,0,0,0,0,0,0,891,1,0,0,0,9,0,0,0,0,2,143,19,0,0,1,0,0,0,0,0,6717,1,0,1131,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,11,0,0,0,0,1,46,208,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3127,105,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,131,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,51,3,0,0,63,0,93,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,76,2,0,0,91,0,250,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,107,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,27,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,266,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,53,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1057,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,471,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,22,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,68,3,0,0,80,0,150,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,252,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,101,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,62,3 +16,0,0,6,0,39,17,0,47,6,5,0,0,2,12,0,873,0,6,2,0,0,0,7,0,11,9,0,7,0,3,0,0,0,4,4623,39,144,0,0,39,0,0,0,1,0,0,1,0,0,0,0,4,367,0,0,0,0,0,1,0,0,0,0,0,10,0,0,182658,39,986,0,8,0,0,0,0,0,28,0,0,0,0,0,8,17,30504,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,978,0,7,0,0,1855,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,29411,0,48,0,0,0,6,19,280,446,29401,0,0,0,0,1,0,3,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,278,6,0,0,280,0,402,0,0,0,118,13,0,0,0,0,0,0,0,0,0,962,1,0,0,0,9,0,0,0,0,1,144,17,0,0,1,0,0,0,0,0,3381,1,0,48,14,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,14,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,229,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,685,132,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,7,0,0,202,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,125,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,54,3,0,0,67,0,93,0,0,0,37,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,24,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,10,3 +4,0,0,5,0,35,21,0,43,0,4,0,0,2,7,0,735,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,265,0,0,0,0,0,1,0,0,0,0,0,2,0,0,122536,35,831,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,21044,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,794,0,0,0,0,5132,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,16850,0,65,0,0,0,0,3,281,1603,16839,0,0,0,0,1,0,3,0,0,0,0,0,0,851,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,333,5,0,0,276,0,877,0,0,0,119,17,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8542,1,0,1149,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,226,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3279,86,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1234,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,557,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,30,0,0,0,0,3,31,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,91,0,155,0,0,0,25,15,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,94,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,54,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,15,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,39,2,0,0,44,0,118,0,0,0,13,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,15,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,36,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,27,3 +2,0,0,6,0,34,7,0,50,0,10,0,0,6,4,0,641,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,5,0,1,762,34,32,0,0,55,0,1,0,1,0,0,2,0,0,0,0,1,177,0,0,0,0,0,1,0,0,0,0,0,4,0,0,19536,34,727,0,3,0,0,0,0,0,19,0,0,0,0,1,8,24,4563,0,0,1,0,0,1,10,0,278,40,5,0,0,2,0,734,0,0,1,0,2672,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,879,0,58,0,0,0,1,3,254,1193,864,0,0,0,0,1,0,3,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,91,16,170,6,0,0,190,0,272,0,0,0,47,6,0,0,0,0,0,0,0,0,0,724,1,0,0,0,9,0,0,0,0,0,115,28,0,0,51,0,0,0,0,0,4083,1,0,819,6,0,1,1,1,0,0,0,8,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,5,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,35,54,0,4,12,0,0,0,0,0,81,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1936,57,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,42,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,78,0,0,0,0,0,1,0,0,0,0,0,2,0,0,489,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,57,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,619,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,28,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1127,3,0,0,1105,0,350,0,0,0,14,7,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1124,9,0,0,0,0,0,0,0,0,101,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,33,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,99,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,106,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,35,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,51,3,0,0,62,0,84,0,0,0,32,14,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,25,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,8,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,4,0,26,4,0,19,0,2,0,0,2,2,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,2,0,26,6,0,0,24,0,0,0,1,0,0,4,0,0,0,0,1,104,0,0,0,0,0,1,0,0,0,0,0,3,0,0,708,26,49,0,1,0,0,0,0,0,12,0,0,0,0,0,7,16,103,0,0,2,0,0,0,0,0,72,5,4,0,0,2,0,27,0,0,0,0,379,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,77,0,41,0,0,0,0,3,178,10,74,0,0,0,0,1,0,3,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,10,121,4,0,0,167,0,220,0,0,0,64,3,0,0,0,0,0,0,0,0,0,52,1,0,0,0,8,0,0,0,0,0,109,50,0,0,0,0,0,0,0,0,74,0,0,42,2,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,0,0,0,0,0,1,28,216,0,2,8,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,52,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1214,13,36,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,537,0,0,2,0,0,0,0,0,10,0,1,0,0,2,0,10,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,157,0,0,0,26,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,15,73,0,3,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,143,3 +16,0,0,6,0,39,17,0,46,6,5,0,0,2,12,0,831,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4623,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,417,0,0,0,0,0,1,0,0,0,0,0,10,0,0,153767,39,944,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,26594,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,936,0,7,0,0,4019,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,22705,0,54,0,0,0,8,20,279,1259,22696,0,0,0,0,1,0,3,0,0,0,0,0,0,378,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,294,6,0,0,281,0,385,0,0,0,119,17,0,0,0,0,0,0,0,0,0,919,1,0,0,0,9,0,0,0,0,1,144,17,0,0,1,0,0,0,0,0,4960,1,0,776,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,218,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2082,188,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,116,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,112,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,50,3,0,0,68,0,62,0,0,0,37,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,30,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,9,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,7,0,0,87,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,18,0,5,0,0,135,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,55,3,0,0,65,0,99,0,0,0,34,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,96,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,17,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,35,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,87,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,122,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,65,0,107,0,0,0,35,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,22,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,17,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +1,0,0,6,0,34,7,0,34,0,5,0,0,7,6,0,507,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,178,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18666,34,574,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4269,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,566,0,0,1,0,2761,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,679,0,46,0,0,0,1,4,256,1158,665,0,0,0,0,1,0,3,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,188,6,0,0,201,0,269,0,0,0,58,4,0,0,0,0,0,0,0,0,0,572,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3224,1,0,848,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,105,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1903,77,3 +0,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,11,0,3,0,1,0,0,3,0,0,0,0,0,81,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1282,11,58,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,520,0,0,3,0,0,0,0,0,12,0,5,0,0,2,0,15,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,41,0,0,0,0,3,25,6,98,0,0,0,0,1,0,0,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,86,2,0,0,102,0,120,0,0,0,42,1,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,20,0,0,0,0,0,0,0,0,230,0,0,826,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,175,0,1,0,0,1,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,292,13,3 +0,0,0,7,0,42,16,0,55,0,10,0,0,6,7,0,779,0,7,1,0,0,0,8,0,10,6,0,10,0,5,1,0,0,4,945,42,6,0,0,53,0,2,0,1,0,0,12,0,0,0,0,6,294,0,0,0,0,0,1,0,0,0,0,0,4,0,0,36270,42,962,0,13,0,0,0,0,0,57,0,0,0,0,0,8,62,8269,0,0,4,0,0,0,0,0,237,20,20,0,0,2,0,883,0,1,21,0,4456,0,0,0,0,0,0,2,0,4,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,621,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,3355,0,108,0,0,0,12,16,413,1430,3319,0,0,0,0,1,0,4,0,0,0,0,0,0,4462,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,1,0,84,17,296,7,0,0,389,0,377,0,0,0,219,32,0,0,0,0,0,0,0,0,0,880,1,0,0,0,9,0,0,0,0,2,126,141,0,0,36,0,0,0,0,0,8025,1,0,4118,12,0,1,1,1,0,0,0,18,0,0,0,10,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,12,366,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,23,0,0,0,0,1,46,443,0,20,12,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7096,106,3 +0,0,0,2,0,9,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,1,0,0,69,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,19,0,0,0,0,3,23,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,64,0,74,0,0,0,34,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,89,32,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,85,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,10,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,134,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,257,0,0,0,22,2,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,25,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,147,10,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,22,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,29,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,92,0,272,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,27,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,108,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,28,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,63,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1235,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,558,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,88,0,154,0,0,0,25,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,149,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,181,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,139,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,58,3,0,0,57,0,88,0,0,0,27,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,11,3 +2362,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,123,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1851,11,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,611,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,2362,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,174,0,65,0,0,0,0,3,31,9,173,0,0,0,0,1,0,0,0,0,0,0,0,0,6783,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,91,2,0,0,131,0,243,0,0,0,61,10,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,91,43,0,0,0,0,0,0,0,0,260,0,0,953,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,279,0,1,0,0,2,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,386,39,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,56,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1023,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,493,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,19,0,0,0,0,3,22,4,51,0,0,0,0,1,0,0,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,58,2,0,0,76,0,83,0,0,0,23,1,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,211,0,0,764,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,165,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,231,6,3 +3549,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,122,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1716,11,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,569,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,160,0,66,0,0,0,0,3,31,9,159,0,0,0,0,1,0,0,0,0,0,0,0,0,9972,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,111,2,0,0,133,0,248,0,0,0,63,13,0,0,0,0,0,1,0,0,0,44,1,0,0,0,2,0,0,0,0,1,93,43,0,0,0,0,0,0,0,0,245,0,0,893,0,0,1,0,1,0,0,0,15,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,280,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,361,46,3 +7,0,0,5,0,35,21,0,44,0,4,0,0,2,9,0,759,0,6,1,0,0,0,8,0,10,0,0,5,0,2,0,0,0,2,5704,35,44,0,0,22,0,1,0,1,0,0,1,0,0,0,0,2,253,0,0,0,0,0,1,0,0,0,0,0,2,0,0,121755,35,861,0,4,0,0,0,0,0,32,0,0,0,0,0,8,18,20684,0,0,2,0,0,0,0,0,93,5,2,0,0,2,0,832,0,0,0,0,5624,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,16446,0,68,0,0,0,2,5,275,1602,16432,0,0,0,0,1,0,3,0,0,0,0,0,0,845,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,335,5,0,0,271,0,947,0,0,0,120,19,0,0,0,0,0,0,0,0,0,845,1,0,0,0,9,0,0,0,0,2,132,19,0,0,1,0,0,0,0,0,9966,1,0,1136,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,362,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,4,0,0,0,2,1,37,203,0,5,12,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3526,95,3 +16,0,0,6,0,39,15,0,43,6,5,0,0,2,12,0,727,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4925,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,357,0,0,0,0,0,1,0,0,0,0,0,10,0,0,129906,39,831,0,9,0,0,0,0,0,26,0,0,0,0,0,8,18,22679,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,829,0,7,0,0,3714,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,18934,0,54,0,0,0,8,20,279,1237,18924,0,0,0,0,1,0,3,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,294,6,0,0,271,0,397,0,0,0,110,19,0,0,0,0,0,0,0,0,0,810,1,0,0,0,9,0,0,0,0,1,139,16,0,0,1,0,0,0,0,0,4671,1,0,778,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,13,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,213,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2007,126,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1315,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,83,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,618,0,0,0,0,0,15,41,219,0,0,0,0,0,0,0,0,0,0,0,0,0,1610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,18,2,0,0,60,0,94,0,0,0,48,7,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,312,0,0,328,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,116,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1418,5,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1226,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,554,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,88,0,154,0,0,0,25,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,229,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,27,2,0,0,30,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,10,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,28,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,77,2,0,0,92,0,249,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,27,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,104,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,55,26,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,373,0,0,0,0,0,1,0,0,0,0,0,10,0,0,119088,39,871,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,20946,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,866,0,7,0,0,3596,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,17012,0,53,0,0,0,6,19,281,1257,17002,0,0,0,0,1,0,3,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,297,6,0,0,276,0,389,0,0,0,114,13,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,1,140,17,0,0,1,0,0,0,0,0,4819,1,0,799,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,220,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2056,137,3 +4,0,0,5,0,35,21,0,42,0,4,0,0,2,7,0,700,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5706,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,266,0,0,0,0,0,1,0,0,0,0,0,2,0,0,118524,35,795,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20210,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,759,0,0,0,0,5228,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,16069,0,66,0,0,0,0,3,281,1596,16058,0,0,0,0,1,0,3,0,0,0,0,0,0,848,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,344,5,0,0,276,0,877,0,0,0,119,19,0,0,0,0,0,0,0,0,0,782,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8446,1,0,1142,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,199,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3235,89,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1235,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,524,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,93,2,0,0,91,0,178,0,0,0,31,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,150,3 +10,0,0,5,0,40,38,0,44,0,4,0,0,2,14,0,762,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,7318,40,152,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,449,0,0,0,0,0,1,0,0,0,0,0,2,0,0,141683,40,919,0,9,0,0,0,0,0,50,0,0,0,0,0,8,18,24001,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,914,0,0,0,0,7732,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19066,0,53,0,0,0,8,19,301,3170,19057,0,0,0,0,1,0,3,0,0,0,0,0,0,1940,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,331,5,0,0,341,0,413,0,0,0,180,21,0,0,0,0,0,0,0,0,0,870,1,0,0,0,9,0,0,0,0,2,159,28,0,0,1,0,0,0,0,0,7132,1,0,1483,25,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,25,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,11,0,0,0,0,1,46,249,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3509,102,3 +4,0,0,5,0,35,21,0,43,0,4,0,0,2,7,0,735,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,250,0,0,0,0,0,1,0,0,0,0,0,2,0,0,113876,35,831,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19492,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,794,0,0,0,0,5289,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15166,0,66,0,0,0,0,3,281,1597,15155,0,0,0,0,1,0,3,0,0,0,0,0,0,845,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,330,5,0,0,276,0,871,0,0,0,120,25,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8661,1,0,1138,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,199,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3280,86,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,68,0,0,0,0,0,1,0,0,0,0,0,2,0,0,455,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,66,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,539,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,28,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1143,3,0,0,1135,0,303,0,0,0,14,5,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1154,9,0,0,0,0,0,0,0,0,96,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,30,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1247,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,575,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,74,2,0,0,88,0,154,0,0,0,25,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,229,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,149,3 +4,0,0,5,0,35,21,0,43,0,4,0,0,2,7,0,735,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,265,0,0,0,0,0,1,0,0,0,0,0,2,0,0,112208,35,831,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19140,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,794,0,0,0,0,5137,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,14985,0,64,0,0,0,0,3,282,1604,14974,0,0,0,0,1,0,3,0,0,0,0,0,0,846,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,381,5,0,0,277,0,878,0,0,0,122,12,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8547,1,0,1149,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,199,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3220,84,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2173,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,858,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,255,0,34,0,0,0,8,19,29,614,266,0,0,0,0,1,0,0,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,181,0,0,0,45,9,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,454,0,0,778,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,2,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,451,10,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1295,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,31,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,603,0,0,0,0,0,11,36,212,0,0,0,0,0,0,0,0,0,0,0,0,0,1587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,10,2,0,0,56,0,88,0,0,0,47,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,44,0,0,0,0,0,0,0,0,312,0,0,368,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,112,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1366,2,3 +2,0,0,2,0,11,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1999,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,875,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,237,0,26,0,0,0,0,3,25,595,252,0,0,0,0,1,0,0,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,65,2,0,0,98,0,124,0,0,0,42,3,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,401,0,0,752,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,427,6,3 +3549,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,126,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1830,11,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,600,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,168,0,70,0,0,0,0,3,31,9,167,0,0,0,0,1,0,0,0,0,0,0,0,0,9674,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,102,2,0,0,133,0,246,0,0,0,63,7,0,0,0,0,0,1,0,0,0,44,1,0,0,0,2,0,0,0,0,1,93,43,0,0,0,0,0,0,0,0,253,0,0,922,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,284,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,383,50,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,39,158,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,381,0,0,0,0,0,1,0,0,0,0,0,10,0,0,133571,39,871,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,23157,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,866,0,7,0,0,3470,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19485,0,53,0,0,0,6,19,282,1255,19475,0,0,0,0,1,0,3,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,293,6,0,0,276,0,462,0,0,0,114,14,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,1,140,17,0,0,1,0,0,0,0,0,4685,1,0,772,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,223,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2007,137,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,195,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,128,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,57,0,86,0,0,0,27,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,13,3 +2,0,0,3,0,9,2,0,24,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,2,0,0,936,9,48,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,467,0,0,1,0,0,0,0,0,8,0,1,0,0,2,0,21,0,0,0,0,65,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,33,0,22,0,0,0,0,3,23,4,45,0,0,0,0,1,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,75,4,0,0,105,0,115,0,0,0,45,2,0,0,0,0,0,0,0,0,0,51,1,0,0,0,2,0,0,0,0,0,91,29,0,0,0,0,0,0,0,0,781,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,160,0,1,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,225,13,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,121,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,127,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,58,3,0,0,72,0,90,0,0,0,41,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,35,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,54,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3549,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,138,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2144,11,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,724,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,222,0,93,0,0,0,0,3,31,9,221,0,0,0,0,1,0,0,0,0,0,0,0,0,9705,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,114,2,0,0,131,0,255,0,0,0,61,10,0,0,0,0,0,45,0,0,0,44,1,0,0,0,2,0,0,0,0,1,91,43,0,0,0,0,0,0,0,0,280,0,0,942,0,0,1,0,1,0,0,0,15,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,456,42,3 +4,0,0,5,0,38,21,0,43,0,4,0,0,2,7,0,701,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,317,0,0,0,0,0,1,0,0,0,0,0,2,0,0,114346,38,805,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,19554,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,769,0,0,0,0,5990,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,15342,0,71,0,0,0,6,9,284,1618,15325,0,0,0,0,1,0,3,0,0,0,0,0,0,843,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,606,5,0,0,283,0,947,0,0,0,127,84,0,0,0,0,0,0,0,0,0,784,1,0,0,0,9,0,0,0,0,4,139,19,0,0,1,0,0,0,0,0,8905,1,0,1149,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,242,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3354,147,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,996,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,461,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,19,0,0,0,0,3,22,4,52,0,0,0,0,1,0,0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,58,2,0,0,76,0,102,0,0,0,22,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,213,0,0,764,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,110,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,230,5,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,63,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +10,0,0,5,0,42,21,0,45,0,4,0,0,2,14,0,802,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5870,42,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,380,0,0,0,0,0,1,0,0,0,0,0,2,0,0,125723,42,924,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,21515,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,937,0,0,0,0,5585,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,17371,0,53,0,0,0,8,19,297,1638,17360,0,0,0,0,1,0,3,0,0,0,0,0,0,945,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,306,5,0,0,305,0,416,0,0,0,145,18,0,0,0,0,0,0,0,0,0,894,1,0,0,0,9,0,0,0,0,2,153,19,0,0,1,0,0,0,0,0,6928,1,0,1141,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,11,0,0,0,0,1,48,213,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3272,105,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,131,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,19,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,30,0,0,0,0,3,30,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,263,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,26,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,75,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,65,0,59,0,0,0,35,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,11,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,997,11,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,472,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,99,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,38,0,25,0,0,0,0,3,28,6,49,0,0,0,0,1,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,74,3,0,0,83,0,153,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,91,16,0,0,0,0,0,0,0,0,247,0,0,752,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,109,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,232,65,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,7,0,0,218,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,807,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,59,3,0,0,69,0,87,0,0,0,39,8,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,15,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,134,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2177,10,82,0,0,0,0,0,0,0,29,0,0,0,0,0,1,12,697,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,518,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,228,0,93,0,0,0,0,3,27,9,227,0,0,0,0,1,0,0,0,0,0,0,0,0,9781,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,115,2,0,0,128,0,262,0,0,0,61,13,0,0,0,0,0,46,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,284,0,0,965,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,460,48,3 +4,0,0,3,0,9,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,83,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,90,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,33,0,0,0,0,1,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,5,53,3,0,0,54,0,54,0,0,0,23,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,92,19,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,14,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,30,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,208,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,128,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,51,3,0,0,63,0,93,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +1,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,287,10,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,43,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,28,0,0,0,0,3,26,4,54,0,0,0,0,1,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,67,2,0,0,83,0,254,0,0,0,22,9,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,92,17,0,0,0,0,0,0,0,0,37,0,0,57,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,59,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,75,28,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1233,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,546,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,79,0,161,0,0,0,25,5,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,258,0,0,798,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,101,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,99,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1563,10,31,0,0,0,0,0,0,0,6,0,0,0,0,0,1,3,338,0,0,1,0,0,0,0,0,7,0,1,0,0,2,0,7,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,201,0,39,0,0,0,0,3,28,5,216,0,0,0,0,1,0,0,0,0,0,0,0,0,462,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,71,2,0,0,84,0,102,0,0,0,28,6,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,20,0,0,0,0,0,0,0,0,180,0,0,348,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,123,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,307,14,3 +4,0,0,5,0,36,21,0,47,0,4,0,0,2,7,0,899,0,6,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,1,5704,36,34,0,0,22,0,0,0,1,0,0,1,0,0,0,0,1,277,0,0,0,0,0,1,0,0,0,0,0,2,0,0,122476,36,999,0,1,0,0,0,0,0,32,0,0,0,0,0,8,17,19994,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,958,0,0,0,0,3597,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,18574,0,58,0,0,0,0,3,287,775,18562,0,0,0,0,1,0,3,0,0,0,0,0,0,741,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,328,5,0,0,278,0,866,0,0,0,120,17,0,0,0,0,0,0,0,0,0,986,1,0,0,0,9,0,0,0,0,0,139,19,0,0,1,0,0,0,0,0,6807,1,0,374,16,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,37,218,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1747,81,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,129,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,143,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,34,0,0,0,2,3,26,6,39,0,0,0,0,1,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,55,3,0,0,71,0,90,0,0,0,41,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,606,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,35,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,7,0,0,211,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,152,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,60,3,0,0,70,0,86,0,0,0,39,9,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,95,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,37,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,120,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,121,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,71,0,90,0,0,0,41,9,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +7,0,0,5,0,35,21,0,43,0,4,0,0,2,9,0,781,0,6,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5868,35,44,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,349,0,0,0,0,0,1,0,0,0,0,0,2,0,0,152857,35,881,0,2,0,0,0,0,0,32,0,0,0,0,0,8,18,26078,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,857,0,0,0,0,5019,0,0,0,0,3,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,21862,0,42,0,0,0,0,3,281,1588,21847,0,0,0,0,1,0,3,0,0,0,0,0,0,743,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,294,5,0,0,279,0,424,0,0,0,122,29,0,0,0,0,0,0,0,0,0,866,1,0,0,0,9,0,0,0,0,1,141,19,0,0,1,0,0,0,0,0,7565,1,0,1059,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,1,0,0,0,0,1,36,231,0,3,12,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2804,60,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1105,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,492,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,111,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,23,0,0,0,0,3,24,6,56,0,0,0,0,1,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,70,3,0,0,80,0,157,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,255,0,0,784,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,105,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,242,65,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,50,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3549,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,148,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2122,11,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,706,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,229,0,93,0,0,0,0,3,31,9,226,0,0,0,0,1,0,0,0,0,0,0,0,0,9954,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,123,2,0,0,135,0,257,0,0,0,65,12,0,0,0,0,0,42,0,0,0,44,1,0,0,0,2,0,0,0,0,1,93,43,0,0,0,0,0,0,0,0,278,0,0,940,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,285,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,449,46,3 +7,0,0,5,0,40,21,0,44,0,4,0,0,2,12,0,728,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,40,46,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,371,0,0,0,0,0,1,0,0,0,0,0,2,0,0,139418,40,846,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23821,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,859,0,0,0,0,5336,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19631,0,55,0,0,0,8,16,283,1633,19624,0,0,0,0,1,0,3,0,0,0,0,0,0,921,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,334,5,0,0,300,0,460,0,0,0,142,27,0,0,0,0,0,0,0,0,0,817,1,0,0,0,9,0,0,0,0,2,151,19,0,0,1,0,0,0,0,0,6666,1,0,1133,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,364,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,9,0,0,0,0,1,46,224,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3065,135,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,111,8,37,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,17,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,15,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,37,0,0,0,0,3,22,4,36,0,0,0,0,1,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,78,0,96,0,0,0,18,1,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,89,13,0,0,0,0,0,0,0,0,25,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,76,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,75,8,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +10,0,0,5,0,41,21,0,46,0,4,0,0,2,14,0,818,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,6,5870,41,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,379,0,0,0,0,0,1,0,0,0,0,0,2,0,0,142592,41,941,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,24336,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,953,0,0,0,0,5454,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,20062,0,55,0,0,0,8,16,290,1617,20055,0,0,0,0,1,0,3,0,0,0,0,0,0,893,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,324,5,0,0,300,0,420,0,0,0,141,20,0,0,0,0,0,0,0,0,0,911,1,0,0,0,9,0,0,0,0,2,150,19,0,0,1,0,0,0,0,0,6722,1,0,1109,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,10,0,0,0,2,1,47,223,0,20,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3157,275,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,5,0,35,21,0,43,0,4,0,0,2,7,0,735,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,266,0,0,0,0,0,1,0,0,0,0,0,2,0,0,122058,35,831,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20865,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,794,0,0,0,0,5096,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,16825,0,63,0,0,0,0,3,281,1593,16814,0,0,0,0,1,0,3,0,0,0,0,0,0,815,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,338,5,0,0,274,0,879,0,0,0,118,17,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,0,136,19,0,0,1,0,0,0,0,0,8404,1,0,1131,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,194,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3190,84,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,74,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,65,0,58,0,0,0,35,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1252,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,547,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,27,0,0,0,0,3,31,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,95,2,0,0,94,0,167,0,0,0,31,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,17,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,258,150,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,107,10,24,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,13,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,47,3,0,0,58,0,71,0,0,0,28,7,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,20,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,14,3 +16,0,0,5,0,37,21,0,41,0,4,0,0,2,15,0,653,0,6,1,0,0,0,8,0,10,0,0,11,0,5,0,0,0,5,5704,37,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,308,0,0,0,0,0,1,0,0,0,0,0,2,0,0,120480,37,767,0,13,0,0,0,0,0,32,0,0,0,0,0,8,18,20531,0,0,5,0,0,0,0,0,111,5,2,0,0,2,0,762,0,0,0,0,5264,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,16311,0,74,0,0,0,8,11,274,1629,16302,0,0,0,0,1,0,3,0,0,0,0,0,0,913,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,510,5,0,0,281,0,910,0,0,0,130,16,0,0,0,0,0,0,0,0,0,742,1,0,0,0,9,0,0,0,0,5,138,19,0,0,1,0,0,0,0,0,15672,1,0,1139,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,16,0,0,0,8,1,42,203,0,14,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5833,103,3 +4,0,0,4,0,12,13,0,69,0,20,0,0,0,3,0,17,0,7,1,0,0,0,2,0,0,0,0,2,0,1,0,0,0,2,0,12,6,0,0,122,0,2,0,1,0,0,2,0,0,0,0,0,57,0,0,0,0,0,1,0,0,0,0,0,15,0,0,257,12,128,0,3,0,0,0,0,0,6,0,0,0,0,0,2,5,52,0,0,2,0,0,2,61,0,488,30,2,0,0,2,0,310,0,1,0,0,143,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,60,0,34,0,0,0,0,3,33,425,74,0,0,0,0,1,0,0,0,0,0,0,0,0,200,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,4,83,4,0,0,92,0,188,0,0,0,34,4,0,0,0,0,0,0,0,0,0,129,1,0,0,0,3,0,0,0,0,1,94,155,0,0,60,0,0,0,0,0,615,0,0,27,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,2,0,0,0,0,1,14,87,0,3,0,0,0,0,0,0,173,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,10,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,6,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,143,9,21,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,1,0,0,0,0,0,6,0,0,0,0,2,0,8,0,1,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,21,0,0,0,0,3,23,5,25,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,46,3,0,0,72,0,67,0,0,0,42,10,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,0,91,38,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,73,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,7,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,71,0,0,0,0,0,1,0,0,0,0,0,2,0,0,470,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,62,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,501,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,31,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1071,3,0,0,1065,0,304,0,0,0,14,9,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1084,9,0,0,0,0,0,0,0,0,97,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,30,3 +7,0,0,5,0,41,21,0,40,0,4,0,0,2,12,0,697,0,6,1,0,0,0,8,0,10,0,0,7,0,2,0,0,0,6,5868,41,4689,0,0,22,0,1,0,1,0,0,1,0,0,0,0,2,416,0,0,0,0,0,1,0,0,0,0,0,2,0,0,135271,41,800,0,6,0,0,0,0,0,32,0,0,0,0,0,8,18,23062,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,787,0,0,0,0,5138,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,18946,0,55,0,0,0,2,5,290,1630,18938,0,0,0,0,1,0,3,0,0,0,0,0,0,903,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,298,5,0,0,291,0,427,0,0,0,130,30,0,0,0,0,0,0,0,0,0,782,1,0,0,0,9,0,0,0,0,2,141,19,0,0,1,0,0,0,0,0,11165,1,0,1139,16,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,362,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,6,0,0,0,0,1,47,194,0,7,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2993,171,3 +16,0,0,6,0,40,15,0,44,6,5,0,0,2,12,0,782,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4925,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,362,0,0,0,0,0,1,0,0,0,0,0,10,0,0,153354,40,889,0,9,0,0,0,0,0,26,0,0,0,0,0,8,18,26438,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,886,0,7,0,0,3474,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,22675,0,52,0,0,0,8,20,283,1238,22665,0,0,0,0,1,0,3,0,0,0,0,0,0,335,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,306,6,0,0,274,0,414,0,0,0,110,15,0,0,0,0,0,0,0,0,0,866,1,0,0,0,9,0,0,0,0,1,140,16,0,0,1,0,0,0,0,0,4855,1,0,774,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,13,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,19,0,0,0,0,1,44,202,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2027,123,3 +4,0,0,3,0,9,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,4,0,0,80,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,66,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,33,0,0,0,0,1,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,5,39,3,0,0,60,0,61,0,0,0,29,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,92,25,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,29,3 +10,0,0,5,0,40,21,0,47,0,4,0,0,2,14,0,831,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,6,5868,40,158,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,378,0,0,0,0,0,1,0,0,0,0,0,2,0,0,134236,40,956,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23014,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,967,0,0,0,0,4862,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,18771,0,57,0,0,0,8,19,283,1613,18762,0,0,0,0,1,0,3,0,0,0,0,0,0,867,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,308,5,0,0,295,0,475,0,0,0,137,22,0,0,0,0,0,0,0,0,0,925,1,0,0,0,9,0,0,0,0,2,146,19,0,0,1,0,0,0,0,0,6854,1,0,1099,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,12,0,0,0,2,1,46,229,0,20,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3163,100,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1203,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,529,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,31,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,156,0,0,0,27,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,271,149,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,266,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,101,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,127,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,117,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,6,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +2,0,0,2,0,11,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2047,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,854,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,244,0,26,0,0,0,0,3,25,597,259,0,0,0,0,1,0,0,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,66,2,0,0,98,0,124,0,0,0,42,3,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,410,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,439,6,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1219,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,532,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,65,2,0,0,79,0,160,0,0,0,25,2,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,263,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,101,3 +16,0,0,6,0,38,15,0,42,6,5,0,0,2,12,0,675,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4925,38,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,378,0,0,0,0,0,1,0,0,0,0,0,10,0,0,147222,38,779,0,9,0,0,0,0,0,26,0,0,0,0,0,8,18,27560,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,778,0,7,0,0,3322,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,23552,0,52,0,0,0,8,20,272,1236,23543,0,0,0,0,1,0,3,0,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,310,6,0,0,274,0,400,0,0,0,117,22,0,0,0,0,0,0,0,0,0,757,1,0,0,0,9,0,0,0,0,1,142,16,0,0,1,0,0,0,0,0,4693,1,0,774,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,13,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,19,0,0,0,0,1,42,203,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2065,124,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,5,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +5,0,0,3,0,21,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,8,0,21,6,0,0,30,0,5,0,1,0,0,5,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,6,0,0,40067,21,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,6727,0,0,8,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,4443,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4107,0,76,0,0,0,0,3,43,7828,4121,0,0,0,0,1,0,0,0,0,0,0,0,0,8256,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,158,3,0,0,151,0,254,0,0,0,82,15,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,103,44,0,0,0,0,0,0,0,0,2027,0,0,9431,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,3,0,0,0,0,1,29,230,0,4,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2831,60,3 +5,0,0,3,0,12,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,36,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,5,0,0,380,12,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,220,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,39,0,0,0,0,3,27,7,60,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,109,3,0,0,103,0,206,0,0,0,42,8,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,97,20,0,0,0,0,0,0,0,0,79,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,138,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,13,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,231,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,146,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,56,3,0,0,73,0,64,0,0,0,43,3,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,36,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,70,0,0,0,0,0,1,0,0,0,0,0,2,0,0,483,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,57,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,579,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,97,3,0,0,83,0,283,0,0,0,13,9,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,92,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,26,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,107,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1693,9,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,381,0,0,1,0,0,0,0,0,7,0,1,0,0,2,0,7,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,216,0,38,0,0,0,0,3,24,5,231,0,0,0,0,1,0,0,0,0,0,0,0,0,503,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,69,2,0,0,75,0,93,0,0,0,22,4,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,91,12,0,0,0,0,0,0,0,0,207,0,0,380,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,103,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,339,12,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1403,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,75,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,619,0,0,0,0,0,11,43,229,0,0,0,0,0,0,0,0,0,0,0,0,0,1640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,17,2,0,0,57,0,91,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,45,0,0,0,0,0,0,0,0,316,0,0,368,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,114,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1420,5,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1232,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,521,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,93,2,0,0,91,0,181,0,0,0,31,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,35,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,256,150,3 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,111,8,37,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,17,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,15,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,37,0,0,0,0,3,22,4,36,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,69,2,0,0,78,0,95,0,0,0,18,1,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,89,13,0,0,0,0,0,0,0,0,25,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,76,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,75,8,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,70,0,0,0,0,0,1,0,0,0,0,0,2,0,0,560,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,66,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,576,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,57,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,177,3,0,0,83,0,357,0,0,0,13,10,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,98,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,61,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,7,0,0,211,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,141,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,59,3,0,0,69,0,89,0,0,0,39,11,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,16,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,3,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1090,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,488,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,29,0,0,0,0,3,25,72,64,0,0,0,0,1,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,70,2,0,0,81,0,122,0,0,0,25,4,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,17,0,0,0,0,0,0,0,0,213,0,0,752,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,93,0,1,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,247,9,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1226,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,520,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,28,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,92,0,174,0,0,0,28,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,17,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,34,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,256,153,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,77,2,0,0,91,0,271,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,27,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2150,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,864,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,253,0,34,0,0,0,8,19,29,614,264,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,180,0,0,0,45,4,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,448,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,443,10,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,57,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +1,0,0,2,0,12,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,12,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,12,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,30,0,0,0,0,3,34,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,81,2,0,0,97,0,255,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,94,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,12,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,26,3 +13,0,0,7,2,21,50,2,55,1,7,0,0,0,9,0,119,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,11,0,23,102,0,0,25,0,1,0,1,0,0,1,0,0,0,0,1,104,0,0,0,0,0,1,0,0,0,0,0,8,0,0,2714,21,177,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,800,0,2,11,2,0,2,0,0,87,0,1,0,0,6,2,50,0,5,0,0,616,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,251,0,48,0,0,0,2,7,52,26,260,0,0,0,0,1,0,0,0,0,0,0,0,0,649,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,217,27,448,9,0,0,440,0,606,0,2,0,147,24,0,0,0,0,0,0,0,0,0,251,1,0,0,0,2,0,0,0,0,2,132,35,0,0,0,0,0,0,0,0,1129,0,0,1073,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,362,1,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,19,1,1,1,0,2,0,0,0,0,17,34,183,0,6,0,0,1,0,0,0,74,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,512,25,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1367,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,524,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,39,0,0,0,0,3,23,6,103,0,0,0,0,1,0,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,120,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,231,0,0,835,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,203,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,293,13,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,764,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,365,0,0,0,0,0,1,0,0,0,0,0,10,0,0,136408,39,872,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,23699,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,867,0,7,0,0,3577,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19930,0,52,0,0,0,6,19,280,1254,19920,0,0,0,0,1,0,3,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,297,6,0,0,276,0,420,0,0,0,116,14,0,0,0,0,0,0,0,0,0,850,1,0,0,0,9,0,0,0,0,1,141,17,0,0,1,0,0,0,0,0,4792,1,0,777,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,204,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2033,130,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,50,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,356,0,0,0,0,0,1,0,0,0,0,0,10,0,0,133514,39,871,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,23223,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,866,0,7,0,0,3445,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19499,0,52,0,0,0,6,19,281,1255,19489,0,0,0,0,1,0,3,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,292,6,0,0,280,0,387,0,0,0,119,11,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,1,144,17,0,0,1,0,0,0,0,0,4669,1,0,787,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,215,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1970,134,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1111,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,459,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,21,0,0,0,0,3,22,4,53,0,0,0,0,1,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,90,2,0,0,79,0,234,0,0,0,26,14,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,19,0,0,0,0,0,0,0,0,215,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,94,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,15,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,583,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,68,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,572,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,55,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,171,3,0,0,83,0,347,0,0,0,13,13,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,99,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,58,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1231,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,521,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,28,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,90,2,0,0,91,0,182,0,0,0,31,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,226,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,264,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,12,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,3,0,18,3,0,23,0,8,0,0,0,2,0,22,0,7,1,0,0,0,1,0,0,3,0,1,0,2,0,0,0,3,0,18,6,0,0,27,0,1,0,1,0,0,2,0,0,0,0,1,158,0,0,0,0,0,1,0,0,0,0,0,4,0,0,7912,18,73,0,3,0,0,0,0,0,10,0,0,0,0,0,1,5,2499,0,0,3,0,0,1,14,0,127,20,2,1,0,2,0,91,0,0,0,0,1301,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1328,0,55,0,0,0,2,7,40,289,1336,0,0,0,0,1,0,0,0,0,0,0,0,0,1104,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,3,144,3,0,0,117,0,200,0,0,0,44,3,0,0,0,0,0,0,0,0,0,65,1,0,0,0,2,0,0,0,0,1,100,51,0,0,44,0,0,0,0,0,1524,0,0,912,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,2,0,0,0,0,1,21,94,0,6,0,0,0,0,0,0,59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1204,309,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,82,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,53,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,62,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,18,2,0,15,2,3,0,0,0,5,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,7,0,18,6,0,0,22,0,0,0,1,0,0,5,0,0,0,0,0,112,0,0,0,0,0,1,0,0,0,0,0,5,0,0,10630,18,65,0,1,0,0,0,0,0,21,0,0,0,0,0,1,7,1715,0,0,7,0,0,0,0,0,13,0,8,0,0,2,0,20,0,3,0,0,2371,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1101,0,79,0,0,0,0,3,35,211,1115,0,0,0,0,1,0,0,0,0,0,0,0,0,927,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,6,167,3,0,0,154,0,258,0,0,0,83,20,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,100,48,0,0,0,0,0,0,0,0,626,0,0,813,0,0,1,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,25,318,0,1,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,857,44,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,122,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,134,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,58,3,0,0,72,0,90,0,0,0,41,6,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,35,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,17,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,3,0,11,2,0,9,0,3,0,0,0,3,0,20,0,6,1,0,0,0,1,0,0,3,0,1,0,1,1,0,0,3,0,11,6,0,0,8,0,2,0,1,0,0,3,0,0,0,0,1,43,0,0,0,0,0,1,0,0,0,0,0,3,0,0,859,11,52,0,3,0,0,0,0,0,12,0,0,0,0,0,1,6,205,0,0,3,0,0,0,0,0,14,0,6,0,0,2,0,28,0,1,0,0,154,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,86,0,30,0,0,0,2,8,26,13,85,0,0,0,0,1,0,0,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,79,3,0,0,101,0,174,0,0,0,48,3,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,2,94,28,0,0,0,0,0,0,0,0,56,0,0,412,0,0,1,0,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,182,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,4,0,0,0,0,1,14,136,0,6,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,87,9,3 +0,0,0,2,0,9,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,244,9,30,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,29,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,6,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,27,0,0,0,0,3,23,5,47,0,0,0,0,1,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,71,2,0,0,103,0,124,0,0,0,51,1,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,41,0,0,0,0,0,0,0,0,29,0,0,29,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,113,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,14,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,68,0,0,0,0,0,1,0,0,0,0,0,2,0,0,467,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,63,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,452,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,98,3,0,0,83,0,295,0,0,0,13,8,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,95,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,27,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,782,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,391,0,0,0,0,0,1,0,0,0,0,0,2,0,0,135352,41,902,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23105,0,0,6,0,0,0,0,0,95,5,1,0,0,2,0,915,0,0,0,0,5529,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18931,0,53,0,0,0,8,19,286,1631,18922,0,0,0,0,1,0,3,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,302,5,0,0,300,0,398,0,0,0,143,19,0,0,0,0,0,0,0,0,0,874,1,0,0,0,9,0,0,0,0,2,149,19,0,0,1,0,0,0,0,0,6718,1,0,1137,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,208,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3222,100,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1090,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,493,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,96,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,22,0,0,0,0,3,24,6,55,0,0,0,0,1,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,67,3,0,0,80,0,151,0,0,0,27,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,253,0,0,780,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,105,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,62,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,142,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2236,10,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,732,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,9,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,237,0,89,0,0,0,0,3,27,9,234,0,0,0,0,1,0,0,0,0,0,0,0,0,9900,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,115,2,0,0,132,0,248,0,0,0,65,14,0,0,0,0,0,42,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,284,0,0,968,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,284,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,455,50,3 +3,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,191,10,27,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,19,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,128,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,27,0,0,0,2,4,25,7,39,0,0,0,0,1,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,55,3,0,0,58,0,95,0,0,0,28,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,20,3 +12,0,0,5,0,39,36,0,51,0,4,0,0,2,13,0,1159,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,2,10261,39,56,0,0,22,0,1,0,1,0,0,2,0,0,0,0,1,455,0,0,0,0,0,1,0,0,0,0,0,2,0,0,189834,39,1326,0,4,0,0,0,0,0,56,0,0,0,0,0,8,19,35456,0,0,2,0,0,0,0,0,91,5,4,1,0,2,0,1278,0,0,0,0,6032,0,0,0,0,5,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,12,12,12,0,0,0,32989,0,52,0,0,0,0,3,318,1337,32973,0,0,0,0,1,0,4,0,0,0,0,0,0,1525,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,382,5,0,0,355,0,468,0,0,0,186,42,0,0,0,0,0,0,0,0,0,1271,1,0,0,0,9,0,0,0,0,1,160,29,0,0,1,0,0,0,0,0,9195,1,0,791,26,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,26,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,3,0,0,0,0,1,41,267,0,5,12,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2751,89,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,1,0,0,1,0,1,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,124,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,54,3,0,0,63,0,90,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,50,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1094,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,494,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,110,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,23,0,0,0,0,3,24,6,55,0,0,0,0,1,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,72,3,0,0,84,0,153,0,0,0,31,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,94,16,0,0,0,0,0,0,0,0,253,0,0,780,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,106,0,1,0,0,2,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,243,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,6,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1240,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,560,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,157,0,0,0,27,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,149,3 +5,0,0,4,0,37,13,0,36,0,3,0,0,2,3,0,685,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2850,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,265,0,0,0,0,0,1,0,0,0,0,0,4,0,0,78586,37,774,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,14005,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,723,0,1,0,0,3507,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,10308,0,43,0,0,0,2,7,265,1206,10284,0,0,0,0,1,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,244,4,0,0,278,0,364,0,0,0,127,15,0,0,0,0,0,0,0,0,0,748,1,0,0,0,10,0,0,0,0,1,131,36,0,0,0,0,0,0,0,0,4205,1,0,1946,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,219,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1904,52,3 +1,0,0,6,0,34,7,0,33,0,5,0,0,7,6,0,473,0,6,1,0,0,0,9,0,12,0,0,6,0,0,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,181,0,0,0,0,0,1,0,0,0,0,0,5,0,0,17934,34,539,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4048,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,532,0,0,1,0,2866,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,714,0,46,0,0,0,1,4,256,1160,700,0,0,0,0,1,0,3,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,187,6,0,0,201,0,270,0,0,0,58,4,0,0,0,0,0,0,0,0,0,537,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,2987,1,0,809,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,107,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1835,71,3 +10,0,0,5,0,41,21,0,44,0,4,0,0,2,14,0,745,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,160,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,462,0,0,0,0,0,1,0,0,0,0,0,2,0,0,144698,41,866,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,24503,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,880,0,0,0,0,5344,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,20602,0,53,0,0,0,8,19,290,1633,20592,0,0,0,0,1,0,3,0,0,0,0,0,0,920,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,298,5,0,0,297,0,485,0,0,0,138,17,0,0,0,0,0,0,0,0,0,836,1,0,0,0,9,0,0,0,0,2,147,19,0,0,1,0,0,0,0,0,6629,1,0,1134,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,213,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3198,83,3 +32,0,0,3,1,36,5,0,15,0,8,0,0,0,4,0,35,0,7,4,0,0,0,1,0,0,3,0,7,0,2,0,0,0,18,0,36,30,0,0,132,0,0,0,1,0,0,1,0,0,0,0,1,51,0,0,0,0,0,1,0,0,0,23,0,2,0,0,700,36,90,0,9,0,0,0,0,0,12,0,0,0,0,0,2,5,71,0,0,18,0,0,0,0,0,35,0,0,0,0,6,1,54,0,1,0,0,664,0,0,0,0,6,4,0,0,13,0,0,1,0,0,0,2,0,0,1,0,0,0,0,2,0,0,0,4,0,0,0,0,0,5,0,17,0,0,2,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,106,0,70,0,0,0,2,8,67,273,130,0,0,0,0,1,0,0,0,0,0,4,4,0,908,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,27,180,194,5,0,0,185,0,229,0,0,0,109,19,0,0,0,0,0,0,0,0,0,74,1,0,0,0,5,0,0,0,0,2,123,26,0,0,0,0,0,0,0,0,40056,0,0,9,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,8,0,0,0,0,23,55,70,0,12,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,187,3 +2,0,0,2,0,11,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2041,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,870,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,242,0,28,0,0,0,0,3,25,597,257,0,0,0,0,1,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,66,2,0,0,98,0,124,0,0,0,42,3,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,406,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,436,7,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,120,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,121,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,50,3,0,0,61,0,66,0,0,0,31,7,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,24,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,8,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1246,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,538,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,86,2,0,0,91,0,176,0,0,0,32,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,256,150,3 +2,0,0,3,0,16,2,0,8,1,3,0,0,0,4,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,6,0,16,6,0,0,18,0,0,0,1,0,0,5,0,0,0,0,0,76,0,0,0,0,0,1,0,0,0,0,0,4,0,0,3362,16,57,0,1,0,0,0,0,0,21,0,0,0,0,0,1,7,662,0,0,6,0,0,0,0,0,13,0,8,0,0,2,0,10,0,2,0,0,371,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,476,0,73,0,0,0,0,3,33,209,487,0,0,0,0,1,0,0,0,0,0,0,0,0,975,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,5,127,3,0,0,133,0,194,0,0,0,73,9,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,98,41,0,0,0,0,0,0,0,0,759,0,0,810,0,0,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,22,252,0,1,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,411,44,3 +4,0,0,5,0,34,21,0,43,0,4,0,0,2,7,0,716,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,34,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,264,0,0,0,0,0,1,0,0,0,0,0,2,0,0,121029,34,812,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20630,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,775,0,0,0,0,5165,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,16426,0,64,0,0,0,0,3,273,1589,16416,0,0,0,0,1,0,3,0,0,0,0,0,0,828,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,332,5,0,0,271,0,872,0,0,0,118,18,0,0,0,0,0,0,0,0,0,799,1,0,0,0,9,0,0,0,0,0,135,19,0,0,1,0,0,0,0,0,8545,1,0,1136,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,35,199,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3223,91,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,8,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,25,4,0,20,0,2,0,0,2,2,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,1,0,25,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,1,135,0,0,0,0,0,1,0,0,0,0,0,2,0,0,604,25,52,0,1,0,0,0,0,0,12,0,0,0,0,0,7,14,104,0,0,1,0,0,0,0,0,73,5,3,0,0,2,0,28,0,0,0,0,362,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,77,0,45,0,0,0,0,3,177,10,81,0,0,0,0,1,0,3,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,118,3,0,0,133,0,167,0,0,0,32,2,0,0,0,0,0,0,0,0,0,53,1,0,0,0,8,0,0,0,0,0,106,21,0,0,0,0,0,0,0,0,73,0,0,39,2,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,151,0,2,8,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,149,29,3 +10,0,0,5,0,41,21,0,44,0,4,0,0,2,14,0,746,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,383,0,0,0,0,0,1,0,0,0,0,0,2,0,0,133872,41,867,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,22896,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,881,0,0,0,0,5274,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,18622,0,53,0,0,0,8,19,290,1619,18612,0,0,0,0,1,0,3,0,0,0,0,0,0,887,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,307,5,0,0,295,0,410,0,0,0,135,19,0,0,0,0,0,0,0,0,0,837,1,0,0,0,9,0,0,0,0,2,145,19,0,0,1,0,0,0,0,0,6858,1,0,1113,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,176,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3236,78,3 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,74,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1295,11,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,522,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,90,0,41,0,0,0,0,3,31,6,100,0,0,0,0,1,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,85,2,0,0,130,0,122,0,0,0,65,13,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,93,49,0,0,0,0,0,0,0,0,227,0,0,810,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,190,0,1,0,0,2,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,294,16,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1201,13,36,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,525,0,0,2,0,0,0,0,0,10,0,1,0,0,2,0,10,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,90,0,156,0,0,0,26,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,15,73,0,3,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,143,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,67,0,0,0,0,0,1,0,0,0,0,0,2,0,0,460,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,64,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,544,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,2,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1057,3,0,0,1050,0,297,0,0,0,14,5,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1069,9,0,0,0,0,0,0,0,0,97,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,31,3 +1,0,0,6,0,35,7,0,33,0,5,0,0,7,6,0,486,0,6,1,0,0,0,9,0,12,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,178,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18638,35,553,0,4,0,0,0,0,0,18,0,0,0,0,0,9,28,4267,0,0,1,0,0,0,0,0,215,25,4,0,0,2,0,545,0,0,1,0,2826,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,680,0,45,0,0,0,2,5,265,1157,665,0,0,0,0,1,0,3,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,186,6,0,0,203,0,270,0,0,0,58,3,0,0,0,0,0,0,0,0,0,550,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3150,1,0,832,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,9,0,0,0,0,1,36,115,0,5,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1870,75,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4946,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,337,0,0,0,0,0,1,0,0,0,0,0,10,0,0,119316,39,872,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,20893,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,867,0,7,0,0,3501,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,17188,0,53,0,0,0,8,20,281,1258,17178,0,0,0,0,1,0,3,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,284,6,0,0,276,0,394,0,0,0,116,13,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4672,1,0,793,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,213,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1971,124,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1230,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,551,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,159,0,0,0,26,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,15,2,0,15,0,3,0,0,0,3,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,15,6,0,0,16,0,3,0,1,0,0,3,0,0,0,0,0,121,0,0,0,0,0,1,0,0,0,0,0,3,0,0,3545,15,59,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,953,0,0,5,0,0,0,0,0,12,0,5,0,0,2,0,17,0,1,0,0,472,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,341,0,46,0,0,0,0,3,33,216774,351,0,0,0,0,1,0,0,0,0,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,125,3,0,0,127,0,124,0,0,0,61,6,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,97,33,0,0,0,0,0,0,0,0,474,0,0,1401,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,20,207,0,1,0,0,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,632,15,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1050,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,479,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,191,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,24,0,0,0,0,3,24,6,53,0,0,0,0,1,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,68,3,0,0,80,0,151,0,0,0,27,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,251,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,108,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,62,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,61,0,0,0,0,0,1,0,0,0,0,0,2,0,0,492,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,70,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,513,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1141,3,0,0,1135,0,298,0,0,0,14,9,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1154,9,0,0,0,0,0,0,0,0,102,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,30,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,213,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,136,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,51,3,0,0,63,0,94,0,0,0,33,9,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,9,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1239,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,537,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,28,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,82,2,0,0,92,0,164,0,0,0,29,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,17,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,34,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,153,3 +16,0,0,6,0,38,17,0,44,6,5,0,0,2,12,0,742,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,38,148,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,345,0,0,0,0,0,1,0,0,0,0,0,10,0,0,135951,38,850,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,23553,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,845,0,7,0,0,3266,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19735,0,53,0,0,0,6,19,274,1254,19726,0,0,0,0,1,0,3,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,267,6,0,0,273,0,415,0,0,0,113,12,0,0,0,0,0,0,0,0,0,828,1,0,0,0,9,0,0,0,0,1,138,17,0,0,1,0,0,0,0,0,4730,1,0,783,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,17,0,0,0,0,1,42,204,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1954,133,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,82,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,53,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,142,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,93,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +4,0,0,5,0,35,21,0,41,0,4,0,0,2,7,0,665,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,260,0,0,0,0,0,1,0,0,0,0,0,2,0,0,113376,35,759,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19412,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,724,0,0,0,0,4989,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,15275,0,65,0,0,0,0,3,281,1591,15264,0,0,0,0,1,0,3,0,0,0,0,0,0,818,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,361,5,0,0,274,0,882,0,0,0,118,17,0,0,0,0,0,0,0,0,0,746,1,0,0,0,9,0,0,0,0,0,136,19,0,0,1,0,0,0,0,0,7942,1,0,1135,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,218,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3059,89,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,113,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,131,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,49,3,0,0,67,0,63,0,0,0,37,3,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,30,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +2,0,0,3,0,11,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,3,0,11,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,5,0,0,235,11,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,3,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,147,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,26,0,0,0,2,4,25,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,58,3,0,0,74,0,105,0,0,0,43,5,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,94,33,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,14,67,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,8,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,63,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,7,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,61,0,56,0,0,0,31,5,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,27,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,53,0,1,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,174,10,37,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,22,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,74,2,0,0,109,0,248,0,0,0,41,6,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,37,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,146,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,63,23,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1210,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,540,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,157,0,0,0,27,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,264,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,10,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,7,0,0,209,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,167,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,7,38,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,64,3,0,0,69,0,86,0,0,0,39,11,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,37,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,62,0,0,0,0,0,1,0,0,0,0,0,2,0,0,565,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,58,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,613,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,53,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,167,3,0,0,83,0,336,0,0,0,13,13,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,93,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,57,3 +7,0,0,5,0,36,21,0,42,0,4,0,0,2,9,0,765,0,6,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5868,36,44,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,382,0,0,0,0,0,1,0,0,0,0,0,2,0,0,134659,36,864,0,2,0,0,0,0,0,32,0,0,0,0,0,8,18,23025,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,841,0,0,0,0,5562,0,0,0,0,3,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,18779,0,43,0,0,0,0,3,285,1613,18764,0,0,0,0,1,0,3,0,0,0,0,0,0,869,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,310,5,0,0,284,0,430,0,0,0,126,25,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,1,143,19,0,0,1,0,0,0,0,0,7567,1,0,1147,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,1,0,0,0,0,1,37,229,0,3,12,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2851,64,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,108,10,24,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,47,3,0,0,58,0,68,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,23,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,14,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1307,10,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,523,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,40,0,0,0,0,3,27,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,83,2,0,0,127,0,120,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,227,0,0,815,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,189,0,1,0,0,2,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,293,14,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,125,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,126,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,71,0,90,0,0,0,41,6,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,35,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,147,10,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,22,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,29,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,92,0,262,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,27,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,27,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1485,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,500,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,615,0,0,0,0,0,11,41,232,0,0,0,0,0,0,0,0,0,0,0,0,0,1663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,18,2,0,0,57,0,79,0,0,0,48,5,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,45,0,0,0,0,0,0,0,0,326,0,0,396,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,113,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1415,5,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,73,0,0,0,0,0,1,0,0,0,0,0,2,0,0,453,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,65,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,431,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,32,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1055,3,0,0,1050,0,289,0,0,0,14,6,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1069,9,0,0,0,0,0,0,0,0,98,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,30,3 +10,0,0,5,0,41,21,0,48,0,4,0,0,2,14,0,891,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,359,0,0,0,0,0,1,0,0,0,0,0,2,0,0,148002,41,1019,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,25156,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,1029,0,0,0,0,5270,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,20966,0,57,0,0,0,8,17,291,1630,20956,0,0,0,0,1,0,3,0,0,0,0,0,0,906,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,302,5,0,0,296,0,400,0,0,0,135,19,0,0,0,0,0,0,0,0,0,986,1,0,0,0,9,0,0,0,0,2,146,19,0,0,1,0,0,0,0,0,7148,1,0,1121,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,212,0,22,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3218,171,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,76,2,0,0,91,0,254,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,26,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,51,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,138,9,21,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,1,0,0,0,0,0,6,0,0,0,0,2,0,8,0,1,0,0,110,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,21,0,0,0,0,3,23,5,25,0,0,0,0,1,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,51,3,0,0,72,0,81,0,0,0,42,2,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,0,91,38,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,73,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,7,3 +12,0,0,5,0,39,36,0,48,0,4,0,0,2,13,0,1039,0,6,1,0,0,0,8,0,10,0,0,6,0,3,0,0,0,2,11302,39,56,0,0,22,0,1,0,1,0,0,2,0,0,0,0,3,458,0,0,0,0,0,1,0,0,0,0,0,2,0,0,161222,39,1205,0,6,0,0,0,0,0,56,0,0,0,0,0,8,19,30708,0,0,2,0,0,0,0,0,99,5,4,1,0,2,0,1160,0,0,0,0,6465,0,0,0,0,5,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,28490,0,52,0,0,0,4,7,317,1357,28474,0,0,0,0,1,0,4,0,0,0,0,0,0,1548,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,349,5,0,0,347,0,463,0,0,0,179,33,0,0,0,0,0,0,0,0,0,1148,1,0,0,0,9,0,0,0,0,3,159,29,0,0,1,0,0,0,0,0,8907,1,0,812,26,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,26,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,7,0,0,0,0,1,41,225,0,7,12,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2747,203,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +10,0,0,5,0,42,21,0,46,0,4,0,0,2,14,0,837,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,6,5868,42,60,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,395,0,0,0,0,0,1,0,0,0,0,0,2,0,0,145664,42,957,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,24905,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,969,0,0,0,0,5165,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,20598,0,55,0,0,0,8,15,298,1632,20590,0,0,0,0,1,0,3,0,0,0,0,0,0,924,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,344,5,0,0,300,0,537,0,0,0,138,21,0,0,0,0,0,0,0,0,0,930,1,0,0,0,9,0,0,0,0,2,149,19,0,0,1,0,0,0,0,0,6968,1,0,1131,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,10,0,0,0,2,1,48,234,0,20,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3265,277,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,60,0,0,0,0,0,1,0,0,0,0,0,2,0,0,469,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,64,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,414,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,32,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1057,3,0,0,1050,0,309,0,0,0,14,8,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1069,9,0,0,0,0,0,0,0,0,96,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,29,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,7,0,0,197,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,164,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,30,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,62,3,0,0,62,0,96,0,0,0,32,4,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,19,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,32,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,13,3 +17,0,0,6,0,39,21,0,46,6,5,0,0,2,12,0,799,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,5868,39,40,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,357,0,0,0,0,0,1,0,0,0,0,0,10,0,0,137526,39,920,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23251,0,0,4,0,0,0,0,0,95,5,2,0,0,2,0,910,0,7,0,0,5321,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,19189,0,52,0,0,0,8,21,285,1634,19179,0,0,0,0,1,0,3,0,0,0,0,0,0,968,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,290,6,0,0,291,0,420,0,0,0,131,18,0,0,0,0,0,0,0,0,0,891,1,0,0,0,9,0,0,0,0,2,145,19,0,0,1,0,0,0,0,0,4971,1,0,1146,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,212,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2244,139,3 +4,0,0,5,0,34,21,0,43,0,4,0,0,2,7,0,715,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5706,34,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,291,0,0,0,0,0,1,0,0,0,0,0,2,0,0,120610,34,811,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20728,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,774,0,0,0,0,4783,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,16467,0,65,0,0,0,0,3,274,1593,16457,0,0,0,0,1,0,3,0,0,0,0,0,0,803,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,340,5,0,0,271,0,877,0,0,0,117,10,0,0,0,0,0,0,0,0,0,798,1,0,0,0,9,0,0,0,0,0,134,19,0,0,1,0,0,0,0,0,8138,1,0,1123,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,35,218,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3098,86,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,76,0,0,0,0,0,1,0,0,0,0,0,2,0,0,487,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,71,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,507,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1071,3,0,0,1065,0,296,0,0,0,14,8,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1084,9,0,0,0,0,0,0,0,0,102,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,30,3 +6,0,0,6,0,39,7,0,31,4,5,0,0,2,9,0,447,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,6,898,39,36,0,0,39,0,3,0,1,0,0,3,0,0,0,0,4,166,1,0,0,0,0,1,0,0,0,0,0,9,0,0,34763,39,528,0,7,0,0,0,0,0,22,0,0,0,0,0,8,20,6767,0,0,6,0,0,0,0,0,94,5,6,0,0,2,0,517,0,6,0,0,3427,0,0,0,0,24,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,3526,0,69,0,0,0,6,19,248,1132,3521,0,0,0,0,1,0,4,0,0,0,0,0,0,501,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,19,215,6,0,0,219,0,324,0,0,0,75,10,0,0,0,0,0,0,0,0,0,507,1,0,0,0,9,0,0,0,0,1,122,16,0,0,1,0,0,0,0,0,2887,1,0,875,5,0,1,1,1,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,5,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,16,0,0,0,0,1,45,125,0,17,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1740,192,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,97,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,114,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,35,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,62,0,88,0,0,0,32,12,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,25,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,10,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1228,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,556,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,88,0,155,0,0,0,25,10,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,263,149,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,131,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,127,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,33,0,0,0,2,3,26,6,39,0,0,0,0,1,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,72,0,90,0,0,0,41,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,36,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1325,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,544,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,41,0,0,0,0,3,23,6,98,0,0,0,0,1,0,0,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,118,0,0,0,65,0,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,815,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,189,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,295,13,3 +1,0,0,5,0,44,20,0,41,0,4,0,0,2,3,0,760,0,6,1,0,0,0,9,0,12,3,0,5,0,1,0,0,0,7,5830,44,32,0,0,32,0,1,0,1,0,0,1,0,0,0,0,2,359,0,0,0,0,0,1,0,0,0,0,0,2,0,0,124523,44,852,0,3,0,0,0,0,0,30,0,0,0,0,0,9,21,21183,0,0,7,0,0,0,0,0,95,5,2,0,0,2,0,813,0,0,0,0,5457,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,17186,0,48,0,0,0,2,6,301,1597,17165,0,0,0,0,1,0,3,0,0,0,0,0,0,837,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,37,13,293,5,0,0,306,0,377,0,0,0,141,13,0,0,0,0,0,0,0,0,0,836,1,0,0,0,10,0,0,0,0,1,154,18,0,0,1,0,0,0,0,0,4033,1,0,1130,17,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,17,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,2,0,0,0,0,1,51,204,0,7,14,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2198,121,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,132,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,261,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,107,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,26,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,122,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,137,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,60,3,0,0,72,0,90,0,0,0,41,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +5,0,0,4,0,37,13,0,35,0,3,0,0,2,3,0,650,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2311,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,257,0,0,0,0,0,1,0,0,0,0,0,4,0,0,69716,37,738,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,12728,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,688,0,1,0,0,2833,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,8966,0,44,0,0,0,2,7,267,1183,8942,0,0,0,0,1,0,3,0,0,0,0,0,0,796,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,231,4,0,0,278,0,351,0,0,0,126,5,0,0,0,0,0,0,0,0,0,712,1,0,0,0,10,0,0,0,0,1,130,36,0,0,0,0,0,0,0,0,4104,1,0,1648,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1879,48,3 +4,0,0,5,0,35,21,0,43,0,4,0,0,2,7,0,735,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,258,0,0,0,0,0,1,0,0,0,0,0,2,0,0,123449,35,831,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20980,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,794,0,0,0,0,5469,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,16908,0,65,0,0,0,0,3,281,1593,16897,0,0,0,0,1,0,3,0,0,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,365,5,0,0,274,0,880,0,0,0,118,16,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,0,136,19,0,0,1,0,0,0,0,0,8124,1,0,1135,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,218,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3102,89,3 +2,0,0,2,0,16,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,16,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2126,16,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,860,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,412,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,252,0,35,0,0,0,8,19,33,612,263,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,113,0,181,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,96,31,0,0,0,0,0,0,0,0,449,0,0,761,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,4,0,0,0,0,1,19,201,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,444,9,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,87,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,101,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,3,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,46,3,0,0,57,0,87,0,0,0,27,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,10,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,140,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,267,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,28,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2119,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,845,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,249,0,30,0,0,0,8,19,29,615,258,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,177,0,0,0,45,6,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,450,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,438,8,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1190,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,503,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,66,2,0,0,79,0,161,0,0,0,25,3,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,257,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,263,101,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,57,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,53,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1233,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,557,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,30,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,88,0,168,0,0,0,25,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,87,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,127,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,69,0,107,0,0,0,38,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,98,22,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,17,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1104,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,514,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,152,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,23,0,0,0,0,3,24,6,55,0,0,0,0,1,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,70,3,0,0,80,0,155,0,0,0,27,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,254,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,101,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,66,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,7,0,0,218,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,152,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,32,0,0,0,2,4,26,7,40,0,0,0,0,1,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,63,3,0,0,69,0,86,0,0,0,39,4,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,37,3 +0,0,0,2,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,1,0,0,61,10,20,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,6,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,20,0,0,0,0,3,24,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,38,2,0,0,73,0,74,0,0,0,43,2,0,0,0,0,0,0,0,0,0,23,1,0,0,0,2,0,0,0,0,0,92,36,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,74,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,6,3 +2,0,0,3,0,9,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,75,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,38,3,0,0,58,0,60,0,0,0,28,1,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,6,3 +3549,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,112,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1801,11,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,599,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,171,0,66,0,0,0,0,3,31,9,170,0,0,0,0,1,0,0,0,0,0,0,0,0,9858,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,97,2,0,0,131,0,243,0,0,0,61,8,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,91,43,0,0,0,0,0,0,0,0,259,0,0,940,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,385,48,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,54,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +8,0,0,3,0,31,4,0,21,0,2,0,0,2,2,0,19,0,7,3,0,0,0,5,0,8,0,0,4,0,5,0,0,0,5,0,31,6,0,0,28,0,0,0,1,0,0,2,0,0,0,0,5,141,0,0,0,0,0,1,0,0,0,0,0,2,0,0,696,31,61,0,8,0,0,0,0,0,12,0,0,0,0,0,7,14,130,0,0,5,0,0,0,0,0,76,5,3,0,0,2,0,36,0,0,0,0,512,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,98,0,62,0,0,0,8,7,189,22,101,0,0,0,0,1,0,3,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,10,136,3,0,0,150,0,234,0,0,0,43,9,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,112,20,0,0,0,0,0,0,0,0,670,0,0,42,2,0,1,1,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,11,0,0,0,0,1,36,156,0,9,8,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,188,31,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,30,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,269,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,28,3 +10,0,0,5,0,42,21,0,46,0,4,0,0,2,14,0,837,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,42,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,444,0,0,0,0,0,1,0,0,0,0,0,2,0,0,140433,42,960,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23944,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,972,0,0,0,0,5484,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,19589,0,54,0,0,0,8,19,294,1630,19579,0,0,0,0,1,0,3,0,0,0,0,0,0,939,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,296,5,0,0,299,0,408,0,0,0,136,15,0,0,0,0,0,0,0,0,0,930,1,0,0,0,9,0,0,0,0,2,147,19,0,0,1,0,0,0,0,0,7159,1,0,1135,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,11,0,0,0,0,1,48,213,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3286,106,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +4,0,0,5,0,37,21,0,41,0,4,0,0,2,7,0,699,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,37,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,244,0,0,0,0,0,1,0,0,0,0,0,2,0,0,115037,37,793,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19719,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,758,0,0,0,0,4985,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,15501,0,66,0,0,0,0,3,289,1594,15490,0,0,0,0,1,0,3,0,0,0,0,0,0,822,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,333,5,0,0,283,0,940,0,0,0,123,15,0,0,0,0,0,0,0,0,0,780,1,0,0,0,9,0,0,0,0,0,140,19,0,0,1,0,0,0,0,0,8519,1,0,1131,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,0,0,0,0,0,1,38,199,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3195,85,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,53,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,3,0,13,3,0,16,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,13,48,0,0,10,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,3,0,0,409,13,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,56,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,29,0,1,0,0,452,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,50,0,38,0,0,0,0,3,34,6,60,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,4,115,3,0,0,104,0,299,0,0,0,37,19,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,96,20,0,0,0,0,0,0,0,0,91,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,16,141,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,91,17,3 +13,0,0,7,2,20,50,2,55,1,7,0,0,0,9,0,119,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,11,0,22,102,0,0,25,0,1,0,1,0,0,1,0,0,0,0,1,103,0,0,0,0,0,1,0,0,0,0,0,8,0,0,2882,20,177,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,845,0,2,11,2,0,2,0,0,87,0,1,0,0,6,2,50,0,5,0,0,598,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,265,0,46,0,0,0,2,7,48,26,274,0,0,0,0,1,0,0,0,0,0,0,0,0,709,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,217,27,432,9,0,0,436,0,614,0,2,0,147,22,0,0,0,0,0,0,0,0,0,251,1,0,0,0,2,0,0,0,0,2,130,35,0,0,0,0,0,0,0,0,1166,0,0,1133,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,362,1,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,18,1,1,1,0,2,0,0,0,0,17,33,183,0,6,0,0,1,0,0,0,74,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,561,25,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,55,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,78,2,0,0,94,0,256,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,63,25,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,2,0,9,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,9,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,1,0,0,885,9,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,457,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,6,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,37,0,25,0,0,0,0,3,25,9,52,0,0,0,0,1,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,57,2,0,0,92,0,108,0,0,0,38,0,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,206,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,160,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,234,6,3 +0,0,0,3,0,9,2,0,7,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,2,0,1,0,0,2,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,3,0,0,561,9,32,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,144,0,0,1,0,0,0,0,0,7,0,4,0,0,2,0,8,0,1,0,0,193,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,18,0,0,0,0,3,23,4,49,0,0,0,0,1,0,0,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,71,3,0,0,87,0,99,0,0,0,34,3,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,92,23,0,0,0,0,0,0,0,0,36,0,0,352,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,105,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,9,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2123,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,862,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,449,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,248,0,30,0,0,0,8,19,29,614,257,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,177,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,447,0,0,766,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,433,8,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1249,10,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,503,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,84,0,41,0,0,0,0,3,27,6,94,0,0,0,0,1,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,82,2,0,0,127,0,120,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,221,0,0,799,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,204,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,284,15,3 +2,0,0,2,0,9,2,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,3,0,1,0,9,6,0,0,5,0,2,0,1,0,0,3,0,0,0,0,0,93,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2819,9,45,0,1,0,0,0,0,0,12,0,0,0,0,0,1,7,900,0,0,1,0,0,0,0,0,11,0,3,0,0,2,0,7,0,0,0,0,210,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,272,0,47,0,0,0,0,3,23,207,291,0,0,0,0,1,0,0,0,0,0,0,0,0,551,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,77,2,0,0,78,0,162,0,0,0,27,6,0,0,0,0,0,0,0,0,0,36,1,0,0,0,2,0,0,0,0,0,89,15,0,0,0,0,0,0,0,0,991,0,0,1152,0,0,1,0,1,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,3,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,70,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,566,16,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,4,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +16,0,0,6,0,39,15,0,43,6,5,0,0,2,12,0,727,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4923,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,352,0,0,0,0,0,1,0,0,0,0,0,10,0,0,138481,39,834,0,10,0,0,0,0,0,26,0,0,0,0,0,8,18,24099,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,832,0,7,0,0,3312,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,20347,0,51,0,0,0,8,20,279,1240,20337,0,0,0,0,1,0,3,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,287,6,0,0,271,0,399,0,0,0,110,17,0,0,0,0,0,0,0,0,0,810,1,0,0,0,9,0,0,0,0,1,139,16,0,0,1,0,0,0,0,0,4615,1,0,782,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,13,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,20,0,0,0,2,1,43,189,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1989,138,3 +16,0,0,6,0,38,17,0,42,6,5,0,0,2,12,0,673,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,38,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,344,0,0,0,0,0,1,0,0,0,0,0,10,0,0,135071,38,780,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,23466,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,777,0,7,0,0,3384,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,19722,0,51,0,0,0,8,20,274,1254,19713,0,0,0,0,1,0,3,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,290,6,0,0,273,0,403,0,0,0,113,17,0,0,0,0,0,0,0,0,0,757,1,0,0,0,9,0,0,0,0,1,138,17,0,0,1,0,0,0,0,0,4560,1,0,796,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,19,0,0,0,0,1,42,225,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1975,124,3 +2,0,0,2,0,20,3,0,21,0,2,0,0,0,2,0,75,0,6,1,0,0,0,1,0,0,36,1,0,0,12,0,0,0,3,0,20,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,12,61,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2277,20,143,0,13,0,0,0,0,0,7,0,0,0,0,0,1,6,867,0,0,3,0,0,0,0,0,56,0,2,0,0,2,0,225,0,0,0,0,632,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,259,0,43,0,0,0,24,52,37,647,273,0,0,0,0,1,0,0,0,0,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,109,2,0,0,125,0,214,0,0,0,45,5,0,0,0,0,0,0,0,0,0,109,1,0,0,0,2,0,0,0,0,13,100,31,0,0,0,0,0,0,0,0,533,0,0,782,0,0,1,0,1,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,373,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,12,0,0,0,0,1,23,201,0,49,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,459,15,3 +0,0,0,2,0,12,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,12,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1314,12,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,525,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,42,0,0,0,0,3,35,6,103,0,0,0,0,1,0,0,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,87,2,0,0,133,0,122,0,0,0,65,7,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,94,49,0,0,0,0,0,0,0,0,228,0,0,817,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,193,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,298,13,3 +16,0,0,6,0,38,21,0,45,6,5,0,0,2,12,0,744,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,5868,38,146,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,350,0,0,0,0,0,1,0,0,0,0,0,10,0,0,140008,38,864,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23768,0,0,4,0,0,0,0,0,95,5,2,0,0,2,0,855,0,7,0,0,5336,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19666,0,50,0,0,0,8,21,277,1636,19657,0,0,0,0,1,0,3,0,0,0,0,0,0,964,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,283,6,0,0,282,0,397,0,0,0,125,13,0,0,0,0,0,0,0,0,0,835,1,0,0,0,9,0,0,0,0,2,138,19,0,0,1,0,0,0,0,0,4972,1,0,1157,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,19,0,0,0,0,1,42,264,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2296,142,3 +16,0,0,6,0,38,17,0,44,6,5,0,0,2,12,0,742,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,38,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,379,0,0,0,0,0,1,0,0,0,0,0,10,0,0,130573,38,850,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,22797,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,845,0,7,0,0,3314,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18900,0,53,0,0,0,6,19,274,1249,18891,0,0,0,0,1,0,3,0,0,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,275,6,0,0,274,0,388,0,0,0,114,10,0,0,0,0,0,0,0,0,0,828,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4754,1,0,757,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,17,0,0,0,0,1,42,202,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1994,126,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,1,0,0,3,0,0,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1229,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,557,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,88,0,154,0,0,0,25,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,149,3 +13,0,0,4,0,46,12,0,35,17,3,0,0,2,20,0,696,0,6,2,0,0,0,8,0,11,0,0,5,0,1,0,7,0,14,2505,46,32,0,0,60,0,1,0,1,0,0,2,0,0,0,0,1,237,0,0,0,0,0,1,0,0,0,0,0,21,0,0,80613,46,789,0,2,0,0,0,0,0,26,0,0,0,0,0,9,23,14480,0,0,14,0,0,0,0,0,95,5,4,0,0,2,0,760,0,18,0,0,3306,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,10768,0,72,0,0,0,0,3,274,1186,10761,0,0,0,0,1,0,3,0,0,0,0,0,0,916,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,39,28,298,4,0,0,299,0,360,0,0,0,151,13,0,0,0,0,0,0,0,0,0,774,1,0,0,0,10,0,0,0,0,1,140,33,0,0,0,0,0,0,0,0,4255,1,0,1587,13,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,7,13,361,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,1,0,0,0,0,1,60,159,0,3,14,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1970,126,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,2,0,13,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,403,13,34,0,3,0,0,0,0,0,6,0,0,0,0,0,1,3,102,0,0,2,0,0,0,0,0,9,0,1,0,0,2,0,10,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,85,0,27,0,0,0,0,3,27,6,100,0,0,0,0,1,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,90,0,145,0,0,0,26,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,47,0,0,72,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,15,73,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,81,143,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1022,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,481,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,22,0,0,0,0,3,26,4,53,0,0,0,0,1,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,60,2,0,0,77,0,105,0,0,0,20,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,89,16,0,0,0,0,0,0,0,0,213,0,0,768,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,110,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,241,6,3 +1,0,0,4,0,36,16,0,35,0,2,0,0,2,5,0,666,0,6,2,0,0,0,8,0,11,0,0,4,0,1,0,1,0,3,4923,36,6,0,0,25,0,1,0,1,0,0,1,0,0,0,0,1,360,0,0,0,0,0,1,0,0,0,0,0,6,0,0,129467,36,744,0,1,0,0,0,0,0,26,0,0,0,0,0,9,21,22584,0,0,3,0,0,0,0,0,93,5,2,0,0,2,0,695,0,0,0,0,3385,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,18851,0,42,0,0,0,0,3,269,1210,18837,0,0,0,0,1,0,3,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,245,4,0,0,265,0,273,0,0,0,109,6,0,0,0,0,0,0,0,0,0,732,1,0,0,0,10,0,0,0,0,0,138,15,0,0,0,0,0,0,0,0,3626,1,0,774,15,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,1,15,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,0,0,0,0,0,1,39,131,0,2,14,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1937,29,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,135,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,31,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,78,2,0,0,94,0,265,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,112,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,61,26,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1225,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,550,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,155,0,0,0,27,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,263,149,3 +0,0,0,2,0,8,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,4,0,1,0,0,4,0,0,0,0,0,64,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1762,8,67,0,1,0,0,0,0,0,22,0,0,0,0,0,1,9,590,0,0,0,0,0,0,0,0,14,0,8,0,0,2,0,14,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,134,0,46,0,0,0,0,3,22,7,145,0,0,0,0,1,0,0,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,3,70,2,0,0,127,0,143,0,0,0,67,5,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,88,53,0,0,0,0,0,0,0,0,250,0,0,924,0,0,1,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,224,0,1,0,0,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,340,17,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1403,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,87,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,621,0,0,0,0,0,15,43,228,0,0,0,0,0,0,0,0,0,0,0,0,0,1643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,20,2,0,0,60,0,91,0,0,0,48,9,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,314,0,0,360,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,116,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1409,5,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1258,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,569,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,69,2,0,0,79,0,162,0,0,0,25,3,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,264,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,101,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,76,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1314,10,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,531,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,40,0,0,0,0,3,27,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,82,2,0,0,127,0,119,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,227,0,0,815,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,190,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,295,13,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,86,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,97,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,3,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,47,3,0,0,57,0,87,0,0,0,27,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,10,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,127,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,148,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,60,3,0,0,72,0,90,0,0,0,41,6,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,605,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,35,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,50,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,9,2,0,24,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,2,0,0,119,9,44,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,22,0,0,1,0,0,0,0,0,6,0,1,0,0,2,0,21,0,0,0,0,77,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,20,0,0,0,0,3,23,4,39,0,0,0,0,1,0,0,0,0,0,0,0,0,91,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,82,4,0,0,105,0,110,0,0,0,46,1,0,0,0,0,0,0,0,0,0,51,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,0,0,0,0,603,0,0,8,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,158,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,17,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,70,0,0,0,0,0,1,0,0,0,0,0,2,0,0,457,25,27,0,0,0,0,0,0,0,2,0,0,0,0,0,7,11,63,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,517,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1028,3,0,0,1020,0,302,0,0,0,14,6,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1039,9,0,0,0,0,0,0,0,0,95,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,30,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2090,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,832,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,409,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,247,0,30,0,0,0,8,19,29,612,256,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,84,2,0,0,110,0,173,0,0,0,45,7,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,447,0,0,766,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,434,8,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,78,2,0,0,94,0,267,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,100,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,63,27,3 +16,0,0,6,0,39,17,0,45,6,5,0,0,2,12,0,798,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,340,0,0,0,0,0,1,0,0,0,0,0,10,0,0,132690,39,911,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,23130,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,905,0,7,0,0,3482,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,19362,0,53,0,0,0,8,20,281,1259,19352,0,0,0,0,1,0,3,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,296,6,0,0,275,0,405,0,0,0,113,16,0,0,0,0,0,0,0,0,0,885,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4798,1,0,796,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,20,0,0,0,2,1,43,227,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2055,137,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,8,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1216,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,539,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,88,0,154,0,0,0,25,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,264,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,6,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +10,0,0,5,0,40,21,0,47,0,4,0,0,2,14,0,797,0,6,1,0,0,0,8,0,11,9,0,10,0,3,0,0,0,6,5868,40,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,394,0,0,0,0,0,1,0,0,0,0,0,2,0,0,134708,40,922,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,23091,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,934,0,0,0,0,5397,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,18835,0,53,0,0,0,8,17,284,1630,18826,0,0,0,0,1,0,3,0,0,0,0,0,0,901,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,302,5,0,0,300,0,411,0,0,0,142,18,0,0,0,0,0,0,0,0,0,891,1,0,0,0,9,0,0,0,0,2,151,19,0,0,1,0,0,0,0,0,6927,1,0,1097,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,12,0,0,0,2,1,46,206,0,21,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3239,141,3 +8,0,0,3,0,20,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,8,0,20,6,0,0,28,0,5,0,1,0,0,5,0,0,0,0,0,85,0,0,0,0,0,1,0,0,0,0,0,6,0,0,33891,20,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,7038,0,0,8,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,525,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4272,0,76,0,0,0,0,3,42,220,4286,0,0,0,0,1,0,0,0,0,0,0,0,0,8557,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,162,3,0,0,147,0,322,0,0,0,81,17,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,102,43,0,0,0,0,0,0,0,0,2070,0,0,9850,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,1,28,253,0,4,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2938,61,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,213,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,20,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,132,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,51,3,0,0,63,0,93,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,606,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,111,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,92,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +0,0,0,3,0,13,2,0,16,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,13,6,0,0,12,0,0,0,1,0,0,3,0,0,0,0,0,87,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1701,13,56,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,359,0,0,4,0,0,0,0,0,11,0,4,0,0,2,0,17,0,1,0,0,315,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,250,0,59,0,0,0,0,3,30,209,267,0,0,0,0,1,0,0,0,0,0,0,0,0,527,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,105,3,0,0,109,0,170,0,0,0,47,11,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,95,22,0,0,0,0,0,0,0,0,159,0,0,345,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,17,171,0,1,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,317,18,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,7,0,0,218,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,184,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,32,0,0,0,2,4,26,6,40,0,0,0,0,1,0,0,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,62,3,0,0,70,0,86,0,0,0,39,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,95,26,0,0,0,0,0,0,0,0,606,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,37,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,219,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,118,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,31,0,0,0,2,4,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,86,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,606,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,12,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,31,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,78,2,0,0,94,0,246,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,104,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,61,25,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1073,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,470,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,23,0,0,0,0,3,24,6,55,0,0,0,0,1,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,71,3,0,0,80,0,153,0,0,0,27,6,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,253,0,0,780,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,108,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,65,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,266,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,28,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,83,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,65,0,60,0,0,0,35,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +4,0,0,3,0,9,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,83,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,90,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,33,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,5,53,3,0,0,54,0,54,0,0,0,23,11,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,92,19,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,14,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,30,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1219,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,545,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,90,0,156,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,264,149,3 +7,0,0,5,0,40,21,0,46,0,4,0,0,2,12,0,887,0,6,1,0,0,0,8,0,10,0,0,7,0,2,0,0,0,6,5870,40,44,0,0,22,0,1,0,1,0,0,1,0,0,0,0,2,405,0,0,0,0,0,1,0,0,0,0,0,2,0,0,139624,40,996,0,6,0,0,0,0,0,32,0,0,0,0,0,8,18,23945,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,977,0,0,0,0,5179,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,19554,0,55,0,0,0,2,5,283,1610,19547,0,0,0,0,1,0,3,0,0,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,342,5,0,0,294,0,443,0,0,0,135,25,0,0,0,0,0,0,0,0,0,978,1,0,0,0,9,0,0,0,0,2,145,19,0,0,1,0,0,0,0,0,9991,1,0,1089,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,363,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,6,0,0,0,0,1,46,214,0,7,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3674,127,3 +8,0,0,3,0,20,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,9,0,20,6,0,0,30,0,5,0,1,0,0,5,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,6,0,0,28941,20,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,5925,0,0,9,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,514,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3667,0,74,0,0,0,0,3,39,223,3681,0,0,0,0,1,0,0,0,0,0,0,0,0,7463,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,163,3,0,0,148,0,255,0,0,0,85,11,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,102,44,0,0,0,0,0,0,0,0,1818,0,0,8407,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,1,29,255,0,4,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2443,99,3 +12,0,0,5,0,38,32,0,49,0,4,0,0,2,13,0,1057,0,6,1,0,0,0,8,0,10,0,0,8,0,3,0,0,0,2,11220,38,56,0,0,22,0,1,0,1,0,0,2,0,0,0,0,3,493,0,0,0,0,0,1,0,0,0,0,0,2,0,0,170922,38,1215,0,8,0,0,0,0,0,52,0,0,0,0,0,8,19,33622,0,0,2,0,0,0,0,0,101,5,4,1,0,2,0,1172,0,0,0,0,5747,0,0,0,0,6,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,31284,0,53,0,0,0,4,7,312,1252,31268,0,0,0,0,1,0,4,0,0,0,0,0,0,1222,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,370,5,0,0,340,0,453,0,0,0,174,38,0,0,0,0,0,0,0,0,0,1163,1,0,0,0,9,0,0,0,0,3,154,27,0,0,1,0,0,0,0,0,9259,1,0,606,24,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,24,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,9,0,0,0,4,1,40,242,0,9,12,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2851,89,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,44,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,76,0,0,0,0,0,1,0,0,0,0,0,2,0,0,489,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,62,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,555,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1060,3,0,0,1044,0,390,0,0,0,14,12,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1063,9,0,0,0,0,0,0,0,0,107,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,32,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,6,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,7,0,0,216,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,149,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,33,0,0,0,2,4,26,7,40,0,0,0,0,1,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,57,3,0,0,69,0,86,0,0,0,39,4,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,37,3 +10,0,0,3,0,32,4,0,21,0,2,0,0,2,2,0,19,0,7,3,0,0,0,5,0,8,0,0,4,0,5,0,0,0,5,0,32,6,0,0,28,0,0,0,1,0,0,2,0,0,0,0,5,142,0,0,0,0,0,1,0,0,0,0,0,2,0,0,654,32,61,0,8,0,0,0,0,0,12,0,0,0,0,0,7,14,120,0,0,5,0,0,0,0,0,76,5,3,0,0,2,0,36,0,0,0,0,486,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,97,0,65,0,0,0,8,7,193,22,100,0,0,0,0,1,0,3,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,10,141,3,0,0,154,0,237,0,0,0,44,7,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,113,21,0,0,0,0,0,0,0,0,658,0,0,37,2,0,1,1,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,11,0,0,0,0,1,37,157,0,9,8,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,192,33,3 +1,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,252,10,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,34,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,29,0,0,0,0,3,26,4,52,0,0,0,0,1,0,0,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,67,2,0,0,83,0,264,0,0,0,22,4,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,92,17,0,0,0,0,0,0,0,0,35,0,0,49,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,59,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,68,28,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,598,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,77,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,584,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,56,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,173,3,0,0,83,0,349,0,0,0,13,14,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,106,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,60,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,5,0,0,115,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,129,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,51,3,0,0,68,0,62,0,0,0,37,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,30,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,261,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +4,0,0,6,0,40,21,0,43,6,5,0,0,2,10,0,718,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,5,5879,40,32,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,351,0,0,0,0,0,1,0,0,0,0,0,10,0,0,133934,40,833,0,7,0,0,0,0,0,32,0,0,0,0,0,8,18,22879,0,0,5,0,0,0,0,0,90,5,2,0,0,2,0,815,0,7,0,0,4996,0,0,0,0,9,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,18699,0,51,0,0,0,6,19,286,1622,18689,0,0,0,0,1,0,3,0,0,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,37,20,296,6,0,0,289,0,377,0,0,0,129,19,0,0,0,0,0,0,0,0,0,805,1,0,0,0,9,0,0,0,0,1,141,19,0,0,1,0,0,0,0,0,4005,1,0,1119,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,363,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,16,0,0,0,0,1,45,186,0,17,12,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2235,99,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,131,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,51,3,0,0,63,0,86,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1537,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,79,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,620,0,0,0,0,0,15,43,240,0,0,0,0,0,0,0,0,0,0,0,0,0,1685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,23,2,0,0,60,0,89,0,0,0,48,7,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,332,0,0,408,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,115,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1446,5,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,1,0,0,878,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,461,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,19,0,0,0,0,3,21,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,53,2,0,0,71,0,88,0,0,0,19,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,204,0,0,731,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,63,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,2,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1083,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,503,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,170,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,23,0,0,0,0,3,24,6,53,0,0,0,0,1,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,73,3,0,0,84,0,156,0,0,0,31,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,94,16,0,0,0,0,0,0,0,0,251,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,104,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,233,273,3 +5,0,0,3,0,13,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,13,48,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,5,0,0,385,13,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,56,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,248,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,40,0,0,0,0,3,31,7,61,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,104,3,0,0,104,0,286,0,0,0,40,13,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,96,20,0,0,0,0,0,0,0,0,91,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,17,138,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,92,16,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,39,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,6,0,34,7,0,37,0,5,0,0,7,6,0,609,0,6,2,0,0,0,8,0,12,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,0,0,1,0,0,2,0,0,0,0,1,180,0,0,0,0,0,1,0,0,0,0,0,5,0,0,6067,34,680,0,4,0,0,0,0,0,18,0,0,0,0,0,9,27,1171,0,0,1,0,0,0,0,0,215,25,4,0,0,2,0,668,0,0,1,0,1255,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,439,0,40,0,0,0,2,5,257,351,425,0,0,0,0,1,0,3,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,190,6,0,0,201,0,265,0,0,0,58,6,0,0,0,0,0,0,0,0,0,677,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,1712,1,0,129,8,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,8,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,9,0,0,0,0,1,35,111,0,5,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,519,77,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1031,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,464,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,104,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,23,0,0,0,0,3,24,6,52,0,0,0,0,1,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,76,3,0,0,82,0,145,0,0,0,29,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,92,16,0,0,0,0,0,0,0,0,250,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,102,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,234,65,3 +5,0,0,4,0,37,13,0,36,0,3,0,0,2,3,0,684,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2318,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,262,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58841,37,773,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,10853,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,722,0,1,0,0,3054,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,7140,0,44,0,0,0,2,7,266,1182,7116,0,0,0,0,1,0,3,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,231,4,0,0,278,0,367,0,0,0,126,12,0,0,0,0,0,0,0,0,0,747,1,0,0,0,10,0,0,0,0,1,130,36,0,0,0,0,0,0,0,0,4179,1,0,1379,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1848,38,3 +5,0,0,3,0,10,2,0,9,0,2,0,0,0,6,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,3,0,1,0,10,48,0,0,10,0,0,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,6,0,0,319,10,35,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,32,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,30,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,34,0,0,0,0,3,28,17,52,0,0,0,0,1,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,19,3,93,3,0,0,80,0,252,0,0,0,24,13,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,14,0,0,0,0,0,0,0,0,98,0,0,37,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,110,0,1,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,124,68,3 +0,0,0,3,0,11,2,0,9,0,3,0,0,0,3,0,20,0,6,1,0,0,0,1,0,0,3,0,1,0,1,1,0,0,3,0,11,6,0,0,8,0,2,0,1,0,0,3,0,0,0,0,1,42,0,0,0,0,0,1,0,0,0,0,0,3,0,0,943,11,52,0,3,0,0,0,0,0,12,0,0,0,0,0,1,6,233,0,0,3,0,0,0,0,0,14,0,6,0,0,2,0,28,0,1,0,0,180,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,101,0,29,0,0,0,2,8,26,13,100,0,0,0,0,1,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,80,3,0,0,101,0,159,0,0,0,48,5,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,2,94,28,0,0,0,0,0,0,0,0,65,0,0,449,0,0,1,0,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,182,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,4,0,0,0,0,1,14,136,0,6,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,89,12,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,781,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5870,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,377,0,0,0,0,0,1,0,0,0,0,0,2,0,0,140563,41,904,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,24060,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,917,0,0,0,0,5509,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19812,0,53,0,0,0,8,17,290,1635,19802,0,0,0,0,1,0,3,0,0,0,0,0,0,937,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,304,5,0,0,301,0,399,0,0,0,141,22,0,0,0,0,0,0,0,0,0,873,1,0,0,0,9,0,0,0,0,2,151,19,0,0,1,0,0,0,0,0,6867,1,0,1138,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,233,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3191,164,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1207,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,535,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,74,2,0,0,88,0,154,0,0,0,25,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,149,3 +5,0,0,4,0,37,13,0,37,0,3,0,0,2,3,0,719,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2311,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,245,0,0,0,0,0,1,0,0,0,0,0,4,0,0,78292,37,809,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,14044,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,757,0,1,0,0,3421,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,12,12,12,0,0,0,10243,0,45,0,0,0,2,7,265,1185,10219,0,0,0,0,1,0,3,0,0,0,0,0,0,815,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,227,4,0,0,277,0,360,0,0,0,126,10,0,0,0,0,0,0,0,0,0,783,1,0,0,0,10,0,0,0,0,1,130,36,0,0,0,0,0,0,0,0,4335,1,0,1665,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1934,39,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,267,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,46,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,80,0,0,0,0,0,1,0,0,0,0,0,2,0,0,496,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,69,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,570,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,33,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,102,3,0,0,83,0,377,0,0,0,13,12,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,113,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,29,3 +2,0,0,2,0,10,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,66,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1068,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,479,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,25,0,0,0,0,3,24,5,61,0,0,0,0,1,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,64,2,0,0,98,0,126,0,0,0,45,2,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,92,32,0,0,0,0,0,0,0,0,215,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,237,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,241,7,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,55,0,0,0,0,0,1,0,0,0,0,0,1,0,0,135,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,252,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,24,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,263,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,112,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,26,3 +0,0,0,3,0,11,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1034,11,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,456,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,98,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,24,0,0,0,0,3,28,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,75,3,0,0,83,0,154,0,0,0,27,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,91,16,0,0,0,0,0,0,0,0,251,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,105,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,64,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1241,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,533,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,89,2,0,0,91,0,174,0,0,0,32,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,150,3 +2366,0,0,2,0,12,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,12,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,114,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1822,12,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,622,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,175,0,68,0,0,0,0,3,35,9,174,0,0,0,0,1,0,0,0,0,0,0,0,0,6764,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,96,2,0,0,134,0,243,0,0,0,61,7,0,0,0,0,0,1,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,260,0,0,943,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,12,249,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,386,39,3 +4,0,0,5,0,35,21,0,44,0,4,0,0,2,7,0,770,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5706,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,250,0,0,0,0,0,1,0,0,0,0,0,2,0,0,109597,35,867,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,18879,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,829,0,0,0,0,5208,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,14568,0,68,0,0,0,0,3,281,1591,14557,0,0,0,0,1,0,3,0,0,0,0,0,0,805,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,362,5,0,0,276,0,883,0,0,0,120,20,0,0,0,0,0,0,0,0,0,854,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8678,1,0,1128,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,192,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3220,89,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1065,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,474,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,123,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,23,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,73,3,0,0,84,0,158,0,0,0,31,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,94,16,0,0,0,0,0,0,0,0,252,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,104,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,234,264,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,87,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,130,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,65,0,107,0,0,0,35,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,22,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,17,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +12,0,0,4,0,40,12,0,36,4,3,0,0,2,7,0,749,0,6,2,0,0,0,8,0,11,0,0,5,0,1,0,7,0,7,2505,40,32,0,0,33,0,1,0,1,0,0,2,0,0,0,0,1,258,0,0,0,0,0,1,0,0,0,0,0,8,0,0,84125,40,830,0,2,0,0,0,0,0,26,0,0,0,0,0,9,23,15100,0,0,7,0,0,0,0,0,95,5,4,0,0,2,0,787,0,5,0,0,3168,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,11344,0,52,0,0,0,0,3,269,1188,11322,0,0,0,0,1,0,3,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,39,15,253,4,0,0,280,0,346,0,0,0,129,8,0,0,0,0,0,0,0,0,0,815,1,0,0,0,10,0,0,0,0,1,133,33,0,0,0,0,0,0,0,0,4370,1,0,1663,13,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,7,13,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,1,0,0,0,0,1,47,152,0,3,14,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1946,100,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,765,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,351,0,0,0,0,0,1,0,0,0,0,0,10,0,0,196767,39,877,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,35566,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,872,0,7,0,0,3647,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,31879,0,51,0,0,0,8,20,282,1260,31869,0,0,0,0,1,0,3,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,285,6,0,0,281,0,408,0,0,0,119,17,0,0,0,0,0,0,0,0,0,851,1,0,0,0,9,0,0,0,0,1,145,17,0,0,1,0,0,0,0,0,4751,1,0,776,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,20,0,0,0,2,1,43,207,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1972,130,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,62,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,6,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +5,0,0,7,0,42,14,0,41,4,13,0,0,2,8,0,23,0,7,6,0,0,0,5,0,9,0,0,22,0,1,0,0,0,6,0,42,6,7,0,89,0,0,0,1,0,0,3,0,0,0,0,5,136,0,0,0,0,0,1,0,0,0,0,0,15,0,0,23797,42,130,0,22,0,0,0,1,0,20,0,0,0,0,0,7,18,2095,0,0,6,0,0,2,27,0,325,45,5,0,0,2,0,172,0,4,0,0,6368,0,2,0,0,1,0,1,0,0,0,0,1,0,0,0,4,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,1,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,10,10,0,0,0,1512,0,91,0,0,0,7,13,209,16219,1500,0,0,0,0,1,0,4,0,0,0,0,0,0,2797,0,0,0,0,1,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,17,199,7,0,0,203,0,621,0,0,0,70,31,0,0,0,0,0,0,0,0,0,108,1,0,0,0,11,0,0,0,0,1,124,78,0,0,93,0,1,0,0,0,721,0,0,1965,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,23,0,0,0,0,1,48,215,0,23,9,0,0,0,0,0,97,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1290,77,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4946,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,382,0,0,0,0,0,1,0,0,0,0,0,10,0,0,134045,39,874,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,23366,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,869,0,7,0,0,3797,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19496,0,51,0,0,0,8,20,281,1256,19486,0,0,0,0,1,0,3,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,285,6,0,0,277,0,395,0,0,0,116,16,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,1,141,17,0,0,1,0,0,0,0,0,4830,1,0,784,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,228,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2093,122,3 +8,0,0,3,0,11,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,4,0,1,0,0,0,1,0,11,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,912,11,36,0,5,0,0,0,0,0,4,0,0,0,0,0,1,4,465,0,0,1,0,0,0,0,0,11,0,1,0,0,2,0,14,0,1,0,0,119,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,31,0,0,0,0,3,31,17,57,0,0,0,0,1,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,71,3,0,0,72,0,146,0,0,0,15,4,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,93,5,0,0,0,0,0,0,0,0,794,0,0,728,0,0,1,0,1,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,2,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,12,32,0,5,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,261,53,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,56,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,5,0,35,21,0,40,0,4,0,0,2,7,0,662,0,7,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5704,35,42,0,0,22,0,0,0,1,0,0,1,0,0,0,0,1,250,0,0,0,0,0,1,0,0,0,0,0,2,0,0,99365,35,759,0,2,0,0,0,0,0,32,0,0,0,0,0,8,17,16050,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,721,0,0,0,0,3708,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,14794,0,44,0,0,0,0,3,280,795,14776,0,0,0,0,1,0,3,0,0,0,0,0,0,839,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,1265,5,0,0,1276,0,411,0,0,0,121,14,0,0,0,0,0,0,0,0,0,743,1,0,0,0,9,0,0,0,0,1,1133,19,0,0,1,0,0,0,0,0,3458,1,0,437,16,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,1,0,0,0,0,1,36,211,0,3,12,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1397,89,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,123,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,359,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,444,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,58,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,404,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,28,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1142,3,0,0,1135,0,302,0,0,0,14,8,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1154,9,0,0,0,0,0,0,0,0,91,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,30,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1474,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,87,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,617,0,0,0,0,0,11,43,233,0,0,0,0,0,0,0,0,0,0,0,0,0,1658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,17,2,0,0,57,0,84,0,0,0,48,6,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,45,0,0,0,0,0,0,0,0,327,0,0,388,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,116,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1412,5,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,120,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,128,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,53,3,0,0,62,0,65,0,0,0,31,5,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,24,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,8,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,128,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,119,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,34,0,0,0,2,3,26,6,39,0,0,0,0,1,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,72,0,90,0,0,0,41,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,35,3 +10,0,0,5,0,41,21,0,44,0,4,0,0,2,14,0,746,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,41,160,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,387,0,0,0,0,0,1,0,0,0,0,0,2,0,0,139874,41,868,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,23856,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,882,0,0,0,0,5866,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19724,0,53,0,0,0,8,17,290,1631,19714,0,0,0,0,1,0,3,0,0,0,0,0,0,931,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,305,5,0,0,300,0,485,0,0,0,141,21,0,0,0,0,0,0,0,0,0,837,1,0,0,0,9,0,0,0,0,2,150,19,0,0,1,0,0,0,0,0,6603,1,0,1142,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,202,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3193,168,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,65,0,0,0,0,0,1,0,0,0,0,0,2,0,0,464,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,60,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,532,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,25,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1158,3,0,0,1153,0,301,0,0,0,14,6,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1172,9,0,0,0,0,0,0,0,0,94,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,31,3 +0,0,0,2,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,1,0,0,63,10,20,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,6,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,20,0,0,0,0,3,24,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,39,2,0,0,73,0,74,0,0,0,43,2,0,0,0,0,0,0,0,0,0,23,1,0,0,0,2,0,0,0,0,0,92,36,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,74,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,6,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,219,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,135,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,31,0,0,0,2,4,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,53,3,0,0,63,0,93,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,606,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,11,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,54,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,81,0,0,0,0,0,1,0,0,0,0,0,2,0,0,538,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,67,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,605,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,28,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1161,3,0,0,1140,0,470,0,0,0,14,14,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1159,9,0,0,0,0,0,0,0,0,121,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,39,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1299,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,529,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,40,0,0,0,0,3,23,6,98,0,0,0,0,1,0,0,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,119,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,811,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,190,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,289,14,3 +16,0,0,6,0,40,17,0,45,6,5,0,0,2,12,0,819,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4625,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,394,0,0,0,0,0,1,0,0,0,0,0,10,0,0,121647,40,930,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,21314,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,924,0,7,0,0,3516,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,12,12,12,0,0,0,17339,0,54,0,0,0,6,19,285,1259,17329,0,0,0,0,1,0,3,0,0,0,0,0,0,390,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,296,6,0,0,285,0,400,0,0,0,120,14,0,0,0,0,0,0,0,0,0,906,1,0,0,0,9,0,0,0,0,1,147,17,0,0,1,0,0,0,0,0,4989,1,0,795,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,17,0,0,0,0,1,44,204,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2056,133,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,209,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,123,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,7,36,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,92,0,0,0,33,9,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,193,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,185,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,57,0,86,0,0,0,27,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,13,3 +6,0,0,6,0,38,7,0,32,4,5,0,0,2,9,0,469,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,6,898,38,36,0,0,39,0,3,0,1,0,0,3,0,0,0,0,4,172,1,0,0,0,0,1,0,0,0,0,0,9,0,0,30733,38,551,0,7,0,0,0,0,0,22,0,0,0,0,0,8,20,6098,0,0,6,0,0,0,0,0,94,5,6,0,0,2,0,539,0,6,0,0,2992,0,0,0,0,24,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,2756,0,69,0,0,0,6,19,244,1133,2751,0,0,0,0,1,0,4,0,0,0,0,0,0,495,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,19,210,6,0,0,216,0,319,0,0,0,75,10,0,0,0,0,0,0,0,0,0,530,1,0,0,0,9,0,0,0,0,1,121,16,0,0,1,0,0,0,0,0,2967,1,0,888,5,0,1,1,1,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,5,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,16,0,0,0,0,1,44,124,0,17,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1749,188,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,76,2,0,0,91,0,243,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,25,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +16,0,0,6,0,38,15,0,44,6,5,0,0,2,12,0,744,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4923,38,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,384,0,0,0,0,0,1,0,0,0,0,0,10,0,0,123756,38,849,0,9,0,0,0,0,0,26,0,0,0,0,0,8,18,21616,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,846,0,7,0,0,4251,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,17794,0,52,0,0,0,8,20,270,1237,17785,0,0,0,0,1,0,3,0,0,0,0,0,0,350,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,312,6,0,0,267,0,413,0,0,0,110,20,0,0,0,0,0,0,0,0,0,828,1,0,0,0,9,0,0,0,0,1,138,16,0,0,1,0,0,0,0,0,4789,1,0,782,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,13,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,19,0,0,0,0,1,42,233,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1979,145,3 +1,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,174,10,37,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,74,2,0,0,109,0,253,0,0,0,41,6,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,37,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,132,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,62,25,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,209,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,123,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,92,0,0,0,33,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +16,0,0,6,0,39,17,0,42,6,5,0,0,2,12,0,692,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4625,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,432,0,0,0,0,0,1,0,0,0,0,0,10,0,0,135799,39,801,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,23672,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,797,0,7,0,0,3802,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,19755,0,52,0,0,0,8,20,281,1253,19745,0,0,0,0,1,0,3,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,300,6,0,0,279,0,397,0,0,0,117,11,0,0,0,0,0,0,0,0,0,776,1,0,0,0,9,0,0,0,0,1,143,17,0,0,1,0,0,0,0,0,4703,1,0,788,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,218,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2059,193,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,0,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,550,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,58,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,552,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,56,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,173,3,0,0,83,0,355,0,0,0,13,15,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,93,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,1,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,60,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,197,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,164,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,30,0,0,0,2,4,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,63,3,0,0,65,0,85,0,0,0,35,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,22,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,32,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,38,3 +0,0,0,2,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,1,0,0,59,10,20,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,6,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,20,0,0,0,0,3,24,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,38,2,0,0,73,0,74,0,0,0,43,2,0,0,0,0,0,0,0,0,0,23,1,0,0,0,2,0,0,0,0,0,92,36,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,74,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,6,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1019,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,476,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,19,0,0,0,0,3,22,4,52,0,0,0,0,1,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,58,2,0,0,76,0,103,0,0,0,22,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,215,0,0,768,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,110,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,7,3 +2,0,0,3,0,9,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,86,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,82,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,23,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,54,3,0,0,58,0,60,0,0,0,28,2,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,7,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,104,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,85,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +10,0,0,5,0,37,21,0,47,0,4,0,0,2,13,0,852,0,6,1,0,0,0,8,0,11,6,0,6,0,3,0,0,0,4,5870,37,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,366,0,0,0,0,0,1,0,0,0,0,0,2,0,0,154283,37,966,0,7,0,0,0,0,0,32,0,0,0,0,0,8,18,26254,0,0,4,0,0,0,0,0,94,5,2,0,0,2,0,959,0,0,0,0,5692,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,21951,0,48,0,0,0,6,14,277,1611,21938,0,0,0,0,1,0,3,0,0,0,0,0,0,851,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,298,5,0,0,286,0,401,0,0,0,131,16,0,0,0,0,0,0,0,0,0,945,1,0,0,0,9,0,0,0,0,2,143,19,0,0,1,0,0,0,0,0,6217,1,0,1096,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,364,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,11,0,0,0,0,1,41,204,0,14,12,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3000,139,3 +4,0,0,5,0,38,21,0,43,0,4,0,0,2,7,0,701,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,313,0,0,0,0,0,1,0,0,0,0,0,2,0,0,114278,38,805,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,19405,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,769,0,0,0,0,5644,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,15418,0,73,0,0,0,6,9,284,1622,15401,0,0,0,0,1,0,3,0,0,0,0,0,0,815,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,631,5,0,0,289,0,939,0,0,0,133,77,0,0,0,0,0,0,0,0,0,784,1,0,0,0,9,0,0,0,0,4,145,19,0,0,1,0,0,0,0,0,8749,1,0,1122,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,215,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3328,140,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1222,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,549,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,88,0,154,0,0,0,25,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,149,3 +4,0,0,4,0,12,20,0,104,0,27,0,0,0,3,0,17,0,7,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,1,0,12,6,0,0,192,0,0,0,1,0,0,2,0,0,0,0,0,69,0,0,0,0,0,1,0,0,0,0,0,22,0,0,1405,12,180,0,3,0,0,0,0,0,9,0,0,0,0,0,1,4,714,0,0,1,0,0,2,96,0,745,30,3,0,0,2,0,485,0,1,0,0,309,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,395,0,33,0,0,0,0,3,33,649,406,0,0,0,0,1,0,0,0,0,0,0,0,0,271,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,4,78,4,0,0,114,0,184,0,0,0,53,7,0,0,0,0,0,0,0,0,0,178,1,0,0,0,2,0,0,0,0,1,94,258,0,0,60,0,0,0,0,0,626,0,0,77,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,13,115,0,3,0,0,0,0,0,0,259,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,11,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,782,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,372,0,0,0,0,0,1,0,0,0,0,0,2,0,0,145051,41,904,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,24592,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,917,0,0,0,0,4798,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,20512,0,57,0,0,0,8,19,290,1615,20502,0,0,0,0,1,0,3,0,0,0,0,0,0,910,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,303,5,0,0,298,0,405,0,0,0,138,23,0,0,0,0,0,0,0,0,0,874,1,0,0,0,9,0,0,0,0,2,148,19,0,0,1,0,0,0,0,0,6822,1,0,1114,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,199,0,19,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3154,106,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,53,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +10,0,0,5,0,38,21,0,48,0,4,0,0,2,13,0,911,0,6,1,0,0,0,8,0,11,6,0,6,0,3,0,0,0,4,5868,38,148,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,381,0,0,0,0,0,1,0,0,0,0,0,2,0,0,170450,38,1030,0,7,0,0,0,0,0,32,0,0,0,0,0,8,18,28917,0,0,4,0,0,0,0,0,94,5,2,0,0,2,0,1022,0,0,0,0,4855,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,24715,0,46,0,0,0,6,14,284,1604,24701,0,0,0,0,1,0,3,0,0,0,0,0,0,824,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,283,5,0,0,290,0,393,0,0,0,134,20,0,0,0,0,0,0,0,0,0,1005,1,0,0,0,9,0,0,0,0,2,146,19,0,0,1,0,0,0,0,0,6281,1,0,1082,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,364,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,11,0,0,0,0,1,42,206,0,14,12,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2925,134,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,5,0,0,232,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,120,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,54,3,0,0,73,0,68,0,0,0,43,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,36,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,9,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,181,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,128,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,57,0,87,0,0,0,27,13,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,11,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +1,0,0,6,0,33,7,0,34,0,5,0,0,7,6,0,493,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,33,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,178,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18999,33,560,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4315,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,552,0,0,1,0,2757,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,703,0,46,0,0,0,1,4,249,1158,690,0,0,0,0,1,0,3,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,185,6,0,0,199,0,270,0,0,0,58,4,0,0,0,0,0,0,0,0,0,558,1,0,0,0,10,0,0,0,0,0,116,15,0,0,6,0,0,0,0,0,3219,1,0,825,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,34,104,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1892,74,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,785,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,4601,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,413,0,0,0,0,0,1,0,0,0,0,0,2,0,0,125702,41,907,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,21398,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,920,0,0,0,0,5282,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,17326,0,53,0,0,0,8,19,290,1622,17316,0,0,0,0,1,0,3,0,0,0,0,0,0,920,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,315,5,0,0,300,0,410,0,0,0,140,26,0,0,0,0,0,0,0,0,0,877,1,0,0,0,9,0,0,0,0,2,150,19,0,0,1,0,0,0,0,0,11081,1,0,1124,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,262,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3114,108,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,252,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,104,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,24,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +1,0,0,6,0,35,7,0,35,0,5,0,0,7,6,0,555,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,178,0,0,0,0,0,1,0,0,0,0,0,5,0,0,22101,35,623,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4867,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,614,0,0,1,0,2777,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,1355,0,49,0,0,0,1,4,260,1160,1341,0,0,0,0,1,0,3,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,191,6,0,0,204,0,270,0,0,0,58,5,0,0,0,0,0,0,0,0,0,621,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3245,1,0,825,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,110,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1892,74,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,122,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,154,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,59,3,0,0,72,0,90,0,0,0,41,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,35,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,77,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,65,0,58,0,0,0,35,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1201,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,526,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,90,0,156,0,0,0,27,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,30,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,80,2,0,0,94,0,267,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,113,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,28,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,77,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,65,0,59,0,0,0,35,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +2,0,0,2,0,13,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,13,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2020,13,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,841,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,244,0,30,0,0,0,0,3,33,595,259,0,0,0,0,1,0,0,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,72,2,0,0,104,0,127,0,0,0,42,11,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,93,31,0,0,0,0,0,0,0,0,406,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,15,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,443,7,3 +1,0,0,6,0,37,7,0,34,0,5,0,0,7,6,0,548,0,6,1,0,0,0,9,0,12,0,0,6,0,0,0,0,0,1,898,37,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,178,0,0,0,0,0,1,0,0,0,0,0,5,0,0,19212,37,615,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4429,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,607,0,0,1,0,2632,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,803,0,48,0,0,0,1,4,271,1158,788,0,0,0,0,1,0,3,0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,198,6,0,0,210,0,273,0,0,0,61,3,0,0,0,0,0,0,0,0,0,613,1,0,0,0,10,0,0,0,0,0,120,15,0,0,6,0,0,0,0,0,3298,1,0,856,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,360,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,5,0,0,0,0,1,38,113,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1920,78,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1427,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,62,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,617,0,0,0,0,0,11,43,229,0,0,0,0,0,0,0,0,0,0,0,0,0,1634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,18,2,0,0,57,0,84,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,45,0,0,0,0,0,0,0,0,318,0,0,376,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,116,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1414,5,3 +5,0,0,4,0,37,13,0,36,0,3,0,0,2,3,0,718,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2843,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,399,0,0,0,0,0,1,0,0,0,0,0,4,0,0,76196,37,807,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,13674,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,755,0,1,0,0,3020,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,9957,0,45,0,0,0,2,7,266,1216,9933,0,0,0,0,1,0,3,0,0,0,0,0,0,843,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,247,4,0,0,277,0,356,0,0,0,126,9,0,0,0,0,0,0,0,0,0,781,1,0,0,0,10,0,0,0,0,1,130,36,0,0,0,0,0,0,0,0,4261,1,0,1722,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,142,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1908,49,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +16,0,0,6,0,40,17,0,42,6,5,0,0,2,12,0,709,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,343,0,0,0,0,0,1,0,0,0,0,0,10,0,0,126900,40,815,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,22154,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,812,0,7,0,0,3520,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,18287,0,51,0,0,0,6,19,288,1253,18276,0,0,0,0,1,0,3,0,0,0,0,0,0,391,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,293,6,0,0,277,0,417,0,0,0,113,15,0,0,0,0,0,0,0,0,0,793,1,0,0,0,9,0,0,0,0,1,140,17,0,0,1,0,0,0,0,0,4702,1,0,799,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,17,0,0,0,0,1,44,212,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2003,131,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,5,0,0,74,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,38,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,6,3 +0,0,0,3,0,11,2,0,9,0,3,0,0,0,3,0,20,0,6,1,0,0,0,1,0,0,3,0,1,0,1,1,0,0,3,0,11,6,0,0,8,0,2,0,1,0,0,3,0,0,0,0,1,43,0,0,0,0,0,1,0,0,0,0,0,3,0,0,870,11,52,0,3,0,0,0,0,0,12,0,0,0,0,0,1,6,200,0,0,3,0,0,0,0,0,14,0,6,0,0,2,0,28,0,1,0,0,169,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,94,0,29,0,0,0,2,8,26,13,93,0,0,0,0,1,0,0,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,81,3,0,0,101,0,159,0,0,0,48,4,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,2,94,28,0,0,0,0,0,0,0,0,57,0,0,414,0,0,1,0,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,182,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,4,0,0,0,0,1,14,136,0,6,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,85,11,3 +4,0,0,3,0,14,2,0,18,5,3,0,0,0,9,0,16,0,6,1,0,0,0,2,0,0,0,0,1,0,2,0,2,0,5,0,14,6,0,0,25,0,3,0,1,0,0,3,0,0,0,0,1,72,0,0,0,0,0,1,0,0,0,0,0,9,0,0,4175,14,72,0,3,0,0,0,0,0,16,0,0,0,0,0,2,9,546,0,0,5,0,0,0,0,0,15,0,4,0,0,2,0,32,0,7,0,0,1593,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,105,0,61,0,0,0,2,4,32,13,115,0,0,0,0,1,0,0,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,10,106,3,0,0,135,0,171,0,0,0,72,7,0,0,0,0,0,0,0,0,0,54,1,0,0,0,3,0,0,0,0,1,96,44,0,0,0,0,0,0,0,0,806,0,0,788,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,2,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,19,163,0,3,0,0,1,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,323,73,3 +3,0,0,2,0,11,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,11,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1232,11,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,540,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,92,0,27,0,0,0,6,15,28,21,107,0,0,0,0,1,0,0,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,74,2,0,0,82,0,163,0,0,0,25,3,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,91,15,0,0,0,0,0,0,0,0,258,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,6,0,0,0,0,1,13,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,101,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,0,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,261,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,1,9,0,3,0,3,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1214,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,523,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,28,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,79,0,161,0,0,0,25,2,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,257,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,101,3 +4,0,0,5,0,37,21,0,42,0,4,0,0,2,7,0,649,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,37,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,261,0,0,0,0,0,1,0,0,0,0,0,2,0,0,35632,37,752,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,6496,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,717,0,0,0,0,6676,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,2121,0,70,0,0,0,6,9,276,1615,2105,0,0,0,0,1,0,3,0,0,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,682,5,0,0,283,0,935,0,0,0,130,101,0,0,0,0,0,0,0,0,0,731,1,0,0,0,9,0,0,0,0,4,141,19,0,0,1,0,0,0,0,0,9719,1,0,1133,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,12,0,0,0,6,1,41,183,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3634,152,3 +0,0,0,2,0,17,1,0,43,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1194,17,47,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,102,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,618,0,0,0,0,0,11,43,209,0,0,0,0,0,0,0,0,0,0,0,0,0,1568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,17,2,0,0,54,0,84,0,0,0,45,2,0,0,0,0,0,0,0,0,0,51,0,0,0,0,4,0,0,0,0,0,3,42,0,0,0,0,0,0,0,0,300,0,0,292,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,115,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1387,5,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,10,2,0,3,0,3,0,0,0,3,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,137,10,21,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,1,0,0,0,0,0,6,0,0,0,0,2,0,8,0,1,0,0,92,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,24,0,0,0,0,3,27,5,26,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,50,3,0,0,75,0,66,0,0,0,42,4,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,0,92,38,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,73,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,7,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,55,0,0,0,28,5,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,1,11,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2148,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,865,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,419,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,250,0,30,0,0,0,8,19,29,614,259,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,176,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,451,0,0,774,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,438,8,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,54,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2362,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,150,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2195,10,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,718,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,2362,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,237,0,93,0,0,0,0,3,27,9,234,0,0,0,0,1,0,0,0,0,0,0,0,0,6867,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,111,2,0,0,130,0,247,0,0,0,63,12,0,0,0,0,0,49,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,288,0,0,965,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,304,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,468,47,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,91,10,24,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,14,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,42,3,0,0,58,0,83,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,21,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,14,3 +5,0,0,4,0,38,13,0,34,0,3,0,0,2,3,0,667,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2563,38,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,265,0,0,0,0,0,1,0,0,0,0,0,4,0,0,67083,38,754,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,12279,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,704,0,1,0,0,3059,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,8422,0,45,0,0,0,2,7,270,1184,8398,0,0,0,0,1,0,3,0,0,0,0,0,0,656,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,247,4,0,0,281,0,346,0,0,0,127,8,0,0,0,0,0,0,0,0,0,728,1,0,0,0,10,0,0,0,0,1,132,36,0,0,0,0,0,0,0,0,4245,1,0,1410,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,2,0,0,0,0,1,42,134,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1919,39,3 +1,0,0,6,0,34,7,0,33,0,5,0,0,7,6,0,472,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,181,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18457,34,538,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4275,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,531,0,0,1,0,2406,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,12,12,12,0,0,0,752,0,46,0,0,0,1,4,256,1157,738,0,0,0,0,1,0,3,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,185,6,0,0,201,0,271,0,0,0,58,8,0,0,0,0,0,0,0,0,0,536,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3070,1,0,813,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,105,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1840,71,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,783,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,394,0,0,0,0,0,1,0,0,0,0,0,2,0,0,132343,41,904,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,22567,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,917,0,0,0,0,5521,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18387,0,53,0,0,0,8,21,290,1634,18377,0,0,0,0,1,0,3,0,0,0,0,0,0,942,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,296,5,0,0,296,0,411,0,0,0,136,27,0,0,0,0,0,0,0,0,0,875,1,0,0,0,9,0,0,0,0,2,146,19,0,0,1,0,0,0,0,0,6733,1,0,1149,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,19,0,0,0,0,1,47,206,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3197,128,3 +0,0,0,3,0,12,2,0,16,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,6,0,0,12,0,0,0,1,0,0,3,0,0,0,0,0,90,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1606,12,56,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,331,0,0,4,0,0,0,0,0,11,0,4,0,0,2,0,17,0,1,0,0,367,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,247,0,59,0,0,0,0,3,26,211,264,0,0,0,0,1,0,0,0,0,0,0,0,0,529,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,93,3,0,0,106,0,181,0,0,0,47,3,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,94,22,0,0,0,0,0,0,0,0,132,0,0,333,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,169,0,1,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,283,18,3 +4,0,0,5,0,38,21,0,42,0,4,0,0,2,7,0,666,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,273,0,0,0,0,0,1,0,0,0,0,0,2,0,0,114402,38,762,0,3,0,0,0,0,0,32,0,0,0,0,0,8,18,19544,0,0,4,0,0,0,0,0,89,5,2,0,0,2,0,727,0,0,0,0,5334,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,15492,0,71,0,0,0,0,3,284,1514,15475,0,0,0,0,1,0,3,0,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,730,5,0,0,286,0,937,0,0,0,130,90,0,0,0,0,0,0,0,0,0,748,1,0,0,0,9,0,0,0,0,1,142,19,0,0,1,0,0,0,0,0,8917,1,0,987,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,42,239,0,4,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3294,151,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,182,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,101,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,49,3,0,0,57,0,72,0,0,0,27,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,10,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1380,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,90,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,616,0,0,0,0,0,11,43,225,0,0,0,0,0,0,0,0,0,0,0,0,0,1601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,23,2,0,0,57,0,81,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,45,0,0,0,0,0,0,0,0,316,0,0,356,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,115,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,4,3 +16,0,0,6,0,39,17,0,46,6,5,0,0,2,12,0,835,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,305,0,0,0,0,0,1,0,0,0,0,0,10,0,0,128984,39,945,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,22547,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,938,0,7,0,0,3550,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,18675,0,52,0,0,0,6,19,281,1259,18665,0,0,0,0,1,0,3,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,285,6,0,0,279,0,383,0,0,0,117,14,0,0,0,0,0,0,0,0,0,923,1,0,0,0,9,0,0,0,0,1,143,17,0,0,1,0,0,0,0,0,4922,1,0,799,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,188,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2054,135,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,262,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,107,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,27,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1061,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,477,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,19,0,0,0,0,3,22,4,51,0,0,0,0,1,0,0,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,73,2,0,0,76,0,109,0,0,0,23,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,212,0,0,760,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,111,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,231,7,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,122,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,120,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,55,3,0,0,71,0,90,0,0,0,41,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,35,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,30,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,270,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,28,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,1,0,0,893,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,476,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,19,0,0,0,0,3,21,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,55,2,0,0,73,0,90,0,0,0,21,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,14,0,0,0,0,0,0,0,0,204,0,0,731,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,63,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,2,3 +2,0,0,2,0,20,3,0,29,0,2,0,0,0,2,0,75,0,6,1,0,0,0,1,0,0,35,1,0,0,13,0,0,0,3,0,20,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,12,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2279,20,151,0,13,0,0,0,0,0,7,0,0,0,0,0,1,6,873,0,0,3,0,0,0,0,0,56,0,2,0,0,2,0,233,0,0,0,0,603,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,257,0,44,0,0,0,24,52,37,644,271,0,0,0,0,1,0,0,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,114,2,0,0,135,0,214,0,0,0,47,9,0,0,0,0,0,0,0,0,0,117,1,0,0,0,2,0,0,0,0,13,102,31,0,0,0,0,0,0,0,0,529,0,0,778,0,0,1,0,1,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,373,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,12,0,0,0,0,1,23,215,0,49,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,458,15,3 +1,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,173,10,37,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,74,2,0,0,109,0,253,0,0,0,41,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,37,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,147,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,62,25,3 +16,0,0,6,0,39,21,0,44,6,5,0,0,2,12,0,727,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,5868,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,366,0,0,0,0,0,1,0,0,0,0,0,10,0,0,142966,39,846,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,24359,0,0,4,0,0,0,0,0,95,5,2,0,0,2,0,838,0,7,0,0,5313,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,20072,0,51,0,0,0,8,21,285,1633,20062,0,0,0,0,1,0,3,0,0,0,0,0,0,949,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,289,6,0,0,294,0,409,0,0,0,134,17,0,0,0,0,0,0,0,0,0,817,1,0,0,0,9,0,0,0,0,2,148,19,0,0,1,0,0,0,0,0,5089,1,0,1146,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,235,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2317,140,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,7,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +5,0,0,4,0,37,13,0,35,0,3,0,0,2,3,0,650,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2849,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,248,0,0,0,0,0,1,0,0,0,0,0,4,0,0,69588,37,738,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,12495,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,688,0,1,0,0,3219,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,8877,0,44,0,0,0,2,7,266,1206,8853,0,0,0,0,1,0,3,0,0,0,0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,225,4,0,0,278,0,382,0,0,0,125,9,0,0,0,0,0,0,0,0,0,712,1,0,0,0,10,0,0,0,0,1,130,36,0,0,0,0,0,0,0,0,4070,1,0,1658,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,219,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1906,50,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1326,10,58,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,514,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,40,0,0,0,0,3,27,6,102,0,0,0,0,1,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,82,2,0,0,128,0,120,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,231,0,0,827,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,190,0,0,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,298,13,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,28,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,79,2,0,0,94,0,260,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,27,3 +0,0,0,3,0,25,5,0,11,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,2,0,1,0,25,6,0,0,20,0,1,0,1,0,0,1,0,0,0,0,1,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1740,25,44,0,1,0,0,0,0,0,12,0,0,0,0,0,7,15,632,0,0,1,0,0,0,0,0,74,5,3,0,0,2,0,20,0,0,0,0,900,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,101,0,38,0,0,0,0,3,177,8,102,0,0,0,0,1,0,3,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,117,3,0,0,136,0,312,0,0,0,44,5,0,0,0,0,0,0,0,0,0,45,1,0,0,0,8,0,0,0,0,0,107,30,0,0,0,0,0,0,0,0,283,0,0,804,3,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,3,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,89,0,2,9,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,356,133,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,542,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,61,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,506,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,56,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,172,3,0,0,83,0,348,0,0,0,13,8,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,94,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,59,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,560,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,59,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,518,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,56,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,174,3,0,0,83,0,357,0,0,0,13,9,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,91,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,60,3 +16,0,0,6,0,40,17,0,46,6,5,0,0,2,12,0,857,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,40,152,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,376,0,0,0,0,0,1,0,0,0,0,0,10,0,0,140068,40,967,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,24361,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,960,0,7,0,0,3923,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,20523,0,51,0,0,0,6,19,288,1257,20512,0,0,0,0,1,0,3,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,284,6,0,0,279,0,441,0,0,0,116,17,0,0,0,0,0,0,0,0,0,945,1,0,0,0,9,0,0,0,0,1,142,17,0,0,1,0,0,0,0,0,5001,1,0,783,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,17,0,0,0,0,1,44,204,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2044,133,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,129,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,90,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,76,2,0,0,91,0,265,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,28,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,212,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,123,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,54,3,0,0,63,0,92,0,0,0,33,10,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,261,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,28,3 +16,0,0,6,0,40,17,0,44,6,5,0,0,2,12,0,783,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4946,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,344,0,0,0,0,0,1,0,0,0,0,0,10,0,0,134720,40,895,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,23398,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,890,0,7,0,0,3970,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19561,0,51,0,0,0,8,20,289,1256,19550,0,0,0,0,1,0,3,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,289,6,0,0,280,0,407,0,0,0,117,15,0,0,0,0,0,0,0,0,0,869,1,0,0,0,9,0,0,0,0,1,143,17,0,0,1,0,0,0,0,0,4910,1,0,781,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,20,0,0,0,2,1,44,197,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2055,135,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,55,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3511,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,140,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2074,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,696,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,9,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3511,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,220,0,91,0,0,0,0,3,27,9,219,0,0,0,0,1,0,0,0,0,0,0,0,0,9982,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,123,2,0,0,128,0,252,0,0,0,61,9,0,0,0,0,0,44,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,276,0,0,932,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,442,50,3 +3549,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,119,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1767,11,84,0,1,0,0,0,0,0,30,0,0,0,0,0,1,12,561,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,172,0,65,0,0,0,0,3,31,9,170,0,0,0,0,1,0,0,0,0,0,0,0,0,9925,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,99,2,0,0,134,0,242,0,0,0,64,8,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,93,43,0,0,0,0,0,0,0,0,254,0,0,938,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,283,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,373,41,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,68,0,0,0,0,0,1,0,0,0,0,0,2,0,0,547,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,55,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,528,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,54,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,169,3,0,0,83,0,346,0,0,0,13,13,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,89,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,56,3 +3,0,0,3,0,13,9,0,48,0,14,0,0,0,2,0,17,0,7,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,2,0,13,6,0,0,75,0,1,0,1,0,0,1,0,0,0,0,0,102,0,0,0,0,0,1,0,0,0,0,0,8,0,0,4450,13,101,0,2,0,0,0,0,0,10,0,0,0,0,0,1,3,1402,0,0,2,0,0,1,40,0,321,30,3,0,0,2,0,196,0,0,0,0,673,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,769,0,60,0,0,0,0,3,29,458,778,0,0,0,0,1,0,0,0,0,0,0,0,0,731,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,112,3,0,0,100,0,212,0,0,0,39,4,0,0,0,0,0,0,0,0,0,97,1,0,0,0,2,0,0,0,0,1,95,105,0,0,66,0,0,0,0,0,1113,0,0,504,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,1,0,0,0,0,1,15,84,0,2,0,0,0,0,0,0,117,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,736,374,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,2,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2165,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,878,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,250,0,30,0,0,0,8,19,29,611,259,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,178,0,0,0,45,3,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,451,0,0,778,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,439,8,3 +2,0,0,5,0,38,6,0,43,2,6,0,0,6,5,0,813,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,3,0,3,908,38,6,0,0,41,0,1,0,1,0,0,2,0,0,0,0,1,170,0,0,0,0,0,1,0,0,0,0,0,2,0,0,26746,38,885,0,4,0,0,0,0,0,15,0,0,0,0,0,8,20,5790,0,0,3,0,0,0,0,0,194,20,4,0,0,2,0,853,0,0,2,0,1733,0,0,0,0,0,2,4,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,2007,0,45,0,0,0,0,3,274,371,1997,0,0,0,0,1,0,6,0,0,0,0,0,0,2280,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,22,208,5,0,0,219,0,393,0,0,0,71,7,0,0,0,0,0,0,0,0,0,885,1,0,0,0,9,0,0,0,0,0,119,27,0,0,11,0,0,0,0,0,4052,1,0,3212,5,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,3,5,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,3,0,0,0,0,1,41,135,0,5,12,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2243,138,3 +0,0,0,2,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,1,0,0,61,10,20,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,6,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,20,0,0,0,0,3,24,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,38,2,0,0,73,0,75,0,0,0,43,1,0,0,0,0,0,0,0,0,0,23,1,0,0,0,2,0,0,0,0,0,92,36,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,74,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,6,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,135,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,76,2,0,0,91,0,254,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,25,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,91,0,270,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,108,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,26,3 +4,0,0,5,0,34,21,0,45,0,4,0,0,2,7,0,784,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,34,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,258,0,0,0,0,0,1,0,0,0,0,0,2,0,0,122136,34,882,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20947,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,843,0,0,0,0,5045,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,16786,0,65,0,0,0,0,3,273,1595,16776,0,0,0,0,1,0,3,0,0,0,0,0,0,847,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,383,5,0,0,272,0,883,0,0,0,119,10,0,0,0,0,0,0,0,0,0,869,1,0,0,0,9,0,0,0,0,0,136,19,0,0,1,0,0,0,0,0,8593,1,0,1135,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,35,226,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3206,90,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,123,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,143,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,71,0,90,0,0,0,41,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,36,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1324,10,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,496,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,40,0,0,0,0,3,27,6,103,0,0,0,0,1,0,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,82,2,0,0,127,0,120,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,231,0,0,831,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,189,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,298,14,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,256,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,27,3 +1,0,0,5,0,37,18,0,45,0,4,0,0,2,3,1,941,0,6,1,0,0,0,9,0,11,0,0,5,0,1,0,0,0,2,5781,37,54,0,0,24,0,0,0,1,0,0,1,0,0,0,0,1,360,0,0,0,0,0,1,0,0,0,0,0,2,0,0,143043,37,1034,0,2,0,0,0,0,0,30,0,0,0,0,0,9,20,23319,0,0,2,0,0,0,0,0,95,5,2,0,0,2,0,890,0,0,0,0,3765,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,22000,0,76,0,0,0,0,3,313,765,21960,0,0,0,0,1,0,3,0,0,0,0,0,0,758,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,285,5,0,0,277,0,498,0,0,0,119,21,0,0,0,0,0,0,0,0,0,1020,1,0,0,0,10,0,0,0,0,1,139,18,0,0,1,0,0,0,0,0,2931,1,0,379,17,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,36,36,0,0,3,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,1,0,0,0,0,29,39,116,0,3,14,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,865,73,3 +7,0,0,5,0,34,21,0,43,0,4,0,0,2,9,0,760,0,6,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5868,34,44,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,390,0,0,0,0,0,1,0,0,0,0,0,2,0,0,143665,34,860,0,2,0,0,0,0,0,32,0,0,0,0,0,8,18,24549,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,836,0,0,0,0,5467,0,0,0,0,3,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,20252,0,42,0,0,0,0,3,275,1615,20238,0,0,0,0,1,0,3,0,0,0,0,0,0,843,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,330,5,0,0,279,0,430,0,0,0,124,27,0,0,0,0,0,0,0,0,0,845,1,0,0,0,9,0,0,0,0,1,142,19,0,0,1,0,0,0,0,0,7575,1,0,1119,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,1,0,0,0,0,1,35,204,0,3,12,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2803,57,3 +0,0,0,3,0,9,2,0,16,4,3,0,0,0,7,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,2,0,1,0,9,6,0,0,16,0,0,0,1,0,0,4,0,0,0,0,0,97,0,0,0,0,0,1,0,0,0,0,0,7,0,0,11552,9,62,0,1,0,0,0,0,0,15,0,0,0,1,0,1,6,2514,0,0,1,0,0,0,0,0,9,0,8,0,0,2,0,25,0,5,0,0,151,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1478,0,39,0,0,0,0,3,23,14,1495,0,0,0,0,1,0,0,0,0,0,0,0,0,2301,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,8,105,3,0,0,129,0,138,0,0,0,70,7,0,0,0,0,0,0,0,0,0,48,1,0,0,0,2,0,0,0,0,0,91,51,0,0,0,0,0,0,0,0,651,0,0,3333,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,219,0,1,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1146,22,3 +12,0,0,5,0,38,36,0,47,0,4,0,0,2,13,0,987,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,2,10035,38,56,0,0,22,0,1,0,1,0,0,2,0,0,0,0,1,611,0,0,0,0,0,1,0,0,0,0,0,2,0,0,194332,38,1150,0,4,0,0,0,0,0,56,0,0,0,0,0,8,19,40342,0,0,2,0,0,0,0,0,91,5,4,1,0,2,0,1106,0,0,0,0,6561,0,0,0,0,5,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,38011,0,54,0,0,0,0,3,315,1348,37995,0,0,0,0,1,0,4,0,0,0,0,0,0,1560,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,369,5,0,0,357,0,466,0,0,0,192,38,0,0,0,0,0,0,0,0,0,1095,1,0,0,0,9,0,0,0,0,1,168,29,0,0,1,0,0,0,0,0,9185,1,0,812,26,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,26,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,3,0,0,0,0,1,40,261,0,5,12,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2794,204,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,257,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,27,3 +3,0,0,2,0,11,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,11,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1248,11,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,556,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,92,0,27,0,0,0,6,15,28,21,107,0,0,0,0,1,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,82,0,162,0,0,0,25,5,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,91,15,0,0,0,0,0,0,0,0,258,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,6,0,0,0,0,1,13,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,270,101,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,1,0,0,862,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,446,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,19,0,0,0,0,3,21,10,41,0,0,0,0,1,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,53,2,0,0,71,0,93,0,0,0,19,1,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,63,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,2,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1258,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,545,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,27,0,0,0,0,3,31,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,94,2,0,0,94,0,184,0,0,0,32,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,17,35,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,262,151,3 +0,0,0,3,0,13,2,0,15,0,3,0,0,0,3,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,13,6,0,0,14,0,3,0,1,0,0,3,0,0,0,0,0,114,0,0,0,0,0,1,0,0,0,0,0,3,0,0,3556,13,59,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,1008,0,0,4,0,0,0,0,0,12,0,5,0,0,2,0,17,0,1,0,0,584,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,334,0,43,0,0,0,0,3,28,209069,344,0,0,0,0,1,0,0,0,0,0,0,0,0,877,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,119,3,0,0,123,0,115,0,0,0,60,5,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,95,35,0,0,0,0,0,0,0,0,466,0,0,1386,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,17,213,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,635,13,3 +5,0,0,4,0,38,13,0,35,0,3,0,0,2,3,0,668,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2507,38,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,251,0,0,0,0,0,1,0,0,0,0,0,4,0,0,71685,38,756,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,13038,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,706,0,1,0,0,3119,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,9251,0,45,0,0,0,2,7,270,1185,9227,0,0,0,0,1,0,3,0,0,0,0,0,0,756,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,233,4,0,0,282,0,361,0,0,0,126,14,0,0,0,0,0,0,0,0,0,730,1,0,0,0,10,0,0,0,0,1,132,36,0,0,0,0,0,0,0,0,4210,1,0,1571,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,2,0,0,0,0,1,42,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1917,39,3 +16,0,0,6,0,38,17,0,44,6,5,0,0,2,12,0,706,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,38,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,368,0,0,0,0,0,1,0,0,0,0,0,10,0,0,135622,38,814,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,23742,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,810,0,7,0,0,3667,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19830,0,53,0,0,0,6,19,274,1254,19821,0,0,0,0,1,0,3,0,0,0,0,0,0,364,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,279,6,0,0,276,0,388,0,0,0,119,17,0,0,0,0,0,0,0,0,0,792,1,0,0,0,9,0,0,0,0,1,140,17,0,0,1,0,0,0,0,0,4695,1,0,779,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,17,0,0,0,0,1,42,203,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2093,132,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1224,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,537,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,69,2,0,0,79,0,161,0,0,0,25,2,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,264,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,102,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1019,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,461,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,23,0,0,0,0,3,24,6,51,0,0,0,0,1,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,71,3,0,0,80,0,153,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,251,0,0,764,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,108,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,233,65,3 +12,0,0,5,0,38,36,0,49,0,4,0,0,2,13,0,1054,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,2,11282,38,56,0,0,22,0,1,0,1,0,0,2,0,0,0,0,1,369,0,0,0,0,0,1,0,0,0,0,0,2,0,0,167217,38,1219,0,4,0,0,0,0,0,56,0,0,0,0,0,8,19,32116,0,0,2,0,0,0,0,0,91,5,4,1,0,2,0,1173,0,0,0,0,6414,0,0,0,0,5,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,29983,0,51,0,0,0,0,3,314,1352,29967,0,0,0,0,1,0,4,0,0,0,0,0,0,1554,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,338,5,0,0,337,0,447,0,0,0,171,51,0,0,0,0,0,0,0,0,0,1164,1,0,0,0,9,0,0,0,0,1,150,29,0,0,1,0,0,0,0,0,8849,1,0,814,26,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,26,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,3,0,0,0,0,1,40,239,0,5,12,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2719,198,3 +2,0,0,6,0,34,7,0,47,1,10,0,0,6,4,0,574,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,5,0,1,762,34,32,0,0,55,0,1,0,1,0,0,2,0,0,0,0,1,174,0,0,0,0,0,1,0,0,0,0,0,4,0,0,18117,34,658,0,3,0,0,0,0,0,19,0,0,0,0,1,8,24,4274,0,0,1,0,0,1,10,0,278,40,5,0,0,2,0,666,0,0,1,0,2884,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,686,0,59,0,0,0,1,4,255,1200,671,0,0,0,0,1,0,3,0,0,0,0,0,0,338,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,91,19,170,6,0,0,190,0,268,0,0,0,47,3,0,0,0,0,0,0,0,0,0,654,1,0,0,0,9,0,0,0,0,0,115,28,0,0,51,0,0,0,0,0,3895,1,0,819,6,0,1,1,1,0,0,0,8,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,5,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,35,54,0,4,12,0,0,0,0,0,81,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1898,46,3 +4,0,0,6,0,40,21,0,45,6,5,0,0,2,10,0,789,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,5,5880,40,44,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,395,0,0,0,0,0,1,0,0,0,0,0,10,0,0,141803,40,906,0,7,0,0,0,0,0,32,0,0,0,0,0,8,18,24202,0,0,5,0,0,0,0,0,90,5,2,0,0,2,0,886,0,7,0,0,5103,0,0,0,0,8,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,19957,0,56,0,0,0,6,19,283,1608,19948,0,0,0,0,1,0,3,0,0,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,37,20,289,6,0,0,292,0,457,0,0,0,132,18,0,0,0,0,0,0,0,0,0,878,1,0,0,0,9,0,0,0,0,1,144,19,0,0,1,0,0,0,0,0,4243,1,0,1114,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,363,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,16,0,0,0,0,1,45,209,0,17,12,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2230,110,3 +2,0,0,4,0,11,4,0,37,0,7,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,0,99,0,0,0,0,0,1,0,0,0,0,0,5,0,0,1008,11,63,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,496,0,0,3,0,0,1,13,0,117,15,1,0,0,2,0,78,0,0,0,0,91,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,30,0,0,0,0,3,28,111,60,0,0,0,0,1,0,0,0,0,3,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,76,4,0,0,84,0,205,0,0,0,23,4,0,0,0,0,0,0,0,0,0,72,1,0,0,0,2,0,0,0,0,0,93,32,0,0,29,0,0,0,0,0,785,0,0,731,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,113,0,1,0,0,1,0,0,0,48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,240,4,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,15,2,0,15,0,3,0,0,0,3,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,15,6,0,0,16,0,3,0,1,0,0,3,0,0,0,0,0,132,0,0,0,0,0,1,0,0,0,0,0,3,0,0,3383,15,59,0,0,0,0,0,0,0,16,0,0,0,0,0,1,8,989,0,0,5,0,0,0,0,0,12,0,5,0,0,2,0,17,0,1,0,0,449,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,320,0,45,0,0,0,0,3,33,168190,330,0,0,0,0,1,0,0,0,0,0,0,0,0,824,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,122,3,0,0,128,0,126,0,0,0,62,7,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,97,34,0,0,0,0,0,0,0,0,454,0,0,1327,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,20,216,0,1,0,0,2,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,619,16,3 +4,0,0,5,0,35,21,0,43,0,4,0,0,2,7,0,735,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,248,0,0,0,0,0,1,0,0,0,0,0,2,0,0,119688,35,831,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20528,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,794,0,0,0,0,5400,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,16268,0,65,0,0,0,0,3,281,1597,16257,0,0,0,0,1,0,3,0,0,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,365,5,0,0,276,0,880,0,0,0,120,17,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8154,1,0,1146,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,236,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3097,90,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,194,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,151,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,58,3,0,0,57,0,86,0,0,0,27,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,13,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,187,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,158,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,31,0,0,0,2,4,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,55,3,0,0,57,0,72,0,0,0,27,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,605,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,11,3 +4,0,0,5,0,38,21,0,43,0,4,0,0,2,7,0,702,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,259,0,0,0,0,0,1,0,0,0,0,0,2,0,0,118891,38,806,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,20089,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,770,0,0,0,0,5949,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,16056,0,63,0,0,0,6,9,284,1613,16039,0,0,0,0,1,0,3,0,0,0,0,0,0,815,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,621,5,0,0,285,0,1010,0,0,0,129,86,0,0,0,0,0,0,0,0,0,785,1,0,0,0,9,0,0,0,0,4,141,19,0,0,1,0,0,0,0,0,8853,1,0,1121,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,219,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3346,126,3 +8,0,0,3,0,20,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,8,0,20,6,0,0,30,0,5,0,1,0,0,5,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,6,0,0,41455,20,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,7024,0,0,8,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,4285,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4266,0,76,0,0,0,0,3,39,7857,4280,0,0,0,0,1,0,0,0,0,0,0,0,0,8407,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,156,3,0,0,149,0,244,0,0,0,83,14,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,103,44,0,0,0,0,0,0,0,0,2067,0,0,9852,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,1,28,230,0,4,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2944,41,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,126,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,92,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +0,0,0,7,0,43,21,0,50,0,12,0,0,7,9,0,809,0,7,1,0,0,0,8,0,10,9,0,15,0,6,1,0,0,4,945,43,6,0,0,54,0,6,0,1,0,0,14,0,0,0,0,7,274,0,0,0,0,0,1,0,0,0,0,0,4,0,0,37358,43,1016,0,19,0,0,0,0,0,65,0,0,0,0,0,8,65,9188,0,0,4,0,0,0,0,0,276,25,23,0,0,2,0,936,0,1,30,0,4699,0,0,0,0,0,0,2,0,4,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1456,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,4195,0,114,0,0,0,16,23,344,1528,4160,0,0,0,0,1,0,4,0,0,0,0,0,0,5348,0,0,0,0,0,0,0,0,0,0,0,0,14,1,0,0,0,0,0,1,0,106,17,266,7,0,0,359,0,425,0,0,0,196,17,0,0,0,0,0,0,0,0,0,915,1,0,0,0,9,0,0,0,0,1,126,114,0,0,51,0,0,0,0,0,14201,1,0,3419,13,0,1,1,1,0,0,0,25,0,0,0,8,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,13,368,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,36,0,0,0,0,1,47,405,0,29,12,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,13256,99,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,10,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,23,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,29,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,76,2,0,0,92,0,262,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,27,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,107,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,27,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,63,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,39,3,0,0,58,0,59,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,3,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,68,0,0,0,0,0,1,0,0,0,0,0,2,0,0,542,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,55,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,510,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,55,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,170,3,0,0,83,0,346,0,0,0,13,9,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,89,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,57,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,53,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,782,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,154,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,361,0,0,0,0,0,1,0,0,0,0,0,2,0,0,133998,41,904,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,22814,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,917,0,0,0,0,5162,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18607,0,53,0,0,0,8,19,290,1635,18597,0,0,0,0,1,0,3,0,0,0,0,0,0,943,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,300,5,0,0,297,0,429,0,0,0,136,27,0,0,0,0,0,0,0,0,0,874,1,0,0,0,9,0,0,0,0,2,147,19,0,0,1,0,0,0,0,0,6918,1,0,1153,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,201,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3222,107,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1206,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,534,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,30,0,0,0,0,3,31,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,91,0,155,0,0,0,25,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,94,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,270,149,3 +10,0,0,5,0,42,21,0,49,0,4,0,0,2,14,0,948,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,42,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,390,0,0,0,0,0,1,0,0,0,0,0,2,0,0,153060,42,1074,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,25878,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,1083,0,0,0,0,5474,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,21827,0,54,0,0,0,8,19,294,1630,21817,0,0,0,0,1,0,3,0,0,0,0,0,0,903,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,315,5,0,0,303,0,417,0,0,0,140,16,0,0,0,0,0,0,0,0,0,1044,1,0,0,0,9,0,0,0,0,2,151,19,0,0,1,0,0,0,0,0,6982,1,0,1123,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,11,0,0,0,0,1,48,216,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3152,48,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,73,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,65,0,59,0,0,0,35,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1232,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,530,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,28,0,0,0,0,3,27,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,89,2,0,0,91,0,174,0,0,0,31,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,262,150,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,2,0,16,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,16,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2194,16,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,871,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,257,0,37,0,0,0,8,19,33,615,268,0,0,0,0,1,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,84,2,0,0,113,0,182,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,96,31,0,0,0,0,0,0,0,0,453,0,0,782,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,4,0,0,0,0,1,19,201,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,457,10,3 +0,0,0,3,0,14,2,0,15,0,3,0,0,0,3,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,14,6,0,0,16,0,3,0,1,0,0,3,0,0,0,0,0,119,0,0,0,0,0,1,0,0,0,0,0,3,0,0,3563,14,59,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,984,0,0,5,0,0,0,0,0,12,0,5,0,0,2,0,17,0,1,0,0,526,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,336,0,44,0,0,0,0,3,29,186151,346,0,0,0,0,1,0,0,0,0,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,120,3,0,0,124,0,123,0,0,0,61,5,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,96,33,0,0,0,0,0,0,0,0,474,0,0,1395,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,19,215,0,1,0,0,2,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,638,13,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,148,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2405,10,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,756,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,259,0,92,0,0,0,0,3,27,9,256,0,0,0,0,1,0,0,0,0,0,0,0,0,10018,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,112,2,0,0,132,0,257,0,0,0,65,8,0,0,0,0,0,43,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,294,0,0,1027,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,285,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,475,45,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,113,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,139,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,32,0,0,0,2,3,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,48,3,0,0,57,0,67,0,0,0,27,6,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,10,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,54,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,15,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,39,2,0,0,44,0,118,0,0,0,13,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,15,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,36,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,27,3 +4,0,0,5,0,36,21,0,41,0,4,0,0,2,7,0,682,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,36,38,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,249,0,0,0,0,0,1,0,0,0,0,0,2,0,0,116905,36,776,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20002,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,741,0,0,0,0,5912,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,15711,0,68,0,0,0,0,3,285,1592,15700,0,0,0,0,1,0,3,0,0,0,0,0,0,825,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,351,5,0,0,276,0,874,0,0,0,117,13,0,0,0,0,0,0,0,0,0,763,1,0,0,0,9,0,0,0,0,0,136,19,0,0,1,0,0,0,0,0,8548,1,0,1138,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,37,257,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3264,91,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,83,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,55,3,0,0,58,0,58,0,0,0,28,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,7,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1216,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,506,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,88,2,0,0,91,0,174,0,0,0,32,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,258,150,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,132,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,30,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,76,2,0,0,91,0,249,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,25,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,1,0,0,22,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,58,0,62,0,0,0,28,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,27,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,68,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,5,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1223,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,523,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,30,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,92,0,174,0,0,0,28,11,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,17,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,34,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,260,153,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1355,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,540,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,39,0,0,0,0,3,23,6,102,0,0,0,0,1,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,119,0,0,0,65,0,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,231,0,0,827,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,191,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,296,14,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1056,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,467,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,112,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,25,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,70,3,0,0,80,0,154,0,0,0,27,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,252,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,101,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,64,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1025,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,458,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,182,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,25,0,0,0,0,3,24,6,52,0,0,0,0,1,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,71,3,0,0,80,0,157,0,0,0,27,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,250,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,109,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,64,3 +5,0,0,4,0,36,13,0,37,0,3,0,0,2,3,0,699,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2311,36,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,245,0,0,0,0,0,1,0,0,0,0,0,4,0,0,69665,36,789,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,12517,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,737,0,1,0,0,2882,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,8890,0,43,0,0,0,2,7,258,1183,8867,0,0,0,0,1,0,3,0,0,0,0,0,0,718,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,224,4,0,0,276,0,354,0,0,0,126,13,0,0,0,0,0,0,0,0,0,763,1,0,0,0,10,0,0,0,0,1,130,36,0,0,0,0,0,0,0,0,4173,1,0,1471,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,2,0,0,0,0,1,40,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1818,37,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,215,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,20,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,968,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,51,3,0,0,63,0,89,0,0,0,33,6,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,11,3 +2362,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,156,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2107,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,700,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,2362,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,223,0,94,0,0,0,0,3,27,9,222,0,0,0,0,1,0,0,0,0,0,0,0,0,6819,0,0,0,0,0,0,0,0,0,0,0,0,7,0,7,0,0,0,0,0,0,8,3,108,2,0,0,128,0,249,0,0,0,61,16,0,0,0,0,0,42,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,279,0,0,934,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,327,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,449,44,3 +0,0,0,3,0,9,2,0,16,4,3,0,0,0,7,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,2,0,1,0,9,6,0,0,16,0,0,0,1,0,0,4,0,0,0,0,0,96,0,0,0,0,0,1,0,0,0,0,0,7,0,0,11325,9,62,0,1,0,0,0,0,0,15,0,0,0,1,0,1,6,2455,0,0,1,0,0,0,0,0,9,0,8,0,0,2,0,25,0,5,0,0,161,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1452,0,39,0,0,0,0,3,23,14,1469,0,0,0,0,1,0,0,0,0,0,0,0,0,2286,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,8,93,3,0,0,129,0,120,0,0,0,70,3,0,0,0,0,0,0,0,0,0,48,1,0,0,0,2,0,0,0,0,0,91,51,0,0,0,0,0,0,0,0,614,0,0,3268,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,213,0,1,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1111,24,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,5,0,0,116,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,127,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,52,3,0,0,62,0,65,0,0,0,31,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,24,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,8,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,7,0,0,86,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,18,0,5,0,0,127,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,56,3,0,0,66,0,101,0,0,0,36,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,97,20,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,17,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,14,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,82,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,65,0,60,0,0,0,35,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,7,0,0,212,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,150,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,7,38,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,59,3,0,0,69,0,86,0,0,0,39,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,37,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1223,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,546,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,90,0,155,0,0,0,27,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,264,149,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1224,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,516,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,91,2,0,0,91,0,177,0,0,0,31,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,259,150,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1215,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,515,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,90,2,0,0,91,0,175,0,0,0,31,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,35,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,150,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,129,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,88,0,0,0,33,11,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,50,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +16,0,0,5,0,39,21,0,44,0,4,0,0,2,15,0,793,0,6,1,0,0,0,8,0,10,0,0,11,0,5,0,0,0,5,5704,39,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,276,0,0,0,0,0,1,0,0,0,0,0,2,0,0,114840,39,910,0,13,0,0,0,0,0,32,0,0,0,0,0,8,18,19595,0,0,5,0,0,0,0,0,111,5,2,0,0,2,0,902,0,0,0,0,5268,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,15496,0,76,0,0,0,8,11,289,1638,15485,0,0,0,0,1,0,3,0,0,0,0,0,0,911,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,393,5,0,0,288,0,920,0,0,0,132,24,0,0,0,0,0,0,0,0,0,885,1,0,0,0,9,0,0,0,0,5,142,19,0,0,1,0,0,0,0,0,15863,1,0,1134,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,16,0,0,0,8,1,44,233,0,14,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5878,100,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1188,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,516,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,30,0,0,0,0,3,31,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,91,0,155,0,0,0,25,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,94,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,149,3 +3,0,0,3,0,13,4,0,28,0,9,0,0,0,2,0,22,0,7,1,0,0,0,1,0,0,3,0,1,0,2,0,0,0,2,0,13,6,0,0,37,0,1,0,1,0,0,1,0,0,0,0,1,98,0,0,0,0,0,1,0,0,0,0,0,5,0,0,4289,13,72,0,3,0,0,0,0,0,6,0,0,0,0,0,1,3,1366,0,0,2,0,0,1,19,0,163,20,1,0,0,2,0,116,0,0,0,0,649,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,731,0,37,0,0,0,2,7,29,324,743,0,0,0,0,1,0,0,0,0,0,0,0,0,656,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,115,3,0,0,92,0,198,0,0,0,31,4,0,0,0,0,0,0,0,0,0,72,1,0,0,0,2,0,0,0,0,1,95,56,0,0,44,0,0,0,0,0,1120,0,0,465,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,15,81,0,6,0,0,0,0,0,0,67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,675,303,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1266,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,557,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,26,0,0,0,0,3,27,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,89,2,0,0,91,0,171,0,0,0,32,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,150,3 +1,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,228,10,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,31,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,31,0,0,0,0,3,26,4,50,0,0,0,0,1,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,67,2,0,0,83,0,252,0,0,0,22,5,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,92,17,0,0,0,0,0,0,0,0,33,0,0,43,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,59,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,69,28,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1260,13,37,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,551,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,26,0,0,0,0,3,27,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,90,2,0,0,91,0,177,0,0,0,32,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,150,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,5,0,0,72,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,38,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,6,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,44,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,70,0,0,0,0,0,1,0,0,0,0,0,2,0,0,484,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,62,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,537,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,31,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,102,3,0,0,83,0,339,0,0,0,13,11,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,106,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,31,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1006,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,450,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,116,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,23,0,0,0,0,3,24,6,51,0,0,0,0,1,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,71,3,0,0,80,0,152,0,0,0,27,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,249,0,0,764,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,105,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,229,64,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1015,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,483,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,19,0,0,0,0,3,22,4,51,0,0,0,0,1,0,0,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,58,2,0,0,76,0,105,0,0,0,22,1,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,211,0,0,764,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,110,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,229,7,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,60,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,7,0,0,218,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,165,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,33,0,0,0,2,4,26,7,40,0,0,0,0,1,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,59,3,0,0,69,0,86,0,0,0,39,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,37,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,264,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,26,3 +2,0,0,5,0,35,21,0,41,0,4,0,0,2,7,0,698,0,7,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5704,35,56,0,0,22,0,0,0,1,0,0,1,0,0,0,0,1,254,0,0,0,0,0,1,0,0,0,0,0,2,0,0,101620,35,796,0,2,0,0,0,0,0,32,0,0,0,0,0,8,17,16319,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,757,0,0,0,0,3883,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,15102,0,45,0,0,0,0,3,280,791,15084,0,0,0,0,1,0,3,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,1286,5,0,0,1273,0,485,0,0,0,122,15,0,0,0,0,0,0,0,0,0,780,1,0,0,0,9,0,0,0,0,1,1130,19,0,0,1,0,0,0,0,0,3526,1,0,419,16,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,1,0,0,0,0,1,36,203,0,3,12,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1410,96,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,209,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,133,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,93,0,0,0,33,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,253,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,109,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,25,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +5,0,0,4,0,36,13,0,35,0,3,0,0,2,3,0,633,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2305,36,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,250,0,0,0,0,0,1,0,0,0,0,0,4,0,0,73785,36,721,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,13294,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,671,0,1,0,0,3538,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,9597,0,43,0,0,0,2,7,259,1183,9574,0,0,0,0,1,0,3,0,0,0,0,0,0,925,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,239,4,0,0,275,0,377,0,0,0,126,13,0,0,0,0,0,0,0,0,0,695,1,0,0,0,10,0,0,0,0,1,129,36,0,0,0,0,0,0,0,0,4098,1,0,1867,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,2,0,0,0,0,1,40,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1909,50,3 +4,0,0,5,0,38,21,0,45,0,4,0,0,2,7,0,771,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5706,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,257,0,0,0,0,0,1,0,0,0,0,0,2,0,0,124414,38,877,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,21043,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,839,0,0,0,0,6601,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,17013,0,71,0,0,0,6,9,284,1607,16996,0,0,0,0,1,0,3,0,0,0,0,0,0,778,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,657,5,0,0,284,0,942,0,0,0,128,89,0,0,0,0,0,0,0,0,0,856,1,0,0,0,9,0,0,0,0,4,140,19,0,0,1,0,0,0,0,0,9811,1,0,1100,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,195,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3580,149,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,123,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,135,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,58,3,0,0,72,0,90,0,0,0,41,8,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +17,0,0,5,0,39,21,0,43,0,4,0,0,2,15,0,759,0,6,1,0,0,0,8,0,10,0,0,7,0,5,0,0,0,5,5704,39,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,262,0,0,0,0,0,1,0,0,0,0,0,2,0,0,115333,39,871,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,19712,0,0,5,0,0,0,0,0,107,5,2,0,0,2,0,864,0,0,0,0,5551,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15526,0,73,0,0,0,8,11,290,1633,15515,0,0,0,0,1,0,3,0,0,0,0,0,0,939,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,443,5,0,0,288,0,919,0,0,0,131,21,0,0,0,0,0,0,0,0,0,850,1,0,0,0,9,0,0,0,0,5,142,19,0,0,1,0,0,0,0,0,15893,1,0,1153,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,12,0,0,0,0,1,44,220,0,10,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5896,100,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,95,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,130,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,35,0,0,0,0,1,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,51,3,0,0,62,0,84,0,0,0,32,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,25,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,10,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,881,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,464,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,19,0,0,0,0,3,21,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,55,2,0,0,73,0,90,0,0,0,21,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,14,0,0,0,0,0,0,0,0,204,0,0,731,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,63,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,2,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,121,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,142,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,55,3,0,0,71,0,90,0,0,0,41,9,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,782,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5870,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,376,0,0,0,0,0,1,0,0,0,0,0,2,0,0,137702,41,907,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,23408,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,920,0,0,0,0,5485,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19217,0,55,0,0,0,8,17,290,1622,19207,0,0,0,0,1,0,3,0,0,0,0,0,0,913,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,313,5,0,0,297,0,412,0,0,0,137,19,0,0,0,0,0,0,0,0,0,874,1,0,0,0,9,0,0,0,0,2,147,19,0,0,1,0,0,0,0,0,6748,1,0,1124,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,253,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3189,264,3 +8,0,0,3,0,11,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,4,0,1,0,0,0,1,0,11,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,3,0,0,899,11,36,0,5,0,0,0,0,0,4,0,0,0,0,0,1,4,456,0,0,1,0,0,0,0,0,11,0,1,0,0,2,0,14,0,1,0,0,91,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,29,0,0,0,0,3,31,17,57,0,0,0,0,1,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,71,3,0,0,72,0,149,0,0,0,15,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,93,5,0,0,0,0,0,0,0,0,793,0,0,728,0,0,1,0,1,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,2,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,12,32,0,5,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,256,53,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1540,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,88,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,619,0,0,0,0,0,11,43,240,0,0,0,0,0,0,0,0,0,0,0,0,0,1654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,19,2,0,0,57,0,83,0,0,0,48,6,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,45,0,0,0,0,0,0,0,0,331,0,0,408,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,115,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1417,5,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,142,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2321,10,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,750,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,248,0,92,0,0,0,0,3,27,9,245,0,0,0,0,1,0,0,0,0,0,0,0,0,9774,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,117,2,0,0,132,0,256,0,0,0,65,8,0,0,0,0,0,43,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,288,0,0,998,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,281,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,465,44,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1293,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,510,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,39,0,0,0,0,3,23,6,98,0,0,0,0,1,0,0,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,119,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,227,0,0,815,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,190,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,288,15,3 +10,0,0,5,0,42,21,0,46,0,4,0,0,2,14,0,839,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5870,42,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,382,0,0,0,0,0,1,0,0,0,0,0,2,0,0,142623,42,963,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,24342,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,975,0,0,0,0,5474,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,19958,0,53,0,0,0,8,17,297,1639,19947,0,0,0,0,1,0,3,0,0,0,0,0,0,940,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,313,5,0,0,301,0,403,0,0,0,140,22,0,0,0,0,0,0,0,0,0,932,1,0,0,0,9,0,0,0,0,2,150,19,0,0,1,0,0,0,0,0,7135,1,0,1145,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,12,0,0,0,2,1,48,190,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3265,163,3 +4,0,0,5,0,35,21,0,41,0,4,0,0,2,7,0,667,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,254,0,0,0,0,0,1,0,0,0,0,0,2,0,0,113758,35,761,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19473,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,728,0,0,0,0,5298,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,15314,0,64,0,0,0,0,3,281,1596,15303,0,0,0,0,1,0,3,0,0,0,0,0,0,849,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,347,5,0,0,275,0,840,0,0,0,119,14,0,0,0,0,0,0,0,0,0,748,1,0,0,0,9,0,0,0,0,0,137,19,0,0,1,0,0,0,0,0,8092,1,0,1150,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,206,0,2,12,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2992,90,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,221,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,114,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,31,0,0,0,2,4,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,51,3,0,0,63,0,91,0,0,0,33,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,12,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2067,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,865,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,244,0,23,0,0,0,0,3,24,596,255,0,0,0,0,1,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,62,2,0,0,85,0,89,0,0,0,29,3,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,21,0,0,0,0,0,0,0,0,410,0,0,788,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,110,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,435,5,3 +3549,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,123,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1814,11,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,616,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,170,0,67,0,0,0,0,3,31,9,169,0,0,0,0,1,0,0,0,0,0,0,0,0,9751,0,0,0,0,0,0,0,0,0,0,0,0,6,0,6,0,0,0,0,0,0,8,3,97,2,0,0,133,0,244,0,0,0,63,9,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,93,43,0,0,0,0,0,0,0,0,257,0,0,936,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,281,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,378,46,3 +0,0,0,3,0,10,2,0,16,1,3,0,0,0,4,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,10,0,3,0,1,0,0,3,0,0,0,0,0,94,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1338,10,60,0,1,0,0,0,0,0,16,0,0,0,1,0,1,8,530,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,19,0,2,0,0,87,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,86,0,41,0,0,0,0,3,27,10,103,0,0,0,0,1,0,0,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,5,89,3,0,0,117,0,117,0,0,0,54,5,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,92,38,0,0,0,0,0,0,0,0,225,0,0,799,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,256,0,1,0,0,1,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,289,16,3 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,136,9,21,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,1,0,0,0,0,0,6,0,0,0,0,2,0,8,0,1,0,0,107,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,21,0,0,0,0,3,23,5,25,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,48,3,0,0,72,0,69,0,0,0,42,2,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,0,91,38,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,73,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,7,3 +0,0,0,2,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,1,0,0,63,10,20,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,6,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,20,0,0,0,0,3,24,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,38,2,0,0,73,0,75,0,0,0,43,3,0,0,0,0,0,0,0,0,0,23,1,0,0,0,2,0,0,0,0,0,92,36,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,74,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,6,3 +10,0,0,5,0,40,21,0,44,0,4,0,0,2,14,0,729,0,6,1,0,0,0,8,0,11,9,0,9,0,3,0,0,0,6,5868,40,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,397,0,0,0,0,0,1,0,0,0,0,0,2,0,0,133417,40,849,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,22946,0,0,6,0,0,0,0,0,93,5,2,0,0,2,0,863,0,0,0,0,5349,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,18671,0,53,0,0,0,6,15,283,1622,18662,0,0,0,0,1,0,3,0,0,0,0,0,0,906,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,292,5,0,0,294,0,414,0,0,0,136,22,0,0,0,0,0,0,0,0,0,820,1,0,0,0,9,0,0,0,0,1,145,19,0,0,1,0,0,0,0,0,6674,1,0,1138,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,9,0,0,0,0,1,46,239,0,20,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3183,144,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,480,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,66,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,596,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,31,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,100,3,0,0,83,0,292,0,0,0,13,10,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,100,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,28,3 +9,0,0,3,0,19,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,8,0,19,6,0,0,28,0,5,0,1,0,0,5,0,0,0,0,0,82,0,0,0,0,0,1,0,0,0,0,0,6,0,0,31605,19,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,6492,0,0,8,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,526,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3992,0,75,0,0,0,0,3,38,223,4006,0,0,0,0,1,0,0,0,0,0,0,0,0,8020,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,173,3,0,0,144,0,354,0,0,0,81,15,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,101,43,0,0,0,0,0,0,0,0,1946,0,0,9156,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,3,0,0,0,0,1,27,253,0,4,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2689,82,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1484,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,650,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,139,0,20,0,0,0,0,3,23,299,150,0,0,0,0,1,0,0,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,59,2,0,0,82,0,87,0,0,0,26,6,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,89,21,0,0,0,0,0,0,0,0,307,0,0,764,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,109,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,324,6,3 +3,0,0,2,0,15,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,15,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1240,15,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,572,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,31,0,0,0,0,3,35,6,108,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,81,2,0,0,94,0,156,0,0,0,25,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,17,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,273,149,3 +10,0,0,5,0,41,21,0,46,0,4,0,0,2,14,0,781,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,360,0,0,0,0,0,1,0,0,0,0,0,2,0,0,134584,41,907,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,22949,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,920,0,0,0,0,5099,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18745,0,53,0,0,0,8,17,290,1626,18735,0,0,0,0,1,0,3,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,317,5,0,0,299,0,419,0,0,0,138,16,0,0,0,0,0,0,0,0,0,874,1,0,0,0,9,0,0,0,0,2,149,19,0,0,1,0,0,0,0,0,6731,1,0,1128,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,224,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3140,170,3 +5,0,0,4,0,38,13,0,35,0,3,0,0,2,3,0,704,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2850,38,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,403,0,0,0,0,0,1,0,0,0,0,0,4,0,0,76033,38,792,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,13813,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,741,0,1,0,0,3213,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,9937,0,45,0,0,0,2,7,270,1216,9913,0,0,0,0,1,0,3,0,0,0,0,0,0,741,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,252,4,0,0,280,0,384,0,0,0,126,9,0,0,0,0,0,0,0,0,0,766,1,0,0,0,10,0,0,0,0,1,131,36,0,0,0,0,0,0,0,0,4297,1,0,1530,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,2,0,0,0,0,1,42,142,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1984,52,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1060,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,475,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,22,0,0,0,0,3,27,4,55,0,0,0,0,1,0,0,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,67,2,0,0,85,0,101,0,0,0,28,7,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,92,19,0,0,0,0,0,0,0,0,214,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,132,0,1,0,0,2,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,7,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,91,0,260,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +0,0,0,2,0,11,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2035,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,866,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,243,0,22,0,0,0,0,3,28,599,254,0,0,0,0,1,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,66,2,0,0,88,0,91,0,0,0,29,3,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,91,21,0,0,0,0,0,0,0,0,410,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,110,0,1,0,0,2,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,434,6,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1230,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,549,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,335,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,31,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,88,0,161,0,0,0,25,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +0,0,0,2,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,1,0,0,59,10,20,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,6,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,20,0,0,0,0,3,24,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,38,2,0,0,73,0,74,0,0,0,43,2,0,0,0,0,0,0,0,0,0,23,1,0,0,0,2,0,0,0,0,0,92,36,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,74,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,6,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1483,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,68,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,617,0,0,0,0,0,15,41,235,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,21,2,0,0,60,0,86,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,326,0,0,396,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,113,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1427,5,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1207,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,533,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,155,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,264,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,7,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,61,0,56,0,0,0,31,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,27,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,53,0,1,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,782,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5870,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,355,0,0,0,0,0,1,0,0,0,0,0,2,0,0,137507,41,905,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,23329,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,918,0,0,0,0,5716,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19061,0,53,0,0,0,8,17,290,1637,19051,0,0,0,0,1,0,3,0,0,0,0,0,0,934,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,324,5,0,0,295,0,405,0,0,0,135,18,0,0,0,0,0,0,0,0,0,874,1,0,0,0,9,0,0,0,0,2,145,19,0,0,1,0,0,0,0,0,6846,1,0,1141,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,240,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3198,141,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,57,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +4,0,0,5,0,35,21,0,41,0,4,0,0,2,7,0,665,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,256,0,0,0,0,0,1,0,0,0,0,0,2,0,0,118006,35,759,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20195,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,724,0,0,0,0,4762,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,16066,0,67,0,0,0,0,3,281,1591,16055,0,0,0,0,1,0,3,0,0,0,0,0,0,828,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,344,5,0,0,276,0,878,0,0,0,120,17,0,0,0,0,0,0,0,0,0,746,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,7929,1,0,1135,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,186,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3055,91,3 +3,0,0,2,0,11,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,11,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1228,11,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,541,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,92,0,29,0,0,0,6,15,28,21,107,0,0,0,0,1,0,0,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,73,2,0,0,82,0,162,0,0,0,25,6,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,91,15,0,0,0,0,0,0,0,0,258,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,6,0,0,0,0,1,13,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,271,101,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,63,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,53,0,0,0,28,4,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,2,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,50,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,618,0,0,0,0,0,15,43,234,0,0,0,0,0,0,0,0,0,0,0,0,0,1645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,23,2,0,0,60,0,88,0,0,0,48,5,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,322,0,0,388,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,114,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1411,5,3 +16,0,0,6,0,40,17,0,44,6,5,0,0,2,12,0,783,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,355,0,0,0,0,0,1,0,0,0,0,0,10,0,0,124873,40,891,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,21885,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,886,0,7,0,0,4057,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,17828,0,51,0,0,0,6,19,288,1252,17817,0,0,0,0,1,0,3,0,0,0,0,0,0,390,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,293,6,0,0,278,0,432,0,0,0,114,17,0,0,0,0,0,0,0,0,0,869,1,0,0,0,9,0,0,0,0,1,141,17,0,0,1,0,0,0,0,0,4957,1,0,796,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,17,0,0,0,0,1,44,201,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2035,135,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,70,0,0,0,0,0,1,0,0,0,0,0,2,0,0,481,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,58,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,524,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,96,3,0,0,83,0,288,0,0,0,13,10,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,94,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,26,3 +0,0,0,3,0,12,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1057,12,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,480,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,25,0,0,0,0,3,32,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,82,3,0,0,90,0,153,0,0,0,31,1,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,96,16,0,0,0,0,0,0,0,0,250,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,104,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,242,91,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,139,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2275,10,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,736,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,248,0,90,0,0,0,0,2,27,9,245,0,0,0,0,1,0,0,0,0,0,0,0,0,9925,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,113,2,0,0,130,0,254,0,0,0,63,12,0,0,0,0,0,43,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,282,0,0,986,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,284,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,448,48,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1057,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,476,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,104,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,25,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,71,3,0,0,80,0,154,0,0,0,27,4,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,252,0,0,771,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,108,0,1,0,0,2,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,64,3 +4,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,19,0,0,0,0,0,1,0,0,0,0,0,5,0,0,193,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,300,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,27,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,57,3,0,0,59,0,90,0,0,0,28,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,21,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,34,3 +10,0,0,5,0,41,21,0,49,0,4,0,0,2,14,1,979,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,6,5868,41,166,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,397,0,0,0,0,0,1,0,0,0,0,0,2,0,0,144286,41,1106,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,24507,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,1026,0,0,0,0,5486,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,20321,0,89,0,0,0,8,19,316,1641,20296,0,0,0,0,1,0,3,0,0,0,0,0,0,926,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,42,13,309,5,0,0,297,0,518,0,0,0,138,27,0,0,0,0,0,0,0,0,0,1076,1,0,0,0,9,0,0,0,0,2,147,19,0,0,1,0,0,0,0,0,7412,1,0,1134,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,35,35,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,27,47,213,0,20,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3228,123,3 +7,0,0,5,0,42,21,0,48,0,4,0,0,2,12,0,876,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,6,5870,42,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,393,0,0,0,0,0,1,0,0,0,0,0,2,0,0,144415,42,997,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,24752,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,1007,0,0,0,0,5648,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,20403,0,56,0,0,0,8,16,294,1639,20395,0,0,0,0,1,0,3,0,0,0,0,0,0,912,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,348,5,0,0,300,0,444,0,0,0,136,35,0,0,0,0,0,0,0,0,0,969,1,0,0,0,9,0,0,0,0,2,148,19,0,0,1,0,0,0,0,0,7050,1,0,1133,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,364,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,10,0,0,0,2,1,48,193,0,20,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3047,138,3 +1,0,0,6,0,33,7,0,35,0,5,0,0,7,6,0,526,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,33,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,176,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18692,33,594,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4315,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,585,0,0,1,0,3292,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,732,0,46,0,0,0,1,4,249,1159,719,0,0,0,0,1,0,3,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,183,6,0,0,199,0,269,0,0,0,58,4,0,0,0,0,0,0,0,0,0,592,1,0,0,0,10,0,0,0,0,0,116,15,0,0,6,0,0,0,0,0,3253,1,0,813,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,34,103,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1922,71,3 +13,0,0,4,0,51,13,0,36,21,3,0,0,2,24,0,749,0,6,2,0,0,0,8,0,11,0,0,5,0,1,0,6,0,18,2849,51,32,0,0,68,0,1,0,1,0,0,2,0,0,0,0,1,275,0,0,0,0,0,1,0,0,0,0,0,25,0,0,97255,51,851,0,2,0,0,0,0,0,28,0,0,0,0,0,9,23,17170,0,0,18,0,0,0,0,0,95,5,4,0,0,2,0,823,0,22,0,0,3343,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,13530,0,86,0,0,0,0,3,288,1228,13531,0,0,0,0,1,0,3,0,0,0,0,0,0,1203,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,39,32,327,4,0,0,319,0,372,0,0,0,166,16,0,0,0,0,0,0,0,0,0,833,1,0,0,0,10,0,0,0,0,1,147,34,0,0,0,0,0,0,0,0,4290,1,0,1965,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,6,14,361,11,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,1,0,0,0,0,1,69,222,0,3,14,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,23,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2010,132,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,209,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,115,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,63,0,92,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +16,0,0,6,0,41,15,0,45,6,5,0,0,2,12,0,840,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4923,41,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,348,0,0,0,0,0,1,0,0,0,0,0,10,0,0,133761,41,946,0,9,0,0,0,0,0,26,0,0,0,0,0,8,18,23245,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,942,0,7,0,0,4209,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,19392,0,53,0,0,0,8,20,290,1238,19381,0,0,0,0,1,0,3,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,299,6,0,0,276,0,393,0,0,0,110,10,0,0,0,0,0,0,0,0,0,925,1,0,0,0,9,0,0,0,0,1,141,16,0,0,1,0,0,0,0,0,4999,1,0,778,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,13,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,19,0,0,0,0,1,45,198,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2028,141,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,60,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,4,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +1,0,0,6,0,34,7,0,35,0,5,0,0,7,6,0,541,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,185,0,0,0,0,0,1,0,0,0,0,0,5,0,0,20106,34,609,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4448,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,600,0,0,1,0,2680,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,937,0,46,0,0,0,1,4,256,1159,923,0,0,0,0,1,0,3,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,186,6,0,0,201,0,271,0,0,0,58,5,0,0,0,0,0,0,0,0,0,607,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3230,1,0,809,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,108,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1853,71,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,124,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,143,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,35,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,2,3 +10,0,0,5,0,41,21,0,51,0,4,0,0,2,14,0,998,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,412,0,0,0,0,0,1,0,0,0,0,0,2,0,0,172947,41,1124,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,29542,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,1131,0,0,0,0,5124,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,12,12,12,0,0,0,25098,0,53,0,0,0,8,19,290,1625,25088,0,0,0,0,1,0,3,0,0,0,0,0,0,882,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,314,5,0,0,298,0,402,0,0,0,137,26,0,0,0,0,0,0,0,0,0,1096,1,0,0,0,9,0,0,0,0,2,148,19,0,0,1,0,0,0,0,0,7288,1,0,1097,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,217,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3178,102,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1458,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,59,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,611,0,0,0,0,0,15,36,223,0,0,0,0,0,0,0,0,0,0,0,0,0,1643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,20,2,0,0,60,0,86,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,322,0,0,392,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,114,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1408,4,3 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,883,8,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,467,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,15,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,21,0,0,0,0,3,21,4,41,0,0,0,0,1,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,61,2,0,0,78,0,88,0,0,0,17,0,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,88,13,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,107,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,223,2,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,54,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,15,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,38,2,0,0,44,0,118,0,0,0,13,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,15,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,36,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,27,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,130,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,128,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,34,0,0,0,2,3,26,6,39,0,0,0,0,1,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,55,3,0,0,71,0,90,0,0,0,41,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,601,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,35,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2162,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,864,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,251,0,32,0,0,0,8,19,29,615,260,0,0,0,0,1,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,110,0,176,0,0,0,45,9,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,452,0,0,778,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,444,8,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,5,0,0,86,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,25,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,56,3,0,0,58,0,58,0,0,0,28,8,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,7,3 +10,0,0,5,0,41,21,0,46,0,4,0,0,2,14,0,819,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,458,0,0,0,0,0,1,0,0,0,0,0,2,0,0,139456,41,945,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,23687,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,957,0,0,0,0,5769,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,19528,0,53,0,0,0,8,17,290,1641,19518,0,0,0,0,1,0,3,0,0,0,0,0,0,942,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,289,5,0,0,296,0,404,0,0,0,136,20,0,0,0,0,0,0,0,0,0,912,1,0,0,0,9,0,0,0,0,2,146,19,0,0,1,0,0,0,0,0,6993,1,0,1149,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,227,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3263,167,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,123,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,126,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,36,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,27,2,0,0,30,0,34,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2156,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,860,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,409,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,251,0,32,0,0,0,8,19,29,615,260,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,110,0,173,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,451,0,0,778,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,446,8,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,261,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,28,3 +0,0,0,3,0,25,5,0,11,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,2,0,1,0,25,6,0,0,20,0,1,0,1,0,0,1,0,0,0,0,1,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1644,25,42,0,1,0,0,0,0,0,11,0,0,0,0,0,7,15,624,0,0,1,0,0,0,0,0,74,5,3,0,0,2,0,20,0,0,0,0,550,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,95,0,38,0,0,0,0,3,177,8,97,0,0,0,0,1,0,3,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,108,3,0,0,135,0,292,0,0,0,43,4,0,0,0,0,0,0,0,0,0,45,1,0,0,0,8,0,0,0,0,0,107,30,0,0,0,0,0,0,0,0,274,0,0,780,3,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,2,3,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,89,0,2,9,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,342,122,3 +10,0,0,5,0,39,21,0,48,0,4,0,0,2,16,0,912,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,3,5868,39,148,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,411,0,0,0,0,0,1,0,0,0,0,0,2,0,0,220560,39,1038,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,37276,0,0,3,0,0,0,0,0,95,5,2,0,0,2,0,1050,0,0,0,0,5147,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,33120,0,51,0,0,0,8,21,289,1628,33111,0,0,0,0,1,0,3,0,0,0,0,0,0,893,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,291,5,0,0,290,0,410,0,0,0,126,18,0,0,0,0,0,0,0,0,0,1009,1,0,0,0,9,0,0,0,0,2,144,19,0,0,1,0,0,0,0,0,7016,1,0,1125,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,42,206,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3346,140,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,60,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,55,0,51,0,0,0,25,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,21,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,11,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1074,11,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,494,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,248,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,26,0,0,0,0,3,28,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,74,3,0,0,83,0,156,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,91,16,0,0,0,0,0,0,0,0,251,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,105,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,241,64,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1426,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,66,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,617,0,0,0,0,0,7,43,229,0,0,0,0,0,0,0,0,0,0,0,0,0,1635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,14,2,0,0,54,0,89,0,0,0,48,9,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,45,0,0,0,0,0,0,0,0,322,0,0,372,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,114,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1414,5,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1020,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,501,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,20,0,0,0,0,3,26,4,51,0,0,0,0,1,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,60,2,0,0,77,0,102,0,0,0,20,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,89,16,0,0,0,0,0,0,0,0,210,0,0,760,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,110,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,229,6,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1092,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,479,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,123,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,23,0,0,0,0,3,24,6,56,0,0,0,0,1,0,0,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,71,3,0,0,80,0,157,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,255,0,0,784,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,109,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,241,64,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1020,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,487,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,21,0,0,0,0,3,22,4,51,0,0,0,0,1,0,0,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,59,2,0,0,77,0,85,0,0,0,23,1,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,17,0,0,0,0,0,0,0,0,211,0,0,764,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,116,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,233,7,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,212,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,106,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,51,3,0,0,63,0,89,0,0,0,33,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,12,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,972,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,441,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,22,0,0,0,0,3,26,4,52,0,0,0,0,1,0,0,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,60,2,0,0,78,0,86,0,0,0,21,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,89,17,0,0,0,0,0,0,0,0,211,0,0,764,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,116,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,7,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,0,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1227,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,555,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,88,0,154,0,0,0,25,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,3,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +1,0,0,3,0,10,2,0,16,0,3,0,0,0,3,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,8,0,0,0,1,0,0,1,0,0,0,0,0,55,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1044,10,41,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,127,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,17,0,1,0,0,111,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,113,0,33,0,0,0,0,3,25,20,123,0,0,0,0,1,0,0,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,91,3,0,0,93,0,123,0,0,0,29,3,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,0,94,17,0,0,0,0,0,0,0,0,677,0,0,268,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,165,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,153,26,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,77,2,0,0,91,0,271,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,5,0,35,21,0,43,0,4,0,0,2,7,0,735,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,261,0,0,0,0,0,1,0,0,0,0,0,2,0,0,112180,35,831,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19246,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,794,0,0,0,0,4949,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15019,0,66,0,0,0,0,3,282,1595,15008,0,0,0,0,1,0,3,0,0,0,0,0,0,829,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,382,5,0,0,274,0,881,0,0,0,118,14,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,0,136,19,0,0,1,0,0,0,0,0,8562,1,0,1139,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,199,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3238,90,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,53,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,53,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,5,0,0,120,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,115,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,50,3,0,0,62,0,64,0,0,0,31,5,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,24,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,8,3 +0,0,0,2,0,11,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,3,0,1,0,11,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1165,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,488,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,54,0,30,0,0,0,0,3,29,72,72,0,0,0,0,1,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,84,0,126,0,0,0,25,4,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,91,17,0,0,0,0,0,0,0,0,220,0,0,780,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,3,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,93,0,1,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,260,10,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1240,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,567,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,31,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,159,0,0,0,27,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,270,149,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,10,38,0,0,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,268,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,108,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +10,0,0,5,0,41,22,0,45,0,4,0,0,2,14,0,784,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5038,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,406,0,0,0,0,0,1,0,0,0,0,0,2,0,0,135272,41,919,0,12,0,0,0,0,0,38,0,0,0,0,0,8,18,23308,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,926,0,0,0,0,6016,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18882,0,53,0,0,0,8,17,301,1774,18872,0,0,0,0,1,0,3,0,0,0,0,0,0,925,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,303,5,0,0,301,0,422,0,0,0,141,20,0,0,0,0,0,0,0,0,0,877,1,0,0,0,9,0,0,0,0,2,146,22,0,0,1,0,0,0,0,0,6807,1,0,1147,19,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,19,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,183,0,22,12,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3212,142,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,10,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1278,10,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,497,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,86,0,39,0,0,0,0,3,27,6,97,0,0,0,0,1,0,0,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,81,2,0,0,127,0,121,0,0,0,65,7,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,225,0,0,811,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,202,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,288,16,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,263,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,26,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1302,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,508,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,39,0,0,0,0,3,23,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,119,0,0,0,65,5,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,229,0,0,819,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,191,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,293,13,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,62,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,39,3,0,0,58,0,59,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,131,8,37,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,17,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,15,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,37,0,0,0,0,3,22,4,36,0,0,0,0,1,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,78,0,101,0,0,0,19,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,89,13,0,0,0,0,0,0,0,0,25,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,76,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,75,9,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,268,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,26,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,53,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,5,0,38,21,0,44,0,4,0,0,2,7,0,736,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,330,0,0,0,0,0,1,0,0,0,0,0,2,0,0,114721,38,841,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,19621,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,804,0,0,0,0,5902,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15472,0,71,0,0,0,6,9,285,1617,15455,0,0,0,0,1,0,3,0,0,0,0,0,0,828,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,635,5,0,0,286,0,1001,0,0,0,130,89,0,0,0,0,0,0,0,0,0,820,1,0,0,0,9,0,0,0,0,4,142,19,0,0,1,0,0,0,0,0,8956,1,0,1127,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,194,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3358,149,3 +1,0,0,2,0,9,2,0,17,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,9,6,0,0,5,0,3,0,1,0,0,3,0,0,0,0,0,63,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1132,9,56,0,2,0,0,0,0,0,14,0,0,0,0,0,1,8,510,0,0,0,0,0,0,0,0,13,0,4,0,0,2,0,18,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,81,0,43,0,0,0,0,3,24,9,89,0,0,0,0,1,0,0,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,83,2,0,0,91,0,154,0,0,0,26,4,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,1,92,15,0,0,0,0,0,0,0,0,222,0,0,778,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,1,0,0,0,0,1,9,175,0,2,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,284,38,3 +1,0,0,5,0,42,20,0,41,0,4,0,0,2,3,0,723,0,6,1,0,0,0,9,0,12,3,0,5,0,1,0,0,0,7,5830,42,32,0,0,32,0,1,0,1,0,0,1,0,0,0,0,2,344,0,0,0,0,0,1,0,0,0,0,0,2,0,0,148293,42,815,0,3,0,0,0,0,0,30,0,0,0,0,0,9,21,25498,0,0,7,0,0,0,0,0,95,5,2,0,0,2,0,776,0,0,0,0,5145,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,21207,0,50,0,0,0,2,6,290,1560,21187,0,0,0,0,1,0,3,0,0,0,0,0,0,802,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,37,13,270,5,0,0,291,0,376,0,0,0,131,5,0,0,0,0,0,0,0,0,0,799,1,0,0,0,10,0,0,0,0,1,142,18,0,0,1,0,0,0,0,0,4114,1,0,1097,17,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,17,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,2,0,0,0,0,1,49,246,0,7,14,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2222,124,3 +4,0,0,5,0,38,21,0,45,0,4,0,0,2,7,0,772,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,326,0,0,0,0,0,1,0,0,0,0,0,2,0,0,122679,38,878,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,20840,0,0,4,0,0,0,0,0,105,5,1,0,0,2,0,840,0,0,0,0,6407,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,16614,0,70,0,0,0,6,9,284,1621,16597,0,0,0,0,1,0,3,0,0,0,0,0,0,834,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,651,5,0,0,288,0,941,0,0,0,132,84,0,0,0,0,0,0,0,0,0,857,1,0,0,0,9,0,0,0,0,4,144,19,0,0,1,0,0,0,0,0,9108,1,0,1141,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,231,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3399,151,3 +7,0,0,5,0,35,21,0,43,0,4,0,0,2,9,0,781,0,6,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5868,35,44,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,388,0,0,0,0,0,1,0,0,0,0,0,2,0,0,129686,35,881,0,2,0,0,0,0,0,32,0,0,0,0,0,8,18,22134,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,857,0,0,0,0,5548,0,0,0,0,3,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,17857,0,44,0,0,0,0,3,281,1618,17842,0,0,0,0,1,0,3,0,0,0,0,0,0,874,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,312,5,0,0,282,0,418,0,0,0,127,24,0,0,0,0,0,0,0,0,0,866,1,0,0,0,9,0,0,0,0,1,143,19,0,0,1,0,0,0,0,0,7659,1,0,1142,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,1,0,0,0,0,1,36,204,0,3,12,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2867,60,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,53,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,6,0,34,7,0,34,0,5,0,0,7,6,0,508,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,176,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18565,34,575,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4232,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,567,0,0,1,0,2672,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,715,0,47,0,0,0,1,4,256,1159,701,0,0,0,0,1,0,3,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,187,6,0,0,201,0,269,0,0,0,57,4,0,0,0,0,0,0,0,0,0,573,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3177,1,0,821,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,101,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1886,71,3 +10,0,0,5,0,42,21,0,46,0,4,0,0,2,14,0,838,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5870,42,4657,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,377,0,0,0,0,0,1,0,0,0,0,0,2,0,0,129566,42,961,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,21969,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,973,0,0,0,0,5282,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,17945,0,54,0,0,0,8,19,294,1640,17935,0,0,0,0,1,0,3,0,0,0,0,0,0,941,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,291,5,0,0,297,0,402,0,0,0,134,18,0,0,0,0,0,0,0,0,0,931,1,0,0,0,9,0,0,0,0,2,145,19,0,0,1,0,0,0,0,0,11445,1,0,1141,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,11,0,0,0,0,1,48,211,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3189,103,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,53,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +2,0,0,3,0,11,2,0,18,3,3,0,0,0,6,0,16,0,6,1,0,0,0,1,0,1,0,0,1,0,1,0,0,0,2,0,11,6,0,0,14,0,3,0,1,0,0,3,0,0,0,0,1,69,0,0,0,0,0,1,0,0,0,0,0,6,0,0,1300,11,65,0,3,0,0,0,0,0,16,0,0,0,0,0,1,8,502,0,0,2,0,0,0,0,0,13,0,4,0,0,2,0,26,0,4,0,0,136,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,50,0,0,0,2,4,28,9,98,0,0,0,0,1,0,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,7,98,3,0,0,116,0,150,0,0,0,52,5,0,0,0,0,0,0,0,0,0,51,1,0,0,0,2,0,0,0,0,1,93,34,0,0,0,0,0,0,0,0,801,0,0,785,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,13,152,0,3,0,0,1,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,306,17,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1318,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,83,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,619,0,0,0,0,0,15,43,221,0,0,0,0,0,0,0,0,0,0,0,0,0,1601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,20,2,0,0,60,0,92,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,314,0,0,332,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,116,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1401,5,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,76,2,0,0,91,0,261,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,97,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,94,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,35,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,51,3,0,0,62,0,78,0,0,0,32,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,25,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,10,3 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,76,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1346,11,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,533,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,94,0,43,0,0,0,0,3,31,6,104,0,0,0,0,1,0,0,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,85,2,0,0,130,0,121,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,93,49,0,0,0,0,0,0,0,0,229,0,0,825,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,192,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,301,15,3 +16,0,0,5,0,41,21,0,44,0,5,0,0,2,14,0,796,0,6,1,0,0,0,8,0,10,0,0,7,0,5,0,0,0,4,5704,41,46,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,336,0,0,0,0,0,1,0,0,0,0,0,2,0,0,118121,41,908,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,20198,0,0,4,0,0,0,0,0,107,5,2,0,0,2,0,901,0,0,0,0,5552,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,16040,0,76,0,0,0,8,11,301,1612,16027,0,0,0,0,1,0,3,0,0,0,0,0,0,852,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,493,5,0,0,293,0,993,0,0,0,128,29,0,0,0,0,0,0,0,0,0,888,1,0,0,0,9,0,0,0,0,5,144,19,0,0,1,0,0,0,0,0,15875,1,0,1109,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,0,1,45,190,0,10,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5457,105,3 +3550,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,121,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1758,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,593,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3550,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,167,0,67,0,0,0,0,3,27,9,166,0,0,0,0,1,0,0,0,0,0,0,0,0,9819,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,95,2,0,0,130,0,250,0,0,0,63,7,0,0,0,0,0,1,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,254,0,0,921,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,281,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,374,43,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,124,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,129,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,72,0,90,0,0,0,41,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,36,3 +1,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,174,10,37,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,109,0,253,0,0,0,41,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,37,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,136,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,62,24,3 +3,0,0,5,2,10,50,2,53,7,5,0,0,0,10,0,117,0,11,1,0,0,0,1,0,0,0,0,6,0,1,0,0,2,1,0,12,114,0,0,20,0,0,0,1,0,0,1,0,0,0,0,0,65,0,0,0,0,0,1,0,0,0,0,0,8,0,0,332,10,170,0,7,0,0,0,0,0,3,0,0,0,0,0,1,3,23,0,2,1,2,0,2,0,0,86,0,1,0,0,6,2,37,0,6,0,0,343,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,33,0,31,0,0,0,0,3,32,32,57,0,0,0,0,1,0,0,0,0,0,0,0,0,215,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,216,51,390,7,0,0,385,0,525,0,2,0,98,9,0,0,0,0,0,0,0,0,0,246,1,0,0,0,2,0,0,0,0,1,122,10,0,0,0,0,0,0,0,0,210,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,8,1,1,1,0,6,0,0,0,0,17,13,3,0,7,0,0,0,0,0,0,76,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,106,20,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,70,0,0,0,0,0,1,0,0,0,0,0,2,0,0,468,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,66,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,495,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1046,3,0,0,1038,0,307,0,0,0,14,6,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1057,9,0,0,0,0,0,0,0,0,98,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,31,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1475,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,77,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,615,0,0,0,0,0,11,41,232,0,0,0,0,0,0,0,0,0,0,0,0,0,1663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,18,2,0,0,57,0,82,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,45,0,0,0,0,0,0,0,0,329,0,0,396,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,116,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1412,5,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,133,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,30,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,249,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,107,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,26,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,264,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,1,0,0,888,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,471,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,19,0,0,0,0,3,21,10,42,0,0,0,0,1,0,0,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,53,2,0,0,71,0,93,0,0,0,19,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,204,0,0,731,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,63,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,2,3 +0,0,0,3,0,10,2,0,5,4,3,0,0,0,7,0,14,0,6,2,0,0,0,0,0,0,3,0,1,0,2,0,1,0,2,0,10,6,0,0,14,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,7,0,0,102,10,36,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,4,0,0,2,0,0,0,0,0,10,0,0,0,0,2,0,36,0,5,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,18,0,26,0,0,0,2,8,24,12,25,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,56,3,0,0,42,0,102,0,0,0,12,4,0,0,0,0,0,0,0,0,0,37,0,0,0,0,2,0,0,0,0,2,92,4,0,0,0,0,0,0,0,0,28,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,4,0,0,0,0,1,12,3,0,6,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,10,3 +0,0,0,2,0,9,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,283,9,30,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,34,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,6,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,38,0,27,0,0,0,0,3,23,5,50,0,0,0,0,1,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,73,2,0,0,103,0,124,0,0,0,51,1,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,41,0,0,0,0,0,0,0,0,32,0,0,43,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,119,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,64,14,3 +0,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,5,0,4,0,1,0,0,4,0,0,0,0,0,61,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1892,11,56,0,1,0,0,0,0,0,15,0,0,0,0,0,1,7,599,0,0,1,0,0,0,0,0,13,0,4,0,0,2,0,15,0,0,0,0,930,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,133,0,79,0,0,0,0,3,31,78,147,0,0,0,0,1,0,0,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,3,243,2,0,0,145,0,102,0,0,0,80,25,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,117,41,0,0,0,0,0,0,0,0,269,0,0,862,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,232,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,381,88,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,69,0,0,0,0,0,1,0,0,0,0,0,2,0,0,459,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,65,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,466,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1013,3,0,0,1008,0,289,0,0,0,14,7,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1027,9,0,0,0,0,0,0,0,0,97,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,29,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,233,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,140,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,55,3,0,0,74,0,68,0,0,0,43,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,36,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1325,9,58,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,527,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,90,0,39,0,0,0,0,3,23,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,125,0,120,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,229,0,0,819,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,205,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,293,14,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,122,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,122,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,58,3,0,0,72,0,90,0,0,0,41,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,36,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1261,14,36,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,550,0,0,3,0,0,0,0,0,10,0,1,0,0,2,0,10,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,29,0,0,0,0,3,31,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,96,2,0,0,94,0,170,0,0,0,32,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,17,78,0,3,0,0,2,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,144,3 +16,0,0,6,0,39,21,0,46,6,5,0,0,2,12,0,799,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,5868,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,405,0,0,0,0,0,1,0,0,0,0,0,10,0,0,141435,39,920,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,24086,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,910,0,7,0,0,5953,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,19930,0,51,0,0,0,8,20,285,1637,19920,0,0,0,0,1,0,3,0,0,0,0,0,0,962,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,326,6,0,0,294,0,416,0,0,0,135,33,0,0,0,0,0,0,0,0,0,891,1,0,0,0,9,0,0,0,0,1,148,19,0,0,1,0,0,0,0,0,5102,1,0,1153,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,211,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2342,152,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,3,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,11,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,22,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,33,0,29,0,0,0,0,3,30,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,95,0,253,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,27,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,113,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,25,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,83,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,54,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,7,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,11,2,0,15,5,3,0,0,0,8,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,11,6,0,0,18,0,0,0,1,0,0,3,0,0,0,0,0,160,0,0,0,0,0,1,0,0,0,0,0,8,0,0,2755,11,62,0,1,0,0,0,0,0,15,0,0,0,1,0,1,5,512,0,0,1,0,0,0,0,0,11,0,5,0,0,2,0,27,0,6,0,0,280,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,325,0,52,0,0,0,0,3,29,14,344,0,0,0,0,1,0,0,0,0,0,0,0,0,782,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,9,135,3,0,0,122,0,123,0,0,0,56,5,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,93,40,0,0,0,0,0,0,0,0,283,0,0,640,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,12,215,0,1,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,465,17,3 +4,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,197,10,25,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,119,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,4,24,6,35,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,56,3,0,0,59,0,86,0,0,0,29,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,22,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,34,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +4,0,0,4,0,11,20,0,104,0,27,0,0,0,3,0,17,0,7,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,1,0,11,6,0,0,192,0,0,0,1,0,0,2,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,22,0,0,1370,11,180,0,3,0,0,0,0,0,9,0,0,0,0,0,1,4,707,0,0,1,0,0,2,96,0,745,30,3,0,0,2,0,485,0,1,0,0,153,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,392,0,32,0,0,0,0,3,29,649,403,0,0,0,0,1,0,0,0,0,0,0,0,0,274,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,4,74,4,0,0,111,0,186,0,0,0,53,3,0,0,0,0,0,0,0,0,0,178,1,0,0,0,2,0,0,0,0,1,93,258,0,0,60,0,0,0,0,0,623,0,0,69,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,12,115,0,3,0,0,0,0,0,0,259,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,11,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,467,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,65,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,532,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,28,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1141,3,0,0,1135,0,306,0,0,0,14,8,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1154,9,0,0,0,0,0,0,0,0,97,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,30,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,100,10,24,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,13,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,43,3,0,0,58,0,64,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,14,3 +2,0,0,3,0,34,13,0,33,0,2,0,0,2,2,0,699,0,6,2,0,0,0,8,0,11,0,0,4,0,1,0,0,0,1,2703,34,6,0,0,20,0,1,0,1,0,0,2,0,0,0,0,1,251,0,0,0,0,0,1,0,0,0,0,0,2,0,0,25129,34,778,0,1,0,0,0,0,0,28,0,0,0,0,0,9,23,5534,0,0,1,0,0,0,0,0,94,5,4,0,0,2,0,718,0,0,0,0,2920,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,1358,0,41,0,0,0,0,3,264,1177,1340,0,0,0,0,1,0,3,0,0,0,0,0,0,626,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,10,204,3,0,0,257,0,260,0,0,0,108,5,0,0,0,0,0,0,0,0,0,757,1,0,0,0,10,0,0,0,0,0,126,28,0,0,0,0,0,0,0,0,4393,1,0,1223,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,35,124,0,2,14,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2030,34,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,3,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1144,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,489,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,51,0,29,0,0,0,0,3,25,72,69,0,0,0,0,1,0,0,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,73,2,0,0,81,0,119,0,0,0,25,3,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,17,0,0,0,0,0,0,0,0,219,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,93,0,1,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,253,8,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,4,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +5,0,0,4,0,38,13,0,36,0,3,0,0,2,3,0,701,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2311,38,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,273,0,0,0,0,0,1,0,0,0,0,0,4,0,0,75741,38,790,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,13765,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,739,0,1,0,0,3224,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,9930,0,47,0,0,0,2,7,270,1182,9906,0,0,0,0,1,0,3,0,0,0,0,0,0,702,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,241,4,0,0,282,0,362,0,0,0,127,9,0,0,0,0,0,0,0,0,0,764,1,0,0,0,10,0,0,0,0,1,132,36,0,0,0,0,0,0,0,0,4286,1,0,1469,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,2,0,0,0,0,1,42,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1966,36,3 +6,0,0,7,0,40,14,0,40,4,13,0,0,2,8,0,23,0,7,6,0,0,0,5,0,9,0,0,22,0,1,0,0,0,6,0,40,6,7,0,89,0,0,0,1,0,0,3,0,0,0,0,5,143,0,0,0,0,0,1,0,0,0,0,0,15,0,0,14221,40,135,0,22,0,0,0,0,0,20,0,0,0,0,0,7,18,2364,0,0,6,0,0,2,27,0,327,45,3,0,0,2,0,171,0,4,0,0,1110,0,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,10,10,0,0,0,1683,0,96,0,0,0,7,13,204,240,1681,0,0,0,0,1,0,3,0,0,0,0,0,0,3135,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,17,196,7,0,0,187,0,339,0,0,0,67,26,0,0,0,0,0,0,0,0,0,107,1,0,0,0,11,0,0,0,0,1,127,66,0,0,93,0,1,0,0,0,941,0,0,3140,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,23,0,0,0,0,1,46,77,0,23,9,0,0,0,0,0,103,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1361,107,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1216,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,539,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,31,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,90,0,155,0,0,0,27,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,149,3 +2,0,0,2,0,17,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,17,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2171,17,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,891,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,430,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,251,0,32,0,0,0,8,19,37,611,260,0,0,0,0,1,0,0,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,86,2,0,0,116,0,178,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,97,31,0,0,0,0,0,0,0,0,448,0,0,774,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,4,0,0,0,0,1,20,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,442,9,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1534,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,85,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,618,0,0,0,0,0,15,41,241,0,0,0,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,19,2,0,0,60,0,86,0,0,0,48,11,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,329,0,0,416,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,114,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1418,5,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1217,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,525,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,66,2,0,0,79,0,161,0,0,0,25,6,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,264,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,364,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,264,101,3 +7,0,0,6,0,39,8,0,40,4,5,0,0,2,9,0,468,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,7,898,39,36,0,0,39,0,3,0,1,0,0,3,0,0,0,0,4,154,1,0,0,0,0,1,0,0,0,0,0,9,0,0,35519,39,558,0,7,0,0,0,0,0,22,0,0,0,0,0,8,20,6986,0,0,7,0,0,0,0,0,94,5,5,0,0,2,0,546,0,6,0,0,2755,0,0,0,0,24,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,3713,0,71,0,0,0,6,19,246,1133,3708,0,0,0,0,1,0,4,0,0,0,0,0,0,516,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,19,240,6,0,0,240,0,327,0,0,0,93,14,0,0,0,0,0,0,0,0,0,538,1,0,0,0,9,0,0,0,0,1,125,25,0,0,1,0,0,0,0,0,2856,1,0,859,5,0,1,1,1,0,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,5,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,16,0,0,0,0,1,46,163,0,17,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1723,191,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,62,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,3,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,115,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,121,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,52,3,0,0,68,0,62,0,0,0,37,5,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,30,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,145,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1967,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,673,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,210,0,92,0,0,0,0,3,27,9,209,0,0,0,0,1,0,0,0,0,0,0,0,0,9877,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,117,2,0,0,130,0,256,0,0,0,63,11,0,0,0,0,0,43,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,264,0,0,894,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,284,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,425,52,3 +12,0,0,4,1,42,12,4,42,3,4,0,0,2,6,0,722,0,6,4,0,1,1,8,0,11,0,0,5,0,1,0,0,0,7,2512,43,32,108,0,32,0,1,0,1,0,0,2,0,0,0,0,1,240,0,0,0,0,0,1,0,0,0,0,0,7,0,0,85625,42,921,0,2,0,0,0,0,0,26,3,0,0,0,0,9,23,15311,0,4,7,0,0,0,0,0,97,5,4,0,0,2,1,753,0,4,0,0,3047,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,11569,0,56,0,0,0,0,3,274,1183,11550,0,0,0,0,1,0,3,0,0,0,0,0,0,1072,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,41,14,275,5,0,0,309,0,358,0,0,0,137,24,0,0,0,0,0,0,0,0,0,794,1,0,0,0,14,0,0,0,0,1,136,33,0,0,0,0,0,0,0,0,4593,1,0,1914,13,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,13,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,1,0,0,0,0,9,50,152,0,3,14,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2005,95,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,4,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,199,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,148,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,4,24,6,35,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,58,3,0,0,59,0,90,0,0,0,29,5,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,22,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,34,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,213,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,114,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,90,0,0,0,33,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,130,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,19,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,32,0,0,0,0,3,30,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,79,2,0,0,94,0,261,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,63,27,3 +4,0,0,5,0,36,21,0,45,0,4,0,0,2,7,0,827,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,36,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,287,0,0,0,0,0,1,0,0,0,0,0,2,0,0,249278,36,925,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,53309,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,886,0,0,0,0,5192,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,49114,0,65,0,0,0,0,3,289,1604,49102,0,0,0,0,1,0,3,0,0,0,0,0,0,803,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,340,5,0,0,278,0,878,0,0,0,120,21,0,0,0,0,0,0,0,0,0,912,1,0,0,0,9,0,0,0,0,0,139,19,0,0,1,0,0,0,0,0,8738,1,0,1112,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,37,226,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3225,97,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,1,0,0,22,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,58,0,62,0,0,0,28,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,27,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,68,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,5,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,125,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,152,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,4,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,71,0,89,0,0,0,41,1,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +10,0,0,5,0,42,21,0,45,0,4,0,0,2,14,0,765,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,6,5868,42,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,394,0,0,0,0,0,1,0,0,0,0,0,2,0,0,132345,42,887,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,22517,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,901,0,0,0,0,5068,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,18353,0,56,0,0,0,8,16,294,1612,18346,0,0,0,0,1,0,3,0,0,0,0,0,0,893,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,320,5,0,0,298,0,424,0,0,0,135,16,0,0,0,0,0,0,0,0,0,857,1,0,0,0,9,0,0,0,0,2,146,19,0,0,1,0,0,0,0,0,6577,1,0,1118,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,10,0,0,0,2,1,48,206,0,20,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3112,271,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,11,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,33,0,30,0,0,0,0,3,30,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,79,2,0,0,95,0,268,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,27,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,112,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,27,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,216,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,120,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,31,0,0,0,2,4,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,53,3,0,0,63,0,93,0,0,0,33,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,11,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,64,0,0,0,0,0,1,0,0,0,0,0,2,0,0,452,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,58,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,456,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1043,3,0,0,1038,0,294,0,0,0,14,9,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1057,9,0,0,0,0,0,0,0,0,94,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,29,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,124,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,113,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,35,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,765,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,373,0,0,0,0,0,1,0,0,0,0,0,10,0,0,138502,39,876,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,24159,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,871,0,7,0,0,4545,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,20214,0,51,0,0,0,8,20,281,1248,20204,0,0,0,0,1,0,3,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,283,6,0,0,275,0,403,0,0,0,113,20,0,0,0,0,0,0,0,0,0,851,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4891,1,0,774,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,222,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2066,120,3 +0,0,0,2,0,11,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2055,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,871,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,243,0,22,0,0,0,0,3,28,593,254,0,0,0,0,1,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,66,2,0,0,88,0,93,0,0,0,29,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,91,21,0,0,0,0,0,0,0,0,409,0,0,784,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,110,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,432,6,3 +1,0,0,2,0,12,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,12,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,55,0,0,0,0,0,1,0,0,0,0,0,1,0,0,158,12,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,26,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,32,0,0,0,0,3,34,4,47,0,0,0,0,1,0,0,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,82,2,0,0,98,0,278,0,0,0,22,16,0,0,0,0,0,1,0,0,0,42,1,0,0,0,2,0,0,0,0,0,94,18,0,0,0,0,0,0,0,0,28,0,0,19,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,12,117,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,67,27,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,53,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1243,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,531,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,92,2,0,0,91,0,183,0,0,0,32,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,150,3 +5,0,0,4,0,37,13,0,35,0,3,0,0,2,3,0,649,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2850,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,301,0,0,0,0,0,1,0,0,0,0,0,4,0,0,81080,37,737,0,2,0,0,0,0,0,29,0,0,0,0,0,9,23,14520,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,687,0,1,0,0,2968,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,10772,0,46,0,0,0,2,7,267,1208,10748,0,0,0,0,1,0,3,0,0,0,0,0,0,783,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,230,4,0,0,278,0,374,0,0,0,126,6,0,0,0,0,0,0,0,0,0,711,1,0,0,0,10,0,0,0,0,1,130,36,0,0,0,0,0,0,0,0,4119,1,0,1592,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,243,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1882,53,3 +16,0,0,6,0,38,17,0,41,6,5,0,0,2,12,0,638,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,38,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,364,0,0,0,0,0,1,0,0,0,0,0,10,0,0,124300,38,743,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,21813,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,741,0,7,0,0,3380,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,17841,0,52,0,0,0,6,19,274,1252,17832,0,0,0,0,1,0,3,0,0,0,0,0,0,388,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,300,6,0,0,275,0,387,0,0,0,116,17,0,0,0,0,0,0,0,0,0,721,1,0,0,0,9,0,0,0,0,1,140,17,0,0,1,0,0,0,0,0,4635,1,0,791,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,17,0,0,0,0,1,42,215,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2067,135,3 +2,0,0,2,0,11,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2033,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,868,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,240,0,28,0,0,0,0,3,25,591,255,0,0,0,0,1,0,0,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,66,2,0,0,98,0,125,0,0,0,42,6,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,406,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,436,7,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,53,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +5,0,0,4,0,38,13,0,38,0,3,0,0,2,3,0,772,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2514,38,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,261,0,0,0,0,0,1,0,0,0,0,0,4,0,0,75809,38,863,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,13700,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,810,0,1,0,0,3412,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,9779,0,45,0,0,0,2,7,270,1186,9755,0,0,0,0,1,0,3,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,238,4,0,0,281,0,372,0,0,0,126,10,0,0,0,0,0,0,0,0,0,837,1,0,0,0,10,0,0,0,0,1,131,36,0,0,0,0,0,0,0,0,4505,1,0,1514,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,2,0,0,0,0,1,42,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1958,41,3 +7,0,0,5,0,36,21,0,42,0,4,0,0,2,9,0,766,0,6,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5868,36,44,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,381,0,0,0,0,0,1,0,0,0,0,0,2,0,0,138800,36,865,0,2,0,0,0,0,0,32,0,0,0,0,0,8,18,23637,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,842,0,0,0,0,5432,0,0,0,0,3,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,19432,0,43,0,0,0,0,3,288,1617,19416,0,0,0,0,1,0,3,0,0,0,0,0,0,883,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,323,5,0,0,285,0,433,0,0,0,126,23,0,0,0,0,0,0,0,0,0,850,1,0,0,0,9,0,0,0,0,1,146,19,0,0,1,0,0,0,0,0,7537,1,0,1154,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,1,0,0,0,0,1,37,204,0,3,12,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2797,65,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1308,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,520,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,39,0,0,0,0,3,23,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,119,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,818,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,190,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,288,13,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,75,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,59,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +10,0,0,5,0,42,21,0,45,0,4,0,0,2,14,0,802,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,42,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,366,0,0,0,0,0,1,0,0,0,0,0,2,0,0,143191,42,921,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,24307,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,934,0,0,0,0,5292,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,20168,0,53,0,0,0,8,21,298,1611,20157,0,0,0,0,1,0,3,0,0,0,0,0,0,880,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,308,5,0,0,299,0,399,0,0,0,137,25,0,0,0,0,0,0,0,0,0,894,1,0,0,0,9,0,0,0,0,2,148,19,0,0,1,0,0,0,0,0,6770,1,0,1111,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,19,0,0,0,0,1,48,208,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3140,130,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,78,2,0,0,91,0,269,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,28,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,54,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,15,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,38,2,0,0,44,0,118,0,0,0,13,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,15,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,36,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,27,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1494,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,89,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,612,0,0,0,0,0,15,43,235,0,0,0,0,0,0,0,0,0,0,0,0,0,1657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,22,2,0,0,59,0,93,0,0,0,48,4,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,44,0,0,0,0,0,0,0,0,325,0,0,396,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,113,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1404,6,3 +10,0,0,5,0,40,21,0,47,0,4,0,0,2,14,0,834,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,40,160,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,387,0,0,0,0,0,1,0,0,0,0,0,2,0,0,132520,40,958,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,22714,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,969,0,0,0,0,5622,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,12,12,12,0,0,0,18338,0,56,0,0,0,8,19,282,1632,18329,0,0,0,0,1,0,3,0,0,0,0,0,0,925,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,292,5,0,0,290,0,470,0,0,0,132,21,0,0,0,0,0,0,0,0,0,928,1,0,0,0,9,0,0,0,0,2,142,19,0,0,1,0,0,0,0,0,7099,1,0,1128,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,11,0,0,0,0,1,46,213,0,19,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3289,109,3 +1,0,0,6,0,34,7,0,33,0,5,0,0,7,6,0,474,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,184,0,0,0,0,0,1,0,0,0,0,0,5,0,0,17402,34,540,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4037,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,533,0,0,1,0,2832,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,12,12,12,0,0,0,612,0,49,0,0,0,1,4,253,1157,599,0,0,0,0,1,0,3,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,188,6,0,0,202,0,270,0,0,0,58,7,0,0,0,0,0,0,0,0,0,538,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3051,1,0,804,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,104,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1839,69,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,115,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,127,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,51,3,0,0,68,0,62,0,0,0,37,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,30,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,8,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,2,0,14,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,14,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1194,14,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,495,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,57,0,33,0,0,0,8,19,28,22,68,0,0,0,0,1,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,110,0,181,0,0,0,48,4,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,96,32,0,0,0,0,0,0,0,0,257,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,0,1,17,238,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,250,10,3 +0,0,0,2,0,9,2,0,10,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,929,9,35,0,2,0,0,0,0,0,6,0,0,0,0,0,1,6,466,0,0,1,0,0,0,0,0,9,0,1,0,0,2,0,10,0,0,0,0,94,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,38,0,22,0,0,0,0,3,23,5,44,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,71,2,0,0,75,0,124,0,0,0,22,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,91,12,0,0,0,0,0,0,0,0,206,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,1,0,0,0,0,1,10,81,0,2,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,220,8,3 +2,0,0,5,0,34,21,0,42,0,4,0,0,2,7,0,713,0,7,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5704,34,50,0,0,22,0,0,0,1,0,0,1,0,0,0,0,1,245,0,0,0,0,0,1,0,0,0,0,0,2,0,0,107269,34,812,0,2,0,0,0,0,0,32,0,0,0,0,0,8,17,17372,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,772,0,0,0,0,3759,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,16070,0,45,0,0,0,0,3,272,792,16053,0,0,0,0,1,0,3,0,0,0,0,0,0,819,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,1268,5,0,0,1272,0,456,0,0,0,120,15,0,0,0,0,0,0,0,0,0,796,1,0,0,0,9,0,0,0,0,1,1131,19,0,0,1,0,0,0,0,0,3587,1,0,418,16,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,1,0,0,0,0,1,35,232,0,3,12,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1388,93,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1320,9,58,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,541,0,0,1,0,0,0,0,0,12,0,6,0,0,2,0,14,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,38,0,0,0,0,3,23,6,97,0,0,0,0,1,0,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,125,0,119,0,0,0,65,0,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,225,0,0,815,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,191,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,285,14,3 +4,0,0,5,0,35,21,0,41,0,4,0,0,2,7,0,664,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,266,0,0,0,0,0,1,0,0,0,0,0,2,0,0,113563,35,758,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19344,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,723,0,0,0,0,5376,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,15231,0,63,0,0,0,0,3,281,1601,15220,0,0,0,0,1,0,3,0,0,0,0,0,0,820,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,322,5,0,0,276,0,807,0,0,0,120,18,0,0,0,0,0,0,0,0,0,745,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,7991,1,0,1137,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,218,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3085,82,3 +16,0,0,6,0,39,17,0,45,6,5,0,0,2,12,0,799,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4625,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,329,0,0,0,0,0,1,0,0,0,0,0,10,0,0,124708,39,908,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,21720,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,902,0,7,0,0,3566,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,17954,0,52,0,0,0,6,19,281,1257,17944,0,0,0,0,1,0,3,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,283,6,0,0,275,0,387,0,0,0,113,16,0,0,0,0,0,0,0,0,0,886,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4851,1,0,795,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,222,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2037,136,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,122,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,120,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,71,0,90,0,0,0,41,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,36,3 +16,0,0,6,0,41,17,0,45,6,5,0,0,2,12,0,838,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4625,41,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,449,0,0,0,0,0,1,0,0,0,0,0,10,0,0,142281,41,950,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,24868,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,943,0,7,0,0,3655,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,20728,0,53,0,0,0,8,20,292,1261,20717,0,0,0,0,1,0,3,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,322,6,0,0,280,0,426,0,0,0,114,15,0,0,0,0,0,0,0,0,0,925,1,0,0,0,9,0,0,0,0,1,141,17,0,0,1,0,0,0,0,0,5059,1,0,783,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,19,0,0,0,0,1,45,218,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2117,188,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2061,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,888,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,241,0,21,0,0,0,0,3,24,594,252,0,0,0,0,1,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,62,2,0,0,85,0,91,0,0,0,29,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,21,0,0,0,0,0,0,0,0,411,0,0,780,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,110,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,430,6,3 +1,0,0,6,0,34,7,0,35,0,5,0,0,7,6,0,541,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,177,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18566,34,609,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4394,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,600,0,0,1,0,2765,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,671,0,46,0,0,0,1,4,256,1159,657,0,0,0,0,1,0,3,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,187,6,0,0,201,0,270,0,0,0,58,4,0,0,0,0,0,0,0,0,0,607,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3364,1,0,813,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,113,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1927,72,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,782,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,438,0,0,0,0,0,1,0,0,0,0,0,2,0,0,143395,41,904,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,24279,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,917,0,0,0,0,5503,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,20166,0,53,0,0,0,8,19,290,1633,20156,0,0,0,0,1,0,3,0,0,0,0,0,0,915,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,305,5,0,0,295,0,396,0,0,0,136,18,0,0,0,0,0,0,0,0,0,874,1,0,0,0,9,0,0,0,0,2,145,19,0,0,1,0,0,0,0,0,6883,1,0,1122,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,192,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3224,101,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,63,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,53,0,0,0,28,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,3,0,13,2,0,16,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,13,6,0,0,14,0,0,0,1,0,0,3,0,0,0,0,0,87,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1476,13,56,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,295,0,0,5,0,0,0,0,0,11,0,4,0,0,2,0,17,0,1,0,0,350,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,231,0,51,0,0,0,0,3,27,208,244,0,0,0,0,1,0,0,0,0,0,0,0,0,450,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,97,3,0,0,109,0,184,0,0,0,50,8,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,95,22,0,0,0,0,0,0,0,0,112,0,0,301,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,18,176,0,1,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,237,17,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,53,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,5,0,39,21,0,43,0,4,0,0,2,7,0,721,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,4,5704,39,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,260,0,0,0,0,0,1,0,0,0,0,0,2,0,0,115305,39,819,0,4,0,0,0,0,0,32,0,0,0,0,0,8,18,19613,0,0,4,0,0,0,0,0,90,5,2,0,0,2,0,783,0,0,0,0,5697,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,15492,0,73,0,0,0,0,3,288,1603,15475,0,0,0,0,1,0,3,0,0,0,0,0,0,824,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,622,5,0,0,288,0,944,0,0,0,129,91,0,0,0,0,0,0,0,0,0,804,1,0,0,0,9,0,0,0,0,1,142,19,0,0,1,0,0,0,0,0,9101,1,0,1130,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,3,0,0,0,0,1,43,194,0,5,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3397,149,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,82,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,55,3,0,0,58,0,58,0,0,0,28,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +16,0,0,6,0,39,17,0,45,6,5,0,0,2,12,0,799,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,376,0,0,0,0,0,1,0,0,0,0,0,10,0,0,140603,39,908,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,24369,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,902,0,7,0,0,3648,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,20605,0,53,0,0,0,6,19,281,1258,20595,0,0,0,0,1,0,3,0,0,0,0,0,0,360,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,284,6,0,0,279,0,386,0,0,0,117,10,0,0,0,0,0,0,0,0,0,886,1,0,0,0,9,0,0,0,0,1,143,17,0,0,1,0,0,0,0,0,4813,1,0,775,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,226,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2016,130,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,5,0,0,233,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,131,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,9,34,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,54,3,0,0,73,0,68,0,0,0,43,9,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,36,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,335,0,0,0,0,0,1,0,0,0,0,0,10,0,0,120715,39,871,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,21376,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,866,0,7,0,0,3720,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,17196,0,52,0,0,0,6,19,282,1251,17186,0,0,0,0,1,0,3,0,0,0,0,0,0,365,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,284,6,0,0,277,0,388,0,0,0,115,17,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,1,141,17,0,0,1,0,0,0,0,0,4983,1,0,789,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,229,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2140,137,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,5,0,0,72,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,38,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,6,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,36,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,69,0,0,0,0,0,1,0,0,0,0,0,2,0,0,490,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,64,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,472,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,32,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,995,3,0,0,989,0,305,0,0,0,14,10,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1008,9,0,0,0,0,0,0,0,0,98,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,30,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,65,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,10,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,9,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,3,0,0,991,9,35,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,510,0,0,1,0,0,0,0,0,8,0,1,0,0,2,0,11,0,1,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,58,0,42,0,0,0,0,3,23,4,70,0,0,0,0,1,0,0,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,64,3,0,0,71,0,75,0,0,0,19,1,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,91,9,0,0,0,0,0,0,0,0,212,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,35,0,1,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,275,10,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,30,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,8,3,75,2,0,0,91,0,251,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,26,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,212,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,123,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,51,3,0,0,63,0,92,0,0,0,33,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,5254,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,70,0,0,0,0,0,1,0,0,0,0,0,2,0,0,446,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,59,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,440,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,36,10,1034,3,0,0,1029,0,285,0,0,0,14,7,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1048,9,0,0,0,0,0,0,0,0,5311,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,30,3 +5,0,0,4,0,37,13,0,36,0,3,0,0,2,3,0,684,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2305,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,287,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61957,37,773,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,11290,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,722,0,1,0,0,2789,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,7727,0,46,0,0,0,2,7,266,1182,7703,0,0,0,0,1,0,3,0,0,0,0,0,0,698,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,230,4,0,0,278,0,369,0,0,0,126,12,0,0,0,0,0,0,0,0,0,747,1,0,0,0,10,0,0,0,0,1,130,36,0,0,0,0,0,0,0,0,4035,1,0,1451,14,0,1,1,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1770,37,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1222,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,545,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,88,0,154,0,0,0,25,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,149,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,270,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2024,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,845,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,242,0,23,0,0,0,0,3,24,597,253,0,0,0,0,1,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,62,2,0,0,85,0,91,0,0,0,29,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,21,0,0,0,0,0,0,0,0,409,0,0,780,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,110,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,431,6,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,57,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +16,0,0,6,0,40,17,0,45,6,5,0,0,2,12,0,821,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4944,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,354,0,0,0,0,0,1,0,0,0,0,0,10,0,0,150466,40,932,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,26043,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,926,0,7,0,0,3812,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,22158,0,51,0,0,0,8,20,289,1261,22147,0,0,0,0,1,0,3,0,0,0,0,0,0,365,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,303,6,0,0,282,0,398,0,0,0,121,20,0,0,0,0,0,0,0,0,0,908,1,0,0,0,9,0,0,0,0,1,144,17,0,0,1,0,0,0,0,0,4973,1,0,769,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,20,0,0,0,2,1,44,197,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2062,131,3 +1,0,0,6,0,34,7,0,34,0,5,0,0,7,6,0,507,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,173,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18747,34,574,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4178,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,566,0,0,1,0,2754,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,691,0,46,0,0,0,1,4,256,1158,677,0,0,0,0,1,0,3,0,0,0,0,0,0,307,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,187,6,0,0,201,0,270,0,0,0,58,5,0,0,0,0,0,0,0,0,0,572,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3147,1,0,844,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,107,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1884,78,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,11,38,0,0,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,29,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,78,2,0,0,94,0,257,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,107,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,27,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1230,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,553,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,419,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,156,0,0,0,27,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,149,3 +3,0,0,2,0,11,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,11,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1238,11,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,546,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,92,0,27,0,0,0,6,15,28,21,107,0,0,0,0,1,0,0,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,70,2,0,0,82,0,162,0,0,0,25,2,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,91,15,0,0,0,0,0,0,0,0,257,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,6,0,0,0,0,1,13,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,101,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,55,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +5,0,0,3,0,18,2,0,10,1,3,0,0,0,4,0,16,0,6,1,0,0,0,1,0,0,0,0,9,0,1,0,0,0,4,0,18,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1093,18,44,0,10,0,0,0,0,0,5,0,0,0,0,0,1,4,500,0,0,4,0,0,0,0,0,16,0,2,0,0,2,0,20,0,2,0,0,168,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,57,0,45,0,0,0,0,3,35,36,68,0,0,0,0,1,0,0,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,5,92,3,0,0,91,0,155,0,0,0,23,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,1,100,3,0,0,0,0,0,0,0,0,805,0,0,748,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,9,0,0,0,0,1,22,4,0,10,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,284,68,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,55,0,0,0,0,0,1,0,0,0,0,0,1,0,0,134,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,254,0,0,0,22,2,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,25,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1250,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,539,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,27,0,0,0,0,3,31,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,96,2,0,0,94,0,178,0,0,0,31,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,16,0,0,0,0,0,0,0,0,226,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,17,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,259,151,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1221,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,549,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,88,0,154,0,0,0,25,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,149,3 +10,0,0,5,0,38,21,0,43,0,4,0,0,2,16,0,710,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,3,5868,38,148,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,356,0,0,0,0,0,1,0,0,0,0,0,2,0,0,122583,38,829,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,20785,0,0,3,0,0,0,0,0,95,5,2,0,0,2,0,846,0,0,0,0,5819,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,16712,0,50,0,0,0,8,21,284,1631,16703,0,0,0,0,1,0,3,0,0,0,0,0,0,950,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,298,5,0,0,290,0,402,0,0,0,130,17,0,0,0,0,0,0,0,0,0,802,1,0,0,0,9,0,0,0,0,2,146,19,0,0,1,0,0,0,0,0,6615,1,0,1154,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,19,0,0,0,0,1,41,204,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3382,143,3 +1,0,0,6,0,35,7,0,34,0,5,0,0,7,6,0,521,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,180,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18398,35,588,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4312,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,580,0,0,1,0,2903,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,655,0,46,0,0,0,1,4,263,1158,640,0,0,0,0,1,0,3,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,189,6,0,0,203,0,271,0,0,0,58,5,0,0,0,0,0,0,0,0,0,586,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3297,1,0,829,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,110,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1911,73,3 +1,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,173,11,37,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,33,0,0,0,0,3,30,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,77,2,0,0,112,0,254,0,0,0,41,7,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,93,37,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,132,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,65,24,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,1,0,0,856,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,440,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,19,0,0,0,0,3,21,10,41,0,0,0,0,1,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,53,2,0,0,71,0,92,0,0,0,19,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,65,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,219,2,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,265,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,112,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,26,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,81,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,54,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +0,0,0,5,0,14,4,0,38,0,12,0,0,0,3,0,16,0,7,1,0,0,0,2,0,0,0,0,1,0,1,0,0,0,2,0,14,6,0,0,39,0,0,0,1,0,0,6,0,0,0,0,0,103,0,0,0,0,0,1,0,0,0,0,0,6,0,0,2278,14,106,0,2,0,0,0,0,0,22,0,0,0,0,0,2,9,503,0,0,2,0,0,1,21,0,190,35,4,0,0,2,0,110,0,1,0,0,188,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,337,0,100,0,0,0,0,3,40,143,351,0,0,0,0,1,0,0,0,0,0,0,0,0,820,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,8,6,97,5,0,0,177,0,282,0,0,0,103,18,0,0,0,0,0,0,10,0,0,80,1,0,0,0,3,0,0,0,0,1,96,121,0,0,79,0,0,0,0,0,153,0,0,467,0,0,1,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,1,0,0,0,0,1,16,254,0,2,0,0,0,0,0,0,95,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,432,64,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,51,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,66,0,0,0,0,0,1,0,0,0,0,0,2,0,0,454,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,67,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,510,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1170,3,0,0,1162,0,307,0,0,0,14,6,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1181,9,0,0,0,0,0,0,0,0,102,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,30,3 +5,0,0,3,0,12,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,36,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,5,0,0,321,12,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,55,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,220,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,38,0,0,0,0,3,27,7,60,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,93,3,0,0,101,0,203,0,0,0,40,10,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,95,20,0,0,0,0,0,0,0,0,79,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,136,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,88,12,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1245,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,528,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,90,2,0,0,91,0,181,0,0,0,32,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,229,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,35,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,150,3 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,111,8,37,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,17,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,15,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,37,0,0,0,0,3,22,4,36,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,69,2,0,0,78,0,95,0,0,0,18,1,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,89,13,0,0,0,0,0,0,0,0,25,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,76,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,75,8,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,1,0,0,876,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,460,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,21,0,0,0,0,3,21,4,41,0,0,0,0,1,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,53,2,0,0,71,0,88,0,0,0,19,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,63,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,223,2,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,63,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,262,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +12,0,0,5,0,39,36,0,48,0,4,0,0,2,13,0,1038,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,2,11283,39,56,0,0,22,0,1,0,1,0,0,2,0,0,0,0,1,490,0,0,0,0,0,1,0,0,0,0,0,2,0,0,176298,39,1202,0,4,0,0,0,0,0,56,0,0,0,0,0,8,19,34328,0,0,2,0,0,0,0,0,91,5,4,1,0,2,0,1157,0,0,0,0,6560,0,0,0,0,6,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,32026,0,52,0,0,0,0,3,318,1349,32010,0,0,0,0,1,0,4,0,0,0,0,0,0,1569,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,383,5,0,0,352,0,467,0,0,0,183,41,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,9,0,0,0,0,1,163,29,0,0,1,0,0,0,0,0,8955,1,0,827,26,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,26,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,3,0,0,0,0,1,41,263,0,5,12,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2756,90,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1488,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,629,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,142,0,20,0,0,0,0,3,23,302,153,0,0,0,0,1,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,59,2,0,0,82,0,89,0,0,0,26,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,89,21,0,0,0,0,0,0,0,0,310,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,109,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,330,7,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1219,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,544,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,156,0,0,0,27,9,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,229,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,149,3 +4,0,0,5,0,35,21,0,43,0,4,0,0,2,7,0,735,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5706,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,299,0,0,0,0,0,1,0,0,0,0,0,2,0,0,114947,35,831,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19620,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,794,0,0,0,0,5464,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15413,0,65,0,0,0,0,3,281,1601,15402,0,0,0,0,1,0,3,0,0,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,378,5,0,0,276,0,871,0,0,0,119,15,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8203,1,0,1129,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,218,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3120,82,3 +2,0,0,2,0,14,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,14,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,70,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1193,14,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,472,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,59,0,33,0,0,0,8,19,28,22,70,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,183,0,0,0,48,6,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,96,32,0,0,0,0,0,0,0,0,258,0,0,777,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,0,1,17,238,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,251,10,3 +5,0,0,4,0,36,13,0,35,0,3,0,0,2,3,0,633,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2318,36,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,252,0,0,0,0,0,1,0,0,0,0,0,4,0,0,66264,36,721,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,12047,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,671,0,1,0,0,3373,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,8247,0,45,0,0,0,2,7,258,1183,8224,0,0,0,0,1,0,3,0,0,0,0,0,0,756,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,230,4,0,0,276,0,362,0,0,0,127,8,0,0,0,0,0,0,0,0,0,695,1,0,0,0,10,0,0,0,0,1,130,36,0,0,0,0,0,0,0,0,4172,1,0,1562,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,2,0,0,0,0,1,40,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1934,38,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1220,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,548,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,88,0,154,0,0,0,25,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,229,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1182,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,510,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,88,0,154,0,0,0,25,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,2,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +16,0,0,6,0,40,17,0,43,6,5,0,0,2,12,0,745,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,40,150,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,356,0,0,0,0,0,1,0,0,0,0,0,10,0,0,131577,40,852,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,22820,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,848,0,7,0,0,3739,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,18948,0,55,0,0,0,6,19,285,1257,18938,0,0,0,0,1,0,3,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,286,6,0,0,282,0,435,0,0,0,117,20,0,0,0,0,0,0,0,0,0,830,1,0,0,0,9,0,0,0,0,1,144,17,0,0,1,0,0,0,0,0,4833,1,0,791,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,17,0,0,0,0,1,44,223,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2063,137,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1238,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,530,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,28,0,0,0,0,3,27,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,88,2,0,0,91,0,172,0,0,0,31,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,35,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,262,150,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1248,13,36,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,568,0,0,2,0,0,0,0,0,10,0,1,0,0,2,0,10,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,88,0,167,0,0,0,25,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,226,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,15,73,0,3,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,264,144,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,62,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +10,0,0,5,0,41,21,0,48,0,4,0,0,2,14,0,892,0,6,1,0,0,0,8,0,11,9,0,9,0,4,0,0,0,6,6160,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,370,0,0,0,0,0,1,0,0,0,0,0,2,0,0,196882,41,1019,0,11,0,0,0,0,0,32,0,0,0,0,0,8,18,33513,0,0,6,0,0,0,0,0,97,5,2,0,0,2,0,1029,0,0,0,0,5289,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,29235,0,53,0,0,0,8,18,290,1636,29225,0,0,0,0,1,0,3,0,0,0,0,0,0,940,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,303,5,0,0,294,0,398,0,0,0,133,25,0,0,0,0,0,0,0,0,0,987,1,0,0,0,9,0,0,0,0,2,146,19,0,0,1,0,0,0,0,0,6931,1,0,1129,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,249,0,21,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3170,136,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,134,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,92,0,0,0,33,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,145,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2133,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,689,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,461,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,227,0,91,0,0,0,0,3,27,9,226,0,0,0,0,1,0,0,0,0,0,0,0,0,9907,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,111,2,0,0,128,0,282,0,0,0,61,20,0,0,0,0,0,43,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,285,0,0,957,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,462,47,3 +16,0,0,6,0,39,17,0,43,6,5,0,0,2,12,0,727,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4946,39,146,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,345,0,0,0,0,0,1,0,0,0,0,0,10,0,0,134662,39,837,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,23498,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,833,0,7,0,0,3365,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19566,0,51,0,0,0,8,20,281,1255,19556,0,0,0,0,1,0,3,0,0,0,0,0,0,381,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,287,6,0,0,275,0,404,0,0,0,113,18,0,0,0,0,0,0,0,0,0,812,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4794,1,0,796,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,212,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2079,128,3 +4,0,0,5,0,35,21,0,42,0,4,0,0,2,7,0,699,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,259,0,0,0,0,0,1,0,0,0,0,0,2,0,0,116462,35,794,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19865,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,758,0,0,0,0,4907,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,15852,0,69,0,0,0,0,3,279,1598,15842,0,0,0,0,1,0,3,0,0,0,0,0,0,833,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,344,5,0,0,277,0,875,0,0,0,120,22,0,0,0,0,0,0,0,0,0,781,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8350,1,0,1139,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,199,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3252,91,3 +16,0,0,6,0,40,17,0,43,6,5,0,0,2,12,0,744,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4946,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,366,0,0,0,0,0,1,0,0,0,0,0,10,0,0,141345,40,852,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,24582,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,848,0,7,0,0,3711,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,20662,0,53,0,0,0,8,20,282,1258,20653,0,0,0,0,1,0,3,0,0,0,0,0,0,395,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,293,6,0,0,283,0,390,0,0,0,117,19,0,0,0,0,0,0,0,0,0,829,1,0,0,0,9,0,0,0,0,1,144,17,0,0,1,0,0,0,0,0,4815,1,0,800,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,19,0,0,0,0,1,44,218,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2019,129,3 +1,0,0,6,0,34,7,0,35,0,5,0,0,7,6,0,541,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,179,0,0,0,0,0,1,0,0,0,0,0,5,0,0,17905,34,609,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4154,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,600,0,0,1,0,2538,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,676,0,47,0,0,0,1,4,256,1159,662,0,0,0,0,1,0,3,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,187,6,0,0,201,0,280,0,0,0,58,8,0,0,0,0,0,0,0,0,0,607,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3125,1,0,844,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,114,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1769,80,3 +2,0,0,3,0,9,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,69,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,38,3,0,0,58,0,59,0,0,0,28,2,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,6,3 +1,0,0,3,0,11,3,0,16,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,40,0,0,10,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,3,0,0,641,11,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,58,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,29,0,1,0,0,590,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,36,0,0,0,0,3,26,6,59,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,4,168,3,0,0,98,0,253,0,0,0,37,50,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,94,20,0,0,0,0,0,0,0,0,84,0,0,48,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,138,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,87,35,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,209,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,121,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,53,3,0,0,63,0,92,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2123,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,854,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,248,0,30,0,0,0,8,19,29,612,257,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,84,2,0,0,110,0,174,0,0,0,45,4,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,448,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,434,8,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,2,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1087,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,506,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,25,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,72,3,0,0,80,0,156,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,252,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,112,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,64,3 +7,0,0,3,0,32,4,0,21,0,2,0,0,2,2,0,19,0,7,3,0,0,0,5,0,8,0,0,4,0,5,0,0,0,5,0,32,6,0,0,28,0,0,0,1,0,0,2,0,0,0,0,5,142,0,0,0,0,0,1,0,0,0,0,0,2,0,0,668,32,61,0,8,0,0,0,0,0,12,0,0,0,0,0,7,14,131,0,0,5,0,0,0,0,0,76,5,3,0,0,2,0,36,0,0,0,0,578,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,97,0,65,0,0,0,8,7,193,22,100,0,0,0,0,1,0,3,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,10,148,3,0,0,154,0,254,0,0,0,44,11,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,113,21,0,0,0,0,0,0,0,0,670,0,0,38,2,0,1,1,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,2,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,11,0,0,0,0,1,37,155,0,9,8,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,198,32,3 +0,0,0,3,0,25,4,0,20,0,2,0,0,2,2,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,1,0,25,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,1,143,0,0,0,0,0,1,0,0,0,0,0,2,0,0,607,25,52,0,1,0,0,0,0,0,12,0,0,0,0,0,7,14,104,0,0,1,0,0,0,0,0,73,5,3,0,0,2,0,28,0,0,0,0,446,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,76,0,47,0,0,0,0,3,177,10,80,0,0,0,0,1,0,3,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,116,3,0,0,133,0,167,0,0,0,32,2,0,0,0,0,0,0,0,0,0,53,1,0,0,0,8,0,0,0,0,0,106,21,0,0,0,0,0,0,0,0,74,0,0,35,2,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,181,0,2,8,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,154,29,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1014,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,445,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,117,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,23,0,0,0,0,3,24,6,52,0,0,0,0,1,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,72,3,0,0,80,0,153,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,250,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,108,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,232,65,3 +16,0,0,6,0,40,17,0,42,6,5,0,0,2,12,0,709,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,364,0,0,0,0,0,1,0,0,0,0,0,10,0,0,129316,40,816,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,22460,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,813,0,7,0,0,3842,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,18627,0,53,0,0,0,8,20,288,1254,18616,0,0,0,0,1,0,3,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,295,6,0,0,281,0,397,0,0,0,118,13,0,0,0,0,0,0,0,0,0,793,1,0,0,0,9,0,0,0,0,1,144,17,0,0,1,0,0,0,0,0,4724,1,0,792,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,19,0,0,0,0,1,44,219,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2066,125,3 +2,0,0,2,0,16,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,16,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2127,16,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,843,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,426,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,252,0,35,0,0,0,8,19,33,609,263,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,86,2,0,0,113,0,182,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,96,31,0,0,0,0,0,0,0,0,446,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,4,0,0,0,0,1,19,201,0,17,0,0,2,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,445,11,3 +7,0,0,3,0,20,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,9,0,20,6,0,0,30,0,5,0,1,0,0,5,0,0,0,0,0,85,0,0,0,0,0,1,0,0,0,0,0,6,0,0,31797,20,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,6535,0,0,9,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,609,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4006,0,74,0,0,0,0,3,39,223,4020,0,0,0,0,1,0,0,0,0,0,0,0,0,8179,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,182,3,0,0,148,0,253,0,0,0,85,28,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,102,44,0,0,0,0,0,0,0,0,1960,0,0,9204,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,1,29,255,0,4,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2718,70,3 +10,0,0,5,0,40,21,0,46,0,4,0,0,2,14,0,797,0,6,1,0,0,0,8,0,11,9,0,9,0,4,0,0,0,6,5868,40,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,370,0,0,0,0,0,1,0,0,0,0,0,2,0,0,145389,40,922,0,11,0,0,0,0,0,32,0,0,0,0,0,8,18,24905,0,0,6,0,0,0,0,0,97,5,2,0,0,2,0,934,0,0,0,0,5276,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,20563,0,57,0,0,0,8,17,283,1618,20554,0,0,0,0,1,0,3,0,0,0,0,0,0,887,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,304,5,0,0,294,0,425,0,0,0,136,19,0,0,0,0,0,0,0,0,0,890,1,0,0,0,9,0,0,0,0,2,145,19,0,0,1,0,0,0,0,0,6809,1,0,1102,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,11,0,0,0,0,1,46,223,0,21,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3188,131,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,82,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,55,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,63,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,56,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,71,0,0,0,0,0,1,0,0,0,0,0,2,0,0,506,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,67,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,589,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1068,3,0,0,1049,0,462,0,0,0,14,12,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1068,9,0,0,0,0,0,0,0,0,123,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,37,3 +2,0,0,6,0,34,7,0,47,1,10,0,0,6,4,0,575,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,5,0,1,762,34,32,0,0,55,0,1,0,1,0,0,2,0,0,0,0,1,155,0,0,0,0,0,1,0,0,0,0,0,4,0,0,17701,34,659,0,2,0,0,0,0,0,19,0,0,0,0,1,8,24,4071,0,0,1,0,0,1,10,0,278,40,5,0,0,2,0,667,0,0,1,0,2375,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,12,12,12,0,0,0,600,0,58,0,0,0,1,4,255,1191,585,0,0,0,0,1,0,3,0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,91,19,173,6,0,0,190,0,268,0,0,0,47,7,0,0,0,0,0,0,0,0,0,655,1,0,0,0,9,0,0,0,0,0,115,28,0,0,51,0,0,0,0,0,3827,1,0,799,6,0,1,1,1,0,0,0,7,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,5,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,35,54,0,4,12,0,0,0,0,0,81,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1794,47,3 +8,0,0,3,0,20,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,8,0,20,6,0,0,28,0,5,0,1,0,0,5,0,0,0,0,0,84,0,0,0,0,0,1,0,0,0,0,0,6,0,0,34785,20,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,7233,0,0,8,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,634,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4366,0,76,0,0,0,0,3,42,223,4380,0,0,0,0,1,0,0,0,0,0,0,0,0,8800,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,171,3,0,0,147,0,339,0,0,0,81,23,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,102,43,0,0,0,0,0,0,0,0,2124,0,0,10118,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,1,28,253,0,4,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3066,47,3 +4,0,0,5,0,37,16,0,42,0,4,0,0,2,7,0,774,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,4341,37,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,1156,0,0,0,0,0,1,0,0,0,0,0,2,0,0,107369,37,857,0,1,0,0,0,0,0,26,0,0,0,0,0,8,18,18794,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,826,0,0,0,0,4079,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,14597,0,64,0,0,0,0,3,286,1266,14585,0,0,0,0,1,0,3,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,440,5,0,0,261,0,887,0,0,0,99,20,0,0,0,0,0,0,0,0,0,851,1,0,0,0,9,0,0,0,0,0,132,16,0,0,1,0,0,0,0,0,8628,1,0,788,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,13,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,0,0,0,0,0,1,38,185,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3167,86,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,10,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,8,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,132,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,250,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,27,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1092,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,490,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,111,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,23,0,0,0,0,3,24,6,55,0,0,0,0,1,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,74,3,0,0,82,0,155,0,0,0,29,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,92,16,0,0,0,0,0,0,0,0,253,0,0,780,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,107,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,234,66,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1516,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,62,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,617,0,0,0,0,0,15,41,237,0,0,0,0,0,0,0,0,0,0,0,0,0,1664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,20,2,0,0,60,0,87,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,328,0,0,408,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,116,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1427,4,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1230,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,558,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,74,2,0,0,88,0,154,0,0,0,25,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,149,3 +4,0,0,5,0,38,21,0,43,0,4,0,0,2,7,0,701,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,273,0,0,0,0,0,1,0,0,0,0,0,2,0,0,120384,38,799,0,4,0,0,0,0,0,32,0,0,0,0,0,8,18,20572,0,0,4,0,0,0,0,0,90,5,2,0,0,2,0,763,0,0,0,0,6032,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,16400,0,74,0,0,0,0,3,284,1547,16383,0,0,0,0,1,0,3,0,0,0,0,0,0,658,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,708,5,0,0,285,0,964,0,0,0,129,97,0,0,0,0,0,0,0,0,0,784,1,0,0,0,9,0,0,0,0,1,141,19,0,0,1,0,0,0,0,0,9094,1,0,1024,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,3,0,0,0,0,1,42,233,0,5,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3359,148,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,53,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,2,3 +9,0,0,3,0,11,2,0,9,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,1,0,0,3,0,1,0,0,0,1,0,11,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,3,0,0,919,11,36,0,5,0,0,0,0,0,4,0,0,0,0,0,1,4,475,0,0,1,0,0,0,0,0,11,0,1,0,0,2,0,14,0,1,0,0,85,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,29,0,0,0,0,3,31,17,57,0,0,0,0,1,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,71,3,0,0,72,0,147,0,0,0,15,5,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,93,5,0,0,0,0,0,0,0,0,794,0,0,728,0,0,1,0,1,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,361,2,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,12,32,0,5,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,53,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1062,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,462,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,93,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,22,0,0,0,0,3,24,6,56,0,0,0,0,1,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,73,3,0,0,82,0,150,0,0,0,29,4,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,92,16,0,0,0,0,0,0,0,0,253,0,0,779,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,111,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,62,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1022,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,489,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,19,0,0,0,0,3,22,4,51,0,0,0,0,1,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,56,2,0,0,75,0,101,0,0,0,21,1,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,17,0,0,0,0,0,0,0,0,211,0,0,764,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,116,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,229,22,3 +10,0,0,5,0,41,17,0,44,0,4,0,0,2,14,0,783,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5022,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,376,0,0,0,0,0,1,0,0,0,0,0,2,0,0,131986,41,897,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,22908,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,914,0,0,0,0,3586,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19219,0,53,0,0,0,8,19,286,1257,19209,0,0,0,0,1,0,3,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,293,5,0,0,286,0,394,0,0,0,124,29,0,0,0,0,0,0,0,0,0,870,1,0,0,0,9,0,0,0,0,2,146,17,0,0,1,0,0,0,0,0,6369,1,0,791,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,206,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2859,100,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,12,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2143,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,888,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,422,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,247,0,32,0,0,0,8,19,29,615,256,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,81,2,0,0,110,0,177,0,0,0,45,7,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,448,0,0,762,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,437,7,3 +4,0,0,5,0,35,21,0,44,0,4,0,0,2,7,0,770,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,268,0,0,0,0,0,1,0,0,0,0,0,2,0,0,123198,35,867,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,21228,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,829,0,0,0,0,5047,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,16814,0,66,0,0,0,0,3,281,1594,16803,0,0,0,0,1,0,3,0,0,0,0,0,0,811,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,375,5,0,0,274,0,881,0,0,0,118,20,0,0,0,0,0,0,0,0,0,854,1,0,0,0,9,0,0,0,0,0,136,19,0,0,1,0,0,0,0,0,8757,1,0,1127,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,199,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3256,88,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,107,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,119,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,65,0,79,0,0,0,35,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,22,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,32,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +2,0,0,6,0,36,7,0,49,0,10,0,0,6,4,0,676,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,5,0,1,762,36,32,0,0,55,0,1,0,1,0,0,2,0,0,0,0,1,178,0,0,0,0,0,1,0,0,0,0,0,4,0,0,18802,36,761,0,3,0,0,0,0,0,19,0,0,0,0,2,8,24,4291,0,0,1,0,0,1,10,0,278,40,5,0,0,2,0,768,0,0,1,0,3033,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,669,0,60,0,0,0,1,4,265,1203,653,0,0,0,0,1,0,3,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,91,16,176,6,0,0,195,0,279,0,0,0,47,6,0,0,0,0,0,0,0,0,0,758,1,0,0,0,9,0,0,0,0,0,117,28,0,0,51,0,0,0,0,0,4167,1,0,835,6,0,1,1,1,0,0,0,8,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,5,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,37,54,0,4,12,0,0,0,0,0,81,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1946,56,3 +2,0,0,2,0,19,3,0,21,0,2,0,0,0,2,0,75,0,6,1,0,0,0,1,0,1,35,0,0,0,13,0,0,0,3,0,19,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,12,62,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2302,19,143,0,13,0,0,0,0,0,7,0,0,0,0,0,1,6,887,0,0,3,0,0,0,0,0,56,0,2,0,0,2,0,225,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,258,0,41,0,0,0,24,52,33,647,272,0,0,0,0,1,0,0,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,104,2,0,0,122,0,215,0,0,0,45,8,0,0,0,0,0,0,0,0,0,109,1,0,0,0,2,0,0,0,0,13,99,31,0,0,0,0,0,0,0,0,528,0,0,782,0,0,1,0,1,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,373,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,12,0,0,0,0,1,22,201,0,49,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,451,15,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1053,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,462,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,120,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,23,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,74,3,0,0,82,0,154,0,0,0,29,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,92,16,0,0,0,0,0,0,0,0,253,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,107,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,64,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,4,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1009,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,462,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,21,0,0,0,0,3,22,4,52,0,0,0,0,1,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,58,2,0,0,76,0,100,0,0,0,22,3,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,212,0,0,768,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,114,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,234,6,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,134,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,263,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,107,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,55,27,3 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,140,9,21,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,1,0,0,0,0,0,6,0,0,0,0,2,0,8,0,1,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,21,0,0,0,0,3,23,5,25,0,0,0,0,1,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,48,3,0,0,72,0,65,0,0,0,42,4,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,0,91,38,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,73,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,7,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,5,0,0,191,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,117,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,27,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,59,3,0,0,59,0,90,0,0,0,28,6,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,21,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,10,3 +0,0,0,3,0,10,2,0,15,5,3,0,0,0,8,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,10,6,0,0,18,0,0,0,1,0,0,3,0,0,0,0,0,153,0,0,0,0,0,1,0,0,0,0,0,8,0,0,2899,10,61,0,1,0,0,0,0,0,14,0,0,0,1,0,1,5,526,0,0,1,0,0,0,0,0,11,0,5,0,0,2,0,27,0,6,0,0,282,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,335,0,50,0,0,0,0,3,25,14,355,0,0,0,0,1,0,0,0,0,0,0,0,0,845,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,9,147,3,0,0,118,0,121,0,0,0,56,4,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,92,40,0,0,0,0,0,0,0,0,293,0,0,688,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,219,0,1,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,475,19,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,265,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,147,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2065,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,676,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,219,0,91,0,0,0,0,3,27,9,218,0,0,0,0,1,0,0,0,0,0,0,0,0,10140,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,119,2,0,0,130,0,257,0,0,0,63,8,0,0,0,0,0,42,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,280,0,0,935,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,281,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,448,54,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,5,0,38,21,0,45,0,4,0,0,2,7,0,771,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,331,0,0,0,0,0,1,0,0,0,0,0,2,0,0,117098,38,877,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,19963,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,839,0,0,0,0,6604,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,15724,0,71,0,0,0,6,9,285,1622,15707,0,0,0,0,1,0,3,0,0,0,0,0,0,823,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,642,5,0,0,288,0,953,0,0,0,132,81,0,0,0,0,0,0,0,0,0,856,1,0,0,0,9,0,0,0,0,4,144,19,0,0,1,0,0,0,0,0,9110,1,0,1133,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,228,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3407,147,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1245,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,558,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,69,2,0,0,79,0,161,0,0,0,25,1,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,263,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,101,3 +4,0,0,3,0,13,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,13,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,123,13,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,130,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,29,0,0,0,2,3,30,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,58,3,0,0,74,0,91,0,0,0,41,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,17,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,35,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1212,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,540,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,431,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,88,0,154,0,0,0,25,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,264,149,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,54,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,10,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1288,10,58,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,537,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,40,0,0,0,0,3,27,6,97,0,0,0,0,1,0,0,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,81,2,0,0,128,0,120,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,225,0,0,806,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,190,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,287,12,3 +3549,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,138,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2080,11,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,692,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,231,0,96,0,0,0,0,3,31,9,228,0,0,0,0,1,0,0,0,0,0,0,0,0,9865,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,115,2,0,0,133,0,258,0,0,0,63,7,0,0,0,0,0,46,0,0,0,44,1,0,0,0,2,0,0,0,0,1,91,43,0,0,0,0,0,0,0,0,272,0,0,932,0,0,1,0,1,0,0,0,15,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,284,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,446,51,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,81,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,54,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,7,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,63,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,61,0,55,0,0,0,31,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,27,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,53,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,183,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,102,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,57,0,70,0,0,0,27,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,10,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,231,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,114,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,57,3,0,0,74,0,68,0,0,0,43,3,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,36,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +2,0,0,6,0,34,7,0,48,0,10,0,0,6,4,0,608,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,5,0,1,762,34,32,0,0,55,0,1,0,1,0,0,2,0,0,0,0,1,174,0,0,0,0,0,1,0,0,0,0,0,4,0,0,17843,34,692,0,3,0,0,0,0,0,19,0,0,0,0,1,8,24,4128,0,0,1,0,0,1,10,0,278,40,5,0,0,2,0,700,0,0,1,0,2577,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,631,0,57,0,0,0,1,4,257,1202,615,0,0,0,0,1,0,3,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,91,16,170,6,0,0,189,0,274,0,0,0,47,4,0,0,0,0,0,0,0,0,0,689,1,0,0,0,9,0,0,0,0,0,115,28,0,0,51,0,0,0,0,0,3899,1,0,830,6,0,1,1,1,0,0,0,7,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,5,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,35,54,0,4,12,0,0,0,0,0,81,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1854,56,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,54,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,81,0,0,0,0,0,1,0,0,0,0,0,2,0,0,518,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,59,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,858,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,28,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1162,3,0,0,1140,0,463,0,0,0,14,16,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1159,9,0,0,0,0,0,0,0,0,112,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,38,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,65,0,0,0,0,0,1,0,0,0,0,0,2,0,0,568,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,58,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,544,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,56,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,173,3,0,0,83,0,358,0,0,0,13,14,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,91,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,60,3 +3,0,0,3,0,14,9,0,48,0,14,0,0,0,2,0,17,0,7,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,2,0,14,6,0,0,75,0,1,0,1,0,0,1,0,0,0,0,0,102,0,0,0,0,0,1,0,0,0,0,0,8,0,0,4496,14,101,0,2,0,0,0,0,0,10,0,0,0,0,0,1,3,1420,0,0,2,0,0,1,40,0,321,30,3,0,0,2,0,196,0,0,0,0,693,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,780,0,63,0,0,0,0,3,33,458,786,0,0,0,0,1,0,0,0,0,0,0,0,0,727,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,109,3,0,0,103,0,213,0,0,0,39,5,0,0,0,0,0,0,0,0,0,97,1,0,0,0,2,0,0,0,0,1,96,105,0,0,66,0,0,0,0,0,1125,0,0,516,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,1,0,0,0,0,1,16,84,0,2,0,0,0,0,0,0,117,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,758,375,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,4,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1493,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,83,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,622,0,0,0,0,0,19,43,240,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,24,2,0,0,65,0,95,0,0,0,50,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,5,47,0,0,0,0,0,0,0,0,334,0,0,396,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,4,123,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1428,4,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1341,9,58,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,531,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,41,0,0,0,0,3,23,6,101,0,0,0,0,1,0,0,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,125,0,119,0,0,0,65,6,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,227,0,0,822,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,207,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,295,14,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +10,0,0,5,0,42,21,0,47,0,4,0,0,2,14,0,875,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,42,164,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,422,0,0,0,0,0,1,0,0,0,0,0,2,0,0,142926,42,997,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,24248,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,1008,0,0,0,0,5403,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,12,12,12,0,0,0,20173,0,54,0,0,0,8,19,297,1640,20162,0,0,0,0,1,0,3,0,0,0,0,0,0,930,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,319,5,0,0,300,0,492,0,0,0,138,21,0,0,0,0,0,0,0,0,0,969,1,0,0,0,9,0,0,0,0,2,149,19,0,0,1,0,0,0,0,0,7009,1,0,1141,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,11,0,0,0,0,1,48,211,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3212,108,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1280,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,526,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,85,0,39,0,0,0,0,3,23,6,95,0,0,0,0,1,0,0,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,120,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,225,0,0,803,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,192,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,285,15,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,54,3,0,0,58,0,56,0,0,0,28,7,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,54,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,15,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,38,2,0,0,44,0,118,0,0,0,13,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,15,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,36,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,27,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1057,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,466,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,120,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,25,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,73,3,0,0,84,0,157,0,0,0,31,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,94,16,0,0,0,0,0,0,0,0,252,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,104,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,273,3 +4,0,0,5,0,38,21,0,45,0,4,0,0,2,7,0,771,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5706,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,261,0,0,0,0,0,1,0,0,0,0,0,2,0,0,121881,38,877,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,20694,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,839,0,0,0,0,5770,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,16587,0,73,0,0,0,6,9,284,1617,16570,0,0,0,0,1,0,3,0,0,0,0,0,0,815,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,619,5,0,0,283,0,943,0,0,0,127,83,0,0,0,0,0,0,0,0,0,856,1,0,0,0,9,0,0,0,0,4,139,19,0,0,1,0,0,0,0,0,9024,1,0,1122,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,195,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3322,149,3 +6,0,0,3,0,19,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,8,0,19,6,0,0,28,0,5,0,1,0,0,5,0,0,0,0,0,85,0,0,0,0,0,1,0,0,0,0,0,6,0,0,33965,19,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,7029,0,0,8,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,463,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4280,0,75,0,0,0,0,3,38,222,4294,0,0,0,0,1,0,0,0,0,0,0,0,0,8561,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,137,3,0,0,144,0,227,0,0,0,81,13,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,101,43,0,0,0,0,0,0,0,0,2094,0,0,9865,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,3,0,0,0,0,1,27,256,0,4,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2972,52,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,256,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,27,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1223,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,548,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,157,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,2,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +0,0,0,4,0,38,23,0,32,0,2,0,0,2,2,0,590,0,6,3,0,0,0,6,0,10,0,0,4,0,1,0,0,0,4,945,38,6,0,0,22,0,0,0,1,0,0,3,0,0,0,0,1,188,0,0,0,0,0,1,0,0,0,0,0,3,0,0,27238,38,687,0,2,0,0,0,0,0,36,0,0,0,0,0,8,20,4789,0,0,4,0,0,0,0,0,91,5,5,0,0,2,0,612,0,0,0,0,1596,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,3641,0,58,0,0,0,0,3,275,601,3618,0,0,0,0,1,0,4,0,0,0,0,0,0,741,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,10,206,4,0,0,256,0,342,0,0,0,101,3,0,0,0,0,0,0,0,0,0,657,1,0,0,0,9,0,0,0,0,1,121,28,0,0,0,0,0,0,0,0,2019,1,0,490,13,0,1,1,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,1,0,0,0,0,1,42,193,0,3,12,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,849,49,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,175,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,104,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,57,0,78,0,0,0,27,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,10,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,68,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1260,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,490,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,87,0,39,0,0,0,0,3,23,6,97,0,0,0,0,1,0,0,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,120,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,225,0,0,806,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,204,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,285,13,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1037,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,457,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,20,0,0,0,0,3,23,4,55,0,0,0,0,1,0,0,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,61,2,0,0,82,0,100,0,0,0,28,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,91,19,0,0,0,0,0,0,0,0,215,0,0,780,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,8,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +4,0,0,6,0,38,7,0,33,4,5,0,0,2,9,0,501,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,6,898,38,36,0,0,38,0,3,0,1,0,0,3,0,0,0,0,4,175,1,0,0,0,0,1,0,0,0,0,0,9,0,0,31028,38,584,0,7,0,0,0,0,0,22,0,0,0,0,0,8,20,6264,0,0,6,0,0,0,0,0,94,5,6,0,0,2,0,571,0,6,0,0,3052,0,0,0,0,15,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,2868,0,69,0,0,0,6,19,244,1133,2862,0,0,0,0,1,0,4,0,0,0,0,0,0,483,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,19,215,6,0,0,217,0,333,0,0,0,76,8,0,0,0,0,0,0,0,0,0,563,1,0,0,0,9,0,0,0,0,1,122,16,0,0,1,0,0,0,0,0,3063,1,0,895,5,0,1,1,1,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,5,363,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,16,0,0,0,0,1,44,121,0,17,12,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1789,75,3 +0,0,0,3,0,12,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1072,12,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,481,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,119,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,27,0,0,0,0,3,32,6,56,0,0,0,0,1,0,0,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,79,3,0,0,86,0,157,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,92,16,0,0,0,0,0,0,0,0,252,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,101,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,246,65,3 +10,0,0,5,0,40,21,0,47,0,4,0,0,2,14,0,833,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,6,5868,40,46,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,377,0,0,0,0,0,1,0,0,0,0,0,2,0,0,146818,40,957,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,24940,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,968,0,0,0,0,5285,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,20708,0,54,0,0,0,8,16,282,1623,20702,0,0,0,0,1,0,3,0,0,0,0,0,0,943,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,300,5,0,0,292,0,452,0,0,0,135,19,0,0,0,0,0,0,0,0,0,927,1,0,0,0,9,0,0,0,0,2,144,19,0,0,1,0,0,0,0,0,6766,1,0,1138,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,10,0,0,0,2,1,46,182,0,20,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3168,271,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,5,0,0,75,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,38,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,6,3 +2,0,0,3,0,9,2,0,18,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,2,0,0,887,9,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,439,0,0,1,0,0,0,0,0,8,0,1,0,0,2,0,15,0,0,0,0,81,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,33,0,25,0,0,0,0,3,23,4,45,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,75,4,0,0,78,0,106,0,0,0,18,3,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,91,8,0,0,0,0,0,0,0,0,781,0,0,731,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,90,0,1,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,227,17,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,125,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,137,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,71,0,90,0,0,0,41,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,35,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,92,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,111,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,35,0,0,0,0,1,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,53,3,0,0,56,0,91,0,0,0,26,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,19,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,8,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1214,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,541,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,31,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,88,0,154,0,0,0,25,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,366,0,0,0,0,0,1,0,0,0,0,0,10,0,0,127718,39,871,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,22338,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,866,0,7,0,0,3833,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18318,0,52,0,0,0,6,19,281,1257,18308,0,0,0,0,1,0,3,0,0,0,0,0,0,381,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,279,6,0,0,280,0,387,0,0,0,120,14,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,1,143,17,0,0,1,0,0,0,0,0,4963,1,0,795,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,223,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2134,135,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,3,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1117,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,483,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,29,0,0,0,0,3,25,72,67,0,0,0,0,1,0,0,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,73,2,0,0,81,0,122,0,0,0,25,3,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,17,0,0,0,0,0,0,0,0,216,0,0,764,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,3,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,93,0,1,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,251,8,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1205,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,525,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,2,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,157,0,0,0,27,10,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,229,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,149,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,146,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2375,10,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,742,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,256,0,92,0,0,0,0,3,27,9,253,0,0,0,0,1,0,0,0,0,0,0,0,0,10240,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,115,2,0,0,132,0,253,0,0,0,65,9,0,0,0,0,0,45,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,294,0,0,1017,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,284,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,474,50,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,1,0,0,889,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,473,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,19,0,0,0,0,3,21,10,41,0,0,0,0,1,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,53,2,0,0,71,0,93,0,0,0,19,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,63,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,2,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1363,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,188,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,618,0,0,0,0,0,15,43,226,0,0,0,0,0,0,0,0,0,0,0,0,0,1630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,19,2,0,0,60,0,90,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,314,0,0,356,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,115,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,5,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1360,9,58,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,536,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,94,0,40,0,0,0,0,3,23,6,103,0,0,0,0,1,0,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,125,0,119,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,231,0,0,831,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,190,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,299,12,3 +10,0,0,5,0,41,17,0,47,0,4,0,0,2,14,0,889,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5024,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,350,0,0,0,0,0,1,0,0,0,0,0,2,0,0,131574,41,1008,0,12,0,0,0,0,0,28,0,0,0,0,0,8,18,22946,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,1022,0,0,0,0,3481,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,19023,0,53,0,0,0,8,17,286,1262,19013,0,0,0,0,1,0,3,0,0,0,0,0,0,372,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,293,5,0,0,281,0,412,0,0,0,119,17,0,0,0,0,0,0,0,0,0,979,1,0,0,0,9,0,0,0,0,2,141,17,0,0,1,0,0,0,0,0,6742,1,0,795,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,168,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2900,163,3 +2,0,0,3,0,9,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,5,0,0,81,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,77,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,57,3,0,0,52,0,52,0,0,0,22,3,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,91,18,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,14,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,7,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1320,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,528,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,39,0,0,0,0,3,23,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,119,0,0,0,65,0,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,229,0,0,819,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,190,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,292,13,3 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,3,0,0,138,9,21,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,1,0,0,0,0,0,6,0,0,0,0,2,0,8,0,1,0,0,354,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,21,0,0,0,0,3,23,5,25,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,47,3,0,0,71,0,69,0,0,0,41,3,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,0,91,37,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,73,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,7,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,51,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1291,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,509,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,87,0,38,0,0,0,0,3,23,6,97,0,0,0,0,1,0,0,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,80,2,0,0,124,0,119,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,226,0,0,815,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,191,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,286,14,3 +0,0,0,3,0,18,2,0,15,2,3,0,0,0,5,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,6,0,18,6,0,0,22,0,0,0,1,0,0,5,0,0,0,0,0,105,0,0,0,0,0,1,0,0,0,0,0,5,0,0,21389,18,65,0,1,0,0,0,0,0,21,0,0,0,0,0,1,7,2209,0,0,6,0,0,0,0,0,13,0,8,0,0,2,0,20,0,3,0,0,6088,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1385,0,74,0,0,0,0,3,35,7766,1399,0,0,0,0,1,0,0,0,0,0,0,0,0,2136,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,6,176,3,0,0,154,0,266,0,0,0,80,17,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,100,48,0,0,0,0,0,0,0,0,853,0,0,1814,0,0,1,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,24,284,0,1,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1315,49,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1228,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,556,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,90,0,157,0,0,0,27,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,229,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,149,3 +10,0,0,5,0,41,21,0,44,0,4,0,0,2,14,0,748,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,6,5868,41,152,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,383,0,0,0,0,0,1,0,0,0,0,0,2,0,0,149541,41,866,0,8,0,0,0,0,0,32,0,0,0,0,0,8,18,25704,0,0,6,0,0,0,0,0,91,5,2,0,0,2,0,880,0,0,0,0,5083,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,21329,0,53,0,0,0,6,17,290,1631,21319,0,0,0,0,1,0,3,0,0,0,0,0,0,905,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,318,5,0,0,299,0,421,0,0,0,140,13,0,0,0,0,0,0,0,0,0,839,1,0,0,0,9,0,0,0,0,1,149,19,0,0,1,0,0,0,0,0,6876,1,0,1130,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,9,0,0,0,0,1,47,213,0,18,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3230,119,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,53,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1215,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,543,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,88,0,154,0,0,0,25,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,121,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,134,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,72,0,90,0,0,0,41,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,35,3 +4,0,0,5,0,37,21,0,46,0,4,0,0,2,7,0,785,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,37,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,323,0,0,0,0,0,1,0,0,0,0,0,2,0,0,121950,37,892,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,20749,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,853,0,0,0,0,5812,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,16544,0,69,0,0,0,6,9,276,1623,16528,0,0,0,0,1,0,3,0,0,0,0,0,0,829,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,588,5,0,0,285,0,947,0,0,0,132,87,0,0,0,0,0,0,0,0,0,871,1,0,0,0,9,0,0,0,0,4,143,19,0,0,1,0,0,0,0,0,9977,1,0,1137,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,12,0,0,0,6,1,41,202,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3644,148,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,63,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,73,0,0,0,0,0,1,0,0,0,0,0,2,0,0,563,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,59,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,642,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,55,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,172,3,0,0,83,0,350,0,0,0,13,10,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,95,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,57,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1243,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,531,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,90,2,0,0,91,0,174,0,0,0,32,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,35,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,258,150,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1054,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,474,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,257,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,23,0,0,0,0,3,24,6,53,0,0,0,0,1,0,0,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,71,3,0,0,80,0,158,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,251,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,112,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,231,65,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1316,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,522,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,39,0,0,0,0,3,23,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,76,2,0,0,122,0,118,0,0,0,63,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,89,49,0,0,0,0,0,0,0,0,229,0,0,819,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,189,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,290,13,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,7,0,0,223,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,139,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,32,0,0,0,2,4,26,6,40,0,0,0,0,1,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,57,3,0,0,68,0,83,0,0,0,38,7,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,25,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,11,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,250,0,0,0,22,8,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,27,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1248,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,538,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,90,0,27,0,0,0,0,3,31,5,103,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,95,2,0,0,94,0,175,0,0,0,31,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,16,0,0,0,0,0,0,0,0,225,0,0,795,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,17,78,0,4,0,0,2,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,260,150,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,181,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,130,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,57,0,88,0,0,0,27,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,11,3 +5,0,0,3,0,12,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,36,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,5,0,0,317,12,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,359,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,38,0,0,0,0,3,27,7,60,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,97,3,0,0,101,0,198,0,0,0,40,9,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,95,20,0,0,0,0,0,0,0,0,79,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,146,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,12,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,53,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,119,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,53,3,0,0,63,0,93,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,57,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,8,0,46,16,0,57,0,12,0,0,6,7,0,1193,0,7,2,0,0,0,9,0,11,6,0,22,0,15,0,0,0,6,790,46,6,0,0,62,0,1,0,1,0,0,14,0,0,0,0,15,332,0,0,0,0,0,1,0,0,0,0,0,7,0,0,46661,46,1412,0,35,0,0,0,0,0,63,0,0,0,0,0,10,82,10891,0,0,6,0,0,0,0,0,274,20,24,1,0,2,0,1306,0,2,42,0,4795,0,0,0,0,0,0,2,0,8,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,924,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,12,12,12,0,0,0,4183,0,138,0,0,0,34,34,480,628,4146,0,0,0,0,1,0,4,0,0,0,0,0,0,3135,0,0,0,0,0,0,0,0,0,0,0,0,14,1,0,0,0,0,0,1,0,84,18,274,8,0,0,395,0,397,0,0,0,226,22,0,0,0,0,0,0,0,0,0,1298,1,0,0,0,11,0,0,0,0,2,130,138,0,0,51,0,0,0,0,0,5762,1,0,605,12,0,1,1,1,0,0,0,23,0,1,0,13,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,12,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,81,0,0,0,8,1,52,433,0,42,12,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3493,260,3 +1,0,0,6,0,34,7,0,35,0,5,0,0,7,6,0,541,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,178,0,0,0,0,0,1,0,0,0,0,0,5,0,0,19203,34,609,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4439,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,600,0,0,1,0,2811,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,734,0,46,0,0,0,1,4,256,1159,720,0,0,0,0,1,0,3,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,186,6,0,0,201,0,269,0,0,0,58,4,0,0,0,0,0,0,0,0,0,607,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3360,1,0,813,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,110,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1909,74,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,76,2,0,0,91,0,244,0,0,0,22,9,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,112,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,25,3 +3,0,0,2,0,11,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,11,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1249,11,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,556,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,93,0,27,0,0,0,6,15,28,21,108,0,0,0,0,1,0,0,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,72,2,0,0,82,0,161,0,0,0,25,2,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,91,15,0,0,0,0,0,0,0,0,266,0,0,798,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,6,0,0,0,0,1,13,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,271,102,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,87,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,88,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,3,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,46,3,0,0,57,0,88,0,0,0,27,9,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,8,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,125,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,93,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,1,8,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1218,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,531,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,70,2,0,0,79,0,161,0,0,0,25,4,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,261,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,263,101,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,74,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1269,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,501,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,85,0,38,0,0,0,0,3,23,6,95,0,0,0,0,1,0,0,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,120,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,223,0,0,807,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,203,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,281,13,3 +0,0,0,3,0,11,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1125,11,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,500,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,232,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,26,0,0,0,0,3,28,6,59,0,0,0,0,1,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,78,3,0,0,85,0,146,0,0,0,29,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,93,16,0,0,0,0,0,0,0,0,255,0,0,787,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,102,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,244,64,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,58,0,0,0,0,0,1,0,0,0,0,0,2,0,0,444,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,62,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,452,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1070,3,0,0,1062,0,304,0,0,0,14,7,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1081,9,0,0,0,0,0,0,0,0,97,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,30,3 +10,0,0,5,0,40,17,0,45,0,4,0,0,2,14,0,798,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5022,40,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,379,0,0,0,0,0,1,0,0,0,0,0,2,0,0,125068,40,911,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,21962,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,927,0,0,0,0,3737,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,18075,0,52,0,0,0,8,21,279,1255,18066,0,0,0,0,1,0,3,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,275,5,0,0,278,0,400,0,0,0,119,25,0,0,0,0,0,0,0,0,0,886,1,0,0,0,9,0,0,0,0,2,140,17,0,0,1,0,0,0,0,0,6515,1,0,781,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,19,0,0,0,0,1,46,210,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2952,127,3 +12,0,0,5,0,38,34,0,53,0,4,0,0,2,13,0,1200,0,6,1,0,0,0,8,0,10,0,0,8,0,3,0,0,0,2,10258,38,56,0,0,22,0,1,0,1,0,0,2,0,0,0,0,3,410,0,0,0,0,0,1,0,0,0,0,0,2,0,0,201289,38,1368,0,8,0,0,0,0,0,56,0,0,0,0,0,8,19,40163,0,0,2,0,0,0,0,0,101,5,4,1,0,2,0,1317,0,0,0,0,5611,0,0,0,0,6,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,12,12,12,0,0,0,37824,0,51,0,0,0,4,7,315,1257,37808,0,0,0,0,1,0,4,0,0,0,0,0,0,1205,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,356,5,0,0,342,0,458,0,0,0,175,32,0,0,0,0,0,0,0,0,0,1312,1,0,0,0,9,0,0,0,0,3,153,29,0,0,1,0,0,0,0,0,8723,1,0,595,26,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,26,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,9,0,0,0,4,1,40,236,0,9,12,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2636,92,3 +3,0,0,3,0,13,3,0,22,0,8,0,0,0,2,0,17,0,7,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,2,0,13,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,0,98,0,0,0,0,0,1,0,0,0,0,0,4,0,0,4293,13,55,0,2,0,0,0,0,0,6,0,0,0,0,0,1,3,1384,0,0,2,0,0,1,14,0,126,20,1,0,0,2,0,72,0,0,0,0,668,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,733,0,37,0,0,0,0,3,29,285,745,0,0,0,0,1,0,0,0,0,0,0,0,0,618,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,103,3,0,0,91,0,199,0,0,0,30,3,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,95,43,0,0,44,0,0,0,0,0,1113,0,0,456,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,1,0,0,0,0,1,15,85,0,2,0,0,0,0,0,0,55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,680,316,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,1,0,0,1,0,1,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,221,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,111,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,31,0,0,0,2,4,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,53,3,0,0,63,0,94,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,12,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,8,2,0,17,0,2,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,8,52,0,0,7,0,2,0,1,0,0,2,0,0,0,0,0,55,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1177,8,51,0,1,0,0,0,0,0,12,0,0,0,0,0,1,7,483,0,0,0,0,0,0,0,0,10,0,4,0,0,2,0,33,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,65,0,32,0,0,0,0,3,22,7,75,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,19,3,82,3,0,0,89,0,150,0,0,0,28,4,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,0,91,17,0,0,0,0,0,0,0,0,289,0,0,798,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,189,0,0,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,263,65,3 +2362,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,125,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1813,11,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,596,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,9,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,2362,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,172,0,65,0,0,0,0,3,31,9,171,0,0,0,0,1,0,0,0,0,0,0,0,0,6907,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,91,2,0,0,131,0,237,0,0,0,61,10,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,91,43,0,0,0,0,0,0,0,0,258,0,0,944,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,279,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,380,37,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2142,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,873,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,399,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,248,0,30,0,0,0,8,19,29,612,257,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,85,2,0,0,110,0,173,0,0,0,45,4,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,447,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,434,8,3 +2,0,0,7,0,41,12,0,68,1,11,0,0,6,4,0,746,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,4,1014,41,6,0,0,69,0,1,0,1,0,0,1,0,0,0,0,1,256,0,0,0,0,0,1,0,0,0,0,0,6,0,0,48497,41,853,0,4,0,0,0,0,0,20,0,0,0,0,0,8,26,9155,0,0,4,0,0,1,13,0,306,35,2,0,0,2,0,863,0,0,6,0,3835,0,0,0,0,2,2,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,4886,0,46,0,0,0,2,5,313,1528,4875,0,0,0,0,1,0,5,0,0,3,0,0,0,455,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,86,19,270,7,0,0,296,0,296,0,0,0,131,2,0,0,0,0,0,0,0,0,0,853,1,0,0,0,9,0,0,0,0,0,184,39,0,0,42,0,0,0,0,0,4703,1,0,1022,10,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,10,361,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,9,0,0,0,0,1,45,155,0,5,12,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2225,404,3 +2,0,0,5,0,36,21,0,42,0,4,0,0,2,7,0,752,0,7,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5704,36,64,0,0,22,0,0,0,1,0,0,1,0,0,0,0,1,254,0,0,0,0,0,1,0,0,0,0,0,2,0,0,120349,36,851,0,2,0,0,0,0,0,32,0,0,0,0,0,8,17,19467,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,811,0,0,0,0,3850,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,18256,0,44,0,0,0,0,3,287,794,18237,0,0,0,0,1,0,3,0,0,0,0,0,0,834,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,1268,5,0,0,1271,0,576,0,0,0,118,17,0,0,0,0,0,0,0,0,0,835,1,0,0,0,9,0,0,0,0,1,1127,19,0,0,1,0,0,0,0,0,3636,1,0,422,16,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,1,0,0,0,0,1,37,209,0,3,12,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1376,98,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,10,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,22,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,29,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,92,0,263,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,27,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,26,3 +4,0,0,5,0,42,21,0,42,0,4,0,0,2,8,0,639,0,6,1,0,0,0,8,0,11,0,0,6,0,0,0,0,0,9,5704,42,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,267,0,0,0,0,0,1,0,0,0,0,0,2,0,0,33473,42,737,0,4,0,0,0,0,0,32,0,0,0,0,0,8,18,6096,0,0,9,0,0,0,0,0,90,5,2,0,0,2,0,690,0,0,0,0,6259,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,1755,0,75,0,0,0,0,3,281,1601,1737,0,0,0,0,1,0,3,0,0,0,0,0,0,819,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,637,5,0,0,296,0,943,0,0,0,143,91,0,0,0,0,0,0,0,0,0,722,1,0,0,0,9,0,0,0,0,1,144,19,0,0,1,0,0,0,0,0,4462,1,0,1122,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,360,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,3,0,0,0,0,1,51,194,0,5,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3837,167,3 +5,0,0,4,0,37,13,0,37,0,3,0,0,2,3,0,719,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2318,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,247,0,0,0,0,0,1,0,0,0,0,0,4,0,0,65398,37,809,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,12023,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,757,0,1,0,0,3046,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,8144,0,46,0,0,0,2,7,266,1184,8120,0,0,0,0,1,0,3,0,0,0,0,0,0,683,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,236,4,0,0,279,0,356,0,0,0,127,13,0,0,0,0,0,0,0,0,0,783,1,0,0,0,10,0,0,0,0,1,131,36,0,0,0,0,0,0,0,0,4352,1,0,1473,14,0,1,1,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1946,49,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,4,0,14,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,1,0,0,446,14,34,0,3,0,0,0,0,0,6,0,0,0,0,0,1,3,102,0,0,4,0,0,0,0,0,9,0,1,0,0,2,0,10,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,86,0,34,0,0,0,0,3,31,6,100,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,87,2,0,0,92,0,176,0,0,0,33,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,94,16,0,0,0,0,0,0,0,0,48,0,0,72,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,18,36,0,3,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,97,147,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,48,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,73,0,0,0,0,0,1,0,0,0,0,0,2,0,0,588,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,59,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,680,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,55,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,177,3,0,0,83,0,455,0,0,0,13,16,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,108,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,63,3 +0,0,0,3,0,26,4,0,20,0,2,0,0,2,2,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,1,0,26,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,1,141,0,0,0,0,0,1,0,0,0,0,0,2,0,0,600,26,52,0,1,0,0,0,0,0,12,0,0,0,0,0,7,14,108,0,0,1,0,0,0,0,0,73,5,3,0,0,2,0,28,0,0,0,0,434,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,77,0,46,0,0,0,0,3,181,10,81,0,0,0,0,1,0,3,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,120,3,0,0,136,0,168,0,0,0,32,2,0,0,0,0,0,0,0,0,0,53,1,0,0,0,8,0,0,0,0,0,107,21,0,0,0,0,0,0,0,0,75,0,0,35,2,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,0,0,0,0,0,1,27,151,0,2,8,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,155,28,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,192,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,130,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,58,3,0,0,57,0,86,0,0,0,27,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,11,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1316,9,58,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,515,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,39,0,0,0,0,3,23,6,100,0,0,0,0,1,0,0,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,125,0,119,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,229,0,0,823,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,189,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,292,14,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,24,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,32,0,0,0,0,3,26,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,273,0,0,0,22,4,0,0,0,0,0,1,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,27,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,100,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,63,28,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,86,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,97,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,3,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,46,3,0,0,57,0,87,0,0,0,27,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,8,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2138,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,863,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,421,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,249,0,30,0,0,0,8,19,29,614,258,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,82,2,0,0,110,0,176,0,0,0,45,9,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,449,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,437,8,3 +0,0,0,3,0,10,2,0,3,0,3,0,0,0,3,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,140,10,21,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,1,0,0,0,0,0,6,0,0,0,0,2,0,8,0,1,0,0,91,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,24,0,0,0,0,3,27,5,26,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,50,3,0,0,74,0,69,0,0,0,41,5,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,0,92,37,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,73,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,7,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1382,10,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,550,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,94,0,40,0,0,0,0,3,27,6,104,0,0,0,0,1,0,0,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,82,2,0,0,127,0,120,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,232,0,0,834,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,193,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,306,10,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1098,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,496,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,120,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,23,0,0,0,0,3,24,6,55,0,0,0,0,1,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,74,3,0,0,84,0,156,0,0,0,31,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,94,16,0,0,0,0,0,0,0,0,253,0,0,780,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,104,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,272,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,3,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1154,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,481,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,53,0,29,0,0,0,0,3,25,72,71,0,0,0,0,1,0,0,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,81,0,126,0,0,0,25,4,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,17,0,0,0,0,0,0,0,0,221,0,0,780,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,3,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,93,0,1,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,8,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1298,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,517,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,39,0,0,0,0,3,23,6,98,0,0,0,0,1,0,0,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,120,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,811,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,200,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,288,15,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +8,0,0,3,0,31,4,0,21,0,2,0,0,2,2,0,19,0,7,3,0,0,0,5,0,8,0,0,4,0,5,0,0,0,5,0,31,6,0,0,28,0,0,0,1,0,0,2,0,0,0,0,5,139,0,0,0,0,0,1,0,0,0,0,0,2,0,0,647,31,61,0,8,0,0,0,0,0,12,0,0,0,0,0,7,14,111,0,0,5,0,0,0,0,0,76,5,3,0,0,2,0,36,0,0,0,0,532,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,95,0,63,0,0,0,8,7,189,22,98,0,0,0,0,1,0,3,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,10,137,3,0,0,151,0,234,0,0,0,44,6,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,112,21,0,0,0,0,0,0,0,0,662,0,0,37,2,0,1,1,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,11,0,0,0,0,1,36,157,0,9,8,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,181,32,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,14,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,422,14,35,0,4,0,0,0,0,0,6,0,0,0,0,0,1,3,93,0,0,3,0,0,0,0,0,10,0,1,0,0,2,0,11,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,83,0,25,0,0,0,0,3,31,5,96,0,0,0,0,1,0,0,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,96,2,0,0,94,0,179,0,0,0,31,10,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,16,0,0,0,0,0,0,0,0,45,0,0,72,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,17,78,0,4,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,74,150,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1240,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,534,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,28,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,92,0,171,0,0,0,28,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,17,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,34,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,153,3 +8,0,0,3,0,20,2,0,7,3,3,0,0,0,6,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,8,0,20,6,0,0,28,0,5,0,1,0,0,5,0,0,0,0,0,85,0,0,0,0,0,1,0,0,0,0,0,6,0,0,32676,20,59,0,1,0,0,0,0,0,21,0,0,0,1,0,1,7,6757,0,0,8,0,0,0,0,0,13,0,8,0,0,2,0,14,0,4,0,0,695,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4108,0,76,0,0,0,0,3,42,217,4128,0,0,0,0,1,0,0,0,0,0,0,0,0,8260,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,178,3,0,0,147,0,301,0,0,0,81,24,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,102,43,0,0,0,0,0,0,0,0,2052,0,0,9470,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,0,0,0,0,0,1,28,253,0,1,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2860,66,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,66,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1307,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,509,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,40,0,0,0,0,3,23,6,101,0,0,0,0,1,0,0,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,120,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,229,0,0,817,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,201,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,291,12,3 +0,0,0,2,0,9,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,305,9,30,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,35,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,6,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,27,0,0,0,0,3,23,5,52,0,0,0,0,1,0,0,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,73,2,0,0,103,0,124,0,0,0,51,1,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,41,0,0,0,0,0,0,0,0,34,0,0,49,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,116,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,65,15,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1268,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,80,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,609,0,0,0,0,0,11,43,216,0,0,0,0,0,0,0,0,0,0,0,0,0,1585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,16,2,0,0,56,0,94,0,0,0,48,7,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,44,0,0,0,0,0,0,0,0,308,0,0,332,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,114,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1382,5,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,192,10,27,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,125,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,27,0,0,0,2,4,25,7,39,0,0,0,0,1,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,55,3,0,0,58,0,95,0,0,0,28,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,20,3 +16,0,0,6,0,39,17,0,42,6,5,0,0,2,12,0,691,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,374,0,0,0,0,0,1,0,0,0,0,0,10,0,0,131006,39,799,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,22728,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,796,0,7,0,0,3622,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,19070,0,51,0,0,0,6,19,281,1252,19060,0,0,0,0,1,0,3,0,0,0,0,0,0,368,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,281,6,0,0,275,0,382,0,0,0,113,14,0,0,0,0,0,0,0,0,0,775,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4551,1,0,787,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,222,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1991,132,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,67,0,0,0,0,0,1,0,0,0,0,0,2,0,0,472,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,71,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,520,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,32,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1014,3,0,0,1008,0,286,0,0,0,14,9,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1027,9,0,0,0,0,0,0,0,0,102,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,29,3 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,111,8,37,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,17,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,15,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,37,0,0,0,0,3,22,4,36,0,0,0,0,1,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,78,0,96,0,0,0,18,1,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,89,13,0,0,0,0,0,0,0,0,25,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,76,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,75,8,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1470,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,62,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,616,0,0,0,0,0,11,43,234,0,0,0,0,0,0,0,0,0,0,0,0,0,1653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,19,2,0,0,57,0,90,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,45,0,0,0,0,0,0,0,0,322,0,0,392,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,114,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1404,5,3 +3,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,198,10,27,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,22,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,132,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,33,0,0,0,2,4,25,7,41,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,56,3,0,0,58,0,97,0,0,0,28,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,20,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,783,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,394,0,0,0,0,0,1,0,0,0,0,0,2,0,0,134717,41,906,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,23097,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,919,0,0,0,0,5761,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18783,0,53,0,0,0,8,17,290,1636,18773,0,0,0,0,1,0,3,0,0,0,0,0,0,940,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,323,5,0,0,299,0,408,0,0,0,139,23,0,0,0,0,0,0,0,0,0,875,1,0,0,0,9,0,0,0,0,2,149,19,0,0,1,0,0,0,0,0,6968,1,0,1138,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,175,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3302,143,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1322,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,540,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,39,0,0,0,0,3,23,6,98,0,0,0,0,1,0,0,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,118,0,0,0,65,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,815,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,190,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,284,13,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1277,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,527,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,85,0,39,0,0,0,0,3,23,6,95,0,0,0,0,1,0,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,120,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,225,0,0,803,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,190,0,0,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,288,15,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,182,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,110,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,57,0,70,0,0,0,27,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,10,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1501,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,62,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,615,0,0,0,0,0,11,41,235,0,0,0,0,0,0,0,0,0,0,0,0,0,1665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,17,2,0,0,57,0,88,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,45,0,0,0,0,0,0,0,0,325,0,0,404,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,116,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1409,4,3 +1,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,256,10,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,37,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,29,0,0,0,0,3,26,4,52,0,0,0,0,1,0,0,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,67,2,0,0,83,0,263,0,0,0,22,5,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,92,17,0,0,0,0,0,0,0,0,35,0,0,51,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,59,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,71,27,3 +0,0,0,3,0,14,2,0,15,0,3,0,0,0,3,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,14,6,0,0,16,0,3,0,1,0,0,3,0,0,0,0,0,117,0,0,0,0,0,1,0,0,0,0,0,3,0,0,3397,14,59,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,947,0,0,5,0,0,0,0,0,12,0,5,0,0,2,0,17,0,1,0,0,462,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,325,0,44,0,0,0,0,3,29,157846,335,0,0,0,0,1,0,0,0,0,0,0,0,0,816,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,123,3,0,0,124,0,122,0,0,0,61,14,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,96,33,0,0,0,0,0,0,0,0,462,0,0,1350,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,19,218,0,1,0,0,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,616,14,3 +1,0,0,5,0,37,20,0,43,0,4,0,0,2,3,1,869,0,6,1,0,0,0,9,0,11,0,0,5,0,1,0,0,0,2,5769,37,32,0,0,24,0,0,0,1,0,0,1,0,0,0,0,1,362,0,0,0,0,0,1,0,0,0,0,0,2,0,0,139325,37,960,0,2,0,0,0,0,0,30,0,0,0,0,0,9,20,22727,0,0,2,0,0,0,0,0,95,5,2,0,0,2,0,818,0,0,0,0,3778,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,21509,0,75,0,0,0,0,3,314,770,21469,0,0,0,0,1,0,3,0,0,0,0,0,0,783,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,274,5,0,0,280,0,369,0,0,0,120,19,0,0,0,0,0,0,0,0,0,948,1,0,0,0,10,0,0,0,0,1,140,18,0,0,1,0,0,0,0,0,2702,1,0,393,17,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,36,36,0,0,3,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,1,0,0,0,0,29,39,228,0,3,14,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,842,63,3 +10,0,0,5,0,41,21,0,46,0,4,0,0,2,14,0,818,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5870,41,162,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,353,0,0,0,0,0,1,0,0,0,0,0,2,0,0,139690,41,944,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,23701,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,956,0,0,0,0,5876,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,19527,0,54,0,0,0,8,17,290,1645,19517,0,0,0,0,1,0,3,0,0,0,0,0,0,945,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,300,5,0,0,294,0,472,0,0,0,134,18,0,0,0,0,0,0,0,0,0,911,1,0,0,0,9,0,0,0,0,2,144,19,0,0,1,0,0,0,0,0,6993,1,0,1152,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,213,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3249,171,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,53,0,0,0,28,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1236,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,544,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,28,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,67,2,0,0,79,0,159,0,0,0,25,5,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,258,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,270,101,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1310,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,534,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,40,0,0,0,0,3,23,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,120,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,813,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,205,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,293,12,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,62,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,2,3 +4,0,0,5,0,37,21,0,44,0,4,0,0,2,7,0,716,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,4,5704,37,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,266,0,0,0,0,0,1,0,0,0,0,0,2,0,0,119955,37,815,0,4,0,0,0,0,0,32,0,0,0,0,0,8,18,20509,0,0,4,0,0,0,0,0,90,5,2,0,0,2,0,778,0,0,0,0,5794,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,16424,0,71,0,0,0,0,3,277,1588,16408,0,0,0,0,1,0,3,0,0,0,0,0,0,793,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,681,5,0,0,280,0,952,0,0,0,126,90,0,0,0,0,0,0,0,0,0,800,1,0,0,0,9,0,0,0,0,1,137,19,0,0,1,0,0,0,0,0,8995,1,0,1113,16,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,3,0,0,0,0,1,41,228,0,5,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3375,150,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1069,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,485,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,20,0,0,0,0,3,26,4,52,0,0,0,0,1,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,74,2,0,0,79,0,112,0,0,0,23,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,91,16,0,0,0,0,0,0,0,0,210,0,0,759,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,111,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,230,8,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,54,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,10,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1246,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,571,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,30,0,0,0,0,3,31,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,82,2,0,0,93,0,159,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,150,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,68,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1317,9,58,0,0,0,0,0,0,0,17,0,0,0,0,0,1,8,507,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,41,0,0,0,0,3,23,6,101,0,0,0,0,1,0,0,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,125,0,119,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,229,0,0,822,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,206,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,296,13,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,94,10,24,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,13,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,42,3,0,0,58,0,82,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,20,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,16,3 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1327,11,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,538,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,41,0,0,0,0,3,31,6,101,0,0,0,0,1,0,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,86,2,0,0,130,0,121,0,0,0,65,0,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,93,49,0,0,0,0,0,0,0,0,228,0,0,819,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,191,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,295,13,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1353,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,529,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,39,0,0,0,0,3,23,6,101,0,0,0,0,1,0,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,120,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,230,0,0,827,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,204,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,289,14,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,2,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1344,10,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,530,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,40,0,0,0,0,3,27,6,102,0,0,0,0,1,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,82,2,0,0,127,0,121,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,229,0,0,822,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,207,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,296,15,3 +2,0,0,3,0,17,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,0,18,0,0,0,7,0,0,0,3,0,17,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,6,55,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2244,17,89,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,877,0,0,3,0,0,0,0,0,32,0,2,0,0,2,0,118,0,1,0,0,604,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,253,0,33,0,0,0,12,27,34,638,261,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,88,3,0,0,116,0,199,0,0,0,45,6,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,97,31,0,0,0,0,0,0,0,0,466,0,0,767,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,6,0,0,0,0,1,20,201,0,25,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,433,29,3 +1,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,173,11,37,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,33,0,0,0,0,3,30,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,79,2,0,0,112,0,251,0,0,0,41,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,93,37,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,132,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,65,23,3 +2,0,0,3,0,19,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,0,18,0,0,0,7,0,0,0,3,0,19,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,6,56,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2173,19,89,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,846,0,0,3,0,0,0,0,0,32,0,2,0,0,2,0,118,0,1,0,0,488,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,253,0,37,0,0,0,12,27,36,666,261,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,94,3,0,0,122,0,199,0,0,0,45,5,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,99,31,0,0,0,0,0,0,0,0,468,0,0,775,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,6,0,0,0,0,1,22,204,0,25,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,443,28,3 +2,0,0,2,0,11,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2062,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,864,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,245,0,28,0,0,0,0,3,25,597,260,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,66,2,0,0,98,0,124,0,0,0,42,3,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,411,0,0,780,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,446,7,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2149,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,862,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,252,0,36,0,0,0,8,19,29,612,263,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,81,2,0,0,110,0,181,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,448,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,444,10,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,55,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,60,0,0,0,0,0,1,0,0,0,0,0,2,0,0,449,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,63,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,508,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1069,3,0,0,1062,0,298,0,0,0,14,8,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1081,9,0,0,0,0,0,0,0,0,99,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,29,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1354,10,57,0,0,0,0,0,0,0,16,0,0,0,0,0,1,8,549,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,40,0,0,0,0,3,27,6,101,0,0,0,0,1,0,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,82,2,0,0,127,0,118,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,231,0,0,823,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,190,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,297,13,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,9,0,0,1,0,0,0,0,0,1,0,25,42,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,79,0,0,0,0,0,1,0,0,0,0,0,2,0,0,566,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,68,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,626,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,52,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,165,3,0,0,83,0,435,0,0,0,13,10,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,109,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,58,3 +9,0,0,6,0,39,21,0,49,6,5,0,0,2,12,0,905,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,4,5881,39,34,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,375,0,0,0,0,0,1,0,0,0,0,0,10,0,0,148355,39,1027,0,7,0,0,0,0,0,32,0,0,0,0,0,8,18,25069,0,0,4,0,0,0,0,0,90,5,2,0,0,2,0,1011,0,7,0,0,5601,0,0,0,0,9,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,20845,0,53,0,0,0,6,19,285,1634,20835,0,0,0,0,1,0,3,0,0,0,0,0,0,934,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,347,6,0,0,289,0,437,0,0,0,129,34,0,0,0,0,0,0,0,0,0,1000,1,0,0,0,9,0,0,0,0,1,143,19,0,0,1,0,0,0,0,0,5205,1,0,1134,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,16,0,0,0,0,1,43,224,0,17,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2274,126,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,98,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,104,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,24,0,0,0,2,3,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,46,3,0,0,62,0,80,0,0,0,31,13,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,24,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,8,3 +4,0,0,5,0,38,21,0,42,0,4,0,0,2,7,0,666,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,275,0,0,0,0,0,1,0,0,0,0,0,2,0,0,118347,38,769,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,20196,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,734,0,0,0,0,4983,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,16296,0,70,0,0,0,6,9,284,1530,16279,0,0,0,0,1,0,3,0,0,0,0,0,0,565,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,696,5,0,0,285,0,955,0,0,0,129,90,0,0,0,0,0,0,0,0,0,748,1,0,0,0,9,0,0,0,0,4,141,19,0,0,1,0,0,0,0,0,9395,1,0,979,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,222,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3468,147,3 +16,0,0,6,0,39,17,0,42,6,5,0,0,2,12,0,691,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,336,0,0,0,0,0,1,0,0,0,0,0,10,0,0,131705,39,800,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,22996,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,797,0,7,0,0,3421,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,19037,0,53,0,0,0,8,20,281,1254,19027,0,0,0,0,1,0,3,0,0,0,0,0,0,397,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,278,6,0,0,275,0,387,0,0,0,113,22,0,0,0,0,0,0,0,0,0,775,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4695,1,0,792,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,195,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2038,123,3 +0,0,0,2,0,9,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,82,0,0,0,0,0,1,0,0,0,0,0,1,0,0,247,9,46,0,1,0,0,0,0,0,10,0,0,0,0,0,1,4,42,0,0,0,0,0,0,0,0,9,0,3,0,0,2,0,15,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,50,0,44,0,0,0,0,3,26,5,62,0,0,0,0,1,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,82,2,0,0,92,0,93,0,0,0,28,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,90,20,0,0,0,0,0,0,0,0,32,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,152,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,99,14,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,213,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,124,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,83,0,0,0,33,10,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +6,0,0,6,0,38,7,0,34,4,5,0,0,2,9,0,534,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,6,898,38,36,0,0,39,0,3,0,1,0,0,3,0,0,0,0,4,171,1,0,0,0,0,1,0,0,0,0,0,9,0,0,31411,38,617,0,7,0,0,0,0,0,22,0,0,0,0,0,8,20,6386,0,0,6,0,0,0,0,0,94,5,6,0,0,2,0,603,0,6,0,0,2903,0,0,0,0,24,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,2967,0,69,0,0,0,6,18,244,1135,2962,0,0,0,0,1,0,4,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,19,214,6,0,0,218,0,329,0,0,0,77,8,0,0,0,0,0,0,0,0,0,597,1,0,0,0,9,0,0,0,0,1,123,16,0,0,1,0,0,0,0,0,3126,1,0,856,5,0,1,1,1,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,5,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,16,0,0,0,0,1,44,127,0,17,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1787,184,3 +6,0,0,3,0,22,2,0,8,5,3,0,0,0,8,0,22,0,7,5,0,0,0,1,0,0,0,0,7,0,5,0,0,0,8,0,22,6,6,0,39,0,8,0,1,0,0,8,0,0,0,0,8,118,0,0,0,0,0,1,0,0,0,0,0,8,0,0,38483,22,100,0,12,0,0,0,0,0,29,0,0,0,1,0,1,10,7636,0,0,8,0,0,0,0,0,35,0,13,0,0,2,0,34,0,6,0,0,4406,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4138,0,117,0,0,0,16,19,48,7912,4161,0,0,0,0,1,0,0,0,0,0,0,0,0,3592,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,10,9,190,3,0,0,162,0,292,0,0,0,93,21,0,0,0,0,0,0,0,0,0,50,1,0,0,0,6,0,0,0,0,1,104,47,0,0,0,0,0,0,0,0,3032,0,0,9150,0,2,1,0,0,0,0,0,26,0,6,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,19,0,0,0,0,1,30,230,0,12,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3850,87,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1286,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,527,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,86,0,39,0,0,0,0,3,23,6,96,0,0,0,0,1,0,0,0,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,120,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,226,0,0,802,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,209,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,286,13,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,2,0,8,2,0,8,0,4,0,0,0,4,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,1,0,0,51,8,32,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,16,0,0,0,0,0,0,0,0,6,0,1,0,0,2,0,13,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,20,0,15,0,0,0,0,3,21,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,55,2,0,0,64,0,70,0,0,0,13,0,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,6,0,0,0,0,0,0,0,0,25,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,33,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,5,3 +10,0,0,5,0,41,21,0,43,0,4,0,0,2,14,0,712,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5870,41,172,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,436,0,0,0,0,0,1,0,0,0,0,0,2,0,0,136238,41,832,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23242,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,847,0,0,0,0,5142,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,19067,0,52,0,0,0,8,19,289,1631,19057,0,0,0,0,1,0,3,0,0,0,0,0,0,920,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,324,5,0,0,302,0,571,0,0,0,145,24,0,0,0,0,0,0,0,0,0,802,1,0,0,0,9,0,0,0,0,2,152,19,0,0,1,0,0,0,0,0,6748,1,0,1134,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,211,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3209,111,3 +1,0,0,6,0,33,7,0,34,0,5,0,0,7,6,0,493,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,33,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,184,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18633,33,560,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4294,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,552,0,0,1,0,2905,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,686,0,46,0,0,0,1,4,249,1158,673,0,0,0,0,1,0,3,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,184,6,0,0,199,0,269,0,0,0,58,8,0,0,0,0,0,0,0,0,0,558,1,0,0,0,10,0,0,0,0,0,116,15,0,0,6,0,0,0,0,0,3223,1,0,831,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,34,114,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1909,73,3 +5,0,0,4,0,37,13,0,38,0,3,0,0,2,3,0,753,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2311,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,271,0,0,0,0,0,1,0,0,0,0,0,4,0,0,73355,37,844,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,13265,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,791,0,1,0,0,2964,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,9492,0,43,0,0,0,2,7,266,1186,9468,0,0,0,0,1,0,3,0,0,0,0,0,0,707,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,238,4,0,0,277,0,371,0,0,0,126,7,0,0,0,0,0,0,0,0,0,818,1,0,0,0,10,0,0,0,0,1,130,36,0,0,0,0,0,0,0,0,4384,1,0,1478,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1907,46,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1260,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,534,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,83,0,39,0,0,0,0,3,23,6,93,0,0,0,0,1,0,0,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,119,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,222,0,0,795,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,190,0,0,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,282,14,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,1,12,0,0,0,4,0,0,0,3,0,15,6,0,0,9,0,0,0,1,0,0,1,0,0,0,0,4,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1306,15,68,0,5,0,0,0,0,0,6,0,0,0,0,0,1,3,428,0,0,3,0,0,0,0,0,23,0,2,0,0,2,0,80,0,0,0,0,412,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,242,0,28,0,0,0,8,19,29,618,251,0,0,0,0,1,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,172,0,0,0,45,9,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,269,0,0,38,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,250,8,3 +1,0,0,3,0,10,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,5,0,0,93,10,25,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,14,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,22,0,0,0,2,3,25,7,37,0,0,0,0,1,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,49,3,0,0,59,0,108,0,0,0,29,3,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,1,93,20,0,0,0,0,0,0,0,0,21,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,44,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,3,3 +7,0,0,3,0,20,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,7,0,20,6,0,0,28,0,5,0,1,0,0,5,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,6,0,0,40014,20,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,6690,0,0,7,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,4347,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4094,0,76,0,0,0,0,3,42,7854,4108,0,0,0,0,1,0,0,0,0,0,0,0,0,8147,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,139,3,0,0,148,0,227,0,0,0,79,10,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,103,43,0,0,0,0,0,0,0,0,2007,0,0,9398,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,1,27,229,0,4,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2801,68,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +12,0,0,5,0,40,36,0,49,0,4,0,0,2,13,0,1114,0,6,1,0,0,0,8,0,10,0,0,8,0,3,0,0,0,2,11286,40,56,0,0,22,0,1,0,1,0,0,2,0,0,0,0,3,454,0,0,0,0,0,1,0,0,0,0,0,2,0,0,173729,40,1280,0,8,0,0,0,0,0,56,0,0,0,0,0,8,19,33922,0,0,2,0,0,0,0,0,101,5,4,1,0,2,0,1231,0,0,0,0,6787,0,0,0,0,6,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,31568,0,52,0,0,0,4,7,325,1370,31551,0,0,0,0,1,0,4,0,0,0,0,0,0,1571,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,373,5,0,0,348,0,465,0,0,0,176,45,0,0,0,0,0,0,0,0,0,1224,1,0,0,0,9,0,0,0,0,3,158,29,0,0,1,0,0,0,0,0,9517,1,0,832,26,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,26,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,9,0,0,0,4,1,42,225,0,9,12,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3024,90,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1324,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,531,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,39,0,0,0,0,3,23,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,118,0,0,0,65,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,227,0,0,819,0,0,1,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,190,0,1,0,0,2,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,289,15,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,877,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,461,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,19,0,0,0,0,3,21,4,41,0,0,0,0,1,0,0,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,53,2,0,0,71,0,89,0,0,0,19,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,205,0,0,732,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,71,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,221,2,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,213,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,119,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,55,3,0,0,63,0,85,0,0,0,33,8,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +5,0,0,4,0,37,13,0,37,0,3,0,0,2,3,0,717,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2849,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,222,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58005,37,807,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,10580,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,755,0,1,0,0,2992,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,6948,0,44,0,0,0,2,7,263,1208,6925,0,0,0,0,1,0,3,0,0,0,0,0,0,863,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,235,4,0,0,278,0,345,0,0,0,126,10,0,0,0,0,0,0,0,0,0,781,1,0,0,0,10,0,0,0,0,1,130,36,0,0,0,0,0,0,0,0,4180,1,0,1710,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,219,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1897,39,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,5,0,0,241,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,129,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,31,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,56,3,0,0,74,0,68,0,0,0,43,6,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,36,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,9,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,2,0,14,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,403,14,34,0,3,0,0,0,0,0,6,0,0,0,0,0,1,3,99,0,0,2,0,0,0,0,0,9,0,1,0,0,2,0,10,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,86,0,28,0,0,0,0,3,31,6,101,0,0,0,0,1,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,93,0,146,0,0,0,26,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,15,0,0,0,0,0,0,0,0,46,0,0,72,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,16,73,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,83,143,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,448,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,56,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,457,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,102,3,0,0,83,0,285,0,0,0,13,9,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,93,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,26,3 +0,0,0,3,0,18,2,0,15,2,3,0,0,0,5,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,6,0,18,6,0,0,22,0,0,0,1,0,0,5,0,0,0,0,0,109,0,0,0,0,0,1,0,0,0,0,0,5,0,0,21936,18,65,0,1,0,0,0,0,0,21,0,0,0,0,0,1,7,2329,0,0,6,0,0,0,0,0,13,0,8,0,0,2,0,20,0,3,0,0,6222,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1426,0,75,0,0,0,0,3,35,7825,1440,0,0,0,0,1,0,0,0,0,0,0,0,0,2303,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,6,153,3,0,0,154,0,249,0,0,0,80,9,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,100,48,0,0,0,0,0,0,0,0,931,0,0,1966,0,0,1,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,24,284,0,1,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1429,47,3 +2,0,0,3,0,9,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,75,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,38,3,0,0,58,0,61,0,0,0,28,1,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,6,3 +10,0,0,5,0,41,21,0,44,0,4,0,0,2,14,0,746,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5871,41,162,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,405,0,0,0,0,0,1,0,0,0,0,0,2,0,0,132682,41,866,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,22738,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,880,0,0,0,0,4986,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,18566,0,57,0,0,0,8,19,290,1625,18559,0,0,0,0,1,0,3,0,0,0,0,0,0,909,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,313,5,0,0,300,0,519,0,0,0,140,23,0,0,0,0,0,0,0,0,0,837,1,0,0,0,9,0,0,0,0,2,150,19,0,0,1,0,0,0,0,0,6756,1,0,1124,16,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,225,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3202,209,3 +2,0,0,2,0,10,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,66,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1080,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,503,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,25,0,0,0,0,3,24,5,60,0,0,0,0,1,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,65,2,0,0,98,0,127,0,0,0,45,1,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,92,32,0,0,0,0,0,0,0,0,214,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,237,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,240,6,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,30,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,77,2,0,0,91,0,253,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,26,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1073,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,465,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,103,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,22,0,0,0,0,3,24,6,56,0,0,0,0,1,0,0,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,68,3,0,0,80,0,147,0,0,0,27,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,254,0,0,784,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,105,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,239,62,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,985,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,459,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,96,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,38,0,23,0,0,0,0,3,24,6,49,0,0,0,0,1,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,75,3,0,0,82,0,154,0,0,0,29,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,92,16,0,0,0,0,0,0,0,0,246,0,0,751,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,107,0,1,0,0,2,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,225,65,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1214,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,518,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,28,0,0,0,0,3,27,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,91,0,169,0,0,0,27,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,77,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,256,153,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,60,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1269,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,506,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,40,0,0,0,0,3,23,6,98,0,0,0,0,1,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,119,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,227,0,0,806,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,189,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,287,15,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1494,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,681,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,138,0,20,0,0,0,0,3,23,302,149,0,0,0,0,1,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,59,2,0,0,82,0,89,0,0,0,26,3,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,89,21,0,0,0,0,0,0,0,0,306,0,0,756,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,109,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,322,8,3 +4,0,0,3,0,11,2,0,8,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,36,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,5,0,0,323,11,34,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,38,0,0,3,0,0,0,0,0,7,0,2,0,0,2,0,25,0,3,0,0,195,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,39,0,0,0,0,3,25,7,51,0,0,0,0,1,0,0,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,86,3,0,0,85,0,179,0,0,0,32,9,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,93,16,0,0,0,0,0,0,0,0,80,0,0,56,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,107,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,18,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,54,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,7,0,0,205,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,161,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,36,0,0,0,2,4,26,6,40,0,0,0,0,1,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,62,3,0,0,62,0,96,0,0,0,32,10,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,19,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,32,0,3,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,13,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,7,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,63,0,0,0,0,0,1,0,0,0,0,0,2,0,0,452,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,57,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,652,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,32,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1038,3,0,0,1032,0,290,0,0,0,14,10,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1051,9,0,0,0,0,0,0,0,0,92,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,29,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1245,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,552,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,92,0,28,0,0,0,6,15,24,21,107,0,0,0,0,1,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,79,0,161,0,0,0,25,4,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,263,0,0,798,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,101,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1240,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,539,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,27,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,92,0,175,0,0,0,28,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,17,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,34,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,153,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,69,0,0,0,0,0,1,0,0,0,0,0,2,0,0,451,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,53,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,458,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1016,3,0,0,1008,0,305,0,0,0,14,6,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1027,9,0,0,0,0,0,0,0,0,90,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,30,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,68,0,0,0,0,0,1,0,0,0,0,0,2,0,0,478,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,70,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,504,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,32,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1044,3,0,0,1038,0,301,0,0,0,14,9,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1057,9,0,0,0,0,0,0,0,0,101,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,30,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,69,0,0,0,0,0,1,0,0,0,0,0,2,0,0,550,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,65,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,544,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,56,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,172,3,0,0,83,0,357,0,0,0,13,10,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,97,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,60,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1069,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,477,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,117,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,23,0,0,0,0,3,24,6,55,0,0,0,0,1,0,0,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,74,3,0,0,84,0,155,0,0,0,31,4,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,94,16,0,0,0,0,0,0,0,0,252,0,0,775,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,104,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,272,3 +2,0,0,2,0,16,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,16,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2160,16,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,889,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,415,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,249,0,31,0,0,0,8,19,33,612,258,0,0,0,0,1,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,113,0,178,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,96,31,0,0,0,0,0,0,0,0,449,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,4,0,0,0,0,1,19,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,440,8,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,8,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,123,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,91,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,11,3 +0,0,0,2,0,9,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,282,9,30,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,34,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,6,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,38,0,27,0,0,0,0,3,23,5,50,0,0,0,0,1,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,71,2,0,0,103,0,124,0,0,0,51,1,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,41,0,0,0,0,0,0,0,0,33,0,0,41,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,117,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,65,13,3 +0,0,0,2,0,12,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,12,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,1,0,0,24088,12,30,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,4134,0,0,1,0,0,0,0,0,7,0,1,0,0,2,0,6,0,0,0,0,2564,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,3432,0,28,0,0,0,0,3,29,2571852,3443,0,0,0,0,1,0,0,0,0,0,0,0,0,4876,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,97,2,0,0,91,0,151,0,0,0,30,10,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,101,13,0,0,0,0,0,0,0,0,1078,0,0,4601,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,213,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,42,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1790,11,3 +0,0,0,3,0,12,2,0,16,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,12,0,0,0,1,0,0,3,0,0,0,0,0,83,0,0,0,0,0,1,0,0,0,0,0,3,0,0,9144,12,56,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,298,0,0,3,0,0,0,0,0,11,0,4,0,0,2,0,17,0,1,0,0,4160,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,234,0,51,0,0,0,0,3,26,7851,247,0,0,0,0,1,0,0,0,0,0,0,0,0,417,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,97,3,0,0,105,0,165,0,0,0,43,7,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,94,21,0,0,0,0,0,0,0,0,112,0,0,301,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,148,0,1,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,241,17,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1216,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,543,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,30,0,0,0,0,3,31,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,91,0,155,0,0,0,25,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,94,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +1,0,0,6,0,34,7,0,35,0,5,0,0,7,6,0,541,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,173,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18342,34,609,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4366,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,600,0,0,1,0,3220,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,679,0,46,0,0,0,1,4,256,1159,665,0,0,0,0,1,0,3,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,185,6,0,0,201,0,270,0,0,0,58,3,0,0,0,0,0,0,0,0,0,607,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3330,1,0,824,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,104,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1954,70,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +14,0,0,5,0,38,21,0,43,0,4,0,0,2,13,0,753,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,330,0,0,0,0,0,1,0,0,0,0,0,2,0,0,117650,38,864,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,20038,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,850,0,0,0,0,5294,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15911,0,74,0,0,0,6,9,287,1616,15899,0,0,0,0,1,0,3,0,0,0,0,0,0,856,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,389,5,0,0,288,0,918,0,0,0,131,24,0,0,0,0,0,0,0,0,0,842,1,0,0,0,9,0,0,0,0,4,144,19,0,0,1,0,0,0,0,0,13826,1,0,1131,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,364,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,219,0,11,12,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5036,102,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,130,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,93,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +2,0,0,2,0,19,3,0,21,0,2,0,0,0,2,0,75,0,6,1,0,0,0,1,0,0,36,0,0,0,13,0,0,0,3,0,19,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,12,63,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2304,19,144,0,13,0,0,0,0,0,7,0,0,0,0,0,1,6,880,0,0,3,0,0,0,0,0,56,0,2,0,0,2,0,226,0,0,0,0,598,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,258,0,41,0,0,0,24,53,33,647,272,0,0,0,0,1,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,113,2,0,0,122,0,215,0,0,0,45,6,0,0,0,0,0,0,0,0,0,109,1,0,0,0,2,0,0,0,0,13,99,31,0,0,0,0,0,0,0,0,533,0,0,782,0,0,1,0,1,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,373,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,12,0,0,0,0,1,22,201,0,49,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,457,15,3 +10,0,0,5,0,41,21,0,47,0,4,0,0,2,14,0,853,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,382,0,0,0,0,0,1,0,0,0,0,0,2,0,0,142931,41,980,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,24260,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,991,0,0,0,0,5540,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,20079,0,53,0,0,0,8,17,290,1628,20069,0,0,0,0,1,0,3,0,0,0,0,0,0,925,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,292,5,0,0,292,0,401,0,0,0,132,34,0,0,0,0,0,0,0,0,0,947,1,0,0,0,9,0,0,0,0,2,142,19,0,0,1,0,0,0,0,0,6924,1,0,1131,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,243,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3193,167,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,113,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,92,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1348,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,540,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,39,0,0,0,0,3,23,6,101,0,0,0,0,1,0,0,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,118,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,231,0,0,821,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,205,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,292,15,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,55,0,0,0,28,10,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +4,0,0,5,0,39,21,0,43,0,4,0,0,2,7,0,720,0,6,1,0,0,0,8,0,10,0,0,6,0,4,0,0,0,4,5706,39,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,260,0,0,0,0,0,1,0,0,0,0,0,2,0,0,117486,39,821,0,7,0,0,0,0,0,32,0,0,0,0,0,8,18,20199,0,0,4,0,0,0,0,0,102,5,2,0,0,2,0,785,0,0,0,0,5970,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,15985,0,71,0,0,0,6,9,291,1564,15967,0,0,0,0,1,0,3,0,0,0,0,0,0,677,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,649,5,0,0,286,0,954,0,0,0,128,85,0,0,0,0,0,0,0,0,0,803,1,0,0,0,9,0,0,0,0,4,141,19,0,0,1,0,0,0,0,0,8925,1,0,1041,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,9,0,0,0,0,1,43,194,0,8,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3314,148,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,42,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,77,0,0,0,0,0,1,0,0,0,0,0,2,0,0,518,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,71,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,569,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,100,3,0,0,83,0,363,0,0,0,13,10,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,109,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,30,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,130,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,53,3,0,0,63,0,93,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,10,39,0,0,0,0,0,0,0,6,0,0,0,0,0,1,3,22,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,29,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,92,0,264,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,27,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,108,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,27,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1538,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,683,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,141,0,20,0,0,0,0,3,23,297,152,0,0,0,0,1,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,60,2,0,0,82,0,88,0,0,0,26,3,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,89,21,0,0,0,0,0,0,0,0,310,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,109,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,330,5,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,7,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,2,0,11,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2032,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,865,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,242,0,26,0,0,0,0,3,25,598,257,0,0,0,0,1,0,0,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,65,2,0,0,98,0,124,0,0,0,42,3,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,409,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,437,5,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,209,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,124,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,54,3,0,0,63,0,92,0,0,0,33,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +5,0,0,3,0,12,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,36,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,5,0,0,320,12,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,176,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,38,0,0,0,0,3,27,7,60,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,93,3,0,0,103,0,205,0,0,0,42,8,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,97,20,0,0,0,0,0,0,0,0,79,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,138,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,91,12,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1222,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,550,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,31,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,88,0,154,0,0,0,25,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,271,149,3 +16,0,0,6,0,38,17,0,45,6,5,0,0,2,12,0,778,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4944,38,154,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,370,0,0,0,0,0,1,0,0,0,0,0,10,0,0,133722,38,889,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,23093,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,883,0,7,0,0,4274,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,19340,0,53,0,0,0,8,20,273,1259,19331,0,0,0,0,1,0,3,0,0,0,0,0,0,372,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,307,6,0,0,274,0,454,0,0,0,116,13,0,0,0,0,0,0,0,0,0,865,1,0,0,0,9,0,0,0,0,1,140,17,0,0,1,0,0,0,0,0,4847,1,0,792,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,20,0,0,0,2,1,42,239,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2001,145,3 +0,0,0,6,0,39,10,0,37,0,8,0,0,6,5,0,596,0,7,1,0,0,0,8,0,10,0,0,7,0,4,0,0,0,2,945,39,6,0,0,44,0,7,0,1,0,0,7,0,0,0,0,4,204,0,0,0,0,0,1,0,0,0,0,0,4,0,0,37851,39,714,0,8,0,0,0,0,0,42,0,0,0,0,0,8,34,6419,0,0,2,0,0,0,0,0,215,20,14,0,0,2,0,652,0,1,13,0,3671,0,0,0,0,0,0,2,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,2395,0,81,0,0,0,7,7,291,1329,2371,0,0,0,0,1,0,4,0,0,0,0,0,0,4642,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,84,17,208,6,0,0,282,0,319,0,0,0,126,9,0,0,0,0,0,0,0,0,0,669,1,0,0,0,9,0,0,0,0,1,123,66,0,0,23,0,0,0,0,0,4705,1,0,4940,10,0,1,1,1,0,0,0,14,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,10,364,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,13,0,0,0,0,1,41,149,0,9,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3161,78,3 +2362,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,127,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1677,11,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,616,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,9,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,2362,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,157,0,66,0,0,0,0,3,31,9,156,0,0,0,0,1,0,0,0,0,0,0,0,0,6813,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,104,2,0,0,131,0,245,0,0,0,61,11,0,0,0,0,0,1,0,0,0,44,1,0,0,0,2,0,0,0,0,1,91,43,0,0,0,0,0,0,0,0,243,0,0,882,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,304,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,357,45,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1318,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,536,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,39,0,0,0,0,3,23,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,119,0,0,0,65,0,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,814,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,190,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,290,13,3 +4,0,0,5,0,35,21,0,43,0,4,0,0,2,7,0,735,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,259,0,0,0,0,0,1,0,0,0,0,0,2,0,0,118564,35,831,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20326,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,794,0,0,0,0,5273,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,16089,0,64,0,0,0,0,3,281,1593,16078,0,0,0,0,1,0,3,0,0,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,324,5,0,0,276,0,872,0,0,0,120,19,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8554,1,0,1135,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,226,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3286,84,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,272,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,28,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +2,0,0,3,0,18,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,0,18,0,0,0,7,0,0,0,3,0,18,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,6,56,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2236,18,89,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,862,0,0,3,0,0,0,0,0,32,0,2,0,0,2,0,118,0,1,0,0,458,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,254,0,36,0,0,0,12,27,38,631,262,0,0,0,0,1,0,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,91,3,0,0,119,0,200,0,0,0,45,8,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,98,31,0,0,0,0,0,0,0,0,471,0,0,775,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,6,0,0,0,0,1,21,201,0,25,0,0,2,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,449,29,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,474,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,61,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,474,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,95,3,0,0,83,0,281,0,0,0,13,13,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,92,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,27,3 +4,0,0,5,0,35,21,0,44,0,4,0,0,2,7,0,770,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5706,35,36,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,260,0,0,0,0,0,1,0,0,0,0,0,2,0,0,104771,35,867,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,18009,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,829,0,0,0,0,5407,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,13791,0,63,0,0,0,0,3,281,1597,13780,0,0,0,0,1,0,3,0,0,0,0,0,0,819,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,322,5,0,0,273,0,813,0,0,0,117,13,0,0,0,0,0,0,0,0,0,854,1,0,0,0,9,0,0,0,0,0,135,19,0,0,1,0,0,0,0,0,8200,1,0,1130,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,222,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3126,83,3 +3549,0,0,2,0,12,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,12,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,136,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2155,12,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,740,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,9,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,225,0,93,0,0,0,0,3,35,9,224,0,0,0,0,1,0,0,0,0,0,0,0,0,9956,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,119,2,0,0,134,0,257,0,0,0,61,15,0,0,0,0,0,45,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,280,0,0,945,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,12,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,463,48,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,36,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,58,0,0,0,0,0,1,0,0,0,0,0,2,0,0,482,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,70,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,491,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,31,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,100,3,0,0,83,0,309,0,0,0,13,11,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,102,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,28,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1312,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,550,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,87,0,39,0,0,0,0,3,23,6,97,0,0,0,0,1,0,0,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,119,0,0,0,65,6,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,225,0,0,806,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,189,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,285,14,3 +0,0,0,2,0,9,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,306,9,30,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,36,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,6,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,27,0,0,0,0,3,23,5,52,0,0,0,0,1,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,71,2,0,0,103,0,124,0,0,0,51,1,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,41,0,0,0,0,0,0,0,0,34,0,0,49,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,125,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,13,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,152,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,91,2,0,0,91,0,258,0,0,0,25,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,105,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,28,3 +16,0,0,6,0,38,17,0,44,6,5,0,0,2,12,0,742,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4625,38,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,360,0,0,0,0,0,1,0,0,0,0,0,10,0,0,153446,38,852,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,26614,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,847,0,7,0,0,3950,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,22604,0,51,0,0,0,6,19,274,1257,22595,0,0,0,0,1,0,3,0,0,0,0,0,0,388,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,289,6,0,0,280,0,382,0,0,0,120,13,0,0,0,0,0,0,0,0,0,828,1,0,0,0,9,0,0,0,0,1,145,17,0,0,1,0,0,0,0,0,4894,1,0,783,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,17,0,0,0,0,1,42,222,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2048,132,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,1,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1064,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,486,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,103,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,25,0,0,0,0,3,24,6,53,0,0,0,0,1,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,75,3,0,0,82,0,154,0,0,0,29,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,92,16,0,0,0,0,0,0,0,0,251,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,111,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,65,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,450,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,62,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,441,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,995,3,0,0,989,0,311,0,0,0,14,8,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1008,9,0,0,0,0,0,0,0,0,97,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,29,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,134,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,91,0,260,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,27,3 +2,0,0,3,0,9,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,60,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,38,3,0,0,58,0,59,0,0,0,28,2,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,6,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,31,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,78,2,0,0,94,0,252,0,0,0,22,9,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,99,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,61,27,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,7,0,0,216,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,164,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,33,0,0,0,2,4,26,6,40,0,0,0,0,1,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,56,3,0,0,69,0,88,0,0,0,39,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,11,3 +8,0,0,6,0,39,8,0,41,4,5,0,0,2,9,0,501,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,7,898,39,38,0,0,39,0,3,0,1,0,0,3,0,0,0,0,4,160,1,0,0,0,0,1,0,0,0,0,0,9,0,0,31874,39,592,0,7,0,0,0,0,0,22,0,0,0,0,0,8,20,6470,0,0,7,0,0,0,0,0,94,5,5,0,0,2,0,579,0,6,0,0,3021,0,0,0,0,24,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,2915,0,71,0,0,0,6,19,246,1134,2910,0,0,0,0,1,0,4,0,0,0,0,0,0,469,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,19,244,6,0,0,238,0,343,0,0,0,91,11,0,0,0,0,0,0,0,0,0,572,1,0,0,0,9,0,0,0,0,1,123,25,0,0,1,0,0,0,0,0,3121,1,0,832,5,0,1,1,1,0,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,5,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,16,0,0,0,0,1,46,162,0,17,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1758,186,3 +5,0,0,4,0,13,24,0,138,1,35,0,0,0,4,0,19,0,7,1,0,0,0,2,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,254,0,0,0,1,0,0,2,0,0,0,0,0,76,0,0,0,0,0,1,0,0,0,0,0,29,0,0,1461,13,231,0,4,0,0,0,0,0,9,0,0,0,0,0,2,5,732,0,0,2,0,0,2,128,0,988,40,3,0,0,2,0,642,0,2,0,0,156,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,409,0,40,0,0,0,0,3,37,849,424,0,0,0,0,1,0,0,0,0,0,0,0,0,318,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,5,80,4,0,0,122,0,200,0,0,0,61,5,0,0,0,0,0,0,0,0,0,227,1,0,0,0,3,0,0,0,0,1,95,340,0,0,86,0,0,0,0,0,972,0,0,86,0,0,1,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,3,0,0,0,0,1,15,116,0,4,0,0,0,0,0,0,336,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,12,3 +0,0,0,3,0,9,2,0,18,0,2,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,8,0,2,0,1,0,0,2,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1126,9,51,0,1,0,0,0,0,0,12,0,0,0,0,0,1,7,483,0,0,0,0,0,0,0,0,10,0,4,0,0,2,0,17,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,65,0,31,0,0,0,0,3,26,6,75,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,72,3,0,0,87,0,109,0,0,0,23,3,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,89,15,0,0,0,0,0,0,0,0,217,0,0,789,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,112,0,1,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,265,10,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,117,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1705,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,626,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,159,0,68,0,0,0,0,3,27,9,158,0,0,0,0,1,0,0,0,0,0,0,0,0,9959,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,99,2,0,0,128,0,251,0,0,0,61,4,0,0,0,0,0,1,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,246,0,0,890,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,362,50,3 +2,0,0,3,0,9,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,63,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,38,3,0,0,58,0,59,0,0,0,28,2,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,6,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,395,0,0,0,0,0,1,0,0,0,0,0,10,0,0,124911,39,873,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,21898,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,868,0,7,0,0,3713,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18033,0,51,0,0,0,8,20,281,1265,18023,0,0,0,0,1,0,3,0,0,0,0,0,0,379,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,278,6,0,0,276,0,391,0,0,0,114,16,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,1,140,17,0,0,1,0,0,0,0,0,4758,1,0,788,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,20,0,0,0,2,1,43,218,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2002,136,3 +2,0,0,5,0,34,21,0,42,0,4,0,0,2,7,0,712,0,7,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5704,34,58,0,0,22,0,0,0,1,0,0,1,0,0,0,0,1,261,0,0,0,0,0,1,0,0,0,0,0,2,0,0,110898,34,811,0,2,0,0,0,0,0,32,0,0,0,0,0,8,17,17885,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,771,0,0,0,0,3592,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,16668,0,46,0,0,0,0,3,273,790,16651,0,0,0,0,1,0,3,0,0,0,0,0,0,826,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,1276,5,0,0,1277,0,523,0,0,0,121,16,0,0,0,0,0,0,0,0,0,795,1,0,0,0,9,0,0,0,0,1,1134,19,0,0,1,0,0,0,0,0,3548,1,0,419,16,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,1,0,0,0,0,1,35,206,0,3,12,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1368,94,3 +2,0,0,3,0,11,2,0,18,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,6,0,1,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,2,0,0,925,11,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,479,0,0,1,0,0,0,0,0,8,0,1,0,0,2,0,15,0,0,0,0,85,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,34,0,28,0,0,0,0,3,31,4,46,0,0,0,0,1,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,82,4,0,0,84,0,108,0,0,0,18,12,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,93,8,0,0,0,0,0,0,0,0,781,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,98,0,1,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,236,17,3 +2,0,0,5,0,35,30,0,38,0,4,0,0,2,7,0,697,0,7,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,3780,35,44,0,0,22,0,0,0,1,0,0,1,0,0,0,0,1,269,0,0,0,0,0,1,0,0,0,0,0,2,0,0,104950,35,812,0,2,0,0,0,0,0,42,0,0,0,0,0,8,17,16418,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,763,0,0,0,0,6641,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,14870,0,45,0,0,0,0,3,290,1550,14852,0,0,0,0,1,0,3,0,0,0,0,0,0,2141,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,1237,5,0,0,1274,0,409,0,0,0,124,14,0,0,0,0,0,0,0,0,0,785,1,0,0,0,9,0,0,0,0,1,1115,24,0,0,1,0,0,0,0,0,3762,1,0,909,21,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,1,0,0,0,0,1,36,139,0,3,12,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1656,92,3 +0,0,0,3,0,9,2,0,16,4,3,0,0,0,7,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,2,0,1,0,9,6,0,0,16,0,0,0,1,0,0,4,0,0,0,0,0,97,0,0,0,0,0,1,0,0,0,0,0,7,0,0,11499,9,62,0,1,0,0,0,0,0,15,0,0,0,1,0,1,6,2506,0,0,1,0,0,0,0,0,9,0,8,0,0,2,0,25,0,5,0,0,127,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1469,0,38,0,0,0,0,3,23,14,1486,0,0,0,0,1,0,0,0,0,0,0,0,0,2354,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,8,103,3,0,0,129,0,125,0,0,0,70,5,0,0,0,0,0,0,0,0,0,48,1,0,0,0,2,0,0,0,0,0,91,51,0,0,0,0,0,0,0,0,647,0,0,3312,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,216,0,1,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1143,22,3 +4,0,0,6,0,38,7,0,33,5,5,0,0,2,10,0,501,0,6,1,0,0,0,8,0,10,9,0,6,0,4,0,0,0,6,898,38,36,0,0,40,0,3,0,1,0,0,3,0,0,0,0,4,204,1,0,0,0,0,1,0,0,0,0,0,10,0,0,31259,38,585,0,7,0,0,0,0,0,22,0,0,0,0,0,8,20,6441,0,0,6,0,0,0,0,0,94,5,6,0,0,2,0,573,0,7,0,0,3001,0,0,0,0,21,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,2777,0,86,0,0,0,6,22,244,1139,2774,0,0,0,0,1,0,4,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,20,287,6,0,0,216,0,341,0,0,0,75,13,0,0,0,0,0,0,0,0,0,564,1,0,0,0,9,0,0,0,0,1,121,16,0,0,1,0,0,0,0,0,3271,1,0,878,5,0,1,1,1,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,5,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,23,0,0,0,0,1,44,131,0,17,12,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1912,120,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,124,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,128,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,71,0,90,0,0,0,41,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,36,3 +10,0,0,5,0,41,21,0,44,0,4,0,0,2,14,0,746,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,152,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,419,0,0,0,0,0,1,0,0,0,0,0,2,0,0,133394,41,865,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,22662,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,879,0,0,0,0,5441,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,18619,0,54,0,0,0,8,19,291,1636,18609,0,0,0,0,1,0,3,0,0,0,0,0,0,910,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,316,5,0,0,297,0,423,0,0,0,138,18,0,0,0,0,0,0,0,0,0,837,1,0,0,0,9,0,0,0,0,2,147,19,0,0,1,0,0,0,0,0,6745,1,0,1134,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,211,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3209,104,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,1,0,0,51,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,15,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,40,2,0,0,46,0,114,0,0,0,15,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,15,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,36,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,28,3 +2,0,0,3,0,17,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,0,18,0,0,0,7,0,0,0,3,0,17,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,6,56,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2190,17,89,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,844,0,0,3,0,0,0,0,0,32,0,2,0,0,2,0,118,0,1,0,0,457,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,251,0,35,0,0,0,12,27,34,635,259,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,87,3,0,0,116,0,198,0,0,0,45,5,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,97,31,0,0,0,0,0,0,0,0,464,0,0,763,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,6,0,0,0,0,1,20,201,0,25,0,0,2,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,435,29,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,231,10,25,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,167,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,58,3,0,0,74,0,68,0,0,0,43,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,36,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,29,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,78,2,0,0,94,0,258,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,25,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,60,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,55,0,51,0,0,0,25,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,21,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +0,0,0,2,0,9,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,67,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,19,0,0,0,0,3,23,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,64,0,75,0,0,0,34,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,89,32,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,85,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,10,3 +1,0,0,6,0,35,7,0,35,0,5,0,0,7,6,0,556,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,172,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18515,35,624,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4273,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,615,0,0,1,0,2684,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,727,0,47,0,0,0,1,4,263,1159,712,0,0,0,0,1,0,3,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,188,6,0,0,203,0,281,0,0,0,58,6,0,0,0,0,0,0,0,0,0,622,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3262,1,0,840,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,112,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1905,80,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2166,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,885,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,420,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,250,0,30,0,0,0,8,19,29,614,259,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,176,0,0,0,45,4,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,450,0,0,774,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,439,8,3 +9,0,0,4,0,47,12,0,35,19,3,0,0,2,22,0,696,0,6,2,0,0,0,8,0,11,0,0,5,0,1,0,8,0,15,2505,47,32,0,0,64,0,1,0,1,0,0,2,0,0,0,0,1,242,0,0,0,0,0,1,0,0,0,0,0,23,0,0,79889,47,791,0,2,0,0,0,0,0,26,0,0,0,0,0,9,23,14432,0,0,15,0,0,0,0,0,95,5,4,0,0,2,0,764,0,20,0,0,3408,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,10543,0,75,0,0,0,0,3,276,1187,10538,0,0,0,0,1,0,3,0,0,0,0,0,0,1016,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,39,30,347,4,0,0,301,0,361,0,0,0,153,34,0,0,0,0,0,0,0,0,0,776,1,0,0,0,10,0,0,0,0,1,140,33,0,0,0,0,0,0,0,0,4350,1,0,1715,13,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,8,13,361,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,1,0,0,0,0,1,62,160,0,3,14,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2063,6827,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,63,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,55,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +4,0,0,5,0,38,21,0,44,0,4,0,0,2,7,0,736,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,291,0,0,0,0,0,1,0,0,0,0,0,2,0,0,117799,38,841,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,20115,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,804,0,0,0,0,5565,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15903,0,73,0,0,0,6,9,284,1614,15886,0,0,0,0,1,0,3,0,0,0,0,0,0,811,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,599,5,0,0,285,0,943,0,0,0,129,88,0,0,0,0,0,0,0,0,0,820,1,0,0,0,9,0,0,0,0,4,141,19,0,0,1,0,0,0,0,0,8993,1,0,1122,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,207,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3396,148,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,2,0,10,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,1,0,0,332,10,30,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,39,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,6,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,30,0,0,0,0,3,27,5,55,0,0,0,0,1,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,106,0,125,0,0,0,51,1,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,92,41,0,0,0,0,0,0,0,0,36,0,0,59,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,115,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,76,13,3 +4,0,0,5,0,37,21,0,41,0,4,0,0,2,7,0,615,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,4,5704,37,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,259,0,0,0,0,0,1,0,0,0,0,0,2,0,0,116573,37,711,0,4,0,0,0,0,0,32,0,0,0,0,0,8,18,19955,0,0,4,0,0,0,0,0,90,5,2,0,0,2,0,677,0,0,0,0,4547,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,15985,0,69,0,0,0,0,3,276,1477,15969,0,0,0,0,1,0,3,0,0,0,0,0,0,472,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,641,5,0,0,282,0,945,0,0,0,128,87,0,0,0,0,0,0,0,0,0,696,1,0,0,0,9,0,0,0,0,1,140,19,0,0,1,0,0,0,0,0,8784,1,0,901,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,3,0,0,0,0,1,41,221,0,5,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3220,149,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,53,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,50,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,11,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,2,0,9,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,319,9,30,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,37,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,6,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,27,0,0,0,0,3,23,5,53,0,0,0,0,1,0,0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,71,2,0,0,103,0,124,0,0,0,51,1,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,41,0,0,0,0,0,0,0,0,35,0,0,55,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,119,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,67,13,3 +0,0,0,3,0,9,2,0,16,4,3,0,0,0,7,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,2,0,1,0,9,6,0,0,16,0,0,0,1,0,0,4,0,0,0,0,0,95,0,0,0,0,0,1,0,0,0,0,0,7,0,0,11435,9,62,0,1,0,0,0,0,0,15,0,0,0,1,0,1,6,2471,0,0,1,0,0,0,0,0,9,0,8,0,0,2,0,25,0,5,0,0,146,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1467,0,40,0,0,0,0,3,23,14,1484,0,0,0,0,1,0,0,0,0,0,0,0,0,2296,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,8,103,3,0,0,129,0,130,0,0,0,70,6,0,0,0,0,0,0,0,0,0,48,1,0,0,0,2,0,0,0,0,0,91,51,0,0,0,0,0,0,0,0,622,0,0,3303,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,227,0,1,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1115,21,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,457,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,91,0,261,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,107,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +16,0,0,6,0,39,17,0,43,6,5,0,0,2,12,0,727,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,355,0,0,0,0,0,1,0,0,0,0,0,10,0,0,121581,39,837,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,21227,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,833,0,7,0,0,3537,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,17456,0,51,0,0,0,8,20,281,1255,17446,0,0,0,0,1,0,3,0,0,0,0,0,0,378,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,285,6,0,0,275,0,402,0,0,0,112,16,0,0,0,0,0,0,0,0,0,812,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4687,1,0,800,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,193,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2018,124,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,3,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,140,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2057,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,693,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,217,0,92,0,0,0,0,3,27,9,216,0,0,0,0,1,0,0,0,0,0,0,0,0,10007,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,115,2,0,0,128,0,255,0,0,0,61,10,0,0,0,0,0,43,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,275,0,0,925,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,276,0,1,0,0,2,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,443,50,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,60,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,4,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,53,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,48,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,516,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,60,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,587,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,31,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,107,3,0,0,83,0,388,0,0,0,13,10,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,108,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,32,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1257,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,546,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,27,0,0,0,0,3,31,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,93,2,0,0,94,0,184,0,0,0,31,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,17,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,260,150,3 +0,0,0,2,0,8,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,4,0,1,0,0,4,0,0,0,0,0,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1545,8,67,0,1,0,0,0,0,0,22,0,0,0,0,0,1,9,566,0,0,0,0,0,0,0,0,14,0,8,0,0,2,0,14,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,128,0,47,0,0,0,0,3,22,7,139,0,0,0,0,1,0,0,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,3,64,2,0,0,127,0,149,0,0,0,67,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,88,53,0,0,0,0,0,0,0,0,245,0,0,893,0,0,1,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,226,0,1,0,0,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,336,19,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1216,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,542,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,90,0,159,0,0,0,26,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,229,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,83,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,53,3,0,0,58,0,56,0,0,0,28,12,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,7,3 +16,0,0,6,0,38,17,0,42,6,5,0,0,2,12,0,674,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,38,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,379,0,0,0,0,0,1,0,0,0,0,0,10,0,0,131131,38,783,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,22870,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,780,0,7,0,0,3615,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,18933,0,49,0,0,0,8,20,272,1254,18924,0,0,0,0,1,0,3,0,0,0,0,0,0,364,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,267,6,0,0,273,0,396,0,0,0,116,17,0,0,0,0,0,0,0,0,0,758,1,0,0,0,9,0,0,0,0,1,140,17,0,0,1,0,0,0,0,0,4718,1,0,796,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,19,0,0,0,0,1,42,188,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2049,125,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1227,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,550,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,155,0,0,0,27,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +16,0,0,6,0,39,17,0,43,6,5,0,0,2,12,0,727,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4625,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,397,0,0,0,0,0,1,0,0,0,0,0,10,0,0,134834,39,834,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,23390,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,830,0,7,0,0,3445,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19531,0,52,0,0,0,6,19,282,1259,19521,0,0,0,0,1,0,3,0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,289,6,0,0,276,0,385,0,0,0,114,11,0,0,0,0,0,0,0,0,0,812,1,0,0,0,9,0,0,0,0,1,140,17,0,0,1,0,0,0,0,0,4763,1,0,803,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,223,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2011,137,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +1,0,0,6,0,35,7,0,35,0,5,0,0,7,6,0,555,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,176,0,0,0,0,0,1,0,0,0,0,0,5,0,0,19056,35,623,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4295,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,614,0,0,1,0,2846,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,782,0,47,0,0,0,1,4,260,1160,768,0,0,0,0,1,0,3,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,188,6,0,0,204,0,272,0,0,0,58,7,0,0,0,0,0,0,0,0,0,621,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3273,1,0,828,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,107,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1875,70,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,3,0,0,985,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,451,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,111,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,38,0,23,0,0,0,0,3,24,6,49,0,0,0,0,1,0,0,0,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,72,3,0,0,80,0,153,0,0,0,27,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,247,0,0,756,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,105,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,226,66,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,53,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,8,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,138,9,21,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,1,0,0,0,0,0,6,0,0,0,0,2,0,8,0,1,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,21,0,0,0,0,3,23,5,25,0,0,0,0,1,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,48,3,0,0,72,0,66,0,0,0,42,3,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,0,91,38,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,73,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,7,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,53,3,0,0,58,0,56,0,0,0,28,7,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1222,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,542,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,156,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,230,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +2,0,0,6,0,34,7,0,47,1,10,0,0,6,4,0,574,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,4,0,1,762,34,32,0,0,55,0,1,0,1,0,0,2,0,0,0,0,1,173,0,0,0,0,0,1,0,0,0,0,0,4,0,0,18118,34,658,0,3,0,0,0,0,0,19,0,0,0,0,1,8,24,4252,0,0,1,0,0,1,10,0,278,40,5,0,0,2,0,666,0,0,1,0,2743,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,639,0,58,0,0,0,1,4,258,1199,623,0,0,0,0,1,0,3,0,0,0,0,0,0,325,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,91,19,170,6,0,0,189,0,268,0,0,0,47,6,0,0,0,0,0,0,0,0,0,654,1,0,0,0,9,0,0,0,0,0,115,28,0,0,51,0,0,0,0,0,3931,1,0,819,6,0,1,1,1,0,0,0,8,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,4,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,35,54,0,4,12,0,0,0,0,0,81,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1925,46,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1400,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,87,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,617,0,0,0,0,0,11,43,226,0,0,0,0,0,0,0,0,0,0,0,0,0,1620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,21,2,0,0,57,0,90,0,0,0,48,5,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,45,0,0,0,0,0,0,0,0,318,0,0,364,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,114,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1410,5,3 +3546,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,136,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2147,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,686,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3546,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,225,0,93,0,0,0,0,3,27,9,224,0,0,0,0,1,0,0,0,0,0,0,0,0,9990,0,0,0,0,0,0,0,0,0,0,0,0,6,0,6,0,0,0,0,0,0,8,3,112,2,0,0,128,0,254,0,0,0,61,6,0,0,0,0,0,44,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,283,0,0,961,0,0,1,0,1,0,0,0,15,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,463,52,3 +7,0,0,6,0,39,8,0,43,4,5,0,0,2,9,0,568,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,7,898,39,38,0,0,39,0,3,0,1,0,0,3,0,0,0,0,4,158,1,0,0,0,0,1,0,0,0,0,0,9,0,0,31575,39,661,0,7,0,0,0,0,0,22,0,0,0,0,0,8,20,6406,0,0,7,0,0,0,0,0,94,5,5,0,0,2,0,646,0,6,0,0,3129,0,0,0,0,24,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,2989,0,72,0,0,0,6,19,246,1136,2984,0,0,0,0,1,0,4,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,19,237,6,0,0,237,0,351,0,0,0,88,12,0,0,0,0,0,0,0,0,0,641,1,0,0,0,9,0,0,0,0,1,123,25,0,0,1,0,0,0,0,0,3251,1,0,883,5,0,1,1,1,0,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,5,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,16,0,0,0,0,1,46,158,0,17,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1887,198,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1084,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,493,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,20,0,0,0,0,3,23,4,56,0,0,0,0,1,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,62,2,0,0,82,0,99,0,0,0,28,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,91,19,0,0,0,0,0,0,0,0,216,0,0,784,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,91,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,239,6,3 +7,0,0,3,0,31,4,0,21,0,2,0,0,2,2,0,19,0,7,3,0,0,0,5,0,8,0,0,4,0,5,0,0,0,5,0,31,6,0,0,28,0,0,0,1,0,0,2,0,0,0,0,5,144,0,0,0,0,0,1,0,0,0,0,0,2,0,0,677,31,61,0,8,0,0,0,0,0,12,0,0,0,0,0,7,14,135,0,0,5,0,0,0,0,0,76,5,3,0,0,2,0,36,0,0,0,0,496,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,97,0,62,0,0,0,8,7,189,22,100,0,0,0,0,1,0,3,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,10,137,3,0,0,151,0,233,0,0,0,44,7,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,112,21,0,0,0,0,0,0,0,0,666,0,0,39,2,0,1,1,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,11,0,0,0,0,1,36,178,0,9,8,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,188,33,3 +0,0,0,4,0,27,4,0,20,0,3,0,0,2,3,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,3,0,27,6,0,0,25,0,0,0,1,0,0,2,0,0,0,0,1,134,0,0,0,0,0,1,0,0,0,0,0,4,0,0,621,27,53,0,1,0,0,0,0,0,12,0,0,0,0,0,7,14,114,0,0,3,0,0,0,0,0,73,5,3,0,0,2,0,30,0,1,0,0,468,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,83,0,56,0,0,0,0,3,179,13,92,0,0,0,0,1,0,3,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,11,114,4,0,0,137,0,181,0,0,0,36,2,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,0,108,19,0,0,0,0,0,0,0,0,76,0,0,35,2,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,0,0,1,30,163,0,2,8,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,172,28,3 +3,0,0,3,0,13,6,0,42,0,13,0,0,0,2,0,22,0,7,1,0,0,0,1,0,0,3,0,1,0,2,0,0,0,2,0,13,6,0,0,61,0,1,0,1,0,0,1,0,0,0,0,1,103,0,0,0,0,0,1,0,0,0,0,0,7,0,0,4480,13,101,0,3,0,0,0,0,0,10,0,0,0,0,0,1,3,1399,0,0,2,0,0,1,33,0,270,30,3,0,0,2,0,180,0,0,0,0,687,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,774,0,61,0,0,0,2,7,29,419,780,0,0,0,0,1,0,0,0,0,0,0,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,134,3,0,0,97,0,222,0,0,0,37,6,0,0,0,0,0,0,0,0,0,92,1,0,0,0,2,0,0,0,0,1,95,88,0,0,66,0,0,0,0,0,1134,0,0,501,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,15,84,0,6,0,0,0,0,0,0,101,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,732,361,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1102,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,502,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,120,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,23,0,0,0,0,3,24,6,55,0,0,0,0,1,0,0,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,73,3,0,0,80,0,156,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,254,0,0,780,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,112,0,1,0,0,2,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,65,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,1,0,0,884,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,468,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,19,0,0,0,0,3,21,10,41,0,0,0,0,1,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,53,2,0,0,71,0,95,0,0,0,19,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,205,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,63,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,220,2,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,136,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2483,10,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,753,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,438,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,268,0,91,0,0,0,0,3,27,9,265,0,0,0,0,1,0,0,0,0,0,0,0,0,10202,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,109,2,0,0,130,0,253,0,0,0,63,11,0,0,0,0,0,47,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,300,0,0,1055,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,476,47,3 +2362,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,139,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2063,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,685,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,2362,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,219,0,90,0,0,0,0,3,27,9,218,0,0,0,0,1,0,0,0,0,0,0,0,0,6866,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,112,2,0,0,128,0,253,0,0,0,61,11,0,0,0,0,0,46,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,278,0,0,934,0,0,1,0,1,0,0,0,16,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,275,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,444,42,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,69,0,0,0,0,0,1,0,0,0,0,0,2,0,0,473,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,63,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,517,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1063,3,0,0,1056,0,288,0,0,0,14,5,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1075,9,0,0,0,0,0,0,0,0,95,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,30,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,124,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,119,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,58,3,0,0,72,0,90,0,0,0,41,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,605,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,35,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,122,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,119,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,58,3,0,0,72,0,84,0,0,0,41,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,550,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,62,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,658,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,54,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,173,3,0,0,83,0,342,0,0,0,13,11,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,96,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,58,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,56,0,0,0,28,11,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,29,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,253,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,26,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,50,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,11,0,3,0,1,0,0,3,0,0,0,0,0,89,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1262,11,58,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,534,0,0,3,0,0,0,0,0,12,0,5,0,0,2,0,15,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,41,0,0,0,0,3,25,6,98,0,0,0,0,1,0,0,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,76,2,0,0,105,0,120,0,0,0,45,2,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,23,0,0,0,0,0,0,0,0,228,0,0,815,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,234,0,1,0,0,1,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,289,16,3 +4,0,0,5,0,40,13,0,42,0,4,0,0,2,7,0,700,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5383,40,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,321,0,0,0,0,0,1,0,0,0,0,0,2,0,0,110372,40,787,0,10,0,0,0,0,0,24,0,0,0,0,0,8,18,18898,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,760,0,0,0,0,5325,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,14974,0,72,0,0,0,6,9,288,1534,14957,0,0,0,0,1,0,3,0,0,0,0,0,0,474,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,719,5,0,0,276,0,950,0,0,0,118,81,0,0,0,0,0,0,0,0,0,774,1,0,0,0,9,0,0,0,0,4,144,15,0,0,1,0,0,0,0,0,8688,1,0,1006,12,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,12,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,12,0,0,0,6,1,44,199,0,11,12,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3250,143,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,10,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,1,0,0,315,10,30,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,38,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,6,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,28,0,0,0,0,3,27,5,54,0,0,0,0,1,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,74,2,0,0,106,0,125,0,0,0,51,1,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,92,41,0,0,0,0,0,0,0,0,35,0,0,52,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,112,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,71,13,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,30,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,264,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,59,27,3 +4,0,0,5,0,38,21,0,44,0,4,0,0,2,7,0,737,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5706,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,289,0,0,0,0,0,1,0,0,0,0,0,2,0,0,126389,38,842,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,21424,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,805,0,0,0,0,6268,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,17410,0,71,0,0,0,6,9,284,1614,17393,0,0,0,0,1,0,3,0,0,0,0,0,0,818,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,735,5,0,0,283,0,944,0,0,0,127,93,0,0,0,0,0,0,0,0,0,821,1,0,0,0,9,0,0,0,0,4,139,19,0,0,1,0,0,0,0,0,9884,1,0,1134,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,242,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3646,155,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +17,0,0,6,0,39,21,0,47,6,5,0,0,2,12,0,834,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,5868,39,40,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,324,0,0,0,0,0,1,0,0,0,0,0,10,0,0,143389,39,956,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,24464,0,0,4,0,0,0,0,0,95,5,2,0,0,2,0,945,0,7,0,0,5232,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,20328,0,51,0,0,0,8,21,285,1636,20318,0,0,0,0,1,0,3,0,0,0,0,0,0,954,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,280,6,0,0,290,0,415,0,0,0,130,14,0,0,0,0,0,0,0,0,0,927,1,0,0,0,9,0,0,0,0,2,144,19,0,0,1,0,0,0,0,0,5093,1,0,1139,16,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,182,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2309,141,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1289,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,487,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,41,0,0,0,0,3,23,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,119,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,229,0,0,819,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,208,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,293,14,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2151,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,855,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,251,0,30,0,0,0,8,19,29,615,260,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,178,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,449,0,0,778,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,438,8,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1541,9,33,0,0,0,0,0,0,0,7,0,0,0,0,0,1,6,669,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,143,0,20,0,0,0,0,3,23,303,154,0,0,0,0,1,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,59,2,0,0,82,0,89,0,0,0,26,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,89,21,0,0,0,0,0,0,0,0,310,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,109,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,331,5,3 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,137,9,21,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,1,0,0,0,0,0,6,0,0,0,0,2,0,8,0,1,0,0,94,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,21,0,0,0,0,3,23,5,25,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,47,3,0,0,72,0,67,0,0,0,42,3,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,0,91,38,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,73,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,7,3 +9,0,0,3,0,31,4,0,21,0,2,0,0,2,2,0,19,0,7,3,0,0,0,5,0,8,0,0,5,0,5,0,0,0,5,0,31,6,0,0,28,0,0,0,1,0,0,2,0,0,0,0,5,140,0,0,0,0,0,1,0,0,0,0,0,2,0,0,675,31,62,0,9,0,0,0,0,0,12,0,0,0,0,0,7,14,125,0,0,5,0,0,0,0,0,77,5,3,0,0,2,0,37,0,0,0,0,504,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,97,0,62,0,0,0,8,7,189,22,100,0,0,0,0,1,0,3,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,10,137,3,0,0,151,0,247,0,0,0,44,6,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,112,21,0,0,0,0,0,0,0,0,679,0,0,39,2,0,1,1,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,12,0,0,0,0,1,36,155,0,10,8,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,182,32,3 +12,0,0,5,0,39,28,0,44,0,4,0,0,2,13,0,935,0,6,1,0,0,0,8,0,10,0,0,6,0,0,0,0,0,2,9463,39,56,0,0,22,0,1,0,1,0,0,2,0,0,0,0,1,727,0,0,0,0,0,1,0,0,0,0,0,2,0,0,174700,39,1077,0,4,0,0,0,0,0,48,0,0,0,0,0,8,19,37664,0,0,2,0,0,0,0,0,91,5,4,1,0,2,0,1045,0,0,0,0,2769,0,0,0,0,5,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,35974,0,53,0,0,0,0,3,310,601,35958,0,0,0,0,1,0,4,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,371,5,0,0,337,0,469,0,0,0,172,35,0,0,0,0,0,0,0,0,0,1032,1,0,0,0,9,0,0,0,0,1,163,25,0,0,1,0,0,0,0,0,8255,1,0,130,22,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,22,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,3,0,0,0,0,1,41,199,0,4,12,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2220,199,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,6,0,34,7,0,35,0,5,0,0,7,6,0,541,0,6,1,0,0,0,9,0,12,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,180,0,0,0,0,0,1,0,0,0,0,0,5,0,0,19372,34,610,0,4,0,0,0,0,0,18,0,0,0,0,0,9,28,4349,0,0,1,0,0,0,0,0,215,25,4,0,0,2,0,600,0,0,1,0,2768,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,745,0,47,0,0,0,2,5,255,1159,732,0,0,0,0,1,0,3,0,0,0,0,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,185,6,0,0,202,0,270,0,0,0,58,6,0,0,0,0,0,0,0,0,0,607,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3257,1,0,836,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,9,0,0,0,0,1,35,114,0,5,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1811,75,3 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,3,0,0,139,9,21,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,1,0,0,0,0,0,6,0,0,0,0,2,0,8,0,1,0,0,92,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,21,0,0,0,0,3,23,5,25,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,50,3,0,0,71,0,80,0,0,0,41,3,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,0,91,37,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,73,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,7,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,54,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,15,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,38,2,0,0,44,0,118,0,0,0,13,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,15,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,36,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,27,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,487,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,66,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,512,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,98,3,0,0,83,0,296,0,0,0,13,10,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,97,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,26,3 +10,0,0,5,0,40,17,0,44,0,4,0,0,2,14,0,763,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,6,5024,40,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,360,0,0,0,0,0,1,0,0,0,0,0,2,0,0,135970,40,875,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,23717,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,892,0,0,0,0,3769,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19746,0,57,0,0,0,8,19,279,1256,19737,0,0,0,0,1,0,3,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,286,5,0,0,281,0,395,0,0,0,121,20,0,0,0,0,0,0,0,0,0,850,1,0,0,0,9,0,0,0,0,2,142,17,0,0,1,0,0,0,0,0,6531,1,0,792,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,12,0,0,0,2,1,46,208,0,20,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2937,93,3 +1,0,0,2,0,12,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,12,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,132,12,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,31,0,0,0,0,3,34,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,84,2,0,0,97,0,262,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,94,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,12,113,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,62,26,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,76,2,0,0,91,0,251,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,27,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +1,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,280,10,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,39,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,30,0,0,0,0,3,26,4,54,0,0,0,0,1,0,0,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,67,2,0,0,83,0,264,0,0,0,22,4,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,92,17,0,0,0,0,0,0,0,0,37,0,0,59,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,59,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,75,28,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,4,0,13,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,442,13,35,0,4,0,0,0,0,0,6,0,0,0,0,0,1,3,99,0,0,4,0,0,0,0,0,10,0,1,0,0,2,0,11,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,85,0,38,0,0,0,0,3,27,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,89,2,0,0,89,0,183,0,0,0,33,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,16,0,0,0,0,0,0,0,0,47,0,0,72,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,17,36,0,4,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,103,153,3 +10,0,0,5,0,41,21,0,46,0,4,0,0,2,14,0,818,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,6,5868,41,162,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,394,0,0,0,0,0,1,0,0,0,0,0,2,0,0,139379,41,942,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,23693,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,954,0,0,0,0,5602,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,19545,0,54,0,0,0,8,19,290,1636,19535,0,0,0,0,1,0,3,0,0,0,0,0,0,913,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,321,5,0,0,300,0,473,0,0,0,140,31,0,0,0,0,0,0,0,0,0,911,1,0,0,0,9,0,0,0,0,2,150,19,0,0,1,0,0,0,0,0,6957,1,0,1130,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,204,0,20,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3230,121,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1233,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,522,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,27,0,0,0,0,3,31,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,94,2,0,0,94,0,174,0,0,0,31,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,17,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,261,151,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,60,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,3,3 +13,0,0,4,1,42,13,4,43,3,4,0,0,2,6,0,759,0,6,4,0,1,1,8,0,11,0,0,5,0,1,0,0,0,7,2849,43,32,123,0,32,0,1,0,1,0,0,2,0,0,0,0,1,285,0,0,0,0,0,1,0,0,0,0,0,7,0,0,79023,42,963,0,2,0,0,0,0,0,28,3,0,0,0,0,9,23,14243,0,4,7,0,0,0,0,0,97,5,4,0,0,2,1,792,0,4,0,0,2909,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,10451,0,55,0,0,0,0,3,276,1219,10432,0,0,0,0,1,0,3,0,0,0,0,0,0,900,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,41,14,283,5,0,0,313,0,373,0,0,0,137,16,0,0,0,0,0,0,0,0,0,833,1,0,0,0,14,0,0,0,0,1,138,34,0,0,0,0,0,0,0,0,4667,1,0,1649,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,14,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,1,0,0,0,0,9,50,211,0,3,14,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2044,114,3 +0,0,0,3,0,14,2,0,15,0,3,0,0,0,3,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,14,6,0,0,16,0,3,0,1,0,0,3,0,0,0,0,0,119,0,0,0,0,0,1,0,0,0,0,0,3,0,0,3576,14,59,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,963,0,0,5,0,0,0,0,0,12,0,5,0,0,2,0,17,0,1,0,0,451,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,340,0,45,0,0,0,0,3,29,253573,350,0,0,0,0,1,0,0,0,0,0,0,0,0,892,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,119,3,0,0,124,0,123,0,0,0,61,3,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,96,33,0,0,0,0,0,0,0,0,472,0,0,1407,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,19,219,0,1,0,0,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,646,14,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,30,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,255,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,26,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +16,0,0,6,0,39,15,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4923,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,351,0,0,0,0,0,1,0,0,0,0,0,10,0,0,131443,39,870,0,9,0,0,0,0,0,26,0,0,0,0,0,8,18,22878,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,867,0,7,0,0,3710,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19107,0,51,0,0,0,8,20,279,1238,19097,0,0,0,0,1,0,3,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,276,6,0,0,271,0,394,0,0,0,110,23,0,0,0,0,0,0,0,0,0,847,1,0,0,0,9,0,0,0,0,1,139,16,0,0,1,0,0,0,0,0,4770,1,0,774,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,13,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,197,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2037,122,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,1,9,0,3,0,3,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1203,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,511,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,67,2,0,0,79,0,161,0,0,0,25,3,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,257,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,101,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,129,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,51,3,0,0,63,0,92,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,220,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,127,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,31,0,0,0,2,4,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,63,0,94,0,0,0,33,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,12,3 +10,0,0,3,0,31,4,0,21,0,2,0,0,2,2,0,19,0,7,3,0,0,0,5,0,8,0,0,4,0,5,0,0,0,5,0,31,6,0,0,28,0,0,0,1,0,0,2,0,0,0,0,5,140,0,0,0,0,0,1,0,0,0,0,0,2,0,0,672,31,63,0,8,0,0,0,0,0,13,0,0,0,0,0,7,14,120,0,0,5,0,0,0,0,0,76,5,4,0,0,2,0,36,0,0,0,0,578,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,99,0,62,0,0,0,8,7,189,22,101,0,0,0,0,1,0,3,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,10,135,3,0,0,151,0,232,0,0,0,44,6,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,112,20,0,0,0,0,0,0,0,0,664,0,0,45,2,0,1,1,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,11,0,0,0,0,1,36,156,0,9,8,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,186,31,3 +1,0,0,4,0,35,16,0,36,0,2,0,0,2,13,0,705,0,6,2,0,0,0,8,0,11,0,0,4,0,1,0,5,0,3,4921,35,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,1,350,0,0,0,0,0,1,0,0,0,0,0,14,0,0,184650,35,788,0,1,0,0,0,0,0,26,0,0,0,0,0,9,21,31831,0,0,3,0,0,0,0,0,93,5,2,0,0,2,0,746,0,0,0,0,3405,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,27990,0,47,0,0,0,0,3,261,1216,27981,0,0,0,0,1,0,3,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,237,4,0,0,259,0,274,0,0,0,106,6,0,0,0,0,0,0,0,0,0,780,1,0,0,0,10,0,0,0,0,0,134,15,0,0,0,0,0,0,0,0,3738,1,0,758,15,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,5,15,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,38,131,0,2,14,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2003,24,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1051,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,467,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,96,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,22,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,69,3,0,0,80,0,151,0,0,0,27,1,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,252,0,0,775,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,105,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,62,3 +4,0,0,4,0,11,23,0,119,0,30,0,0,0,3,0,17,0,7,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,1,0,11,6,0,0,222,0,0,0,1,0,0,2,0,0,0,0,0,67,0,0,0,0,0,1,0,0,0,0,0,25,0,0,1375,11,201,0,3,0,0,0,0,0,9,0,0,0,0,0,1,4,703,0,0,1,0,0,2,111,0,856,30,3,0,0,2,0,560,0,1,0,0,147,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,390,0,34,0,0,0,0,3,29,745,403,0,0,0,0,1,0,0,0,0,0,0,0,0,293,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,4,77,4,0,0,115,0,185,0,0,0,57,4,0,0,0,0,0,0,0,0,0,199,1,0,0,0,2,0,0,0,0,1,93,298,0,0,60,0,0,0,0,0,623,0,0,66,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,12,115,0,3,0,0,0,0,0,0,295,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,13,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,126,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,137,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,6,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,1,0,0,1,0,1,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,136,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,51,3,0,0,63,0,87,0,0,0,33,10,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +0,0,0,3,0,12,2,0,16,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,12,0,0,0,1,0,0,3,0,0,0,0,0,84,0,0,0,0,0,1,0,0,0,0,0,3,0,0,9085,12,56,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,303,0,0,3,0,0,0,0,0,11,0,4,0,0,2,0,17,0,1,0,0,4129,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,237,0,59,0,0,0,0,3,26,7830,254,0,0,0,0,1,0,0,0,0,0,0,0,0,476,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,95,3,0,0,106,0,180,0,0,0,44,4,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,94,22,0,0,0,0,0,0,0,0,116,0,0,289,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,141,0,1,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,254,19,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1197,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,525,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,157,0,0,0,27,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,150,3 +10,0,0,5,0,42,17,0,42,0,4,0,0,2,14,0,727,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5022,42,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,388,0,0,0,0,0,1,0,0,0,0,0,2,0,0,133470,42,836,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,23190,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,855,0,0,0,0,3618,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,19373,0,54,0,0,0,8,19,290,1256,19363,0,0,0,0,1,0,3,0,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,281,5,0,0,287,0,396,0,0,0,122,16,0,0,0,0,0,0,0,0,0,812,1,0,0,0,9,0,0,0,0,2,145,17,0,0,1,0,0,0,0,0,6359,1,0,791,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,11,0,0,0,0,1,48,183,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2884,99,3 +10,0,0,5,0,41,17,0,44,0,4,0,0,2,14,0,782,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5022,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,437,0,0,0,0,0,1,0,0,0,0,0,2,0,0,134908,41,898,0,12,0,0,0,0,0,28,0,0,0,0,0,8,18,23487,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,915,0,0,0,0,3693,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19516,0,53,0,0,0,8,17,286,1258,19506,0,0,0,0,1,0,3,0,0,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,299,5,0,0,288,0,411,0,0,0,126,22,0,0,0,0,0,0,0,0,0,869,1,0,0,0,9,0,0,0,0,2,148,17,0,0,1,0,0,0,0,0,6589,1,0,784,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,187,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2969,140,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,8,2,0,17,0,2,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,52,0,0,7,0,2,0,1,0,0,2,0,0,0,0,0,55,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1161,8,51,0,1,0,0,0,0,0,12,0,0,0,0,0,1,7,456,0,0,0,0,0,0,0,0,10,0,4,0,0,2,0,33,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,66,0,30,0,0,0,0,3,22,7,76,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,18,3,85,3,0,0,89,0,150,0,0,0,28,4,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,0,91,17,0,0,0,0,0,0,0,0,288,0,0,802,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,190,0,1,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,259,43,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,1,0,0,47,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,23,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,40,2,0,0,35,0,140,0,0,0,5,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,4,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,1,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,83,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,105,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,54,3,0,0,63,0,83,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,1,0,0,862,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,436,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,19,0,0,0,0,3,21,10,42,0,0,0,0,1,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,53,2,0,0,72,0,93,0,0,0,19,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,205,0,0,736,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,63,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,221,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,79,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,65,0,58,0,0,0,35,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1108,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,495,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,21,0,0,0,0,3,23,4,57,0,0,0,0,1,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,64,2,0,0,82,0,94,0,0,0,28,1,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,91,19,0,0,0,0,0,0,0,0,217,0,0,788,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,130,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,239,7,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1289,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,514,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,87,0,39,0,0,0,0,3,23,6,97,0,0,0,0,1,0,0,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,119,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,811,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,189,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,286,15,3 +5,0,0,4,0,37,13,0,36,0,3,0,0,2,3,0,686,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2318,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,242,0,0,0,0,0,1,0,0,0,0,0,4,0,0,75729,37,775,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,13677,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,724,0,1,0,0,3167,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,9834,0,44,0,0,0,2,7,267,1184,9810,0,0,0,0,1,0,3,0,0,0,0,0,0,784,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,232,4,0,0,279,0,378,0,0,0,127,10,0,0,0,0,0,0,0,0,0,749,1,0,0,0,10,0,0,0,0,1,131,36,0,0,0,0,0,0,0,0,4281,1,0,1593,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1912,47,3 +2362,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,143,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2101,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,727,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,2362,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,221,0,91,0,0,0,0,3,27,9,220,0,0,0,0,1,0,0,0,0,0,0,0,0,6895,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,122,2,0,0,128,0,255,0,0,0,61,8,0,0,0,0,0,47,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,279,0,0,933,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,305,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,448,47,3 +2,0,0,3,0,9,2,0,18,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,2,0,0,912,9,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,466,0,0,1,0,0,0,0,0,8,0,1,0,0,2,0,15,0,0,0,0,84,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,32,0,26,0,0,0,0,3,23,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,75,4,0,0,78,0,106,0,0,0,18,2,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,91,8,0,0,0,0,0,0,0,0,781,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,96,0,1,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,229,17,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,7,0,0,210,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,182,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,60,3,0,0,69,0,88,0,0,0,39,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,37,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,139,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,92,0,0,0,33,6,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1232,13,37,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,521,0,0,3,0,0,0,0,0,11,0,2,0,0,2,0,11,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,89,2,0,0,91,0,177,0,0,0,31,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,150,3 +10,0,0,5,0,41,21,0,43,0,4,0,0,2,14,0,710,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,355,0,0,0,0,0,1,0,0,0,0,0,2,0,0,138323,41,829,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23463,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,844,0,0,0,0,5579,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,19371,0,55,0,0,0,8,16,290,1628,19364,0,0,0,0,1,0,3,0,0,0,0,0,0,929,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,310,5,0,0,300,0,429,0,0,0,140,27,0,0,0,0,0,0,0,0,0,800,1,0,0,0,9,0,0,0,0,2,150,19,0,0,1,0,0,0,0,0,6427,1,0,1141,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,9,0,0,0,0,1,47,206,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3145,256,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,213,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,122,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,55,3,0,0,63,0,93,0,0,0,33,9,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,11,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,231,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,165,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,54,3,0,0,73,0,68,0,0,0,43,3,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,36,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +7,0,0,5,0,41,21,0,44,0,4,0,0,2,12,0,841,0,6,1,0,0,0,8,0,10,0,0,7,0,2,0,0,0,6,5870,41,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,2,351,0,0,0,0,0,1,0,0,0,0,0,2,0,0,141078,41,946,0,6,0,0,0,0,0,32,0,0,0,0,0,8,18,24053,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,929,0,0,0,0,5756,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19935,0,55,0,0,0,2,5,290,1618,19927,0,0,0,0,1,0,3,0,0,0,0,0,0,860,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,295,5,0,0,294,0,428,0,0,0,136,17,0,0,0,0,0,0,0,0,0,930,1,0,0,0,9,0,0,0,0,2,143,19,0,0,1,0,0,0,0,0,6692,1,0,1114,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,362,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,6,0,0,0,0,1,47,217,0,7,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2964,176,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,783,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5870,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,360,0,0,0,0,0,1,0,0,0,0,0,2,0,0,141471,41,905,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,24171,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,918,0,0,0,0,5186,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19923,0,53,0,0,0,8,19,290,1631,19913,0,0,0,0,1,0,3,0,0,0,0,0,0,936,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,306,5,0,0,297,0,408,0,0,0,137,26,0,0,0,0,0,0,0,0,0,875,1,0,0,0,9,0,0,0,0,2,147,19,0,0,1,0,0,0,0,0,6749,1,0,1149,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,228,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3172,105,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,220,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,134,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,31,0,0,0,2,4,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,54,3,0,0,63,0,93,0,0,0,33,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,601,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,9,3 +0,0,0,3,0,14,2,0,7,0,3,0,0,0,3,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,14,6,0,0,16,0,0,0,1,0,0,1,0,0,0,0,0,117,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2422,14,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,467,0,0,5,0,0,0,0,0,7,0,2,0,0,2,0,9,0,1,0,0,444,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,279,0,34,0,0,0,0,3,29,184505,291,0,0,0,0,1,0,0,0,0,0,0,0,0,713,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,115,3,0,0,108,0,129,0,0,0,52,9,0,0,0,0,0,0,0,0,0,36,1,0,0,0,2,0,0,0,0,0,96,30,0,0,0,0,0,0,0,0,265,0,0,587,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,19,128,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,398,12,3 +5,0,0,4,0,37,13,0,37,0,3,0,0,2,3,0,682,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2305,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,244,0,0,0,0,0,1,0,0,0,0,0,4,0,0,65653,37,772,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,11829,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,721,0,1,0,0,3474,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,8257,0,45,0,0,0,2,7,263,1185,8234,0,0,0,0,1,0,3,0,0,0,0,0,0,717,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,231,4,0,0,278,0,365,0,0,0,126,8,0,0,0,0,0,0,0,0,0,746,1,0,0,0,10,0,0,0,0,1,130,36,0,0,0,0,0,0,0,0,4116,1,0,1522,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1875,47,3 +3549,0,0,2,0,12,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,12,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,140,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2061,12,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,675,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,221,0,96,0,0,0,0,3,35,9,220,0,0,0,0,1,0,0,0,0,0,0,0,0,9875,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,120,2,0,0,136,0,254,0,0,0,63,8,0,0,0,0,0,45,0,0,0,44,1,0,0,0,2,0,0,0,0,1,94,43,0,0,0,0,0,0,0,0,279,0,0,930,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,12,284,0,1,0,0,2,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,451,51,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,62,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,93,10,24,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,13,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,43,3,0,0,58,0,100,0,0,0,28,5,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,20,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,16,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,56,0,0,0,28,10,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,122,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,114,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,36,3 +10,0,0,5,0,42,21,0,43,0,4,0,0,2,14,0,728,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5870,42,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,381,0,0,0,0,0,1,0,0,0,0,0,2,0,0,130972,42,851,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,22421,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,866,0,0,0,0,5446,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,18374,0,57,0,0,0,8,17,298,1613,18363,0,0,0,0,1,0,3,0,0,0,0,0,0,861,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,293,5,0,0,298,0,399,0,0,0,136,18,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,2,147,19,0,0,1,0,0,0,0,0,6496,1,0,1103,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,12,0,0,0,2,1,48,202,0,22,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3168,165,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +12,0,0,5,0,37,36,0,50,0,4,0,0,2,13,0,1068,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,2,11285,37,56,0,0,22,0,1,0,1,0,0,2,0,0,0,0,1,403,0,0,0,0,0,1,0,0,0,0,0,2,0,0,159495,37,1234,0,4,0,0,0,0,0,56,0,0,0,0,0,8,19,29650,0,0,2,0,0,0,0,0,91,5,4,1,0,2,0,1187,0,0,0,0,6476,0,0,0,0,5,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,12,12,12,0,0,0,27390,0,51,0,0,0,0,3,308,1348,27375,0,0,0,0,1,0,4,0,0,0,0,0,0,1514,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,342,5,0,0,335,0,462,0,0,0,169,36,0,0,0,0,0,0,0,0,0,1179,1,0,0,0,9,0,0,0,0,1,149,29,0,0,1,0,0,0,0,0,8937,1,0,786,26,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,26,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,3,0,0,0,0,1,39,259,0,5,12,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2675,91,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1380,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,553,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,41,0,0,0,0,3,23,6,102,0,0,0,0,1,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,118,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,233,0,0,831,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,190,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,304,13,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2362,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,139,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2126,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,697,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,2362,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,225,0,91,0,0,0,0,3,27,9,224,0,0,0,0,1,0,0,0,0,0,0,0,0,6883,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,112,2,0,0,128,0,246,0,0,0,61,9,0,0,0,0,0,44,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,282,0,0,948,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,450,48,3 +1,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,173,10,37,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,74,2,0,0,109,0,254,0,0,0,41,7,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,37,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,147,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,62,23,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,108,10,24,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,13,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,21,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,53,3,0,0,58,0,87,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,20,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,14,3 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,869,8,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,453,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,15,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,21,0,0,0,0,3,21,4,41,0,0,0,0,1,0,0,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,61,2,0,0,78,0,88,0,0,0,17,0,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,88,13,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,107,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,223,2,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,8,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3,0,0,2,0,11,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,11,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1208,11,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,524,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,92,0,27,0,0,0,6,15,28,21,107,0,0,0,0,1,0,0,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,72,2,0,0,82,0,162,0,0,0,25,6,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,91,15,0,0,0,0,0,0,0,0,270,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,6,0,0,0,0,1,13,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,270,101,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,54,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,40,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,65,0,0,0,0,0,1,0,0,0,0,0,2,0,0,498,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,66,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,499,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,28,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1151,3,0,0,1132,0,347,0,0,0,14,8,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1151,9,0,0,0,0,0,0,0,0,103,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,32,3 +16,0,0,6,0,39,15,0,46,6,5,0,0,2,12,0,835,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4923,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,366,0,0,0,0,0,1,0,0,0,0,0,10,0,0,127805,39,944,0,9,0,0,0,0,0,26,0,0,0,0,0,8,18,22331,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,939,0,7,0,0,3858,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,18470,0,51,0,0,0,8,20,279,1240,18460,0,0,0,0,1,0,3,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,284,6,0,0,271,0,387,0,0,0,109,14,0,0,0,0,0,0,0,0,0,921,1,0,0,0,9,0,0,0,0,1,139,16,0,0,1,0,0,0,0,0,4951,1,0,782,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,13,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,206,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2069,143,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1245,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,566,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,157,0,0,0,27,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,149,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,122,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,119,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,58,3,0,0,72,0,89,0,0,0,41,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,36,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +16,0,0,6,0,38,15,0,42,6,5,0,0,2,12,0,673,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4925,38,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,347,0,0,0,0,0,1,0,0,0,0,0,10,0,0,139476,38,776,0,9,0,0,0,0,0,26,0,0,0,0,0,8,18,24346,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,775,0,7,0,0,3722,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,20481,0,52,0,0,0,8,20,272,1235,20472,0,0,0,0,1,0,3,0,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,283,6,0,0,269,0,388,0,0,0,110,12,0,0,0,0,0,0,0,0,0,755,1,0,0,0,9,0,0,0,0,1,138,16,0,0,1,0,0,0,0,0,4654,1,0,778,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,13,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,19,0,0,0,0,1,42,210,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2061,144,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1237,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,562,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,31,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,155,0,0,0,27,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,271,149,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,5,0,0,115,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,126,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,9,34,0,0,0,0,1,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,50,3,0,0,67,0,63,0,0,0,37,3,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,30,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,5,0,0,53,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,5,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,36,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +1,0,0,6,0,35,7,0,33,0,5,0,0,7,6,0,486,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,188,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18453,35,552,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4235,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,545,0,0,1,0,3088,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,685,0,46,0,0,0,1,4,263,1157,670,0,0,0,0,1,0,3,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,189,6,0,0,203,0,272,0,0,0,58,4,0,0,0,0,0,0,0,0,0,550,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3167,1,0,836,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,112,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1913,75,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,268,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1222,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,530,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,79,0,161,0,0,0,25,3,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,264,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,101,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,998,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,456,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,19,0,0,0,0,3,22,4,52,0,0,0,0,1,0,0,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,57,2,0,0,75,0,85,0,0,0,21,1,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,17,0,0,0,0,0,0,0,0,212,0,0,768,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,114,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,227,7,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,68,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1288,10,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,526,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,87,0,42,0,0,0,0,3,27,6,97,0,0,0,0,1,0,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,81,2,0,0,127,0,119,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,225,0,0,807,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,190,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,289,15,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1246,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,539,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,30,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,92,0,163,0,0,0,29,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,17,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,34,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,261,153,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,127,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,92,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1240,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,548,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,28,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,67,2,0,0,79,0,161,0,0,0,25,4,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,263,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,101,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,57,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +16,0,0,6,0,39,17,0,43,6,5,0,0,2,12,0,727,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4946,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,349,0,0,0,0,0,1,0,0,0,0,0,10,0,0,134890,39,836,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,23574,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,832,0,7,0,0,3668,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19716,0,53,0,0,0,8,20,281,1257,19706,0,0,0,0,1,0,3,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,281,6,0,0,275,0,398,0,0,0,112,20,0,0,0,0,0,0,0,0,0,812,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4729,1,0,800,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,20,0,0,0,2,1,43,219,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2083,137,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1207,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,528,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,31,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,155,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,8,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +10,0,0,5,0,41,17,0,46,0,4,0,0,2,14,0,818,0,6,1,0,0,0,8,0,11,9,0,9,0,4,0,0,0,6,5022,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,342,0,0,0,0,0,1,0,0,0,0,0,2,0,0,131889,41,934,0,11,0,0,0,0,0,28,0,0,0,0,0,8,18,23025,0,0,6,0,0,0,0,0,97,5,2,0,0,2,0,950,0,0,0,0,3745,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,18989,0,58,0,0,0,8,17,286,1258,18979,0,0,0,0,1,0,3,0,0,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,298,5,0,0,286,0,425,0,0,0,124,23,0,0,0,0,0,0,0,0,0,907,1,0,0,0,9,0,0,0,0,2,146,17,0,0,1,0,0,0,0,0,6683,1,0,788,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,184,0,21,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2961,155,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,272,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,55,0,0,0,28,5,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,2,0,14,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,14,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1155,14,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,468,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,55,0,33,0,0,0,8,19,28,22,66,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,184,0,0,0,48,4,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,96,32,0,0,0,0,0,0,0,0,255,0,0,766,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,0,1,17,238,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,247,10,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,129,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,92,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,76,2,0,0,91,0,255,0,0,0,22,8,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,103,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,24,3 +1,0,0,3,0,10,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,19,0,0,0,0,0,1,0,0,0,0,0,5,0,0,87,10,25,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,14,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,23,0,0,0,2,3,25,7,37,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,47,3,0,0,58,0,72,0,0,0,28,2,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,21,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,19,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,76,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,65,0,59,0,0,0,35,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,7,0,0,203,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,140,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,4,26,7,38,0,0,0,0,1,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,59,3,0,0,69,0,86,0,0,0,39,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,15,3 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,896,8,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,480,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,15,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,19,0,0,0,0,3,21,4,41,0,0,0,0,1,0,0,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,61,2,0,0,78,0,88,0,0,0,17,0,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,88,13,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,107,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,2,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,764,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,361,0,0,0,0,0,1,0,0,0,0,0,10,0,0,130875,39,875,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,22943,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,870,0,7,0,0,3224,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18995,0,50,0,0,0,8,20,280,1256,18985,0,0,0,0,1,0,3,0,0,0,0,0,0,365,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,287,6,0,0,276,0,392,0,0,0,116,16,0,0,0,0,0,0,0,0,0,850,1,0,0,0,9,0,0,0,0,1,141,17,0,0,1,0,0,0,0,0,4839,1,0,784,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,209,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2038,123,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,69,0,0,0,0,0,1,0,0,0,0,0,2,0,0,468,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,62,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,455,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,90,3,0,0,83,0,291,0,0,0,13,13,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,97,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,25,3 +14,0,0,2,0,19,2,0,9,0,2,0,0,0,2,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,8,0,3,0,9,0,19,6,0,0,21,0,2,0,1,0,0,3,0,0,0,0,8,97,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3020,19,52,0,9,0,0,0,0,0,12,0,0,0,0,0,1,7,960,0,0,9,0,0,0,0,0,11,0,4,0,0,2,0,14,0,0,0,0,414,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,301,0,70,0,0,0,16,9,43,228,320,0,0,0,0,1,0,0,0,0,0,0,0,0,642,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,155,2,0,0,110,0,202,0,0,0,53,13,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,1,101,15,0,0,0,0,0,0,0,0,1007,0,0,1165,0,0,1,0,1,0,0,0,5,0,5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,3,0,369,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,16,0,0,0,0,1,28,74,0,8,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,627,27,3 +2,0,0,2,0,19,3,0,29,0,2,0,0,0,2,0,75,0,6,1,0,0,0,1,0,0,36,0,0,0,12,0,0,0,3,0,19,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,12,70,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2275,19,151,0,13,0,0,0,0,0,7,0,0,0,0,0,1,6,874,0,0,3,0,0,0,0,0,56,0,2,0,0,2,0,233,0,0,0,0,586,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,257,0,41,0,0,0,24,52,33,649,271,0,0,0,0,1,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,115,2,0,0,132,0,216,0,0,0,47,6,0,0,0,0,0,0,0,0,0,117,1,0,0,0,2,0,0,0,0,13,101,31,0,0,0,0,0,0,0,0,531,0,0,774,0,0,1,0,1,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,373,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,12,0,0,0,0,1,22,210,0,48,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,455,15,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,67,0,0,0,0,0,1,0,0,0,0,0,2,0,0,459,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,66,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,491,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,28,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1158,3,0,0,1153,0,293,0,0,0,14,10,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1172,9,0,0,0,0,0,0,0,0,99,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,30,3 +0,0,0,3,0,9,2,0,16,4,3,0,0,0,7,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,2,0,1,0,9,6,0,0,16,0,0,0,1,0,0,4,0,0,0,0,0,97,0,0,0,0,0,1,0,0,0,0,0,7,0,0,11257,9,62,0,1,0,0,0,0,0,15,0,0,0,1,0,1,6,2441,0,0,1,0,0,0,0,0,9,0,8,0,0,2,0,25,0,5,0,0,116,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1442,0,40,0,0,0,0,3,23,14,1459,0,0,0,0,1,0,0,0,0,0,0,0,0,2317,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,8,106,3,0,0,129,0,127,0,0,0,70,5,0,0,0,0,0,0,0,0,0,48,1,0,0,0,2,0,0,0,0,0,91,51,0,0,0,0,0,0,0,0,633,0,0,3239,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,218,0,1,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1115,28,3 +16,0,0,6,0,39,17,0,41,6,5,0,0,2,12,0,656,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,39,160,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,379,0,0,0,0,0,1,0,0,0,0,0,10,0,0,235697,39,764,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,62558,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,762,0,7,0,0,3570,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,58782,0,54,0,0,0,8,20,279,1257,58773,0,0,0,0,1,0,3,0,0,0,0,0,0,378,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,316,6,0,0,282,0,501,0,0,0,119,19,0,0,0,0,0,0,0,0,0,739,1,0,0,0,9,0,0,0,0,1,145,17,0,0,1,0,0,0,0,0,4570,1,0,784,14,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,212,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1976,134,3 +0,0,0,2,0,15,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,976,15,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,52,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,66,0,0,0,0,0,7,41,195,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,8,2,0,0,50,0,85,0,0,0,45,1,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,41,0,0,0,0,0,0,0,0,289,0,0,268,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,114,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,270,2,3 +1,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,254,10,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,33,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,28,0,0,0,0,3,26,4,52,0,0,0,0,1,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,68,2,0,0,83,0,245,0,0,0,22,13,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,92,17,0,0,0,0,0,0,0,0,35,0,0,48,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,59,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,65,29,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,132,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,30,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,79,2,0,0,94,0,264,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,27,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +2,0,0,2,0,11,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1969,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,844,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,335,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,238,0,26,0,0,0,0,3,25,594,253,0,0,0,0,1,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,65,2,0,0,98,0,125,0,0,0,42,3,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,402,0,0,751,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,427,7,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,219,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,131,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,31,0,0,0,2,4,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,91,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,12,3 +16,0,0,6,0,39,17,0,43,6,5,0,0,2,12,0,727,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4625,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,364,0,0,0,0,0,1,0,0,0,0,0,10,0,0,122724,39,834,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,21551,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,830,0,7,0,0,3521,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,17561,0,52,0,0,0,6,19,281,1257,17551,0,0,0,0,1,0,3,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,277,6,0,0,275,0,390,0,0,0,116,15,0,0,0,0,0,0,0,0,0,812,1,0,0,0,9,0,0,0,0,1,138,17,0,0,1,0,0,0,0,0,4818,1,0,795,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,208,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2099,134,3 +0,0,0,3,0,27,4,0,20,0,2,0,0,2,2,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,2,0,27,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,1,137,0,0,0,0,0,1,0,0,0,0,0,2,0,0,592,27,52,0,1,0,0,0,0,0,12,0,0,0,0,0,7,14,100,0,0,2,0,0,0,0,0,73,5,3,0,0,2,0,28,0,0,0,0,384,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,78,0,48,0,0,0,0,3,182,10,82,0,0,0,0,1,0,3,0,0,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,114,3,0,0,137,0,179,0,0,0,33,1,0,0,0,0,0,0,0,0,0,53,1,0,0,0,8,0,0,0,0,0,108,19,0,0,0,0,0,0,0,0,71,0,0,38,2,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,0,0,1,29,153,0,2,8,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,152,27,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,362,0,0,0,0,0,1,0,0,0,0,0,10,0,0,128951,39,872,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,22383,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,867,0,7,0,0,3477,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18530,0,52,0,0,0,8,20,281,1256,18520,0,0,0,0,1,0,3,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,274,6,0,0,275,0,390,0,0,0,113,15,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4826,1,0,800,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,206,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2025,127,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,5,0,0,118,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,134,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,51,3,0,0,61,0,66,0,0,0,31,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,24,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,8,3 +0,0,0,3,0,26,4,0,20,0,2,0,0,2,2,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,1,0,26,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,1,141,0,0,0,0,0,1,0,0,0,0,0,2,0,0,566,26,52,0,1,0,0,0,0,0,12,0,0,0,0,0,7,14,87,0,0,1,0,0,0,0,0,73,5,3,0,0,2,0,28,0,0,0,0,454,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,77,0,46,0,0,0,0,3,181,10,81,0,0,0,0,1,0,3,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,123,3,0,0,136,0,167,0,0,0,32,3,0,0,0,0,0,0,0,0,0,53,1,0,0,0,8,0,0,0,0,0,107,21,0,0,0,0,0,0,0,0,61,0,0,37,2,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,0,0,0,0,0,1,27,151,0,2,8,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,141,28,3 +0,0,0,3,0,17,2,0,15,2,3,0,0,0,5,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,7,0,17,6,0,0,22,0,0,0,1,0,0,5,0,0,0,0,0,117,0,0,0,0,0,1,0,0,0,0,0,5,0,0,10712,17,65,0,1,0,0,0,0,0,21,0,0,0,0,0,1,7,1746,0,0,7,0,0,0,0,0,13,0,8,0,0,2,0,20,0,3,0,0,2491,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1155,0,75,0,0,0,0,3,31,211,1169,0,0,0,0,1,0,0,0,0,0,0,0,0,824,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,6,173,3,0,0,152,0,252,0,0,0,84,12,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,100,48,0,0,0,0,0,0,0,0,614,0,0,707,0,0,1,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,0,0,0,0,0,1,24,322,0,1,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,801,49,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,57,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,5,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,38,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,2,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1233,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,540,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,92,0,26,0,0,0,6,15,24,21,107,0,0,0,0,1,0,0,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,69,2,0,0,79,0,161,0,0,0,25,6,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,264,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,101,3 +0,0,0,3,0,9,2,0,7,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,2,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,257,9,32,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,32,0,0,1,0,0,0,0,0,7,0,4,0,0,2,0,8,0,1,0,0,118,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,17,0,0,0,0,3,23,4,45,0,0,0,0,1,0,0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,70,3,0,0,87,0,86,0,0,0,34,4,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,92,23,0,0,0,0,0,0,0,0,34,0,0,55,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,103,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,9,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1233,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,522,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,27,0,0,0,0,3,31,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,92,2,0,0,94,0,183,0,0,0,31,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,17,35,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,261,150,3 +3549,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,144,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2235,11,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,718,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,244,0,92,0,0,0,0,3,31,9,241,0,0,0,0,1,0,0,0,0,0,0,0,0,9881,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,121,2,0,0,135,0,247,0,0,0,65,9,0,0,0,0,0,44,0,0,0,44,1,0,0,0,2,0,0,0,0,1,93,43,0,0,0,0,0,0,0,0,280,0,0,978,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,284,0,0,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,452,54,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,106,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1625,9,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,358,0,0,1,0,0,0,0,0,7,0,1,0,0,2,0,7,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,208,0,36,0,0,0,0,3,24,5,223,0,0,0,0,1,0,0,0,0,0,0,0,0,461,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,83,0,100,0,0,0,30,7,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,91,20,0,0,0,0,0,0,0,0,198,0,0,364,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,123,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,316,13,3 +3549,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,146,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2537,11,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,783,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,287,0,92,0,0,0,0,3,31,9,284,0,0,0,0,1,0,0,0,0,0,0,0,0,10001,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,125,2,0,0,135,0,258,0,0,0,65,7,0,0,0,0,0,42,0,0,0,44,1,0,0,0,2,0,0,0,0,1,93,43,0,0,0,0,0,0,0,0,294,0,0,1068,0,0,1,0,1,0,0,0,15,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,284,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,478,52,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,256,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,27,3 +10,0,0,5,0,43,21,0,44,0,4,0,0,2,14,0,783,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,43,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,416,0,0,0,0,0,1,0,0,0,0,0,2,0,0,140697,43,902,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,24015,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,916,0,0,0,0,5113,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19841,0,54,0,0,0,8,19,301,1622,19830,0,0,0,0,1,0,3,0,0,0,0,0,0,914,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,310,5,0,0,304,0,410,0,0,0,141,21,0,0,0,0,0,0,0,0,0,874,1,0,0,0,9,0,0,0,0,2,150,19,0,0,1,0,0,0,0,0,6887,1,0,1121,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,11,0,0,0,0,1,49,192,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3232,81,3 +4,0,0,5,0,34,21,0,42,0,4,0,0,2,7,0,682,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,34,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,258,0,0,0,0,0,1,0,0,0,0,0,2,0,0,122403,34,777,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,21049,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,741,0,0,0,0,5083,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,16801,0,65,0,0,0,0,3,273,1596,16791,0,0,0,0,1,0,3,0,0,0,0,0,0,828,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,350,5,0,0,273,0,875,0,0,0,120,12,0,0,0,0,0,0,0,0,0,764,1,0,0,0,9,0,0,0,0,0,137,19,0,0,1,0,0,0,0,0,8448,1,0,1130,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,35,194,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3272,87,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1251,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,540,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,27,0,0,0,0,3,31,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,97,2,0,0,94,0,174,0,0,0,31,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,17,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,261,151,3 +5,0,0,4,0,37,14,0,35,0,3,0,0,2,3,0,649,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2844,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,577,0,0,0,0,0,1,0,0,0,0,0,4,0,0,88763,37,737,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,15865,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,687,0,1,0,0,3567,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,11498,0,44,0,0,0,2,7,266,1224,11474,0,0,0,0,1,0,3,0,0,0,0,0,0,1004,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,249,4,0,0,280,0,365,0,0,0,127,15,0,0,0,0,0,0,0,0,0,712,1,0,0,0,10,0,0,0,0,1,131,36,0,0,0,0,0,0,0,0,4415,1,0,1962,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,240,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2125,51,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1277,9,58,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,519,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,39,0,0,0,0,3,23,6,97,0,0,0,0,1,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,125,0,119,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,224,0,0,806,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,191,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,285,13,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,4,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,92,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,621,0,0,0,0,0,19,43,235,0,0,0,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,30,2,0,0,63,0,82,0,0,0,48,8,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,5,45,0,0,0,0,0,0,0,0,327,0,0,384,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,4,115,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1427,6,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,117,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1755,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,598,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,417,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,168,0,67,0,0,0,0,3,27,9,167,0,0,0,0,1,0,0,0,0,0,0,0,0,10050,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,100,2,0,0,128,0,244,0,0,0,61,3,0,0,0,0,0,1,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,255,0,0,920,0,0,1,0,1,0,0,0,15,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,376,48,3 +9,0,0,6,0,39,21,0,47,6,5,0,0,2,12,0,832,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,4,5879,39,26858,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,342,0,0,0,0,0,1,0,0,0,0,0,10,0,0,143485,39,952,0,7,0,0,0,0,0,32,0,0,0,0,0,8,18,24458,0,0,4,0,0,0,0,0,90,5,2,0,0,2,0,938,0,7,0,0,5273,0,0,0,0,9,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,20309,0,53,0,0,0,6,19,285,1624,20299,0,0,0,0,1,0,3,0,0,0,0,0,0,921,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,306,6,0,0,285,0,379,0,0,0,125,14,0,0,0,0,0,0,0,0,0,925,1,0,0,0,9,0,0,0,0,1,139,19,0,0,1,0,0,0,0,0,31803,1,0,1126,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,16,0,0,0,0,1,43,205,0,17,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2306,95,3 +3549,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,121,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1771,11,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,579,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,170,0,67,0,0,0,0,3,31,9,169,0,0,0,0,1,0,0,0,0,0,0,0,0,9555,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,102,2,0,0,133,0,245,0,0,0,63,5,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,93,43,0,0,0,0,0,0,0,0,255,0,0,936,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,284,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,380,46,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,50,0,0,0,28,6,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,61,0,0,0,0,0,1,0,0,0,0,0,2,0,0,435,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,49,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,430,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,32,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,99,3,0,0,83,0,287,0,0,0,13,8,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,86,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,26,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,231,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,135,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,54,3,0,0,73,0,68,0,0,0,43,8,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,36,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +1,0,0,2,0,11,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,290,11,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,39,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,30,0,0,0,0,3,30,4,56,0,0,0,0,1,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,70,2,0,0,86,0,259,0,0,0,22,3,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,93,17,0,0,0,0,0,0,0,0,38,0,0,61,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,59,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,76,28,3 +7,0,0,5,0,41,21,0,48,0,4,0,0,2,12,0,888,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,424,0,0,0,0,0,1,0,0,0,0,0,2,0,0,146608,41,1010,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,25025,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,1019,0,0,0,0,5324,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,20758,0,55,0,0,0,8,16,290,1611,20750,0,0,0,0,1,0,3,0,0,0,0,0,0,839,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,332,5,0,0,299,0,436,0,0,0,139,27,0,0,0,0,0,0,0,0,0,981,1,0,0,0,9,0,0,0,0,2,149,19,0,0,1,0,0,0,0,0,6764,1,0,1090,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,364,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,9,0,0,0,0,1,47,206,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2892,268,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,3,3 +0,0,0,3,0,25,5,0,11,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,2,0,1,0,25,6,0,0,20,0,1,0,1,0,0,1,0,0,0,0,1,70,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1612,25,42,0,1,0,0,0,0,0,11,0,0,0,0,0,7,15,617,0,0,1,0,0,0,0,0,74,5,3,0,0,2,0,20,0,0,0,0,1046,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,90,0,36,0,0,0,0,3,177,8,92,0,0,0,0,1,0,3,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,116,3,0,0,135,0,278,0,0,0,43,5,0,0,0,0,0,0,0,0,0,45,1,0,0,0,8,0,0,0,0,0,107,30,0,0,0,0,0,0,0,0,272,0,0,768,3,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,3,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,89,0,2,9,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,333,122,3 +16,0,0,6,0,39,15,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4923,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,401,0,0,0,0,0,1,0,0,0,0,0,10,0,0,136191,39,869,0,9,0,0,0,0,0,26,0,0,0,0,0,8,18,23718,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,866,0,7,0,0,3435,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,20014,0,51,0,0,0,8,20,275,1240,20005,0,0,0,0,1,0,3,0,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,286,6,0,0,274,0,407,0,0,0,113,17,0,0,0,0,0,0,0,0,0,847,1,0,0,0,9,0,0,0,0,1,142,16,0,0,1,0,0,0,0,0,4709,1,0,782,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,13,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,20,0,0,0,2,1,43,218,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2022,135,3 +0,0,0,1,0,0,1,0,12,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,62,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,4,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,5,0,35,21,0,44,0,4,0,0,2,7,1,825,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,310,0,0,0,0,0,1,0,0,0,0,0,2,0,0,115718,35,922,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19794,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,795,0,0,0,0,5137,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15690,0,102,0,0,0,0,3,307,1591,15664,0,0,0,0,1,0,3,0,0,0,0,0,0,820,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,41,13,361,5,0,0,272,0,878,0,0,0,116,21,0,0,0,0,0,0,0,0,0,910,1,0,0,0,9,0,0,0,0,0,134,19,0,0,1,0,0,0,0,0,8384,1,0,1128,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,35,35,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,27,36,218,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3099,92,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,46,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,75,0,0,0,0,0,1,0,0,0,0,0,2,0,0,497,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,66,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,939,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,31,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,100,3,0,0,83,0,379,0,0,0,13,13,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,112,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,30,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1337,10,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,541,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,41,0,0,0,0,3,27,6,101,0,0,0,0,1,0,0,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,82,2,0,0,127,0,132,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,230,0,0,819,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,192,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,298,26,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,54,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,2,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,260,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,100,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,26,3 +4,0,0,5,0,37,21,0,43,0,4,0,0,2,7,0,772,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5706,37,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,252,0,0,0,0,0,1,0,0,0,0,0,2,0,0,121665,37,868,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20788,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,831,0,0,0,0,5358,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,16513,0,69,0,0,0,0,3,289,1599,16502,0,0,0,0,1,0,3,0,0,0,0,0,0,840,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,343,5,0,0,281,0,806,0,0,0,119,16,0,0,0,0,0,0,0,0,0,855,1,0,0,0,9,0,0,0,0,0,139,19,0,0,1,0,0,0,0,0,8308,1,0,1146,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,0,0,0,0,0,1,38,234,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3178,89,3 +1,0,0,6,0,34,7,0,35,0,5,0,0,7,6,0,540,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,189,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18871,34,608,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4473,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,599,0,0,1,0,2772,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,759,0,46,0,0,0,1,4,256,1159,745,0,0,0,0,1,0,3,0,0,0,0,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,190,6,0,0,202,0,270,0,0,0,59,11,0,0,0,0,0,0,0,0,0,606,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3318,1,0,840,8,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,110,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1918,74,3 +7,0,0,5,0,41,21,0,43,0,4,0,0,2,12,0,803,0,6,1,0,0,0,8,0,10,0,0,8,0,2,0,0,0,6,5868,41,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,2,390,0,0,0,0,0,1,0,0,0,0,0,2,0,0,143443,41,910,0,7,0,0,0,0,0,32,0,0,0,0,0,8,18,24272,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,894,0,0,0,0,5516,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,20255,0,55,0,0,0,2,5,290,1631,20247,0,0,0,0,1,0,3,0,0,0,0,0,0,910,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,346,5,0,0,301,0,430,0,0,0,141,27,0,0,0,0,0,0,0,0,0,891,1,0,0,0,9,0,0,0,0,2,151,19,0,0,1,0,0,0,0,0,6564,1,0,1143,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,362,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,7,0,0,0,2,1,47,217,0,8,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2920,178,3 +2,0,0,5,0,36,21,0,41,0,4,0,0,2,7,0,716,0,7,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5704,36,58,0,0,22,0,0,0,1,0,0,1,0,0,0,0,1,275,0,0,0,0,0,1,0,0,0,0,0,2,0,0,103442,36,814,0,2,0,0,0,0,0,32,0,0,0,0,0,8,17,16696,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,775,0,0,0,0,4065,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,15473,0,45,0,0,0,0,3,287,790,15454,0,0,0,0,1,0,3,0,0,0,0,0,0,815,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,1300,5,0,0,1302,0,522,0,0,0,119,19,0,0,0,0,0,0,0,0,0,798,1,0,0,0,9,0,0,0,0,1,1158,19,0,0,1,0,0,0,0,0,3572,1,0,411,16,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,1,0,0,0,0,1,37,257,0,3,12,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1386,94,3 +2,0,0,2,0,12,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1941,12,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,832,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,237,0,27,0,0,0,0,3,29,592,252,0,0,0,0,1,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,101,0,126,0,0,0,42,2,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,92,31,0,0,0,0,0,0,0,0,400,0,0,747,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,429,7,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,141,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2126,10,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,704,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,229,0,89,0,0,0,0,3,27,9,226,0,0,0,0,1,0,0,0,0,0,0,0,0,9829,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,122,2,0,0,132,0,248,0,0,0,65,7,0,0,0,0,0,47,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,279,0,0,943,0,0,1,0,1,0,0,0,15,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,284,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,440,52,3 +0,0,0,3,0,9,2,0,16,4,3,0,0,0,7,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,2,0,1,0,9,6,0,0,16,0,0,0,1,0,0,4,0,0,0,0,0,95,0,0,0,0,0,1,0,0,0,0,0,7,0,0,11229,9,62,0,1,0,0,0,0,0,15,0,0,0,1,0,1,6,2413,0,0,1,0,0,0,0,0,9,0,8,0,0,2,0,25,0,5,0,0,334,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1441,0,42,0,0,0,0,3,23,14,1458,0,0,0,0,1,0,0,0,0,0,0,0,0,2243,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,8,101,3,0,0,129,0,123,0,0,0,70,8,0,0,0,0,0,0,0,0,0,48,1,0,0,0,2,0,0,0,0,0,91,51,0,0,0,0,0,0,0,0,622,0,0,3230,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,222,0,1,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,30,3 +2,0,0,2,0,16,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,16,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1210,16,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,510,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,487,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,58,0,37,0,0,0,8,19,36,22,69,0,0,0,0,1,0,0,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,85,2,0,0,116,0,185,0,0,0,48,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,98,32,0,0,0,0,0,0,0,0,258,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,4,0,0,0,0,1,19,238,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,261,11,3 +17,0,0,6,0,39,21,0,46,6,5,0,0,2,12,0,799,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,5870,39,42,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,354,0,0,0,0,0,1,0,0,0,0,0,10,0,0,135102,39,918,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23076,0,0,4,0,0,0,0,0,95,5,2,0,0,2,0,908,0,7,0,0,5219,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,18872,0,51,0,0,0,8,21,285,1633,18862,0,0,0,0,1,0,3,0,0,0,0,0,0,989,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,276,6,0,0,285,0,420,0,0,0,125,19,0,0,0,0,0,0,0,0,0,891,1,0,0,0,9,0,0,0,0,2,139,19,0,0,1,0,0,0,0,0,5036,1,0,1154,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,197,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2342,141,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1338,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,544,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,39,0,0,0,0,3,23,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,120,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,229,0,0,819,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,190,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,291,13,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,59,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +9,0,0,2,0,16,2,0,8,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,6,0,1,0,0,0,6,0,16,6,0,0,17,0,1,0,1,0,0,1,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,1,0,0,955,16,36,0,7,0,0,0,0,0,4,0,0,0,0,0,1,4,501,0,0,6,0,0,0,0,0,13,0,1,0,0,2,0,14,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,50,0,36,0,0,0,0,3,38,21,63,0,0,0,0,1,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,85,2,0,0,85,0,154,0,0,0,28,2,0,0,0,0,0,0,0,0,0,36,1,0,0,0,2,0,0,0,0,1,96,5,0,0,0,0,0,0,0,0,223,0,0,728,0,0,1,0,1,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,6,0,0,0,0,1,22,58,0,7,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,77,3 +1,0,0,6,0,35,7,0,36,0,5,0,0,7,6,0,591,0,6,1,0,0,0,9,0,12,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,178,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18908,35,661,0,4,0,0,0,0,0,18,0,0,0,0,0,9,28,4308,0,0,1,0,0,0,0,0,215,25,4,0,0,2,0,650,0,0,1,0,2658,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,698,0,47,0,0,0,2,5,262,1160,684,0,0,0,0,1,0,3,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,187,6,0,0,204,0,270,0,0,0,58,5,0,0,0,0,0,0,0,0,0,658,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3412,1,0,822,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,9,0,0,0,0,1,36,110,0,5,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1888,71,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1049,9,33,0,0,0,0,0,0,0,7,0,0,0,0,0,1,6,470,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,21,0,0,0,0,3,23,4,54,0,0,0,0,1,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,64,2,0,0,82,0,96,0,0,0,28,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,91,19,0,0,0,0,0,0,0,0,214,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,139,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,8,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,212,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,107,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,53,3,0,0,63,0,84,0,0,0,33,7,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,11,3 +10,0,0,5,0,41,21,0,46,0,4,0,0,2,14,0,818,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,41,156,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,405,0,0,0,0,0,1,0,0,0,0,0,2,0,0,130618,41,942,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,22327,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,954,0,0,0,0,5191,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,18175,0,53,0,0,0,8,17,290,1634,18165,0,0,0,0,1,0,3,0,0,0,0,0,0,904,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,322,5,0,0,297,0,443,0,0,0,136,17,0,0,0,0,0,0,0,0,0,911,1,0,0,0,9,0,0,0,0,2,147,19,0,0,1,0,0,0,0,0,6910,1,0,1115,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,238,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3218,163,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,76,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,39,3,0,0,65,0,62,0,0,0,35,7,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1454,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,64,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,612,0,0,0,0,0,11,41,236,0,0,0,0,0,0,0,0,0,0,0,0,0,1649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,15,2,0,0,56,0,79,0,0,0,48,1,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,44,0,0,0,0,0,0,0,0,328,0,0,408,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,115,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1417,2,3 +1,0,0,2,0,12,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,12,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,12,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,30,0,0,0,0,3,34,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,82,2,0,0,97,0,254,0,0,0,22,8,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,94,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,12,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,26,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1469,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,84,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,619,0,0,0,0,0,11,43,232,0,0,0,0,0,0,0,0,0,0,0,0,0,1650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,21,2,0,0,57,0,87,0,0,0,48,4,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,45,0,0,0,0,0,0,0,0,323,0,0,384,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,116,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1427,6,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,133,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,93,0,0,0,33,8,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,95,10,24,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,13,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,21,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,42,3,0,0,58,0,81,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,20,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,15,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,71,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,65,0,58,0,0,0,35,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,59,0,0,0,0,0,1,0,0,0,0,0,2,0,0,456,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,62,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,503,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,32,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1026,3,0,0,1020,0,297,0,0,0,14,8,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1039,9,0,0,0,0,0,0,0,0,98,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,29,3 +0,0,0,3,0,10,3,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,10,23,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,21,0,0,0,0,3,24,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,40,3,0,0,62,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,92,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,11,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,6,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1216,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,541,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,30,0,0,0,0,3,31,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,82,2,0,0,93,0,157,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,62,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +2366,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,151,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2300,10,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,766,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,243,0,93,0,0,0,0,3,27,9,240,0,0,0,0,1,0,0,0,0,0,0,0,0,6709,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,112,2,0,0,132,0,246,0,0,0,65,8,0,0,0,0,0,47,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,286,0,0,981,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,284,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,462,44,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,267,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,28,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2106,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,837,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,248,0,30,0,0,0,8,19,29,611,257,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,81,2,0,0,110,0,177,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,446,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,432,8,3 +10,0,0,5,0,41,21,0,50,0,4,0,0,2,14,0,962,0,6,2,0,0,0,7,0,11,9,0,10,0,4,0,0,0,6,5868,41,150,0,0,22,0,0,0,1,0,0,1,0,0,0,0,5,401,0,0,0,0,0,1,0,0,0,0,0,2,0,0,170832,41,1092,0,12,0,0,0,0,0,32,0,0,0,0,0,8,17,28103,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,1100,0,0,0,0,3382,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,12,12,12,0,0,0,26713,0,53,0,0,0,8,17,289,825,26703,0,0,0,0,1,0,3,0,0,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,306,5,0,0,301,0,406,0,0,0,141,17,0,0,0,0,0,0,0,0,0,1059,1,0,0,0,9,0,0,0,0,2,151,19,0,0,1,0,0,0,0,0,5356,1,0,403,16,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,16,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,207,0,22,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1768,166,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1210,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,531,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,88,0,156,0,0,0,25,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,229,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,148,3 +0,0,0,2,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,1,0,0,61,10,20,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,6,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,20,0,0,0,0,3,24,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,38,2,0,0,73,0,74,0,0,0,43,2,0,0,0,0,0,0,0,0,0,23,1,0,0,0,2,0,0,0,0,0,92,36,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,74,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,6,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,783,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,379,0,0,0,0,0,1,0,0,0,0,0,2,0,0,136957,41,905,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23301,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,918,0,0,0,0,5317,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19105,0,53,0,0,0,8,19,290,1632,19095,0,0,0,0,1,0,3,0,0,0,0,0,0,925,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,293,5,0,0,301,0,413,0,0,0,141,23,0,0,0,0,0,0,0,0,0,875,1,0,0,0,9,0,0,0,0,2,151,19,0,0,1,0,0,0,0,0,6933,1,0,1134,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,172,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3217,105,3 +0,0,0,4,0,27,4,0,20,0,3,0,0,2,3,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,3,0,27,6,0,0,25,0,0,0,1,0,0,2,0,0,0,0,1,141,0,0,0,0,0,1,0,0,0,0,0,4,0,0,614,27,53,0,1,0,0,0,0,0,12,0,0,0,0,0,7,14,116,0,0,3,0,0,0,0,0,73,5,3,0,0,2,0,30,0,1,0,0,452,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,82,0,54,0,0,0,0,3,179,13,91,0,0,0,0,1,0,3,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,11,122,4,0,0,138,0,229,0,0,0,37,4,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,0,108,20,0,0,0,0,0,0,0,0,77,0,0,35,2,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,0,0,1,30,179,0,2,8,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,169,28,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,63,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,53,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +1,0,0,2,0,12,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,12,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,55,0,0,0,0,0,1,0,0,0,0,0,1,0,0,157,12,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,30,0,0,0,0,3,34,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,99,2,0,0,97,0,262,0,0,0,25,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,94,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,12,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,29,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,91,0,246,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,112,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,25,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,764,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,322,0,0,0,0,0,1,0,0,0,0,0,10,0,0,132110,39,872,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,23053,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,867,0,7,0,0,3537,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19166,0,53,0,0,0,6,19,281,1254,19156,0,0,0,0,1,0,3,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,280,6,0,0,277,0,385,0,0,0,116,14,0,0,0,0,0,0,0,0,0,850,1,0,0,0,9,0,0,0,0,1,141,17,0,0,1,0,0,0,0,0,4844,1,0,799,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,206,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2054,133,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,7,0,0,204,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,114,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,56,3,0,0,69,0,85,0,0,0,39,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,15,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,7,0,0,210,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,162,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,7,38,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,57,3,0,0,69,0,86,0,0,0,39,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,37,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1100,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,488,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,104,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,23,0,0,0,0,3,24,6,57,0,0,0,0,1,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,72,3,0,0,82,0,152,0,0,0,29,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,92,16,0,0,0,0,0,0,0,0,255,0,0,784,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,107,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,239,64,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,213,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,112,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,83,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +4,0,0,5,0,34,16,0,40,0,4,0,0,2,6,0,682,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,4341,34,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,1211,0,0,0,0,0,1,0,0,0,0,0,2,0,0,108740,34,763,0,1,0,0,0,0,0,26,0,0,0,0,0,8,18,19257,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,733,0,0,0,0,3630,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,14968,0,65,0,0,0,0,3,268,1268,14958,0,0,0,0,1,0,3,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,352,5,0,0,255,0,741,0,0,0,101,16,0,0,0,0,0,0,0,0,0,756,1,0,0,0,9,0,0,0,0,0,130,16,0,0,1,0,0,0,0,0,6925,1,0,788,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,13,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,35,188,0,2,12,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2606,88,3 +1,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,174,10,37,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,33,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,74,2,0,0,109,0,263,0,0,0,41,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,37,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,132,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,64,25,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,63,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +4,0,0,3,0,13,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,13,42,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,56,0,0,0,0,0,1,0,0,0,0,0,5,0,0,535,13,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,58,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,233,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,41,0,0,0,0,3,31,7,61,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,108,3,0,0,104,0,235,0,0,0,40,11,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,96,20,0,0,0,0,0,0,0,0,85,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,17,140,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,98,72,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1225,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,545,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,90,0,161,0,0,0,27,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,150,3 +0,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,5,0,4,0,1,0,0,4,0,0,0,0,0,68,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1923,10,56,0,1,0,0,0,0,0,15,0,0,0,0,0,1,7,630,0,0,1,0,0,0,0,0,13,0,4,0,0,2,0,15,0,0,0,0,951,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,129,0,74,0,0,0,0,3,27,79,143,0,0,0,0,1,0,0,0,0,0,0,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,3,240,2,0,0,142,0,101,0,0,0,80,26,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,116,41,0,0,0,0,0,0,0,0,270,0,0,864,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,233,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,369,86,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2149,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,875,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,408,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,249,0,30,0,0,0,8,19,29,614,258,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,82,2,0,0,110,0,178,0,0,0,45,7,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,450,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,437,8,3 +1,0,0,6,0,34,7,0,33,0,5,0,0,7,6,0,473,0,6,1,0,0,0,9,0,12,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,184,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18605,34,540,0,4,0,0,0,0,0,18,0,0,0,0,0,9,28,4108,0,0,1,0,0,0,0,0,215,25,4,0,0,2,0,532,0,0,1,0,2739,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,654,0,47,0,0,0,2,5,255,1157,641,0,0,0,0,1,0,3,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,189,6,0,0,202,0,271,0,0,0,58,5,0,0,0,0,0,0,0,0,0,537,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3094,1,0,840,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,9,0,0,0,0,1,35,108,0,5,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1849,77,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,146,11,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,23,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,33,0,29,0,0,0,0,3,30,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,95,0,262,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,28,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,28,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1248,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,533,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,94,2,0,0,91,0,173,0,0,0,32,9,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,226,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,258,150,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,77,2,0,0,91,0,264,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,112,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +7,0,0,5,0,40,21,0,45,0,4,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,6,5868,40,46,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,407,0,0,0,0,0,1,0,0,0,0,0,2,0,0,137692,40,883,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,23520,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,895,0,0,0,0,5249,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19256,0,55,0,0,0,8,16,283,1627,19249,0,0,0,0,1,0,3,0,0,0,0,0,0,911,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,326,5,0,0,295,0,491,0,0,0,139,31,0,0,0,0,0,0,0,0,0,853,1,0,0,0,9,0,0,0,0,2,146,19,0,0,1,0,0,0,0,0,6797,1,0,1135,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,16,364,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,10,0,0,0,2,1,46,193,0,20,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3062,138,3 +2,0,0,2,0,11,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2050,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,881,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,242,0,26,0,0,0,0,3,25,597,257,0,0,0,0,1,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,65,2,0,0,98,0,124,0,0,0,42,2,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,410,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,438,7,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,231,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,137,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,57,3,0,0,74,0,68,0,0,0,43,3,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,36,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,5,0,0,115,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,132,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,9,34,0,0,0,0,1,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,52,3,0,0,68,0,62,0,0,0,37,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,30,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,50,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,15,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,38,2,0,0,44,0,118,0,0,0,13,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,15,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,36,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,27,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,925,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,478,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,21,0,0,0,0,3,22,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,65,2,0,0,71,0,79,0,0,0,19,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,12,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,65,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,7,3 +5,0,0,3,0,12,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,36,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,5,0,0,325,12,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,213,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,38,0,0,0,0,3,27,7,60,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,93,3,0,0,101,0,198,0,0,0,40,12,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,95,20,0,0,0,0,0,0,0,0,79,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,139,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,12,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,6,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +7,0,0,5,0,40,21,0,40,0,4,0,0,2,12,0,679,0,6,1,0,0,0,8,0,10,0,0,7,0,2,0,0,0,6,5868,40,44,0,0,22,0,1,0,1,0,0,1,0,0,0,0,2,396,0,0,0,0,0,1,0,0,0,0,0,2,0,0,141732,40,782,0,6,0,0,0,0,0,32,0,0,0,0,0,8,18,24120,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,769,0,0,0,0,5638,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,12,12,12,0,0,0,19895,0,55,0,0,0,2,5,283,1623,19888,0,0,0,0,1,0,3,0,0,0,0,0,0,902,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,333,5,0,0,290,0,442,0,0,0,131,26,0,0,0,0,0,0,0,0,0,764,1,0,0,0,9,0,0,0,0,2,141,19,0,0,1,0,0,0,0,0,9353,1,0,1140,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,363,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,6,0,0,0,0,1,46,202,0,7,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3562,125,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2187,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,887,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,255,0,34,0,0,0,8,19,29,614,266,0,0,0,0,1,0,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,179,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,451,0,0,773,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,445,10,3 +0,0,0,3,0,9,2,0,18,0,2,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,8,0,2,0,1,0,0,2,0,0,0,0,0,76,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1157,9,51,0,1,0,0,0,0,0,12,0,0,0,0,0,1,7,517,0,0,0,0,0,0,0,0,10,0,4,0,0,2,0,17,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,65,0,31,0,0,0,0,3,26,6,75,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,71,3,0,0,87,0,111,0,0,0,23,1,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,89,15,0,0,0,0,0,0,0,0,219,0,0,789,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,112,0,1,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,267,8,3 +10,0,0,5,0,41,21,0,50,0,4,0,0,2,14,0,960,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,346,0,0,0,0,0,1,0,0,0,0,0,2,0,0,153833,41,1086,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,26325,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,1094,0,0,0,0,5268,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,12,12,12,0,0,0,21969,0,53,0,0,0,8,21,290,1600,21959,0,0,0,0,1,0,3,0,0,0,0,0,0,824,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,305,5,0,0,294,0,417,0,0,0,134,17,0,0,0,0,0,0,0,0,0,1057,1,0,0,0,9,0,0,0,0,2,144,19,0,0,1,0,0,0,0,0,7419,1,0,1060,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,19,0,0,0,0,1,47,189,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3304,131,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,8,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1536,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,672,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,143,0,21,0,0,0,0,3,23,302,154,0,0,0,0,1,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,59,2,0,0,82,0,89,0,0,0,26,6,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,89,21,0,0,0,0,0,0,0,0,310,0,0,771,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,109,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,331,6,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,3,0,14,2,0,15,0,3,0,0,0,3,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,14,6,0,0,16,0,3,0,1,0,0,3,0,0,0,0,0,114,0,0,0,0,0,1,0,0,0,0,0,3,0,0,3644,14,59,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,977,0,0,5,0,0,0,0,0,12,0,5,0,0,2,0,17,0,1,0,0,486,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,344,0,44,0,0,0,0,3,29,203971,354,0,0,0,0,1,0,0,0,0,0,0,0,0,921,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,116,3,0,0,124,0,122,0,0,0,61,4,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,96,33,0,0,0,0,0,0,0,0,481,0,0,1427,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,19,219,0,1,0,0,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,651,14,3 +1,0,0,2,0,12,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,12,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,12,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,31,0,0,0,0,3,34,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,82,2,0,0,97,0,268,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,94,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,12,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,62,27,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,140,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,252,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,27,3 +0,0,0,3,0,25,4,0,20,0,2,0,0,2,2,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,1,0,25,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,1,138,0,0,0,0,0,1,0,0,0,0,0,2,0,0,601,25,52,0,1,0,0,0,0,0,12,0,0,0,0,0,7,14,112,0,0,1,0,0,0,0,0,73,5,3,0,0,2,0,28,0,0,0,0,463,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,77,0,46,0,0,0,0,3,177,10,81,0,0,0,0,1,0,3,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,118,3,0,0,133,0,166,0,0,0,32,1,0,0,0,0,0,0,0,0,0,53,1,0,0,0,8,0,0,0,0,0,106,21,0,0,0,0,0,0,0,0,78,0,0,35,2,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,151,0,2,8,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,153,28,3 +16,0,0,6,0,41,17,0,44,6,5,0,0,2,12,0,802,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4946,41,158,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,347,0,0,0,0,0,1,0,0,0,0,0,10,0,0,130208,41,912,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,22761,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,907,0,7,0,0,3714,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18882,0,54,0,0,0,8,20,292,1258,18871,0,0,0,0,1,0,3,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,298,6,0,0,279,0,471,0,0,0,113,16,0,0,0,0,0,0,0,0,0,888,1,0,0,0,9,0,0,0,0,1,140,17,0,0,1,0,0,0,0,0,4915,1,0,784,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,20,0,0,0,2,1,45,236,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2069,141,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,210,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,20,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,103,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,31,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,50,3,0,0,64,0,95,0,0,0,34,3,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,27,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,7,3 +1,0,0,3,0,11,3,0,16,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,36,0,0,10,0,0,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,3,0,0,315,11,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,29,0,1,0,0,172,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,36,0,0,0,0,3,26,6,58,0,0,0,0,1,0,0,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,4,91,3,0,0,98,0,199,0,0,0,37,8,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,94,20,0,0,0,0,0,0,0,0,79,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,133,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,86,14,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1234,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,523,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,93,2,0,0,91,0,179,0,0,0,31,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,226,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,2,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,150,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,124,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1719,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,581,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,395,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,165,0,70,0,0,0,0,3,27,9,164,0,0,0,0,1,0,0,0,0,0,0,0,0,9917,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,94,2,0,0,130,0,247,0,0,0,63,7,0,0,0,0,0,1,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,249,0,0,910,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,284,0,1,0,0,2,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,377,44,3 +7,0,0,5,0,36,21,0,43,0,4,0,0,2,9,0,745,0,6,1,0,0,0,8,0,10,0,0,5,0,2,0,0,0,2,5704,36,40,0,0,22,0,1,0,1,0,0,1,0,0,0,0,2,250,0,0,0,0,0,1,0,0,0,0,0,2,0,0,112616,36,846,0,4,0,0,0,0,0,32,0,0,0,0,0,8,18,19175,0,0,2,0,0,0,0,0,93,5,2,0,0,2,0,818,0,0,0,0,5379,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15182,0,66,0,0,0,2,5,283,1602,15167,0,0,0,0,1,0,3,0,0,0,0,0,0,835,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,352,5,0,0,278,0,932,0,0,0,121,18,0,0,0,0,0,0,0,0,0,830,1,0,0,0,9,0,0,0,0,2,138,19,0,0,1,0,0,0,0,0,8957,1,0,1136,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,362,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,4,0,0,0,2,1,38,256,0,5,12,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3517,89,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,128,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1866,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,608,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,175,0,69,0,0,0,0,3,27,9,174,0,0,0,0,1,0,0,0,0,0,0,0,0,9841,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,97,2,0,0,130,0,248,0,0,0,63,10,0,0,0,0,0,1,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,261,0,0,953,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,284,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,388,49,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1239,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,547,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,67,2,0,0,79,0,161,0,0,0,25,2,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,263,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,101,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,55,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +10,0,0,5,0,41,21,0,44,0,4,0,0,2,14,0,746,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,435,0,0,0,0,0,1,0,0,0,0,0,2,0,0,120918,41,865,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,20586,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,879,0,0,0,0,5372,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,16400,0,57,0,0,0,8,16,291,1628,16393,0,0,0,0,1,0,3,0,0,0,0,0,0,914,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,297,5,0,0,296,0,423,0,0,0,137,28,0,0,0,0,0,0,0,0,0,837,1,0,0,0,9,0,0,0,0,2,146,19,0,0,1,0,0,0,0,0,6702,1,0,1135,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,9,0,0,0,0,1,47,173,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3218,263,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,4,3,0,0,0,7,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,7,0,0,66,9,23,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,16,0,5,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,7,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,36,3,0,0,61,0,58,0,0,0,31,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,91,27,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,53,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,3,3 +3,0,0,2,0,13,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1203,13,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,510,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,92,0,29,0,0,0,6,15,27,21,107,0,0,0,0,1,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,72,2,0,0,88,0,168,0,0,0,25,3,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,93,15,0,0,0,0,0,0,0,0,264,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,6,0,0,0,0,1,15,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,264,101,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1569,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,672,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,145,0,20,0,0,0,0,3,23,303,156,0,0,0,0,1,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,61,2,0,0,82,0,87,0,0,0,26,4,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,89,21,0,0,0,0,0,0,0,0,313,0,0,784,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,109,0,0,0,0,2,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,331,6,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,1,0,0,848,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,432,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,19,0,0,0,0,3,21,10,41,0,0,0,0,1,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,53,2,0,0,71,0,93,0,0,0,19,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,63,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,2,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1335,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,552,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,41,0,0,0,0,3,23,6,98,0,0,0,0,1,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,118,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,815,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,189,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,295,14,3 +16,0,0,6,0,39,15,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4923,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,352,0,0,0,0,0,1,0,0,0,0,0,10,0,0,132469,39,869,0,10,0,0,0,0,0,26,0,0,0,0,0,8,18,23050,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,866,0,7,0,0,3757,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19286,0,54,0,0,0,8,20,275,1240,19277,0,0,0,0,1,0,3,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,287,6,0,0,271,0,397,0,0,0,110,16,0,0,0,0,0,0,0,0,0,847,1,0,0,0,9,0,0,0,0,1,139,16,0,0,1,0,0,0,0,0,4758,1,0,778,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,13,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,20,0,0,0,2,1,43,197,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2052,139,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1201,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,525,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,156,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,264,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1337,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,545,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,41,0,0,0,0,3,23,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,77,2,0,0,122,0,119,0,0,0,63,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,89,49,0,0,0,0,0,0,0,0,228,0,0,819,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,191,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,291,15,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +10,0,0,3,0,31,4,0,21,0,2,0,0,2,2,0,19,0,7,3,0,0,0,5,0,8,0,0,5,0,5,0,0,0,5,0,31,6,0,0,28,0,0,0,1,0,0,2,0,0,0,0,5,144,0,0,0,0,0,1,0,0,0,0,0,2,0,0,673,31,62,0,9,0,0,0,0,0,12,0,0,0,0,0,7,14,120,0,0,5,0,0,0,0,0,77,5,3,0,0,2,0,37,0,0,0,0,453,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,96,0,63,0,0,0,8,7,189,22,99,0,0,0,0,1,0,3,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,10,139,3,0,0,150,0,246,0,0,0,43,8,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,112,20,0,0,0,0,0,0,0,0,663,0,0,37,2,0,1,1,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,12,0,0,0,0,1,36,156,0,10,8,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,179,32,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,82,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,53,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1209,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,532,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,88,0,154,0,0,0,25,9,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,229,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,221,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,125,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,30,0,0,0,2,4,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,53,3,0,0,63,0,90,0,0,0,33,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,12,3 +4,0,0,3,0,12,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,52,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,5,0,0,370,12,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,265,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,40,0,0,0,0,3,27,7,60,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,107,3,0,0,101,0,332,0,0,0,40,18,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,95,20,0,0,0,0,0,0,0,0,95,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,142,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,94,17,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,40,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,71,0,0,0,0,0,1,0,0,0,0,0,2,0,0,453,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,59,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,534,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,31,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1063,3,0,0,1044,0,354,0,0,0,14,8,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1063,9,0,0,0,0,0,0,0,0,99,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,31,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,71,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,65,0,58,0,0,0,35,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +5,0,0,4,0,37,13,0,36,0,3,0,0,2,3,0,649,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2311,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,247,0,0,0,0,0,1,0,0,0,0,0,4,0,0,68577,37,738,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,12594,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,688,0,1,0,0,3179,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,8714,0,46,0,0,0,2,7,266,1182,8690,0,0,0,0,1,0,3,0,0,0,0,0,0,835,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,233,4,0,0,280,0,369,0,0,0,129,8,0,0,0,0,0,0,0,0,0,712,1,0,0,0,10,0,0,0,0,1,131,36,0,0,0,0,0,0,0,0,4197,1,0,1690,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1963,38,3 +4,0,0,5,0,38,21,0,44,0,4,0,0,2,7,0,736,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,315,0,0,0,0,0,1,0,0,0,0,0,2,0,0,115588,38,841,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,19742,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,804,0,0,0,0,5489,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15649,0,73,0,0,0,6,9,284,1617,15632,0,0,0,0,1,0,3,0,0,0,0,0,0,818,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,672,5,0,0,288,0,948,0,0,0,132,89,0,0,0,0,0,0,0,0,0,820,1,0,0,0,9,0,0,0,0,4,144,19,0,0,1,0,0,0,0,0,8871,1,0,1122,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,203,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3298,147,3 +2,0,0,2,0,19,3,0,21,0,2,0,0,0,2,0,75,0,6,1,0,0,0,1,0,0,36,0,0,0,13,0,0,0,3,0,19,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,12,59,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2291,19,143,0,13,0,0,0,0,0,7,0,0,0,0,0,1,6,883,0,0,3,0,0,0,0,0,56,0,2,0,0,2,0,225,0,0,0,0,584,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,257,0,41,0,0,0,24,52,33,644,271,0,0,0,0,1,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,106,2,0,0,122,0,214,0,0,0,45,6,0,0,0,0,0,0,0,0,0,109,1,0,0,0,2,0,0,0,0,13,99,31,0,0,0,0,0,0,0,0,532,0,0,781,0,0,1,0,1,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,373,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,12,0,0,0,0,1,22,201,0,49,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,458,15,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1237,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,544,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,92,0,26,0,0,0,6,15,24,21,107,0,0,0,0,1,0,0,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,79,0,161,0,0,0,25,3,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,259,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,101,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1184,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,505,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,157,0,0,0,27,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,62,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,29,0,0,0,0,0,1,0,0,0,0,0,6,0,0,213,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,119,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,90,0,0,0,33,12,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,9,3 +4,0,0,4,0,12,20,0,104,0,27,0,0,0,3,0,17,0,7,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,1,0,12,6,0,0,192,0,0,0,1,0,0,2,0,0,0,0,0,79,0,0,0,0,0,1,0,0,0,0,0,22,0,0,1400,12,180,0,3,0,0,0,0,0,9,0,0,0,0,0,1,4,714,0,0,1,0,0,2,96,0,745,30,3,0,0,2,0,485,0,1,0,0,152,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,397,0,34,0,0,0,0,3,33,649,408,0,0,0,0,1,0,0,0,0,0,0,0,0,280,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,4,79,4,0,0,115,0,186,0,0,0,54,3,0,0,0,0,0,0,0,0,0,178,1,0,0,0,2,0,0,0,0,1,94,259,0,0,60,0,0,0,0,0,625,0,0,74,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,13,115,0,3,0,0,0,0,0,0,259,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,11,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1251,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,538,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,26,0,0,0,0,3,27,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,88,2,0,0,91,0,183,0,0,0,32,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,150,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,76,2,0,0,91,0,257,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,26,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,87,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,104,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,3,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,49,3,0,0,57,0,88,0,0,0,27,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,10,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,76,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1304,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,536,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,87,0,40,0,0,0,0,3,23,6,97,0,0,0,0,1,0,0,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,80,2,0,0,124,0,119,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,225,0,0,808,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,191,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,289,16,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1098,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,487,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,173,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,23,0,0,0,0,3,24,6,56,0,0,0,0,1,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,74,3,0,0,82,0,153,0,0,0,29,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,92,16,0,0,0,0,0,0,0,0,254,0,0,784,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,107,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,64,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,7,0,0,219,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,169,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,33,0,0,0,2,4,26,7,40,0,0,0,0,1,0,0,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,61,3,0,0,69,0,86,0,0,0,39,5,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,37,3 +0,0,0,3,0,44,35,0,66,2,25,0,0,7,4,0,1241,0,7,1,0,0,0,8,0,10,6,0,20,0,5,0,0,0,4,2192,44,6,0,0,53,0,2,0,1,0,0,7,0,0,0,0,5,414,0,0,0,0,0,1,0,0,0,0,0,1,0,0,238971,44,1496,0,21,0,0,0,0,0,78,0,0,0,0,0,8,101,28129,0,0,4,0,0,0,0,0,380,25,11,0,0,2,0,1380,0,0,96,0,59345,0,0,0,0,0,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,12,12,12,0,0,0,21762,0,82,0,0,0,19,22,588,7089,21732,0,0,0,0,1,0,4,0,0,0,0,0,0,16662,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,106,22,262,3,0,0,384,0,365,0,0,0,217,12,0,0,0,0,0,0,0,0,0,1385,1,0,0,0,9,0,0,0,0,2,152,85,0,0,150,0,0,0,0,0,7690,1,0,10600,31,0,1,1,1,0,0,0,10,0,0,0,5,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,31,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,56,0,0,0,0,1,48,390,0,29,12,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5660,99,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,69,0,0,0,0,0,1,0,0,0,0,0,2,0,0,472,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,58,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,494,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1051,3,0,0,1044,0,291,0,0,0,14,8,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1063,9,0,0,0,0,0,0,0,0,95,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,30,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,5,0,0,55,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,5,29,0,0,0,0,1,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,36,3,0,0,58,0,54,0,0,0,28,10,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,3,3 +3546,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,139,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2140,11,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,699,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3546,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,225,0,92,0,0,0,0,3,31,9,224,0,0,0,0,1,0,0,0,0,0,0,0,0,10104,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,122,2,0,0,133,0,254,0,0,0,63,5,0,0,0,0,0,42,0,0,0,44,1,0,0,0,2,0,0,0,0,1,93,43,0,0,0,0,0,0,0,0,281,0,0,953,0,0,1,0,1,0,0,0,15,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,284,0,0,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,458,48,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,258,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,26,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,8,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,130,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,135,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,72,0,90,0,0,0,41,8,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,605,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,35,3 +7,0,0,5,0,41,21,0,45,0,4,0,0,2,12,0,784,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5870,41,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,351,0,0,0,0,0,1,0,0,0,0,0,2,0,0,134109,41,903,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,22854,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,915,0,0,0,0,5679,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18736,0,55,0,0,0,8,16,290,1634,18728,0,0,0,0,1,0,3,0,0,0,0,0,0,915,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,342,5,0,0,303,0,432,0,0,0,145,21,0,0,0,0,0,0,0,0,0,874,1,0,0,0,9,0,0,0,0,2,152,19,0,0,1,0,0,0,0,0,6730,1,0,1153,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,364,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,9,0,0,0,0,1,47,225,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3003,140,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,50,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +4,0,0,3,0,9,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,83,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,90,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,33,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,5,52,3,0,0,54,0,54,0,0,0,23,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,92,19,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,17,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,30,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,870,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,454,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,19,0,0,0,0,3,21,4,41,0,0,0,0,1,0,0,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,55,2,0,0,73,0,90,0,0,0,21,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,14,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,63,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,2,3 +16,0,0,6,0,41,17,0,43,6,5,0,0,2,12,0,764,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,5022,41,4564,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,359,0,0,0,0,0,1,0,0,0,0,0,10,0,0,130450,41,872,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,22622,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,868,0,7,0,0,3468,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,18997,0,54,0,0,0,8,20,292,1257,18986,0,0,0,0,1,0,3,0,0,0,0,0,0,365,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,20,301,6,0,0,280,0,394,0,0,0,113,24,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,1,141,17,0,0,1,0,0,0,0,0,9102,1,0,788,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,19,0,0,0,0,1,45,187,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1970,144,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,17,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,10,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,64,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1203,13,37,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,531,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,155,0,0,0,27,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +12,0,0,5,0,39,36,0,48,0,4,0,0,2,13,0,1049,0,6,1,0,0,0,8,0,10,0,0,6,0,3,0,0,0,2,10035,39,58,0,0,22,0,1,0,1,0,0,2,0,0,0,0,3,588,0,0,0,0,0,1,0,0,0,0,0,2,0,0,152236,39,1215,0,6,0,0,0,0,0,56,0,0,0,0,0,8,19,24611,0,0,2,0,0,0,0,0,99,5,4,1,0,2,0,1170,0,0,0,0,6821,0,0,0,0,5,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,22145,0,53,0,0,0,4,7,322,1372,22128,0,0,0,0,1,0,4,0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,374,5,0,0,365,0,431,0,0,0,198,34,0,0,0,0,0,0,0,0,0,1158,1,0,0,0,9,0,0,0,0,3,175,29,0,0,1,0,0,0,0,0,9008,1,0,836,26,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,26,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,7,0,0,0,0,1,41,243,0,7,12,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2791,87,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,329,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,31,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,94,0,265,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,61,27,3 +0,0,0,3,0,9,2,0,16,4,3,0,0,0,7,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,2,0,1,0,9,6,0,0,16,0,0,0,1,0,0,4,0,0,0,0,0,96,0,0,0,0,0,1,0,0,0,0,0,7,0,0,11040,9,62,0,1,0,0,0,0,0,15,0,0,0,1,0,1,6,2395,0,0,1,0,0,0,0,0,9,0,8,0,0,2,0,25,0,5,0,0,436,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1415,0,41,0,0,0,0,3,23,14,1432,0,0,0,0,1,0,0,0,0,0,0,0,0,2257,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,8,95,3,0,0,129,0,124,0,0,0,70,5,0,0,0,0,0,0,0,0,0,48,1,0,0,0,2,0,0,0,0,0,91,51,0,0,0,0,0,0,0,0,619,0,0,3179,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,223,0,1,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1096,27,3 +6,0,0,6,0,39,7,0,34,4,5,0,0,2,9,0,549,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,6,898,39,36,0,0,39,0,3,0,1,0,0,3,0,0,0,0,4,162,1,0,0,0,0,1,0,0,0,0,0,9,0,0,28986,39,633,0,7,0,0,0,0,0,22,0,0,0,0,0,8,20,5964,0,0,6,0,0,0,0,0,94,5,6,0,0,2,0,619,0,6,0,0,3076,0,0,0,0,24,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,2516,0,71,0,0,0,6,19,248,1135,2511,0,0,0,0,1,0,4,0,0,0,0,0,0,469,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,19,221,6,0,0,219,0,319,0,0,0,75,16,0,0,0,0,0,0,0,0,0,612,1,0,0,0,9,0,0,0,0,1,122,16,0,0,1,0,0,0,0,0,3246,1,0,879,5,0,1,1,1,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,5,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,16,0,0,0,0,1,45,132,0,17,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1910,185,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,266,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,112,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,6,0,34,11,0,48,1,5,0,0,6,5,0,804,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,1,995,34,6,0,0,42,0,0,0,1,0,0,2,0,0,0,0,1,264,0,0,0,0,0,1,0,0,0,0,0,3,0,0,49485,34,898,0,2,0,0,0,0,0,25,0,0,0,0,0,8,22,8962,0,0,1,0,0,0,0,0,189,20,4,0,0,2,0,856,0,0,1,0,2233,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,3747,0,55,0,0,0,1,4,271,494,3732,0,0,0,0,1,0,4,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,19,202,6,0,0,238,0,250,0,0,0,88,4,0,0,0,0,0,0,0,0,0,885,1,0,0,0,9,0,0,0,0,0,120,33,0,0,6,0,0,0,0,0,3908,1,0,146,10,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,4,0,0,0,0,1,35,366,0,3,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2314,71,3 +39,0,0,3,1,38,5,0,15,0,9,0,0,0,4,0,35,0,8,4,0,0,0,1,0,0,3,0,7,0,2,0,0,0,20,0,38,30,0,0,135,0,0,0,1,0,0,1,0,0,0,0,1,49,0,0,0,0,0,1,0,0,0,24,0,2,0,0,784,38,90,0,9,0,0,0,0,0,12,0,0,0,0,0,2,5,80,0,0,20,0,0,0,0,0,41,0,0,0,0,6,1,57,0,1,0,0,628,0,0,0,0,7,5,0,0,14,0,0,1,0,0,0,2,0,0,1,0,0,0,0,3,0,0,0,5,0,0,0,0,0,7,0,18,0,0,3,0,0,0,8,0,0,0,0,0,0,0,0,3,0,1,1,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,118,0,81,0,0,0,2,8,69,277,152,0,0,0,0,1,0,0,0,0,0,4,4,0,950,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,28,184,208,5,0,0,203,0,261,0,0,0,126,20,0,0,0,0,0,0,0,0,0,76,1,0,0,0,5,0,0,0,0,2,124,38,0,0,0,0,0,0,0,0,40054,0,0,9,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,8,0,0,0,0,23,59,84,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,204,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,124,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,54,3,0,0,63,0,93,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +4,0,0,5,0,39,21,0,46,0,4,0,0,2,7,0,827,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,4,5704,39,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,272,0,0,0,0,0,1,0,0,0,0,0,2,0,0,108380,39,928,0,4,0,0,0,0,0,32,0,0,0,0,0,8,18,18600,0,0,4,0,0,0,0,0,90,5,2,0,0,2,0,889,0,0,0,0,5746,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,14462,0,72,0,0,0,0,3,288,1594,14445,0,0,0,0,1,0,3,0,0,0,0,0,0,779,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,649,5,0,0,285,0,946,0,0,0,124,83,0,0,0,0,0,0,0,0,0,913,1,0,0,0,9,0,0,0,0,1,139,19,0,0,1,0,0,0,0,0,9313,1,0,1097,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,3,0,0,0,0,1,43,238,0,5,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3354,144,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,77,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,65,0,58,0,0,0,35,7,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2175,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,865,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,420,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,255,0,34,0,0,0,8,19,29,615,266,0,0,0,0,1,0,0,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,82,2,0,0,110,0,181,0,0,0,45,4,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,453,0,0,778,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,448,10,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,231,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,164,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,58,3,0,0,74,0,68,0,0,0,43,5,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,36,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +3,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,192,10,27,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,157,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,27,0,0,0,2,4,25,7,39,0,0,0,0,1,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,55,3,0,0,58,0,95,0,0,0,28,5,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,20,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,54,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,15,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,39,2,0,0,44,0,118,0,0,0,13,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,15,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,36,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,27,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1207,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,535,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,88,0,154,0,0,0,25,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,264,149,3 +4,0,0,3,0,12,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,40,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,5,0,0,370,12,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,217,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,38,0,0,0,0,3,27,7,60,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,106,3,0,0,103,0,228,0,0,0,42,16,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,97,20,0,0,0,0,0,0,0,0,83,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,143,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,16,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +10,0,0,5,0,41,21,0,44,0,4,0,0,2,14,0,746,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,168,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,371,0,0,0,0,0,1,0,0,0,0,0,2,0,0,133883,41,865,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,22685,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,879,0,0,0,0,5365,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,18651,0,54,0,0,0,8,19,290,1637,18641,0,0,0,0,1,0,3,0,0,0,0,0,0,919,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,320,5,0,0,298,0,542,0,0,0,138,23,0,0,0,0,0,0,0,0,0,837,1,0,0,0,9,0,0,0,0,2,148,19,0,0,1,0,0,0,0,0,6727,1,0,1137,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,213,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3132,106,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2198,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,895,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,252,0,30,0,0,0,8,19,29,614,261,0,0,0,0,1,0,0,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,176,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,452,0,0,781,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,443,8,3 +10,0,0,5,0,41,21,0,44,0,4,0,0,2,14,0,746,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,364,0,0,0,0,0,1,0,0,0,0,0,2,0,0,140637,41,865,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23959,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,879,0,0,0,0,5216,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19768,0,55,0,0,0,8,16,290,1634,19761,0,0,0,0,1,0,3,0,0,0,0,0,0,944,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,304,5,0,0,298,0,436,0,0,0,138,18,0,0,0,0,0,0,0,0,0,837,1,0,0,0,9,0,0,0,0,2,148,19,0,0,1,0,0,0,0,0,6704,1,0,1141,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,9,0,0,0,0,1,47,225,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3199,259,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +16,0,0,6,0,38,17,0,44,6,5,0,0,2,12,0,744,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,38,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,351,0,0,0,0,0,1,0,0,0,0,0,10,0,0,140031,38,853,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,24154,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,848,0,7,0,0,3456,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,20476,0,51,0,0,0,8,20,273,1256,20467,0,0,0,0,1,0,3,0,0,0,0,0,0,379,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,282,6,0,0,272,0,390,0,0,0,113,11,0,0,0,0,0,0,0,0,0,830,1,0,0,0,9,0,0,0,0,1,138,17,0,0,1,0,0,0,0,0,4668,1,0,796,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,19,0,0,0,0,1,42,203,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1934,127,3 +1,0,0,6,0,34,7,0,35,0,5,0,0,7,6,0,542,0,6,1,0,0,0,9,0,11,0,0,6,0,0,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,185,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18455,34,610,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4311,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,601,0,0,1,0,2915,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,12,12,12,0,0,0,658,0,46,0,0,0,1,4,256,1159,644,0,0,0,0,1,0,3,0,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,187,6,0,0,201,0,270,0,0,0,57,8,0,0,0,0,0,0,0,0,0,608,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3331,1,0,848,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,108,0,3,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1978,78,3 +0,0,0,2,0,10,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1378,10,49,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,546,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,6,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,40,0,0,0,0,3,27,6,103,0,0,0,0,1,0,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,74,2,0,0,119,0,121,0,0,0,65,7,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,230,0,0,830,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,155,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,294,12,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,124,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,20,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,195,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,72,0,90,0,0,0,41,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,35,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1200,13,36,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,523,0,0,2,0,0,0,0,0,10,0,1,0,0,2,0,10,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,157,0,0,0,26,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,15,73,0,3,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,143,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,69,0,0,0,0,0,1,0,0,0,0,0,2,0,0,472,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,60,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,457,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,98,3,0,0,83,0,288,0,0,0,13,11,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,92,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,27,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,266,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +0,0,0,3,0,11,2,0,9,0,3,0,0,0,3,0,20,0,6,1,0,0,0,1,0,0,3,0,1,0,1,1,0,0,3,0,11,6,0,0,8,0,2,0,1,0,0,3,0,0,0,0,1,43,0,0,0,0,0,1,0,0,0,0,0,3,0,0,894,11,52,0,3,0,0,0,0,0,12,0,0,0,0,0,1,6,211,0,0,3,0,0,0,0,0,14,0,6,0,0,2,0,28,0,1,0,0,175,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,96,0,29,0,0,0,2,8,26,13,95,0,0,0,0,1,0,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,79,3,0,0,101,0,158,0,0,0,48,5,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,2,94,28,0,0,0,0,0,0,0,0,59,0,0,422,0,0,1,0,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,182,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,4,0,0,0,0,1,14,136,0,6,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,12,3 +2,0,0,2,0,14,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,14,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,65,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1199,14,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,501,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,56,0,33,0,0,0,8,19,28,22,67,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,108,0,183,0,0,0,46,4,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,94,32,0,0,0,0,0,0,0,0,255,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,0,1,17,238,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,250,10,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,7,0,0,212,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,163,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,61,3,0,0,69,0,87,0,0,0,39,4,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,11,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,11,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,27,2,0,0,30,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,14,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1242,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,528,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,90,2,0,0,91,0,182,0,0,0,32,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,258,150,3 +2,0,0,2,0,11,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2045,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,875,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,241,0,26,0,0,0,0,3,25,595,256,0,0,0,0,1,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,66,2,0,0,98,0,123,0,0,0,42,3,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,406,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,435,7,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,251,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,28,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,129,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,134,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,34,0,0,0,2,3,26,6,39,0,0,0,0,1,0,0,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,72,0,90,0,0,0,41,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,35,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,7,0,0,211,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,168,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,7,38,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,59,3,0,0,69,0,86,0,0,0,39,5,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,37,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1008,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,450,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,108,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,25,0,0,0,0,3,24,6,51,0,0,0,0,1,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,71,3,0,0,80,0,152,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,249,0,0,764,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,101,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,233,65,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,249,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,26,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2169,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,872,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,391,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,254,0,34,0,0,0,8,19,29,611,265,0,0,0,0,1,0,0,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,180,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,451,0,0,774,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,446,10,3 +16,0,0,6,0,39,17,0,43,6,5,0,0,2,12,0,727,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,396,0,0,0,0,0,1,0,0,0,0,0,10,0,0,127854,39,836,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,22225,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,832,0,7,0,0,3794,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,18332,0,53,0,0,0,6,19,281,1256,18322,0,0,0,0,1,0,3,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,283,6,0,0,279,0,389,0,0,0,117,13,0,0,0,0,0,0,0,0,0,812,1,0,0,0,9,0,0,0,0,1,143,17,0,0,1,0,0,0,0,0,4809,1,0,791,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,204,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2063,133,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,192,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,108,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,57,0,86,0,0,0,27,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,13,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,71,0,0,0,0,0,1,0,0,0,0,0,2,0,0,459,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,54,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,427,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1056,3,0,0,1050,0,281,0,0,0,14,9,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1069,9,0,0,0,0,0,0,0,0,90,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,29,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,113,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1883,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,597,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,177,0,68,0,0,0,0,3,27,9,176,0,0,0,0,1,0,0,0,0,0,0,0,0,9837,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,96,2,0,0,128,0,242,0,0,0,61,6,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,263,0,0,969,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,393,41,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,8,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,51,8,18,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,17,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,39,2,0,0,44,0,117,0,0,0,13,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,15,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,36,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,27,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,64,0,0,0,0,0,1,0,0,0,0,0,2,0,0,502,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,75,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,472,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,98,3,0,0,83,0,292,0,0,0,13,9,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,103,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,27,3 +0,0,0,2,0,9,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,1,0,0,71,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,19,0,0,0,0,3,23,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,64,0,75,0,0,0,34,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,89,32,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,85,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,10,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1047,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,461,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,21,0,0,0,0,3,22,4,47,0,0,0,0,1,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,86,2,0,0,79,0,223,0,0,0,26,15,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,19,0,0,0,0,0,0,0,0,208,0,0,748,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,92,0,1,0,0,2,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,229,16,3 +1,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,253,10,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,35,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,28,0,0,0,0,3,26,4,52,0,0,0,0,1,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,67,2,0,0,83,0,250,0,0,0,22,3,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,92,17,0,0,0,0,0,0,0,0,35,0,0,49,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,59,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,67,29,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2069,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,851,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,425,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,243,0,30,0,0,0,8,19,29,612,252,0,0,0,0,1,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,81,2,0,0,110,0,177,0,0,0,45,10,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,443,0,0,750,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,427,8,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1044,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,455,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,107,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,25,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,73,3,0,0,80,0,152,0,0,0,27,5,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,252,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,101,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,240,64,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,134,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,268,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,26,3 +2,0,0,2,0,16,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,16,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2176,16,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,884,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,440,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,252,0,31,0,0,0,8,19,33,614,261,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,113,0,179,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,96,31,0,0,0,0,0,0,0,0,451,0,0,778,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,4,0,0,0,0,1,19,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,442,8,3 +4,0,0,3,0,9,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,83,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,90,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,33,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,5,54,3,0,0,54,0,52,0,0,0,23,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,92,19,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,17,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,30,3 +0,0,0,3,0,11,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1037,11,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,457,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,24,0,0,0,0,3,28,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,73,3,0,0,83,0,154,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,91,16,0,0,0,0,0,0,0,0,252,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,112,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,65,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,52,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,54,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,62,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,55,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,141,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2076,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,713,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,220,0,94,0,0,0,0,3,27,9,219,0,0,0,0,1,0,0,0,0,0,0,0,0,9869,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,121,2,0,0,130,0,253,0,0,0,63,9,0,0,0,0,0,48,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,275,0,0,922,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,279,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,446,51,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,259,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,108,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,27,3 +1,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,292,10,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,41,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,31,0,0,0,0,3,26,4,55,0,0,0,0,1,0,0,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,67,2,0,0,83,0,253,0,0,0,22,4,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,92,17,0,0,0,0,0,0,0,0,38,0,0,61,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,59,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,79,27,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,116,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1626,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,558,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,157,0,65,0,0,0,0,3,27,9,156,0,0,0,0,1,0,0,0,0,0,0,0,0,9906,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,93,2,0,0,128,0,246,0,0,0,61,10,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,246,0,0,889,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,283,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,360,50,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,91,0,273,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,115,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,27,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,62,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1233,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,561,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,88,0,154,0,0,0,25,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +4,0,0,5,0,36,21,0,42,0,4,0,0,2,7,0,718,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5706,36,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,267,0,0,0,0,0,1,0,0,0,0,0,2,0,0,126918,36,813,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,21545,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,777,0,0,0,0,5246,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,17520,0,66,0,0,0,0,3,285,1597,17509,0,0,0,0,1,0,3,0,0,0,0,0,0,837,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,350,5,0,0,278,0,877,0,0,0,119,16,0,0,0,0,0,0,0,0,0,800,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8407,1,0,1142,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,37,199,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3195,89,3 +3549,0,0,2,0,12,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,12,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,143,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2587,12,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,800,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,505,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,293,0,94,0,0,0,0,3,35,9,290,0,0,0,0,1,0,0,0,0,0,0,0,0,9923,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,133,2,0,0,136,0,257,0,0,0,63,8,0,0,0,0,0,38,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,295,0,0,1079,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,12,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,485,55,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1088,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,475,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,108,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,23,0,0,0,0,3,24,6,56,0,0,0,0,1,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,69,3,0,0,80,0,152,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,255,0,0,784,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,115,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,242,177,3 +1,0,0,6,0,35,7,0,36,0,5,0,0,7,6,0,591,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,180,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18195,35,660,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4225,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,650,0,0,1,0,3127,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,702,0,47,0,0,0,1,4,263,1160,687,0,0,0,0,1,0,3,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,190,6,0,0,203,0,280,0,0,0,58,8,0,0,0,0,0,0,0,0,0,658,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3251,1,0,814,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,106,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1813,71,3 +16,0,0,6,0,39,17,0,47,6,5,0,0,2,12,0,871,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,375,0,0,0,0,0,1,0,0,0,0,0,10,0,0,130485,39,984,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,22753,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,976,0,7,0,0,3842,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,18834,0,52,0,0,0,8,20,281,1261,18824,0,0,0,0,1,0,3,0,0,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,311,6,0,0,277,0,421,0,0,0,117,15,0,0,0,0,0,0,0,0,0,960,1,0,0,0,9,0,0,0,0,1,140,17,0,0,1,0,0,0,0,0,5089,1,0,796,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,20,0,0,0,2,1,43,227,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2103,133,3 +2,0,0,2,0,12,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1988,12,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,837,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,241,0,27,0,0,0,0,3,29,594,256,0,0,0,0,1,0,0,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,101,0,125,0,0,0,42,3,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,92,31,0,0,0,0,0,0,0,0,405,0,0,764,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,200,0,1,0,0,2,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,435,7,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,7,0,0,212,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,154,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,57,3,0,0,69,0,83,0,0,0,39,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,15,3 +10,0,0,5,0,41,21,0,46,0,4,0,0,2,14,0,819,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,404,0,0,0,0,0,1,0,0,0,0,0,2,0,0,139160,41,945,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,23609,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,957,0,0,0,0,5207,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,19570,0,53,0,0,0,8,17,290,1634,19560,0,0,0,0,1,0,3,0,0,0,0,0,0,942,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,296,5,0,0,294,0,412,0,0,0,134,25,0,0,0,0,0,0,0,0,0,912,1,0,0,0,9,0,0,0,0,2,144,19,0,0,1,0,0,0,0,0,6692,1,0,1145,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,208,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3142,138,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1230,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,557,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,30,0,0,0,0,3,31,6,108,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,91,0,155,0,0,0,25,10,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,94,15,0,0,0,0,0,0,0,0,227,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,149,3 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,111,8,37,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,17,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,15,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,37,0,0,0,0,3,22,4,36,0,0,0,0,1,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,69,2,0,0,78,0,95,0,0,0,18,1,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,89,13,0,0,0,0,0,0,0,0,25,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,76,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,75,8,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,82,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,54,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,5,0,0,82,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,54,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,69,0,0,0,0,0,1,0,0,0,0,0,2,0,0,457,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,67,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,507,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,26,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1026,3,0,0,1020,0,299,0,0,0,14,6,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1039,9,0,0,0,0,0,0,0,0,100,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,31,3 +0,0,0,3,0,25,5,0,11,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,2,0,1,0,25,6,0,0,20,0,1,0,1,0,0,1,0,0,0,0,1,77,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1652,25,42,0,1,0,0,0,0,0,11,0,0,0,0,0,7,15,609,0,0,1,0,0,0,0,0,74,5,3,0,0,2,0,20,0,0,0,0,674,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,95,0,38,0,0,0,0,3,177,8,97,0,0,0,0,1,0,3,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,108,3,0,0,135,0,312,0,0,0,43,4,0,0,0,0,0,0,0,0,0,45,1,0,0,0,8,0,0,0,0,0,107,30,0,0,0,0,0,0,0,0,271,0,0,788,3,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,3,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,89,0,2,9,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,338,130,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1368,10,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,542,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,94,0,40,0,0,0,0,3,27,6,104,0,0,0,0,1,0,0,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,81,2,0,0,127,0,120,0,0,0,65,0,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,231,0,0,830,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,191,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,302,14,3 +10,0,0,5,0,41,17,0,43,0,4,0,0,2,14,0,747,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5024,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,354,0,0,0,0,0,1,0,0,0,0,0,2,0,0,126194,41,857,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,21961,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,875,0,0,0,0,3395,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,18238,0,53,0,0,0,8,19,287,1260,18228,0,0,0,0,1,0,3,0,0,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,312,5,0,0,289,0,399,0,0,0,126,16,0,0,0,0,0,0,0,0,0,833,1,0,0,0,9,0,0,0,0,2,149,17,0,0,1,0,0,0,0,0,6315,1,0,795,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,209,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2827,101,3 +2,0,0,2,0,19,3,0,21,0,2,0,0,0,2,0,75,0,6,1,0,0,0,1,0,0,36,0,0,0,13,0,0,0,3,0,19,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,12,60,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2259,19,143,0,13,0,0,0,0,0,7,0,0,0,0,0,1,6,872,0,0,3,0,0,0,0,0,56,0,2,0,0,2,0,225,0,0,0,0,555,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,255,0,43,0,0,0,24,52,33,644,269,0,0,0,0,1,0,0,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,103,2,0,0,122,0,213,0,0,0,45,7,0,0,0,0,0,0,0,0,0,109,1,0,0,0,2,0,0,0,0,13,99,31,0,0,0,0,0,0,0,0,526,0,0,774,0,0,1,0,1,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,373,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,12,0,0,0,0,1,22,201,0,49,0,0,2,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,451,15,3 +2,0,0,3,0,9,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,5,0,0,88,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,89,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,23,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,52,3,0,0,58,0,59,0,0,0,28,3,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,7,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,7,0,0,210,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,137,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,7,38,0,0,0,0,1,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,60,3,0,0,69,0,86,0,0,0,39,13,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,37,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,9,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,3,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1128,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,503,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,29,0,0,0,0,3,25,72,66,0,0,0,0,1,0,0,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,73,2,0,0,81,0,124,0,0,0,25,1,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,17,0,0,0,0,0,0,0,0,216,0,0,760,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,93,0,1,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,251,9,3 +16,0,0,6,0,38,17,0,46,6,5,0,0,2,12,0,814,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4625,38,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,357,0,0,0,0,0,1,0,0,0,0,0,10,0,0,132969,38,926,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,23205,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,919,0,7,0,0,3727,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,19222,0,52,0,0,0,6,19,273,1259,19213,0,0,0,0,1,0,3,0,0,0,0,0,0,390,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,282,6,0,0,276,0,382,0,0,0,117,13,0,0,0,0,0,0,0,0,0,902,1,0,0,0,9,0,0,0,0,1,142,17,0,0,1,0,0,0,0,0,5030,1,0,795,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,17,0,0,0,0,1,42,202,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2105,135,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1325,10,58,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,525,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,41,0,0,0,0,3,27,6,102,0,0,0,0,1,0,0,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,81,2,0,0,128,0,120,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,228,0,0,818,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,207,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,296,15,3 +10,0,0,5,0,41,21,0,44,0,4,0,0,2,14,0,746,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,6,5868,41,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,365,0,0,0,0,0,1,0,0,0,0,0,2,0,0,135529,41,867,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,23093,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,881,0,0,0,0,5354,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19035,0,55,0,0,0,8,16,290,1633,19028,0,0,0,0,1,0,3,0,0,0,0,0,0,937,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,312,5,0,0,297,0,428,0,0,0,136,18,0,0,0,0,0,0,0,0,0,837,1,0,0,0,9,0,0,0,0,2,147,19,0,0,1,0,0,0,0,0,6585,1,0,1145,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,10,0,0,0,2,1,47,207,0,20,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3200,270,3 +0,0,0,2,0,9,2,0,10,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,918,9,35,0,2,0,0,0,0,0,6,0,0,0,0,0,1,6,456,0,0,1,0,0,0,0,0,9,0,1,0,0,2,0,10,0,0,0,0,98,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,37,0,22,0,0,0,0,3,23,5,43,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,69,2,0,0,75,0,124,0,0,0,22,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,91,12,0,0,0,0,0,0,0,0,206,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,1,0,0,0,0,1,10,81,0,2,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,220,8,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,5,0,0,241,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,20,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,126,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,31,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,57,3,0,0,74,0,70,0,0,0,43,5,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,36,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,9,3 +2,0,0,2,0,14,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,14,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1201,14,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,494,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,57,0,33,0,0,0,8,19,28,22,68,0,0,0,0,1,0,0,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,110,0,183,0,0,0,48,3,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,96,32,0,0,0,0,0,0,0,0,256,0,0,774,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,0,1,17,238,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,251,10,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,29,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,252,0,0,0,22,8,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,26,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,10,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,264,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,105,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,26,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,82,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,53,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +9,0,0,6,0,39,21,0,43,6,5,0,0,2,12,0,689,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,4,5879,39,18244,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,407,0,0,0,0,0,1,0,0,0,0,0,10,0,0,135754,39,805,0,7,0,0,0,0,0,32,0,0,0,0,0,8,18,23097,0,0,4,0,0,0,0,0,90,5,2,0,0,2,0,795,0,7,0,0,5221,0,0,0,0,9,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,19020,0,53,0,0,0,6,19,285,1626,19010,0,0,0,0,1,0,3,0,0,0,0,0,0,934,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,299,6,0,0,284,0,370,0,0,0,124,11,0,0,0,0,0,0,0,0,0,778,1,0,0,0,9,0,0,0,0,1,138,19,0,0,1,0,0,0,0,0,22872,1,0,1125,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,16,0,0,0,0,1,43,213,0,17,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2283,88,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +16,0,0,6,0,38,17,0,43,6,5,0,0,2,12,0,707,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,5553,38,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,371,0,0,0,0,0,1,0,0,0,0,0,10,0,0,145558,38,817,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,25118,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,812,0,7,0,0,3818,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,21264,0,51,0,0,0,8,20,274,1309,21255,0,0,0,0,1,0,3,0,0,0,0,0,0,415,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,294,6,0,0,287,0,392,0,0,0,132,17,0,0,0,0,0,0,0,0,0,792,1,0,0,0,9,0,0,0,0,1,151,17,0,0,1,0,0,0,0,0,4694,1,0,820,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,19,0,0,0,0,1,42,242,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2003,191,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,65,0,0,0,0,0,1,0,0,0,0,0,2,0,0,472,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,67,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,509,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1057,3,0,0,1050,0,301,0,0,0,14,7,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1069,9,0,0,0,0,0,0,0,0,100,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,30,3 +16,0,0,6,0,40,17,0,46,6,5,0,0,2,12,0,856,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,362,0,0,0,0,0,1,0,0,0,0,0,10,0,0,132072,40,969,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,23132,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,962,0,7,0,0,3615,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,19198,0,54,0,0,0,8,20,285,1258,19188,0,0,0,0,1,0,3,0,0,0,0,0,0,387,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,289,6,0,0,278,0,405,0,0,0,113,19,0,0,0,0,0,0,0,0,0,944,1,0,0,0,9,0,0,0,0,1,140,17,0,0,1,0,0,0,0,0,4993,1,0,800,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,19,0,0,0,0,1,44,210,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2029,128,3 +2,0,0,2,0,16,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,16,6,0,0,9,0,0,0,1,0,0,1,0,0,0,0,4,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1269,16,68,0,5,0,0,0,0,0,6,0,0,0,0,0,1,3,416,0,0,3,0,0,0,0,0,23,0,2,0,0,2,0,80,0,0,0,0,416,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,238,0,33,0,0,0,8,19,33,596,249,0,0,0,0,1,0,0,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,84,2,0,0,113,0,175,0,0,0,45,11,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,96,31,0,0,0,0,0,0,0,0,261,0,0,30,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,4,0,0,0,0,1,19,201,0,17,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,251,11,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,182,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,127,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,57,0,85,0,0,0,27,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,11,3 +10,0,0,5,0,42,21,0,45,0,4,0,0,2,14,0,802,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,42,160,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,411,0,0,0,0,0,1,0,0,0,0,0,2,0,0,151213,42,927,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,25647,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,940,0,0,0,0,5561,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,21485,0,54,0,0,0,8,17,295,1636,21475,0,0,0,0,1,0,3,0,0,0,0,0,0,930,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,313,5,0,0,300,0,476,0,0,0,137,19,0,0,0,0,0,0,0,0,0,894,1,0,0,0,9,0,0,0,0,2,148,19,0,0,1,0,0,0,0,0,6951,1,0,1131,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,12,0,0,0,2,1,48,198,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3218,171,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,77,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,65,0,58,0,0,0,35,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1209,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,537,0,0,2,0,0,0,0,0,11,0,2,0,0,2,0,11,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,155,0,0,0,27,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,150,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,57,0,0,0,28,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,219,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,20,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,118,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,30,0,0,0,2,4,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,63,0,94,0,0,0,33,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,12,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1289,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,524,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,86,0,39,0,0,0,0,3,23,6,96,0,0,0,0,1,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,119,0,0,0,65,9,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,224,0,0,807,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,10,190,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,283,14,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,129,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,51,3,0,0,63,0,92,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3 +10,0,0,5,0,44,21,0,46,0,4,0,0,2,14,0,875,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,44,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,403,0,0,0,0,0,1,0,0,0,0,0,2,0,0,158726,44,998,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,27109,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,1010,0,0,0,0,5117,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,22827,0,55,0,0,0,8,19,305,1631,22816,0,0,0,0,1,0,3,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,327,5,0,0,309,0,403,0,0,0,141,15,0,0,0,0,0,0,0,0,0,968,1,0,0,0,9,0,0,0,0,2,154,19,0,0,1,0,0,0,0,0,7083,1,0,1123,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,11,0,0,0,0,1,50,213,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3185,106,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +4,0,0,3,0,12,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,36,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,5,0,0,318,12,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,182,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,38,0,0,0,0,3,27,7,60,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,93,3,0,0,101,0,198,0,0,0,40,9,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,95,20,0,0,0,0,0,0,0,0,79,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,142,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,12,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,39,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,3,0,11,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1092,11,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,472,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,110,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,47,0,24,0,0,0,0,3,28,6,58,0,0,0,0,1,0,0,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,74,3,0,0,85,0,154,0,0,0,29,9,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,93,16,0,0,0,0,0,0,0,0,256,0,0,784,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,107,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,246,177,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,87,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,95,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,3,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,47,3,0,0,57,0,87,0,0,0,27,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,8,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,39,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,1,0,0,855,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,439,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,19,0,0,0,0,3,21,4,41,0,0,0,0,1,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,53,2,0,0,71,0,89,0,0,0,19,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,204,0,0,731,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,59,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,220,2,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,61,0,56,0,0,0,31,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,27,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,53,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +5,0,0,4,0,37,13,0,36,0,3,0,0,2,3,0,685,0,6,2,0,0,0,8,0,12,3,0,4,0,2,0,0,0,4,2311,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,264,0,0,0,0,0,1,0,0,0,0,0,4,0,0,71865,37,774,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,13016,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,723,0,1,0,0,3144,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,9233,0,45,0,0,0,2,7,266,1183,9209,0,0,0,0,1,0,3,0,0,0,0,0,0,676,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,235,4,0,0,280,0,347,0,0,0,129,17,0,0,0,0,0,0,0,0,0,748,1,0,0,0,10,0,0,0,0,1,131,36,0,0,0,0,0,0,0,0,4239,1,0,1430,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1939,47,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,7,0,0,87,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,18,0,5,0,0,130,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,52,3,0,0,63,0,100,0,0,0,33,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,17,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,14,3 +3549,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,121,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1874,11,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,616,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,178,0,69,0,0,0,0,3,31,9,177,0,0,0,0,1,0,0,0,0,0,0,0,0,9803,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,100,2,0,0,133,0,247,0,0,0,63,4,0,0,0,0,0,1,0,0,0,44,1,0,0,0,2,0,0,0,0,1,93,43,0,0,0,0,0,0,0,0,263,0,0,959,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,281,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,396,42,3 +0,0,0,3,0,25,5,0,11,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,2,0,1,0,25,6,0,0,20,0,1,0,1,0,0,1,0,0,0,0,1,66,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1668,25,44,0,1,0,0,0,0,0,12,0,0,0,0,0,7,15,598,0,0,1,0,0,0,0,0,74,5,3,0,0,2,0,20,0,0,0,0,682,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,97,0,38,0,0,0,0,3,177,8,98,0,0,0,0,1,0,3,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,115,3,0,0,136,0,290,0,0,0,44,6,0,0,0,0,0,0,0,0,0,45,1,0,0,0,8,0,0,0,0,0,107,30,0,0,0,0,0,0,0,0,269,0,0,788,3,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,3,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,89,0,2,9,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,334,127,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,50,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,53,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,2,0,14,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,14,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1232,14,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,501,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,59,0,33,0,0,0,8,19,28,22,70,0,0,0,0,1,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,110,0,182,0,0,0,48,4,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,96,32,0,0,0,0,0,0,0,0,258,0,0,782,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,365,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,0,1,17,238,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,10,3 +4,0,0,5,0,38,21,0,44,0,4,0,0,2,7,0,736,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,265,0,0,0,0,0,1,0,0,0,0,0,2,0,0,123037,38,841,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,20989,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,804,0,0,0,0,5554,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,16737,0,70,0,0,0,6,9,284,1620,16720,0,0,0,0,1,0,3,0,0,0,0,0,0,829,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,578,5,0,0,285,0,935,0,0,0,129,88,0,0,0,0,0,0,0,0,0,820,1,0,0,0,9,0,0,0,0,4,141,19,0,0,1,0,0,0,0,0,9030,1,0,1129,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,215,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3392,137,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,156,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,93,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1063,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,461,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,98,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,25,0,0,0,0,3,24,6,55,0,0,0,0,1,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,71,3,0,0,82,0,154,0,0,0,29,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,92,16,0,0,0,0,0,0,0,0,253,0,0,780,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,111,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,240,176,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1200,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,513,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,66,2,0,0,79,0,160,0,0,0,25,4,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,267,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,364,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,101,3 +0,0,0,2,0,18,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,4,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1441,18,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,94,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,621,0,0,0,0,0,19,43,234,0,0,0,0,0,0,0,0,0,0,0,0,0,1646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,23,2,0,0,63,0,91,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,5,45,0,0,0,0,0,0,0,0,320,0,0,376,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,4,114,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1416,5,3 +0,0,0,3,0,13,2,0,16,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,13,6,0,0,12,0,0,0,1,0,0,3,0,0,0,0,0,90,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1491,13,56,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,298,0,0,4,0,0,0,0,0,11,0,4,0,0,2,0,17,0,1,0,0,313,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,240,0,60,0,0,0,0,3,30,212,257,0,0,0,0,1,0,0,0,0,0,0,0,0,477,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,95,3,0,0,109,0,183,0,0,0,47,6,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,95,22,0,0,0,0,0,0,0,0,110,0,0,301,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,17,174,0,1,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,253,19,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2123,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,856,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,418,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,248,0,32,0,0,0,8,19,29,611,257,0,0,0,0,1,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,81,2,0,0,110,0,177,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,447,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,436,7,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,40,3,0,0,58,0,51,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,2,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,988,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,458,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,19,0,0,0,0,3,22,4,51,0,0,0,0,1,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,57,2,0,0,75,0,85,0,0,0,21,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,17,0,0,0,0,0,0,0,0,211,0,0,764,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,114,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,228,7,3 +0,0,0,2,0,9,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,5159,9,40,0,1,0,0,0,0,1,7,0,0,0,0,0,1,4,49,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,15,0,0,0,0,1670,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,36,0,0,0,0,3,23,4836,59,0,0,0,0,1,0,0,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,74,2,0,0,104,0,121,0,0,0,40,2,0,0,0,0,0,0,4,0,0,42,1,0,0,0,2,0,0,0,0,0,92,32,0,0,0,0,0,0,0,0,41,0,0,58,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,134,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,93,12,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1227,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,556,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,31,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,88,0,154,0,0,0,25,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,229,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,5,0,0,58,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,5,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,36,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,38,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,70,0,0,0,0,0,1,0,0,0,0,0,2,0,0,471,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,66,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,518,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1021,3,0,0,1008,0,330,0,0,0,14,9,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1027,9,0,0,0,0,0,0,0,0,104,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,31,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,261,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,26,3 +10,0,0,5,0,41,17,0,43,0,4,0,0,2,14,0,748,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5024,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,346,0,0,0,0,0,1,0,0,0,0,0,2,0,0,135052,41,860,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,23580,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,878,0,0,0,0,3556,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,12,12,12,0,0,0,19584,0,57,0,0,0,8,19,286,1256,19574,0,0,0,0,1,0,3,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,287,5,0,0,282,0,406,0,0,0,121,17,0,0,0,0,0,0,0,0,0,834,1,0,0,0,9,0,0,0,0,2,142,17,0,0,1,0,0,0,0,0,6495,1,0,799,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,219,0,19,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2916,104,3 +16,0,0,6,0,39,17,0,45,6,5,0,0,2,12,0,799,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,377,0,0,0,0,0,1,0,0,0,0,0,10,0,0,126857,39,910,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,22113,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,904,0,7,0,0,3943,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,18262,0,51,0,0,0,6,19,281,1258,18252,0,0,0,0,1,0,3,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,276,6,0,0,274,0,391,0,0,0,112,12,0,0,0,0,0,0,0,0,0,886,1,0,0,0,9,0,0,0,0,1,138,17,0,0,1,0,0,0,0,0,4912,1,0,776,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,224,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2077,131,3 +16,0,0,6,0,39,17,0,43,6,5,0,0,2,12,0,729,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,375,0,0,0,0,0,1,0,0,0,0,0,10,0,0,139324,39,838,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,24171,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,834,0,7,0,0,3617,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,20394,0,51,0,0,0,6,19,281,1256,20384,0,0,0,0,1,0,3,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,291,6,0,0,275,0,396,0,0,0,112,19,0,0,0,0,0,0,0,0,0,814,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4706,1,0,783,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,222,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2006,134,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,784,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,6,5868,41,56,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,364,0,0,0,0,0,1,0,0,0,0,0,2,0,0,144396,41,903,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,24487,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,916,0,0,0,0,5605,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,20306,0,56,0,0,0,8,15,290,1630,20299,0,0,0,0,1,0,3,0,0,0,0,0,0,919,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,324,5,0,0,297,0,489,0,0,0,137,23,0,0,0,0,0,0,0,0,0,876,1,0,0,0,9,0,0,0,0,2,147,19,0,0,1,0,0,0,0,0,6815,1,0,1138,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,10,0,0,0,2,1,47,225,0,20,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3171,278,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +4,0,0,5,0,35,21,0,44,0,4,0,0,2,7,0,770,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,54,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,261,0,0,0,0,0,1,0,0,0,0,0,2,0,0,117820,35,867,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20085,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,829,0,0,0,0,5330,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,16013,0,66,0,0,0,0,3,281,1599,16002,0,0,0,0,1,0,3,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,390,5,0,0,278,0,989,0,0,0,122,18,0,0,0,0,0,0,0,0,0,854,1,0,0,0,9,0,0,0,0,0,140,19,0,0,1,0,0,0,0,0,8138,1,0,1141,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,222,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3087,91,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,55,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,15,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,38,2,0,0,44,0,118,0,0,0,13,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,15,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,36,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,27,3 +1,0,0,6,0,35,7,0,33,0,5,0,0,7,6,0,486,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,177,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18619,35,552,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4360,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,545,0,0,1,0,2982,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,691,0,49,0,0,0,1,4,260,1157,677,0,0,0,0,1,0,3,0,0,0,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,190,6,0,0,204,0,272,0,0,0,58,4,0,0,0,0,0,0,0,0,0,550,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3240,1,0,840,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,106,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1972,76,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,142,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2478,10,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,772,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,273,0,91,0,0,0,0,3,27,9,270,0,0,0,0,1,0,0,0,0,0,0,0,0,10147,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,117,2,0,0,132,0,252,0,0,0,65,12,0,0,0,0,0,40,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,294,0,0,1046,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,281,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,475,45,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1045,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,454,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,108,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,23,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,73,3,0,0,82,0,153,0,0,0,29,4,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,92,16,0,0,0,0,0,0,0,0,252,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,111,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,65,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2139,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,869,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,419,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,248,0,30,0,0,0,8,19,29,612,257,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,81,2,0,0,110,0,176,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,449,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,435,8,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,488,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,72,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,541,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1058,3,0,0,1050,0,306,0,0,0,14,10,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1069,9,0,0,0,0,0,0,0,0,103,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,30,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1292,10,57,0,0,0,0,0,0,0,16,0,0,0,0,0,1,8,512,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,40,0,0,0,0,3,27,6,98,0,0,0,0,1,0,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,81,2,0,0,127,0,121,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,227,0,0,811,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,204,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,290,14,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,16,4,3,0,0,0,7,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,2,0,1,0,9,6,0,0,16,0,0,0,1,0,0,4,0,0,0,0,0,97,0,0,0,0,0,1,0,0,0,0,0,7,0,0,11457,9,62,0,1,0,0,0,0,0,15,0,0,0,1,0,1,6,2488,0,0,1,0,0,0,0,0,9,0,8,0,0,2,0,25,0,5,0,0,139,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1465,0,39,0,0,0,0,3,23,14,1482,0,0,0,0,1,0,0,0,0,0,0,0,0,2330,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,8,96,3,0,0,129,0,125,0,0,0,70,6,0,0,0,0,0,0,0,0,0,48,1,0,0,0,2,0,0,0,0,0,91,51,0,0,0,0,0,0,0,0,646,0,0,3301,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,218,0,1,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1134,23,3 +3,0,0,2,0,13,3,0,10,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1217,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,540,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,31,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,88,0,154,0,0,0,25,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,2,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +7,0,0,5,0,36,21,0,44,0,4,0,0,2,9,0,838,0,6,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5868,36,44,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,380,0,0,0,0,0,1,0,0,0,0,0,2,0,0,140483,36,939,0,2,0,0,0,0,0,32,0,0,0,0,0,8,18,23942,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,914,0,0,0,0,5287,0,0,0,0,3,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19743,0,44,0,0,0,0,3,288,1612,19727,0,0,0,0,1,0,3,0,0,0,0,0,0,862,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,295,5,0,0,275,0,442,0,0,0,116,25,0,0,0,0,0,0,0,0,0,924,1,0,0,0,9,0,0,0,0,1,136,19,0,0,1,0,0,0,0,0,7935,1,0,1136,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,1,0,0,0,0,1,37,250,0,3,12,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2858,65,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,7,0,0,179,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,817,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,60,3,0,0,62,0,80,0,0,0,32,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,19,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,17,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,11,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,39,3,0,0,58,0,51,0,0,0,28,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +12,0,0,5,0,38,36,0,49,0,4,0,0,2,13,0,1061,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,2,11282,38,56,0,0,22,0,1,0,1,0,0,2,0,0,0,0,1,441,0,0,0,0,0,1,0,0,0,0,0,2,0,0,171430,38,1226,0,4,0,0,0,0,0,56,0,0,0,0,0,8,19,33668,0,0,2,0,0,0,0,0,91,5,4,1,0,2,0,1180,0,0,0,0,6715,0,0,0,0,5,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,31327,0,52,0,0,0,0,3,314,1343,31311,0,0,0,0,1,0,4,0,0,0,0,0,0,1559,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,356,5,0,0,344,0,456,0,0,0,178,46,0,0,0,0,0,0,0,0,0,1171,1,0,0,0,9,0,0,0,0,1,157,29,0,0,1,0,0,0,0,0,9031,1,0,816,26,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,26,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,3,0,0,0,0,1,40,261,0,5,12,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2766,89,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,5,0,0,74,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,38,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,6,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,10,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,54,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,111,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,88,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,11,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,1,0,0,859,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,443,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,19,0,0,0,0,3,21,10,41,0,0,0,0,1,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,53,2,0,0,71,0,93,0,0,0,19,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,63,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,2,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,2,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1251,10,63,0,6,0,0,0,0,0,7,0,0,0,0,0,1,6,558,0,0,2,0,0,0,0,0,22,0,1,0,0,2,0,64,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,92,0,26,0,0,0,6,15,24,21,107,0,0,0,0,1,0,0,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,66,2,0,0,79,0,163,0,0,0,24,3,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,264,0,0,798,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,5,0,0,0,0,1,12,73,0,15,0,0,2,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,100,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,213,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,110,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,81,0,0,0,33,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,11,3 +4,0,0,5,0,35,21,0,41,0,4,0,0,2,7,0,665,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5706,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,273,0,0,0,0,0,1,0,0,0,0,0,2,0,0,118934,35,759,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20362,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,724,0,0,0,0,5295,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,16147,0,65,0,0,0,0,3,281,1595,16136,0,0,0,0,1,0,3,0,0,0,0,0,0,823,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,378,5,0,0,276,0,892,0,0,0,120,18,0,0,0,0,0,0,0,0,0,746,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8442,1,0,1134,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,199,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3245,85,3 +16,0,0,6,0,38,17,0,43,6,5,0,0,2,12,0,707,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,38,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,363,0,0,0,0,0,1,0,0,0,0,0,10,0,0,135215,38,817,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,23587,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,813,0,7,0,0,3480,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19618,0,51,0,0,0,8,20,273,1255,19609,0,0,0,0,1,0,3,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,274,6,0,0,274,0,389,0,0,0,116,14,0,0,0,0,0,0,0,0,0,792,1,0,0,0,9,0,0,0,0,1,140,17,0,0,1,0,0,0,0,0,4772,1,0,780,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,19,0,0,0,0,1,42,203,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2059,120,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +10,0,0,5,0,42,21,0,46,0,4,0,0,2,14,0,839,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,6,5868,42,166,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,377,0,0,0,0,0,1,0,0,0,0,0,2,0,0,137003,42,961,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,23293,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,973,0,0,0,0,5568,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,19101,0,56,0,0,0,8,19,294,1639,19094,0,0,0,0,1,0,3,0,0,0,0,0,0,936,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,325,5,0,0,300,0,544,0,0,0,137,19,0,0,0,0,0,0,0,0,0,932,1,0,0,0,9,0,0,0,0,2,148,19,0,0,1,0,0,0,0,0,7057,1,0,1145,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,12,0,0,0,2,1,48,225,0,20,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3197,223,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,101,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,114,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,3,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,45,3,0,0,57,0,68,0,0,0,27,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,10,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1003,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,465,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,21,0,0,0,0,3,23,4,50,0,0,0,0,1,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,64,2,0,0,82,0,95,0,0,0,28,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,91,19,0,0,0,0,0,0,0,0,210,0,0,760,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,128,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,229,8,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1215,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,538,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,31,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,156,0,0,0,27,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +2,0,0,2,0,10,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,994,10,44,0,1,0,0,0,0,0,6,0,0,0,0,0,2,7,490,0,0,1,0,0,0,0,0,10,0,1,0,0,2,0,15,0,0,0,0,125,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,59,0,31,0,0,0,0,3,27,57,72,0,0,0,0,1,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,79,2,0,0,81,0,109,0,0,0,18,3,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,92,8,0,0,0,0,0,0,0,0,802,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,76,0,1,0,0,1,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,258,7,3 +5,0,0,5,0,36,17,0,20,0,4,0,0,2,9,0,69,0,6,1,0,0,0,8,0,10,0,0,4,0,2,0,0,0,1,1883,36,42,0,0,22,0,0,0,1,0,0,1,0,0,0,0,2,356,0,0,0,0,0,1,0,0,0,0,0,2,0,0,115433,36,140,0,3,0,0,0,0,0,28,0,0,0,0,0,8,17,19234,0,0,1,0,0,0,0,0,92,5,2,0,0,2,0,130,0,0,0,0,1874,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,18414,0,58,0,0,0,2,5,280,214,18397,0,0,0,0,1,0,3,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,252,5,0,0,245,0,393,0,0,0,96,19,0,0,0,0,0,0,0,0,0,127,1,0,0,0,9,0,0,0,0,2,140,17,0,0,1,0,0,0,0,0,1434,1,0,70,14,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,14,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,3,0,0,0,0,1,37,120,0,4,12,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,941,78,3 +0,0,0,3,0,11,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1027,11,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,469,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,99,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,24,0,0,0,0,3,28,6,52,0,0,0,0,1,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,74,3,0,0,83,0,160,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,91,16,0,0,0,0,0,0,0,0,249,0,0,764,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,108,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,231,64,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1252,14,36,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,546,0,0,2,0,0,0,0,0,10,0,1,0,0,2,0,10,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,29,0,0,0,0,3,31,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,87,2,0,0,95,0,172,0,0,0,28,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,17,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,16,34,0,3,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,259,148,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,6,0,0,63,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +5,0,0,4,0,38,15,0,35,1,3,0,0,2,4,0,714,0,6,2,0,0,0,9,0,11,0,0,5,0,1,0,0,0,5,3566,38,36,0,0,25,0,1,0,1,0,0,2,0,0,0,0,1,236,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80667,38,806,0,2,0,0,0,0,0,32,0,0,0,0,0,10,24,14380,0,0,5,0,0,0,0,0,97,5,4,0,0,2,0,753,0,2,0,0,3556,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,10616,0,48,0,0,0,0,3,274,1201,10593,0,0,0,0,1,0,3,0,0,0,0,0,0,997,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,40,12,265,4,0,0,283,0,368,0,0,0,132,13,0,0,0,0,0,0,0,0,0,779,1,0,0,0,11,0,0,0,0,1,131,33,0,0,0,0,0,0,0,0,4307,1,0,1969,16,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,361,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,1,0,0,0,0,1,43,119,0,3,14,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1958,60,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1212,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,534,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,88,0,154,0,0,0,25,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,229,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,149,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,50,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,53,0,0,0,28,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,875,8,41,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,449,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,15,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,19,0,0,0,0,3,21,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,61,2,0,0,79,0,88,0,0,0,17,0,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,88,13,0,0,0,0,0,0,0,0,205,0,0,736,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,107,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,221,3,3 +1,0,0,3,0,11,3,0,16,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,36,0,0,10,0,0,0,1,0,0,1,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,3,0,0,411,11,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,29,0,1,0,0,346,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,36,0,0,0,0,3,26,6,58,0,0,0,0,1,0,0,0,0,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,4,113,3,0,0,98,0,262,0,0,0,37,23,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,94,20,0,0,0,0,0,0,0,0,79,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,142,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,86,24,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1308,10,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,523,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,40,0,0,0,0,3,27,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,81,2,0,0,127,0,119,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,228,0,0,815,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,190,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,298,15,3 +2,0,0,3,0,9,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,78,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,38,3,0,0,58,0,59,0,0,0,28,2,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,6,3 +16,0,0,6,0,39,17,0,43,6,5,0,0,2,12,0,727,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,353,0,0,0,0,0,1,0,0,0,0,0,10,0,0,133015,39,836,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,23143,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,832,0,7,0,0,3661,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19321,0,53,0,0,0,8,20,282,1259,19311,0,0,0,0,1,0,3,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,289,6,0,0,275,0,396,0,0,0,113,12,0,0,0,0,0,0,0,0,0,812,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4701,1,0,777,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,20,0,0,0,2,1,43,201,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2040,135,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,125,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,92,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,52,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,153,10,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,25,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,32,0,0,0,0,3,26,4,45,0,0,0,0,1,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,92,0,273,0,0,0,22,4,0,0,0,0,0,1,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,28,0,0,19,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,64,27,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1074,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,485,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,116,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,23,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,70,3,0,0,80,0,153,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,252,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,105,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,66,3 +0,0,0,0,0,0,1,0,12,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,3 +0,0,0,3,0,9,2,0,16,1,3,0,0,0,4,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,3,0,1,0,0,3,0,0,0,0,0,83,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1336,9,60,0,1,0,0,0,0,0,16,0,0,0,1,0,1,8,540,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,19,0,2,0,0,125,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,90,0,42,0,0,0,0,3,23,10,107,0,0,0,0,1,0,0,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,5,81,3,0,0,104,0,114,0,0,0,44,5,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,91,28,0,0,0,0,0,0,0,0,229,0,0,819,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,227,0,1,0,0,1,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,296,14,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,30,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,268,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,28,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1040,8,33,0,0,0,0,0,0,0,7,0,0,0,0,0,1,6,492,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,19,0,0,0,0,3,22,4,52,0,0,0,0,1,0,0,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,58,2,0,0,76,0,110,0,0,0,22,3,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,212,0,0,768,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,111,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,231,6,3 +0,0,0,3,0,25,5,0,11,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,2,0,1,0,25,6,0,0,20,0,1,0,1,0,0,1,0,0,0,0,1,70,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1609,25,44,0,1,0,0,0,0,0,12,0,0,0,0,0,7,15,620,0,0,1,0,0,0,0,0,74,5,3,0,0,2,0,20,0,0,0,0,642,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,92,0,37,0,0,0,0,3,177,8,93,0,0,0,0,1,0,3,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,109,3,0,0,136,0,298,0,0,0,44,4,0,0,0,0,0,0,0,0,0,45,1,0,0,0,8,0,0,0,0,0,107,30,0,0,0,0,0,0,0,0,267,0,0,772,3,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,3,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,89,0,2,9,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,333,122,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,140,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,76,2,0,0,91,0,273,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,28,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2077,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,822,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,246,0,30,0,0,0,8,19,29,608,255,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,176,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,445,0,0,766,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,429,8,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,7,0,0,209,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,181,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,60,3,0,0,70,0,87,0,0,0,39,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,95,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,37,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,53,0,0,0,28,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,118,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,297,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,9,34,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,50,3,0,0,68,0,62,0,0,0,37,15,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,30,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,7,0,45,22,0,56,2,14,0,0,7,5,0,917,0,7,1,0,0,0,8,0,13,18,0,22,0,10,0,0,0,6,4247,45,6,0,0,54,0,6,0,1,0,0,12,0,0,0,0,13,287,0,0,0,0,0,1,0,0,0,0,0,4,0,0,33169,45,1152,0,31,0,0,0,0,0,67,0,0,0,0,0,8,72,7136,0,0,6,0,0,0,0,0,290,25,20,0,0,2,0,1087,0,1,31,0,5058,0,0,0,0,0,0,2,0,4,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,662,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,2125,0,116,0,0,0,25,36,519,1640,2088,0,0,0,0,1,0,4,0,0,0,0,0,0,3019,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,1,0,106,23,275,7,0,0,399,0,428,0,0,0,237,13,0,0,0,0,0,0,0,0,0,1028,1,0,0,0,9,0,0,0,0,2,134,113,0,0,59,0,0,0,0,0,4839,1,0,1744,16,0,1,1,1,0,0,0,21,0,0,0,9,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,16,374,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,53,0,0,0,0,1,51,380,0,51,12,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2611,128,3 +1,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,263,10,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,34,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,29,0,0,0,0,3,26,4,53,0,0,0,0,1,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,68,2,0,0,83,0,253,0,0,0,22,5,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,92,17,0,0,0,0,0,0,0,0,36,0,0,53,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,59,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,68,28,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,36,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,66,0,0,0,0,0,1,0,0,0,0,0,2,0,0,487,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,71,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,496,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,101,3,0,0,83,0,307,0,0,0,13,11,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,105,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,26,3 +0,0,0,3,0,10,2,0,5,4,3,0,0,0,7,0,14,0,6,2,0,0,0,0,0,0,3,0,1,0,2,0,1,0,2,0,10,6,0,0,14,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,7,0,0,101,10,36,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,4,0,0,2,0,0,0,0,0,10,0,0,0,0,2,0,36,0,5,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,18,0,28,0,0,0,2,8,24,12,25,0,0,0,0,1,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,60,3,0,0,42,0,108,0,0,0,12,3,0,0,0,0,0,0,0,0,0,37,0,0,0,0,2,0,0,0,0,2,92,4,0,0,0,0,0,0,0,0,28,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,4,0,0,0,0,1,12,3,0,6,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,10,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1418,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,84,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,617,0,0,0,0,0,7,43,228,0,0,0,0,0,0,0,0,0,0,0,0,0,1636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,17,2,0,0,54,0,89,0,0,0,48,3,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,45,0,0,0,0,0,0,0,0,318,0,0,368,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,116,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1402,6,3 +0,0,0,3,0,12,2,0,16,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,6,0,0,12,0,0,0,1,0,0,3,0,0,0,0,0,90,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1677,12,56,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,344,0,0,4,0,0,0,0,0,11,0,4,0,0,2,0,17,0,1,0,0,294,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,253,0,59,0,0,0,0,3,26,210,270,0,0,0,0,1,0,0,0,0,0,0,0,0,544,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,92,3,0,0,106,0,180,0,0,0,47,7,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,94,22,0,0,0,0,0,0,0,0,135,0,0,357,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,168,0,1,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,296,17,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1205,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,533,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,155,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,263,149,3 +4,0,0,5,0,35,21,0,44,0,4,0,0,2,7,0,770,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,262,0,0,0,0,0,1,0,0,0,0,0,2,0,0,117852,35,867,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20187,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,829,0,0,0,0,5493,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,16023,0,64,0,0,0,0,3,280,1604,16012,0,0,0,0,1,0,3,0,0,0,0,0,0,830,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,346,5,0,0,275,0,878,0,0,0,120,14,0,0,0,0,0,0,0,0,0,854,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8597,1,0,1153,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,199,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3219,90,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,74,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1350,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,547,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,90,0,41,0,0,0,0,3,23,6,100,0,0,0,0,1,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,119,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,818,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,202,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,294,14,3 +7,0,0,3,0,20,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,9,0,20,6,0,0,30,0,5,0,1,0,0,5,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,6,0,0,32478,20,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,6743,0,0,9,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,505,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4102,0,77,0,0,0,0,3,39,215,4116,0,0,0,0,1,0,0,0,0,0,0,0,0,8150,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,164,3,0,0,148,0,240,0,0,0,85,13,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,102,44,0,0,0,0,0,0,0,0,2010,0,0,9459,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,1,29,259,0,4,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2820,49,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1303,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,518,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,41,0,0,0,0,3,23,6,98,0,0,0,0,1,0,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,119,0,0,0,65,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,227,0,0,814,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,193,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,291,17,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,42,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,76,0,0,0,0,0,1,0,0,0,0,0,2,0,0,485,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,72,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,452,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1028,3,0,0,1020,0,349,0,0,0,14,9,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1039,9,0,0,0,0,0,0,0,0,110,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,32,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,10,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,28,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,92,0,256,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,27,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,105,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,55,26,3 +2,0,0,2,0,12,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1994,12,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,833,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,241,0,29,0,0,0,0,3,29,592,256,0,0,0,0,1,0,0,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,101,0,126,0,0,0,42,4,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,92,31,0,0,0,0,0,0,0,0,407,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,441,7,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,50,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,141,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,77,2,0,0,91,0,267,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,27,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,124,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,53,3,0,0,63,0,92,0,0,0,33,7,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,8,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,76,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,612,0,0,0,0,0,15,36,222,0,0,0,0,0,0,0,0,0,0,0,0,0,1620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,23,2,0,0,60,0,84,0,0,0,48,3,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,319,0,0,388,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,114,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1402,6,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,375,0,0,0,0,0,1,0,0,0,0,0,10,0,0,140178,39,873,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,24420,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,868,0,7,0,0,3496,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,20618,0,51,0,0,0,6,19,281,1257,20608,0,0,0,0,1,0,3,0,0,0,0,0,0,378,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,290,6,0,0,279,0,398,0,0,0,117,19,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,1,143,17,0,0,1,0,0,0,0,0,4755,1,0,775,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,223,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2076,128,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,5379,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,454,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,64,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,495,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,36,10,1055,3,0,0,1050,0,285,0,0,0,14,5,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1069,9,0,0,0,0,0,0,0,0,5440,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,30,3 +4,0,0,3,0,31,4,0,21,0,2,0,0,2,2,0,19,0,7,3,0,0,0,5,0,8,0,0,1,0,5,0,0,0,5,0,31,6,0,0,28,0,0,0,1,0,0,2,0,0,0,0,5,141,0,0,0,0,0,1,0,0,0,0,0,2,0,0,656,31,56,0,5,0,0,0,0,0,12,0,0,0,0,0,7,14,109,0,0,5,0,0,0,0,0,73,5,3,0,0,2,0,31,0,0,0,0,470,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,93,0,65,0,0,0,8,5,187,16,96,0,0,0,0,1,0,3,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,10,149,3,0,0,151,0,234,0,0,0,44,5,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,112,21,0,0,0,0,0,0,0,0,647,0,0,37,2,0,1,1,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,8,0,0,0,4,1,36,155,0,6,8,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,180,33,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +2,0,0,3,0,9,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,5,0,0,86,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,85,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,23,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,53,3,0,0,58,0,60,0,0,0,28,1,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,7,3 +7,0,0,5,0,41,21,0,41,0,4,0,0,2,12,0,732,0,6,1,0,0,0,8,0,10,0,0,7,0,2,0,0,0,6,5868,41,48,0,0,22,0,1,0,1,0,0,1,0,0,0,0,2,381,0,0,0,0,0,1,0,0,0,0,0,2,0,0,139397,41,836,0,5,0,0,0,0,0,32,0,0,0,0,0,8,18,23586,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,822,0,0,0,0,5166,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,19530,0,55,0,0,0,2,5,290,1619,19522,0,0,0,0,1,0,3,0,0,0,0,0,0,898,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,345,5,0,0,291,0,464,0,0,0,130,33,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,2,141,19,0,0,1,0,0,0,0,0,9593,1,0,1137,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,363,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,6,0,0,0,0,1,47,214,0,7,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3613,127,3 +5,0,0,4,0,14,5,0,46,7,15,0,0,0,10,0,16,0,6,1,0,0,0,5,0,0,0,0,8,0,9,0,0,0,6,0,14,6,0,0,85,0,0,0,0,0,0,0,0,0,0,0,8,48,0,0,0,0,0,1,0,0,0,0,0,17,0,0,223,14,113,0,17,0,0,0,0,0,0,0,0,0,0,0,5,5,50,0,0,6,0,0,1,36,0,305,30,0,0,0,2,0,207,0,8,0,0,186,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,57,0,49,0,0,0,16,11,40,259,77,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,11,77,4,0,0,51,0,123,0,0,0,21,3,0,0,0,0,0,0,0,0,0,98,0,0,0,0,6,0,0,0,0,1,94,85,0,0,75,0,0,0,0,0,1879,0,0,12,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,24,0,0,0,0,1,20,6,0,17,0,0,0,0,0,0,152,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,85,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1262,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,557,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,28,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,92,0,173,0,0,0,28,10,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,17,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,34,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,256,153,3 +6,0,0,3,0,21,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,8,0,21,6,0,0,30,0,5,0,1,0,0,5,0,0,0,0,0,82,0,0,0,0,0,1,0,0,0,0,0,6,0,0,40616,21,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,6823,0,0,8,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,4375,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4156,0,77,0,0,0,0,3,43,7839,4170,0,0,0,0,1,0,0,0,0,0,0,0,0,8400,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,160,3,0,0,152,0,251,0,0,0,83,21,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,104,44,0,0,0,0,0,0,0,0,2043,0,0,9586,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,3,0,0,0,0,1,29,230,0,4,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2877,58,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1311,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,528,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,39,0,0,0,0,3,23,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,120,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,227,0,0,812,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,203,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,286,12,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,125,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,145,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,34,0,0,0,2,3,26,6,39,0,0,0,0,1,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,58,3,0,0,72,0,90,0,0,0,41,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,36,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,101,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,95,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,3,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,49,3,0,0,57,0,67,0,0,0,27,1,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,10,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,64,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +1,0,0,6,0,35,7,0,35,0,5,0,0,7,6,0,558,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,178,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18128,35,626,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4262,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,617,0,0,1,0,2829,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,12,12,12,0,0,0,686,0,47,0,0,0,1,4,260,1159,672,0,0,0,0,1,0,3,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,191,6,0,0,204,0,270,0,0,0,58,5,0,0,0,0,0,0,0,0,0,624,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3279,1,0,823,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,110,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1910,73,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,134,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,268,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,113,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,26,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,126,12,25,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,125,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,71,0,90,0,0,0,41,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,605,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,36,3 +1,0,0,3,0,10,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,19,0,0,0,0,0,1,0,0,0,0,0,5,0,0,87,10,25,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,28,0,0,0,2,3,25,7,39,0,0,0,0,1,0,0,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,47,3,0,0,58,0,75,0,0,0,28,10,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,23,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,19,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,63,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,6,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,4,0,13,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,446,13,35,0,4,0,0,0,0,0,6,0,0,0,0,0,1,3,98,0,0,4,0,0,0,0,0,10,0,1,0,0,2,0,11,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,85,0,36,0,0,0,0,3,27,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,89,2,0,0,89,0,188,0,0,0,33,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,16,0,0,0,0,0,0,0,0,48,0,0,72,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,17,36,0,4,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,99,152,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1333,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,521,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,90,0,39,0,0,0,0,3,23,6,100,0,0,0,0,1,0,0,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,120,0,0,0,65,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,229,0,0,823,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,194,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,288,14,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,4,0,36,16,0,36,0,2,0,0,2,5,0,702,0,6,2,0,0,0,8,0,11,0,0,4,0,1,0,1,0,3,4921,36,6,0,0,25,0,1,0,1,0,0,1,0,0,0,0,1,347,0,0,0,0,0,1,0,0,0,0,0,6,0,0,133612,36,781,0,1,0,0,0,0,0,26,0,0,0,0,0,9,21,23346,0,0,3,0,0,0,0,0,93,5,2,0,0,2,0,731,0,0,0,0,2987,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,19630,0,42,0,0,0,0,3,270,1213,19616,0,0,0,0,1,0,3,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,236,4,0,0,263,0,276,0,0,0,106,4,0,0,0,0,0,0,0,0,0,769,1,0,0,0,10,0,0,0,0,0,136,15,0,0,0,0,0,0,0,0,3607,1,0,770,15,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,1,15,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,0,0,0,0,0,1,39,131,0,2,14,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1905,28,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,87,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,100,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,3,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,46,3,0,0,57,0,88,0,0,0,27,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,10,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,64,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,59,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,53,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,212,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,138,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,92,0,0,0,33,12,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +1,0,0,3,0,44,36,0,53,2,25,0,0,7,4,0,746,0,7,1,0,0,0,9,0,10,0,0,20,0,2,0,0,0,5,5961,44,6,0,0,59,0,3,0,1,0,0,6,0,0,0,0,3,394,0,0,0,0,0,1,0,0,0,0,0,1,0,0,38046,44,990,0,20,0,0,0,0,0,80,0,0,0,0,0,9,100,6334,0,0,5,0,0,0,0,0,384,25,10,0,0,2,0,861,0,0,98,0,6743,0,0,0,0,0,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,2660,0,94,0,0,0,15,15,585,1838,2634,0,0,0,0,1,0,4,0,0,0,0,0,0,1668,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,106,22,288,3,0,0,386,0,364,0,0,0,217,9,0,0,0,0,0,0,0,0,0,878,1,0,0,0,10,0,0,0,0,2,151,64,0,0,151,0,0,0,0,0,3608,1,0,1764,31,0,1,1,1,0,0,0,13,0,0,0,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,31,363,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,54,0,0,0,0,1,49,305,0,20,12,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1952,80,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,53,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1279,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,566,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,88,2,0,0,91,0,177,0,0,0,31,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,256,150,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,5,0,0,74,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,38,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,6,3 +4,0,0,3,0,9,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,4,0,0,80,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,69,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,33,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,5,38,3,0,0,59,0,61,0,0,0,29,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,25,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,29,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,71,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +1,0,0,6,0,34,7,0,35,0,5,0,0,7,6,0,541,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,174,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18413,34,609,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4294,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,600,0,0,1,0,3153,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,646,0,46,0,0,0,1,4,256,1159,632,0,0,0,0,1,0,3,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,186,6,0,0,201,0,271,0,0,0,58,5,0,0,0,0,0,0,0,0,0,607,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3342,1,0,817,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,107,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1940,71,3 +10,0,0,5,0,42,21,0,44,0,4,0,0,2,14,0,767,0,6,1,0,0,0,8,0,11,9,0,9,0,3,0,0,0,6,5868,42,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,357,0,0,0,0,0,1,0,0,0,0,0,2,0,0,144047,42,889,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,24621,0,0,6,0,0,0,0,0,93,5,2,0,0,2,0,903,0,0,0,0,5143,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,20434,0,53,0,0,0,6,15,298,1618,20423,0,0,0,0,1,0,3,0,0,0,0,0,0,910,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,313,5,0,0,297,0,422,0,0,0,135,29,0,0,0,0,0,0,0,0,0,858,1,0,0,0,9,0,0,0,0,1,146,19,0,0,1,0,0,0,0,0,6822,1,0,1120,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,16,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,9,0,0,0,0,1,48,198,0,20,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3182,145,3 +9,0,0,6,0,39,17,0,42,6,5,0,0,2,12,0,689,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,4,5033,39,32,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,350,0,0,0,0,0,1,0,0,0,0,0,10,0,0,128635,39,796,0,7,0,0,0,0,0,28,0,0,0,0,0,8,18,22430,0,0,4,0,0,0,0,0,90,5,2,0,0,2,0,790,0,7,0,0,3527,0,0,0,0,9,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,18621,0,53,0,0,0,6,19,281,1251,18611,0,0,0,0,1,0,3,0,0,0,0,0,0,372,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,297,6,0,0,276,0,378,0,0,0,116,21,0,0,0,0,0,0,0,0,0,773,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4459,1,0,799,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,16,0,0,0,0,1,43,175,0,17,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2034,132,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,77,2,0,0,91,0,272,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,28,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,94,10,24,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,13,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,21,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,41,3,0,0,58,0,90,0,0,0,28,6,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,20,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,15,3 +1,0,0,6,0,35,7,0,35,0,5,0,0,7,6,0,555,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,183,0,0,0,0,0,1,0,0,0,0,0,5,0,0,20308,35,623,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4557,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,614,0,0,1,0,2477,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,1050,0,49,0,0,0,1,4,260,1160,1036,0,0,0,0,1,0,3,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,188,6,0,0,204,0,273,0,0,0,58,4,0,0,0,0,0,0,0,0,0,621,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3229,1,0,833,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,109,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1839,78,3 +3541,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,144,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2193,11,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,699,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,612,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3541,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,243,0,96,0,0,0,0,3,31,9,240,0,0,0,0,1,0,0,0,0,0,0,0,0,9808,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,120,2,0,0,133,0,258,0,0,0,63,4,0,0,0,0,0,43,0,0,0,44,1,0,0,0,2,0,0,0,0,1,91,43,0,0,0,0,0,0,0,0,282,0,0,969,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,277,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,460,53,3 +4,0,0,5,0,35,21,0,43,0,4,0,0,2,7,0,735,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,260,0,0,0,0,0,1,0,0,0,0,0,2,0,0,116800,35,831,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19972,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,794,0,0,0,0,5639,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15874,0,65,0,0,0,0,3,281,1593,15863,0,0,0,0,1,0,3,0,0,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,376,5,0,0,274,0,880,0,0,0,118,20,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,0,136,19,0,0,1,0,0,0,0,0,8495,1,0,1143,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,226,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3183,91,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,139,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,93,0,0,0,33,13,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,51,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,53,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,56,0,0,0,28,7,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,458,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,61,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,505,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1077,3,0,0,1071,0,289,0,0,0,14,10,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1090,9,0,0,0,0,0,0,0,0,96,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,29,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1208,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,535,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,88,0,154,0,0,0,25,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,149,3 +2,0,0,3,0,9,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,5,0,0,77,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,96,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,38,3,0,0,58,0,59,0,0,0,28,2,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,596,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,6,3 +2362,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,141,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1996,11,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,686,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,2362,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,216,0,94,0,0,0,0,3,31,9,215,0,0,0,0,1,0,0,0,0,0,0,0,0,6745,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,109,2,0,0,131,0,244,0,0,0,61,6,0,0,0,0,0,46,0,0,0,44,1,0,0,0,2,0,0,0,0,1,91,43,0,0,0,0,0,0,0,0,271,0,0,906,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,301,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,443,41,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,122,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1743,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,606,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,165,0,67,0,0,0,0,3,27,9,164,0,0,0,0,1,0,0,0,0,0,0,0,0,9837,0,0,0,0,0,0,0,0,0,0,0,0,6,0,9,0,0,0,0,0,0,8,3,95,2,0,0,130,0,245,0,0,0,63,6,0,0,0,0,0,1,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,252,0,0,914,0,0,1,0,1,0,0,0,15,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,284,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,370,43,3 +39,0,0,3,1,39,5,0,15,0,9,0,0,0,4,0,35,0,8,4,0,0,0,1,0,0,3,0,7,0,2,0,0,0,20,0,39,30,0,0,135,0,0,0,1,0,0,1,0,0,0,0,1,49,0,0,0,0,0,1,0,0,0,25,0,2,0,0,773,39,90,0,9,0,0,0,0,0,12,0,0,0,0,0,2,5,80,0,0,20,0,0,0,0,0,41,0,0,0,0,6,1,57,0,1,0,0,657,0,0,0,0,6,5,0,0,13,0,0,1,0,0,0,2,0,0,1,0,0,0,0,3,0,0,0,5,0,0,0,0,0,7,0,18,0,0,3,0,0,0,8,0,0,0,0,0,0,0,0,3,0,2,1,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,118,0,82,0,0,0,2,8,73,278,152,0,0,0,0,1,0,0,0,0,0,4,4,0,950,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,28,184,207,5,0,0,206,0,203,0,0,0,126,30,0,0,0,0,0,0,0,0,0,76,1,0,0,0,5,0,0,0,0,2,125,38,0,0,0,0,0,0,0,0,40121,0,0,9,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,8,0,0,0,0,23,60,84,0,12,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,199,3 +0,0,0,2,0,9,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,307,9,30,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,37,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,6,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,27,0,0,0,0,3,23,5,52,0,0,0,0,1,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,72,2,0,0,103,0,124,0,0,0,51,1,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,41,0,0,0,0,0,0,0,0,34,0,0,49,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,118,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,67,13,3 +0,0,0,2,0,18,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1486,18,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,67,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,618,0,0,0,0,0,15,43,236,0,0,0,0,0,0,0,0,0,0,0,0,0,1657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,24,2,0,0,60,0,80,0,0,0,48,3,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,324,0,0,392,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,115,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1427,6,3 +2,0,0,3,0,9,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,63,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,38,3,0,0,58,0,58,0,0,0,28,2,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,6,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2139,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,891,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,440,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,247,0,30,0,0,0,8,19,29,611,256,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,84,2,0,0,110,0,175,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,449,0,0,762,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,433,8,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,7,0,0,86,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,18,0,5,0,0,127,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,53,3,0,0,63,0,100,0,0,0,33,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,20,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,17,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,14,3 +8,0,0,3,0,20,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,9,0,20,6,0,0,30,0,5,0,1,0,0,5,0,0,0,0,0,89,0,0,0,0,0,1,0,0,0,0,0,6,0,0,27013,20,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,5475,0,0,9,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,587,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3421,0,75,0,0,0,0,3,39,222,3435,0,0,0,0,1,0,0,0,0,0,0,0,0,6840,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,177,3,0,0,148,0,263,0,0,0,85,23,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,102,44,0,0,0,0,0,0,0,0,1712,0,0,7803,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,1,29,255,0,4,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2247,108,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,199,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,142,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,36,0,0,0,2,4,26,6,39,0,0,0,0,1,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,65,3,0,0,65,0,85,0,0,0,35,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,22,0,0,0,0,0,0,0,0,605,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,32,0,3,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,38,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1220,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,515,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,26,0,0,0,0,3,27,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,91,2,0,0,91,0,175,0,0,0,31,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,258,150,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1225,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,514,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,91,2,0,0,91,0,173,0,0,0,31,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,150,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,95,10,24,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,13,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,42,3,0,0,58,0,94,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,20,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,16,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1230,14,36,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,550,0,0,2,0,0,0,0,0,10,0,1,0,0,2,0,10,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,30,0,0,0,0,3,31,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,81,2,0,0,91,0,168,0,0,0,25,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,94,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,16,73,0,3,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,143,3 +4,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,5,0,0,198,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,135,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,4,24,6,35,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,58,3,0,0,59,0,91,0,0,0,29,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,22,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,34,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,51,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +10,0,0,5,0,41,21,0,47,0,4,0,0,2,14,0,853,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,41,162,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,421,0,0,0,0,0,1,0,0,0,0,0,2,0,0,144341,41,978,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,24687,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,989,0,0,0,0,5513,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,20488,0,58,0,0,0,8,17,290,1637,20478,0,0,0,0,1,0,3,0,0,0,0,0,0,953,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,316,5,0,0,297,0,470,0,0,0,138,21,0,0,0,0,0,0,0,0,0,947,1,0,0,0,9,0,0,0,0,2,147,19,0,0,1,0,0,0,0,0,7002,1,0,1146,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,222,0,22,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3238,153,3 +2,0,0,2,0,11,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2033,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,853,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,243,0,26,0,0,0,0,3,25,594,258,0,0,0,0,1,0,0,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,66,2,0,0,98,0,124,0,0,0,42,4,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,408,0,0,771,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,436,6,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,213,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,154,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,54,3,0,0,63,0,89,0,0,0,33,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +2,0,0,5,0,35,21,0,42,0,4,0,0,2,7,0,732,0,7,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5704,35,44,0,0,22,0,0,0,1,0,0,1,0,0,0,0,1,269,0,0,0,0,0,1,0,0,0,0,0,2,0,0,96091,35,831,0,2,0,0,0,0,0,32,0,0,0,0,0,8,17,15491,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,791,0,0,0,0,3492,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,14260,0,44,0,0,0,0,3,281,787,14242,0,0,0,0,1,0,3,0,0,0,0,0,0,805,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,1299,5,0,0,1303,0,437,0,0,0,124,15,0,0,0,0,0,0,0,0,0,815,1,0,0,0,9,0,0,0,0,1,1159,19,0,0,1,0,0,0,0,0,3568,1,0,416,16,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,1,0,0,0,0,1,36,257,0,3,12,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1379,91,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,54,0,0,0,28,6,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,2,0,19,3,0,21,0,2,0,0,0,2,0,75,0,6,1,0,0,0,1,0,0,36,0,0,0,13,0,0,0,3,0,19,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,12,59,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2273,19,144,0,13,0,0,0,0,0,7,0,0,0,0,0,1,6,872,0,0,3,0,0,0,0,0,56,0,2,0,0,2,0,226,0,0,0,0,568,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,258,0,41,0,0,0,24,53,33,653,272,0,0,0,0,1,0,0,0,0,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,106,2,0,0,122,0,213,0,0,0,45,8,0,0,0,0,0,0,0,0,0,109,1,0,0,0,2,0,0,0,0,13,99,31,0,0,0,0,0,0,0,0,530,0,0,774,0,0,1,0,1,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,373,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,12,0,0,0,0,1,22,201,0,49,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,452,15,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,53,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,7,0,0,92,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,18,0,5,0,0,133,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,34,0,0,0,2,3,26,7,40,0,0,0,0,1,0,0,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,53,3,0,0,63,0,101,0,0,0,33,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,20,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,17,0,3,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,35,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1208,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,531,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,155,0,0,0,27,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,149,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,55,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +0,0,0,3,0,12,2,0,16,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,6,0,0,12,0,0,0,1,0,0,3,0,0,0,0,0,91,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1745,12,56,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,381,0,0,4,0,0,0,0,0,11,0,4,0,0,2,0,17,0,1,0,0,297,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,256,0,59,0,0,0,0,3,26,209,273,0,0,0,0,1,0,0,0,0,0,0,0,0,563,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,93,3,0,0,106,0,180,0,0,0,47,12,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,94,22,0,0,0,0,0,0,0,0,176,0,0,369,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,171,0,1,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,333,17,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,54,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1091,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,512,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,100,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,24,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,71,3,0,0,80,0,152,0,0,0,27,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,252,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,101,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,66,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,140,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2105,10,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,696,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,227,0,91,0,0,0,0,3,27,9,224,0,0,0,0,1,0,0,0,0,0,0,0,0,10189,0,0,0,0,0,0,0,0,0,0,0,0,6,0,6,0,0,0,0,0,0,8,3,117,2,0,0,130,0,254,0,0,0,63,10,0,0,0,0,0,43,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,279,0,0,942,0,0,1,0,1,0,0,0,15,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,440,50,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1222,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,530,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,79,0,161,0,0,0,25,3,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,257,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,264,101,3 +4,0,0,5,0,38,21,0,47,0,4,0,0,2,7,0,841,0,6,1,0,0,0,8,0,10,0,0,8,0,4,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,252,0,0,0,0,0,1,0,0,0,0,0,2,0,0,147464,38,948,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,25150,0,0,4,0,0,0,0,0,104,5,2,0,0,2,0,908,0,0,0,0,5315,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,21055,0,69,0,0,0,6,9,284,1518,21038,0,0,0,0,1,0,3,0,0,0,0,0,0,533,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,615,5,0,0,283,0,942,0,0,0,127,91,0,0,0,0,0,0,0,0,0,928,1,0,0,0,9,0,0,0,0,4,139,19,0,0,1,0,0,0,0,0,9104,1,0,947,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,11,0,0,0,4,1,42,209,0,10,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3282,148,3 +5,0,0,4,0,37,13,0,36,0,3,0,0,2,3,0,684,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2845,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,642,0,0,0,0,0,1,0,0,0,0,0,4,0,0,66511,37,773,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,12201,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,722,0,1,0,0,3538,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,8114,0,46,0,0,0,2,7,266,1226,8090,0,0,0,0,1,0,3,0,0,0,0,0,0,628,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,282,4,0,0,280,0,376,0,0,0,130,14,0,0,0,0,0,0,0,0,0,747,1,0,0,0,10,0,0,0,0,1,131,36,0,0,0,0,0,0,0,0,4439,1,0,1354,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,239,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2012,51,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,91,0,264,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,100,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,762,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,39,154,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,346,0,0,0,0,0,1,0,0,0,0,0,10,0,0,110526,39,873,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,19414,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,868,0,7,0,0,3943,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,15391,0,55,0,0,0,8,20,281,1261,15381,0,0,0,0,1,0,3,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,299,6,0,0,275,0,461,0,0,0,113,16,0,0,0,0,0,0,0,0,0,848,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4915,1,0,799,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,219,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2081,129,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,17,0,2,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,52,0,0,7,0,2,0,1,0,0,2,0,0,0,0,0,63,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1169,9,51,0,1,0,0,0,0,0,12,0,0,0,0,0,1,7,486,0,0,0,0,0,0,0,0,10,0,4,0,0,2,0,33,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,66,0,31,0,0,0,0,3,26,7,76,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,18,3,81,3,0,0,89,0,153,0,0,0,25,3,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,0,89,17,0,0,0,0,0,0,0,0,287,0,0,798,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,189,0,1,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,261,42,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2067,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,848,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,422,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,244,0,30,0,0,0,8,19,29,615,253,0,0,0,0,1,0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,177,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,445,0,0,750,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,428,8,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,254,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,113,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,26,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1347,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,530,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,41,0,0,0,0,3,23,6,102,0,0,0,0,1,0,0,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,119,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,233,0,0,826,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,190,0,1,0,0,2,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,302,15,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1220,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,548,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,30,0,0,0,0,3,31,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,82,2,0,0,93,0,156,0,0,0,27,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,149,3 +10,0,0,5,0,40,17,0,42,0,4,0,0,2,14,0,692,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5022,40,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,358,0,0,0,0,0,1,0,0,0,0,0,2,0,0,132855,40,803,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,23070,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,822,0,0,0,0,3501,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,19276,0,57,0,0,0,8,19,280,1257,19267,0,0,0,0,1,0,3,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,289,5,0,0,278,0,399,0,0,0,119,23,0,0,0,0,0,0,0,0,0,777,1,0,0,0,9,0,0,0,0,2,139,17,0,0,1,0,0,0,0,0,6279,1,0,799,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,11,0,0,0,0,1,46,173,0,19,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2861,104,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,70,0,0,0,0,0,1,0,0,0,0,0,2,0,0,473,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,60,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,464,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1055,3,0,0,1050,0,288,0,0,0,14,8,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1069,9,0,0,0,0,0,0,0,0,96,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,30,3 +0,0,0,3,0,8,2,0,9,0,2,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,60,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1107,8,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,469,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,27,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,21,0,0,0,0,3,22,6,53,0,0,0,0,1,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,20,3,84,3,0,0,75,0,193,0,0,0,22,9,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,15,0,0,0,0,0,0,0,0,293,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,99,0,1,0,0,1,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,231,188,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1209,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,529,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,79,2,0,0,90,0,156,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,120,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,87,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,11,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,49,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,2,0,9,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,1,0,0,360,9,30,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,45,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,6,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,27,0,0,0,0,3,23,5,56,0,0,0,0,1,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,72,2,0,0,103,0,124,0,0,0,51,1,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,41,0,0,0,0,0,0,0,0,38,0,0,67,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,117,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,75,13,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,121,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,127,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,36,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,69,0,0,0,0,0,1,0,0,0,0,0,2,0,0,505,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,79,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,519,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,32,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1068,3,0,0,1062,0,311,0,0,0,14,9,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1081,9,0,0,0,0,0,0,0,0,108,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,29,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,50,0,0,0,28,9,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,897,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,450,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,21,0,0,0,0,3,22,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,64,2,0,0,71,0,80,0,0,0,19,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,12,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,65,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,7,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,11,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,22,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,33,0,30,0,0,0,0,3,30,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,95,0,267,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,27,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,61,27,3 +10,0,0,5,0,41,21,0,49,0,4,0,0,2,14,0,888,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,408,0,0,0,0,0,1,0,0,0,0,0,2,0,0,139648,41,1012,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23748,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,1022,0,0,0,0,5093,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,19630,0,53,0,0,0,8,19,291,1628,19620,0,0,0,0,1,0,3,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,311,5,0,0,303,0,416,0,0,0,143,22,0,0,0,0,0,0,0,0,0,984,1,0,0,0,9,0,0,0,0,2,153,19,0,0,1,0,0,0,0,0,7049,1,0,1113,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,211,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3175,107,3 +12,0,0,5,0,38,36,0,49,0,4,0,0,2,13,0,1020,0,6,1,0,0,0,8,0,10,0,0,8,0,3,0,0,0,2,11286,38,56,0,0,22,0,1,0,1,0,0,2,0,0,0,0,3,466,0,0,0,0,0,1,0,0,0,0,0,2,0,0,168819,38,1188,0,8,0,0,0,0,0,56,0,0,0,0,0,8,19,31834,0,0,2,0,0,0,0,0,101,5,4,1,0,2,0,1140,0,0,0,0,6607,0,0,0,0,6,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,29505,0,51,0,0,0,4,7,315,1367,29489,0,0,0,0,1,0,4,0,0,0,0,0,0,1550,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,359,5,0,0,349,0,469,0,0,0,183,38,0,0,0,0,0,0,0,0,0,1130,1,0,0,0,9,0,0,0,0,3,162,29,0,0,1,0,0,0,0,0,8481,1,0,807,26,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,26,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,9,0,0,0,4,1,40,285,0,9,12,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2786,77,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,138,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2351,10,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,736,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,251,0,89,0,0,0,0,3,27,9,248,0,0,0,0,1,0,0,0,0,0,0,0,0,10236,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,111,2,0,0,130,0,252,0,0,0,63,11,0,0,0,0,0,43,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,293,0,0,1013,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,468,47,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,8,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,7,0,0,217,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,147,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,32,0,0,0,2,4,26,6,40,0,0,0,0,1,0,0,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,55,3,0,0,68,0,89,0,0,0,38,5,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,25,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,11,3 +8,0,0,3,0,19,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,7,0,19,6,0,0,28,0,5,0,1,0,0,5,0,0,0,0,0,76,0,0,0,0,0,1,0,0,0,0,0,6,0,0,39757,19,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,6601,0,0,7,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,4345,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4057,0,74,0,0,0,0,3,38,7875,4071,0,0,0,0,1,0,0,0,0,0,0,0,0,8160,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,141,3,0,0,144,0,231,0,0,0,78,17,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,101,43,0,0,0,0,0,0,0,0,1987,0,0,9321,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,181,4,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,3,0,0,0,0,1,26,229,0,4,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2762,75,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,63,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,53,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +16,0,0,6,0,39,17,0,43,6,5,0,0,2,12,0,726,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,372,0,0,0,0,0,1,0,0,0,0,0,10,0,0,135002,39,835,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,23583,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,831,0,7,0,0,3621,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19711,0,52,0,0,0,8,20,281,1260,19701,0,0,0,0,1,0,3,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,307,6,0,0,278,0,395,0,0,0,116,17,0,0,0,0,0,0,0,0,0,811,1,0,0,0,9,0,0,0,0,1,142,17,0,0,1,0,0,0,0,0,4745,1,0,800,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,20,0,0,0,2,1,43,218,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2080,140,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1250,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,556,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,81,2,0,0,88,0,162,0,0,0,25,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,229,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,270,148,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,132,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,30,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,78,2,0,0,94,0,261,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,115,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,26,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,8,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,783,0,6,1,0,0,0,8,0,12,9,0,7,0,3,0,0,0,6,5870,41,160,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,375,0,0,0,0,0,1,0,0,0,0,0,2,0,0,137964,41,905,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23535,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,918,0,0,0,0,5263,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19285,0,53,0,0,0,8,19,291,1642,19275,0,0,0,0,1,0,3,0,0,0,0,0,0,937,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,297,5,0,0,299,0,495,0,0,0,139,24,0,0,0,0,0,0,0,0,0,875,1,0,0,0,9,0,0,0,0,2,149,19,0,0,1,0,0,0,0,0,6930,1,0,1145,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,204,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3229,108,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,231,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,130,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,54,3,0,0,73,0,68,0,0,0,43,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,36,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +1,0,0,6,0,34,7,0,36,0,5,0,0,7,6,0,540,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,179,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18085,34,609,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4128,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,600,0,0,1,0,2947,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,623,0,46,0,0,0,1,4,256,1159,609,0,0,0,0,1,0,3,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,187,6,0,0,201,0,270,0,0,0,58,6,0,0,0,0,0,0,0,0,0,607,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3287,1,0,825,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,114,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1867,69,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1267,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,77,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,618,0,0,0,0,0,15,43,217,0,0,0,0,0,0,0,0,0,0,0,0,0,1593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,21,2,0,0,60,0,86,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,305,0,0,320,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,114,0,0,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1393,5,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,124,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,93,0,0,0,33,12,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1230,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,519,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,90,2,0,0,91,0,173,0,0,0,31,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,150,3 +0,0,0,3,0,25,4,0,20,0,2,0,0,2,2,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,1,0,25,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,1,143,0,0,0,0,0,1,0,0,0,0,0,2,0,0,603,25,52,0,1,0,0,0,0,0,12,0,0,0,0,0,7,14,106,0,0,1,0,0,0,0,0,73,5,3,0,0,2,0,28,0,0,0,0,412,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,76,0,45,0,0,0,0,3,177,10,80,0,0,0,0,1,0,3,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,117,3,0,0,133,0,166,0,0,0,32,2,0,0,0,0,0,0,0,0,0,53,1,0,0,0,8,0,0,0,0,0,106,21,0,0,0,0,0,0,0,0,73,0,0,34,2,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,151,0,2,8,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,146,29,3 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,3,0,0,138,9,21,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,1,0,0,0,0,0,6,0,0,0,0,2,0,8,0,1,0,0,91,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,21,0,0,0,0,3,23,5,25,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,46,3,0,0,72,0,66,0,0,0,42,3,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,0,91,38,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,73,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,7,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1225,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,551,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,156,0,0,0,27,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,55,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,263,0,0,0,22,9,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,112,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,29,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,4,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1422,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,81,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,615,0,0,0,0,0,19,43,228,0,0,0,0,0,0,0,0,0,0,0,0,0,1635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,22,2,0,0,63,0,92,0,0,0,48,9,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,5,45,0,0,0,0,0,0,0,0,320,0,0,372,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,4,116,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,4,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,5,0,0,115,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,128,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,9,34,0,0,0,0,1,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,50,3,0,0,68,0,62,0,0,0,37,7,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,30,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,5,0,0,231,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,129,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,9,34,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,54,3,0,0,73,0,68,0,0,0,43,3,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,36,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1205,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,533,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,88,0,154,0,0,0,25,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,266,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,53,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1220,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,533,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,28,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,69,2,0,0,79,0,162,0,0,0,25,3,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,263,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,101,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,7,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,3,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,7,0,0,211,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,159,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,7,38,0,0,0,0,1,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,62,3,0,0,69,0,86,0,0,0,39,5,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,37,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1327,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,81,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,616,0,0,0,0,0,15,41,219,0,0,0,0,0,0,0,0,0,0,0,0,0,1606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,19,2,0,0,60,0,89,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,314,0,0,336,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,115,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1397,5,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1420,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,585,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,39,0,0,0,0,3,23,6,102,0,0,0,0,1,0,0,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,120,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,232,0,0,831,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,201,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,299,13,3 +2,0,0,3,0,9,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,75,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,38,3,0,0,58,0,61,0,0,0,28,4,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,6,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,62,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,7,0,0,210,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,171,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,57,3,0,0,69,0,88,0,0,0,39,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,16,3 +0,0,0,3,0,12,2,0,16,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,6,0,0,12,0,0,0,1,0,0,3,0,0,0,0,0,87,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1548,12,56,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,323,0,0,4,0,0,0,0,0,11,0,4,0,0,2,0,17,0,1,0,0,297,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,242,0,59,0,0,0,0,3,26,211,259,0,0,0,0,1,0,0,0,0,0,0,0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,92,3,0,0,106,0,181,0,0,0,47,4,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,94,22,0,0,0,0,0,0,0,0,130,0,0,313,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,174,0,1,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,275,17,3 +7,0,0,3,0,19,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,8,0,19,6,0,0,28,0,5,0,1,0,0,5,0,0,0,0,0,80,0,0,0,0,0,1,0,0,0,0,0,6,0,0,32911,19,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,6798,0,0,8,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,864,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4151,0,75,0,0,0,0,3,38,222,4165,0,0,0,0,1,0,0,0,0,0,0,0,0,8292,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,154,3,0,0,144,0,309,0,0,0,81,18,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,101,43,0,0,0,0,0,0,0,0,2014,0,0,9562,0,0,1,0,1,0,0,0,14,0,4,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,3,0,0,0,0,1,27,253,0,4,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2828,59,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,251,0,0,0,22,9,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,26,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1269,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,565,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,93,2,0,0,91,0,178,0,0,0,31,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,226,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,259,150,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,6,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,69,0,0,0,0,0,1,0,0,0,0,0,2,0,0,486,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,69,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,545,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,28,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1071,3,0,0,1064,0,301,0,0,0,14,6,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1083,9,0,0,0,0,0,0,0,0,101,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,30,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,54,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,29,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,255,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,98,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,27,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,7,0,0,119,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,18,0,5,0,0,122,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,32,0,0,0,2,3,26,6,40,0,0,0,0,1,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,50,3,0,0,64,0,75,0,0,0,33,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,95,20,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,17,0,3,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,33,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,782,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,41,168,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,363,0,0,0,0,0,1,0,0,0,0,0,2,0,0,141016,41,907,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,24125,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,920,0,0,0,0,5463,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19782,0,54,0,0,0,8,17,290,1636,19772,0,0,0,0,1,0,3,0,0,0,0,0,0,963,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,332,5,0,0,302,0,562,0,0,0,142,31,0,0,0,0,0,0,0,0,0,874,1,0,0,0,9,0,0,0,0,2,152,19,0,0,1,0,0,0,0,0,7020,1,0,1142,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,204,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3285,173,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,132,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,19,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,30,0,0,0,0,3,30,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,78,2,0,0,94,0,273,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,28,3 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,3,0,0,138,9,21,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,1,0,0,0,0,0,6,0,0,0,0,2,0,8,0,1,0,0,104,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,23,0,0,0,0,3,23,5,25,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,47,3,0,0,72,0,65,0,0,0,42,3,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,0,91,38,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,73,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,7,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1542,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,85,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,617,0,0,0,0,0,11,41,240,0,0,0,0,0,0,0,0,0,0,0,0,0,1686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,16,2,0,0,59,0,87,0,0,0,50,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,47,0,0,0,0,0,0,0,0,330,0,0,408,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,122,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1423,6,3 +579,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,4,0,1,0,0,4,0,0,0,0,0,134,0,0,0,0,0,1,0,0,0,0,0,1,0,0,5462,10,68,0,1,0,0,0,0,0,22,0,0,0,0,0,1,9,1156,0,0,0,0,0,0,0,0,14,0,8,0,0,2,0,15,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,99,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,579,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,737,0,69,0,0,0,0,3,26,7,778,0,0,0,0,1,0,0,0,0,0,0,0,0,3924,0,0,0,0,0,0,0,0,0,0,0,0,4,0,97,0,0,0,0,0,0,8,3,92,2,0,0,104,0,193,0,0,0,37,3,0,0,0,0,0,24,180,0,0,42,1,0,0,0,2,0,0,0,0,0,90,23,0,0,0,0,0,0,0,0,332,0,0,1885,0,0,1,1,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,190,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,208,0,1,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,89,0,0,0,0,0,0,0,4,690,26,3 +1,0,0,6,0,34,7,0,34,0,5,0,0,7,6,0,507,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,180,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18903,34,574,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4318,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,566,0,0,1,0,2903,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,679,0,46,0,0,0,1,4,256,1158,665,0,0,0,0,1,0,3,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,189,6,0,0,201,0,270,0,0,0,58,3,0,0,0,0,0,0,0,0,0,572,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3263,1,0,852,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,106,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1913,78,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,60,0,0,0,0,0,1,0,0,0,0,0,2,0,0,491,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,77,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,499,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1050,3,0,0,1044,0,292,0,0,0,14,7,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1063,9,0,0,0,0,0,0,0,0,107,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,30,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,53,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,30,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,236,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,24,3 +7,0,0,6,0,39,8,0,40,4,5,0,0,2,9,0,468,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,7,898,39,46,0,0,39,0,3,0,1,0,0,3,0,0,0,0,4,167,1,0,0,0,0,1,0,0,0,0,0,9,0,0,31560,39,558,0,7,0,0,0,0,0,22,0,0,0,0,0,8,20,6380,0,0,7,0,0,0,0,0,94,5,5,0,0,2,0,546,0,6,0,0,2810,0,0,0,0,24,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,2948,0,73,0,0,0,6,19,246,1133,2943,0,0,0,0,1,0,4,0,0,0,0,0,0,525,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,19,239,6,0,0,237,0,411,0,0,0,88,15,0,0,0,0,0,0,0,0,0,538,1,0,0,0,9,0,0,0,0,1,123,25,0,0,1,0,0,0,0,0,3027,1,0,878,5,0,1,1,1,0,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,5,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,16,0,0,0,0,1,46,163,0,17,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1822,197,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,7,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +10,0,0,5,0,41,17,0,43,0,4,0,0,2,14,0,750,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5024,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,359,0,0,0,0,0,1,0,0,0,0,0,2,0,0,135706,41,860,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,23664,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,878,0,0,0,0,3842,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19649,0,53,0,0,0,8,19,286,1257,19639,0,0,0,0,1,0,3,0,0,0,0,0,0,360,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,312,5,0,0,285,0,410,0,0,0,123,19,0,0,0,0,0,0,0,0,0,836,1,0,0,0,9,0,0,0,0,2,145,17,0,0,1,0,0,0,0,0,6520,1,0,795,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,211,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2927,102,3 +7,0,0,5,0,40,21,0,42,0,4,0,0,2,12,0,748,0,6,1,0,0,0,8,0,10,0,0,8,0,2,0,0,0,6,5868,40,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,2,389,0,0,0,0,0,1,0,0,0,0,0,2,0,0,138471,40,854,0,7,0,0,0,0,0,32,0,0,0,0,0,8,18,23697,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,839,0,0,0,0,5821,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,19420,0,55,0,0,0,2,5,283,1633,19413,0,0,0,0,1,0,3,0,0,0,0,0,0,899,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,324,5,0,0,295,0,425,0,0,0,137,29,0,0,0,0,0,0,0,0,0,835,1,0,0,0,9,0,0,0,0,2,146,19,0,0,1,0,0,0,0,0,6760,1,0,1143,16,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,362,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,7,0,0,0,2,1,46,203,0,8,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3057,179,3 +2,0,0,2,0,11,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2003,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,847,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,239,0,26,0,0,0,0,3,25,588,254,0,0,0,0,1,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,65,2,0,0,98,0,123,0,0,0,42,1,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,404,0,0,768,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,431,7,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1230,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,553,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,31,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,88,0,154,0,0,0,25,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,271,149,3 +4,0,0,5,0,36,16,0,42,0,4,0,0,2,7,0,755,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,4341,36,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,1134,0,0,0,0,0,1,0,0,0,0,0,2,0,0,118968,36,838,0,1,0,0,0,0,0,26,0,0,0,0,0,8,18,21145,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,807,0,0,0,0,3741,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,16522,0,63,0,0,0,0,3,282,1267,16510,0,0,0,0,1,0,3,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,340,5,0,0,258,0,807,0,0,0,100,21,0,0,0,0,0,0,0,0,0,832,1,0,0,0,9,0,0,0,0,0,131,16,0,0,1,0,0,0,0,0,8366,1,0,785,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,13,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,37,188,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3126,87,3 +16,0,0,5,0,39,21,0,42,0,4,0,0,2,15,0,723,0,6,1,0,0,0,8,0,10,0,0,11,0,5,0,0,0,5,5704,39,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,332,0,0,0,0,0,1,0,0,0,0,0,2,0,0,120492,39,838,0,13,0,0,0,0,0,32,0,0,0,0,0,8,18,20580,0,0,5,0,0,0,0,0,111,5,2,0,0,2,0,832,0,0,0,0,5768,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,16448,0,76,0,0,0,8,11,289,1630,16437,0,0,0,0,1,0,3,0,0,0,0,0,0,923,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,502,5,0,0,286,0,946,0,0,0,130,12,0,0,0,0,0,0,0,0,0,813,1,0,0,0,9,0,0,0,0,5,140,19,0,0,1,0,0,0,0,0,15772,1,0,1143,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,16,0,0,0,8,1,44,237,0,14,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5906,107,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,5,0,0,74,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,38,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,6,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2136,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,863,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,387,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,250,0,34,0,0,0,8,19,29,609,261,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,181,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,447,0,0,766,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,442,9,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1260,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,550,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,85,2,0,0,91,0,173,0,0,0,32,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,150,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1361,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,75,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,616,0,0,0,0,0,7,41,222,0,0,0,0,0,0,0,0,0,0,0,0,0,1602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,18,2,0,0,54,0,90,0,0,0,48,3,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,45,0,0,0,0,0,0,0,0,313,0,0,352,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,115,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1404,6,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1211,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,517,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,69,2,0,0,79,0,161,0,0,0,25,7,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,258,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,101,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3546,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,143,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2202,10,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,702,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,9,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3546,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,239,0,93,0,0,0,0,3,27,9,236,0,0,0,0,1,0,0,0,0,0,0,0,0,10007,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,118,2,0,0,132,0,253,0,0,0,65,9,0,0,0,0,0,45,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,284,0,0,971,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,284,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,458,49,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1233,14,36,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,545,0,0,2,0,0,0,0,0,10,0,1,0,0,2,0,10,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,30,0,0,0,0,3,31,6,108,0,0,0,0,1,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,91,0,166,0,0,0,25,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,94,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,16,73,0,3,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,143,3 +0,0,0,3,0,11,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1073,11,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,482,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,95,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,26,0,0,0,0,3,28,6,55,0,0,0,0,1,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,73,3,0,0,83,0,156,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,91,16,0,0,0,0,0,0,0,0,252,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,108,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,244,65,3 +4,0,0,4,0,27,5,0,14,0,2,0,0,2,2,0,21,0,6,3,0,0,0,6,0,8,0,0,5,0,2,0,1,0,1,0,27,6,3,0,23,0,1,0,1,0,0,1,0,0,0,0,3,80,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1472,27,47,0,5,0,0,0,0,0,9,0,0,0,0,0,7,17,604,0,0,1,0,0,0,0,0,85,5,1,0,0,2,0,27,0,0,0,0,468,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,85,0,36,0,0,0,4,8,179,31,82,0,0,0,0,1,0,3,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,34,10,116,4,0,0,125,0,262,0,0,0,27,18,0,0,0,0,0,0,0,0,0,52,1,0,0,0,9,0,0,0,0,2,109,16,0,0,0,0,0,0,0,0,846,0,0,732,3,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,1,3,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,6,0,0,0,0,1,28,68,0,6,9,0,1,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,303,29,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,65,0,0,0,0,0,1,0,0,0,0,0,2,0,0,449,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,63,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,590,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1027,3,0,0,1020,0,299,0,0,0,14,6,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1039,9,0,0,0,0,0,0,0,0,97,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,30,3 +10,0,0,5,0,41,21,0,46,0,4,0,0,2,14,0,818,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,41,158,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,431,0,0,0,0,0,1,0,0,0,0,0,2,0,0,147759,41,944,0,11,0,0,0,0,0,32,0,0,0,0,0,8,18,25163,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,956,0,0,0,0,5786,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,21090,0,53,0,0,0,8,17,290,1641,21080,0,0,0,0,1,0,3,0,0,0,0,0,0,937,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,300,5,0,0,295,0,462,0,0,0,136,25,0,0,0,0,0,0,0,0,0,911,1,0,0,0,9,0,0,0,0,2,145,19,0,0,1,0,0,0,0,0,6890,1,0,1141,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,204,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3297,167,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1445,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,58,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,608,0,0,0,0,0,7,43,236,0,0,0,0,0,0,0,0,0,0,0,0,0,1645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,9,2,0,0,53,0,91,0,0,0,48,1,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,2,44,0,0,0,0,0,0,0,0,326,0,0,412,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,114,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1390,3,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,27,2,0,0,30,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1261,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,555,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,30,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,92,0,168,0,0,0,29,9,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,17,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,34,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,261,154,3 +3549,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,117,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1958,11,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,624,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,189,0,66,0,0,0,0,3,31,9,186,0,0,0,0,1,0,0,0,0,0,0,0,0,10220,0,0,0,0,0,0,0,0,0,0,0,0,6,0,9,0,0,0,0,0,0,8,3,103,2,0,0,135,0,242,0,0,0,65,7,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,93,43,0,0,0,0,0,0,0,0,268,0,0,982,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,281,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,389,48,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1336,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,551,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,90,0,40,0,0,0,0,3,23,6,100,0,0,0,0,1,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,119,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,814,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,189,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,294,15,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,54,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +16,0,0,6,0,39,17,0,43,6,5,0,0,2,12,0,727,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,364,0,0,0,0,0,1,0,0,0,0,0,10,0,0,138345,39,835,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,24275,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,831,0,7,0,0,3488,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,20202,0,52,0,0,0,8,20,281,1255,20192,0,0,0,0,1,0,3,0,0,0,0,0,0,389,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,309,6,0,0,277,0,415,0,0,0,115,17,0,0,0,0,0,0,0,0,0,812,1,0,0,0,9,0,0,0,0,1,141,17,0,0,1,0,0,0,0,0,4850,1,0,800,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,228,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2113,126,3 +10,0,0,5,0,41,21,0,43,0,4,0,0,2,14,0,710,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,425,0,0,0,0,0,1,0,0,0,0,0,2,0,0,139739,41,830,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23754,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,845,0,0,0,0,4978,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,19609,0,53,0,0,0,8,19,290,1612,19599,0,0,0,0,1,0,3,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,293,5,0,0,292,0,400,0,0,0,132,19,0,0,0,0,0,0,0,0,0,800,1,0,0,0,9,0,0,0,0,2,142,19,0,0,1,0,0,0,0,0,6561,1,0,1098,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,229,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3077,99,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,120,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,134,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,71,0,90,0,0,0,41,1,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,36,3 +2,0,0,2,0,11,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2045,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,858,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,327,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,242,0,25,0,0,0,0,3,25,591,257,0,0,0,0,1,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,66,2,0,0,98,0,123,0,0,0,42,3,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,406,0,0,775,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,432,7,3 +0,0,0,3,0,10,2,0,3,0,3,0,0,0,3,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,137,10,21,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,1,0,0,0,0,0,6,0,0,0,0,2,0,8,0,1,0,0,93,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,23,0,0,0,0,3,27,5,26,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,51,3,0,0,75,0,67,0,0,0,42,3,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,0,92,38,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,73,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,7,3 +1,0,0,6,0,35,7,0,36,0,5,0,0,7,6,0,591,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,176,0,0,0,0,0,1,0,0,0,0,0,5,0,0,19088,35,660,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4325,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,650,0,0,1,0,2804,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,709,0,46,0,0,0,1,4,263,1160,694,0,0,0,0,1,0,3,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,190,6,0,0,203,0,271,0,0,0,58,4,0,0,0,0,0,0,0,0,0,658,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3395,1,0,809,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,113,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1855,70,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,67,0,0,0,0,0,1,0,0,0,0,0,2,0,0,493,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,64,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,508,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1099,3,0,0,1092,0,303,0,0,0,14,7,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1111,9,0,0,0,0,0,0,0,0,100,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,30,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,8,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,231,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,126,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,55,3,0,0,74,0,68,0,0,0,43,3,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,36,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,1,0,0,885,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,469,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,19,0,0,0,0,3,21,4,41,0,0,0,0,1,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,53,2,0,0,71,0,88,0,0,0,19,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,63,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,2,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,82,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,48,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +4,0,0,5,0,38,21,0,43,0,5,0,0,1,7,0,701,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,271,0,0,0,0,0,1,0,0,0,0,0,2,0,0,32248,38,798,0,3,0,0,0,0,0,32,0,0,0,0,0,8,18,5849,0,0,4,0,0,0,0,0,89,5,2,0,0,2,0,762,0,0,0,0,6428,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,1604,0,71,0,0,0,0,3,280,1566,1588,0,0,0,0,1,0,3,0,0,0,0,0,0,717,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,658,5,0,0,283,0,937,0,0,0,127,94,0,0,0,0,0,0,0,0,0,784,1,0,0,0,9,0,0,0,0,1,139,19,0,0,1,0,0,0,0,0,9053,1,0,1071,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,42,198,0,4,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3378,149,3 +16,0,0,6,0,40,17,0,42,6,5,0,0,2,12,0,708,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4625,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,351,0,0,0,0,0,1,0,0,0,0,0,10,0,0,124298,40,814,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,21810,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,811,0,7,0,0,3709,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,17792,0,53,0,0,0,6,19,286,1253,17782,0,0,0,0,1,0,3,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,288,6,0,0,284,0,403,0,0,0,120,14,0,0,0,0,0,0,0,0,0,792,1,0,0,0,9,0,0,0,0,1,146,17,0,0,1,0,0,0,0,0,4815,1,0,792,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,17,0,0,0,0,1,44,194,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2123,133,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,122,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,63,0,88,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,4,0,0,0,8,32,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,1,0,0,54,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,10,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,17,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,15,0,0,0,0,3,22,7,27,0,0,0,0,1,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,3,36,2,0,0,33,0,106,0,0,0,3,1,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,88,4,0,0,0,0,0,0,0,0,55,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,4,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,8,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,5,0,0,74,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,38,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,6,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,108,10,24,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,13,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,44,3,0,0,61,0,100,0,0,0,31,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,23,0,0,0,0,0,0,0,0,20,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,14,3 +4,0,0,5,0,38,21,0,44,0,4,0,0,2,7,0,736,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,260,0,0,0,0,0,1,0,0,0,0,0,2,0,0,118238,38,841,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,20018,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,804,0,0,0,0,6131,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15891,0,73,0,0,0,6,9,284,1612,15874,0,0,0,0,1,0,3,0,0,0,0,0,0,821,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,602,5,0,0,284,0,938,0,0,0,127,89,0,0,0,0,0,0,0,0,0,820,1,0,0,0,9,0,0,0,0,4,140,19,0,0,1,0,0,0,0,0,9165,1,0,1130,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,197,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3387,149,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,193,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,127,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,57,0,87,0,0,0,27,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,13,3 +0,0,0,2,0,9,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,316,9,30,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,35,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,6,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,27,0,0,0,0,3,23,5,53,0,0,0,0,1,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,74,2,0,0,103,0,124,0,0,0,51,1,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,41,0,0,0,0,0,0,0,0,35,0,0,53,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,114,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,65,13,3 +16,0,0,6,0,39,17,0,42,6,5,0,0,2,12,0,691,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,350,0,0,0,0,0,1,0,0,0,0,0,10,0,0,128426,39,798,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,22334,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,795,0,7,0,0,3481,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,18582,0,51,0,0,0,8,20,281,1254,18572,0,0,0,0,1,0,3,0,0,0,0,0,0,396,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,281,6,0,0,275,0,393,0,0,0,113,16,0,0,0,0,0,0,0,0,0,775,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4600,1,0,804,14,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,216,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2012,126,3 +0,0,0,2,0,9,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,294,9,30,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,34,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,6,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,27,0,0,0,0,3,23,5,51,0,0,0,0,1,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,71,2,0,0,103,0,124,0,0,0,51,1,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,41,0,0,0,0,0,0,0,0,33,0,0,47,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,118,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,64,14,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,40,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,77,0,0,0,0,0,1,0,0,0,0,0,2,0,0,472,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,64,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,633,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,94,3,0,0,83,0,319,0,0,0,13,7,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,102,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,29,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,197,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,147,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,30,0,0,0,2,4,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,65,3,0,0,65,0,85,0,0,0,35,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,22,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,32,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,38,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,134,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,253,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,108,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,28,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,67,0,0,0,0,0,1,0,0,0,0,0,2,0,0,600,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,76,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,550,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,57,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,176,3,0,0,83,0,360,0,0,0,13,15,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,106,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,60,3 +2,0,0,2,0,16,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,16,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2123,16,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,849,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,445,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,250,0,31,0,0,0,8,19,33,615,259,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,113,0,178,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,96,31,0,0,0,0,0,0,0,0,449,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,4,0,0,0,0,1,19,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,438,8,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,5,0,35,21,0,41,0,4,0,0,2,7,0,665,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,265,0,0,0,0,0,1,0,0,0,0,0,2,0,0,130577,35,759,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,22146,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,724,0,0,0,0,5641,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,18126,0,65,0,0,0,0,3,281,1595,18115,0,0,0,0,1,0,3,0,0,0,0,0,0,846,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,339,5,0,0,276,0,870,0,0,0,120,19,0,0,0,0,0,0,0,0,0,746,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,7932,1,0,1138,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,218,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3082,87,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1214,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,522,0,0,2,0,0,0,0,0,23,0,2,0,0,2,0,65,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,79,0,162,0,0,0,25,5,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,259,0,0,799,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,101,3 +2,0,0,5,0,34,21,0,41,0,4,0,0,2,7,0,679,0,7,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5704,34,42,0,0,22,0,0,0,1,0,0,1,0,0,0,0,1,307,0,0,0,0,0,1,0,0,0,0,0,2,0,0,103862,34,777,0,2,0,0,0,0,0,32,0,0,0,0,0,8,17,16768,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,738,0,0,0,0,3545,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,15584,0,43,0,0,0,0,3,272,788,15567,0,0,0,0,1,0,3,0,0,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,1255,5,0,0,1271,0,412,0,0,0,119,12,0,0,0,0,0,0,0,0,0,761,1,0,0,0,9,0,0,0,0,1,1130,19,0,0,1,0,0,0,0,0,3448,1,0,419,16,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,1,0,0,0,0,1,35,219,0,3,12,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1391,89,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1204,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,493,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,58,0,34,0,0,0,8,19,32,22,69,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,82,2,0,0,113,0,185,0,0,0,48,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,97,32,0,0,0,0,0,0,0,0,256,0,0,774,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,238,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,250,10,3 +13,0,0,4,1,42,13,4,41,3,4,0,0,2,6,0,687,0,6,4,0,1,1,8,0,11,0,0,5,0,1,0,0,0,7,2849,43,32,128,0,32,0,1,0,1,0,0,2,0,0,0,0,1,268,0,0,0,0,0,1,0,0,0,0,0,7,0,0,95796,42,890,0,2,0,0,0,0,0,28,3,0,0,0,0,9,23,16960,0,4,7,0,0,0,0,0,97,5,4,0,0,2,1,720,0,4,0,0,3420,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,13320,0,55,0,0,0,0,3,275,1214,13301,0,0,0,0,1,0,3,0,0,0,0,0,0,1058,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,41,14,261,5,0,0,312,0,369,0,0,0,136,10,0,0,0,0,0,0,0,0,0,759,1,0,0,0,14,0,0,0,0,1,137,34,0,0,0,0,0,0,0,0,4502,1,0,1878,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,1,0,0,0,0,9,50,211,0,3,14,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2041,118,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,130,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,53,3,0,0,63,0,92,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,601,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +0,0,0,3,0,9,2,0,9,0,2,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,32,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1069,9,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,456,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,20,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,22,0,0,0,0,3,26,6,55,0,0,0,0,1,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,3,77,3,0,0,76,0,197,0,0,0,20,5,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,89,15,0,0,0,0,0,0,0,0,252,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,106,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,47,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,7,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +9,0,0,6,0,39,21,0,44,6,5,0,0,2,12,0,725,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,4,5879,39,34,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,378,0,0,0,0,0,1,0,0,0,0,0,10,0,0,127796,39,842,0,7,0,0,0,0,0,32,0,0,0,0,0,8,18,21756,0,0,4,0,0,0,0,0,90,5,2,0,0,2,0,831,0,7,0,0,5967,0,0,0,0,9,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,17616,0,55,0,0,0,6,19,285,1631,17606,0,0,0,0,1,0,3,0,0,0,0,0,0,926,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,339,6,0,0,291,0,409,0,0,0,131,34,0,0,0,0,0,0,0,0,0,815,1,0,0,0,9,0,0,0,0,1,145,19,0,0,1,0,0,0,0,0,4817,1,0,1145,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,16,0,0,0,0,1,43,206,0,17,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2327,142,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,134,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,263,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,193,10,27,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,19,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,787,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,27,0,0,0,2,4,25,7,39,0,0,0,0,1,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,55,3,0,0,58,0,95,0,0,0,28,3,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,20,3 +4,0,0,5,0,38,21,0,47,0,4,0,0,2,7,0,843,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5706,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,344,0,0,0,0,0,1,0,0,0,0,0,2,0,0,119809,38,951,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,20252,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,911,0,0,0,0,5781,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,16150,0,63,0,0,0,6,9,284,1613,16133,0,0,0,0,1,0,3,0,0,0,0,0,0,803,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,683,5,0,0,286,0,1015,0,0,0,130,89,0,0,0,0,0,0,0,0,0,930,1,0,0,0,9,0,0,0,0,4,142,19,0,0,1,0,0,0,0,0,9162,1,0,1130,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,209,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3323,137,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,785,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,3,5022,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,363,0,0,0,0,0,1,0,0,0,0,0,10,0,0,272246,39,896,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,46449,0,0,3,0,0,0,0,0,91,5,2,0,0,2,0,891,0,7,0,0,3541,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,42491,0,52,0,0,0,8,20,284,1250,42481,0,0,0,0,1,0,3,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,294,6,0,0,274,0,411,0,0,0,110,24,0,0,0,0,0,0,0,0,0,871,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4899,1,0,766,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,42,177,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2021,150,3 +1,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,173,11,37,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,33,0,0,0,0,3,30,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,78,2,0,0,112,0,254,0,0,0,41,5,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,93,37,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,132,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,65,24,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1029,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,451,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,97,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,25,0,0,0,0,3,24,6,53,0,0,0,0,1,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,70,3,0,0,80,0,152,0,0,0,27,4,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,251,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,101,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,65,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,29,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,79,2,0,0,94,0,260,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,107,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,26,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,7,0,0,216,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,135,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,33,0,0,0,2,4,26,6,40,0,0,0,0,1,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,59,3,0,0,69,0,89,0,0,0,39,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,16,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,782,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,363,0,0,0,0,0,1,0,0,0,0,0,2,0,0,145711,41,905,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,24826,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,918,0,0,0,0,5567,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,20581,0,53,0,0,0,8,17,290,1635,20571,0,0,0,0,1,0,3,0,0,0,0,0,0,935,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,322,5,0,0,301,0,398,0,0,0,141,22,0,0,0,0,0,0,0,0,0,874,1,0,0,0,9,0,0,0,0,2,151,19,0,0,1,0,0,0,0,0,6932,1,0,1142,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,227,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3256,165,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,12,2,0,16,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,6,0,0,12,0,0,0,1,0,0,3,0,0,0,0,0,91,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1308,12,56,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,265,0,0,4,0,0,0,0,0,11,0,4,0,0,2,0,17,0,1,0,0,279,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,224,0,59,0,0,0,0,3,26,211,241,0,0,0,0,1,0,0,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,96,3,0,0,106,0,180,0,0,0,47,13,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,94,22,0,0,0,0,0,0,0,0,92,0,0,241,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,172,0,1,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,217,16,3 +7,0,0,5,0,35,21,0,44,0,4,0,0,2,9,0,816,0,6,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5870,35,44,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,423,0,0,0,0,0,1,0,0,0,0,0,2,0,0,146879,35,917,0,2,0,0,0,0,0,32,0,0,0,0,0,8,18,25165,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,892,0,0,0,0,5428,0,0,0,0,3,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,20842,0,43,0,0,0,0,3,281,1593,20827,0,0,0,0,1,0,3,0,0,0,0,0,0,761,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,288,5,0,0,274,0,427,0,0,0,117,35,0,0,0,0,0,0,0,0,0,902,1,0,0,0,9,0,0,0,0,1,136,19,0,0,1,0,0,0,0,0,7712,1,0,1066,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,1,0,0,0,0,1,36,231,0,3,12,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2829,58,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,55,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,15,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,38,2,0,0,44,0,118,0,0,0,13,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,15,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,36,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,27,3 +2,0,0,3,0,16,2,0,8,1,3,0,0,0,4,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,16,6,0,0,18,0,0,0,1,0,0,5,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,4,0,0,10941,16,57,0,1,0,0,0,0,0,21,0,0,0,0,0,1,7,662,0,0,5,0,0,0,0,0,13,0,8,0,0,2,0,10,0,2,0,0,4271,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,475,0,72,0,0,0,0,3,33,7846,486,0,0,0,0,1,0,0,0,0,0,0,0,0,968,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,5,114,3,0,0,134,0,190,0,0,0,71,14,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,99,41,0,0,0,0,0,0,0,0,754,0,0,799,0,0,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,21,227,0,1,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,407,42,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,5,0,0,233,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,123,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,59,3,0,0,74,0,63,0,0,0,43,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,36,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +16,0,0,6,0,38,17,0,44,6,5,0,0,2,12,0,743,0,6,1,0,0,0,8,0,12,9,0,8,0,3,0,0,0,4,4944,38,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,367,0,0,0,0,0,1,0,0,0,0,0,10,0,0,129435,38,853,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,22581,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,848,0,7,0,0,3407,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18821,0,53,0,0,0,8,20,275,1262,18812,0,0,0,0,1,0,3,0,0,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,309,6,0,0,277,0,411,0,0,0,118,32,0,0,0,0,0,0,0,0,0,829,1,0,0,0,9,0,0,0,0,1,142,17,0,0,1,0,0,0,0,0,4677,1,0,800,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,20,0,0,0,2,1,42,206,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2058,136,3 +1,0,0,6,0,35,7,0,33,0,5,0,0,7,6,0,486,0,6,1,0,0,0,9,0,12,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,177,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18556,35,553,0,4,0,0,0,0,0,18,0,0,0,0,0,9,28,4275,0,0,1,0,0,0,0,0,215,25,4,0,0,2,0,545,0,0,1,0,2852,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,726,0,46,0,0,0,2,5,265,1157,711,0,0,0,0,1,0,3,0,0,0,0,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,188,6,0,0,203,0,271,0,0,0,58,3,0,0,0,0,0,0,0,0,0,550,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3143,1,0,839,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,9,0,0,0,0,1,36,113,0,5,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1898,76,3 +3,0,0,3,0,13,4,0,28,0,9,0,0,0,2,0,22,0,7,1,0,0,0,1,0,0,3,0,1,0,2,0,0,0,2,0,13,6,0,0,37,0,1,0,1,0,0,1,0,0,0,0,1,98,0,0,0,0,0,1,0,0,0,0,0,5,0,0,4340,13,72,0,3,0,0,0,0,0,6,0,0,0,0,0,1,3,1384,0,0,2,0,0,1,19,0,163,20,1,0,0,2,0,116,0,0,0,0,721,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,740,0,37,0,0,0,2,7,29,324,752,0,0,0,0,1,0,0,0,0,0,0,0,0,619,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,117,3,0,0,92,0,197,0,0,0,31,4,0,0,0,0,0,0,0,0,0,72,1,0,0,0,2,0,0,0,0,1,95,56,0,0,44,0,0,0,0,0,1134,0,0,473,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,15,81,0,6,0,0,0,0,0,0,67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,676,297,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,17,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,76,2,0,0,91,0,267,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,113,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +8,0,0,3,0,20,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,9,0,20,6,0,0,30,0,5,0,1,0,0,5,0,0,0,0,0,79,0,0,0,0,0,1,0,0,0,0,0,6,0,0,33663,20,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,7001,0,0,9,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,554,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4242,0,75,0,0,0,0,3,39,223,4256,0,0,0,0,1,0,0,0,0,0,0,0,0,8562,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,147,3,0,0,148,0,240,0,0,0,85,15,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,102,44,0,0,0,0,0,0,0,0,2089,0,0,9782,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,1,29,255,0,4,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2951,54,3 +0,0,0,3,0,15,2,0,16,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,15,6,0,0,14,0,0,0,1,0,0,3,0,0,0,0,0,87,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1261,15,56,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,260,0,0,5,0,0,0,0,0,11,0,4,0,0,2,0,17,0,1,0,0,363,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,217,0,55,0,0,0,0,3,35,207,230,0,0,0,0,1,0,0,0,0,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,101,3,0,0,115,0,186,0,0,0,50,19,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,97,22,0,0,0,0,0,0,0,0,97,0,0,229,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,20,176,0,1,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,210,19,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1079,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,488,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,23,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,71,3,0,0,80,0,156,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,253,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,112,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,65,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,121,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,152,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,59,3,0,0,72,0,86,0,0,0,41,1,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,36,3 +4,0,0,5,0,38,21,0,43,0,4,0,0,2,7,0,702,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5706,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,264,0,0,0,0,0,1,0,0,0,0,0,2,0,0,32549,38,806,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,5926,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,770,0,0,0,0,5902,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,1664,0,68,0,0,0,6,9,284,1609,1647,0,0,0,0,1,0,3,0,0,0,0,0,0,823,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,673,5,0,0,284,0,944,0,0,0,128,104,0,0,0,0,0,0,0,0,0,785,1,0,0,0,9,0,0,0,0,4,140,19,0,0,1,0,0,0,0,0,9669,1,0,1141,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,200,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3596,150,3 +1,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,173,10,37,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,74,2,0,0,109,0,255,0,0,0,41,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,37,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,140,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,62,23,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,78,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,65,0,58,0,0,0,35,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,111,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,54,3,0,0,63,0,93,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,11,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,4,0,0,62,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,53,0,0,0,28,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,5,0,1,0,10,50,0,0,8,0,0,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,3,0,0,419,10,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,32,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,23,0,1,0,0,156,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,25,8,61,0,0,0,0,1,0,0,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,4,89,3,0,0,109,0,169,0,0,0,53,4,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,92,43,0,0,0,0,0,0,0,0,86,0,0,40,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,119,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,71,10,3 +10,0,0,4,0,28,13,0,74,0,21,0,0,2,2,0,19,0,7,3,0,0,0,5,0,8,0,0,5,0,1,0,0,0,2,0,28,6,0,0,126,0,0,0,1,0,0,4,0,0,0,0,1,175,0,0,0,0,0,1,0,0,0,0,0,12,0,0,15114,28,145,0,5,0,0,0,0,0,17,0,0,0,0,3,7,18,1348,0,0,2,0,0,1,62,0,559,55,8,0,0,2,0,311,0,0,0,0,533,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,1300,0,64,0,0,0,0,3,186,342,1294,0,0,0,0,1,0,3,0,0,0,0,0,0,4177,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,10,116,4,0,0,156,0,248,0,0,0,57,3,0,0,0,0,0,0,0,0,0,138,1,0,0,0,8,0,0,0,0,1,110,173,0,0,127,0,0,0,0,0,1243,0,0,4795,2,0,1,1,0,0,0,0,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,4,0,0,0,0,1,30,133,0,6,8,0,0,0,0,0,170,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1393,185,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,133,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,250,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,113,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,27,3 +2,0,0,2,0,16,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,16,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,57,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2150,16,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,880,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,415,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,252,0,37,0,0,0,8,19,33,615,263,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,113,0,183,0,0,0,45,6,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,96,31,0,0,0,0,0,0,0,0,447,0,0,762,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,4,0,0,0,0,1,19,201,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,448,10,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1239,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,567,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,74,2,0,0,88,0,154,0,0,0,25,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,264,149,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1114,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,501,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,23,0,0,0,0,3,24,6,56,0,0,0,0,1,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,71,3,0,0,80,0,155,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,254,0,0,784,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,109,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,239,64,3 +10,0,0,5,0,41,17,0,44,0,4,0,0,2,14,0,783,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,6,5024,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,340,0,0,0,0,0,1,0,0,0,0,0,2,0,0,126544,41,895,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,22052,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,912,0,0,0,0,3281,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18261,0,57,0,0,0,8,19,287,1261,18251,0,0,0,0,1,0,3,0,0,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,298,5,0,0,281,0,398,0,0,0,119,15,0,0,0,0,0,0,0,0,0,870,1,0,0,0,9,0,0,0,0,2,141,17,0,0,1,0,0,0,0,0,6423,1,0,779,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,179,0,20,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2887,88,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,53,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,50,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,2,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,62,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1252,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,536,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,92,2,0,0,91,0,176,0,0,0,32,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,228,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,35,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,150,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,115,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,115,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,9,34,0,0,0,0,1,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,51,3,0,0,68,0,63,0,0,0,37,3,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,30,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,68,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1384,9,58,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,572,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,39,0,0,0,0,3,23,6,101,0,0,0,0,1,0,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,125,0,118,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,230,0,0,827,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,189,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,298,14,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,5,0,0,74,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,38,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,6,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,121,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,136,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,72,0,90,0,0,0,41,1,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +2362,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,4,0,1,0,0,4,0,0,0,0,0,124,0,0,0,0,0,1,0,0,0,0,0,1,0,0,5815,10,68,0,1,0,0,0,0,0,22,0,0,0,0,0,1,9,1238,0,0,0,0,0,0,0,0,14,0,8,0,0,2,0,15,0,0,0,0,914,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,100,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,2362,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,771,0,57,0,0,0,0,3,26,7,812,0,0,0,0,1,0,0,0,0,0,0,0,0,8863,0,0,0,0,0,0,0,0,0,0,0,0,4,0,100,0,0,0,0,0,0,8,3,93,2,0,0,104,0,205,0,0,0,37,5,0,0,0,0,0,1,180,0,0,42,1,0,0,0,2,0,0,0,0,0,90,23,0,0,0,0,0,0,0,0,347,0,0,1988,0,0,1,1,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,193,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,208,0,1,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,89,0,0,0,0,0,0,0,4,717,32,3 +4,0,0,5,0,35,13,0,43,0,4,0,0,2,7,0,770,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,4341,35,6070,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,264,0,0,0,0,0,1,0,0,0,0,0,2,0,0,110847,35,850,0,1,0,0,0,0,0,24,0,0,0,0,0,8,18,19460,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,820,0,0,0,0,3557,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,15722,0,63,0,0,0,0,3,277,1211,15711,0,0,0,0,1,0,3,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,310,5,0,0,250,0,807,0,0,0,96,15,0,0,0,0,0,0,0,0,0,845,1,0,0,0,9,0,0,0,0,0,129,15,0,0,1,0,0,0,0,0,13919,1,0,789,12,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,12,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,171,0,2,12,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2841,87,3 +0,0,0,2,0,9,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,1,0,0,308,9,30,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,37,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,6,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,27,0,0,0,0,3,23,5,52,0,0,0,0,1,0,0,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,71,2,0,0,103,0,124,0,0,0,51,1,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,41,0,0,0,0,0,0,0,0,34,0,0,51,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,121,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,67,13,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,219,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,120,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,31,0,0,0,2,4,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,90,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,606,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,9,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,50,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,2,0,9,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,279,9,30,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,33,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,6,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,38,0,27,0,0,0,0,3,23,5,50,0,0,0,0,1,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,72,2,0,0,103,0,125,0,0,0,51,0,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,41,0,0,0,0,0,0,0,0,32,0,0,41,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,63,13,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1230,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,543,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,67,2,0,0,79,0,161,0,0,0,25,5,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,259,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,101,3 +0,0,0,3,0,26,4,0,20,0,2,0,0,2,2,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,1,0,26,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,1,140,0,0,0,0,0,1,0,0,0,0,0,2,0,0,596,26,52,0,1,0,0,0,0,0,12,0,0,0,0,0,7,14,98,0,0,1,0,0,0,0,0,73,5,3,0,0,2,0,28,0,0,0,0,428,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,77,0,45,0,0,0,0,3,184,10,80,0,0,0,0,1,0,3,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,121,3,0,0,135,0,168,0,0,0,32,1,0,0,0,0,0,0,0,0,0,53,1,0,0,0,8,0,0,0,0,0,107,21,0,0,0,0,0,0,0,0,67,0,0,35,2,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,0,0,0,0,0,1,27,181,0,2,8,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,143,29,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,30,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,252,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,108,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,26,3 +10,0,0,5,0,41,21,0,50,0,4,0,0,2,14,0,962,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,162,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,438,0,0,0,0,0,1,0,0,0,0,0,2,0,0,166046,41,1089,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,28534,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,1097,0,0,0,0,5085,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,12,12,12,0,0,0,24150,0,58,0,0,0,8,19,291,1616,24140,0,0,0,0,1,0,3,0,0,0,0,0,0,806,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,313,5,0,0,300,0,479,0,0,0,138,24,0,0,0,0,0,0,0,0,0,1059,1,0,0,0,9,0,0,0,0,2,150,19,0,0,1,0,0,0,0,0,7312,1,0,1066,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,198,0,19,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3218,113,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +16,0,0,6,0,39,17,0,46,6,5,0,0,2,12,0,834,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4946,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,367,0,0,0,0,0,1,0,0,0,0,0,10,0,0,145243,39,947,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,25235,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,940,0,7,0,0,3433,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,21353,0,53,0,0,0,8,20,282,1260,21343,0,0,0,0,1,0,3,0,0,0,0,0,0,378,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,290,6,0,0,277,0,387,0,0,0,116,17,0,0,0,0,0,0,0,0,0,922,1,0,0,0,9,0,0,0,0,1,141,17,0,0,1,0,0,0,0,0,4921,1,0,780,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,198,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2025,122,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1276,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,496,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,87,0,39,0,0,0,0,3,23,6,97,0,0,0,0,1,0,0,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,120,0,0,0,65,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,226,0,0,811,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,200,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,289,14,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,66,0,0,0,0,0,1,0,0,0,0,0,2,0,0,474,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,66,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,476,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1057,3,0,0,1050,0,302,0,0,0,14,7,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1069,9,0,0,0,0,0,0,0,0,96,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,30,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,5,0,0,86,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,25,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,54,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,7,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,111,10,24,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,15,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,47,3,0,0,58,0,77,0,0,0,28,8,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,22,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,14,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +13,0,0,5,0,38,36,0,46,0,4,0,0,2,13,0,952,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,2,10036,38,56,0,0,22,0,1,0,1,0,0,2,0,0,0,0,1,514,0,0,0,0,0,1,0,0,0,0,0,2,0,0,191940,38,1114,0,4,0,0,0,0,0,56,0,0,0,0,0,8,19,38776,0,0,2,0,0,0,0,0,91,5,4,1,0,2,0,1071,0,0,0,0,6422,0,0,0,0,5,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,36485,0,51,0,0,0,0,3,314,1351,36469,0,0,0,0,1,0,4,0,0,0,0,0,0,1568,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,377,5,0,0,361,0,464,0,0,0,196,41,0,0,0,0,0,0,0,0,0,1059,1,0,0,0,9,0,0,0,0,1,172,29,0,0,1,0,0,0,0,0,9116,1,0,808,26,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,26,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,3,0,0,0,0,1,40,270,0,5,12,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2759,83,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,764,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,343,0,0,0,0,0,1,0,0,0,0,0,10,0,0,130917,39,876,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,22822,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,871,0,7,0,0,3357,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18896,0,50,0,0,0,8,20,280,1258,18886,0,0,0,0,1,0,3,0,0,0,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,279,6,0,0,274,0,409,0,0,0,113,18,0,0,0,0,0,0,0,0,0,850,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4864,1,0,792,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,20,0,0,0,2,1,43,212,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2047,135,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,74,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1370,9,58,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,527,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,38,0,0,0,0,3,23,6,102,0,0,0,0,1,0,0,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,125,0,120,0,0,0,65,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,230,0,0,835,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,199,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,294,15,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,6,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,68,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1360,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,544,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,39,0,0,0,0,3,23,6,101,0,0,0,0,1,0,0,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,116,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,230,0,0,827,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,193,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,294,13,3 +2,0,0,3,0,9,2,0,24,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,2,0,0,930,9,48,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,453,0,0,1,0,0,0,0,0,8,0,1,0,0,2,0,21,0,0,0,0,116,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,33,0,24,0,0,0,0,3,23,4,45,0,0,0,0,1,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,84,4,0,0,106,0,116,0,0,0,46,2,0,0,0,0,0,0,0,0,0,51,1,0,0,0,2,0,0,0,0,0,92,29,0,0,0,0,0,0,0,0,781,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,158,0,1,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,225,16,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,82,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,54,3,0,0,58,0,58,0,0,0,28,8,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,57,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1321,11,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,522,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,43,0,0,0,0,3,31,6,102,0,0,0,0,1,0,0,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,84,2,0,0,130,0,119,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,93,49,0,0,0,0,0,0,0,0,228,0,0,819,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,192,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,299,16,3 +5,0,0,3,0,12,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,36,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,5,0,0,321,12,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,192,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,38,0,0,0,0,3,27,7,60,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,93,3,0,0,101,0,200,0,0,0,40,9,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,95,20,0,0,0,0,0,0,0,0,79,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,145,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,12,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,2,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,32,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,265,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,102,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,64,26,3 +16,0,0,6,0,37,17,0,42,6,5,0,0,2,12,0,674,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,3,4946,37,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,356,0,0,0,0,0,1,0,0,0,0,0,10,0,0,130220,37,782,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,22781,0,0,3,0,0,0,0,0,92,5,2,0,0,2,0,779,0,7,0,0,3360,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,18877,0,51,0,0,0,8,20,272,1256,18868,0,0,0,0,1,0,3,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,270,6,0,0,271,0,395,0,0,0,113,20,0,0,0,0,0,0,0,0,0,758,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4664,1,0,780,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,20,0,0,0,2,1,40,202,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2067,129,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,8,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,30,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,262,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,107,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,29,3 +16,0,0,6,0,40,17,0,47,6,5,0,0,2,12,0,892,0,6,2,0,0,0,7,0,11,9,0,8,0,4,0,0,0,4,4946,40,166,0,0,39,0,0,0,1,0,0,1,0,0,0,0,5,339,0,0,0,0,0,1,0,0,0,0,0,10,0,0,114397,40,1007,0,9,0,0,0,0,0,28,0,0,0,0,0,8,17,19053,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,999,0,7,0,0,2090,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,18062,0,48,0,0,0,8,20,288,449,18051,0,0,0,0,1,0,3,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,295,6,0,0,277,0,539,0,0,0,113,26,0,0,0,0,0,0,0,0,0,981,1,0,0,0,9,0,0,0,0,1,140,17,0,0,1,0,0,0,0,0,3368,1,0,61,14,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,14,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,20,0,0,0,2,1,44,238,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,648,144,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,214,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,129,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,91,0,0,0,33,7,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1352,9,58,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,534,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,39,0,0,0,0,3,23,6,101,0,0,0,0,1,0,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,125,0,119,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,229,0,0,827,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,192,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,294,13,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,6,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,474,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,68,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,524,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1024,3,0,0,1017,0,300,0,0,0,14,10,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1036,9,0,0,0,0,0,0,0,0,101,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,29,3 +10,0,0,5,0,43,21,0,47,0,4,0,0,2,14,0,897,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,43,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,375,0,0,0,0,0,1,0,0,0,0,0,2,0,0,135689,43,1021,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,22884,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,1032,0,0,0,0,6343,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,18861,0,54,0,0,0,8,19,301,1633,18850,0,0,0,0,1,0,3,0,0,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,316,5,0,0,304,0,418,0,0,0,140,23,0,0,0,0,0,0,0,0,0,991,1,0,0,0,9,0,0,0,0,2,151,19,0,0,1,0,0,0,0,0,6890,1,0,1145,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,11,0,0,0,0,1,49,225,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3118,103,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1226,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,549,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,31,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,88,0,154,0,0,0,25,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,270,149,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,352,0,0,0,0,0,1,0,0,0,0,0,10,0,0,133223,39,875,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,23372,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,870,0,7,0,0,3517,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19352,0,51,0,0,0,8,20,281,1258,19342,0,0,0,0,1,0,3,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,278,6,0,0,275,0,388,0,0,0,113,18,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4877,1,0,796,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,20,0,0,0,2,1,43,194,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2069,139,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1287,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,504,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,39,0,0,0,0,3,23,6,98,0,0,0,0,1,0,0,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,119,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,227,0,0,815,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,189,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,286,16,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,9,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +1,0,0,6,0,35,7,0,34,0,5,0,0,7,6,0,521,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,184,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18937,35,588,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4285,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,580,0,0,1,0,2895,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,812,0,46,0,0,0,1,4,263,1158,797,0,0,0,0,1,0,3,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,188,6,0,0,203,0,271,0,0,0,57,9,0,0,0,0,0,0,0,0,0,586,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3174,1,0,844,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,111,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1878,77,3 +3546,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,112,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1875,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,622,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3546,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,175,0,67,0,0,0,0,3,27,9,174,0,0,0,0,1,0,0,0,0,0,0,0,0,9878,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,96,2,0,0,128,0,241,0,0,0,61,7,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,262,0,0,957,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,276,0,1,0,0,2,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,391,48,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,53,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,7,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +10,0,0,5,0,41,17,0,44,0,4,0,0,2,14,0,783,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5024,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,361,0,0,0,0,0,1,0,0,0,0,0,2,0,0,127402,41,894,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,22154,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,911,0,0,0,0,3531,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18404,0,54,0,0,0,8,19,286,1258,18394,0,0,0,0,1,0,3,0,0,0,0,0,0,364,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,298,5,0,0,281,0,398,0,0,0,119,18,0,0,0,0,0,0,0,0,0,870,1,0,0,0,9,0,0,0,0,2,141,17,0,0,1,0,0,0,0,0,6406,1,0,787,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,14,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,208,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2871,175,3 +16,0,0,6,0,40,15,0,42,6,5,0,0,2,12,0,708,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4923,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,353,0,0,0,0,0,1,0,0,0,0,0,10,0,0,128877,40,813,0,9,0,0,0,0,0,26,0,0,0,0,0,8,18,22532,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,812,0,7,0,0,3327,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,18745,0,54,0,0,0,8,20,283,1237,18735,0,0,0,0,1,0,3,0,0,0,0,0,0,338,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,286,6,0,0,274,0,389,0,0,0,110,17,0,0,0,0,0,0,0,0,0,790,1,0,0,0,9,0,0,0,0,1,140,16,0,0,1,0,0,0,0,0,4609,1,0,763,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,13,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,19,0,0,0,0,1,44,199,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1989,143,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,64,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,57,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,65,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,53,0,0,0,28,6,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +10,0,0,5,0,44,21,0,47,0,4,0,0,2,14,0,919,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,44,166,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,401,0,0,0,0,0,1,0,0,0,0,0,2,0,0,139223,44,1044,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,23778,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,1055,0,0,0,0,5612,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,19484,0,56,0,0,0,8,17,305,1648,19473,0,0,0,0,1,0,3,0,0,0,0,0,0,935,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,319,5,0,0,306,0,518,0,0,0,138,32,0,0,0,0,0,0,0,0,0,1013,1,0,0,0,9,0,0,0,0,2,151,19,0,0,1,0,0,0,0,0,7248,1,0,1141,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,12,0,0,0,2,1,50,204,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3257,175,3 +6,0,0,6,0,39,8,0,41,4,5,0,0,2,9,0,501,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,7,898,39,44,0,0,39,0,3,0,1,0,0,3,0,0,0,0,4,166,1,0,0,0,0,1,0,0,0,0,0,9,0,0,30156,39,592,0,7,0,0,0,0,0,22,0,0,0,0,0,8,20,6295,0,0,7,0,0,0,0,0,94,5,5,0,0,2,0,579,0,6,0,0,2829,0,0,0,0,24,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,2711,0,74,0,0,0,6,19,245,1134,2706,0,0,0,0,1,0,4,0,0,0,0,0,0,468,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,19,238,6,0,0,237,0,410,0,0,0,88,19,0,0,0,0,0,0,0,0,0,572,1,0,0,0,9,0,0,0,0,1,123,25,0,0,1,0,0,0,0,0,3179,1,0,844,5,0,1,1,1,0,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,5,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,16,0,0,0,0,1,46,161,0,17,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1867,189,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,897,8,32,0,0,0,0,0,0,0,6,0,0,0,0,0,1,6,461,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,19,0,0,0,0,3,22,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,62,2,0,0,73,0,70,0,0,0,21,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,14,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,63,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,221,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,62,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,30,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,79,2,0,0,94,0,262,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,107,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,27,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,122,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,134,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,71,0,90,0,0,0,41,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,28,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,35,3 +7,0,0,5,0,40,21,0,44,0,4,0,0,2,12,0,730,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5870,40,52,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,431,0,0,0,0,0,1,0,0,0,0,0,2,0,0,137441,40,848,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23464,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,861,0,0,0,0,5661,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19164,0,54,0,0,0,8,16,282,1630,19157,0,0,0,0,1,0,3,0,0,0,0,0,0,914,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,336,5,0,0,290,0,499,0,0,0,134,23,0,0,0,0,0,0,0,0,0,819,1,0,0,0,9,0,0,0,0,2,142,19,0,0,1,0,0,0,0,0,6768,1,0,1134,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,364,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,9,0,0,0,0,1,46,193,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3064,143,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1210,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,538,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,88,0,154,0,0,0,25,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,264,149,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,764,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4946,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,336,0,0,0,0,0,1,0,0,0,0,0,10,0,0,145332,39,873,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,25294,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,868,0,7,0,0,3473,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,21351,0,51,0,0,0,8,20,281,1256,21341,0,0,0,0,1,0,3,0,0,0,0,0,0,362,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,290,6,0,0,274,0,393,0,0,0,113,14,0,0,0,0,0,0,0,0,0,850,1,0,0,0,9,0,0,0,0,1,138,17,0,0,1,0,0,0,0,0,4878,1,0,784,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,203,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2023,123,3 +4,0,0,3,0,26,5,0,15,0,2,0,0,2,2,0,19,0,6,2,0,0,0,6,0,8,0,0,3,0,2,0,0,0,2,0,26,6,0,0,22,0,1,0,1,0,0,2,0,0,0,0,2,81,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1501,26,49,0,3,0,0,0,0,0,11,0,0,0,0,1,7,19,605,0,0,2,0,0,0,0,0,77,5,3,0,0,2,0,25,0,0,0,0,507,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,88,0,39,0,0,0,2,4,178,16,83,0,0,0,0,1,0,3,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,10,124,3,0,0,128,0,229,0,0,0,35,5,0,0,0,0,0,0,0,0,0,51,1,0,0,0,8,0,0,0,0,1,108,20,0,0,0,0,0,0,0,0,837,0,0,739,3,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,3,0,0,0,0,1,28,88,0,4,9,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,313,47,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,65,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,53,0,0,0,28,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,3,3 +1,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,173,11,37,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,35,0,0,0,0,3,30,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,77,2,0,0,112,0,247,0,0,0,41,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,93,37,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,132,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,69,23,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,53,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,5,0,0,126,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,20,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,131,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,31,0,0,0,2,3,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,51,3,0,0,61,0,68,0,0,0,31,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,24,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,8,3 +5,0,0,3,0,14,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,14,36,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,5,0,0,317,14,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,58,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,221,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,50,0,40,0,0,0,0,3,35,7,62,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,101,3,0,0,109,0,203,0,0,0,42,8,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,99,20,0,0,0,0,0,0,0,0,80,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,18,134,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,97,12,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,6,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,78,0,0,0,0,0,1,0,0,0,0,0,1,0,0,247,8,46,0,1,0,0,0,0,0,10,0,0,0,0,0,1,4,44,0,0,0,0,0,0,0,0,9,0,3,0,0,2,0,15,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,41,0,0,0,0,3,22,5,61,0,0,0,0,1,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,76,2,0,0,89,0,94,0,0,0,28,2,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,89,20,0,0,0,0,0,0,0,0,33,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,152,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,94,14,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1244,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,538,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,94,2,0,0,91,0,175,0,0,0,32,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,35,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,150,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,92,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,103,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,32,0,0,0,2,3,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,46,3,0,0,57,0,88,0,0,0,27,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,10,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1020,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,484,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,20,0,0,0,0,3,23,4,51,0,0,0,0,1,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,63,2,0,0,82,0,99,0,0,0,28,1,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,91,19,0,0,0,0,0,0,0,0,211,0,0,764,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,91,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,231,6,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,91,0,275,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,107,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,5,0,0,72,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,38,3,0,0,58,0,56,0,0,0,28,7,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,6,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,5367,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,78,0,0,0,0,0,1,0,0,0,0,0,2,0,0,471,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,63,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,520,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,36,10,1064,3,0,0,1050,0,285,0,0,0,14,8,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1069,9,0,0,0,0,0,0,0,0,5427,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,30,3 +0,0,0,7,0,45,22,0,52,2,14,0,0,7,9,0,899,0,7,1,0,0,0,8,0,10,12,0,16,0,5,3,0,0,4,4255,45,6,0,0,58,0,2,0,1,0,0,14,0,0,0,0,8,303,0,0,0,0,0,1,0,0,0,0,0,4,0,0,44149,45,1122,0,21,0,0,0,0,0,68,0,0,0,0,0,8,76,11846,0,0,4,0,0,0,0,0,288,25,22,0,0,2,0,1044,0,1,37,0,7418,0,0,0,0,0,0,2,0,5,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,5328,0,113,0,0,0,18,28,528,1684,5289,0,0,0,0,1,0,4,0,0,0,0,0,0,4355,0,0,0,0,0,0,0,0,0,0,0,0,14,1,0,0,0,0,0,1,0,106,23,331,7,0,0,451,0,414,0,0,0,279,41,0,0,0,0,0,0,0,0,0,1010,1,0,0,0,9,0,0,0,0,2,136,165,0,0,62,0,0,0,0,0,9957,1,0,5159,16,0,1,1,1,0,0,0,19,0,0,0,12,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,370,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,43,0,0,0,0,1,49,541,0,34,12,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10302,109,3 +4,0,0,4,0,11,23,0,119,0,30,0,0,0,3,0,17,0,7,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,1,0,11,6,0,0,222,0,0,0,1,0,0,2,0,0,0,0,0,81,0,0,0,0,0,1,0,0,0,0,0,25,0,0,1380,11,201,0,3,0,0,0,0,0,9,0,0,0,0,0,1,4,707,0,0,1,0,0,2,111,0,856,30,3,0,0,2,0,560,0,1,0,0,120,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,390,0,32,0,0,0,0,3,29,745,403,0,0,0,0,1,0,0,0,0,0,0,0,0,288,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,4,75,4,0,0,115,0,189,0,0,0,57,3,0,0,0,0,0,0,0,0,0,199,1,0,0,0,2,0,0,0,0,1,93,298,0,0,60,0,0,0,0,0,622,0,0,66,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,12,115,0,3,0,0,0,0,0,0,295,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,12,3 +0,0,0,2,0,18,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,4,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1482,18,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,93,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,615,0,0,0,0,0,19,41,233,0,0,0,0,0,0,0,0,0,0,0,0,0,1667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,27,2,0,0,63,0,93,0,0,0,48,3,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,5,45,0,0,0,0,0,0,0,0,324,0,0,392,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,4,115,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1412,6,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,233,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,136,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,58,3,0,0,74,0,63,0,0,0,43,8,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,36,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,72,0,0,0,0,0,1,0,0,0,0,0,2,0,0,482,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,65,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,590,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,98,3,0,0,83,0,282,0,0,0,13,10,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,96,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,27,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,1,0,0,425,13,35,0,4,0,0,0,0,0,6,0,0,0,0,0,1,3,99,0,0,2,0,0,0,0,0,10,0,1,0,0,2,0,11,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,85,0,39,0,0,0,0,3,27,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,85,2,0,0,91,0,168,0,0,0,28,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,48,0,0,72,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,34,0,4,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,104,153,3 +3,0,0,4,0,28,4,0,11,0,2,0,0,2,2,1,110,0,6,5,0,0,0,4,0,9,0,0,5,0,2,0,0,0,2,0,28,6,4,0,23,0,0,0,1,0,0,0,0,0,0,0,4,96,0,0,0,0,0,1,0,0,0,0,0,2,0,0,481,28,129,0,7,0,0,0,0,0,2,0,0,0,0,0,7,11,65,0,0,2,0,0,0,0,0,80,5,0,0,0,2,0,54,0,0,0,0,419,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,57,0,50,0,0,0,6,8,198,37,48,0,0,0,0,1,0,5,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,36,10,85,4,0,0,91,0,215,0,0,0,15,14,0,0,0,0,0,0,0,0,0,138,0,0,0,0,9,0,0,0,0,2,110,8,0,0,0,0,0,0,0,0,559,0,0,2,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,0,0,1,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,9,0,0,0,2,19,30,22,0,8,8,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,19,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1187,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,513,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,90,0,156,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,149,3 +10,0,0,5,0,41,17,0,44,0,4,0,0,2,14,0,783,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5022,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,362,0,0,0,0,0,1,0,0,0,0,0,2,0,0,124815,41,896,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,21798,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,913,0,0,0,0,3501,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18012,0,53,0,0,0,8,19,286,1260,18002,0,0,0,0,1,0,3,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,296,5,0,0,283,0,412,0,0,0,121,26,0,0,0,0,0,0,0,0,0,870,1,0,0,0,9,0,0,0,0,2,143,17,0,0,1,0,0,0,0,0,6397,1,0,799,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,197,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2872,80,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,53,0,0,0,28,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +5,0,0,4,0,37,13,0,35,0,3,0,0,2,3,0,651,0,6,2,0,0,0,8,0,12,2,0,5,0,2,0,0,0,4,2507,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,257,0,0,0,0,0,1,0,0,0,0,0,4,0,0,80577,37,739,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,14442,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,689,0,1,0,0,3189,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,10812,0,45,0,0,0,2,7,266,1185,10788,0,0,0,0,1,0,3,0,0,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,235,4,0,0,278,0,374,0,0,0,126,8,0,0,0,0,0,0,0,0,0,713,1,0,0,0,10,0,0,0,0,1,130,36,0,0,0,0,0,0,0,0,4092,1,0,1375,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1884,40,3 +0,0,0,4,0,28,4,0,20,0,3,0,0,2,3,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,3,0,28,6,0,0,25,0,0,0,1,0,0,2,0,0,0,0,1,147,0,0,0,0,0,1,0,0,0,0,0,4,0,0,627,28,53,0,1,0,0,0,0,0,12,0,0,0,0,0,7,14,111,0,0,3,0,0,0,0,0,73,5,3,0,0,2,0,30,0,1,0,0,413,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,84,0,57,0,0,0,0,3,183,13,93,0,0,0,0,1,0,3,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,11,123,4,0,0,141,0,232,0,0,0,37,3,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,0,109,20,0,0,0,0,0,0,0,0,73,0,0,39,2,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,0,0,0,0,0,1,31,184,0,2,8,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,171,28,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,6,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1264,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,563,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,28,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,92,0,175,0,0,0,28,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,17,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,34,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,258,154,3 +11,0,0,5,0,59,6,0,40,1,5,0,0,6,4,0,659,0,6,1,0,0,0,8,0,10,0,0,15,0,17,0,0,0,25,898,59,6,0,0,43,0,1,0,1,0,0,1,0,0,0,0,17,176,0,0,0,0,0,1,0,0,0,0,0,2,0,0,17862,59,748,0,29,0,0,0,0,0,14,0,0,0,0,0,8,18,4275,0,0,25,0,0,0,0,0,197,20,2,0,0,2,0,726,0,0,1,0,3486,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,9,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,40,12,12,12,0,0,0,608,0,77,0,0,0,32,19,285,1225,601,0,0,0,0,1,0,3,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,86,19,317,5,0,0,267,0,355,0,0,0,121,18,0,0,0,0,0,0,0,0,0,726,1,0,0,0,9,0,0,0,0,1,142,8,0,0,6,0,0,0,0,0,4080,1,0,794,6,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,6,377,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,44,0,0,0,0,1,84,136,0,30,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1932,107,3 +3,0,0,2,0,11,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,11,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1225,11,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,532,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,93,0,27,0,0,0,6,15,28,21,108,0,0,0,0,1,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,73,2,0,0,82,0,161,0,0,0,25,2,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,91,15,0,0,0,0,0,0,0,0,257,0,0,798,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,6,0,0,0,0,1,13,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,101,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,260,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1239,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,533,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,29,0,0,0,0,3,31,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,93,2,0,0,94,0,183,0,0,0,31,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,16,0,0,0,0,0,0,0,0,226,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,17,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,150,3 +7,0,0,5,0,42,21,0,45,0,4,0,0,2,12,0,902,0,6,2,0,0,0,7,0,10,0,0,8,0,2,0,0,0,6,5868,42,44,0,0,22,0,0,0,1,0,0,1,0,0,0,0,2,409,0,0,0,0,0,1,0,0,0,0,0,2,0,0,331348,42,1011,0,7,0,0,0,0,0,32,0,0,0,0,0,8,17,85499,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,993,0,0,0,0,3719,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,84114,0,52,0,0,0,2,5,293,798,84106,0,0,0,0,1,0,3,0,0,0,0,0,0,804,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,354,5,0,0,303,0,443,0,0,0,140,33,0,0,0,0,0,0,0,0,0,992,1,0,0,0,9,0,0,0,0,2,151,19,0,0,1,0,0,0,0,0,8089,1,0,378,16,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,16,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,7,0,0,0,2,1,48,228,0,8,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2207,86,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,121,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1778,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,603,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,169,0,69,0,0,0,0,3,27,9,168,0,0,0,0,1,0,0,0,0,0,0,0,0,9776,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,103,2,0,0,130,0,251,0,0,0,63,6,0,0,0,0,0,1,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,255,0,0,929,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,281,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,381,47,3 +1,0,0,6,0,35,7,0,34,0,5,0,0,7,6,0,521,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,172,0,0,0,0,0,1,0,0,0,0,0,5,0,0,19249,35,588,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4433,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,580,0,0,1,0,2932,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,741,0,47,0,0,0,1,4,260,1159,727,0,0,0,0,1,0,3,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,192,6,0,0,204,0,271,0,0,0,58,9,0,0,0,0,0,0,0,0,0,586,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3322,1,0,817,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,104,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1916,70,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1076,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,496,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,123,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,24,0,0,0,0,3,24,6,53,0,0,0,0,1,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,70,3,0,0,80,0,155,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,251,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,105,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,166,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,12,2,0,16,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,6,0,0,12,0,0,0,1,0,0,3,0,0,0,0,0,89,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1693,12,56,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,345,0,0,4,0,0,0,0,0,11,0,4,0,0,2,0,17,0,1,0,0,288,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,251,0,58,0,0,0,0,3,26,212,268,0,0,0,0,1,0,0,0,0,0,0,0,0,545,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,107,3,0,0,106,0,186,0,0,0,47,7,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,94,22,0,0,0,0,0,0,0,0,141,0,0,349,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,172,0,1,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,297,17,3 +3,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,192,10,27,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,127,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,27,0,0,0,2,4,25,7,39,0,0,0,0,1,0,0,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,55,3,0,0,58,0,95,0,0,0,28,3,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,20,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,59,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1043,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,463,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,110,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,23,0,0,0,0,3,24,6,53,0,0,0,0,1,0,0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,73,3,0,0,82,0,153,0,0,0,29,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,92,16,0,0,0,0,0,0,0,0,251,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,107,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,234,177,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,10,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,22,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,29,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,92,0,267,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,27,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,113,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,28,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1961,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,845,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,236,0,21,0,0,0,0,3,24,594,247,0,0,0,0,1,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,65,2,0,0,85,0,91,0,0,0,29,3,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,21,0,0,0,0,0,0,0,0,404,0,0,760,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,110,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,420,6,3 +12,0,0,2,0,19,2,0,9,0,2,0,0,0,2,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,9,0,3,0,9,0,19,6,0,0,21,0,2,0,1,0,0,3,0,0,0,0,8,102,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2952,19,52,0,9,0,0,0,0,0,12,0,0,0,0,0,1,7,910,0,0,9,0,0,0,0,0,11,0,3,0,0,2,0,14,0,0,0,0,436,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,300,0,70,0,0,0,16,9,43,227,319,0,0,0,0,1,0,0,0,0,0,0,0,0,625,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,3,158,2,0,0,110,0,215,0,0,0,53,13,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,1,101,15,0,0,0,0,0,0,0,0,1006,0,0,1161,0,0,1,0,1,0,0,0,5,0,5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,3,0,369,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,16,0,0,0,0,1,28,68,0,9,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,624,28,3 +7,0,0,5,0,41,22,0,44,0,4,0,0,2,12,0,839,0,6,1,0,0,0,8,0,10,0,0,8,0,2,0,0,0,6,5036,41,46,0,0,22,0,1,0,1,0,0,1,0,0,0,0,2,364,0,0,0,0,0,1,0,0,0,0,0,2,0,0,140067,41,959,0,7,0,0,0,0,0,38,0,0,0,0,0,8,18,23985,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,936,0,0,0,0,5434,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19499,0,55,0,0,0,2,5,296,1726,19492,0,0,0,0,1,0,3,0,0,0,0,0,0,855,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,315,5,0,0,297,0,448,0,0,0,137,30,0,0,0,0,0,0,0,0,0,929,1,0,0,0,9,0,0,0,0,2,142,22,0,0,1,0,0,0,0,0,9773,1,0,1088,19,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,19,363,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,7,0,0,0,2,1,47,183,0,8,12,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3651,165,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,5,0,0,76,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,38,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,6,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1226,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,551,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,156,0,0,0,27,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,2,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,63,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,4,0,27,4,0,20,0,3,0,0,2,3,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,3,0,27,6,0,0,25,0,0,0,1,0,0,2,0,0,0,0,1,144,0,0,0,0,0,1,0,0,0,0,0,4,0,0,590,27,53,0,1,0,0,0,0,0,12,0,0,0,0,0,7,14,93,0,0,3,0,0,0,0,0,73,5,3,0,0,2,0,30,0,1,0,0,506,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,82,0,56,0,0,0,0,3,179,13,91,0,0,0,0,1,0,3,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,11,118,4,0,0,138,0,231,0,0,0,37,3,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,0,108,20,0,0,0,0,0,0,0,0,59,0,0,35,2,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,0,0,1,30,177,0,2,8,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,156,28,3 +10,0,0,5,0,41,21,0,50,0,4,0,0,2,14,0,961,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,451,0,0,0,0,0,1,0,0,0,0,0,2,0,0,160912,41,1091,0,11,0,0,0,0,0,32,0,0,0,0,0,8,18,27377,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,1099,0,0,0,0,5152,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,12,12,12,0,0,0,23192,0,53,0,0,0,8,17,290,1623,23182,0,0,0,0,1,0,3,0,0,0,0,0,0,854,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,312,5,0,0,303,0,413,0,0,0,145,28,0,0,0,0,0,0,0,0,0,1058,1,0,0,0,9,0,0,0,0,2,152,19,0,0,1,0,0,0,0,0,7260,1,0,1083,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,213,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3215,144,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,82,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,54,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,55,0,0,0,28,8,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1028,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,475,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,96,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,22,0,0,0,0,3,24,6,51,0,0,0,0,1,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,69,3,0,0,80,0,151,0,0,0,27,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,249,0,0,764,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,105,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,230,62,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,120,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,85,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,74,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1384,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,558,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,38,0,0,0,0,3,23,6,101,0,0,0,0,1,0,0,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,120,0,0,0,65,6,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,229,0,0,827,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,199,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,291,15,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,995,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,475,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,37,0,22,0,0,0,0,3,24,6,48,0,0,0,0,1,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,67,3,0,0,80,0,150,0,0,0,27,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,246,0,0,752,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,108,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,226,64,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,265,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,108,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +7,0,0,5,0,36,21,0,43,0,4,0,0,2,9,0,802,0,6,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5868,36,44,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,396,0,0,0,0,0,1,0,0,0,0,0,2,0,0,144264,36,902,0,2,0,0,0,0,0,32,0,0,0,0,0,8,18,24731,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,878,0,0,0,0,5464,0,0,0,0,3,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,20379,0,43,0,0,0,0,3,288,1616,20363,0,0,0,0,1,0,3,0,0,0,0,0,0,857,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,304,5,0,0,280,0,432,0,0,0,121,24,0,0,0,0,0,0,0,0,0,887,1,0,0,0,9,0,0,0,0,1,141,19,0,0,1,0,0,0,0,0,7691,1,0,1131,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,1,0,0,0,0,1,37,231,0,3,12,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2867,65,3 +7,0,0,5,0,36,21,0,44,0,4,0,0,2,9,0,838,0,6,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5870,36,44,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,405,0,0,0,0,0,1,0,0,0,0,0,2,0,0,158890,36,939,0,2,0,0,0,0,0,32,0,0,0,0,0,8,18,26994,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,914,0,0,0,0,5053,0,0,0,0,3,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,22938,0,42,0,0,0,0,3,288,1623,22922,0,0,0,0,1,0,3,0,0,0,0,0,0,849,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,305,5,0,0,284,0,433,0,0,0,126,30,0,0,0,0,0,0,0,0,0,924,1,0,0,0,9,0,0,0,0,1,145,19,0,0,1,0,0,0,0,0,7573,1,0,1130,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,1,0,0,0,0,1,37,229,0,3,12,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2794,60,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,231,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,245,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,55,3,0,0,74,0,68,0,0,0,43,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,36,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,2,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +2,0,0,2,0,17,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,17,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,57,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2128,17,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,856,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,251,0,32,0,0,0,8,19,37,614,260,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,89,2,0,0,116,0,176,0,0,0,45,17,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,97,31,0,0,0,0,0,0,0,0,449,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,4,0,0,0,0,1,20,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,439,8,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,96,10,24,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,13,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,43,3,0,0,58,0,77,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,20,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,15,3 +0,0,0,3,0,11,2,0,18,0,2,0,0,0,11,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,4,0,2,0,11,6,0,0,16,0,2,0,1,0,0,2,0,0,0,0,0,81,0,0,0,0,0,1,0,0,0,0,0,11,0,0,1099,11,55,0,1,0,0,0,0,0,12,0,0,0,0,0,1,7,491,0,0,2,0,0,0,0,0,10,0,4,0,0,2,0,29,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,68,0,36,0,0,0,0,3,30,19,78,0,0,0,0,1,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,80,3,0,0,95,0,112,0,0,0,31,1,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,0,93,15,0,0,0,0,0,0,0,0,218,0,0,774,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,4,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,115,0,1,0,0,1,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,293,9,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,86,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,87,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,3,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,47,3,0,0,57,0,87,0,0,0,27,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,10,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,137,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2110,10,84,0,1,0,0,0,0,0,30,0,0,0,0,0,1,12,705,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,335,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,222,0,91,0,0,0,0,3,27,9,220,0,0,0,0,1,0,0,0,0,0,0,0,0,10187,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,123,2,0,0,129,0,258,0,0,0,62,13,0,0,0,0,0,45,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,280,0,0,939,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,448,52,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,64,0,0,0,0,0,1,0,0,0,0,0,2,0,0,549,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,62,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,511,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,55,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,169,3,0,0,83,0,353,0,0,0,13,9,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,95,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,58,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,3,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1149,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,494,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,51,0,29,0,0,0,0,3,25,72,69,0,0,0,0,1,0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,72,2,0,0,81,0,123,0,0,0,25,3,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,17,0,0,0,0,0,0,0,0,217,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,93,0,1,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,251,9,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,52,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,50,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,65,0,0,0,0,0,1,0,0,0,0,0,2,0,0,515,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,65,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,592,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,98,3,0,0,83,0,284,0,0,0,13,10,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,97,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,25,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,54,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,15,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,39,2,0,0,44,0,118,0,0,0,13,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,15,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,36,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,27,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,38,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,489,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,55,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,611,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,32,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,99,3,0,0,83,0,295,0,0,0,13,10,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,94,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,29,3 +0,0,0,3,0,10,2,0,15,5,3,0,0,0,8,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,10,6,0,0,18,0,0,0,1,0,0,3,0,0,0,0,0,155,0,0,0,0,0,1,0,0,0,0,0,8,0,0,2793,10,61,0,1,0,0,0,0,0,14,0,0,0,1,0,1,5,515,0,0,1,0,0,0,0,0,11,0,5,0,0,2,0,27,0,6,0,0,283,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,324,0,49,0,0,0,0,3,25,14,344,0,0,0,0,1,0,0,0,0,0,0,0,0,834,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,9,131,3,0,0,118,0,122,0,0,0,56,6,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,92,40,0,0,0,0,0,0,0,0,283,0,0,648,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,209,0,1,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,462,20,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,77,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,65,0,59,0,0,0,35,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1541,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,681,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,141,0,20,0,0,0,0,3,23,300,152,0,0,0,0,1,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,59,2,0,0,82,0,89,0,0,0,26,3,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,89,21,0,0,0,0,0,0,0,0,310,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,109,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,328,7,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,76,2,0,0,91,0,263,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,113,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,65,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +7,0,0,5,0,40,21,0,44,0,4,0,0,2,12,0,729,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5870,40,48,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,394,0,0,0,0,0,1,0,0,0,0,0,2,0,0,137004,40,847,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23311,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,860,0,0,0,0,5459,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19190,0,54,0,0,0,8,16,282,1637,19183,0,0,0,0,1,0,3,0,0,0,0,0,0,956,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,329,5,0,0,298,0,455,0,0,0,142,23,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,2,150,19,0,0,1,0,0,0,0,0,6627,1,0,1156,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,364,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,9,0,0,0,0,1,46,224,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3010,142,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,58,0,0,0,0,0,1,0,0,0,0,0,2,0,0,483,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,63,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,442,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,28,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1164,3,0,0,1153,0,290,0,0,0,14,9,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1172,9,0,0,0,0,0,0,0,0,93,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,30,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2152,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,852,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,428,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,251,0,30,0,0,0,8,19,29,615,260,0,0,0,0,1,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,81,2,0,0,110,0,177,0,0,0,45,8,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,451,0,0,778,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,437,8,3 +2,0,0,2,0,16,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,16,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2157,16,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,856,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,418,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,255,0,37,0,0,0,8,19,33,615,266,0,0,0,0,1,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,113,0,182,0,0,0,45,8,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,96,31,0,0,0,0,0,0,0,0,450,0,0,774,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,4,0,0,0,0,1,19,201,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,451,10,3 +0,0,0,3,0,8,2,0,9,0,2,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,32,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1064,8,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,462,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,20,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,23,0,0,0,0,3,22,6,53,0,0,0,0,1,0,0,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,3,77,3,0,0,75,0,190,0,0,0,22,5,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,15,0,0,0,0,0,0,0,0,251,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,102,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,51,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,30,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,263,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,26,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +10,0,0,5,0,41,21,0,50,0,4,0,0,2,14,0,963,0,6,2,0,0,0,7,0,11,9,0,7,0,4,0,0,0,6,5868,41,150,0,0,22,0,0,0,1,0,0,1,0,0,0,0,5,363,0,0,0,0,0,1,0,0,0,0,0,2,0,0,130812,41,1090,0,9,0,0,0,0,0,32,0,0,0,0,0,8,17,21482,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,1098,0,0,0,0,3530,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,12,12,12,0,0,0,20081,0,49,0,0,0,8,19,290,829,20071,0,0,0,0,1,0,3,0,0,0,0,0,0,864,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,290,5,0,0,295,0,413,0,0,0,135,21,0,0,0,0,0,0,0,0,0,1060,1,0,0,0,9,0,0,0,0,2,145,19,0,0,1,0,0,0,0,0,5543,1,0,384,16,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,16,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,212,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1815,88,3 +2,0,0,2,0,16,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,16,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2207,16,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,904,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,255,0,35,0,0,0,8,19,33,615,266,0,0,0,0,1,0,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,113,0,182,0,0,0,45,6,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,96,31,0,0,0,0,0,0,0,0,452,0,0,774,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,4,0,0,0,0,1,19,201,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,451,10,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1061,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,488,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,124,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,22,0,0,0,0,3,24,6,53,0,0,0,0,1,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,69,3,0,0,80,0,147,0,0,0,27,1,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,252,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,108,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,233,62,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,55,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,15,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,38,2,0,0,44,0,118,0,0,0,13,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,15,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,36,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,27,3 +0,0,0,3,0,34,9,0,31,0,2,0,0,2,2,0,580,0,6,2,0,0,0,8,0,11,0,0,4,0,1,0,0,0,2,900,34,6,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,233,0,0,0,0,0,1,0,0,0,0,0,2,0,0,44320,34,634,0,1,0,0,0,0,0,16,0,0,0,0,0,9,21,8473,0,0,2,0,0,0,0,0,93,5,2,0,0,2,0,594,0,0,0,0,2816,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,4913,0,34,0,0,0,0,3,248,1129,4899,0,0,0,0,1,0,3,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,182,3,0,0,200,0,195,0,0,0,55,6,0,0,0,0,0,0,0,0,0,632,1,0,0,0,10,0,0,0,0,0,117,9,0,0,0,0,0,0,0,0,3357,1,0,767,10,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,10,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,217,0,2,14,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1773,28,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,94,10,24,0,3,0,0,0,0,0,1,0,0,0,0,0,1,1,13,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,41,3,0,0,58,0,90,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,21,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,15,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,267,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +3549,0,0,2,0,12,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,12,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,146,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2135,12,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,688,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,235,0,95,0,0,0,0,3,35,9,232,0,0,0,0,1,0,0,0,0,0,0,0,0,9798,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,125,2,0,0,138,0,260,0,0,0,65,17,0,0,0,0,0,46,0,0,0,44,1,0,0,0,2,0,0,0,0,1,94,43,0,0,0,0,0,0,0,0,280,0,0,951,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,12,284,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,461,45,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,115,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,92,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,5,0,0,243,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,20,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,153,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,31,0,0,0,2,4,24,9,36,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,58,3,0,0,74,0,70,0,0,0,43,7,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,36,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,9,3 +0,0,0,3,0,8,2,0,9,0,2,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,32,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1041,8,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,472,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,20,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,21,0,0,0,0,3,22,6,50,0,0,0,0,1,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,3,73,3,0,0,75,0,190,0,0,0,22,5,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,15,0,0,0,0,0,0,0,0,248,0,0,760,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,102,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,229,50,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,60,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,3,3 +0,0,0,3,0,9,2,0,7,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,2,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,178,9,32,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,24,0,0,1,0,0,0,0,0,7,0,4,0,0,2,0,8,0,1,0,0,105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,16,0,0,0,0,3,23,4,39,0,0,0,0,1,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,68,3,0,0,87,0,86,0,0,0,34,2,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,92,23,0,0,0,0,0,0,0,0,28,0,0,31,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,9,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,7,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,5,0,0,61,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,5,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,37,3,0,0,58,0,53,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +12,0,0,5,0,38,36,0,50,0,4,0,0,2,13,0,1095,0,6,1,0,0,0,8,0,10,0,0,8,0,3,0,0,0,2,11299,38,56,0,0,22,0,1,0,1,0,0,2,0,0,0,0,3,413,0,0,0,0,0,1,0,0,0,0,0,2,0,0,175981,38,1265,0,8,0,0,0,0,0,56,0,0,0,0,0,8,19,34217,0,0,2,0,0,0,0,0,101,5,4,1,0,2,0,1218,0,0,0,0,6653,0,0,0,0,5,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,12,12,12,0,0,0,32029,0,52,0,0,0,4,7,314,1352,32013,0,0,0,0,1,0,4,0,0,0,0,0,0,1513,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,357,5,0,0,345,0,457,0,0,0,179,40,0,0,0,0,0,0,0,0,0,1206,1,0,0,0,9,0,0,0,0,3,158,29,0,0,1,0,0,0,0,0,9326,1,0,801,26,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,26,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,9,0,0,0,4,1,40,247,0,9,12,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2754,209,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,1,0,0,79,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,22,0,0,0,0,3,22,4,25,0,0,0,0,1,0,0,0,0,0,0,0,0,45,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,39,2,0,0,54,0,50,0,0,0,24,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,23,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,49,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,8,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,201,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,109,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,34,0,0,0,2,4,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,58,3,0,0,57,0,88,0,0,0,27,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,13,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2037,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,876,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,240,0,21,0,0,0,0,3,24,593,251,0,0,0,0,1,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,62,2,0,0,85,0,91,0,0,0,29,7,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,21,0,0,0,0,0,0,0,0,408,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,110,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,430,7,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,122,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,136,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,59,3,0,0,72,0,90,0,0,0,41,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,36,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +6,0,0,3,0,22,2,0,8,5,3,0,0,0,8,0,22,0,7,5,0,0,0,1,0,0,0,0,7,0,5,0,0,0,9,0,22,6,6,0,39,0,8,0,1,0,0,8,0,0,0,0,8,126,0,0,0,0,0,1,0,0,0,0,0,8,0,0,30457,22,100,0,12,0,0,0,0,0,29,0,0,0,1,0,1,10,7534,0,0,9,0,0,0,0,0,35,0,13,0,0,2,0,34,0,6,0,0,624,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4064,0,113,0,0,0,16,19,47,279,4087,0,0,0,0,1,0,0,0,0,0,0,0,0,3638,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,10,9,160,3,0,0,162,0,273,0,0,0,96,18,0,0,0,0,0,0,0,0,0,50,1,0,0,0,6,0,0,0,0,1,104,47,0,0,0,0,0,0,0,0,3030,0,0,9037,0,2,1,0,0,0,0,0,26,0,6,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,19,0,0,0,0,1,31,252,0,12,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3839,79,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,7,0,0,210,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,201,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,61,3,0,0,71,0,86,0,0,0,40,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,96,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,37,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,30,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,267,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,29,3 +10,0,0,5,0,38,17,0,43,0,4,0,0,2,13,0,768,0,6,1,0,0,0,8,0,11,6,0,6,0,3,0,0,0,4,5022,38,148,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,408,0,0,0,0,0,1,0,0,0,0,0,2,0,0,129185,38,874,0,7,0,0,0,0,0,28,0,0,0,0,0,8,18,22651,0,0,4,0,0,0,0,0,94,5,2,0,0,2,0,874,0,0,0,0,3617,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,18669,0,46,0,0,0,6,14,280,1252,18655,0,0,0,0,1,0,3,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,271,5,0,0,275,0,384,0,0,0,116,23,0,0,0,0,0,0,0,0,0,853,1,0,0,0,9,0,0,0,0,2,141,17,0,0,1,0,0,0,0,0,5794,1,0,794,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,364,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,11,0,0,0,0,1,42,209,0,14,12,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2706,139,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,63,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +8,0,0,3,0,20,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,8,0,20,6,0,0,28,0,5,0,1,0,0,5,0,0,0,0,0,76,0,0,0,0,0,1,0,0,0,0,0,6,0,0,33599,20,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,7004,0,0,8,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,442,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4224,0,77,0,0,0,0,3,42,223,4238,0,0,0,0,1,0,0,0,0,0,0,0,0,8479,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,138,3,0,0,147,0,232,0,0,0,81,9,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,102,43,0,0,0,0,0,0,0,0,2095,0,0,9794,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,1,28,253,0,4,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2966,62,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,214,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,133,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,92,0,0,0,33,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,12,3 +8,0,0,3,0,20,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,8,0,20,6,0,0,28,0,5,0,1,0,0,5,0,0,0,0,0,78,0,0,0,0,0,1,0,0,0,0,0,6,0,0,33641,20,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,6979,0,0,8,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,613,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4236,0,75,0,0,0,0,3,42,223,4250,0,0,0,0,1,0,0,0,0,0,0,0,0,8528,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,144,3,0,0,147,0,235,0,0,0,81,14,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,102,43,0,0,0,0,0,0,0,0,2071,0,0,9796,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,1,28,253,0,4,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2943,50,3 +1,0,0,6,0,34,7,0,34,0,5,0,0,7,6,0,507,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,175,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18035,34,574,0,2,0,0,0,0,0,18,0,0,0,0,0,9,26,4219,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,566,0,0,1,0,2739,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,692,0,46,0,0,0,1,4,256,1158,678,0,0,0,0,1,0,3,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,188,6,0,0,201,0,269,0,0,0,58,4,0,0,0,0,0,0,0,0,0,572,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3142,1,0,836,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,106,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1867,76,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,139,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1936,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,666,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,212,0,91,0,0,0,0,3,27,9,211,0,0,0,0,1,0,0,0,0,0,0,0,0,9937,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,113,2,0,0,128,0,273,0,0,0,61,10,0,0,0,0,0,44,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,270,0,0,898,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,433,48,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,56,0,52,0,0,0,26,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,22,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,45,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,62,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,122,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,115,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,72,0,90,0,0,0,41,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,35,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,7,0,0,214,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,174,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,7,38,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,65,3,0,0,69,0,86,0,0,0,39,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,37,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,53,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,233,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,138,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,59,3,0,0,74,0,68,0,0,0,43,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,36,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,53,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,7,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,3,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1410,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,65,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,619,0,0,0,0,0,15,43,230,0,0,0,0,0,0,0,0,0,0,0,0,0,1635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,23,2,0,0,60,0,82,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,4,45,0,0,0,0,0,0,0,0,321,0,0,368,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,3,116,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1412,4,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1152,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,487,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,524,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,19,0,0,0,0,3,22,4,54,0,0,0,0,1,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,87,2,0,0,79,0,235,0,0,0,26,15,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,19,0,0,0,0,0,0,0,0,214,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,99,0,1,0,0,2,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,233,15,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +3,0,0,2,0,12,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,12,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1245,12,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,553,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,93,0,28,0,0,0,6,15,32,21,108,0,0,0,0,1,0,0,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,73,2,0,0,85,0,167,0,0,0,24,3,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,92,15,0,0,0,0,0,0,0,0,264,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,6,0,0,0,0,1,14,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,272,101,3 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1036,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,454,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,21,0,0,0,0,3,23,4,54,0,0,0,0,1,0,0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,65,2,0,0,82,0,101,0,0,0,28,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,91,19,0,0,0,0,0,0,0,0,214,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,109,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,233,6,3 +1,0,0,3,0,12,3,0,16,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,40,0,0,10,0,0,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,3,0,0,323,12,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,29,0,1,0,0,184,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,39,0,0,0,0,3,30,6,59,0,0,0,0,1,0,0,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,4,97,3,0,0,101,0,233,0,0,0,37,10,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,95,20,0,0,0,0,0,0,0,0,83,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,140,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,93,12,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,7,0,0,181,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,153,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,63,3,0,0,62,0,80,0,0,0,32,6,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,19,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,17,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,11,3 +4,0,0,5,0,34,21,0,41,0,4,0,0,2,7,0,648,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5706,34,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,265,0,0,0,0,0,1,0,0,0,0,0,2,0,0,114527,34,742,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19797,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,707,0,0,0,0,5165,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,15497,0,64,0,0,0,0,3,273,1588,15487,0,0,0,0,1,0,3,0,0,0,0,0,0,790,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,365,5,0,0,271,0,887,0,0,0,118,14,0,0,0,0,0,0,0,0,0,729,1,0,0,0,9,0,0,0,0,0,135,19,0,0,1,0,0,0,0,0,8409,1,0,1106,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,35,199,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3272,87,3 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,79,0,0,0,0,0,1,0,0,0,0,0,1,0,0,249,8,46,0,1,0,0,0,0,0,10,0,0,0,0,0,1,4,42,0,0,0,0,0,0,0,0,9,0,3,0,0,2,0,15,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,41,0,0,0,0,3,22,5,61,0,0,0,0,1,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,76,2,0,0,89,0,92,0,0,0,28,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,89,20,0,0,0,0,0,0,0,0,32,0,0,34,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,152,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,92,14,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,7,0,0,210,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,149,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,57,3,0,0,69,0,85,0,0,0,39,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,11,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1251,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,541,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,91,2,0,0,91,0,175,0,0,0,32,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,35,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,150,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1208,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,531,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,30,0,0,0,0,3,31,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,82,2,0,0,93,0,157,0,0,0,27,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +0,0,0,3,0,18,2,0,15,2,3,0,0,0,5,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,7,0,18,6,0,0,22,0,0,0,1,0,0,5,0,0,0,0,0,103,0,0,0,0,0,1,0,0,0,0,0,5,0,0,10577,18,65,0,1,0,0,0,0,0,21,0,0,0,0,0,1,7,1749,0,0,7,0,0,0,0,0,13,0,8,0,0,2,0,20,0,3,0,0,2548,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1148,0,77,0,0,0,0,3,35,210,1162,0,0,0,0,1,0,0,0,0,0,0,0,0,908,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,6,165,3,0,0,155,0,269,0,0,0,84,20,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,101,48,0,0,0,0,0,0,0,0,622,0,0,787,0,0,1,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,25,318,0,1,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,837,50,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,30,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,263,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,107,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,26,3 +1,0,0,6,0,35,7,0,35,0,5,0,0,7,6,0,556,0,6,1,0,0,0,9,0,12,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,181,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18319,35,625,0,4,0,0,0,0,0,18,0,0,0,0,0,9,26,4273,0,0,1,0,0,0,0,0,215,25,4,0,0,2,0,615,0,0,1,0,2714,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,722,0,45,0,0,0,2,5,265,1159,707,0,0,0,0,1,0,3,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,187,6,0,0,203,0,272,0,0,0,58,6,0,0,0,0,0,0,0,0,0,622,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3262,1,0,825,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,9,0,0,0,0,1,36,111,0,5,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1874,71,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,218,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,972,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,31,0,0,0,2,4,24,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,54,3,0,0,63,0,94,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,12,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,262,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,107,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +16,0,0,6,0,38,15,0,42,6,5,0,0,2,12,0,673,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4925,38,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,367,0,0,0,0,0,1,0,0,0,0,0,10,0,0,135227,38,778,0,9,0,0,0,0,0,26,0,0,0,0,0,8,18,23501,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,777,0,7,0,0,3609,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,19722,0,53,0,0,0,8,20,272,1236,19713,0,0,0,0,1,0,3,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,278,6,0,0,271,0,393,0,0,0,113,19,0,0,0,0,0,0,0,0,0,755,1,0,0,0,9,0,0,0,0,1,140,16,0,0,1,0,0,0,0,0,4571,1,0,774,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,13,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,19,0,0,0,0,1,42,210,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2015,124,3 +2362,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,4,0,1,0,0,4,0,0,0,0,0,145,0,0,0,0,0,1,0,0,0,0,0,1,0,0,5949,10,68,0,1,0,0,0,0,0,22,0,0,0,0,0,1,9,1290,0,0,0,0,0,0,0,0,14,0,9,0,0,2,0,15,0,0,0,0,931,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,100,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,2362,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,805,0,78,0,0,0,0,3,26,7,846,0,0,0,0,1,0,0,0,0,0,0,0,0,8767,0,0,0,0,0,0,0,0,0,0,0,0,4,0,98,0,0,0,0,0,0,8,3,120,2,0,0,104,0,224,0,0,0,37,7,0,0,0,0,0,38,180,0,0,42,1,0,0,0,2,0,0,0,0,0,90,23,0,0,0,0,0,0,0,0,362,0,0,1984,0,0,1,1,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,186,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,207,0,1,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,90,0,0,0,0,0,0,0,4,760,34,3 +0,0,0,2,0,9,2,0,10,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,909,9,35,0,2,0,0,0,0,0,6,0,0,0,0,0,1,6,446,0,0,1,0,0,0,0,0,9,0,1,0,0,2,0,10,0,0,0,0,94,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,38,0,22,0,0,0,0,3,23,5,44,0,0,0,0,1,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,75,0,124,0,0,0,22,2,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,91,12,0,0,0,0,0,0,0,0,206,0,0,731,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,1,0,0,0,0,1,10,81,0,2,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,220,8,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2161,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,881,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,248,0,32,0,0,0,8,19,29,609,257,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,84,2,0,0,110,0,174,0,0,0,45,8,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,447,0,0,769,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,438,8,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1231,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,555,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,30,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,2,0,0,90,0,158,0,0,0,26,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,229,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,30,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,78,2,0,0,94,0,266,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,106,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,26,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1244,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,538,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,95,2,0,0,91,0,181,0,0,0,31,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,226,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,258,150,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1265,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,553,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,91,2,0,0,91,0,173,0,0,0,32,9,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,226,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,259,150,3 +0,0,0,3,0,25,5,0,11,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,2,0,1,0,25,6,0,0,20,0,1,0,1,0,0,1,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1606,25,42,0,1,0,0,0,0,0,11,0,0,0,0,0,7,15,601,0,0,1,0,0,0,0,0,74,5,3,0,0,2,0,20,0,0,0,0,517,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,92,0,39,0,0,0,0,3,177,8,94,0,0,0,0,1,0,3,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,110,3,0,0,135,0,293,0,0,0,43,5,0,0,0,0,0,0,0,0,0,45,1,0,0,0,8,0,0,0,0,0,107,30,0,0,0,0,0,0,0,0,272,0,0,772,3,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,2,3,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,89,0,2,9,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,344,123,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1341,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,558,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,41,0,0,0,0,3,23,6,98,0,0,0,0,1,0,0,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,118,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,227,0,0,815,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,189,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,292,15,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,262,0,0,0,22,8,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,27,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,70,0,0,0,0,0,1,0,0,0,0,0,2,0,0,516,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,76,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,514,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,97,3,0,0,83,0,286,0,0,0,13,9,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,105,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,26,3 +1,0,0,6,0,34,7,0,36,0,5,0,0,7,6,0,575,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,179,0,0,0,0,0,1,0,0,0,0,0,5,0,0,17964,34,644,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4024,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,634,0,0,1,0,3123,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,646,0,48,0,0,0,1,4,256,1160,632,0,0,0,0,1,0,3,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,189,6,0,0,201,0,271,0,0,0,58,4,0,0,0,0,0,0,0,0,0,642,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3161,1,0,829,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,110,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1786,72,3 +5,0,0,4,0,37,13,0,35,0,3,0,0,2,3,0,650,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2318,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,227,0,0,0,0,0,1,0,0,0,0,0,4,0,0,72425,37,738,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,13052,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,688,0,1,0,0,3380,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,9420,0,44,0,0,0,2,7,262,1181,9397,0,0,0,0,1,0,3,0,0,0,0,0,0,749,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,234,4,0,0,278,0,344,0,0,0,126,11,0,0,0,0,0,0,0,0,0,712,1,0,0,0,10,0,0,0,0,1,130,36,0,0,0,0,0,0,0,0,4089,1,0,1565,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1947,38,3 +3549,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,145,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2167,11,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,714,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,227,0,94,0,0,0,0,3,31,9,226,0,0,0,0,1,0,0,0,0,0,0,0,0,10073,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,122,2,0,0,133,0,257,0,0,0,63,9,0,0,0,0,0,46,0,0,0,44,1,0,0,0,2,0,0,0,0,1,93,43,0,0,0,0,0,0,0,0,283,0,0,955,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,284,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,458,49,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1221,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,529,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,67,2,0,0,79,0,161,0,0,0,25,7,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,261,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,101,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,77,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,65,0,59,0,0,0,35,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,5,0,35,21,0,44,0,4,0,0,2,7,0,770,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,273,0,0,0,0,0,1,0,0,0,0,0,2,0,0,124067,35,867,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,21080,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,829,0,0,0,0,5053,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,16959,0,65,0,0,0,0,3,281,1598,16948,0,0,0,0,1,0,3,0,0,0,0,0,0,838,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,347,5,0,0,276,0,879,0,0,0,119,19,0,0,0,0,0,0,0,0,0,854,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8594,1,0,1146,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,226,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3203,89,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,480,9,54,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,84,0,0,1,0,0,0,0,0,11,0,5,0,0,2,0,14,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,80,0,37,0,0,0,0,3,23,6,91,0,0,0,0,1,0,0,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,76,2,0,0,121,0,116,0,0,0,63,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,89,49,0,0,0,0,0,0,0,0,46,0,0,87,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,190,0,1,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,105,14,3 +1,0,0,6,0,34,7,0,36,0,5,0,0,7,6,0,575,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,177,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18220,34,644,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4256,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,634,0,0,1,0,3061,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,753,0,46,0,0,0,1,4,256,1160,739,0,0,0,0,1,0,3,0,0,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,188,6,0,0,201,0,270,0,0,0,58,4,0,0,0,0,0,0,0,0,0,642,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3274,1,0,829,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,110,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1926,72,3 +1,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,107,10,24,0,2,0,0,0,0,0,1,0,0,0,0,0,1,1,13,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,12,0,2,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,2,3,25,7,34,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,49,3,0,0,58,0,75,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,20,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,14,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,36,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,73,0,0,0,0,0,1,0,0,0,0,0,2,0,0,494,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,64,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,565,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1063,3,0,0,1050,0,293,0,0,0,14,10,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1069,9,0,0,0,0,0,0,0,0,95,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,30,3 +4,0,0,5,0,40,18,0,42,0,4,0,0,2,7,0,737,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,4763,40,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,346,0,0,0,0,0,1,0,0,0,0,0,2,0,0,107117,40,836,0,10,0,0,0,0,0,30,0,0,0,0,0,8,18,18612,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,802,0,0,0,0,4011,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,14943,0,65,0,0,0,6,9,290,1245,14926,0,0,0,0,1,0,3,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,601,5,0,0,283,0,1017,0,0,0,121,91,0,0,0,0,0,0,0,0,0,816,1,0,0,0,9,0,0,0,0,4,141,18,0,0,1,0,0,0,0,0,8606,1,0,768,15,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,15,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,12,0,0,0,6,1,44,192,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3047,134,3 +2,0,0,3,0,35,13,0,33,0,2,0,0,2,2,0,718,0,6,2,0,0,0,8,0,11,0,0,4,0,1,0,0,0,1,2700,35,6,0,0,20,0,1,0,1,0,0,2,0,0,0,0,1,730,0,0,0,0,0,1,0,0,0,0,0,2,0,0,89280,35,797,0,1,0,0,0,0,0,28,0,0,0,0,0,9,23,15923,0,0,1,0,0,0,0,0,94,5,4,0,0,2,0,737,0,0,0,0,2974,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,11926,0,42,0,0,0,0,3,269,1204,11908,0,0,0,0,1,0,3,0,0,0,0,0,0,899,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,10,207,3,0,0,260,0,266,0,0,0,108,8,0,0,0,0,0,0,0,0,0,776,1,0,0,0,10,0,0,0,0,0,127,28,0,0,0,0,0,0,0,0,4368,1,0,1827,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,36,126,0,2,14,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1985,31,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,5,0,0,231,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,130,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,59,3,0,0,74,0,68,0,0,0,43,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,36,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1073,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,471,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,119,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,23,0,0,0,0,3,24,6,55,0,0,0,0,1,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,74,3,0,0,84,0,157,0,0,0,31,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,94,16,0,0,0,0,0,0,0,0,253,0,0,780,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,104,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,234,272,3 +2,0,0,3,0,18,2,0,15,0,3,0,0,0,3,0,45,0,6,1,0,0,0,1,0,0,18,0,0,0,7,0,0,0,3,0,18,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,6,54,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2228,18,89,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,856,0,0,3,0,0,0,0,0,32,0,2,0,0,2,0,118,0,1,0,0,489,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,254,0,34,0,0,0,12,27,38,634,262,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,90,3,0,0,119,0,203,0,0,0,45,5,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,7,98,31,0,0,0,0,0,0,0,0,470,0,0,771,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,6,0,0,0,0,1,21,201,0,25,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,440,29,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1246,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,538,0,0,2,0,0,0,0,0,11,0,2,0,0,2,0,11,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,28,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,84,2,0,0,92,0,174,0,0,0,28,10,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,17,0,0,0,0,0,0,0,0,226,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,34,0,4,0,0,2,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,259,154,3 +0,0,0,2,0,12,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,11,0,3,0,1,0,0,3,0,0,0,0,0,79,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1272,12,59,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,496,0,0,3,0,0,0,0,0,12,0,5,0,0,2,0,15,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,42,0,0,0,0,3,29,6,101,0,0,0,0,1,0,0,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,91,2,0,0,106,0,121,0,0,0,42,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,94,20,0,0,0,0,0,0,0,0,232,0,0,830,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,174,0,1,0,0,1,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,298,14,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1246,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,543,0,0,3,0,0,0,0,0,11,0,2,0,0,2,0,11,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,26,0,0,0,0,3,27,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,90,2,0,0,91,0,173,0,0,0,31,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,35,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,259,151,3 +10,0,0,5,0,41,21,0,45,0,4,0,0,2,14,0,782,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,397,0,0,0,0,0,1,0,0,0,0,0,2,0,0,140575,41,902,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23900,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,915,0,0,0,0,5243,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19745,0,53,0,0,0,8,19,290,1628,19735,0,0,0,0,1,0,3,0,0,0,0,0,0,916,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,303,5,0,0,298,0,403,0,0,0,140,21,0,0,0,0,0,0,0,0,0,874,1,0,0,0,9,0,0,0,0,2,148,19,0,0,1,0,0,0,0,0,6700,1,0,1122,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,207,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3141,81,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,249,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,26,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2046,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,855,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,299,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,243,0,21,0,0,0,0,3,24,597,254,0,0,0,0,1,0,0,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,63,2,0,0,85,0,89,0,0,0,29,4,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,21,0,0,0,0,0,0,0,0,410,0,0,784,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,110,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,430,6,3 +16,0,0,6,0,39,21,0,44,6,5,0,0,2,12,0,727,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,5868,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,374,0,0,0,0,0,1,0,0,0,0,0,10,0,0,143418,39,846,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,24464,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,838,0,7,0,0,5715,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,20150,0,51,0,0,0,8,20,285,1625,20140,0,0,0,0,1,0,3,0,0,0,0,0,0,941,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,318,6,0,0,288,0,423,0,0,0,127,23,0,0,0,0,0,0,0,0,0,817,1,0,0,0,9,0,0,0,0,1,142,19,0,0,1,0,0,0,0,0,5077,1,0,1139,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,234,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2370,156,3 +0,0,0,3,0,9,2,0,16,4,3,0,0,0,7,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,2,0,1,0,9,6,0,0,16,0,0,0,1,0,0,4,0,0,0,0,0,95,0,0,0,0,0,1,0,0,0,0,0,7,0,0,11367,9,62,0,1,0,0,0,0,0,15,0,0,0,1,0,1,6,2466,0,0,1,0,0,0,0,0,9,0,8,0,0,2,0,25,0,5,0,0,128,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1457,0,39,0,0,0,0,3,23,14,1474,0,0,0,0,1,0,0,0,0,0,0,0,0,2292,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,8,103,3,0,0,129,0,125,0,0,0,70,4,0,0,0,0,0,0,0,0,0,48,1,0,0,0,2,0,0,0,0,0,91,51,0,0,0,0,0,0,0,0,633,0,0,3281,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,218,0,1,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1116,25,3 +1,0,0,2,0,9,2,0,22,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,9,6,0,0,5,0,1,0,1,0,0,3,0,0,0,0,0,60,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1004,9,52,0,2,0,0,0,0,0,8,0,0,0,0,1,1,8,473,0,0,1,0,0,0,0,0,10,0,4,0,0,2,0,22,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,53,0,25,0,0,0,0,3,24,7,56,0,0,0,0,1,0,0,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,75,2,0,0,100,0,141,0,0,0,42,1,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,1,89,26,0,0,0,0,0,0,0,0,210,0,0,742,0,0,1,0,1,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,1,0,0,0,0,1,10,157,0,2,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,234,8,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,69,0,0,0,0,0,1,0,0,0,0,0,2,0,0,433,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,51,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,445,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1040,3,0,0,1032,0,308,0,0,0,14,8,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1051,9,0,0,0,0,0,0,0,0,87,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,30,3 +0,0,0,3,0,10,2,0,16,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1031,10,42,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,440,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,28,0,1,0,0,112,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,23,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,81,3,0,0,88,0,157,0,0,0,27,3,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,252,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,147,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,178,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,56,0,0,0,28,5,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,36,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,63,0,0,0,0,0,1,0,0,0,0,0,2,0,0,449,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,47,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,489,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,99,3,0,0,83,0,300,0,0,0,13,8,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,86,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,27,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,120,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,121,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,50,3,0,0,62,0,68,0,0,0,31,5,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,24,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,30,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,8,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,265,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,7,0,0,85,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,18,0,5,0,0,130,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,53,3,0,0,61,0,103,0,0,0,31,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,18,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,17,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,10,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,5,0,0,57,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,5,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,37,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,3,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,29,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,252,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,108,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,26,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1214,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,541,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,29,0,0,0,0,3,27,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,88,0,153,0,0,0,25,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,229,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1326,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,531,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,90,0,39,0,0,0,0,3,23,6,100,0,0,0,0,1,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,119,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,818,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,189,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,292,13,3 +0,0,0,3,0,8,2,0,18,0,2,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,8,0,2,0,1,0,0,2,0,0,0,0,0,84,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1083,8,51,0,1,0,0,0,0,0,12,0,0,0,0,0,1,7,477,0,0,0,0,0,0,0,0,10,0,4,0,0,2,0,17,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,60,0,28,0,0,0,0,3,22,6,70,0,0,0,0,1,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,72,3,0,0,86,0,109,0,0,0,25,7,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,90,15,0,0,0,0,0,0,0,0,214,0,0,778,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,113,0,1,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,254,10,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,116,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,55,3,0,0,63,0,93,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,53,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,6,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +8,0,0,3,0,19,2,0,7,3,3,0,0,0,6,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,8,0,19,6,0,0,28,0,5,0,1,0,0,5,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,6,0,0,32047,19,59,0,1,0,0,0,0,0,21,0,0,0,1,0,1,7,6605,0,0,8,0,0,0,0,0,13,0,8,0,0,2,0,14,0,4,0,0,547,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4034,0,75,0,0,0,0,3,38,216,4054,0,0,0,0,1,0,0,0,0,0,0,0,0,8037,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,145,3,0,0,144,0,265,0,0,0,81,18,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,101,43,0,0,0,0,0,0,0,0,1985,0,0,9315,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,0,0,0,0,0,1,27,253,0,1,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2762,72,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,9,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,66,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1301,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,523,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,90,0,38,0,0,0,0,3,23,6,100,0,0,0,0,1,0,0,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,68,2,0,0,123,0,141,0,0,0,64,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,48,0,0,0,0,0,0,0,0,228,0,0,827,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,185,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,293,14,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,7,0,0,212,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,156,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,7,38,0,0,0,0,1,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,59,3,0,0,69,0,88,0,0,0,39,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,601,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,37,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1315,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,524,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,39,0,0,0,0,3,23,6,98,0,0,0,0,1,0,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,120,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,815,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,202,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,289,13,3 +5,0,0,4,0,37,13,0,35,0,3,0,0,2,3,0,650,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2305,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,257,0,0,0,0,0,1,0,0,0,0,0,4,0,0,141039,37,738,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,24283,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,688,0,1,0,0,3255,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,20689,0,44,0,0,0,2,7,266,1181,20665,0,0,0,0,1,0,3,0,0,0,0,0,0,1283,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,255,4,0,0,280,0,374,0,0,0,130,8,0,0,0,0,0,0,0,0,0,712,1,0,0,0,10,0,0,0,0,1,131,36,0,0,0,0,0,0,0,0,4091,1,0,2444,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,168,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1847,49,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,2,0,20,3,0,21,0,2,0,0,0,2,0,75,0,6,1,0,0,0,1,0,0,36,0,0,0,13,0,0,0,3,0,20,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,12,61,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2271,20,144,0,13,0,0,0,0,0,7,0,0,0,0,0,1,6,881,0,0,3,0,0,0,0,0,56,0,2,0,0,2,0,226,0,0,0,0,646,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,257,0,42,0,0,0,24,53,37,646,271,0,0,0,0,1,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,109,2,0,0,125,0,219,0,0,0,45,6,0,0,0,0,0,0,0,0,0,109,1,0,0,0,2,0,0,0,0,13,100,31,0,0,0,0,0,0,0,0,529,0,0,773,0,0,1,0,1,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,373,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,12,0,0,0,0,1,23,201,0,49,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,453,15,3 +16,0,0,6,0,40,17,0,45,6,5,0,0,2,12,0,819,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4625,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,382,0,0,0,0,0,1,0,0,0,0,0,10,0,0,124424,40,928,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,21795,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,922,0,7,0,0,3734,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,17923,0,52,0,0,0,6,19,286,1254,17913,0,0,0,0,1,0,3,0,0,0,0,0,0,362,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,276,6,0,0,278,0,401,0,0,0,113,17,0,0,0,0,0,0,0,0,0,906,1,0,0,0,9,0,0,0,0,1,140,17,0,0,1,0,0,0,0,0,4929,1,0,789,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,17,0,0,0,0,1,44,215,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2058,134,3 +9,0,0,4,0,13,3,0,3,0,3,0,0,0,4,0,21,0,7,1,0,0,0,1,2,0,0,0,6,0,1,0,0,0,1,0,13,30,9,0,17,0,0,0,1,0,0,0,0,0,0,0,2,49,0,1,0,0,0,1,0,0,0,0,0,4,0,0,28812,13,43,0,7,0,0,0,0,0,0,0,0,0,2,0,1,1,41,0,0,1,0,0,0,0,0,21,0,0,0,0,2,0,22,0,1,0,0,3901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,55,0,2945,0,0,0,4,13,35,64,11362,0,0,0,0,1,0,0,0,0,0,0,0,0,16543,0,3751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,95,4,0,0,65,0,409,0,0,0,23,16,0,0,0,0,0,0,0,0,0,41,0,0,0,0,4,0,0,0,0,1,95,11,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,8,0,0,0,0,1,14,1,0,7,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5914,12,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,76,2,0,0,91,0,253,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,25,3 +16,0,0,5,0,38,21,0,46,0,4,0,0,2,15,0,842,0,6,1,0,0,0,8,0,10,0,0,11,0,5,0,0,0,5,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,258,0,0,0,0,0,1,0,0,0,0,0,2,0,0,121349,38,961,0,13,0,0,0,0,0,32,0,0,0,0,0,8,18,20885,0,0,5,0,0,0,0,0,111,5,2,0,0,2,0,951,0,0,0,0,5361,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,16523,0,75,0,0,0,8,11,281,1638,16513,0,0,0,0,1,0,3,0,0,0,0,0,0,931,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,392,5,0,0,285,0,919,0,0,0,130,25,0,0,0,0,0,0,0,0,0,936,1,0,0,0,9,0,0,0,0,5,141,19,0,0,1,0,0,0,0,0,16123,1,0,1150,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,365,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,16,0,0,0,8,1,43,236,0,14,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5947,103,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +1,0,0,3,0,11,3,0,16,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,44,0,0,10,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,3,0,0,372,11,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,29,0,1,0,0,202,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,38,0,0,0,0,3,26,6,58,0,0,0,0,1,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,4,101,3,0,0,98,0,258,0,0,0,37,10,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,94,20,0,0,0,0,0,0,0,0,87,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,141,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,15,3 +2,0,0,3,0,15,2,0,11,4,3,0,0,0,7,0,21,0,6,1,0,0,0,1,0,0,3,0,2,0,2,0,1,0,2,0,15,6,0,0,16,0,21,0,1,0,0,53,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,7,0,0,3924,15,255,0,4,0,0,0,0,0,108,0,0,0,0,603,1,107,487,0,0,2,0,0,0,0,0,64,0,51,0,0,2,0,39,0,5,0,0,208,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,588,0,185,0,0,0,2,8,44,13,493,0,0,0,0,1,0,0,0,0,0,0,0,0,2819,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,10,8,99,3,0,0,138,0,486,0,0,0,70,4,0,0,0,0,0,0,0,0,0,50,1,0,0,0,2,0,0,0,0,2,97,6,0,0,0,0,0,0,0,0,758,0,0,402,0,0,1,0,0,0,0,0,103,0,0,0,52,20,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,76,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,17,48,0,7,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2296,27,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,344,0,0,0,0,0,1,0,0,0,0,0,10,0,0,123452,39,872,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,21542,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,867,0,7,0,0,3448,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,17720,0,54,0,0,0,8,20,282,1259,17710,0,0,0,0,1,0,3,0,0,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,287,6,0,0,276,0,392,0,0,0,116,11,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4771,1,0,804,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,1,43,221,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1999,129,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,116,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1858,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,604,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,177,0,68,0,0,0,0,3,27,9,176,0,0,0,0,1,0,0,0,0,0,0,0,0,9994,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,97,2,0,0,128,0,249,0,0,0,61,2,0,0,0,0,0,1,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,260,0,0,956,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,384,50,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,5,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,254,10,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,36,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,29,0,0,0,0,3,26,4,52,0,0,0,0,1,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,67,2,0,0,83,0,264,0,0,0,22,4,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,92,17,0,0,0,0,0,0,0,0,35,0,0,49,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,59,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,70,28,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,498,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,56,3,0,0,63,0,91,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +0,0,0,2,0,9,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,1,0,0,30,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,15,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,21,0,0,0,0,3,22,12,28,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,2,0,0,35,0,34,0,0,0,5,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,30,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +4,0,0,6,0,43,20,0,45,4,5,0,0,2,8,0,851,0,6,1,0,0,0,9,0,12,9,0,7,0,2,0,0,0,5,5767,43,32,0,0,35,0,1,0,1,0,0,1,0,0,0,0,4,364,0,0,0,0,0,1,0,0,0,0,0,8,0,0,125701,43,962,0,7,0,0,0,0,0,30,0,0,0,0,0,9,21,21442,0,0,5,0,0,0,0,0,97,5,2,0,0,2,0,944,0,5,0,0,5070,0,0,0,0,16,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,17322,0,54,0,0,0,6,19,301,1610,17307,0,0,0,0,1,0,3,0,0,0,0,0,0,918,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,37,18,300,6,0,0,293,0,385,0,0,0,125,14,0,0,0,0,0,0,0,0,0,937,1,0,0,0,10,0,0,0,0,1,143,18,0,0,1,0,0,0,0,0,4271,1,0,1145,17,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,17,363,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,16,0,0,0,0,1,48,245,0,16,14,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2217,95,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,77,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,65,0,58,0,0,0,35,8,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +6,0,0,7,0,40,14,0,40,4,13,0,0,2,8,0,23,0,7,4,0,0,0,5,2,9,0,0,22,0,1,0,0,0,6,0,40,6,6,0,90,0,0,0,1,0,0,3,0,0,0,0,5,141,0,0,0,0,0,1,0,0,0,0,0,15,0,0,14076,40,141,0,22,0,0,0,0,0,20,0,0,0,0,0,7,18,2337,0,0,6,0,0,2,27,0,331,45,3,0,0,2,0,173,0,4,0,0,1093,0,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,10,10,0,0,0,1663,0,95,0,0,0,7,15,204,240,1661,0,0,0,0,1,0,3,0,0,0,0,0,0,3122,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,17,207,7,0,0,186,0,345,0,0,0,66,34,0,0,0,0,0,0,0,0,0,107,1,0,0,0,11,0,0,0,0,1,127,65,0,0,93,0,1,0,0,0,920,0,0,3100,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,23,0,0,0,0,1,46,73,0,23,9,0,0,0,0,0,103,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1353,105,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1334,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,539,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,40,0,0,0,0,3,23,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,119,0,0,0,65,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,816,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,192,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,293,13,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,111,8,37,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,17,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,15,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,37,0,0,0,0,3,22,4,36,0,0,0,0,1,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,78,0,95,0,0,0,18,1,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,89,13,0,0,0,0,0,0,0,0,25,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,76,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,75,8,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,262,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,2,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,39,3,0,0,58,0,53,0,0,0,28,10,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +16,0,0,6,0,40,15,0,42,6,5,0,0,2,12,0,708,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4925,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,384,0,0,0,0,0,1,0,0,0,0,0,10,0,0,121731,40,813,0,9,0,0,0,0,0,26,0,0,0,0,0,8,18,21396,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,812,0,7,0,0,3726,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,17405,0,52,0,0,0,8,20,283,1237,17395,0,0,0,0,1,0,3,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,287,6,0,0,274,0,413,0,0,0,110,20,0,0,0,0,0,0,0,0,0,790,1,0,0,0,9,0,0,0,0,1,140,16,0,0,1,0,0,0,0,0,4814,1,0,778,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,13,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,19,0,0,0,0,1,44,211,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2052,141,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2144,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,853,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,399,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,250,0,32,0,0,0,8,19,29,612,259,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,81,2,0,0,110,0,177,0,0,0,45,4,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,450,0,0,778,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,441,7,3 +10,0,0,5,0,39,21,0,49,0,4,0,0,2,13,1,971,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,5,5868,39,166,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,366,0,0,0,0,0,1,0,0,0,0,0,2,0,0,150189,39,1091,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,25583,0,0,5,0,0,0,0,0,95,5,2,0,0,2,0,1004,0,0,0,0,5752,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,21394,0,87,0,0,0,8,21,311,1626,21367,0,0,0,0,1,0,3,0,0,0,0,0,0,913,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,42,13,287,5,0,0,290,0,493,0,0,0,134,34,0,0,0,0,0,0,0,0,0,1067,1,0,0,0,9,0,0,0,0,2,144,19,0,0,1,0,0,0,0,0,6532,1,0,1136,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,35,35,0,0,4,0,2,0,0,0,16,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,19,0,0,0,0,27,44,224,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2972,162,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,167,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,53,3,0,0,63,0,93,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1217,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,506,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,27,0,0,0,0,3,31,5,102,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,94,2,0,0,94,0,176,0,0,0,31,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,17,35,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,259,150,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,6,0,40,20,0,44,4,5,0,0,2,8,0,754,0,6,1,0,0,0,9,0,12,9,0,7,0,3,0,0,0,5,5767,40,32,0,0,35,0,1,0,1,0,0,1,0,0,0,0,4,348,0,0,0,0,0,1,0,0,0,0,0,8,0,0,145643,40,864,0,6,0,0,0,0,0,30,0,0,0,0,0,9,21,24817,0,0,5,0,0,0,0,0,97,5,2,0,0,2,0,847,0,5,0,0,5366,0,0,0,0,16,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,20654,0,52,0,0,0,6,19,281,1591,20641,0,0,0,0,1,0,3,0,0,0,0,0,0,918,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,37,18,293,6,0,0,284,0,398,0,0,0,122,13,0,0,0,0,0,0,0,0,0,839,1,0,0,0,10,0,0,0,0,1,139,18,0,0,1,0,0,0,0,0,4119,1,0,1124,17,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,17,363,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,16,0,0,0,0,1,45,255,0,17,14,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2189,94,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,2,0,19,3,0,22,0,2,0,0,0,2,0,74,0,6,1,0,0,0,1,0,1,35,0,0,0,13,0,0,0,3,0,19,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,12,60,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2216,19,143,0,13,0,0,0,0,0,7,0,0,0,0,0,1,6,830,0,0,3,0,0,0,0,0,56,0,2,0,0,2,0,225,0,0,0,0,616,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,254,0,41,0,0,0,24,52,33,644,268,0,0,0,0,1,0,0,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,104,2,0,0,122,0,212,0,0,0,45,7,0,0,0,0,0,0,0,0,0,109,1,0,0,0,2,0,0,0,0,13,99,31,0,0,0,0,0,0,0,0,527,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,373,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,12,0,0,0,0,1,22,201,0,49,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,445,15,3 +4,0,0,5,0,35,21,0,43,0,4,0,0,2,7,0,735,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,272,0,0,0,0,0,1,0,0,0,0,0,2,0,0,117397,35,831,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20165,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,794,0,0,0,0,4886,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15856,0,66,0,0,0,0,3,280,1597,15845,0,0,0,0,1,0,3,0,0,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,369,5,0,0,275,0,899,0,0,0,120,12,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8600,1,0,1139,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,199,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3218,89,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,62,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +0,0,0,2,0,18,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,4,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1510,18,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,59,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,621,0,0,0,0,0,19,43,241,0,0,0,0,0,0,0,0,0,0,0,0,0,1663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,23,2,0,0,63,0,93,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,5,45,0,0,0,0,0,0,0,0,327,0,0,404,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,4,116,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1421,5,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,13,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1226,13,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,539,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,29,0,0,0,6,15,27,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,72,2,0,0,88,0,170,0,0,0,25,3,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,93,15,0,0,0,0,0,0,0,0,258,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,6,0,0,0,0,1,15,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,101,3 +9,0,0,6,0,39,21,0,47,6,5,0,0,2,12,0,832,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,4,5879,39,32,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,364,0,0,0,0,0,1,0,0,0,0,0,10,0,0,143392,39,952,0,7,0,0,0,0,0,32,0,0,0,0,0,8,18,24502,0,0,4,0,0,0,0,0,90,5,2,0,0,2,0,938,0,7,0,0,5887,0,0,0,0,9,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,20190,0,54,0,0,0,6,19,285,1621,20180,0,0,0,0,1,0,3,0,0,0,0,0,0,899,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,349,6,0,0,289,0,409,0,0,0,129,38,0,0,0,0,0,0,0,0,0,925,1,0,0,0,9,0,0,0,0,1,143,19,0,0,1,0,0,0,0,0,5074,1,0,1123,16,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,16,0,0,0,0,1,43,206,0,17,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2335,141,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,67,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1323,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,536,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,42,0,0,0,0,3,23,6,98,0,0,0,0,1,0,0,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,76,2,0,0,122,0,119,0,0,0,63,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,89,49,0,0,0,0,0,0,0,0,226,0,0,812,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,205,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,296,13,3 +0,0,0,2,0,9,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,4,0,1,0,0,4,0,0,0,0,0,58,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1950,9,56,0,1,0,0,0,0,0,15,0,0,0,0,0,1,7,627,0,0,1,0,0,0,0,0,13,0,4,0,0,2,0,15,0,0,0,0,971,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,133,0,78,0,0,0,0,3,23,82,147,0,0,0,0,1,0,0,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,3,249,2,0,0,141,0,114,0,0,0,82,30,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,116,42,0,0,0,0,0,0,0,0,271,0,0,865,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,236,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,374,90,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,60,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +10,0,0,5,0,42,21,0,50,0,4,0,0,2,14,0,987,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,42,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,398,0,0,0,0,0,1,0,0,0,0,0,2,0,0,183729,42,1117,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,31383,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,1125,0,0,0,0,4592,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,12,12,12,0,0,0,27119,0,57,0,0,0,8,17,298,1593,27108,0,0,0,0,1,0,3,0,0,0,0,0,0,788,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,314,5,0,0,300,0,410,0,0,0,138,24,0,0,0,0,0,0,0,0,0,1084,1,0,0,0,9,0,0,0,0,2,149,19,0,0,1,0,0,0,0,0,7081,1,0,1042,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,12,0,0,0,2,1,48,208,0,22,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3069,156,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,256,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,27,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,7,0,0,87,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,18,0,5,0,0,116,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,55,3,0,0,66,0,99,0,0,0,36,9,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,97,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,17,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,14,3 +4,0,0,3,0,12,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,4,0,12,42,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,5,0,0,385,12,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,262,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,38,0,0,0,0,3,27,7,60,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,106,3,0,0,101,0,238,0,0,0,40,13,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,95,20,0,0,0,0,0,0,0,0,85,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,145,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,16,3 +4,0,0,3,0,9,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,4,0,0,82,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,66,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,33,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,5,39,3,0,0,60,0,61,0,0,0,29,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,92,25,0,0,0,0,0,0,0,0,597,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,29,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,121,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,20,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,129,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,31,0,0,0,2,3,24,9,36,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,49,3,0,0,67,0,64,0,0,0,37,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,30,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,9,3 +16,0,0,6,0,38,17,0,45,6,5,0,0,2,12,0,778,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,38,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,363,0,0,0,0,0,1,0,0,0,0,0,10,0,0,120418,38,889,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,21111,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,883,0,7,0,0,3569,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,17194,0,51,0,0,0,6,19,274,1258,17185,0,0,0,0,1,0,3,0,0,0,0,0,0,368,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,283,6,0,0,273,0,399,0,0,0,114,15,0,0,0,0,0,0,0,0,0,865,1,0,0,0,9,0,0,0,0,1,138,17,0,0,1,0,0,0,0,0,4884,1,0,795,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,17,0,0,0,0,1,42,208,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2110,133,3 +10,0,0,5,0,39,21,0,44,0,4,0,0,2,14,0,709,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,39,4532,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,368,0,0,0,0,0,1,0,0,0,0,0,2,0,0,143252,39,830,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,24337,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,844,0,0,0,0,5835,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,20185,0,52,0,0,0,8,19,275,1626,20177,0,0,0,0,1,0,3,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,311,5,0,0,286,0,397,0,0,0,131,16,0,0,0,0,0,0,0,0,0,800,1,0,0,0,9,0,0,0,0,2,139,19,0,0,1,0,0,0,0,0,10977,1,0,1142,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,11,0,0,0,0,1,45,225,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3143,104,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,53,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,52,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +2,0,0,5,0,37,6,0,41,1,5,0,0,6,5,0,745,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,2,898,37,6,0,0,41,0,1,0,1,0,0,2,0,0,0,0,1,160,0,0,0,0,0,1,0,0,0,0,0,2,0,0,22925,37,814,0,4,0,0,0,0,0,15,0,0,0,0,0,8,20,5000,0,0,2,0,0,0,0,0,189,20,4,0,0,2,0,785,0,0,1,0,1539,0,0,0,0,0,2,4,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1707,0,39,0,0,0,0,3,271,346,1694,0,0,0,0,1,0,6,0,0,0,0,0,0,2140,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,19,198,5,0,0,215,0,383,0,0,0,68,6,0,0,0,0,0,0,0,0,0,814,1,0,0,0,9,0,0,0,0,0,118,27,0,0,6,0,0,0,0,0,3688,1,0,3013,5,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,5,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,3,0,0,0,0,1,39,134,0,5,12,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2007,130,3 +10,0,0,5,0,42,21,0,46,0,4,0,0,2,14,0,841,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,42,4459,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,383,0,0,0,0,0,1,0,0,0,0,0,2,0,0,139747,42,964,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23754,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,976,0,0,0,0,5184,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,19661,0,57,0,0,0,8,19,298,1639,19650,0,0,0,0,1,0,3,0,0,0,0,0,0,925,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,313,5,0,0,302,0,411,0,0,0,139,29,0,0,0,0,0,0,0,0,0,934,1,0,0,0,9,0,0,0,0,2,151,19,0,0,1,0,0,0,0,0,11250,1,0,1118,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,11,0,0,0,0,1,48,233,0,19,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3239,77,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4944,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,361,0,0,0,0,0,1,0,0,0,0,0,10,0,0,130982,39,873,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,22807,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,868,0,7,0,0,3437,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18994,0,53,0,0,0,8,20,281,1258,18984,0,0,0,0,1,0,3,0,0,0,0,0,0,381,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,287,6,0,0,275,0,402,0,0,0,113,16,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4747,1,0,796,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,20,0,0,0,2,1,43,212,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2031,138,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,7,0,0,209,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,177,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,63,3,0,0,69,0,89,0,0,0,39,1,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,16,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +10,0,0,5,0,41,38,0,41,0,4,0,0,2,14,0,676,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,6,7318,41,44,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,453,0,0,0,0,0,1,0,0,0,0,0,2,0,0,138095,41,828,0,8,0,0,0,0,0,50,0,0,0,0,0,8,18,23409,0,0,6,0,0,0,0,0,91,5,2,0,0,2,0,826,0,0,0,0,7524,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,18339,0,55,0,0,0,6,14,309,3210,18332,0,0,0,0,1,0,3,0,0,0,0,0,0,2036,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,327,5,0,0,346,0,426,0,0,0,182,20,0,0,0,0,0,0,0,0,0,781,1,0,0,0,9,0,0,0,0,1,164,28,0,0,1,0,0,0,0,0,6898,1,0,1533,25,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,25,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,7,0,0,0,0,1,47,255,0,18,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3550,273,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,55,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2185,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,892,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,250,0,30,0,0,0,8,19,29,612,259,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,177,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,449,0,0,778,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,2,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,435,8,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +10,0,0,5,0,40,21,0,44,0,4,0,0,2,14,0,730,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,40,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,337,0,0,0,0,0,1,0,0,0,0,0,2,0,0,135770,40,849,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23225,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,863,0,0,0,0,5220,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,12,12,12,0,0,0,18925,0,56,0,0,0,8,19,282,1621,18916,0,0,0,0,1,0,3,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,288,5,0,0,294,0,400,0,0,0,136,20,0,0,0,0,0,0,0,0,0,821,1,0,0,0,9,0,0,0,0,2,146,19,0,0,1,0,0,0,0,0,6690,1,0,1128,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,11,0,0,0,0,1,46,212,0,19,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3167,82,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,40,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,505,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,69,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,543,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,101,3,0,0,83,0,320,0,0,0,13,14,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,107,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,28,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,6,0,37,7,0,34,0,5,0,0,7,6,0,549,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,37,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,177,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18758,37,616,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4336,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,608,0,0,1,0,2681,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,702,0,48,0,0,0,1,4,271,1158,687,0,0,0,0,1,0,3,0,0,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,194,6,0,0,209,0,272,0,0,0,58,6,0,0,0,0,0,0,0,0,0,614,1,0,0,0,10,0,0,0,0,0,120,15,0,0,6,0,0,0,0,0,3319,1,0,840,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,5,0,0,0,0,1,38,110,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1934,77,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,209,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,733,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,93,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,30,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,255,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,26,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,234,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,185,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,9,34,0,0,0,0,1,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,56,3,0,0,73,0,68,0,0,0,43,6,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,36,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,132,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,31,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,91,0,260,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,60,27,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,8,2,0,18,0,2,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,8,0,2,0,1,0,0,2,0,0,0,0,0,74,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1152,8,51,0,1,0,0,0,0,0,12,0,0,0,0,0,1,7,522,0,0,0,0,0,0,0,0,10,0,4,0,0,2,0,17,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,30,0,0,0,0,3,22,6,71,0,0,0,0,1,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,72,3,0,0,84,0,111,0,0,0,23,2,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,88,15,0,0,0,0,0,0,0,0,217,0,0,786,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,110,0,1,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,263,7,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +2,0,0,2,0,11,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2059,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,858,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,244,0,26,0,0,0,0,3,25,595,259,0,0,0,0,1,0,0,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,66,2,0,0,98,0,124,0,0,0,42,3,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,410,0,0,780,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,441,6,3 +16,0,0,6,0,38,17,0,44,6,5,0,0,2,12,0,744,0,6,1,0,0,0,8,0,12,9,0,7,0,2,0,0,0,4,4623,38,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,337,0,0,0,0,0,1,0,0,0,0,0,10,0,0,137967,38,854,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,24046,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,849,0,7,0,0,3726,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,20162,0,50,0,0,0,6,19,273,1257,20153,0,0,0,0,1,0,3,0,0,0,0,0,0,381,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,282,6,0,0,276,0,377,0,0,0,117,15,0,0,0,0,0,0,0,0,0,830,1,0,0,0,9,0,0,0,0,1,142,17,0,0,1,0,0,0,0,0,4800,1,0,791,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,17,0,0,0,0,1,42,207,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2089,133,3 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,877,8,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,461,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,15,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,19,0,0,0,0,3,21,4,41,0,0,0,0,1,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,61,2,0,0,78,0,88,0,0,0,17,0,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,88,13,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,107,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,2,3 +2,0,0,2,0,17,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,17,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,55,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2136,17,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,833,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,414,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,254,0,32,0,0,0,8,19,37,614,263,0,0,0,0,1,0,0,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,86,2,0,0,116,0,179,0,0,0,45,4,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,97,31,0,0,0,0,0,0,0,0,453,0,0,781,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,4,0,0,0,0,1,20,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,447,9,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1994,10,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,864,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,239,0,21,0,0,0,0,3,24,596,250,0,0,0,0,1,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,62,2,0,0,85,0,90,0,0,0,29,7,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,21,0,0,0,0,0,0,0,0,406,0,0,764,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,110,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,423,5,3 +7,0,0,6,0,39,8,0,40,4,5,0,0,2,9,0,468,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,7,898,39,48,0,0,39,0,3,0,1,0,0,3,0,0,0,0,4,166,1,0,0,0,0,1,0,0,0,0,0,9,0,0,30569,39,558,0,7,0,0,0,0,0,22,0,0,0,0,0,8,20,6276,0,0,7,0,0,0,0,0,94,5,5,0,0,2,0,546,0,6,0,0,3409,0,0,0,0,24,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,2751,0,71,0,0,0,6,19,246,1133,2746,0,0,0,0,1,0,4,0,0,0,0,0,0,497,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,19,240,6,0,0,237,0,400,0,0,0,88,28,0,0,0,0,0,0,0,0,0,538,1,0,0,0,9,0,0,0,0,1,123,25,0,0,1,0,0,0,0,0,3042,1,0,858,5,0,1,1,1,0,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,5,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,16,0,0,0,0,1,46,154,0,17,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1760,194,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,50,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +0,0,0,0,0,36,29,0,105,2,2,0,1,2,4,0,786,0,6,1,0,0,0,8,0,10,0,0,7,0,1,0,0,0,1,1099,36,6,0,0,45,0,1,0,1,0,0,1,0,0,0,0,1,335,0,0,0,0,0,1,0,0,0,0,0,0,0,0,232575,36,956,0,5,0,0,0,0,0,54,0,0,0,0,0,8,33,26963,0,0,1,0,0,0,0,0,203,5,2,0,0,2,0,897,0,0,11,0,56478,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,19390,0,30,0,0,0,2,5,480,7025,19371,0,0,0,0,1,0,3,0,0,0,0,0,0,15184,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,63,14,216,0,0,0,258,0,277,0,0,0,111,5,0,0,0,0,0,0,0,0,0,935,1,0,0,0,9,0,0,0,0,1,138,121,0,0,31,0,0,0,0,0,7356,1,0,10403,27,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,27,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,10,0,0,0,0,1,37,173,0,6,12,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5940,30,3 +4,0,0,5,0,35,21,0,42,0,4,0,0,2,7,0,700,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5706,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,270,0,0,0,0,0,1,0,0,0,0,0,2,0,0,115001,35,795,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19519,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,759,0,0,0,0,5353,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,15422,0,66,0,0,0,0,3,281,1592,15411,0,0,0,0,1,0,3,0,0,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,335,5,0,0,276,0,802,0,0,0,119,14,0,0,0,0,0,0,0,0,0,782,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8052,1,0,1139,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,218,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3094,90,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,4,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1428,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,93,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,619,0,0,0,0,0,19,43,233,0,0,0,0,0,0,0,0,0,0,0,0,0,1652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,27,2,0,0,63,0,82,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,5,45,0,0,0,0,0,0,0,0,327,0,0,380,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,4,115,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1418,5,3 +0,0,0,2,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,1,0,0,59,10,20,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,6,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,20,0,0,0,0,3,24,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,38,2,0,0,73,0,75,0,0,0,43,2,0,0,0,0,0,0,0,0,0,23,1,0,0,0,2,0,0,0,0,0,92,36,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,74,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,6,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,133,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,55,3,0,0,63,0,93,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,3,0,14,2,0,15,0,3,0,0,0,3,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,14,6,0,0,16,0,3,0,1,0,0,3,0,0,0,0,0,129,0,0,0,0,0,1,0,0,0,0,0,3,0,0,3495,14,59,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,959,0,0,5,0,0,0,0,0,12,0,5,0,0,2,0,17,0,1,0,0,440,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,332,0,44,0,0,0,0,3,29,266131,342,0,0,0,0,1,0,0,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,127,3,0,0,124,0,126,0,0,0,61,4,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,96,33,0,0,0,0,0,0,0,0,464,0,0,1379,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,19,211,0,1,0,0,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,628,17,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3,0,0,2,0,10,3,0,12,0,2,0,0,0,2,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,4,0,0,0,2,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,3,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1216,10,64,0,7,0,0,0,0,0,7,0,0,0,0,0,1,6,524,0,0,2,0,0,0,0,0,23,0,1,0,0,2,0,65,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,91,0,26,0,0,0,6,15,24,21,106,0,0,0,0,1,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,79,0,162,0,0,0,25,2,0,0,0,0,0,0,0,0,0,55,1,0,0,0,2,0,0,0,0,4,90,15,0,0,0,0,0,0,0,0,264,0,0,799,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,364,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,73,0,16,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,101,3 +4,0,0,5,0,38,21,0,44,0,4,0,0,2,7,0,737,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,327,0,0,0,0,0,1,0,0,0,0,0,2,0,0,115426,38,842,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,19599,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,805,0,0,0,0,6682,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15531,0,70,0,0,0,6,9,284,1618,15514,0,0,0,0,1,0,3,0,0,0,0,0,0,806,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,593,5,0,0,284,0,943,0,0,0,128,90,0,0,0,0,0,0,0,0,0,821,1,0,0,0,9,0,0,0,0,4,140,19,0,0,1,0,0,0,0,0,8909,1,0,1118,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,209,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3320,144,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1566,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,220,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,617,0,0,0,0,0,11,43,243,0,0,0,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,16,2,0,0,57,0,88,0,0,0,48,1,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,45,0,0,0,0,0,0,0,0,332,0,0,428,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,115,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1423,5,3 +0,0,0,2,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,1,0,0,61,10,20,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,6,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,20,0,0,0,0,3,24,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,39,2,0,0,73,0,75,0,0,0,43,1,0,0,0,0,0,0,0,0,0,23,1,0,0,0,2,0,0,0,0,0,92,36,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,74,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,6,3 +16,0,0,6,0,40,17,0,43,6,5,0,0,2,12,0,746,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,351,0,0,0,0,0,1,0,0,0,0,0,10,0,0,133480,40,853,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,23242,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,849,0,7,0,0,3536,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19482,0,53,0,0,0,6,19,288,1256,19471,0,0,0,0,1,0,3,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,285,6,0,0,280,0,392,0,0,0,116,15,0,0,0,0,0,0,0,0,0,831,1,0,0,0,9,0,0,0,0,1,143,17,0,0,1,0,0,0,0,0,4708,1,0,795,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,17,0,0,0,0,1,44,188,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2042,133,3 +0,0,0,3,0,13,2,0,15,0,3,0,0,0,3,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,13,6,0,0,14,0,3,0,1,0,0,3,0,0,0,0,0,147,0,0,0,0,0,1,0,0,0,0,0,3,0,0,3377,13,60,0,1,0,0,0,0,0,17,0,0,0,0,0,1,8,951,0,0,4,0,0,0,0,0,12,0,5,0,0,2,0,17,0,1,0,0,237,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,331,0,44,0,0,0,0,3,28,6,340,0,0,0,0,1,0,0,0,0,0,0,0,0,790,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,82,3,0,0,118,0,130,0,0,0,54,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,95,29,0,0,0,0,0,0,0,0,456,0,0,1379,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,17,211,0,1,0,0,2,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,607,13,3 +10,0,0,5,0,41,21,0,48,0,4,0,0,2,14,0,889,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5870,41,62,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,427,0,0,0,0,0,1,0,0,0,0,0,2,0,0,158558,41,1010,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,26976,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,1020,0,0,0,0,5139,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,22749,0,55,0,0,0,8,15,290,1629,22742,0,0,0,0,1,0,3,0,0,0,0,0,0,924,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,328,5,0,0,298,0,566,0,0,0,138,17,0,0,0,0,0,0,0,0,0,984,1,0,0,0,9,0,0,0,0,2,148,19,0,0,1,0,0,0,0,0,6998,1,0,1131,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,9,0,0,0,0,1,47,246,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3216,270,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,5,0,0,83,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,26,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,52,3,0,0,52,0,49,0,0,0,22,5,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,18,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,14,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,7,3 +4,0,0,6,0,41,21,0,44,6,5,0,0,2,10,0,773,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,5,5882,41,36,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,323,0,0,0,0,0,1,0,0,0,0,0,10,0,0,134653,41,889,0,7,0,0,0,0,0,32,0,0,0,0,0,8,18,22847,0,0,5,0,0,0,0,0,90,5,2,0,0,2,0,870,0,7,0,0,4994,0,0,0,0,8,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18908,0,52,0,0,0,6,19,290,1622,18898,0,0,0,0,1,0,3,0,0,0,0,0,0,904,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,37,20,286,6,0,0,295,0,403,0,0,0,132,20,0,0,0,0,0,0,0,0,0,861,1,0,0,0,9,0,0,0,0,1,145,19,0,0,1,0,0,0,0,0,3987,1,0,1126,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,363,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,16,0,0,0,0,1,46,180,0,17,12,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2199,106,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,7,0,0,212,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,152,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,7,38,0,0,0,0,1,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,57,3,0,0,69,0,86,0,0,0,39,4,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,37,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1311,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,525,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,40,0,0,0,0,3,23,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,119,0,0,0,65,2,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,229,0,0,814,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,191,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,294,12,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,59,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,5,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,37,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,69,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,39,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,140,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,30,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,264,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,28,3 +2,0,0,3,0,11,3,0,16,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,36,0,0,10,0,0,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,3,0,0,526,11,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,29,0,1,0,0,707,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,36,0,0,0,0,3,26,6,58,0,0,0,0,1,0,0,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,4,146,3,0,0,98,0,246,0,0,0,37,43,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,94,20,0,0,0,0,0,0,0,0,79,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,132,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,86,32,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,53,0,0,0,28,8,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +10,0,0,5,0,43,17,0,45,0,4,0,0,2,14,0,859,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5022,43,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,312,0,0,0,0,0,1,0,0,0,0,0,2,0,0,120755,43,976,0,12,0,0,0,0,0,28,0,0,0,0,0,8,18,21052,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,992,0,0,0,0,4100,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,17178,0,54,0,0,0,8,17,297,1259,17167,0,0,0,0,1,0,3,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,300,5,0,0,291,0,398,0,0,0,125,17,0,0,0,0,0,0,0,0,0,947,1,0,0,0,9,0,0,0,0,2,148,17,0,0,1,0,0,0,0,0,6668,1,0,780,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,12,0,0,0,2,1,49,204,0,22,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2909,164,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,80,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,65,0,59,0,0,0,35,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,6,0,41,16,0,42,4,5,0,0,2,8,0,736,0,6,1,0,0,0,9,0,12,9,0,7,0,3,0,0,0,5,4922,41,32,0,0,35,0,1,0,1,0,0,1,0,0,0,0,4,345,0,0,0,0,0,1,0,0,0,0,0,8,0,0,132942,41,836,0,7,0,0,0,0,0,26,0,0,0,0,0,9,21,23249,0,0,5,0,0,0,0,0,97,5,2,0,0,2,0,824,0,5,0,0,3726,0,0,0,0,16,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19374,0,53,0,0,0,6,19,285,1224,19360,0,0,0,0,1,0,3,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,37,18,290,6,0,0,278,0,385,0,0,0,113,11,0,0,0,0,0,0,0,0,0,815,1,0,0,0,10,0,0,0,0,1,141,16,0,0,1,0,0,0,0,0,3855,1,0,778,15,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,15,363,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,16,0,0,0,0,1,46,193,0,17,14,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1981,97,3 +10,0,0,5,0,41,17,0,44,0,4,0,0,2,14,0,782,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5022,41,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,428,0,0,0,0,0,1,0,0,0,0,0,2,0,0,152315,41,893,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,26477,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,910,0,0,0,0,3658,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,22519,0,53,0,0,0,8,19,286,1256,22509,0,0,0,0,1,0,3,0,0,0,0,0,0,362,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,302,5,0,0,288,0,399,0,0,0,126,17,0,0,0,0,0,0,0,0,0,869,1,0,0,0,9,0,0,0,0,2,148,17,0,0,1,0,0,0,0,0,6529,1,0,788,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,11,0,0,0,0,1,47,204,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2957,102,3 +16,0,0,6,0,40,15,0,45,6,5,0,0,2,12,0,820,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4923,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,369,0,0,0,0,0,1,0,0,0,0,0,10,0,0,139490,40,926,0,9,0,0,0,0,0,26,0,0,0,0,0,8,18,24205,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,922,0,7,0,0,3552,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,20369,0,51,0,0,0,8,20,283,1241,20359,0,0,0,0,1,0,3,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,292,6,0,0,273,0,391,0,0,0,110,19,0,0,0,0,0,0,0,0,0,905,1,0,0,0,9,0,0,0,0,1,140,16,0,0,1,0,0,0,0,0,4938,1,0,762,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,13,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,19,0,0,0,0,1,44,196,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2040,121,3 +0,0,0,3,0,14,2,0,15,0,3,0,0,0,3,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,14,6,0,0,16,0,3,0,1,0,0,3,0,0,0,0,0,116,0,0,0,0,0,1,0,0,0,0,0,3,0,0,3559,14,59,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,1015,0,0,5,0,0,0,0,0,12,0,5,0,0,2,0,17,0,1,0,0,442,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,334,0,44,0,0,0,0,3,29,212562,344,0,0,0,0,1,0,0,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,122,3,0,0,124,0,122,0,0,0,61,7,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,96,33,0,0,0,0,0,0,0,0,471,0,0,1386,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,19,217,0,1,0,0,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,646,14,3 +0,0,0,3,0,9,2,0,7,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,2,0,1,0,0,2,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,3,0,0,599,9,32,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,182,0,0,1,0,0,0,0,0,7,0,4,0,0,2,0,8,0,1,0,0,120,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,18,0,0,0,0,3,23,4,49,0,0,0,0,1,0,0,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,70,3,0,0,87,0,99,0,0,0,34,4,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,92,23,0,0,0,0,0,0,0,0,36,0,0,385,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,106,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,9,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,132,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,30,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,263,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,27,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,7,0,0,87,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,18,0,5,0,0,130,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,55,3,0,0,66,0,100,0,0,0,36,4,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,97,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,17,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,14,3 +10,0,0,5,0,41,21,0,46,0,4,0,0,2,14,0,819,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5870,41,60,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,401,0,0,0,0,0,1,0,0,0,0,0,2,0,0,137688,41,938,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23514,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,950,0,0,0,0,5638,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,19260,0,56,0,0,0,8,15,291,1644,19253,0,0,0,0,1,0,3,0,0,0,0,0,0,924,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,324,5,0,0,301,0,558,0,0,0,143,20,0,0,0,0,0,0,0,0,0,912,1,0,0,0,9,0,0,0,0,2,150,19,0,0,1,0,0,0,0,0,6922,1,0,1137,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,9,0,0,0,0,1,47,194,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3261,263,3 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,101,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1474,10,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,315,0,0,1,0,0,0,0,0,7,0,1,0,0,2,0,7,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,189,0,37,0,0,0,0,3,28,5,204,0,0,0,0,1,0,0,0,0,0,0,0,0,439,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,72,2,0,0,86,0,101,0,0,0,30,8,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,92,20,0,0,0,0,0,0,0,0,172,0,0,324,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,123,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,286,13,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1035,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,477,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,25,0,0,0,0,3,24,6,51,0,0,0,0,1,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,72,3,0,0,80,0,157,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,250,0,0,764,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,108,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,234,65,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1256,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,576,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,30,0,0,0,0,3,31,6,108,0,0,0,0,1,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,81,2,0,0,93,0,157,0,0,0,27,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,15,0,0,0,0,0,0,0,0,227,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,149,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,67,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1293,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,511,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,41,0,0,0,0,3,23,6,99,0,0,0,0,1,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,112,0,0,0,65,5,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,228,0,0,819,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,192,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,295,15,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,62,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,35,3,0,0,58,0,53,0,0,0,28,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +1,0,0,4,0,36,16,0,35,0,2,0,0,2,7,0,676,0,6,2,0,0,0,8,0,11,0,0,4,0,1,0,2,0,3,4921,36,6,0,0,27,0,1,0,1,0,0,1,0,0,0,0,1,352,0,0,0,0,0,1,0,0,0,0,0,8,0,0,128547,36,755,0,1,0,0,0,0,0,26,0,0,0,0,0,9,21,22427,0,0,3,0,0,0,0,0,93,5,2,0,0,2,0,708,0,0,0,0,3033,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,18711,0,45,0,0,0,0,3,269,1213,18698,0,0,0,0,1,0,3,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,238,4,0,0,265,0,281,0,0,0,109,10,0,0,0,0,0,0,0,0,0,744,1,0,0,0,10,0,0,0,0,0,138,15,0,0,0,0,0,0,0,0,3634,1,0,771,15,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,2,15,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,0,0,0,0,0,1,39,131,0,2,14,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1925,33,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1224,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,517,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,28,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,92,0,167,0,0,0,29,7,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,17,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,34,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,256,153,3 +1,0,0,6,0,34,7,0,35,0,5,0,0,7,6,0,541,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,186,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18394,34,609,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4259,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,600,0,0,1,0,2632,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,645,0,46,0,0,0,1,4,256,1159,631,0,0,0,0,1,0,3,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,186,6,0,0,201,0,269,0,0,0,58,6,0,0,0,0,0,0,0,0,0,607,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3301,1,0,810,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,108,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1878,71,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,130,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,19,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,30,0,0,0,0,3,30,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,78,2,0,0,94,0,262,0,0,0,22,10,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,102,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,27,3 +1,0,0,6,0,35,7,0,36,0,5,0,0,7,6,0,591,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,173,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18757,35,660,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4221,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,650,0,0,1,0,2825,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,701,0,47,0,0,0,1,4,260,1161,687,0,0,0,0,1,0,3,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,189,6,0,0,204,0,272,0,0,0,58,5,0,0,0,0,0,0,0,0,0,658,1,0,0,0,10,0,0,0,0,0,118,15,0,0,6,0,0,0,0,0,3341,1,0,848,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,112,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1824,78,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,2,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,91,0,252,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,28,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,2,3 +8,0,0,3,0,33,4,0,21,0,2,0,0,2,2,0,19,0,7,3,0,0,0,5,0,8,0,0,3,0,5,0,0,0,5,0,33,6,0,0,28,0,0,0,1,0,0,2,0,0,0,0,5,139,0,0,0,0,0,1,0,0,0,0,0,2,0,0,669,33,60,0,7,0,0,0,0,0,12,0,0,0,0,0,7,14,129,0,0,5,0,0,0,0,0,75,5,3,0,0,2,0,35,0,0,0,0,476,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,100,0,64,0,0,0,8,7,197,22,103,0,0,0,0,1,0,3,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,10,146,3,0,0,157,0,238,0,0,0,44,4,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,114,21,0,0,0,0,0,0,0,0,664,0,0,42,2,0,1,1,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,10,0,0,0,0,1,38,157,0,8,8,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,201,31,3 +3546,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,115,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1748,11,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,581,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,9,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3546,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,168,0,66,0,0,0,0,3,31,9,167,0,0,0,0,1,0,0,0,0,0,0,0,0,9779,0,0,0,0,0,0,0,0,0,0,0,0,6,0,6,0,0,0,0,0,0,8,3,100,2,0,0,131,0,241,0,0,0,61,9,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,91,43,0,0,0,0,0,0,0,0,253,0,0,928,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,372,46,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,50,0,0,0,28,4,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +6,0,0,6,0,38,7,0,33,4,5,0,0,2,9,0,501,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,6,898,38,36,0,0,39,0,3,0,1,0,0,3,0,0,0,0,4,168,1,0,0,0,0,1,0,0,0,0,0,9,0,0,30270,38,584,0,7,0,0,0,0,0,22,0,0,0,0,0,8,20,6138,0,0,6,0,0,0,0,0,94,5,6,0,0,2,0,571,0,6,0,0,3177,0,0,0,0,24,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,2708,0,70,0,0,0,6,19,244,1134,2703,0,0,0,0,1,0,4,0,0,0,0,0,0,468,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,19,216,6,0,0,216,0,315,0,0,0,75,10,0,0,0,0,0,0,0,0,0,563,1,0,0,0,9,0,0,0,0,1,121,16,0,0,1,0,0,0,0,0,3103,1,0,877,5,0,1,1,1,0,0,0,8,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,5,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,16,0,0,0,0,1,44,129,0,17,12,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1821,187,3 +7,0,0,5,0,41,21,0,43,0,4,0,0,2,12,0,711,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,6,5868,41,42,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,436,0,0,0,0,0,1,0,0,0,0,0,2,0,0,146527,41,829,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,24962,0,0,6,0,0,0,0,0,96,5,2,0,0,2,0,843,0,0,0,0,5946,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,20716,0,55,0,0,0,8,16,290,1627,20708,0,0,0,0,1,0,3,0,0,0,0,0,0,930,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,308,5,0,0,293,0,435,0,0,0,133,28,0,0,0,0,0,0,0,0,0,799,1,0,0,0,9,0,0,0,0,2,143,19,0,0,1,0,0,0,0,0,6715,1,0,1142,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,364,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,10,0,0,0,2,1,47,216,0,20,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3036,141,3 +2,0,0,3,0,9,2,0,18,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,2,0,0,896,9,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,450,0,0,1,0,0,0,0,0,8,0,1,0,0,2,0,15,0,0,0,0,93,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,32,0,24,0,0,0,0,3,23,4,44,0,0,0,0,1,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,75,4,0,0,78,0,106,0,0,0,18,2,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,91,8,0,0,0,0,0,0,0,0,781,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,94,0,1,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,225,17,3 +16,0,0,5,0,39,21,0,44,0,4,0,0,2,15,0,792,0,6,1,0,0,0,8,0,10,0,0,11,0,5,0,0,0,5,5704,39,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,335,0,0,0,0,0,1,0,0,0,0,0,2,0,0,111191,39,909,0,13,0,0,0,0,0,32,0,0,0,0,0,8,18,18946,0,0,5,0,0,0,0,0,111,5,2,0,0,2,0,901,0,0,0,0,5735,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,14815,0,75,0,0,0,8,11,289,1636,14804,0,0,0,0,1,0,3,0,0,0,0,0,0,915,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,390,5,0,0,291,0,914,0,0,0,134,21,0,0,0,0,0,0,0,0,0,884,1,0,0,0,9,0,0,0,0,5,145,19,0,0,1,0,0,0,0,0,15938,1,0,1142,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,16,0,0,0,8,1,44,240,0,14,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5931,101,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,19,0,0,0,0,0,1,0,0,0,0,0,6,0,0,195,12,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,145,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,30,0,0,0,2,4,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,66,3,0,0,65,0,85,0,0,0,35,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,94,22,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,32,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,38,3 +0,0,0,3,0,10,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,51,10,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,16,0,19,0,0,0,0,3,27,6,30,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,61,0,55,0,0,0,28,7,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,92,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,65,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,25,4,0,20,0,2,0,0,2,2,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,1,0,25,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,1,142,0,0,0,0,0,1,0,0,0,0,0,2,0,0,614,25,52,0,1,0,0,0,0,0,12,0,0,0,0,0,7,14,99,0,0,1,0,0,0,0,0,73,5,3,0,0,2,0,28,0,0,0,0,392,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,77,0,48,0,0,0,0,3,177,10,81,0,0,0,0,1,0,3,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,122,3,0,0,133,0,169,0,0,0,32,3,0,0,0,0,0,0,0,0,0,53,1,0,0,0,8,0,0,0,0,0,106,21,0,0,0,0,0,0,0,0,69,0,0,41,2,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,151,0,2,8,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,150,29,3 +8,0,0,3,0,20,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,8,0,20,6,0,0,30,0,5,0,1,0,0,5,0,0,0,0,0,78,0,0,0,0,0,1,0,0,0,0,0,6,0,0,40960,20,65,0,4,0,0,0,0,0,22,0,0,0,1,0,1,7,6953,0,0,8,0,0,0,0,0,16,0,9,0,0,2,0,18,0,4,0,0,4342,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4204,0,74,0,0,0,0,3,39,7839,4217,0,0,0,0,1,0,0,0,0,0,0,0,0,8389,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,170,3,0,0,149,0,232,0,0,0,83,17,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,102,44,0,0,0,0,0,0,0,0,2067,0,0,9712,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,1,28,228,0,4,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2924,43,3 +2,0,0,2,0,12,3,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2040,12,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,891,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,325,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,242,0,27,0,0,0,0,3,29,597,257,0,0,0,0,1,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,68,2,0,0,101,0,125,0,0,0,42,7,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,92,31,0,0,0,0,0,0,0,0,405,0,0,759,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,200,0,1,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,435,7,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,141,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2504,10,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,778,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,270,0,92,0,0,0,0,3,27,9,267,0,0,0,0,1,0,0,0,0,0,0,0,0,9806,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,119,2,0,0,132,0,255,0,0,0,65,6,0,0,0,0,0,42,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,297,0,0,1052,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,279,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,479,47,3 +4,0,0,5,0,35,21,0,43,0,4,0,0,2,7,0,735,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,257,0,0,0,0,0,1,0,0,0,0,0,2,0,0,115714,35,831,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19706,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,794,0,0,0,0,5095,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15568,0,65,0,0,0,0,3,281,1597,15557,0,0,0,0,1,0,3,0,0,0,0,0,0,834,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,346,5,0,0,276,0,878,0,0,0,120,18,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8560,1,0,1142,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,226,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3234,87,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,212,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,138,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,50,3,0,0,63,0,93,0,0,0,33,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +0,0,0,2,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,1,0,0,61,10,20,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,6,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,20,0,0,0,0,3,24,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,38,2,0,0,73,0,76,0,0,0,43,1,0,0,0,0,0,0,0,0,0,23,1,0,0,0,2,0,0,0,0,0,92,36,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,74,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,6,3 +4,0,0,5,0,35,21,0,41,0,4,0,0,2,7,0,665,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,320,0,0,0,0,0,1,0,0,0,0,0,2,0,0,120768,35,759,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20741,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,724,0,0,0,0,5316,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,16438,0,62,0,0,0,0,3,281,1597,16427,0,0,0,0,1,0,3,0,0,0,0,0,0,838,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,328,5,0,0,272,0,864,0,0,0,116,14,0,0,0,0,0,0,0,0,0,746,1,0,0,0,9,0,0,0,0,0,134,19,0,0,1,0,0,0,0,0,8502,1,0,1142,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,199,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3299,86,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,4,0,0,58,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3546,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,116,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1851,10,82,0,1,0,0,0,0,0,29,0,0,0,0,0,1,12,616,0,0,0,0,0,0,0,0,17,0,11,0,0,2,0,16,0,0,0,0,264,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3546,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,174,0,68,0,0,0,0,3,27,9,173,0,0,0,0,1,0,0,0,0,0,0,0,0,9943,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,3,104,2,0,0,128,0,251,0,0,0,61,8,0,0,0,0,0,1,0,0,0,44,1,0,0,0,2,0,0,0,0,1,90,43,0,0,0,0,0,0,0,0,257,0,0,944,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,276,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,381,50,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,11,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +4,0,0,3,0,11,2,0,17,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,1,0,11,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,0,61,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1847,11,47,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,600,0,0,1,0,0,0,0,0,11,0,2,0,0,2,0,21,0,1,0,0,145,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,134,0,27,0,0,0,0,3,31,32,140,0,0,0,0,1,0,0,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,80,3,0,0,96,0,172,0,0,0,27,6,0,0,0,0,0,0,0,0,0,48,1,0,0,0,2,0,0,0,0,1,94,18,0,0,0,0,0,0,0,0,870,0,0,984,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,12,153,0,4,0,0,2,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,336,11,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,5316,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,66,0,0,0,0,0,1,0,0,0,0,0,2,0,0,455,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,65,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,474,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,36,10,89,3,0,0,83,0,272,0,0,0,13,9,0,0,0,0,0,0,0,0,0,38,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,5378,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,24,3 +4,0,0,5,0,38,21,0,45,0,4,0,0,2,7,0,771,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,354,0,0,0,0,0,1,0,0,0,0,0,2,0,0,119179,38,877,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,20381,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,839,0,0,0,0,6285,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,16139,0,70,0,0,0,6,9,284,1620,16122,0,0,0,0,1,0,3,0,0,0,0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,625,5,0,0,287,0,943,0,0,0,132,86,0,0,0,0,0,0,0,0,0,856,1,0,0,0,9,0,0,0,0,4,143,19,0,0,1,0,0,0,0,0,9087,1,0,1125,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,228,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3429,144,3 +8,0,0,3,0,20,2,0,7,3,3,0,0,0,6,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,8,0,20,6,0,0,28,0,5,0,1,0,0,5,0,0,0,0,0,82,0,0,0,0,0,1,0,0,0,0,0,6,0,0,31884,20,59,0,1,0,0,0,0,0,21,0,0,0,1,0,1,7,6603,0,0,8,0,0,0,0,0,13,0,8,0,0,2,0,14,0,4,0,0,484,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4008,0,76,0,0,0,0,3,42,216,4028,0,0,0,0,1,0,0,0,0,0,0,0,0,8151,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,141,3,0,0,147,0,228,0,0,0,81,9,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,102,43,0,0,0,0,0,0,0,0,1995,0,0,9286,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,0,0,0,0,0,1,28,251,0,1,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2776,77,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,54,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,54,0,0,0,28,5,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,2,0,19,3,0,29,0,2,0,0,0,2,0,75,0,6,1,0,0,0,1,0,0,36,0,0,0,13,0,0,0,3,0,19,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,12,70,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2296,19,152,0,13,0,0,0,0,0,7,0,0,0,0,0,1,6,872,0,0,3,0,0,0,0,0,56,0,2,0,0,2,0,234,0,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,258,0,43,0,0,0,24,53,33,644,272,0,0,0,0,1,0,0,0,0,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,118,2,0,0,132,0,217,0,0,0,47,7,0,0,0,0,0,0,0,0,0,117,1,0,0,0,2,0,0,0,0,13,101,31,0,0,0,0,0,0,0,0,530,0,0,786,0,0,1,0,1,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,373,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,12,0,0,0,0,1,22,201,0,49,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,456,15,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1229,13,36,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,556,0,0,2,0,0,0,0,0,10,0,1,0,0,2,0,10,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,88,0,168,0,0,0,25,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,791,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,15,73,0,3,0,0,2,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,266,144,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1037,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,479,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,97,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,23,0,0,0,0,3,24,6,51,0,0,0,0,1,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,73,3,0,0,80,0,153,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,249,0,0,764,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,108,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,229,64,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,54,0,0,0,28,5,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +10,0,0,5,0,42,21,0,43,0,4,0,0,2,14,0,727,0,6,1,0,0,0,8,0,11,9,0,10,0,4,0,0,0,6,5868,42,38,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,372,0,0,0,0,0,1,0,0,0,0,0,2,0,0,146094,42,850,0,12,0,0,0,0,0,32,0,0,0,0,0,8,18,24714,0,0,6,0,0,0,0,0,98,5,2,0,0,2,0,864,0,0,0,0,5543,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,20593,0,58,0,0,0,8,17,294,1630,20583,0,0,0,0,1,0,3,0,0,0,0,0,0,954,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,282,5,0,0,294,0,400,0,0,0,131,18,0,0,0,0,0,0,0,0,0,817,1,0,0,0,9,0,0,0,0,2,142,19,0,0,1,0,0,0,0,0,6524,1,0,1138,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,12,0,0,0,2,1,48,208,0,22,12,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3151,188,3 +1,0,0,6,0,35,7,0,34,0,5,0,0,7,6,0,521,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,35,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,167,0,0,0,0,0,1,0,0,0,0,0,5,0,0,19003,35,588,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4358,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,580,0,0,1,0,3044,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,715,0,46,0,0,0,1,4,263,1158,700,0,0,0,0,1,0,3,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,192,6,0,0,204,0,270,0,0,0,59,4,0,0,0,0,0,0,0,0,0,586,1,0,0,0,10,0,0,0,0,0,119,15,0,0,6,0,0,0,0,0,3301,1,0,844,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,5,0,0,0,0,1,36,104,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1897,77,3 +4,0,0,6,0,41,20,0,47,4,5,0,0,2,8,0,846,0,6,1,0,0,0,9,0,12,9,0,7,0,3,0,0,0,5,5767,41,5061,0,0,35,0,1,0,1,0,0,1,0,0,0,0,4,376,0,0,0,0,0,1,0,0,0,0,0,8,0,0,157981,41,958,0,7,0,0,0,0,0,30,0,0,0,0,0,9,21,26782,0,0,5,0,0,0,0,0,97,5,2,0,0,2,0,939,0,5,0,0,5021,0,0,0,0,16,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,22669,0,55,0,0,0,6,18,289,1599,22655,0,0,0,0,1,0,3,0,0,0,0,0,0,920,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,36,18,292,6,0,0,288,0,398,0,0,0,125,15,0,0,0,0,0,0,0,0,0,934,1,0,0,0,10,0,0,0,0,1,141,18,0,0,1,0,0,0,0,0,9326,1,0,1127,17,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,17,363,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,16,0,0,0,0,1,46,229,0,17,14,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2190,93,3 +2,0,0,2,0,19,3,0,29,0,2,0,0,0,2,0,75,0,6,1,0,0,0,1,0,0,36,0,0,0,13,0,0,0,3,0,19,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,12,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2278,19,151,0,13,0,0,0,0,0,7,0,0,0,0,0,1,6,867,0,0,3,0,0,0,0,0,56,0,2,0,0,2,0,233,0,0,0,0,601,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,259,0,41,0,0,0,24,52,33,647,273,0,0,0,0,1,0,0,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,115,2,0,0,132,0,212,0,0,0,47,8,0,0,0,0,0,0,0,0,0,117,1,0,0,0,2,0,0,0,0,13,101,31,0,0,0,0,0,0,0,0,531,0,0,781,0,0,1,0,1,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,373,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,12,0,0,0,0,1,22,201,0,49,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,452,15,3 +2,0,0,5,0,36,6,0,39,1,5,0,0,6,5,0,656,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,2,898,36,6,0,0,41,0,1,0,1,0,0,2,0,0,0,0,1,155,0,0,0,0,0,1,0,0,0,0,0,2,0,0,23167,36,723,0,4,0,0,0,0,0,15,0,0,0,0,0,8,20,5066,0,0,2,0,0,0,0,0,189,20,4,0,0,2,0,696,0,0,1,0,1689,0,0,0,0,0,2,4,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,1741,0,39,0,0,0,0,3,264,344,1729,0,0,0,0,1,0,6,0,0,0,0,0,0,2106,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,19,198,5,0,0,213,0,387,0,0,0,67,7,0,0,0,0,0,0,0,0,0,723,1,0,0,0,9,0,0,0,0,0,117,27,0,0,6,0,0,0,0,0,3519,1,0,3018,5,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,5,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,3,0,0,0,0,1,38,134,0,5,12,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1987,138,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,11,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,7,0,0,212,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,174,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,57,3,0,0,68,0,101,0,0,0,38,4,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,25,0,0,0,0,0,0,0,0,599,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,11,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,231,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,148,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,56,3,0,0,73,0,68,0,0,0,43,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,92,36,0,0,0,0,0,0,0,0,603,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +4,0,0,5,0,39,21,0,46,0,4,0,0,2,7,0,827,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5704,39,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,290,0,0,0,0,0,1,0,0,0,0,0,2,0,0,110342,39,934,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,18721,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,895,0,0,0,0,6696,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,14637,0,72,0,0,0,6,9,288,1615,14620,0,0,0,0,1,0,3,0,0,0,0,0,0,833,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,591,5,0,0,287,0,947,0,0,0,128,84,0,0,0,0,0,0,0,0,0,913,1,0,0,0,9,0,0,0,0,4,141,19,0,0,1,0,0,0,0,0,9960,1,0,1138,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,12,0,0,0,6,1,43,238,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3641,151,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1289,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,524,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,87,0,39,0,0,0,0,3,23,6,97,0,0,0,0,1,0,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,79,2,0,0,124,0,119,0,0,0,65,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,225,0,0,806,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,360,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,191,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,283,14,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +2,0,0,3,0,12,3,0,16,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,36,0,0,10,0,0,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,3,0,0,320,12,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,56,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,29,0,1,0,0,175,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,37,0,0,0,0,3,30,6,59,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,4,95,3,0,0,101,0,201,0,0,0,37,9,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,95,20,0,0,0,0,0,0,0,0,79,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,140,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,88,14,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,29,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,259,0,0,0,22,8,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,28,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,54,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,11,2,0,15,2,3,0,0,0,5,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,3,0,2,0,11,6,0,0,14,0,0,0,1,0,0,4,0,0,0,0,0,87,0,0,0,0,0,1,0,0,0,0,0,5,0,0,690,11,62,0,1,0,0,0,0,0,17,0,0,0,0,0,1,7,112,0,0,2,0,0,0,0,0,12,0,5,0,0,2,0,21,0,3,0,0,125,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,103,0,41,0,0,0,0,3,28,10,115,0,0,0,0,1,0,0,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,6,76,3,0,0,114,0,133,0,0,0,50,4,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,0,91,33,0,0,0,0,0,0,0,0,58,0,0,148,0,0,1,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,229,0,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,133,21,3 +4,0,0,5,0,33,21,0,43,0,4,0,0,2,7,0,696,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,33,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,254,0,0,0,0,0,1,0,0,0,0,0,2,0,0,128101,33,792,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,21779,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,755,0,0,0,0,5096,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,17657,0,63,0,0,0,0,3,266,1593,17648,0,0,0,0,1,0,3,0,0,0,0,0,0,813,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,325,5,0,0,269,0,866,0,0,0,118,17,0,0,0,0,0,0,0,0,0,779,1,0,0,0,9,0,0,0,0,0,134,19,0,0,1,0,0,0,0,0,8059,1,0,1123,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,0,0,0,0,0,1,34,218,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3053,82,3 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,3,0,0,138,9,21,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,1,0,0,0,0,0,6,0,0,0,0,2,0,8,0,1,0,0,108,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,21,0,0,0,0,3,23,5,25,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,48,3,0,0,72,0,66,0,0,0,42,3,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,0,91,38,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,73,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,7,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,7,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,50,0,0,0,28,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,11,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,3,0,1,0,11,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1147,11,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,492,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,52,0,30,0,0,0,0,3,29,72,70,0,0,0,0,1,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,2,0,0,84,0,126,0,0,0,25,3,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,91,17,0,0,0,0,0,0,0,0,219,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,93,0,1,0,0,2,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,259,8,3 +4,0,0,5,0,34,21,0,43,0,4,0,0,2,7,0,715,0,6,1,0,0,0,8,0,11,0,0,2,0,1,0,0,0,1,5704,34,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,263,0,0,0,0,0,1,0,0,0,0,0,2,0,0,122457,34,811,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20852,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,774,0,0,0,0,5184,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,16808,0,65,0,0,0,0,3,274,1589,16798,0,0,0,0,1,0,3,0,0,0,0,0,0,800,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,338,5,0,0,274,0,872,0,0,0,120,19,0,0,0,0,0,0,0,0,0,798,1,0,0,0,9,0,0,0,0,0,137,19,0,0,1,0,0,0,0,0,8446,1,0,1124,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,35,199,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3198,88,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2133,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,862,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,438,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,248,0,32,0,0,0,8,19,29,612,257,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,82,2,0,0,110,0,176,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,449,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,2,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,439,8,3 +0,0,0,3,0,11,2,0,9,0,3,0,0,0,3,0,20,0,6,1,0,0,0,1,0,0,3,0,1,0,1,1,0,0,3,0,11,6,0,0,8,0,2,0,1,0,0,3,0,0,0,0,1,41,0,0,0,0,0,1,0,0,0,0,0,3,0,0,894,11,52,0,3,0,0,0,0,0,12,0,0,0,0,0,1,6,212,0,0,3,0,0,0,0,0,14,0,6,0,0,2,0,28,0,1,0,0,183,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,95,0,29,0,0,0,2,8,26,13,94,0,0,0,0,1,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,81,3,0,0,101,0,159,0,0,0,48,5,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,2,94,28,0,0,0,0,0,0,0,0,59,0,0,423,0,0,1,0,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,182,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,4,0,0,0,0,1,14,136,0,6,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,91,12,3 +5,0,0,4,0,37,12,0,38,0,3,0,0,2,3,0,718,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2843,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,274,0,0,0,0,0,1,0,0,0,0,0,4,0,0,82790,37,808,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,14789,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,756,0,1,0,0,3204,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,11060,0,44,0,0,0,2,7,266,1206,11036,0,0,0,0,1,0,3,0,0,0,0,0,0,772,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,230,4,0,0,279,0,347,0,0,0,127,10,0,0,0,0,0,0,0,0,0,782,1,0,0,0,10,0,0,0,0,1,131,36,0,0,0,0,0,0,0,0,4282,1,0,1609,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,219,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1950,48,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,7,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +4,0,0,3,0,13,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,13,38,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,5,0,0,370,13,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,209,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,39,0,0,0,0,3,31,7,61,0,0,0,0,1,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,104,3,0,0,104,0,214,0,0,0,40,10,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,96,20,0,0,0,0,0,0,0,0,81,0,0,44,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,17,138,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,93,14,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,123,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,133,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,59,3,0,0,72,0,90,0,0,0,41,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,35,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,10,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,21,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,29,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,76,2,0,0,92,0,252,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,27,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,109,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,24,3 +4,0,0,5,0,35,21,0,41,0,4,0,0,2,7,0,665,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,56,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,239,0,0,0,0,0,1,0,0,0,0,0,2,0,0,121474,35,759,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20787,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,724,0,0,0,0,5378,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,16580,0,63,0,0,0,0,3,281,1578,16569,0,0,0,0,1,0,3,0,0,0,0,0,0,812,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,343,5,0,0,273,0,1009,0,0,0,117,16,0,0,0,0,0,0,0,0,0,746,1,0,0,0,9,0,0,0,0,0,135,19,0,0,1,0,0,0,0,0,8400,1,0,1128,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,265,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3192,98,3 +10,0,0,5,0,42,22,0,44,0,4,0,0,2,14,0,764,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5036,42,44,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,385,0,0,0,0,0,1,0,0,0,0,0,2,0,0,130150,42,896,0,9,0,0,0,0,0,38,0,0,0,0,0,8,18,22196,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,904,0,0,0,0,5096,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,18004,0,56,0,0,0,8,16,304,1736,17997,0,0,0,0,1,0,3,0,0,0,0,0,0,898,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,300,5,0,0,300,0,434,0,0,0,138,25,0,0,0,0,0,0,0,0,0,856,1,0,0,0,9,0,0,0,0,2,143,22,0,0,1,0,0,0,0,0,6593,1,0,1112,19,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,19,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,9,0,0,0,0,1,48,183,0,19,12,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3160,264,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,132,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,76,2,0,0,91,0,243,0,0,0,22,4,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,24,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,60,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1215,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,538,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,90,0,155,0,0,0,27,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,229,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,268,149,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,124,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,137,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,57,3,0,0,72,0,90,0,0,0,41,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,605,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,36,3 +3,0,0,2,0,14,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,14,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1236,14,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,557,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,30,0,0,0,0,3,31,6,107,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,93,0,158,0,0,0,27,8,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,96,15,0,0,0,0,0,0,0,0,229,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,269,149,3 +16,0,0,6,0,39,15,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4925,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,360,0,0,0,0,0,1,0,0,0,0,0,10,0,0,136748,39,871,0,10,0,0,0,0,0,26,0,0,0,0,0,8,18,23687,0,0,4,0,0,0,0,0,92,5,1,0,0,2,0,868,0,7,0,0,3673,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19964,0,52,0,0,0,8,20,279,1240,19954,0,0,0,0,1,0,3,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,288,6,0,0,273,0,402,0,0,0,113,18,0,0,0,0,0,0,0,0,0,847,1,0,0,0,9,0,0,0,0,1,141,16,0,0,1,0,0,0,0,0,4793,1,0,782,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,13,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,20,0,0,0,2,1,43,183,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2016,141,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,29,0,0,0,0,0,1,0,0,0,0,0,7,0,0,210,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,135,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,27,0,0,0,2,4,26,7,38,0,0,0,0,1,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,57,3,0,0,69,0,86,0,0,0,39,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,94,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,37,3 +9,0,0,6,0,39,21,0,45,6,5,0,0,2,12,0,761,0,6,1,0,0,0,8,0,11,9,0,6,0,3,0,0,0,4,5879,39,42,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,355,0,0,0,0,0,1,0,0,0,0,0,10,0,0,137303,39,879,0,7,0,0,0,0,0,32,0,0,0,0,0,8,18,23201,0,0,4,0,0,0,0,0,90,5,2,0,0,2,0,867,0,7,0,0,5718,0,0,0,0,9,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19171,0,53,0,0,0,6,19,285,1628,19161,0,0,0,0,1,0,3,0,0,0,0,0,0,940,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,344,6,0,0,291,0,465,0,0,0,131,29,0,0,0,0,0,0,0,0,0,852,1,0,0,0,9,0,0,0,0,1,145,19,0,0,1,0,0,0,0,0,4814,1,0,1145,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,16,0,0,0,0,1,43,228,0,17,12,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2288,128,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,6,0,0,210,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,128,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,52,3,0,0,63,0,93,0,0,0,33,3,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,11,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,54,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,15,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,39,2,0,0,44,0,118,0,0,0,13,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,15,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,36,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,27,3 +4,0,0,5,0,35,21,0,43,0,5,0,0,2,6,0,735,0,6,1,0,0,0,8,0,9,0,0,3,0,2,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,275,0,0,0,0,0,1,0,0,0,0,0,2,0,0,120355,35,831,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20475,0,0,1,0,0,0,0,0,87,5,1,0,0,2,0,794,0,0,0,0,5423,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,16307,0,65,0,0,0,0,3,278,1599,16297,0,0,0,0,1,0,3,0,0,0,0,0,0,834,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,372,5,0,0,276,0,879,0,0,0,120,14,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8592,1,0,1134,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,199,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3257,87,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,73,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,65,0,59,0,0,0,35,7,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,12,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,4,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1495,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,98,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,616,0,0,0,0,0,19,41,236,0,0,0,0,0,0,0,0,0,0,0,0,0,1654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,23,2,0,0,63,0,88,0,0,0,48,2,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,5,45,0,0,0,0,0,0,0,0,330,0,0,404,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,4,114,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1414,5,3 +0,0,0,3,0,11,2,0,9,0,3,0,0,0,3,0,20,0,6,1,0,0,0,1,0,0,3,0,1,0,1,1,0,0,3,0,11,6,0,0,8,0,2,0,1,0,0,3,0,0,0,0,1,42,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1006,11,52,0,3,0,0,0,0,0,12,0,0,0,0,0,1,6,251,0,0,3,0,0,0,0,0,14,0,6,0,0,2,0,28,0,1,0,0,126,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,101,0,28,0,0,0,2,8,26,13,100,0,0,0,0,1,0,0,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,79,3,0,0,101,0,175,0,0,0,48,8,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,2,94,28,0,0,0,0,0,0,0,0,61,0,0,469,0,0,1,0,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,182,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,4,0,0,0,0,1,14,136,0,6,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,92,8,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,5,0,0,115,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,135,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,9,34,0,0,0,0,1,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,51,3,0,0,68,0,62,0,0,0,37,3,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,30,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +2,0,0,2,0,9,2,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,1,0,0,896,9,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,443,0,0,1,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,88,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,33,0,22,0,0,0,0,3,23,4,45,0,0,0,0,1,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,65,2,0,0,72,0,139,0,0,0,20,3,0,0,0,0,0,0,0,0,0,36,1,0,0,0,2,0,0,0,0,0,89,12,0,0,0,0,0,0,0,0,782,0,0,731,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,79,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,226,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,91,0,259,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,108,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,26,3 +16,0,0,6,0,39,15,0,44,6,5,0,0,2,12,0,762,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4923,39,160,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,382,0,0,0,0,0,1,0,0,0,0,0,10,0,0,131428,39,868,0,10,0,0,0,0,0,26,0,0,0,0,0,8,18,22880,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,865,0,7,0,0,3776,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,18963,0,57,0,0,0,8,20,279,1244,18953,0,0,0,0,1,0,3,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,314,6,0,0,271,0,492,0,0,0,113,21,0,0,0,0,0,0,0,0,0,846,1,0,0,0,9,0,0,0,0,1,138,16,0,0,1,0,0,0,0,0,4895,1,0,766,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,13,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,20,0,0,0,2,1,43,209,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2037,146,3 +0,0,0,2,0,8,2,0,8,0,4,0,0,0,4,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,1,0,0,51,8,32,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,16,0,0,0,0,0,0,0,0,6,0,1,0,0,2,0,13,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,20,0,15,0,0,0,0,3,21,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,55,2,0,0,64,0,70,0,0,0,13,0,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,6,0,0,0,0,0,0,0,0,25,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,33,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,5,3 +4,0,0,3,0,10,2,0,4,1,3,0,0,0,4,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,4,0,0,105,10,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,95,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,25,0,0,0,0,3,24,4,33,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,5,56,3,0,0,68,0,70,0,0,0,35,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,92,31,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,65,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,30,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,5,0,35,21,0,43,0,4,0,0,2,7,0,735,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,262,0,0,0,0,0,1,0,0,0,0,0,2,0,0,128498,35,831,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,21949,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,794,0,0,0,0,5295,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,17672,0,68,0,0,0,0,3,281,1592,17661,0,0,0,0,1,0,3,0,0,0,0,0,0,808,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,378,5,0,0,276,0,876,0,0,0,120,17,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8216,1,0,1127,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,176,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3127,93,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,87,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,106,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,2,3,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,46,3,0,0,57,0,87,0,0,0,27,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,8,3 +1,0,0,3,0,13,3,0,16,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,13,36,0,0,10,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,3,0,0,394,13,40,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,57,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,28,0,1,0,0,236,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,50,0,38,0,0,0,0,3,34,6,60,0,0,0,0,1,0,0,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,119,3,0,0,104,0,245,0,0,0,37,13,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,96,20,0,0,0,0,0,0,0,0,77,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,16,136,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,92,15,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +6,0,0,3,0,20,2,0,8,5,3,0,0,0,8,0,22,0,7,5,0,0,0,1,0,1,0,0,9,0,4,0,0,0,9,0,20,6,6,0,39,0,8,0,1,0,0,8,0,0,0,0,8,115,0,0,0,0,0,1,0,0,0,0,0,8,0,0,30195,20,102,0,14,0,0,0,0,0,29,0,0,0,1,0,1,10,7497,0,0,9,0,0,0,0,0,37,0,13,0,0,2,0,36,0,6,0,0,598,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4033,0,109,0,0,0,16,19,39,278,4056,0,0,0,0,1,0,0,0,0,0,0,0,0,3578,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,10,9,165,3,0,0,156,0,294,0,0,0,96,36,0,0,0,0,0,0,0,0,0,50,1,0,0,0,6,0,0,0,0,1,102,47,0,0,0,0,0,0,0,0,3027,0,0,8952,0,2,1,0,0,0,0,0,26,0,6,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,5,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,21,0,0,0,0,1,29,255,0,14,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3816,81,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,56,0,0,0,28,5,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,2,0,11,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1351,11,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,539,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,41,0,0,0,0,3,31,6,103,0,0,0,0,1,0,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,85,2,0,0,130,0,121,0,0,0,65,12,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,93,49,0,0,0,0,0,0,0,0,229,0,0,822,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,193,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,300,13,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,10,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,22,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,28,0,0,0,0,3,26,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,92,0,255,0,0,0,22,8,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,27,0,0,16,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,107,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,28,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,762,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,366,0,0,0,0,0,1,0,0,0,0,0,10,0,0,132070,39,872,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,23148,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,867,0,7,0,0,3596,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,19169,0,51,0,0,0,6,19,282,1253,19159,0,0,0,0,1,0,3,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,285,6,0,0,275,0,386,0,0,0,113,18,0,0,0,0,0,0,0,0,0,848,1,0,0,0,9,0,0,0,0,1,139,17,0,0,1,0,0,0,0,0,4877,1,0,780,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,204,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2084,133,3 +12,0,0,5,0,39,36,0,51,0,4,0,0,2,13,0,1163,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,2,10260,39,56,0,0,22,0,1,0,1,0,0,2,0,0,0,0,1,428,0,0,0,0,0,1,0,0,0,0,0,2,0,0,188615,39,1330,0,4,0,0,0,0,0,56,0,0,0,0,0,8,19,35649,0,0,2,0,0,0,0,0,91,5,4,1,0,2,0,1282,0,0,0,0,6901,0,0,0,0,5,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,12,12,12,0,0,0,33318,0,52,0,0,0,0,3,318,1344,33302,0,0,0,0,1,0,4,0,0,0,0,0,0,1527,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,360,5,0,0,348,0,463,0,0,0,180,48,0,0,0,0,0,0,0,0,0,1275,1,0,0,0,9,0,0,0,0,1,153,29,0,0,1,0,0,0,0,0,9175,1,0,781,26,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,26,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,3,0,0,0,0,1,41,233,0,5,12,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2727,82,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1086,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,495,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,23,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,72,3,0,0,80,0,155,0,0,0,27,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,252,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,108,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,233,64,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,34,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,71,0,0,0,0,0,1,0,0,0,0,0,2,0,0,489,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,68,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,563,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1071,3,0,0,1065,0,296,0,0,0,14,7,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1084,9,0,0,0,0,0,0,0,0,103,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,30,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,58,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,2,0,9,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,1,0,0,268,9,30,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,36,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,6,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,27,0,0,0,0,3,23,5,52,0,0,0,0,1,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,60,2,0,0,103,0,117,0,0,0,51,1,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,41,0,0,0,0,0,0,0,0,34,0,0,49,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,114,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,14,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,212,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,118,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,53,3,0,0,63,0,90,0,0,0,33,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,11,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1057,10,34,0,0,0,0,0,0,0,7,0,0,0,0,0,1,6,471,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,109,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,22,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,69,3,0,0,80,0,146,0,0,0,27,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,252,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,105,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,234,63,3 +4,0,0,3,0,12,2,0,5,2,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,15,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,123,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,130,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,28,0,0,0,2,3,26,6,37,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,59,3,0,0,72,0,90,0,0,0,41,1,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,95,28,0,0,0,0,0,0,0,0,605,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,44,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,35,3 +4,0,0,5,0,34,21,0,45,0,4,0,0,2,7,0,784,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,34,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,252,0,0,0,0,0,1,0,0,0,0,0,2,0,0,115481,34,882,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19700,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,843,0,0,0,0,5143,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,15605,0,62,0,0,0,0,3,272,1595,15595,0,0,0,0,1,0,3,0,0,0,0,0,0,828,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,352,5,0,0,270,0,887,0,0,0,118,14,0,0,0,0,0,0,0,0,0,869,1,0,0,0,9,0,0,0,0,0,135,19,0,0,1,0,0,0,0,0,8611,1,0,1135,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,35,226,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3218,86,3 +2,0,0,5,0,34,19,0,43,0,4,0,0,2,7,0,747,0,7,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,1,5704,34,42,0,0,22,0,0,0,1,0,0,1,0,0,0,0,1,322,0,0,0,0,0,1,0,0,0,0,0,2,0,0,107162,34,847,0,2,0,0,0,0,0,32,0,0,0,0,0,8,17,17405,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,806,0,0,0,0,3106,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,16216,0,40,0,0,0,0,3,272,766,16199,0,0,0,0,1,0,3,0,0,0,0,0,0,709,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,1274,5,0,0,1269,0,409,0,0,0,119,15,0,0,0,0,0,0,0,0,0,829,1,0,0,0,9,0,0,0,0,1,1130,19,0,0,1,0,0,0,0,0,3565,1,0,351,16,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,1,0,0,0,0,1,35,93,0,3,12,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1316,88,3 +10,0,0,5,0,40,21,0,44,0,4,0,0,2,14,0,727,0,6,1,0,0,0,8,0,12,8,0,7,0,4,0,0,0,6,5868,40,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,391,0,0,0,0,0,1,0,0,0,0,0,2,0,0,139627,40,848,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,23588,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,862,0,0,0,0,5383,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19568,0,53,0,0,0,8,19,283,1634,19559,0,0,0,0,1,0,3,0,0,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,292,5,0,0,292,0,399,0,0,0,134,16,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,2,143,19,0,0,1,0,0,0,0,0,6738,1,0,1145,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,11,0,0,0,0,1,46,207,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3156,81,3 +2,0,0,3,0,25,4,0,8,0,2,0,0,2,2,0,13,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,54,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,64,0,0,0,0,0,1,0,0,0,0,0,2,0,0,561,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,63,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,30,0,0,0,0,644,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,46,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,154,3,0,0,83,0,518,0,0,0,13,10,0,0,0,0,0,0,0,0,0,37,0,0,0,0,8,0,0,0,0,0,107,9,0,0,0,0,0,0,0,0,116,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,51,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +16,0,0,6,0,39,17,0,44,6,5,0,0,2,12,0,763,0,6,1,0,0,0,8,0,11,9,0,7,0,3,0,0,0,4,4623,39,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,4,401,0,0,0,0,0,1,0,0,0,0,0,10,0,0,152094,39,871,0,8,0,0,0,0,0,28,0,0,0,0,0,8,18,26431,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,866,0,7,0,0,3778,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,22476,0,51,0,0,0,6,19,281,1259,22466,0,0,0,0,1,0,3,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,276,6,0,0,276,0,403,0,0,0,114,13,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,1,140,17,0,0,1,0,0,0,0,0,4853,1,0,795,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,363,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,17,0,0,0,0,1,43,225,0,18,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2069,135,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,61,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,10,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,75,2,0,0,91,0,268,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,105,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +4,0,0,3,0,12,2,0,5,3,3,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,12,6,0,0,17,0,0,0,1,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,7,0,0,186,12,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,4,0,0,0,0,0,6,0,0,0,0,2,0,19,0,5,0,0,142,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,34,0,0,0,2,4,26,6,40,0,0,0,0,1,0,0,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,60,3,0,0,64,0,76,0,0,0,33,2,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,95,20,0,0,0,0,0,0,0,0,600,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,16,17,0,3,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,36,3 +10,0,0,5,0,43,21,0,48,0,4,0,0,2,14,0,937,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5868,43,154,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,383,0,0,0,0,0,1,0,0,0,0,0,2,0,0,143757,43,1062,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,24629,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,1072,0,0,0,0,5549,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,20315,0,58,0,0,0,8,19,301,1607,20304,0,0,0,0,1,0,3,0,0,0,0,0,0,868,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,310,5,0,0,306,0,434,0,0,0,141,19,0,0,0,0,0,0,0,0,0,1032,1,0,0,0,9,0,0,0,0,2,153,19,0,0,1,0,0,0,0,0,7262,1,0,1085,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,11,0,0,0,0,1,49,204,0,19,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3285,108,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,1,0,0,882,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,466,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,19,0,0,0,0,3,21,4,41,0,0,0,0,1,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,53,2,0,0,71,0,89,0,0,0,19,1,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,61,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,2,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +9,0,0,5,0,38,9,0,35,0,4,0,0,2,3,0,627,0,7,2,0,0,0,8,0,11,0,0,7,0,1,0,0,0,3,898,38,6,0,0,26,0,0,0,1,0,0,1,0,0,0,0,1,148,0,0,0,0,0,1,0,0,0,0,0,2,0,0,28179,38,682,0,4,0,0,0,0,0,13,0,0,0,0,0,9,20,4843,0,0,3,0,0,0,0,0,97,5,1,0,0,2,0,641,0,0,0,0,1222,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,4187,0,34,0,0,0,0,3,259,323,4169,0,0,0,0,1,0,3,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,34,13,191,5,0,0,210,0,279,0,0,0,54,11,0,0,0,0,0,0,0,0,0,687,1,0,0,0,10,0,0,0,0,1,119,13,0,0,1,0,0,0,0,0,2240,1,0,15,9,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,3,0,0,0,0,1,41,193,0,5,14,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,406,32,3 +7,0,0,3,0,20,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,9,0,20,6,0,0,30,0,5,0,1,0,0,5,0,0,0,0,0,85,0,0,0,0,0,1,0,0,0,0,0,6,0,0,33668,20,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,6970,0,0,9,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,663,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4236,0,75,0,0,0,0,3,39,222,4250,0,0,0,0,1,0,0,0,0,0,0,0,0,8472,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,182,3,0,0,148,0,250,0,0,0,85,29,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,102,44,0,0,0,0,0,0,0,0,2050,0,0,9781,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,1,29,255,0,4,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2907,54,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,155,11,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,25,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,33,0,0,0,0,3,30,4,46,0,0,0,0,1,0,0,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,95,0,278,0,0,0,22,4,0,0,0,0,0,1,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,28,0,0,19,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,110,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,67,26,3 +4,0,0,5,0,38,21,0,43,0,4,0,0,2,7,0,701,0,6,1,0,0,0,8,0,10,0,0,9,0,4,0,0,0,4,5706,38,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,253,0,0,0,0,0,1,0,0,0,0,0,2,0,0,118440,38,805,0,10,0,0,0,0,0,32,0,0,0,0,0,8,18,20003,0,0,4,0,0,0,0,0,105,5,2,0,0,2,0,769,0,0,0,0,6104,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,15909,0,71,0,0,0,6,9,284,1619,15892,0,0,0,0,1,0,3,0,0,0,0,0,0,820,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,589,5,0,0,282,0,943,0,0,0,126,90,0,0,0,0,0,0,0,0,0,784,1,0,0,0,9,0,0,0,0,4,138,19,0,0,1,0,0,0,0,0,9703,1,0,1128,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,12,0,0,0,6,1,42,228,0,11,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3628,145,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,257,0,0,0,22,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,108,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,26,3 +0,0,0,2,0,16,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1418,16,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,70,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,619,0,0,0,0,0,11,43,229,0,0,0,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,20,2,0,0,57,0,81,0,0,0,48,3,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,45,0,0,0,0,0,0,0,0,316,0,0,364,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,114,0,1,0,0,0,0,0,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1409,5,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,65,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,59,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,147,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2091,10,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,714,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,228,0,94,0,0,0,0,3,27,9,225,0,0,0,0,1,0,0,0,0,0,0,0,0,9965,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,116,2,0,0,132,0,256,0,0,0,65,7,0,0,0,0,0,43,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,275,0,0,929,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,281,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,450,47,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1050,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,459,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,102,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,23,0,0,0,0,3,24,6,54,0,0,0,0,1,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,73,3,0,0,82,0,154,0,0,0,29,5,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,92,16,0,0,0,0,0,0,0,0,252,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,111,0,1,0,0,2,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,232,65,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1260,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,549,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,86,2,0,0,91,0,178,0,0,0,31,4,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,78,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,150,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,3,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1272,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,560,0,0,3,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,88,0,26,0,0,0,0,3,27,5,101,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,94,2,0,0,91,0,177,0,0,0,32,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,16,0,0,0,0,0,0,0,0,225,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,16,35,0,4,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,256,150,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,51,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +4,0,0,5,0,35,21,0,43,0,4,0,0,2,7,0,735,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,264,0,0,0,0,0,1,0,0,0,0,0,2,0,0,119889,35,831,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,20350,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,794,0,0,0,0,5476,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,16271,0,64,0,0,0,0,3,281,1597,16260,0,0,0,0,1,0,3,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,334,5,0,0,277,0,871,0,0,0,120,14,0,0,0,0,0,0,0,0,0,818,1,0,0,0,9,0,0,0,0,0,139,19,0,0,1,0,0,0,0,0,8540,1,0,1131,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,207,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3229,85,3 +4,0,0,5,0,35,21,0,42,0,4,0,0,2,7,0,699,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5706,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,268,0,0,0,0,0,1,0,0,0,0,0,2,0,0,113954,35,794,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,19474,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,758,0,0,0,0,5065,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,15361,0,65,0,0,0,0,3,281,1596,15350,0,0,0,0,1,0,3,0,0,0,0,0,0,826,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,343,5,0,0,277,0,872,0,0,0,121,23,0,0,0,0,0,0,0,0,0,781,1,0,0,0,9,0,0,0,0,0,139,19,0,0,1,0,0,0,0,0,8430,1,0,1134,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,226,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3186,88,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +10,0,0,5,0,40,17,0,45,0,4,0,0,2,14,0,798,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5022,40,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,338,0,0,0,0,0,1,0,0,0,0,0,2,0,0,128833,40,912,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,22378,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,928,0,0,0,0,3153,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,18780,0,53,0,0,0,8,19,280,1256,18771,0,0,0,0,1,0,3,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,290,5,0,0,279,0,396,0,0,0,118,17,0,0,0,0,0,0,0,0,0,886,1,0,0,0,9,0,0,0,0,2,140,17,0,0,1,0,0,0,0,0,6281,1,0,780,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,11,0,0,0,0,1,46,193,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2851,101,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,8,2,0,9,0,2,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,32,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1068,8,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,477,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,20,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,23,0,0,0,0,3,22,6,53,0,0,0,0,1,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,3,70,3,0,0,75,0,156,0,0,0,22,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,15,0,0,0,0,0,0,0,0,251,0,0,771,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,102,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,235,178,3 +5,0,0,3,0,18,2,0,10,1,3,0,0,0,4,0,16,0,6,1,0,0,0,1,0,0,0,0,9,0,1,0,0,0,4,0,18,6,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1062,18,44,0,10,0,0,0,0,0,5,0,0,0,0,0,1,4,469,0,0,4,0,0,0,0,0,16,0,2,0,0,2,0,20,0,2,0,0,136,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,57,0,45,0,0,0,0,3,35,36,68,0,0,0,0,1,0,0,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,5,92,3,0,0,91,0,155,0,0,0,23,7,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,1,100,3,0,0,0,0,0,0,0,0,804,0,0,748,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,9,0,0,0,0,1,22,4,0,10,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,282,68,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +5,0,0,4,0,36,13,0,37,0,3,0,0,2,3,0,699,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2843,36,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,246,0,0,0,0,0,1,0,0,0,0,0,4,0,0,80544,36,789,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,14369,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,737,0,1,0,0,3268,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,10648,0,45,0,0,0,2,7,258,1206,10625,0,0,0,0,1,0,3,0,0,0,0,0,0,766,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,235,4,0,0,275,0,341,0,0,0,126,8,0,0,0,0,0,0,0,0,0,763,1,0,0,0,10,0,0,0,0,1,129,36,0,0,0,0,0,0,0,0,4248,1,0,1581,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,2,0,0,0,0,1,40,219,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1865,48,3 +10,0,0,5,0,41,21,0,46,0,4,0,0,2,14,0,817,0,6,1,0,0,0,8,0,11,9,0,9,0,4,0,0,0,6,5868,41,160,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,379,0,0,0,0,0,1,0,0,0,0,0,2,0,0,143323,41,940,0,11,0,0,0,0,0,32,0,0,0,0,0,8,18,24465,0,0,6,0,0,0,0,0,97,5,2,0,0,2,0,952,0,0,0,0,5413,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,20243,0,54,0,0,0,8,18,287,1636,20234,0,0,0,0,1,0,3,0,0,0,0,0,0,929,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,318,5,0,0,301,0,470,0,0,0,140,23,0,0,0,0,0,0,0,0,0,910,1,0,0,0,9,0,0,0,0,2,150,19,0,0,1,0,0,0,0,0,6819,1,0,1129,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,12,0,0,0,2,1,47,205,0,21,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3161,140,3 +8,0,0,3,0,19,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,8,0,19,6,0,0,28,0,5,0,1,0,0,5,0,0,0,0,0,83,0,0,0,0,0,1,0,0,0,0,0,6,0,0,32173,19,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,6601,0,0,8,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,554,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4049,0,74,0,0,0,0,3,38,222,4063,0,0,0,0,1,0,0,0,0,0,0,0,0,8146,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,156,3,0,0,144,0,304,0,0,0,81,26,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,101,43,0,0,0,0,0,0,0,0,1983,0,0,9328,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,181,3,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,3,0,0,0,0,1,27,253,0,4,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2765,74,3 +3549,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,5,0,1,0,0,6,0,0,0,0,0,146,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2345,10,86,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,737,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,16,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,254,0,91,0,0,0,0,3,27,9,251,0,0,0,0,1,0,0,0,0,0,0,0,0,10021,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,0,0,0,0,0,0,8,3,115,2,0,0,132,0,253,0,0,0,65,6,0,0,0,0,0,42,0,0,0,44,1,0,0,0,2,0,0,0,0,1,92,43,0,0,0,0,0,0,0,0,291,0,0,1012,0,0,1,0,1,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,10,281,0,1,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,471,52,3 +1,0,0,6,0,34,7,0,35,0,5,0,0,7,6,0,541,0,6,1,0,0,0,9,0,12,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,183,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18918,34,610,0,4,0,0,0,0,0,18,0,0,0,0,0,9,28,4274,0,0,1,0,0,0,0,0,215,25,4,0,0,2,0,600,0,0,1,0,3013,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,680,0,46,0,0,0,2,5,258,1159,666,0,0,0,0,1,0,3,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,190,6,0,0,201,0,269,0,0,0,58,4,0,0,0,0,0,0,0,0,0,607,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3313,1,0,813,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,9,0,0,0,0,1,35,113,0,5,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1898,70,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1097,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,495,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,112,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,23,0,0,0,0,3,24,6,55,0,0,0,0,1,0,0,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,73,3,0,0,82,0,154,0,0,0,29,3,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,92,16,0,0,0,0,0,0,0,0,253,0,0,780,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,107,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,237,64,3 +4,0,0,5,0,34,21,0,43,0,4,0,0,2,7,0,716,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,34,38,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,259,0,0,0,0,0,1,0,0,0,0,0,2,0,0,107535,34,812,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,18388,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,775,0,0,0,0,5199,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,12,12,12,0,0,0,14218,0,64,0,0,0,0,3,274,1598,14208,0,0,0,0,1,0,3,0,0,0,0,0,0,846,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,355,5,0,0,274,0,908,0,0,0,120,18,0,0,0,0,0,0,0,0,0,799,1,0,0,0,9,0,0,0,0,0,137,19,0,0,1,0,0,0,0,0,8099,1,0,1146,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,35,225,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3098,85,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,57,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,5,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,36,3,0,0,58,0,54,0,0,0,28,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +0,0,0,2,0,17,1,0,42,0,3,0,0,0,0,0,2,0,2,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1470,17,46,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,61,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,619,0,0,0,0,0,11,41,241,0,0,0,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,11,2,0,0,58,0,96,0,0,0,49,1,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,3,46,0,0,0,0,0,0,0,0,336,0,0,412,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,122,0,1,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1445,1,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,6,0,0,62,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,38,3,0,0,58,0,56,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,38,3,0,0,58,0,51,0,0,0,28,9,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +12,0,0,5,0,38,36,0,49,0,4,0,0,2,13,0,1062,0,6,1,0,0,0,8,0,10,0,0,6,0,1,0,0,0,2,11287,38,56,0,0,22,0,1,0,1,0,0,2,0,0,0,0,1,419,0,0,0,0,0,1,0,0,0,0,0,2,0,0,172749,38,1227,0,4,0,0,0,0,0,56,0,0,0,0,0,8,19,33762,0,0,2,0,0,0,0,0,91,5,4,1,0,2,0,1181,0,0,0,0,7031,0,0,0,0,5,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,31445,0,51,0,0,0,0,3,310,1357,31430,0,0,0,0,1,0,4,0,0,0,0,0,0,1576,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,42,13,359,5,0,0,340,0,464,0,0,0,174,42,0,0,0,0,0,0,0,0,0,1172,1,0,0,0,9,0,0,0,0,1,153,29,0,0,1,0,0,0,0,0,9020,1,0,826,26,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,26,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,3,0,0,0,0,1,40,235,0,5,12,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2800,199,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1009,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,474,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,19,0,0,0,0,3,22,4,51,0,0,0,0,1,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,56,2,0,0,75,0,85,0,0,0,21,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,17,0,0,0,0,0,0,0,0,211,0,0,764,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,113,0,1,0,0,2,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,230,7,3 +1,0,0,6,0,34,7,0,33,0,5,0,0,7,6,0,473,0,6,1,0,0,0,9,0,12,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,178,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18658,34,540,0,4,0,0,0,0,0,18,0,0,0,0,0,9,28,4253,0,0,1,0,0,0,0,0,215,25,4,0,0,2,0,532,0,0,1,0,2703,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,673,0,46,0,0,0,2,5,258,1157,659,0,0,0,0,1,0,3,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,184,6,0,0,201,0,270,0,0,0,58,4,0,0,0,0,0,0,0,0,0,537,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3176,1,0,821,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,9,0,0,0,0,1,35,111,0,5,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1847,73,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,54,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +5,0,0,4,0,37,13,0,35,0,3,0,0,2,3,0,650,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2850,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,287,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61711,37,738,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,11410,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,688,0,1,0,0,3148,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,7559,0,44,0,0,0,2,7,266,1207,7535,0,0,0,0,1,0,3,0,0,0,0,0,0,764,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,240,4,0,0,279,0,353,0,0,0,127,6,0,0,0,0,0,0,0,0,0,712,1,0,0,0,10,0,0,0,0,1,131,36,0,0,0,0,0,0,0,0,4168,1,0,1581,14,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,219,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1913,50,3 +5,0,0,4,0,37,13,0,34,0,3,0,0,2,3,0,650,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2379,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,380,0,0,0,0,0,1,0,0,0,0,0,4,0,0,62399,37,737,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,11542,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,687,0,1,0,0,3712,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,7615,0,44,0,0,0,2,7,266,1195,7591,0,0,0,0,1,0,3,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,239,4,0,0,278,0,348,0,0,0,127,20,0,0,0,0,0,0,0,0,0,711,1,0,0,0,10,0,0,0,0,1,131,36,0,0,0,0,0,0,0,0,4227,1,0,1788,14,0,1,1,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,126,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1992,39,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1110,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,491,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,93,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,24,0,0,0,0,3,24,6,57,0,0,0,0,1,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,69,3,0,0,80,0,151,0,0,0,27,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,255,0,0,788,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,105,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,244,63,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,3,0,12,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,48,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,5,0,0,397,12,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,56,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,569,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,40,0,0,0,0,3,27,7,60,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,106,3,0,0,101,0,297,0,0,0,40,16,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,95,20,0,0,0,0,0,0,0,0,91,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,138,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,89,16,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,38,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,482,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,62,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,506,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,32,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1032,3,0,0,1019,0,326,0,0,0,14,10,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1038,9,0,0,0,0,0,0,0,0,100,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,31,3 +0,0,0,2,0,8,2,0,8,0,4,0,0,0,4,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,1,0,0,50,8,32,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,15,0,0,0,0,0,0,0,0,6,0,1,0,0,2,0,13,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,20,0,15,0,0,0,0,3,21,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,55,2,0,0,64,0,70,0,0,0,13,1,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,6,0,0,0,0,0,0,0,0,25,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,33,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,5,3 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1315,10,57,0,0,0,0,0,0,0,16,0,0,0,0,0,1,8,518,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,40,0,0,0,0,3,27,6,101,0,0,0,0,1,0,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,82,2,0,0,127,0,121,0,0,0,65,0,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,49,0,0,0,0,0,0,0,0,228,0,0,818,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,192,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,293,14,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,57,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,50,0,0,0,28,2,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +5,0,0,3,0,12,3,0,16,1,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,44,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,5,0,0,374,12,42,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,55,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,33,0,3,0,0,417,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,42,0,0,0,0,3,27,7,60,0,0,0,0,1,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,6,102,3,0,0,101,0,269,0,0,0,40,10,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,95,20,0,0,0,0,0,0,0,0,87,0,0,44,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,142,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,92,16,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,4,0,0,60,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +2,0,0,5,0,50,74,0,273,1,64,0,0,2,4,0,41,0,7,3,0,0,0,9,0,9,12,0,7,0,2,3,0,0,18,0,50,6,0,0,381,0,2,0,1,0,0,2,2,0,0,0,6,831,0,0,0,0,0,1,0,0,0,1,0,6,0,0,7282,50,494,0,11,0,0,0,0,0,17,0,0,0,0,0,11,19,320,0,0,18,0,0,1,233,0,1898,300,8,0,0,2,0,1131,0,2,0,0,11558,0,0,0,0,5,2,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,2,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,136,0,81,0,0,0,9,25,226,2888,122,0,0,0,0,1,0,5,0,0,0,0,0,0,1895,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,34,12,386,5,0,0,407,0,375,1,0,0,227,31,0,0,0,0,0,0,0,0,0,465,1,0,5,0,12,0,0,0,0,5,221,443,0,0,1099,0,0,0,1,0,721,0,0,599,3,0,1,1,1,0,0,0,8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,2,0,0,0,3,185,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,11,0,0,0,0,7,68,3365,0,24,9,0,0,0,0,0,438,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,162,53,3 +10,0,0,5,0,43,21,0,47,0,4,0,0,2,14,0,896,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,6,5870,43,48,0,0,22,0,1,0,1,0,0,1,0,0,0,0,5,379,0,0,0,0,0,1,0,0,0,0,0,2,0,0,140747,43,1019,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,24032,0,0,6,0,0,0,0,0,95,5,2,0,0,2,0,1030,0,0,0,0,5293,0,0,0,0,7,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,19688,0,57,0,0,0,8,16,301,1624,19680,0,0,0,0,1,0,3,0,0,0,0,0,0,905,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,323,5,0,0,306,0,461,0,0,0,143,18,0,0,0,0,0,0,0,0,0,990,1,0,0,0,9,0,0,0,0,2,152,19,0,0,1,0,0,0,0,0,7134,1,0,1128,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,9,0,0,0,0,1,49,194,0,19,12,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3257,265,3 +1,0,0,6,0,34,7,0,35,0,5,0,0,7,6,0,541,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,180,0,0,0,0,0,1,0,0,0,0,0,5,0,0,19465,34,609,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4511,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,600,0,0,1,0,2640,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,770,0,46,0,0,0,1,4,256,1159,756,0,0,0,0,1,0,3,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,187,6,0,0,201,0,270,0,0,0,58,7,0,0,0,0,0,0,0,0,0,607,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3389,1,0,828,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,107,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1945,74,3 +2,0,0,3,0,9,2,0,4,2,3,0,0,0,5,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,5,0,0,80,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,66,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,24,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,38,3,0,0,58,0,59,0,0,0,28,1,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,595,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,6,3 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,3,0,1,0,0,3,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1276,9,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,8,548,0,0,1,0,0,0,0,0,12,0,5,0,0,2,0,14,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,83,0,39,0,0,0,0,3,23,6,93,0,0,0,0,1,0,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,78,2,0,0,124,0,117,0,0,0,65,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,49,0,0,0,0,0,0,0,0,222,0,0,795,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,190,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,280,15,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,5,0,0,57,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,5,29,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,37,3,0,0,58,0,54,0,0,0,28,5,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,3,3 +2,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,6,0,0,82,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,16,0,4,0,0,102,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,3,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,43,3,0,0,57,0,89,0,0,0,27,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,20,0,0,0,0,0,0,0,0,598,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,10,3 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,1,0,0,880,8,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,464,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,7,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,19,0,0,0,0,3,21,4,41,0,0,0,0,1,0,0,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,53,2,0,0,71,0,88,0,0,0,19,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,88,14,0,0,0,0,0,0,0,0,204,0,0,732,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,63,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,2,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,209,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,127,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,51,3,0,0,63,0,92,0,0,0,33,2,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,604,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,64,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,65,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,58,0,0,0,28,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +16,0,0,6,0,40,17,0,43,6,5,0,0,2,12,0,745,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4946,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,373,0,0,0,0,0,1,0,0,0,0,0,10,0,0,127016,40,856,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,22272,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,852,0,7,0,0,3689,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,18408,0,54,0,0,0,8,20,285,1257,18398,0,0,0,0,1,0,3,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,295,6,0,0,280,0,403,0,0,0,116,22,0,0,0,0,0,0,0,0,0,830,1,0,0,0,9,0,0,0,0,1,142,17,0,0,1,0,0,0,0,0,4746,1,0,796,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,20,0,0,0,2,1,44,210,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2078,135,3 +2,0,0,5,0,36,21,0,42,0,4,0,0,2,7,0,747,0,7,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,5704,36,42,0,0,22,0,0,0,1,0,0,1,0,0,0,0,1,247,0,0,0,0,0,1,0,0,0,0,0,2,0,0,100947,36,846,0,2,0,0,0,0,0,32,0,0,0,0,0,8,17,16271,0,0,1,0,0,0,0,0,88,5,2,0,0,2,0,806,0,0,0,0,3497,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15026,0,47,0,0,0,0,3,284,778,15008,0,0,0,0,1,0,3,0,0,0,0,0,0,794,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,38,13,1289,5,0,0,1305,0,413,0,0,0,120,20,0,0,0,0,0,0,0,0,0,830,1,0,0,0,9,0,0,0,0,1,1160,19,0,0,1,0,0,0,0,0,3611,1,0,405,16,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,1,0,0,0,0,1,37,247,0,3,12,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1394,90,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,65,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,53,0,0,0,28,9,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +16,0,0,6,0,40,21,0,43,6,5,0,0,2,12,0,709,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,5868,40,146,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,335,0,0,0,0,0,1,0,0,0,0,0,10,0,0,149714,40,827,0,9,0,0,0,0,0,32,0,0,0,0,0,8,18,25469,0,0,4,0,0,0,0,0,95,5,2,0,0,2,0,820,0,7,0,0,5033,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,21432,0,52,0,0,0,8,21,292,1633,21421,0,0,0,0,1,0,3,0,0,0,0,0,0,958,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,302,6,0,0,291,0,419,0,0,0,129,17,0,0,0,0,0,0,0,0,0,798,1,0,0,0,9,0,0,0,0,2,144,19,0,0,1,0,0,0,0,0,4876,1,0,1143,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,16,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,19,0,0,0,0,1,44,189,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2238,141,3 +2,0,0,6,0,34,7,0,51,1,10,0,0,6,4,0,642,0,6,1,0,0,0,8,0,10,0,0,4,0,1,0,5,0,1,898,34,32,0,0,55,0,1,0,1,0,0,2,0,0,0,0,1,170,0,0,0,0,0,1,0,0,0,0,0,4,0,0,19526,34,721,0,2,0,0,0,0,0,15,0,0,0,0,1,8,20,4576,0,0,1,0,0,1,10,0,275,40,4,0,0,2,0,736,0,0,1,0,2994,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,810,0,38,0,0,0,0,3,257,1219,795,0,0,0,0,1,0,3,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,91,19,179,6,0,0,197,0,274,0,0,0,51,7,0,0,0,0,0,0,0,0,0,726,1,0,0,0,9,0,0,0,0,0,115,29,0,0,51,0,0,0,0,0,4157,1,0,769,6,0,1,1,1,0,0,0,6,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,5,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,1,0,0,0,0,1,35,143,0,3,12,0,0,0,0,0,81,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1920,53,3 +4,0,0,3,0,10,2,0,5,3,3,0,0,0,6,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,1,27,0,0,0,0,0,1,0,0,0,0,0,6,0,0,212,10,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,17,0,4,0,0,122,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,2,4,24,6,36,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,55,3,0,0,63,0,92,0,0,0,33,4,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,1,92,26,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,42,0,3,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2148,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,847,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,440,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,254,0,36,0,0,0,8,19,29,615,265,0,0,0,0,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,181,0,0,0,45,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,451,0,0,774,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,447,9,3 +2,0,0,3,0,16,2,0,8,1,3,0,0,0,4,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,6,0,16,6,0,0,18,0,0,0,1,0,0,5,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,4,0,0,3298,16,57,0,1,0,0,0,0,0,21,0,0,0,0,0,1,7,645,0,0,6,0,0,0,0,0,13,0,8,0,0,2,0,10,0,2,0,0,357,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,469,0,71,0,0,0,0,3,33,209,480,0,0,0,0,1,0,0,0,0,0,0,0,0,955,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,5,120,3,0,0,133,0,194,0,0,0,73,9,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,98,41,0,0,0,0,0,0,0,0,756,0,0,796,0,0,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,22,250,0,1,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,399,44,3 +5,0,0,4,0,37,13,0,36,0,3,0,0,2,3,0,684,0,6,2,0,0,0,8,0,11,3,0,5,0,2,0,0,0,4,2843,37,6,0,0,23,0,1,0,1,0,0,2,0,0,0,0,2,273,0,0,0,0,0,1,0,0,0,0,0,4,0,0,158807,37,773,0,3,0,0,0,0,0,29,0,0,0,0,0,9,23,27305,0,0,4,0,0,0,0,0,95,5,4,0,0,2,0,722,0,1,0,0,3215,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,23564,0,46,0,0,0,2,7,266,1207,23540,0,0,0,0,1,0,3,0,0,0,0,0,0,1429,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,11,241,4,0,0,279,0,352,0,0,0,127,8,0,0,0,0,0,0,0,0,0,747,1,0,0,0,10,0,0,0,0,1,131,36,0,0,0,0,0,0,0,0,4235,1,0,2710,14,0,1,1,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,362,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,2,0,0,0,0,1,41,243,0,7,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1906,50,3 +0,0,0,2,0,9,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,1,0,0,268,9,30,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,36,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,6,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,27,0,0,0,0,3,23,5,52,0,0,0,0,1,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,61,2,0,0,103,0,117,0,0,0,51,1,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,41,0,0,0,0,0,0,0,0,34,0,0,49,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,114,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,13,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,52,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +0,0,0,2,0,9,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,334,9,30,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,42,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,6,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,27,0,0,0,0,3,23,5,54,0,0,0,0,1,0,0,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,73,2,0,0,103,0,124,0,0,0,51,2,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,41,0,0,0,0,0,0,0,0,36,0,0,57,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,117,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,71,13,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,78,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,65,0,59,0,0,0,35,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,31,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,61,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1196,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,524,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,88,0,154,0,0,0,25,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,227,0,0,795,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,149,3 +4,0,0,4,0,11,20,0,104,0,27,0,0,0,3,0,17,0,7,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,1,0,11,6,0,0,192,0,0,0,1,0,0,2,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,22,0,0,1368,11,180,0,3,0,0,0,0,0,9,0,0,0,0,0,1,4,708,0,0,1,0,0,2,96,0,745,30,3,0,0,2,0,485,0,1,0,0,151,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,393,0,33,0,0,0,0,3,29,649,404,0,0,0,0,1,0,0,0,0,0,0,0,0,274,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,4,82,4,0,0,111,0,186,0,0,0,53,6,0,0,0,0,0,0,0,0,0,178,1,0,0,0,2,0,0,0,0,1,93,258,0,0,60,0,0,0,0,0,622,0,0,66,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,1,12,115,0,3,0,0,0,0,0,0,259,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,10,3 +0,0,0,2,0,11,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,1,0,0,63,11,20,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,6,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,21,0,0,0,0,3,28,4,25,0,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,2,0,0,76,0,76,0,0,0,43,2,0,0,0,0,0,0,0,0,0,23,1,0,0,0,2,0,0,0,0,0,93,36,0,0,0,0,0,0,0,0,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,74,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,6,3 +5,0,0,3,0,32,4,0,21,0,2,0,0,2,2,0,19,0,7,3,0,0,0,5,0,8,0,0,1,0,5,0,0,0,5,0,32,6,0,0,28,0,0,0,1,0,0,2,0,0,0,0,5,144,0,0,0,0,0,1,0,0,0,0,0,2,0,0,675,32,56,0,5,0,0,0,0,0,12,0,0,0,0,0,7,14,111,0,0,5,0,0,0,0,0,73,5,3,0,0,2,0,31,0,0,0,0,514,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,94,0,63,0,0,0,8,5,191,16,97,0,0,0,0,1,0,3,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,10,153,3,0,0,154,0,235,0,0,0,44,4,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,113,21,0,0,0,0,0,0,0,0,646,0,0,37,2,0,1,1,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,8,0,0,0,4,1,37,155,0,6,8,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,174,33,3 +10,0,0,5,0,37,21,0,44,0,4,0,0,2,13,0,747,0,6,1,0,0,0,8,0,11,6,0,6,0,3,0,0,0,4,5868,37,150,0,0,22,0,1,0,1,0,0,1,0,0,0,0,4,357,0,0,0,0,0,1,0,0,0,0,0,2,0,0,266871,37,862,0,7,0,0,0,0,0,32,0,0,0,0,0,8,18,62301,0,0,4,0,0,0,0,0,94,5,2,0,0,2,0,858,0,0,0,0,4921,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,57985,0,45,0,0,0,6,14,276,1595,57972,0,0,0,0,1,0,3,0,0,0,0,0,0,788,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,13,298,5,0,0,291,0,392,0,0,0,139,24,0,0,0,0,0,0,0,0,0,837,1,0,0,0,9,0,0,0,0,2,148,19,0,0,1,0,0,0,0,0,6001,1,0,1066,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,16,364,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,11,0,0,0,0,1,41,190,0,14,12,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2906,144,3 +2,0,0,3,0,25,4,0,9,0,2,0,0,2,2,0,14,0,7,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,36,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,71,0,0,0,0,0,1,0,0,0,0,0,2,0,0,455,25,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,67,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,31,0,0,0,0,518,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,30,0,0,0,0,3,177,10,40,0,0,0,0,1,0,3,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,10,1056,3,0,0,1050,0,300,0,0,0,14,4,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,0,1069,9,0,0,0,0,0,0,0,0,103,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,21,0,2,8,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,31,3 +16,0,0,6,0,40,17,0,47,6,5,0,0,2,12,0,892,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,5555,40,148,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,394,0,0,0,0,0,1,0,0,0,0,0,10,0,0,143830,40,1006,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,24970,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,997,0,7,0,0,3936,0,0,0,0,5,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,21116,0,52,0,0,0,8,20,285,1313,21106,0,0,0,0,1,0,3,0,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,20,307,6,0,0,292,0,425,0,0,0,133,18,0,0,0,0,0,0,0,0,0,981,1,0,0,0,9,0,0,0,0,1,153,17,0,0,1,0,0,0,0,0,5025,1,0,821,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,364,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,19,0,0,0,0,1,44,274,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2111,197,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,55,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +1,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,55,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,11,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,31,0,0,0,0,3,30,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,78,2,0,0,94,0,245,0,0,0,22,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,93,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,111,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,61,25,3 +4,0,0,6,0,41,19,0,47,4,5,0,0,2,8,0,847,0,6,1,0,0,0,9,0,12,9,0,7,0,3,0,0,0,5,5767,41,32,0,0,35,0,1,0,1,0,0,1,0,0,0,0,4,363,0,0,0,0,0,1,0,0,0,0,0,8,0,0,121816,41,959,0,7,0,0,0,0,0,30,0,0,0,0,0,9,21,20733,0,0,5,0,0,0,0,0,97,5,2,0,0,2,0,940,0,5,0,0,6196,0,0,0,0,16,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,12,12,12,0,0,0,16653,0,55,0,0,0,6,19,286,1611,16640,0,0,0,0,1,0,3,0,0,0,0,0,0,929,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,37,18,299,6,0,0,290,0,387,0,0,0,126,19,0,0,0,0,0,0,0,0,0,934,1,0,0,0,10,0,0,0,0,1,142,18,0,0,1,0,0,0,0,0,4216,1,0,1144,17,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,17,363,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,16,0,0,0,0,1,46,215,0,17,14,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2187,94,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,4,0,0,59,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,36,3,0,0,58,0,51,0,0,0,28,3,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +2,0,0,2,0,15,3,0,13,0,2,0,0,0,2,0,35,0,6,1,0,0,0,1,0,0,12,0,0,0,5,0,0,0,3,0,15,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,4,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2145,15,70,0,5,0,0,0,0,0,7,0,0,0,0,0,1,6,866,0,0,3,0,0,0,0,0,24,0,2,0,0,2,0,80,0,0,0,0,419,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,250,0,30,0,0,0,8,19,29,617,259,0,0,0,0,1,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,110,0,177,0,0,0,45,13,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,5,95,31,0,0,0,0,0,0,0,0,449,0,0,770,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,18,201,0,17,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,435,8,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,56,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +16,0,0,6,0,38,17,0,43,6,5,0,0,2,12,0,708,0,6,1,0,0,0,8,0,11,9,0,8,0,4,0,0,0,4,4946,38,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,342,0,0,0,0,0,1,0,0,0,0,0,10,0,0,135467,38,817,0,10,0,0,0,0,0,28,0,0,0,0,0,8,18,23618,0,0,4,0,0,0,0,0,92,5,2,0,0,2,0,813,0,7,0,0,3799,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19771,0,52,0,0,0,8,20,274,1257,19762,0,0,0,0,1,0,3,0,0,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,297,6,0,0,273,0,420,0,0,0,113,15,0,0,0,0,0,0,0,0,0,793,1,0,0,0,9,0,0,0,0,1,138,17,0,0,1,0,0,0,0,0,4678,1,0,800,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,20,0,0,0,2,1,42,199,0,20,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2002,135,3 +0,0,0,3,0,14,2,0,16,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,14,6,0,0,14,0,0,0,1,0,0,3,0,0,0,0,0,86,0,0,0,0,0,1,0,0,0,0,0,3,0,0,9013,14,56,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,274,0,0,4,0,0,0,0,0,11,0,4,0,0,2,0,17,0,1,0,0,4139,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,225,0,53,0,0,0,0,3,31,7856,238,0,0,0,0,1,0,0,0,0,0,0,0,0,416,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,100,3,0,0,112,0,185,0,0,0,47,7,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,96,22,0,0,0,0,0,0,0,0,104,0,0,265,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,18,151,0,1,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,219,17,3 +2,0,0,2,0,19,3,0,29,0,2,0,0,0,2,0,75,0,6,1,0,0,0,1,0,1,35,0,0,0,13,0,0,0,3,0,19,6,0,0,9,0,1,0,1,0,0,1,0,0,0,0,12,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2253,19,151,0,13,0,0,0,0,0,7,0,0,0,0,0,1,6,860,0,0,3,0,0,0,0,0,56,0,2,0,0,2,0,233,0,0,0,0,622,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,255,0,41,0,0,0,24,52,33,640,269,0,0,0,0,1,0,0,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,113,2,0,0,132,0,213,0,0,0,47,6,0,0,0,0,0,0,0,0,0,117,1,0,0,0,2,0,0,0,0,13,101,31,0,0,0,0,0,0,0,0,528,0,0,778,0,0,1,0,1,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,373,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,12,0,0,0,0,1,22,210,0,49,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,449,15,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,59,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,57,0,0,0,28,6,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +0,0,0,3,0,9,2,0,3,1,3,0,0,0,4,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,37,3,0,0,58,0,51,0,0,0,28,4,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1205,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,533,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,90,0,155,0,0,0,27,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,95,15,0,0,0,0,0,0,0,0,227,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,265,149,3 +4,0,0,5,0,36,21,0,45,0,4,0,0,2,7,0,827,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5704,36,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,275,0,0,0,0,0,1,0,0,0,0,0,2,0,0,137053,36,925,0,1,0,0,0,0,0,32,0,0,0,0,0,8,18,23503,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,886,0,0,0,0,5703,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19180,0,65,0,0,0,0,3,288,1592,19168,0,0,0,0,1,0,3,0,0,0,0,0,0,826,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,360,5,0,0,277,0,878,0,0,0,118,17,0,0,0,0,0,0,0,0,0,912,1,0,0,0,9,0,0,0,0,0,138,19,0,0,1,0,0,0,0,0,8386,1,0,1132,16,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,37,218,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3174,92,3 +1,0,0,6,0,34,7,0,34,0,5,0,0,7,6,0,506,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,1,898,34,32,0,0,46,0,2,0,1,0,0,2,0,0,0,0,1,180,0,0,0,0,0,1,0,0,0,0,0,5,0,0,18002,34,573,0,3,0,0,0,0,0,18,0,0,0,0,0,9,26,4108,0,0,1,0,0,0,0,0,213,25,4,0,0,2,0,565,0,0,1,0,2770,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,687,0,46,0,0,0,1,4,256,1158,673,0,0,0,0,1,0,3,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,13,189,6,0,0,201,0,271,0,0,0,58,8,0,0,0,0,0,0,0,0,0,571,1,0,0,0,10,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3082,1,0,828,8,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,8,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,35,110,0,4,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1851,73,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,6,0,0,57,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,19,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,53,0,0,0,28,3,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,3,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,65,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,3,0,0,58,0,57,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,32,0,0,10,0,1,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1097,10,34,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,488,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,20,0,1,0,0,107,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,23,0,0,0,0,3,24,6,56,0,0,0,0,1,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,4,71,3,0,0,80,0,152,0,0,0,27,1,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,90,16,0,0,0,0,0,0,0,0,254,0,0,784,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,105,0,1,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,236,64,3 +30,0,0,5,0,39,17,0,36,1,3,0,0,2,4,0,752,0,7,2,0,0,0,8,0,11,0,0,4,0,4,0,0,0,3,4884,39,6,0,0,27,0,3,0,1,0,0,3,0,0,0,0,4,328,0,0,0,0,0,1,0,0,0,0,0,6,0,0,177734,39,855,0,4,0,0,0,0,0,36,0,0,0,0,0,9,23,30083,0,0,3,0,0,0,0,0,108,5,6,0,0,2,0,783,0,2,0,0,1917,0,0,0,0,6,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,14,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,12,12,12,0,0,0,28376,0,134,0,0,0,6,9,285,476,28366,0,0,0,0,1,0,3,0,0,0,0,0,0,636,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,34,12,250,5,0,0,293,0,302,0,0,0,131,4,0,0,0,0,0,0,0,0,0,821,1,0,0,0,10,0,0,0,0,4,144,29,0,0,0,0,0,0,0,0,3071,1,0,870,16,0,1,1,1,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,16,364,10,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,6,0,0,0,6,1,42,199,0,5,14,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1147,77,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,91,0,268,0,0,0,22,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,108,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,26,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,5,0,0,209,10,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,3,0,0,150,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,4,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,61,3,0,0,68,0,62,0,0,0,37,7,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,30,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,10,3 +2,0,0,2,0,52,3,0,9,0,2,0,0,0,2,0,16,0,7,1,0,0,0,1,0,0,0,0,20,0,1,0,0,0,42,0,52,6,0,0,89,0,1,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1146,52,51,0,21,0,0,0,0,0,4,0,0,0,0,0,1,4,558,0,0,42,0,0,0,0,0,27,0,1,0,0,2,0,28,0,0,0,0,839,0,0,0,0,20,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,81,0,89,0,0,0,0,3,88,86,92,0,0,0,0,1,0,0,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,213,2,0,0,194,0,252,0,0,0,137,4,0,0,0,0,0,0,0,0,0,39,1,0,0,0,2,0,0,0,0,1,132,6,0,0,0,0,0,0,0,0,845,0,0,728,0,0,1,0,1,0,0,0,1,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,69,1,1,1,0,20,0,0,0,0,1,94,84,0,21,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,373,469,3 +3,0,0,2,0,13,3,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,2,0,13,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1198,13,37,0,4,0,0,0,0,0,7,0,0,0,0,0,1,6,526,0,0,2,0,0,0,0,0,11,0,1,0,0,2,0,11,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,91,0,29,0,0,0,0,3,27,6,106,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,75,2,0,0,88,0,154,0,0,0,25,6,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,1,93,15,0,0,0,0,0,0,0,0,228,0,0,796,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,15,73,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,149,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,27,2,0,0,30,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,88,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,3,3 +2,0,0,3,0,10,2,0,5,2,3,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,10,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,5,0,0,115,10,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,14,0,3,0,0,123,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,25,0,0,0,2,3,24,6,34,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,54,3,0,0,68,0,62,0,0,0,37,4,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,1,93,30,0,0,0,0,0,0,0,0,597,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,0,1,12,15,0,3,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,9,3 +1,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,26,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,75,2,0,0,91,0,271,0,0,0,22,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,26,0,0,15,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,106,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56,27,3 +0,0,0,3,0,9,2,0,3,2,3,0,0,0,5,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,5,0,0,72,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,12,0,3,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,38,3,0,0,58,0,56,0,0,0,28,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,6,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,56,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,3,3 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,1,0,0,22,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,58,0,62,0,0,0,28,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,27,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,68,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,5,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,36,3,0,0,58,0,54,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +16,0,0,6,0,40,17,0,45,6,5,0,0,2,12,0,820,0,6,1,0,0,0,8,0,11,9,0,7,0,4,0,0,0,4,4944,40,144,0,0,39,0,1,0,1,0,0,1,0,0,0,0,5,384,0,0,0,0,0,1,0,0,0,0,0,10,0,0,127970,40,930,0,9,0,0,0,0,0,28,0,0,0,0,0,8,18,22418,0,0,4,0,0,0,0,0,91,5,2,0,0,2,0,924,0,7,0,0,3302,0,0,0,0,8,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,12,12,12,0,0,0,18448,0,53,0,0,0,8,20,285,1257,18438,0,0,0,0,1,0,3,0,0,0,0,0,0,409,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,40,20,291,6,0,0,281,0,398,0,0,0,119,16,0,0,0,0,0,0,0,0,0,907,1,0,0,0,9,0,0,0,0,1,142,17,0,0,1,0,0,0,0,0,4966,1,0,804,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,14,365,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,19,0,0,0,0,1,44,227,0,19,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2058,127,3 +6,0,0,3,0,20,2,0,8,3,3,0,0,0,6,0,16,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,9,0,20,6,0,0,30,0,5,0,1,0,0,5,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,6,0,0,32715,20,63,0,4,0,0,0,0,0,21,0,0,0,1,0,1,7,6771,0,0,9,0,0,0,0,0,16,0,8,0,0,2,0,18,0,4,0,0,553,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4139,0,75,0,0,0,0,3,39,220,4153,0,0,0,0,1,0,0,0,0,0,0,0,0,8223,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,7,157,3,0,0,148,0,244,0,0,0,85,12,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,1,102,44,0,0,0,0,0,0,0,0,2014,0,0,9504,0,0,1,0,1,0,0,0,14,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,181,4,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,1,29,259,0,4,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2827,65,3 +0,0,0,3,0,9,2,0,3,3,3,0,0,0,6,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,6,0,0,55,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,4,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,23,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,37,3,0,0,58,0,55,0,0,0,28,2,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,41,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,3,3 +4,0,0,5,0,35,15,0,42,0,4,0,0,2,7,0,700,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,1,5385,35,34,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,456,0,0,0,0,0,1,0,0,0,0,0,2,0,0,112478,35,783,0,1,0,0,0,0,0,26,0,0,0,0,0,8,18,19168,0,0,1,0,0,0,0,0,87,5,2,0,0,2,0,753,0,0,0,0,4681,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,15246,0,65,0,0,0,0,3,275,1585,15235,0,0,0,0,1,0,3,0,0,0,0,0,0,684,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,13,335,5,0,0,263,0,864,0,0,0,110,18,0,0,0,0,0,0,0,0,0,776,1,0,0,0,9,0,0,0,0,0,137,16,0,0,1,0,0,0,0,0,7903,1,0,1062,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,13,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,202,0,2,12,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3014,101,3 +108,0,0,24,4,62,81,7,125,7,16,0,0,2,24,0,187,0,12,6,0,1,1,5,0,15,9,0,9,0,4,0,0,4,22,0,66,165,0,0,210,0,0,0,1,0,0,7,0,0,0,0,11,265,0,0,0,0,0,1,0,1,0,0,0,21,0,0,5116,62,483,0,18,0,0,0,0,0,30,3,0,0,0,0,8,21,990,0,7,22,4,0,4,11,0,322,20,12,0,0,8,4,207,0,15,0,0,1659,0,0,0,0,42,30,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,34,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,750,0,245,0,0,0,13,46,241,240,717,0,0,0,0,1,0,4,0,0,0,0,0,0,1958,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,74,765,33,0,0,814,0,1499,0,3,0,285,48,0,0,0,0,0,0,2,0,0,447,1,0,0,0,13,0,0,0,0,11,192,94,0,0,34,0,0,0,0,0,1180,0,0,928,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,64,1,1,1,0,63,0,0,0,0,33,88,360,0,28,9,0,0,0,0,0,268,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,11,0,0,0,0,0,0,0,0,0,0,0,6,0,2,1301,1358,4 +20,0,0,8,8,47,50,32,120,15,15,0,0,2,22,6,324,0,7,19,0,8,8,8,0,27,13,0,8,0,2,0,0,8,10,0,55,171,0,0,175,0,0,0,1,0,0,1,1,0,0,0,21,130,0,0,0,0,0,1,0,0,0,11,0,29,0,0,1138,47,1252,0,28,0,0,0,0,0,7,24,0,0,0,0,10,17,137,0,32,10,8,0,1,11,0,234,20,5,1,1,2,8,404,0,17,0,0,1448,0,0,0,0,31,3,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,11,0,0,0,3,0,0,0,10,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,73,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,42,10,10,10,0,0,0,119,0,116,0,0,0,21,36,236,225,211,0,0,0,0,1,0,3,0,0,1,0,0,0,769,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,32,27,578,16,0,0,633,0,1749,0,0,0,298,11,0,0,0,1,0,0,0,0,0,546,1,0,5,0,43,0,0,0,0,20,193,88,0,0,34,0,0,0,0,0,632,0,0,21,2,0,1,1,0,0,0,0,8,0,0,0,2,0,0,0,0,0,15,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,8,0,0,0,0,65,65,42,0,42,8,0,0,0,0,0,436,128,0,0,0,0,0,0,0,0,0,0,0,9,0,1,19,0,0,0,0,0,0,0,0,0,0,0,16,0,1,431,302,4 +82,0,0,2,1,52,25,4,117,6,24,0,4,0,12,0,38,0,7,6,0,1,1,5,0,29,9,0,5,0,4,0,0,1,17,0,53,15,0,0,480,0,0,0,1,0,0,0,0,0,0,0,25,123,0,0,0,0,0,1,0,1,0,0,0,26,0,0,1367,52,370,0,28,0,0,0,0,0,16,3,0,0,0,0,8,13,269,0,4,17,1,0,4,88,0,802,15,0,0,0,8,1,552,0,7,0,0,2349,0,0,0,0,36,21,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,207,0,108,0,0,0,27,58,217,787,205,0,0,0,0,1,0,4,0,0,0,0,0,0,801,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,93,287,4,0,0,239,0,333,0,0,0,102,15,0,0,0,0,0,0,0,0,0,227,0,0,0,0,13,0,0,0,0,24,137,230,0,0,30,0,0,0,0,0,739,0,0,18,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,33,0,0,0,0,9,70,41,0,38,9,0,0,0,0,0,327,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,269,1559,4 +367,0,0,36,28,110,248,64,596,48,94,0,0,2,92,0,563,0,24,82,0,121,2,6,0,60,22,0,34,0,8,2,0,27,50,0,132,400,159,0,1017,0,0,0,1,0,0,5,1,0,0,0,60,480,0,0,0,0,0,1,0,3,0,12,0,106,0,0,4269,110,3813,0,92,0,0,0,0,0,100,60,0,0,0,0,13,27,609,0,64,50,27,0,11,201,0,2136,95,10,0,0,18,28,1510,0,68,0,0,4213,0,0,0,0,98,84,0,0,38,0,0,1,0,0,0,21,0,0,0,0,0,0,0,25,0,0,0,17,0,0,0,3,0,7,0,73,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,3,0,0,0,0,0,1,14,0,0,0,0,0,0,0,20,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,105,10,10,10,0,0,0,505,0,334,0,0,0,68,117,365,1908,563,0,0,0,0,1,0,6,0,0,0,0,0,0,4772,0,0,0,0,0,0,0,0,0,1,0,0,6,1,2,0,0,0,0,1,0,886,420,2173,75,0,0,2298,0,4200,0,8,0,775,199,0,0,0,0,0,0,0,0,0,1619,1,0,2,0,211,0,0,0,0,53,346,524,0,0,211,0,0,0,0,0,10381,0,0,133,3,0,1,9,0,0,0,0,13,0,0,0,4,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,3,32,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,117,1,1,1,0,113,0,0,0,0,177,182,223,0,117,9,0,0,0,0,0,844,32,0,0,0,0,0,0,1,0,0,0,0,23,0,4,56,0,0,0,0,0,0,0,0,117,0,0,218,0,6,2436,2437,4 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,32,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,32,0,0,0,0,3,22,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,0,0,0,37,0,45,0,0,0,4,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,3,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,3,4 +70,0,0,25,9,80,132,22,226,26,30,0,0,2,58,1,478,0,18,42,0,98,1,6,0,32,13,0,16,0,4,3,0,8,33,0,88,253,160,0,325,0,0,0,1,0,0,3,0,0,0,0,30,300,0,0,0,0,0,1,0,2,0,12,0,44,0,0,2159,80,1492,0,44,0,0,0,0,0,17,12,0,0,0,0,13,22,238,0,22,33,8,0,6,29,0,603,55,3,0,0,12,9,479,0,40,0,0,2120,0,0,0,0,30,11,1,0,32,0,0,1,0,0,0,20,0,0,0,0,0,0,0,6,0,0,0,8,0,0,0,0,0,1,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,9,2,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,47,10,10,10,0,0,0,236,0,204,0,0,0,35,53,317,476,260,0,0,0,0,1,0,5,0,0,0,0,0,0,1812,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,573,309,1197,43,0,0,1274,0,2576,0,5,0,435,265,0,0,0,0,0,0,0,0,0,945,1,0,0,0,147,0,0,0,0,25,259,132,0,0,125,0,0,0,0,0,10260,0,0,153,3,0,1,5,0,0,0,0,5,0,0,0,1,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,48,48,0,0,8,1,0,0,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,85,1,1,1,0,34,0,0,0,0,99,121,308,0,59,9,0,0,0,0,0,260,8,0,0,0,0,0,0,1,0,0,0,0,9,0,3,30,0,0,0,0,0,0,0,0,117,0,0,197,0,2,1556,772,4 +0,0,0,8,2,15,50,2,59,10,7,0,0,0,19,9,128,0,11,1,0,0,0,1,0,0,6,0,2,0,2,1,0,2,4,0,17,137,0,0,51,0,0,0,1,0,0,7,0,0,0,0,2,134,0,0,0,0,0,1,0,0,0,0,0,17,0,0,16058,15,253,0,5,0,0,0,0,0,26,0,0,0,0,0,1,12,3038,0,2,4,2,0,2,0,0,91,0,11,1,0,6,2,129,0,14,0,0,1276,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,2716,0,96,0,0,0,4,11,40,25,2710,0,0,0,0,1,0,0,0,0,0,0,0,0,5034,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,217,38,391,10,0,0,493,0,917,0,2,0,193,19,0,0,0,0,0,0,0,0,0,283,1,0,0,0,2,0,0,0,0,1,131,81,0,0,0,0,0,0,0,0,1505,0,0,4913,0,0,1,0,1,0,0,0,17,0,0,0,3,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,13,1,1,1,0,4,0,0,0,0,17,21,209,0,11,0,0,0,0,0,0,89,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,2933,103,4 +32,0,0,0,1,38,104,1,338,2,62,0,3,0,6,0,74,0,9,5,0,0,0,2,0,3,0,0,1,0,3,0,0,1,9,0,39,66,0,0,660,0,1,0,1,0,0,1,0,0,0,0,5,171,0,0,0,0,0,1,0,0,0,0,0,56,0,0,1884,38,664,0,7,0,0,0,0,0,69,0,0,0,0,0,6,9,534,0,1,9,1,0,5,303,0,2262,20,1,0,0,10,1,1559,0,2,0,0,824,0,0,0,0,7,9,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,6,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,4,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,118,0,114,0,0,0,7,9,77,1951,150,0,0,0,0,1,0,0,0,0,0,0,0,0,1399,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,131,48,341,1,0,0,467,0,1038,0,1,0,209,38,0,0,0,0,0,0,0,0,0,596,1,0,0,0,7,0,0,0,0,5,140,781,0,0,41,0,0,0,0,0,946,0,0,725,0,0,1,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,363,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,37,1,1,1,0,5,0,0,0,0,9,48,14,0,7,0,0,0,0,0,0,807,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1175,85,4 +0,0,0,3,0,11,3,0,4,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,2,0,0,400,11,26,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,142,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,26,0,0,0,2,4,26,93,41,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,3,41,3,0,0,41,0,147,0,0,0,2,5,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,11,4 +21,0,0,0,0,34,24,0,36,2,5,0,2,0,4,0,20,0,6,6,0,0,0,6,0,10,3,0,6,0,2,1,0,0,6,0,34,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,73,0,0,0,0,0,1,0,0,0,0,0,3,0,0,694,34,116,0,9,0,0,0,0,0,13,0,0,0,0,0,11,16,123,0,0,6,0,0,2,25,0,299,15,0,0,0,4,0,171,0,2,0,0,954,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,95,0,47,0,0,0,6,12,193,169,99,0,0,0,0,1,0,3,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,133,0,0,0,146,0,246,0,0,0,61,30,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,124,53,0,0,30,0,0,0,0,0,93,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,11,0,0,0,0,1,40,22,0,13,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,35,4 +403,0,0,32,28,118,277,64,810,40,135,0,0,2,87,0,558,0,24,81,0,122,2,7,0,61,19,0,36,0,9,2,0,27,55,0,140,400,159,0,1429,0,0,0,1,0,0,5,1,0,0,0,62,472,0,0,0,0,0,1,0,3,0,21,0,143,0,0,4556,118,4018,0,96,0,0,0,0,0,114,60,0,0,0,0,14,28,679,0,64,55,27,0,12,408,0,3691,90,10,0,0,18,28,2533,0,63,0,0,3790,0,0,0,0,109,102,0,0,40,0,0,1,0,0,0,21,0,0,0,0,0,0,0,28,0,0,0,18,0,0,0,2,0,7,0,75,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,3,0,0,0,0,0,1,13,0,0,0,0,0,0,0,20,6,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,103,10,10,10,0,0,0,559,0,366,0,0,0,71,118,379,3264,612,0,0,0,0,1,0,4,0,0,0,0,0,0,5266,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,884,413,2272,68,0,0,2364,0,4237,0,8,0,832,118,0,0,0,0,0,0,0,0,0,1893,1,0,2,0,212,0,0,0,0,54,357,1061,0,0,192,0,0,0,0,0,10677,0,0,176,3,0,1,9,0,0,0,0,13,0,0,0,4,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,3,38,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,121,1,1,1,0,124,0,0,0,0,177,195,212,0,118,9,0,0,0,0,0,1375,32,0,0,0,0,0,0,1,0,0,0,0,23,0,4,50,0,0,0,0,0,0,0,0,117,0,0,209,0,6,2558,2453,4 +1,0,0,5,0,33,6,0,35,0,5,0,0,6,4,0,555,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,1,762,33,6,0,0,41,0,1,0,1,0,0,2,0,0,0,0,1,170,0,0,0,0,0,1,0,0,0,0,0,2,0,0,18087,33,623,0,2,0,0,0,0,0,18,0,0,0,0,1,8,24,4065,0,0,1,0,0,0,0,0,190,20,5,0,0,2,0,595,0,0,1,0,2820,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,531,0,57,0,0,0,1,4,250,1129,514,0,0,0,0,1,0,3,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,16,166,5,0,0,190,0,210,0,0,0,51,2,0,0,0,0,0,0,0,0,0,617,1,0,0,0,9,0,0,0,0,0,116,15,0,0,6,0,0,0,0,0,3281,1,0,806,6,0,1,1,1,0,0,0,5,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,5,0,0,0,0,1,34,83,0,4,12,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1866,31,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,2,0,0,414,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,163,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,43,3,0,0,41,0,156,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,347,14,4 +12,0,0,4,0,16,2,0,23,3,3,0,0,0,6,0,91,0,6,1,0,0,0,1,0,0,45,0,15,0,16,0,0,0,5,0,16,61,0,0,22,0,55,0,1,0,0,55,0,0,0,0,15,288,0,0,0,0,0,1,0,0,0,0,0,7,0,0,9354,16,404,0,31,0,0,0,0,0,133,0,0,0,0,0,1,57,1469,0,0,5,0,0,0,0,0,136,0,64,0,0,2,0,319,0,4,0,0,552,0,3,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,1590,0,415,0,0,0,30,78,37,146,1970,0,0,0,0,1,0,0,0,0,0,0,0,0,3765,0,60,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,8,7,122,4,0,0,579,0,844,0,0,0,520,8,0,0,0,0,0,0,0,0,0,131,1,0,0,0,2,0,0,0,0,16,98,423,0,0,0,0,0,0,0,0,608,0,0,1461,0,0,1,0,1,0,0,0,153,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,162,0,0,0,0,16,15,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,30,0,0,0,0,1,21,98,0,76,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1324,350,4 +0,0,0,5,0,37,10,0,57,4,8,0,0,0,12,1,26,0,7,1,0,0,0,1,0,0,6,0,4,0,13,0,0,0,15,0,37,6,0,0,52,0,0,0,1,0,0,9,0,0,0,0,12,192,0,0,0,0,0,1,0,0,0,0,0,9,0,0,5530,37,168,0,17,0,0,0,0,0,30,0,0,0,0,3,1,15,912,0,0,15,0,0,1,10,0,159,20,15,0,0,2,0,150,0,5,0,0,550,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,995,0,122,0,0,0,24,33,60,249,937,0,0,0,0,1,0,0,0,0,0,0,0,0,1110,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,8,9,242,6,0,0,318,0,623,0,0,0,213,15,0,0,0,0,0,0,0,0,0,121,1,0,0,0,2,0,0,0,0,13,134,133,0,0,50,0,0,0,0,0,164,0,0,938,0,0,1,0,0,0,0,0,13,0,0,0,4,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,26,0,0,0,0,1,52,448,0,23,0,0,0,0,0,0,76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,5,361,102,4 +9,0,0,3,2,30,55,2,73,8,7,0,2,0,16,0,123,0,10,2,0,0,0,1,0,8,0,0,6,0,2,0,0,2,14,0,32,65649,0,0,130,0,0,0,1,0,0,4,0,0,0,0,9,109,0,0,0,0,0,1,0,1,0,0,0,7,0,0,721,30,247,0,16,0,0,0,0,0,20,0,0,0,0,0,2,10,133,0,2,14,2,0,5,8,0,188,15,3,0,0,10,2,109,0,7,0,0,6391,0,0,0,0,4,3,0,0,14,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,41,0,0,0,0,0,0,140,0,108,0,0,0,10,13,56,185,171,0,0,0,0,1,0,0,0,0,0,0,0,0,620,0,0,0,0,0,0,0,0,0,1,0,0,4,0,0,0,0,0,0,0,0,229,71,441,5,0,0,483,0,827,0,2,0,169,9,0,0,0,0,0,0,0,0,0,286,1,0,0,0,3,0,0,0,0,9,149,39,0,0,30,0,0,0,0,0,66357,0,0,34,0,0,1,3,0,0,0,0,5,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,28,1,1,1,0,8,0,0,0,0,17,46,76,0,16,0,0,0,0,0,0,131,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,2,499,289,4 +0,0,0,4,1,11,26,1,32,0,4,0,0,0,5,0,69,0,8,1,0,0,0,1,0,0,3,0,1,0,1,1,0,1,2,0,12,54,0,0,14,0,1,0,1,0,0,1,0,0,0,0,1,31,0,0,0,0,0,1,0,0,0,0,0,4,0,0,926,11,104,0,3,0,0,0,0,0,4,0,0,0,0,0,1,4,469,0,1,2,1,0,1,0,0,49,0,1,0,0,4,1,36,0,2,0,0,130,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,38,0,27,0,0,0,2,9,28,22,50,0,0,0,0,1,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,112,14,209,5,0,0,220,0,269,0,1,0,50,1,0,0,0,0,0,0,0,0,0,144,1,0,0,0,2,0,0,0,0,2,105,3,0,0,0,0,0,0,0,0,303,0,0,739,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,1,1,1,0,6,0,0,0,0,9,14,3,0,6,0,0,0,0,0,0,43,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,265,7,4 +0,0,0,2,0,12,2,0,25,0,2,0,0,0,2,0,17,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,2,0,12,6,0,0,8,0,0,0,1,0,0,2,0,0,0,0,0,101,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1554,12,57,0,2,0,0,0,0,0,9,0,0,0,0,0,1,5,309,0,0,2,0,0,0,0,0,10,0,3,0,0,2,0,25,0,0,0,0,183,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,206,0,52,0,0,0,0,3,29,10,211,0,0,0,0,1,0,0,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,8,3,118,8,0,0,141,0,255,0,0,0,67,6,0,0,0,0,0,0,4,0,0,54,1,0,0,0,2,0,0,0,0,1,98,42,0,0,0,0,0,0,0,0,107,0,0,310,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,1,0,0,0,0,1,14,172,0,2,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,230,82,4 +1,0,0,2,1,13,26,1,41,1,3,0,0,0,4,0,80,0,9,1,0,0,0,1,0,0,9,0,6,0,4,0,0,1,2,0,14,54,0,0,10,0,0,0,1,0,0,4,0,0,0,0,3,104,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1451,13,164,0,10,0,0,0,0,0,18,0,0,0,0,0,1,7,164,0,1,2,1,0,1,0,0,68,0,5,0,0,4,1,85,0,1,0,0,272,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,176,0,81,0,0,0,6,18,43,28,190,0,0,0,0,1,0,0,0,0,0,0,0,0,522,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,113,11,275,3,0,0,353,0,822,0,1,0,167,17,0,0,0,0,0,0,0,0,0,163,1,0,0,0,2,0,0,0,0,4,151,67,0,0,0,0,0,0,0,0,255,0,0,306,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,1,1,1,0,9,0,0,0,0,9,16,169,0,19,0,0,0,0,0,0,63,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,424,142,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,45,1,0,0,83,0,57,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,4,4 +317,0,0,28,26,109,251,59,765,34,129,0,0,2,77,0,497,0,22,80,0,121,1,6,0,60,10,0,39,0,6,2,0,25,52,0,129,352,159,0,1383,0,0,0,1,0,0,5,1,0,0,0,58,416,0,0,0,0,0,1,0,2,0,21,0,132,0,0,4235,109,3717,0,95,0,0,0,0,0,106,57,0,0,0,0,14,28,622,0,59,52,25,0,11,398,0,3565,90,11,0,0,16,26,2426,0,55,0,0,3841,0,0,0,0,73,90,0,0,38,0,0,1,0,0,0,21,0,0,0,0,0,0,0,27,0,0,0,17,0,0,0,2,0,7,0,75,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2,0,0,0,0,0,1,13,0,0,0,0,0,0,0,20,15,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,92,10,10,10,0,0,0,506,0,375,0,0,0,64,83,354,3083,572,0,0,0,0,1,0,3,0,0,0,0,0,0,4745,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,784,382,2047,62,0,0,2132,0,3872,0,7,0,760,202,0,0,0,0,0,0,0,0,0,1743,1,0,2,0,208,0,0,0,0,53,329,1031,0,0,192,0,0,0,0,0,10547,0,0,123,3,0,1,7,0,0,0,0,14,0,0,0,4,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,1,0,0,0,0,3,11,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,112,1,1,1,0,63,0,0,0,0,161,181,192,0,108,9,0,0,0,0,0,1332,30,0,0,0,0,0,0,1,0,0,0,0,21,0,6,44,0,0,0,0,0,0,0,0,117,0,0,186,0,6,2412,1509,4 +38,0,0,8,2,57,26,8,147,6,37,0,0,0,14,0,46,0,6,4,0,2,2,7,2,10,9,0,104,0,4,0,0,2,38,0,59,6,0,0,309,0,0,0,1,0,0,2,0,0,0,0,13,113,0,0,0,0,0,1,0,0,0,0,0,34,0,0,300798,57,676,0,118,0,0,0,0,0,79,6,0,0,0,0,8,11,6670,0,8,38,2,0,3,105,0,955,60,3,0,0,2,2,789,0,11,0,0,365447,0,0,0,0,23,8,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,21,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,2,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,4086,0,278,0,0,0,16,27,113,50493,4167,0,0,0,0,1,0,0,0,0,0,0,0,0,9857,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,28,1987,11,0,0,405,0,448,0,0,0,258,1197,0,0,0,0,0,0,0,0,0,276,1,0,0,0,17,0,0,0,0,12,143,302,0,0,132,0,0,0,0,0,2203,0,0,8878,0,0,1,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,1,0,0,0,0,0,4,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,107,0,0,0,0,17,97,252,0,127,0,0,0,0,0,0,529,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,18,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3377,986,4 +139,0,13,22,22,100,189,43,1009,32,81,0,0,2,58,1,12763,0,19,28,0,15,4,7,1,57,25,0,26,0,5,4,0,21,42,26,119,661,0,0,669,0,0,0,1,0,0,1,1,0,0,0,58,647,0,0,0,0,0,1,0,0,0,18,0,60,0,0,4369,100,15134,0,82,0,0,0,0,0,116,37,0,0,0,0,15,22,539,0,43,42,21,0,9,153,0,1765,180,4,0,0,17,22,13355,0,44,0,0,3908,0,0,0,0,32,80,1,0,1,0,0,1,0,0,0,19,0,0,0,0,0,0,0,4,0,0,0,8,0,0,0,2,0,16,0,21,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,5,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1198,11,11,11,0,0,1,417,1,289,0,0,10,65,84,335,1239,565,0,0,0,0,1,0,5,0,0,0,24629,3,1,3404,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,786,30942,1935,49,0,0,2118,0,6947,0,6,0,918,676,0,0,0,0,0,0,0,0,0,14122,1,0,2,0,55,0,0,0,0,51,345,446,0,13,443,0,0,0,0,0,48482,0,0,33,3,0,1,7,0,0,0,0,6,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,5,100,1,1,1,0,41,0,0,0,0,204,161,120,5,108,9,0,0,0,0,0,1104,28,0,0,0,0,0,0,0,0,0,0,0,20,0,1,42,0,0,0,0,0,0,0,0,0,0,0,37,0,2,105591,1424,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,140,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,47,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,70,0,46,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,33,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,4,4 +1,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1108,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,494,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,58,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,21,0,0,0,0,3,22,4,56,0,0,0,0,1,0,0,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,58,2,0,0,96,0,145,0,0,0,43,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,36,0,0,0,0,0,0,0,0,214,0,0,776,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,170,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,239,5,4 +3,0,0,25,5,52,148,5,177,9,20,0,0,0,24,0,272,0,17,2,0,0,0,6,0,0,0,0,6,0,1,0,0,5,41,0,57,328,0,0,262,0,0,0,1,0,0,2,0,0,0,0,0,232,0,0,0,0,0,1,0,0,0,0,0,15,0,0,1244,52,494,0,7,0,0,0,0,0,10,0,0,0,0,0,7,12,200,0,5,41,5,0,7,46,0,662,45,3,0,0,12,5,347,0,13,0,0,805,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,202,0,147,0,0,0,0,3,115,429,232,0,0,0,0,1,0,0,0,0,0,0,0,0,798,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,540,84,972,31,0,0,1114,0,1724,0,5,0,467,18,0,0,0,0,0,0,0,0,0,658,1,0,0,0,8,0,0,0,0,1,235,184,0,0,120,0,0,0,0,0,631,0,0,167,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,56,1,1,1,0,6,0,0,0,0,41,98,315,0,7,0,0,0,0,0,0,253,6,0,0,0,0,0,0,0,0,0,0,0,5,0,1,13,0,0,0,0,0,0,0,0,0,0,0,5,0,2,655,79,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,83,0,57,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,4,4 +0,0,0,5,0,37,25,0,47,3,24,0,0,7,4,0,767,0,6,1,0,0,0,8,0,10,0,0,24,0,1,0,0,0,1,12483,37,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,761,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40391,37,931,0,22,0,0,0,0,0,46,0,0,0,0,0,8,92,6543,0,0,1,0,0,0,0,0,366,25,1,0,0,2,0,855,0,0,96,0,4480,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1414,0,32,0,0,0,11,14,503,2095,1391,0,0,0,0,1,0,3,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,274,5,0,0,310,0,293,0,0,0,147,13,0,0,0,0,0,0,0,0,0,880,1,0,0,0,9,0,0,0,0,1,165,6,0,0,139,0,0,0,0,0,4691,1,0,989,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,54,0,0,0,0,1,38,208,0,23,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2431,22,4 +35,0,0,23,54,49,105,60,667,20,121,1,1,0,67,1,1045,0,12,16,0,10,10,3,10,9,0,0,36,0,21,0,0,52,23,0,103,182,29,0,686,0,0,0,1,0,0,2,0,0,0,0,30,786,0,0,0,0,0,1,0,0,0,3,0,60,0,0,52732,49,2756,0,63,0,0,0,0,0,18,113,0,0,0,0,4,7,4060,0,60,23,52,0,7,197,0,2256,175,4,0,0,8,54,1910,0,30,1,0,3097,0,0,0,0,34,0,2,0,1,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,2,0,0,0,20,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,51,10,10,10,0,0,10,3962,10,143,0,0,82,55,121,317,1543,4004,0,0,0,0,1,0,0,0,0,1,0,0,0,13309,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,245,137,2284,80,0,0,2192,0,2758,0,2,0,718,104,0,0,0,0,0,0,0,0,0,2020,1,0,0,0,49,0,0,0,0,31,175,591,0,0,439,0,0,0,0,0,8228,0,0,14424,0,0,1,1,0,0,0,0,6,0,0,0,0,0,0,0,0,0,45,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,159,1,1,1,0,126,0,0,0,26,898,126,502,41,66,0,0,0,0,0,0,639,44,0,0,0,0,0,0,0,0,0,0,0,54,0,1,28,0,0,0,0,0,0,0,0,8,0,0,105,0,1,4731,484,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,33,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,83,0,57,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,4,4 +2,0,0,11,5,54,311,5,136,11,11,0,0,2,27,0,263,0,16,3,0,0,0,5,0,9,0,0,3,0,1,0,0,5,24,0,59,246,0,0,472,0,0,0,1,0,0,4,0,0,0,0,2,262,0,0,0,0,0,1,0,0,0,0,0,18,0,0,4072,54,591,0,3,0,0,0,0,0,20,0,0,0,0,0,7,17,189,0,5,24,5,0,5,0,0,262,5,8,0,0,12,5,477,0,19,0,0,5140,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,167,0,96,0,0,0,1,4,232,2598,179,0,0,0,0,1,0,3,0,0,0,0,0,0,4462,0,0,0,0,0,0,0,0,0,0,0,0,4,1,8,0,0,0,0,1,0,552,112,1133,19,0,0,1019,0,1537,0,5,0,312,82,0,0,0,0,0,0,0,0,0,766,1,0,0,0,8,0,0,0,0,1,208,44,0,0,0,0,729,0,0,0,703,0,0,103,3,0,1,1,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,55,1,1,1,0,1,0,0,0,0,41,83,236,0,4,9,0,0,0,0,0,171,5,0,0,0,0,0,0,0,0,0,0,0,6,0,1,13,0,0,0,0,0,0,0,0,0,0,0,5,0,0,280,170,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,70,0,48,0,0,0,36,5,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,4,4 +0,0,0,5,0,29,5,0,13,0,3,0,0,2,4,0,17,0,6,3,0,0,0,5,0,8,0,0,2,0,1,0,0,0,4,0,29,6,0,0,31,0,0,0,1,0,0,3,0,0,0,0,1,121,0,0,0,0,0,1,0,0,0,2,0,5,0,0,951,29,47,0,1,0,0,0,0,0,12,0,0,0,0,1,7,17,126,0,0,4,0,0,0,0,0,75,5,5,0,0,2,0,26,0,1,0,0,565,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,90,0,38,0,0,0,0,3,187,11,91,0,0,0,0,1,0,4,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,11,126,5,0,0,215,0,272,0,0,0,118,3,0,0,0,0,0,0,0,0,0,50,1,0,0,0,8,0,0,0,0,0,112,96,0,0,0,0,0,0,0,0,84,0,0,47,3,0,1,1,1,0,0,0,3,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,0,0,0,0,0,1,33,319,0,2,9,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,438,34,4 +151,0,0,29,10,84,192,22,445,30,77,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,15,0,7,3,0,9,33,0,94,301,0,0,731,0,0,0,1,0,0,3,0,0,0,0,28,357,0,0,0,0,0,1,0,3,0,12,0,87,0,0,2964,84,1556,0,40,0,0,0,0,0,75,12,0,0,0,0,13,22,398,0,22,33,9,0,10,218,0,2081,100,3,0,0,14,10,1405,0,46,0,0,2269,0,0,0,0,52,41,0,0,31,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,7,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,328,0,234,0,0,0,36,74,296,1780,357,0,0,0,0,1,0,5,0,0,0,0,0,0,2769,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1449,48,0,0,1561,0,2950,0,6,0,570,63,0,0,0,0,0,0,0,0,0,1175,1,0,0,0,30,0,0,0,0,22,277,603,0,0,215,0,0,0,0,0,9932,0,0,186,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,76,0,0,0,0,81,127,309,0,64,9,0,0,0,0,0,771,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1616,1655,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,147,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,32,0,0,0,0,3,21,195,54,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,84,0,57,0,0,0,50,8,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,4,4 +3,0,0,5,6,13,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,19,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,95,0,0,0,0,0,1,0,0,0,0,0,25,0,0,473,13,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,43,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,304,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,58,0,45,0,0,0,2,10,44,224,96,0,0,0,0,1,0,1,0,0,0,0,0,0,421,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,117,36,393,11,0,0,401,0,612,0,1,0,103,5,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,110,74,0,0,57,0,0,0,0,0,539,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,6,0,0,0,0,49,22,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,11,0,0,213,38,4 +1,0,0,5,0,40,18,0,56,4,11,0,0,6,4,1,872,0,6,2,0,0,0,8,0,11,0,0,17,0,5,0,0,0,5,1347,40,6,0,0,46,0,0,0,1,0,0,2,0,0,0,0,5,304,0,0,0,0,0,1,0,0,0,0,0,2,0,0,31008,40,1006,0,18,0,0,0,0,0,37,0,0,0,0,0,9,63,3953,0,0,5,0,0,0,0,0,257,20,4,0,0,2,0,851,0,0,27,0,3437,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,2024,0,93,0,0,0,13,9,527,1744,1981,0,0,0,0,1,0,4,0,0,0,0,0,0,2409,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,28,221,5,0,0,247,0,319,0,0,0,93,43,0,0,0,0,0,0,0,0,0,974,1,0,0,0,10,0,0,0,0,2,123,31,0,0,51,0,0,0,0,0,3141,1,0,2667,19,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,38,38,0,0,3,0,0,0,0,0,19,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,36,0,0,0,0,31,45,227,0,19,14,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1177,226,4 +111,0,0,29,11,90,158,27,279,30,42,0,0,2,66,1,565,0,20,45,0,98,2,6,0,33,22,0,17,0,7,3,0,10,38,0,100,301,160,0,397,0,0,0,1,0,0,3,0,0,0,0,34,354,0,0,0,0,0,1,0,3,0,12,0,53,0,0,2528,90,1792,0,50,0,0,0,0,0,23,15,0,0,0,0,13,22,282,0,27,38,10,0,9,45,0,801,85,3,0,0,14,11,623,0,46,0,0,2138,0,0,0,0,43,13,1,0,31,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,27,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,286,0,231,0,0,0,42,71,343,635,295,0,0,0,0,1,0,6,0,0,0,0,0,0,2252,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1452,49,0,0,1502,0,2958,0,6,0,506,325,0,0,0,0,0,0,0,0,0,1133,1,0,0,0,151,0,0,0,0,29,284,163,0,0,185,0,0,0,0,0,10424,0,0,165,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,10,1,0,0,0,0,3,19,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,56,0,0,0,0,121,138,326,0,73,9,0,0,0,0,0,331,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,38,0,0,0,0,0,0,0,0,117,0,0,214,0,2,1739,1609,4 +376,0,0,36,29,111,250,69,611,47,97,0,0,2,91,0,564,0,24,84,0,123,2,7,0,61,22,0,34,0,8,3,0,28,50,0,133,400,159,0,1038,0,0,0,1,0,0,5,1,0,0,0,62,481,0,0,0,0,0,1,0,3,0,12,0,107,0,0,4484,111,4020,0,94,0,0,0,0,0,110,63,0,0,0,0,14,28,615,0,69,50,28,0,11,211,0,2219,95,10,0,0,18,29,1560,0,67,0,0,4155,0,0,0,0,100,86,0,0,38,0,0,1,0,0,0,21,0,0,0,0,0,0,0,27,0,0,0,16,0,0,0,2,0,7,0,71,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,3,0,0,0,0,0,1,15,0,0,0,0,0,0,0,20,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,107,10,10,10,0,0,0,524,0,340,0,0,0,71,118,368,1983,580,0,0,0,0,1,0,5,0,0,0,0,0,0,4895,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,886,419,2199,76,0,0,2307,0,4179,0,8,0,781,270,0,0,0,0,0,0,0,0,0,1639,1,0,2,0,216,0,0,0,0,55,341,550,0,0,211,0,0,0,0,0,10382,0,0,162,3,0,1,9,0,0,0,0,13,0,0,0,4,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,0,3,34,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,120,1,1,1,0,113,0,0,0,0,177,183,223,0,119,9,0,0,0,0,0,863,32,0,0,0,0,0,0,1,0,0,0,0,23,0,4,55,0,0,0,0,0,0,0,0,117,0,0,202,0,6,2550,2460,4 +136,0,0,23,1,51,38,1,118,96,19,0,0,0,125,2,87,0,9,1,0,0,0,2,0,0,3,0,12,0,14,0,0,1,26,0,52,291,0,0,412,0,0,0,1,0,0,3,0,0,0,0,13,160,0,0,0,0,0,1,0,0,0,12,0,111,0,0,2137,51,376,0,26,0,0,0,0,0,10,0,0,0,0,0,2,7,283,0,1,26,1,0,3,28,0,349,35,3,0,0,4,1,509,0,102,0,0,1828,0,0,0,0,71,2,0,0,15,0,0,1,0,0,0,28,0,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,1,0,16,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,23,0,0,0,0,41,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,94,0,0,0,0,0,0,283,0,123,0,0,0,26,26,90,893,318,0,0,0,0,1,0,0,0,0,0,0,0,0,1477,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,115,156,502,29,0,0,404,0,1366,0,1,0,179,3346,0,0,0,0,0,0,0,0,0,398,1,0,0,0,3,0,0,0,0,14,156,104,0,0,102,0,0,0,2,0,936,1,0,139,0,0,1,0,0,0,0,0,7,0,0,0,2,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,7,0,0,0,0,0,18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,50,1,1,1,0,40,0,0,0,6,9,78,68,0,29,0,0,0,0,0,0,265,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,100,0,0,0,0,0,0,0,0,0,0,0,1,0,3,669,170,4 +0,0,0,5,0,36,24,0,49,3,23,0,0,7,4,0,820,0,6,1,0,0,0,8,0,10,0,0,24,0,1,0,0,0,1,12441,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,700,0,0,0,0,0,1,0,0,0,0,0,2,0,0,43378,36,983,0,22,0,0,0,0,0,45,0,0,0,0,0,8,88,7102,0,0,1,0,0,0,0,0,357,25,2,0,0,2,0,908,0,0,87,0,4535,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1941,0,32,0,0,0,11,14,491,2061,1919,0,0,0,0,1,0,3,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,281,5,0,0,309,0,292,0,0,0,149,15,0,0,0,0,0,0,0,0,0,933,1,0,0,0,9,0,0,0,0,1,161,7,0,0,130,0,0,0,0,0,4843,1,0,1015,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,54,0,0,0,0,1,37,212,0,23,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2492,27,4 +1,0,0,3,0,28,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,116,0,0,0,0,0,1,0,0,0,0,0,2,0,0,904,28,51,0,3,0,0,0,0,0,10,0,0,0,0,0,7,15,166,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,535,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,9,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,119,0,50,0,0,0,1,4,182,14,121,0,0,0,0,1,0,3,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,2,1,8,0,0,0,0,1,0,32,10,130,3,0,0,167,0,306,0,0,0,64,13,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,110,49,0,0,0,0,0,0,0,0,86,0,0,36,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,228,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,163,52,4 +10,0,0,4,1,40,33,1,38,3,3,0,4,0,7,1,79,0,9,4,0,0,0,5,0,8,3,0,4,0,3,0,0,1,9,0,41,66,0,0,75,0,0,0,1,0,0,3,0,0,0,0,3,94,0,0,0,0,0,1,0,0,0,9,0,2,0,0,1810,40,150,0,5,0,0,0,0,0,20,0,0,0,0,0,8,18,200,0,1,9,1,0,4,0,0,131,0,3,0,0,10,1,66,0,3,0,0,1111,0,0,0,0,2,5,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,10,10,10,0,0,0,161,0,76,0,0,0,4,11,209,954,163,0,0,0,0,1,0,3,0,0,0,0,0,0,512,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,1,140,67,377,8,0,0,352,0,636,0,1,0,113,12,0,0,0,0,0,0,0,0,0,174,1,0,0,0,9,0,0,0,0,3,158,11,0,0,0,0,0,0,0,0,804,0,0,99,3,0,1,2,0,0,0,0,5,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,45,1,1,1,0,9,0,0,0,0,9,50,46,0,9,9,0,0,0,0,0,114,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,1,0,4,260,102,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,195,55,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,84,0,58,0,0,0,50,3,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,4,4 +11,0,0,9,1,50,50,1,125,7,15,1,0,2,13,0,69,0,9,5,0,0,0,7,0,11,0,0,13,0,1,0,0,1,17,0,51,54,0,0,163,0,0,0,1,0,0,16,3,0,0,0,4,335,0,0,0,0,0,1,0,0,0,20,0,11,0,0,7862,50,340,0,16,0,0,0,0,0,61,0,0,0,0,5,11,39,1402,0,1,17,1,0,1,47,0,522,20,33,1,0,4,1,342,0,8,0,0,1190,0,0,0,0,31,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,8,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,10,10,10,0,0,0,1130,0,259,0,0,0,3,8,227,430,1046,0,0,0,0,1,0,3,0,0,0,0,0,0,2407,0,0,0,0,0,0,0,0,0,0,0,0,16,1,0,0,0,0,0,1,0,135,26,406,12,0,0,528,0,1666,0,1,0,275,32,0,0,0,0,0,0,0,0,0,284,1,0,9,0,12,0,0,0,0,5,162,223,0,0,34,0,0,0,0,0,633,0,0,1356,2,0,1,1,0,0,0,0,43,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,58,1,1,1,0,15,0,0,0,0,9,68,809,0,17,8,0,0,0,0,0,204,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,10,1825,98,4 +0,0,0,0,0,1,0,1,21,0,1,0,0,0,1,0,733,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,729,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,9,0,0,1,107,4 +0,0,0,0,1,31,7,1,8,0,2,0,2,0,3,0,16,0,6,5,0,1,0,6,0,8,0,0,2,0,1,0,0,1,4,0,31,12,0,0,39,0,0,0,1,0,0,0,0,0,0,0,1,49,0,0,0,0,0,1,0,0,0,0,0,0,0,0,578,31,87,0,1,0,0,0,0,0,3,3,0,0,0,0,7,12,117,0,1,4,1,0,1,0,0,74,0,0,0,0,4,1,29,0,0,0,0,1897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,71,0,48,0,0,0,0,3,184,22,91,0,0,0,0,1,0,3,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,23,20,119,1,0,0,107,0,209,0,0,0,25,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,12,0,0,0,0,0,115,8,0,0,0,0,0,0,0,0,79,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,0,0,0,0,0,1,35,20,0,2,9,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,125,102,4 +0,0,0,6,0,11,2,0,19,0,4,0,0,0,4,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,9,0,0,0,1,0,0,1,0,0,0,0,0,78,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1298,11,48,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,294,0,0,1,0,0,0,0,0,7,0,1,0,0,2,0,24,0,0,0,0,132,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,174,0,39,0,0,0,0,3,27,6,184,0,0,0,0,1,0,0,0,0,0,0,0,0,442,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,98,10,0,0,126,0,248,0,0,0,51,2,0,0,0,0,0,0,4,0,0,51,1,0,0,0,2,0,0,0,0,0,97,36,0,0,0,0,0,0,0,0,100,0,0,276,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,161,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,214,37,4 +200,0,0,26,17,79,193,26,346,34,45,0,0,2,76,1,638,0,22,30,0,18,2,6,0,45,16,0,29,0,4,3,0,16,37,0,96,540,0,0,375,0,0,0,1,0,0,0,0,0,0,0,44,313,0,0,0,0,0,1,0,0,0,2,0,54,0,0,1975,79,2439,0,72,0,0,0,0,0,4,30,0,0,0,0,15,20,141,0,26,37,16,0,8,48,0,890,80,0,0,0,16,17,729,0,51,0,0,2431,0,0,0,0,36,18,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,17,0,0,0,6,0,0,0,0,0,7,0,58,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,1,0,0,0,0,0,0,13,0,0,0,3,0,0,0,13,2,0,0,0,0,29,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,52,10,10,10,0,0,0,146,0,168,0,0,0,49,64,341,581,159,0,0,0,0,1,0,4,0,0,0,0,0,0,1819,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,773,178,1662,50,0,0,1709,0,2626,0,7,0,501,102,0,0,0,0,0,0,0,0,0,1323,0,0,0,0,56,0,0,0,0,45,278,107,0,0,187,0,0,0,1,0,14888,0,0,9,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,1,0,0,0,0,51,51,0,0,6,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,83,1,1,1,0,44,0,0,0,0,181,133,76,0,88,9,0,0,0,0,0,346,40,0,0,0,0,0,0,0,0,0,0,0,18,0,1,40,0,0,0,0,0,0,0,0,0,0,0,21,0,0,931,1208,4 +1,0,0,2,1,13,26,1,41,1,3,0,0,0,4,0,80,0,9,1,0,0,0,1,0,0,9,0,7,0,4,0,0,1,2,0,14,54,0,0,10,0,0,0,1,0,0,4,0,0,0,0,3,106,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1741,13,166,0,11,0,0,0,0,0,19,0,0,0,0,0,1,7,196,0,1,2,1,0,1,0,0,69,0,4,0,0,4,1,86,0,1,0,0,290,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,200,0,78,0,0,0,6,18,44,28,213,0,0,0,0,1,0,0,0,0,0,0,0,0,583,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,112,11,276,3,0,0,341,0,766,0,1,0,154,11,0,0,0,0,0,0,0,0,0,163,1,0,0,0,2,0,0,0,0,4,138,67,0,0,0,0,0,0,0,0,273,0,0,389,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,18,1,1,1,0,10,0,0,0,0,9,16,169,0,20,0,0,0,0,0,0,63,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,413,183,4 +0,0,0,5,0,36,24,0,47,3,23,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12411,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,717,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39483,36,911,0,24,0,0,0,0,0,45,0,0,0,0,0,8,94,6493,0,0,1,0,0,0,0,0,362,25,2,0,0,2,0,836,0,0,89,0,4188,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1415,0,32,0,0,0,13,16,499,2056,1393,0,0,0,0,1,0,3,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,268,5,0,0,307,0,288,0,0,0,144,13,0,0,0,0,0,0,0,0,0,859,1,0,0,0,9,0,0,0,0,1,163,7,0,0,131,0,0,0,0,0,4563,1,0,1009,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,212,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2375,24,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,2,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,2,15,0,0,0,0,0,1,0,0,0,0,0,2,0,0,33,10,18,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,4,3,23,9,33,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,29,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,3,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,4 +9,0,0,0,0,13,8,0,26,0,5,0,2,0,2,0,12,0,6,5,0,0,0,0,0,0,0,0,1,0,2,0,0,0,2,0,13,12,0,0,59,0,0,0,0,0,0,0,0,0,0,0,1,31,0,0,0,0,0,1,0,0,0,0,0,4,0,0,100,13,53,0,3,0,0,0,0,0,0,0,0,0,0,0,4,4,16,0,0,2,0,0,2,20,0,168,0,0,0,0,6,0,112,0,0,0,0,2170,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,33,0,29,0,0,0,2,4,31,145,48,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,25,68,0,0,0,59,0,206,0,0,0,14,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,5,0,0,0,0,2,97,53,0,0,0,0,0,0,0,0,27,0,0,1,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,15,2,0,3,0,0,0,0,0,0,81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,18,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,83,0,57,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,4,4 +0,0,0,14,0,40,8,0,55,3,10,0,0,7,7,0,701,0,6,2,0,0,0,7,0,10,0,0,10,0,1,0,0,0,1,1023,40,6,0,0,54,0,0,0,1,0,0,1,0,0,0,0,1,300,0,0,0,0,0,1,0,0,0,0,0,4,0,0,33655,40,799,0,8,0,0,0,0,0,16,0,0,0,0,0,8,23,7363,0,0,1,0,0,0,0,0,231,25,2,0,0,2,0,776,0,0,9,0,2154,0,0,0,0,0,0,6,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,2867,0,49,0,0,0,1,4,341,595,2846,0,0,0,0,1,0,6,0,0,0,0,0,0,4114,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,106,25,253,19,0,0,272,0,319,0,0,0,98,7,0,0,0,0,0,0,0,0,0,794,1,0,0,0,9,0,0,0,0,0,129,41,0,0,28,0,0,0,0,0,3786,1,0,3563,8,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,10,0,0,0,0,1,41,201,0,9,12,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3140,47,4 +1,0,0,3,0,31,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,31,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,382,0,0,0,0,0,1,0,0,0,0,0,2,0,0,404323,31,57,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,160,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,75454,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,126,0,52,0,0,0,1,4,188,14,124,0,0,0,0,1,0,3,0,0,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,0,0,2,1,19,0,0,0,0,1,0,32,10,2630,3,0,0,189,0,407,0,0,0,75,1078,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,113,58,0,0,0,0,0,0,0,0,89,0,0,81,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,1,0,0,0,0,1,33,212,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,168,956,4 +151,0,0,29,10,85,187,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,3,0,9,33,0,95,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,354,0,0,0,0,0,1,0,3,0,12,0,82,0,0,2866,85,1512,0,39,0,0,0,0,0,71,12,0,0,0,0,13,22,396,0,22,33,9,0,10,193,0,1895,100,3,0,0,14,10,1279,0,46,0,0,2171,0,0,0,0,53,40,0,0,30,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,329,0,232,0,0,0,36,75,300,1618,358,0,0,0,0,1,0,5,0,0,0,0,0,0,2678,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1392,48,0,0,1556,0,2954,0,6,0,562,54,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,279,538,0,0,215,0,0,0,0,0,9931,0,0,190,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,75,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1623,1650,4 +0,0,0,3,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,2,0,0,18,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,3,0,0,32,0,95,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,7,4 +11,0,0,9,1,51,50,1,125,7,15,1,0,2,13,0,69,0,9,5,0,0,0,7,0,11,0,0,11,0,1,0,0,1,17,0,52,54,0,0,163,0,0,0,1,0,0,16,3,0,0,0,4,322,0,0,0,0,0,1,0,0,0,20,0,11,0,0,7600,51,336,0,14,0,0,0,0,0,60,0,0,0,0,5,11,39,1384,0,1,17,1,0,1,47,0,520,20,33,1,0,4,1,340,0,8,0,0,1442,0,0,0,0,33,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,8,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,10,10,10,0,0,0,1112,0,262,0,0,0,3,8,231,430,1029,0,0,0,0,1,0,3,0,0,0,0,0,0,2323,0,0,0,0,0,0,0,0,0,0,0,0,16,1,0,0,0,0,0,1,0,136,26,423,12,0,0,531,0,1672,0,1,0,275,40,0,0,0,0,0,0,0,0,0,284,1,0,9,0,12,0,0,0,0,5,163,224,0,0,34,0,0,0,0,0,608,0,0,1264,2,0,1,1,0,0,0,0,44,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,59,1,1,1,0,13,0,0,0,0,9,69,820,0,15,8,0,0,0,0,0,204,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,10,1812,105,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,6,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,4 +0,0,0,3,0,11,2,0,5,0,2,0,0,0,4,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,402,11,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,25,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,15,0,0,0,0,125,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,54,45,0,0,0,0,1,0,0,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,46,3,0,0,44,0,141,0,0,0,5,4,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,2,93,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,11,4 +10,0,0,12,2,115,69,6,156,8,34,0,0,9,28,0,913,0,9,9,0,1,2,10,5,17,42,0,31,0,7,3,0,2,55,2243,117,54,39,0,229,0,0,0,1,0,0,4,0,0,0,0,20,687,0,0,0,0,0,1,0,0,0,6,0,25,0,0,32092,115,1325,0,37,0,0,0,0,0,30,3,0,0,0,0,12,39,3789,0,6,55,2,0,3,68,0,980,130,5,0,0,4,2,1461,0,15,30,0,4377,0,0,0,0,18,6,3,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,47,0,1,0,0,0,0,0,0,0,0,1,1,3,3,0,0,0,0,2,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,70,12,12,12,0,0,0,2166,0,175,0,0,0,39,120,592,1188,2140,0,0,0,0,1,0,7,0,0,0,0,0,0,5535,3,0,0,0,0,0,0,0,0,1,0,0,4,4,0,0,0,0,0,1,0,219,44,775,16,0,0,763,0,1071,0,1,0,422,283,0,0,0,0,0,0,0,0,0,1218,1,0,0,0,27,0,0,0,0,17,270,197,0,0,305,0,50,0,0,0,4760,1,0,5658,13,0,1,1,0,0,0,0,6,0,0,0,4,0,0,0,0,0,8,0,0,0,9,2,0,0,0,0,0,0,0,0,0,0,40,1,0,0,0,0,13,13,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,150,1,1,1,0,100,0,0,0,0,9,172,367,0,86,14,0,1,0,0,0,325,3,0,0,0,0,0,0,0,0,0,0,0,4,0,1,16,0,0,0,0,0,0,0,0,0,0,0,3,0,3,2841,184,4 +7,0,0,0,0,27,13,0,52,2,11,0,0,0,4,0,21,0,7,2,0,0,0,1,0,4,0,0,2,0,1,0,0,0,11,0,27,6,0,0,103,0,0,0,1,0,0,2,1,0,0,0,4,48,0,0,0,0,0,1,0,0,0,0,0,8,0,0,503,27,125,0,7,0,0,0,0,0,12,0,0,0,0,0,2,7,93,0,0,11,0,0,0,41,0,328,20,6,1,0,2,0,216,0,2,0,0,273,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,112,0,78,0,0,0,4,7,58,283,121,0,0,0,0,1,0,0,0,0,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,10,5,145,0,0,0,163,0,2688,0,0,0,82,18,0,0,0,0,0,0,0,0,0,108,1,0,5,0,3,0,0,0,0,3,117,113,0,0,48,0,0,0,0,0,643,0,0,104,0,0,1,1,0,0,0,0,10,0,0,0,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,2,0,0,0,0,1,38,31,0,7,0,0,0,0,0,0,134,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,164,73,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,729,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,725,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,9,0,0,1,107,4 +170,0,3,0,3,71,40,8,597,1,41,0,6,0,2,0,6339,0,7,18,0,3,1,5,0,24,16,0,13,0,5,1,0,2,22,26,73,21,0,0,699,0,0,0,1,0,0,1,0,0,0,0,22,126,0,0,0,0,0,1,0,1,0,0,0,31,0,0,2444,71,7386,0,33,0,0,0,0,0,42,6,0,0,0,0,15,22,489,0,8,22,2,0,7,156,0,1346,30,2,0,0,12,3,7201,0,0,0,0,2612,0,0,0,0,42,78,0,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,7,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,813,10,10,10,0,0,0,384,0,277,0,0,0,26,76,245,3668,408,0,0,0,0,1,0,3,0,0,0,12821,3,1,1706,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,83,16104,425,3,0,0,405,0,912,0,0,0,164,434,0,0,0,0,0,0,0,0,0,7032,1,0,0,0,27,0,0,0,0,22,150,398,0,3,60,0,1,0,0,0,13470,0,0,79,3,0,1,4,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,72,1,1,1,0,93,0,0,0,0,19,95,40,0,50,9,0,0,0,0,0,897,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,2,0,0,0,0,0,0,0,0,0,0,4,0,1,775,2063,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,47,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,70,0,48,0,0,0,36,6,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,33,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,4,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,44,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,4 +116,0,0,32,17,96,206,54,414,39,73,0,0,2,78,0,424,0,22,61,0,103,1,6,0,57,13,0,30,0,5,3,0,16,40,0,106,352,159,0,897,0,0,0,1,0,0,5,1,0,0,0,54,380,0,0,0,0,0,1,0,2,0,12,0,85,0,0,3761,96,2705,0,83,0,0,0,0,0,110,30,0,0,0,0,13,27,547,0,54,40,16,0,10,161,0,1763,95,11,0,0,16,17,1168,0,56,0,0,2490,0,0,0,0,55,44,0,0,40,0,0,1,0,0,0,19,0,0,0,0,0,0,0,6,0,0,1,11,0,0,0,2,0,1,0,24,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,3,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,76,10,10,10,0,0,0,435,0,294,0,0,0,60,83,320,1538,488,0,0,0,0,1,0,4,0,0,0,0,0,0,3762,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,780,385,1709,60,0,0,1733,0,3624,0,7,0,617,86,0,0,0,0,0,0,0,0,0,1219,1,0,2,0,171,0,0,0,0,47,317,416,0,0,211,0,0,0,0,0,10140,0,0,138,3,0,1,7,0,0,0,0,14,0,0,0,4,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,3,11,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,99,1,1,1,0,54,0,0,0,0,81,146,196,0,99,9,0,0,0,0,0,668,10,0,0,0,0,0,0,1,0,0,0,0,11,0,4,47,0,0,0,0,0,0,0,0,117,0,0,157,0,6,2308,1271,4 +116,0,0,29,11,90,157,27,271,28,38,0,0,2,64,1,565,0,20,45,0,98,2,6,0,38,22,0,16,0,9,2,0,10,38,0,100,301,160,0,383,0,0,0,1,0,0,3,0,0,0,0,39,348,0,0,0,0,0,1,0,3,0,12,0,50,0,0,2539,90,1773,0,55,0,0,0,0,0,20,15,0,0,0,0,13,22,292,0,27,38,10,0,8,37,0,741,70,3,0,0,14,11,586,0,44,0,0,2493,0,0,0,0,45,16,1,0,30,0,0,1,0,0,0,20,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,28,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,293,0,232,0,0,0,48,79,347,591,301,0,0,0,0,1,0,6,0,0,0,0,0,0,2208,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,336,1435,49,0,0,1498,0,2906,0,6,0,503,495,0,0,0,0,0,0,0,0,0,1118,1,0,0,0,151,0,0,0,0,36,284,149,0,0,155,0,0,0,0,0,10427,0,0,163,3,0,1,6,0,0,0,0,5,0,0,0,2,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,10,1,0,0,0,0,3,18,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,54,0,0,0,0,125,138,326,0,78,9,0,0,0,0,0,314,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,34,0,0,0,0,0,0,0,0,117,0,0,180,0,3,1735,1651,4 +151,0,0,29,10,85,191,22,440,30,77,0,0,2,63,0,375,0,20,16,0,6,2,6,0,25,22,0,14,0,7,4,0,9,33,0,95,301,0,0,721,0,0,0,1,0,0,3,0,0,0,0,28,338,0,0,0,0,0,1,0,3,0,12,0,86,0,0,2877,85,1544,0,39,0,0,0,0,0,73,12,0,0,0,0,13,22,390,0,22,33,9,0,10,213,0,2043,100,3,0,0,14,10,1379,0,46,0,0,2177,0,0,0,0,52,41,0,0,30,0,0,1,0,0,0,17,0,0,0,0,0,0,0,7,0,0,0,8,0,0,0,0,0,1,0,17,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,37,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,330,0,231,0,0,0,36,75,300,1748,359,0,0,0,0,1,0,5,0,0,0,0,0,0,2659,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1405,48,0,0,1564,0,2952,0,6,0,570,49,0,0,0,0,0,0,0,0,0,1168,1,0,0,0,30,0,0,0,0,22,281,590,0,0,215,0,0,0,0,0,9919,0,0,188,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,75,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,759,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1593,1650,4 +150,0,0,29,10,84,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,94,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,368,0,0,0,0,0,1,0,3,0,12,0,83,0,0,2944,84,1523,0,39,0,0,0,0,0,73,12,0,0,0,0,13,22,396,0,22,33,9,0,10,198,0,1932,100,3,0,0,14,10,1304,0,46,0,0,2054,0,0,0,0,51,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,328,0,235,0,0,0,36,76,296,1649,357,0,0,0,0,1,0,5,0,0,0,0,0,0,2758,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1453,48,0,0,1558,0,2902,0,6,0,567,41,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,280,551,0,0,215,0,0,0,0,0,9930,0,0,184,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,77,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1608,1655,4 +374,0,0,10,14,196,232,38,553,74,91,0,6,0,138,1,975,0,17,29,0,10,6,11,2,65,50,0,25,0,21,6,0,12,111,0,210,65791,6655,0,1171,0,0,0,1,0,0,5,1,0,0,0,82,458,0,0,0,0,0,1,0,3,0,31,0,121,0,0,40002,196,3177,0,104,0,0,0,0,0,156,27,0,0,0,0,25,36,8137,0,38,111,12,0,12,283,0,2681,155,11,0,0,20,14,2795,0,86,1,0,7937,0,0,0,0,114,87,2,0,31,0,0,1,0,0,0,24,0,0,0,0,0,0,0,23,0,0,0,43,0,0,0,0,0,2,0,35,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,80,8,0,0,0,0,0,2,0,0,0,0,0,9,27,0,0,0,4,0,0,0,0,13,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,2,131,12,12,12,0,0,2,5164,2,499,0,0,2,107,381,467,133356,5189,0,0,0,0,1,0,11,0,0,0,0,0,0,11117,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,470,263,1824,27,0,0,1954,0,2393,0,4,0,964,123672,0,0,0,0,0,0,0,0,0,2013,1,0,2,0,58,0,0,0,0,65,401,764,0,0,374,0,0,0,0,0,78471,0,0,8307,3,0,1,10,0,0,0,0,15,0,0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,15,1,0,0,0,0,3,175,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,204,1,1,1,0,663,0,0,0,0,186,321,459,1,158,9,0,0,0,0,0,1101,19,0,0,0,0,0,0,0,0,0,0,0,15,0,2,80,0,0,0,0,0,0,0,27,8,0,0,26,0,4,4740,2541,4 +279,0,0,28,21,95,168,37,383,32,48,0,0,2,69,2,810,0,20,67,0,117,2,6,0,34,22,0,20,0,8,2,0,20,41,0,115,301,160,0,402,0,0,0,1,0,0,3,0,0,0,0,35,388,0,0,0,0,0,1,0,2,0,12,0,55,0,0,2623,95,3481,0,54,0,0,0,0,0,21,45,0,0,0,0,14,23,276,0,37,41,20,0,8,42,0,797,70,2,0,0,14,21,738,0,49,0,0,2997,0,0,0,0,61,33,0,0,26,0,0,1,0,0,0,19,0,0,0,0,0,0,0,27,0,0,0,15,0,0,0,0,0,7,0,68,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,33,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,20,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,300,0,284,0,0,0,43,72,406,617,311,0,0,0,0,1,0,5,0,0,0,0,0,0,2900,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,341,1834,58,0,0,1847,0,3166,0,6,0,593,662,0,0,0,0,0,0,0,0,0,1502,1,0,0,0,192,0,0,0,0,34,290,159,0,0,155,0,0,0,0,0,10729,0,0,156,4,0,1,7,0,0,0,0,5,0,0,0,1,0,0,0,0,0,31,0,0,0,0,0,0,0,0,1,0,0,107,107,0,0,12,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,102,1,1,1,0,57,0,0,0,0,235,156,317,0,77,9,0,0,0,0,0,339,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,38,0,0,0,0,0,0,0,0,117,0,0,195,0,2,1801,1861,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,147,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,195,55,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,84,0,58,0,0,0,50,6,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,4,4 +4,0,0,0,2,21,2,2,33,2,3,0,0,0,4,0,34,0,6,5,0,4,0,2,0,0,0,0,5,0,3,0,0,2,9,0,23,6,0,0,33,0,1,0,1,0,0,1,0,0,0,0,2,33,0,0,0,0,0,1,2,0,0,7,0,2,0,0,1003,21,178,0,8,0,0,0,0,0,4,6,0,0,0,0,2,5,475,0,2,9,2,0,0,0,0,26,0,2,0,0,2,2,39,0,2,0,0,289,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6,0,0,0,0,0,0,42,0,33,0,0,0,4,5,46,29,51,0,0,0,0,1,0,0,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,175,2,0,0,186,0,218,0,0,0,67,10,0,0,0,0,0,0,0,0,0,82,1,0,0,0,11,0,0,0,0,3,103,17,0,0,0,0,0,0,0,0,239,0,0,734,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,9,0,0,0,0,17,32,67,0,8,0,0,0,0,0,0,40,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,238,31,4 +53,0,0,1,1,55,14,4,65,2,15,0,3,0,5,0,37,0,7,10,0,1,1,6,0,16,3,0,7,0,4,1,0,1,21,0,56,12,0,0,201,0,0,0,1,0,0,0,0,0,0,0,13,99,0,0,0,0,0,1,0,1,0,0,0,9,0,0,943,55,279,0,18,0,0,0,0,0,14,3,0,0,0,0,13,18,135,0,4,21,1,0,4,41,0,455,30,0,0,0,6,1,281,0,2,0,0,1068,0,0,0,0,11,10,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,135,0,85,0,0,0,16,23,220,389,122,0,0,0,0,1,0,4,0,0,0,0,0,0,506,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,280,2,0,0,236,0,406,0,0,0,105,34,0,0,0,0,0,0,0,0,0,146,0,0,0,0,18,0,0,0,0,12,146,98,0,0,60,0,0,0,0,0,698,0,0,6,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,18,0,0,0,0,9,77,37,0,22,9,0,0,0,0,0,214,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,148,795,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,2,0,0,407,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,142,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,42,3,0,0,41,0,156,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,24,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,14,4 +18,0,0,10,0,18,6,0,28,1,7,0,0,0,7,0,22,0,7,1,0,0,0,1,0,0,0,0,7,0,14,0,0,0,6,0,18,74,0,0,44,0,0,0,1,0,0,2,0,0,0,0,13,98,2,0,0,0,0,1,0,0,0,2,0,9,0,0,213870,18,93,0,21,0,0,0,0,0,11,0,0,0,0,0,1,4,105482,0,0,6,0,0,1,11,0,117,15,3,0,0,2,0,105,0,3,0,0,461,0,0,0,0,9,0,4,0,3,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,11,0,0,0,0,0,0,0,0,3,5,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,105288,0,68,0,0,0,26,17,47,213,105316,0,0,0,0,1,0,0,0,0,0,0,0,0,1364,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,17,9,147,14,0,0,213,0,513,0,0,0,147,25,0,0,0,0,0,0,0,0,0,77,1,0,0,0,2,0,0,0,0,3,105,130,0,0,31,0,0,0,0,0,735,0,0,1126,0,0,1,5,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,33,0,0,0,10,1,24,267,0,21,0,0,0,0,0,0,71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,6,0,0,0,0,0,0,0,0,0,0,0,0,3,642,189,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,660,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,656,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,9,0,0,0,0,0,0,0,0,0,682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,2,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,9,0,0,1,99,4 +0,0,0,7,2,15,50,2,56,10,6,0,0,0,19,0,123,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,4,0,17,136,0,0,39,0,0,0,1,0,0,7,0,0,0,0,1,176,0,0,0,0,0,1,0,0,0,0,0,17,0,0,3822,15,235,0,3,0,0,0,0,0,31,0,0,0,0,0,1,10,734,0,2,4,2,0,2,0,0,90,0,14,0,0,6,2,89,0,14,0,0,421,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,577,0,307,0,0,0,2,7,40,24,758,0,0,0,0,1,0,0,0,0,0,0,0,0,2691,0,192,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,236,38,478,9,0,0,461,0,1540,0,2,0,160,21,0,0,0,0,0,0,0,0,0,265,1,0,0,0,2,0,0,0,0,1,134,43,0,0,0,0,0,0,0,0,730,0,0,849,0,0,1,0,0,0,0,0,19,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,13,1,1,1,0,2,0,0,0,0,17,21,172,0,6,0,0,0,0,0,0,93,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,1472,75,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,44,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,2,0,0,413,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,143,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,42,3,0,0,41,0,156,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,14,4 +0,0,0,5,0,32,6,0,36,1,5,0,0,6,4,0,540,0,6,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,898,32,6,0,0,41,0,1,0,1,0,0,1,0,0,0,0,1,152,0,0,0,0,0,1,0,0,0,0,0,2,0,0,18848,32,596,0,2,0,0,0,0,0,12,0,0,0,0,0,8,18,4365,0,0,1,0,0,0,0,0,186,20,2,0,0,2,0,581,0,0,1,0,2771,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,748,0,32,0,0,0,0,3,244,1155,737,0,0,0,0,1,0,3,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,84,19,172,5,0,0,186,0,197,0,0,0,47,3,0,0,0,0,0,0,0,0,0,603,1,0,0,0,9,0,0,0,0,0,115,8,0,0,6,0,0,0,0,0,3232,1,0,758,6,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,1,0,0,0,0,1,33,138,0,3,12,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1835,25,4 +111,0,0,24,4,63,81,7,125,7,16,0,0,2,24,0,187,0,12,5,0,1,1,6,0,15,9,0,10,0,4,0,0,4,22,0,67,164,0,0,210,0,0,0,1,0,0,7,0,0,0,0,11,258,0,0,0,0,0,1,0,1,0,0,0,21,0,0,5631,63,484,0,19,0,0,0,0,0,30,3,0,0,0,0,8,21,1171,0,7,22,4,0,4,11,0,323,20,12,0,0,8,4,208,0,15,0,0,1691,0,0,0,0,42,30,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,1,3,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,36,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,818,0,249,0,0,0,13,46,242,244,785,0,0,0,0,1,0,4,0,0,0,0,0,0,2037,0,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,1,0,349,74,796,33,0,0,817,0,1503,0,3,0,285,26,0,0,0,0,0,0,2,0,0,447,1,0,0,0,13,0,0,0,0,11,193,94,0,0,34,0,0,0,0,0,1264,0,0,1126,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,65,1,1,1,0,64,0,0,0,0,33,89,360,0,29,9,0,0,0,0,0,268,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,11,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1416,1355,4 +0,0,0,5,0,36,24,0,46,3,23,0,0,7,4,0,712,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12422,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,750,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39472,36,873,0,24,0,0,0,0,0,45,0,0,0,0,0,8,92,6408,0,0,1,0,0,0,0,0,361,25,2,0,0,2,0,800,0,0,87,0,4657,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,1355,0,32,0,0,0,13,16,493,2055,1333,0,0,0,0,1,0,3,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,275,5,0,0,309,0,290,0,0,0,149,14,0,0,0,0,0,0,0,0,0,822,1,0,0,0,9,0,0,0,0,1,164,7,0,0,130,0,0,0,0,0,4573,1,0,1034,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,212,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2432,26,4 +115,0,0,24,4,65,81,7,125,7,16,0,0,2,24,0,187,0,12,6,0,1,1,5,0,15,9,0,10,0,4,0,0,4,23,0,69,164,0,0,210,0,0,0,1,0,0,7,0,0,0,0,11,262,0,0,0,0,0,1,0,1,0,0,0,21,0,0,5202,65,484,0,19,0,0,0,0,0,30,3,0,0,0,0,8,21,1053,0,7,23,4,0,4,11,0,323,20,12,0,0,8,4,208,0,15,0,0,1580,0,0,0,0,44,33,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,37,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,772,0,276,0,0,0,13,48,247,248,740,0,0,0,0,1,0,4,0,0,0,0,0,0,1990,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,74,773,33,0,0,823,0,1508,0,3,0,288,25,0,0,0,0,0,0,2,0,0,447,1,0,0,0,13,0,0,0,0,11,195,94,0,0,34,0,0,0,0,0,1218,0,0,955,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,26,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,67,1,1,1,0,69,0,0,0,0,33,92,361,0,29,9,0,0,0,0,0,280,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,11,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1401,1381,4 +91,0,0,4,1,52,25,4,117,6,24,0,4,0,13,0,37,0,7,6,0,1,1,5,0,30,9,0,5,0,5,0,0,1,17,0,53,15,0,0,479,0,0,0,1,0,0,0,0,0,0,0,27,105,0,0,0,0,0,1,0,1,0,0,0,27,0,0,1381,52,370,0,30,0,0,0,0,0,16,3,0,0,0,0,8,13,257,0,4,17,1,0,4,88,0,808,15,0,0,0,8,1,553,0,8,0,0,1248,0,0,0,0,37,23,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,206,0,106,0,0,0,30,62,217,795,203,0,0,0,0,1,0,4,0,0,0,0,0,0,811,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,94,262,6,0,0,239,0,310,0,0,0,102,22,0,0,0,0,0,0,0,0,0,227,0,0,0,0,13,0,0,0,0,26,137,230,0,0,30,0,0,0,0,0,728,0,0,21,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,37,0,0,0,0,9,70,41,0,40,9,0,0,0,0,0,326,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,272,1524,4 +367,0,0,36,29,115,250,69,609,43,97,0,0,2,87,0,566,0,24,85,0,122,2,6,0,68,22,0,38,0,8,2,0,28,52,0,137,400,160,0,1058,0,0,0,1,0,0,5,1,0,0,0,68,464,0,0,0,0,0,1,0,3,0,12,0,103,0,0,4443,115,4020,0,104,0,0,0,0,0,110,63,0,0,0,0,13,27,644,0,69,52,28,0,11,211,0,2229,95,10,0,0,18,29,1564,0,63,0,0,3711,0,0,0,0,98,84,0,0,36,0,0,1,0,0,0,23,0,0,0,0,0,0,0,25,0,0,0,16,0,0,0,2,0,7,0,73,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,3,0,0,0,0,0,1,15,0,0,0,0,0,0,0,20,14,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,107,10,10,10,0,0,0,543,0,361,0,0,0,76,128,378,1993,602,0,0,0,0,1,0,5,0,0,0,0,0,0,5015,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,890,415,2190,76,0,0,2326,0,4186,0,8,0,794,197,0,0,0,0,0,0,0,0,0,1635,1,0,2,0,215,0,0,0,0,64,352,550,0,0,211,0,0,0,0,0,10399,0,0,155,3,0,1,9,0,0,0,0,13,0,0,0,4,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,1,0,0,0,0,3,28,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,118,1,1,1,0,108,0,0,0,0,177,189,225,0,129,9,0,0,0,0,0,877,32,0,0,0,0,0,0,1,0,0,0,0,23,0,6,51,0,0,0,0,0,0,0,0,117,0,0,199,0,6,2686,2626,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,142,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,70,0,48,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,35,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,4,4 +9,0,0,7,0,55,78,0,79,3,80,0,0,7,11,0,686,0,7,2,0,0,0,7,0,11,9,0,20,0,1,2,0,0,14,978,55,36,0,0,89,0,0,0,1,0,0,6,0,0,0,0,4,939,0,0,0,0,0,1,0,0,0,0,0,11,0,0,31363,55,1193,0,21,0,0,0,0,0,174,0,0,0,0,1,8,328,6376,0,0,14,0,0,0,0,0,855,25,10,0,0,2,0,961,0,7,565,0,7257,0,0,0,0,2,4,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,1491,0,153,0,0,0,16,32,1658,3075,1366,0,0,0,0,1,0,4,0,0,0,0,0,0,921,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,114,239,333,7,0,0,448,0,459,0,0,0,268,17,0,0,0,0,0,0,0,0,0,948,1,0,0,0,9,0,0,0,0,5,141,25,0,0,612,0,6,0,0,0,5287,1,0,512,75,0,1,2,0,0,0,0,13,0,0,0,3,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,75,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,63,0,0,0,0,1,69,463,0,31,12,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,6,2879,73,4 +0,0,0,2,0,8,2,0,14,0,2,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,8,0,3,0,1,0,0,3,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,689,8,43,0,1,0,0,0,0,0,10,0,0,0,0,0,1,5,205,0,0,0,0,0,0,0,0,9,0,4,0,0,2,0,15,0,0,0,0,120,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,70,0,34,0,0,0,0,3,22,5,77,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,7,85,2,0,0,89,0,178,0,0,0,29,3,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,20,0,0,0,0,0,0,0,0,46,0,0,398,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,73,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,583,235,4 +0,0,0,0,0,8,41,0,49,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,142,8,132,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,45,0,338,15,0,0,0,4,0,231,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,32,0,0,0,0,3,21,207,54,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,87,0,59,0,0,0,53,3,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2,0,0,0,0,0,91,90,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,106,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,4,4 +0,0,0,0,0,8,4,0,12,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,111,8,48,0,1,0,0,0,0,0,7,0,0,0,0,0,1,1,35,0,0,0,0,0,2,8,0,79,15,0,0,0,4,0,46,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,29,0,0,0,0,3,21,58,44,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,45,0,31,0,0,0,11,6,0,0,0,0,0,0,0,0,0,41,0,0,0,0,2,0,0,0,0,0,91,16,0,0,30,0,0,0,0,0,31,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,4,4 +44,0,0,1,1,55,10,4,41,2,8,0,3,0,5,0,36,0,7,9,0,1,1,7,0,19,3,0,8,0,3,1,0,1,21,0,56,12,0,0,158,0,0,0,1,0,0,0,0,0,0,0,15,97,0,0,0,0,0,1,0,1,0,0,0,5,0,0,865,55,240,0,21,0,0,0,0,0,10,3,0,0,0,0,13,18,139,0,4,21,1,0,3,18,0,275,15,0,0,0,6,1,173,0,2,0,0,13442,0,0,0,0,13,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,132,0,92,0,0,0,17,27,220,229,120,0,0,0,0,1,0,3,0,0,0,0,0,0,433,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,52,266,2,0,0,228,0,399,0,0,0,97,27,0,0,0,0,0,0,0,0,0,110,0,0,0,0,18,0,0,0,0,14,146,45,0,0,30,0,0,0,0,0,121,0,0,4,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,15,0,0,0,0,9,77,37,0,25,9,0,0,0,0,0,160,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,150,868,4 +0,0,0,3,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,2,0,0,18,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,3,0,0,32,0,94,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,7,4 +151,0,0,29,10,84,191,22,440,30,76,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,3,0,9,33,0,94,301,0,0,721,0,0,0,1,0,0,3,0,0,0,0,28,355,0,0,0,0,0,1,0,3,0,12,0,86,0,0,2906,84,1543,0,39,0,0,0,0,0,72,12,0,0,0,0,13,22,404,0,22,33,9,0,10,213,0,2043,100,4,0,0,14,10,1379,0,46,0,0,2297,0,0,0,0,52,41,0,0,30,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,327,0,236,0,0,0,36,75,296,1747,357,0,0,0,0,1,0,5,0,0,0,0,0,0,2726,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1463,48,0,0,1557,0,2904,0,6,0,567,52,0,0,0,0,0,0,0,0,0,1168,1,0,0,0,30,0,0,0,0,22,277,590,0,0,215,0,0,0,0,0,9931,0,0,177,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,75,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,759,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,15,0,3,1628,1661,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,83,0,57,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,4,4 +10,0,0,11,1,51,50,1,124,7,15,1,0,2,13,0,70,0,9,5,0,0,0,7,0,11,0,0,12,0,1,0,0,1,15,0,52,59,0,0,166,0,0,0,1,0,0,19,3,0,0,0,3,385,0,0,0,0,0,1,0,0,0,19,0,10,0,0,12307,51,350,0,13,0,0,0,0,0,71,0,0,0,0,5,11,43,1803,0,1,15,1,0,1,47,0,526,20,40,1,0,4,1,341,0,8,0,0,1624,0,0,0,0,33,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,7,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,29,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,10,10,10,0,0,0,1512,0,259,0,0,0,1,5,233,431,1457,0,0,0,0,1,0,3,0,0,0,0,0,0,4038,0,0,0,0,0,0,0,0,0,0,0,0,19,1,0,0,0,0,0,2,0,137,26,474,16,0,0,609,0,1687,0,1,0,344,51,0,0,0,0,0,0,0,0,0,284,1,0,9,0,12,0,0,0,0,2,217,243,0,0,34,0,0,0,0,0,975,0,0,2760,3,0,1,1,0,0,0,0,49,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,61,1,1,1,0,13,0,0,0,0,9,67,898,0,15,9,0,0,0,0,0,221,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,13,2161,207,4 +110,0,0,24,4,63,81,7,126,3,16,0,0,2,20,0,186,0,12,6,0,1,1,5,0,19,9,0,9,0,6,0,0,4,23,0,67,165,0,0,202,0,0,0,1,0,0,7,0,0,0,0,17,262,0,0,0,0,0,1,0,1,0,0,0,17,0,0,5065,63,483,0,24,0,0,0,0,0,30,3,0,0,0,0,8,21,999,0,7,23,4,0,4,11,0,338,20,12,0,0,8,4,203,0,11,0,0,1553,0,0,0,0,43,30,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,35,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,742,0,264,0,0,0,21,53,242,250,709,0,0,0,0,1,0,4,0,0,0,0,0,0,1966,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,70,773,33,0,0,817,0,1515,0,3,0,288,24,0,0,0,0,0,0,2,0,0,443,1,0,0,0,13,0,0,0,0,17,193,94,0,0,34,0,0,0,0,0,1190,0,0,911,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,23,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,65,1,1,1,0,58,0,0,0,0,33,90,361,0,34,9,0,0,0,0,0,264,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,7,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1346,1423,4 +6,0,0,10,0,65,181,0,122,6,15,0,0,2,38,3,66,0,62,4,0,0,0,9,0,8,24,0,15,0,12,4,0,0,24,0,65,206,0,0,319,0,0,0,1,0,0,8,1,0,0,0,16,250,0,0,0,0,0,1,0,0,0,5,0,16,0,0,9255,65,570,0,28,0,0,0,0,0,36,0,0,0,0,1,12,27,922,0,0,24,0,0,1,94,0,861,60,19,0,0,2,0,755,0,10,0,0,3794,0,0,0,0,4,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,831,0,182,0,0,0,30,53,292,1374,810,0,0,0,0,1,0,14,0,0,0,0,0,0,2839,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,26,451,11,0,0,650,0,1532,0,0,0,495,121,0,0,0,0,0,0,0,0,0,489,1,0,8,0,13,0,0,0,0,15,162,399,0,0,293,0,0,0,0,0,1433,0,0,1938,3,0,1,1,1,0,0,0,26,0,0,0,2,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,122,1,1,1,0,40,0,0,0,0,1,89,661,0,54,9,0,0,0,0,0,305,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1283,1297,4 +148,0,0,29,10,84,186,22,415,30,71,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,15,0,8,2,0,9,33,0,94,301,0,0,687,0,0,0,1,0,0,3,0,0,0,0,28,357,0,0,0,0,0,1,0,3,0,12,0,81,0,0,2931,84,1506,0,40,0,0,0,0,0,71,12,0,0,0,0,13,22,409,0,22,33,9,0,10,188,0,1859,100,3,0,0,14,10,1255,0,46,0,0,2289,0,0,0,0,52,38,0,0,31,0,0,1,0,0,0,18,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,18,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,333,0,247,0,0,0,36,76,296,1583,364,0,0,0,0,1,0,5,0,0,0,0,0,0,2703,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1404,48,0,0,1552,0,2898,0,6,0,561,51,0,0,0,0,0,0,0,0,0,1133,1,0,0,0,30,0,0,0,0,22,278,525,0,0,215,0,0,0,0,0,9931,0,0,184,3,0,1,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,78,0,0,0,0,81,127,309,0,64,9,0,0,0,0,0,709,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1640,1730,4 +0,0,0,5,0,35,25,0,47,3,24,0,0,7,4,0,729,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12384,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,726,0,0,0,0,0,1,0,0,0,0,0,2,0,0,42252,35,894,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6888,0,0,1,0,0,0,0,0,364,25,1,0,0,2,0,817,0,0,88,0,4755,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1770,0,32,0,0,0,12,15,493,2085,1749,0,0,0,0,1,0,3,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,277,5,0,0,307,0,290,0,0,0,147,19,0,0,0,0,0,0,0,0,0,842,1,0,0,0,9,0,0,0,0,1,164,6,0,0,135,0,0,0,0,0,4635,1,0,995,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2466,23,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,33,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +1,0,0,6,0,34,9,0,27,0,9,0,0,2,5,0,19,0,7,2,0,0,0,7,0,8,0,0,4,0,3,0,0,0,8,0,34,6,0,0,52,0,0,0,1,0,0,2,0,0,0,0,3,112,0,0,0,0,0,1,0,0,0,0,0,7,0,0,824,34,74,0,5,0,0,0,0,0,10,0,0,0,0,0,8,17,126,0,0,8,0,0,1,14,0,204,30,4,0,0,2,0,92,0,1,0,0,779,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,109,0,56,0,0,0,4,8,192,116,95,0,0,0,0,1,0,3,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,11,152,8,0,0,166,0,294,0,0,0,69,28,0,0,0,0,0,0,0,0,0,78,1,0,0,0,9,0,0,0,0,3,119,52,0,0,60,0,0,0,0,0,86,0,0,49,3,0,1,1,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,12,0,0,0,0,1,42,88,0,6,9,0,0,0,0,0,54,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,167,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,403,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,25,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,131,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,46,3,0,0,47,0,141,0,0,0,5,6,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,11,4 +9,0,0,6,1,16,26,1,38,1,4,0,0,0,6,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,3,0,17,54,0,0,19,0,0,0,1,0,0,4,0,0,0,0,0,83,0,0,0,0,0,1,0,0,0,0,0,5,0,0,22665,16,125,0,1,0,0,0,0,0,17,0,0,0,0,0,1,6,1509,0,1,3,1,0,1,0,0,50,0,6,0,0,4,1,25,0,3,0,0,8190,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1503,0,150,0,0,0,0,3,68,37,1519,0,0,0,0,1,0,0,0,0,0,0,0,0,1618,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,113,17,922,8,0,0,758,0,747,0,1,0,568,20,0,0,0,0,0,0,0,0,0,147,1,0,0,0,2,0,0,0,0,0,601,21,0,0,0,0,0,0,0,0,1156,0,0,1678,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,45,1,1,1,0,0,0,0,0,0,9,20,73,0,1,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,712,126,4 +19,0,0,0,0,23,4,0,9,3,1,0,2,0,5,0,20,0,6,4,0,0,0,2,0,2,3,0,3,0,2,1,0,0,11,0,23,12,0,0,66,0,0,0,0,0,0,0,0,0,0,0,4,31,0,0,0,0,0,1,0,0,0,0,0,2,0,0,221,23,46,0,8,0,0,0,0,0,0,0,0,0,0,0,5,5,24,0,0,11,0,0,2,0,0,32,0,0,0,0,6,0,46,0,2,0,0,3841,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,48,0,70,0,0,0,6,12,44,49,59,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,115,2,0,0,93,0,229,0,0,0,45,17,0,0,0,0,0,0,0,0,0,47,0,0,0,0,6,0,0,0,0,5,114,2,0,0,0,0,0,0,0,0,50,0,0,3,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,10,0,0,0,0,1,34,11,0,11,0,0,0,0,0,0,77,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,167,4 +82,0,0,2,1,52,25,4,115,6,24,0,4,0,12,0,30,0,7,6,0,1,1,5,0,25,0,0,5,0,4,0,0,1,17,0,53,15,0,0,486,0,0,0,1,0,0,0,0,0,0,0,21,101,0,0,0,0,0,1,0,1,0,0,0,26,0,0,1341,52,346,0,24,0,0,0,0,0,16,3,0,0,0,0,8,13,270,0,4,17,1,0,4,88,0,794,15,0,0,0,8,1,517,0,7,0,0,1402,0,0,0,0,33,22,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,29,10,10,10,0,0,0,204,0,107,0,0,0,23,44,217,774,201,0,0,0,0,1,0,4,0,0,0,0,0,0,783,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,93,266,4,0,0,239,0,288,0,0,0,102,25,0,0,0,0,0,0,0,0,0,217,0,0,0,0,13,0,0,0,0,20,137,230,0,0,30,0,0,0,0,0,719,0,0,19,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,33,0,0,0,0,9,70,41,0,25,9,0,0,0,0,0,325,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,278,1369,4 +1,0,0,9,4,20,30,13,57,4,10,0,2,0,15,0,235,0,8,7,0,3,3,2,0,1,0,0,0,0,1,0,0,4,8,0,24,69,0,0,118,0,0,0,0,0,0,0,0,0,0,0,1,84,0,5,0,0,0,1,0,0,0,0,0,8,0,0,265,20,463,0,1,0,0,0,0,0,0,9,0,0,5,0,2,2,63,0,13,8,4,0,3,0,0,56,0,0,0,0,10,4,68,0,6,0,0,4060,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,59,0,62,0,0,0,0,3,57,81,128,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,130,56,341,13,0,0,352,0,812,0,1,0,112,14,0,0,0,0,0,0,0,0,0,357,0,0,0,0,15,0,0,0,0,0,127,12,0,0,0,0,0,0,0,0,389,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,18,1,1,1,0,1,0,0,0,0,33,32,29,0,2,0,0,0,0,0,0,173,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,270,40,4 +0,0,0,3,0,8,2,0,4,0,2,0,0,0,2,0,10,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,2,0,0,18,8,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,21,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,58,0,0,0,3,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,28,4 +121,0,0,29,11,90,159,27,284,30,43,0,0,2,66,1,566,0,20,45,0,98,2,6,0,33,22,0,17,0,8,2,0,10,38,0,100,301,160,0,411,0,0,0,1,0,0,3,0,0,0,0,34,365,0,0,0,0,0,1,0,3,0,12,0,54,0,0,2700,90,1807,0,50,0,0,0,0,0,26,15,0,0,0,0,13,22,317,0,27,38,10,0,9,50,0,839,85,3,0,0,14,11,649,0,46,0,0,2459,0,0,0,0,45,17,1,0,34,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,299,0,246,0,0,0,42,74,344,678,309,0,0,0,0,1,0,6,0,0,0,0,0,0,2376,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1483,49,0,0,1506,0,2953,0,6,0,511,135,0,0,0,0,0,0,0,0,0,1141,1,0,0,0,151,0,0,0,0,28,285,176,0,0,185,0,0,0,0,0,10442,0,0,164,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,6,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,97,1,1,1,0,63,0,0,0,0,121,138,326,0,73,9,0,0,0,0,0,349,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,38,0,0,0,0,0,0,0,0,117,0,0,176,0,3,1820,1647,4 +214,0,0,0,3,84,52,12,312,3,102,1,2,0,5,0,48,0,7,15,0,3,3,3,0,6,3,0,77,0,298,1,0,3,36,0,87,12,0,0,460,0,0,0,0,0,0,0,0,0,0,0,304,111,0,0,0,0,0,1,0,0,0,0,0,19,0,0,5782,84,1635,0,382,0,0,0,0,0,272,9,0,0,0,0,11,11,189,0,12,36,3,0,4,272,0,3430,405,0,0,0,6,3,1565,0,2,0,0,7811,0,0,0,0,86,88,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,77,0,0,0,79,0,0,0,0,0,1,0,12,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,72,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,206,0,191,0,0,0,602,606,160,2301,227,0,0,0,0,0,0,0,0,0,0,0,0,0,3775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,615,6,0,0,698,0,531,0,0,0,466,72,0,0,0,0,0,0,0,0,0,529,0,0,0,0,24,0,0,0,0,303,176,516,0,0,905,0,0,0,0,0,1302,0,0,298,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,84,1,1,1,0,676,0,0,0,584,25,123,36,0,385,0,0,0,0,0,0,578,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,1,0,0,0,0,0,0,0,0,0,0,4,0,0,1208,1948,4 +0,0,0,10,0,17,4,0,25,1,7,0,0,0,4,0,19,0,7,1,0,0,0,1,0,0,0,0,8,0,11,0,0,0,5,0,17,6,0,0,36,0,0,0,1,0,0,1,0,0,0,0,10,74,1,0,0,0,0,1,0,0,0,2,0,7,0,0,18771,17,73,0,19,0,0,0,0,0,6,0,0,0,0,0,1,3,3648,0,0,5,0,0,1,9,0,114,15,1,0,0,2,0,72,0,1,0,0,568,0,0,0,0,2,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2633,0,52,0,0,0,20,16,39,152,2650,0,0,0,0,1,0,0,0,0,0,0,0,0,4734,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,7,114,14,0,0,96,0,234,0,0,0,30,8,0,0,0,0,0,0,0,0,0,66,1,0,0,0,2,0,0,0,0,6,101,20,0,0,31,0,0,0,0,0,1689,0,0,5173,0,0,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,28,0,0,0,12,1,22,12,0,19,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,4,0,0,0,0,0,0,0,0,0,0,0,0,1,2433,84,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,6,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,16,0,0,0,0,0,1,0,0,0,0,0,2,0,0,53,10,28,0,11,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,0,0,0,0,0,0,11,0,0,0,0,2,0,16,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,10,0,0,13,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,4 +1,0,0,3,0,28,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,134,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1014,28,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,160,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,587,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,126,0,52,0,0,0,1,4,182,14,124,0,0,0,0,1,0,3,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,32,10,151,3,0,0,162,0,305,0,0,0,56,7,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,112,37,0,0,0,0,0,0,0,0,90,0,0,70,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,183,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,169,59,4 +150,0,0,29,10,85,187,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,15,0,7,3,0,9,33,0,95,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,362,0,0,0,0,0,1,0,3,0,12,0,82,0,0,2837,85,1513,0,40,0,0,0,0,0,71,12,0,0,0,0,13,22,395,0,22,33,9,0,10,193,0,1896,100,3,0,0,14,10,1280,0,46,0,0,2464,0,0,0,0,52,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,330,0,235,0,0,0,36,75,300,1617,359,0,0,0,0,1,0,5,0,0,0,0,0,0,2693,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1436,48,0,0,1556,0,2903,0,6,0,562,57,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,279,538,0,0,215,0,0,0,0,0,9929,0,0,186,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,76,0,0,0,0,81,128,309,0,64,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1623,1656,4 +0,0,0,0,0,1,0,1,18,0,1,0,0,0,1,0,661,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,657,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,9,0,0,0,0,0,0,0,0,0,682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,2,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,9,0,0,1,99,4 +26,0,0,6,0,45,36,0,52,30,35,0,0,7,9,0,984,0,7,1,0,0,0,8,0,11,12,0,22,0,5,0,0,0,3,5519,45,6,0,0,54,0,6,0,1,0,0,7,0,0,0,0,5,381,0,0,0,0,0,1,0,0,0,0,0,7,0,0,103352,45,1291,0,25,0,0,0,0,0,102,0,0,0,0,0,8,130,30678,0,0,3,0,0,0,0,0,410,25,11,0,0,2,0,1162,0,4,72,0,4646,0,0,0,0,10,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,26593,0,131,0,0,0,18,29,685,1447,26558,0,0,0,0,1,0,8,0,0,0,0,0,0,811,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,110,98,333,6,0,0,389,0,294,0,0,0,211,18,0,0,0,0,0,0,0,0,0,1130,1,0,0,0,9,0,0,0,0,2,147,59,0,0,172,0,0,0,0,0,5014,1,0,1089,36,0,1,1,1,0,0,0,17,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,36,365,0,0,0,4,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,54,0,0,0,0,1,48,222,0,38,12,0,1,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,34,0,0,0,0,0,0,0,0,0,0,0,0,0,7,2147,120,4 +1,0,0,2,1,13,26,1,41,1,3,0,0,0,4,0,80,0,9,1,0,0,0,1,0,0,9,0,6,0,4,0,0,1,2,0,14,54,0,0,10,0,0,0,1,0,0,4,0,0,0,0,3,103,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1613,13,165,0,10,0,0,0,0,0,19,0,0,0,0,0,1,7,180,0,1,2,1,0,1,0,0,68,0,4,0,0,4,1,85,0,1,0,0,265,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,190,0,79,0,0,0,6,18,43,28,203,0,0,0,0,1,0,0,0,0,0,0,0,0,555,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,113,11,282,3,0,0,355,0,822,0,1,0,168,10,0,0,0,0,0,0,0,0,0,163,1,0,0,0,2,0,0,0,0,4,152,67,0,0,0,0,0,0,0,0,274,0,0,359,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,1,1,1,0,9,0,0,0,0,9,16,169,0,19,0,0,0,0,0,0,63,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,435,145,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,141,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,48,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,70,0,46,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,34,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,4,4 +149,0,0,29,10,84,187,22,421,30,72,0,0,2,64,0,374,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,94,301,0,0,681,0,0,0,1,0,0,2,0,0,0,0,28,378,0,0,0,0,0,1,0,3,0,12,0,82,0,0,2890,84,1511,0,39,0,0,0,0,0,70,12,0,0,0,0,13,22,385,0,22,33,9,0,10,193,0,1895,100,3,0,0,14,10,1279,0,46,0,0,2344,0,0,0,0,52,40,0,0,31,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,17,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,325,0,233,0,0,0,36,76,296,1616,355,0,0,0,0,1,0,5,0,0,0,0,0,0,2693,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1455,48,0,0,1553,0,2894,0,6,0,563,53,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,279,538,0,0,215,0,0,0,0,0,9922,0,0,184,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,77,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1594,1651,4 +3,0,0,9,3,21,29,9,48,3,10,0,2,0,17,0,226,0,8,5,0,2,2,2,0,1,0,0,0,0,1,0,0,3,9,0,24,63,0,0,98,0,0,0,0,0,0,0,0,0,0,0,1,102,0,6,0,0,0,1,0,0,0,0,0,9,0,0,302,21,394,0,1,0,0,0,0,0,0,6,0,0,6,0,2,2,68,0,9,9,3,0,3,0,0,54,0,0,0,0,10,3,66,0,7,0,0,525,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,62,0,62,0,0,0,0,3,53,84,140,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,129,56,320,12,0,0,318,0,770,0,1,0,103,28,0,0,0,0,0,0,0,0,0,340,0,0,0,0,11,0,0,0,0,0,126,11,0,0,0,0,0,0,0,0,365,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,19,1,1,1,0,1,0,0,0,0,25,33,34,0,2,0,0,0,0,0,0,163,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,250,35,4 +208,0,0,0,3,87,57,12,335,3,106,1,2,0,5,0,48,0,7,14,0,3,3,2,0,6,3,0,73,0,296,1,0,3,37,0,90,12,0,0,507,0,0,0,0,0,0,0,0,0,0,0,302,90,0,0,0,0,0,1,0,0,0,0,0,24,0,0,5959,87,1705,0,376,0,0,0,0,0,294,9,0,0,0,0,9,9,238,0,12,37,3,0,4,295,0,3583,400,0,0,0,6,3,1677,0,2,0,0,6081,0,0,0,0,81,90,0,0,2,0,0,0,0,0,0,5,0,0,0,0,0,0,0,75,0,0,0,74,0,0,0,0,0,1,0,11,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,71,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,229,0,214,0,0,0,598,602,175,2445,249,0,0,0,0,0,0,0,0,0,0,0,0,0,4049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,554,6,0,0,732,0,524,0,0,0,495,51,0,0,0,0,0,0,0,0,0,561,0,0,0,0,22,0,0,0,0,301,177,578,0,0,894,0,0,0,0,0,1321,0,0,296,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,668,0,0,0,582,25,127,37,0,379,0,0,0,0,0,0,635,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1249,2003,4 +5,0,0,0,0,12,3,0,5,0,1,0,1,0,2,0,12,0,6,2,0,0,0,0,0,2,0,0,2,0,1,0,0,0,4,0,12,12,0,0,25,0,0,0,0,0,0,0,0,0,0,0,2,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,58,12,26,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,4,0,0,1,0,0,13,0,0,0,0,4,0,14,0,0,0,0,114,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,20,0,19,0,0,0,2,5,27,13,23,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,21,61,0,0,0,61,0,115,0,0,0,27,2,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,3,104,4,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,2,0,0,0,0,1,16,4,0,5,0,0,0,0,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,4 +5,0,0,2,0,14,3,0,3,0,2,0,0,0,2,0,9,0,7,1,0,0,0,1,0,0,0,0,99,0,2,0,0,0,5,0,14,6,0,0,12,0,0,0,1,0,0,1,0,0,0,0,1,35,0,0,0,0,0,1,0,0,0,0,0,1,0,0,36499,14,122,0,101,0,0,0,0,0,2,0,0,0,0,0,1,3,7,0,0,5,0,0,0,0,0,109,0,0,0,0,2,0,109,0,0,0,0,25835,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,22,0,22,0,0,0,2,5,30,34649,31,0,0,0,0,1,0,0,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,3197,2,0,0,76,0,268,0,0,0,43,1832,0,0,0,0,0,0,0,0,0,26,1,0,0,0,2,0,0,0,0,2,96,27,0,0,0,0,0,0,0,0,127,0,0,6,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,101,0,0,0,0,1,19,97,0,101,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,452177,4 +0,0,0,5,0,36,24,0,48,3,23,0,0,7,4,0,784,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12558,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,700,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39142,36,947,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6501,0,0,1,0,0,0,0,0,360,25,2,0,0,2,0,872,0,0,89,0,4833,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1316,0,32,0,0,0,12,15,492,2069,1294,0,0,0,0,1,0,3,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,273,5,0,0,309,0,285,0,0,0,147,13,0,0,0,0,0,0,0,0,0,896,1,0,0,0,9,0,0,0,0,1,165,7,0,0,131,0,0,0,0,0,4782,1,0,1015,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2559,24,4 +72,0,0,1,1,53,25,4,118,5,22,0,4,0,9,0,38,0,7,6,0,1,1,5,0,29,9,0,5,0,3,0,0,1,18,0,54,15,0,0,474,0,0,0,1,0,0,0,0,0,0,0,24,123,0,0,0,0,0,1,0,1,0,0,0,24,0,0,1322,53,364,0,27,0,0,0,0,0,16,3,0,0,0,0,8,13,263,0,4,18,1,0,4,88,0,798,15,0,0,0,8,1,544,0,6,0,0,1141,0,0,0,0,34,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,35,10,10,10,0,0,0,217,0,110,0,0,0,25,57,218,781,203,0,0,0,0,1,0,4,0,0,0,0,0,0,776,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,90,273,3,0,0,242,0,325,0,0,0,105,20,0,0,0,0,0,0,0,0,0,223,0,0,0,0,13,0,0,0,0,23,138,230,0,0,30,0,0,0,0,0,737,0,0,18,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,31,0,0,0,0,9,72,42,0,37,9,0,0,0,0,0,328,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,267,1319,4 +0,0,0,5,0,35,25,0,48,3,24,0,0,7,4,0,764,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12347,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,769,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41136,35,930,0,23,0,0,0,0,0,46,0,0,0,0,0,8,94,6830,0,0,1,0,0,0,0,0,364,25,1,0,0,2,0,852,0,0,88,0,4552,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1618,0,32,0,0,0,12,15,489,2084,1597,0,0,0,0,1,0,3,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,279,5,0,0,309,0,298,0,0,0,150,19,0,0,0,0,0,0,0,0,0,878,1,0,0,0,9,0,0,0,0,1,166,6,0,0,135,0,0,0,0,0,4681,1,0,995,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2502,22,4 +78,0,0,7,1,15,26,1,51,17,5,0,0,0,20,17,162,0,9,1,0,0,0,2,0,0,54,0,0,0,18,0,0,1,1,0,16,78,0,0,75,0,0,0,1,0,0,1,0,0,0,0,17,83,0,0,0,0,0,1,0,0,0,0,0,20,0,0,1357,15,322,0,18,0,0,0,0,0,8,0,0,0,0,0,2,4,101,0,1,1,1,0,1,0,0,113,0,2,0,0,4,1,418,0,17,0,0,956,0,0,0,0,17,27,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,17,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,42,0,0,0,0,0,0,113,0,55,0,0,0,34,89,60,142,191,0,0,0,0,1,0,0,0,0,0,0,0,0,1140,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,114,65,354,8,0,0,285,0,534,0,1,0,98,37,0,0,0,0,0,0,0,0,0,290,1,0,0,0,3,0,0,0,0,18,119,33,0,0,0,0,25,0,51,25,912,0,0,37,0,0,1,1,1,0,0,0,3,0,17,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,18,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,30,1,1,1,0,17,0,0,0,0,9,17,74,0,72,0,0,0,0,0,0,124,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,0,0,0,0,0,0,0,0,0,0,0,1,0,0,229,54,4 +1,0,0,5,0,34,6,0,35,0,5,0,0,6,4,0,570,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,1,762,34,6,0,0,41,0,1,0,1,0,0,2,0,0,0,0,1,165,0,0,0,0,0,1,0,0,0,0,0,2,0,0,18098,34,638,0,3,0,0,0,0,0,18,0,0,0,0,1,8,24,4198,0,0,1,0,0,0,0,0,190,20,5,0,0,2,0,610,0,0,1,0,2856,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,701,0,55,0,0,0,1,4,257,1139,683,0,0,0,0,1,0,3,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,16,166,5,0,0,192,0,211,0,0,0,51,2,0,0,0,0,0,0,0,0,0,632,1,0,0,0,9,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3260,1,0,830,6,0,1,1,1,0,0,0,5,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,35,83,0,4,12,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1904,33,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,33,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +26,0,0,6,0,46,36,0,52,30,35,0,0,7,8,0,1008,0,7,1,0,0,0,8,0,10,12,0,22,0,5,0,0,0,3,6322,46,6,0,0,54,0,6,0,1,0,0,7,0,0,0,0,5,375,0,0,0,0,0,1,0,0,0,0,0,7,0,0,70503,46,1315,0,24,0,0,0,0,0,102,0,0,0,0,0,8,128,19339,0,0,3,0,0,0,0,0,409,25,11,0,0,2,0,1185,0,4,72,0,4853,0,0,0,0,10,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,15013,0,130,0,0,0,18,29,681,1452,14979,0,0,0,0,1,0,8,0,0,0,0,0,0,823,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,110,98,359,6,0,0,399,0,298,0,0,0,218,29,0,0,0,0,0,0,0,0,0,1153,1,0,0,0,9,0,0,0,0,2,151,61,0,0,172,0,0,0,0,0,5186,1,0,1086,36,0,1,1,1,0,0,0,17,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,36,365,0,0,0,4,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,53,0,0,0,0,1,49,224,0,37,12,0,1,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,34,0,0,0,0,0,0,0,0,0,0,0,0,0,8,2260,124,4 +0,0,0,7,1,13,29,1,40,11,4,0,0,0,19,0,66,0,8,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,4,0,14,70,0,0,44,0,0,0,1,0,0,2,0,0,0,0,0,97,0,0,0,0,0,1,0,0,0,0,0,19,0,0,648,13,137,0,1,0,0,0,0,0,12,0,0,0,0,0,1,5,94,0,1,4,1,0,1,0,0,45,0,4,0,0,4,1,66,0,15,0,0,393,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,95,0,53,0,0,0,0,3,30,9,109,0,0,0,0,1,0,0,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,111,27,268,8,0,0,301,0,873,0,1,0,116,18,0,0,0,0,0,0,0,0,0,166,1,0,0,0,2,0,0,0,0,0,113,51,0,0,0,0,0,0,0,0,169,0,0,86,0,0,1,0,1,0,0,0,8,0,0,0,1,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,0,0,0,0,0,9,18,251,0,1,0,0,1,0,0,0,68,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,354,46,4 +21,0,0,3,1,54,36,1,71,14,6,0,5,0,23,1,222,0,8,31,0,90,0,5,0,27,0,0,18,0,2,0,0,1,19,0,55,65604,160,0,451,0,0,0,1,0,0,4,0,0,0,0,20,134,0,0,0,0,0,1,0,1,0,0,0,13,0,0,1249,54,614,0,36,0,0,0,0,0,23,0,0,0,0,0,8,21,332,0,1,19,1,0,6,8,0,251,15,7,0,0,12,1,217,0,12,0,0,12944,0,0,0,0,20,4,0,0,16,0,0,1,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,54,10,10,10,0,0,0,269,0,196,0,0,0,20,33,237,277,277,0,0,0,0,1,0,3,0,0,0,0,0,0,921,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,165,305,379,4,0,0,406,0,676,0,1,0,142,529,0,0,0,0,0,0,0,0,0,372,1,0,0,0,126,0,0,0,0,22,153,40,0,0,30,0,0,0,0,0,66854,0,0,87,3,0,1,4,0,0,0,0,9,0,0,0,3,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,39,39,0,0,3,1,0,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,53,1,1,1,0,22,0,0,0,0,35,74,129,0,38,9,0,0,0,0,0,153,2,0,0,0,0,0,0,1,0,0,0,0,2,0,4,16,0,0,0,0,0,0,0,0,117,0,0,119,0,5,760,665,4 +0,0,0,7,1,14,29,1,40,11,4,0,0,0,19,0,66,0,8,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,4,0,15,70,0,0,44,0,0,0,1,0,0,2,0,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,19,0,0,578,14,137,0,1,0,0,0,0,0,12,0,0,0,0,0,1,5,94,0,1,4,1,0,1,0,0,45,0,4,0,0,4,1,66,0,15,0,0,428,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,97,0,56,0,0,0,0,3,34,9,111,0,0,0,0,1,0,0,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,113,27,254,8,0,0,304,0,884,0,1,0,116,11,0,0,0,0,0,0,0,0,0,166,1,0,0,0,2,0,0,0,0,0,114,51,0,0,0,0,0,0,0,0,169,0,0,86,0,0,1,0,1,0,0,0,7,0,0,0,1,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,0,0,0,0,0,9,19,251,0,0,0,0,0,0,0,0,68,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,356,46,4 +0,0,0,2,0,14,2,0,9,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,4,0,14,6,0,0,13,0,0,0,1,0,0,2,0,0,0,0,1,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1427,14,49,0,3,0,0,0,0,0,13,0,0,0,0,0,1,4,321,0,0,4,0,0,0,0,0,14,0,3,0,0,2,0,10,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,206,0,52,0,0,0,2,5,30,14,212,0,0,0,0,1,0,0,0,0,0,0,0,0,531,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,8,5,83,2,0,0,112,0,204,0,0,0,55,5,0,0,0,0,0,0,3,0,0,36,1,0,0,0,2,0,0,0,0,2,96,29,0,0,0,0,0,0,0,0,112,0,0,325,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,2,1,18,121,0,3,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,245,43,4 +157,0,0,29,10,85,195,22,460,30,80,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,3,0,9,33,0,95,301,0,0,777,0,0,0,1,0,0,3,0,0,0,0,28,358,0,0,0,0,0,1,0,4,0,12,0,90,0,0,3021,85,1580,0,39,0,0,0,0,0,77,12,0,0,0,0,13,22,416,0,22,33,9,0,10,233,0,2191,100,3,0,0,14,10,1479,0,46,0,0,2479,0,0,0,0,53,46,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,338,0,256,0,0,0,36,75,300,1880,369,0,0,0,0,1,0,5,0,0,0,0,0,0,2770,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1459,48,0,0,1571,0,2901,0,6,0,577,39,0,0,0,0,0,0,0,0,0,1196,1,0,0,0,30,0,0,0,0,22,280,642,0,0,215,0,0,0,0,0,9945,0,0,185,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,75,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,817,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1669,1716,4 +12,0,0,2,0,30,5,0,10,0,1,0,1,0,2,0,15,0,6,3,0,0,0,5,0,10,0,0,4,0,1,0,0,0,5,0,30,6,0,0,85,0,0,0,1,0,0,0,0,0,0,0,3,59,0,0,0,0,0,1,0,0,0,0,0,1,0,0,549,30,36,0,5,0,0,0,0,0,3,0,0,0,0,0,7,12,110,0,0,5,0,0,0,0,0,77,0,0,0,0,2,0,30,0,0,0,0,1871,0,0,0,0,3,1,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,74,0,39,0,0,0,2,5,189,22,72,0,0,0,0,1,0,3,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,17,12,115,2,0,0,108,0,1978,0,0,0,31,4,0,0,0,0,0,0,0,0,0,40,0,0,0,0,8,0,0,0,0,3,120,5,0,0,0,0,0,0,0,0,84,0,0,0,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,2,0,0,0,0,1,35,21,0,6,9,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,206,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,31,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,40,1,0,0,83,0,57,0,0,0,49,1,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,5,4 +6,0,0,10,0,66,181,0,121,6,15,0,0,2,38,3,66,0,63,4,0,0,0,9,0,9,23,0,13,0,12,4,0,0,24,0,66,206,0,0,319,0,0,0,1,0,0,7,1,0,0,0,16,257,0,0,0,0,0,1,0,0,0,5,0,16,0,0,8903,66,570,0,27,0,0,0,0,0,37,0,0,0,0,1,12,27,846,0,0,24,0,0,1,94,0,860,60,19,0,0,2,0,753,0,10,0,0,4243,0,0,0,0,4,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,793,0,178,0,0,0,30,53,290,1374,772,0,0,0,0,1,0,14,0,0,0,0,0,0,2746,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,26,447,11,0,0,674,0,1422,0,0,0,516,110,0,0,0,0,0,0,0,0,0,489,1,0,8,0,13,0,0,0,0,15,175,408,0,0,293,0,0,0,0,0,1391,0,0,1809,3,0,1,1,1,0,0,0,26,0,0,0,2,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,117,1,1,1,0,38,0,0,0,0,1,90,669,0,52,9,0,1,0,0,0,305,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1220,1493,4 +0,0,0,4,0,10,2,0,5,1,2,0,0,0,4,0,21,0,7,2,0,0,0,0,0,0,6,0,2,0,1,2,0,0,1,0,10,6,0,0,10,0,0,0,0,0,0,0,0,0,0,0,2,25,0,0,0,0,0,1,0,0,0,0,0,3,0,0,82,10,43,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,15,0,0,0,0,2,0,53,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,24,0,22,0,0,0,4,13,27,15,23,0,0,0,0,0,0,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,47,4,0,0,37,0,118,0,0,0,5,1,0,0,0,0,0,0,0,0,0,41,0,0,0,0,2,0,0,0,0,3,92,0,0,0,0,0,0,0,0,0,328,0,0,182,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,8,0,0,0,0,1,11,1,0,11,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,552,5,4 +67,0,0,17,8,66,79,15,221,5,16,0,47,32,36,2,606,0,13,10,0,3,3,5,0,18,35,0,21,0,5,3,0,6,26,9,72,328,0,0,239,0,0,0,1,0,0,3,0,0,0,0,25,276,0,0,0,0,0,1,0,0,0,14,0,16,0,0,1336,66,1245,0,47,0,0,0,0,0,11,9,0,0,0,0,6,12,89,0,15,26,6,0,3,0,0,200,0,4,1,0,8,8,515,0,9,0,1,1317,0,0,0,0,63,1,0,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,1,0,0,0,12,0,0,0,0,0,7,0,15,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,2,0,0,0,0,0,10,11,0,0,0,0,0,0,0,1,0,0,0,0,0,89,0,1,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,62,0,0,0,0,0,0,177,40,129,0,0,0,32,71,126,259,212,0,0,0,0,1,0,0,0,0,0,0,0,0,1338,0,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,1,2119,222,1042,29,0,0,1182,0,2083,0,3,0,583,287,0,0,0,0,0,0,0,0,0,1052,1,0,0,0,21,0,0,0,0,13,384,107,0,0,0,0,0,0,0,0,5893,0,0,170,0,0,1,2,0,0,0,0,4,0,0,0,2,0,0,0,0,0,4,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,63,1,1,1,0,68,0,0,0,0,49,98,109,0,82,0,0,0,0,0,0,429,19,0,0,0,0,0,0,0,0,0,0,0,6,0,1,5,0,0,0,0,0,0,0,0,0,0,0,6,0,2,2033,360,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,77,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,45,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,1,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,36,4 +0,0,0,7,2,15,50,2,56,10,6,0,0,0,19,0,123,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,4,0,17,136,0,0,39,0,0,0,1,0,0,7,0,0,0,0,1,158,0,0,0,0,0,1,0,0,0,0,0,17,0,0,3795,15,231,0,3,0,0,0,0,0,29,0,0,0,0,0,1,10,724,0,2,4,2,0,2,0,0,90,0,12,0,0,6,2,89,0,14,0,0,336,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,570,0,297,0,0,0,2,7,40,24,754,0,0,0,0,1,0,0,0,0,0,0,0,0,2554,0,192,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,238,38,419,9,0,0,459,0,1535,0,2,0,158,20,0,0,0,0,0,0,0,0,0,265,1,0,0,0,2,0,0,0,0,1,134,43,0,0,0,0,0,0,0,0,723,0,0,858,0,0,1,0,0,0,0,0,20,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,13,1,1,1,0,2,0,0,0,0,17,21,172,0,6,0,0,0,0,0,0,89,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,1456,69,4 +151,0,0,29,10,84,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,3,0,9,33,0,94,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,363,0,0,0,0,0,1,0,3,0,12,0,83,0,0,2852,84,1518,0,39,0,0,0,0,0,70,12,0,0,0,0,13,22,400,0,22,33,9,0,10,198,0,1932,100,3,0,0,14,10,1304,0,46,0,0,2086,0,0,0,0,53,41,0,0,31,0,0,1,0,0,0,17,0,0,0,0,0,0,0,7,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,328,0,236,0,0,0,36,75,296,1650,358,0,0,0,0,1,0,5,0,0,0,0,0,0,2704,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1457,48,0,0,1554,0,2901,0,6,0,564,40,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,279,551,0,0,215,0,0,0,0,0,9929,0,0,175,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,75,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1605,1655,4 +130,0,0,22,15,129,204,33,410,39,68,1,1,2,85,1,1425,0,23,19,0,8,4,9,2,53,26,0,40,0,103,2,0,13,63,0,144,370,0,0,572,0,0,0,1,0,0,3,0,0,0,0,150,448,0,0,0,0,0,1,0,4,0,13,0,79,0,0,7098,129,2875,0,190,0,0,0,0,0,33,21,0,0,0,0,17,27,1454,0,33,63,13,0,12,114,0,1878,140,4,0,0,18,15,1909,0,64,1,0,4093,0,0,0,0,138,18,2,0,53,0,0,1,0,0,0,25,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,2,0,25,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,29,4,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,17,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,75,12,12,12,0,0,2,1018,2,345,0,0,2,253,280,445,1657,1032,0,0,0,0,1,0,6,0,0,0,0,0,0,2688,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,771,197,1777,43,0,0,1863,0,3181,0,7,0,649,433,0,0,0,0,0,0,0,0,0,2220,1,0,0,0,42,0,0,0,0,141,346,293,0,0,308,0,0,0,0,0,12012,0,0,318,3,0,1,10,0,0,0,0,6,0,0,0,1,0,0,0,0,0,39,0,0,1,0,0,0,0,0,0,0,0,74,74,0,0,19,1,0,0,0,0,3,113,1,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,143,1,1,1,0,266,0,0,0,0,266,207,227,1,215,9,0,0,0,0,0,552,13,0,0,0,0,0,0,0,0,0,0,0,16,0,1,49,0,0,0,0,0,0,0,0,10,0,0,30,0,3,1432,1773,4 +5,0,0,6,6,37,30,21,106,11,22,0,0,2,16,0,103,0,8,14,0,10,0,5,0,8,0,0,1,0,1,0,0,6,6,0,43,54,0,0,91,0,0,0,1,0,0,1,0,0,0,0,1,135,0,0,0,0,0,1,0,0,0,0,0,20,0,0,822,37,524,0,1,0,0,0,0,0,5,15,0,0,0,0,8,14,98,0,21,6,6,0,3,23,0,322,45,1,0,0,4,6,180,0,13,0,0,700,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,14,10,10,10,0,0,0,76,0,259,0,0,0,0,3,209,214,109,0,0,0,0,1,0,4,0,0,0,0,0,0,538,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,136,39,452,12,0,0,468,0,657,0,1,0,114,4,0,0,0,0,0,0,0,0,0,287,1,0,0,0,29,0,0,0,0,1,134,56,0,0,91,0,0,0,0,0,204,0,0,8,2,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,39,1,1,1,0,0,0,0,0,0,49,49,31,0,2,8,0,0,0,0,0,112,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,17,0,0,0,0,0,0,0,0,0,0,0,10,0,0,636,42,4 +406,0,0,32,28,116,275,64,802,40,133,0,0,2,87,0,558,0,24,80,0,123,2,7,0,61,19,0,36,0,9,2,0,28,55,0,138,400,159,0,1408,0,0,0,1,0,0,5,1,0,0,0,62,447,0,0,0,0,0,1,0,3,0,21,0,141,0,0,4505,116,3978,0,96,0,0,0,0,0,107,60,0,0,0,0,14,28,652,0,64,55,28,0,12,398,0,3617,90,10,0,0,18,28,2483,0,63,0,0,3587,0,0,0,0,105,102,0,0,38,0,0,1,0,0,0,21,0,0,0,0,0,0,0,28,0,0,0,20,0,0,0,2,0,7,0,75,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,3,0,0,0,0,0,1,13,0,0,0,0,0,0,0,19,6,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,103,10,10,10,0,0,0,558,0,361,0,0,0,71,118,371,3197,609,0,0,0,0,1,0,4,0,0,0,0,0,0,4960,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,884,413,2218,68,0,0,2344,0,4206,0,8,0,819,187,0,0,0,0,0,0,0,0,0,1881,1,0,2,0,212,0,0,0,0,54,350,1035,0,0,192,0,0,0,0,0,10660,0,0,170,3,0,1,9,0,0,0,0,14,0,0,0,4,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,1,0,0,0,0,3,38,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,119,1,1,1,0,124,0,0,0,0,177,193,212,0,118,9,0,0,0,0,0,1351,32,0,0,0,0,0,0,1,0,0,0,0,23,0,4,50,0,0,0,0,0,0,0,0,117,0,0,212,0,7,2437,2452,4 +0,0,0,0,0,10,30,0,38,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,9,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,140,10,110,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,46,0,0,0,0,0,2,34,0,261,15,0,0,0,4,0,176,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,34,0,0,0,0,3,29,162,56,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,48,1,0,0,82,0,52,0,0,0,42,85,0,0,0,0,0,0,0,0,0,93,0,0,0,0,2,0,0,0,0,0,93,68,0,0,30,0,0,0,0,0,32,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,1,0,0,0,0,0,0,84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,4,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,2,0,0,409,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,134,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,157,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,24,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,14,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,403,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,135,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,30,0,27,0,0,0,2,4,27,94,44,0,0,0,0,1,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,44,3,0,0,47,0,145,0,0,0,5,3,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,405,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,25,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,145,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,49,3,0,0,47,0,142,0,0,0,5,2,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,11,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,146,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,32,0,0,0,0,3,21,195,54,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,45,1,0,0,84,0,57,0,0,0,50,8,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,4,4 +0,0,0,5,3,10,74,3,74,1,6,0,0,0,14,0,159,0,12,2,0,0,0,0,0,0,0,0,0,0,1,0,0,3,2,0,13,172,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,5,0,0,37,10,220,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,3,2,3,0,3,0,0,116,0,0,0,0,8,3,53,0,5,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,19,0,0,0,0,3,32,13,29,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,36,452,8,0,0,507,0,663,0,3,0,123,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0,2,0,0,0,0,0,139,2,0,0,0,0,0,0,0,0,360,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,7,1,1,1,0,0,0,0,0,0,25,15,5,0,1,0,0,0,0,0,0,83,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1028,45,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,2,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,2,15,0,0,0,0,0,1,0,0,0,0,0,2,0,0,32,10,18,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,15,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,23,0,0,0,4,3,23,9,33,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,28,0,0,0,0,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,3,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,4 +0,0,0,2,0,10,2,0,14,0,2,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,92,0,0,0,0,0,1,0,0,0,0,0,1,0,0,8185,10,38,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,1900,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,15,0,0,0,0,560,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,74,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1108,0,122,0,0,0,0,3,26,4,1150,0,0,0,0,1,0,0,0,0,0,0,0,0,2987,0,0,0,0,0,0,0,0,0,0,0,0,1,0,73,0,0,0,0,0,0,8,5,85,2,0,0,140,0,228,0,0,0,75,3,0,0,0,0,0,0,81,0,0,41,1,0,0,0,2,0,0,0,0,0,93,67,0,0,0,0,0,0,0,0,518,0,0,2382,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,158,0,0,0,0,293,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,81,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,331,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,80,0,0,0,0,0,0,0,1,1384,6,4 +17,0,3,14,4,137,423,1,752,40,118,0,0,0,64,9,10583,0,9,4,0,3,0,3,0,9,62,0,23,0,17,0,0,3,95,29,138,109,3,0,450,0,3,0,1,0,0,5,2,0,0,0,17,209,0,0,0,0,0,1,0,0,0,22,0,32,0,0,62950,137,12009,0,40,0,0,0,0,0,20,0,0,0,0,0,3,13,12483,0,1,95,3,1,1,20,0,554,30,12,0,0,9,4,11093,0,30,0,0,3589,0,0,0,0,16,0,6,0,3,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,24,0,1,0,14,0,0,0,1,0,0,11,0,0,0,0,0,0,0,0,1,16,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,41,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1257,0,0,0,0,0,0,8320,0,523,0,0,0,29,49,204,1159,8532,0,0,0,0,1,0,7,0,0,0,16941,3,1,12705,0,0,0,0,0,0,0,0,0,0,0,0,5,0,23,0,0,0,0,0,0,777,21281,1053,24,0,0,920,0,3811,0,2,0,575,620,0,0,0,0,0,0,0,0,0,11958,1,0,5,0,8,2,0,0,0,18,296,173,0,3,48,0,0,0,0,0,23887,42,0,13663,0,0,1,0,1,0,0,0,15,0,0,0,3,1,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,81,0,0,0,0,380,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,129,1,1,1,0,51,0,0,0,0,11,233,526,0,111,0,0,0,0,0,0,333,8,0,0,0,0,1,0,0,0,0,0,0,1,0,1,44,0,0,0,0,0,0,0,0,2,0,0,6,0,3,4961,711,4 +0,0,0,0,0,1,0,1,13,0,1,0,0,0,1,0,223,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,219,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,2,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,3,0,0,0,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,2,0,0,1,44,4 +0,0,0,3,0,9,3,0,24,1,3,0,0,0,8,0,26,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,44,0,1,0,1,0,0,1,1,0,0,0,0,283,0,0,0,0,0,1,0,0,0,0,0,9,0,0,4705,9,63,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,490,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,68,0,0,0,0,1191,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,35,0,37,0,0,0,0,3,24,12,44,0,0,0,0,1,0,0,0,0,0,0,0,0,2104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,158,3,0,0,158,0,172,0,0,0,102,10,0,0,0,0,0,0,0,0,0,70,1,0,2,0,2,0,0,0,0,0,91,95,0,0,0,0,0,0,0,0,274,0,0,736,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,96,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,253,73,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,0,0,0,78,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,48,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,36,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,658,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,654,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,9,0,0,0,0,0,0,0,0,0,680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,2,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,9,0,0,1,99,4 +0,0,0,11,12,41,63,12,216,12,36,0,0,0,17,0,198,0,10,3,0,1,2,1,1,0,0,0,0,0,1,0,0,11,14,0,53,287,0,0,219,0,0,0,1,0,0,2,0,0,0,0,0,239,0,0,0,0,0,1,8,0,0,0,0,30,0,0,44092,41,472,0,1,0,0,0,0,0,13,3,0,0,0,0,3,6,117,0,12,14,11,0,3,72,0,650,35,4,0,0,6,12,471,0,12,0,0,22868,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,9,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,40,1,1,1,0,0,1,151,1,96,0,0,18,0,3,100,8065,178,0,0,0,0,1,0,0,0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,249,136,850,21,0,0,942,0,2064,0,2,0,361,37,0,0,0,0,0,0,0,0,0,540,1,0,0,0,8,0,0,0,0,0,168,309,0,0,110,0,0,0,0,0,3233,8,0,53,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,40,1,1,1,0,0,0,0,0,0,174,67,494,9,1,0,0,2,0,0,0,255,19,0,0,0,0,0,0,0,0,0,0,0,12,0,1,14,0,0,0,0,0,0,0,0,0,0,0,20,0,2,784,108,4 +0,0,0,6,0,41,57,0,102,1,38,0,0,8,3,0,1011,0,6,1,0,0,0,8,0,10,0,0,44,0,1,0,0,0,1,14848,41,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,529,0,0,0,0,0,1,0,0,0,0,0,2,0,0,97081,41,1348,0,42,0,0,0,0,0,111,0,0,0,0,0,8,302,12523,0,0,1,0,0,0,0,0,569,30,2,0,0,2,0,1198,0,0,214,0,7626,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,5541,0,38,0,0,0,26,29,1430,6475,5470,0,0,0,0,1,0,3,0,0,0,0,0,0,6546,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,22,396,6,0,0,396,0,369,0,0,0,213,70,0,0,0,0,0,0,0,0,0,1225,1,0,0,0,9,0,0,0,0,1,168,76,0,0,290,0,0,0,0,0,6369,1,0,8534,54,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,54,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,119,0,0,0,0,1,42,279,0,43,12,0,1,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3636,184,4 +0,0,0,5,0,36,25,0,47,3,24,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12418,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,623,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41577,36,913,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6877,0,0,1,0,0,0,0,0,363,25,1,0,0,2,0,836,0,0,86,0,4481,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1682,0,32,0,0,0,12,15,498,2074,1660,0,0,0,0,1,0,3,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,272,5,0,0,305,0,292,0,0,0,145,14,0,0,0,0,0,0,0,0,0,861,1,0,0,0,9,0,0,0,0,1,157,6,0,0,134,0,0,0,0,0,4609,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2459,23,4 +0,0,0,5,0,35,25,0,47,3,24,0,0,7,4,0,729,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12529,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,739,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40078,35,894,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6453,0,0,1,0,0,0,0,0,365,25,1,0,0,2,0,817,0,0,90,0,4774,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1393,0,34,0,0,0,12,15,489,2090,1372,0,0,0,0,1,0,3,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,273,5,0,0,305,0,288,0,0,0,145,10,0,0,0,0,0,0,0,0,0,842,1,0,0,0,9,0,0,0,0,1,162,6,0,0,136,0,0,0,0,0,4600,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2447,22,4 +12,0,0,4,0,16,2,0,23,2,3,0,0,0,5,0,90,0,6,1,0,0,0,1,0,0,45,0,15,0,16,0,0,0,5,0,16,6,0,0,20,0,56,0,1,0,0,56,0,0,0,0,15,314,0,0,0,0,0,1,0,0,0,0,0,6,0,0,9321,16,399,0,31,0,0,0,0,0,132,0,0,0,0,0,1,58,1522,0,0,5,0,0,0,0,0,137,0,62,0,0,2,0,313,0,3,0,0,626,0,3,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,1624,0,482,0,0,0,30,78,37,150,2014,0,0,0,0,1,0,0,0,0,0,0,0,0,3789,0,63,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,8,6,118,4,0,0,598,0,878,0,0,0,539,8,0,0,0,0,0,0,0,0,0,129,1,0,0,0,2,0,0,0,0,16,98,444,0,0,0,0,0,0,0,0,554,0,0,1389,0,0,1,0,1,0,0,0,158,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,165,0,0,0,0,16,16,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,30,0,0,0,0,1,21,90,0,76,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1461,365,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,31,0,0,0,0,3,21,195,55,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,40,1,0,0,84,0,58,0,0,0,50,4,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,5,4 +0,0,0,2,0,10,2,0,17,0,2,0,0,0,2,0,17,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,863,10,44,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,444,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,18,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,21,0,0,0,0,3,25,5,44,0,0,0,0,1,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,74,2,0,0,94,0,149,0,0,0,24,3,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,1,92,16,0,0,0,0,0,0,0,0,208,0,0,732,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,115,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,7,4 +2,0,0,6,0,21,8,0,48,0,17,0,0,0,3,0,75,0,6,2,0,0,0,1,0,0,0,0,4,0,1,0,0,0,10,0,21,183,0,0,118,0,4,0,1,0,0,4,0,0,0,0,0,191,0,0,0,0,0,1,0,0,0,0,0,7,0,0,2390,21,179,0,5,0,0,0,0,0,19,0,0,0,0,0,2,8,719,0,0,10,0,0,2,31,0,280,55,6,0,0,2,0,156,0,1,0,0,355,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,6,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,251,0,66,0,0,0,0,3,47,501,322,0,0,0,0,1,0,0,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,205,160,6,0,0,370,0,316,0,0,0,302,14,0,0,0,0,0,0,0,0,0,157,1,0,0,0,3,0,0,0,0,1,142,212,0,0,137,0,3,0,0,0,380,0,0,913,0,0,1,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,4,0,0,0,0,1,31,635,0,5,0,0,0,0,0,0,474,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,369,43,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,0,0,0,34,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,404,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,142,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,49,3,0,0,47,0,142,0,0,0,5,1,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +5,0,0,4,0,34,5,0,21,1,3,0,0,2,5,0,20,0,6,3,0,0,0,5,0,10,0,0,2,0,1,0,1,0,4,0,34,6,0,0,30,0,0,0,1,0,0,2,0,0,0,0,3,93,0,0,0,0,0,1,0,0,0,0,0,6,0,0,15083,34,63,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,1407,0,0,4,0,0,0,0,0,80,5,3,0,0,2,0,37,0,3,0,0,493,0,0,0,0,3,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,10,10,10,0,0,0,1314,0,64,0,0,0,2,5,189,23,1315,0,0,0,0,1,0,3,0,0,0,0,0,0,4160,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,2,0,34,13,160,4,0,0,158,0,254,0,0,0,38,5,0,0,0,0,0,0,0,0,0,62,1,0,0,0,8,0,0,0,0,4,117,13,0,0,0,0,0,0,0,0,1857,0,0,4791,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,0,0,0,0,0,1,38,46,0,4,9,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1414,78,4 +0,0,0,5,0,36,25,0,47,3,24,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12317,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,760,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40114,36,913,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6554,0,0,1,0,0,0,0,0,365,25,1,0,0,2,0,836,0,0,90,0,4390,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1477,0,32,0,0,0,12,15,498,2086,1455,0,0,0,0,1,0,3,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,289,5,0,0,316,0,301,0,0,0,155,15,0,0,0,0,0,0,0,0,0,861,1,0,0,0,9,0,0,0,0,1,172,6,0,0,136,0,0,0,0,0,4573,1,0,1004,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,202,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2403,23,4 +0,0,0,5,0,36,25,0,48,3,24,0,0,7,4,0,784,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12401,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,723,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39766,36,951,0,24,0,0,0,0,0,46,0,0,0,0,0,8,94,6721,0,0,1,0,0,0,0,0,367,25,1,0,0,2,0,872,0,0,90,0,4252,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1379,0,32,0,0,0,13,16,497,2080,1357,0,0,0,0,1,0,3,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,279,5,0,0,309,0,292,0,0,0,147,21,0,0,0,0,0,0,0,0,0,898,1,0,0,0,9,0,0,0,0,1,165,6,0,0,136,0,0,0,0,0,4818,1,0,996,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,208,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2504,22,4 +0,0,0,0,0,8,41,0,49,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,141,8,132,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,48,0,0,0,0,0,2,45,0,338,15,0,0,0,4,0,231,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,33,0,0,0,0,3,21,207,54,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,87,0,59,0,0,0,53,3,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2,0,0,0,0,0,91,90,0,0,30,0,0,0,0,0,35,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,106,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,4,4 +0,0,0,6,0,38,57,0,99,2,39,0,0,8,3,0,828,0,6,1,0,0,0,8,0,10,0,0,44,0,1,0,0,0,1,14697,38,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,548,0,0,0,0,0,1,0,0,0,0,0,2,0,0,95869,38,1163,0,42,0,0,0,0,0,111,0,0,0,0,0,8,316,11716,0,0,1,0,0,0,0,0,577,30,1,0,0,2,0,1015,0,0,221,0,7671,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,5307,0,37,0,0,0,26,29,1436,6665,5239,0,0,0,0,1,0,3,0,0,0,0,0,0,6509,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,25,440,6,0,0,402,0,356,0,0,0,227,35,0,0,0,0,0,0,0,0,0,1040,1,0,0,0,9,0,0,0,0,1,178,76,0,0,298,0,0,0,0,0,5675,1,0,8669,54,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,54,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,119,0,0,0,0,1,39,281,0,43,12,0,1,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3261,102,4 +0,0,0,4,1,12,26,1,32,0,4,0,0,0,5,0,69,0,8,1,0,0,0,1,0,0,3,0,1,0,1,1,0,1,2,0,13,54,0,0,14,0,1,0,1,0,0,1,0,0,0,0,1,31,0,0,0,0,0,1,0,0,0,0,0,4,0,0,915,12,104,0,3,0,0,0,0,0,4,0,0,0,0,0,1,4,456,0,1,2,1,0,1,0,0,49,0,1,0,0,4,1,36,0,2,0,0,122,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,41,0,31,0,0,0,2,9,32,22,53,0,0,0,0,1,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,112,14,209,5,0,0,223,0,272,0,1,0,50,5,0,0,0,0,0,0,0,0,0,144,1,0,0,0,2,0,0,0,0,2,106,3,0,0,0,0,0,0,0,0,312,0,0,739,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,1,1,1,0,6,0,0,0,0,9,15,3,0,6,0,0,0,0,0,0,47,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,277,8,4 +1,0,0,3,0,28,5,0,26,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,3,0,28,6,0,0,22,0,0,0,1,0,0,7,0,0,0,0,2,211,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1766,28,89,0,3,0,0,0,0,0,29,0,0,0,0,2,7,23,248,0,0,3,0,0,0,0,0,81,5,13,1,0,2,0,37,0,0,0,0,1634,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,220,0,68,0,0,0,1,4,184,15,204,0,0,0,0,1,0,3,0,0,0,0,0,0,379,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,32,10,151,3,0,0,178,0,376,0,0,0,72,13,0,0,0,0,0,0,0,0,0,61,1,0,0,0,8,0,0,0,0,1,110,38,0,0,0,0,0,0,0,0,99,0,0,122,3,0,1,1,0,0,0,0,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,31,286,0,4,9,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,220,62,4 +16,0,0,4,0,23,2,0,20,0,3,0,0,0,3,0,61,0,6,2,0,0,0,11,0,0,24,0,8,0,9,0,0,0,11,0,23,18,0,0,13,0,0,0,1,0,0,22,0,0,0,0,8,75,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2062,23,242,0,17,0,0,0,0,0,45,0,0,0,0,22,12,57,555,0,0,11,0,0,0,0,0,89,0,20,0,0,2,0,170,0,1,0,0,594,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,470,0,338,0,0,0,16,51,73,1215,593,0,0,0,0,1,0,0,0,0,0,0,0,0,2628,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,10,4,190,4,0,0,142,0,207,0,0,0,76,588,0,0,0,0,0,0,0,0,0,95,1,0,0,0,13,0,0,0,0,9,106,8,0,0,0,0,9,0,16,8,878,0,0,184,0,0,1,0,0,0,0,0,22,0,26,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,24,0,0,0,0,1,34,76,0,41,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1068,37,4 +0,0,0,6,0,8,2,0,16,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,188,8,39,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,27,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,15,0,0,0,0,116,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,32,0,0,0,0,3,22,6,46,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,92,8,0,0,105,0,243,0,0,0,41,4,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,95,28,0,0,0,0,0,0,0,0,29,0,0,11,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,89,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,63,34,4 +20,0,0,0,0,23,4,0,9,3,1,0,2,0,5,0,20,0,6,5,0,0,0,1,0,2,3,0,3,0,2,1,0,0,11,0,23,12,0,0,66,0,0,0,0,0,0,0,0,0,0,0,4,33,0,0,0,0,0,1,0,0,0,0,0,2,0,0,198,23,46,0,8,0,0,0,0,0,0,0,0,0,0,0,5,5,23,0,0,11,0,0,2,0,0,32,0,0,0,0,6,0,46,0,2,0,0,3934,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,48,0,72,0,0,0,6,12,44,49,59,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,113,2,0,0,93,0,250,0,0,0,45,13,0,0,0,0,0,0,0,0,0,47,0,0,0,0,6,0,0,0,0,5,114,2,0,0,0,0,0,0,0,0,49,0,0,3,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,10,0,0,0,0,1,34,11,0,11,0,0,0,0,0,0,77,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,165,4 +282,0,0,28,21,96,166,37,372,32,43,0,0,2,69,2,794,0,20,67,0,117,2,6,0,35,22,0,21,0,7,3,0,20,42,0,116,301,160,0,378,0,0,0,1,0,0,3,0,0,0,0,36,395,0,0,0,0,0,1,0,3,0,12,0,53,0,0,2508,96,3477,0,56,0,0,0,0,0,17,45,0,0,0,0,14,23,265,0,37,42,20,0,7,29,0,691,55,3,0,0,14,21,669,0,49,0,0,2883,0,0,0,0,65,33,0,0,29,0,0,1,0,0,0,19,0,0,0,0,0,0,0,27,0,0,0,14,0,0,0,0,0,7,0,71,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,33,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,19,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,304,0,279,0,0,0,44,72,403,546,308,0,0,0,0,1,0,5,0,0,0,0,0,0,2755,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,341,1790,58,0,0,1841,0,3159,0,6,0,587,580,0,0,0,0,0,0,0,0,0,1468,1,0,0,0,192,0,0,0,0,32,288,132,0,0,125,0,0,0,0,0,10708,0,0,166,4,0,1,7,0,0,0,0,5,0,0,0,1,0,0,0,0,0,31,0,0,0,0,0,0,0,0,1,0,0,102,102,0,0,6,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,100,1,1,1,0,60,0,0,0,0,231,158,318,0,79,9,0,0,0,0,0,304,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,36,0,0,0,0,0,0,0,0,117,0,0,196,0,2,1679,1810,4 +152,0,0,29,10,84,187,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,23,0,14,0,6,3,0,9,33,0,94,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,365,0,0,0,0,0,1,0,3,0,11,0,82,0,0,2858,84,1513,0,39,0,0,0,0,0,72,12,0,0,0,0,13,22,400,0,22,33,9,0,10,193,0,1895,100,3,0,0,14,10,1279,0,46,0,0,2184,0,0,0,0,52,40,0,0,29,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,19,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,330,0,231,0,0,0,36,75,296,1617,358,0,0,0,0,1,0,5,0,0,0,0,0,0,2725,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1433,48,0,0,1555,0,2935,0,6,0,563,39,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,279,538,0,0,215,0,0,0,0,0,9929,0,0,188,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,75,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,4,1623,1646,4 +2,0,0,6,1,35,30,1,58,2,15,0,0,2,6,0,68,0,8,4,0,0,0,5,0,8,0,0,1,0,1,0,0,1,5,0,36,54,0,0,69,0,0,0,1,0,0,1,0,0,0,0,1,121,0,0,0,0,0,1,0,0,0,0,0,10,0,0,753,35,134,0,1,0,0,0,0,0,5,0,0,0,0,0,8,14,100,0,1,5,1,0,2,20,0,279,30,1,0,0,4,1,129,0,3,0,0,599,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4,10,10,10,0,0,0,73,0,251,0,0,0,0,3,197,181,95,0,0,0,0,1,0,3,0,0,0,0,0,0,474,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,137,24,284,7,0,0,297,0,553,0,1,0,71,12,0,0,0,0,0,0,0,0,0,187,1,0,0,0,9,0,0,0,0,1,132,56,0,0,60,0,0,0,0,0,162,0,0,8,2,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,37,1,1,1,0,0,0,0,0,0,9,41,30,0,2,8,0,0,0,0,0,96,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,593,35,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,733,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,729,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,2,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,1,108,4 +216,0,0,0,3,88,58,12,340,3,107,1,2,0,5,0,48,0,7,16,0,3,3,2,0,6,3,0,74,0,297,1,0,3,37,0,91,12,0,0,518,0,0,0,0,0,0,0,0,0,0,0,303,115,0,0,0,0,0,1,0,0,0,0,0,25,0,0,6060,88,1728,0,378,0,0,0,0,0,296,9,0,0,0,0,11,11,235,0,12,37,3,0,4,300,0,3629,400,0,0,0,6,3,1704,0,2,0,0,4430,0,0,0,0,83,92,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,77,0,0,0,76,0,0,0,0,0,1,0,13,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,71,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,228,0,207,0,0,0,600,604,174,2485,249,0,0,0,0,0,0,0,0,0,0,0,0,0,4108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,660,6,0,0,738,0,558,0,0,0,498,52,0,0,0,0,0,0,0,0,0,568,0,0,0,0,24,0,0,0,0,302,178,591,0,0,894,0,0,0,0,0,1307,0,0,297,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,88,1,1,1,0,671,0,0,0,582,25,128,37,0,381,0,0,0,0,0,0,647,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,1,0,0,0,0,0,0,0,0,0,0,5,0,0,1328,1934,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,17,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,36,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,4,4 +119,0,0,29,11,91,157,27,273,30,38,0,0,2,66,1,560,0,20,45,0,98,2,6,0,33,22,0,22,0,7,3,0,10,40,0,101,301,160,0,409,0,0,0,1,0,0,3,0,0,0,0,33,341,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2591,91,1791,0,54,0,0,0,0,0,19,15,0,0,0,0,13,22,293,0,27,40,10,0,8,37,0,730,70,2,0,0,14,11,592,0,46,0,0,2812,0,0,0,0,45,16,1,0,29,0,0,1,0,0,0,24,0,0,0,0,0,0,0,7,0,0,0,8,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,287,0,244,0,0,0,41,73,333,582,301,0,0,0,0,1,0,6,0,0,0,0,0,0,2093,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,681,338,1488,49,0,0,1499,0,2945,0,6,0,507,365,0,0,0,0,0,0,0,0,0,1117,1,0,0,0,151,0,0,0,0,28,284,149,0,0,155,0,0,0,0,0,10425,0,0,143,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,12,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,70,0,0,0,0,115,141,328,0,78,9,0,0,0,0,0,330,10,0,0,0,0,0,0,1,0,0,0,0,11,0,5,36,0,0,0,0,0,0,0,0,117,0,0,185,0,2,1646,1697,4 +57,0,0,0,5,74,17,20,106,6,18,0,2,0,8,0,82,0,7,17,0,5,5,7,0,17,9,0,23,0,16,2,0,5,29,0,79,9,0,0,146,0,0,0,1,0,0,1,0,0,0,0,26,143,0,0,0,0,0,1,0,0,0,0,0,6,0,0,3736,74,645,0,47,0,0,0,0,0,10,15,0,0,0,0,13,20,689,0,20,29,5,0,1,37,0,491,55,1,0,0,4,5,326,0,5,0,0,2198,0,0,0,0,15,4,2,0,3,0,0,1,0,0,0,10,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,22,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,34,10,10,10,0,0,0,412,0,109,0,0,0,42,51,268,307,419,0,0,0,0,1,0,4,0,0,0,0,0,0,596,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,23,36,464,5,0,0,467,0,706,0,0,0,186,54,0,0,0,0,0,0,0,0,0,240,1,0,0,0,34,0,0,0,0,22,165,109,0,0,137,0,0,0,0,0,225,0,0,26,3,0,1,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,3,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,81,1,1,1,0,61,0,0,0,24,41,108,94,0,58,9,0,0,0,0,0,123,10,0,0,0,0,0,0,0,0,0,0,0,6,0,1,6,0,0,0,0,0,0,0,0,0,0,0,8,0,1,195,787,4 +1,0,0,0,0,29,27,0,31,6,6,0,0,0,9,0,82,0,7,4,0,0,0,3,0,12,6,0,2,0,1,2,0,0,12,0,29,175,0,0,184,0,0,0,0,0,0,0,0,0,0,0,14,81,0,0,0,0,0,1,0,0,0,0,0,8,0,0,631,29,172,0,10,0,0,0,0,0,0,0,0,0,0,0,6,6,53,0,0,12,0,0,0,21,0,196,15,0,0,0,2,0,211,0,6,0,0,544,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,14,0,0,0,0,0,0,85,0,43,0,0,0,9,27,65,405,136,0,0,0,0,0,0,0,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,21,170,0,0,0,259,0,259,0,0,0,202,32,0,0,0,0,0,0,0,0,0,162,0,0,0,0,7,0,0,0,0,6,148,105,0,0,37,0,0,0,19,0,179,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,27,0,0,0,0,1,41,12,0,23,0,0,0,0,0,0,312,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,146,4 +13,0,0,6,0,214,6,0,37,2,10,0,0,0,12,0,74,0,7,1,0,0,0,2,0,0,0,0,9,0,6,0,0,0,201,0,214,171,0,0,492,0,0,0,1,0,0,4,0,0,0,0,5,69,0,0,0,0,0,1,0,0,0,0,0,8,0,0,1341,214,166,0,15,0,0,0,0,0,15,0,0,0,0,3,2,10,89,0,0,201,0,0,1,8,0,101,15,8,0,0,2,0,103,0,4,0,0,3423,0,0,0,0,19,2,0,0,0,0,1,1,0,0,0,4,0,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,105,0,253,0,0,0,10,7,252,675,161,0,0,0,0,1,0,0,0,0,0,0,0,0,745,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,32,774,6,0,0,877,0,567,0,0,0,793,26,0,0,0,0,0,0,0,0,0,146,1,0,0,0,3,0,0,0,0,3,332,95,0,0,29,0,0,0,0,0,194,0,0,65,0,0,1,0,0,0,0,0,8,0,1,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,216,1,1,1,0,19,0,0,0,0,1,415,340,0,15,0,0,0,0,0,0,658,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,155,105,4 +0,0,0,6,0,9,2,0,16,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,65,0,0,0,0,0,1,0,0,0,0,0,1,0,0,187,9,39,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,27,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,15,0,0,0,0,150,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,33,0,35,0,0,0,0,3,26,6,47,0,0,0,0,1,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,105,8,0,0,107,0,238,0,0,0,40,6,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,99,24,0,0,0,0,0,0,0,0,29,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,91,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,35,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,14,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,4 +4,0,0,0,1,15,7,0,13,0,5,2,0,0,3,0,33,0,7,5,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,15,67,0,0,28,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,1,0,0,0,14,0,3,0,0,238,15,54,0,1,0,0,0,0,0,0,0,0,0,0,0,3,3,7,0,0,5,0,0,0,0,0,19,0,0,0,0,6,1,38,0,1,0,0,279,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,30,0,37,0,0,0,0,3,34,82,40,0,0,0,0,1,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,32,105,2,0,0,110,0,511,0,0,0,59,9,0,0,0,0,0,0,0,0,0,70,0,0,0,0,6,0,0,0,0,1,104,17,0,0,0,0,0,0,0,0,2473,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,23,21,25,0,1,0,0,0,0,0,0,22,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,160,4 +1,0,0,3,0,29,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,122,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1253,29,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,190,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,864,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,148,0,49,0,0,0,1,4,189,14,145,0,0,0,0,1,0,3,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,2,1,3,0,0,0,0,1,0,32,10,147,4,0,0,169,0,295,0,0,0,57,12,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,111,39,0,0,0,0,0,0,0,0,101,0,0,120,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,163,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,184,55,4 +151,0,0,29,10,83,187,22,420,30,73,0,0,2,63,0,375,0,20,15,0,6,2,7,0,26,22,0,14,0,7,3,0,9,33,0,93,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,333,0,0,0,0,0,1,0,3,0,13,0,82,0,0,3089,83,1513,0,39,0,0,0,0,0,72,12,0,0,0,0,13,22,395,0,22,33,9,0,10,193,0,1895,100,3,0,0,14,10,1279,0,46,0,0,2510,0,0,0,0,52,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,17,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,37,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,331,0,233,0,0,0,36,75,292,1617,359,0,0,0,0,1,0,5,0,0,0,0,0,0,2796,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1464,48,0,0,1552,0,2903,0,6,0,563,36,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,278,538,0,0,215,0,0,0,0,0,9927,0,0,187,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,90,1,1,1,0,75,0,0,0,0,81,126,309,0,63,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1597,1657,4 +278,0,0,29,21,93,166,37,377,35,43,0,0,2,72,2,780,0,20,67,0,117,2,6,0,36,22,0,21,0,8,2,0,20,41,0,113,301,160,0,462,0,0,0,1,0,0,4,0,0,0,0,37,397,0,0,0,0,0,1,0,3,0,12,0,57,0,0,2623,93,3451,0,57,0,0,0,0,0,19,45,0,0,0,1,14,24,275,0,37,41,20,0,7,29,0,694,55,3,0,0,14,21,680,0,52,0,0,2978,0,0,0,0,62,32,0,0,28,0,0,1,0,0,0,20,0,0,0,0,0,0,0,27,0,0,0,13,0,0,0,0,0,7,0,68,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,33,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,20,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,309,0,278,0,0,0,45,78,404,551,310,0,0,0,0,1,0,5,0,0,0,0,0,0,2865,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,677,366,1860,59,0,0,1845,0,3158,0,6,0,595,446,0,0,0,0,0,0,0,0,0,1462,1,0,0,0,192,0,0,0,0,37,288,134,0,0,125,0,0,0,0,0,10657,0,0,170,4,0,1,7,0,0,0,0,6,0,0,0,1,0,0,0,0,0,34,0,0,0,0,0,0,0,0,1,0,0,98,98,0,0,9,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,97,1,1,1,0,62,0,0,0,0,237,154,342,0,80,9,0,0,0,0,0,307,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,39,0,0,0,0,0,0,0,0,117,0,0,257,0,2,1734,1869,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,149,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,52,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,195,55,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,84,0,58,0,0,0,50,7,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,38,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,4,4 +81,0,0,24,4,70,113,7,157,7,16,0,0,2,25,0,187,0,12,6,0,1,1,5,0,15,9,0,9,0,4,0,0,4,21,0,74,164,0,0,291,0,0,0,1,0,0,7,0,0,0,0,11,245,0,0,0,0,0,1,0,1,0,0,0,22,0,0,5024,70,520,0,18,0,0,0,0,0,30,3,0,0,0,0,8,21,956,0,7,21,4,0,4,43,0,546,20,12,0,0,8,4,369,0,16,0,0,1588,0,0,0,0,36,15,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,27,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,726,0,233,0,0,0,13,40,257,349,690,0,0,0,0,1,0,4,0,0,0,0,0,0,1937,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,75,772,33,0,0,868,0,1496,0,3,0,284,29,0,0,0,0,0,0,2,0,0,512,1,0,0,0,13,0,0,0,0,11,200,156,0,0,34,0,0,0,0,0,1175,0,0,917,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,72,1,1,1,0,48,0,0,0,0,33,95,359,0,28,9,0,0,0,0,0,297,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,11,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1251,1328,4 +0,0,0,5,0,36,25,0,48,3,24,0,0,7,4,0,784,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12509,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,744,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40330,36,950,0,23,0,0,0,0,0,46,0,0,0,0,0,8,96,6675,0,0,1,0,0,0,0,0,365,25,1,0,0,2,0,872,0,0,90,0,4705,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1354,0,34,0,0,0,12,15,496,2091,1332,0,0,0,0,1,0,3,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,272,5,0,0,307,0,290,0,0,0,145,13,0,0,0,0,0,0,0,0,0,898,1,0,0,0,9,0,0,0,0,1,163,6,0,0,136,0,0,0,0,0,4846,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,208,0,24,12,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2547,22,4 +14,0,0,43,6,95,84,6,253,12,29,0,0,9,23,0,1863,0,12,9,0,8,0,10,2,11,0,0,23,0,7,0,0,6,46,30795,101,1074,6,0,219,0,0,0,1,0,0,1,1,0,0,0,7,1198,0,0,0,0,0,1,0,0,0,22,0,16,0,0,243940,95,2440,0,27,0,0,0,0,0,48,12,0,0,0,0,10,37,39951,0,6,46,6,0,4,39,0,827,90,10,0,0,6,6,2305,0,5,29,1,121489,0,0,0,0,29,11,4,0,0,0,0,1,0,0,0,10,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,0,1,0,0,0,0,3,0,398,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,7,0,0,0,3,1,0,0,0,0,0,11,0,0,0,0,0,1,0,33,0,1,0,0,0,0,0,0,0,0,0,1,0,11,0,0,0,0,0,0,0,0,0,32,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,119,12,12,12,0,2,0,28001,0,140,0,0,0,16,26,668,31560,27982,0,0,0,0,1,0,26,0,2,1,0,0,0,2020,0,0,0,0,0,0,0,0,0,3,0,0,1,12,0,0,0,0,0,2,0,375,67,1260,66,0,0,1134,0,2714,0,2,0,462,140,0,0,0,0,0,0,0,0,0,2273,1,0,10,0,29,0,0,0,0,13,8348,139,0,0,192,0,0,0,0,0,254813,1,0,513,18,0,1,1,1,0,0,0,16,0,0,0,0,0,0,0,0,0,3,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,18,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,2,105,1,1,1,0,42,0,0,0,8,51,147,80,0,29,12,0,0,0,0,0,2672,10,0,0,0,0,0,0,0,0,0,0,0,8,2,5,44,0,0,0,0,0,0,0,2,0,0,0,9,0,2,8214,605,4 +41,0,0,8,1,61,31,1,91,6,4,0,0,2,19,0,131,0,8,8,0,0,0,7,0,13,0,0,5,0,2,0,0,1,25,0,62,287,0,0,435,0,0,0,1,0,0,1,1,0,0,0,7,125,0,0,0,0,0,1,0,0,0,0,0,21,0,0,953,61,230,0,10,0,0,0,0,0,8,0,0,0,0,0,14,24,135,0,1,25,1,0,1,0,0,137,5,4,1,0,4,1,100,0,15,0,0,1095,0,2,0,0,12,1,1,1,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,2,0,2,1,12,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,80,10,10,10,0,0,0,133,0,80,0,0,0,7,9,238,71,184,0,0,0,0,1,0,3,0,0,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,0,0,0,0,1,0,142,33,457,9,0,0,553,0,2177,0,1,0,292,32,0,0,0,0,0,0,0,0,0,286,1,0,3,0,15,0,0,0,0,5,199,73,0,0,0,0,42,0,0,0,354,0,0,41,3,0,1,1,0,0,0,0,5,0,1,0,2,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,65,1,1,1,0,5,0,0,0,0,9,87,63,0,11,9,0,0,0,0,0,973,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,35125,71,4 +0,0,0,6,0,43,55,0,95,1,38,0,0,8,3,0,1014,0,6,1,0,0,0,8,0,11,0,0,44,0,1,0,0,0,1,12239,43,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,546,0,0,0,0,0,1,0,0,0,0,0,2,0,0,106518,43,1341,0,42,0,0,0,0,0,107,0,0,0,0,0,8,312,12887,0,0,1,0,0,0,0,0,565,30,2,0,0,2,0,1195,0,0,210,0,8058,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,6239,0,40,0,0,0,27,30,1444,6990,6167,0,0,0,0,1,0,3,0,0,0,0,0,0,7182,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,22,406,6,0,0,407,0,381,0,0,0,217,48,0,0,0,0,0,0,0,0,0,1219,1,0,0,0,9,0,0,0,0,1,185,68,0,0,284,0,0,0,0,0,6197,1,0,9959,52,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,52,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,123,0,0,0,0,1,44,273,0,44,12,0,1,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3339,255,4 +6,0,0,9,0,58,181,0,121,6,15,0,0,2,21,2,66,0,63,4,0,0,0,7,0,8,24,0,9,0,9,4,0,0,23,0,58,206,0,0,282,0,0,0,1,0,0,7,1,0,0,0,13,219,0,0,0,0,0,1,0,0,0,5,0,16,0,0,7070,58,545,0,20,0,0,0,0,0,35,0,0,0,0,1,10,25,667,0,0,23,0,0,1,94,0,839,60,17,0,0,2,0,714,0,10,0,0,2827,0,0,0,0,3,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,631,0,157,0,0,0,24,50,243,1345,607,0,0,0,0,1,0,14,0,0,0,0,0,0,2644,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,25,468,9,0,0,617,0,1285,0,0,0,480,77,0,0,0,0,0,0,0,0,0,471,1,0,6,0,11,0,0,0,0,12,157,386,0,0,293,0,0,0,0,0,1336,0,0,1584,3,0,1,1,1,0,0,0,24,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,83,1,1,1,0,23,0,0,0,0,1,81,632,0,45,9,0,0,0,0,0,289,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,917,1471,4 +138,0,0,5,6,66,45,15,163,3,23,0,3,0,13,0,765,0,10,8,0,3,3,5,2,24,9,0,5,0,5,0,0,4,24,0,72,68,0,0,297,0,0,0,1,0,0,6,0,0,0,0,21,238,0,0,0,0,0,1,0,1,0,0,0,18,0,0,5138,66,1268,0,24,0,0,0,0,0,43,12,0,0,0,0,8,20,976,0,15,24,4,0,4,61,0,680,15,11,0,0,8,6,1101,0,5,1,0,1817,0,0,0,0,40,54,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,37,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,56,12,12,12,0,0,2,766,2,334,0,0,2,24,58,255,608,745,0,0,0,0,1,0,4,0,0,0,0,0,0,2301,0,0,0,0,0,0,0,0,0,0,0,0,6,1,2,0,0,0,0,1,0,135,67,562,13,0,0,621,0,977,0,1,0,255,81,0,0,0,0,0,0,2,0,0,1022,1,0,0,0,21,0,0,0,0,20,164,223,0,0,30,0,0,0,0,0,2283,0,0,770,3,0,1,4,0,0,0,0,11,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,68,1,1,1,0,57,0,0,0,0,128,96,387,1,34,9,0,0,0,0,0,385,4,0,0,0,0,0,0,0,0,0,0,0,7,0,1,5,0,0,0,0,0,0,0,0,9,0,0,14,0,1,1111,1731,4 +17,0,0,9,3,78,7,8,92,11,14,0,0,0,26,0,566,0,7,8,0,2,1,1,0,0,141,0,18,0,49,1,0,2,63,0,80,788,0,0,163,0,0,0,1,0,0,3,0,0,0,0,48,102,0,0,0,0,0,1,0,0,0,39,0,26,0,0,2964,78,1022,0,68,0,0,0,0,0,10,6,0,0,0,0,1,6,277,0,8,63,2,0,0,0,0,253,0,4,0,0,6,3,1514,0,19,0,0,3520,0,0,0,0,9,0,1,0,0,0,0,1,0,0,0,66,0,0,0,0,0,0,0,1,0,0,0,7,0,0,0,2,0,3,0,15,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,171,0,19993,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,107,0,0,0,0,0,0,225,0,204,0,0,0,96,240,101,256,235,0,0,0,0,1,0,0,0,0,0,4,4,0,34025,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,40,38,784,12,0,0,480,0,800,0,0,0,332,132,0,0,0,0,0,0,4,0,0,712,1,0,0,0,12,0,0,0,0,49,180,58,0,0,1,0,0,0,0,0,52987,0,0,244,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,69,1,1,1,0,67,0,0,0,0,39,144,238,0,209,0,0,0,0,0,0,157,10,0,0,0,0,0,0,0,0,0,0,0,2,0,2,16,0,0,0,0,0,0,0,0,0,0,0,3,0,0,364,1200,4 +0,0,0,3,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,2,0,0,18,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,3,0,0,32,0,95,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,7,4 +38,0,0,10,4,15,31,7,68,0,5,0,0,0,27,0,106,0,8,7,0,3,3,3,0,5,6,0,5,0,1,0,0,4,2,0,19,370,0,0,309,0,0,0,0,0,0,0,0,0,0,0,5,80,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1077,15,381,0,11,0,0,0,0,0,0,9,0,0,0,0,3,3,81,0,7,2,4,0,1,0,0,67,0,0,0,0,4,4,189,0,1,0,0,3782,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,62,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,14,0,0,0,0,0,0,69,0,28,0,0,0,5,13,44,70,87,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,183,417,20,0,0,306,0,658,0,1,0,69,27,0,0,0,0,0,0,0,0,0,245,0,0,0,0,16,0,0,0,0,5,112,1,0,0,0,0,0,0,1,0,1200,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,13,1,1,1,0,5,0,0,0,0,33,21,3,0,17,0,0,0,0,0,0,74,88,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,878,43,4 +1,0,0,3,0,28,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,116,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1164,28,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,189,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,510,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,145,0,47,0,0,0,1,4,182,14,143,0,0,0,0,1,0,3,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0,2,1,9,0,0,0,0,1,0,32,10,132,3,0,0,160,0,317,0,0,0,54,11,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,110,37,0,0,0,0,0,0,0,0,104,0,0,121,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,144,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,180,58,4 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,14,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,32,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,4 +0,0,0,5,0,28,5,0,13,0,3,0,0,2,4,0,17,0,6,3,0,0,0,5,0,8,0,0,2,0,1,0,0,0,4,0,28,6,0,0,31,0,0,0,1,0,0,3,0,0,0,0,1,113,0,0,0,0,0,1,0,0,0,2,0,5,0,0,931,28,47,0,1,0,0,0,0,0,12,0,0,0,0,2,7,17,120,0,0,4,0,0,0,0,0,75,5,5,0,0,2,0,26,0,1,0,0,488,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,89,0,38,0,0,0,0,3,180,11,91,0,0,0,0,1,0,4,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,11,126,5,0,0,213,0,272,0,0,0,118,3,0,0,0,0,0,0,0,0,0,50,1,0,0,0,8,0,0,0,0,0,111,96,0,0,0,0,0,0,0,0,74,0,0,48,3,0,1,1,1,0,0,0,3,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,0,0,0,0,0,1,32,319,0,2,9,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,302,34,4 +53,0,0,1,1,58,9,4,32,3,6,0,4,0,6,0,37,0,7,11,0,1,1,7,0,19,3,0,8,0,4,1,0,1,21,0,59,15,0,0,146,0,0,0,1,0,0,0,0,0,0,0,16,92,0,0,0,0,0,1,0,1,0,0,0,3,0,0,1001,58,215,0,22,0,0,0,0,0,6,3,0,0,0,0,15,20,140,0,4,21,1,0,4,8,0,211,15,0,0,0,8,1,127,0,2,0,0,1293,0,0,0,0,13,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,8,0,0,0,3,0,0,0,0,0,1,0,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,136,0,102,0,0,0,19,29,227,175,127,0,0,0,0,1,0,3,0,0,0,0,0,0,449,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,35,65,296,4,0,0,236,0,388,0,0,0,93,25,0,0,0,0,0,0,0,0,0,101,0,0,0,0,20,0,0,0,0,15,150,20,0,0,30,0,0,0,0,0,142,0,0,5,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,17,0,0,0,0,9,80,37,0,26,9,0,0,0,0,0,138,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,1,0,0,0,0,0,0,0,0,0,0,2,0,0,302,719,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,6,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,15,0,0,0,0,0,1,0,0,0,0,0,2,0,0,51,10,28,0,11,0,0,0,0,0,0,0,0,0,0,0,1,1,15,0,0,0,0,0,0,0,0,11,0,0,0,0,2,0,16,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,10,0,0,13,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,4 +23,0,0,7,3,19,34,5,101,29,23,0,2,2,40,0,71,0,70,6,0,1,2,2,3,7,21,0,10,0,1,0,0,3,9,1,20,2650,22,0,196,0,0,0,1,0,0,1,0,0,0,0,7,171,0,0,0,0,0,1,0,0,0,0,0,38,0,0,1583,19,400,0,11,0,0,0,0,0,4,3,0,0,0,0,2,4,57,0,5,9,3,0,4,60,0,555,65,1,0,0,8,3,966,0,32,0,0,1078,0,0,0,0,30,0,0,0,0,0,0,1,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,17,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,152,0,44,0,0,0,14,70,44,550,157,0,0,0,0,1,0,0,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,150,57,223,10,0,0,226,0,582,0,0,0,151,42,0,0,0,0,0,0,0,0,0,343,1,0,0,0,14,0,0,0,0,8,124,161,0,0,158,0,0,0,0,0,3229,0,0,12,0,0,1,0,1,0,0,0,2,0,0,0,8,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,17,1,1,1,0,38,0,0,0,0,1,29,179,0,39,0,0,0,0,0,0,283,1,0,0,0,0,0,0,0,0,0,0,0,1,0,3,37,0,0,0,0,0,0,0,4,0,0,0,4,0,2,236,8,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,405,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,132,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,45,3,0,0,47,0,145,0,0,0,5,2,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +287,0,0,29,21,96,166,37,378,35,43,0,0,2,72,1,614,0,20,67,0,117,2,6,0,39,22,0,20,0,8,2,0,20,42,0,116,301,160,0,465,0,0,0,1,0,0,4,0,0,0,0,40,400,0,0,0,0,0,1,0,3,0,12,0,57,0,0,2705,96,3283,0,58,0,0,0,0,0,19,45,0,0,0,2,14,25,279,0,37,42,20,0,7,29,0,699,55,5,0,0,14,21,631,0,52,0,0,2418,0,0,0,0,72,33,0,0,28,0,0,1,0,0,0,18,0,0,0,0,0,0,0,27,0,0,0,15,0,0,0,0,0,7,0,72,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,34,2,0,0,0,0,0,2,0,0,0,0,0,0,14,0,0,0,0,0,0,0,20,7,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,78,10,10,10,0,0,0,295,0,221,0,0,0,48,80,368,569,317,0,0,0,0,1,0,5,0,0,0,0,0,0,2774,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,677,366,1848,59,0,0,1861,0,3217,0,6,0,606,279,0,0,0,0,0,0,0,0,0,1296,1,0,0,0,192,0,0,0,0,41,298,134,0,0,125,0,0,0,0,0,10485,0,0,170,3,0,1,7,0,0,0,0,6,0,0,0,2,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,47,47,0,0,6,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,102,1,1,1,0,61,0,0,0,0,195,158,371,0,82,9,0,0,0,0,0,307,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,39,0,0,0,0,0,0,0,0,117,0,0,195,0,2,1645,1866,4 +400,0,0,3,13,184,195,37,485,81,82,0,6,0,134,1,932,0,15,20,0,10,6,9,2,46,57,0,24,0,16,3,0,11,115,0,197,195,5965,0,1065,0,0,0,1,0,0,5,1,0,0,0,56,410,0,0,0,0,0,1,0,3,0,16,0,113,0,0,39283,184,2912,0,77,0,0,0,0,0,138,27,0,0,0,0,14,25,8015,0,37,115,11,0,11,243,0,2277,155,11,0,0,18,13,2579,0,86,1,0,6617,0,0,0,0,132,92,2,0,30,0,0,1,0,0,0,21,0,0,0,0,0,0,0,18,0,0,0,39,0,0,0,0,0,2,0,28,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,105,8,0,0,0,0,0,2,0,0,0,0,0,7,23,0,0,0,4,0,0,0,0,9,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,2,117,12,12,12,0,0,2,5083,2,498,0,0,2,73,313,440,135548,5094,0,0,0,0,1,0,11,0,0,0,0,0,0,11666,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,364,250,1583,20,0,0,1698,0,1936,0,3,0,874,126809,0,0,0,0,0,0,0,0,0,1850,1,0,2,0,47,0,0,0,0,45,339,655,0,0,374,0,0,0,0,0,12730,0,0,8714,3,0,1,12,0,0,0,0,14,0,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,0,3,150,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3,192,1,1,1,0,509,0,0,0,0,180,312,455,1,137,9,0,0,0,0,0,1000,18,0,0,0,0,0,0,0,0,0,0,0,14,0,2,87,1,0,0,0,0,0,0,34,8,0,0,27,0,4,4397,2901,4 +217,0,0,0,3,84,56,12,332,3,106,1,2,0,5,0,48,0,7,16,0,3,3,2,0,6,3,0,76,0,301,1,0,3,36,0,87,12,0,0,500,0,0,0,0,0,0,0,0,0,0,0,307,115,0,0,0,0,0,1,0,0,0,0,0,23,0,0,5827,84,1666,0,384,0,0,0,0,0,270,9,0,0,0,0,11,11,217,0,12,36,3,0,4,292,0,3589,405,0,0,0,6,3,1667,0,2,0,0,3810,0,0,0,0,84,92,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,78,0,0,0,77,0,0,0,0,0,1,0,12,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,72,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,213,0,198,0,0,0,608,612,160,2440,234,0,0,0,0,0,0,0,0,0,0,0,0,0,3814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,621,6,0,0,699,0,539,0,0,0,468,59,0,0,0,0,0,0,0,0,0,557,0,0,0,0,24,0,0,0,0,306,175,568,0,0,905,0,0,0,0,0,1323,0,0,301,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,84,1,1,1,0,681,0,0,0,590,25,123,36,0,387,0,0,0,0,0,0,626,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,1,0,0,0,0,0,0,0,0,0,0,5,0,0,1190,1962,4 +0,0,0,2,0,8,2,0,15,0,2,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,3,0,1,0,0,4,0,0,0,0,0,125,0,0,0,0,0,1,0,0,0,0,0,1,0,0,22675,8,67,0,1,0,0,0,0,0,21,0,0,0,0,0,1,8,9451,0,0,0,0,0,0,0,0,13,0,6,0,0,2,0,16,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5226,0,126,0,0,0,0,3,22,8,5685,0,0,0,0,1,0,0,0,0,0,0,0,0,3785,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,5,91,2,0,0,115,0,101,0,0,0,55,5,0,0,0,0,0,0,78,0,0,42,1,0,0,0,2,0,0,0,0,0,94,35,0,0,0,0,0,0,0,0,725,0,0,3650,0,0,1,1,1,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,142,0,0,0,0,281,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,243,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,87,0,0,0,0,0,0,0,4,8139,26,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,15,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,5,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,4 +15,0,0,7,0,42,18,0,75,321,14,0,0,5,327,0,125,0,7,2,0,0,0,6,0,13,30,0,14,0,4,7,0,0,9,0,42,186,0,0,1279,0,0,0,1,0,0,2,0,0,0,0,16,223,0,0,0,0,0,1,0,0,0,0,0,337,0,0,6276,42,625,0,28,0,0,0,0,0,21,0,0,0,0,0,7,15,1494,0,0,9,0,0,1,43,0,468,20,4,0,0,2,0,1101,0,325,0,5,2335,0,0,0,0,11,8,2,0,1,0,0,1,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,10,10,10,0,0,0,1061,0,512,0,0,0,25,54,235,1725,1411,0,0,0,0,1,0,4,0,0,0,0,0,0,4115,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,389,681,7,0,0,421,0,367,0,0,0,283,83,0,0,0,0,0,0,0,0,0,571,1,0,0,0,8,0,0,0,0,8,167,240,0,0,32,0,0,0,0,0,1317,0,0,236,3,0,1,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,392,0,0,0,0,3,11,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,44,0,0,0,0,1,51,337,0,59,9,0,0,0,0,0,695,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,325,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2746,463,4 +5,0,0,14,3,21,3,15,10,5,7,0,0,0,12,0,13,0,6,16,0,3,0,2,0,0,0,0,3,0,4,0,0,3,9,0,21,9,0,0,48,0,0,0,1,0,0,0,0,0,0,0,3,39,0,0,0,0,0,1,0,0,0,16,0,12,0,0,317,21,274,0,7,0,0,0,0,0,3,9,0,0,0,0,8,8,47,0,15,9,3,0,0,0,0,37,0,0,0,0,2,3,43,0,8,0,0,296,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,11,0,0,0,0,0,0,53,0,46,0,0,0,6,9,49,53,77,0,0,0,0,1,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,13,109,24,0,0,112,0,178,0,0,0,70,18,0,0,0,0,0,0,0,0,0,51,0,0,0,0,21,0,0,0,0,4,110,31,0,0,0,0,0,0,0,0,698,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,9,0,0,0,0,1,30,65,0,7,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,4,0,0,102,48,4 +153,0,0,29,10,84,191,22,440,30,76,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,15,0,8,2,0,9,33,0,94,301,0,0,737,0,0,0,1,0,0,3,0,0,0,0,28,351,0,0,0,0,0,1,0,3,0,14,0,86,0,0,2941,84,1545,0,40,0,0,0,0,0,73,12,0,0,0,0,13,22,411,0,22,33,9,0,10,213,0,2044,100,3,0,0,14,10,1380,0,46,0,0,2134,0,0,0,0,52,41,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,332,0,248,0,0,0,36,76,296,1749,363,0,0,0,0,1,0,5,0,0,0,0,0,0,2769,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1440,48,0,0,1560,0,2900,0,6,0,569,60,0,0,0,0,0,0,0,0,0,1168,1,0,0,0,30,0,0,0,0,22,279,590,0,0,215,0,0,0,0,0,9933,0,0,174,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,78,0,0,0,0,81,127,309,0,64,9,0,0,0,0,0,769,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1629,1721,4 +10,0,0,8,0,12,2,0,15,0,2,0,0,0,7,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,6,0,0,18,0,1,0,1,0,0,1,0,0,0,0,1,36,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1036,12,43,0,3,0,0,0,0,0,4,0,0,0,0,0,1,4,477,0,0,0,0,0,0,0,0,12,0,2,0,0,2,0,26,0,0,0,0,121,0,0,0,0,5,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,55,0,34,0,0,0,2,5,27,15,64,0,0,0,0,1,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,88,16,0,0,99,0,194,0,0,0,30,2,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,2,97,20,0,0,0,0,0,0,0,0,210,0,0,733,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,363,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,69,0,3,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,253,11,4 +2,0,0,8,0,16,3,0,27,6,12,1,0,0,11,0,24,0,6,1,0,0,0,2,0,0,3,0,1,0,1,1,0,0,5,0,16,6,0,0,50,0,2,0,1,0,0,2,0,0,0,0,1,103,0,0,0,0,0,1,0,0,0,7,0,13,0,0,8477,16,83,0,3,0,0,0,0,0,9,0,0,0,0,0,2,6,1994,0,0,5,0,0,1,8,0,89,15,2,0,0,2,0,99,0,8,0,0,804,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,84,0,2,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1259,0,161,0,0,0,2,8,36,69,1306,0,0,0,0,1,0,0,0,0,0,0,0,0,3311,0,0,0,0,0,0,0,0,0,0,0,0,2,0,81,0,0,0,0,0,0,8,14,141,9,0,0,147,0,324,0,0,0,75,23,0,0,0,0,0,0,177,0,0,84,1,0,0,0,3,0,0,0,0,2,102,60,0,0,30,0,0,0,0,0,590,0,0,2414,0,0,1,2,1,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,160,0,0,0,0,314,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,87,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,4,0,0,0,0,1,21,155,0,6,0,0,0,0,0,0,43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,92,0,0,0,0,0,0,0,1,1224,295,4 +6,0,0,9,0,59,181,0,121,6,15,0,0,2,21,2,66,0,63,4,0,0,0,7,0,8,24,0,10,0,9,4,0,0,23,0,59,206,0,0,282,0,0,0,1,0,0,7,1,0,0,0,13,219,0,0,0,0,0,1,0,0,0,5,0,16,0,0,7949,59,544,0,21,0,0,0,0,0,34,0,0,0,0,1,10,25,741,0,0,23,0,0,1,94,0,839,60,19,0,0,2,0,715,0,10,0,0,3137,0,0,0,0,3,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,709,0,162,0,0,0,24,50,247,1341,685,0,0,0,0,1,0,14,0,0,0,0,0,0,2943,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,25,468,9,0,0,617,0,1154,0,0,0,477,86,0,0,0,0,0,0,0,0,0,471,1,0,8,0,11,0,0,0,0,12,158,383,0,0,293,0,0,0,0,0,1424,0,0,1888,3,0,1,1,1,0,0,0,27,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,84,1,1,1,0,24,0,0,0,0,1,82,624,0,46,9,0,0,0,0,0,289,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,8,995,1479,4 +75,0,0,1,1,52,25,4,115,5,22,0,4,0,9,0,30,0,7,6,0,1,1,5,0,29,0,0,5,0,3,0,0,1,17,0,53,15,0,0,476,0,0,0,1,0,0,0,0,0,0,0,24,108,0,0,0,0,0,1,0,1,0,0,0,24,0,0,1319,52,346,0,27,0,0,0,0,0,16,3,0,0,0,0,8,13,262,0,4,17,1,0,4,88,0,798,15,0,0,0,8,1,513,0,6,0,0,1338,0,0,0,0,33,22,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,29,10,10,10,0,0,0,205,0,109,0,0,0,25,51,217,780,203,0,0,0,0,1,0,4,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,90,289,3,0,0,239,0,292,0,0,0,102,18,0,0,0,0,0,0,0,0,0,212,0,0,0,0,13,0,0,0,0,23,137,230,0,0,30,0,0,0,0,0,716,0,0,18,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,31,0,0,0,0,9,70,41,0,28,9,0,0,0,0,0,326,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,255,1404,4 +0,0,0,0,0,9,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,133,9,41,0,1,0,0,0,0,0,10,0,0,0,0,0,1,1,44,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,37,0,0,0,0,3,25,4,55,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,45,1,0,0,50,0,31,0,0,0,13,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,92,2,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,4,4 +72,0,0,37,11,72,117,32,258,23,34,0,0,0,54,0,372,0,35,23,0,7,0,3,0,11,49,0,44,0,92,4,0,11,52,0,83,485,0,0,350,0,0,0,1,0,0,12,0,0,0,0,106,338,0,0,0,0,0,1,0,0,0,34,0,42,0,0,13592,72,1581,0,151,0,0,0,0,0,58,21,0,0,0,2,4,20,2318,0,32,52,11,0,8,42,0,998,65,20,2,0,10,11,931,0,22,0,0,2343,0,0,0,0,26,15,2,0,0,0,0,1,0,0,0,27,0,0,0,0,0,0,0,5,0,0,0,6,0,0,0,0,0,11,0,18,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,6,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,84,0,0,0,0,0,0,1678,0,248,0,0,0,201,260,175,859,1691,0,0,0,0,1,0,0,0,0,0,0,0,0,3800,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,476,123,1418,47,0,0,1333,0,2260,0,4,0,590,112,0,0,0,0,0,0,0,0,0,870,1,0,0,0,33,0,0,0,0,110,265,179,0,0,136,0,0,0,0,0,2687,0,0,2901,0,0,1,3,0,0,0,0,19,0,0,0,4,0,0,0,0,0,16,0,0,0,1,1,0,7,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,100,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,99,1,1,1,0,248,0,0,0,148,89,135,457,0,200,0,0,0,0,0,0,323,26,0,0,0,0,0,0,0,0,0,0,0,11,0,1,31,0,0,0,0,0,0,0,2,0,0,0,16,0,8,3507,936,4 +30,0,0,2,1,20,27,1,27,1,3,0,1,0,5,0,62,0,9,2,0,0,0,1,1,5,0,0,3,0,3,0,0,1,5,0,21,57,5,0,27,0,0,0,0,0,0,0,0,0,0,0,8,89,0,0,0,0,0,1,0,0,0,0,0,1,0,0,18681,20,637,0,11,0,0,0,0,0,268,0,0,0,0,0,2,2,74,0,1,5,1,0,2,0,0,74,0,0,0,0,6,1,30,0,1,0,0,7019,0,0,0,0,7,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,64,0,42,0,0,0,11,42,55,409,75,0,0,0,0,0,0,0,0,0,0,0,0,0,3046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,25,235,5,0,0,494,0,399,0,1,0,323,9,0,0,0,0,0,0,0,0,0,134,0,0,0,0,4,0,0,0,0,7,117,2,0,0,0,0,0,0,0,0,225,0,0,2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,22,1,1,1,0,8,0,0,0,0,9,26,6,0,11,0,0,0,0,0,0,59,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,925,151,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,52,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,83,0,57,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,38,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,4,4 +10,0,0,10,0,15,2,0,18,0,2,0,0,0,7,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,15,6,0,0,21,0,1,0,1,0,0,2,0,0,0,0,1,59,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1055,15,52,0,3,0,0,0,0,0,7,0,0,0,0,0,1,6,506,0,0,0,0,0,0,0,0,14,0,2,0,0,2,0,27,0,0,0,0,147,0,0,0,0,3,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,67,0,46,0,0,0,2,5,36,16,77,0,0,0,0,1,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,5,106,19,0,0,96,0,172,0,0,0,17,8,0,0,0,0,0,0,0,0,0,50,1,0,0,0,2,0,0,0,0,2,97,9,0,0,0,0,0,0,0,0,214,0,0,744,0,0,1,0,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,363,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,15,113,0,3,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,278,13,4 +18,0,0,3,2,52,59,2,78,14,7,0,4,0,23,0,126,0,10,4,0,0,0,5,0,26,0,0,12,0,2,0,0,2,17,0,54,65649,0,0,413,0,0,0,1,0,0,4,0,0,0,0,20,148,0,0,0,0,0,1,0,1,0,0,0,14,0,0,1454,52,283,0,30,0,0,0,0,0,26,0,0,0,0,0,8,21,304,0,2,17,2,0,6,8,0,282,15,5,0,0,12,2,152,0,14,0,0,9749,0,0,0,0,20,4,0,0,14,0,0,1,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,44,10,10,10,0,0,0,228,0,139,0,0,0,20,33,218,264,251,0,0,0,0,1,0,3,0,0,0,0,0,0,855,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,244,111,527,5,0,0,548,0,942,0,2,0,182,15,0,0,0,0,0,0,0,0,0,307,1,0,0,0,9,0,0,0,0,19,172,40,0,0,30,0,0,0,0,0,66442,0,0,61,3,0,1,4,0,0,0,0,8,0,0,0,3,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,54,1,1,1,0,12,0,0,0,0,17,71,83,0,31,9,0,0,0,0,0,155,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,16,0,0,0,0,0,0,0,0,0,0,0,2,0,4,622,636,4 +82,0,0,2,1,53,25,4,117,6,24,0,4,0,12,0,38,0,7,6,0,1,1,5,0,29,9,0,7,0,4,0,0,1,17,0,54,15,0,0,484,0,0,0,1,0,0,0,0,0,0,0,25,110,0,0,0,0,0,1,0,1,0,0,0,26,0,0,1374,53,371,0,30,0,0,0,0,0,16,3,0,0,0,0,8,13,259,0,4,17,1,0,4,88,0,804,15,0,0,0,8,1,554,0,7,0,0,1360,0,0,0,0,35,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,209,0,111,0,0,0,27,58,221,787,207,0,0,0,0,1,0,4,0,0,0,0,0,0,775,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,93,263,4,0,0,242,0,331,0,0,0,102,27,0,0,0,0,0,0,0,0,0,227,0,0,0,0,13,0,0,0,0,24,138,230,0,0,30,0,0,0,0,0,734,0,0,19,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,35,0,0,0,0,9,71,41,0,40,9,0,0,0,0,0,327,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,268,1563,4 +0,0,0,10,0,32,5,0,28,0,4,0,0,2,4,0,20,0,6,3,0,0,0,5,0,8,0,0,5,0,3,0,0,0,5,0,32,6,0,0,29,0,0,0,1,0,0,10,0,0,0,0,3,176,0,0,0,0,0,1,0,0,0,0,0,5,0,0,3227,32,107,0,6,0,0,0,0,0,32,0,0,0,0,7,7,30,597,0,0,5,0,0,0,0,0,87,5,15,0,0,2,0,48,0,0,0,0,1277,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,506,0,100,0,0,0,4,4,190,18,482,0,0,0,0,1,0,3,0,0,0,0,0,0,786,0,0,0,0,0,0,0,0,0,0,0,0,9,1,6,0,0,0,0,1,0,32,10,177,14,0,0,255,0,416,0,0,0,136,11,0,0,0,0,0,0,7,0,0,69,1,0,0,0,8,0,0,0,0,1,119,91,0,0,0,0,0,0,0,0,140,0,0,315,3,0,1,1,0,0,0,0,13,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,7,0,0,0,0,1,37,398,0,7,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,384,109,4 +0,0,0,14,5,500,299,5,190,53,77,0,0,8,18,0,1718,0,16,1,0,0,0,8,0,10,0,0,27,0,2,0,0,5,459,7153,505,246,0,0,1211,0,7,0,1,0,0,7,0,0,0,0,2,491,0,0,0,0,0,1,0,0,0,0,0,10,0,0,42109,500,2352,0,26,0,0,0,0,0,150,0,0,0,0,0,8,212,7263,0,5,459,5,0,5,0,0,802,30,9,0,0,12,5,1933,0,9,121,0,13200,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,7,1,1,0,0,57,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,12,12,12,0,0,0,1477,0,558,0,0,0,17,20,1652,5089,1462,0,0,0,0,1,0,3,0,0,0,0,0,0,2941,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,643,217,2565,20,0,0,2587,0,2130,0,5,0,1814,100,0,0,0,0,0,0,0,0,0,2326,1,0,0,0,9,0,0,0,0,3,704,38,0,0,354,0,394,0,0,0,7227,1,0,1037,66,0,1,1,1,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,66,363,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,501,1,1,1,0,74,0,0,0,0,41,963,678,0,27,12,0,0,0,0,0,1797,5,0,0,0,0,0,0,0,0,0,0,0,8,0,2,57,0,0,0,0,0,0,0,0,0,0,0,5,0,4,3173,1219,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,406,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,122,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,49,3,0,0,47,0,145,0,0,0,5,5,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +118,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,562,0,20,44,0,99,2,6,0,33,22,0,17,0,8,2,0,10,38,0,99,301,160,0,385,0,0,0,1,0,0,3,0,0,0,0,34,352,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2597,89,1773,0,50,0,0,0,0,0,23,15,0,0,0,0,13,22,295,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,585,0,46,0,0,2174,0,0,0,0,46,15,1,0,33,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,296,0,234,0,0,0,42,74,338,589,305,0,0,0,0,1,0,6,0,0,0,0,0,0,2148,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1444,49,0,0,1497,0,2946,0,6,0,503,310,0,0,0,0,0,0,0,0,0,1117,1,0,0,0,151,0,0,0,0,29,283,149,0,0,155,0,0,0,0,0,10428,0,0,178,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,6,1,0,0,0,0,3,21,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,63,0,0,0,0,119,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,202,0,3,1654,1620,4 +1,0,0,5,0,41,18,0,57,4,11,0,0,6,4,1,932,0,6,2,0,0,0,8,0,11,0,0,18,0,5,0,0,0,5,1347,41,6,0,0,46,0,0,0,1,0,0,2,0,0,0,0,5,290,0,0,0,0,0,1,0,0,0,0,0,2,0,0,31054,41,1070,0,19,0,0,0,0,0,37,0,0,0,0,0,9,68,3644,0,0,5,0,0,0,0,0,259,20,4,0,0,2,0,910,0,0,27,0,3511,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1926,0,94,0,0,0,14,11,538,1807,1881,0,0,0,0,1,0,4,0,0,0,0,0,0,2570,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,28,234,5,0,0,250,0,318,0,0,0,93,17,0,0,0,0,0,0,0,0,0,1035,1,0,0,0,10,0,0,0,0,2,124,31,0,0,51,0,0,0,0,0,3085,1,0,2890,19,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,39,39,0,0,3,0,0,0,0,0,19,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,40,0,0,0,0,33,46,234,0,20,14,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1072,227,4 +96,0,0,10,8,102,89,17,183,192,26,0,0,2,214,2,536,0,13,16,0,7,3,7,0,30,6,0,33,0,11,2,1,6,51,4,110,315,0,0,603,0,0,0,1,0,0,4,0,0,0,0,32,350,0,0,0,0,0,1,0,0,0,11,0,211,0,0,3820,102,1565,0,63,0,0,0,0,0,22,15,0,0,0,0,12,25,500,0,17,51,6,0,6,34,0,629,65,4,0,0,8,8,871,0,204,0,0,2618,0,0,0,0,43,6,2,0,0,0,1,1,0,0,0,21,0,0,1,0,1,0,0,3,0,0,0,4,0,0,0,0,0,3,2,37,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,13,2,0,0,0,0,0,1,0,0,0,0,0,2,4,0,0,0,0,0,0,0,1,4,0,0,0,0,33,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,24,12,12,12,0,0,0,256,0,239,0,0,0,43,52,376,978,306,0,0,0,0,1,0,4,0,0,0,0,0,0,1628,0,0,0,0,0,0,0,0,0,2,0,0,4,1,0,0,0,0,0,1,0,346,250,1100,18,0,0,1239,0,1608,0,3,0,566,81,0,0,0,0,0,0,0,0,0,1065,1,0,0,0,33,0,0,0,0,33,279,175,0,0,131,0,0,0,0,0,1873,1,0,76,6,0,1,7,0,0,0,0,4,0,0,0,0,0,0,0,0,0,190,1,0,0,0,0,0,0,0,1,0,0,63,63,0,0,6,1,0,0,0,1,6,14,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,110,1,1,1,0,56,0,0,0,6,105,161,265,0,69,13,0,0,0,0,0,621,11,0,0,0,0,0,0,0,0,0,0,0,9,0,1,200,0,0,0,0,0,0,0,0,0,0,0,13,0,1,1030,580,4 +1,0,0,7,0,11,2,0,11,0,3,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,2,0,3,0,0,0,1,0,11,6,0,0,8,0,0,0,1,0,0,2,0,0,0,0,2,82,0,0,0,0,0,1,0,0,0,0,0,1,0,0,19359,11,44,0,5,0,0,0,0,0,8,0,0,0,0,1,1,5,308,0,0,1,0,0,0,0,0,10,0,4,0,0,2,0,14,0,0,0,0,6188,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,247,0,34,0,0,0,4,5,26,6029,249,0,0,0,0,1,0,0,0,0,0,0,0,0,395,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,5,91,10,0,0,102,0,213,0,0,0,42,7,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,93,31,0,0,0,0,0,0,0,0,108,0,0,311,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,6,0,0,0,0,1,12,187,0,5,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,203,12,4 +30,0,0,0,0,15,13,0,49,0,12,0,2,0,3,0,14,0,7,1,0,0,0,1,0,5,0,0,0,0,1,0,0,0,5,0,15,15,0,0,103,0,0,0,0,0,0,0,0,0,0,0,5,56,0,0,0,0,0,1,0,0,0,0,0,8,0,0,522,15,125,0,6,0,0,0,0,0,16,0,0,0,0,0,1,1,132,0,0,5,0,0,3,43,0,350,15,0,0,0,6,0,227,0,0,0,0,168,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,115,0,89,0,0,0,5,7,32,320,131,0,0,0,0,0,0,0,0,0,0,0,0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,25,84,1,0,0,92,0,122,0,0,0,50,4,0,0,0,0,0,0,0,0,0,100,0,0,0,0,2,0,0,0,0,5,102,109,0,0,30,0,0,0,0,0,632,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,20,5,0,6,0,0,0,0,0,0,203,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,106,4 +0,0,0,5,0,36,25,0,47,3,24,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12329,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,617,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40988,36,913,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6853,0,0,1,0,0,0,0,0,357,25,1,0,0,2,0,836,0,0,74,0,4289,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1668,0,32,0,0,0,12,15,498,2059,1646,0,0,0,0,1,0,3,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,271,5,0,0,300,0,289,0,0,0,138,13,0,0,0,0,0,0,0,0,0,861,1,0,0,0,9,0,0,0,0,1,156,6,0,0,128,0,0,0,0,0,4599,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2449,23,4 +1,0,0,11,1,13,26,1,30,0,3,0,0,0,4,0,64,0,9,1,0,0,0,1,0,7,0,0,7,0,1,0,0,1,4,0,14,54,0,0,22,0,0,0,1,0,0,1,0,0,0,0,7,47,0,0,0,0,0,1,0,0,0,0,0,2,0,0,614,13,109,0,15,0,0,0,0,0,6,0,0,0,0,0,1,3,60,0,1,4,1,0,1,0,0,63,0,1,0,0,4,1,29,0,1,0,0,165,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,80,0,58,0,0,0,7,10,31,42,86,0,0,0,0,1,0,0,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,112,15,224,12,0,0,235,0,440,0,1,0,63,10,0,0,0,0,0,0,0,0,0,136,1,0,0,0,2,0,0,0,0,9,111,6,0,0,0,0,0,0,0,0,175,0,0,175,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,7,0,0,0,0,9,18,6,0,15,0,0,0,0,0,0,42,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,287,138,4 +0,0,0,8,2,13,50,2,56,9,7,0,0,0,18,8,122,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,4,0,15,140,0,0,47,0,0,0,1,0,0,8,0,0,0,0,1,114,0,0,0,0,0,1,0,0,0,0,0,17,0,0,3731,13,228,0,2,0,0,0,0,0,24,0,0,0,0,0,1,10,684,0,2,4,2,0,2,0,0,91,0,11,0,0,6,2,104,0,13,0,0,358,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,520,0,267,0,0,0,2,7,35,24,714,0,0,0,0,1,0,0,0,0,0,0,0,0,2487,0,186,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,220,37,392,10,0,0,457,0,971,0,2,0,162,9,0,0,0,0,0,0,0,0,0,272,1,0,0,0,2,0,0,0,0,1,131,52,0,0,0,0,0,0,0,0,618,0,0,853,0,0,1,0,0,0,0,0,16,0,0,0,2,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,11,1,1,1,0,2,0,0,0,0,17,19,173,0,6,0,0,0,0,0,0,92,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,2,0,2,1117,61,4 +121,0,0,29,11,90,157,27,271,30,38,0,0,2,66,1,559,0,20,44,0,99,2,6,0,33,22,0,17,0,7,3,0,10,38,0,100,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,346,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2542,90,1770,0,49,0,0,0,0,0,22,15,0,0,0,0,13,22,296,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,584,0,46,0,0,2091,0,0,0,0,46,16,1,0,31,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,22,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,293,0,233,0,0,0,42,73,339,592,304,0,0,0,0,1,0,6,0,0,0,0,0,0,2273,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1444,49,0,0,1499,0,2981,0,6,0,503,151,0,0,0,0,0,0,0,0,0,1114,1,0,0,0,151,0,0,0,0,30,284,149,0,0,155,0,0,0,0,0,10422,0,0,166,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,53,53,0,0,7,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,61,0,0,0,0,117,138,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,209,0,3,1797,1619,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,129,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1187,28,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,190,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,495,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,146,0,48,0,0,0,1,4,182,14,144,0,0,0,0,1,0,3,0,0,0,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,32,10,141,4,0,0,176,0,278,0,0,0,66,12,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,110,48,0,0,0,0,0,0,0,0,98,0,0,112,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,199,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,182,55,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,42,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,4 +0,0,0,6,0,8,2,0,25,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,6,0,0,0,1,0,0,2,0,0,0,0,0,87,0,0,0,0,0,1,0,0,0,0,0,1,0,0,212,8,49,0,1,0,0,0,0,0,5,0,0,0,0,0,1,4,29,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,24,0,0,0,0,117,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,33,0,0,0,0,3,22,6,46,0,0,0,0,1,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,100,8,0,0,122,0,225,0,0,0,54,2,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,0,94,36,0,0,0,0,0,0,0,0,30,0,0,15,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,228,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,25,4 +0,0,0,6,0,26,5,0,26,0,2,0,0,2,2,0,18,0,6,2,0,0,0,6,0,8,0,0,3,0,2,0,0,0,2,0,26,6,0,0,27,0,2,0,1,0,0,3,0,0,0,0,2,110,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1764,26,63,0,3,0,0,0,0,0,14,0,0,0,0,1,7,20,655,0,0,2,0,0,0,0,0,82,5,4,0,0,2,0,36,0,0,0,0,527,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,116,0,42,0,0,0,2,4,178,14,110,0,0,0,0,1,0,3,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,10,141,6,0,0,163,0,371,0,0,0,63,10,0,0,0,0,0,0,0,0,0,61,1,0,0,0,8,0,0,0,0,2,108,41,0,0,0,0,0,0,0,0,277,0,0,794,3,0,1,1,1,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,3,0,0,0,0,1,28,145,0,4,9,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,344,596,4 +17,0,0,7,140,166,24,399,731,45,229,0,0,0,78,1,602,0,9,203,0,207,5,1,63,17,23,0,4,0,10,1,0,128,149,0,256,190,192,0,856,0,0,0,1,0,0,10,0,0,0,0,10,382,0,0,0,0,0,1,0,0,0,0,0,89,0,0,3868,166,10081,0,31,0,0,0,0,0,32,361,0,0,0,2,1,17,247,0,399,149,128,0,2,172,0,1977,105,16,0,0,2,140,1498,0,55,0,0,4207,0,0,0,0,26,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,268,16,16,16,0,0,16,307,32,263,0,0,42,20,52,430,1349,484,0,0,0,0,1,0,0,0,0,0,0,0,0,1821,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,60,2218,179,0,0,2378,0,3218,0,0,0,1126,165,0,0,0,0,0,0,0,0,0,1674,1,0,0,0,479,0,0,0,0,11,275,610,0,0,252,0,0,0,0,0,3830,0,0,235,0,0,1,0,0,0,0,0,28,0,9,0,7,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,14,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,1,0,0,163,17,17,1,0,36,16,0,0,0,800,405,709,21,55,0,0,0,0,0,0,1072,19,0,0,0,0,0,0,0,0,0,0,0,90,0,1,49,0,0,0,0,0,0,0,0,0,0,0,180,0,4,2009,322,4 +20,0,0,5,0,31,5,0,10,19,3,0,0,2,22,0,21,0,7,5,0,0,0,5,0,8,7,0,3,0,2,1,0,0,5,0,31,6,0,0,62,0,0,0,1,0,0,0,0,0,0,0,3,80,0,0,0,0,0,1,0,0,0,0,0,23,0,0,801,31,71,0,4,0,0,0,0,0,3,0,0,0,0,0,9,14,137,0,0,5,0,0,0,0,0,85,5,0,0,0,2,0,96,0,20,0,0,821,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,88,0,46,0,0,0,4,13,188,147,97,0,0,0,0,1,0,4,0,0,44,0,0,0,488,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,32,36,148,5,0,0,99,0,199,0,0,0,23,6,0,0,0,0,0,0,0,0,0,70,0,0,0,0,10,0,0,0,0,3,113,6,0,0,0,0,0,0,0,0,101,0,0,2,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,6,0,0,0,0,1,36,25,0,12,9,0,0,0,0,0,45,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,583,4 +33,0,0,3,1,52,41,1,90,14,11,0,5,0,22,0,78,0,8,4,0,0,0,5,0,26,0,0,13,0,2,0,0,1,17,0,53,65604,0,0,499,0,0,0,1,0,0,4,0,0,0,0,20,153,0,0,0,0,0,1,0,1,0,0,0,18,0,0,1912,52,332,0,31,0,0,0,0,0,58,0,0,0,0,0,8,21,393,0,1,17,1,0,6,33,0,431,15,6,0,0,12,1,282,0,12,0,0,11119,0,0,0,0,19,19,0,0,16,0,0,1,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,47,10,10,10,0,0,0,296,0,177,0,0,0,20,34,218,462,317,0,0,0,0,1,0,3,0,0,0,0,0,0,1378,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,147,113,405,4,0,0,442,0,653,0,1,0,182,11,0,0,0,0,0,0,0,0,0,255,1,0,0,0,9,0,0,0,0,20,155,105,0,0,30,0,0,0,0,0,66377,0,0,68,3,0,1,4,0,0,0,0,7,0,0,0,3,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,54,1,1,1,0,13,0,0,0,0,9,70,127,0,32,9,0,0,0,0,0,222,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,16,0,0,0,0,0,0,0,0,0,0,0,1,0,3,821,605,4 +76,0,0,1,1,52,25,4,115,5,22,0,4,0,9,0,30,0,7,6,0,1,1,5,0,29,0,0,5,0,3,0,0,1,17,0,53,15,0,0,476,0,0,0,1,0,0,0,0,0,0,0,24,122,0,0,0,0,0,1,0,1,0,0,0,24,0,0,1306,52,346,0,27,0,0,0,0,0,16,3,0,0,0,0,8,13,259,0,4,17,1,0,4,88,0,798,15,0,0,0,8,1,513,0,6,0,0,1491,0,0,0,0,32,22,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,29,10,10,10,0,0,0,204,0,107,0,0,0,25,51,217,780,201,0,0,0,0,1,0,4,0,0,0,0,0,0,751,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,90,262,3,0,0,239,0,329,0,0,0,102,20,0,0,0,0,0,0,0,0,0,212,0,0,0,0,13,0,0,0,0,23,137,230,0,0,30,0,0,0,0,0,712,0,0,18,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,31,0,0,0,0,9,70,41,0,28,9,0,0,0,0,0,324,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,254,1329,4 +1,0,0,2,1,13,26,1,41,1,3,0,0,0,4,0,80,0,9,1,0,0,0,1,0,0,9,0,6,0,4,0,0,1,2,0,14,54,0,0,10,0,0,0,1,0,0,4,0,0,0,0,3,108,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3172,13,165,0,10,0,0,0,0,0,19,0,0,0,0,0,1,7,315,0,1,2,1,0,1,0,0,68,0,4,0,0,4,1,85,0,1,0,0,272,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,320,0,80,0,0,0,6,18,43,28,333,0,0,0,0,1,0,0,0,0,0,0,0,0,1020,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,112,11,279,3,0,0,356,0,817,0,1,0,169,25,0,0,0,0,0,0,0,0,0,163,1,0,0,0,2,0,0,0,0,4,153,67,0,0,0,0,0,0,0,0,400,0,0,874,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,1,1,1,0,9,0,0,0,0,9,16,169,0,19,0,0,0,0,0,0,63,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,570,144,4 +223,0,0,0,3,85,57,12,334,3,104,1,2,0,5,0,48,0,7,16,0,3,3,2,0,6,4,0,73,0,301,1,0,3,36,0,88,12,0,0,508,0,0,0,0,0,0,0,0,0,0,0,307,112,0,0,0,0,0,1,0,0,0,0,0,24,0,0,6015,85,1665,0,382,0,0,0,0,0,272,9,0,0,0,0,11,11,282,0,12,36,3,0,3,294,0,3589,390,0,0,0,6,3,1678,0,2,0,0,4068,0,0,0,0,86,93,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,79,0,0,0,76,0,0,0,0,0,1,0,13,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,72,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,241,0,178,0,0,0,608,612,164,2448,262,0,0,0,0,0,0,0,0,0,0,0,0,0,4044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,557,6,0,0,705,0,543,0,0,0,470,59,0,0,0,0,0,0,0,0,0,558,0,0,0,0,24,0,0,0,0,306,176,580,0,0,875,0,0,0,0,0,1324,0,0,301,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,85,1,1,1,0,679,0,0,0,590,25,124,36,0,385,0,0,0,0,0,0,635,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,1,0,0,0,0,0,0,0,0,0,0,5,0,0,1304,1949,4 +0,0,0,5,0,38,51,0,99,2,34,0,0,8,3,0,826,0,6,1,0,0,0,8,0,13,0,0,41,0,1,0,0,0,1,9440,38,6,0,0,50,0,1,0,1,0,0,1,0,0,0,0,1,469,0,0,0,0,0,1,0,0,0,0,0,2,0,0,96278,38,1137,0,42,0,0,0,0,0,99,0,0,0,0,0,8,279,12220,0,0,1,0,0,0,0,0,544,30,2,0,0,2,0,999,0,0,196,0,8004,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,5689,0,36,0,0,0,28,31,1285,6114,5625,0,0,0,0,1,0,3,0,0,0,0,0,0,6602,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,22,360,5,0,0,355,0,335,0,0,0,184,40,0,0,0,0,0,0,0,0,0,1027,1,0,0,0,9,0,0,0,0,1,156,76,0,0,263,0,0,0,0,0,5686,1,0,8618,48,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,48,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,125,0,0,0,0,1,39,297,0,43,12,0,1,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3396,241,4 +0,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,163,0,0,0,0,0,1,0,0,0,0,0,1,0,0,35723,11,40,0,1,0,0,0,0,0,6,0,0,0,0,0,2,5,13844,0,0,0,0,0,0,0,0,10,0,3,0,0,2,0,15,0,0,0,0,8069,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13859,0,16028,0,0,0,0,3,34,7,37371,0,0,0,0,1,0,0,0,0,0,0,0,0,79366,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,485,2,0,0,80,0,775,0,0,0,13,48,0,0,0,0,0,0,0,0,0,42,1,0,0,0,3,0,0,0,0,0,94,4,0,0,0,0,0,0,0,0,28,0,0,22,0,0,1,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,11,18,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,32056,316,4 +0,0,0,0,0,1,0,1,16,0,1,0,0,0,1,0,508,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,504,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,2,0,0,0,0,0,0,0,9,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,7,0,0,0,0,0,0,0,0,0,527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,2,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,7,0,0,7,0,0,1,81,4 +0,0,0,5,0,36,25,0,48,3,24,0,0,7,4,0,785,0,6,1,0,0,0,8,0,11,0,0,25,0,1,0,0,0,1,12477,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,732,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41042,36,952,0,24,0,0,0,0,0,46,0,0,0,0,0,8,94,6617,0,0,1,0,0,0,0,0,367,25,1,0,0,2,0,873,0,0,90,0,4403,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1549,0,33,0,0,0,13,16,494,2085,1528,0,0,0,0,1,0,3,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,278,5,0,0,309,0,292,0,0,0,146,17,0,0,0,0,0,0,0,0,0,899,1,0,0,0,9,0,0,0,0,1,164,6,0,0,136,0,0,0,0,0,4678,1,0,1005,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,208,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2406,22,4 +0,0,0,3,0,8,2,0,4,0,2,0,0,0,2,0,10,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,2,0,0,16,8,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,58,0,0,0,3,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,28,4 +2,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,61,0,0,0,0,0,1,0,0,0,0,0,1,0,0,7090,10,41,0,1,0,0,0,0,0,8,0,0,0,0,0,1,5,1920,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,13,0,0,0,0,144,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,821,0,34,0,0,0,0,3,26,8,831,0,0,0,0,1,0,0,0,0,0,0,0,0,2028,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,10,3,89,2,0,0,94,0,228,0,0,0,29,11,0,0,0,0,0,0,4,0,0,42,1,0,0,0,2,0,0,0,0,0,92,21,0,0,0,0,0,0,0,0,997,0,0,2285,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,154,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,833,658,4 +0,0,0,5,0,35,25,0,48,3,24,0,0,7,4,0,764,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12524,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,741,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40073,35,930,0,23,0,0,0,0,0,46,0,0,0,0,0,8,94,6706,0,0,1,0,0,0,0,0,366,25,1,0,0,2,0,852,0,0,92,0,4298,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1424,0,32,0,0,0,12,15,490,2100,1403,0,0,0,0,1,0,3,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,270,5,0,0,307,0,285,0,0,0,147,15,0,0,0,0,0,0,0,0,0,878,1,0,0,0,9,0,0,0,0,1,164,6,0,0,137,0,0,0,0,0,4747,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2481,22,4 +119,0,0,29,11,89,157,27,272,30,38,0,0,2,66,1,555,0,20,45,0,98,2,6,0,33,22,0,17,0,7,2,0,10,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,351,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2504,89,1767,0,49,0,0,0,0,0,22,15,0,0,0,0,13,22,291,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,583,0,46,0,0,2274,0,0,0,0,46,16,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,23,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,28,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,291,0,227,0,0,0,42,74,333,589,303,0,0,0,0,1,0,6,0,0,0,0,0,0,2165,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1432,49,0,0,1496,0,2973,0,6,0,503,323,0,0,0,0,0,0,0,0,0,1111,1,0,0,0,151,0,0,0,0,28,283,149,0,0,155,0,0,0,0,0,10417,0,0,161,4,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,4,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,63,0,0,0,0,115,137,326,0,72,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,186,0,3,1645,1616,4 +81,0,0,2,1,53,25,4,117,7,24,0,4,0,13,0,38,0,7,6,0,1,1,5,0,33,9,0,6,0,4,0,0,1,17,0,54,15,0,0,514,0,0,0,1,0,0,0,0,0,0,0,28,111,0,0,0,0,0,1,0,1,0,0,0,27,0,0,1364,53,375,0,33,0,0,0,0,0,16,3,0,0,0,0,8,13,266,0,4,17,1,0,4,88,0,810,15,0,0,0,8,1,559,0,8,0,0,1273,0,0,0,0,40,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,210,0,112,0,0,0,30,63,219,804,208,0,0,0,0,1,0,4,0,0,0,0,0,0,795,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,94,307,4,0,0,242,0,254,0,0,0,102,26,0,0,0,0,0,0,0,0,0,228,0,0,0,0,13,0,0,0,0,27,138,230,0,0,30,0,0,0,0,0,740,0,0,18,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,35,0,0,0,0,9,71,41,0,43,9,0,0,0,0,0,328,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,2,0,0,273,1613,4 +77,0,0,1,1,54,25,4,115,5,22,0,4,0,9,0,30,0,7,6,0,1,1,5,0,22,0,0,5,0,3,0,0,1,17,0,55,15,0,0,476,0,0,0,1,0,0,0,0,0,0,0,17,109,0,0,0,0,0,1,0,1,0,0,0,24,0,0,1331,54,338,0,20,0,0,0,0,0,16,3,0,0,0,0,8,13,268,0,4,17,1,0,4,88,0,784,15,0,0,0,8,1,506,0,6,0,0,1220,0,0,0,0,30,22,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,207,0,110,0,0,0,18,39,225,768,205,0,0,0,0,1,0,4,0,0,0,0,0,0,745,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,90,284,3,0,0,245,0,314,0,0,0,102,22,0,0,0,0,0,0,0,0,0,212,0,0,0,0,13,0,0,0,0,16,139,230,0,0,30,0,0,0,0,0,722,0,0,20,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,36,0,0,0,0,9,72,41,0,21,9,0,0,0,0,0,328,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,262,1140,4 +2,0,0,4,1,10,2,4,15,0,3,0,0,0,3,0,26,0,6,6,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,11,25,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,4,0,3,0,0,20,10,94,0,1,0,0,0,0,0,0,3,0,0,0,0,2,2,4,0,4,0,1,0,0,0,0,9,0,0,0,0,2,1,14,0,0,0,0,78,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,14,0,21,0,0,0,0,3,28,13,25,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,7,79,5,0,0,92,0,284,0,0,0,26,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,7,0,0,0,0,0,97,2,0,0,0,0,0,0,0,0,2183,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,9,11,0,0,1,0,0,0,0,0,0,9,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,122,10,4 +382,0,0,36,29,112,250,69,607,47,97,0,0,2,91,0,568,0,24,85,0,123,2,6,0,61,22,0,33,0,8,3,0,28,50,0,134,400,160,0,1053,0,0,0,1,0,0,5,1,0,0,0,62,455,0,0,0,0,0,1,0,3,0,12,0,107,0,0,4467,112,4346,0,93,0,0,0,0,0,110,63,0,0,0,0,14,28,615,0,69,50,28,0,11,211,0,2218,95,11,0,0,18,29,1559,0,67,0,0,4391,0,0,0,0,100,86,0,0,37,0,0,1,0,0,0,21,0,0,0,0,0,0,0,26,0,0,0,17,0,0,0,2,0,7,0,77,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,3,0,0,0,0,0,1,15,0,0,0,0,0,0,0,20,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,107,10,10,10,0,0,0,531,0,344,0,0,0,71,118,372,2003,585,0,0,0,0,1,0,5,0,0,0,0,0,0,4986,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,886,419,2262,76,0,0,2314,0,4189,0,8,0,785,263,0,0,0,0,0,0,0,0,0,1639,1,0,2,0,216,0,0,0,0,55,350,546,0,0,211,0,0,0,0,0,10381,0,0,144,3,0,1,9,0,0,0,0,13,0,0,0,4,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,17,1,0,0,0,0,3,34,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,117,1,1,1,0,112,0,0,0,0,177,184,207,0,118,9,0,0,0,0,0,863,32,0,0,0,0,0,0,1,0,0,0,0,23,0,4,55,0,0,0,0,0,0,0,0,117,0,0,212,0,6,2581,2503,4 +10,0,0,11,1,49,50,1,124,7,15,1,0,2,13,0,70,0,9,5,0,0,0,7,0,9,0,0,13,0,1,0,0,1,15,0,50,59,0,0,166,0,0,0,1,0,0,19,3,0,0,0,2,388,0,0,0,0,0,1,0,0,0,19,0,10,0,0,12558,49,349,0,12,0,0,0,0,0,71,0,0,0,0,5,11,43,1829,0,1,15,1,0,1,47,0,524,20,40,1,0,4,1,340,0,8,0,0,1699,0,0,0,0,32,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,7,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,30,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,10,10,10,0,0,0,1535,0,259,0,0,0,0,3,228,429,1480,0,0,0,0,1,0,3,0,0,0,0,0,0,4185,0,0,0,0,0,0,0,0,0,0,0,0,19,1,0,0,0,0,0,2,0,137,26,473,16,0,0,604,0,1685,0,1,0,345,47,0,0,0,0,0,0,0,0,0,284,1,0,9,0,12,0,0,0,0,1,215,244,0,0,34,0,0,0,0,0,999,0,0,2858,3,0,1,1,0,0,0,0,48,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,59,1,1,1,0,12,0,0,0,0,9,65,912,0,14,9,0,0,0,0,0,221,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,13,2185,207,4 +3,0,0,5,6,14,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,20,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,100,0,0,0,0,0,1,0,0,0,0,0,25,0,0,522,14,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,46,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,314,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,61,0,52,0,0,0,2,10,48,224,99,0,0,0,0,1,0,1,0,0,0,0,0,0,435,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,117,36,396,11,0,0,404,0,605,0,1,0,103,4,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,111,74,0,0,57,0,0,0,0,0,540,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,1,1,1,0,6,0,0,0,0,49,23,4,0,7,0,0,0,0,0,0,144,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,11,0,0,232,36,4 +52,0,0,1,1,57,8,4,31,2,6,0,3,0,5,0,36,0,7,12,0,1,1,6,0,19,3,0,8,0,4,1,0,1,21,0,58,12,0,0,139,0,0,0,1,0,0,0,0,0,0,0,16,93,0,0,0,0,0,1,0,1,0,0,0,3,0,0,892,57,218,0,22,0,0,0,0,0,6,3,0,0,0,0,15,20,140,0,4,21,1,0,3,8,0,209,15,0,0,0,6,1,124,0,2,0,0,12797,0,0,0,0,16,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,8,0,0,0,4,0,0,0,0,0,1,0,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,135,0,92,0,0,0,19,29,223,175,126,0,0,0,0,1,0,3,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,52,281,2,0,0,228,0,377,0,0,0,91,35,0,0,0,0,0,0,0,0,0,96,0,0,0,0,20,0,0,0,0,15,148,19,0,0,30,0,0,0,0,0,120,0,0,5,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,17,0,0,0,0,9,79,37,0,26,9,0,0,0,0,0,138,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,158,809,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,0,0,0,100,8,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,1,31,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,28,0,0,0,0,3,21,4,42,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,43,0,26,0,0,0,9,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,4,4 +130,0,0,22,15,128,204,33,409,43,68,1,1,2,89,1,1423,0,23,20,0,8,4,8,2,51,26,0,34,0,100,3,0,13,63,0,143,370,0,0,580,0,0,0,1,0,0,3,0,0,0,0,145,444,0,0,0,0,0,1,0,4,0,13,0,83,0,0,7236,128,2865,0,179,0,0,0,0,0,34,21,0,0,0,0,17,27,1518,0,33,63,13,0,12,114,0,1861,140,5,0,0,18,15,1907,0,68,1,0,4649,0,0,0,0,137,18,2,0,52,0,0,1,0,0,0,26,0,0,0,0,0,0,0,7,0,0,0,8,0,0,0,0,0,2,0,24,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,29,4,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,17,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,75,12,12,12,0,0,2,1039,2,339,0,0,2,247,272,435,1647,1054,0,0,0,0,1,0,6,0,0,0,0,0,0,2666,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,771,201,1753,43,0,0,1860,0,3222,0,7,0,648,134,0,0,0,0,0,0,0,0,0,2221,1,0,0,0,42,0,0,0,0,136,344,293,0,0,308,0,0,0,0,0,12019,0,0,355,3,0,1,10,0,0,0,0,6,0,0,0,1,0,0,0,0,0,43,0,0,1,0,0,0,0,0,0,0,0,73,73,0,0,13,1,0,0,0,0,3,114,1,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,138,1,1,1,0,263,0,0,0,0,262,206,227,1,205,9,0,0,0,0,0,556,13,0,0,0,0,0,0,0,0,0,0,0,16,0,1,53,0,0,0,0,0,0,0,0,10,0,0,31,0,3,1450,1692,4 +0,0,0,0,0,8,40,0,48,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,147,8,130,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,44,0,331,15,0,0,0,4,0,226,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,203,55,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,86,0,59,0,0,0,52,6,0,0,0,0,0,0,0,0,0,113,0,0,0,0,2,0,0,0,0,0,91,88,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,104,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,4,4 +0,0,0,0,0,8,41,0,49,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,8,132,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,45,0,338,15,0,0,0,4,0,231,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,207,55,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,87,0,59,0,0,0,53,4,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2,0,0,0,0,0,91,90,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,106,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,4,4 +152,0,0,29,10,85,189,22,430,30,74,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,2,0,9,33,0,95,301,0,0,701,0,0,0,1,0,0,3,0,0,0,0,28,364,0,0,0,0,0,1,0,3,0,12,0,84,0,0,2916,85,1529,0,39,0,0,0,0,0,72,12,0,0,0,0,13,22,414,0,22,33,9,0,10,203,0,1969,100,3,0,0,14,10,1329,0,46,0,0,2082,0,0,0,0,52,42,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,331,0,237,0,0,0,36,76,300,1682,361,0,0,0,0,1,0,5,0,0,0,0,0,0,2719,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1412,48,0,0,1559,0,2899,0,6,0,566,42,0,0,0,0,0,0,0,0,0,1154,1,0,0,0,30,0,0,0,0,22,279,564,0,0,215,0,0,0,0,0,9938,0,0,185,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,77,0,0,0,0,81,128,309,0,62,9,0,0,0,0,0,735,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1626,1649,4 +138,0,0,36,19,105,215,59,376,41,62,0,0,2,84,0,490,0,24,64,0,103,2,5,1,60,22,0,33,0,10,2,0,18,45,0,117,400,160,0,773,0,0,0,1,0,0,5,1,0,0,0,62,406,0,0,0,0,0,1,0,3,0,12,0,75,0,0,3417,105,2790,0,93,0,0,0,0,0,63,33,0,0,0,0,13,27,478,0,59,45,18,0,11,86,0,1272,95,10,0,0,18,19,855,0,60,0,0,3564,0,0,0,0,68,25,0,0,38,0,0,1,0,0,0,22,0,0,0,0,0,0,0,7,0,0,0,12,0,0,0,2,0,1,0,26,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,4,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,87,10,10,10,0,0,0,412,0,240,0,0,0,72,107,337,1100,454,0,0,0,0,1,0,5,0,0,0,0,0,0,3241,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,884,412,1837,66,0,0,1891,0,4013,0,8,0,621,137,0,0,0,0,0,0,0,0,0,1253,1,0,2,0,175,0,0,0,0,55,342,225,0,0,211,0,0,0,0,0,10237,0,0,136,3,0,1,8,0,0,0,0,13,0,0,0,4,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,108,1,1,1,0,75,0,0,0,0,97,162,218,0,118,9,0,0,0,0,0,497,12,0,0,0,0,0,0,1,0,0,0,0,13,0,4,49,0,0,0,0,0,0,0,0,117,0,0,187,0,6,2020,2130,4 +0,0,0,0,0,1,0,1,20,0,1,0,0,0,1,0,660,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,656,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,9,0,0,0,0,0,0,0,0,0,683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,2,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,8,0,0,1,98,4 +121,0,0,29,11,90,159,27,284,30,43,0,0,2,66,1,566,0,20,46,0,97,2,6,0,33,22,0,18,0,8,2,0,10,38,0,100,301,160,0,419,0,0,0,1,0,0,3,0,0,0,0,34,336,0,0,0,0,0,1,0,3,0,12,0,54,0,0,2493,90,1802,0,51,0,0,0,0,0,24,15,0,0,0,0,13,22,287,0,27,38,10,0,9,50,0,839,85,3,0,0,14,11,649,0,46,0,0,2248,0,0,0,0,46,18,1,0,31,0,0,1,0,0,0,21,0,0,0,0,0,0,0,6,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,292,0,237,0,0,0,42,74,344,679,302,0,0,0,0,1,0,6,0,0,0,0,0,0,2269,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1429,49,0,0,1503,0,2988,0,6,0,508,204,0,0,0,0,0,0,0,0,0,1141,1,0,0,0,151,0,0,0,0,28,283,176,0,0,185,0,0,0,0,0,10423,0,0,157,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,5,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,64,0,0,0,0,121,138,326,0,74,9,0,0,0,0,0,347,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,38,0,0,0,0,0,0,0,0,117,0,0,246,0,3,1670,1617,4 +1,0,0,0,0,29,25,0,32,6,6,0,0,0,9,0,86,0,7,4,0,0,0,3,0,11,9,0,3,0,2,2,0,0,12,0,29,172,0,0,179,0,0,0,0,0,0,0,0,0,0,0,14,83,0,0,0,0,0,1,0,0,0,0,0,8,0,0,651,29,180,0,12,0,0,0,0,0,0,0,0,0,0,0,6,6,55,0,0,12,0,0,0,21,0,196,15,0,0,0,2,0,225,0,6,0,0,608,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,16,0,0,0,0,0,0,88,0,44,0,0,0,11,32,65,390,135,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,21,174,0,0,0,254,0,233,0,0,0,197,38,0,0,0,0,0,0,0,0,0,165,0,0,0,0,7,0,0,0,0,7,147,107,0,0,37,0,0,0,20,0,194,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,27,0,0,0,0,1,41,12,0,27,0,0,0,0,0,0,304,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,143,4 +59,0,0,37,0,52,33,0,241,27,79,1,0,0,72,0,75,0,8,4,0,0,0,1,0,17,31,0,21,0,10,1,0,0,22,0,52,166,0,0,474,0,0,0,1,0,0,8,0,0,0,0,27,172,0,0,0,0,0,1,0,0,0,18,0,61,0,0,2172,52,594,0,48,0,0,0,0,0,28,0,0,0,0,1,4,17,174,0,0,22,0,0,3,148,0,1259,100,10,0,0,2,0,1211,0,34,0,0,1973,0,0,0,0,64,0,0,0,0,0,0,1,0,0,0,7,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,33,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,46,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,70,0,0,0,0,0,0,204,0,144,0,0,0,37,69,98,1176,240,0,0,0,0,1,0,0,0,0,0,0,0,0,1235,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,39,54,385,49,0,0,356,0,687,0,0,0,225,97,0,0,0,0,0,0,0,0,0,509,1,0,0,0,5,0,0,0,0,15,174,400,0,0,252,0,0,0,0,2,819,0,0,195,0,0,1,0,0,0,0,0,18,0,0,0,4,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,43,0,0,0,0,1,74,229,0,80,0,0,0,0,0,0,517,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,33,0,0,0,0,0,0,0,0,0,0,0,0,0,9,484,296,4 +19,0,0,2,4,44,86,10,167,11,39,2,5,0,26,0,165,0,11,10,0,2,0,5,0,8,12,0,6,0,2,3,0,4,7,0,48,156,0,0,326,0,0,0,1,0,0,0,0,0,0,0,5,171,0,0,0,0,0,1,0,0,0,2,0,21,0,0,1298,44,632,0,9,0,0,0,0,0,3,6,0,0,0,0,8,13,187,0,10,7,4,0,9,82,0,836,85,0,0,0,14,4,603,0,11,0,0,2948,0,0,0,0,4,2,0,0,3,0,0,0,0,0,0,51,0,0,1,0,0,0,0,0,0,1,0,4,0,0,0,0,0,2,0,7,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,46,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,19,10,10,10,0,0,0,163,0,84,0,0,0,8,27,222,671,211,0,0,0,0,1,0,4,0,0,17,0,0,0,969,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,251,95,560,6,0,0,554,0,1246,0,2,0,147,29,0,0,0,0,0,0,0,0,0,501,0,0,0,0,17,0,0,0,0,5,157,187,0,0,195,0,0,0,0,0,1253,0,0,188,3,0,1,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,7,6,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,51,1,1,1,0,26,0,0,0,0,33,55,33,0,22,9,0,0,0,0,0,299,15,0,0,0,0,0,0,0,0,0,0,0,5,0,1,17,0,0,0,0,0,0,0,0,0,0,0,6,0,0,794,172,4 +270,0,0,2,13,170,188,37,503,58,84,0,6,0,96,1,923,0,15,20,0,10,6,9,2,65,51,0,20,0,14,3,0,11,97,0,183,192,6446,0,1033,0,0,0,1,0,0,5,1,0,0,0,73,452,0,0,0,0,0,1,0,2,0,16,0,103,0,0,38576,170,2881,0,90,0,0,0,0,0,136,27,0,0,0,0,14,25,7875,0,37,97,11,0,11,260,0,2439,145,11,0,0,18,13,2563,0,69,1,0,5650,0,0,0,0,74,74,2,0,33,0,0,1,0,0,0,19,0,0,0,0,0,0,0,11,0,0,0,34,0,0,0,0,0,2,0,23,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,56,8,0,0,0,0,0,2,0,0,0,0,0,7,23,0,0,0,3,0,0,0,0,8,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,113,12,12,12,0,0,2,4932,2,473,0,0,2,88,277,427,135669,4957,0,0,0,0,1,0,5,0,0,0,0,0,0,10888,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,364,211,1538,19,0,0,1657,0,1931,0,3,0,821,126647,0,0,0,0,0,0,0,0,0,1816,1,0,2,0,47,0,0,0,0,59,339,705,0,0,344,0,0,0,0,0,12638,0,0,8551,3,0,1,12,0,0,0,0,14,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,0,3,105,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3,180,1,1,1,0,403,0,0,0,0,180,280,441,1,144,9,0,0,0,0,0,950,18,0,0,0,0,0,0,0,0,0,0,0,14,0,2,64,1,0,0,0,0,0,0,0,8,0,0,28,0,4,4288,2005,4 +120,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,556,0,20,44,0,99,2,6,0,33,22,0,18,0,7,3,0,10,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,350,0,0,0,0,0,1,0,3,0,13,0,52,0,0,2553,89,1768,0,50,0,0,0,0,0,21,15,0,0,0,0,13,22,310,0,27,38,10,0,8,37,0,731,70,3,0,0,14,11,584,0,46,0,0,2546,0,0,0,0,47,16,1,0,30,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,290,0,230,0,0,0,42,73,332,589,303,0,0,0,0,1,0,6,0,0,0,0,0,0,2162,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1442,49,0,0,1495,0,2950,0,6,0,503,316,0,0,0,0,0,0,0,0,0,1111,1,0,0,0,151,0,0,0,0,28,283,149,0,0,155,0,0,0,0,0,10434,0,0,169,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,8,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,62,0,0,0,0,115,137,326,0,74,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,186,0,3,1669,1618,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,0,0,0,47,8,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,7,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,17,0,0,0,0,3,21,4,26,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,37,0,24,0,0,0,3,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,4,4 +106,0,0,24,4,62,81,7,125,7,16,0,0,2,24,0,187,0,12,6,0,1,1,5,0,15,9,0,9,0,4,0,0,4,22,0,66,165,0,0,210,0,0,0,1,0,0,7,0,0,0,0,11,265,0,0,0,0,0,1,0,1,0,0,0,21,0,0,5022,62,483,0,18,0,0,0,0,0,30,3,0,0,0,0,8,21,992,0,7,22,4,0,4,11,0,322,20,12,0,0,8,4,207,0,15,0,0,1663,0,0,0,0,42,30,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,32,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,739,0,246,0,0,0,13,46,241,243,706,0,0,0,0,1,0,4,0,0,0,0,0,0,1914,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,74,777,33,0,0,814,0,1489,0,3,0,285,32,0,0,0,0,0,0,2,0,0,447,1,0,0,0,13,0,0,0,0,11,192,94,0,0,34,0,0,0,0,0,1189,0,0,907,3,0,1,2,0,0,0,0,16,0,0,0,0,0,0,0,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,64,1,1,1,0,63,0,0,0,0,33,88,360,0,28,9,0,0,0,0,0,268,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,11,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1310,1353,4 +0,0,0,10,2,41,58,2,84,10,13,0,0,7,21,0,700,0,11,2,0,0,0,7,0,10,3,0,9,0,2,0,0,2,5,898,43,135,0,0,77,0,0,0,1,0,0,6,0,0,0,0,2,286,0,0,0,0,0,1,0,0,0,0,0,18,0,0,11626,41,859,0,8,0,0,0,0,0,36,0,0,0,0,0,8,39,2180,0,2,5,2,0,2,0,0,316,25,10,0,0,6,2,727,0,14,17,0,1582,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,907,0,279,0,0,0,5,10,300,481,1083,0,0,0,0,1,0,3,0,0,0,0,0,0,2612,0,191,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,335,51,543,12,0,0,598,0,1658,0,2,0,208,24,0,0,0,0,0,0,0,0,0,894,1,0,0,0,9,0,0,0,0,1,161,58,0,0,32,0,0,0,0,0,2467,1,0,1070,10,0,1,1,0,0,0,0,14,0,0,0,2,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,10,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,44,1,1,1,0,16,0,0,0,0,17,48,205,0,12,12,0,0,0,0,0,135,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,14,0,0,0,0,0,0,0,0,0,0,0,2,0,3,1959,85,4 +9,0,0,6,1,15,26,1,38,1,4,0,0,0,6,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,3,0,16,54,0,0,19,0,0,0,1,0,0,4,0,0,0,0,0,78,0,0,0,0,0,1,0,0,0,0,0,5,0,0,22732,15,125,0,1,0,0,0,0,0,17,0,0,0,0,0,1,6,1528,0,1,3,1,0,1,0,0,50,0,6,0,0,4,1,25,0,3,0,0,8181,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1507,0,151,0,0,0,0,3,65,37,1523,0,0,0,0,1,0,0,0,0,0,0,0,0,1586,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,113,17,956,8,0,0,783,0,749,0,1,0,596,54,0,0,0,0,0,0,0,0,0,147,1,0,0,0,2,0,0,0,0,0,628,21,0,0,0,0,0,0,0,0,1160,0,0,1666,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,1,1,1,0,0,0,0,0,0,9,19,73,0,1,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,721,130,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,2,0,0,414,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,132,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,33,0,28,0,0,0,2,4,26,94,45,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,156,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,28,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,14,4 +2,0,0,12,1,47,37,1,86,1,18,0,0,7,8,0,711,0,8,3,0,0,0,7,0,10,0,0,7,0,1,0,0,1,6,898,48,88,0,0,87,0,0,0,1,0,0,1,0,0,0,0,1,275,0,0,0,0,0,1,0,0,0,6,0,11,0,0,8084,47,832,0,4,0,0,0,0,0,17,0,0,0,0,0,9,36,1586,0,1,6,1,0,2,19,0,414,55,2,0,0,4,1,826,0,3,7,0,1693,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,548,0,60,0,0,0,2,5,426,611,534,0,0,0,0,1,0,3,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,217,44,408,13,0,0,403,0,1023,0,1,0,118,15,0,0,0,0,0,0,0,0,0,875,1,0,0,0,10,0,0,0,0,1,152,48,0,0,93,0,0,0,0,0,2058,1,0,97,9,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,50,1,1,1,0,10,0,0,0,0,9,54,76,0,6,12,0,0,0,0,0,141,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,767,71,4 +0,0,0,0,0,10,2,0,7,0,1,0,0,0,2,0,12,0,7,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,10,6,0,0,9,0,0,0,0,0,0,0,0,0,0,0,1,284,0,0,0,0,0,1,0,0,0,0,0,0,0,0,33,10,24,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,1,0,0,0,0,0,7,0,0,0,0,2,0,9,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,23,0,20,0,0,0,1,4,24,12,31,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,13,50,0,0,0,53,0,2330,0,0,0,8,1,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,2,92,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,1,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,70,4 +2,0,0,3,0,33,5,0,23,0,2,0,0,2,2,0,33,0,6,3,0,0,0,5,0,8,9,0,4,0,5,0,0,0,7,0,33,6,0,0,20,0,0,0,1,0,0,4,0,0,0,0,5,110,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2708,33,91,0,7,0,0,0,0,0,20,0,0,0,0,0,7,17,454,0,0,7,0,0,0,0,0,83,5,8,0,0,2,0,85,0,0,0,0,588,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,336,0,108,0,0,0,8,17,189,26,320,0,0,0,0,1,0,4,0,0,0,0,0,0,760,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,32,10,141,3,0,0,206,0,329,0,0,0,96,12,0,0,0,0,0,0,0,0,0,73,1,0,0,0,8,0,0,0,0,2,115,63,0,0,0,0,0,0,0,0,181,0,0,516,3,0,1,1,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,15,0,0,0,0,1,40,252,0,17,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,394,36,4 +193,0,0,0,3,79,40,12,263,1,92,1,1,0,3,0,56,0,7,10,0,3,3,2,0,6,9,0,41,0,86,1,0,3,35,0,82,9,0,0,341,0,0,0,0,0,0,0,0,0,0,0,92,131,0,0,0,0,0,1,0,0,0,0,0,6,0,0,4870,79,1279,0,134,0,0,0,0,0,250,9,0,0,0,0,5,5,222,0,12,35,3,0,2,222,0,2154,410,0,0,0,4,3,1080,0,0,0,0,3608,0,0,0,0,81,85,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,74,0,0,0,77,0,0,0,0,0,1,0,10,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,22,0,0,0,0,0,0,198,0,149,0,0,0,178,181,157,1443,212,0,0,0,0,0,0,0,0,0,0,0,0,0,3530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,30,481,6,0,0,646,0,496,0,0,0,429,59,0,0,0,0,0,0,0,0,0,463,0,0,0,0,18,0,0,0,0,91,170,384,0,0,919,0,0,0,0,0,1100,0,0,86,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,79,1,1,1,0,214,0,0,0,0,25,117,35,0,143,0,0,0,0,0,0,446,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1112,250,4 +12,0,0,4,0,16,2,0,23,2,3,0,0,0,5,0,90,0,6,1,0,0,0,1,0,0,45,0,15,0,16,0,0,0,5,0,16,6,0,0,20,0,57,0,1,0,0,57,0,0,0,0,15,306,0,0,0,0,0,1,0,0,0,0,0,6,0,0,9276,16,409,0,31,0,0,0,0,0,137,0,0,0,0,0,1,59,1497,0,0,5,0,0,0,0,0,138,0,67,0,0,2,0,313,0,3,0,0,499,0,3,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,1603,0,433,0,0,0,30,78,37,151,2001,0,0,0,0,1,0,0,0,0,0,0,0,0,3778,0,65,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,8,6,133,4,0,0,612,0,894,0,0,0,554,10,0,0,0,0,0,0,0,0,0,129,1,0,0,0,2,0,0,0,0,16,98,454,0,0,0,0,0,0,0,0,519,0,0,1317,0,0,1,0,1,0,0,0,160,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,168,0,0,0,0,16,14,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,30,0,0,0,0,1,21,86,0,76,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1327,366,4 +1,0,0,7,0,11,2,0,11,0,3,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,2,0,3,0,0,0,1,0,11,6,0,0,8,0,0,0,1,0,0,2,0,0,0,0,2,87,0,0,0,0,0,1,0,0,0,0,0,1,0,0,19185,11,42,0,5,0,0,0,0,0,8,0,0,0,0,1,1,4,221,0,0,1,0,0,0,0,0,10,0,4,0,0,2,0,14,0,0,0,0,6327,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,174,0,32,0,0,0,4,5,26,6113,176,0,0,0,0,1,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,5,104,10,0,0,102,0,217,0,0,0,41,7,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,93,31,0,0,0,0,0,0,0,0,83,0,0,195,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,6,0,0,0,0,1,12,187,0,5,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,151,12,4 +281,0,0,30,21,95,166,37,380,35,43,0,0,2,72,2,792,0,20,67,0,117,2,6,0,37,22,0,22,0,8,2,0,20,40,0,115,301,160,0,468,0,0,0,1,0,0,4,0,0,0,0,38,427,0,0,0,0,0,1,0,3,0,12,0,58,0,0,2557,95,3426,0,58,0,0,0,0,0,19,45,0,0,0,1,14,25,265,0,37,40,20,0,7,29,0,697,55,3,0,0,14,21,683,0,52,0,0,2468,0,0,0,0,65,33,0,0,26,0,0,1,0,0,0,20,0,0,0,0,0,0,0,27,0,0,0,14,0,0,0,0,0,7,0,69,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,33,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,20,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,311,0,270,0,0,0,46,76,405,551,311,0,0,0,0,1,0,5,0,0,0,0,0,0,2988,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,376,1860,60,0,0,1850,0,3134,0,6,0,591,689,0,0,0,0,0,0,0,0,0,1477,1,0,0,0,192,0,0,0,0,36,289,134,0,0,125,0,0,0,0,0,10699,0,0,149,4,0,1,7,0,0,0,0,5,0,0,0,2,0,0,0,0,0,34,0,0,0,0,0,0,0,0,1,0,0,101,101,0,0,8,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,99,1,1,1,0,63,0,0,0,0,237,155,369,0,82,9,0,0,0,0,0,309,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,39,0,0,0,0,0,0,0,0,117,0,0,256,0,2,1789,1889,4 +18,0,19,9,6,44,34,13,278,23,16,0,1,1,47,1,899,0,9,14,0,3,1,2,1,0,18,0,12,0,12,0,0,3,21,25,48,112,0,0,173,0,0,0,1,0,0,7,0,0,0,0,11,158,0,0,0,0,0,1,0,0,0,30,0,37,0,0,1154,44,1473,0,24,0,0,0,0,0,24,9,0,0,0,4,2,15,126,0,13,21,3,0,1,0,0,118,0,12,0,0,6,6,1081,0,30,0,0,1515,0,0,0,0,18,0,0,0,0,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,13,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,4,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,412,0,0,0,0,0,0,159,6,102,0,0,0,22,46,84,126,166,0,0,0,0,1,0,0,0,0,0,24,2,0,852,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,8425,126,578,17,0,0,515,0,850,0,0,0,205,228,0,0,0,0,0,0,0,0,0,1286,1,0,0,0,21,0,0,0,0,12,171,29,0,20,0,0,0,0,0,0,9254,0,0,94,0,0,1,0,0,0,0,0,13,0,0,0,5,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,43,0,0,0,0,33,69,202,0,42,0,0,0,0,0,0,140,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,24,0,0,0,0,0,0,0,3,0,0,0,11,0,3,370,132,4 +2,0,0,10,18,24,44,38,303,4,41,0,0,0,4,0,217,0,8,20,0,20,32,1,1,7,3,0,12,0,6,0,0,18,3,630,56,195,575,0,135,0,0,0,1,0,0,3,0,0,0,0,13,404,0,0,0,0,0,1,0,0,0,0,0,5,0,0,1692,24,1495,0,25,0,0,0,0,0,11,51,0,0,0,1,1,7,54,0,38,3,18,0,2,47,0,554,70,4,1,0,4,18,467,0,1,0,0,1267,0,0,0,0,23,0,3,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,23,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,42,15,15,15,0,0,15,148,15,82,0,0,0,19,19,139,401,121,0,0,0,0,1,0,0,0,0,0,1,1,0,856,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,117,21,1085,30,0,0,1127,0,1441,0,1,0,390,76,0,0,0,0,0,0,0,0,0,617,0,0,0,0,71,3,0,0,0,8,155,238,0,0,215,0,0,0,0,0,2646,0,0,32,0,0,1,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,21,1,1,1,0,24,0,0,0,4,571,60,622,0,28,0,0,0,0,0,0,197,22,0,0,0,0,0,0,0,0,0,0,0,32,0,1,6,0,0,0,0,0,0,0,0,3,0,0,34,0,2,750,490,4 +0,0,0,5,0,36,25,0,47,3,24,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12512,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,749,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40310,36,914,0,24,0,0,0,0,0,46,0,0,0,0,0,8,94,6632,0,0,1,0,0,0,0,0,368,25,1,0,0,2,0,836,0,0,92,0,4524,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1496,0,32,0,0,0,13,16,499,2092,1474,0,0,0,0,1,0,3,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,275,5,0,0,308,0,291,0,0,0,146,18,0,0,0,0,0,0,0,0,0,861,1,0,0,0,9,0,0,0,0,1,164,6,0,0,137,0,0,0,0,0,4596,1,0,996,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,208,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2449,22,4 +26,0,0,6,0,46,36,0,51,30,35,0,0,7,8,0,953,0,7,1,0,0,0,8,0,10,12,0,22,0,5,0,0,0,3,6318,46,6,0,0,54,0,6,0,1,0,0,7,0,0,0,0,5,390,0,0,0,0,0,1,0,0,0,0,0,7,0,0,32637,46,1259,0,24,0,0,0,0,0,102,0,0,0,0,0,8,130,6615,0,0,3,0,0,0,0,0,409,25,12,0,0,2,0,1130,0,4,72,0,5044,0,0,0,0,14,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,2153,0,138,0,0,0,18,29,685,1452,2118,0,0,0,0,1,0,8,0,0,0,0,0,0,872,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,110,98,361,6,0,0,398,0,303,0,0,0,217,33,0,0,0,0,0,0,0,0,0,1097,1,0,0,0,9,0,0,0,0,2,151,60,0,0,172,0,0,0,0,0,5063,1,0,1074,36,0,1,1,1,0,0,0,17,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,36,365,0,0,0,4,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,53,0,0,0,0,1,49,223,0,37,12,0,1,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,34,0,0,0,0,0,0,0,0,0,0,0,0,0,7,2239,123,4 +107,0,0,29,11,87,157,27,271,30,38,0,0,2,66,1,556,0,20,43,0,98,2,6,0,33,22,0,18,0,6,3,0,10,38,0,97,301,160,0,384,0,0,0,1,0,0,3,0,0,0,0,33,330,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2464,87,1766,0,50,0,0,0,0,0,22,15,0,0,0,0,11,20,269,0,27,38,10,0,8,37,0,723,70,3,0,0,14,11,582,0,46,0,0,2347,0,0,0,0,44,12,1,0,32,0,0,1,0,0,0,22,0,0,0,0,0,0,0,5,0,0,0,8,0,0,0,0,0,1,0,20,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,28,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,284,0,226,0,0,0,40,70,333,578,291,0,0,0,0,1,0,6,0,0,0,0,0,0,2133,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1431,49,0,0,1489,0,2942,0,6,0,502,368,0,0,0,0,0,0,0,0,0,1111,1,0,0,0,149,0,0,0,0,26,280,149,0,0,155,0,0,0,0,0,10406,0,0,169,3,0,1,5,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,7,1,0,0,0,0,3,19,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,60,0,0,0,0,119,135,326,0,73,9,0,0,0,0,0,314,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,247,0,3,1653,1612,4 +17,0,0,9,0,14,18,0,6,0,6,0,0,0,44,1,51,0,6,2,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,0,14,6,0,0,80,0,0,0,1,0,0,1,0,0,0,0,1,59,0,0,0,0,0,1,0,0,0,0,0,1,0,0,783,14,230,0,1,0,0,0,0,0,55,0,0,0,0,0,1,3,19,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,141,0,0,0,0,290,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,43,0,79,0,0,0,1,4,43,18,64,0,0,0,0,1,0,0,0,0,0,0,0,0,749,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,1,0,10,3,126,16,0,0,114,0,141,0,0,0,69,11,0,0,0,0,0,0,0,0,0,132,1,0,0,0,2,0,0,0,0,1,96,11,0,0,0,0,0,0,0,0,315,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,11,16,26,0,2,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,66,4 +2,0,0,2,1,12,26,1,41,1,3,0,0,0,4,0,80,0,9,1,0,0,0,1,0,0,9,0,6,0,4,0,0,1,2,0,13,54,0,0,10,0,0,0,1,0,0,4,0,0,0,0,3,109,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1477,12,165,0,10,0,0,0,0,0,19,0,0,0,0,0,1,7,171,0,1,2,1,0,1,0,0,68,0,5,0,0,4,1,85,0,1,0,0,1045,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,174,0,81,0,0,0,6,18,39,28,187,0,0,0,0,1,0,0,0,0,0,0,0,0,497,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,111,11,289,3,0,0,353,0,747,0,1,0,169,6,0,0,0,0,0,0,0,0,0,163,1,0,0,0,2,0,0,0,0,4,152,67,0,0,0,0,0,0,0,0,248,0,0,292,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,1,1,1,0,9,0,0,0,0,9,15,169,0,19,0,0,0,0,0,0,63,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,387,142,4 +106,0,0,29,11,92,156,27,266,27,35,0,0,2,62,1,563,0,20,45,0,98,2,6,0,41,22,0,26,0,7,2,0,10,41,0,102,301,160,0,390,0,0,0,1,0,0,3,0,0,0,0,40,322,0,0,0,0,0,1,0,3,0,12,0,48,0,0,2428,92,1772,0,65,0,0,0,0,0,17,15,0,0,0,0,13,22,264,0,27,41,10,0,7,29,0,675,55,2,0,0,14,11,563,0,43,0,0,2285,0,0,0,0,41,12,1,0,30,0,0,1,0,0,0,24,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,26,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,5,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,273,0,230,0,0,0,47,83,331,530,287,0,0,0,0,1,0,6,0,0,0,0,0,0,2011,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,683,335,1455,49,0,0,1493,0,2927,0,6,0,500,139,0,0,0,0,0,0,0,0,0,1105,1,0,0,0,151,0,0,0,0,35,282,132,0,0,125,0,0,0,0,0,10416,0,0,131,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,8,1,0,0,0,0,3,15,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,96,1,1,1,0,62,0,0,0,0,113,143,317,0,89,9,0,0,0,0,0,308,10,0,0,0,0,0,0,1,0,0,0,0,11,0,6,31,0,0,0,0,0,0,0,0,117,0,0,221,0,3,1599,1801,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,407,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,126,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,46,3,0,0,47,0,141,0,0,0,5,5,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +4,0,0,5,2,15,51,2,52,8,5,0,0,0,14,0,112,0,11,1,0,0,0,1,0,5,3,0,1,0,2,0,0,2,4,0,17,102,0,0,34,0,0,0,0,0,0,0,0,0,0,0,6,68,0,0,0,0,0,1,0,0,0,4,0,11,0,0,166,15,173,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,34,0,2,4,2,0,2,0,0,94,0,0,0,0,6,2,64,0,10,0,0,186,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,37,0,34,0,0,0,7,14,41,135,54,0,0,0,0,0,0,0,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,37,339,8,0,0,362,0,694,0,2,0,89,154,0,0,0,0,0,0,0,0,0,245,0,0,0,0,2,0,0,0,0,8,127,2,0,0,0,0,1,0,0,0,226,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,14,1,1,1,0,3,0,0,0,0,17,21,6,0,11,0,0,0,0,0,0,69,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,119,122,4 +5,0,0,11,2,39,9,8,55,15,11,0,0,2,24,2,70,0,7,9,0,2,2,5,4,17,18,0,14,0,2,0,0,2,9,0,41,140,22,0,194,0,0,0,0,0,0,0,0,0,0,0,11,146,0,0,0,0,0,1,0,0,0,0,0,26,0,0,1130,39,412,0,18,0,0,0,0,0,4,6,0,0,0,0,8,14,99,0,8,9,2,0,2,16,0,269,30,0,0,0,2,2,303,0,16,0,0,1422,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,10,10,10,0,0,0,101,0,51,0,0,0,16,69,180,247,104,0,0,0,0,0,0,2,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,36,41,316,14,0,0,193,0,427,0,0,0,53,28,0,0,0,0,0,0,0,0,0,180,0,0,0,0,22,0,0,0,0,7,125,29,0,0,50,0,0,0,0,0,5562,0,0,1,3,0,1,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,41,0,0,0,0,17,50,9,0,42,9,0,0,0,0,0,105,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,19,0,0,0,0,0,0,0,0,0,0,0,3,0,0,181,44,4 +0,0,0,5,0,37,24,0,47,3,23,0,0,7,4,0,767,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12509,37,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,680,0,0,0,0,0,1,0,0,0,0,0,2,0,0,38832,37,929,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6329,0,0,1,0,0,0,0,0,359,25,2,0,0,2,0,855,0,0,87,0,4671,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1317,0,32,0,0,0,12,15,501,2063,1294,0,0,0,0,1,0,3,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,283,5,0,0,310,0,296,0,0,0,146,13,0,0,0,0,0,0,0,0,0,878,1,0,0,0,9,0,0,0,0,1,165,7,0,0,130,0,0,0,0,0,4623,1,0,1016,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,58,0,0,0,0,1,38,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2476,24,4 +35,0,0,0,1,62,16,4,43,0,6,0,4,0,3,0,99,0,7,8,0,1,1,5,0,18,9,0,5,0,1,0,0,1,26,0,63,24,0,0,248,0,2,0,1,0,0,2,0,0,0,0,11,151,0,0,0,0,0,1,0,1,0,5,0,3,0,0,1229,62,298,0,14,0,0,0,0,0,10,3,0,0,0,0,10,18,232,0,4,26,1,0,3,8,0,178,0,1,0,0,12,1,215,0,0,0,0,1342,0,0,0,0,12,5,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,3,0,6,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,32,10,10,10,0,0,0,197,0,83,0,0,0,10,27,263,170,203,0,0,0,0,1,0,5,0,0,0,0,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,49,72,352,1,0,0,320,0,585,0,0,0,146,26,0,0,0,0,0,0,0,0,0,178,1,0,0,0,15,0,0,0,0,11,161,42,0,0,0,0,0,0,0,0,233577,0,0,10,3,0,1,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,5,1,4,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,1,1,1,0,3,0,0,0,0,9,89,78,0,24,9,0,0,0,0,0,154,6,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,181,887,4 +26,0,0,1,1,54,8,4,31,2,6,0,3,0,5,0,36,0,7,10,0,1,1,5,0,19,3,0,6,0,1,1,0,1,21,0,55,12,0,0,136,0,0,0,1,0,0,0,0,0,0,0,13,102,0,0,0,0,0,1,0,1,0,0,0,3,0,0,807,54,216,0,17,0,0,0,0,0,6,3,0,0,0,0,12,17,129,0,4,21,1,0,3,8,0,189,15,0,0,0,6,1,119,0,2,0,0,9403,0,0,0,0,7,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,1,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,122,0,81,0,0,0,13,23,217,157,113,0,0,0,0,1,0,3,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,52,250,2,0,0,219,0,371,0,0,0,91,16,0,0,0,0,0,0,0,0,0,96,0,0,0,0,17,0,0,0,0,12,145,19,0,0,30,0,0,0,0,0,126,0,0,2,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,9,0,0,0,0,9,76,37,0,21,9,0,0,0,0,0,127,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,145,781,4 +7,0,0,0,0,36,9,0,17,1,2,0,1,0,3,0,72,0,7,4,0,0,0,6,0,8,0,0,2,0,1,0,0,0,8,0,36,6,0,0,154,0,2,0,1,0,0,2,0,0,0,0,1,76,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1832,36,109,0,1,0,0,0,0,0,11,0,0,0,0,0,9,18,669,0,0,8,0,0,0,8,0,136,0,4,0,0,2,0,172,0,1,0,0,1264,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,153,0,62,0,0,0,0,3,248,116,168,0,0,0,0,1,0,3,0,0,0,0,0,0,390,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,17,11,204,0,0,0,155,0,357,0,0,0,52,17,0,0,0,0,0,0,0,0,0,111,1,0,0,0,10,0,0,0,0,0,118,34,0,0,0,0,0,0,0,0,6768,0,0,735,3,0,1,3,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,3,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,89,1,1,1,0,0,0,0,0,0,1,44,40,0,2,9,0,0,0,0,0,61,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,357,325,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,15,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,115,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1061,28,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,181,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,442,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,7,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,140,0,49,0,0,0,1,4,182,14,138,0,0,0,0,1,0,3,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,2,1,5,0,0,0,0,1,0,32,10,129,4,0,0,153,0,309,0,0,0,44,12,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,110,26,0,0,0,0,0,0,0,0,100,0,0,126,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,94,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,187,54,4 +2,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,58,0,0,0,0,0,1,0,0,0,0,0,1,0,0,7023,10,41,0,1,0,0,0,0,0,8,0,0,0,0,0,1,5,1912,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,13,0,0,0,0,131,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,815,0,33,0,0,0,0,3,26,8,825,0,0,0,0,1,0,0,0,0,0,0,0,0,1989,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,10,3,79,2,0,0,94,0,250,0,0,0,29,3,0,0,0,0,0,0,4,0,0,42,1,0,0,0,2,0,0,0,0,0,92,21,0,0,0,0,0,0,0,0,994,0,0,2270,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,154,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,831,658,4 +0,0,0,6,0,40,56,0,98,2,39,0,0,8,3,0,866,0,6,1,0,0,0,8,0,10,0,0,44,0,1,0,0,0,1,12874,40,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,571,0,0,0,0,0,1,0,0,0,0,0,2,0,0,104457,40,1199,0,42,0,0,0,0,0,109,0,0,0,0,0,8,313,12522,0,0,1,0,0,0,0,0,570,30,2,0,0,2,0,1052,0,0,211,0,8121,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,5988,0,37,0,0,0,26,29,1433,6939,5918,0,0,0,0,1,0,3,0,0,0,0,0,0,7348,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,25,345,6,0,0,383,0,353,0,0,0,207,42,0,0,0,0,0,0,0,0,0,1076,1,0,0,0,9,0,0,0,0,1,160,72,0,0,291,0,0,0,0,0,5872,1,0,9786,53,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,53,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,119,0,0,0,0,1,41,285,0,43,12,0,1,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3374,236,4 +0,0,0,0,0,1,0,1,14,0,1,0,0,0,1,0,223,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,219,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,2,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,3,0,0,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,1,45,4 +120,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,556,0,20,43,0,99,2,7,0,33,22,0,18,0,6,3,0,10,38,0,99,301,160,0,385,0,0,0,1,0,0,3,0,0,0,0,34,342,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2553,89,1767,0,50,0,0,0,0,0,22,15,0,0,0,0,13,22,291,0,27,38,10,0,8,37,0,731,70,3,0,0,14,11,584,0,46,0,0,2460,0,0,0,0,47,15,1,0,29,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,32,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,291,0,226,0,0,0,42,73,333,589,303,0,0,0,0,1,0,6,0,0,0,0,0,0,2148,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1449,49,0,0,1494,0,2952,0,6,0,501,183,0,0,0,0,0,0,0,0,0,1111,1,0,0,0,151,0,0,0,0,29,282,148,0,0,155,0,0,0,0,0,10417,0,0,171,4,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,10,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,62,0,0,0,0,115,137,322,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,153,0,2,1599,1618,4 +27,0,0,0,1,49,15,4,53,3,10,0,3,0,6,6,49,0,8,6,0,2,0,5,0,10,9,0,6,0,3,1,0,1,15,0,50,15,0,0,138,0,0,0,1,0,0,0,0,0,0,0,6,137,0,0,0,0,0,1,0,0,0,0,0,3,0,0,751,49,242,0,11,0,0,0,0,0,3,3,0,0,0,0,8,12,73,0,4,15,1,0,2,26,0,311,30,0,0,0,6,1,232,0,2,0,0,827,0,0,0,0,7,2,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,10,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,10,10,10,0,0,0,54,0,65,0,0,0,9,20,212,1478,63,0,0,0,0,1,0,3,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,53,217,3,0,0,239,0,534,0,0,0,99,1265,0,0,0,0,0,0,0,0,0,150,0,0,0,0,13,0,0,0,0,5,136,85,0,0,66,0,0,0,0,0,3431,0,0,4,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,13,0,0,0,0,9,65,71,0,21,8,0,0,0,0,0,103,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,185,164,4 +69,0,0,1,1,53,25,4,115,5,22,0,4,0,9,0,30,0,7,5,0,1,1,6,0,25,0,0,5,0,3,0,0,1,17,0,54,15,0,0,476,0,0,0,1,0,0,0,0,0,0,0,20,104,0,0,0,0,0,1,0,1,0,0,0,24,0,0,1272,53,342,0,23,0,0,0,0,0,16,3,0,0,0,0,8,13,268,0,4,17,1,0,4,88,0,790,15,0,0,0,8,1,509,0,6,0,0,3580,0,0,0,0,33,22,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,29,10,10,10,0,0,0,205,0,112,0,0,0,21,43,221,769,203,0,0,0,0,1,0,4,0,0,0,0,0,0,751,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,90,264,3,0,0,242,0,313,0,0,0,102,14,0,0,0,0,0,0,0,0,0,212,0,0,0,0,13,0,0,0,0,19,138,230,0,0,30,0,0,0,0,0,723,0,0,18,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,31,0,0,0,0,9,71,41,0,24,9,0,0,0,0,0,326,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,273,1207,4 +31,0,0,0,1,59,16,4,40,0,6,0,4,0,3,0,93,0,7,6,0,1,1,7,0,10,0,0,4,0,1,0,0,1,27,0,60,24,0,0,254,0,2,0,1,0,0,2,0,0,0,0,3,131,0,0,0,0,0,1,0,1,0,5,0,3,0,0,1251,59,272,0,5,0,0,0,0,0,10,3,0,0,0,0,10,18,251,0,4,27,1,0,3,8,0,161,0,1,0,0,12,1,179,0,0,0,0,993,0,0,0,0,7,5,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,3,0,6,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,26,10,10,10,0,0,0,193,0,83,0,0,0,2,5,260,148,211,0,0,0,0,1,0,5,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,49,72,337,1,0,0,311,0,571,0,0,0,149,33,0,0,0,0,0,0,0,0,0,169,1,0,0,0,15,0,0,0,0,3,158,42,0,0,0,0,0,0,0,0,233372,0,0,14,3,0,1,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,1,6,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,95,1,1,1,0,2,0,0,0,0,9,87,79,0,6,9,0,0,0,0,0,154,6,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,193,660,4 +375,0,0,36,29,112,250,69,611,47,97,0,0,2,91,1,784,0,24,85,0,123,2,6,0,61,22,0,35,0,8,3,0,28,50,0,134,400,159,0,1038,0,0,0,1,0,0,5,1,0,0,0,62,447,0,0,0,0,0,1,0,3,0,12,0,107,0,0,4632,112,4598,0,97,0,0,0,0,0,110,63,0,0,0,0,14,28,639,0,69,50,28,0,11,211,0,2220,95,10,1,0,18,29,1631,0,67,0,0,3905,0,0,0,0,100,84,0,0,38,0,0,1,0,0,0,21,0,0,0,0,0,0,0,27,0,0,0,18,0,0,0,2,0,7,0,74,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,3,0,0,0,0,0,1,15,0,0,0,0,0,0,0,18,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,109,10,10,10,0,0,0,560,0,413,0,0,0,71,118,430,1990,585,0,0,0,0,1,0,5,0,0,0,0,0,0,5224,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,887,419,2159,76,0,0,2314,0,4185,0,8,0,785,482,0,0,0,0,0,0,0,0,0,1860,1,0,2,0,216,0,0,0,0,59,346,550,0,0,211,0,0,0,0,0,10830,0,0,169,3,0,1,9,0,0,0,0,13,0,0,0,4,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,67,67,0,0,17,1,0,0,0,0,3,34,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,125,1,1,1,0,114,0,0,0,0,235,184,223,0,120,9,0,0,0,0,0,865,32,0,0,0,0,0,0,1,0,0,0,0,23,0,4,55,0,0,0,0,0,0,0,0,117,0,0,264,0,6,2796,2495,4 +0,0,0,8,0,36,51,0,61,8,46,0,0,6,4,0,676,0,6,1,0,0,0,8,0,10,0,0,34,0,1,0,0,0,1,4055,36,6,0,0,50,0,2,0,1,0,0,2,0,0,0,0,1,496,0,0,0,0,0,1,0,0,0,0,0,4,0,0,62118,36,956,0,32,0,0,0,0,0,82,0,0,0,0,0,8,218,11246,0,0,1,0,0,0,0,0,517,20,3,0,0,2,0,808,0,0,186,0,9360,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,3381,0,42,0,0,0,19,22,1047,3491,3332,0,0,0,0,1,0,3,0,0,0,0,0,0,1091,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,40,302,8,0,0,373,0,391,0,0,0,204,34,0,0,0,0,0,0,0,0,0,850,1,0,0,0,9,0,0,0,0,1,134,70,0,0,287,0,0,0,0,0,6262,1,0,1678,39,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,39,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,88,0,0,0,0,1,37,245,0,33,12,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3932,346,4 +18,0,0,10,0,20,6,0,28,1,7,0,0,0,7,0,22,0,7,1,0,0,0,1,0,0,0,0,6,0,13,0,0,0,6,0,20,68,0,0,44,0,0,0,1,0,0,2,0,0,0,0,12,96,2,0,0,0,0,1,0,0,0,2,0,9,0,0,244536,20,91,0,19,0,0,0,0,0,11,0,0,0,0,0,1,4,121296,0,0,6,0,0,1,11,0,116,15,3,0,0,2,0,103,0,3,0,0,424,0,0,0,0,9,0,4,0,3,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,11,0,0,0,0,0,0,0,0,3,5,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,121205,0,69,0,0,0,24,16,55,213,121234,0,0,0,0,1,0,0,0,0,0,0,0,0,891,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,17,9,145,14,0,0,216,0,485,0,0,0,144,30,0,0,0,0,0,0,0,0,0,77,1,0,0,0,2,0,0,0,0,3,104,130,0,0,31,0,0,0,0,0,618,0,0,673,0,0,1,6,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,30,0,0,0,8,1,26,267,0,19,0,0,0,0,0,0,73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,6,0,0,0,0,0,0,0,0,0,0,0,0,2,432,186,4 +16,0,0,13,0,38,4,0,18,7,4,0,0,0,18,1,92,0,7,2,0,0,0,2,0,0,0,0,7,0,3,0,0,0,12,0,38,6,3,0,76,0,0,0,1,0,0,1,0,0,0,0,3,156,0,0,0,0,0,1,0,0,0,11,0,17,0,0,1000,38,142,0,10,0,0,0,0,0,2,0,0,0,0,0,2,4,19,0,0,12,0,0,0,0,0,30,0,0,0,0,2,0,85,0,13,0,0,1425,0,0,0,0,114,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120110,0,0,0,0,0,0,0,10,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,8,0,0,0,0,0,0,73,0,110,0,0,0,6,10,83,131,63,0,0,0,0,1,0,0,0,0,0,0,0,0,174239,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,34,456,16,0,0,153,0,382,0,0,0,58,55,0,0,0,0,0,0,0,0,0,144,1,0,0,0,4,0,0,0,0,4,128,12,0,0,0,0,0,0,0,2,335,0,0,9,0,0,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,26,26,0,0,7,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,43,1,1,1,0,12,0,0,0,0,13,50,41,0,10,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,142,4 +1,0,0,2,1,13,26,1,41,1,3,0,0,0,4,0,80,0,9,1,0,0,0,1,0,0,9,0,6,0,4,0,0,1,2,0,14,54,0,0,10,0,0,0,1,0,0,4,0,0,0,0,3,110,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1772,13,165,0,10,0,0,0,0,0,19,0,0,0,0,0,1,7,190,0,1,2,1,0,1,0,0,68,0,4,0,0,4,1,85,0,1,0,0,337,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,198,0,80,0,0,0,6,18,43,28,211,0,0,0,0,1,0,0,0,0,0,0,0,0,597,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,111,11,292,3,0,0,354,0,750,0,1,0,167,8,0,0,0,0,0,0,0,0,0,163,1,0,0,0,2,0,0,0,0,4,151,67,0,0,0,0,0,0,0,0,268,0,0,386,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,1,1,1,0,9,0,0,0,0,9,16,169,0,19,0,0,0,0,0,0,63,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,406,143,4 +0,0,0,10,0,18,4,0,25,0,7,0,0,0,4,0,19,0,7,1,0,0,0,1,0,0,0,0,6,0,9,0,0,0,5,0,18,6,0,0,35,0,0,0,1,0,0,1,0,0,0,0,8,76,1,0,0,0,0,1,0,0,0,2,0,7,0,0,17793,18,69,0,15,0,0,0,0,0,6,0,0,0,0,0,1,3,3489,0,0,5,0,0,1,9,0,112,15,1,0,0,2,0,68,0,1,0,0,555,0,0,0,0,2,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2496,0,54,0,0,0,16,14,42,150,2513,0,0,0,0,1,0,0,0,0,0,0,0,0,4590,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,6,117,14,0,0,99,0,236,0,0,0,30,8,0,0,0,0,0,0,0,0,0,66,1,0,0,0,2,0,0,0,0,6,102,20,0,0,31,0,0,0,0,0,1613,0,0,4895,0,0,1,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,22,0,0,0,10,1,23,12,0,15,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,0,0,0,0,0,0,0,0,0,0,0,0,1,2344,61,4 +27,0,0,6,0,37,4,0,23,7,3,0,0,0,18,1,104,0,7,3,0,0,0,1,0,2,0,0,6,0,3,0,0,0,13,0,37,6,3,0,61,0,0,0,1,0,0,1,0,0,0,0,5,174,0,0,0,0,0,1,0,0,0,11,0,17,0,0,1117,37,158,0,11,0,0,0,0,0,6,0,0,0,0,0,2,4,39,0,0,13,0,0,0,0,0,34,0,2,0,0,2,0,87,0,13,0,0,1179,0,0,0,0,114,2,0,0,0,0,1,1,0,0,0,5,0,0,1,0,0,0,0,2,0,0,0,130076,0,0,0,0,0,0,0,10,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,2,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8,0,0,0,0,0,0,108,0,111,0,0,0,8,12,85,139,78,0,0,0,0,1,0,0,0,0,0,0,0,0,180784,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,10,22,459,6,0,0,176,0,417,0,0,0,65,39,0,0,0,0,0,0,0,0,0,160,1,0,0,0,4,0,0,0,0,8,127,10,0,0,0,0,0,0,0,2,355,0,0,34,0,0,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,28,28,0,0,2,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40,1,1,1,0,11,0,0,0,0,19,50,156,0,11,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,141,155,4 +58,0,0,1,1,56,12,4,56,2,13,0,3,0,5,0,37,0,7,10,0,1,1,6,0,16,3,0,7,0,4,1,0,1,22,0,57,12,0,0,181,0,0,0,1,0,0,0,0,0,0,0,13,82,0,0,0,0,0,1,0,1,0,0,0,7,0,0,978,56,258,0,18,0,0,0,0,0,10,3,0,0,0,0,13,18,145,0,4,22,1,0,4,31,0,381,30,0,0,0,6,1,231,0,2,0,0,3953,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,141,0,92,0,0,0,16,23,221,327,130,0,0,0,0,1,0,3,0,0,0,0,0,0,496,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,279,2,0,0,233,0,418,0,0,0,102,36,0,0,0,0,0,0,0,0,0,133,0,0,0,0,18,0,0,0,0,12,147,72,0,0,60,0,0,0,0,0,707,0,0,7,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,18,0,0,0,0,9,79,38,0,22,9,0,0,0,0,0,190,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,160,800,4 +1,0,0,2,1,12,26,1,41,1,3,0,0,0,4,0,80,0,9,1,0,0,0,1,0,0,9,0,6,0,4,0,0,1,2,0,13,54,0,0,10,0,0,0,1,0,0,4,0,0,0,0,3,109,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3539,12,164,0,10,0,0,0,0,0,18,0,0,0,0,0,1,7,356,0,1,2,1,0,1,0,0,68,0,4,0,0,4,1,85,0,1,0,0,261,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,348,0,79,0,0,0,6,18,39,28,362,0,0,0,0,1,0,0,0,0,0,0,0,0,1114,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,113,11,275,3,0,0,351,0,820,0,1,0,168,13,0,0,0,0,0,0,0,0,0,163,1,0,0,0,2,0,0,0,0,4,151,67,0,0,0,0,0,0,0,0,434,0,0,994,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,1,1,1,0,9,0,0,0,0,9,15,169,0,19,0,0,0,0,0,0,63,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,610,144,4 +1,0,0,3,0,28,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,110,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1195,28,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,185,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,482,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,143,0,48,0,0,0,1,4,182,14,141,0,0,0,0,1,0,3,0,0,0,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,2,1,9,0,0,0,0,1,0,32,10,132,3,0,0,165,0,308,0,0,0,59,6,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,110,42,0,0,0,0,0,0,0,0,96,0,0,114,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,174,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,179,53,4 +153,0,0,29,10,84,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,94,301,0,0,691,0,0,0,1,0,0,2,0,0,0,0,28,369,0,0,0,0,0,1,0,3,0,12,0,83,0,0,2894,84,1519,0,39,0,0,0,0,0,71,12,0,0,0,0,13,22,395,0,22,33,9,0,10,198,0,1932,100,3,0,0,14,10,1304,0,46,0,0,2578,0,0,0,0,51,42,0,0,31,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,330,0,237,0,0,0,36,76,296,1650,359,0,0,0,0,1,0,5,0,0,0,0,0,0,2655,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1455,48,0,0,1554,0,2904,0,6,0,563,49,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,278,551,0,0,215,0,0,0,0,0,9924,0,0,186,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,77,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1601,1656,4 +212,0,0,0,3,83,57,12,339,3,108,1,2,0,5,0,48,0,7,14,0,3,3,2,0,6,3,0,77,0,301,1,0,3,37,0,86,12,0,0,511,0,0,0,0,0,0,0,0,0,0,0,307,115,0,0,0,0,0,1,0,0,0,0,0,24,0,0,6048,83,1720,0,385,0,0,0,0,0,294,9,0,0,0,0,9,9,251,0,12,37,3,0,4,299,0,3639,410,0,0,0,6,3,1700,0,2,0,0,2898,0,0,0,0,84,91,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,76,0,0,0,76,0,0,0,0,0,1,0,12,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,74,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,226,0,195,0,0,0,608,612,159,2477,246,0,0,0,0,0,0,0,0,0,0,0,0,0,4082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,665,6,0,0,720,0,548,0,0,0,495,99,0,0,0,0,0,0,0,0,0,567,0,0,0,0,22,0,0,0,0,306,173,584,0,0,916,0,0,0,0,0,1323,0,0,301,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,1,0,0,0,0,0,601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,83,1,1,1,0,682,0,0,0,592,25,123,37,0,388,0,0,0,0,0,0,641,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1282,2055,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,2,0,0,407,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,132,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,44,3,0,0,47,0,152,0,0,0,5,12,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,14,4 +0,0,0,5,0,36,25,0,50,3,24,0,0,7,4,0,857,0,6,2,0,0,0,7,0,10,0,0,25,0,1,0,0,0,1,12469,36,6,0,0,44,0,0,0,1,0,0,1,0,0,0,0,1,576,0,0,0,0,0,1,0,0,0,0,0,2,0,0,27871,36,1025,0,23,0,0,0,0,0,46,0,0,0,0,0,8,91,3608,0,0,1,0,0,0,0,0,363,25,1,0,0,2,0,945,0,0,86,0,3260,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,12,12,0,0,0,1232,0,28,0,0,0,12,15,495,1271,1210,0,0,0,0,1,0,3,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,278,5,0,0,310,0,293,0,0,0,151,15,0,0,0,0,0,0,0,0,0,973,1,0,0,0,9,0,0,0,0,1,160,6,0,0,134,0,0,0,0,0,3218,1,0,282,22,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1163,25,4 +0,0,0,0,0,8,39,0,47,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,149,8,128,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,43,0,324,15,0,0,0,4,0,221,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,199,55,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,85,0,58,0,0,0,51,8,0,0,0,0,0,0,0,0,0,111,0,0,0,0,2,0,0,0,0,0,91,86,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,102,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,4,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,658,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,654,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,9,0,0,0,0,0,0,0,0,0,680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,2,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,9,0,0,1,99,4 +29,0,0,9,5,17,50,14,90,6,10,0,0,0,12,1,216,0,11,8,0,3,3,1,0,3,18,0,8,0,1,5,0,5,3,0,22,114,0,0,55,0,1,0,1,0,0,1,0,0,0,0,8,90,0,0,0,0,0,1,0,0,0,1,0,9,0,0,551,17,509,0,17,0,0,0,0,0,6,9,0,0,0,0,2,3,49,0,14,3,5,0,2,0,0,101,0,0,0,0,6,5,191,0,8,0,0,1067,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,7,0,3,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,26,0,0,0,0,0,0,62,0,49,0,0,0,13,35,72,53,69,0,0,0,0,1,0,0,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,221,60,466,17,0,0,509,0,709,0,2,0,152,27,0,0,0,0,0,0,0,0,0,390,1,0,0,0,15,0,0,0,0,6,136,28,0,0,0,0,0,0,0,0,1162,0,0,39,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,4,1,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,21,1,1,1,0,39,0,0,0,0,57,25,49,0,35,0,0,0,0,0,0,86,18,0,0,0,0,0,0,0,0,0,0,0,5,0,1,6,0,0,0,0,0,0,0,0,0,0,0,8,0,0,236,97,4 +382,0,0,36,28,112,250,64,606,47,97,0,0,2,90,0,562,0,24,82,0,122,2,6,0,61,22,0,33,0,8,3,0,27,50,0,134,400,160,0,1038,0,0,0,1,0,0,5,1,0,0,0,62,469,0,0,0,0,0,1,0,3,0,12,0,107,0,0,4465,112,3891,0,93,0,0,0,0,0,110,60,0,0,0,0,14,28,651,0,64,50,27,0,11,211,0,2217,95,10,0,0,18,28,1557,0,67,0,0,4562,0,0,0,0,99,86,0,0,36,0,0,1,0,0,0,22,0,0,0,0,0,0,0,27,0,0,0,17,0,0,0,2,0,7,0,78,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,4,0,0,0,0,0,1,15,0,0,0,0,0,0,0,19,7,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,105,10,10,10,0,0,0,529,0,340,0,0,0,71,118,371,1983,584,0,0,0,0,1,0,5,0,0,0,0,0,0,5069,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,885,419,2182,75,0,0,2318,0,4182,0,8,0,789,178,0,0,0,0,0,0,0,0,0,1631,1,0,2,0,212,0,0,0,0,55,350,550,0,0,211,0,0,0,0,0,10397,0,0,177,3,0,1,9,0,0,0,0,13,0,0,0,4,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,1,0,0,0,0,3,34,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,117,1,1,1,0,112,0,0,0,0,177,184,223,0,118,9,0,0,0,0,0,863,32,0,0,0,0,0,0,1,0,0,0,0,23,0,4,55,0,0,0,0,0,0,0,0,117,0,0,192,0,6,2680,2455,4 +1,0,0,3,0,27,5,0,20,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,27,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,89,0,0,0,0,0,1,0,0,0,0,0,2,0,0,993,27,60,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,187,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,403,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,132,0,46,0,0,0,1,4,182,14,130,0,0,0,0,1,0,3,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,124,4,0,0,140,0,287,0,0,0,35,4,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,109,17,0,0,0,0,0,0,0,0,105,0,0,121,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,1,0,0,0,0,1,29,66,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,194,54,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,134,8,41,0,1,0,0,0,0,0,10,0,0,0,0,0,1,1,44,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,35,0,0,0,0,3,21,4,54,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,47,0,32,0,0,0,13,4,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,4,4 +191,0,0,0,0,78,41,0,192,13,40,0,2,0,16,35,38,0,7,2,0,0,0,1,0,8,9,0,7,0,5,1,0,0,55,0,78,15,3413,0,550,0,0,0,0,0,0,0,0,0,0,0,12,201,0,0,0,0,0,1,0,0,0,0,0,47,0,0,3776,78,637,0,21,0,0,0,0,0,139,0,0,0,0,0,2,2,642,0,0,55,0,0,3,178,0,1384,15,0,0,0,6,0,1080,0,12,0,0,3468,0,0,0,0,18,76,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,8,0,0,0,0,0,1,0,48,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,20,0,0,0,0,0,0,489,0,356,0,0,0,17,30,128,129800,517,0,0,0,0,0,0,0,0,0,0,0,0,0,2576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,122,332,2,0,0,441,0,388,0,0,0,344,124363,0,0,0,0,0,0,0,0,0,371,0,0,0,0,3,0,0,0,0,12,169,461,0,0,30,0,0,0,2,0,1021,0,0,6,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,76,1,1,1,0,16,0,0,0,0,1,133,55,0,30,0,0,0,0,0,0,639,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1277,505,4 +0,0,0,0,0,1,0,1,20,0,1,0,0,0,1,0,659,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,655,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,9,0,0,0,0,0,0,0,0,0,682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,2,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,9,0,0,1,99,4 +153,0,0,29,10,83,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,93,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,370,0,0,0,0,0,1,0,3,0,11,0,83,0,0,3063,83,1518,0,39,0,0,0,0,0,70,12,0,0,0,0,13,22,397,0,22,33,9,0,10,198,0,1932,100,3,0,0,14,10,1304,0,46,0,0,2335,0,0,0,0,53,41,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,327,0,230,0,0,0,36,76,292,1651,357,0,0,0,0,1,0,5,0,0,0,0,0,0,2759,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1423,48,0,0,1551,0,2956,0,6,0,564,54,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,278,551,0,0,215,0,0,0,0,0,9926,0,0,181,3,0,1,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,90,1,1,1,0,77,0,0,0,0,81,126,309,0,63,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1600,1650,4 +6,0,0,10,0,65,181,0,121,6,15,0,0,2,34,3,66,0,63,4,0,0,0,9,0,9,23,0,12,0,12,4,0,0,24,0,65,206,0,0,311,0,0,0,1,0,0,7,1,0,0,0,16,230,0,0,0,0,0,1,0,0,0,5,0,16,0,0,8861,65,563,0,26,0,0,0,0,0,36,0,0,0,0,1,12,27,836,0,0,24,0,0,1,94,0,858,60,19,0,0,2,0,744,0,10,0,0,4039,0,0,0,0,4,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,790,0,179,0,0,0,30,53,290,1370,769,0,0,0,0,1,0,14,0,0,0,0,0,0,2976,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,26,466,11,0,0,661,0,1444,0,0,0,506,112,0,0,0,0,0,0,0,0,0,485,1,0,8,0,13,0,0,0,0,15,173,399,0,0,293,0,0,0,0,0,1436,0,0,2032,3,0,1,1,1,0,0,0,26,0,0,0,2,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,3,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,120,1,1,1,0,35,0,0,0,0,1,89,659,0,51,9,0,0,0,0,0,301,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1224,1494,4 +3,0,0,6,1,46,6,0,54,2,7,0,0,6,7,0,697,0,6,2,0,0,0,8,0,11,0,0,54,0,1,0,0,0,9,898,46,28,0,0,48,0,0,0,1,0,0,13,1,0,0,0,1,287,0,0,0,0,0,1,0,0,0,0,0,5,0,0,10112,46,887,0,51,0,0,0,0,0,48,0,0,0,0,4,9,36,1614,0,0,9,0,0,0,0,0,262,20,25,0,0,2,1,813,0,2,2,0,1539,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,895,0,198,0,0,0,0,3,275,373,854,0,0,0,0,1,0,3,0,0,0,0,0,0,1712,0,0,0,0,0,0,0,0,0,0,0,0,13,1,2,0,0,0,0,1,0,84,23,278,7,0,0,379,0,502,0,0,0,214,57,0,0,0,0,0,0,0,0,0,783,1,0,4,0,10,0,0,0,0,1,139,115,0,0,6,0,1,0,0,0,2226,1,0,1260,8,0,1,1,0,0,0,0,36,0,0,0,5,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,50,0,0,0,0,1,55,574,0,52,14,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1192,799,4 +96,0,0,24,4,63,81,7,125,3,16,0,0,2,20,0,187,0,12,6,0,1,1,5,0,23,9,0,9,0,6,0,0,4,23,0,67,165,0,0,218,0,0,0,1,0,0,7,0,0,0,0,21,266,0,0,0,0,0,1,0,1,0,0,0,17,0,0,4932,63,487,0,28,0,0,0,0,0,30,3,0,0,0,0,8,21,972,0,7,23,4,0,4,11,0,346,20,12,0,0,8,4,207,0,11,0,0,1529,0,0,0,0,38,24,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,31,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,713,0,237,0,0,0,25,56,242,247,680,0,0,0,0,1,0,4,0,0,0,0,0,0,1864,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,70,749,33,0,0,817,0,1508,0,3,0,288,30,0,0,0,0,0,0,2,0,0,443,1,0,0,0,13,0,0,0,0,21,193,94,0,0,34,0,0,0,0,0,1193,0,0,866,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,65,1,1,1,0,45,0,0,0,0,33,90,361,0,38,9,0,0,0,0,0,254,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,7,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1300,1535,4 +0,0,0,0,0,8,4,0,12,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,55,8,36,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,10,0,0,0,0,0,2,8,0,79,15,0,0,0,4,0,46,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,16,0,0,0,0,3,21,58,27,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,39,0,25,0,0,0,5,4,0,0,0,0,0,0,0,0,0,41,0,0,0,0,2,0,0,0,0,0,91,16,0,0,30,0,0,0,0,0,23,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,4 +18,0,0,10,0,19,6,0,29,1,7,0,0,0,7,1,66,0,7,1,0,0,0,1,0,0,0,0,9,0,15,0,0,0,6,0,19,68,0,0,44,0,0,0,1,0,0,2,0,0,0,0,14,112,2,0,0,0,0,1,0,0,0,2,0,9,0,0,255680,19,141,0,24,0,0,0,0,0,11,0,0,0,0,0,1,4,125440,0,0,6,0,0,1,11,0,131,15,3,0,0,2,0,122,0,3,0,0,1113,0,0,0,0,9,0,4,0,3,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,11,0,0,0,0,0,0,0,0,3,5,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,125215,0,81,0,0,0,28,20,64,217,125235,0,0,0,0,1,0,0,0,0,0,0,0,0,1667,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,17,9,141,14,0,0,213,0,500,0,0,0,144,21,0,0,0,0,0,0,0,0,0,123,1,0,0,0,2,0,0,0,0,6,103,130,0,0,31,0,0,0,0,0,943,0,0,1561,0,0,1,5,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,1,0,0,0,0,0,0,22,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,37,0,0,0,14,15,25,267,0,24,0,0,0,0,0,0,73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,6,0,0,0,0,0,0,0,0,0,0,0,0,2,794,164,4 +0,0,0,5,0,24,3,0,18,2,3,1,0,0,9,0,16,0,7,1,0,0,0,3,0,0,0,0,29,0,2,0,0,0,4,0,24,13,0,0,26,0,0,0,1,0,0,16,0,0,0,0,0,191,0,0,0,0,0,1,0,0,0,0,0,7,0,0,39804,24,118,0,31,0,0,0,0,0,33,0,0,0,0,6,3,25,1770,0,0,4,0,0,0,0,0,58,0,11,0,0,2,0,63,0,5,0,0,36468,0,0,0,0,242,0,2,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1363,0,5077,0,0,0,0,3,60,37,1382,0,0,0,0,1,0,0,0,0,0,0,0,0,1087,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,8,21,19644,7,0,0,295,0,463,0,0,0,199,1643,0,0,0,0,0,0,0,0,0,57,1,0,0,0,4,0,0,0,0,1,114,163,0,0,0,0,0,0,0,0,173,0,0,131,0,0,1,0,0,0,0,0,35,0,0,0,5,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,30,0,0,0,0,1,28,228,0,31,0,0,0,0,0,0,69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,349,8227,4 +0,0,0,7,0,30,5,0,18,9,3,0,0,2,12,0,17,0,6,2,0,0,0,6,0,9,0,0,2,0,1,0,0,0,4,0,30,6,0,0,50,0,3,0,1,0,0,3,0,0,0,0,2,127,0,0,0,0,0,1,0,0,0,0,0,15,0,0,1891,30,63,0,2,0,0,0,0,0,15,0,0,0,0,0,7,16,430,0,0,4,0,0,0,0,0,78,5,6,0,0,2,0,48,0,10,0,0,923,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,23,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,174,0,63,0,0,0,1,4,184,13,170,0,0,0,0,1,0,3,0,0,0,0,0,0,551,0,0,0,0,0,0,0,0,0,0,0,0,3,1,17,0,0,0,0,1,0,32,20,189,7,0,0,222,0,461,0,0,0,114,16,0,0,0,0,0,0,4,0,0,63,1,0,0,0,8,0,0,0,0,1,112,93,0,0,0,0,0,0,0,0,107,0,0,469,3,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,3,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,2,0,0,0,0,1,34,415,0,3,9,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,1,200,851,4 +65,0,0,7,0,83,8,0,77,13,8,0,0,2,27,0,79,0,6,12,0,0,0,8,0,16,0,0,10,0,3,0,0,0,40,0,83,189,0,0,494,0,0,0,1,0,0,1,1,0,0,0,11,138,0,0,0,0,0,1,0,0,0,21,0,31,0,0,1017,83,204,0,19,0,0,0,0,0,9,0,0,0,0,0,19,29,167,0,0,40,0,0,1,10,0,214,25,4,1,0,2,0,159,0,24,0,0,1733,0,2,0,0,25,6,1,6,3,0,0,1,0,0,0,7,0,0,0,0,0,0,0,6,0,0,6,3,0,0,0,2,0,7,6,14,0,0,0,0,0,0,15,0,0,0,0,0,0,2,0,3,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,1,0,78,10,10,10,0,0,0,165,0,109,0,0,0,12,14,263,155,212,0,0,0,0,1,0,3,0,0,0,0,0,0,817,0,0,0,0,0,0,0,0,0,0,0,6,1,1,2,0,0,0,0,1,0,32,34,378,7,0,0,459,0,2052,0,0,0,301,45,0,0,0,0,0,0,0,0,0,207,1,0,4,0,20,0,0,0,0,9,209,86,0,0,46,0,41,0,0,0,579,0,0,49,3,0,1,1,0,0,0,0,6,0,0,0,2,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,88,1,1,1,0,12,0,0,0,0,11,124,76,0,20,9,0,0,0,0,0,1007,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,1,221,58,4 +0,0,0,2,0,8,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1050,8,41,0,1,0,0,0,0,0,8,0,0,0,0,0,1,7,494,0,0,0,0,0,0,0,0,9,0,2,0,0,2,0,13,0,0,0,0,191,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,32,0,0,0,0,3,22,5,58,0,0,0,0,1,0,0,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,92,2,0,0,92,0,310,0,0,0,32,6,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,90,26,0,0,0,0,0,0,0,0,208,0,0,741,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,92,0,1,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,595,4 +258,0,0,29,21,97,166,37,367,29,41,0,0,2,65,2,792,0,20,64,0,118,2,6,0,38,22,0,24,0,7,2,0,20,44,0,117,301,160,0,465,0,0,0,1,0,0,3,0,0,0,0,38,393,0,0,0,0,0,1,0,3,0,12,0,50,0,0,2569,97,3458,0,61,0,0,0,0,0,16,45,0,0,0,0,12,21,233,0,37,44,20,0,7,29,0,689,55,3,0,0,14,21,669,0,46,0,0,2179,0,0,0,0,63,28,0,0,25,0,0,1,0,0,0,22,0,0,0,0,0,0,0,25,0,0,0,14,0,0,0,0,0,7,0,71,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,24,2,0,0,0,0,0,2,0,0,0,0,0,0,14,0,0,0,0,0,0,0,20,10,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,295,0,281,0,0,0,45,72,407,532,294,0,0,0,0,1,0,5,0,0,0,0,0,0,2816,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,679,356,1867,59,0,0,1845,0,3154,0,6,0,594,776,0,0,0,0,0,0,0,0,0,1455,1,0,0,0,190,0,0,0,0,35,292,130,0,0,125,0,0,0,0,0,10119,0,0,147,4,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,28,0,0,0,0,0,0,0,0,1,0,0,100,100,0,0,10,1,0,0,0,0,3,12,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,103,1,1,1,0,52,0,0,0,0,235,161,312,0,84,9,0,0,0,0,0,316,30,0,0,0,0,0,0,1,0,0,0,0,21,0,5,33,0,0,0,0,0,0,0,0,117,0,0,214,0,1,1691,1658,4 +201,0,0,17,6,102,267,6,656,54,132,0,0,2,103,0,383,0,27,16,0,0,0,10,0,36,27,0,24,0,9,7,0,6,42,0,108,294,0,0,1291,0,3,0,1,0,0,3,1,0,0,0,44,324,0,0,0,0,0,1,0,0,0,19,0,148,0,0,4919,102,1560,0,66,0,0,0,0,0,82,0,0,0,0,0,25,35,890,0,6,42,6,0,13,482,0,4200,220,6,0,0,14,6,2889,0,67,0,0,4989,0,0,0,0,29,67,1,0,11,0,0,1,0,0,0,15,0,0,0,0,0,0,0,27,0,0,0,18,0,0,0,2,0,3,0,32,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,19,0,1,1,0,0,0,1,0,0,0,0,0,11,4,0,0,0,0,0,0,0,0,9,0,0,0,0,41,0,1,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,3,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,10,10,10,0,0,0,333,0,260,0,0,0,58,110,393,3505,408,0,0,0,0,1,0,3,0,0,0,0,0,0,2799,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,1,0,659,158,1387,26,0,0,1465,0,3554,0,6,0,553,164,0,0,0,0,0,0,0,0,0,1570,1,0,2,0,26,0,0,0,0,39,285,1179,0,0,517,0,0,0,0,0,4274,0,0,787,3,0,1,8,1,0,0,0,7,0,0,0,0,0,0,0,0,0,52,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,15,1,1,0,0,0,3,390,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,6,177,1,1,1,0,101,0,0,0,0,49,150,112,0,94,9,0,0,0,0,0,1524,11,0,0,0,0,0,0,0,0,0,0,0,7,0,1,70,0,0,0,0,0,0,0,0,0,0,0,6,0,2,4045,1595,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,146,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,53,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,34,0,0,0,0,3,21,195,55,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,84,0,58,0,0,0,50,3,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,39,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,4,4 +0,0,0,5,0,35,25,0,48,3,24,0,0,7,4,0,764,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12474,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,742,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40397,35,930,0,23,0,0,0,0,0,46,0,0,0,0,0,8,96,6764,0,0,1,0,0,0,0,0,364,25,1,0,0,2,0,852,0,0,88,0,5094,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1436,0,34,0,0,0,12,15,489,2078,1415,0,0,0,0,1,0,3,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,280,5,0,0,308,0,290,0,0,0,148,13,0,0,0,0,0,0,0,0,0,878,1,0,0,0,9,0,0,0,0,1,165,6,0,0,135,0,0,0,0,0,4788,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2535,22,4 +9,0,0,6,1,15,26,1,38,1,4,0,0,0,6,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,3,0,16,54,0,0,19,0,0,0,1,0,0,4,0,0,0,0,0,78,0,0,0,0,0,1,0,0,0,0,0,5,0,0,22696,15,125,0,1,0,0,0,0,0,17,0,0,0,0,0,1,6,1507,0,1,3,1,0,1,0,0,50,0,6,0,0,4,1,25,0,3,0,0,8248,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1492,0,148,0,0,0,0,3,64,37,1508,0,0,0,0,1,0,0,0,0,0,0,0,0,1608,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,113,17,920,8,0,0,759,0,745,0,1,0,572,19,0,0,0,0,0,0,0,0,0,147,1,0,0,0,2,0,0,0,0,0,604,21,0,0,0,0,0,0,0,0,1160,0,0,1673,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,1,1,1,0,0,0,0,0,0,9,19,73,0,1,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,715,119,4 +143,0,0,28,10,84,187,22,420,26,70,0,0,2,58,0,375,0,20,16,0,6,2,6,0,38,22,0,16,0,8,3,0,9,33,0,94,301,0,0,685,0,0,0,1,0,0,3,0,0,0,0,41,364,0,0,0,0,0,1,0,3,0,12,0,77,0,0,2891,84,1513,0,54,0,0,0,0,0,71,12,0,0,0,0,13,22,406,0,22,33,9,0,10,193,0,1925,100,3,0,0,14,10,1279,0,42,0,0,2301,0,0,0,0,49,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,32,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,334,0,245,0,0,0,50,94,296,1638,365,0,0,0,0,1,0,5,0,0,0,0,0,0,2703,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,140,1449,47,0,0,1554,0,2892,0,6,0,563,61,0,0,0,0,0,0,0,0,0,1132,1,0,0,0,30,0,0,0,0,35,279,538,0,0,215,0,0,0,0,0,9926,0,0,172,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,1,0,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,62,0,0,0,0,81,127,309,0,78,9,0,0,0,0,0,717,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,36,0,0,0,0,0,0,0,0,0,0,0,14,0,4,1621,1811,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,83,0,57,0,0,0,49,4,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,4,4 +3,0,0,4,0,34,6,0,13,1,3,0,0,2,5,0,18,0,7,3,0,0,0,6,0,8,0,0,5,0,6,0,0,0,6,0,34,6,0,0,28,0,0,0,1,0,0,2,0,0,0,0,6,97,0,0,0,0,0,1,0,0,0,0,0,6,0,0,1007,34,51,0,9,0,0,0,0,0,11,0,0,0,0,0,8,16,239,0,0,6,0,0,0,0,0,84,5,3,0,0,2,0,30,0,3,0,0,590,0,1,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,10,10,10,0,0,0,164,0,88,0,0,0,10,4,194,26,165,0,0,0,0,1,0,4,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,13,157,4,0,0,156,0,257,0,0,0,52,6,0,0,0,0,0,0,0,0,0,54,1,0,0,0,9,0,0,0,0,2,123,18,0,0,0,0,0,0,0,0,97,0,0,49,3,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,13,0,0,0,0,1,40,46,0,10,9,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,232,69,4 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,93,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,30,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,30,0,0,0,0,3,22,6,47,0,0,0,0,1,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,2,0,0,56,0,57,0,0,0,26,3,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,25,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,60,0,1,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,1,4 +2,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,60,8,28,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,23,0,0,0,0,0,0,0,0,6,0,1,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,23,0,18,0,0,0,0,3,21,4,41,0,0,0,0,1,0,0,0,0,0,0,0,0,85,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,52,2,0,0,57,0,98,0,0,0,7,0,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,88,2,0,0,0,0,0,0,0,0,604,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,4 +0,0,0,5,0,35,24,0,47,3,23,0,0,7,4,0,729,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12336,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,776,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40937,35,891,0,23,0,0,0,0,0,45,0,0,0,0,0,8,94,6762,0,0,1,0,0,0,0,0,361,25,2,0,0,2,0,817,0,0,91,0,4988,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1474,0,33,0,0,0,12,15,487,2067,1453,0,0,0,0,1,0,3,0,0,0,0,0,0,264,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,284,5,0,0,314,0,316,0,0,0,155,15,0,0,0,0,0,0,0,0,0,840,1,0,0,0,9,0,0,0,0,1,171,7,0,0,132,0,0,0,0,0,4748,1,0,1039,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2554,30,4 +378,0,0,36,29,112,250,69,609,47,97,0,0,2,91,1,770,0,24,85,0,123,2,6,0,61,22,0,32,0,9,2,0,28,50,0,134,400,159,0,1052,0,0,0,1,0,0,5,1,0,0,0,62,458,0,0,0,0,0,1,0,3,0,12,0,107,0,0,4505,112,4216,0,93,0,0,0,0,0,109,63,0,0,0,0,14,28,655,0,69,50,28,0,11,211,0,2216,95,10,0,0,18,29,1622,0,67,0,0,4924,0,0,0,0,100,86,0,0,38,0,0,1,0,0,0,21,0,0,0,0,0,0,0,26,0,0,0,18,0,0,0,2,0,7,0,72,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,3,0,0,0,0,0,1,16,0,0,0,0,0,0,0,20,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,109,10,10,10,0,0,0,561,0,401,0,0,0,71,119,422,2002,589,0,0,0,0,1,0,5,0,0,0,0,0,0,4884,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,888,419,2255,76,0,0,2316,0,4178,0,8,0,787,434,0,0,0,0,0,0,0,0,0,1844,1,0,2,0,216,0,0,0,0,60,348,550,0,0,211,0,0,0,0,0,10825,0,0,179,3,0,1,9,0,0,0,0,14,0,0,0,4,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,64,64,0,0,22,1,0,0,0,0,3,34,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,119,1,1,1,0,113,0,0,0,0,227,184,223,0,117,9,0,0,0,0,0,863,32,0,0,0,0,0,0,1,0,0,0,0,23,0,4,55,0,0,0,0,0,0,0,0,117,0,0,195,0,5,2541,2490,4 +1,0,0,3,0,28,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,123,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1170,28,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,197,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,543,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,14,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,144,0,50,0,0,0,1,4,182,14,142,0,0,0,0,1,0,3,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,2,1,9,0,0,0,0,1,0,32,10,136,3,0,0,160,0,318,0,0,0,54,12,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,110,37,0,0,0,0,0,0,0,0,109,0,0,118,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,172,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,186,58,4 +0,0,0,8,0,36,6,0,54,1,5,0,0,6,4,0,853,0,6,1,0,0,0,8,0,10,0,0,6,0,2,0,0,0,1,898,36,6,0,0,48,0,2,0,1,0,0,2,0,0,0,0,2,182,0,0,0,0,0,1,0,0,0,0,0,4,0,0,12364,36,931,0,5,0,0,0,0,0,14,0,0,0,0,0,8,23,2662,0,0,1,0,0,0,0,0,194,20,3,0,0,2,0,905,0,0,1,0,2051,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,88,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,15,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,1208,0,137,0,0,0,3,5,260,354,1221,0,0,0,0,1,0,3,0,0,0,0,0,0,2886,0,0,0,0,0,0,0,0,0,0,0,0,2,1,83,0,0,0,0,1,0,84,19,279,8,0,0,278,0,387,0,0,0,117,8,0,0,0,0,0,0,166,0,0,934,1,0,0,0,9,0,0,0,0,2,157,40,0,0,6,0,0,0,0,0,2687,1,0,2107,6,0,1,2,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,162,0,0,0,6,322,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,66,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,8,0,0,0,0,1,37,163,0,6,12,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,82,0,0,0,0,0,0,0,1,1443,511,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,2,0,0,412,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,412,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,46,3,0,0,47,0,141,0,0,0,5,9,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,24,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,263,11,4 +16,0,0,26,3,47,50,2,307,16,136,0,0,1,98,0,1318,0,9,4,0,1,1,3,1,1,27,0,8,0,82,4,0,3,26,1,49,547,118,0,679,0,0,0,1,0,0,2,0,0,0,0,86,162,0,0,0,0,0,1,0,0,0,1,0,46,0,0,2534,47,2068,0,18,0,0,0,0,0,9,3,0,0,0,0,4,7,86,0,2,26,3,0,12,156,0,1425,185,3,0,0,8,3,2499,0,21,0,0,1912,0,0,0,0,13,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,5,0,15,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,2,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,189,0,0,0,0,0,0,113,0,80,0,0,0,92,131,117,1244,205,0,0,0,0,1,0,0,0,0,0,68,1,22,991,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,212,118,535,60,0,0,623,0,1055,0,1,0,374,58,0,0,0,0,0,0,0,0,0,1919,1,0,0,0,10,0,0,0,0,8,201,424,0,0,437,0,0,0,0,0,8245,0,0,1226,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,39,1,1,1,0,512,0,0,0,0,19,75,203,0,122,0,0,0,0,0,0,727,10,0,0,0,0,0,0,0,0,0,0,0,2,0,1,38,0,0,0,0,0,0,0,2,0,0,0,4,0,3,4109,51,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,0,0,0,97,8,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,1,27,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,26,0,0,0,0,3,21,4,42,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,43,0,26,0,0,0,9,4,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,4,4 +0,0,0,5,0,36,25,0,48,3,24,0,0,7,4,0,784,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12503,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,733,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41307,36,950,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6854,0,0,1,0,0,0,0,0,365,25,1,0,0,2,0,872,0,0,90,0,4768,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1620,0,34,0,0,0,12,15,496,2088,1598,0,0,0,0,1,0,3,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,275,5,0,0,308,0,290,0,0,0,146,19,0,0,0,0,0,0,0,0,0,898,1,0,0,0,9,0,0,0,0,1,164,6,0,0,136,0,0,0,0,0,4827,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,208,0,24,12,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2564,22,4 +0,0,0,6,0,39,58,0,96,1,39,0,0,9,3,0,810,0,6,1,0,0,0,8,0,11,0,0,45,0,1,0,0,0,1,13993,39,6,0,0,53,0,1,0,1,0,0,1,0,0,0,0,1,538,0,0,0,0,0,1,0,0,0,0,0,2,0,0,111216,39,1146,0,44,0,0,0,0,0,111,0,0,0,0,0,8,317,13125,0,0,1,0,0,0,0,0,592,35,2,0,0,2,0,1000,0,0,215,0,8938,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,6526,0,38,0,0,0,28,31,1440,7275,6455,0,0,0,0,1,0,3,0,0,0,0,0,0,7691,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,150,22,394,6,0,0,394,0,370,0,0,0,215,59,0,0,0,0,0,0,0,0,0,1021,1,0,0,0,9,0,0,0,0,1,167,72,0,0,293,0,0,0,0,0,5709,1,0,10228,54,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,54,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,127,0,0,0,0,1,40,321,0,45,12,0,1,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3360,180,4 +0,0,0,5,0,36,24,0,47,3,23,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12408,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,736,0,0,0,0,0,1,0,0,0,0,0,2,0,0,38711,36,911,0,24,0,0,0,0,0,45,0,0,0,0,0,8,90,6405,0,0,1,0,0,0,0,0,361,25,2,0,0,2,0,836,0,0,87,0,4597,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1256,0,32,0,0,0,13,16,493,2060,1234,0,0,0,0,1,0,3,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,277,5,0,0,308,0,297,0,0,0,146,13,0,0,0,0,0,0,0,0,0,859,1,0,0,0,9,0,0,0,0,1,164,7,0,0,130,0,0,0,0,0,4653,1,0,1010,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,212,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2443,27,4 +80,0,0,2,1,54,25,4,117,6,24,0,4,0,12,0,38,0,7,6,0,1,1,5,0,29,9,0,5,0,4,0,0,1,17,0,55,15,0,0,480,0,0,0,1,0,0,0,0,0,0,0,25,123,0,0,0,0,0,1,0,1,0,0,0,26,0,0,1352,54,369,0,28,0,0,0,0,0,16,3,0,0,0,0,8,13,271,0,4,17,1,0,4,88,0,802,15,0,0,0,8,1,552,0,7,0,0,1559,0,0,0,0,37,23,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,209,0,110,0,0,0,27,58,225,787,207,0,0,0,0,1,0,4,0,0,0,0,0,0,816,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,93,288,4,0,0,245,0,318,0,0,0,102,21,0,0,0,0,0,0,0,0,0,227,0,0,0,0,13,0,0,0,0,24,139,230,0,0,30,0,0,0,0,0,740,0,0,18,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,33,0,0,0,0,9,72,41,0,38,9,0,0,0,0,0,327,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,283,1560,4 +1,0,0,3,0,29,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,113,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1014,29,57,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,163,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,543,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,126,0,50,0,0,0,1,4,186,14,124,0,0,0,0,1,0,3,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,2,1,8,0,0,0,0,1,0,32,10,133,3,0,0,189,0,315,0,0,0,81,9,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,111,64,0,0,0,0,0,0,0,0,83,0,0,44,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,226,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,161,53,4 +52,0,0,1,1,58,12,4,56,2,13,0,3,0,5,0,37,0,7,10,0,1,1,6,0,16,3,0,6,0,4,1,0,1,23,0,59,12,0,0,181,0,0,0,1,0,0,0,0,0,0,0,13,98,0,0,0,0,0,1,0,1,0,0,0,7,0,0,973,58,257,0,17,0,0,0,0,0,10,3,0,0,0,0,13,18,139,0,4,23,1,0,4,31,0,380,30,0,0,0,6,1,230,0,2,0,0,1062,0,0,0,0,10,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,140,0,92,0,0,0,16,23,226,327,129,0,0,0,0,1,0,3,0,0,0,0,0,0,487,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,287,2,0,0,239,0,412,0,0,0,105,36,0,0,0,0,0,0,0,0,0,133,0,0,0,0,18,0,0,0,0,12,149,72,0,0,60,0,0,0,0,0,692,0,0,6,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,17,0,0,0,0,9,82,39,0,21,9,0,0,0,0,0,190,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,160,798,4 +0,0,0,3,0,9,3,0,24,1,4,0,0,0,7,0,26,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,44,0,1,0,1,0,0,1,1,0,0,0,0,284,0,0,0,0,0,1,0,0,0,0,0,9,0,0,4687,9,63,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,469,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,68,0,0,0,0,1193,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,35,0,37,0,0,0,0,3,24,12,44,0,0,0,0,1,0,0,0,0,0,0,0,0,2122,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,150,3,0,0,158,0,164,0,0,0,102,12,0,0,0,0,0,0,0,0,0,70,1,0,2,0,2,0,0,0,0,0,91,95,0,0,0,0,0,0,0,0,272,0,0,736,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,96,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,252,73,4 +147,0,0,29,10,86,188,22,426,27,73,0,0,2,61,0,375,0,20,16,0,6,2,6,0,34,22,0,15,0,10,2,0,9,34,0,96,301,0,0,685,0,0,0,1,0,0,3,0,0,0,0,38,357,0,0,0,0,0,1,0,3,0,11,0,80,0,0,2914,86,1526,0,50,0,0,0,0,0,73,12,0,0,0,0,13,22,397,0,22,34,9,0,10,198,0,1957,100,3,0,0,14,10,1307,0,43,0,0,2311,0,0,0,0,51,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,34,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,340,0,235,0,0,0,48,88,301,1663,357,0,0,0,0,1,0,5,0,0,0,0,0,0,2744,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,143,1450,48,0,0,1563,0,2917,0,6,0,569,41,0,0,0,0,0,0,0,0,0,1145,1,0,0,0,30,0,0,0,0,32,281,551,0,0,215,0,0,0,0,0,9927,0,0,176,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,93,1,1,1,0,65,0,0,0,0,81,130,310,0,74,9,0,0,0,0,0,720,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,37,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1625,1807,4 +4,0,0,1,2,15,33,1,34,0,7,0,1,0,4,1,80,0,8,5,0,0,0,0,0,0,0,0,0,0,1,0,0,1,5,0,16,108,0,0,35,0,0,0,1,0,0,1,0,0,0,0,0,57,0,0,0,0,0,1,0,0,0,14,0,3,0,0,172,15,118,0,1,0,0,0,0,0,2,0,0,0,0,0,2,4,6,0,1,5,1,0,2,0,0,57,0,0,0,0,10,2,40,0,2,0,0,235,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,22,0,40,0,0,0,0,3,35,65,40,0,0,0,0,1,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,134,44,245,3,0,0,258,0,614,0,1,0,87,4,0,0,0,0,0,0,0,0,0,168,1,0,0,0,5,0,0,0,0,0,121,6,0,0,0,0,0,0,0,0,40460,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,0,0,0,0,0,31,22,6,0,1,0,0,0,0,0,0,50,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,92,50,4 +1,0,0,3,0,28,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,139,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1131,28,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,188,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,465,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,140,0,48,0,0,0,1,4,182,14,138,0,0,0,0,1,0,3,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,2,1,3,0,0,0,0,1,0,32,10,133,3,0,0,170,0,300,0,0,0,64,9,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,110,47,0,0,0,0,0,0,0,0,107,0,0,120,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,265,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,185,52,4 +0,0,0,7,2,16,50,2,56,10,6,0,0,0,19,0,123,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,4,0,18,136,0,0,39,0,0,0,1,0,0,7,0,0,0,0,1,192,0,0,0,0,0,1,0,0,0,0,0,17,0,0,3927,16,233,0,3,0,0,0,0,0,30,0,0,0,0,0,1,10,738,0,2,4,2,0,2,0,0,90,0,14,0,0,6,2,89,0,14,0,0,364,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,580,0,302,0,0,0,2,7,44,24,762,0,0,0,0,1,0,0,0,0,0,0,0,0,2660,0,192,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,235,38,445,9,0,0,463,0,1539,0,2,0,159,13,0,0,0,0,0,0,0,0,0,265,1,0,0,0,2,0,0,0,0,1,135,43,0,0,0,0,0,0,0,0,716,0,0,877,0,0,1,0,0,0,0,0,19,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,14,1,1,1,0,2,0,0,0,0,17,22,172,0,6,0,0,0,0,0,0,89,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,1437,73,4 +41,0,0,0,1,63,16,4,43,0,6,0,4,0,3,0,107,0,7,7,0,1,1,6,0,22,9,0,5,0,1,0,0,1,27,0,64,24,0,0,274,0,2,0,1,0,0,2,0,0,0,0,15,121,0,0,0,0,0,1,0,1,0,5,0,3,0,0,2158,63,315,0,18,0,0,0,0,0,12,3,0,0,0,0,10,19,780,0,4,27,1,0,3,8,0,187,0,4,0,0,12,1,246,0,0,0,0,1175,0,0,0,0,14,5,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,3,0,6,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,11,0,1,1,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,10,10,10,0,0,0,216,0,92,0,0,0,14,35,278,194,218,0,0,0,0,1,0,5,0,0,0,0,0,0,666,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,49,72,359,1,0,0,321,0,633,0,0,0,146,35,0,0,0,0,0,0,0,0,0,186,1,0,0,0,15,0,0,0,0,15,159,42,0,0,0,0,0,0,0,0,8291,0,0,735,3,0,1,4,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,3,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,110,1,1,1,0,3,0,0,0,0,9,91,79,0,28,9,0,0,0,0,0,165,6,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,393,1088,4 +111,0,0,29,11,89,156,27,263,30,34,0,0,2,66,1,556,0,20,45,0,98,2,6,0,33,22,0,18,0,7,3,0,10,38,0,99,301,160,0,373,0,0,0,1,0,0,3,0,0,0,0,34,344,0,0,0,0,0,1,0,3,0,12,0,51,0,0,2518,89,1747,0,49,0,0,0,0,0,19,15,0,0,0,0,13,22,289,0,27,38,10,0,7,29,0,659,55,3,0,0,14,11,547,0,46,0,0,2414,0,0,0,0,45,13,1,0,30,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,28,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,283,0,225,0,0,0,42,71,333,527,295,0,0,0,0,1,0,6,0,0,0,0,0,0,2117,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1440,49,0,0,1492,0,2935,0,6,0,499,185,0,0,0,0,0,0,0,0,0,1098,1,0,0,0,151,0,0,0,0,29,283,135,0,0,125,0,0,0,0,0,10419,0,0,174,4,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,7,1,0,0,0,0,3,19,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,57,0,0,0,0,115,137,326,0,74,9,0,0,0,0,0,295,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,34,0,0,0,0,0,0,0,0,117,0,0,185,0,3,1655,1587,4 +10,0,0,10,1,34,47,1,120,7,15,1,0,0,13,0,67,0,9,3,0,0,0,3,0,2,0,0,12,0,1,0,0,1,14,0,35,59,0,0,151,0,0,0,1,0,0,18,3,0,0,0,2,304,0,0,0,0,0,1,0,0,0,19,0,9,0,0,10331,34,339,0,14,0,0,0,0,0,65,0,0,0,0,5,5,31,1611,0,1,14,1,0,1,47,0,458,15,38,1,0,4,1,328,0,8,0,0,1280,0,0,0,0,31,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,7,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,1341,0,245,0,0,0,1,5,78,424,1294,0,0,0,0,1,0,0,0,0,0,0,0,0,3371,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,1,0,113,19,429,15,0,0,565,0,1607,0,1,0,341,40,0,0,0,0,0,0,0,0,0,272,1,0,9,0,6,0,0,0,0,2,200,244,0,0,34,0,0,0,0,0,821,0,0,2268,0,0,1,0,0,0,0,0,49,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,40,1,1,1,0,14,0,0,0,0,9,49,896,0,15,0,0,0,0,0,0,212,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,12,1986,184,4 +18,0,0,2,0,19,20,0,98,0,21,0,1,0,3,0,16,0,7,1,0,0,0,1,0,5,0,0,0,0,1,0,0,0,9,0,19,13,0,0,208,0,0,0,0,0,0,0,0,0,0,0,5,64,0,0,0,0,0,1,0,0,0,0,0,17,0,0,351,19,185,0,6,0,0,0,0,0,12,0,0,0,0,0,1,1,110,0,0,9,0,0,2,88,0,683,15,0,0,0,4,0,458,0,0,0,0,386,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,96,0,78,0,0,0,5,7,36,625,113,0,0,0,0,0,0,0,0,0,0,0,0,0,395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,28,99,2,0,0,100,0,87,0,0,0,61,5,0,0,0,0,0,0,0,0,0,166,0,0,0,0,2,0,0,0,0,5,103,224,0,0,30,0,0,0,0,0,629,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,0,0,0,0,0,1,28,9,0,6,0,0,0,0,0,0,293,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,408,4 +0,0,0,11,2,40,73,2,95,12,28,0,0,7,19,8,908,0,10,2,0,0,0,7,0,10,0,0,25,0,1,0,0,2,4,12301,42,135,0,0,84,0,0,0,1,0,0,2,0,0,0,0,1,675,0,0,0,0,0,1,0,0,0,0,0,17,0,0,27369,40,1134,0,23,0,0,0,0,0,49,0,0,0,0,0,8,93,3416,0,2,4,2,0,2,0,0,438,25,4,0,0,6,2,966,0,13,88,0,3151,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1198,0,55,0,0,0,12,15,505,1280,1182,0,0,0,0,1,0,3,0,0,0,0,0,0,422,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,320,59,588,13,0,0,645,0,948,0,2,0,245,15,0,0,0,0,0,0,0,0,0,1148,1,0,0,0,9,0,0,0,0,1,198,15,0,0,135,0,0,0,0,0,3244,1,0,320,22,0,1,1,0,0,0,0,7,0,0,0,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,42,1,1,1,0,58,0,0,0,0,17,46,213,0,24,12,0,0,0,0,0,137,2,0,0,0,0,0,0,0,0,0,0,0,5,0,1,16,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1340,61,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,726,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,722,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,2,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,1,108,4 +0,0,0,0,0,8,39,0,47,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,8,128,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,43,0,324,15,0,0,0,4,0,221,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,32,0,0,0,0,3,21,199,54,0,0,0,0,0,0,0,0,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,85,0,58,0,0,0,51,4,0,0,0,0,0,0,0,0,0,111,0,0,0,0,2,0,0,0,0,0,91,86,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,102,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,4,4 +12,0,0,4,0,16,2,0,23,3,3,0,0,0,6,0,91,0,6,1,0,0,0,1,0,0,45,0,15,0,16,0,0,0,5,0,16,61,0,0,22,0,57,0,1,0,0,57,0,0,0,0,15,281,0,0,0,0,0,1,0,0,0,0,0,7,0,0,8746,16,398,0,30,0,0,0,0,0,131,0,0,0,0,0,1,59,1479,0,0,5,0,0,0,0,0,138,0,64,0,0,2,0,319,0,4,0,0,538,0,3,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,1557,0,433,0,0,0,30,78,37,149,1956,0,0,0,0,1,0,0,0,0,0,0,0,0,3664,0,63,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,8,7,129,4,0,0,594,0,866,0,0,0,535,15,0,0,0,0,0,0,0,0,0,131,1,0,0,0,2,0,0,0,0,16,98,442,0,0,0,0,0,0,0,0,578,0,0,1246,0,0,1,0,1,0,0,0,160,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,154,0,0,0,0,16,14,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,30,0,0,0,0,1,21,98,0,76,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1340,336,4 +0,0,0,0,1,34,7,1,12,0,2,0,2,0,3,0,22,0,6,5,0,1,0,6,0,8,0,0,2,0,1,0,0,1,5,0,34,12,0,0,43,0,1,0,1,0,0,1,0,0,0,0,1,54,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1913,34,101,0,1,0,0,0,0,0,7,3,0,0,0,0,7,15,646,0,1,5,1,0,1,0,0,76,0,1,0,0,4,1,29,0,0,0,0,691,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,88,0,58,0,0,0,0,3,190,679,107,0,0,0,0,1,0,3,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,23,20,143,1,0,0,143,0,246,0,0,0,35,4,0,0,0,0,0,0,0,0,0,54,1,0,0,0,12,0,0,0,0,0,118,9,0,0,0,0,0,0,0,0,267,0,0,732,3,0,1,5,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,3,361,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,0,0,0,0,0,1,39,21,0,2,9,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,327,108,4 +1,0,0,5,0,34,6,0,36,0,5,0,0,6,4,0,604,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,1,762,34,6,0,0,41,0,1,0,1,0,0,2,0,0,0,0,1,164,0,0,0,0,0,1,0,0,0,0,0,2,0,0,17217,34,673,0,3,0,0,0,0,0,18,0,0,0,0,1,8,24,4077,0,0,1,0,0,0,0,0,190,20,5,0,0,2,0,644,0,0,1,0,2794,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,564,0,55,0,0,0,1,4,254,1136,547,0,0,0,0,1,0,3,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,16,167,5,0,0,193,0,211,0,0,0,51,2,0,0,0,0,0,0,0,0,0,667,1,0,0,0,9,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3328,1,0,826,6,0,1,1,1,0,0,0,5,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,35,83,0,4,12,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1949,35,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,195,55,0,0,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,84,0,58,0,0,0,50,3,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,4,4 +62,0,0,1,1,57,9,4,40,2,10,0,3,0,5,0,37,0,7,12,0,1,1,6,0,16,3,0,7,0,5,1,0,1,21,0,58,12,0,0,152,0,0,0,1,0,0,0,0,0,0,0,14,91,0,0,0,0,0,1,0,0,0,0,0,4,0,0,976,57,220,0,19,0,0,0,0,0,6,3,0,0,0,0,15,20,124,0,4,21,1,0,4,16,0,278,30,0,0,0,6,1,157,0,2,0,0,2101,0,0,0,0,13,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,7,0,0,0,4,0,0,0,0,0,1,0,9,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,135,0,81,0,0,0,18,25,223,238,125,0,0,0,0,1,0,3,0,0,0,0,0,0,446,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,281,2,0,0,229,0,376,0,0,0,92,28,0,0,0,0,0,0,0,0,0,111,0,0,0,0,20,0,0,0,0,13,148,33,0,0,60,0,0,0,0,0,691,0,0,8,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,20,0,0,0,0,9,79,37,0,23,9,0,0,0,0,0,148,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,1,0,0,0,0,0,0,0,0,0,0,2,0,0,144,721,4 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,35,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,4 +0,0,0,5,0,35,24,0,48,3,23,0,0,7,4,0,764,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12351,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,762,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39663,35,927,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6407,0,0,1,0,0,0,0,0,361,25,2,0,0,2,0,852,0,0,91,0,4616,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1400,0,32,0,0,0,12,15,485,2063,1379,0,0,0,0,1,0,3,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,281,5,0,0,309,0,305,0,0,0,150,20,0,0,0,0,0,0,0,0,0,876,1,0,0,0,9,0,0,0,0,1,166,7,0,0,132,0,0,0,0,0,4618,1,0,1039,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2481,31,4 +119,0,0,29,11,91,157,27,273,27,38,0,0,2,63,1,566,0,20,45,0,98,2,6,0,42,22,0,23,0,8,2,0,10,40,0,101,301,160,0,411,0,0,0,1,0,0,3,0,0,0,0,42,343,0,0,0,0,0,1,0,3,0,12,0,49,0,0,2581,91,1792,0,64,0,0,0,0,0,20,15,0,0,0,0,13,22,295,0,27,40,10,0,8,37,0,749,70,3,0,0,14,11,597,0,43,0,0,2201,0,0,0,0,44,17,1,0,31,0,0,1,0,0,0,23,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,22,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,299,0,242,0,0,0,50,86,337,598,310,0,0,0,0,1,0,6,0,0,0,0,0,0,2107,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,681,335,1435,49,0,0,1498,0,2995,0,6,0,506,204,0,0,0,0,0,0,0,0,0,1120,1,0,0,0,151,0,0,0,0,38,282,149,0,0,155,0,0,0,0,0,10431,0,0,163,4,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,7,1,0,0,0,0,3,17,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,62,0,0,0,0,119,141,328,0,88,9,0,0,0,0,0,327,10,0,0,0,0,0,0,1,0,0,0,0,11,0,5,33,0,0,0,0,0,0,0,0,117,0,0,177,0,3,1640,1835,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,8,126,0,0,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,34,0,0,0,0,3,21,195,55,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,84,0,58,0,0,0,50,3,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,4,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,0,0,0,75,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,45,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,36,4 +0,0,0,0,0,10,19,0,25,0,2,0,1,0,2,0,11,0,6,1,0,0,0,1,0,2,0,0,4,0,3,0,0,0,1,0,10,9,0,0,52,0,0,0,0,0,0,0,0,0,0,0,4,44,0,0,0,0,0,1,0,0,0,0,0,1,0,0,108,10,65,0,9,0,0,0,0,0,0,0,0,0,0,0,1,1,10,0,0,1,0,0,1,20,0,165,0,0,0,0,4,0,117,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,21,0,18,0,0,0,6,8,25,112,28,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,13,56,0,0,0,58,0,135,0,0,0,22,5,0,0,0,0,0,0,0,0,0,66,0,0,0,0,2,0,0,0,0,4,93,44,0,0,0,0,0,0,0,0,87,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,8,0,0,0,2,1,11,1,0,9,0,0,0,0,0,0,77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,46,4 +0,0,0,6,0,38,8,0,55,5,7,0,0,2,9,0,874,0,7,4,0,0,0,6,0,10,0,0,38,0,49,0,0,0,7,898,38,9,0,0,54,0,0,0,1,0,0,5,0,0,0,0,49,253,0,0,0,0,0,1,0,0,0,0,0,13,0,0,36119,38,1067,0,84,0,0,0,0,0,29,0,0,0,0,0,9,22,4511,0,0,7,0,0,1,7,0,389,20,8,0,0,2,0,1016,0,6,0,0,7172,0,0,0,0,6,0,1,0,1,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,3770,0,103,0,0,0,96,99,245,11503,3752,0,0,0,0,1,0,3,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,38,19,781,6,0,0,252,0,444,0,0,0,99,341,0,0,0,0,0,0,0,0,0,962,1,0,0,0,10,0,0,0,0,49,122,42,0,0,34,0,0,0,0,0,2319,1,0,226,7,0,1,1,0,0,0,0,12,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,7,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,131,0,0,0,0,1,45,215,0,85,12,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,4,662,63804,4 +0,0,0,10,0,17,4,0,25,1,7,0,0,0,4,0,19,0,7,1,0,0,0,1,0,0,0,0,5,0,9,0,0,0,5,0,17,6,0,0,36,0,0,0,1,0,0,1,0,0,0,0,8,65,1,0,0,0,0,1,0,0,0,2,0,7,0,0,18458,17,68,0,14,0,0,0,0,0,6,0,0,0,0,0,1,3,3576,0,0,5,0,0,1,9,0,111,15,1,0,0,2,0,67,0,1,0,0,598,0,0,0,0,2,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2583,0,52,0,0,0,16,14,38,150,2600,0,0,0,0,1,0,0,0,0,0,0,0,0,4725,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,7,111,14,0,0,96,0,225,0,0,0,30,7,0,0,0,0,0,0,0,0,0,66,1,0,0,0,2,0,0,0,0,6,101,20,0,0,31,0,0,0,0,0,1655,0,0,5071,0,0,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,21,0,0,0,10,1,22,12,0,14,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,3,0,0,0,0,0,0,0,0,0,0,0,0,1,2382,60,4 +1,0,0,6,3,13,27,1,33,1,6,0,0,0,7,0,59,0,8,1,0,0,0,1,0,0,0,0,8,0,2,0,0,1,3,0,14,54,0,0,22,0,0,0,0,0,0,0,0,0,0,0,1,51,0,0,0,0,0,1,0,0,0,0,0,6,0,0,529,13,98,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,32,0,1,3,1,0,1,0,0,54,0,0,0,0,4,3,31,0,4,0,0,357,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,34,0,32,0,0,0,2,5,33,29,49,0,0,0,0,0,0,0,0,0,0,1,1,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,20,196,10,0,0,207,0,596,0,1,0,51,5,0,0,0,0,0,0,0,0,0,140,0,0,0,0,2,0,0,0,0,2,111,2,0,0,0,0,1,0,0,0,147,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,10,0,0,0,0,9,17,4,0,10,0,0,0,0,0,0,44,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,108,185,4 +9,0,0,6,1,16,26,1,38,1,4,0,0,0,6,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,3,0,17,54,0,0,19,0,0,0,1,0,0,4,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,5,0,0,22800,16,125,0,1,0,0,0,0,0,17,0,0,0,0,0,1,6,1516,0,1,3,1,0,1,0,0,50,0,6,0,0,4,1,25,0,3,0,0,8617,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1501,0,150,0,0,0,0,3,68,37,1517,0,0,0,0,1,0,0,0,0,0,0,0,0,1603,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,113,17,935,8,0,0,770,0,746,0,1,0,580,23,0,0,0,0,0,0,0,0,0,147,1,0,0,0,2,0,0,0,0,0,613,21,0,0,0,0,0,0,0,0,1166,0,0,1697,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,45,1,1,1,0,0,0,0,0,0,9,20,73,0,1,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,5,725,120,4 +12,0,0,16,0,32,1106,0,1228,12,36,0,0,0,27,6,30,0,10,3,0,0,0,2,0,0,0,0,11,0,3,0,0,0,10,4,32,107,0,0,2449,0,0,0,1,0,0,20,3,0,0,0,2,320,0,0,0,0,0,1,0,0,0,16,0,29,0,0,15866,32,2556,0,14,0,0,0,0,0,101,0,0,0,0,16,4,56,567,0,0,10,0,0,1,1150,0,8181,95,39,0,0,2,0,5896,0,14,0,0,33707,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,9,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,404,0,279,0,0,0,4,7,72,11226,353,0,0,0,0,1,0,3,0,0,0,0,0,0,15548,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,16,25,449,14,0,0,1526,0,707,18,0,0,1370,58,0,0,0,0,0,0,0,0,0,2443,1,0,15,0,5,0,0,0,0,3,160,2518,0,0,209,0,0,0,0,0,425,0,0,664,0,0,1,0,0,0,0,0,45,0,0,0,16,0,0,0,0,0,12,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,15,0,0,0,0,1,42,109,0,14,0,0,0,0,0,0,2419,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,4,758,164,4 +219,0,0,0,3,87,57,12,334,3,104,1,2,0,5,0,48,0,7,16,0,3,3,2,0,6,3,0,77,0,301,1,0,3,36,0,90,12,0,0,508,0,0,0,0,0,0,0,0,0,0,0,307,127,0,0,0,0,0,1,0,0,0,0,0,24,0,0,5876,87,1672,0,385,0,0,0,0,0,272,9,0,0,0,0,11,11,240,0,12,36,3,0,3,294,0,3592,390,0,0,0,6,3,1681,0,2,0,0,2758,0,0,0,0,87,92,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,78,0,0,0,77,0,0,0,0,0,1,0,13,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,72,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,232,0,191,0,0,0,608,612,172,2448,253,0,0,0,0,0,0,0,0,0,0,0,0,0,3936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,577,6,0,0,711,0,537,0,0,0,470,48,0,0,0,0,0,0,0,0,0,558,0,0,0,0,24,0,0,0,0,306,178,580,0,0,875,0,0,0,0,0,1310,0,0,301,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,682,0,0,0,590,25,126,36,0,388,0,0,0,0,0,0,635,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,1,0,0,0,0,0,0,0,0,0,0,5,0,0,1248,1954,4 +315,0,0,28,26,109,253,59,773,34,131,0,0,2,77,0,493,0,22,80,0,121,1,6,0,61,10,0,34,0,6,2,0,25,50,0,129,352,160,0,1376,0,0,0,1,0,0,6,1,0,0,0,59,402,0,0,0,0,0,1,0,2,0,20,0,134,0,0,4164,109,3706,0,91,0,0,0,0,0,113,57,0,0,0,0,14,28,569,0,59,50,25,0,11,408,0,3638,90,11,0,0,16,26,2468,0,55,0,0,3215,0,0,0,0,72,90,0,0,40,0,0,1,0,0,0,18,0,0,0,0,0,0,0,26,0,0,0,18,0,0,0,2,0,7,0,75,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,2,0,0,0,0,0,1,13,0,0,0,0,0,0,0,20,6,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,92,10,10,10,0,0,0,489,0,351,0,0,0,65,84,362,3146,552,0,0,0,0,1,0,3,0,0,0,0,0,0,4808,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,780,382,2102,62,0,0,2145,0,3818,0,7,0,767,174,0,0,0,0,0,0,0,0,0,1751,1,0,2,0,208,0,0,0,0,51,333,1057,0,0,192,0,0,0,0,0,10504,0,0,125,3,0,1,8,0,0,0,0,13,0,0,0,4,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,3,11,3,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,114,1,1,1,0,56,0,0,0,0,161,179,190,0,104,9,0,0,0,0,0,1338,30,0,0,0,0,0,0,1,0,0,0,0,21,0,4,44,0,0,0,0,0,0,0,0,117,0,0,177,0,6,2554,1496,4 +2,0,0,3,0,14,2,0,16,1,3,0,0,0,4,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,14,6,0,0,14,0,0,0,1,0,0,8,0,0,0,0,0,129,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1699,14,81,0,1,0,0,0,0,0,28,0,0,0,0,1,1,12,230,0,0,4,0,0,0,0,0,20,0,10,0,0,2,0,19,0,2,0,0,412,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,207,0,141,0,0,0,0,3,32,19,221,0,0,0,0,1,0,0,0,0,0,0,0,0,601,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,5,154,3,0,0,190,0,282,0,0,0,127,16,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,0,111,83,0,0,0,0,0,0,0,0,78,0,0,141,0,0,1,0,0,0,0,0,13,0,1,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,18,363,0,1,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,357,65,4 +16,0,0,21,7,47,54,20,180,20,50,0,0,0,44,0,136,0,21,17,0,6,4,1,0,1,12,0,5,0,4,1,0,7,16,0,55,67,0,0,356,0,0,0,1,0,0,2,0,0,0,0,5,197,0,0,0,0,0,1,0,0,0,3,0,38,0,0,1216,47,812,0,11,0,0,0,0,0,5,18,0,0,0,0,3,6,128,0,20,16,7,0,4,80,0,775,100,3,0,0,4,7,623,0,23,0,0,1524,0,0,0,0,6,3,0,0,3,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,3,0,4,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,34,2,2,2,0,0,2,178,2,138,0,0,0,9,26,135,1322,214,0,0,0,0,1,0,0,0,0,0,1,1,0,756,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,111,44,559,29,0,0,542,0,1274,0,1,0,167,134,0,0,0,0,0,0,0,0,0,485,1,0,0,0,28,0,0,0,0,4,154,178,0,0,251,0,1,0,0,1,411,0,0,43,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,18,0,0,2,0,0,0,1,0,0,0,0,2,2,0,0,14,1,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,61,1,1,1,0,25,0,0,0,0,100,71,23,0,23,0,0,0,0,0,0,264,19,0,0,0,0,0,0,0,0,0,0,0,8,0,1,26,0,0,0,0,0,0,0,0,0,0,0,12,0,0,504,369,4 +0,0,0,2,0,12,2,0,23,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,12,6,0,0,6,0,0,0,1,0,0,5,0,0,0,0,0,103,0,0,0,0,0,1,0,0,0,0,0,1,0,0,757,12,66,0,1,0,0,0,0,0,17,0,0,0,0,2,1,10,101,0,0,1,0,0,0,0,0,12,0,8,0,0,2,0,22,0,0,0,0,380,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,112,0,80,0,0,0,0,3,32,9,123,0,0,0,0,1,0,0,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,5,0,7,0,0,0,0,0,0,8,3,118,8,0,0,173,0,285,0,0,0,94,15,0,0,0,0,0,0,5,0,0,51,1,0,0,0,2,0,0,0,0,0,100,68,0,0,0,0,1,0,0,0,55,0,0,85,0,0,1,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,277,0,1,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,190,43,4 +248,0,0,10,14,176,213,38,524,57,86,0,6,0,105,1,973,0,17,27,0,10,6,10,2,57,48,0,23,0,15,5,0,12,97,0,190,65791,6467,0,1062,0,0,0,1,0,0,5,1,0,0,0,68,436,0,0,0,0,0,1,0,2,0,27,0,107,0,0,39560,176,3073,0,88,0,0,0,0,0,153,27,0,0,0,0,22,33,8090,0,38,97,12,0,12,259,0,2473,135,11,0,0,20,14,2583,0,73,1,0,7404,0,0,0,0,58,70,2,0,31,0,0,1,0,0,0,23,0,0,0,0,0,0,0,14,0,0,0,36,0,0,0,0,0,2,0,28,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,41,8,0,0,0,0,0,2,0,0,0,0,0,7,23,0,0,0,3,0,0,0,0,12,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,125,12,12,12,0,0,2,5066,2,479,0,0,2,86,313,439,136526,5110,0,0,0,0,1,0,5,0,0,0,0,0,0,10955,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,470,220,1715,27,0,0,1868,0,2319,0,4,0,896,127523,0,0,0,0,0,0,0,0,0,1925,1,0,2,0,55,0,0,0,0,53,374,713,0,0,318,0,0,0,0,0,78409,0,0,8463,3,0,1,11,0,0,0,0,14,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,18,1,0,0,0,0,3,125,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,186,1,1,1,0,531,0,0,0,0,186,287,408,1,139,9,0,0,0,0,0,985,19,0,0,0,0,0,0,0,0,0,0,0,15,0,2,63,0,0,0,0,0,0,0,0,8,0,0,26,0,4,4616,1930,4 +138,0,0,17,8,69,87,17,207,27,26,0,0,6,46,2,1528,0,13,13,0,7,3,9,0,27,9,0,19,0,10,0,0,5,22,898,77,315,0,0,293,0,0,0,1,0,0,2,1,0,0,0,25,319,0,0,0,0,0,1,0,1,0,13,0,43,0,0,11631,69,2125,0,42,0,0,0,0,0,17,15,0,0,0,0,11,25,1695,0,17,22,5,0,4,33,0,637,35,6,0,0,8,8,1591,0,34,1,0,2451,0,0,0,0,29,3,1,0,39,0,0,1,0,0,0,11,0,0,0,0,1,0,0,1,0,0,0,6,0,0,0,0,0,5,2,66,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,6,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,70,12,12,12,0,0,0,875,0,186,0,0,0,33,41,367,892,925,0,0,0,0,1,0,4,0,0,0,0,0,0,2283,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,398,92,1043,26,0,0,1122,0,1746,0,3,0,450,54,0,0,0,0,0,0,0,0,0,1915,1,0,2,0,32,0,0,0,0,19,238,173,0,0,52,0,0,0,0,0,4561,1,0,1382,8,0,1,3,0,0,0,0,8,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,47,47,0,0,7,1,0,0,0,0,8,11,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3,75,1,1,1,0,34,0,0,0,6,101,99,223,0,51,14,0,0,0,0,0,482,11,0,0,0,0,0,0,0,0,0,0,0,10,0,1,33,0,0,0,0,0,0,0,0,0,0,0,12,0,2,1364,544,4 +147,0,0,29,10,83,192,22,445,28,77,0,0,2,62,0,375,0,20,16,0,6,2,6,0,30,22,0,14,0,10,2,0,9,33,0,93,301,0,0,727,0,0,0,1,0,0,3,0,0,0,0,34,342,0,0,0,0,0,1,0,3,0,13,0,85,0,0,2963,83,1557,0,45,0,0,0,0,0,75,12,0,0,0,0,13,22,411,0,22,33,9,0,10,218,0,2096,100,3,0,0,14,10,1404,0,44,0,0,2521,0,0,0,0,48,41,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,17,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,329,0,237,0,0,0,44,81,292,1788,358,0,0,0,0,1,0,5,0,0,0,0,0,0,2732,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,144,1419,48,0,0,1558,0,2892,0,6,0,570,44,0,0,0,0,0,0,0,0,0,1173,1,0,0,0,30,0,0,0,0,28,276,603,0,0,215,0,0,0,0,0,9940,0,0,181,3,0,1,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,3,26,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,90,1,1,1,0,67,0,0,0,0,81,126,309,0,69,9,0,0,0,0,0,769,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,38,0,0,0,0,0,0,0,0,0,0,0,14,0,2,1640,1692,4 +1,0,0,3,0,26,5,0,20,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,26,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,97,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1011,26,60,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,183,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,455,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,134,0,45,0,0,0,1,4,178,14,132,0,0,0,0,1,0,3,0,0,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,129,4,0,0,137,0,305,0,0,0,35,5,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,108,17,0,0,0,0,0,0,0,0,104,0,0,132,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,1,0,0,0,0,1,28,66,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,190,52,4 +4,0,0,9,4,22,31,13,57,3,11,0,2,0,25,0,229,0,8,7,0,3,3,2,0,1,0,0,0,0,1,0,0,4,9,0,26,63,0,0,126,0,0,0,0,0,0,0,0,0,0,0,1,83,0,5,0,0,0,1,0,0,0,0,0,9,0,0,238,22,470,0,1,0,0,0,0,0,0,9,0,0,5,0,2,2,64,0,13,9,4,0,3,0,0,56,0,0,0,0,10,4,83,0,7,0,0,2555,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,59,0,64,0,0,0,0,3,59,82,129,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,130,56,331,13,0,0,350,0,791,0,1,0,107,10,0,0,0,0,0,0,0,0,0,363,0,0,0,0,15,0,0,0,0,0,124,10,0,0,0,0,0,0,0,0,377,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,20,1,1,1,0,1,0,0,0,0,33,35,30,0,2,0,0,0,0,0,0,169,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,277,35,4 +44,0,0,1,1,55,8,4,31,2,6,0,3,0,5,0,36,0,7,10,0,1,1,6,0,19,3,0,6,0,3,1,0,1,21,0,56,12,0,0,138,0,0,0,1,0,0,0,0,0,0,0,15,95,0,0,0,0,0,1,0,1,0,0,0,3,0,0,919,55,208,0,19,0,0,0,0,0,6,3,0,0,0,0,13,18,136,0,4,21,1,0,3,8,0,199,15,0,0,0,6,1,121,0,2,0,0,8372,0,0,0,0,11,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,129,0,79,0,0,0,17,27,220,167,119,0,0,0,0,1,0,3,0,0,0,0,0,0,391,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,52,260,2,0,0,222,0,388,0,0,0,91,31,0,0,0,0,0,0,0,0,0,96,0,0,0,0,18,0,0,0,0,14,146,19,0,0,30,0,0,0,0,0,125,0,0,4,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,13,0,0,0,0,9,77,37,0,23,9,0,0,0,0,0,128,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,133,834,4 +1,0,0,2,1,12,26,1,41,1,3,0,0,0,4,0,80,0,9,1,0,0,0,1,0,0,9,0,6,0,4,0,0,1,2,0,13,54,0,0,10,0,0,0,1,0,0,4,0,0,0,0,3,103,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1995,12,165,0,10,0,0,0,0,0,19,0,0,0,0,0,1,7,218,0,1,2,1,0,1,0,0,68,0,4,0,0,4,1,85,0,1,0,0,293,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,223,0,79,0,0,0,6,18,39,28,236,0,0,0,0,1,0,0,0,0,0,0,0,0,672,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,113,11,281,3,0,0,352,0,826,0,1,0,168,12,0,0,0,0,0,0,0,0,0,163,1,0,0,0,2,0,0,0,0,4,151,67,0,0,0,0,0,0,0,0,306,0,0,488,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,1,1,1,0,9,0,0,0,0,9,15,169,0,19,0,0,0,0,0,0,63,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,470,141,4 +1,0,0,7,0,11,2,0,11,0,3,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,2,0,3,0,0,0,1,0,11,6,0,0,8,0,0,0,1,0,0,2,0,0,0,0,2,85,0,0,0,0,0,1,0,0,0,0,0,1,0,0,19739,11,44,0,5,0,0,0,0,0,8,0,0,0,0,1,1,5,368,0,0,1,0,0,0,0,0,10,0,4,0,0,2,0,14,0,0,0,0,6974,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,267,0,34,0,0,0,4,5,26,6077,269,0,0,0,0,1,0,0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,5,105,10,0,0,102,0,209,0,0,0,42,11,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,93,31,0,0,0,0,0,0,0,0,129,0,0,375,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,6,0,0,0,0,1,12,169,0,5,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,243,11,4 +0,0,0,9,0,30,5,0,28,0,4,0,0,2,4,0,20,0,6,3,0,0,0,5,0,8,0,0,3,0,3,0,0,0,5,0,30,6,0,0,26,0,0,0,1,0,0,4,0,0,0,0,3,174,0,0,0,0,0,1,0,0,0,0,0,4,0,0,11113,30,81,0,4,0,0,0,0,0,18,0,0,0,0,2,7,20,762,0,0,5,0,0,0,0,0,79,5,6,0,0,2,0,45,0,0,0,0,2423,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,474,0,65,0,0,0,4,4,184,15,467,0,0,0,0,1,0,3,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,10,163,13,0,0,197,0,393,0,0,0,87,4,0,0,0,0,0,0,0,0,0,69,1,0,0,0,8,0,0,0,0,1,118,46,0,0,0,0,0,0,0,0,346,0,0,79,3,0,1,1,0,0,0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,5,0,0,0,2,1,35,195,0,5,9,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,458,77,4 +0,0,0,0,0,8,4,0,12,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,61,8,36,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,12,0,0,0,0,0,2,8,0,79,15,0,0,0,4,0,46,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,17,0,0,0,0,3,21,58,29,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,39,0,24,0,0,0,5,7,0,0,0,0,0,0,0,0,0,41,0,0,0,0,2,0,0,0,0,0,91,16,0,0,30,0,0,0,0,0,24,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,4,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,14,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,44,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,7,4 +0,0,0,0,0,8,39,0,47,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,149,8,128,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,52,0,0,0,0,0,2,43,0,324,15,0,0,0,4,0,221,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,199,55,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,85,0,58,0,0,0,51,7,0,0,0,0,0,0,0,0,0,111,0,0,0,0,2,0,0,0,0,0,91,86,0,0,30,0,0,0,0,0,38,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,102,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,4,4 +3,0,0,0,1,49,14,1,27,0,3,0,3,0,4,0,54,0,6,5,0,1,0,7,0,14,21,0,10,0,8,0,0,1,19,0,49,15,0,0,71,0,0,0,1,0,0,0,0,0,0,0,14,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,929,49,236,0,22,0,0,0,0,0,3,3,0,0,0,0,8,13,158,0,1,19,1,0,2,10,0,198,0,0,0,0,6,1,230,0,0,0,0,947,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,9,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,10,10,10,0,0,0,109,0,78,0,0,0,20,42,205,141,135,0,0,0,0,1,0,4,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,30,236,1,0,0,197,0,198,0,0,0,103,7,0,0,0,0,0,0,0,0,0,111,0,0,0,0,13,0,0,0,0,14,156,35,0,0,0,0,0,0,0,0,187,0,0,6,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,15,0,0,0,0,1,68,51,0,44,9,0,0,0,0,0,118,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,171,403,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,408,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,141,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,30,0,27,0,0,0,2,4,27,94,44,0,0,0,0,1,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,47,3,0,0,47,0,142,0,0,0,5,13,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,11,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,33,0,67,0,0,0,3,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +32,0,0,0,10,31,11,40,98,3,11,0,2,0,5,0,98,0,7,25,0,10,10,3,0,1,3,0,7,0,6,1,0,10,12,0,41,12,0,0,48,0,0,0,0,0,0,0,0,0,0,0,7,78,0,0,0,0,0,1,0,0,0,0,0,2,0,0,385,31,906,0,15,0,0,0,0,0,2,30,0,0,0,0,7,7,26,0,40,12,10,0,2,0,0,74,0,0,0,0,6,10,113,0,2,0,0,698,0,0,0,0,3,2,0,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,0,12,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,26,0,0,0,0,0,0,48,0,39,0,0,0,13,19,80,109,72,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,40,465,12,0,0,442,0,442,0,0,0,123,91,0,0,0,0,0,0,0,0,0,232,0,0,0,0,48,0,0,0,0,8,114,3,0,0,0,0,0,0,0,0,197,0,0,7,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,22,0,0,0,8,81,53,12,0,18,0,0,0,0,0,0,50,10,0,0,0,0,0,0,0,0,0,0,0,10,0,1,3,0,0,0,0,0,0,0,0,0,0,0,17,0,0,183,545,4 +77,0,0,1,1,52,25,4,115,5,22,0,4,0,9,0,30,0,7,6,0,1,1,5,0,22,0,0,5,0,3,0,0,1,17,0,53,15,0,0,476,0,0,0,1,0,0,0,0,0,0,0,17,108,0,0,0,0,0,1,0,1,0,0,0,24,0,0,1328,52,338,0,20,0,0,0,0,0,16,3,0,0,0,0,8,13,267,0,4,17,1,0,4,88,0,784,15,0,0,0,8,1,506,0,6,0,0,1076,0,0,0,0,31,22,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,205,0,109,0,0,0,18,39,217,768,203,0,0,0,0,1,0,4,0,0,0,0,0,0,753,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,90,295,3,0,0,239,0,310,0,0,0,102,23,0,0,0,0,0,0,0,0,0,212,0,0,0,0,13,0,0,0,0,16,137,230,0,0,30,0,0,0,0,0,724,0,0,20,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,36,0,0,0,0,9,70,41,0,21,9,0,0,0,0,0,328,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,270,1137,4 +0,0,0,5,0,33,6,0,36,1,5,0,0,6,4,0,555,0,6,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,898,33,6,0,0,41,0,1,0,1,0,0,1,0,0,0,0,1,141,0,0,0,0,0,1,0,0,0,0,0,2,0,0,18566,33,611,0,2,0,0,0,0,0,12,0,0,0,0,0,8,18,4223,0,0,1,0,0,0,0,0,186,20,2,0,0,2,0,596,0,0,1,0,2919,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,583,0,30,0,0,0,0,3,251,1158,571,0,0,0,0,1,0,3,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,84,19,179,5,0,0,188,0,196,0,0,0,47,3,0,0,0,0,0,0,0,0,0,618,1,0,0,0,9,0,0,0,0,0,116,8,0,0,6,0,0,0,0,0,3329,1,0,763,6,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,1,0,0,0,0,1,34,128,0,3,12,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1849,25,4 +225,0,0,0,3,85,57,12,340,3,107,1,2,0,5,0,48,0,7,17,0,3,2,2,0,6,3,0,42,0,87,1,0,3,36,0,88,12,0,0,514,0,0,0,0,0,0,0,0,0,0,0,93,115,0,0,0,0,0,1,0,0,0,0,0,24,0,0,5318,85,1430,0,136,0,0,0,0,0,272,9,0,0,0,0,11,11,244,0,12,36,3,0,3,300,0,2749,405,0,0,0,6,3,1449,0,2,0,0,4230,0,0,0,0,88,94,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,81,0,0,0,81,0,0,0,0,0,1,0,13,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,75,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,229,0,177,0,0,0,180,180,164,1972,250,0,0,0,0,0,0,0,0,0,0,0,0,0,3988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,543,6,0,0,706,0,555,0,0,0,472,54,0,0,0,0,0,0,0,0,0,567,0,0,0,0,24,0,0,0,0,92,177,589,0,0,908,0,0,0,0,0,1115,0,0,87,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,85,1,1,1,0,219,0,0,0,0,25,124,36,0,139,0,0,0,0,0,0,644,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,1,0,0,0,0,0,0,0,0,0,0,6,0,0,1231,292,4 +147,0,0,36,18,105,217,54,385,45,63,0,0,2,88,0,518,0,24,65,0,97,2,6,0,53,22,0,30,0,7,2,0,17,44,0,117,400,160,0,786,0,0,0,1,0,0,5,1,0,0,0,53,412,0,0,0,0,0,1,0,3,0,12,0,82,0,0,3302,105,2620,0,80,0,0,0,0,0,55,30,0,0,0,0,12,26,439,0,54,44,17,0,11,96,0,1317,95,10,0,0,18,18,914,0,65,0,0,3122,0,0,0,0,72,36,0,0,35,0,0,1,0,0,0,21,0,0,0,0,0,0,0,5,0,0,0,10,0,0,0,2,0,1,0,22,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,4,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,85,10,10,10,0,0,0,407,0,269,0,0,0,60,101,338,1135,448,0,0,0,0,1,0,5,0,0,0,0,0,0,3108,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,0,0,0,0,1,0,884,416,1843,65,0,0,1877,0,4092,0,8,0,604,302,0,0,0,0,0,0,0,0,0,1297,0,0,2,0,170,0,0,0,0,45,340,247,0,0,211,0,0,0,0,0,10236,0,0,112,3,0,1,8,0,0,0,0,12,0,0,0,4,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,17,1,0,0,0,0,3,24,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,114,1,1,1,0,88,0,0,0,0,97,161,201,0,105,9,0,0,0,0,0,538,12,0,0,0,0,0,0,1,0,0,0,0,13,0,4,53,0,0,0,0,0,0,0,0,117,0,0,196,0,6,1999,2193,4 +6,0,0,4,0,20,3,0,11,0,4,0,0,0,3,0,17,0,6,1,0,0,0,1,0,2,0,0,1,0,1,0,0,0,6,0,20,6,0,0,13,0,0,0,1,0,0,1,1,0,0,0,2,27,0,0,0,0,0,1,0,0,0,0,0,4,0,0,174,20,44,0,4,0,0,0,0,0,7,0,0,0,0,0,1,4,49,0,0,6,0,0,0,0,0,9,0,3,1,0,2,0,17,0,1,0,0,199,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,61,0,57,0,0,0,2,5,44,15,78,0,0,0,0,1,0,0,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,4,111,4,0,0,115,0,2009,0,0,0,36,2,0,0,0,0,0,0,0,0,0,44,1,0,4,0,2,0,0,0,0,3,102,8,0,0,0,0,0,0,0,0,46,0,0,16,0,0,1,1,0,0,0,0,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,1,0,0,0,0,1,26,22,0,4,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,117,70,4 +36,0,0,1,1,55,12,4,56,2,13,0,3,0,5,0,37,0,7,9,0,1,1,5,0,16,3,0,6,0,2,1,0,1,22,0,56,12,0,0,179,0,0,0,1,0,0,0,0,0,0,0,11,91,0,0,0,0,0,1,0,1,0,0,0,7,0,0,834,55,252,0,15,0,0,0,0,0,10,3,0,0,0,0,11,16,136,0,4,22,1,0,4,31,0,368,30,0,0,0,6,1,228,0,2,0,0,6312,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,1,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,132,0,89,0,0,0,12,19,221,315,121,0,0,0,0,1,0,3,0,0,0,0,0,0,443,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,251,2,0,0,230,0,371,0,0,0,102,19,0,0,0,0,0,0,0,0,0,133,0,0,0,0,16,0,0,0,0,10,146,72,0,0,60,0,0,0,0,0,698,0,0,5,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,13,0,0,0,0,9,78,38,0,19,9,0,0,0,0,0,184,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,158,787,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,147,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,195,55,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,84,0,58,0,0,0,50,6,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,4,4 +0,0,0,7,0,35,41,0,56,0,2,0,0,2,4,1,1249,0,6,2,0,0,0,7,0,10,3,0,4,0,2,0,0,0,3,1009,35,6,0,0,40,0,2,0,1,0,0,3,0,0,0,0,2,940,0,0,0,0,0,1,0,0,0,0,0,4,0,0,160595,35,1445,0,3,0,0,0,0,0,71,0,0,0,0,1,8,21,14025,0,0,3,0,0,0,0,0,94,5,4,0,0,2,0,1255,0,0,0,0,42722,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,12,12,12,0,0,0,9270,0,86,0,0,0,2,7,327,7913,9229,0,0,0,0,1,0,3,0,0,0,0,0,0,40590,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,34,28,215,7,0,0,304,0,548,0,0,0,163,14,0,0,0,0,0,0,0,0,0,1361,1,0,0,0,9,0,0,0,0,2,138,38,0,0,0,0,0,0,0,0,5579,1,0,13055,32,0,1,1,1,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,2,0,2,0,0,0,32,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,2,0,0,0,0,27,38,121,0,7,12,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2401,574,4 +404,0,0,32,28,120,275,64,802,40,133,0,0,2,87,1,784,0,24,82,0,122,2,6,0,60,19,0,39,0,9,2,0,27,57,0,142,400,160,0,1430,0,0,0,1,0,0,5,1,0,0,0,61,491,0,0,0,0,0,1,0,3,0,21,0,141,0,0,4478,120,4222,0,99,0,0,0,0,0,104,60,0,0,0,0,14,28,641,0,64,57,27,0,12,398,0,3615,90,10,0,0,18,28,2558,0,63,0,0,4366,0,0,0,0,107,101,0,0,38,0,0,1,0,0,0,23,0,0,0,0,0,0,0,28,0,0,0,18,0,0,0,2,0,7,0,76,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,4,0,0,0,0,0,1,12,0,0,0,0,0,0,0,21,14,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,105,10,10,10,0,0,0,582,0,451,0,0,0,70,117,428,3182,612,0,0,0,0,1,0,4,0,0,0,0,0,0,5107,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,890,413,2239,68,0,0,2351,0,4276,0,8,0,820,173,0,0,0,0,0,0,0,0,0,2108,1,0,2,0,212,0,0,0,0,58,357,1029,0,0,192,0,0,0,0,0,11098,0,0,136,3,0,1,9,0,0,0,0,13,0,0,0,4,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,68,68,0,0,13,1,0,0,0,0,3,38,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,121,1,1,1,0,129,0,0,0,0,227,199,190,0,120,9,0,0,0,0,0,1369,32,0,0,0,0,0,0,1,0,0,0,0,23,0,6,50,0,0,0,0,0,0,0,0,117,0,0,201,0,5,2431,2476,4 +72,0,0,1,1,52,26,4,120,5,23,0,4,0,9,0,30,0,7,6,0,1,1,5,0,25,0,0,5,0,2,0,0,1,17,0,53,15,0,0,486,0,0,0,1,0,0,0,0,0,0,0,20,121,0,0,0,0,0,1,0,1,0,0,0,25,0,0,1324,52,348,0,23,0,0,0,0,0,16,3,0,0,0,0,8,13,260,0,4,17,1,0,4,93,0,827,15,0,0,0,8,1,534,0,6,0,0,1005,0,0,0,0,32,22,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,203,0,111,0,0,0,21,43,217,803,201,0,0,0,0,1,0,4,0,0,0,0,0,0,757,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,90,268,3,0,0,240,0,295,0,0,0,103,38,0,0,0,0,0,0,0,0,0,219,0,0,0,0,13,0,0,0,0,19,137,243,0,0,30,0,0,0,0,0,719,0,0,18,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,31,0,0,0,0,9,70,41,0,23,9,0,0,0,0,0,340,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,254,1211,4 +0,0,0,5,0,35,24,0,48,3,23,0,0,7,4,0,764,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12385,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,752,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41200,35,928,0,24,0,0,0,0,0,45,0,0,0,0,0,8,92,6766,0,0,1,0,0,0,0,0,361,25,2,0,0,2,0,852,0,0,87,0,4651,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1520,0,32,0,0,0,13,16,486,2061,1499,0,0,0,0,1,0,3,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,276,5,0,0,305,0,294,0,0,0,146,13,0,0,0,0,0,0,0,0,0,876,1,0,0,0,9,0,0,0,0,1,162,7,0,0,130,0,0,0,0,0,4725,1,0,1024,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,62,0,0,0,0,1,36,212,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2501,27,4 +30,0,0,0,0,16,13,0,49,0,12,0,2,0,3,0,14,0,7,1,0,0,0,1,0,5,0,0,0,0,1,0,0,0,5,0,16,15,0,0,103,0,0,0,0,0,0,0,0,0,0,0,5,46,0,0,0,0,0,1,0,0,0,0,0,8,0,0,528,16,125,0,6,0,0,0,0,0,16,0,0,0,0,0,1,1,131,0,0,5,0,0,3,43,0,350,15,0,0,0,6,0,227,0,0,0,0,240,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,117,0,90,0,0,0,5,7,36,320,133,0,0,0,0,0,0,0,0,0,0,0,0,0,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,25,89,1,0,0,95,0,166,0,0,0,50,6,0,0,0,0,0,0,0,0,0,100,0,0,0,0,2,0,0,0,0,5,103,109,0,0,30,0,0,0,0,0,630,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,0,0,0,0,0,1,21,5,0,6,0,0,0,0,0,0,203,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,106,4 +0,0,0,0,0,8,40,0,48,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,130,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,44,0,331,15,0,0,0,4,0,226,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,203,55,0,0,0,0,0,0,0,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,86,0,59,0,0,0,52,3,0,0,0,0,0,0,0,0,0,113,0,0,0,0,2,0,0,0,0,0,91,88,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,104,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,4,4 +75,0,0,1,1,54,25,4,121,10,22,0,4,0,15,0,42,0,7,6,0,1,1,5,0,29,12,0,5,0,3,0,0,1,18,0,55,15,0,0,501,0,0,0,1,0,0,0,0,0,0,0,24,115,0,0,0,0,0,1,0,1,0,0,0,30,0,0,1410,54,380,0,27,0,0,0,0,0,16,3,0,0,0,0,8,13,278,0,4,18,1,0,4,88,0,798,15,0,0,0,8,1,571,0,12,0,0,3383,0,0,0,0,37,22,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,35,10,10,10,0,0,0,230,0,125,0,0,0,25,60,222,785,218,0,0,0,0,1,0,4,0,0,0,0,0,0,813,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,96,293,3,0,0,246,0,332,0,0,0,106,22,0,0,0,0,0,0,0,0,0,236,0,0,0,0,13,0,0,0,0,23,139,231,0,0,30,0,0,0,0,0,739,0,0,18,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,31,0,0,0,0,9,73,42,0,40,9,0,0,0,0,0,346,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,2,0,0,301,1378,4 +246,0,0,10,14,176,212,38,517,57,85,0,6,0,102,1,964,0,17,27,0,10,6,10,2,56,42,0,21,0,14,4,0,12,97,0,190,52449,6564,0,1053,0,0,0,1,0,0,6,1,0,0,0,65,463,0,0,0,0,0,1,0,2,0,28,0,104,0,0,39796,176,3033,0,83,0,0,0,0,0,154,27,0,0,0,0,22,33,8167,0,38,97,12,0,12,254,0,2428,135,11,0,0,20,14,2514,0,71,1,0,6649,0,0,0,0,55,69,2,0,31,0,0,1,0,0,0,22,0,0,0,0,0,0,0,13,0,0,0,34,0,0,0,0,0,2,0,30,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,40,8,0,0,0,0,0,2,0,0,0,0,0,6,22,0,0,0,3,0,0,0,0,12,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,121,12,12,12,0,0,2,5112,2,484,0,0,2,81,318,439,137307,5156,0,0,0,0,1,0,5,0,0,0,0,0,0,10882,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,471,219,1683,27,0,0,1867,0,2211,0,4,0,896,128233,0,0,0,0,0,0,0,0,0,1904,1,0,2,0,55,0,0,0,0,51,373,700,0,0,318,0,0,0,0,0,65043,0,0,8424,3,0,1,11,0,0,0,0,13,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,17,1,0,0,0,0,3,132,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,186,1,1,1,0,566,0,0,0,0,188,287,436,1,128,9,0,0,0,0,0,971,19,0,0,0,0,0,0,0,0,0,0,0,15,0,2,63,0,0,0,0,0,0,0,0,8,0,0,27,0,4,4673,1926,4 +0,0,0,5,0,36,24,0,47,3,23,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12475,36,6,0,0,44,0,1,0,1,0,0,2,0,0,0,0,1,681,0,0,0,0,0,1,0,0,0,0,0,2,0,0,44697,36,919,0,23,0,0,0,0,0,49,0,0,0,0,0,8,94,7374,0,0,1,0,0,0,0,0,359,25,4,0,0,2,0,836,0,0,81,0,4522,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,2040,0,37,0,0,0,13,16,493,2047,2014,0,0,0,0,1,0,3,0,0,0,0,0,0,994,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,108,25,285,5,0,0,329,0,329,0,0,0,167,15,0,0,0,0,0,0,0,0,0,859,1,0,0,0,9,0,0,0,0,1,166,23,0,0,127,0,0,0,0,0,4772,1,0,1863,22,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,260,0,25,12,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2649,27,4 +10,0,0,8,0,12,2,0,15,0,2,0,0,0,7,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,6,0,0,18,0,1,0,1,0,0,1,0,0,0,0,1,35,0,0,0,0,0,1,0,0,0,0,0,2,0,0,985,12,43,0,3,0,0,0,0,0,4,0,0,0,0,0,1,4,475,0,0,0,0,0,0,0,0,12,0,2,0,0,2,0,26,0,0,0,0,116,0,0,0,0,3,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,56,0,31,0,0,0,2,5,27,15,64,0,0,0,0,1,0,0,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,83,16,0,0,96,0,210,0,0,0,27,4,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,2,94,20,0,0,0,0,0,0,0,0,208,0,0,733,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,363,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,74,0,3,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,243,10,4 +0,0,0,14,1,22,26,1,33,0,4,0,0,0,7,0,77,0,8,5,0,0,0,0,0,1,3,0,2,0,1,0,0,1,8,0,23,79,4,0,33,0,0,0,1,0,0,0,0,0,0,0,1,58,0,0,0,0,0,1,0,0,0,0,0,8,0,0,143,22,115,0,3,0,0,0,0,0,0,0,0,0,0,0,2,3,4,0,1,8,1,0,1,0,0,51,0,0,0,0,4,1,58,0,4,0,0,276,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,24,0,31,0,0,0,2,10,40,27,33,0,0,0,0,1,0,0,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,18,249,19,0,0,269,0,2889,0,1,0,86,4,0,0,0,0,0,0,0,0,0,155,0,0,0,0,5,0,0,0,0,1,121,17,0,0,0,0,0,0,0,0,438,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,1,1,1,0,6,0,0,0,0,9,31,54,0,7,0,0,0,0,0,0,61,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,148,106,4 +0,0,0,10,0,18,4,0,25,1,7,0,0,0,4,0,19,0,7,1,0,0,0,1,0,0,0,0,5,0,9,0,0,0,5,0,18,6,0,0,36,0,0,0,1,0,0,1,0,0,0,0,8,69,1,0,0,0,0,1,0,0,0,2,0,7,0,0,18073,18,68,0,14,0,0,0,0,0,6,0,0,0,0,0,1,3,3482,0,0,5,0,0,1,9,0,111,15,1,0,0,2,0,67,0,1,0,0,586,0,0,0,0,2,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2550,0,54,0,0,0,16,14,42,150,2567,0,0,0,0,1,0,0,0,0,0,0,0,0,4631,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,7,115,14,0,0,99,0,233,0,0,0,30,2,0,0,0,0,0,0,0,0,0,66,1,0,0,0,2,0,0,0,0,6,102,20,0,0,31,0,0,0,0,0,1638,0,0,5003,0,0,1,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,21,0,0,0,10,1,23,12,0,14,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,3,0,0,0,0,0,0,0,0,0,0,0,0,1,2306,60,4 +5,0,0,3,0,10,2,0,15,0,2,0,0,0,4,0,15,0,7,1,0,0,0,1,0,0,0,0,2,0,4,0,0,0,0,0,10,6,0,0,35,0,1,0,1,0,0,2,0,0,0,0,3,45,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1408,10,53,0,6,0,0,0,0,0,9,0,0,0,0,0,1,8,558,0,0,0,0,0,0,0,0,23,0,4,0,0,2,0,23,0,0,0,0,243,0,0,0,0,6,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,103,0,36,0,0,0,6,9,26,24,114,0,0,0,0,1,0,0,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,85,5,0,0,114,0,264,0,0,0,51,8,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,4,92,41,0,0,0,0,0,0,0,0,220,0,0,811,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,365,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,8,0,0,0,0,1,10,128,0,6,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,271,14,4 +119,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,556,0,20,45,0,98,2,6,0,33,22,0,17,0,8,2,0,11,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,344,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2497,89,1765,0,49,0,0,0,0,0,21,15,0,0,0,0,13,22,290,0,27,38,11,0,8,37,0,730,70,3,0,0,14,11,582,0,46,0,0,2556,0,0,0,0,47,16,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,289,0,228,0,0,0,42,73,334,590,302,0,0,0,0,1,0,6,0,0,0,0,0,0,2123,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1431,49,0,0,1495,0,2942,0,6,0,504,264,0,0,0,0,0,0,0,0,0,1111,1,0,0,0,151,0,0,0,0,29,283,149,0,0,155,0,0,0,0,0,10415,0,0,167,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,4,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,63,0,0,0,0,115,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,177,0,3,1620,1615,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,0,0,0,34,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +0,0,0,5,0,35,24,0,47,3,23,0,0,7,4,0,729,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12461,35,6,0,0,44,0,1,0,1,0,0,2,0,0,0,0,1,682,0,0,0,0,0,1,0,0,0,0,0,2,0,0,44680,35,899,0,23,0,0,0,0,0,49,0,0,0,0,0,8,92,7544,0,0,1,0,0,0,0,0,359,25,4,0,0,2,0,817,0,0,85,0,4322,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,2123,0,37,0,0,0,12,15,485,2055,2098,0,0,0,0,1,0,3,0,0,0,0,0,0,993,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,108,25,276,5,0,0,326,0,328,0,0,0,166,18,0,0,0,0,0,0,0,0,0,840,1,0,0,0,9,0,0,0,0,1,164,23,0,0,129,0,0,0,0,0,4681,1,0,1840,22,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,260,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2659,27,4 +0,0,0,3,0,10,2,0,5,0,2,0,0,0,4,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,10,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,396,10,24,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,6,0,0,0,0,2,0,15,0,0,0,0,125,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,25,0,0,0,0,3,25,51,45,0,0,0,0,1,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,42,3,0,0,41,0,124,0,0,0,5,2,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,1,92,4,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,1,0,0,0,0,1,10,4,0,2,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,1,4 +20,0,0,0,0,23,4,0,9,3,1,0,2,0,5,0,20,0,6,5,0,0,0,1,0,2,3,0,3,0,2,1,0,0,11,0,23,12,0,0,66,0,0,0,0,0,0,0,0,0,0,0,4,31,0,0,0,0,0,1,0,0,0,0,0,2,0,0,207,23,46,0,8,0,0,0,0,0,0,0,0,0,0,0,5,5,23,0,0,11,0,0,2,0,0,32,0,0,0,0,6,0,46,0,2,0,0,1704,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,48,0,71,0,0,0,6,12,44,49,59,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,104,2,0,0,93,0,213,0,0,0,45,14,0,0,0,0,0,0,0,0,0,47,0,0,0,0,6,0,0,0,0,5,114,2,0,0,0,0,0,0,0,0,43,0,0,3,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,10,0,0,0,0,1,34,11,0,11,0,0,0,0,0,0,77,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,165,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1,0,0,0,0,0,0,0,0,97,8,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,1,28,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,26,0,0,0,0,3,21,4,42,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,43,0,26,0,0,0,9,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,4,4 +0,0,0,5,0,36,24,0,48,3,23,0,0,7,4,0,784,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12408,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,706,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39795,36,948,0,24,0,0,0,0,0,45,0,0,0,0,0,8,92,6581,0,0,1,0,0,0,0,0,360,25,2,0,0,2,0,872,0,0,85,0,4841,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1389,0,33,0,0,0,13,16,495,2061,1367,0,0,0,0,1,0,3,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,284,5,0,0,309,0,294,0,0,0,147,15,0,0,0,0,0,0,0,0,0,896,1,0,0,0,9,0,0,0,0,1,165,7,0,0,129,0,0,0,0,0,4767,1,0,1036,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,212,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2555,30,4 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 +0,0,0,17,3,14,75,3,88,12,12,0,0,0,22,0,172,0,12,2,0,0,0,1,0,0,0,0,0,0,1,0,0,3,4,0,17,223,0,0,147,0,0,0,1,0,0,1,0,0,0,0,0,121,0,0,0,0,0,1,0,0,0,0,0,14,0,0,546,14,269,0,0,0,0,0,0,0,5,0,0,0,0,0,2,4,83,0,3,4,3,0,4,11,0,225,20,1,0,0,8,3,133,0,9,0,0,554,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,92,0,140,0,0,0,0,3,46,647,524,0,0,0,0,1,0,0,0,0,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,338,57,572,26,0,0,590,0,1084,0,3,0,187,24,0,0,0,0,0,0,0,0,0,381,1,0,0,0,3,0,0,0,0,0,146,60,0,0,45,0,0,0,0,0,542,0,0,20,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,12,1,1,1,0,0,0,0,0,0,25,21,96,0,1,0,0,0,0,0,0,196,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,14,0,0,0,0,0,0,0,0,0,0,0,3,0,1,477,223,4 +83,0,0,1,1,53,25,4,121,10,22,0,4,0,15,0,42,0,7,6,0,1,1,5,0,33,12,0,5,0,2,0,0,1,18,0,54,15,0,0,501,0,0,0,1,0,0,0,0,0,0,0,27,112,0,0,0,0,0,1,0,1,0,0,0,30,0,0,1481,53,382,0,30,0,0,0,0,0,16,3,0,0,0,0,8,13,279,0,4,18,1,0,4,88,0,802,15,0,0,0,8,1,575,0,12,0,0,1553,0,0,0,0,35,22,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,35,10,10,10,0,0,0,227,0,116,0,0,0,27,68,218,794,214,0,0,0,0,1,0,4,0,0,0,0,0,0,833,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,96,309,3,0,0,243,0,299,0,0,0,106,31,0,0,0,0,0,0,0,0,0,236,0,0,0,0,13,0,0,0,0,26,138,231,0,0,30,0,0,0,0,0,749,0,0,18,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,32,0,0,0,0,9,72,42,0,43,9,0,0,0,0,0,344,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,2,0,0,292,1505,4 +1,0,0,3,0,28,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,118,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1228,28,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,201,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,602,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,13,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,149,0,51,0,0,0,1,4,182,14,147,0,0,0,0,1,0,3,0,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0,2,1,8,0,0,0,0,1,0,32,10,136,3,0,0,160,0,325,0,0,0,54,13,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,110,37,0,0,0,0,0,0,0,0,109,0,0,134,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,138,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,196,57,4 +199,0,0,17,6,94,263,6,599,38,120,0,0,2,63,1,522,0,27,10,0,0,0,10,0,30,18,0,20,0,6,4,0,6,44,0,100,294,0,0,1068,0,0,0,1,0,0,3,1,0,0,0,32,298,0,0,0,0,0,1,0,0,0,17,0,118,0,0,3045,94,1528,0,50,0,0,0,0,0,66,0,0,0,0,0,19,28,361,0,6,44,6,0,12,427,0,3741,220,6,0,0,14,6,2485,0,49,0,0,2968,0,0,0,0,23,65,1,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,25,0,0,0,21,0,0,0,1,0,3,0,32,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,1,0,0,0,0,0,15,4,0,0,0,0,0,0,0,0,7,0,0,0,0,51,0,1,0,0,0,0,0,0,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,3,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,32,10,10,10,0,0,0,310,0,284,0,0,0,40,59,415,2943,363,0,0,0,0,1,0,3,0,0,0,0,0,0,2465,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,1,0,659,140,1283,26,0,0,1417,0,2954,0,6,0,528,99,0,0,0,0,0,0,0,0,0,1597,1,0,2,0,20,0,0,0,0,30,274,1033,0,0,532,0,0,0,0,0,1743,0,0,46,3,0,1,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,36,0,0,1,0,0,0,0,0,0,0,0,53,53,0,0,6,1,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,6,149,1,1,1,0,42,0,0,0,0,101,144,106,0,69,9,0,0,0,0,0,1298,11,0,0,0,0,0,0,0,0,0,0,0,7,0,1,52,0,0,0,0,0,0,0,0,0,0,0,6,0,2,913,1156,4 +28,0,0,9,0,54,6,0,25,8,3,0,0,2,16,0,85,0,7,5,0,0,0,10,0,19,9,0,5,0,3,1,0,0,15,4,54,18,0,0,77,0,0,0,1,0,0,1,0,0,0,0,12,181,0,0,0,0,0,1,0,0,0,0,0,18,0,0,3715,54,156,0,14,0,0,0,0,0,10,0,0,0,0,0,14,23,775,0,0,15,0,0,0,0,0,128,5,2,0,0,2,0,167,0,10,0,0,1187,0,0,0,0,1,6,1,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,9,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,10,12,12,12,0,0,0,462,0,76,0,0,0,14,28,256,133,468,0,0,0,0,1,0,3,0,0,0,0,0,0,853,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,34,22,313,10,0,0,323,0,404,0,0,0,164,61,0,0,0,0,0,0,0,0,0,144,1,0,0,0,15,0,0,0,0,18,175,50,0,0,0,0,0,0,0,0,635,1,0,486,4,0,1,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,16,0,0,0,0,1,69,247,0,25,12,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,478,251,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,42,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,4 +305,0,0,28,26,109,251,59,761,35,129,0,0,2,78,0,493,0,22,78,0,121,1,7,0,61,10,0,34,0,5,2,0,25,50,0,129,352,159,0,1355,0,0,0,1,0,0,5,1,0,0,0,58,418,0,0,0,0,0,1,0,2,0,21,0,133,0,0,4240,109,3682,0,90,0,0,0,0,0,106,57,0,0,0,0,13,27,598,0,59,50,25,0,11,398,0,3558,90,10,0,0,16,26,2419,0,56,0,0,3180,0,0,0,0,71,88,0,0,39,0,0,1,0,0,0,18,0,0,0,0,0,0,0,25,0,0,0,16,0,0,0,2,0,7,0,71,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,2,0,0,0,0,0,1,13,0,0,0,0,0,0,0,20,6,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,92,10,10,10,0,0,0,486,0,350,0,0,0,63,82,364,3075,551,0,0,0,0,1,0,3,0,0,0,0,0,0,4723,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,780,383,2031,62,0,0,2128,0,3834,0,7,0,750,154,0,0,0,0,0,0,0,0,0,1736,1,0,2,0,207,0,0,0,0,50,325,1031,0,0,192,0,0,0,0,0,10528,0,0,132,3,0,1,8,0,0,0,0,13,0,0,0,4,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,3,0,0,0,0,3,9,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,114,1,1,1,0,54,0,0,0,0,161,179,190,0,103,9,0,0,0,0,0,1315,30,0,0,0,0,0,0,1,0,0,0,0,21,0,4,45,0,0,0,0,0,0,0,0,117,0,0,188,0,6,2355,1519,4 +150,0,0,29,10,84,186,22,415,30,71,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,15,0,7,3,0,9,33,0,94,301,0,0,671,0,0,0,1,0,0,3,0,0,0,0,28,360,0,0,0,0,0,1,0,3,0,13,0,81,0,0,2874,84,1505,0,40,0,0,0,0,0,70,12,0,0,0,0,13,22,399,0,22,33,9,0,10,188,0,1859,100,3,0,0,14,10,1255,0,46,0,0,2208,0,0,0,0,54,38,0,0,31,0,0,1,0,0,0,18,0,0,0,0,0,0,0,7,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,38,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,327,0,235,0,0,0,36,75,296,1582,357,0,0,0,0,1,0,5,0,0,0,0,0,0,2635,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1429,48,0,0,1552,0,2900,0,6,0,562,40,0,0,0,0,0,0,0,0,0,1133,1,0,0,0,30,0,0,0,0,22,279,525,0,0,215,0,0,0,0,0,9933,0,0,182,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,76,0,0,0,0,81,127,309,0,64,9,0,0,0,0,0,699,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1610,1659,4 +49,0,0,12,11,78,213,10,333,10,43,0,0,6,41,1,1202,0,23,13,0,4,0,10,0,22,0,0,49,0,5,0,0,10,31,835,88,390,0,0,285,0,0,0,1,0,0,2,0,0,0,0,14,515,0,0,0,0,0,1,0,0,0,0,0,30,0,0,17961,78,1927,0,60,0,0,0,0,0,14,6,0,0,0,1,18,35,3395,0,10,31,10,0,10,67,0,1071,50,4,0,0,20,11,1372,0,19,2,0,1842,0,0,0,0,23,6,4,0,0,0,0,1,0,0,0,10,0,0,0,0,2,0,0,4,0,0,0,1,0,0,0,0,0,11,3,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,1,19,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,44,12,12,12,0,0,0,688,0,170,0,0,0,17,21,364,1399,760,0,0,0,0,1,0,4,0,0,0,0,0,0,1187,0,0,0,0,0,0,0,0,0,1,0,0,2,1,0,0,0,0,0,1,1,915,117,1590,24,0,0,1721,0,3024,0,8,0,533,103,0,0,0,0,0,0,0,0,0,1862,1,0,0,0,27,0,0,0,0,6,286,234,0,0,84,0,2,0,0,1,3660,1,0,47,7,0,1,3,0,0,0,0,3,0,0,0,1,0,0,0,0,0,11,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,90,1,1,1,0,61,0,0,0,6,81,119,263,0,62,14,0,0,0,0,0,429,13,0,0,0,0,0,0,0,0,0,0,0,12,0,3,22,0,0,0,0,0,0,0,0,0,0,0,10,0,2,1992,254,4 +120,0,0,29,11,91,157,27,271,30,38,0,0,2,66,1,568,0,20,44,0,99,2,6,0,33,22,0,17,0,7,3,0,10,38,0,101,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,327,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2612,91,1777,0,50,0,0,0,0,0,22,15,0,0,0,0,13,22,303,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,587,0,46,0,0,2635,0,0,0,0,48,17,1,0,33,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,298,0,242,0,0,0,42,73,350,591,306,0,0,0,0,1,0,6,0,0,0,0,0,0,2385,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1470,49,0,0,1502,0,2936,0,6,0,503,314,0,0,0,0,0,0,0,0,0,1123,1,0,0,0,151,0,0,0,0,29,285,149,0,0,155,0,0,0,0,0,10435,0,0,174,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,56,56,0,0,5,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,96,1,1,1,0,61,0,0,0,0,123,139,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,185,0,3,1880,1623,4 +83,0,0,25,8,75,164,17,388,26,69,0,0,2,56,0,309,0,18,14,0,5,1,6,0,26,13,0,14,0,4,2,0,7,28,0,83,253,0,0,643,0,0,0,1,0,0,3,0,0,0,0,24,324,0,0,0,0,0,1,0,2,0,12,0,76,0,0,2837,75,1289,0,35,0,0,0,0,0,72,9,0,0,0,0,13,22,347,0,17,28,7,0,9,198,0,1879,100,3,0,0,12,8,1243,0,40,0,0,1750,0,0,0,0,28,32,0,0,30,0,0,1,0,0,0,16,0,0,0,0,0,0,0,7,0,0,0,7,0,0,0,0,0,1,0,17,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,10,10,10,0,0,0,274,0,217,0,0,0,29,49,279,1563,315,0,0,0,0,1,0,4,0,0,0,0,0,0,2412,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,556,117,1191,42,0,0,1338,0,2558,0,5,0,501,47,0,0,0,0,0,0,0,0,0,1006,1,0,0,0,26,0,0,0,0,18,254,548,0,0,215,0,0,0,0,0,9789,0,0,164,3,0,1,5,0,0,0,0,4,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,82,1,1,1,0,31,0,0,0,0,65,111,291,0,50,9,0,0,0,0,0,688,8,0,0,0,0,0,0,0,0,0,0,0,9,0,1,36,0,0,0,0,0,0,0,0,0,0,0,11,0,3,1550,780,4 +360,0,0,10,14,183,221,38,510,76,83,0,5,0,129,1,912,0,17,19,0,10,6,9,3,67,57,0,23,0,17,4,0,12,110,0,197,65785,6791,0,1082,0,0,0,1,0,0,6,1,0,0,0,79,479,0,0,0,0,0,1,0,3,0,20,0,110,0,0,38799,183,2938,0,99,0,0,0,0,0,140,27,0,0,0,0,14,25,7945,0,38,110,12,0,11,243,0,2361,155,11,0,0,18,14,2530,0,83,1,0,8596,0,0,0,0,117,86,2,0,29,0,0,1,0,0,0,21,0,0,0,0,0,0,0,21,0,0,0,41,0,0,0,0,0,2,0,29,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,80,8,0,0,0,0,0,2,0,0,0,0,0,9,27,0,0,0,3,0,0,0,0,8,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,2,133,12,12,12,0,0,2,5045,2,502,0,0,2,98,380,432,134170,5055,0,0,0,0,1,0,13,0,0,0,0,0,0,10921,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,464,244,1786,27,0,0,1876,0,2325,0,4,0,926,124585,0,0,0,0,0,0,0,0,0,1878,1,0,2,0,47,0,0,0,0,62,377,659,0,0,374,0,0,0,0,0,78317,0,0,8041,3,0,1,12,0,0,0,0,15,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,27,1,0,0,0,0,3,167,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,193,1,1,1,0,641,0,0,0,0,184,307,461,1,159,9,0,0,0,0,0,996,19,0,0,0,0,0,0,0,0,0,0,0,15,0,2,82,1,0,0,0,0,0,0,24,7,0,0,26,0,4,4571,2709,4 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,1,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,225,8,23,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,7,0,0,0,0,0,0,0,0,6,0,0,0,0,2,0,7,0,0,0,0,242,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,32,0,0,0,0,3,22,5,29,0,0,0,0,1,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,67,0,179,0,0,0,36,9,0,0,0,0,0,0,0,0,0,26,1,0,0,0,2,0,0,0,0,0,90,36,0,0,0,0,0,0,0,0,20,0,0,5,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,83,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,402,4 +0,0,0,5,0,37,22,0,65,3,24,0,0,9,5,0,1073,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,2,11073,37,6,0,0,52,0,2,0,1,0,0,2,0,0,0,0,1,485,0,0,0,0,0,1,0,0,0,0,0,2,0,0,75394,37,1261,0,23,0,0,0,0,0,43,0,0,0,0,0,8,136,12336,0,0,2,0,0,0,0,0,415,35,3,0,0,2,0,1172,0,0,122,0,7745,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,12,12,12,0,0,0,2142,0,49,0,0,0,13,16,2170,8375,2114,0,0,0,0,1,0,3,0,0,0,0,0,0,2777,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,144,85,288,5,0,0,338,0,458,0,0,0,180,22,0,0,0,0,0,0,0,0,0,1204,1,0,0,0,9,0,0,0,0,1,156,43,0,0,152,0,0,0,0,0,8502,1,0,3164,19,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,19,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,61,0,0,0,0,1,39,171,0,24,12,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4599,65,4 +4,0,0,6,0,19,3,0,23,2,10,0,0,0,9,0,17,0,7,1,0,0,0,2,0,1,0,0,3,0,3,0,0,0,11,0,19,6,0,0,57,0,0,0,1,0,0,3,0,0,0,0,3,68,0,0,0,0,0,1,0,0,0,0,0,6,0,0,566,19,85,0,7,0,0,0,0,0,14,0,0,0,0,0,2,6,110,0,0,11,0,0,1,8,0,92,15,5,0,0,2,0,75,0,2,0,0,262,0,0,0,0,5,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,109,0,62,0,0,0,6,5,45,84,119,0,0,0,0,1,0,0,0,0,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,28,119,6,0,0,128,0,187,0,0,0,68,4,0,0,0,0,0,0,0,0,0,69,1,0,0,0,3,0,0,0,0,2,101,37,0,0,29,0,0,0,0,0,75,0,0,113,0,0,1,0,0,0,0,0,7,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,9,0,0,0,0,1,30,296,0,7,0,0,0,0,0,0,69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,161,25,4 +0,0,0,3,0,34,9,0,31,0,2,0,0,2,2,0,547,0,6,2,0,0,0,8,0,11,0,0,4,0,1,0,0,0,2,900,34,6,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,236,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41368,34,601,0,1,0,0,0,0,0,16,0,0,0,0,0,9,21,8057,0,0,2,0,0,0,0,0,93,5,2,0,0,2,0,562,0,0,0,0,2597,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,4517,0,34,0,0,0,0,3,248,1128,4503,0,0,0,0,1,0,3,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,183,3,0,0,201,0,193,0,0,0,55,2,0,0,0,0,0,0,0,0,0,599,1,0,0,0,10,0,0,0,0,0,117,9,0,0,0,0,0,0,0,0,3195,1,0,775,10,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,10,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,307,0,2,14,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1746,30,4 +158,0,0,3,0,36,2,0,10,2,3,0,0,0,6,0,20,0,6,2,0,0,0,0,0,55,6,0,13,0,1,2,0,0,18,0,36,6,0,0,23,0,0,0,0,0,0,0,0,0,0,0,57,55,0,0,0,0,0,1,0,0,0,0,0,6,0,0,855,36,107,0,71,0,0,0,0,0,1,0,0,0,0,0,1,1,3,0,0,18,0,0,0,0,0,128,0,0,0,0,2,0,112,0,4,0,0,1203,0,0,0,0,4,1,0,0,13,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,63,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,31,0,51,0,0,0,59,58,60,290,39,0,0,0,0,0,0,0,0,0,0,0,0,0,529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,242,3,0,0,130,0,293,0,0,0,67,17,0,0,0,0,0,0,0,0,0,47,0,0,0,0,2,0,0,0,0,48,126,2,0,0,0,0,0,0,0,0,93,0,0,2,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,19,0,0,0,0,1,54,18,0,77,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,871,4 +1,0,0,3,0,29,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,112,0,0,0,0,0,1,0,0,0,0,0,2,0,0,970,29,57,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,139,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,480,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,125,0,50,0,0,0,1,4,189,14,122,0,0,0,0,1,0,3,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,1,0,32,10,136,3,0,0,188,0,316,0,0,0,81,7,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,111,64,0,0,0,0,0,0,0,0,69,0,0,41,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,226,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,146,55,4 +0,0,0,10,0,17,4,0,25,1,7,0,0,0,4,0,19,0,7,1,0,0,0,1,0,0,0,0,5,0,8,0,0,0,5,0,17,6,0,0,36,0,0,0,1,0,0,1,0,0,0,0,7,70,1,0,0,0,0,1,0,0,0,2,0,7,0,0,18625,17,67,0,13,0,0,0,0,0,6,0,0,0,0,0,1,3,3612,0,0,5,0,0,1,9,0,107,15,1,0,0,2,0,66,0,1,0,0,477,0,0,0,0,2,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2642,0,53,0,0,0,14,12,38,148,2658,0,0,0,0,1,0,0,0,0,0,0,0,0,4722,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,7,114,14,0,0,96,0,230,0,0,0,30,7,0,0,0,0,0,0,0,0,0,66,1,0,0,0,2,0,0,0,0,5,101,20,0,0,31,0,0,0,0,0,1685,0,0,5190,0,0,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,19,0,0,0,8,1,22,12,0,13,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,3,0,0,0,0,0,0,0,0,0,0,0,0,1,2391,59,4 +270,0,0,29,21,95,166,37,377,33,43,0,0,2,70,2,810,0,20,67,0,117,2,6,0,36,22,0,21,0,8,2,0,20,41,0,115,301,160,0,451,0,0,0,1,0,0,4,0,0,0,0,37,408,0,0,0,0,0,1,0,3,0,12,0,55,0,0,2637,95,3491,0,57,0,0,0,0,0,20,45,0,0,0,2,14,25,270,0,37,41,20,0,7,29,0,694,55,5,0,0,14,21,688,0,50,0,0,2812,0,0,0,0,61,31,0,0,26,0,0,1,0,0,0,19,0,0,0,0,0,0,0,27,0,0,0,13,0,0,0,0,0,7,0,66,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,20,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,311,0,288,0,0,0,45,76,418,537,313,0,0,0,0,1,0,5,0,0,0,0,0,0,3001,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,677,362,1804,59,0,0,1851,0,3158,0,6,0,595,376,0,0,0,0,0,0,0,0,0,1490,1,0,0,0,192,0,0,0,0,36,289,134,0,0,125,0,0,0,0,0,10726,0,0,166,4,0,1,7,0,0,0,0,6,0,0,0,2,0,0,0,0,0,32,0,0,0,0,0,0,0,0,1,0,0,107,107,0,0,9,1,0,0,0,0,3,17,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,102,1,1,1,0,54,0,0,0,0,245,156,370,0,80,9,0,0,0,0,0,304,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,37,0,0,0,0,0,0,0,0,117,0,0,196,0,2,1857,1860,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,26,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,18,0,0,0,0,3,21,4,28,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,47,0,0,0,2,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,4,4 +196,0,0,26,17,75,193,26,346,33,45,0,0,2,74,1,644,0,22,31,0,18,2,5,0,44,16,0,27,0,4,2,0,17,33,0,92,540,0,0,370,0,0,0,1,0,0,0,0,0,0,0,43,327,0,0,0,0,0,1,0,0,0,2,0,52,0,0,2024,75,2448,0,69,0,0,0,0,0,4,30,0,0,0,0,15,20,144,0,26,33,17,0,8,48,0,886,80,0,0,0,16,17,724,0,49,0,0,2947,0,0,0,0,34,19,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,17,0,0,0,6,0,0,0,0,0,7,0,57,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,1,0,0,0,0,0,0,13,0,0,0,3,0,0,0,12,2,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,52,10,10,10,0,0,0,147,0,164,0,0,0,48,63,343,574,158,0,0,0,0,1,0,4,0,0,0,0,0,0,1813,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,773,176,1657,50,0,0,1696,0,2608,0,7,0,489,109,0,0,0,0,0,0,0,0,0,1327,0,0,0,0,56,0,0,0,0,45,273,107,0,0,187,0,0,0,1,0,14894,0,0,7,4,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,1,0,0,0,0,53,53,0,0,7,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,79,1,1,1,0,44,0,0,0,0,185,125,72,0,84,9,0,0,0,0,0,343,40,0,0,0,0,0,0,0,0,0,0,0,18,0,1,39,0,0,0,0,0,0,0,0,0,0,0,21,0,0,935,1166,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,0,0,0,96,8,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,1,27,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,28,0,0,0,0,3,21,4,42,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,43,0,26,0,0,0,9,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,4,4 +238,0,0,10,14,172,204,38,482,61,78,0,5,0,106,2,1088,0,17,19,0,10,6,10,2,64,51,0,20,0,13,4,0,12,98,0,186,56539,6716,0,981,0,0,0,1,0,0,5,1,0,0,0,72,455,0,0,0,0,0,1,0,2,0,26,0,100,0,0,36867,172,3036,0,91,0,0,0,0,0,139,27,0,0,0,0,14,25,7447,0,38,98,12,0,11,219,0,2158,135,10,0,0,18,14,2379,0,74,1,0,5527,0,0,0,0,59,69,2,0,32,0,0,1,0,0,0,22,0,0,0,0,0,0,0,11,0,0,0,37,0,0,0,0,0,2,0,27,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,40,8,0,0,0,0,0,2,0,0,0,0,0,6,23,0,0,0,3,0,0,0,0,10,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,127,12,12,12,0,0,2,4703,2,538,0,0,2,87,254,480,134811,4720,0,0,0,0,1,0,5,0,0,0,0,0,0,10502,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,464,213,1719,27,0,0,1818,0,2158,0,4,0,865,125832,0,0,0,0,0,0,0,0,0,1982,1,0,2,0,47,0,0,0,0,62,361,605,0,0,318,0,0,0,0,0,69070,0,0,8128,4,0,1,12,0,0,0,0,14,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,2,0,0,0,0,59,59,0,0,13,1,0,0,0,0,3,86,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,180,1,1,1,0,343,0,0,0,0,234,284,412,1,143,9,0,0,0,0,0,886,19,0,0,0,0,0,0,0,0,0,0,0,15,0,2,67,1,0,0,0,0,0,0,0,7,0,0,27,0,5,4414,1933,4 +214,0,0,0,3,83,56,12,331,3,104,1,2,0,5,0,48,0,7,13,0,3,3,3,0,6,3,0,74,0,301,1,0,3,36,0,86,12,0,0,499,0,0,0,0,0,0,0,0,0,0,0,307,100,0,0,0,0,0,1,0,0,0,0,0,23,0,0,5804,83,1657,0,382,0,0,0,0,0,270,9,0,0,0,0,9,9,244,0,12,36,3,0,3,291,0,3564,395,0,0,0,6,3,1660,0,2,0,0,3879,0,0,0,0,85,92,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,77,0,0,0,76,0,0,0,0,0,1,0,12,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,73,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,226,0,189,0,0,0,608,612,161,2421,246,0,0,0,0,0,0,0,0,0,0,0,0,0,3946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,572,6,0,0,695,0,539,0,0,0,467,55,0,0,0,0,0,0,0,0,0,554,0,0,0,0,22,0,0,0,0,306,173,570,0,0,886,0,0,0,0,0,1313,0,0,301,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,83,1,1,1,0,679,0,0,0,592,25,122,36,0,385,0,0,0,0,0,0,626,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1253,2037,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,405,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,130,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,30,0,27,0,0,0,2,4,27,94,44,0,0,0,0,1,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,44,3,0,0,47,0,147,0,0,0,5,5,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +0,0,0,0,0,8,41,0,49,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,8,132,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,45,0,338,15,0,0,0,4,0,231,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,32,0,0,0,0,3,21,207,54,0,0,0,0,0,0,0,0,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,87,0,59,0,0,0,53,3,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2,0,0,0,0,0,91,90,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,106,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,4,4 +155,0,0,29,10,84,192,22,445,30,77,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,3,0,9,33,0,94,301,0,0,731,0,0,0,1,0,0,3,0,0,0,0,28,365,0,0,0,0,0,1,0,3,0,12,0,87,0,0,2849,84,1555,0,39,0,0,0,0,0,75,12,0,0,0,0,13,22,396,0,22,33,9,0,10,218,0,2080,100,3,0,0,14,10,1404,0,46,0,0,2111,0,0,0,0,50,42,0,0,28,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,38,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,330,0,240,0,0,0,36,75,296,1777,359,0,0,0,0,1,0,5,0,0,0,0,0,0,2745,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1426,48,0,0,1563,0,2894,0,6,0,572,47,0,0,0,0,0,0,0,0,0,1175,1,0,0,0,30,0,0,0,0,22,279,603,0,0,215,0,0,0,0,0,9922,0,0,185,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,75,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,771,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1620,1662,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,38,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,38,15,0,0,0,0,0,1,0,0,0,0,0,2,0,0,109,10,56,0,39,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,44,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,38,41,23,43,33,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,57,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,39,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,4 +147,0,0,29,10,84,188,22,425,27,73,0,0,2,61,0,375,0,20,15,0,6,2,7,0,34,22,0,14,0,9,3,0,9,33,0,94,301,0,0,701,0,0,0,1,0,0,3,0,0,0,0,38,351,0,0,0,0,0,1,0,3,0,12,0,80,0,0,2958,84,1525,0,49,0,0,0,0,0,73,12,0,0,0,0,13,22,411,0,22,33,9,0,10,198,0,1956,100,3,0,0,14,10,1306,0,43,0,0,2332,0,0,0,0,48,41,0,0,30,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,34,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,336,0,248,0,0,0,48,87,296,1664,367,0,0,0,0,1,0,5,0,0,0,0,0,0,2713,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,143,1468,48,0,0,1556,0,2894,0,6,0,565,54,0,0,0,0,0,0,0,0,0,1144,1,0,0,0,30,0,0,0,0,32,278,551,0,0,215,0,0,0,0,0,9937,0,0,175,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,62,0,0,0,0,81,127,309,0,73,9,0,0,0,0,0,730,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,37,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1621,1880,4 +258,0,0,32,27,104,198,64,432,41,65,0,0,2,81,0,501,0,22,82,0,122,1,7,0,59,13,0,38,0,6,2,0,26,47,0,124,352,160,0,722,0,0,0,1,0,0,5,1,0,0,0,57,418,0,0,0,0,0,1,0,2,0,12,0,70,0,0,3292,104,3438,0,93,0,0,0,0,0,45,60,0,0,0,0,14,28,440,0,64,47,26,0,10,71,0,1129,95,10,0,0,16,27,801,0,59,0,0,2911,0,0,0,0,74,33,0,0,34,0,0,1,0,0,0,21,0,0,0,0,0,0,0,27,0,0,0,17,0,0,0,2,0,7,0,74,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,2,0,0,0,0,0,1,15,0,0,0,0,0,0,0,19,14,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,96,10,10,10,0,0,0,380,0,242,0,0,0,63,87,351,968,450,0,0,0,0,1,0,4,0,0,0,0,0,0,3502,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,786,388,2024,70,0,0,2009,0,3828,0,7,0,637,230,0,0,0,0,0,0,0,0,0,1301,1,0,2,0,212,0,0,0,0,54,325,182,0,0,211,0,0,0,0,0,10212,0,0,129,3,0,1,8,0,0,0,0,12,0,0,0,4,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,0,3,11,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,109,1,1,1,0,65,0,0,0,0,161,171,203,0,109,9,0,0,0,0,0,452,30,0,0,0,0,0,0,1,0,0,0,0,21,0,6,49,0,0,0,0,0,0,0,0,117,0,0,172,0,5,2069,1545,4 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,1,0,0,122,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,37,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,33,0,31,0,0,0,0,3,22,7,53,0,0,0,0,1,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,2,0,0,61,0,71,0,0,0,31,3,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,30,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,60,0,1,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,1,4 +2,0,0,6,1,35,30,1,52,2,12,0,0,2,6,0,68,0,8,3,0,0,0,6,0,8,0,0,1,0,1,0,0,1,5,0,36,54,0,0,58,0,0,0,1,0,0,1,0,0,0,0,1,121,0,0,0,0,0,1,0,0,0,0,0,9,0,0,758,35,125,0,1,0,0,0,0,0,5,0,0,0,0,0,8,14,91,0,1,5,1,0,2,14,0,231,25,2,0,0,4,1,100,0,3,0,0,584,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4,10,10,10,0,0,0,75,0,252,0,0,0,0,3,197,147,98,0,0,0,0,1,0,3,0,0,0,0,0,0,481,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,137,24,282,7,0,0,296,0,556,0,1,0,71,10,0,0,0,0,0,0,0,0,0,178,1,0,0,0,9,0,0,0,0,1,131,41,0,0,45,0,0,0,0,0,158,0,0,12,2,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,37,1,1,1,0,0,0,0,0,0,9,41,30,0,2,8,0,0,0,0,0,83,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,594,35,4 +0,0,0,6,0,27,5,0,21,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,0,0,1,0,27,6,0,0,34,0,3,0,1,0,0,3,0,0,0,0,1,125,0,0,0,0,0,1,0,0,0,0,0,4,0,0,43897,27,55,0,1,0,0,0,0,0,15,0,0,0,0,0,7,16,5760,0,0,1,0,0,0,0,0,76,5,5,0,0,2,0,30,0,0,0,0,577,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,16,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,3828,0,51,0,0,0,0,3,181,10,3826,0,0,0,0,1,0,4,0,0,0,0,0,0,20255,0,0,0,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,1,0,32,10,154,6,0,0,173,0,288,0,0,0,62,12,0,0,0,0,0,0,4,0,0,55,1,0,0,0,8,0,0,0,0,0,113,46,0,0,0,0,0,0,0,0,3788,0,0,15148,3,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,3,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,0,0,1,28,239,0,2,9,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5746,326,4 +115,0,0,32,17,95,206,54,415,39,73,0,0,2,78,0,423,0,22,59,0,104,1,7,0,56,13,0,31,0,6,2,0,16,40,0,105,352,160,0,897,0,0,0,1,0,0,5,1,0,0,0,54,403,0,0,0,0,0,1,0,2,0,13,0,85,0,0,3750,95,2702,0,83,0,0,0,0,0,109,30,0,0,0,0,13,27,542,0,54,40,16,0,10,161,0,1762,95,10,0,0,16,17,1168,0,56,0,0,2974,0,0,0,0,55,44,0,0,39,0,0,1,0,0,0,19,0,0,0,0,0,0,0,6,0,0,0,11,0,0,0,3,0,1,0,24,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,3,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,76,10,10,10,0,0,0,429,0,289,0,0,0,60,84,316,1538,482,0,0,0,0,1,0,4,0,0,0,0,0,0,3740,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,780,385,1698,60,0,0,1729,0,3607,0,7,0,616,87,0,0,0,0,0,0,0,0,0,1219,1,0,2,0,171,0,0,0,0,47,315,416,0,0,211,0,0,0,0,0,10145,0,0,133,3,0,1,7,0,0,0,0,13,0,0,0,4,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,11,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,98,1,1,1,0,56,0,0,0,0,81,145,196,0,99,9,0,0,0,0,0,668,10,0,0,0,0,0,0,1,0,0,0,0,11,0,4,47,0,0,0,0,0,0,0,0,117,0,0,162,0,5,2238,1279,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,142,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,33,0,0,0,0,3,21,195,54,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,84,0,57,0,0,0,50,3,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,4,4 +1,0,0,3,0,29,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,116,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1094,29,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,174,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,433,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,141,0,48,0,0,0,1,4,189,14,138,0,0,0,0,1,0,3,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,1,0,32,10,135,4,0,0,153,0,330,0,0,0,42,6,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,111,24,0,0,0,0,0,0,0,0,96,0,0,126,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,119,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,177,54,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,146,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,70,0,48,0,0,0,36,5,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,4,4 +1,0,0,2,0,13,2,0,9,0,2,0,0,0,2,0,17,0,6,2,0,0,0,1,1,0,0,0,2,0,1,0,0,0,2,0,13,11,1,0,7,0,0,0,1,0,0,1,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,0,0,1,0,0,155,13,35,0,3,0,0,0,0,0,4,0,0,0,0,0,2,4,28,0,0,2,0,0,0,0,0,20,0,1,0,0,2,0,12,0,0,0,0,144,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,50,0,57,0,0,0,2,7,33,12,48,0,0,0,0,1,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,2,0,0,76,0,177,0,0,0,17,4,0,0,0,0,0,0,0,0,0,38,1,0,0,0,4,0,0,0,0,2,96,3,0,0,0,0,0,0,0,0,39,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,15,3,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,111,35,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,1,0,0,0,0,0,0,0,0,44,8,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,16,0,0,0,0,3,21,4,24,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,37,0,22,0,0,0,3,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,4,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,73,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,41,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,1,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,36,4 +0,0,0,3,0,10,3,0,24,1,3,0,0,0,8,0,26,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,44,0,1,0,1,0,0,1,1,0,0,0,0,279,0,0,0,0,0,1,0,0,0,0,0,9,0,0,4696,10,63,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,493,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,68,0,0,0,0,1178,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,36,0,38,0,0,0,0,3,28,12,45,0,0,0,0,1,0,0,0,0,0,0,0,0,2085,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,153,3,0,0,161,0,165,0,0,0,102,14,0,0,0,0,0,0,0,0,0,70,1,0,2,0,2,0,0,0,0,0,92,95,0,0,0,0,0,0,0,0,275,0,0,736,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,96,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,259,73,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,124,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1195,28,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,198,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,442,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,146,0,49,0,0,0,1,4,182,14,144,0,0,0,0,1,0,3,0,0,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,2,1,3,0,0,0,0,1,0,32,10,143,4,0,0,157,0,327,0,0,0,47,8,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,110,29,0,0,0,0,0,0,0,0,104,0,0,116,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,106,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,192,53,4 +119,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,556,0,20,45,0,98,2,6,0,33,22,0,17,0,8,2,0,10,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,353,0,0,0,0,0,1,0,3,0,11,0,52,0,0,2610,89,1766,0,49,0,0,0,0,0,21,15,0,0,0,0,13,22,315,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,583,0,46,0,0,2420,0,0,0,0,45,16,1,0,33,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,292,0,233,0,0,0,42,74,338,591,303,0,0,0,0,1,0,6,0,0,0,0,0,0,2185,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1494,49,0,0,1495,0,2942,0,6,0,503,256,0,0,0,0,0,0,0,0,0,1111,1,0,0,0,151,0,0,0,0,30,283,149,0,0,155,0,0,0,0,0,10433,0,0,169,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,9,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,63,0,0,0,0,119,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,160,0,3,1669,1621,4 +0,0,0,0,0,8,4,0,12,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,56,8,36,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,10,0,0,0,0,0,2,8,0,79,15,0,0,0,4,0,46,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,16,0,0,0,0,3,21,58,27,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,39,0,25,0,0,0,5,5,0,0,0,0,0,0,0,0,0,41,0,0,0,0,2,0,0,0,0,0,91,16,0,0,30,0,0,0,0,0,23,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,4 +149,0,0,29,10,83,187,22,420,30,73,0,0,2,63,0,375,0,20,16,0,6,2,6,0,26,22,0,15,0,8,2,0,9,33,0,93,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,350,0,0,0,0,0,1,0,3,0,12,0,82,0,0,2850,83,1513,0,40,0,0,0,0,0,71,12,0,0,0,0,13,22,397,0,22,33,9,0,10,193,0,1896,100,3,0,0,14,10,1280,0,46,0,0,2149,0,0,0,0,52,39,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,327,0,234,0,0,0,36,76,292,1615,356,0,0,0,0,1,0,5,0,0,0,0,0,0,2689,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1434,48,0,0,1550,0,2904,0,6,0,562,49,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,277,538,0,0,215,0,0,0,0,0,9933,0,0,191,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,90,1,1,1,0,78,0,0,0,0,81,126,309,0,64,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1610,1659,4 +0,0,0,3,0,9,3,0,24,1,3,0,0,0,8,0,26,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,44,0,1,0,1,0,0,1,1,0,0,0,0,277,0,0,0,0,0,1,0,0,0,0,0,9,0,0,4639,9,63,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,468,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,68,0,0,0,0,1243,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,35,0,37,0,0,0,0,3,24,12,44,0,0,0,0,1,0,0,0,0,0,0,0,0,2110,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,156,3,0,0,158,0,173,0,0,0,102,10,0,0,0,0,0,0,0,0,0,70,1,0,2,0,2,0,0,0,0,0,91,95,0,0,0,0,0,0,0,0,273,0,0,736,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,96,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,253,74,4 +1,0,0,5,0,41,16,0,51,6,12,0,0,6,4,1,813,0,6,2,0,0,0,8,0,11,0,0,18,0,5,0,0,0,5,1347,41,6,0,0,46,0,0,0,1,0,0,2,0,0,0,0,5,287,0,0,0,0,0,1,0,0,0,0,0,2,0,0,29471,41,939,0,19,0,0,0,0,0,33,0,0,0,0,0,9,68,3558,0,0,5,0,0,0,0,0,259,20,4,0,0,2,0,785,0,0,22,0,3080,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,1881,0,95,0,0,0,14,10,527,1782,1836,0,0,0,0,1,0,4,0,0,0,0,0,0,2360,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,34,231,5,0,0,246,0,316,0,0,0,89,49,0,0,0,0,0,0,0,0,0,909,1,0,0,0,10,0,0,0,0,2,124,27,0,0,51,0,0,0,0,0,2780,1,0,2664,17,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,39,39,0,0,3,0,0,0,0,0,17,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,40,0,0,0,0,33,46,234,0,20,14,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1031,190,4 +10,0,0,10,0,19,2,0,17,0,14,0,0,0,13,0,21,0,6,1,0,0,0,1,0,0,0,0,8,0,9,0,0,0,0,0,19,12,0,0,39,0,1,0,1,0,0,2,0,0,0,0,8,57,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1563,19,81,0,17,0,0,0,0,0,10,0,0,0,0,0,1,8,567,0,0,0,0,0,0,0,0,56,0,3,0,0,2,0,82,0,0,0,0,523,0,0,0,0,5,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,116,0,58,0,0,0,16,13,34,64,123,0,0,0,0,1,0,0,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,40,5,141,25,0,0,119,0,203,0,0,0,27,11,0,0,0,0,0,0,0,0,0,73,1,0,0,0,2,0,0,0,0,9,101,19,0,0,0,0,0,0,0,0,356,0,0,904,0,0,1,0,1,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,9,0,0,0,0,371,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,24,0,0,0,0,1,19,112,0,17,0,0,1,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,382,25,4 +3,0,0,5,6,13,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,2,3,0,2,0,0,0,0,6,3,0,19,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,99,0,0,0,0,0,1,0,0,0,0,0,25,0,0,513,13,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,41,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,306,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,58,0,45,0,0,0,2,10,44,224,96,0,0,0,0,1,0,1,0,0,0,0,0,0,422,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,117,36,391,11,0,0,400,0,603,0,1,0,103,10,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,109,74,0,0,57,0,0,0,0,0,537,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,6,0,0,0,0,49,22,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,11,0,0,214,36,4 +414,0,0,2,13,180,199,37,489,70,80,0,6,0,125,1,931,0,15,20,0,10,6,9,2,65,54,0,22,0,16,2,0,11,107,0,193,195,6363,0,1071,0,0,0,1,0,0,5,1,0,0,0,74,425,0,0,0,0,0,1,0,3,0,20,0,100,0,0,41702,180,2916,0,93,0,0,0,0,0,137,27,0,0,0,0,14,25,8620,0,37,107,11,0,11,243,0,2313,155,11,0,0,18,13,2565,0,73,1,0,7425,0,0,0,0,140,93,2,0,31,0,0,1,0,0,0,21,0,0,0,0,0,0,0,20,0,0,0,41,0,0,0,0,0,2,0,29,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,105,8,0,0,0,0,0,2,0,0,0,0,0,9,27,0,0,0,4,0,0,0,0,8,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,2,119,12,12,12,0,0,2,5452,2,503,0,0,2,90,425,430,137541,5452,0,0,0,0,1,0,13,0,0,0,0,0,0,11548,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,364,244,1732,20,0,0,1717,0,2018,0,3,0,881,128180,0,0,0,0,0,0,0,0,0,1846,1,0,2,0,47,0,0,0,0,58,363,659,0,0,374,0,0,0,0,0,12916,0,0,8750,3,0,1,12,0,0,0,0,14,0,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,1,0,0,0,0,3,204,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3,188,1,1,1,0,771,0,0,0,0,180,300,465,1,150,9,0,0,0,0,0,985,18,0,0,0,0,0,0,0,0,0,0,0,14,0,2,76,1,0,0,0,0,0,0,35,8,0,0,27,0,4,4521,2858,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,0,0,0,34,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +148,0,0,29,10,85,190,22,435,27,75,0,0,2,61,0,375,0,20,16,0,6,2,6,0,34,22,0,14,0,9,3,0,9,33,0,95,301,0,0,705,0,0,0,1,0,0,3,0,0,0,0,38,356,0,0,0,0,0,1,0,2,0,12,0,82,0,0,2941,85,1539,0,49,0,0,0,0,0,73,12,0,0,0,0,13,22,396,0,22,33,9,0,10,208,0,2030,100,3,0,0,14,10,1356,0,43,0,0,1999,0,0,0,0,51,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,327,0,236,0,0,0,48,87,300,1729,356,0,0,0,0,1,0,5,0,0,0,0,0,0,2734,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,143,1434,48,0,0,1559,0,2897,0,6,0,565,48,0,0,0,0,0,0,0,0,0,1158,1,0,0,0,30,0,0,0,0,32,277,577,0,0,215,0,0,0,0,0,9932,0,0,183,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,62,0,0,0,0,81,128,309,0,73,9,0,0,0,0,0,744,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,37,0,0,0,0,0,0,0,0,0,0,0,14,0,4,1603,1806,4 +20,0,0,0,0,24,4,0,9,3,1,0,2,0,5,0,20,0,6,5,0,0,0,1,0,2,3,0,3,0,2,1,0,0,11,0,24,12,0,0,66,0,0,0,0,0,0,0,0,0,0,0,4,31,0,0,0,0,0,1,0,0,0,0,0,2,0,0,216,24,46,0,8,0,0,0,0,0,0,0,0,0,0,0,5,5,23,0,0,11,0,0,2,0,0,32,0,0,0,0,6,0,46,0,2,0,0,368,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,49,0,70,0,0,0,6,12,48,49,60,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,113,2,0,0,96,0,218,0,0,0,45,14,0,0,0,0,0,0,0,0,0,47,0,0,0,0,6,0,0,0,0,5,115,2,0,0,0,0,0,0,0,0,49,0,0,3,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,10,0,0,0,0,1,35,11,0,11,0,0,0,0,0,0,77,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,166,4 +122,0,6,18,9,111,269,6,1232,43,138,0,0,2,69,0,12732,0,27,17,0,1,0,11,0,34,19,0,20,0,10,3,0,8,44,26,117,339,0,0,1196,0,3,0,1,0,0,3,1,0,0,0,39,355,0,0,0,0,0,1,0,0,0,17,0,134,0,0,4199,111,14432,0,57,0,0,0,0,0,82,0,0,0,0,0,25,35,825,0,6,44,8,0,13,482,0,4211,220,6,0,0,19,9,15033,0,54,0,0,4819,0,0,0,0,28,45,1,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,14,0,0,0,9,0,0,0,2,0,3,0,20,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,10,0,1,1,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1176,10,10,10,0,0,0,310,0,255,0,0,0,50,69,354,3361,363,0,0,0,0,1,0,3,0,0,0,24913,3,1,2418,0,0,0,0,0,0,0,0,0,0,0,0,4,1,2,0,0,0,0,1,0,887,31296,1426,30,0,0,1575,0,5991,0,7,0,582,742,0,0,0,0,0,0,0,0,0,14469,1,0,2,0,29,0,0,0,0,33,306,1177,0,6,517,0,0,0,0,0,26344,0,0,770,3,0,1,8,1,0,0,0,8,0,0,0,0,0,0,0,0,0,39,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,17,1,1,0,0,0,3,379,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,6,131,1,1,1,0,51,0,0,0,0,51,161,109,0,77,9,0,0,0,0,0,1481,11,0,0,0,0,0,0,0,0,0,0,0,7,0,1,59,0,0,0,0,0,0,0,0,0,0,0,12,0,2,1218,1321,4 +39,0,0,9,1,63,41,1,115,14,12,0,0,2,30,0,197,0,8,9,0,0,0,8,0,13,6,0,8,0,6,1,0,1,24,0,64,448,0,0,541,0,0,0,1,0,0,1,1,0,0,0,12,443,0,0,0,0,0,1,0,0,0,0,0,34,0,0,1301,63,366,0,18,0,0,0,0,0,8,0,0,0,0,0,16,26,168,0,1,24,1,0,2,23,0,347,35,4,1,0,4,1,278,0,25,0,0,1294,0,2,0,0,18,0,1,1,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,2,1,15,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,84,10,10,10,0,0,0,179,0,85,0,0,0,17,26,250,226,258,0,0,0,0,1,0,3,0,0,0,0,0,0,661,0,0,0,0,0,0,0,0,0,1,0,0,1,1,2,0,0,0,0,1,0,142,42,535,10,0,0,713,0,2939,0,1,0,446,64,0,0,0,0,0,0,0,0,0,405,1,0,3,0,17,0,0,0,0,12,237,167,0,0,77,0,42,0,0,0,500,0,0,49,3,0,1,1,0,0,0,0,6,0,0,0,2,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,69,1,1,1,0,18,0,0,0,0,9,88,61,0,25,9,0,0,0,0,0,1231,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,18,0,0,0,0,0,0,0,0,0,0,0,1,0,1,35164,77,4 +38,0,0,13,4,47,42,16,152,12,26,0,0,2,21,0,73,0,7,12,0,4,4,6,0,8,13,0,9,0,3,1,0,0,18,0,51,11,0,0,293,0,0,0,1,0,0,4,0,0,0,0,4,186,0,0,0,0,0,1,0,0,0,43,0,18,0,0,1994,47,698,0,11,0,0,0,0,0,22,12,0,0,0,0,9,19,272,0,16,18,0,0,0,87,0,763,20,7,0,0,2,4,637,0,14,0,0,1277,0,0,0,0,12,0,2,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,0,0,0,0,72,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,10,10,10,0,0,0,209,0,115,0,0,0,6,20,223,665,260,0,0,0,0,1,0,4,0,0,0,0,0,0,985,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,28,373,18,0,0,426,0,587,0,0,0,205,48,0,0,0,0,0,0,0,0,0,323,1,0,0,0,26,0,0,0,0,2,131,302,0,0,34,0,0,0,0,0,2988,0,0,207,3,0,1,1,0,0,0,0,8,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,18,0,0,0,0,33,69,286,0,25,9,0,0,0,0,0,273,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,16,0,0,0,0,0,0,0,0,0,0,0,9,0,4,2360,284,4 +8,0,0,8,0,38,5,0,496,10,234,0,0,0,22,0,16,0,6,1,0,0,0,2,0,0,0,0,5,0,6,0,0,0,28,0,38,6,0,0,630,0,0,0,1,0,0,6,0,0,0,0,5,100,0,0,0,0,0,1,0,0,0,15,0,36,0,0,1460,38,806,0,11,0,0,0,0,0,18,0,0,0,0,0,2,12,244,0,0,28,0,0,7,479,0,3969,1075,8,1,0,2,0,1860,0,17,0,0,674,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,2,0,6,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,206,0,114,0,0,0,10,13,65,1475,220,0,0,0,0,1,0,0,0,0,0,0,0,0,649,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,48,201,17,0,0,223,0,277,0,0,0,160,28,0,0,0,0,0,0,0,0,0,779,1,0,0,0,3,0,0,0,0,6,127,827,0,0,3137,0,0,0,0,0,87,0,0,252,0,0,1,0,0,0,0,0,9,0,0,0,3,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,15,0,0,0,0,1,66,193,0,11,0,0,0,0,0,0,865,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,4,278,54,4 +30,0,0,0,0,16,13,0,49,0,12,0,2,0,3,0,14,0,7,1,0,0,0,1,0,5,0,0,0,0,1,0,0,0,5,0,16,15,0,0,103,0,0,0,0,0,0,0,0,0,0,0,5,55,0,0,0,0,0,1,0,0,0,0,0,8,0,0,347,16,125,0,6,0,0,0,0,0,16,0,0,0,0,0,1,1,133,0,0,5,0,0,3,43,0,350,15,0,0,0,6,0,227,0,0,0,0,184,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,117,0,89,0,0,0,5,7,36,320,133,0,0,0,0,0,0,0,0,0,0,0,0,0,457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,25,79,1,0,0,95,0,84,0,0,0,50,2,0,0,0,0,0,0,0,0,0,100,0,0,0,0,2,0,0,0,0,5,103,109,0,0,30,0,0,0,0,0,632,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,0,0,0,0,0,1,21,5,0,6,0,0,0,0,0,0,203,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,105,4 +0,0,0,10,0,18,4,0,25,0,7,0,0,0,4,0,19,0,7,1,0,0,0,1,0,0,0,0,5,0,9,0,0,0,5,0,18,6,0,0,35,0,0,0,1,0,0,1,0,0,0,0,8,73,1,0,0,0,0,1,0,0,0,2,0,7,0,0,18227,18,68,0,14,0,0,0,0,0,6,0,0,0,0,0,1,3,3558,0,0,5,0,0,1,9,0,111,15,1,0,0,2,0,67,0,1,0,0,570,0,0,0,0,2,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2564,0,54,0,0,0,16,14,42,150,2581,0,0,0,0,1,0,0,0,0,0,0,0,0,4734,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,6,110,14,0,0,99,0,225,0,0,0,30,7,0,0,0,0,0,0,0,0,0,66,1,0,0,0,2,0,0,0,0,6,102,20,0,0,31,0,0,0,0,0,1645,0,0,5031,0,0,1,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,21,0,0,0,10,1,23,12,0,14,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,0,0,0,0,0,0,0,0,0,0,0,0,1,2379,61,4 +2,0,0,2,0,11,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,7,0,2,0,1,0,0,2,0,0,0,0,0,85,0,0,0,0,0,1,0,0,0,0,0,1,0,0,7996,11,42,0,1,0,0,0,0,0,9,0,0,0,0,0,1,5,1795,0,0,1,0,0,0,0,0,9,0,3,0,0,2,0,13,0,0,0,0,1473,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,68,0,0,0,2,0,0,0,0,0,0,479,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1102,0,209,0,0,0,0,3,27,5,1144,0,0,0,0,1,0,0,0,0,0,0,0,0,3349,0,0,0,0,0,0,0,0,0,0,0,0,2,0,64,0,0,0,0,1,0,8,3,323,2,0,0,201,0,755,0,0,0,135,28,0,0,0,0,0,0,130,0,0,40,1,0,0,0,2,0,0,0,0,0,93,125,0,0,0,0,0,0,0,0,521,0,0,2117,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,125,0,0,0,0,241,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,85,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,563,0,1,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,66,0,0,0,0,0,0,0,1,1113,5985,4 +142,0,0,28,10,84,188,22,425,26,71,0,0,2,58,0,375,0,20,16,0,6,2,6,0,38,22,0,17,0,9,2,0,9,33,0,94,301,0,0,695,0,0,0,1,0,0,3,0,0,0,0,41,360,0,0,0,0,0,1,0,3,0,12,0,78,0,0,2881,84,1519,0,55,0,0,0,0,0,70,12,0,0,0,0,13,22,413,0,22,33,9,0,10,198,0,1963,100,3,0,0,14,10,1305,0,42,0,0,1956,0,0,0,0,50,41,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,32,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,331,0,244,0,0,0,50,95,296,1670,363,0,0,0,0,1,0,5,0,0,0,0,0,0,2637,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,140,1412,47,0,0,1554,0,2893,0,6,0,564,50,0,0,0,0,0,0,0,0,0,1139,1,0,0,0,30,0,0,0,0,35,279,551,0,0,215,0,0,0,0,0,9946,0,0,170,3,0,1,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,65,0,0,0,0,81,127,309,0,79,9,0,0,0,0,0,729,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,36,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1654,1812,4 +99,0,0,24,4,70,113,7,157,3,16,0,0,2,21,0,187,0,12,6,0,1,1,5,0,19,9,0,9,0,5,0,0,4,21,0,74,164,0,0,283,0,0,0,1,0,0,8,0,0,0,0,16,264,0,0,0,0,0,1,0,1,0,0,0,18,0,0,5110,70,520,0,23,0,0,0,0,0,30,3,0,0,0,0,8,21,980,0,7,21,4,0,4,43,0,558,20,12,0,0,8,4,365,0,12,0,0,1855,0,0,0,0,42,21,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,33,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,750,0,252,0,0,0,19,53,257,378,717,0,0,0,0,1,0,4,0,0,0,0,0,0,2045,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,71,764,33,0,0,868,0,1543,0,3,0,284,32,0,0,0,0,0,0,2,0,0,508,1,0,0,0,13,0,0,0,0,16,200,156,0,0,34,0,0,0,0,0,1178,0,0,910,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,23,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,72,1,1,1,0,59,0,0,0,0,33,95,359,0,33,9,0,0,0,0,0,323,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,7,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1301,1492,4 +0,0,0,5,0,35,25,0,47,3,24,0,0,7,4,0,729,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12519,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,752,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40128,35,895,0,24,0,0,0,0,0,46,0,0,0,0,0,8,94,6554,0,0,1,0,0,0,0,0,367,25,2,0,0,2,0,817,0,0,90,0,5094,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1474,0,34,0,0,0,13,16,490,2089,1453,0,0,0,0,1,0,3,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,276,5,0,0,305,0,290,0,0,0,146,12,0,0,0,0,0,0,0,0,0,842,1,0,0,0,9,0,0,0,0,1,162,6,0,0,136,0,0,0,0,0,4620,1,0,1000,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,62,0,0,0,0,1,36,208,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2487,23,4 +54,0,0,1,1,59,12,4,59,2,13,0,3,0,5,0,45,0,7,9,0,1,1,7,0,23,12,0,7,0,4,1,0,1,23,0,60,12,0,0,179,0,0,0,1,0,0,0,0,0,0,0,20,95,0,0,0,0,0,1,0,1,0,0,0,7,0,0,1037,59,284,0,25,0,0,0,0,0,10,3,0,0,0,0,13,18,149,0,4,23,1,0,4,31,0,395,30,0,0,0,6,1,269,0,2,0,0,8620,0,0,0,0,16,11,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,29,10,10,10,0,0,0,155,0,95,0,0,0,23,43,226,346,132,0,0,0,0,1,0,3,0,0,0,0,0,0,520,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,288,2,0,0,242,0,426,0,0,0,105,33,0,0,0,0,0,0,0,0,0,144,0,0,0,0,18,0,0,0,0,19,150,72,0,0,60,0,0,0,0,0,729,0,0,7,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,18,0,0,0,0,9,83,39,0,38,9,0,0,0,0,0,190,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,165,1002,4 +0,0,0,3,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,2,0,0,18,8,18,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,3,0,0,32,0,95,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,7,4 +0,0,0,0,0,8,40,0,48,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,150,8,130,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,44,0,331,15,0,0,0,4,0,226,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,203,55,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,86,0,59,0,0,0,52,8,0,0,0,0,0,0,0,0,0,113,0,0,0,0,2,0,0,0,0,0,91,88,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,104,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,4,4 +21,0,0,7,1,54,35,1,68,13,6,0,4,0,23,0,89,0,8,30,0,91,0,5,0,27,0,0,18,0,2,0,0,1,19,0,55,59427,160,0,445,0,0,0,1,0,0,4,0,0,0,0,20,182,0,0,0,0,0,1,0,0,0,0,0,14,0,0,1148,54,476,0,36,0,0,0,0,0,22,0,0,0,0,0,8,21,287,0,1,19,1,0,5,8,0,249,15,6,0,0,10,1,176,0,13,0,0,758,0,0,0,0,21,4,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,52,10,10,10,0,0,0,238,0,139,0,0,0,20,33,215,225,261,0,0,0,0,1,0,3,0,0,0,0,0,0,1074,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,157,294,408,10,0,0,400,0,662,0,1,0,139,52,0,0,0,0,0,0,0,0,0,233,1,0,0,0,126,0,0,0,0,20,152,39,0,0,30,0,0,0,0,0,60315,0,0,68,3,0,1,4,0,0,0,0,8,0,0,0,3,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,53,1,1,1,0,22,0,0,0,0,9,74,129,0,38,9,0,0,0,0,0,148,2,0,0,0,0,0,0,1,0,0,0,0,2,0,4,15,0,0,0,0,0,0,0,0,117,0,0,119,0,4,803,684,4 +0,0,0,0,0,1,0,1,50,0,1,0,0,0,1,0,656,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,652,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,2,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,9,0,0,1,99,4 +0,0,0,0,0,9,30,0,38,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,1,0,0,140,9,110,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,47,0,0,0,0,0,2,34,0,261,15,0,0,0,4,0,176,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,33,0,0,0,0,3,25,162,55,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,45,1,0,0,79,0,51,0,0,0,42,3,0,0,0,0,0,0,0,0,0,93,0,0,0,0,2,0,0,0,0,0,92,68,0,0,30,0,0,0,0,0,33,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,4,4 +0,0,0,0,0,16,2,0,10,0,1,0,0,0,2,0,19,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,16,6,0,0,14,0,0,0,1,0,0,1,1,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2765,16,43,0,1,0,0,0,0,0,9,0,0,0,0,0,1,3,56,0,0,4,0,0,0,0,0,6,0,13,0,0,2,0,11,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,65,0,60,0,0,0,0,3,39,8,78,0,0,0,0,1,0,0,0,0,0,0,0,0,2247,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,45,3,102,0,0,0,109,0,149,0,0,0,36,16,0,0,0,0,0,0,0,0,0,41,1,0,13,0,2,0,0,0,0,0,101,11,0,0,0,0,0,0,0,0,154,0,0,32,0,0,1,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,20,36,0,1,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,13,4 +1,0,0,8,0,15,2,0,27,0,3,0,0,0,4,0,15,0,7,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,6,0,15,6,0,0,22,0,2,0,1,0,0,5,0,0,0,0,0,117,0,0,0,0,0,1,0,0,0,0,0,5,0,0,48415,15,74,0,1,0,0,0,0,0,20,0,0,0,0,1,2,11,10127,0,0,6,0,0,0,0,0,13,0,9,1,0,2,0,26,0,2,0,0,247,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,10,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,6063,0,54,0,0,0,0,3,33,5,6065,0,0,0,0,1,0,0,0,0,0,0,0,0,14357,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,7,103,8,0,0,180,0,252,0,0,0,109,3,0,0,0,0,0,0,0,0,0,58,1,0,0,0,3,0,0,0,0,0,98,69,0,0,0,0,0,0,0,0,2176,0,0,13959,0,0,1,0,0,0,0,0,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,14,1,1,1,0,0,0,0,0,0,1,21,313,0,1,0,0,0,1,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4235,23,4 +1,0,0,3,0,26,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,26,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,84,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1080,26,57,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,194,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,493,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,137,0,44,0,0,0,1,4,178,14,135,0,0,0,0,1,0,3,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,124,3,0,0,133,0,271,0,0,0,34,6,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,108,17,0,0,0,0,0,0,0,0,110,0,0,145,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,1,0,0,0,0,1,28,70,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,198,51,4 +299,0,0,10,12,158,185,45,826,6,173,0,27,0,12,0,210,0,8,33,0,11,11,7,0,32,12,0,32,0,129,1,0,12,80,0,170,132,0,0,1729,0,0,0,1,0,0,4,0,0,0,0,153,295,0,0,0,0,0,1,0,1,0,0,0,118,0,0,7766,158,3293,0,183,0,0,0,0,0,482,33,0,0,0,0,17,29,598,0,45,80,12,0,32,641,0,5653,250,8,0,0,56,12,3484,0,8,0,0,6103,0,0,0,0,100,116,0,0,2,0,0,1,0,0,0,18,0,0,0,0,0,0,0,45,0,0,0,52,0,0,0,0,0,7,0,19,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,55,10,10,10,0,0,0,576,0,555,0,0,0,283,314,444,4643,631,0,0,0,0,1,0,4,0,0,0,0,0,0,7034,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,281,364,1321,29,0,0,1717,0,1387,0,1,0,983,177,0,0,0,0,0,0,0,0,0,1441,1,0,0,0,62,0,0,0,0,150,263,1569,0,0,583,0,0,0,0,0,1567,0,0,251,3,0,1,9,0,0,0,0,10,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,1,0,0,0,0,3,274,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,160,1,1,1,0,339,0,0,0,232,97,250,444,0,197,9,0,0,0,0,0,1826,13,0,0,0,0,0,0,0,0,0,0,0,13,0,1,16,0,0,0,0,0,0,0,0,0,0,0,21,0,6,2290,2215,4 +0,0,0,2,0,10,2,0,25,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,105,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1570,10,53,0,1,0,0,0,0,0,9,0,0,0,0,0,1,4,273,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,24,0,0,0,0,160,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,166,0,33,0,0,0,0,3,26,6,175,0,0,0,0,1,0,0,0,0,0,0,0,0,423,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,8,3,106,8,0,0,144,0,297,0,0,0,66,9,0,0,0,0,0,0,2,0,0,53,1,0,0,0,2,0,0,0,0,0,96,48,0,0,0,0,0,0,0,0,89,0,0,269,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,257,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,27,4 +22,0,0,1,1,39,15,0,42,4,13,0,2,0,8,0,34,0,6,6,0,0,0,5,0,8,0,0,2,0,1,0,0,0,8,0,39,39,0,0,112,0,0,0,1,0,0,0,0,0,0,0,1,93,1,0,0,0,0,1,0,0,0,12,0,13,0,0,1098,39,215,0,1,0,0,0,0,0,60,0,0,0,0,0,8,13,216,0,0,8,0,0,2,28,0,305,15,0,0,0,8,1,187,0,5,0,0,581,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,3,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,6,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,10,10,0,0,0,169,0,107,0,0,0,0,3,195,272,186,0,0,0,0,1,0,3,0,0,0,0,0,0,889,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,0,41,35,161,2,0,0,233,0,494,0,0,0,124,5,0,0,0,0,0,0,0,0,0,120,0,0,0,0,11,0,0,0,0,0,130,80,0,0,43,0,0,0,0,0,40787,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,23,48,24,0,2,9,0,0,0,0,0,142,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,391,29,4 +238,0,0,0,3,86,60,12,378,3,123,1,2,0,5,0,48,0,7,13,0,3,3,3,0,6,3,0,76,0,346,1,0,3,38,0,89,12,0,0,565,0,0,0,0,0,0,0,0,0,0,0,352,107,0,0,0,0,0,1,0,0,0,0,0,27,0,0,6224,86,1828,0,429,0,0,0,0,0,297,9,0,0,0,0,9,9,273,0,12,38,3,0,4,338,0,4123,470,0,0,0,6,3,1903,0,2,0,0,3084,0,0,0,0,93,105,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,87,0,0,0,88,0,0,0,0,0,1,0,12,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,84,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,244,0,240,0,0,0,699,703,169,2793,264,0,0,0,0,0,0,0,0,0,0,0,0,0,4480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,552,6,0,0,736,0,530,0,0,0,504,76,0,0,0,0,0,0,0,0,0,624,0,0,0,0,22,0,0,0,0,351,177,659,0,0,1052,0,0,0,0,0,1295,0,0,347,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1,0,0,0,0,0,693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,86,1,1,1,0,773,0,0,0,684,25,127,38,0,432,0,0,0,0,0,0,713,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1381,2251,4 +0,0,0,5,0,36,24,0,46,3,23,0,0,7,4,0,712,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12400,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,734,0,0,0,0,0,1,0,0,0,0,0,2,0,0,38941,36,874,0,24,0,0,0,0,0,45,0,0,0,0,0,8,92,6352,0,0,1,0,0,0,0,0,362,25,2,0,0,2,0,800,0,0,89,0,4886,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,1268,0,34,0,0,0,13,16,493,2057,1246,0,0,0,0,1,0,3,0,0,0,0,0,0,264,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,290,5,0,0,314,0,299,0,0,0,152,15,0,0,0,0,0,0,0,0,0,822,1,0,0,0,9,0,0,0,0,1,170,7,0,0,131,0,0,0,0,0,4606,1,0,1029,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,212,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2556,30,4 +0,0,0,6,0,26,5,0,18,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,0,0,1,0,26,6,0,0,41,0,2,0,1,0,0,2,0,0,0,0,1,98,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2644,26,47,0,1,0,0,0,0,0,10,0,0,0,0,0,7,15,1065,0,0,1,0,0,0,0,0,74,5,3,0,0,2,0,27,0,0,0,0,1572,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,18,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,481,0,39,0,0,0,0,3,181,11,486,0,0,0,0,1,0,5,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,2,0,32,10,231,6,0,0,152,0,422,0,0,0,50,40,0,0,0,0,0,0,0,0,0,52,1,0,0,0,8,0,0,0,0,0,108,38,0,0,0,0,0,0,0,0,100,0,0,423,3,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,3,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,0,0,0,0,0,1,27,183,0,2,9,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,431,4 +26,0,0,6,0,45,36,0,51,30,35,0,0,7,8,0,942,0,7,1,0,0,0,8,0,10,12,0,22,0,5,0,0,0,3,5593,45,6,0,0,54,0,6,0,1,0,0,7,0,0,0,0,5,358,0,0,0,0,0,1,0,0,0,0,0,7,0,0,32492,45,1246,0,24,0,0,0,0,0,102,0,0,0,0,0,8,132,6679,0,0,3,0,0,0,0,0,408,25,11,0,0,2,0,1119,0,4,70,0,4890,0,0,0,0,10,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,2234,0,130,0,0,0,18,29,675,1434,2199,0,0,0,0,1,0,8,0,0,0,0,0,0,821,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,110,98,311,6,0,0,391,0,361,0,0,0,211,37,0,0,0,0,0,0,0,0,0,1086,1,0,0,0,9,0,0,0,0,2,148,58,0,0,171,0,0,0,0,0,5051,1,0,1087,36,0,1,1,1,0,0,0,17,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,36,365,0,0,0,4,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,53,0,0,0,0,1,48,221,0,37,12,0,1,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,34,0,0,0,0,0,0,0,0,0,0,0,0,0,7,2238,120,4 +117,0,0,29,11,89,156,27,272,30,38,0,0,2,66,1,562,0,20,44,0,99,2,6,0,33,22,0,17,0,7,3,0,10,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,330,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2466,89,1769,0,50,0,0,0,0,0,20,15,0,0,0,0,13,22,286,0,27,38,10,0,8,37,0,729,70,3,0,0,14,11,585,0,46,0,0,2734,0,0,0,0,46,15,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,20,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,284,0,230,0,0,0,42,73,337,593,295,0,0,0,0,1,0,6,0,0,0,0,0,0,2178,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1444,49,0,0,1495,0,2948,0,6,0,503,167,0,0,0,0,0,0,0,0,0,1117,1,0,0,0,151,0,0,0,0,31,283,149,0,0,155,0,0,0,0,0,10421,0,0,160,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,10,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,61,0,0,0,0,119,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,178,0,2,1641,1618,4 +0,0,0,0,0,8,4,0,12,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,54,8,36,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,10,0,0,0,0,0,2,8,0,79,15,0,0,0,4,0,46,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,16,0,0,0,0,3,21,58,27,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,39,0,27,0,0,0,5,3,0,0,0,0,0,0,0,0,0,41,0,0,0,0,2,0,0,0,0,0,91,16,0,0,30,0,0,0,0,0,23,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,4 +0,0,0,3,0,8,2,0,4,0,2,0,0,0,2,0,10,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,2,0,0,16,8,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,59,0,0,0,3,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,28,4 +0,0,0,0,0,8,39,0,47,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,128,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,43,0,324,15,0,0,0,4,0,221,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,199,55,0,0,0,0,0,0,0,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,85,0,58,0,0,0,51,3,0,0,0,0,0,0,0,0,0,111,0,0,0,0,2,0,0,0,0,0,91,86,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,102,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,4,4 +18,0,0,2,0,19,20,0,98,0,21,0,1,0,3,0,16,0,7,1,0,0,0,1,0,5,0,0,0,0,1,0,0,0,9,0,19,5103,0,0,208,0,0,0,0,0,0,0,0,0,0,0,5,63,0,0,0,0,0,1,0,0,0,0,0,17,0,0,499,19,185,0,6,0,0,0,0,0,12,0,0,0,0,0,1,1,108,0,0,9,0,0,2,88,0,683,15,0,0,0,4,0,458,0,0,0,0,287,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,93,0,76,0,0,0,5,7,36,624,109,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,28,116,2,0,0,100,0,151,0,0,0,61,8,0,0,0,0,0,0,0,0,0,166,0,0,0,0,2,0,0,0,0,5,103,224,0,0,30,0,0,0,0,0,5720,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,0,0,0,0,0,1,28,9,0,6,0,0,0,0,0,0,291,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,333,4 +283,0,0,28,21,98,166,37,380,32,43,0,0,2,69,3,991,0,20,67,0,117,2,6,0,38,22,0,19,0,8,2,0,20,42,0,118,301,160,0,383,0,0,0,1,0,0,4,0,0,0,0,39,386,0,0,0,0,0,1,0,3,0,12,0,53,0,0,2662,98,3643,0,58,0,0,0,0,0,21,45,0,0,0,1,14,24,288,0,37,42,20,0,7,29,0,694,55,5,0,0,14,21,739,0,49,0,0,2505,0,0,0,0,70,32,0,0,28,0,0,1,0,0,0,19,0,0,0,0,0,0,0,27,0,0,0,15,0,0,0,0,0,7,0,70,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,33,2,0,0,0,0,0,2,0,0,0,0,0,0,14,0,0,0,0,0,0,0,20,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,82,10,10,10,0,0,0,346,0,344,0,0,0,47,75,461,552,319,0,0,0,0,1,0,5,0,0,0,0,0,0,2898,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,677,341,1804,58,0,0,1867,0,3175,0,6,0,603,533,0,0,0,0,0,0,0,0,0,1674,1,0,0,0,192,0,0,0,0,38,298,134,0,0,125,0,0,0,0,0,10958,0,0,176,5,0,1,7,0,0,0,0,6,0,0,0,1,0,0,0,0,0,31,0,0,0,0,0,0,0,0,2,0,0,163,163,0,0,6,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,104,1,1,1,0,60,0,0,0,0,281,160,371,0,80,9,0,0,0,0,0,304,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,36,0,0,0,0,0,0,0,0,117,0,0,199,0,2,1810,1819,4 +0,0,0,8,2,14,50,2,56,9,7,0,0,0,18,6,122,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,4,0,16,140,0,0,45,0,0,0,1,0,0,7,0,0,0,0,1,114,0,0,0,0,0,1,0,0,0,0,0,17,0,0,3578,14,226,0,3,0,0,0,0,0,24,0,0,0,0,0,1,10,681,0,2,4,2,0,2,0,0,91,0,11,0,0,6,2,100,0,13,0,0,281,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,515,0,279,0,0,0,2,7,39,24,719,0,0,0,0,1,0,0,0,0,0,0,0,0,2635,0,196,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,220,37,406,10,0,0,458,0,912,0,2,0,160,12,0,0,0,0,0,0,0,0,0,270,1,0,0,0,2,0,0,0,0,1,132,50,0,0,0,0,0,0,0,0,617,0,0,786,0,0,1,0,0,0,0,0,16,0,0,0,2,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,12,1,1,1,0,2,0,0,0,0,17,20,172,0,6,0,0,0,0,0,0,92,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,2,0,2,1117,66,4 +121,0,0,29,11,90,157,27,272,30,38,0,0,2,66,2,738,0,20,45,0,98,2,6,0,33,22,0,17,0,8,2,0,10,38,0,100,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,339,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2558,90,1948,0,51,0,0,0,0,0,20,15,0,0,0,0,13,22,297,0,27,38,10,0,8,37,0,729,70,3,0,0,14,11,640,0,46,0,0,2503,0,0,0,0,46,17,1,0,33,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,20,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,33,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,60,10,10,10,0,0,0,311,0,285,0,0,0,42,74,381,594,299,0,0,0,0,1,0,6,0,0,0,0,0,0,2201,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1436,49,0,0,1497,0,2946,0,6,0,502,591,0,0,0,0,0,0,0,0,0,1295,1,0,0,0,151,0,0,0,0,32,283,149,0,0,155,0,0,0,0,0,10649,0,0,163,4,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,1,0,0,108,108,0,0,8,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,63,0,0,0,0,161,138,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,247,0,2,1713,1618,4 +13,0,0,0,0,15,2,0,3,0,1,0,0,0,2,0,13,0,7,3,0,0,0,1,0,0,0,0,4,0,3,0,0,0,3,0,15,6,4,0,22,0,0,0,0,0,0,0,0,0,0,0,3,56,0,0,0,0,0,1,0,0,0,0,0,0,0,0,121,15,28,0,7,0,0,0,0,0,0,0,0,0,0,0,2,2,16,0,0,3,0,0,0,0,0,22,0,0,0,0,2,0,18,0,0,0,0,160,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,30,0,21,0,0,0,6,37,36,28,37,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,59,0,0,0,53,0,150,0,0,0,11,7,0,0,0,0,0,0,0,0,0,28,0,0,0,0,4,0,0,0,0,3,97,1,0,0,0,0,0,0,0,0,101,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,9,0,0,0,0,1,18,3,0,7,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,24,4 +21,0,0,0,0,25,4,0,8,3,1,0,2,0,5,0,20,0,7,4,0,0,0,2,0,7,3,0,4,0,2,1,0,0,12,0,25,12,0,0,66,0,0,0,0,0,0,0,0,0,0,0,9,34,0,0,0,0,0,1,0,0,0,0,0,2,0,0,213,25,51,0,14,0,0,0,0,0,0,0,0,0,0,0,5,5,26,0,0,12,0,0,2,0,0,43,0,0,0,0,6,0,51,0,2,0,0,4866,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,14,0,0,0,0,0,0,50,0,78,0,0,0,11,16,48,69,61,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,125,2,0,0,99,0,231,0,0,0,48,15,0,0,0,0,0,0,0,0,0,47,0,0,0,0,6,0,0,0,0,9,116,2,0,0,0,0,0,0,0,0,45,0,0,3,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,11,0,0,0,0,1,37,12,0,17,0,0,0,0,0,0,75,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,253,4 +274,0,0,28,21,93,166,37,370,32,43,0,0,2,69,2,790,0,20,67,0,117,2,6,0,35,22,0,18,0,7,2,0,20,41,0,113,301,160,0,380,0,0,0,1,0,0,3,0,0,0,0,35,358,0,0,0,0,0,1,0,3,0,12,0,53,0,0,2471,93,3451,0,52,0,0,0,0,0,18,45,0,0,0,0,14,23,259,0,37,41,20,0,7,29,0,686,55,4,0,0,14,21,666,0,49,0,0,2601,0,0,0,0,61,31,0,0,26,0,0,1,0,0,0,19,0,0,0,0,0,0,0,25,0,0,0,13,0,0,0,0,0,7,0,69,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,33,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,20,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,293,0,272,0,0,0,43,72,396,531,302,0,0,0,0,1,0,5,0,0,0,0,0,0,2719,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,341,1767,58,0,0,1835,0,3144,0,6,0,586,663,0,0,0,0,0,0,0,0,0,1462,1,0,0,0,192,0,0,0,0,35,287,132,0,0,125,0,0,0,0,0,10697,0,0,157,4,0,1,7,0,0,0,0,6,0,0,0,1,0,0,0,0,0,31,0,0,0,0,0,0,0,0,1,0,0,101,101,0,0,6,1,0,0,0,0,3,18,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,96,1,1,1,0,55,0,0,0,0,233,154,317,0,75,9,0,0,0,0,0,304,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,36,0,0,0,0,0,0,0,0,117,0,0,216,0,2,1662,1804,4 +0,0,1,0,2,8,26,1,27,2,3,0,0,0,4,0,71,0,8,2,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,9,54,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,0,0,0,22,8,97,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0,1,0,1,0,1,0,0,42,0,0,0,0,4,2,27,0,1,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,12,0,0,0,0,3,25,6,26,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,15,170,2,0,0,192,0,324,0,1,0,42,12,0,0,0,0,0,0,0,0,0,139,0,0,0,0,2,0,0,0,0,0,105,3,0,1,0,0,0,0,0,0,116,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,1,1,1,0,0,0,0,0,0,9,9,1,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,7,4 +3,0,0,5,6,13,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,19,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,94,0,0,0,0,0,1,0,0,0,0,0,25,0,0,479,13,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,47,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,336,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,60,0,51,0,0,0,2,10,44,224,98,0,0,0,0,1,0,1,0,0,0,0,0,0,436,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,116,36,390,11,0,0,401,0,601,0,1,0,103,11,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,110,74,0,0,57,0,0,0,0,0,541,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,6,0,0,0,0,49,22,4,0,7,0,0,0,0,0,0,144,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,12,0,0,228,37,4 +3,0,0,4,0,33,6,0,13,1,3,0,0,2,5,0,18,0,7,3,0,0,0,6,0,8,0,0,5,0,6,0,0,0,6,0,33,6,0,0,28,0,0,0,1,0,0,2,0,0,0,0,6,98,0,0,0,0,0,1,0,0,0,0,0,6,0,0,989,33,54,0,9,0,0,0,0,0,11,0,0,0,0,0,8,16,234,0,0,6,0,0,0,0,0,84,5,4,0,0,2,0,30,0,3,0,0,999,0,1,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,10,10,10,0,0,0,163,0,85,0,0,0,10,4,190,26,164,0,0,0,0,1,0,4,0,0,0,0,0,0,371,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,13,153,4,0,0,153,0,259,0,0,0,55,8,0,0,0,0,0,0,0,0,0,54,1,0,0,0,9,0,0,0,0,2,122,18,0,0,0,0,0,0,0,0,88,0,0,57,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,13,0,0,0,0,1,39,46,0,10,9,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,231,68,4 +0,0,0,7,2,15,50,2,56,10,6,0,0,0,19,0,123,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,4,0,17,136,0,0,39,0,0,0,1,0,0,7,0,0,0,0,1,156,0,0,0,0,0,1,0,0,0,0,0,17,0,0,3796,15,227,0,3,0,0,0,0,0,27,0,0,0,0,0,1,10,723,0,2,4,2,0,2,0,0,88,0,13,1,0,6,2,89,0,14,0,0,398,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,565,0,298,0,0,0,2,7,40,24,747,0,0,0,0,1,0,0,0,0,0,0,0,0,2514,0,191,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,237,38,446,9,0,0,459,0,1531,0,2,0,158,28,0,0,0,0,0,0,0,0,0,265,1,0,0,0,2,0,0,0,0,1,134,43,0,0,0,0,0,0,0,0,729,0,0,856,0,0,1,0,0,0,0,0,19,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,13,1,1,1,0,2,0,0,0,0,17,21,172,0,6,0,0,0,0,0,0,89,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,1450,75,4 +147,0,0,29,10,84,187,22,420,27,72,0,0,2,61,0,375,0,20,16,0,6,2,6,0,34,22,0,14,0,10,2,0,9,33,0,94,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,38,355,0,0,0,0,0,1,0,3,0,12,0,79,0,0,2885,84,1513,0,49,0,0,0,0,0,70,12,0,0,0,0,13,22,407,0,22,33,9,0,10,193,0,1919,100,3,0,0,14,10,1281,0,43,0,0,2095,0,0,0,0,50,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,334,0,242,0,0,0,48,88,296,1632,366,0,0,0,0,1,0,5,0,0,0,0,0,0,2678,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,143,1422,48,0,0,1554,0,2879,0,6,0,564,53,0,0,0,0,0,0,0,0,0,1137,1,0,0,0,30,0,0,0,0,32,280,538,0,0,215,0,0,0,0,0,9934,0,0,168,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,64,0,0,0,0,81,127,309,0,73,9,0,0,0,0,0,718,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,37,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1620,1865,4 +10,0,0,3,0,39,6,0,42,0,9,0,0,0,2,0,17,0,6,1,0,0,0,1,0,0,0,0,4,0,5,0,4,0,26,0,39,6,0,0,49,0,0,0,1,0,0,18,0,0,0,0,4,120,0,0,0,0,0,1,0,0,0,0,0,6,0,0,35895,39,198,0,9,0,0,0,0,0,66,0,0,0,0,0,1,32,3446,0,0,26,0,0,1,23,0,234,15,28,0,0,2,0,137,0,0,0,0,5910,0,0,0,0,8,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2379,0,298,0,0,0,8,11,68,7566,2377,0,0,0,0,1,0,0,0,0,0,0,0,0,4518,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,10,3,490,3,0,0,526,0,563,0,0,0,454,36,0,0,0,0,0,0,0,0,0,82,1,0,0,0,2,0,0,0,0,5,121,380,0,0,30,0,0,0,0,0,1419,0,0,4944,0,0,1,0,0,0,0,0,32,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,12,0,0,0,0,1,65,1142,0,9,0,0,0,0,0,0,113,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1786,353,4 +0,0,0,6,0,40,56,0,99,1,38,0,0,8,3,0,946,0,6,1,0,0,0,8,0,11,0,0,43,0,1,0,0,0,1,14678,40,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,504,0,0,0,0,0,1,0,0,0,0,0,2,0,0,101506,40,1279,0,42,0,0,0,0,0,109,0,0,0,0,0,8,301,12413,0,0,1,0,0,0,0,0,569,30,2,0,0,2,0,1131,0,0,218,0,7596,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,5791,0,38,0,0,0,26,29,1413,6824,5722,0,0,0,0,1,0,3,0,0,0,0,0,0,7362,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,22,425,6,0,0,399,0,364,0,0,0,218,66,0,0,0,0,0,0,0,0,0,1156,1,0,0,0,9,0,0,0,0,1,174,72,0,0,290,0,0,0,0,0,6100,1,0,9751,53,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,53,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,119,0,0,0,0,1,41,278,0,43,12,0,1,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3401,307,4 +0,0,0,3,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,2,0,0,18,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,21,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,3,0,0,32,0,43,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,26,4 +70,0,0,25,9,81,133,22,235,26,34,0,0,2,58,2,648,0,18,44,0,96,1,6,0,32,13,0,17,0,5,2,0,8,33,0,89,253,160,0,337,0,0,0,1,0,0,3,0,0,0,0,30,310,0,0,0,0,0,1,0,2,0,12,0,45,0,0,2216,81,1684,0,47,0,0,0,0,0,21,12,0,0,0,0,13,22,247,0,22,33,8,0,7,37,0,676,70,3,0,0,12,9,569,0,40,0,0,2172,0,0,0,0,30,11,1,0,30,0,0,1,0,0,0,17,0,0,0,0,0,0,0,6,0,0,0,8,0,0,0,0,0,1,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,9,2,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,265,0,258,0,0,0,35,53,363,527,264,0,0,0,0,1,0,5,0,0,0,0,0,0,2046,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,573,309,1208,43,0,0,1279,0,2581,0,5,0,436,635,0,0,0,0,0,0,0,0,0,1130,1,0,0,0,147,0,0,0,0,27,260,143,0,0,155,0,0,0,0,0,10476,0,0,155,4,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,25,0,0,0,0,0,0,0,0,1,0,0,100,100,0,0,9,1,0,0,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,86,1,1,1,0,37,0,0,0,0,143,122,296,0,60,9,0,0,0,0,0,281,8,0,0,0,0,0,0,1,0,0,0,0,9,0,3,32,0,0,0,0,0,0,0,0,117,0,0,183,0,2,1701,791,4 +0,0,0,0,1,8,26,1,26,1,2,0,1,0,4,0,61,0,8,2,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,9,75,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,89,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,1,0,1,0,2,0,0,42,0,0,0,0,6,1,27,0,1,1,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,18,0,0,0,0,3,25,7,24,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,13,179,1,0,0,191,0,1797,0,1,0,41,1,0,0,0,0,0,0,0,0,0,128,0,0,0,0,2,0,0,0,0,0,106,1,0,0,0,0,0,0,0,0,207,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,1,1,1,0,0,0,0,0,0,9,9,1,0,1,0,0,0,0,0,0,35,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1285,12,4 +9,0,0,12,3,57,78,3,224,21,53,1,0,5,47,0,1747,0,13,16,0,2,0,5,7,2,3,0,21,0,1,0,0,3,27,0,60,144,34,0,3446,0,0,0,1,0,0,7,0,0,0,0,11,839,0,0,0,0,0,1,0,0,0,2,0,48,0,0,8155,57,2210,0,22,0,0,0,0,0,30,3,0,0,0,0,14,22,332,0,3,27,3,0,7,134,0,1417,200,10,0,0,6,3,3933,0,23,0,0,2874,0,0,1,0,27,8,9,0,6,0,0,1,0,0,0,22,0,0,11,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,388,0,177,0,0,0,22,62,898,1152,361,0,0,0,0,1,0,0,0,0,0,0,0,0,1042,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,2,2,0,309,61,989,27,0,0,884,0,5922,0,2,0,483,127,0,0,0,0,0,0,0,0,0,2168,1,0,0,0,30,0,0,0,0,11,236,467,0,0,457,0,0,0,0,0,2712,0,0,210,0,0,1,1,0,0,0,0,17,0,0,0,2,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,69,1,1,1,0,45,0,0,0,0,32,87,740,0,27,0,0,0,0,0,0,5268,4,0,0,0,0,0,0,0,0,0,0,0,3,1,1,31,1,0,0,0,0,0,0,0,0,0,0,4,0,8,854,179,4 +1,0,0,3,0,29,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,127,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1261,29,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,195,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,494,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,151,0,49,0,0,0,1,4,189,14,148,0,0,0,0,1,0,3,0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,2,1,3,0,0,0,0,1,0,32,10,150,4,0,0,163,0,327,0,0,0,51,14,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,111,33,0,0,0,0,0,0,0,0,102,0,0,128,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,122,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,191,53,4 +6,0,0,9,0,60,181,0,121,6,15,0,0,2,21,2,66,0,63,4,0,0,0,7,0,9,24,0,9,0,9,3,0,0,23,0,60,206,0,0,282,0,0,0,1,0,0,7,1,0,0,0,13,219,0,0,0,0,0,1,0,0,0,5,0,16,0,0,7749,60,545,0,20,0,0,0,0,0,35,0,0,0,0,1,10,25,707,0,0,23,0,0,1,94,0,839,60,17,0,0,2,0,714,0,10,0,0,2738,0,0,0,0,3,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,686,0,166,0,0,0,24,50,253,1341,662,0,0,0,0,1,0,16,0,0,0,0,0,0,2816,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,25,424,9,0,0,623,0,1306,0,0,0,480,95,0,0,0,0,0,0,0,0,0,471,1,0,6,0,11,0,0,0,0,12,159,386,0,0,293,0,0,0,0,0,1399,0,0,1798,3,0,1,1,1,0,0,0,24,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,23,0,0,0,0,1,83,632,0,45,9,0,0,0,0,0,289,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,972,1484,4 +0,0,0,0,0,10,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,136,10,96,0,1,0,0,0,0,0,11,0,0,0,0,0,1,1,43,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,34,0,0,0,0,3,29,138,53,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,49,1,0,0,75,0,47,0,0,0,35,685,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,93,56,0,0,30,0,0,0,0,0,32,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,4,4 +10,0,0,10,1,34,47,1,120,7,15,1,0,0,13,0,67,0,9,2,0,0,0,4,0,3,0,0,12,0,1,0,0,1,14,0,35,59,0,0,151,0,0,0,1,0,0,18,3,0,0,0,2,326,0,0,0,0,0,1,0,0,0,19,0,9,0,0,11463,34,340,0,14,0,0,0,0,0,65,0,0,0,0,5,5,31,1706,0,1,14,1,0,1,47,0,459,15,37,1,0,4,1,329,0,8,0,0,1515,0,0,0,0,34,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,7,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,1438,0,243,0,0,0,1,5,78,424,1391,0,0,0,0,1,0,0,0,0,0,0,0,0,3801,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,1,0,113,19,426,15,0,0,565,0,1606,0,1,0,341,44,0,0,0,0,0,0,0,0,0,272,1,0,9,0,6,0,0,0,0,2,200,244,0,0,34,0,0,0,0,0,902,0,0,2636,0,0,1,0,0,0,0,0,47,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,40,1,1,1,0,15,0,0,0,0,9,49,892,0,16,0,0,0,0,0,0,212,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,12,2058,181,4 +0,0,0,5,0,38,24,0,47,3,23,0,0,7,4,0,767,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,2,12416,38,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,753,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40316,38,929,0,23,0,0,0,0,0,45,0,0,0,0,0,8,92,6573,0,0,2,0,0,0,0,0,354,25,2,0,0,2,0,855,0,0,77,0,4609,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1512,0,32,0,0,0,12,15,508,2038,1488,0,0,0,0,1,0,3,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,289,5,0,0,316,0,305,0,0,0,155,12,0,0,0,0,0,0,0,0,0,878,1,0,0,0,9,0,0,0,0,1,166,7,0,0,125,0,0,0,0,0,4634,1,0,1016,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,58,0,0,0,0,1,40,213,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2393,25,4 +5,0,0,6,6,37,30,21,106,11,22,0,0,2,16,0,103,0,8,14,0,10,0,5,0,8,0,0,1,0,1,0,0,6,6,0,43,54,0,0,91,0,0,0,1,0,0,1,0,0,0,0,1,138,0,0,0,0,0,1,0,0,0,0,0,20,0,0,818,37,524,0,1,0,0,0,0,0,5,15,0,0,0,0,8,14,118,0,21,6,6,0,3,23,0,322,45,1,0,0,4,6,180,0,13,0,0,610,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,14,10,10,10,0,0,0,84,0,259,0,0,0,0,3,209,214,125,0,0,0,0,1,0,4,0,0,0,0,0,0,564,0,17,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,137,39,453,12,0,0,468,0,664,0,1,0,114,17,0,0,0,0,0,0,0,0,0,287,1,0,0,0,29,0,0,0,0,1,134,56,0,0,91,0,0,0,0,0,218,0,0,8,2,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,39,1,1,1,0,0,0,0,0,0,49,49,31,0,2,8,0,0,0,0,0,112,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,17,0,0,0,0,0,0,0,0,0,0,0,11,0,0,650,43,4 +0,0,0,0,2,15,28,2,28,1,3,0,2,0,5,0,65,0,8,4,0,1,0,1,0,0,0,0,0,0,1,0,0,2,4,0,16,75,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,0,0,0,101,15,153,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,16,0,2,4,2,0,3,0,0,45,0,0,0,0,8,2,34,0,1,1,0,1612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,22,0,49,0,0,0,0,3,33,18,46,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,23,222,2,0,0,224,0,1704,0,1,0,62,4,0,0,0,0,0,0,0,0,0,139,0,0,0,0,6,0,0,0,0,0,118,4,0,0,0,0,0,0,0,0,180,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,1,1,1,0,0,0,0,0,0,9,20,5,0,1,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,875,19,4 +11,0,0,8,1,34,48,1,122,7,15,1,0,0,13,0,71,0,9,2,0,0,0,4,0,4,3,0,11,0,2,0,0,1,17,0,35,54,0,0,148,0,0,0,1,0,0,18,3,0,0,0,4,287,0,0,0,0,0,1,0,0,0,20,0,10,0,0,7360,34,344,0,17,0,0,0,0,0,59,0,0,0,0,5,5,29,1339,0,1,17,1,0,1,47,0,462,15,32,1,0,4,1,348,0,8,0,0,1019,0,0,0,0,31,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,8,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,1072,0,227,0,0,0,5,13,72,430,1014,0,0,0,0,1,0,0,0,0,0,0,0,0,2342,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,112,19,367,11,0,0,486,0,1552,0,1,0,273,30,0,0,0,0,0,0,0,0,0,279,1,0,9,0,6,0,0,0,0,5,146,221,0,0,34,0,0,0,0,0,591,0,0,1313,0,0,1,0,0,0,0,0,43,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,38,1,1,1,0,16,0,0,0,0,9,52,825,0,20,0,0,0,0,0,0,199,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,10,1715,86,4 +16,0,0,4,0,23,2,0,20,0,3,0,0,0,3,0,62,0,6,2,0,0,0,11,0,0,24,0,8,0,9,0,0,0,11,0,23,21,0,0,14,0,0,0,1,0,0,22,0,0,0,0,8,79,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2002,23,242,0,17,0,0,0,0,0,45,0,0,0,0,23,12,57,567,0,0,11,0,0,0,0,0,89,0,19,0,0,2,0,171,0,1,0,0,636,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,472,0,339,0,0,0,16,51,73,1226,603,0,0,0,0,1,0,0,0,0,0,0,0,0,2675,0,6,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,10,4,165,4,0,0,142,0,185,0,0,0,75,589,0,0,0,0,0,0,0,0,0,96,1,0,0,0,13,0,0,0,0,9,105,9,0,0,0,0,9,0,16,8,890,0,0,184,0,0,1,0,0,0,0,0,22,0,27,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,24,0,0,0,0,1,34,72,0,41,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,37,4 +279,0,0,29,22,95,167,42,387,35,48,0,0,2,72,2,819,0,20,68,0,119,2,7,0,36,22,0,23,0,7,3,0,21,42,0,115,301,160,0,479,0,0,0,1,0,0,4,0,0,0,0,37,412,0,0,0,0,0,1,0,3,0,12,0,58,0,0,2643,95,3660,0,59,0,0,0,0,0,22,48,0,0,0,1,14,25,282,0,42,42,21,0,8,37,0,769,70,4,0,0,14,22,733,0,52,0,0,2568,0,0,0,0,63,36,0,0,29,0,0,1,0,0,0,20,0,0,0,0,0,0,0,26,0,0,0,13,0,0,0,0,0,7,0,69,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,33,2,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,19,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,82,10,10,10,0,0,0,330,0,296,0,0,0,45,76,425,614,328,0,0,0,0,1,0,5,0,0,0,0,0,0,3055,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,679,366,1852,60,0,0,1855,0,3165,0,6,0,602,466,0,0,0,0,0,0,0,0,0,1517,1,0,0,0,196,0,0,0,0,37,291,148,0,0,155,0,0,0,0,0,10692,0,0,158,4,0,1,7,0,0,0,0,6,0,0,0,2,0,0,0,0,0,34,0,0,0,0,0,0,0,0,1,0,0,110,110,0,0,11,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,100,1,1,1,0,63,0,0,0,0,253,157,371,0,82,9,0,0,0,0,0,328,30,0,0,0,0,0,0,1,0,0,0,0,21,0,4,41,0,0,0,0,0,0,0,0,117,0,0,216,0,3,1796,1936,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,404,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,119,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,48,3,0,0,47,0,143,0,0,0,5,7,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +4,0,0,1,0,14,3,0,22,1,10,0,0,0,5,0,12,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,5,0,14,6,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1,0,0,0,7,0,6,0,0,197,14,52,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,10,0,0,5,0,0,2,17,0,159,35,0,0,0,2,0,94,0,1,0,0,1966,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,97,0,24,0,0,0,0,3,29,137,26,0,0,0,0,0,0,1,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,68,1,0,0,52,0,170,0,0,0,19,5,0,0,0,0,0,0,0,0,0,58,0,0,0,0,2,0,0,0,0,1,96,31,0,0,71,0,0,0,1,0,94,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,1,0,0,0,0,1,19,5,0,2,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,80,4 +81,0,0,1,1,52,25,4,118,10,22,0,4,0,15,0,34,0,7,6,0,1,1,5,0,22,3,0,5,0,3,0,0,1,17,0,53,15,0,0,503,0,0,0,1,0,0,0,0,0,0,0,17,105,0,0,0,0,0,1,0,1,0,0,0,30,0,0,1439,52,353,0,20,0,0,0,0,0,16,3,0,0,0,0,8,13,277,0,4,17,1,0,4,88,0,784,15,0,0,0,8,1,533,0,12,0,0,1230,0,0,0,0,32,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,217,0,121,0,0,0,18,42,217,771,217,0,0,0,0,1,0,4,0,0,0,0,0,0,829,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,96,287,3,0,0,240,0,300,0,0,0,103,31,0,0,0,0,0,0,0,0,0,225,0,0,0,0,13,0,0,0,0,16,137,231,0,0,30,0,0,0,0,0,722,0,0,21,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,36,0,0,0,0,9,70,41,0,24,9,0,0,0,0,0,348,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,2,0,0,299,1198,4 +2,0,0,14,0,59,9,0,62,15,37,0,0,2,39,0,39,0,7,7,0,0,0,10,0,11,9,0,13,0,2,0,0,0,25,0,59,6,13,0,183,0,0,0,1,0,0,1,0,0,0,0,5,132,0,0,0,0,0,1,0,0,0,15,0,33,0,0,1365,59,202,0,13,0,0,0,0,0,9,0,0,0,0,0,13,21,154,0,0,25,0,0,4,46,0,509,75,1,0,0,2,0,383,0,21,0,0,1277,0,0,0,0,50,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,10,10,10,0,0,0,149,0,84,0,0,0,8,35,204,569,157,0,0,0,0,1,0,2,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,39,290,17,0,0,236,0,527,0,0,0,115,49,0,0,0,0,0,0,0,0,0,195,1,0,0,0,17,0,0,0,0,2,162,95,0,0,155,0,1,0,0,0,199,0,0,81,3,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,65,1,1,1,0,49,0,0,0,0,1,84,26,0,26,9,0,0,0,0,0,169,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,25,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2140,57,4 +22,0,0,0,0,34,24,0,36,2,5,0,2,0,4,0,20,0,6,5,0,0,0,7,0,10,3,0,5,0,2,1,0,0,6,0,34,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,71,0,0,0,0,0,1,0,0,0,0,0,3,0,0,714,34,115,0,8,0,0,0,0,0,13,0,0,0,0,0,11,16,134,0,0,6,0,0,2,25,0,298,15,0,0,0,4,0,170,0,2,0,0,592,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,6,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,95,0,47,0,0,0,6,12,193,169,99,0,0,0,0,1,0,3,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,135,0,0,0,146,0,248,0,0,0,61,27,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,124,53,0,0,30,0,0,0,0,0,101,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,10,0,0,0,0,1,40,22,0,12,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,35,4 +21,0,0,0,0,36,63,0,75,2,5,0,2,0,4,0,20,0,6,6,0,0,0,6,0,10,3,0,5,0,2,1,0,0,6,0,36,9,0,0,171,0,0,0,1,0,0,0,0,0,0,0,5,75,0,0,0,0,0,1,0,0,0,0,0,3,0,0,797,36,221,0,8,0,0,0,0,0,27,0,0,0,0,0,11,16,171,0,0,6,0,0,2,64,0,571,15,0,0,0,4,0,365,0,2,0,0,925,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,122,0,66,0,0,0,6,12,201,325,126,0,0,0,0,1,0,3,0,0,0,0,0,0,693,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,140,0,0,0,205,0,250,0,0,0,114,26,0,0,0,0,0,0,0,0,0,175,0,0,0,0,12,0,0,0,0,5,126,131,0,0,30,0,0,0,0,0,105,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,10,0,0,0,0,1,42,22,0,12,9,0,0,0,0,0,169,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,35,4 +34,0,0,0,0,18,14,0,51,7,12,0,3,0,10,0,19,0,7,2,0,0,0,1,0,5,3,0,0,0,1,0,0,0,5,0,18,18,0,0,126,0,0,0,0,0,0,0,0,0,0,0,5,50,0,0,0,0,0,1,0,1,0,0,0,14,0,0,629,18,142,0,6,0,0,0,0,0,16,0,0,0,0,0,2,2,148,0,0,5,0,0,4,43,0,354,15,0,0,0,8,0,257,0,6,0,0,266,0,0,0,0,3,25,0,0,17,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,131,0,102,0,0,0,5,10,39,380,152,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,43,107,1,0,0,107,0,140,0,0,0,53,11,0,0,0,0,0,0,0,0,0,116,0,0,0,0,3,0,0,0,0,5,106,111,0,0,30,0,0,0,0,0,646,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,0,0,0,0,0,1,23,5,0,9,0,0,0,0,0,0,227,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,182,4 +0,0,0,6,0,25,5,0,19,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,0,0,1,0,25,6,0,0,27,0,2,0,1,0,0,2,0,0,0,0,1,104,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1217,25,48,0,1,0,0,0,0,0,10,0,0,0,0,0,7,15,308,0,0,1,0,0,0,0,0,74,5,3,0,0,2,0,28,0,0,0,0,527,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,97,0,34,0,0,0,0,3,177,9,98,0,0,0,0,1,0,3,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,130,6,0,0,155,0,329,0,0,0,55,4,0,0,0,0,0,0,0,0,0,53,1,0,0,0,8,0,0,0,0,0,108,42,0,0,0,0,0,0,0,0,96,0,0,411,3,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,151,0,2,9,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,313,4 +0,0,0,6,0,25,5,0,19,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,0,0,1,0,25,6,0,0,27,0,2,0,1,0,0,2,0,0,0,0,1,108,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1217,25,48,0,1,0,0,0,0,0,10,0,0,0,0,0,7,15,304,0,0,1,0,0,0,0,0,74,5,3,0,0,2,0,28,0,0,0,0,417,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,97,0,34,0,0,0,0,3,177,9,98,0,0,0,0,1,0,3,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,125,6,0,0,154,0,324,0,0,0,54,10,0,0,0,0,0,0,0,0,0,53,1,0,0,0,8,0,0,0,0,0,107,42,0,0,0,0,0,0,0,0,81,0,0,420,3,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,3,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,152,0,2,9,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,310,4 +0,0,0,8,2,13,50,2,56,9,7,0,0,0,18,4,122,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,4,0,15,140,0,0,43,0,0,0,1,0,0,7,0,0,0,0,1,111,0,0,0,0,0,1,0,0,0,0,0,17,0,0,3535,13,222,0,3,0,0,0,0,0,23,0,0,0,0,0,1,10,679,0,2,4,2,0,2,0,0,91,0,11,0,0,6,2,96,0,13,0,0,291,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,514,0,271,0,0,0,2,7,35,24,710,0,0,0,0,1,0,0,0,0,0,0,0,0,2498,0,187,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,220,37,407,10,0,0,452,0,908,0,2,0,157,9,0,0,0,0,0,0,0,0,0,268,1,0,0,0,2,0,0,0,0,1,131,48,0,0,0,0,0,0,0,0,611,0,0,823,0,0,1,0,0,0,0,0,15,0,0,0,2,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,11,1,1,1,0,2,0,0,0,0,17,19,172,0,6,0,0,0,0,0,0,92,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,2,0,2,1096,62,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,147,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,70,0,46,0,0,0,36,7,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,4,4 +18,0,0,18,19,64,223,37,378,47,70,1,0,0,62,0,436,0,18,21,0,21,35,1,0,17,9,0,34,0,10,0,0,19,22,625,98,125,2114,0,467,0,4,0,1,0,0,8,3,0,0,0,25,1125,0,0,0,0,0,1,0,0,0,29,0,56,0,0,64958,64,2440,0,57,0,0,0,0,0,32,54,0,0,0,0,2,16,13326,0,37,22,19,0,3,108,0,1164,170,20,0,0,4,19,1459,0,49,0,0,2473,0,0,0,0,37,0,8,0,4,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,31,0,13,0,16,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,24,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,48,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,104,17,17,17,0,0,17,9226,18,318,0,0,0,32,49,231,1629,9350,0,0,0,0,1,0,0,0,0,0,18,2,0,12240,0,0,0,0,0,0,0,0,0,0,0,0,8,0,36,0,0,0,0,0,0,117,91,1398,43,0,0,1332,0,2021,0,1,0,514,286,0,0,0,0,0,0,0,0,0,1188,1,0,8,0,75,3,0,0,0,20,222,377,0,0,503,0,0,0,0,0,7495,0,0,13344,0,0,1,0,1,0,0,0,22,0,0,0,4,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,1,91,0,0,0,0,380,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,76,1,1,1,0,69,0,0,0,0,622,121,586,0,70,0,0,0,0,0,0,384,22,0,0,0,0,0,0,0,0,0,0,0,34,0,1,55,0,0,0,0,0,0,0,0,3,0,0,35,0,5,7100,1395,4 +0,0,0,3,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,2,0,0,16,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,3,0,0,32,0,43,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,25,4 +9,0,0,6,1,15,26,1,38,1,4,0,0,0,6,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,3,0,16,54,0,0,19,0,0,0,1,0,0,4,0,0,0,0,0,82,0,0,0,0,0,1,0,0,0,0,0,5,0,0,22413,15,125,0,1,0,0,0,0,0,17,0,0,0,0,0,1,6,1525,0,1,3,1,0,1,0,0,50,0,6,0,0,4,1,25,0,3,0,0,8293,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1501,0,152,0,0,0,0,3,66,37,1517,0,0,0,0,1,0,0,0,0,0,0,0,0,1460,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,114,17,950,8,0,0,781,0,753,0,1,0,594,25,0,0,0,0,0,0,0,0,0,147,1,0,0,0,2,0,0,0,0,0,626,21,0,0,0,0,0,0,0,0,1122,0,0,1490,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,46,1,1,1,0,0,0,0,0,0,9,19,73,0,1,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,684,127,4 +151,0,0,29,10,84,187,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,95,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,372,0,0,0,0,0,1,0,3,0,12,0,82,0,0,2892,85,1511,0,39,0,0,0,0,0,70,12,0,0,0,0,13,22,412,0,22,33,9,0,10,193,0,1895,100,3,0,0,14,10,1279,0,46,0,0,2130,0,0,0,0,52,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,330,0,236,0,0,0,36,76,300,1617,360,0,0,0,0,1,0,5,0,0,0,0,0,0,2753,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1458,48,0,0,1555,0,2901,0,6,0,562,34,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,279,538,0,0,215,0,0,0,0,0,9936,0,0,182,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,77,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1631,1656,4 +0,0,0,6,0,41,56,0,95,1,38,0,0,8,3,0,847,0,6,1,0,0,0,8,0,10,0,0,44,0,1,0,0,0,1,12932,41,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,524,0,0,0,0,0,1,0,0,0,0,0,2,0,0,107305,41,1176,0,42,0,0,0,0,0,109,0,0,0,0,0,8,305,12788,0,0,1,0,0,0,0,0,565,30,2,0,0,2,0,1030,0,0,210,0,8422,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,5983,0,39,0,0,0,26,29,1417,7342,5913,0,0,0,0,1,0,3,0,0,0,0,0,0,7969,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,22,380,6,0,0,380,0,378,0,0,0,200,36,0,0,0,0,0,0,0,0,0,1053,1,0,0,0,9,0,0,0,0,1,159,72,0,0,286,0,0,0,0,0,6023,1,0,10276,53,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,53,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,119,0,0,0,0,1,42,283,0,43,12,0,1,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3471,160,4 +20,0,0,0,0,34,24,0,36,2,5,0,2,0,4,0,20,0,6,5,0,0,0,7,0,10,3,0,6,0,2,1,0,0,6,0,34,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,73,0,0,0,0,0,1,0,0,0,0,0,3,0,0,704,34,116,0,9,0,0,0,0,0,13,0,0,0,0,0,11,16,131,0,0,6,0,0,2,25,0,299,15,0,0,0,4,0,171,0,2,0,0,560,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,94,0,48,0,0,0,6,12,193,169,98,0,0,0,0,1,0,3,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,131,0,0,0,146,0,249,0,0,0,61,29,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,124,53,0,0,30,0,0,0,0,0,100,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,11,0,0,0,0,1,40,22,0,13,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,35,4 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,17,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,40,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,10,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,2,0,0,407,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,26,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,122,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,32,0,27,0,0,0,2,4,26,94,44,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,157,0,0,0,2,4,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,14,4 +0,0,0,7,1,14,29,1,40,11,4,0,0,0,19,0,66,0,8,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,4,0,15,70,0,0,44,0,0,0,1,0,0,2,0,0,0,0,0,98,0,0,0,0,0,1,0,0,0,0,0,19,0,0,544,14,135,0,1,0,0,0,0,0,11,0,0,0,0,0,1,5,84,0,1,4,1,0,1,0,0,45,0,3,0,0,4,1,66,0,15,0,0,263,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,90,0,53,0,0,0,0,3,34,9,106,0,0,0,0,1,0,0,0,0,0,0,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,112,27,257,8,0,0,303,0,881,0,1,0,115,12,0,0,0,0,0,0,0,0,0,166,1,0,0,0,2,0,0,0,0,0,114,51,0,0,0,0,0,0,0,0,166,0,0,78,0,0,1,0,1,0,0,0,8,0,0,0,1,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,0,0,0,0,0,9,19,252,0,1,0,0,0,0,0,0,68,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,343,44,4 +0,0,0,2,0,10,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,166,10,36,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,37,0,0,2,0,0,0,0,0,7,0,1,0,0,2,0,13,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,37,0,29,0,0,0,0,3,25,4,51,0,0,0,0,1,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,99,2,0,0,80,0,183,0,0,0,22,5,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,93,8,0,0,0,0,0,0,0,0,33,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,39,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,52,35,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,0,0,0,130,8,39,0,1,0,0,0,0,0,9,0,0,0,0,0,1,1,43,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,37,0,35,0,0,0,0,3,21,4,51,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,46,0,29,0,0,0,12,4,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,4,4 +0,0,0,0,0,8,31,0,39,1,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,1,0,0,126,8,120,0,1,0,0,0,0,0,16,0,0,0,0,0,1,1,46,0,0,0,0,0,2,35,0,268,15,0,0,0,4,0,181,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,34,0,0,0,0,3,21,166,56,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,32,2,0,0,81,0,87,0,0,0,48,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,2,0,0,0,0,0,91,70,0,0,30,0,0,0,0,0,32,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,86,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,1,4 +144,0,0,0,9,129,29,36,224,4,59,0,3,0,7,0,110,0,7,23,0,9,9,7,0,24,18,0,20,0,59,0,0,9,81,0,138,12,0,0,288,0,0,0,1,0,0,0,0,0,0,0,75,161,0,0,0,0,0,1,0,2,0,0,0,5,0,0,1848,129,1333,0,93,0,0,0,0,0,9,27,0,0,0,0,11,16,162,0,36,81,9,0,2,116,0,1293,240,0,0,0,6,9,693,0,4,0,0,2834,0,0,0,0,61,54,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,48,0,0,0,48,0,0,0,0,0,0,0,11,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,72,10,10,10,0,0,0,243,0,140,0,0,0,132,162,372,825,206,0,0,0,0,1,0,5,0,0,0,0,0,0,1256,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,54,911,9,0,0,729,0,635,0,0,0,356,68,0,0,0,0,0,0,0,0,0,439,0,0,0,0,48,0,0,0,0,75,213,203,0,0,528,0,0,0,0,0,271,0,0,58,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,0,3,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,133,1,1,1,0,134,0,0,0,0,73,219,129,0,112,9,0,0,0,0,0,310,10,0,0,0,0,0,0,0,0,0,0,0,10,0,1,4,0,0,0,0,0,0,0,0,0,0,0,14,0,0,276,1282,4 +5,0,0,6,6,37,30,21,112,11,25,0,0,2,16,0,103,0,8,14,0,10,0,5,0,8,0,0,1,0,1,0,0,6,6,0,43,54,0,0,102,0,0,0,1,0,0,1,0,0,0,0,1,140,0,0,0,0,0,1,0,0,0,0,0,21,0,0,807,37,533,0,1,0,0,0,0,0,5,15,0,0,0,0,8,14,93,0,21,6,6,0,3,29,0,370,50,2,0,0,4,6,209,0,13,0,0,639,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,14,10,10,10,0,0,0,76,0,258,0,0,0,0,3,209,248,108,0,0,0,0,1,0,4,0,0,0,0,0,0,527,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,136,39,451,12,0,0,468,0,666,0,1,0,114,15,0,0,0,0,0,0,0,0,0,296,1,0,0,0,29,0,0,0,0,1,134,71,0,0,106,0,0,0,0,0,202,0,0,12,2,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,39,1,1,1,0,0,0,0,0,0,49,49,31,0,2,8,0,0,0,0,0,125,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,17,0,0,0,0,0,0,0,0,0,0,0,12,0,0,633,43,4 +29,0,0,3,2,36,44,2,165,4,27,0,0,0,16,0,153,0,8,5,0,2,0,2,0,0,27,0,13,0,11,5,0,2,17,0,38,66,0,0,361,0,0,0,1,0,0,1,0,0,0,0,15,107,0,0,0,0,0,1,0,0,0,9,0,18,0,0,13665,36,467,0,29,0,0,0,0,0,7,3,0,0,0,0,4,6,1159,0,2,17,2,0,1,96,0,831,30,1,0,0,4,2,772,0,3,0,0,1096,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,4,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,27,0,0,0,0,0,0,1147,0,62,0,0,0,30,56,80,738,1160,0,0,0,0,1,0,0,0,0,0,0,0,0,4029,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,107,430,7,0,0,466,0,678,0,1,0,221,35,0,0,0,0,0,0,0,0,0,413,1,0,0,0,9,0,0,0,0,10,166,309,0,0,66,0,0,0,0,0,1767,0,0,4085,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,36,1,1,1,0,68,0,0,0,6,17,55,523,0,56,0,0,0,0,0,0,280,9,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,3,0,2,1271,101,4 +0,0,0,0,0,8,4,0,12,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,54,8,36,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,10,0,0,0,0,0,2,8,0,79,15,0,0,0,4,0,46,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,16,0,0,0,0,3,21,58,27,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,39,0,25,0,0,0,5,3,0,0,0,0,0,0,0,0,0,41,0,0,0,0,2,0,0,0,0,0,91,16,0,0,30,0,0,0,0,0,23,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,0,0,0,115,8,37,0,1,0,0,0,0,0,8,0,0,0,0,0,1,1,35,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,32,0,0,0,0,3,21,4,48,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,45,0,28,0,0,0,11,4,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,4,4 +148,0,0,29,10,84,187,22,420,28,72,0,0,2,62,0,375,0,20,16,0,6,2,6,0,31,21,0,14,0,11,2,0,9,33,0,94,301,0,0,677,0,0,0,1,0,0,4,0,0,0,0,35,363,0,0,0,0,0,1,0,2,0,12,0,80,0,0,2883,84,1514,0,46,0,0,0,0,0,71,12,0,0,0,0,13,22,395,0,22,33,9,0,10,193,0,1915,100,4,0,0,14,10,1279,0,44,0,0,2237,0,0,0,0,51,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,325,0,230,0,0,0,46,81,296,1623,354,0,0,0,0,1,0,5,0,0,0,0,0,0,2713,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,144,1437,48,0,0,1554,0,2945,0,6,0,563,47,0,0,0,0,0,0,0,0,0,1138,1,0,0,0,30,0,0,0,0,29,279,538,0,0,215,0,0,0,0,0,9928,0,0,180,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,26,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,66,0,0,0,0,81,127,309,0,70,9,0,0,0,0,0,709,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,38,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1621,1684,4 +0,0,0,5,0,36,25,0,47,3,24,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12437,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,730,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39279,36,913,0,23,0,0,0,0,0,46,0,0,0,0,0,8,94,6526,0,0,1,0,0,0,0,0,363,25,1,0,0,2,0,836,0,0,86,0,4740,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1495,0,32,0,0,0,12,15,496,2081,1473,0,0,0,0,1,0,3,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,278,5,0,0,309,0,301,0,0,0,147,12,0,0,0,0,0,0,0,0,0,861,1,0,0,0,9,0,0,0,0,1,165,6,0,0,134,0,0,0,0,0,4513,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,208,0,24,12,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2453,22,4 +94,0,0,0,12,80,16,48,139,3,22,0,2,0,5,0,118,0,7,33,0,12,12,3,0,4,3,0,18,0,51,1,0,12,49,0,92,12,0,0,160,0,0,0,0,0,0,0,0,0,0,0,54,116,0,0,0,0,0,1,0,0,0,0,0,3,0,0,887,80,1326,0,73,0,0,0,0,0,5,36,0,0,0,0,11,11,46,0,48,49,12,0,2,24,0,467,40,0,0,0,6,12,282,0,2,0,0,2542,0,0,0,0,23,17,0,0,3,0,0,0,0,0,0,15,0,0,0,0,0,0,0,17,0,0,0,15,0,0,0,0,0,1,0,21,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,0,0,0,0,0,0,83,0,110,0,0,0,105,108,145,388,119,0,0,0,0,0,0,0,0,0,0,0,0,0,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,699,14,0,0,671,0,570,0,0,0,266,66,0,0,0,0,0,0,0,0,0,309,0,0,0,0,60,0,0,0,0,53,171,48,0,0,88,0,0,0,0,0,245,0,0,51,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,79,1,1,1,0,123,0,0,0,90,97,141,49,0,77,0,0,0,0,0,0,184,16,0,0,0,0,0,0,0,0,0,0,0,12,0,1,3,0,0,0,0,0,0,0,0,0,0,0,20,0,0,255,838,4 +30,0,0,0,0,15,13,0,49,0,12,0,2,0,3,0,14,0,7,1,0,0,0,1,0,5,0,0,0,0,1,0,0,0,5,0,15,15,0,0,103,0,0,0,0,0,0,0,0,0,0,0,5,41,0,0,0,0,0,1,0,0,0,0,0,8,0,0,506,15,125,0,6,0,0,0,0,0,16,0,0,0,0,0,1,1,132,0,0,5,0,0,3,43,0,350,15,0,0,0,6,0,227,0,0,0,0,189,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,115,0,88,0,0,0,5,7,32,321,131,0,0,0,0,0,0,0,0,0,0,0,0,0,478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,25,82,1,0,0,92,0,91,0,0,0,50,6,0,0,0,0,0,0,0,0,0,100,0,0,0,0,2,0,0,0,0,5,102,109,0,0,30,0,0,0,0,0,632,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,20,5,0,6,0,0,0,0,0,0,203,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,213,180,4 +1,0,0,6,0,34,9,0,27,0,9,0,0,2,5,0,19,0,7,2,0,0,0,7,0,8,0,0,4,0,3,0,0,0,8,0,34,6,0,0,52,0,0,0,1,0,0,2,0,0,0,0,3,107,0,0,0,0,0,1,0,0,0,0,0,7,0,0,924,34,74,0,5,0,0,0,0,0,10,0,0,0,0,0,8,17,131,0,0,8,0,0,1,14,0,204,30,4,0,0,2,0,92,0,1,0,0,565,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,118,0,60,0,0,0,4,8,192,116,104,0,0,0,0,1,0,3,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,11,149,8,0,0,166,0,301,0,0,0,69,35,0,0,0,0,0,0,0,0,0,78,1,0,0,0,9,0,0,0,0,3,119,52,0,0,60,0,0,0,0,0,73,0,0,56,3,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,12,0,0,0,0,1,42,88,0,6,9,0,0,0,0,0,54,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,173,166,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,141,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,48,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,70,0,48,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,34,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,4,4 +279,0,0,29,21,97,166,37,379,33,43,0,0,2,70,2,807,0,20,66,0,117,2,7,0,38,22,0,21,0,7,3,0,20,42,0,117,301,160,0,455,0,0,0,1,0,0,4,0,0,0,0,39,412,0,0,0,0,0,1,0,3,0,12,0,55,0,0,2665,97,3478,0,60,0,0,0,0,0,19,45,0,0,0,1,14,25,276,0,37,42,20,0,7,29,0,698,55,4,0,0,14,21,688,0,50,0,0,2394,0,0,0,0,71,32,0,0,28,0,0,1,0,0,0,19,0,0,0,0,0,0,0,27,0,0,0,15,0,0,0,0,0,7,0,69,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,33,2,0,0,0,0,0,2,0,0,0,0,0,0,14,0,0,0,0,0,0,0,18,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,317,0,285,0,0,0,47,79,415,558,315,0,0,0,0,1,0,5,0,0,0,0,0,0,2896,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,677,364,1825,59,0,0,1858,0,3172,0,6,0,600,462,0,0,0,0,0,0,0,0,0,1489,1,0,0,0,192,0,0,0,0,37,293,134,0,0,125,0,0,0,0,0,10722,0,0,162,4,0,1,7,0,0,0,0,6,0,0,0,2,0,0,0,0,0,32,0,0,0,0,0,0,0,0,1,0,0,106,106,0,0,12,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,103,1,1,1,0,60,0,0,0,0,239,159,371,0,82,9,0,0,0,0,0,305,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,37,0,0,0,0,0,0,0,0,117,0,0,257,0,2,1701,1871,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,2,0,0,408,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,133,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,42,3,0,0,41,0,155,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,347,14,4 +1,0,0,5,0,41,18,0,55,4,11,0,0,6,4,1,855,0,6,2,0,0,0,8,0,11,0,0,18,0,5,0,0,0,5,1347,41,6,0,0,46,0,0,0,1,0,0,2,0,0,0,0,5,304,0,0,0,0,0,1,0,0,0,0,0,2,0,0,29310,41,990,0,19,0,0,0,0,0,37,0,0,0,0,0,9,69,3656,0,0,5,0,0,0,0,0,259,20,4,0,0,2,0,832,0,0,27,0,2978,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,1814,0,94,0,0,0,14,11,541,1711,1769,0,0,0,0,1,0,4,0,0,0,0,0,0,2336,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,28,234,5,0,0,249,0,325,0,0,0,93,21,0,0,0,0,0,0,0,0,0,956,1,0,0,0,10,0,0,0,0,2,124,31,0,0,51,0,0,0,0,0,3019,1,0,2624,19,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,39,39,0,0,3,0,0,0,0,0,19,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,40,0,0,0,0,31,46,253,0,20,14,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1113,217,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,34,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,83,0,57,0,0,0,49,4,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,4,4 +26,0,0,6,0,46,36,0,54,30,35,0,0,7,8,0,1092,0,7,1,0,0,0,8,0,10,12,0,22,0,5,0,0,0,3,5664,46,6,0,0,54,0,6,0,1,0,0,7,0,0,0,0,5,396,0,0,0,0,0,1,0,0,0,0,0,7,0,0,33260,46,1399,0,24,0,0,0,0,0,102,0,0,0,0,0,8,130,6803,0,0,3,0,0,0,0,0,409,25,11,0,0,2,0,1269,0,4,72,0,4861,0,0,0,0,14,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,12,12,12,0,0,0,2395,0,140,0,0,0,18,29,679,1439,2360,0,0,0,0,1,0,8,0,0,0,0,0,0,823,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,110,98,351,6,0,0,394,0,310,0,0,0,211,47,0,0,0,0,0,0,0,0,0,1239,1,0,0,0,9,0,0,0,0,2,148,61,0,0,172,0,0,0,0,0,5335,1,0,1090,36,0,1,1,1,0,0,0,18,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,36,365,0,0,0,4,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,53,0,0,0,0,1,49,224,0,37,12,0,1,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,34,0,0,0,0,0,0,0,0,0,0,0,0,0,7,2217,125,4 +2,0,0,0,1,11,5,4,47,0,4,0,0,0,2,0,2108,0,6,5,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,2,12,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,47,11,2212,0,1,0,0,0,0,0,0,3,0,0,0,0,1,1,3,0,4,0,1,0,0,0,0,11,0,0,0,0,4,1,2105,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,19,29,19,0,0,0,0,3,24,8,22,0,0,0,0,0,0,0,0,0,0,2,2,0,45,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,6,93,1,0,0,92,0,110,0,0,0,19,1,0,0,0,0,0,0,0,0,0,2172,0,0,0,0,6,0,0,0,0,0,97,3,0,0,0,0,0,0,0,0,3315,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,11,12,0,0,1,0,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,34,11,4 +0,0,0,3,0,10,3,0,24,1,3,0,0,0,8,0,26,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,44,0,1,0,1,0,0,1,1,0,0,0,0,275,0,0,0,0,0,1,0,0,0,0,0,9,0,0,4726,10,63,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,507,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,68,0,0,0,0,1201,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,36,0,38,0,0,0,0,3,28,12,45,0,0,0,0,1,0,0,0,0,0,0,0,0,2150,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,164,3,0,0,161,0,174,0,0,0,102,13,0,0,0,0,0,0,0,0,0,70,1,0,2,0,2,0,0,0,0,0,92,95,0,0,0,0,0,0,0,0,273,0,0,736,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,96,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,256,72,4 +0,0,0,5,0,36,24,0,48,3,23,0,0,7,4,0,784,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12496,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,715,0,0,0,0,0,1,0,0,0,0,0,2,0,0,42005,36,947,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,7040,0,0,1,0,0,0,0,0,360,25,2,0,0,2,0,872,0,0,89,0,4820,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1862,0,32,0,0,0,12,15,492,2068,1840,0,0,0,0,1,0,3,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,282,5,0,0,309,0,292,0,0,0,147,16,0,0,0,0,0,0,0,0,0,896,1,0,0,0,9,0,0,0,0,1,165,7,0,0,131,0,0,0,0,0,4725,1,0,1023,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2504,28,4 +2,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,57,0,0,0,0,0,1,0,0,0,0,0,1,0,0,7009,10,41,0,1,0,0,0,0,0,8,0,0,0,0,0,1,5,1904,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,13,0,0,0,0,122,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,813,0,34,0,0,0,0,3,26,8,823,0,0,0,0,1,0,0,0,0,0,0,0,0,2006,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,10,3,83,2,0,0,94,0,255,0,0,0,29,12,0,0,0,0,0,0,4,0,0,42,1,0,0,0,2,0,0,0,0,0,92,21,0,0,0,0,0,0,0,0,994,0,0,2266,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,835,476,4 +0,0,0,5,0,35,25,0,48,3,24,0,0,7,4,0,764,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12499,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,738,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39526,35,931,0,24,0,0,0,0,0,46,0,0,0,0,0,8,96,6542,0,0,1,0,0,0,0,0,367,25,1,0,0,2,0,852,0,0,90,0,4499,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1426,0,32,0,0,0,13,16,495,2095,1405,0,0,0,0,1,0,3,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,271,5,0,0,305,0,288,0,0,0,145,13,0,0,0,0,0,0,0,0,0,878,1,0,0,0,9,0,0,0,0,1,162,6,0,0,136,0,0,0,0,0,4652,1,0,996,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,62,0,0,0,0,1,36,208,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2476,22,4 +150,0,0,29,10,85,189,22,430,30,74,0,0,2,64,0,375,0,20,14,0,6,2,7,0,26,22,0,15,0,8,2,0,9,33,0,95,301,0,0,701,0,0,0,1,0,0,3,0,0,0,0,28,354,0,0,0,0,0,1,0,3,0,12,0,84,0,0,2913,85,1531,0,40,0,0,0,0,0,73,12,0,0,0,0,13,22,407,0,22,33,9,0,10,203,0,1970,100,3,0,0,14,10,1330,0,46,0,0,2212,0,0,0,0,52,40,0,0,30,0,0,1,0,0,0,19,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,328,0,236,0,0,0,36,76,300,1682,357,0,0,0,0,1,0,5,0,0,0,0,0,0,2669,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1422,48,0,0,1558,0,2902,0,6,0,564,46,0,0,0,0,0,0,0,0,0,1154,1,0,0,0,29,0,0,0,0,22,277,564,0,0,215,0,0,0,0,0,9941,0,0,173,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,78,0,0,0,0,81,128,309,0,64,9,0,0,0,0,0,735,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1620,1651,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,731,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,727,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,9,0,0,1,107,4 +124,0,0,29,11,90,159,27,284,30,43,0,0,2,66,1,565,0,20,45,0,98,2,6,0,33,22,0,18,0,8,2,0,10,38,0,100,301,160,0,411,0,0,0,1,0,0,3,0,0,0,0,34,357,0,0,0,0,0,1,0,3,0,13,0,54,0,0,2578,90,1804,0,51,0,0,0,0,0,25,15,0,0,0,0,13,22,292,0,27,38,10,0,9,50,0,840,85,3,0,0,14,11,649,0,46,0,0,2323,0,0,0,0,47,18,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,8,0,0,0,9,0,0,0,0,0,1,0,22,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,299,0,246,0,0,0,42,74,343,680,309,0,0,0,0,1,0,6,0,0,0,0,0,0,2281,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1463,49,0,0,1504,0,2959,0,6,0,509,275,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,151,0,0,0,0,29,284,176,0,0,185,0,0,0,0,0,10423,0,0,172,4,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,11,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,64,0,0,0,0,121,138,326,0,74,9,0,0,0,0,0,347,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,38,0,0,0,0,0,0,0,0,117,0,0,153,0,3,1770,1621,4 +0,0,0,5,0,38,24,0,47,3,23,0,0,7,4,0,767,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,2,12404,38,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,713,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39485,38,929,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6408,0,0,2,0,0,0,0,0,361,25,2,0,0,2,0,855,0,0,91,0,4444,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1353,0,33,0,0,0,12,15,505,2071,1330,0,0,0,0,1,0,3,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,286,5,0,0,314,0,294,0,0,0,149,13,0,0,0,0,0,0,0,0,0,878,1,0,0,0,9,0,0,0,0,1,167,7,0,0,132,0,0,0,0,0,4652,1,0,1020,22,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,58,0,0,0,0,1,40,213,0,24,12,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2442,27,4 +1,0,0,3,0,28,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,118,0,0,0,0,0,1,0,0,0,0,0,2,0,0,979,28,57,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,151,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,549,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,123,0,50,0,0,0,1,4,182,14,121,0,0,0,0,1,0,3,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,2,1,8,0,0,0,0,1,0,32,10,135,3,0,0,186,0,315,0,0,0,81,9,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,110,64,0,0,0,0,0,0,0,0,78,0,0,38,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,226,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,152,55,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,422,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,30,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,131,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,35,0,33,0,0,0,2,4,27,96,53,0,0,0,0,1,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,47,3,0,0,47,0,146,0,0,0,5,9,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,27,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,11,4 +70,0,0,25,9,80,133,22,242,26,34,0,0,2,58,2,642,0,18,44,0,96,1,6,0,32,13,0,17,0,5,2,0,8,33,0,88,253,160,0,339,0,0,0,1,0,0,4,0,0,0,0,30,313,0,0,0,0,0,1,0,2,0,12,0,45,0,0,2254,80,1688,0,47,0,0,0,0,0,21,12,0,0,0,1,13,23,258,0,22,33,8,0,7,37,0,677,70,5,0,0,12,9,576,0,40,0,0,1864,0,0,0,0,30,11,1,0,30,0,0,1,0,0,0,19,0,0,0,0,0,0,0,6,0,0,0,8,0,0,0,0,0,1,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,9,2,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,268,0,260,0,0,0,35,55,358,529,268,0,0,0,0,1,0,5,0,0,0,0,0,0,1962,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,573,309,1224,43,0,0,1286,0,2578,0,5,0,446,530,0,0,0,0,0,0,0,0,0,1131,1,0,0,0,147,0,0,0,0,27,258,148,0,0,155,0,0,0,0,0,10475,0,0,148,4,0,1,5,0,0,0,0,6,0,0,0,1,0,0,0,0,0,25,0,0,0,0,0,0,0,0,1,0,0,98,98,0,0,6,1,0,0,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,85,1,1,1,0,37,0,0,0,0,141,121,361,0,60,9,0,0,0,0,0,281,8,0,0,0,0,0,0,1,0,0,0,0,9,0,3,32,0,0,0,0,0,0,0,0,117,0,0,184,0,2,1599,794,4 +0,0,0,9,0,40,76,0,63,43,73,0,0,9,4,0,1030,0,6,1,0,0,0,8,0,11,0,0,39,0,2,0,0,0,1,8793,40,6,0,0,63,0,2,0,1,0,0,2,0,0,0,0,2,542,0,0,0,0,0,1,0,0,0,0,0,4,0,0,61069,40,1487,0,39,0,0,0,0,0,149,0,0,0,0,0,8,333,11447,0,0,1,0,0,0,0,0,666,35,3,0,0,2,0,1240,0,0,129,0,8124,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,14,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,2668,0,48,0,0,0,23,26,1663,3975,2600,0,0,0,0,1,0,4,0,0,0,0,0,0,661,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,0,150,148,392,9,0,0,481,0,396,0,0,0,305,19,0,0,0,0,0,0,0,0,0,1261,1,0,0,0,9,0,0,0,0,3,200,41,0,0,376,0,0,0,0,0,7451,1,0,1106,72,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,72,363,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,105,0,0,0,0,1,41,275,0,40,12,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,47,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4345,397,4 +20,0,0,0,0,26,4,0,8,3,1,0,2,0,5,0,21,0,7,4,0,0,0,2,0,7,3,0,3,0,2,1,0,0,13,0,26,12,0,0,70,0,0,0,0,0,0,0,0,0,0,0,9,36,0,0,0,0,0,1,0,0,0,0,0,2,0,0,255,26,52,0,13,0,0,0,0,0,0,0,0,0,0,0,5,5,28,0,0,13,0,0,2,0,0,42,0,0,0,0,6,0,53,0,2,0,0,5127,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,52,0,74,0,0,0,11,17,49,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,126,2,0,0,102,0,224,0,0,0,51,11,0,0,0,0,0,0,0,0,0,48,0,0,0,0,6,0,0,0,0,9,117,2,0,0,0,0,0,0,0,0,51,0,0,3,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,10,0,0,0,0,1,39,13,0,16,0,0,0,0,0,0,79,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,258,4 +22,0,0,5,1,15,59,1,332,2,63,0,0,0,6,0,429,0,9,1,0,0,0,1,0,0,213,0,11,0,72,0,0,1,2,0,16,79,0,0,466,0,0,0,1,0,0,3,0,0,0,0,71,107,0,0,0,0,0,1,0,0,0,0,0,49,0,0,1777,15,1152,0,83,0,0,0,0,0,9,0,0,0,0,0,1,5,48,0,1,2,1,0,3,231,0,1807,80,5,0,0,4,1,2497,0,3,0,0,2183,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,144,0,0,0,0,0,0,60,0,51,0,0,0,142,294,44,1550,153,0,0,0,0,1,0,0,0,0,0,0,0,0,1101,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,112,17,307,6,0,0,310,0,460,0,1,0,124,23,0,0,0,0,0,0,0,0,0,898,1,0,0,0,2,0,0,0,0,1,118,598,0,0,170,0,20,0,39,20,1125,0,0,114,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,81,11,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,22,1,1,1,0,109,0,0,0,0,9,18,86,0,296,0,0,0,0,0,0,622,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,135,30,4 +0,0,0,5,0,36,24,0,48,3,23,0,0,7,4,0,784,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12352,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,741,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39757,36,947,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6526,0,0,1,0,0,0,0,0,361,25,2,0,0,2,0,872,0,0,91,0,4743,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1387,0,32,0,0,0,12,15,492,2065,1365,0,0,0,0,1,0,3,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,285,5,0,0,312,0,299,0,0,0,151,11,0,0,0,0,0,0,0,0,0,896,1,0,0,0,9,0,0,0,0,1,168,7,0,0,132,0,0,0,0,0,4748,1,0,1018,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2454,25,4 +0,0,0,5,0,36,25,0,47,3,24,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12328,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,783,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39715,36,913,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6508,0,0,1,0,0,0,0,0,364,25,1,0,0,2,0,836,0,0,88,0,4625,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1447,0,34,0,0,0,12,15,496,2079,1425,0,0,0,0,1,0,3,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,283,5,0,0,316,0,295,0,0,0,155,13,0,0,0,0,0,0,0,0,0,861,1,0,0,0,9,0,0,0,0,1,172,6,0,0,135,0,0,0,0,0,4592,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,208,0,24,12,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2474,22,4 +118,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,562,0,20,45,0,98,2,6,0,33,22,0,17,0,8,2,0,10,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,351,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2501,89,1771,0,50,0,0,0,0,0,21,15,0,0,0,0,13,22,284,0,27,38,10,0,8,37,0,729,70,4,0,0,14,11,585,0,46,0,0,2235,0,0,0,0,46,16,1,0,31,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,8,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,290,0,234,0,0,0,42,74,342,593,298,0,0,0,0,1,0,6,0,0,0,0,0,0,2143,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1443,49,0,0,1495,0,2942,0,6,0,502,133,0,0,0,0,0,0,0,0,0,1117,1,0,0,0,151,0,0,0,0,31,282,149,0,0,155,0,0,0,0,0,10418,0,0,161,3,0,1,6,0,0,0,0,6,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,7,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,63,0,0,0,0,123,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,160,0,3,1623,1617,4 +9,0,0,6,1,17,26,1,38,1,4,0,0,0,6,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,3,0,18,54,0,0,19,0,0,0,1,0,0,4,0,0,0,0,0,80,0,0,0,0,0,1,0,0,0,0,0,5,0,0,22599,17,126,0,1,0,0,0,0,0,17,0,0,0,0,0,1,6,1526,0,1,3,1,0,1,0,0,50,0,6,0,0,4,1,25,0,3,0,0,8164,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1488,0,153,0,0,0,0,3,72,37,1504,0,0,0,0,1,0,0,0,0,0,0,0,0,1579,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,113,17,918,8,0,0,753,0,748,0,1,0,561,21,0,0,0,0,0,0,0,0,0,147,1,0,0,0,2,0,0,0,0,0,594,21,0,0,0,0,0,0,0,0,1141,0,0,1605,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,46,1,1,1,0,0,0,0,0,0,9,21,73,0,1,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,736,125,4 +169,0,4,0,6,106,55,20,786,35,62,0,8,0,40,24,7736,0,7,22,0,5,5,9,0,25,24,0,26,0,17,4,0,5,45,26,111,37,0,0,692,0,3,0,1,0,0,3,1,0,0,0,38,231,0,0,0,0,0,1,0,0,0,19,0,58,0,0,4059,106,9496,0,60,0,0,0,0,0,38,15,0,0,0,0,17,27,863,0,20,45,5,0,9,193,0,1750,130,6,0,0,16,6,8940,0,31,0,0,5934,0,0,0,0,28,29,1,0,4,0,0,1,0,0,0,22,0,0,0,0,0,0,0,12,0,0,0,14,0,0,0,0,0,5,0,49,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,13,1,1,1,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,7,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,1046,10,10,10,0,0,0,303,0,264,0,0,0,57,84,321,1583,349,0,0,0,0,1,0,4,0,0,0,15901,3,1,1969,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,1,0,88,20084,737,8,0,0,676,0,2282,0,0,0,303,627,0,0,0,0,0,0,0,0,0,8718,1,0,2,0,41,0,0,0,0,32,199,495,0,4,320,0,0,0,1,0,16401,0,0,801,3,0,1,8,1,0,0,0,7,0,0,0,0,0,0,0,0,0,31,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,16,1,2,0,0,0,3,399,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,118,1,1,1,0,75,0,0,0,24,43,156,115,0,87,9,0,0,0,0,0,624,16,0,0,0,0,0,0,0,0,0,0,0,6,0,1,39,0,0,0,0,0,0,0,0,0,0,0,8,0,3,957,982,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,2,0,0,410,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,148,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,42,3,0,0,41,0,156,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,347,14,4 +0,0,0,5,0,37,25,0,48,3,24,0,0,7,4,0,804,0,6,1,0,0,0,8,0,12,0,0,24,0,1,0,0,0,1,12329,37,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,710,0,0,0,0,0,1,0,0,0,0,0,2,0,0,43494,37,971,0,24,0,0,0,0,0,46,0,0,0,0,0,8,94,7123,0,0,1,0,0,0,0,0,367,25,1,0,0,2,0,892,0,0,90,0,4325,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,2030,0,33,0,0,0,13,16,502,2086,2008,0,0,0,0,1,0,3,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,279,5,0,0,312,0,293,0,0,0,148,14,0,0,0,0,0,0,0,0,0,918,1,0,0,0,9,0,0,0,0,1,166,6,0,0,136,0,0,0,0,0,4722,1,0,998,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,62,0,0,0,0,1,38,208,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2453,22,4 +117,0,0,24,4,63,81,7,125,7,16,0,0,2,24,0,187,0,12,6,0,1,1,5,0,15,9,0,9,0,4,0,0,4,22,0,67,164,0,0,210,0,0,0,1,0,0,7,0,0,0,0,11,270,0,0,0,0,0,1,0,1,0,0,0,21,0,0,5085,63,483,0,18,0,0,0,0,0,30,3,0,0,0,0,8,21,1004,0,7,22,4,0,4,11,0,322,20,12,0,0,8,4,207,0,15,0,0,2260,0,0,0,0,42,32,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,38,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,740,0,246,0,0,0,13,48,245,249,707,0,0,0,0,1,0,4,0,0,0,0,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,74,772,33,0,0,817,0,1487,0,3,0,285,38,0,0,0,0,0,0,2,0,0,447,1,0,0,0,13,0,0,0,0,11,193,94,0,0,34,0,0,0,0,0,1199,0,0,906,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,26,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,65,1,1,1,0,68,0,0,0,0,33,89,360,0,28,9,0,0,0,0,0,270,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,11,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1336,1368,4 +5,0,0,10,0,42,7,0,44,7,6,0,0,6,15,0,610,0,6,1,0,0,0,8,0,10,0,0,6,0,2,0,0,0,8,898,42,6,0,0,90,0,0,0,1,0,0,5,0,0,0,0,2,175,0,0,0,0,0,1,0,0,0,11,0,13,0,0,11011,42,701,0,5,0,0,0,0,0,21,0,0,0,0,0,8,22,2187,0,0,8,0,0,0,0,0,198,20,5,0,0,2,0,685,0,7,1,0,1647,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,36,12,12,12,0,0,0,636,0,73,0,0,0,2,5,274,386,624,0,0,0,0,1,0,3,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,84,32,246,10,0,0,275,0,444,0,0,0,121,13,0,0,0,0,0,0,0,0,0,694,1,0,0,0,9,0,0,0,0,2,128,57,0,0,6,0,0,0,0,0,2045,1,0,86,6,0,1,1,0,0,0,0,5,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,5,0,0,0,0,1,50,273,0,6,12,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,939,401,4 +152,0,0,29,10,83,187,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,15,0,8,2,0,9,33,0,93,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,347,0,0,0,0,0,1,0,3,0,11,0,82,0,0,2866,83,1512,0,40,0,0,0,0,0,70,12,0,0,0,0,13,22,402,0,22,33,9,0,10,193,0,1896,100,3,0,0,14,10,1280,0,46,0,0,2302,0,0,0,0,54,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,37,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,323,0,237,0,0,0,36,76,292,1616,353,0,0,0,0,1,0,5,0,0,0,0,0,0,2696,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1419,48,0,0,1550,0,2898,0,6,0,563,51,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,278,538,0,0,215,0,0,0,0,0,9938,0,0,176,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,90,1,1,1,0,78,0,0,0,0,81,126,309,0,64,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1623,1656,4 +150,0,0,29,10,85,187,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,27,21,0,14,0,7,3,0,9,33,0,95,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,356,0,0,0,0,0,1,0,3,0,11,0,82,0,0,2908,85,1512,0,38,0,0,0,0,0,71,12,0,0,0,0,13,22,406,0,22,33,9,0,10,193,0,1895,100,3,0,0,14,10,1279,0,46,0,0,2197,0,0,0,0,52,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,329,0,235,0,0,0,36,75,300,1615,358,0,0,0,0,1,0,5,0,0,0,0,0,0,2638,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1441,48,0,0,1557,0,2896,0,6,0,563,42,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,280,538,0,0,215,0,0,0,0,0,9932,0,0,182,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,75,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1607,1650,4 +5,0,0,2,0,14,3,0,3,0,2,0,0,0,2,0,9,0,7,1,0,0,0,1,0,0,0,0,98,0,2,0,0,0,5,0,14,6,0,0,12,0,0,0,1,0,0,1,0,0,0,0,1,37,0,0,0,0,0,1,0,0,0,0,0,1,0,0,30877,14,121,0,100,0,0,0,0,0,2,0,0,0,0,0,1,3,7,0,0,5,0,0,0,0,0,108,0,0,0,0,2,0,108,0,0,0,0,22624,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,22,0,22,0,0,0,2,5,30,29055,31,0,0,0,0,1,0,0,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,2741,2,0,0,76,0,253,0,0,0,43,1568,0,0,0,0,0,0,0,0,0,26,1,0,0,0,2,0,0,0,0,2,96,27,0,0,0,0,0,0,0,0,127,0,0,6,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,100,0,0,0,0,1,19,97,0,100,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,379297,4 +3,0,0,0,1,22,66,1,92,1,13,0,3,0,4,0,64,0,8,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,4,0,23,81,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,0,1,0,0,0,0,0,5,0,0,269,22,175,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,25,0,1,4,1,0,6,64,0,532,30,0,0,0,10,1,343,0,1,1,0,862,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,58,0,0,0,0,3,49,379,55,0,0,0,0,0,0,0,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,35,226,1,0,0,274,0,698,0,1,0,60,2,0,0,0,0,0,0,0,0,0,250,0,0,0,0,2,0,0,0,0,0,121,135,0,0,68,0,0,0,0,0,778,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,19,1,1,1,0,0,0,0,0,0,9,27,5,0,1,0,0,0,0,0,0,195,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1073,80,4 +0,0,0,5,0,36,25,0,48,3,24,0,0,7,4,0,784,0,6,1,0,0,0,8,0,10,0,0,24,0,1,0,0,0,1,12327,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,796,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40175,36,949,0,22,0,0,0,0,0,46,0,0,0,0,0,8,90,6532,0,0,1,0,0,0,0,0,363,25,1,0,0,2,0,872,0,0,90,0,4595,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1394,0,32,0,0,0,11,14,495,2083,1372,0,0,0,0,1,0,3,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,285,5,0,0,316,0,291,0,0,0,157,11,0,0,0,0,0,0,0,0,0,898,1,0,0,0,9,0,0,0,0,1,171,6,0,0,136,0,0,0,0,0,4749,1,0,989,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,54,0,0,0,0,1,37,208,0,23,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2427,22,4 +0,0,0,0,0,8,40,0,48,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,8,9,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,8,130,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,44,0,331,15,0,0,0,4,0,226,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,32,0,0,0,0,3,21,203,54,0,0,0,0,0,0,0,0,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,86,0,58,0,0,0,52,3,0,0,0,0,0,0,0,0,0,113,0,0,0,0,2,0,0,0,0,0,91,88,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,104,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,4,4 +0,0,0,7,0,146,5,0,19,1,3,0,0,2,4,0,18,0,6,3,0,0,0,5,0,8,0,0,18,0,3,0,0,0,120,0,146,6,0,0,133,0,0,0,1,0,0,2,0,0,0,0,3,143,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1750,146,73,0,19,0,0,0,0,0,13,0,0,0,0,0,7,15,414,0,0,120,0,0,0,0,0,101,5,3,0,0,2,0,50,0,2,0,0,1999,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,287,0,180,0,0,0,4,7,300,222,282,0,0,0,0,1,0,3,0,0,0,0,0,0,415,0,0,0,0,0,0,0,0,0,0,0,0,2,1,8,0,0,0,0,2,0,32,12,555,7,0,0,537,0,879,0,0,0,432,28,0,0,0,0,0,0,5,0,0,57,1,0,0,0,8,0,0,0,0,3,228,63,0,0,0,0,0,0,0,0,140,0,0,56,3,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,1,0,0,147,1,1,1,0,20,0,0,0,4,1,266,372,0,20,9,0,2,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,242,2961,4 +0,0,0,5,0,36,25,0,50,3,24,0,0,7,4,0,819,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12509,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,704,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40498,36,987,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6640,0,0,1,0,0,0,0,0,365,25,1,0,0,2,0,908,0,0,90,0,4902,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1520,0,32,0,0,0,12,15,497,2091,1498,0,0,0,0,1,0,3,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,281,5,0,0,309,0,296,0,0,0,147,14,0,0,0,0,0,0,0,0,0,935,1,0,0,0,9,0,0,0,0,1,165,6,0,0,136,0,0,0,0,0,4801,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2500,24,4 +13,0,0,0,0,33,24,0,36,2,5,0,2,0,4,0,20,0,6,5,0,0,0,5,0,10,3,0,5,0,1,1,0,0,6,0,33,9,0,0,92,0,0,0,1,0,0,0,0,0,0,0,4,72,0,0,0,0,0,1,0,0,0,0,0,3,0,0,656,33,115,0,7,0,0,0,0,0,13,0,0,0,0,0,9,14,128,0,0,6,0,0,2,25,0,290,15,0,0,0,4,0,170,0,2,0,0,478,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,87,0,45,0,0,0,4,11,191,163,91,0,0,0,0,1,0,3,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,123,0,0,0,143,0,237,0,0,0,61,23,0,0,0,0,0,0,0,0,0,97,0,0,0,0,10,0,0,0,0,4,123,53,0,0,30,0,0,0,0,0,97,0,0,2,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,8,0,0,0,0,1,39,22,0,11,9,0,0,0,0,0,88,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,32,4 +3,0,0,5,6,13,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,19,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,100,0,0,0,0,0,1,0,0,0,0,0,25,0,0,510,13,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,42,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,489,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,58,0,45,0,0,0,2,10,44,224,96,0,0,0,0,1,0,1,0,0,0,0,0,0,429,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,116,36,398,11,0,0,401,0,597,0,1,0,103,4,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,110,74,0,0,57,0,0,0,0,0,538,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,6,0,0,0,0,49,22,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,10,0,0,215,35,4 +4,0,0,3,0,202,2,0,11,1,3,0,0,0,4,0,30,0,6,1,0,0,0,1,0,0,9,0,3,0,1,3,0,0,2,0,202,6,0,0,13,0,1,0,1,0,0,1,0,0,0,0,3,370,0,0,0,0,0,1,0,0,0,0,0,4,0,0,9178,202,61,0,7,0,0,0,0,0,4,0,0,0,0,0,1,4,891,0,0,2,0,0,0,0,0,22,0,1,0,0,2,0,68,0,2,0,0,3720,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3245,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,421,0,401,0,0,0,6,18,392,581,421,0,0,0,0,1,0,0,0,0,0,0,0,0,10130,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,795,3,0,0,640,0,430,0,0,0,14,18,0,0,0,0,0,0,0,0,0,56,1,0,0,0,2,0,0,0,0,4,282,3,0,0,0,0,0,0,0,0,433,0,0,735,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,364,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,199,1,1,1,0,12,0,0,0,0,1,204,2,0,16,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,796,13,4 +109,0,0,24,4,68,81,7,125,7,16,0,0,2,24,0,187,0,12,6,0,1,1,5,0,15,9,0,10,0,4,0,0,4,22,0,72,165,0,0,210,0,0,0,1,0,0,7,0,0,0,0,11,261,0,0,0,0,0,1,0,1,0,0,0,21,0,0,5079,68,484,0,19,0,0,0,0,0,30,3,0,0,0,0,8,21,999,0,7,22,4,0,4,11,0,323,20,12,0,0,8,4,208,0,15,0,0,1542,0,0,0,0,42,30,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,34,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,751,0,250,0,0,0,13,46,265,241,718,0,0,0,0,1,0,4,0,0,0,0,0,0,1956,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,74,771,33,0,0,832,0,1501,0,3,0,285,49,0,0,0,0,0,0,2,0,0,447,1,0,0,0,13,0,0,0,0,11,198,94,0,0,34,0,0,0,0,0,1190,0,0,920,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,70,1,1,1,0,64,0,0,0,0,33,94,360,0,29,9,0,0,0,0,0,268,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,11,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1322,1354,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,732,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,728,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,2,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,1,108,4 +0,0,0,5,0,35,6,0,35,1,5,0,0,6,4,0,534,0,6,2,0,0,0,7,0,10,0,0,4,0,1,0,0,0,2,898,35,6,0,0,43,0,0,0,1,0,0,3,0,0,0,0,1,183,0,0,0,0,0,1,0,0,0,0,0,2,0,0,6682,35,605,0,2,0,0,0,0,0,20,0,0,0,0,0,8,20,1158,0,0,2,0,0,0,0,0,188,20,6,0,0,2,0,575,0,0,1,0,1287,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,410,0,48,0,0,0,0,3,257,356,397,0,0,0,0,1,0,3,0,0,0,0,0,0,614,0,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,84,19,195,5,0,0,274,0,438,0,0,0,127,8,0,0,0,0,0,0,0,0,0,596,1,0,0,0,9,0,0,0,0,0,118,78,0,0,6,0,0,0,0,0,1548,1,0,394,6,0,1,1,1,0,0,0,5,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,1,0,0,0,0,1,37,259,0,3,12,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,539,63,4 +0,0,0,0,1,31,7,1,8,0,2,0,2,0,3,0,16,0,6,5,0,1,0,6,0,8,0,0,2,0,1,0,0,1,4,0,31,12,0,0,39,0,0,0,1,0,0,0,0,0,0,0,1,45,0,0,0,0,0,1,0,0,0,0,0,0,0,0,532,31,87,0,1,0,0,0,0,0,3,3,0,0,0,0,7,12,110,0,1,4,1,0,1,0,0,74,0,0,0,0,4,1,29,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,69,0,47,0,0,0,0,3,184,22,89,0,0,0,0,1,0,3,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,23,20,113,1,0,0,107,0,195,0,0,0,25,1,0,0,0,0,0,0,0,0,0,44,0,0,0,0,12,0,0,0,0,0,115,8,0,0,0,0,0,0,0,0,77,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,0,0,0,0,0,1,35,20,0,2,9,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,124,101,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,404,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,128,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,48,3,0,0,47,0,145,0,0,0,5,1,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +4,0,0,2,0,14,4,0,14,0,1,0,1,0,2,0,19,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,14,51181,0,0,41,0,0,0,1,0,0,1,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,0,0,0,915,14,53,0,1,0,0,0,0,0,12,0,0,0,0,0,1,3,111,0,0,4,0,0,1,0,0,9,0,1,0,0,4,0,14,0,0,0,0,462,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,97,0,65,0,0,0,0,3,28,945,116,0,0,0,0,1,0,0,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,14,92,1,0,0,92,0,209,0,0,0,33,5,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,99,3,0,0,0,0,0,0,0,0,51803,0,0,20,0,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,18,4,0,1,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,146,239,4 +20,0,0,0,0,36,24,0,36,2,5,0,2,0,4,0,20,0,6,5,0,0,0,7,0,10,3,0,5,0,2,1,0,0,6,0,36,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,69,0,0,0,0,0,1,0,0,0,0,0,3,0,0,706,36,115,0,8,0,0,0,0,0,13,0,0,0,0,0,11,16,131,0,0,6,0,0,2,25,0,298,15,0,0,0,4,0,170,0,2,0,0,605,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,96,0,49,0,0,0,6,12,201,169,100,0,0,0,0,1,0,3,0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,138,0,0,0,152,0,249,0,0,0,61,29,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,126,53,0,0,30,0,0,0,0,0,97,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,10,0,0,0,0,1,42,22,0,12,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,35,4 +11,0,0,9,1,50,50,1,125,7,15,1,0,2,13,0,69,0,9,5,0,0,0,7,0,11,0,0,12,0,1,0,0,1,17,0,51,54,0,0,163,0,0,0,1,0,0,16,3,0,0,0,4,336,0,0,0,0,0,1,0,0,0,20,0,11,0,0,8266,50,341,0,15,0,0,0,0,0,62,0,0,0,0,6,11,39,1426,0,1,17,1,0,1,47,0,521,20,33,1,0,4,1,341,0,8,0,0,1248,0,0,0,0,31,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,8,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,10,10,10,0,0,0,1164,0,259,0,0,0,3,8,227,430,1079,0,0,0,0,1,0,3,0,0,0,0,0,0,2519,0,0,0,0,0,0,0,0,0,0,0,0,16,1,0,0,0,0,0,1,0,135,26,400,12,0,0,529,0,1651,0,1,0,276,40,0,0,0,0,0,0,0,0,0,284,1,0,9,0,12,0,0,0,0,5,162,223,0,0,34,0,0,0,0,0,658,0,0,1484,2,0,1,1,0,0,0,0,43,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,58,1,1,1,0,14,0,0,0,0,9,68,816,0,16,8,0,0,0,0,0,204,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,10,1847,104,4 +284,0,0,28,21,93,166,37,376,32,43,0,0,2,69,1,621,0,20,66,0,117,2,7,0,36,22,0,19,0,7,3,0,20,41,0,113,301,160,0,380,0,0,0,1,0,0,4,0,0,0,0,37,397,0,0,0,0,0,1,0,3,0,12,0,53,0,0,2511,93,3273,0,54,0,0,0,0,0,20,45,0,0,0,1,14,24,271,0,37,41,20,0,7,29,0,690,55,4,0,0,14,21,621,0,49,0,0,2607,0,0,0,0,64,32,0,0,29,0,0,1,0,0,0,19,0,0,0,0,0,0,0,26,0,0,0,16,0,0,0,0,0,7,0,71,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,33,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,21,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,78,10,10,10,0,0,0,293,0,227,0,0,0,45,72,364,539,314,0,0,0,0,1,0,5,0,0,0,0,0,0,2752,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,677,341,1765,58,0,0,1845,0,3145,0,6,0,594,147,0,0,0,0,0,0,0,0,0,1298,1,0,0,0,192,0,0,0,0,36,287,134,0,0,125,0,0,0,0,0,10489,0,0,173,3,0,1,7,0,0,0,0,6,0,0,0,1,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,49,49,0,0,12,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,99,1,1,1,0,58,0,0,0,0,197,154,370,0,78,9,0,0,0,0,0,304,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,36,0,0,0,0,0,0,0,0,117,0,0,213,0,2,1686,1810,4 +149,0,0,29,10,85,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,15,0,8,2,0,9,33,0,95,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,366,0,0,0,0,0,1,0,3,0,12,0,83,0,0,3088,85,1524,0,40,0,0,0,0,0,73,12,0,0,0,0,13,22,391,0,22,33,9,0,10,198,0,1933,100,3,0,0,14,10,1305,0,46,0,0,2276,0,0,0,0,52,40,0,0,30,0,0,1,0,0,0,20,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,329,0,241,0,0,0,36,76,300,1650,358,0,0,0,0,1,0,5,0,0,0,0,0,0,2714,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1422,48,0,0,1559,0,2895,0,6,0,565,50,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,279,551,0,0,215,0,0,0,0,0,9929,0,0,184,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,78,0,0,0,0,81,128,309,0,64,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1603,1656,4 +273,0,0,28,21,93,166,37,377,32,43,0,0,2,69,2,794,0,20,67,0,117,2,6,0,34,22,0,19,0,8,2,0,20,41,0,113,301,160,0,380,0,0,0,1,0,0,4,0,0,0,0,35,395,0,0,0,0,0,1,0,3,0,12,0,53,0,0,2755,93,3467,0,53,0,0,0,0,0,19,45,0,0,0,1,14,25,299,0,37,41,20,0,7,29,0,688,55,4,0,0,14,21,677,0,49,0,0,2759,0,0,0,0,58,32,0,0,28,0,0,1,0,0,0,19,0,0,0,0,0,0,0,26,0,0,0,17,0,0,0,0,0,7,0,65,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,32,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,20,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,307,0,280,0,0,0,43,74,402,536,314,0,0,0,0,1,0,5,0,0,0,0,0,0,2817,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,677,341,1798,58,0,0,1844,0,3162,0,6,0,595,213,0,0,0,0,0,0,0,0,0,1473,1,0,0,0,192,0,0,0,0,37,287,134,0,0,125,0,0,0,0,0,10725,0,0,168,4,0,1,7,0,0,0,0,5,0,0,0,2,0,0,0,0,0,31,0,0,0,0,0,0,0,0,1,0,0,102,102,0,0,10,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,101,1,1,1,0,60,0,0,0,0,235,154,370,0,76,9,0,0,0,0,0,304,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,36,0,0,0,0,0,0,0,0,117,0,0,259,0,2,1726,1824,4 +188,0,0,0,0,77,41,0,192,13,40,0,2,0,16,35,38,0,7,2,0,0,0,1,0,8,9,0,6,0,5,1,0,0,55,0,77,15,3718,0,552,0,0,0,0,0,0,0,0,0,0,0,12,227,0,0,0,0,0,1,0,0,0,0,0,47,0,0,3827,77,644,0,20,0,0,0,0,0,144,0,0,0,0,0,2,2,655,0,0,55,0,0,3,178,0,1383,15,0,0,0,6,0,1079,0,12,0,0,6032,0,0,0,0,19,76,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,9,0,0,0,0,0,1,0,47,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,20,0,0,0,0,0,0,495,0,370,0,0,0,17,30,126,131216,523,0,0,0,0,0,0,0,0,0,0,0,0,0,2615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,122,328,2,0,0,443,0,380,0,0,0,349,125470,0,0,0,0,0,0,0,0,0,371,0,0,0,0,3,0,0,0,0,12,168,461,0,0,30,0,0,0,2,0,1020,0,0,6,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,77,1,1,1,0,15,0,0,0,0,1,132,55,0,29,0,0,0,0,0,0,639,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1308,503,4 +74,0,0,25,9,85,136,22,262,26,40,0,0,2,58,1,496,0,18,45,0,95,1,6,0,32,13,0,24,0,4,3,0,8,36,0,93,253,160,0,406,0,0,0,1,0,0,4,0,0,0,0,30,333,0,0,0,0,0,1,0,2,0,12,0,48,0,0,2289,85,1596,0,53,0,0,0,0,0,26,12,0,0,0,1,13,23,290,0,22,36,8,0,8,55,0,827,85,4,0,0,12,9,629,0,40,0,0,1997,0,0,0,0,30,15,1,0,31,0,0,1,0,0,0,22,0,0,0,0,0,0,0,6,0,0,0,8,0,0,0,0,0,1,0,21,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,9,2,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,47,10,10,10,0,0,0,275,0,239,0,0,0,35,54,335,649,292,0,0,0,0,1,0,5,0,0,0,0,0,0,2128,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,579,309,1208,43,0,0,1304,0,2604,0,5,0,458,155,0,0,0,0,0,0,0,0,0,1013,1,0,0,0,147,0,0,0,0,26,261,185,0,0,185,0,0,0,0,0,10303,0,0,153,3,0,1,6,0,0,0,0,6,0,0,0,1,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,7,1,0,0,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,87,1,1,1,0,45,0,0,0,0,109,129,352,0,67,9,0,0,0,0,0,342,8,0,0,0,0,0,0,1,0,0,0,0,9,0,6,34,0,0,0,0,0,0,0,0,117,0,0,243,0,2,1780,879,4 +74,0,2,0,5,56,14,10,574,9,16,0,4,0,13,15,6193,0,8,7,0,3,2,8,2,13,6,0,4,0,3,0,0,2,11,26,60,15,0,0,220,0,0,0,1,0,0,2,0,0,0,0,8,169,0,0,0,0,0,1,0,0,0,0,0,15,0,0,1674,56,7097,0,10,0,0,0,0,0,22,9,0,0,0,0,10,18,286,0,10,11,2,0,4,33,0,406,15,3,0,0,8,5,6450,0,8,1,0,3356,0,0,0,0,9,19,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,6,0,0,0,4,0,0,0,0,0,0,0,19,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1005,12,12,12,0,0,2,212,2,152,0,0,2,9,18,243,434,224,0,0,0,0,1,0,3,0,0,0,11945,3,1,912,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,75,15013,387,7,0,0,327,0,776,0,0,0,94,509,0,0,0,0,0,0,0,0,0,6837,1,0,0,0,22,0,0,0,0,7,135,93,0,2,30,0,0,0,1,0,13186,0,0,26,3,0,1,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,5,0,0,0,0,98,71,65,1,17,9,0,0,0,0,0,188,2,0,0,0,0,0,0,0,0,0,0,0,5,0,1,11,0,0,0,0,0,0,0,0,5,0,0,9,0,1,540,331,4 +2,0,0,7,0,26,5,0,23,2,6,0,0,0,11,1,17,0,7,1,0,0,0,1,0,1,0,0,4,0,6,0,0,0,15,0,26,9,0,0,69,0,0,0,1,0,0,4,0,0,0,0,6,79,0,0,0,0,0,1,0,0,0,0,0,10,0,0,737,26,93,0,11,0,0,0,0,0,16,0,0,0,0,3,1,11,114,0,0,15,0,0,0,0,0,40,0,6,1,0,2,0,58,0,6,0,0,384,0,0,0,0,24,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,136,0,71,0,0,0,11,12,54,38,139,0,0,0,0,1,0,0,0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,14,30,178,9,0,0,203,0,260,0,0,0,130,7,0,0,0,0,0,0,0,0,0,70,1,0,0,0,2,0,0,0,0,8,129,45,0,0,0,0,0,0,0,0,66,0,0,106,0,0,1,0,0,0,0,0,8,0,0,0,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,14,0,0,0,0,1,41,184,0,11,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,157,130,4 +10,0,0,10,0,22,12,0,36,3,13,0,0,0,6,0,36,0,6,2,0,0,0,1,7,0,0,0,2,0,7,0,0,0,8,0,22,66,0,0,99,0,0,0,1,0,0,1,0,0,0,0,1,85,0,0,0,0,0,1,0,0,0,0,0,10,0,0,537,22,123,0,4,0,0,0,0,0,5,0,0,0,0,0,2,4,87,0,0,8,0,0,2,28,0,286,40,1,0,0,2,0,170,0,4,0,0,446,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,34,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,77,0,51,0,0,0,2,14,44,273,160,0,0,0,0,1,0,0,0,0,0,0,0,0,822,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,17,164,13,0,0,195,0,328,0,0,0,126,8,0,0,0,0,0,0,0,0,0,109,1,0,0,0,10,0,0,0,0,32,119,102,0,0,90,0,138,0,0,0,92,0,0,20,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,3,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,5,0,0,0,0,1,30,117,0,4,5,0,0,0,0,0,163,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,112,22,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,403,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,25,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,206,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,49,3,0,0,47,0,143,0,0,0,5,3,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,11,4 +37,0,0,1,1,50,11,4,41,3,8,0,4,0,6,0,36,0,7,10,0,1,1,6,0,13,3,0,3,0,3,1,0,1,18,0,51,15,0,0,150,0,0,0,1,0,0,0,0,0,0,0,9,101,0,0,0,0,0,1,0,1,0,0,0,5,0,0,917,50,223,0,10,0,0,0,0,0,10,3,0,0,0,0,13,18,122,0,4,18,1,0,4,18,0,260,15,0,0,0,8,1,163,0,2,0,0,1143,0,0,0,0,8,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,112,0,75,0,0,0,11,17,213,209,116,0,0,0,0,1,0,3,0,0,0,0,0,0,415,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,35,57,250,4,0,0,210,0,366,0,0,0,82,38,0,0,0,0,0,0,0,0,0,113,0,0,0,0,18,0,0,0,0,8,134,46,0,0,30,0,0,0,0,0,111,0,0,4,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,10,0,0,0,0,9,69,34,0,14,9,0,0,0,0,0,159,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,2,0,0,251,693,4 +172,0,0,37,13,115,236,28,455,51,116,0,1,2,70,1,497,0,24,20,0,7,3,10,0,79,31,0,55,0,9,2,0,12,48,0,128,406,0,0,764,0,0,0,1,0,0,4,0,0,0,0,81,461,0,0,0,0,0,1,0,4,0,1,0,77,0,0,11393,115,1908,0,133,0,0,0,0,0,94,15,0,0,0,0,19,30,1946,0,28,48,12,0,12,176,0,2023,125,7,0,0,20,13,1398,0,49,0,0,4874,0,0,0,0,226,43,1,0,53,0,0,1,0,0,0,24,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,2,0,28,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,5,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,7,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,67,10,10,10,0,0,0,1438,0,295,0,0,0,90,138,359,1667,1477,0,0,0,0,1,0,7,0,0,0,0,0,0,4051,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,875,221,1824,84,0,0,1996,0,3534,0,8,0,694,201,0,0,0,0,0,0,0,0,0,1402,1,0,0,0,40,0,0,0,0,71,344,457,0,0,277,0,0,0,0,0,10479,0,0,840,3,0,1,10,0,0,0,0,9,0,0,0,1,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,1,0,0,0,0,3,22,1,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,126,1,1,1,0,104,0,0,0,0,105,176,272,0,167,9,0,0,0,0,0,693,14,0,0,0,0,0,0,0,0,0,0,0,14,0,1,59,0,0,0,0,0,0,0,0,0,0,0,18,0,4,2148,2074,4 +37,0,0,0,5,33,5,20,58,2,7,0,2,0,4,0,58,0,6,16,0,4,5,1,0,9,3,0,18,0,13,1,0,5,12,0,38,12,0,0,39,0,0,0,0,0,0,0,0,0,0,0,22,58,0,0,0,0,0,1,0,0,0,0,0,0,0,0,398,33,478,0,41,0,0,0,0,0,2,15,0,0,0,0,5,5,14,0,20,12,5,0,2,0,0,111,0,0,0,0,6,5,102,0,0,0,0,880,0,0,0,0,10,2,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,2,0,15,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,26,0,0,0,0,0,0,41,0,44,0,0,0,35,40,72,176,59,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,27,298,7,0,0,285,0,356,0,0,0,85,158,0,0,0,0,0,0,0,0,0,140,0,0,0,0,26,0,0,0,0,22,116,5,0,0,0,0,0,0,0,0,126,0,0,13,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,45,0,0,0,24,41,50,12,0,44,0,0,0,0,0,0,30,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,2,0,0,0,0,0,0,0,0,0,0,0,6,0,0,223,734,4 +0,0,0,12,2,44,70,2,110,12,26,0,0,9,20,2,1198,0,10,2,0,0,0,7,0,10,0,0,24,0,1,0,0,2,4,11623,46,128,0,0,88,0,0,0,1,0,0,9,0,0,0,0,1,561,0,0,0,0,0,1,0,0,0,0,0,17,0,0,82587,44,1455,0,22,0,0,0,0,0,58,0,0,0,0,7,8,148,14440,0,2,4,2,0,2,0,0,486,35,12,0,0,6,2,1256,0,13,124,0,8713,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,2822,0,71,0,0,0,13,16,2397,8620,2778,0,0,0,0,1,0,3,0,0,0,0,0,0,626,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,1,0,345,62,626,14,0,0,669,0,938,0,2,0,254,29,0,0,0,0,0,0,0,0,0,1445,1,0,0,0,9,0,0,0,0,1,211,13,0,0,144,0,0,0,0,0,9327,1,0,266,19,0,1,1,0,0,0,0,15,0,0,0,8,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,46,1,1,1,0,60,0,0,0,0,17,50,471,0,23,12,0,0,0,0,0,169,2,0,0,0,0,0,0,0,0,0,0,0,5,0,2,16,0,0,0,0,0,0,0,0,0,0,0,2,0,0,5117,67,4 +0,0,0,7,2,14,50,2,56,10,6,0,0,0,19,0,123,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,4,0,16,136,0,0,39,0,0,0,1,0,0,7,0,0,0,0,1,174,0,0,0,0,0,1,0,0,0,0,0,17,0,0,3867,14,221,0,3,0,0,0,0,0,24,0,0,0,0,0,1,10,716,0,2,4,2,0,2,0,0,89,0,12,0,0,6,2,89,0,14,0,0,354,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,540,0,278,0,0,0,2,7,36,24,739,0,0,0,0,1,0,0,0,0,0,0,0,0,2671,0,192,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,235,38,435,9,0,0,452,0,1561,0,2,0,154,19,0,0,0,0,0,0,0,0,0,265,1,0,0,0,2,0,0,0,0,1,133,43,0,0,0,0,0,0,0,0,740,0,0,881,0,0,1,0,0,0,0,0,15,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,12,1,1,1,0,2,0,0,0,0,17,20,172,0,6,0,0,0,0,0,0,93,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,2,1421,68,4 +0,0,0,3,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,2,0,0,16,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,3,0,0,32,0,42,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,26,4 +52,0,0,1,1,58,12,4,56,2,13,0,3,0,5,0,37,0,7,9,0,1,1,7,0,19,3,0,7,0,4,1,0,1,22,0,59,12,0,0,181,0,0,0,1,0,0,0,0,0,0,0,16,96,0,0,0,0,0,1,0,1,0,0,0,7,0,0,1029,58,262,0,21,0,0,0,0,0,10,3,0,0,0,0,13,18,149,0,4,22,1,0,4,31,0,387,30,0,0,0,6,1,234,0,2,0,0,8352,0,0,0,0,13,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,145,0,96,0,0,0,19,29,227,334,134,0,0,0,0,1,0,3,0,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,293,2,0,0,239,0,426,0,0,0,102,29,0,0,0,0,0,0,0,0,0,133,0,0,0,0,18,0,0,0,0,15,149,72,0,0,60,0,0,0,0,0,702,0,0,7,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,18,0,0,0,0,9,81,38,0,25,9,0,0,0,0,0,190,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,165,889,4 +0,0,0,5,0,36,24,0,47,3,23,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12493,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,701,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41081,36,910,0,23,0,0,0,0,0,45,0,0,0,0,0,8,92,6684,0,0,1,0,0,0,0,0,361,25,2,0,0,2,0,836,0,0,91,0,4932,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1635,0,32,0,0,0,12,15,492,2064,1613,0,0,0,0,1,0,3,0,0,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,272,5,0,0,307,0,287,0,0,0,145,13,0,0,0,0,0,0,0,0,0,859,1,0,0,0,9,0,0,0,0,1,163,7,0,0,132,0,0,0,0,0,4582,1,0,1039,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2464,30,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,0,0,0,34,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +18,0,0,0,2,23,36,2,59,1,13,0,6,0,5,0,72,0,8,5,0,1,0,1,0,5,0,0,5,0,1,0,0,2,9,0,24,93,0,0,108,0,0,0,0,0,0,0,0,0,0,0,5,101,0,0,0,0,0,1,0,0,0,0,0,4,0,0,309,23,213,0,11,0,0,0,0,0,0,3,0,0,0,0,2,2,38,0,2,9,2,0,9,26,0,288,30,0,0,0,16,2,175,0,1,1,0,2889,0,0,0,0,12,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,5,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,42,0,88,0,0,0,5,7,46,255,75,0,0,0,0,0,0,0,0,0,0,0,0,0,368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,67,319,2,0,0,259,0,758,0,1,0,80,7,0,0,0,0,0,0,0,0,0,199,0,0,0,0,7,0,0,0,0,4,125,59,0,0,68,0,0,0,0,0,815,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,21,1,1,1,0,5,0,0,0,0,9,33,10,0,11,0,0,0,0,0,0,158,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1058,102,4 +344,0,0,10,14,189,221,38,509,76,83,0,5,0,133,1,911,0,17,20,0,10,6,9,2,64,56,1,23,0,19,3,0,12,110,0,203,65785,6758,0,1077,0,0,0,1,0,0,5,1,0,0,0,77,448,0,0,0,0,0,1,0,3,0,19,0,111,0,0,39303,189,2941,0,97,0,0,0,0,0,140,27,0,0,0,0,14,25,8023,0,38,110,12,0,11,243,0,2359,155,11,0,0,18,14,2534,0,84,1,0,7659,0,0,0,0,113,83,2,0,31,0,0,1,0,0,0,21,0,0,0,0,0,0,0,19,0,0,0,38,0,0,0,0,0,2,0,29,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,75,8,0,0,0,0,0,2,0,0,0,0,0,9,26,0,0,0,4,0,0,0,0,8,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,2,133,12,12,12,0,0,2,5085,2,494,0,0,2,97,377,456,135931,5105,0,0,0,0,1,0,11,0,0,0,0,0,0,10999,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,464,247,1832,27,0,0,1886,0,2221,0,4,0,918,126381,0,0,0,0,0,0,0,0,0,1880,1,0,2,0,47,0,0,0,0,60,377,657,0,0,374,0,0,0,0,0,78317,0,0,8138,3,0,1,12,0,0,0,0,14,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,22,1,0,0,0,0,3,167,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,197,1,1,1,0,648,0,0,0,0,184,313,464,1,157,9,0,0,0,0,0,999,19,0,0,0,0,0,0,0,0,0,0,0,15,0,2,82,1,0,0,0,0,0,0,27,7,0,0,26,0,4,4630,2540,4 +0,0,0,5,0,35,25,0,49,3,24,0,0,7,4,0,799,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12342,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,741,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40458,35,967,0,24,0,0,0,0,0,46,0,0,0,0,0,8,94,6595,0,0,1,0,0,0,0,0,366,25,1,0,0,2,0,887,0,0,88,0,4473,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1492,0,32,0,0,0,13,16,490,2083,1471,0,0,0,0,1,0,3,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,275,5,0,0,306,0,297,0,0,0,146,10,0,0,0,0,0,0,0,0,0,914,1,0,0,0,9,0,0,0,0,1,163,6,0,0,135,0,0,0,0,0,4731,1,0,996,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,62,0,0,0,0,1,36,208,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2453,22,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,83,0,57,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,4,4 +21,0,0,0,1,34,47,1,59,6,6,0,1,0,11,0,73,0,8,6,0,0,0,6,0,10,6,0,7,0,2,2,0,1,6,0,35,54,0,0,97,0,0,0,1,0,0,0,0,0,0,0,6,93,0,0,0,0,0,1,0,0,0,0,0,8,0,0,789,34,193,0,11,0,0,0,0,0,13,0,0,0,0,0,11,16,131,0,1,6,1,0,2,25,0,339,15,0,0,0,4,1,207,0,8,0,0,714,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,10,10,10,0,0,0,95,0,47,0,0,0,8,17,196,175,100,0,0,0,0,1,0,3,0,0,0,0,0,0,450,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,113,31,264,1,0,0,296,0,413,0,1,0,97,42,0,0,0,0,0,0,0,0,0,205,0,0,0,0,12,0,0,0,0,6,138,53,0,0,30,0,0,0,0,0,197,0,0,12,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,36,1,1,1,0,15,0,0,0,0,9,41,23,0,18,9,0,0,0,0,0,113,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,0,173,40,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,2,0,0,403,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,132,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,156,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,24,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,14,4 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,35,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,6,4 +167,0,0,2,0,83,55,0,248,26,40,0,20,0,30,0,69,0,7,2,0,0,0,2,0,25,18,0,29,0,4,2,0,0,68,0,83,69,0,0,566,0,0,0,1,0,0,17,0,0,0,0,30,171,0,0,0,0,0,1,0,0,0,0,0,61,0,0,4707,83,710,0,60,0,0,0,0,0,114,0,0,0,0,7,3,35,678,0,0,68,0,0,22,170,0,1450,30,18,2,0,42,0,1155,0,28,0,0,2000,0,0,0,0,73,98,0,0,3,0,0,1,0,0,0,24,0,0,0,0,0,0,0,2,0,0,0,59,0,0,0,6,0,23,0,9,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,28,5,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,4,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,585,0,446,0,0,0,35,61,134,1490,594,0,0,0,0,1,0,0,0,0,0,0,0,0,3243,0,0,0,0,0,0,0,0,0,0,0,0,17,0,6,0,0,0,0,0,0,130,317,488,3,0,0,592,0,760,0,0,0,449,48,0,0,0,0,0,0,0,0,0,469,1,0,0,0,4,0,0,0,0,30,174,528,0,0,60,0,0,0,0,0,1030,0,0,145,0,0,1,2,0,0,0,0,27,0,0,0,14,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,101,1,1,1,0,59,0,0,0,0,1,151,445,0,78,0,0,0,0,0,0,860,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1170,742,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,414,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,130,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,33,0,28,0,0,0,2,4,26,94,45,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,155,0,0,0,2,5,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,27,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,14,4 +1,0,0,3,0,28,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,125,0,0,0,0,0,1,0,0,0,0,0,2,0,0,901,28,51,0,3,0,0,0,0,0,10,0,0,0,0,0,7,15,159,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,832,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,119,0,50,0,0,0,1,4,182,14,121,0,0,0,0,1,0,3,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,2,1,7,0,0,0,0,1,0,32,10,131,3,0,0,167,0,308,0,0,0,64,13,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,110,49,0,0,0,0,0,0,0,0,84,0,0,36,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,228,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,156,51,4 +118,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,556,0,20,44,0,99,2,6,0,33,22,0,17,0,8,2,0,10,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,341,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2462,89,1765,0,49,0,0,0,0,0,22,15,0,0,0,0,13,22,300,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,581,0,46,0,0,2555,0,0,0,0,46,16,1,0,31,0,0,1,0,0,0,23,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,292,0,235,0,0,0,42,72,334,592,304,0,0,0,0,1,0,6,0,0,0,0,0,0,2181,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1456,49,0,0,1496,0,2869,0,6,0,503,220,0,0,0,0,0,0,0,0,0,1111,1,0,0,0,151,0,0,0,0,30,283,149,0,0,155,0,0,0,0,0,10420,0,0,169,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,7,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,63,0,0,0,0,115,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,178,0,3,1634,1623,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,33,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +393,0,0,10,14,180,218,38,523,82,83,0,5,0,148,1,982,0,17,20,0,10,6,9,2,68,57,0,21,0,18,3,0,12,106,0,194,12507,8133,0,1086,0,0,0,1,0,0,5,1,0,0,0,80,411,0,0,0,0,0,1,0,3,0,29,0,118,0,0,39398,180,3019,0,98,0,0,0,0,0,132,27,0,0,0,0,14,25,7951,0,38,106,12,0,11,243,0,2361,155,12,0,0,18,14,2630,0,91,1,0,8331,0,0,0,0,130,85,2,0,29,0,0,1,0,0,0,24,0,0,0,0,0,0,0,23,0,0,0,48,0,0,0,0,0,2,0,35,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,95,8,0,0,0,0,0,2,0,0,0,0,0,9,27,0,0,0,4,0,0,0,0,11,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,2,135,12,12,12,0,0,2,5044,2,480,0,0,2,99,324,433,137307,5055,0,0,0,0,1,0,15,0,0,0,0,0,0,11539,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,464,274,1732,27,0,0,1859,0,2362,0,4,0,905,126352,0,0,0,0,0,0,0,0,0,1977,1,0,2,0,47,0,0,0,0,69,376,657,0,0,374,0,0,0,0,0,25069,0,0,8600,3,0,1,12,0,0,0,0,14,0,0,0,0,0,0,0,0,0,91,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,19,1,0,0,0,0,3,145,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,188,1,1,1,0,498,0,0,0,0,186,300,454,1,158,9,0,0,0,0,0,1036,19,0,0,0,0,0,0,0,0,0,0,0,15,0,2,88,1,0,0,0,0,0,0,33,8,0,0,26,0,4,4574,2707,4 +11,0,0,0,0,33,24,0,36,2,5,0,2,0,4,0,20,0,6,5,0,0,0,5,0,10,3,0,5,0,1,1,0,0,6,0,33,9,0,0,92,0,0,0,1,0,0,0,0,0,0,0,4,74,0,0,0,0,0,1,0,0,0,0,0,3,0,0,659,33,115,0,7,0,0,0,0,0,13,0,0,0,0,0,9,14,126,0,0,6,0,0,2,25,0,290,15,0,0,0,4,0,170,0,2,0,0,538,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,87,0,45,0,0,0,4,11,191,163,91,0,0,0,0,1,0,3,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,132,0,0,0,143,0,240,0,0,0,61,24,0,0,0,0,0,0,0,0,0,97,0,0,0,0,10,0,0,0,0,4,123,53,0,0,30,0,0,0,0,0,95,0,0,2,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,8,0,0,0,0,1,39,22,0,11,9,0,0,0,0,0,88,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,32,4 +9,0,0,9,1,22,45,1,45,0,3,0,1,0,18,0,78,0,9,1,0,0,0,1,0,0,0,0,4,0,6,0,0,1,6,0,23,61,0,0,92,0,3,0,1,0,0,3,0,0,0,0,5,82,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1934,22,175,0,10,0,0,0,0,0,14,0,0,0,0,0,1,8,645,0,1,6,1,0,2,0,0,62,0,5,0,0,7,1,131,0,1,0,0,385,0,0,0,0,3,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,2,0,0,0,11,0,0,0,0,0,0,0,0,2,4,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,165,0,67,0,0,0,10,9,43,74,176,0,0,0,0,1,0,0,0,0,0,0,0,0,521,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,138,30,299,16,0,0,322,0,503,0,1,0,116,10,0,0,0,0,0,0,0,0,0,199,1,0,0,0,2,0,0,0,0,2,118,51,0,0,0,0,0,0,0,0,546,0,0,914,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,368,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,20,1,1,1,0,14,0,0,0,0,9,29,145,0,10,0,0,1,0,0,0,66,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,412,31,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,34,0,0,0,0,3,21,195,55,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,84,0,58,0,0,0,50,5,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,4,4 +21,0,0,0,0,36,24,0,36,2,5,0,2,0,4,0,20,0,6,6,0,0,0,6,0,10,3,0,5,0,2,1,0,0,6,0,36,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,75,0,0,0,0,0,1,0,0,0,0,0,3,0,0,700,36,115,0,8,0,0,0,0,0,13,0,0,0,0,0,11,16,131,0,0,6,0,0,2,25,0,298,15,0,0,0,4,0,170,0,2,0,0,695,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,96,0,49,0,0,0,6,12,201,169,100,0,0,0,0,1,0,3,0,0,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,136,0,0,0,152,0,250,0,0,0,61,28,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,126,53,0,0,30,0,0,0,0,0,97,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,10,0,0,0,0,1,42,22,0,12,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,35,4 +250,0,0,35,21,105,214,37,394,31,47,0,0,2,73,1,751,0,24,60,0,115,2,7,0,59,22,0,27,0,6,3,0,20,47,0,125,400,165,0,425,0,0,0,1,0,0,1,1,0,0,0,58,383,0,0,0,0,0,1,0,3,0,12,0,55,0,0,2357,105,2616,0,85,0,0,0,0,0,12,39,0,0,0,0,14,21,197,0,37,47,20,0,9,35,0,850,65,4,0,0,18,21,682,0,51,0,0,3284,0,0,0,0,72,25,0,0,38,0,0,1,0,0,0,21,0,0,0,0,0,0,0,23,0,0,0,15,0,0,0,2,0,6,0,67,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,4,0,0,0,0,0,1,13,0,0,0,0,0,0,0,16,10,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,90,10,10,10,0,0,0,236,0,238,0,0,0,65,98,392,655,254,0,0,0,0,1,0,5,0,0,0,0,0,0,2664,0,0,0,0,0,0,0,0,0,1,0,0,1,1,2,0,0,0,0,1,0,884,374,2013,67,0,0,2078,0,4111,0,8,0,621,180,0,0,0,0,0,0,0,0,0,1506,1,0,2,0,184,0,0,0,0,57,341,86,0,0,151,0,0,0,0,0,10082,0,0,29,3,0,1,8,0,0,0,0,4,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,63,63,0,0,13,1,0,0,0,0,3,13,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,109,1,1,1,0,54,0,0,0,0,209,172,115,0,108,9,0,0,0,0,0,348,28,0,0,0,0,0,0,1,0,0,0,0,21,0,4,35,0,0,0,0,0,0,0,0,117,0,0,185,0,1,1668,1880,4 +0,0,0,6,0,25,5,0,19,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,0,0,1,0,25,6,0,0,27,0,2,0,1,0,0,2,0,0,0,0,1,93,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1020,25,48,0,1,0,0,0,0,0,10,0,0,0,0,0,7,15,296,0,0,1,0,0,0,0,0,74,5,3,0,0,2,0,28,0,0,0,0,481,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,87,0,33,0,0,0,0,3,177,9,88,0,0,0,0,1,0,3,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,112,6,0,0,155,0,514,0,0,0,54,4,0,0,0,0,0,0,0,0,0,53,1,0,0,0,8,0,0,0,0,0,108,42,0,0,0,0,0,0,0,0,85,0,0,381,3,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,3,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,149,0,2,9,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,306,4 +3,0,0,0,2,28,66,2,94,1,14,0,3,0,4,0,64,0,8,4,0,1,0,1,0,0,0,0,0,0,1,0,0,2,6,0,29,81,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,1,0,0,0,0,0,5,0,0,284,28,232,0,1,0,0,0,0,0,1,3,0,0,0,0,1,1,30,0,2,6,2,0,6,64,0,533,30,0,0,0,10,2,343,0,1,1,0,285,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,42,0,74,0,0,0,0,3,56,388,66,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,35,248,2,0,0,292,0,719,0,1,0,66,3,0,0,0,0,0,0,0,0,0,253,0,0,0,0,6,0,0,0,0,0,127,135,0,0,68,0,0,0,0,0,779,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,25,1,1,1,0,0,0,0,0,0,9,35,7,0,1,0,0,0,0,0,0,197,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1170,68,4 +75,0,2,0,5,54,14,10,576,3,16,0,4,0,8,14,5999,0,8,8,0,3,2,7,2,13,0,0,3,0,2,0,0,2,10,26,58,15,0,0,200,0,0,0,1,0,0,2,0,0,0,0,7,170,0,0,0,0,0,1,0,0,0,0,0,10,0,0,1358,54,6867,0,8,0,0,0,0,0,10,9,0,0,0,0,10,18,241,0,10,10,2,0,4,33,0,401,15,2,0,0,8,5,6215,0,3,1,0,1087,0,0,0,0,8,18,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,0,0,22,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1010,12,12,12,0,0,2,182,2,133,0,0,2,7,9,239,394,194,0,0,0,0,1,0,3,0,0,0,11409,3,1,652,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,67,14338,350,7,0,0,309,0,692,0,0,0,79,513,0,0,0,0,0,0,0,0,0,6639,1,0,0,0,22,0,0,0,0,6,133,93,0,2,30,0,0,0,1,0,12739,0,0,21,3,0,1,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,3,0,0,0,0,98,68,64,1,9,9,0,0,0,0,0,184,2,0,0,0,0,0,0,0,0,0,0,0,5,0,1,5,0,0,0,0,0,0,0,0,5,0,0,9,0,1,457,256,4 +16,0,0,6,1,15,33,1,55,0,9,0,0,0,4,1,118,0,8,4,0,0,0,1,0,3,0,0,3,0,1,0,0,1,2,0,16,89,0,0,56,0,0,0,1,0,0,1,0,0,0,0,3,70,0,0,0,0,0,1,0,0,0,0,0,8,0,0,419,15,188,0,7,0,0,0,0,0,5,0,0,0,0,0,4,6,37,0,1,2,1,0,2,21,0,226,15,1,0,0,4,1,156,0,1,0,0,507,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,70,0,78,0,0,0,3,7,53,160,68,0,0,0,0,1,0,0,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,0,0,0,0,0,0,120,13,264,7,0,0,260,0,474,0,1,0,75,39,0,0,0,0,0,0,3,0,0,228,1,0,0,0,5,0,0,0,0,7,112,65,0,0,29,0,0,0,0,0,424,0,0,19,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,1,12,1,1,1,0,3,0,0,0,0,25,18,87,0,7,0,0,0,0,0,0,97,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,96830,30,4 +49,0,0,1,1,52,16,4,71,3,16,0,4,0,6,0,37,0,7,10,0,1,1,6,0,14,3,0,4,0,4,1,0,1,18,0,53,15,0,0,203,0,0,0,1,0,0,0,0,0,0,0,11,114,0,0,0,0,0,1,0,1,0,0,0,10,0,0,1003,52,287,0,13,0,0,0,0,0,16,3,0,0,0,0,13,18,143,0,4,18,1,0,5,46,0,487,30,0,0,0,8,1,302,0,2,0,0,1369,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,135,0,85,0,0,0,14,21,216,413,126,0,0,0,0,1,0,3,0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,59,270,4,0,0,227,0,383,0,0,0,93,36,0,0,0,0,0,0,0,0,0,157,0,0,0,0,18,0,0,0,0,10,136,112,0,0,60,0,0,0,0,0,700,0,0,7,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,15,0,0,0,0,9,71,34,0,17,9,0,0,0,0,0,225,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,302,726,4 +59,0,0,10,1,21,27,1,39,20,4,0,0,0,28,0,70,0,9,1,0,0,0,1,0,0,3,0,3,0,4,1,0,1,11,0,22,54,0,0,89,0,0,0,1,0,0,3,0,0,0,0,4,90,0,0,0,0,0,1,0,0,0,0,0,26,0,0,5590,21,149,0,8,0,0,0,0,0,11,0,0,0,0,0,1,5,1253,0,1,11,1,0,1,0,0,52,0,5,0,0,4,1,98,0,24,0,0,758,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,57,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,674,0,50,0,0,0,8,10,45,48,681,0,0,0,0,1,0,0,0,0,0,0,0,0,2083,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,112,47,361,15,0,0,300,0,540,0,1,0,114,52,0,0,0,0,0,0,2,0,0,177,1,0,0,0,2,0,0,0,0,2,118,36,0,0,0,0,0,0,0,0,479,0,0,1370,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,19,1,1,1,0,12,0,0,0,0,9,33,191,0,11,0,0,0,0,0,0,131,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,20,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1013,495,4 +242,0,0,21,10,135,307,19,902,41,166,0,0,6,75,0,2221,0,22,17,0,5,1,12,0,52,21,0,41,0,14,4,0,10,69,1063,145,349,0,0,1549,0,0,0,1,0,0,2,0,0,0,0,60,515,0,0,0,0,0,1,0,1,0,14,0,171,0,0,13244,135,4188,0,98,0,0,0,0,0,130,9,0,0,0,0,22,50,2055,0,19,69,10,0,12,628,0,5451,170,4,0,0,16,10,5357,0,62,7,0,4874,0,0,0,0,61,83,1,0,0,0,0,1,0,0,0,19,0,0,0,0,0,0,0,20,0,0,0,12,0,0,0,0,0,4,0,37,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,9,0,0,0,0,31,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,104,12,12,12,0,0,0,867,0,326,0,0,0,78,118,549,4915,884,0,0,0,0,1,0,6,0,0,0,0,0,0,4070,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,814,174,1777,36,0,0,1975,0,2690,0,7,0,819,84,0,0,0,0,0,0,0,0,0,3699,1,0,0,0,35,0,0,0,0,59,342,1592,0,0,368,0,0,0,0,0,14251,1,0,379,7,0,1,8,0,0,0,0,3,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,7,39,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,149,1,1,1,0,113,0,0,0,0,81,214,352,0,120,12,0,0,0,0,0,1837,14,0,0,0,0,0,0,0,0,0,0,0,12,0,1,57,0,0,0,0,0,0,0,0,0,0,0,13,0,3,2487,2130,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,45,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,70,0,46,0,0,0,36,4,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,31,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,4,4 +3,0,0,1,0,9,11,0,42,1,9,0,1,0,3,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,9,9,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,1,0,0,0,0,0,5,0,0,61,9,78,0,2,0,0,0,0,0,5,0,0,0,0,0,1,1,27,0,0,1,0,0,2,27,0,219,15,0,0,0,6,0,144,0,0,0,0,38,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,21,0,0,0,0,3,22,164,40,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,11,45,1,0,0,64,0,115,0,0,0,25,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,2,0,0,0,0,0,94,64,0,0,30,0,0,0,0,0,610,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,1,0,0,0,0,1,10,1,0,2,0,0,0,0,0,0,78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,7,4 +7,0,0,6,1,31,93,5,205,34,73,0,0,0,38,0,24,0,7,7,0,1,0,2,1,1,3,0,2,0,1,0,0,1,15,0,32,6,5,0,390,0,0,0,1,0,0,1,0,0,0,0,1,140,0,0,0,0,0,1,0,0,2,0,0,61,0,0,1017,31,528,0,3,0,0,0,0,0,16,3,0,0,0,0,5,7,167,0,5,15,1,0,7,192,0,1541,270,2,0,0,2,1,932,0,37,0,0,987,0,0,0,0,8,2,0,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,308,0,106,0,0,0,2,14,67,1428,210,0,0,0,0,1,0,0,0,0,0,0,0,0,976,0,0,0,0,0,0,0,0,0,8,0,0,1,0,0,0,0,0,0,0,6,10,40,182,7,0,0,268,0,343,0,0,0,192,24,0,0,0,0,0,0,0,0,0,440,1,0,0,0,11,0,0,0,0,2,119,401,0,0,621,0,0,0,0,4,677,0,0,36,0,0,1,10,0,0,0,0,3,0,1,0,6,0,0,0,0,0,34,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,12,0,0,0,0,1,47,189,0,7,0,0,0,0,0,0,457,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,42,0,0,0,0,0,0,0,0,0,0,0,2,0,1,274,31,4 +93,0,0,0,12,83,18,48,143,3,23,0,2,0,5,0,118,0,7,33,0,12,12,3,0,3,3,0,20,0,56,1,0,12,50,0,95,12,0,0,166,0,0,0,0,0,0,0,0,0,0,0,59,118,0,0,0,0,0,1,0,0,0,0,0,3,0,0,935,83,1324,0,80,0,0,0,0,0,5,36,0,0,0,0,11,11,50,0,48,50,12,0,2,28,0,519,45,0,0,0,6,12,306,0,2,0,0,2233,0,0,0,0,24,18,0,0,3,0,0,0,0,0,0,19,0,0,0,0,0,0,0,18,0,0,0,17,0,0,0,0,0,1,0,22,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,0,0,0,0,0,0,87,0,113,0,0,0,115,118,152,417,123,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,716,14,0,0,682,0,596,0,0,0,270,92,0,0,0,0,0,0,0,0,0,316,0,0,0,0,60,0,0,0,0,58,174,55,0,0,99,0,0,0,0,0,266,0,0,55,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,82,1,1,1,0,135,0,0,0,100,97,145,50,0,83,0,0,0,0,0,0,192,16,0,0,0,0,0,0,0,0,0,0,0,12,0,1,3,0,0,0,0,0,0,0,0,0,0,0,22,0,0,284,859,4 +44,0,0,1,1,56,8,4,31,2,6,0,3,0,5,0,36,0,7,9,0,1,1,7,0,19,3,0,7,0,3,1,0,1,21,0,57,12,0,0,138,0,0,0,1,0,0,0,0,0,0,0,15,97,0,0,0,0,0,1,0,1,0,0,0,3,0,0,912,56,218,0,20,0,0,0,0,0,6,3,0,0,0,0,13,18,134,0,4,21,1,0,3,8,0,200,15,0,0,0,6,1,122,0,2,0,0,3872,0,0,0,0,11,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,130,0,79,0,0,0,17,27,224,167,120,0,0,0,0,1,0,3,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,52,274,2,0,0,225,0,402,0,0,0,91,36,0,0,0,0,0,0,0,0,0,96,0,0,0,0,18,0,0,0,0,14,147,19,0,0,30,0,0,0,0,0,117,0,0,4,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,14,0,0,0,0,9,78,37,0,24,9,0,0,0,0,0,128,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,140,838,4 +201,0,0,0,0,75,43,0,201,14,40,0,2,0,16,37,28,0,7,2,0,0,0,1,0,7,5,0,5,0,4,1,0,0,56,0,75,15,0,0,561,0,0,0,0,0,0,0,0,0,0,0,10,194,0,0,0,0,0,1,0,0,0,0,0,51,0,0,2887,75,558,0,16,0,0,0,0,0,101,0,0,0,0,0,2,2,377,0,0,56,0,0,2,190,0,1450,0,0,0,0,6,0,1122,0,13,0,0,2926,0,0,0,0,14,94,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,1,0,48,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,351,0,308,0,0,0,14,23,128,1695,377,0,0,0,0,0,0,0,0,0,0,0,0,0,2421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,127,317,0,0,0,393,0,346,0,0,0,311,35,0,0,0,0,0,0,0,0,0,374,0,0,0,0,3,0,0,0,0,10,167,499,0,0,0,0,0,0,1,0,705,0,0,5,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,76,1,1,1,0,12,0,0,0,0,1,131,56,0,22,0,0,0,0,0,0,711,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,932,661,4 +54,0,0,0,1,59,13,4,60,3,13,0,4,0,6,0,46,0,7,9,0,1,1,7,0,24,12,0,8,0,3,1,0,1,23,0,60,15,0,0,186,0,0,0,1,0,0,0,0,0,0,0,20,94,0,0,0,0,0,1,0,1,0,0,0,7,0,0,978,59,289,0,26,0,0,0,0,0,10,3,0,0,0,0,13,18,135,0,4,23,1,0,5,31,0,398,30,0,0,0,8,1,273,0,2,0,0,6517,0,0,0,0,16,11,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,29,10,10,10,0,0,0,156,0,116,0,0,0,23,43,226,346,133,0,0,0,0,1,0,3,0,0,0,0,0,0,534,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,67,280,3,0,0,246,0,421,0,0,0,106,30,0,0,0,0,0,0,0,0,0,149,0,0,0,0,18,0,0,0,0,19,150,73,0,0,60,0,0,0,0,0,709,0,0,7,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,19,0,0,0,0,9,83,39,0,39,9,0,0,0,0,0,194,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,309,926,4 +16,0,0,10,0,53,12,0,70,41,44,0,0,6,19,1,1530,0,7,1,0,0,0,9,0,11,0,0,78,0,8,0,0,0,14,4058,53,6,0,0,111,0,7,0,1,0,0,7,0,0,0,0,8,288,0,0,0,0,0,1,0,0,0,0,0,17,0,0,53883,53,1805,0,82,0,0,0,0,0,37,0,0,0,0,0,9,167,13242,0,0,14,0,0,0,0,0,512,20,8,0,0,2,0,1672,0,12,35,0,9469,0,0,0,0,36,0,2,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,10,0,0,0,0,0,0,108,36,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,108,12,12,12,0,0,0,2822,0,140,0,0,0,49,52,469,4139,2787,0,0,0,0,1,0,4,0,0,0,0,0,0,1152,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,84,257,331,12,0,0,342,0,569,0,0,0,182,34,0,0,0,0,0,0,4,0,0,1689,1,0,0,0,10,0,0,0,0,8,146,62,0,0,176,0,0,0,0,0,9984,1,0,1093,8,0,1,1,1,0,0,0,20,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,8,368,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,68,1,1,1,0,193,0,0,0,0,1,67,271,0,83,14,0,1,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,45,0,0,0,0,0,0,0,0,0,0,0,0,0,7,5720,241,4 +12,0,0,10,0,18,6,0,29,1,7,0,0,0,7,1,66,0,7,1,0,0,0,1,0,0,0,0,9,0,14,0,0,0,6,0,18,68,0,0,44,0,0,0,1,0,0,2,0,0,0,0,13,105,2,0,0,0,0,1,0,0,0,2,0,9,0,0,240802,18,140,0,23,0,0,0,0,0,11,0,0,0,0,0,1,4,117804,0,0,6,0,0,1,11,0,131,15,3,0,0,2,0,121,0,3,0,0,831,0,0,0,0,7,0,4,0,3,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,2,5,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,117491,0,80,0,0,0,26,19,59,214,117509,0,0,0,0,1,0,0,0,0,0,0,0,0,1904,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,17,9,136,14,0,0,210,0,482,0,0,0,144,23,0,0,0,0,0,0,0,0,0,123,1,0,0,0,2,0,0,0,0,6,102,130,0,0,31,0,0,0,0,0,1010,0,0,1848,0,0,1,6,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,2,0,0,0,0,0,0,21,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,35,0,0,0,14,15,24,267,0,23,0,0,0,0,0,0,73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,6,0,0,0,0,0,0,0,0,0,0,0,0,2,947,148,4 +1,0,0,9,4,19,30,13,57,4,10,0,2,0,11,0,233,0,8,7,0,3,3,2,0,1,0,0,0,0,1,0,0,4,8,0,23,69,0,0,116,0,0,0,0,0,0,0,0,0,0,0,1,91,0,6,0,0,0,1,0,0,0,0,0,8,0,0,276,19,457,0,1,0,0,0,0,0,0,9,0,0,6,0,2,2,68,0,13,8,4,0,3,0,0,56,0,0,0,0,10,4,56,0,6,0,0,307,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,62,0,63,0,0,0,0,3,53,82,137,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,130,56,337,13,0,0,350,0,814,0,1,0,113,10,0,0,0,0,0,0,0,0,0,351,0,0,0,0,15,0,0,0,0,0,126,13,0,0,0,0,0,0,0,0,379,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,1,1,1,0,1,0,0,0,0,33,31,33,0,2,0,0,0,0,0,0,173,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,256,39,4 +119,0,0,29,11,90,157,27,271,30,38,0,0,2,66,1,565,0,20,44,0,99,2,6,0,33,22,0,17,0,8,2,0,10,38,0,100,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,352,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2561,90,1775,0,50,0,0,0,0,0,21,15,0,0,0,0,13,22,300,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,586,0,46,0,0,2462,0,0,0,0,47,16,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,292,0,234,0,0,0,42,74,343,593,302,0,0,0,0,1,0,6,0,0,0,0,0,0,2201,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1441,49,0,0,1498,0,2997,0,6,0,503,353,0,0,0,0,0,0,0,0,0,1120,1,0,0,0,151,0,0,0,0,31,284,149,0,0,155,0,0,0,0,0,10430,0,0,161,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,10,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,63,0,0,0,0,121,138,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,208,0,3,1714,1625,4 +0,0,0,4,2,8,50,2,50,4,4,0,0,0,6,0,106,0,10,2,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,10,102,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,1,0,0,0,0,0,3,0,0,132,8,147,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,2,0,2,0,2,0,0,79,0,0,0,0,6,2,22,0,2,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,27,0,0,0,0,3,28,8,26,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,214,27,344,6,0,0,343,0,843,0,2,0,79,6,0,0,0,0,0,0,0,0,0,226,0,0,0,0,2,0,0,0,0,0,120,4,0,0,0,0,0,0,0,0,204,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,5,1,1,1,0,0,0,0,0,0,17,10,2,0,1,0,0,0,0,0,0,56,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,135,36,4 +1,0,0,5,0,41,18,0,55,4,11,0,0,6,4,1,854,0,6,2,0,0,0,8,0,11,0,0,17,0,5,0,0,0,5,1347,41,6,0,0,46,0,0,0,1,0,0,2,0,0,0,0,5,282,0,0,0,0,0,1,0,0,0,0,0,2,0,0,31200,41,983,0,18,0,0,0,0,0,35,0,0,0,0,0,9,63,3930,0,0,5,0,0,0,0,0,254,20,4,0,0,2,0,827,0,0,22,0,3010,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,1997,0,95,0,0,0,13,9,547,1816,1953,0,0,0,0,1,0,4,0,0,0,0,0,0,2499,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,28,234,5,0,0,248,0,314,0,0,0,91,42,0,0,0,0,0,0,0,0,0,955,1,0,0,0,10,0,0,0,0,2,124,31,0,0,48,0,0,0,0,0,3042,1,0,2765,17,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,39,39,0,0,4,0,0,0,0,0,17,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,36,0,0,0,0,33,46,219,0,19,14,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1141,201,4 +56,0,0,0,5,75,16,20,97,5,14,0,2,0,7,0,84,0,7,17,0,5,5,7,0,16,9,0,24,0,17,1,0,5,29,0,80,23,0,0,133,0,0,0,1,0,0,1,0,0,0,0,26,141,0,0,0,0,0,1,0,0,0,0,0,5,0,0,3780,75,616,0,47,0,0,0,0,0,10,15,0,0,0,0,13,20,694,0,20,29,5,0,1,28,0,420,35,1,0,0,4,5,299,0,4,0,0,2137,0,0,0,0,15,4,2,0,3,0,0,1,0,0,0,11,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,22,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,34,10,10,10,0,0,0,413,0,111,0,0,0,42,51,272,286,422,0,0,0,0,1,0,4,0,0,0,0,0,0,619,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,23,35,486,5,0,0,470,0,676,0,0,0,186,53,0,0,0,0,0,0,0,0,0,227,1,0,0,0,34,0,0,0,0,22,166,94,0,0,81,0,0,0,0,0,238,0,0,25,3,0,1,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,3,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,82,1,1,1,0,61,0,0,0,24,41,109,94,0,58,9,0,0,0,0,0,112,10,0,0,0,0,0,0,0,0,0,0,0,6,0,1,5,0,0,0,0,0,0,0,0,0,0,0,7,0,1,208,792,4 +0,0,0,6,0,39,56,0,99,1,38,0,0,8,3,0,965,0,6,1,0,0,0,8,0,10,0,0,44,0,1,0,0,0,1,14835,39,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,556,0,0,0,0,0,1,0,0,0,0,0,2,0,0,98242,39,1297,0,42,0,0,0,0,0,109,0,0,0,0,0,8,304,12127,0,0,1,0,0,0,0,0,568,30,2,0,0,2,0,1149,0,0,216,0,7749,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,5401,0,37,0,0,0,26,29,1414,6649,5332,0,0,0,0,1,0,3,0,0,0,0,0,0,6898,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,22,406,6,0,0,391,0,369,0,0,0,214,41,0,0,0,0,0,0,0,0,0,1175,1,0,0,0,9,0,0,0,0,1,168,72,0,0,289,0,0,0,0,0,6188,1,0,9188,53,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,53,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,119,0,0,0,0,1,40,283,0,43,12,0,1,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3391,257,4 +2,0,0,7,0,16,2,0,19,6,8,1,0,0,11,0,23,0,6,1,0,0,0,2,0,0,3,0,1,0,1,1,0,0,5,0,16,6,0,0,38,0,2,0,1,0,0,2,0,0,0,0,1,80,0,0,0,0,0,1,0,0,0,6,0,11,0,0,8243,16,71,0,3,0,0,0,0,0,9,0,0,0,0,0,2,6,1940,0,0,5,0,0,0,0,0,17,0,2,0,0,2,0,62,0,8,0,0,681,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,75,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1214,0,153,0,0,0,2,8,36,15,1261,0,0,0,0,1,0,0,0,0,0,0,0,0,3111,0,0,0,0,0,0,0,0,0,0,0,0,2,0,74,0,0,0,0,0,0,8,14,140,8,0,0,146,0,352,0,0,0,75,21,0,0,0,0,0,0,155,0,0,70,1,0,0,0,3,0,0,0,0,2,102,46,0,0,0,0,0,0,0,0,568,0,0,2315,0,0,1,2,1,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,146,0,0,0,0,282,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,85,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,4,0,0,0,0,1,21,155,0,6,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,76,0,0,0,0,0,0,0,1,1188,295,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,727,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,723,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,2,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,1,108,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,33,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +22,0,0,2,1,52,6,4,35,0,3,0,2,0,4,0,36,0,7,7,0,1,1,6,0,8,0,0,9,0,2,0,0,1,18,0,53,23,0,0,93,0,0,0,1,0,0,4,0,0,0,0,2,119,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8485,52,225,0,9,0,0,0,0,0,24,3,0,0,0,0,10,20,1325,0,4,18,1,0,1,0,0,100,0,8,0,0,4,1,68,0,0,0,0,1189,0,0,0,0,4,2,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,10,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,27,10,10,10,0,0,0,916,0,106,0,0,0,2,4,223,53,903,0,0,0,0,1,0,3,0,0,0,0,0,0,2452,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,23,30,274,3,0,0,286,0,554,0,0,0,129,16,0,0,0,0,0,0,0,0,0,93,1,0,0,0,15,0,0,0,0,2,135,49,0,0,0,0,0,0,0,0,587,0,0,1862,3,0,1,2,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,9,0,0,0,0,9,71,85,0,10,9,0,0,0,0,0,73,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,840,544,4 +5,0,0,0,0,12,3,0,5,0,1,0,1,0,2,0,12,0,6,2,0,0,0,0,0,2,0,0,2,0,1,0,0,0,4,0,12,12,0,0,25,0,0,0,0,0,0,0,0,0,0,0,2,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,57,12,26,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,4,0,0,1,0,0,13,0,0,0,0,4,0,14,0,0,0,0,108,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,20,0,19,0,0,0,2,5,27,13,23,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,21,62,0,0,0,61,0,117,0,0,0,27,2,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,3,104,4,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,2,0,0,0,0,1,16,4,0,5,0,0,0,0,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,4 +30,0,0,0,0,16,13,0,49,0,12,0,2,0,3,0,14,0,7,1,0,0,0,1,0,5,0,0,0,0,1,0,0,0,5,0,16,15,0,0,103,0,0,0,0,0,0,0,0,0,0,0,5,46,0,0,0,0,0,1,0,0,0,0,0,8,0,0,494,16,125,0,6,0,0,0,0,0,16,0,0,0,0,0,1,1,131,0,0,5,0,0,3,43,0,350,15,0,0,0,6,0,227,0,0,0,0,204,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,116,0,90,0,0,0,5,7,36,321,132,0,0,0,0,0,0,0,0,0,0,0,0,0,473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,25,93,1,0,0,95,0,68,0,0,0,50,4,0,0,0,0,0,0,0,0,0,100,0,0,0,0,2,0,0,0,0,5,103,109,0,0,30,0,0,0,0,0,631,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,0,0,0,0,0,1,21,5,0,6,0,0,0,0,0,0,203,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,180,4 +0,0,0,9,0,41,27,0,60,0,26,0,0,10,5,0,787,0,7,1,0,0,0,9,0,11,0,0,22,0,2,0,0,0,2,5928,41,6,0,0,57,0,2,0,1,0,0,3,0,0,0,0,2,298,0,0,0,0,0,1,0,0,0,0,0,4,0,0,30822,41,992,0,22,0,0,0,0,0,55,0,0,0,0,1,9,106,6399,0,0,2,0,0,0,0,0,407,35,4,0,0,2,0,902,0,0,74,0,4338,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,9,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,1154,0,47,0,0,0,14,16,610,2143,1121,0,0,0,0,1,0,3,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,135,16,283,9,0,0,353,0,389,0,0,0,184,23,0,0,0,0,0,0,0,0,0,922,1,0,0,0,10,0,0,0,0,3,150,53,0,0,137,0,0,0,0,0,4872,1,0,903,25,0,1,1,1,0,0,0,4,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,25,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,58,0,0,0,0,1,43,220,0,23,12,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2635,331,4 +118,0,0,29,11,90,157,27,272,30,38,0,0,2,66,2,745,0,20,44,0,99,2,6,0,33,22,0,19,0,7,3,0,10,38,0,100,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,350,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2629,90,1960,0,52,0,0,0,0,0,21,15,0,0,0,0,13,22,297,0,27,38,10,0,8,37,0,732,70,3,0,0,14,11,645,0,46,0,0,2562,0,0,0,0,46,16,1,0,32,0,0,1,0,0,0,22,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,60,10,10,10,0,0,0,312,0,295,0,0,0,42,73,380,593,301,0,0,0,0,1,0,6,0,0,0,0,0,0,2224,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1479,49,0,0,1498,0,2939,0,6,0,503,448,0,0,0,0,0,0,0,0,0,1302,1,0,0,0,151,0,0,0,0,32,284,149,0,0,155,0,0,0,0,0,10655,0,0,163,4,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,1,0,0,110,110,0,0,8,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,97,1,1,1,0,63,0,0,0,0,159,138,326,0,75,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,164,0,3,1737,1665,4 +0,0,0,0,0,1,0,1,20,0,1,0,0,0,1,0,797,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,793,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,2,0,0,0,0,0,0,0,13,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,11,0,0,0,0,0,0,0,0,0,820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,2,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,11,0,0,10,0,0,1,116,4 +15,0,0,9,0,52,280,0,41,19,16,0,0,0,33,0,33,0,8,3,0,0,0,1,0,8,6,0,12,0,3,0,0,0,32,0,52,21,3,0,183,0,6,0,1,0,0,14,1,0,0,0,10,162,0,0,0,0,0,1,0,0,0,18,0,28,0,0,12181,52,480,0,21,0,0,0,0,0,37,0,0,0,0,0,2,29,1816,0,0,32,0,0,4,17,0,240,32,17,3,0,2,0,782,0,22,2,0,1415,0,0,0,0,6,0,4,0,2,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,13,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,31,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,1457,0,411,0,0,0,12,24,85,419,1740,0,0,0,0,1,0,0,0,0,0,0,0,0,4409,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,8,45,429,11,0,0,311,0,665,0,0,0,209,33,0,0,0,0,0,0,0,0,0,411,1,0,2,0,4,0,0,0,0,9,144,114,0,0,50,0,0,0,0,0,1294,0,0,3054,0,0,1,0,1,0,0,0,17,0,0,0,9,1,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,60,0,0,0,0,239,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,22,0,0,0,0,1,84,295,0,29,0,0,0,0,0,0,134,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1623,420,4 +82,0,0,2,1,52,25,4,117,6,24,0,4,0,12,0,38,0,7,6,0,1,1,5,0,29,9,0,6,0,4,0,0,1,17,0,53,15,0,0,484,0,0,0,1,0,0,0,0,0,0,0,25,123,0,0,0,0,0,1,0,1,0,0,0,26,0,0,1354,52,370,0,29,0,0,0,0,0,16,3,0,0,0,0,8,13,269,0,4,17,1,0,4,88,0,803,15,0,0,0,8,1,553,0,7,0,0,1386,0,0,0,0,36,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,208,0,109,0,0,0,27,58,217,787,206,0,0,0,0,1,0,4,0,0,0,0,0,0,806,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,93,286,4,0,0,239,0,333,0,0,0,102,23,0,0,0,0,0,0,0,0,0,227,0,0,0,0,13,0,0,0,0,24,137,230,0,0,30,0,0,0,0,0,741,0,0,18,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,34,0,0,0,0,9,70,41,0,39,9,0,0,0,0,0,327,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,275,1558,4 +0,0,0,7,1,15,26,1,39,10,6,0,0,0,23,0,71,0,9,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,3,0,16,75,0,0,52,0,0,0,1,0,0,8,0,0,0,0,0,116,0,0,0,0,0,1,0,0,0,0,0,17,0,0,2367,15,178,0,1,0,0,0,0,0,31,0,0,0,0,0,1,12,764,0,1,3,1,0,1,0,0,58,0,9,0,0,4,1,84,0,13,0,0,575,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,9,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,578,0,127,0,0,0,0,3,47,41,590,0,0,0,0,1,0,0,0,0,0,0,0,0,699,0,0,0,0,0,0,0,0,0,0,0,0,8,0,4,0,0,0,0,0,0,111,25,298,8,0,0,317,0,1010,0,1,0,126,52,0,0,0,0,0,0,6,0,0,174,1,0,0,0,2,0,0,0,0,1,115,56,0,0,0,0,0,0,0,0,228,0,0,254,0,0,1,0,0,0,0,0,20,0,0,0,2,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0,1,0,1,24,1,1,1,0,0,0,0,0,0,9,19,259,0,1,0,0,2,0,0,0,85,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,8,587,71,4 +2,0,0,10,2,20,8,8,105,5,39,0,0,0,8,0,27,0,7,6,0,2,1,1,0,0,4,0,0,0,1,0,0,2,5,0,22,6,0,0,170,0,0,0,1,0,0,3,0,0,0,0,0,80,0,0,0,0,0,1,0,0,0,0,0,22,0,0,1175,20,330,0,1,0,0,0,0,0,24,6,0,0,0,0,1,5,179,0,8,5,2,0,3,81,0,670,100,5,0,0,2,2,405,0,6,0,0,291,0,0,0,0,1,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,159,0,62,0,0,0,0,6,65,525,177,0,0,0,0,1,0,0,0,0,1,0,0,0,565,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,8,9,163,12,0,0,237,0,434,0,0,0,129,8,0,0,0,0,0,0,3,0,0,194,1,0,0,0,10,0,0,0,0,0,102,269,0,0,266,0,0,0,0,0,93,0,0,180,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,0,0,0,0,0,17,27,274,0,5,0,0,0,0,0,0,212,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,3,0,3,228,41,4 +3,0,0,0,0,11,2,0,4,2,1,0,0,0,4,0,10,0,6,3,0,0,0,1,0,3,0,0,0,0,1,0,0,0,1,0,11,6,0,0,11,0,0,0,0,0,0,0,0,0,0,0,3,14,0,0,0,0,0,1,0,0,0,0,0,2,0,0,56,11,24,0,3,0,0,0,0,0,0,0,0,0,0,0,3,3,10,0,0,1,0,0,0,0,0,9,0,0,0,0,2,0,15,0,2,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,16,0,0,0,3,5,29,17,30,0,0,0,0,0,0,0,0,0,3,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,5,49,0,0,0,41,0,105,0,0,0,5,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,4,0,0,0,0,1,93,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,12,1,0,4,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,129,4 +207,0,0,26,17,80,193,26,346,34,45,0,0,2,76,1,650,0,22,32,0,18,2,5,0,45,16,0,30,0,5,3,0,16,36,0,97,540,0,0,376,0,0,0,1,0,0,0,0,0,0,0,45,338,0,0,0,0,0,1,0,0,0,2,0,54,0,0,2109,80,2491,0,74,0,0,0,0,0,4,30,0,0,0,0,16,21,156,0,26,36,16,0,8,48,0,897,80,0,0,0,16,17,735,0,51,0,0,2851,0,0,0,0,39,20,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,19,0,0,0,8,0,0,0,0,0,7,0,60,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,3,0,0,0,12,2,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,52,10,10,10,0,0,0,153,0,171,0,0,0,51,66,352,588,163,0,0,0,0,1,0,4,0,0,0,0,0,0,1802,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,773,178,1701,50,0,0,1716,0,2632,0,7,0,502,110,0,0,0,0,0,0,0,0,0,1335,0,0,0,0,57,0,0,0,0,47,283,107,0,0,187,0,0,0,1,0,14935,0,0,10,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,1,0,0,0,0,55,55,0,0,4,1,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,84,1,1,1,0,47,0,0,0,0,187,133,75,0,90,9,0,0,0,0,0,346,40,0,0,0,0,0,0,0,0,0,0,0,18,0,1,40,0,0,0,0,0,0,0,0,0,0,0,21,0,0,935,1226,4 +4,0,0,4,0,17,7,0,28,0,13,0,0,0,2,0,10,0,6,1,0,0,0,2,9,9,0,0,9,0,1,0,0,0,4,0,17,6,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,1,0,0,0,2,0,1,0,0,453,17,97,0,19,0,0,0,0,0,0,0,0,0,0,0,2,2,41,0,0,4,0,0,1,23,0,244,40,0,0,0,2,0,144,0,0,0,0,424,0,0,0,0,14,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,40,0,37,0,0,0,9,12,40,442,60,0,0,0,0,0,0,0,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,77,6,0,0,64,0,229,0,0,0,19,11,0,0,0,0,0,0,0,0,0,66,0,0,0,0,12,0,0,0,0,18,99,40,0,0,91,0,0,0,0,0,92,0,0,0,0,0,1,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,36,0,0,0,0,1,21,4,0,19,0,0,0,0,0,0,54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,7,4 +13,0,0,21,0,177,207,0,555,54,144,1,1,5,103,1,274,0,7,6,0,0,0,12,5,15,98,0,56,0,73,10,0,0,106,0,177,292,24,0,1040,0,0,0,1,0,0,9,0,0,0,0,91,455,0,0,0,0,0,1,0,0,0,0,0,61,0,0,25664,177,1609,0,138,0,0,0,0,0,44,0,0,0,0,0,15,32,2077,0,0,106,0,0,8,466,0,4053,625,15,1,0,2,0,3113,0,41,0,7,5840,0,1,0,0,130,0,9,0,0,0,0,1,0,0,0,69,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,3,30,1,1,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,10,10,10,0,0,0,2008,0,364,0,0,0,178,338,479,3173,2190,0,0,0,0,1,0,20,0,0,0,0,0,0,7907,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,2,2,32,162,974,34,0,0,1376,0,1582,0,0,0,1117,432,0,5,0,0,0,0,0,0,0,1298,1,0,0,0,23,0,0,0,0,61,368,1300,0,0,1618,0,2,0,0,0,2208,0,0,5608,3,0,1,32,1,0,0,0,24,0,0,0,3,0,0,0,0,0,53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,3,113,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,231,1,1,1,0,361,0,0,0,8,1,283,919,0,243,9,0,0,0,0,0,1333,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,70,27,0,0,0,0,0,0,19,0,0,0,0,0,9,2342,1420,4 +0,0,0,3,2,9,50,2,52,0,5,0,0,0,6,0,112,0,10,1,0,0,0,1,0,0,0,0,0,0,1,0,0,2,1,0,11,99,0,0,17,0,0,0,1,0,0,3,0,0,0,0,0,83,0,0,0,0,0,1,0,0,0,0,0,2,0,0,401,9,169,0,1,0,0,0,0,0,10,0,0,0,0,0,1,6,71,0,2,1,2,0,2,0,0,85,0,3,0,0,6,2,24,0,2,0,0,260,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,67,0,83,0,0,0,0,3,29,11,87,0,0,0,0,1,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,215,22,379,5,0,0,379,0,583,0,2,0,96,14,0,0,0,0,0,0,0,0,0,235,1,0,0,0,2,0,0,0,0,0,119,12,0,0,0,0,0,0,0,0,226,0,0,42,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,6,1,1,1,0,0,0,0,0,0,17,12,23,0,1,0,0,0,0,0,0,71,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,212,43,4 +383,0,0,9,13,193,203,37,527,67,90,0,7,0,128,1,915,0,15,30,0,10,6,10,2,43,42,0,21,0,18,4,0,11,118,0,206,65746,6457,0,1140,0,0,0,1,0,0,5,1,0,0,0,56,389,0,0,0,0,0,1,0,3,0,16,0,110,0,0,38694,193,3041,0,74,0,0,0,0,0,155,27,0,0,0,0,25,36,7850,0,37,118,11,0,12,283,0,2604,155,11,0,0,20,13,2687,0,74,1,0,6937,0,0,0,0,120,92,2,0,34,0,0,1,0,0,0,21,0,0,0,0,0,0,0,25,0,0,0,34,0,0,0,0,0,2,0,28,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,87,8,0,0,0,0,0,2,0,0,0,0,0,7,23,0,0,0,4,0,0,0,0,11,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,2,121,12,12,12,0,0,2,4994,2,524,0,0,2,76,277,449,136963,4993,0,0,0,0,1,0,13,0,0,0,0,0,0,11556,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,372,254,1623,25,0,0,1739,0,2019,0,3,0,894,127556,0,0,0,0,0,0,0,0,0,1886,1,0,2,0,58,0,0,0,0,46,332,761,0,0,374,0,0,0,0,0,78200,0,0,8572,3,0,1,11,0,0,0,0,14,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,23,1,0,0,0,0,3,135,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3,201,1,1,1,0,463,0,0,0,0,180,324,429,1,119,9,0,0,0,0,0,1089,18,0,0,0,0,0,0,0,0,0,0,0,14,0,2,73,0,0,0,0,0,0,0,32,8,0,0,26,0,4,4674,2702,4 +1,0,0,3,0,29,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,121,0,0,0,0,0,1,0,0,0,0,0,2,0,0,873,29,51,0,3,0,0,0,0,0,10,0,0,0,0,0,7,15,150,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,547,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,119,0,49,0,0,0,1,4,189,14,120,0,0,0,0,1,0,3,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,2,1,8,0,0,0,0,1,0,32,10,132,3,0,0,169,0,310,0,0,0,64,8,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,111,49,0,0,0,0,0,0,0,0,77,0,0,36,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,228,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,152,52,4 +0,0,0,5,0,36,25,0,49,3,24,0,0,7,4,0,820,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12445,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,679,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40800,36,988,0,24,0,0,0,0,0,46,0,0,0,0,0,8,94,6661,0,0,1,0,0,0,0,0,367,25,1,0,0,2,0,908,0,0,90,0,4686,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1569,0,32,0,0,0,13,16,497,2083,1547,0,0,0,0,1,0,3,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,273,5,0,0,310,0,285,0,0,0,150,17,0,0,0,0,0,0,0,0,0,935,1,0,0,0,9,0,0,0,0,1,162,6,0,0,136,0,0,0,0,0,4728,1,0,996,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,208,0,25,12,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2474,22,4 +54,0,0,0,1,56,13,4,57,3,13,0,4,0,6,0,38,0,7,8,0,1,1,8,0,16,3,0,6,0,4,1,0,1,22,0,57,15,0,0,188,0,0,0,1,0,0,0,0,0,0,0,13,92,0,0,0,0,0,1,0,1,0,0,0,7,0,0,1020,56,260,0,17,0,0,0,0,0,10,3,0,0,0,0,13,18,147,0,4,22,1,0,5,31,0,382,30,0,0,0,8,1,233,0,2,0,0,2442,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,140,0,110,0,0,0,16,23,221,327,129,0,0,0,0,1,0,3,0,0,0,0,0,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,67,271,3,0,0,237,0,412,0,0,0,103,26,0,0,0,0,0,0,0,0,0,138,0,0,0,0,18,0,0,0,0,12,147,73,0,0,60,0,0,0,0,0,702,0,0,6,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,17,0,0,0,0,9,79,38,0,21,9,0,0,0,0,0,194,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,317,728,4 +0,0,0,5,0,36,24,0,47,3,23,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12508,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,721,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41607,36,910,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6925,0,0,1,0,0,0,0,0,363,25,2,0,0,2,0,836,0,0,95,0,4900,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1604,0,33,0,0,0,12,15,492,2074,1582,0,0,0,0,1,0,3,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,277,5,0,0,307,0,294,0,0,0,146,12,0,0,0,0,0,0,0,0,0,859,1,0,0,0,9,0,0,0,0,1,163,7,0,0,134,0,0,0,0,0,4748,1,0,1039,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2508,31,4 +0,0,0,5,0,35,25,0,47,3,24,0,0,7,4,0,729,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12380,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,760,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39574,35,894,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6430,0,0,1,0,0,0,0,0,364,25,1,0,0,2,0,817,0,0,88,0,4881,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1379,0,34,0,0,0,12,15,490,2090,1358,0,0,0,0,1,0,3,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,274,5,0,0,306,0,286,0,0,0,146,14,0,0,0,0,0,0,0,0,0,842,1,0,0,0,9,0,0,0,0,1,163,6,0,0,135,0,0,0,0,0,4585,1,0,995,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2527,23,4 +123,0,0,37,16,123,211,43,351,53,84,1,1,2,76,1,760,0,24,55,0,100,3,10,0,81,34,0,74,0,8,4,0,14,56,0,136,406,160,0,554,0,0,0,1,0,0,4,0,0,0,0,81,401,0,0,0,0,0,1,0,4,0,0,0,59,0,0,6029,123,2652,0,156,0,0,0,0,0,30,24,0,0,0,0,18,29,833,0,43,56,14,0,10,55,0,1122,95,7,0,0,20,16,938,0,54,0,0,3507,0,0,0,0,102,8,1,0,43,0,0,1,0,0,0,30,0,0,0,0,0,0,0,5,0,0,0,7,0,0,0,0,0,2,0,31,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,29,2,0,0,0,0,0,5,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,7,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,809,0,314,0,0,0,90,130,435,849,816,0,0,0,0,1,0,7,0,0,0,0,0,0,2768,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,894,412,1885,82,0,0,1941,0,3578,0,8,0,636,1121,0,0,0,0,0,0,0,0,0,1511,1,0,0,0,168,0,0,0,0,76,356,156,0,0,217,0,0,0,0,0,10263,0,0,264,4,0,1,10,0,0,0,0,8,0,0,0,3,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,73,73,0,0,21,1,0,0,0,0,3,17,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,146,1,1,1,0,125,0,0,0,0,171,192,279,0,192,9,0,0,0,0,0,401,14,0,0,0,0,0,0,1,0,0,0,0,14,0,6,58,0,0,0,0,0,0,0,0,117,0,0,221,0,4,1912,2064,4 +0,0,0,8,0,34,6,0,42,1,5,0,0,6,4,0,536,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,1,898,34,6,0,0,48,0,2,0,1,0,0,2,0,0,0,0,1,168,0,0,0,0,0,1,0,0,0,0,0,4,0,0,19308,34,602,0,3,0,0,0,0,0,14,0,0,0,0,0,8,23,4360,0,0,1,0,0,0,0,0,189,20,3,0,0,2,0,584,0,0,1,0,2795,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,679,0,39,0,0,0,1,4,260,1167,666,0,0,0,0,1,0,3,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,19,198,8,0,0,223,0,308,0,0,0,73,5,0,0,0,0,0,0,0,0,0,605,1,0,0,0,9,0,0,0,0,0,117,33,0,0,6,0,0,0,0,0,3287,1,0,789,6,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,35,205,0,4,12,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1869,380,4 +0,0,0,6,0,8,2,0,25,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,6,0,0,0,1,0,0,2,0,0,0,0,0,88,0,0,0,0,0,1,0,0,0,0,0,1,0,0,215,8,49,0,1,0,0,0,0,0,5,0,0,0,0,0,1,4,30,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,24,0,0,0,0,122,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,33,0,0,0,0,3,22,6,46,0,0,0,0,1,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,100,8,0,0,122,0,250,0,0,0,54,3,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,0,94,36,0,0,0,0,0,0,0,0,31,0,0,15,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,207,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,38,4 +52,0,0,16,21,74,128,44,495,31,91,0,0,2,75,2,524,0,14,31,0,23,31,8,0,18,19,0,20,0,13,3,0,21,22,630,109,291,184,0,579,0,0,0,1,0,0,4,0,0,0,0,26,460,0,0,0,0,0,1,0,0,0,19,0,57,0,0,6174,74,2403,0,44,0,0,0,0,0,29,54,0,0,0,0,17,27,1120,0,44,22,21,0,7,181,0,1890,205,5,0,0,8,21,1394,0,40,0,0,5320,0,0,0,0,28,11,4,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,5,0,0,0,7,0,0,0,0,0,16,0,16,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,66,25,25,25,0,0,15,750,15,243,0,0,0,40,54,434,1474,716,0,0,0,0,1,0,3,0,0,0,1,1,0,1817,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,349,121,1659,41,0,0,1572,0,2218,0,3,0,483,170,0,0,0,0,0,0,0,0,0,1331,1,0,0,0,90,3,0,0,0,26,246,437,0,0,521,0,0,0,0,0,11717,0,0,675,3,0,1,4,0,0,0,0,5,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,53,53,0,0,20,1,0,0,0,0,3,27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,119,1,1,1,0,62,0,0,0,0,637,132,209,0,64,9,0,0,0,0,0,589,24,0,0,0,0,0,0,0,0,0,0,0,36,0,1,44,0,0,0,0,0,0,0,0,3,0,0,38,0,1,1327,638,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,402,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,131,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,49,3,0,0,47,0,141,0,0,0,5,2,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +2,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,7031,10,41,0,1,0,0,0,0,0,8,0,0,0,0,0,1,5,1898,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,13,0,0,0,0,134,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,819,0,34,0,0,0,0,3,26,8,829,0,0,0,0,1,0,0,0,0,0,0,0,0,1966,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,10,3,83,2,0,0,94,0,217,0,0,0,29,7,0,0,0,0,0,0,4,0,0,42,1,0,0,0,2,0,0,0,0,0,92,21,0,0,0,0,0,0,0,0,996,0,0,2278,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,819,478,4 +0,0,0,0,0,9,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,9,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,34,0,0,0,0,3,25,191,56,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,48,1,0,0,86,0,58,0,0,0,49,5,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,92,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,4,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,14,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,42,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,7,4 +22,0,0,5,0,47,10,0,32,0,8,0,0,2,2,0,15,0,6,10,0,0,0,4,0,14,0,0,4,0,1,0,0,0,14,0,47,6,0,0,81,0,0,0,1,0,0,0,0,0,0,0,7,88,0,0,0,0,0,1,0,0,0,0,0,7,0,0,411,47,72,0,10,0,0,0,0,0,2,0,0,0,0,0,13,17,55,0,0,14,0,0,1,21,0,259,20,0,0,0,2,0,133,0,0,0,0,533,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,61,0,45,0,0,0,6,9,207,164,60,0,0,0,0,1,0,3,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,32,10,161,5,0,0,167,0,1011,0,0,0,63,4,0,0,0,0,0,0,0,0,0,75,0,0,0,0,14,0,0,0,0,7,129,58,0,0,29,0,0,0,0,0,59,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,3,0,0,0,0,1,61,46,0,11,8,0,0,0,0,0,84,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,27,4 +148,0,0,29,10,83,183,22,400,30,68,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,93,301,0,0,641,0,0,0,1,0,0,3,0,0,0,0,28,341,0,0,0,0,0,1,0,3,0,12,0,78,0,0,2927,83,1476,0,39,0,0,0,0,0,67,12,0,0,0,0,13,22,389,0,22,33,9,0,10,173,0,1747,100,3,0,0,14,10,1179,0,46,0,0,2236,0,0,0,0,53,38,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,325,0,231,0,0,0,36,76,292,1487,354,0,0,0,0,1,0,5,0,0,0,0,0,0,2721,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1410,48,0,0,1543,0,2901,0,6,0,555,52,0,0,0,0,0,0,0,0,0,1112,1,0,0,0,30,0,0,0,0,22,278,486,0,0,215,0,0,0,0,0,9926,0,0,176,3,0,1,6,0,0,0,0,7,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,90,1,1,1,0,77,0,0,0,0,81,126,309,0,63,9,0,0,0,0,0,663,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1597,1657,4 +0,0,0,5,0,37,24,0,48,3,23,0,0,7,4,0,804,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12449,37,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,684,0,0,0,0,0,1,0,0,0,0,0,2,0,0,38959,37,967,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6470,0,0,1,0,0,0,0,0,361,25,2,0,0,2,0,892,0,0,91,0,4963,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1345,0,32,0,0,0,12,15,499,2065,1322,0,0,0,0,1,0,3,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,279,5,0,0,311,0,288,0,0,0,147,15,0,0,0,0,0,0,0,0,0,916,1,0,0,0,9,0,0,0,0,1,166,7,0,0,132,0,0,0,0,0,4709,1,0,1020,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,58,0,0,0,0,1,38,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2527,24,4 +3,0,0,5,6,13,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,19,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,96,0,0,0,0,0,1,0,0,0,0,0,25,0,0,496,13,536,0,3,0,0,0,0,0,5,15,0,0,0,0,2,6,49,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,313,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,61,0,48,0,0,0,2,10,44,224,99,0,0,0,0,1,0,1,0,0,0,0,0,0,428,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,117,36,382,11,0,0,400,0,614,0,1,0,103,10,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,109,74,0,0,57,0,0,0,0,0,541,0,0,25,0,0,1,0,0,0,0,0,3,0,2,0,2,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,6,0,0,0,0,49,22,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,11,0,0,222,36,4 +1,0,0,7,0,11,2,0,24,0,2,0,0,0,3,0,17,0,6,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,1,91,0,0,0,0,0,1,0,0,0,0,0,2,0,0,606,11,60,0,2,0,0,0,0,0,11,0,0,0,0,1,1,6,75,0,0,3,0,0,0,0,0,10,0,4,0,0,2,0,26,0,0,0,0,481,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,84,0,79,0,0,0,1,4,27,10,89,0,0,0,0,1,0,0,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,170,10,0,0,145,0,276,0,0,0,78,12,0,0,0,0,0,0,0,0,0,54,1,0,0,0,2,0,0,0,0,1,99,47,0,0,0,0,0,0,0,0,46,0,0,73,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,192,0,2,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,139,78,4 +12,0,0,4,0,18,2,0,23,3,3,0,0,0,6,0,91,0,6,1,0,0,0,1,0,0,45,0,15,0,16,0,0,0,5,0,18,65,0,0,22,0,52,0,1,0,0,52,0,0,0,0,15,280,0,0,0,0,0,1,0,0,0,0,0,7,0,0,8689,18,381,0,31,0,0,0,0,0,121,0,0,0,0,0,1,54,1277,0,0,5,0,0,0,0,0,133,0,64,0,0,2,0,319,0,4,0,0,485,0,3,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,1444,0,382,0,0,0,30,78,45,147,1839,0,0,0,0,1,0,0,0,0,0,0,0,0,3634,0,61,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,8,7,139,4,0,0,576,0,854,0,0,0,509,15,0,0,0,0,0,0,0,0,0,131,1,0,0,0,2,0,0,0,0,16,100,423,0,0,0,0,0,0,0,0,529,0,0,1307,0,0,1,0,1,0,0,0,146,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,140,0,0,0,0,16,15,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,30,0,0,0,0,1,23,102,0,76,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1117,356,4 +53,0,0,1,1,56,12,4,56,2,13,0,3,0,5,0,37,0,7,9,0,1,1,7,0,16,3,0,7,0,4,1,0,1,22,0,57,12,0,0,181,0,0,0,1,0,0,0,0,0,0,0,13,87,0,0,0,0,0,1,0,1,0,0,0,7,0,0,961,56,258,0,18,0,0,0,0,0,10,3,0,0,0,0,13,18,139,0,4,22,1,0,4,31,0,381,30,0,0,0,6,1,231,0,2,0,0,1326,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,139,0,90,0,0,0,16,23,221,327,128,0,0,0,0,1,0,3,0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,276,2,0,0,233,0,416,0,0,0,102,38,0,0,0,0,0,0,0,0,0,133,0,0,0,0,18,0,0,0,0,12,147,72,0,0,60,0,0,0,0,0,706,0,0,6,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,18,0,0,0,0,9,79,38,0,22,9,0,0,0,0,0,190,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,157,798,4 +0,0,0,2,0,9,2,0,23,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,1,0,0,3,0,0,0,0,0,83,0,0,0,0,0,1,0,0,0,0,0,1,0,0,319,9,56,0,1,0,0,0,0,0,9,0,0,0,0,1,1,7,58,0,0,1,0,0,0,0,0,10,0,5,0,0,2,0,22,0,0,0,0,167,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,61,0,47,0,0,0,0,3,24,7,74,0,0,0,0,1,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,110,8,0,0,128,0,244,0,0,0,63,5,0,0,0,0,0,0,0,0,0,51,1,0,0,0,2,0,0,0,0,0,97,38,0,0,0,0,0,0,0,0,35,0,0,29,0,0,1,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,116,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,102,38,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,732,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,728,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,2,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,1,108,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,0,0,0,34,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +19,0,0,0,0,25,4,0,8,3,1,0,2,0,5,0,20,0,7,4,0,0,0,2,0,7,3,0,3,0,2,1,0,0,12,0,25,12,0,0,66,0,0,0,0,0,0,0,0,0,0,0,9,35,0,0,0,0,0,1,0,0,0,0,0,2,0,0,251,25,51,0,13,0,0,0,0,0,0,0,0,0,0,0,5,5,26,0,0,12,0,0,2,0,0,42,0,0,0,0,6,0,51,0,2,0,0,4267,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,50,0,73,0,0,0,11,17,48,69,61,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,124,2,0,0,99,0,230,0,0,0,48,13,0,0,0,0,0,0,0,0,0,47,0,0,0,0,6,0,0,0,0,9,116,2,0,0,0,0,0,0,0,0,50,0,0,3,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,10,0,0,0,0,1,37,12,0,16,0,0,0,0,0,0,77,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,254,4 +0,0,0,0,0,1,0,1,20,0,1,0,0,0,1,0,733,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,729,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,9,0,0,1,107,4 +148,0,0,29,10,86,188,22,426,27,73,0,0,2,61,0,375,0,20,16,0,6,2,6,0,34,22,0,15,0,10,2,0,9,34,0,96,301,0,0,685,0,0,0,1,0,0,3,0,0,0,0,38,368,0,0,0,0,0,1,0,3,0,12,0,80,0,0,2886,86,1527,0,50,0,0,0,0,0,74,12,0,0,0,0,13,22,398,0,22,34,9,0,10,198,0,1957,100,3,0,0,14,10,1307,0,43,0,0,2513,0,0,0,0,50,41,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,34,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,344,0,237,0,0,0,48,88,301,1664,360,0,0,0,0,1,0,5,0,0,0,0,0,0,2769,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,143,1452,48,0,0,1563,0,2896,0,6,0,568,53,0,0,0,0,0,0,0,0,0,1145,1,0,0,0,30,0,0,0,0,32,280,551,0,0,215,0,0,0,0,0,9933,0,0,179,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,93,1,1,1,0,65,0,0,0,0,81,130,310,0,74,9,0,0,0,0,0,720,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,37,0,0,0,0,0,0,0,0,0,0,0,14,0,4,1619,1804,4 +26,0,0,7,6,49,58,21,113,9,13,0,0,2,18,4,341,0,9,13,0,5,5,8,0,22,10,0,7,0,2,0,0,6,11,0,55,219,0,0,159,0,0,0,1,0,0,1,1,0,0,0,16,152,0,0,0,0,0,1,0,0,0,8,0,21,0,0,1158,49,929,0,22,0,0,0,0,0,12,15,0,0,0,0,10,17,152,0,21,11,6,0,2,11,0,254,20,5,1,1,4,6,309,0,12,0,0,940,0,0,0,0,20,6,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,8,0,0,1,3,0,1,0,10,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,73,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,3,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,30,10,10,10,0,0,0,133,0,118,0,0,0,16,29,236,192,221,0,0,0,0,1,0,3,0,0,0,0,0,0,790,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,139,33,621,13,0,0,703,0,2511,0,1,0,322,20,0,0,0,1,0,0,0,0,0,558,1,0,5,0,31,0,0,0,0,18,212,89,0,0,34,0,0,0,0,0,1187,0,0,21,2,0,1,2,0,0,0,0,9,0,0,0,2,0,0,0,0,0,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,56,1,1,1,0,7,0,0,0,0,49,66,44,0,33,8,0,0,0,0,0,437,75,0,0,0,0,0,0,0,0,0,0,0,7,0,1,13,0,0,0,0,0,0,0,0,0,0,0,11,0,1,458,179,4 +2,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,7027,10,41,0,1,0,0,0,0,0,8,0,0,0,0,0,1,5,1901,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,13,0,0,0,0,122,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,817,0,36,0,0,0,0,3,26,8,827,0,0,0,0,1,0,0,0,0,0,0,0,0,1986,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,10,3,84,2,0,0,94,0,228,0,0,0,29,8,0,0,0,0,0,0,4,0,0,42,1,0,0,0,2,0,0,0,0,0,92,21,0,0,0,0,0,0,0,0,996,0,0,2274,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,828,476,4 +141,0,0,36,19,107,215,59,376,45,62,0,0,2,88,0,491,0,24,63,0,103,2,7,0,56,22,0,31,0,8,3,0,18,45,0,119,400,160,0,781,0,0,0,1,0,0,5,1,0,0,0,57,402,0,0,0,0,0,1,0,3,0,12,0,79,0,0,3597,107,2786,0,86,0,0,0,0,0,64,33,0,0,0,0,13,27,486,0,59,45,18,0,11,86,0,1259,95,10,1,0,18,19,858,0,64,0,0,4096,0,0,0,0,73,25,0,0,38,0,0,1,0,0,0,22,0,0,0,0,0,0,0,6,0,0,0,13,0,0,0,3,0,1,0,25,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,4,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,87,10,10,10,0,0,0,424,0,251,0,0,0,66,101,344,1095,467,0,0,0,0,1,0,5,0,0,0,0,0,0,3258,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,884,416,1855,66,0,0,1896,0,3996,0,8,0,620,159,0,0,0,0,0,0,0,0,0,1258,1,0,2,0,175,0,0,0,0,49,343,225,0,0,211,0,0,0,0,0,10242,0,0,160,3,0,1,8,0,0,0,0,13,0,0,0,4,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,3,22,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,112,1,1,1,0,80,0,0,0,0,97,164,218,0,111,9,0,0,0,0,0,501,12,0,0,0,0,0,0,1,0,0,0,0,13,0,4,53,0,0,0,0,0,0,0,0,117,0,0,206,0,6,2052,2123,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,23,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,24,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,36,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,4,4 +16,0,0,4,0,23,2,0,20,0,3,0,0,0,3,0,61,0,6,1,0,0,0,12,0,0,24,0,8,0,9,0,0,0,11,0,23,18,0,0,13,0,0,0,1,0,0,22,0,0,0,0,8,74,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2069,23,242,0,17,0,0,0,0,0,45,0,0,0,0,22,12,57,560,0,0,11,0,0,0,0,0,89,0,19,0,0,2,0,170,0,1,0,0,759,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,474,0,337,0,0,0,16,51,73,1227,599,0,0,0,0,1,0,0,0,0,0,0,0,0,2674,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,10,4,178,4,0,0,142,0,209,0,0,0,76,595,0,0,0,0,0,0,0,0,0,95,1,0,0,0,13,0,0,0,0,9,106,8,0,0,0,0,10,0,16,8,895,0,0,184,0,0,1,0,0,0,0,0,22,0,28,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,24,0,0,0,0,1,34,76,0,41,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1077,38,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,416,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,32,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,124,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,36,0,34,0,0,0,2,4,27,96,54,0,0,0,0,1,0,0,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,44,3,0,0,47,0,148,0,0,0,5,2,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,28,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,11,4 +118,0,0,29,11,90,157,27,271,30,38,0,0,2,66,1,559,0,20,45,0,98,2,6,0,33,22,0,17,0,8,2,0,10,38,0,100,301,160,0,395,0,0,0,1,0,0,3,0,0,0,0,34,335,0,0,0,0,0,1,0,3,0,13,0,52,0,0,2579,90,1767,0,49,0,0,0,0,0,22,15,0,0,0,0,13,22,302,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,584,0,46,0,0,2276,0,0,0,0,47,16,1,0,32,0,0,1,0,0,0,22,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,29,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,295,0,230,0,0,0,42,74,343,591,304,0,0,0,0,1,0,6,0,0,0,0,0,0,2276,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1452,49,0,0,1498,0,2870,0,6,0,502,573,0,0,0,0,0,0,0,0,0,1114,1,0,0,0,151,0,0,0,0,29,283,149,0,0,155,0,0,0,0,0,10428,0,0,169,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,53,53,0,0,6,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,63,0,0,0,0,121,138,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,156,0,4,1749,1622,4 +1,0,0,4,0,30,5,0,20,1,3,0,0,2,3,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,30,6,0,0,24,0,0,0,1,0,0,2,0,0,0,0,2,132,0,0,0,0,0,1,0,0,0,0,0,4,0,0,876,30,59,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,156,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,669,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,129,0,53,0,0,0,1,4,190,14,127,0,0,0,0,1,0,3,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,2,1,8,0,0,0,0,1,0,32,13,149,5,0,0,167,0,354,0,0,0,51,15,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,114,33,0,0,0,0,0,0,0,0,83,0,0,41,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,1,0,0,0,0,1,32,124,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,231,63,4 +153,0,0,29,10,84,191,22,440,30,76,0,0,2,64,0,375,0,20,15,0,6,2,7,0,26,22,0,15,0,8,2,0,9,33,0,94,301,0,0,737,0,0,0,1,0,0,3,0,0,0,0,28,368,0,0,0,0,0,1,0,3,0,12,0,86,0,0,2981,84,1544,0,40,0,0,0,0,0,72,12,0,0,0,0,13,22,399,0,22,33,9,0,10,213,0,2044,100,3,0,0,14,10,1380,0,46,0,0,2386,0,0,0,0,52,41,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,333,0,247,0,0,0,36,76,296,1749,365,0,0,0,0,1,0,5,0,0,0,0,0,0,2706,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1438,48,0,0,1559,0,2896,0,6,0,569,45,0,0,0,0,0,0,0,0,0,1168,1,0,0,0,30,0,0,0,0,22,279,590,0,0,215,0,0,0,0,0,9933,0,0,179,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,78,0,0,0,0,81,127,309,0,64,9,0,0,0,0,0,769,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,4,1650,1727,4 +3,0,0,5,0,44,38,0,32,6,33,0,0,7,10,0,188,0,6,1,0,0,0,9,0,11,0,0,29,0,2,0,0,0,4,3796,44,6,0,0,69,0,0,0,1,0,0,2,0,0,0,0,2,1318,0,0,0,0,0,1,0,0,0,12,0,8,0,0,54151,44,394,0,29,0,0,0,0,0,67,0,0,0,0,0,9,195,8408,0,0,4,0,0,0,0,0,466,25,2,0,0,2,0,311,0,4,181,0,5992,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,12,12,12,0,0,0,3674,0,60,0,0,0,18,21,1125,2551,3627,0,0,0,0,1,0,4,0,0,0,0,0,0,883,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,108,37,370,5,0,0,400,0,391,0,0,0,240,16,0,0,0,0,0,0,0,0,0,314,1,0,0,0,10,0,0,0,0,3,203,56,0,0,222,0,0,0,0,0,3242,1,0,2036,32,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,32,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,77,0,0,0,0,1,48,180,0,30,12,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2350,44,4 +27,0,0,11,3,70,56,6,83,191,10,0,0,2,206,1,281,0,11,9,0,1,1,4,0,20,9,0,8,0,4,0,0,3,32,0,73,180,0,0,497,0,0,0,1,0,0,0,0,0,0,0,16,134,0,0,0,0,0,1,0,0,0,0,0,204,0,0,2783,70,695,0,22,0,0,0,0,0,3,3,0,0,0,0,10,15,99,0,6,32,3,0,2,8,0,273,20,0,0,0,6,3,617,0,199,0,0,3551,0,0,0,0,123,0,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,126988,0,0,0,0,0,0,0,14,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,7,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,16,10,10,10,0,0,0,101,0,146,0,0,0,18,30,276,800,108,0,0,0,0,1,0,3,0,0,0,0,0,0,155942,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,246,253,712,16,0,0,583,0,966,0,2,0,209,878,0,0,0,0,0,0,0,0,0,650,0,0,0,0,15,0,0,0,0,18,185,38,0,0,34,0,0,0,0,1,738,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,43,43,0,0,9,1,0,0,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,2,74,1,1,1,0,9,0,0,0,0,51,105,46,0,32,9,0,0,0,0,0,302,15,0,0,0,0,0,0,0,0,0,0,0,4,0,1,195,0,0,0,0,0,0,0,0,0,0,0,4,0,0,671,262,4 +196,0,0,26,17,74,193,26,346,33,45,0,0,2,74,1,638,0,22,30,0,18,2,6,0,44,16,0,27,0,4,3,0,16,33,0,91,540,0,0,370,0,0,0,1,0,0,0,0,0,0,0,43,321,0,0,0,0,0,1,0,0,0,2,0,52,0,0,1998,74,2441,0,69,0,0,0,0,0,4,30,0,0,0,0,15,20,146,0,26,33,16,0,8,48,0,886,80,0,0,0,16,17,722,0,49,0,0,2486,0,0,0,0,35,19,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,17,0,0,0,6,0,0,0,0,0,8,0,59,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,1,0,0,0,0,0,0,13,0,0,0,3,0,0,0,12,2,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,52,10,10,10,0,0,0,144,0,161,0,0,0,48,62,335,574,157,0,0,0,0,1,0,4,0,0,0,0,0,0,1786,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,773,176,1687,50,0,0,1693,0,2591,0,7,0,488,98,0,0,0,0,0,0,0,0,0,1321,0,0,0,0,56,0,0,0,0,45,272,107,0,0,187,0,0,0,1,0,14546,0,0,9,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,1,0,0,0,0,51,51,0,0,9,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,78,1,1,1,0,42,0,0,0,0,181,124,72,0,85,9,0,0,0,0,0,343,40,0,0,0,0,0,0,0,0,0,0,0,18,0,1,39,0,0,0,0,0,0,0,0,0,0,0,22,0,0,923,1176,4 +5,0,0,0,0,15,2,0,4,0,1,0,0,0,2,0,10,0,7,1,0,0,0,1,0,4,0,0,2,0,1,0,0,0,4,0,15,6,0,0,26,0,0,0,0,0,0,0,0,0,0,0,4,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,68,15,25,0,6,0,0,0,0,0,0,0,0,0,0,0,1,1,11,0,0,4,0,0,0,0,0,13,0,0,0,0,2,0,14,0,0,0,0,135,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,4,6,31,28,30,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,23,69,0,0,0,63,0,131,0,0,0,24,7,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,4,105,3,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,2,0,0,0,0,1,19,4,0,7,0,0,0,0,0,0,19,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,73,4 +0,0,0,5,0,35,25,0,48,3,24,0,0,7,4,0,764,0,6,1,0,0,0,8,0,11,0,0,24,0,1,0,0,0,1,12530,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,702,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40168,35,930,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6683,0,0,1,0,0,0,0,0,366,25,1,0,0,2,0,852,0,0,92,0,4289,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1509,0,32,0,0,0,12,15,489,2094,1488,0,0,0,0,1,0,3,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,283,5,0,0,307,0,298,0,0,0,147,17,0,0,0,0,0,0,0,0,0,878,1,0,0,0,9,0,0,0,0,1,164,6,0,0,137,0,0,0,0,0,4686,1,0,991,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2493,22,4 +16,0,0,4,0,23,2,0,20,0,3,0,0,0,3,0,61,0,6,1,0,0,0,12,0,0,24,0,8,0,9,0,0,0,11,0,23,18,0,0,13,0,0,0,1,0,0,22,0,0,0,0,8,80,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2052,23,242,0,17,0,0,0,0,0,45,0,0,0,0,23,12,57,554,0,0,11,0,0,0,0,0,89,0,18,0,0,2,0,171,0,1,0,0,875,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,470,0,336,0,0,0,16,51,73,1223,599,0,0,0,0,1,0,0,0,0,0,0,0,0,2639,0,6,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,10,4,183,4,0,0,142,0,215,0,0,0,76,590,0,0,0,0,0,0,0,0,0,95,1,0,0,0,13,0,0,0,0,9,106,8,0,0,0,0,9,0,16,8,894,0,0,184,0,0,1,0,0,0,0,0,22,0,25,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,24,0,0,0,0,1,34,76,0,41,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1059,37,4 +0,0,0,5,3,11,74,3,73,1,6,0,0,0,15,0,159,0,12,2,0,0,0,0,0,0,0,0,0,0,1,0,0,3,2,0,14,172,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,5,0,0,37,11,220,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,3,2,3,0,3,0,0,116,0,0,0,0,8,3,54,0,5,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,20,0,0,0,0,3,36,14,30,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,36,455,8,0,0,511,0,710,0,3,0,124,1,0,0,0,0,0,0,0,0,0,339,0,0,0,0,2,0,0,0,0,0,140,3,0,0,0,0,0,0,0,0,372,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,8,1,1,1,0,0,0,0,0,0,25,16,5,0,1,0,0,0,0,0,0,83,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1227,46,4 +0,0,0,5,0,38,13,0,43,1,14,0,0,7,4,0,625,0,6,3,0,0,0,7,0,12,6,0,13,0,1,0,0,0,2,1569,38,6,0,0,44,0,0,0,1,0,0,4,0,0,0,0,3,213,0,0,0,0,0,1,0,0,0,0,0,2,0,0,14921,38,747,0,11,0,0,0,0,0,31,0,0,0,0,0,9,64,2681,0,0,2,0,0,0,0,0,277,25,5,1,0,2,0,708,0,0,28,0,2617,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,40,12,12,12,0,0,0,109,0,66,0,0,0,8,16,431,774,81,0,0,0,0,1,0,4,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,3,0,108,19,228,5,0,0,278,0,333,0,0,0,128,6,0,0,0,0,0,0,0,0,0,712,1,0,0,0,10,0,0,0,0,1,121,62,0,0,60,0,0,0,0,0,2391,1,0,165,12,0,1,1,0,0,0,0,4,0,0,0,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,30,0,0,0,0,1,40,197,0,20,12,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,971,43,4 +0,0,0,5,0,35,25,0,47,3,24,0,0,7,4,0,729,0,6,1,0,0,0,8,0,10,0,0,27,0,1,0,0,0,1,12334,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,740,0,0,0,0,0,1,0,0,0,0,0,2,0,0,38509,35,895,0,25,0,0,0,0,0,46,0,0,0,0,0,8,96,6316,0,0,1,0,0,0,0,0,368,25,1,0,0,2,0,817,0,0,88,0,4298,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1239,0,32,0,0,0,14,17,491,2076,1218,0,0,0,0,1,0,3,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,283,5,0,0,312,0,291,0,0,0,152,14,0,0,0,0,0,0,0,0,0,842,1,0,0,0,9,0,0,0,0,1,169,6,0,0,135,0,0,0,0,0,4574,1,0,1007,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,66,0,0,0,0,1,36,208,0,26,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2424,22,4 +146,0,0,0,13,119,107,43,266,16,36,2,5,0,20,8,281,0,14,31,0,12,8,6,0,26,9,0,15,0,11,1,0,7,42,0,132,284,0,0,432,0,0,0,1,0,0,4,0,0,0,0,30,247,0,0,0,0,0,1,0,0,0,0,0,15,0,0,2183,119,2013,0,39,0,0,0,0,0,12,30,0,0,0,0,16,26,150,0,43,42,7,0,7,75,0,919,75,0,0,0,16,13,629,0,15,0,0,2715,0,0,0,0,41,17,1,0,0,0,0,1,0,0,0,23,0,0,0,0,0,0,0,15,0,0,0,11,0,0,0,0,0,1,0,55,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,9,4,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,42,10,10,10,0,0,0,170,0,162,0,0,0,40,39,354,8498,251,0,0,0,0,1,0,3,0,0,0,0,0,0,1546,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,372,135,1196,19,0,0,1297,0,1664,0,3,0,434,7962,0,0,0,0,0,0,0,0,0,739,1,0,0,0,57,0,0,0,0,12,257,234,0,0,173,0,0,0,1,0,9866,0,0,24,3,0,1,10,0,0,0,0,4,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,20,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,129,1,1,1,0,46,0,0,0,0,105,174,123,0,53,9,0,0,0,0,0,352,15,0,0,0,0,0,0,0,0,0,0,0,14,0,1,16,0,0,0,0,0,0,0,0,0,0,0,22,0,1,369,397,4 +5,0,0,11,0,52,35,0,84,8,37,0,0,11,15,0,1464,0,7,1,0,0,0,9,0,11,0,0,34,0,12,0,0,0,12,3137,52,6,0,0,129,0,4,0,1,0,0,5,0,0,0,0,12,475,0,0,0,0,0,1,0,0,0,11,0,14,0,0,97667,52,1762,0,44,0,0,0,0,0,76,0,0,0,0,0,9,192,8274,0,0,12,0,0,0,0,0,566,40,7,0,0,2,0,1642,0,8,116,0,5174,0,0,0,0,2,0,6,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1035,0,0,0,0,0,0,0,0,0,31,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,74,12,12,12,0,0,0,4958,0,78,0,0,0,38,40,949,1537,4878,0,0,0,0,1,0,7,0,0,0,0,0,0,19359,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,159,36,362,11,0,0,572,0,997,0,0,0,398,37,0,0,0,0,0,0,0,0,0,1653,1,0,0,0,10,0,0,0,0,13,166,252,0,0,211,0,0,0,0,0,8110,1,0,15641,32,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,32,198,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,107,0,0,0,0,1,64,961,0,45,12,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5000,8498,4 +0,0,0,0,0,1,0,1,18,0,1,0,0,0,1,0,661,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,657,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,9,0,0,0,0,0,0,0,0,0,682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,2,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,9,0,0,1,99,4 +119,0,0,29,11,90,157,27,271,30,38,0,0,2,66,1,566,0,20,45,0,98,2,6,0,33,22,0,17,0,8,2,0,10,38,0,100,301,168,0,387,0,0,0,1,0,0,3,0,0,0,0,34,346,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2558,90,1776,0,50,0,0,0,0,0,21,15,0,0,0,0,13,22,294,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,586,0,46,0,0,2185,0,0,0,0,46,16,1,0,31,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,293,0,234,0,0,0,42,74,340,593,304,0,0,0,0,1,0,6,0,0,0,0,0,0,2156,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1451,49,0,0,1494,0,2949,0,6,0,499,364,0,0,0,0,0,0,0,0,0,1121,1,0,0,0,151,0,0,0,0,31,283,146,0,0,155,0,0,0,0,0,10434,0,0,170,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,8,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,63,0,0,0,0,119,138,314,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,177,0,3,1672,1619,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,44,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,4 +284,0,0,28,21,94,168,37,383,32,48,0,0,2,69,2,808,0,20,67,0,117,2,6,0,35,22,0,19,0,7,3,0,20,41,0,114,301,160,0,402,0,0,0,1,0,0,3,0,0,0,0,36,394,0,0,0,0,0,1,0,3,0,12,0,55,0,0,2758,94,3518,0,53,0,0,0,0,0,23,45,0,0,0,0,14,23,293,0,37,41,20,0,8,42,0,796,70,3,0,0,14,21,737,0,49,0,0,2762,0,0,0,0,64,35,0,0,30,0,0,1,0,0,0,19,0,0,0,0,0,0,0,26,0,0,0,14,0,0,0,0,0,7,0,69,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,19,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,320,0,302,0,0,0,43,76,408,637,320,0,0,0,0,1,0,5,0,0,0,0,0,0,2986,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,341,1854,58,0,0,1844,0,3156,0,6,0,592,694,0,0,0,0,0,0,0,0,0,1500,1,0,0,0,192,0,0,0,0,36,287,159,0,0,155,0,0,0,0,0,10731,0,0,162,5,0,1,7,0,0,0,0,5,0,0,0,1,0,0,0,0,0,31,0,0,0,0,0,0,0,0,1,0,0,106,106,0,0,11,1,0,0,0,0,3,21,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,102,1,1,1,0,63,0,0,0,0,239,155,317,0,77,9,0,0,0,0,0,339,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,38,0,0,0,0,0,0,0,0,117,0,0,259,0,2,1824,1894,4 +59,0,0,0,5,74,17,20,106,6,18,0,2,0,8,0,82,0,7,18,0,5,5,6,0,16,9,0,22,0,14,2,0,5,29,0,79,9,0,0,146,0,0,0,1,0,0,1,0,0,0,0,24,143,0,0,0,0,0,1,0,0,0,0,0,6,0,0,3708,74,647,0,43,0,0,0,0,0,10,15,0,0,0,0,13,20,687,0,20,29,5,0,1,37,0,481,55,1,0,0,4,5,322,0,5,0,0,1932,0,0,0,0,15,4,2,0,3,0,0,1,0,0,0,11,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,24,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,34,10,10,10,0,0,0,414,0,113,0,0,0,38,46,268,293,421,0,0,0,0,1,0,5,0,0,0,0,0,0,587,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,23,36,479,5,0,0,463,0,717,0,0,0,182,41,0,0,0,0,0,0,0,0,0,240,1,0,0,0,34,0,0,0,0,20,165,105,0,0,137,0,0,0,0,0,216,0,0,24,3,0,1,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,81,1,1,1,0,53,0,0,0,0,41,108,78,0,54,9,0,0,0,0,0,125,10,0,0,0,0,0,0,0,0,0,0,0,6,0,1,6,0,0,0,0,0,0,0,0,0,0,0,7,0,1,188,542,4 +0,0,0,9,0,39,71,0,57,43,69,0,0,8,4,0,828,0,7,2,0,0,0,8,0,10,0,0,27,0,2,0,0,0,2,8068,39,6,0,0,53,0,2,0,1,0,0,2,0,0,0,0,2,409,0,0,0,0,0,1,0,0,0,0,0,4,0,0,54279,39,1235,0,26,0,0,0,0,0,135,0,0,0,0,0,9,210,10189,0,0,2,0,0,0,0,0,611,30,3,0,0,2,0,1015,0,0,121,0,7670,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,2001,0,46,0,0,0,17,19,1174,4108,1970,0,0,0,0,1,0,3,0,0,0,0,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,122,145,335,9,0,0,451,0,356,0,0,0,278,24,0,0,0,0,0,0,0,0,0,1044,1,0,0,0,10,0,0,0,0,3,204,19,0,0,354,0,0,0,0,0,6916,1,0,1252,66,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,66,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,71,0,0,0,0,1,41,202,0,27,12,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,47,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4169,387,4 +120,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,562,0,20,44,0,99,2,6,0,33,22,0,17,0,7,3,0,10,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,349,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2551,89,1773,0,50,0,0,0,0,0,22,15,0,0,0,0,13,22,295,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,585,0,46,0,0,2562,0,0,0,0,47,17,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,294,0,236,0,0,0,42,73,338,590,304,0,0,0,0,1,0,7,0,0,0,0,0,0,2130,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1455,49,0,0,1495,0,2948,0,6,0,502,208,0,0,0,0,0,0,0,0,0,1117,1,0,0,0,151,0,0,0,0,29,282,149,0,0,155,0,0,0,0,0,10422,0,0,173,3,0,1,6,0,0,0,0,4,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,6,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,93,1,1,1,0,61,0,0,0,0,119,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,165,0,3,1633,1621,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,2,0,0,428,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,32,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,140,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,37,0,34,0,0,0,2,4,26,94,53,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,43,3,0,0,41,0,157,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,27,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365,14,4 +0,0,0,8,2,18,29,5,39,3,8,0,2,0,10,0,215,0,8,3,0,1,1,2,0,1,0,0,0,0,1,0,0,2,7,0,20,63,0,0,71,0,0,0,0,0,0,0,0,0,0,0,1,83,0,5,0,0,0,1,0,0,0,0,0,8,0,0,168,18,314,0,1,0,0,0,0,0,0,3,0,0,5,0,2,2,50,0,5,7,2,0,3,0,0,52,0,0,0,0,10,2,38,0,6,0,0,181,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,50,0,53,0,0,0,0,3,47,74,109,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,131,51,253,10,0,0,267,0,645,0,1,0,80,5,0,0,0,0,0,0,0,0,0,311,0,0,0,0,7,0,0,0,0,0,118,7,0,0,0,0,0,0,0,0,337,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,1,1,1,0,1,0,0,0,0,17,27,28,0,2,0,0,0,0,0,0,158,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,211,12,4 +0,0,0,2,0,8,2,0,14,0,3,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,67,0,0,0,0,0,1,0,0,0,0,0,1,0,0,7246,8,37,0,0,0,0,0,0,0,6,0,0,0,0,0,1,4,1929,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,14,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,825,0,25,0,0,0,0,3,22,4,834,0,0,0,0,1,0,0,0,0,0,0,0,0,1934,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,74,2,0,0,114,0,115,0,0,0,55,3,0,0,0,0,0,0,4,0,0,41,1,0,0,0,2,0,0,0,0,0,90,48,0,0,0,0,0,0,0,0,430,0,0,2323,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,240,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,830,10,4 +0,0,0,8,2,15,50,2,57,9,7,0,0,0,19,3,128,0,11,1,0,0,0,1,0,0,6,0,2,0,2,1,0,2,4,0,17,136,0,0,44,0,0,0,1,0,0,8,0,0,0,0,2,117,0,0,0,0,0,1,0,0,0,0,0,16,0,0,11393,15,248,0,5,0,0,0,0,0,30,0,0,0,0,0,1,10,3203,0,2,4,2,0,2,0,0,90,0,14,0,0,6,2,116,0,13,0,0,995,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,2633,0,288,0,0,0,4,11,40,26,2811,0,0,0,0,1,0,0,0,0,0,0,0,0,4743,0,187,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,217,37,423,10,0,0,464,0,864,0,2,0,163,12,0,0,0,0,0,0,0,0,0,275,1,0,0,0,2,0,0,0,0,1,133,47,0,0,0,0,0,0,0,0,1166,0,0,3231,0,0,1,0,0,0,0,0,19,0,0,0,2,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,13,1,1,1,0,4,0,0,0,0,17,21,173,0,11,0,0,0,0,0,0,90,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,2,0,2,3290,76,4 +0,0,0,3,0,10,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,6,0,1,0,1,0,0,1,0,0,0,0,0,60,0,0,0,0,0,1,0,0,0,0,0,2,0,0,8175,10,37,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,1970,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,13,0,0,0,0,590,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1144,0,143,0,0,0,0,3,26,4,1186,0,0,0,0,1,0,0,0,0,0,0,0,0,3145,0,0,0,0,0,0,0,0,0,0,0,0,1,0,79,0,0,0,0,0,0,8,3,76,3,0,0,120,0,215,0,0,0,55,8,0,0,0,0,0,0,170,0,0,40,1,0,0,0,2,0,0,0,0,0,92,48,0,0,0,0,0,0,0,0,525,0,0,2406,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,156,0,0,0,0,305,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,95,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,223,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,82,0,0,0,0,0,0,0,1,1194,7,4 +120,0,0,22,15,123,200,33,399,43,63,1,1,2,87,1,1407,0,23,19,0,8,4,9,2,43,26,0,28,0,102,2,0,13,59,0,138,370,0,0,544,0,0,0,1,0,0,3,0,0,0,0,139,472,0,0,0,0,0,1,0,2,0,13,0,80,0,0,7158,123,2798,0,167,0,0,0,0,0,25,21,0,0,0,0,17,27,1491,0,33,59,13,0,12,104,0,1768,140,4,0,0,18,15,1820,0,67,1,0,4526,0,0,0,0,135,16,2,0,53,0,0,1,0,0,0,20,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,2,0,23,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,26,2,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,17,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,75,12,12,12,0,0,2,1028,2,325,0,0,2,241,267,429,1552,1036,0,0,0,0,1,0,6,0,0,0,0,0,0,2591,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,769,200,1757,43,0,0,1826,0,3232,0,7,0,617,115,0,0,0,0,0,0,0,0,0,2184,1,0,0,0,42,0,0,0,0,130,336,262,0,0,308,0,0,0,0,0,11963,0,0,430,3,0,1,10,0,0,0,0,6,0,0,0,1,0,0,0,0,0,43,0,0,1,0,0,0,0,0,0,0,0,71,71,0,0,13,1,0,0,0,0,3,114,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,135,1,1,1,0,258,0,0,0,0,260,197,215,1,192,9,0,0,0,0,0,523,13,0,0,0,0,0,0,0,0,0,0,0,16,0,1,53,0,0,0,0,0,0,0,0,10,0,0,30,0,3,1480,1620,4 +1,0,0,3,0,28,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,120,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1141,28,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,192,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,494,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,143,0,49,0,0,0,1,4,182,14,141,0,0,0,0,1,0,3,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,1,0,32,10,134,3,0,0,160,0,323,0,0,0,54,13,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,110,37,0,0,0,0,0,0,0,0,103,0,0,112,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,176,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,187,55,4 +0,0,0,0,0,8,41,0,49,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,142,8,132,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,45,0,338,15,0,0,0,4,0,231,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,32,0,0,0,0,3,21,207,54,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,87,0,57,0,0,0,53,3,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2,0,0,0,0,0,91,90,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,106,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,4,4 +411,0,0,32,28,118,277,64,812,40,135,0,0,2,87,1,766,0,24,82,0,122,2,6,0,61,19,0,35,0,9,2,0,27,55,0,140,400,159,0,1429,0,0,0,1,0,0,6,1,0,0,0,62,472,0,0,0,0,0,1,0,3,0,21,0,143,0,0,4639,118,4210,0,97,0,0,0,0,0,112,60,0,0,0,0,14,28,648,0,64,55,27,0,12,408,0,3689,90,11,0,0,18,28,2597,0,63,0,0,4610,0,0,0,0,107,102,0,0,38,0,0,1,0,0,0,21,0,0,0,0,0,0,0,28,0,0,0,19,0,0,0,2,0,7,0,76,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,3,0,0,0,0,0,1,15,0,0,0,0,0,0,0,20,6,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,105,10,10,10,0,0,0,571,0,423,0,0,0,71,118,428,3261,602,0,0,0,0,1,0,4,0,0,0,0,0,0,5235,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,886,413,2210,68,0,0,2361,0,4274,0,8,0,829,474,0,0,0,0,0,0,0,0,0,2104,1,0,2,0,212,0,0,0,0,58,355,1061,0,0,192,0,0,0,0,0,11079,0,0,164,4,0,1,9,0,0,0,0,13,0,0,0,4,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,64,64,0,0,17,1,0,0,0,0,3,38,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,121,1,1,1,0,123,0,0,0,0,227,195,212,0,117,9,0,0,0,0,0,1375,32,0,0,0,0,0,0,1,0,0,0,0,23,0,4,50,0,0,0,0,0,0,0,0,117,0,0,208,0,5,2528,2472,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,406,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,129,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,30,0,27,0,0,0,2,4,27,94,44,0,0,0,0,1,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,49,3,0,0,47,0,143,0,0,0,5,4,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +0,0,0,6,0,41,55,0,93,2,39,0,0,8,3,0,885,0,6,1,0,0,0,8,0,10,0,0,44,0,1,0,0,0,1,12162,41,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,532,0,0,0,0,0,1,0,0,0,0,0,2,0,0,109480,41,1211,0,42,0,0,0,0,0,107,0,0,0,0,0,8,303,13039,0,0,1,0,0,0,0,0,569,30,2,0,0,2,0,1066,0,0,213,0,8473,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,6346,0,37,0,0,0,26,29,1426,7325,6275,0,0,0,0,1,0,3,0,0,0,0,0,0,8092,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,25,376,6,0,0,387,0,361,0,0,0,206,45,0,0,0,0,0,0,0,0,0,1089,1,0,0,0,9,0,0,0,0,1,170,68,0,0,290,0,0,0,0,0,6021,1,0,10493,52,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,52,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,119,0,0,0,0,1,42,283,0,43,12,0,1,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3405,208,4 +0,0,0,6,4,17,51,2,86,3,6,0,16,7,15,0,251,0,10,3,0,0,0,1,0,2,0,0,2,0,1,0,0,2,3,6,19,96,0,0,46,0,0,0,1,0,0,1,0,0,0,0,2,184,0,0,0,0,0,1,0,0,0,0,0,6,0,0,253,17,367,0,5,0,0,0,0,0,4,0,0,0,0,0,1,3,23,0,2,3,2,0,2,0,0,87,0,1,0,0,6,4,186,0,2,0,0,180,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,91,39,69,0,0,0,2,5,38,27,54,0,0,0,0,1,0,0,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,491,29,449,10,0,0,500,0,1733,0,2,0,169,192,0,0,0,0,0,0,0,0,0,442,1,0,0,0,4,0,0,0,0,4,175,34,0,0,0,0,0,0,0,0,2708,0,0,8,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,9,1,1,1,0,2,0,0,0,0,17,22,80,0,5,0,0,0,0,0,0,65,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1113,76,4 +5,0,0,3,0,11,2,0,15,0,2,0,0,0,4,0,15,0,7,1,0,0,0,1,0,0,0,0,2,0,4,0,0,0,2,0,11,6,0,0,39,0,1,0,1,0,0,2,0,0,0,0,3,50,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1571,11,54,0,6,0,0,0,0,0,10,0,0,0,0,0,1,8,535,0,0,2,0,0,0,0,0,23,0,4,0,0,2,0,23,0,0,0,0,199,0,0,0,0,5,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,39,0,0,0,6,9,28,20,102,0,0,0,0,1,0,0,0,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,97,5,0,0,116,0,250,0,0,0,55,6,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,4,93,39,0,0,0,0,0,0,0,0,217,0,0,790,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,365,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,8,0,0,0,0,1,13,121,0,6,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,269,15,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,33,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +0,0,0,3,0,11,2,0,42,0,2,0,0,0,2,0,199,0,6,1,0,0,0,1,0,0,114,0,20,0,39,0,0,0,0,0,11,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,38,30,0,0,0,0,0,1,0,0,0,0,0,2,0,0,669,11,411,0,59,0,0,0,0,0,0,0,0,0,0,0,1,1,15,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,741,0,0,0,0,660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,25,0,22,0,0,0,76,147,25,120,35,0,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,96,3,0,0,39,0,120,0,0,0,0,5,0,0,0,0,0,0,0,0,0,253,0,0,0,0,2,0,0,0,0,1,91,1,0,0,0,0,0,0,0,0,518,0,0,38,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,58,0,0,0,0,1,11,0,0,173,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,4,4 +36,0,0,27,2,434,64,2,258,14,140,0,0,2,92,0,335,0,8,6,0,1,1,7,1,9,33,0,19,0,101,2,0,2,400,0,436,495,0,0,1569,0,0,0,1,0,0,3,0,0,0,0,104,233,0,0,0,0,0,1,0,0,0,3,0,45,0,0,5215,434,1178,0,29,0,0,0,0,0,12,3,0,0,0,1,10,20,933,0,2,400,2,0,11,180,0,1701,205,3,0,0,4,2,1687,0,17,0,0,8406,0,0,0,0,41,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0,0,13,0,35,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,6,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,30,10,10,10,0,0,0,543,0,478,0,0,0,111,166,611,1480,636,0,0,0,0,1,0,3,0,0,0,0,0,0,2029,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,213,247,1871,108,0,0,1869,0,1596,0,1,0,1595,76,0,0,0,0,0,0,0,0,0,899,1,0,0,0,16,0,0,0,0,12,612,547,0,0,469,0,0,0,0,0,6102,0,0,1217,3,0,1,1,0,0,0,0,5,0,0,0,1,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,110,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,438,1,1,1,0,632,0,0,0,0,17,836,866,0,155,9,0,0,0,0,0,1534,10,0,0,0,0,0,0,0,0,0,0,0,3,0,1,38,0,0,0,0,0,0,0,0,0,0,0,3,0,2,4057,3292,4 +6,0,0,16,0,42,4,0,125,13,45,1,0,0,25,0,32,0,6,2,0,0,0,1,0,0,6,0,3,0,4,0,0,0,26,0,42,106,0,0,214,0,0,0,1,0,0,1,0,0,0,0,3,134,0,0,0,0,0,1,0,0,0,2,0,28,0,0,528,42,219,0,7,0,0,0,0,0,4,0,0,0,0,0,2,4,24,0,0,26,0,0,2,88,0,726,185,2,0,0,2,0,462,0,20,0,0,1175,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,48,0,83,0,0,0,6,14,61,344,58,0,0,0,0,1,0,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,32,244,20,0,0,198,0,732,0,0,0,116,33,0,0,0,0,0,0,0,0,0,238,1,0,0,0,3,0,0,0,0,2,137,154,0,0,286,0,0,0,0,1,3464,0,0,15,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,10,0,0,0,0,1,68,72,0,13,0,0,0,0,0,0,220,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,1,123,112,4 +13,0,0,11,2,24,55,2,73,25,76,0,0,0,92,6,119,0,11,1,0,0,0,1,0,0,0,0,5,0,9,0,0,2,12,0,26,102,0,0,226,0,0,0,1,0,0,4,1,0,0,0,8,126,0,0,0,0,0,1,0,0,0,11,0,28,0,0,4148,24,383,0,14,0,0,0,0,0,19,0,0,0,0,0,1,6,502,0,2,12,2,0,2,13,0,234,25,7,0,0,6,2,360,0,27,0,0,1037,0,0,0,0,3,5,0,0,0,0,0,1,0,0,0,4,0,0,2,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,21,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,395,0,93,0,0,0,16,17,58,652,405,0,0,0,0,1,0,0,0,0,0,0,0,0,1825,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,216,90,544,16,0,0,441,0,806,0,2,0,135,31,0,0,0,0,0,0,0,0,0,432,1,0,3,0,2,0,0,0,0,9,135,33,0,0,52,0,2,0,0,0,480,0,0,656,0,0,1,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,15,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,2,26,1,1,1,0,21,0,0,0,0,17,38,74,0,14,0,0,0,0,0,0,205,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,27,0,0,0,0,0,0,0,0,0,0,0,2,0,4,802,118,4 +0,0,0,4,1,11,26,1,32,0,4,0,0,0,5,0,69,0,8,1,0,0,0,1,0,0,3,0,1,0,1,1,0,1,2,0,12,54,0,0,14,0,1,0,1,0,0,1,0,0,0,0,1,31,0,0,0,0,0,1,0,0,0,0,0,4,0,0,890,11,104,0,3,0,0,0,0,0,4,0,0,0,0,0,1,4,437,0,1,2,1,0,1,0,0,49,0,1,0,0,4,1,36,0,2,0,0,205,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,38,0,27,0,0,0,2,9,28,22,50,0,0,0,0,1,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,112,14,206,5,0,0,220,0,270,0,1,0,50,1,0,0,0,0,0,0,0,0,0,144,1,0,0,0,2,0,0,0,0,2,105,3,0,0,0,0,0,0,0,0,303,0,0,739,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,1,1,1,0,6,0,0,0,0,9,14,3,0,6,0,0,0,0,0,0,43,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,265,7,4 +0,0,0,5,0,36,24,0,50,3,23,0,0,7,4,0,856,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12513,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,737,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41396,36,1022,0,24,0,0,0,0,0,45,0,0,0,0,0,8,92,6743,0,0,1,0,0,0,0,0,364,25,2,0,0,2,0,944,0,0,93,0,5073,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,1517,0,32,0,0,0,13,16,493,2072,1495,0,0,0,0,1,0,3,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,275,5,0,0,308,0,296,0,0,0,146,13,0,0,0,0,0,0,0,0,0,970,1,0,0,0,9,0,0,0,0,1,164,7,0,0,133,0,0,0,0,0,4955,1,0,1032,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,212,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2512,29,4 +25,0,0,0,0,22,6,0,14,1,3,0,3,0,4,1,20,0,6,4,0,0,0,1,0,0,0,0,1,0,2,0,0,0,7,0,22,15,0,0,54,0,0,0,1,0,0,10,0,0,0,0,1,63,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1786,22,115,0,3,0,0,0,0,0,39,0,0,0,0,8,4,23,262,0,0,7,0,0,3,0,0,34,0,10,0,0,8,0,23,0,1,0,0,1089,0,0,0,0,2,18,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,245,0,163,0,0,0,2,5,44,953,256,0,0,0,0,1,0,0,0,0,0,0,0,0,846,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,28,43,176,1,0,0,147,0,246,0,0,0,66,12,0,0,0,0,0,0,0,0,0,57,1,0,0,0,5,0,0,0,0,2,110,7,0,0,0,0,0,0,0,1,691,0,0,87,0,0,1,2,0,0,0,0,11,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,1,29,52,0,3,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,457,198,4 +0,0,0,3,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,2,0,0,18,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,21,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,3,0,0,32,0,43,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,26,4 +3,0,0,6,1,47,6,0,48,2,7,0,0,6,7,0,720,0,6,2,0,0,0,8,0,11,0,0,54,0,1,0,0,0,9,898,47,28,0,0,48,0,0,0,1,0,0,11,1,0,0,0,1,284,0,0,0,0,0,1,0,0,0,0,0,5,0,0,9891,47,897,0,51,0,0,0,0,0,45,0,0,0,0,2,9,33,1584,0,0,9,0,0,0,0,0,260,20,22,0,0,2,1,830,0,2,2,0,1376,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,868,0,190,0,0,0,0,3,282,373,831,0,0,0,0,1,0,3,0,0,0,0,0,0,1689,0,0,0,0,0,0,0,0,0,0,0,0,11,1,2,0,0,0,0,1,0,84,23,271,7,0,0,374,0,504,0,0,0,205,49,0,0,0,0,0,0,0,0,0,800,1,0,4,0,10,0,0,0,0,1,140,115,0,0,6,0,1,0,0,0,2261,1,0,1230,8,0,1,1,0,0,0,0,31,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,50,0,0,0,0,1,56,554,0,52,14,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1148,793,4 +0,0,0,0,0,1,0,1,14,0,1,0,0,0,1,0,366,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,362,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,2,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,5,0,0,0,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,2,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,1,63,4 +1,0,0,6,0,34,9,0,27,0,9,0,0,2,5,0,19,0,7,2,0,0,0,7,0,8,0,0,4,0,3,0,0,0,8,0,34,6,0,0,52,0,0,0,1,0,0,2,0,0,0,0,3,100,0,0,0,0,0,1,0,0,0,0,0,7,0,0,825,34,74,0,5,0,0,0,0,0,10,0,0,0,0,0,8,17,137,0,0,8,0,0,1,14,0,204,30,4,0,0,2,0,92,0,1,0,0,668,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,110,0,60,0,0,0,4,8,192,116,96,0,0,0,0,1,0,3,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,11,151,8,0,0,166,0,302,0,0,0,69,100,0,0,0,0,0,0,0,0,0,78,1,0,0,0,9,0,0,0,0,3,119,52,0,0,60,0,0,0,0,0,84,0,0,42,3,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,12,0,0,0,0,1,42,88,0,6,9,0,0,0,0,0,54,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,179,167,4 +3,0,0,5,6,14,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,20,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,97,0,0,0,0,0,1,0,0,0,0,0,25,0,0,493,14,536,0,3,0,0,0,0,0,5,15,0,0,0,0,2,6,48,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,320,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,62,0,49,0,0,0,2,10,48,224,100,0,0,0,0,1,0,1,0,0,0,0,0,0,420,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,117,36,391,11,0,0,404,0,615,0,1,0,103,7,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,111,74,0,0,57,0,0,0,0,0,541,0,0,25,0,0,1,0,0,0,0,0,3,0,2,0,2,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,1,1,1,0,6,0,0,0,0,49,23,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,10,0,0,225,36,4 +0,0,0,0,0,9,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,0,0,0,133,9,41,0,1,0,0,0,0,0,10,0,0,0,0,0,1,1,43,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,35,0,0,0,0,3,25,4,55,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,45,1,0,0,50,0,31,0,0,0,13,4,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,92,2,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,4,4 +9,0,0,8,0,32,5,0,657,10,314,0,0,0,22,0,16,0,6,1,0,0,0,2,0,0,0,0,6,0,8,0,0,0,21,0,32,6,0,0,772,0,0,0,1,0,0,7,0,0,0,0,7,115,0,0,0,0,0,1,0,0,0,19,0,36,0,0,1714,32,1055,0,14,0,0,0,0,0,21,0,0,0,0,0,2,13,289,0,0,21,0,0,7,639,0,5260,1475,9,1,0,2,0,2424,0,17,0,0,582,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,2,0,8,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,242,0,122,0,0,0,14,17,64,1806,257,0,0,0,0,1,0,0,0,0,0,0,0,0,807,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,8,48,192,17,0,0,209,0,279,0,0,0,142,24,0,0,0,0,0,0,0,0,0,1020,1,0,0,0,3,0,0,0,0,8,122,1068,0,0,4342,0,0,0,0,0,99,0,0,305,0,0,1,0,0,0,0,0,11,0,0,0,3,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,13,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,20,0,0,0,0,1,53,260,0,14,0,0,0,0,0,0,1072,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,5,316,59,4 +0,0,0,2,0,9,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,33506,9,41,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,3820,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,16,0,0,0,0,1395,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3831,0,34,0,0,0,0,3,23,3686,3845,0,0,0,0,1,0,0,0,0,0,0,0,0,9463,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,97,2,0,0,78,0,156,0,0,0,15,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,91,8,0,0,0,0,0,0,0,0,2588,0,0,10667,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,221,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,45,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2634,117,4 +314,0,0,28,26,110,251,59,763,34,129,0,0,2,77,0,494,0,22,79,0,121,1,7,0,60,10,0,35,0,6,2,0,25,50,0,130,352,159,0,1351,0,0,0,1,0,0,5,1,0,0,0,58,403,0,0,0,0,0,1,0,2,0,21,0,132,0,0,4248,110,3698,0,91,0,0,0,0,0,105,57,0,0,0,0,14,28,587,0,59,50,25,0,11,398,0,3562,90,11,0,0,16,26,2419,0,55,0,0,3239,0,0,0,0,73,90,0,0,39,0,0,1,0,0,0,20,0,0,0,0,0,0,0,25,0,0,0,16,0,0,0,2,0,6,0,76,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,2,0,0,0,0,0,1,13,0,0,0,0,0,0,0,19,6,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,92,10,10,10,0,0,0,484,0,342,0,0,0,64,83,366,3076,546,0,0,0,0,1,0,3,0,0,0,0,0,0,4767,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,780,382,2038,62,0,0,2136,0,3856,0,7,0,755,233,0,0,0,0,0,0,0,0,0,1738,1,0,2,0,208,0,0,0,0,50,331,1031,0,0,192,0,0,0,0,0,10534,0,0,145,3,0,1,8,0,0,0,0,13,0,0,0,4,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,1,0,0,0,0,3,11,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,117,1,1,1,0,57,0,0,0,0,161,180,190,0,104,9,0,0,0,0,0,1314,30,0,0,0,0,0,0,1,0,0,0,0,21,0,4,44,0,0,0,0,0,0,0,0,117,0,0,193,0,5,2480,1506,4 +1,0,0,5,0,34,6,0,35,0,5,0,0,6,4,0,570,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,1,762,34,6,0,0,41,0,1,0,1,0,0,2,0,0,0,0,1,168,0,0,0,0,0,1,0,0,0,0,0,2,0,0,17792,34,638,0,2,0,0,0,0,0,18,0,0,0,0,1,8,24,4057,0,0,1,0,0,0,0,0,190,20,5,0,0,2,0,610,0,0,1,0,2756,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,629,0,56,0,0,0,1,4,254,1141,612,0,0,0,0,1,0,3,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,16,166,5,0,0,193,0,205,0,0,0,51,3,0,0,0,0,0,0,0,0,0,632,1,0,0,0,9,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3239,1,0,834,6,0,1,1,1,0,0,0,6,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,35,83,0,4,12,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1882,32,4 +1,0,0,0,0,12,5,0,22,1,7,0,1,0,3,0,15,0,6,2,0,0,0,1,0,0,0,0,1,0,1,0,0,0,3,0,12,9,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,2,0,0,125,12,50,0,2,0,0,0,0,0,1,0,0,0,0,0,2,2,20,0,0,3,0,0,2,13,0,119,15,0,0,0,6,0,74,0,0,0,0,177,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,22,0,0,0,0,3,31,151,47,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,11,84,0,0,0,63,0,354,0,0,0,21,10,0,0,0,0,0,0,0,0,0,59,0,0,0,0,3,0,0,0,0,0,97,30,0,0,30,0,0,0,0,0,607,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,1,0,0,0,0,1,15,3,0,2,0,0,0,0,0,0,46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,34,4 +1,0,0,3,0,28,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,120,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1219,28,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,199,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,558,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,11,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,146,0,49,0,0,0,1,4,182,14,144,0,0,0,0,1,0,3,0,0,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,2,1,9,0,0,0,0,1,0,32,10,133,3,0,0,160,0,328,0,0,0,54,9,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,110,37,0,0,0,0,0,0,0,0,106,0,0,126,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,142,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,196,59,4 +150,0,0,29,10,84,188,22,425,30,73,0,0,2,64,0,375,0,20,15,0,6,2,7,0,26,22,0,15,0,7,3,0,9,33,0,94,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,351,0,0,0,0,0,1,0,3,0,11,0,83,0,0,3091,84,1523,0,40,0,0,0,0,0,72,12,0,0,0,0,13,22,399,0,22,33,9,0,10,198,0,1933,100,3,0,0,14,10,1305,0,46,0,0,2376,0,0,0,0,52,40,0,0,30,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,327,0,234,0,0,0,36,75,296,1648,357,0,0,0,0,1,0,5,0,0,0,0,0,0,2782,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1440,48,0,0,1555,0,2904,0,6,0,565,56,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,278,551,0,0,215,0,0,0,0,0,9934,0,0,180,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,76,0,0,0,0,81,127,309,0,64,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1624,1654,4 +138,0,4,0,7,107,44,24,558,19,44,0,7,0,25,8,6872,0,7,23,0,7,6,9,0,23,24,0,26,0,19,3,0,6,45,26,113,34,0,0,503,0,2,0,1,0,0,2,1,0,0,0,37,194,0,0,0,0,0,1,0,0,0,19,0,32,0,0,3164,107,8417,0,59,0,0,0,0,0,13,18,0,0,0,0,17,26,698,0,24,45,6,0,6,129,0,1248,100,5,0,0,14,7,7696,0,17,0,0,3693,0,0,0,0,30,14,1,0,3,0,0,1,0,0,0,23,0,0,0,0,0,0,0,13,0,0,0,16,0,0,0,0,0,5,0,41,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,14,1,1,1,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,7,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,710,10,10,10,0,0,0,195,0,143,0,0,0,57,85,323,1014,236,0,0,0,0,1,0,4,0,0,0,13701,3,1,1305,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,1,0,79,17276,718,9,0,0,676,0,2739,0,0,0,277,461,0,0,0,0,0,0,0,0,0,7565,1,0,2,0,45,0,0,0,0,30,199,339,0,4,260,0,0,0,1,0,14039,0,0,761,3,0,1,8,1,0,0,0,5,0,0,0,0,0,0,0,0,0,16,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,13,1,2,0,0,0,3,401,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,121,1,1,1,0,76,0,0,0,24,51,158,115,0,86,9,0,0,0,0,0,394,17,0,0,0,0,0,0,0,0,0,0,0,7,0,1,19,0,0,0,0,0,0,0,0,0,0,0,9,0,1,572,940,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,0,0,0,77,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,45,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,1,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,36,4 +119,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,562,0,20,46,0,97,2,6,0,33,22,0,17,0,8,2,0,10,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,343,0,0,0,0,0,1,0,2,0,12,0,52,0,0,2589,89,1772,0,50,0,0,0,0,0,21,15,0,0,0,0,13,22,298,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,585,0,46,0,0,2275,0,0,0,0,46,15,1,0,33,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,292,0,234,0,0,0,42,74,337,589,303,0,0,0,0,1,0,6,0,0,0,0,0,0,2087,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1453,49,0,0,1494,0,2997,0,6,0,502,316,0,0,0,0,0,0,0,0,0,1117,1,0,0,0,151,0,0,0,0,28,282,149,0,0,155,0,0,0,0,0,10425,0,0,174,3,0,1,6,0,0,0,0,6,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,7,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,63,0,0,0,0,119,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,165,0,4,1609,1618,4 +2,0,0,10,2,37,54,2,81,10,18,0,0,2,20,2,121,0,10,4,0,0,0,5,0,8,0,0,1,0,1,0,0,2,7,0,39,143,0,0,99,0,0,0,1,0,0,2,0,0,0,0,1,177,0,0,0,0,0,1,0,0,0,0,0,24,0,0,974,37,224,0,1,0,0,0,0,0,8,0,0,0,0,0,8,16,142,0,2,7,2,0,3,20,0,320,30,2,0,0,6,2,185,0,15,0,0,688,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4,10,10,10,0,0,0,122,0,292,0,0,0,0,3,202,189,154,0,0,0,0,1,0,3,0,0,0,0,0,0,683,0,15,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,258,46,447,12,0,0,472,0,1367,0,2,0,126,15,0,0,0,0,0,0,0,0,0,308,1,0,0,0,9,0,0,0,0,1,155,59,0,0,60,0,0,0,0,0,391,0,0,25,2,0,1,1,0,0,0,0,5,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,39,1,1,1,0,0,0,0,0,0,17,46,33,0,2,8,0,0,0,0,0,138,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,14,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1002,88,4 +110,0,0,24,4,64,81,7,127,3,16,0,0,2,19,0,187,0,12,5,0,1,1,6,0,23,9,0,9,0,5,0,0,4,25,0,68,164,0,0,201,0,0,0,1,0,0,7,0,0,0,0,20,264,0,0,0,0,0,1,0,1,0,0,0,16,0,0,4948,64,486,0,27,0,0,0,0,0,30,3,0,0,0,0,8,21,983,0,7,25,4,0,4,11,0,342,20,12,0,0,8,4,205,0,10,0,0,1673,0,0,0,0,45,30,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,35,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,750,0,243,0,0,0,23,60,240,259,693,0,0,0,0,1,0,4,0,0,0,0,0,0,1938,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,69,742,33,0,0,820,0,1539,0,3,0,294,32,0,0,0,0,0,0,2,0,0,444,1,0,0,0,13,0,0,0,0,20,194,94,0,0,34,0,0,0,0,0,1192,0,0,877,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,66,1,1,1,0,56,0,0,0,0,33,93,363,0,37,9,0,0,0,0,0,263,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,7,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1294,1541,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,2,0,0,409,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,148,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,157,0,0,0,2,4,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,347,14,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,0,0,0,34,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +5,0,0,6,6,37,30,21,106,11,22,0,0,2,16,0,103,0,8,13,0,10,0,6,0,8,0,0,1,0,1,0,0,6,6,0,43,54,0,0,91,0,0,0,1,0,0,1,0,0,0,0,1,138,0,0,0,0,0,1,0,0,0,0,0,20,0,0,781,37,524,0,1,0,0,0,0,0,5,15,0,0,0,0,8,14,95,0,21,6,6,0,3,23,0,322,45,1,0,0,4,6,180,0,13,0,0,595,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,14,10,10,10,0,0,0,75,0,257,0,0,0,0,3,209,214,107,0,0,0,0,1,0,4,0,0,0,0,0,0,512,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,137,39,454,12,0,0,468,0,662,0,1,0,114,11,0,0,0,0,0,0,0,0,0,287,1,0,0,0,29,0,0,0,0,1,134,56,0,0,91,0,0,0,0,0,204,0,0,8,2,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,39,1,1,1,0,0,0,0,0,0,49,49,31,0,2,8,0,0,0,0,0,112,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,17,0,0,0,0,0,0,0,0,0,0,0,11,0,0,632,43,4 +0,0,0,2,0,11,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,898,11,28,0,1,0,0,0,0,0,4,0,0,0,0,0,1,4,487,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,6,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,27,0,0,0,0,3,24,5,46,0,0,0,0,1,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,61,2,0,0,88,0,101,0,0,0,38,0,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,24,0,0,0,0,0,0,0,0,208,0,0,728,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,70,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,232,10,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,83,0,57,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,4,4 +0,0,0,11,0,34,6,0,47,1,5,0,0,6,5,0,673,0,6,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,1,835,34,6,0,0,43,0,0,0,1,0,0,2,0,0,0,0,1,244,0,0,0,0,0,1,0,0,0,0,0,4,0,0,64861,34,745,0,3,0,0,0,0,0,14,0,0,0,0,0,8,22,7952,0,0,1,0,0,0,0,0,189,20,3,0,0,2,0,721,0,0,1,0,10097,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,3259,0,62,0,0,0,1,4,255,1383,3249,0,0,0,0,1,0,3,0,0,0,0,0,0,4093,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,19,202,13,0,0,233,0,331,0,0,0,79,9,0,0,0,0,0,0,0,0,0,748,1,0,0,0,9,0,0,0,0,0,119,40,0,0,6,0,0,0,0,0,4085,1,0,4343,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,35,104,0,4,12,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3070,76,4 +0,0,0,0,0,9,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,9,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,33,0,0,0,0,3,25,191,56,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,46,1,0,0,86,0,58,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,92,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,4,4 +118,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,562,0,20,44,0,99,2,6,0,34,22,0,16,0,7,3,0,10,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,335,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2575,89,1772,0,50,0,0,0,0,0,21,15,0,0,0,0,13,22,300,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,585,0,46,0,0,2369,0,0,0,0,46,16,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,292,0,233,0,0,0,42,73,338,592,303,0,0,0,0,1,0,6,0,0,0,0,0,0,2162,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1442,49,0,0,1495,0,2893,0,6,0,503,263,0,0,0,0,0,0,0,0,0,1117,1,0,0,0,151,0,0,0,0,31,283,149,0,0,155,0,0,0,0,0,10431,0,0,166,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,8,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,61,0,0,0,0,119,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,205,0,4,1669,1617,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,413,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,30,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,96,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,35,0,33,0,0,0,2,4,27,96,53,0,0,0,0,1,0,0,0,0,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,48,3,0,0,47,0,143,0,0,0,5,4,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,27,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,11,4 +95,0,0,22,3,69,89,6,134,7,15,0,0,2,23,0,137,0,10,6,0,1,1,5,0,15,9,0,9,0,4,0,0,3,20,0,72,114,0,0,284,0,0,0,1,0,0,7,0,0,0,0,11,248,0,0,0,0,0,1,0,1,0,0,0,22,0,0,4892,69,454,0,18,0,0,0,0,0,30,3,0,0,0,0,8,21,936,0,6,20,3,0,3,43,0,509,20,13,0,0,6,3,358,0,15,0,0,1492,0,0,0,0,40,19,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,33,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,716,0,233,0,0,0,13,44,253,361,680,0,0,0,0,1,0,4,0,0,0,0,0,0,1892,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,245,63,612,30,0,0,710,0,1261,0,2,0,243,38,0,0,0,0,0,0,2,0,0,410,1,0,0,0,13,0,0,0,0,11,184,155,0,0,34,0,0,0,0,0,1071,0,0,885,3,0,1,2,0,0,0,0,15,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,71,1,1,1,0,58,0,0,0,0,25,92,357,0,28,9,0,0,0,0,0,280,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,11,0,0,0,0,0,0,0,0,0,0,0,4,0,2,1120,1373,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,19,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,45,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,6,4 +0,0,0,8,2,15,50,2,57,9,8,0,0,0,19,6,127,0,11,1,0,0,0,1,0,0,6,0,2,0,2,1,0,2,4,0,17,140,0,0,47,0,0,0,1,0,0,7,0,0,0,0,2,116,0,0,0,0,0,1,0,0,0,0,0,17,0,0,13109,15,251,0,5,0,0,0,0,0,30,0,0,0,0,0,1,10,3953,0,2,4,2,0,2,0,0,92,0,13,0,0,6,2,123,0,13,0,0,1497,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,3339,0,285,0,0,0,4,11,43,26,3515,0,0,0,0,1,0,0,0,0,0,0,0,0,5426,0,184,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,221,37,427,10,0,0,467,0,914,0,2,0,166,14,0,0,0,0,0,0,0,0,0,278,1,0,0,0,2,0,0,0,0,1,133,50,0,0,0,0,0,0,0,0,1231,0,0,3813,0,0,1,0,0,0,0,0,20,0,0,0,2,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,13,1,1,1,0,4,0,0,0,0,17,21,177,0,11,0,0,0,0,0,0,92,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,2,0,2,4017,79,4 +175,0,0,0,10,76,27,40,224,5,60,0,3,0,12,0,144,0,7,29,0,10,10,6,0,16,12,0,28,0,66,1,0,10,23,0,86,15,0,0,300,0,1,0,1,0,0,1,0,0,0,0,75,152,0,0,0,0,0,1,0,1,0,0,0,8,0,0,1863,76,1508,0,101,0,0,0,0,0,11,30,0,0,0,0,14,21,214,0,40,23,10,0,2,112,0,1298,240,2,0,0,6,10,724,0,7,0,0,2023,0,0,0,0,62,57,0,0,4,0,0,1,0,0,0,16,0,0,0,0,0,0,0,53,0,0,0,55,0,0,0,0,0,0,0,22,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,3,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,51,10,10,10,0,0,0,193,0,105,0,0,0,140,156,309,862,210,0,0,0,0,1,0,4,0,0,0,0,0,0,1304,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,29,47,716,10,0,0,633,0,686,0,0,0,200,84,0,0,0,0,0,0,0,0,0,477,1,0,0,0,55,0,0,0,0,75,163,200,0,0,528,0,0,0,0,0,3094,0,0,78,3,0,1,7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,129,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,105,1,1,1,0,159,0,0,0,0,81,109,67,0,114,9,0,0,0,0,0,274,11,0,0,0,0,0,0,0,0,0,0,0,11,0,1,5,0,0,0,0,0,0,0,0,0,0,0,16,0,0,514,792,4 +2,0,0,3,0,12,2,0,17,0,3,0,0,0,3,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,3,0,12,6,0,0,8,0,2,0,1,0,0,2,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1150,12,47,0,2,0,0,0,0,0,10,0,0,0,0,0,1,5,502,0,0,3,0,0,0,0,0,10,0,3,0,0,2,0,19,0,1,0,0,130,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,2,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,68,0,31,0,0,0,0,3,27,9,77,0,0,0,0,1,0,0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,86,3,0,0,128,0,183,0,0,0,62,4,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,1,94,46,0,0,0,0,0,0,0,0,219,0,0,765,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,1,0,0,0,0,1,15,264,0,2,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,253,17,4 +0,0,0,10,0,17,4,0,25,0,7,0,0,0,4,0,19,0,7,1,0,0,0,1,0,0,0,0,3,0,6,0,0,0,5,0,17,6,0,0,35,0,0,0,1,0,0,1,0,0,0,0,5,73,1,0,0,0,0,1,0,0,0,2,0,7,0,0,15216,17,63,0,9,0,0,0,0,0,6,0,0,0,0,0,1,3,3068,0,0,5,0,0,1,9,0,97,15,1,0,0,2,0,62,0,1,0,0,215,0,0,0,0,2,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2233,0,52,0,0,0,10,8,38,144,2250,0,0,0,0,1,0,0,0,0,0,0,0,0,4092,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,6,110,14,0,0,96,0,230,0,0,0,30,12,0,0,0,0,0,0,0,0,0,66,1,0,0,0,2,0,0,0,0,3,101,20,0,0,31,0,0,0,0,0,1462,0,0,4364,0,0,1,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,13,0,0,0,4,1,22,12,0,9,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,2043,61,4 +3,0,0,9,5,21,31,17,66,3,12,0,2,0,17,0,240,0,8,9,0,4,4,2,0,1,0,0,0,0,1,0,0,5,9,0,26,63,0,0,128,0,0,0,0,0,0,0,0,0,0,0,1,88,0,9,0,0,0,1,0,0,0,0,0,9,0,0,344,21,533,0,1,0,0,0,0,0,0,12,0,0,9,0,2,2,102,0,17,9,5,0,3,0,0,58,0,0,0,0,10,5,79,0,7,0,0,331,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,83,0,86,0,0,0,0,3,57,100,186,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,130,56,371,14,0,0,384,0,824,0,1,0,119,14,0,0,0,0,0,0,0,0,0,376,0,0,0,0,19,0,0,0,0,0,123,14,0,0,0,0,0,0,0,0,401,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,19,1,1,1,0,1,0,0,0,0,41,35,46,0,2,0,0,0,0,0,0,173,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,3,0,0,0,0,0,0,0,0,0,0,0,9,0,0,328,37,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1,0,0,0,0,0,0,0,0,98,8,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,1,29,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,28,0,0,0,0,3,21,4,42,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,43,0,26,0,0,0,9,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,4,4 +3,0,0,5,6,14,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,20,54,2,0,96,0,0,0,1,0,0,2,0,0,0,0,1,100,0,0,0,0,0,1,0,0,0,0,0,25,0,0,470,14,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,45,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,467,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,60,0,47,0,0,0,2,10,48,223,98,0,0,0,0,1,0,1,0,0,0,0,0,0,428,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,117,36,393,11,0,0,404,0,604,0,1,0,103,6,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,111,74,0,0,57,0,0,0,0,0,539,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,1,1,1,0,6,0,0,0,0,49,23,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,10,0,0,227,36,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,2,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,2,15,0,0,0,0,0,1,0,0,0,0,0,2,0,0,35,10,18,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,4,3,23,9,33,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,29,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,3,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,4 +5,0,0,14,1,53,29,1,119,22,31,0,0,11,46,0,91,0,7,6,0,1,1,8,4,12,18,0,20,0,9,0,0,1,15,0,54,1503,20,0,283,0,3,0,1,0,0,5,0,0,0,0,15,226,0,0,0,0,0,1,0,0,0,0,0,26,0,0,6830,53,543,0,27,0,0,0,1,0,33,3,0,0,0,0,9,23,1281,0,1,15,1,0,3,68,0,726,120,10,2,0,2,1,594,0,30,0,24,2548,0,0,0,0,9,2,1,0,0,0,2,1,0,0,0,15,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,60,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,10,10,10,0,0,0,645,0,307,0,0,0,28,77,254,1361,910,0,0,0,0,1,0,3,0,0,0,0,0,0,1715,0,0,0,0,4,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,2,39,40,394,16,0,0,341,0,633,0,0,0,207,60,0,0,0,0,0,0,0,0,0,334,1,0,0,0,20,0,0,0,0,15,180,163,0,0,261,0,136,0,0,2,1798,0,0,868,3,0,1,1,1,0,0,0,14,0,1,0,8,0,0,0,0,0,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,3,384,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,81,1,1,1,0,56,0,0,0,0,1,69,104,0,50,9,0,0,0,0,0,325,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,28,0,0,0,0,0,0,0,0,0,0,0,2,0,3,2502,92,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,15,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,23,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,4 +282,0,0,28,21,96,166,37,372,32,43,0,0,2,69,2,803,0,20,67,0,117,2,6,0,37,22,0,18,0,7,3,0,20,42,0,116,301,160,0,379,0,0,0,1,0,0,3,0,0,0,0,38,384,0,0,0,0,0,1,0,3,0,12,0,53,0,0,2618,96,3448,0,55,0,0,0,0,0,18,45,0,0,0,0,14,23,258,0,37,42,20,0,7,29,0,692,55,3,0,0,14,21,673,0,49,0,0,2773,0,0,0,0,67,32,0,0,30,0,0,1,0,0,0,19,0,0,0,0,0,0,0,27,0,0,0,16,0,0,0,0,0,7,0,69,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,14,0,0,0,0,0,0,0,18,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,297,0,281,0,0,0,46,75,400,554,302,0,0,0,0,1,0,5,0,0,0,0,0,0,2804,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,341,1866,58,0,0,1850,0,3153,0,6,0,595,202,0,0,0,0,0,0,0,0,0,1477,1,0,0,0,192,0,0,0,0,36,296,132,0,0,125,0,0,0,0,0,10709,0,0,150,4,0,1,7,0,0,0,0,5,0,0,0,1,0,0,0,0,0,31,0,0,0,0,0,0,0,0,1,0,0,105,105,0,0,14,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,102,1,1,1,0,57,0,0,0,0,227,158,318,0,78,9,0,0,0,0,0,304,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,36,0,0,0,0,0,0,0,0,117,0,0,218,0,2,1678,1841,4 +1,0,0,7,0,11,2,0,11,0,3,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,2,0,3,0,0,0,1,0,11,6,0,0,8,0,0,0,1,0,0,2,0,0,0,0,2,94,0,0,0,0,0,1,0,0,0,0,0,1,0,0,19846,11,44,0,5,0,0,0,0,0,8,0,0,0,0,1,1,5,418,0,0,1,0,0,0,0,0,10,0,4,0,0,2,0,14,0,0,0,0,6194,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,324,0,34,0,0,0,4,5,26,6028,326,0,0,0,0,1,0,0,0,0,0,0,0,0,496,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,5,101,10,0,0,102,0,207,0,0,0,42,10,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,93,31,0,0,0,0,0,0,0,0,146,0,0,448,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,6,0,0,0,0,1,12,172,0,5,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,12,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,121,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1185,28,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,177,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,544,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,140,0,53,0,0,0,1,4,182,14,138,0,0,0,0,1,0,3,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,1,0,32,10,150,4,0,0,160,0,301,0,0,0,51,10,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,112,31,0,0,0,0,0,0,0,0,100,0,0,126,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,113,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,183,63,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,72,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,40,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,1,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,36,4 +1,0,0,3,0,28,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,123,0,0,0,0,0,1,0,0,0,0,0,2,0,0,897,28,51,0,3,0,0,0,0,0,10,0,0,0,0,0,7,15,166,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,544,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,119,0,49,0,0,0,1,4,182,14,121,0,0,0,0,1,0,3,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,2,1,8,0,0,0,0,1,0,32,10,130,3,0,0,167,0,297,0,0,0,64,9,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,110,49,0,0,0,0,0,0,0,0,88,0,0,36,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,228,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,157,51,4 +2,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,56,0,0,0,0,0,1,0,0,0,0,0,1,0,0,7074,10,41,0,1,0,0,0,0,0,8,0,0,0,0,0,1,5,1926,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,13,0,0,0,0,129,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,821,0,34,0,0,0,0,3,26,8,831,0,0,0,0,1,0,0,0,0,0,0,0,0,1989,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,10,3,77,2,0,0,94,0,231,0,0,0,29,8,0,0,0,0,0,0,4,0,0,42,1,0,0,0,2,0,0,0,0,0,92,21,0,0,0,0,0,0,0,0,996,0,0,2282,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,841,477,4 +5,0,0,6,6,37,30,21,112,11,25,0,0,2,16,0,103,0,8,14,0,10,0,5,0,8,0,0,1,0,0,0,0,6,6,0,43,54,0,0,102,0,0,0,1,0,0,1,0,0,0,0,1,142,0,0,0,0,0,1,0,0,0,0,0,21,0,0,804,37,533,0,1,0,0,0,0,0,5,15,0,0,0,0,8,14,89,0,21,6,6,0,3,29,0,370,50,1,0,0,4,6,209,0,13,0,0,582,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,14,10,10,10,0,0,0,74,0,256,0,0,0,0,3,209,248,105,0,0,0,0,1,0,4,0,0,0,0,0,0,526,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,137,39,454,12,0,0,468,0,671,0,1,0,114,18,0,0,0,0,0,0,0,0,0,296,1,0,0,0,29,0,0,0,0,1,134,71,0,0,106,0,0,0,0,0,201,0,0,8,2,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,39,1,1,1,0,0,0,0,0,0,49,49,31,0,1,8,0,0,0,0,0,125,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,17,0,0,0,0,0,0,0,0,0,0,0,10,0,0,623,43,4 +275,0,0,4,14,164,203,38,488,61,76,0,5,0,102,1,977,0,17,19,0,10,6,9,2,63,54,0,22,0,14,3,0,12,94,0,178,240,6128,0,959,0,0,0,1,0,0,5,1,0,0,0,71,442,0,0,0,0,0,1,0,2,0,16,0,101,0,0,38737,164,2904,0,90,0,0,0,0,0,136,27,0,0,0,0,14,25,7866,0,38,94,12,0,11,219,0,2158,135,11,0,0,18,14,2394,0,75,1,0,6031,0,0,0,0,76,72,2,0,31,0,0,1,0,0,0,21,0,0,0,0,0,0,0,11,0,0,0,36,0,0,0,0,0,2,0,26,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,56,8,0,0,0,0,0,2,0,0,0,0,0,7,23,0,0,0,3,0,0,0,0,8,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,115,12,12,12,0,0,2,4932,2,477,0,0,2,86,283,414,136071,4959,0,0,0,0,1,0,5,0,0,0,0,0,0,11009,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,462,206,1652,22,0,0,1787,0,2154,0,4,0,846,127600,0,0,0,0,0,0,0,0,0,1869,1,0,2,0,46,0,0,0,0,56,349,605,0,0,318,0,0,0,0,0,12758,0,0,8575,3,0,1,11,0,0,0,0,14,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,3,108,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,174,1,1,1,0,416,0,0,0,0,188,272,429,1,147,9,0,0,0,0,0,887,19,0,0,0,0,0,0,0,0,0,0,0,15,0,2,67,1,0,0,0,0,0,0,0,8,0,0,28,0,4,4364,2008,4 +4,0,0,0,1,15,7,0,13,0,5,2,0,0,3,0,33,0,7,6,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,15,67,0,0,28,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,1,0,0,0,14,0,3,0,0,255,15,54,0,1,0,0,0,0,0,0,0,0,0,0,0,3,3,6,0,0,5,0,0,0,0,0,19,0,0,0,0,6,1,38,0,1,0,0,240,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,30,0,38,0,0,0,0,3,34,82,40,0,0,0,0,1,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,32,113,2,0,0,110,0,511,0,0,0,59,14,0,0,0,0,0,0,0,0,0,70,0,0,0,0,6,0,0,0,0,1,104,17,0,0,0,0,0,0,0,0,2472,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,23,21,25,0,1,0,0,0,0,0,0,22,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,160,4 +0,0,0,3,0,34,9,0,31,0,2,0,0,2,2,0,548,0,6,2,0,0,0,8,0,11,0,0,4,0,1,0,0,0,2,900,34,6,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,243,0,0,0,0,0,1,0,0,0,0,0,2,0,0,45278,34,602,0,1,0,0,0,0,0,16,0,0,0,0,0,9,21,8610,0,0,2,0,0,0,0,0,93,5,2,0,0,2,0,563,0,0,0,0,2733,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,5156,0,33,0,0,0,0,3,247,1128,5142,0,0,0,0,1,0,3,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,179,3,0,0,200,0,195,0,0,0,55,2,0,0,0,0,0,0,0,0,0,600,1,0,0,0,10,0,0,0,0,0,117,9,0,0,0,0,0,0,0,0,3175,1,0,775,10,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,10,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,343,0,2,14,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1735,30,4 +16,0,2,0,1,48,18,0,356,1,8,0,5,0,3,0,4297,0,6,7,0,1,0,7,0,8,0,0,3,0,2,0,0,0,8,26,48,21,0,0,109,0,0,0,1,0,0,0,0,0,0,0,2,102,0,0,0,0,0,1,0,0,0,0,0,5,0,0,626,48,4681,0,3,0,0,0,0,0,5,0,0,0,0,0,11,16,114,0,0,8,0,0,4,28,0,298,0,0,0,0,10,1,4461,0,0,0,0,3932,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,630,10,10,10,0,0,0,90,0,54,0,0,0,2,4,204,197,105,0,0,0,0,1,0,3,0,0,0,8713,3,1,249,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,120,10945,180,1,0,0,192,0,630,0,0,0,49,316,0,0,0,0,0,0,0,0,0,4693,0,0,0,0,15,0,0,0,0,2,129,81,0,2,0,0,0,0,0,0,8828,0,0,1,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,3,0,0,0,0,3,56,26,0,4,9,0,0,0,0,0,129,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,122,43,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,44,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,4 +1,0,0,3,0,28,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,119,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1223,28,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,189,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,554,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,14,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,149,0,50,0,0,0,1,4,182,14,147,0,0,0,0,1,0,3,0,0,0,0,0,0,338,0,0,0,0,0,0,0,0,0,0,0,0,2,1,7,0,0,0,0,1,0,32,10,139,3,0,0,160,0,331,0,0,0,54,7,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,110,37,0,0,0,0,0,0,0,0,103,0,0,137,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,148,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,192,57,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,0,0,0,34,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +20,0,0,3,0,14,2,0,15,16,3,0,0,0,19,0,16,0,7,2,0,0,0,1,0,2,0,0,0,0,1,0,0,0,2,0,14,6,0,0,47,0,1,0,1,0,0,1,0,0,0,0,2,49,0,0,0,0,0,1,0,0,0,0,0,19,0,0,1136,14,71,0,3,0,0,0,0,0,12,0,0,0,0,0,2,7,507,0,0,2,0,0,0,0,0,14,0,1,0,0,2,0,50,0,17,0,0,423,0,0,0,0,3,6,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,60,0,39,0,0,0,2,5,38,29,71,0,0,0,0,1,0,0,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,20,100,3,0,0,121,0,184,0,0,0,51,4,0,0,0,0,0,0,0,0,0,62,1,0,0,0,3,0,0,0,0,4,97,31,0,0,0,0,0,0,0,0,790,0,0,732,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,0,0,0,0,0,1,16,102,0,3,0,0,1,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,277,38,4 +11,0,0,8,1,36,48,1,122,7,15,1,0,0,13,0,71,0,9,2,0,0,0,4,0,3,3,0,10,0,2,0,0,1,17,0,37,54,0,0,148,0,0,0,1,0,0,16,3,0,0,0,4,290,0,0,0,0,0,1,0,0,0,20,0,10,0,0,7313,36,340,0,15,0,0,0,0,0,58,0,0,0,0,5,5,29,1330,0,1,17,1,0,1,47,0,460,15,33,1,0,4,1,346,0,8,0,0,1041,0,0,0,0,33,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,8,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,1069,0,232,0,0,0,5,13,80,431,1012,0,0,0,0,1,0,0,0,0,0,0,0,0,2202,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,112,19,377,11,0,0,491,0,1562,0,1,0,272,50,0,0,0,0,0,0,0,0,0,279,1,0,9,0,6,0,0,0,0,6,148,221,0,0,34,0,0,0,0,0,580,0,0,1271,0,0,1,0,0,0,0,0,43,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,40,1,1,1,0,14,0,0,0,0,9,54,811,0,18,0,0,0,0,0,0,199,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,10,1709,91,4 +0,0,0,0,0,8,39,0,47,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,8,128,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,52,0,0,0,0,0,2,43,0,324,15,0,0,0,4,0,221,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,199,55,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,85,0,58,0,0,0,51,3,0,0,0,0,0,0,0,0,0,111,0,0,0,0,2,0,0,0,0,0,91,86,0,0,30,0,0,0,0,0,38,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,102,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,4,4 +118,0,0,29,11,89,157,27,272,30,38,0,0,2,66,1,555,0,20,45,0,98,2,6,0,33,22,0,17,0,8,2,0,10,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,332,0,0,0,0,0,1,0,3,0,13,0,52,0,0,2517,89,1764,0,49,0,0,0,0,0,20,15,0,0,0,0,13,22,299,0,27,38,10,0,8,37,0,729,70,3,0,0,14,11,583,0,46,0,0,2212,0,0,0,0,46,16,1,0,31,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,20,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,283,0,231,0,0,0,42,74,332,590,296,0,0,0,0,1,0,6,0,0,0,0,0,0,2118,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1443,49,0,0,1495,0,2938,0,6,0,503,339,0,0,0,0,0,0,0,0,0,1111,1,0,0,0,151,0,0,0,0,29,283,149,0,0,155,0,0,0,0,0,10422,0,0,158,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,10,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,63,0,0,0,0,115,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,187,0,3,1616,1621,4 +36,0,0,10,1,78,30,1,43,8,4,0,0,2,19,0,71,0,8,12,0,0,0,5,0,18,0,0,9,0,2,0,0,1,37,0,79,54,0,0,128,0,0,0,1,0,0,1,1,0,0,0,12,108,0,0,0,0,0,1,0,0,0,12,0,15,0,0,781,78,152,0,19,0,0,0,0,0,9,0,0,0,0,0,16,24,139,0,1,37,1,0,1,0,0,156,5,5,1,1,4,1,83,0,11,0,0,1197,0,0,0,0,14,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,3,0,0,0,13,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,10,10,10,0,0,0,129,0,104,0,0,0,12,15,252,74,134,0,0,0,0,1,0,3,0,0,0,0,0,0,497,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,138,39,438,13,0,0,450,0,1721,0,1,0,181,16,0,0,0,1,0,0,0,0,0,177,1,0,6,0,17,0,0,0,0,11,181,15,0,0,0,0,0,0,0,0,228,0,0,21,3,0,1,1,0,0,0,0,9,0,0,0,2,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,80,1,1,1,0,9,0,0,0,0,9,116,74,0,20,9,0,0,0,0,0,119,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,375,100,4 +108,0,0,24,4,61,81,7,125,3,16,0,0,2,19,0,187,0,12,6,0,1,1,5,0,23,9,0,9,0,5,0,0,4,22,0,65,164,0,0,201,0,0,0,1,0,0,7,0,0,0,0,20,256,0,0,0,0,0,1,0,1,0,0,0,16,0,0,5140,61,486,0,27,0,0,0,0,0,30,3,0,0,0,0,8,21,1009,0,7,22,4,0,4,11,0,342,20,12,0,0,8,4,205,0,10,0,0,1529,0,0,0,0,41,30,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,34,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,745,0,241,0,0,0,23,60,237,260,712,0,0,0,0,1,0,4,0,0,0,0,0,0,1932,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,69,766,33,0,0,811,0,1500,0,3,0,285,28,0,0,0,0,0,0,2,0,0,442,1,0,0,0,13,0,0,0,0,20,191,94,0,0,34,0,0,0,0,0,1190,0,0,917,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,63,1,1,1,0,56,0,0,0,0,33,87,360,0,37,9,0,0,0,0,0,263,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,7,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1295,1538,4 +1,0,0,7,0,44,78,0,142,6,35,0,0,6,10,0,31,0,10,4,0,0,0,8,0,8,0,0,7,0,6,0,0,0,7,2,44,26,0,0,260,0,0,0,1,0,0,4,1,0,0,0,6,213,0,0,0,0,0,1,0,0,0,16,0,15,0,0,6918,44,344,0,11,0,0,0,0,0,30,0,0,0,0,0,11,25,1528,0,0,7,0,0,2,123,0,1127,170,15,0,0,2,0,630,0,8,0,0,9649,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,1,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,10,10,10,0,0,0,886,0,120,0,0,0,10,8,235,749,868,0,0,0,0,1,0,5,0,0,0,0,0,0,2505,0,0,0,0,0,0,0,0,0,0,0,0,4,1,2,0,0,0,0,1,0,86,19,313,7,0,0,374,0,1050,0,0,0,195,1949,0,0,0,0,0,0,5,0,0,312,1,0,9,0,12,0,0,0,0,1,172,275,0,0,477,0,0,0,0,0,648,0,0,1364,3,0,1,1,0,0,0,0,21,0,0,0,2,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,15,0,0,0,4,1,51,107,0,12,9,0,0,0,0,0,290,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,5,952,134,4 +1,0,0,3,0,28,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,110,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1205,28,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,177,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,442,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,13,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,147,0,49,0,0,0,1,4,182,14,145,0,0,0,0,1,0,3,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,2,1,10,0,0,0,0,1,0,32,10,137,3,0,0,160,0,323,0,0,0,54,9,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,110,37,0,0,0,0,0,0,0,0,93,0,0,130,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,138,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,181,57,4 +222,0,0,0,3,85,57,12,339,3,108,1,2,0,5,0,48,0,7,15,0,3,3,3,0,6,3,0,74,0,304,1,0,3,36,0,88,12,0,0,512,0,0,0,0,0,0,0,0,0,0,0,310,114,0,0,0,0,0,1,0,0,0,0,0,24,0,0,5872,85,1678,0,385,0,0,0,0,0,272,9,0,0,0,0,11,11,255,0,12,36,3,0,4,299,0,3652,410,0,0,0,6,3,1700,0,2,0,0,3464,0,0,0,0,85,93,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,81,0,0,0,78,0,0,0,0,0,1,0,11,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,73,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,233,0,196,0,0,0,614,618,164,2489,254,0,0,0,0,0,0,0,0,0,0,0,0,0,3968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,615,6,0,0,705,0,538,0,0,0,471,66,0,0,0,0,0,0,0,0,0,567,0,0,0,0,24,0,0,0,0,309,176,584,0,0,916,0,0,0,0,0,1335,0,0,304,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,85,1,1,1,0,685,0,0,0,596,25,124,36,0,388,0,0,0,0,0,0,641,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,1,0,0,0,0,0,0,0,0,0,0,5,0,0,1214,1967,4 +151,0,0,29,10,84,186,22,415,30,71,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,15,0,8,2,0,9,33,0,94,301,0,0,671,0,0,0,1,0,0,3,0,0,0,0,28,361,0,0,0,0,0,1,0,3,0,11,0,81,0,0,2859,84,1505,0,40,0,0,0,0,0,70,12,0,0,0,0,13,22,396,0,22,33,9,0,10,188,0,1859,100,3,0,0,14,10,1255,0,46,0,0,2214,0,0,0,0,52,39,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,37,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,328,0,234,0,0,0,36,76,296,1584,358,0,0,0,0,1,0,5,0,0,0,0,0,0,2620,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,660,146,1437,48,0,0,1553,0,2906,0,6,0,563,44,0,0,0,0,0,0,0,0,0,1133,1,0,0,0,30,0,0,0,0,22,280,525,0,0,215,0,0,0,0,0,9927,0,0,184,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,78,0,0,0,0,81,127,309,0,64,9,0,0,0,0,0,699,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1588,1654,4 +0,0,0,3,0,10,3,0,24,1,3,0,0,0,8,0,26,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,44,0,1,0,1,0,0,1,1,0,0,0,0,280,0,0,0,0,0,1,0,0,0,0,0,9,0,0,4698,10,63,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,473,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,68,0,0,0,0,1210,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,36,0,38,0,0,0,0,3,28,12,45,0,0,0,0,1,0,0,0,0,0,0,0,0,2125,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,147,3,0,0,161,0,164,0,0,0,102,11,0,0,0,0,0,0,0,0,0,70,1,0,2,0,2,0,0,0,0,0,92,95,0,0,0,0,0,0,0,0,272,0,0,736,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,96,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,72,4 +264,0,0,24,19,175,330,43,697,75,110,0,0,2,127,0,1321,0,27,27,0,10,6,8,2,48,39,0,21,0,15,5,0,17,102,0,194,463,9447,0,1147,0,0,0,1,0,0,1,1,0,0,0,59,477,0,0,0,0,0,1,0,2,0,21,0,152,0,0,6157,175,3413,0,77,0,0,0,0,0,107,27,0,0,0,0,20,27,1019,0,43,102,17,0,13,317,0,3065,175,4,0,0,20,19,2928,0,106,1,0,7036,0,0,0,0,82,64,2,0,37,0,0,1,0,0,0,26,0,0,0,0,0,0,0,13,0,0,0,25,0,0,0,2,0,2,0,31,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,2,0,0,0,0,0,3,16,0,0,0,3,0,0,0,0,14,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,117,12,12,12,0,0,2,722,2,418,0,0,2,77,154,447,189054,772,0,0,0,0,1,0,5,0,0,0,0,0,0,4029,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,973,254,2422,51,0,0,2495,0,4355,0,9,0,969,176580,0,0,0,0,0,0,0,0,0,2614,1,0,2,0,53,0,0,0,0,45,425,759,0,0,418,0,0,0,0,0,12060,0,0,106,3,0,1,10,0,0,0,0,5,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,3,69,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,9,180,1,1,1,0,178,0,0,0,0,236,296,193,1,119,9,0,0,0,0,0,1154,21,0,0,0,0,0,0,0,0,0,0,0,20,0,1,85,0,0,0,0,0,0,0,0,10,0,0,36,0,2,2245,2049,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,59,8,22,0,1,0,0,0,0,0,2,0,0,0,0,0,1,1,22,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,35,0,0,0,0,3,21,7,39,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,29,0,0,0,34,0,63,0,0,0,4,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,14,4 +0,0,0,5,0,36,25,0,48,3,24,0,0,7,4,0,784,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12420,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,677,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40081,36,950,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6695,0,0,1,0,0,0,0,0,363,25,1,0,0,2,0,872,0,0,86,0,4476,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1528,0,32,0,0,0,12,15,496,2074,1506,0,0,0,0,1,0,3,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,277,5,0,0,311,0,299,0,0,0,150,14,0,0,0,0,0,0,0,0,0,898,1,0,0,0,9,0,0,0,0,1,163,6,0,0,134,0,0,0,0,0,4697,1,0,995,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2452,23,4 +245,0,0,27,61,117,321,67,1477,55,288,0,0,2,95,0,656,0,17,29,0,11,11,9,9,31,24,0,32,0,31,2,0,61,55,0,178,253,0,0,2050,0,0,0,1,0,0,1,1,0,0,0,56,551,0,0,0,0,0,1,0,1,0,35,0,216,0,0,4343,117,4498,0,86,0,0,0,0,0,83,123,0,0,0,0,24,31,460,0,67,55,61,0,12,893,0,7809,350,4,0,0,12,61,4879,0,74,0,0,9254,0,0,0,0,96,63,1,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,19,0,0,0,36,0,0,0,2,0,1,0,62,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,0,0,0,0,42,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,73,19,19,19,0,0,9,465,9,259,0,0,90,87,132,460,6162,550,0,0,0,0,1,0,4,0,0,1,0,0,0,3933,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,571,237,2838,94,0,0,3095,0,3833,0,5,0,1051,180,0,0,0,0,0,0,0,0,0,2856,1,0,2,0,69,0,0,0,0,53,287,2203,0,0,872,0,0,0,0,0,4524,0,0,81,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,1,0,0,0,0,3,68,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,5,133,1,1,1,0,128,0,0,0,8,930,233,274,45,111,9,0,0,0,0,0,2506,57,0,0,0,0,0,0,0,0,0,0,0,62,0,1,74,0,0,0,0,0,0,0,0,0,0,0,117,0,2,1360,1410,4 +0,0,0,7,0,12,3,0,25,0,4,0,0,0,6,0,17,0,6,1,0,0,0,1,0,0,0,0,1,0,3,0,0,0,3,0,12,6,0,0,15,0,0,0,1,0,0,3,0,0,0,0,2,103,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1230,12,70,0,4,0,0,0,0,0,11,0,0,0,0,1,1,7,280,0,0,3,0,0,0,0,0,11,0,4,0,0,2,0,39,0,0,0,0,217,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,185,0,54,0,0,0,4,5,30,11,188,0,0,0,0,1,0,0,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,121,14,0,0,151,0,262,0,0,0,80,9,0,0,0,0,0,0,4,0,0,61,1,0,0,0,2,0,0,0,0,1,100,49,0,0,0,0,0,0,0,0,100,0,0,249,0,0,1,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,5,0,0,0,2,1,15,188,0,4,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,232,128,4 +121,0,0,22,15,124,200,33,399,43,63,1,1,2,87,1,1407,0,23,19,0,8,4,9,2,44,26,0,28,0,102,3,0,13,59,0,139,370,0,0,544,0,0,0,1,0,0,3,0,0,0,0,141,446,0,0,0,0,0,1,0,2,0,13,0,80,0,0,7277,124,2799,0,168,0,0,0,0,0,24,21,0,0,0,0,17,27,1524,0,33,59,13,0,12,104,0,1776,140,4,0,0,18,15,1822,0,67,1,0,4023,0,0,0,0,135,16,2,0,56,0,0,1,0,0,0,19,0,0,0,0,0,0,0,7,0,0,0,10,0,0,0,0,0,2,0,23,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,27,2,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,17,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,75,12,12,12,0,0,2,1039,2,326,0,0,2,245,270,431,1563,1048,0,0,0,0,1,0,6,0,0,0,0,0,0,2600,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,769,200,1799,43,0,0,1830,0,3212,0,7,0,619,121,0,0,0,0,0,0,0,0,0,2184,1,0,0,0,42,0,0,0,0,132,339,262,0,0,308,0,0,0,0,0,11989,0,0,449,4,0,1,10,0,0,0,0,6,0,0,0,1,0,0,0,0,0,43,0,0,1,0,0,0,0,0,0,0,0,71,71,0,0,14,1,0,0,0,0,3,116,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,134,1,1,1,0,260,0,0,0,0,260,198,215,1,194,9,0,0,0,0,0,523,13,0,0,0,0,0,0,0,0,0,0,0,16,0,1,53,0,0,0,0,0,0,0,0,10,0,0,30,0,3,1506,1613,4 +0,0,0,3,0,9,3,0,24,1,3,0,0,0,8,0,26,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,44,0,1,0,1,0,0,1,1,0,0,0,0,280,0,0,0,0,0,1,0,0,0,0,0,9,0,0,4687,9,63,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,483,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,68,0,0,0,0,1177,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,35,0,39,0,0,0,0,3,24,12,44,0,0,0,0,1,0,0,0,0,0,0,0,0,2121,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,156,3,0,0,158,0,174,0,0,0,102,14,0,0,0,0,0,0,0,0,0,70,1,0,2,0,2,0,0,0,0,0,91,95,0,0,0,0,0,0,0,0,272,0,0,736,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,96,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,256,73,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,413,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,29,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,131,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,34,0,32,0,0,0,2,4,27,96,52,0,0,0,0,1,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,45,3,0,0,47,0,144,0,0,0,5,3,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,27,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,11,4 +1,0,0,3,0,28,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,116,0,0,0,0,0,1,0,0,0,0,0,2,0,0,962,28,57,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,157,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,446,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,123,0,49,0,0,0,1,4,182,14,121,0,0,0,0,1,0,3,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,2,1,8,0,0,0,0,1,0,32,10,127,3,0,0,186,0,324,0,0,0,81,8,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,110,64,0,0,0,0,0,0,0,0,84,0,0,41,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,226,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,153,53,4 +215,0,0,0,3,86,53,12,319,3,104,1,2,0,5,0,48,0,7,16,0,3,3,2,0,7,3,0,75,0,301,1,0,3,37,0,89,12,0,0,472,0,0,0,0,0,0,0,0,0,0,0,307,111,0,0,0,0,0,1,0,0,0,0,0,20,0,0,6084,86,1702,0,383,0,0,0,0,0,296,9,0,0,0,0,11,11,250,0,12,37,3,0,4,279,0,3493,410,0,0,0,6,3,1599,0,2,0,0,4313,0,0,0,0,86,86,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,79,0,0,0,78,0,0,0,0,0,1,0,13,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,73,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,231,0,197,0,0,0,608,613,166,2349,252,0,0,0,0,0,0,0,0,0,0,0,0,0,4136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,612,6,0,0,727,0,559,0,0,0,492,41,0,0,0,0,0,0,0,0,0,539,0,0,0,0,24,0,0,0,0,307,176,532,0,0,916,0,0,0,0,0,1320,0,0,302,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,86,1,1,1,0,680,0,0,0,592,25,126,37,0,387,0,0,0,0,0,0,593,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,1,0,0,0,0,0,0,0,0,0,0,5,0,0,1302,1982,4 +1,0,0,5,0,39,18,0,63,0,14,0,0,7,5,0,704,0,6,2,0,0,0,7,0,11,0,0,22,0,1,0,0,0,3,2946,39,6,0,0,43,0,0,0,1,0,0,6,0,0,0,0,2,248,0,0,0,0,0,1,0,0,0,0,0,2,0,0,16765,39,885,0,21,0,0,0,0,0,48,0,0,0,0,2,8,86,3133,0,0,3,0,0,0,0,0,308,25,10,0,0,2,0,794,0,0,54,0,2828,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,903,0,74,0,0,0,12,15,375,892,870,0,0,0,0,1,0,5,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,106,16,257,5,0,0,313,0,406,0,0,0,149,8,0,0,0,0,0,0,0,0,0,817,1,0,0,0,9,0,0,0,0,1,128,57,0,0,77,0,0,0,0,0,2786,1,0,296,15,0,1,1,0,0,0,0,12,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,52,0,0,0,0,1,42,593,0,22,12,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1300,73,4 +244,0,0,10,14,174,212,38,535,53,86,0,6,0,99,1,976,0,17,27,0,10,6,10,2,64,50,1,23,0,14,6,0,12,97,0,188,22753,6687,0,1038,0,0,0,1,0,0,5,1,0,0,0,75,422,0,0,0,0,0,1,0,2,0,16,0,102,0,0,40461,174,3069,0,95,0,0,0,0,0,156,27,0,0,0,0,22,33,8377,0,38,97,12,0,12,259,0,2487,135,11,0,0,20,14,2593,0,68,1,0,6951,0,0,0,0,57,71,1,0,32,0,0,1,0,0,0,20,0,0,0,0,0,0,0,12,0,0,0,30,0,0,0,0,0,2,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,41,8,0,0,0,0,0,2,0,0,0,0,0,7,22,0,0,0,3,0,0,0,0,10,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,127,12,12,12,0,0,2,5188,2,486,0,0,2,93,350,431,137249,5225,0,0,0,0,1,0,5,0,0,0,0,0,0,10740,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,470,209,1657,27,0,0,1861,0,2293,0,4,0,896,128026,0,0,0,0,0,0,0,0,0,1932,1,0,2,0,55,0,0,0,0,60,368,713,0,0,318,0,0,0,0,0,35469,0,0,8540,3,0,1,11,0,0,0,0,14,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,19,1,0,0,0,0,3,133,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,184,1,1,1,0,577,0,0,0,0,188,285,444,1,149,9,0,0,0,0,0,976,19,0,0,0,0,0,0,0,0,0,0,0,15,0,2,59,0,0,0,0,0,0,0,0,8,0,0,27,0,4,4772,2043,4 +62,0,0,36,11,167,115,32,306,22,34,0,0,3,43,0,602,0,57,22,0,7,0,4,0,8,189,0,83,0,243,2,0,11,142,0,178,397,0,0,269,0,0,0,1,0,0,11,0,0,0,0,252,5118,0,0,0,0,0,1,0,0,0,22,0,41,0,0,75713,167,2189,0,336,0,0,0,0,0,47,21,0,0,0,2,4,20,1283,0,32,142,11,0,8,44,0,1481,65,18,2,0,10,11,1907,0,21,0,5,11083,0,0,0,0,22,10,2,0,0,0,0,1,0,0,0,27,0,0,0,0,0,0,0,4,0,0,0,6,0,0,0,0,0,6,0,16,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,7,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,17,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,178,0,0,0,0,0,0,1183,0,580,0,0,0,496,642,442,1321,1294,0,0,0,0,1,0,0,0,0,0,0,0,0,3592,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,455,102,2471,47,0,0,1582,0,3728,0,4,0,823,300,0,0,0,0,0,0,0,0,0,1160,1,0,0,0,33,0,0,0,0,215,338,182,0,0,136,0,3,0,0,0,2606,0,0,2307,0,0,1,2,0,0,0,0,18,0,0,0,4,0,0,0,0,0,15,0,0,0,1,0,0,7,0,0,0,0,0,0,0,0,19,1,0,0,0,0,0,248,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,252,1,1,1,0,514,0,0,0,148,89,320,592,0,525,0,0,0,0,0,0,305,19,0,0,0,0,0,0,0,0,0,0,0,11,0,1,30,0,0,0,0,0,0,0,2,0,0,0,15,0,7,2844,1319,4 +35,0,0,0,1,62,16,4,43,0,6,0,4,0,3,0,100,0,7,6,0,1,1,7,0,18,9,0,5,0,1,0,0,1,26,0,63,24,0,0,250,0,2,0,1,0,0,2,0,0,0,0,11,131,0,0,0,0,0,1,0,1,0,5,0,3,0,0,1229,62,298,0,14,0,0,0,0,0,10,3,0,0,0,0,10,18,241,0,4,26,1,0,3,8,0,178,0,1,0,0,12,1,217,0,0,0,0,1502,0,0,0,0,12,5,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,3,0,6,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,32,10,10,10,0,0,0,201,0,85,0,0,0,10,27,264,171,207,0,0,0,0,1,0,5,0,0,0,0,0,0,587,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,49,72,335,1,0,0,316,0,577,0,0,0,142,24,0,0,0,0,0,0,0,0,0,179,1,0,0,0,15,0,0,0,0,11,161,38,0,0,0,0,0,0,0,0,233263,0,0,10,3,0,1,4,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,1,4,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,97,1,1,1,0,3,0,0,0,0,9,89,62,0,24,9,0,0,0,0,0,155,6,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,187,886,4 +79,0,0,3,1,52,25,4,117,6,24,0,4,0,12,0,38,0,7,5,0,1,1,6,0,29,9,0,6,0,4,0,0,1,17,0,53,15,0,0,484,0,0,0,1,0,0,0,0,0,0,0,25,102,0,0,0,0,0,1,0,1,0,0,0,26,0,0,1335,52,370,0,29,0,0,0,0,0,16,3,0,0,0,0,8,13,260,0,4,17,1,0,4,88,0,803,15,0,0,0,8,1,553,0,7,0,0,1102,0,0,0,0,36,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,208,0,109,0,0,0,27,58,217,786,206,0,0,0,0,1,0,4,0,0,0,0,0,0,816,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,93,270,5,0,0,239,0,298,0,0,0,102,25,0,0,0,0,0,0,0,0,0,227,0,0,0,0,13,0,0,0,0,24,137,230,0,0,30,0,0,0,0,0,737,0,0,19,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,34,0,0,0,0,9,70,41,0,39,9,0,0,0,0,0,327,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,279,1559,4 +1,0,0,4,0,36,2,0,8,1,3,0,0,0,4,0,12,0,6,3,0,0,0,0,0,0,0,0,1,0,2,0,0,0,24,0,36,6,0,0,53,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,1,0,0,0,1,0,5,0,0,44,36,29,0,3,0,0,0,0,0,0,0,0,0,0,0,2,2,4,0,0,24,0,0,0,0,0,16,0,0,0,0,2,0,20,0,2,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,21,0,44,0,0,0,2,5,56,14,28,0,0,0,0,1,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,139,4,0,0,137,0,3970,0,0,0,79,2,0,0,0,0,0,0,0,0,0,35,0,0,0,0,3,0,0,0,0,2,118,3,0,0,0,0,0,0,0,0,21,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,3,0,0,0,0,1,60,24,0,3,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,24,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,33,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,1,0,0,0,0,0,90,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +52,0,0,0,1,58,13,4,57,3,13,0,4,0,6,0,38,0,7,9,0,1,1,7,0,19,3,0,6,0,4,1,0,1,22,0,59,15,0,0,188,0,0,0,1,0,0,0,0,0,0,0,16,96,0,0,0,0,0,1,0,1,0,0,0,7,0,0,992,58,263,0,20,0,0,0,0,0,10,3,0,0,0,0,13,18,144,0,4,22,1,0,5,31,0,388,30,0,0,0,8,1,236,0,2,0,0,2811,0,0,0,0,12,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,143,0,112,0,0,0,19,29,227,334,132,0,0,0,0,1,0,3,0,0,0,0,0,0,518,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,67,283,3,0,0,243,0,399,0,0,0,103,22,0,0,0,0,0,0,0,0,0,138,0,0,0,0,18,0,0,0,0,15,149,73,0,0,60,0,0,0,0,0,695,0,0,6,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,17,0,0,0,0,9,81,38,0,24,9,0,0,0,0,0,194,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,332,811,4 +1,0,0,6,0,35,9,0,27,0,9,0,0,2,5,0,19,0,7,2,0,0,0,7,0,8,0,0,4,0,3,0,0,0,8,0,35,6,0,0,52,0,0,0,1,0,0,2,0,0,0,0,3,101,0,0,0,0,0,1,0,0,0,0,0,7,0,0,942,35,74,0,5,0,0,0,0,0,10,0,0,0,0,0,8,17,137,0,0,8,0,0,1,14,0,204,30,4,0,0,2,0,92,0,1,0,0,573,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,120,0,59,0,0,0,4,8,196,116,106,0,0,0,0,1,0,3,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,11,161,8,0,0,169,0,304,0,0,0,69,27,0,0,0,0,0,0,0,0,0,78,1,0,0,0,9,0,0,0,0,3,120,52,0,0,60,0,0,0,0,0,80,0,0,63,3,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,12,0,0,0,0,1,43,88,0,6,9,0,0,0,0,0,54,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,182,166,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,2,0,0,411,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,26,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,130,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,32,0,27,0,0,0,2,4,26,94,44,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,155,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,14,4 +12,0,0,23,0,41,25,0,214,9,141,0,0,0,87,0,24,0,7,1,0,0,0,1,1,0,0,0,10,0,10,0,0,0,31,0,41,275,1,0,649,0,0,0,1,0,0,5,0,0,0,0,10,145,0,0,0,0,0,1,0,0,0,12,0,42,0,0,2277,41,529,0,20,0,0,0,0,0,14,0,0,0,0,1,1,8,311,0,0,31,0,0,11,188,0,1644,215,6,0,0,2,0,1237,0,11,0,0,1180,0,0,0,0,63,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,2,0,6,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,0,0,0,0,0,0,224,0,90,0,0,0,20,25,91,16070,229,0,0,0,0,1,0,0,0,0,0,0,0,0,844,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,87,87,276,53,0,0,316,0,583,0,0,0,253,128,0,0,0,0,0,0,0,0,0,498,1,0,0,0,3,0,0,0,0,11,146,499,0,0,513,0,0,0,0,0,5073,0,0,306,0,0,1,1,0,0,0,0,7,0,0,0,2,0,0,0,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,29,0,0,0,0,1,72,449,0,20,0,0,0,0,0,0,542,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,31,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3295,347,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,0,0,0,34,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +104,0,0,0,10,89,70,34,191,9,22,1,5,0,12,5,238,0,12,24,0,10,6,6,0,19,21,0,14,0,7,3,0,6,33,0,99,192,0,0,306,0,0,0,1,0,0,2,0,0,0,0,21,205,0,0,0,0,0,1,0,0,0,2,0,8,0,0,1600,89,1449,0,32,0,0,0,0,0,7,24,0,0,0,0,13,21,116,0,34,33,6,0,6,40,0,562,30,0,0,0,13,10,501,0,8,0,0,2161,0,0,0,0,24,11,2,0,0,0,0,1,0,0,0,22,0,0,0,0,0,0,0,9,0,0,0,8,0,0,0,0,0,3,0,36,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,6,2,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,34,10,10,10,0,0,0,112,0,110,0,0,0,29,42,302,392,165,0,0,0,0,1,0,4,0,0,0,0,0,0,1227,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,245,119,876,12,0,0,952,0,1179,0,1,0,322,70,0,0,0,0,0,0,0,0,0,556,1,0,0,0,46,0,0,0,0,8,214,149,0,0,66,0,0,0,0,0,9007,0,0,19,3,0,1,5,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,101,1,1,1,0,39,0,0,0,0,81,132,109,0,55,9,0,0,0,0,0,242,19,0,0,0,0,0,0,0,0,0,0,0,11,0,1,9,0,0,0,0,0,0,0,0,0,0,0,17,0,0,272,271,4 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,11,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,1,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,238,8,23,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,7,0,0,0,0,0,0,0,0,6,0,0,0,0,2,0,7,0,0,0,0,265,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,34,0,0,0,0,3,22,5,29,0,0,0,0,1,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,87,2,0,0,67,0,190,0,0,0,36,16,0,0,0,0,0,0,0,0,0,26,1,0,0,0,2,0,0,0,0,0,90,36,0,0,0,0,0,0,0,0,20,0,0,5,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,83,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,404,4 +34,0,0,20,5,57,113,2,213,26,107,0,2,0,60,320,162,0,10,10,0,1,0,17,0,12,18,0,8,0,6,2,0,4,15,0,59,216,34,2,1152,0,0,0,1,0,0,2,0,0,0,0,10,250,0,0,0,0,0,1,0,0,0,0,0,8,0,0,3495,57,1096,0,16,0,0,0,0,0,11,6,0,0,0,0,20,28,362,0,2,15,4,0,7,151,0,1364,150,2,0,0,7,5,1707,0,1,0,0,4034,0,0,0,0,11,7,0,0,1,0,0,1,0,0,0,19,0,0,0,0,0,0,0,6,0,0,0,2,0,0,0,0,0,3,0,8,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,3,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,24,10,10,10,0,0,0,594,0,149,0,0,0,17,33,569,1726,685,0,0,0,0,1,0,4,0,0,3,1,1,0,1214,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,3,0,127,123,733,30,0,0,623,0,2832,0,1,0,337,152,0,0,0,0,0,0,0,0,0,987,1,0,0,0,28,0,0,0,0,82,208,351,0,0,379,0,2,0,0,0,583,0,0,134,3,0,1,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,76,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,10,1,0,0,0,0,3,22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,67,1,1,1,1,14,0,0,0,0,27,74,50,0,37,9,0,0,0,0,0,693,6,0,0,0,0,0,0,0,0,0,0,0,3,1,1,36,0,0,0,0,0,0,0,0,1,0,0,4,0,2,981,740,4 +0,0,0,7,2,16,50,2,56,10,6,0,0,0,19,0,123,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,4,0,18,136,0,0,39,0,0,0,1,0,0,7,0,0,0,0,1,153,0,0,0,0,0,1,0,0,0,0,0,17,0,0,3798,16,229,0,3,0,0,0,0,0,28,0,0,0,0,0,1,10,723,0,2,4,2,0,2,0,0,90,0,15,0,0,6,2,89,0,14,0,0,397,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,567,0,298,0,0,0,2,7,44,24,752,0,0,0,0,1,0,0,0,0,0,0,0,0,2582,0,192,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,237,38,457,9,0,0,461,0,1532,0,2,0,157,32,0,0,0,0,0,0,0,0,0,265,1,0,0,0,2,0,0,0,0,1,135,43,0,0,0,0,0,0,0,0,724,0,0,851,0,0,1,0,0,0,0,0,19,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,14,1,1,1,0,2,0,0,0,0,17,22,172,0,6,0,0,0,0,0,0,89,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,1444,70,4 +120,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,556,0,20,44,0,99,2,6,0,33,22,0,18,0,8,2,0,10,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,335,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2512,89,1767,0,49,0,0,0,0,0,21,15,0,0,0,0,13,22,290,0,27,38,10,0,8,37,0,731,70,3,0,0,14,11,584,0,46,0,0,2050,0,0,0,0,46,16,1,0,33,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,32,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,291,0,228,0,0,0,42,74,333,591,304,0,0,0,0,1,0,6,0,0,0,0,0,0,2169,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1424,49,0,0,1490,0,2998,0,6,0,498,367,0,0,0,0,0,0,0,0,0,1111,1,0,0,0,151,0,0,0,0,30,281,146,0,0,155,0,0,0,0,0,10417,0,0,172,4,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,4,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,64,0,0,0,0,115,137,314,0,74,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,207,0,3,1660,1614,4 +20,0,0,7,0,68,7,0,45,9,6,0,0,6,16,1,708,0,7,3,0,0,0,8,0,15,0,0,8,0,2,0,0,0,28,898,68,6,0,0,112,0,0,0,1,0,0,8,0,0,0,0,7,228,0,0,0,0,0,1,0,0,0,14,0,16,0,0,14658,68,852,0,12,0,0,0,0,0,43,0,0,0,0,0,10,30,2823,0,0,28,0,0,0,0,0,215,20,15,1,0,2,0,688,0,12,1,0,1957,0,0,0,0,17,8,1,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,8,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,0,0,0,2,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,32,12,12,12,0,0,0,1519,0,193,0,0,0,7,10,341,411,1477,0,0,0,0,1,0,3,0,0,0,0,0,0,2538,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,88,33,344,7,0,0,398,0,433,0,0,0,225,34,0,0,0,0,0,0,0,0,0,796,1,0,0,0,11,0,0,0,0,10,172,60,0,0,6,0,0,0,0,0,2879,1,0,2370,6,0,1,2,0,0,0,0,13,0,0,0,4,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,42,42,0,0,6,1,0,0,0,0,6,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,74,1,1,1,0,7,0,0,0,0,33,96,363,0,13,12,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1366,288,4 +0,0,0,8,0,35,25,0,48,0,24,0,0,7,4,0,623,0,6,1,0,0,0,8,0,10,0,0,15,0,1,0,0,0,1,3962,35,6,0,0,51,0,2,0,1,0,0,2,0,0,0,0,1,711,0,0,0,0,0,1,0,0,0,0,0,4,0,0,20525,35,797,0,13,0,0,0,0,0,53,0,0,0,0,0,8,121,4249,0,0,1,0,0,0,0,0,372,25,3,0,0,2,0,716,0,0,126,0,2642,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,1275,0,42,0,0,0,9,12,641,1122,1251,0,0,0,0,1,0,3,0,0,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,106,16,280,8,0,0,350,0,360,0,0,0,188,5,0,0,0,0,0,0,0,0,0,737,1,0,0,0,9,0,0,0,0,1,163,51,0,0,154,0,0,0,0,0,2810,1,0,931,25,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,25,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,39,0,0,0,0,1,36,178,0,14,12,0,1,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1423,260,4 +1,0,0,3,0,28,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,138,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1078,28,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,181,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,540,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,137,0,48,0,0,0,1,4,182,14,135,0,0,0,0,1,0,3,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,2,1,5,0,0,0,0,1,0,32,10,128,3,0,0,160,0,313,0,0,0,54,9,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,110,37,0,0,0,0,0,0,0,0,101,0,0,114,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,220,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,182,53,4 +55,0,0,1,1,58,12,4,56,2,13,0,3,0,5,0,37,0,7,10,0,1,1,6,0,16,3,0,7,0,4,1,0,1,22,0,59,12,0,0,181,0,0,0,1,0,0,0,0,0,0,0,13,96,0,0,0,0,0,1,0,1,0,0,0,7,0,0,1005,58,258,0,18,0,0,0,0,0,10,3,0,0,0,0,13,18,137,0,4,22,1,0,4,31,0,381,30,0,0,0,6,1,231,0,2,0,0,1099,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,143,0,91,0,0,0,16,23,229,327,132,0,0,0,0,1,0,3,0,0,0,0,0,0,490,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,289,2,0,0,239,0,398,0,0,0,102,32,0,0,0,0,0,0,0,0,0,133,0,0,0,0,18,0,0,0,0,12,149,72,0,0,60,0,0,0,0,0,703,0,0,6,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,18,0,0,0,0,9,81,38,0,22,9,0,0,0,0,0,190,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,164,795,4 +0,0,0,9,0,27,5,0,22,0,2,0,0,2,2,0,19,0,6,3,0,0,0,5,0,8,0,0,2,0,1,0,0,0,1,0,27,6,0,0,23,0,0,0,1,0,0,2,0,0,0,0,1,145,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1717,27,54,0,1,0,0,0,0,0,12,0,0,0,0,0,7,15,347,0,0,1,0,0,0,0,0,74,5,4,0,0,2,0,31,0,0,0,0,515,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,210,0,42,0,0,0,0,3,181,10,209,0,0,0,0,1,0,3,0,0,0,0,0,0,498,0,0,0,0,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,1,0,32,10,146,11,0,0,185,0,351,0,0,0,68,4,0,0,0,0,0,0,2,0,0,58,1,0,0,0,8,0,0,0,0,0,113,52,0,0,0,0,0,0,0,0,125,0,0,280,3,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,0,0,1,28,214,0,2,9,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,87,4 +10,0,0,9,0,31,4,0,80,12,34,0,0,0,27,0,22,0,7,1,0,0,0,2,0,2,3,0,7,0,5,0,0,0,19,0,31,6,0,0,166,0,0,0,1,0,0,2,0,0,0,0,5,79,0,0,0,0,0,1,0,0,0,32,0,33,0,0,547,31,178,0,12,0,0,0,0,0,7,0,0,0,0,0,2,5,54,0,0,19,0,0,7,56,0,564,105,2,0,0,2,0,358,0,19,0,0,528,0,0,0,0,12,0,1,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,14,0,1,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4,0,0,0,0,0,0,73,0,92,0,0,0,8,18,58,489,95,0,0,0,0,1,0,0,0,0,0,0,0,0,468,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,50,190,13,0,0,238,0,462,0,0,0,164,11,0,0,0,0,0,0,0,0,0,174,1,0,0,0,3,0,0,0,0,4,131,177,0,0,217,0,1,0,2,2,96,0,0,35,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,29,0,0,0,0,1,50,268,0,17,0,0,0,0,0,0,158,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,26,0,0,0,0,0,0,0,0,0,0,0,0,0,2,167,79,4 +54,0,0,8,1,55,42,1,75,7,13,0,0,2,13,0,73,0,8,15,0,0,0,5,0,22,0,0,15,0,1,0,0,1,16,0,56,89,0,0,141,0,0,0,1,0,0,1,0,0,0,0,15,125,0,0,0,0,0,1,0,0,0,0,0,22,0,0,7229,55,204,0,28,0,0,0,0,0,9,0,0,0,0,0,19,26,1703,0,1,16,1,0,2,39,0,471,20,1,0,0,4,1,283,0,10,0,0,1105,0,0,0,0,19,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,12,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,919,0,78,0,0,0,14,17,230,334,920,0,0,0,0,1,0,3,0,0,0,0,0,0,2421,0,0,0,0,0,0,0,0,0,0,0,0,1,1,8,0,0,0,0,1,0,142,29,370,9,0,0,385,0,554,0,1,0,129,16,0,0,0,0,0,0,5,0,0,226,1,0,0,0,20,0,0,0,0,17,153,114,0,0,29,0,0,0,0,0,649,0,0,1580,3,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,56,1,1,1,0,13,0,0,0,0,9,72,117,0,29,9,0,0,0,0,0,158,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,2,35903,54,4 +82,0,0,2,1,53,25,4,117,6,24,0,4,0,12,0,38,0,7,5,0,1,1,6,0,29,9,0,5,0,4,0,0,1,17,0,54,15,0,0,480,0,0,0,1,0,0,0,0,0,0,0,25,114,0,0,0,0,0,1,0,1,0,0,0,26,0,0,1373,53,369,0,28,0,0,0,0,0,16,3,0,0,0,0,8,13,274,0,4,17,1,0,4,88,0,802,15,0,0,0,8,1,552,0,7,0,0,1148,0,0,0,0,36,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,208,0,110,0,0,0,27,58,221,786,206,0,0,0,0,1,0,4,0,0,0,0,0,0,798,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,93,282,4,0,0,242,0,302,0,0,0,102,30,0,0,0,0,0,0,0,0,0,227,0,0,0,0,13,0,0,0,0,24,138,230,0,0,30,0,0,0,0,0,736,0,0,19,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,33,0,0,0,0,9,71,41,0,38,9,0,0,0,0,0,327,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,282,1559,4 +12,0,0,14,0,69,32,0,231,4,72,0,0,14,58,0,985,0,7,2,0,0,0,9,0,12,0,0,20,0,6,0,0,0,25,1529,69,6,0,0,428,0,0,0,1,0,0,7,0,0,0,0,6,290,0,0,0,0,0,1,0,0,0,18,0,44,0,0,17432,69,1448,0,22,0,0,0,0,0,49,0,0,0,0,0,10,61,3447,0,0,25,0,0,6,149,0,1721,140,11,0,0,2,0,1950,0,12,93,0,3847,0,0,0,0,14,2,1,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,6,0,3,0,9,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,50,12,12,12,0,0,0,1205,0,170,0,0,0,15,18,415,2063,1181,0,0,0,0,1,0,4,0,0,0,0,0,0,974,0,0,0,0,0,0,0,0,0,0,0,0,7,1,3,0,0,0,0,1,0,246,35,490,14,0,0,490,0,481,0,0,0,305,40,0,0,0,0,0,0,4,0,0,1399,1,0,0,0,11,0,0,0,0,6,171,504,0,0,351,0,1,0,0,0,8068,1,0,414,14,0,1,1,1,0,0,0,16,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,14,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,74,1,1,1,0,42,0,0,0,0,1,94,376,0,24,14,0,0,0,0,0,514,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,31,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1576,227,4 +9,0,0,6,1,15,26,1,38,1,4,0,0,0,6,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,3,0,16,54,0,0,19,0,0,0,1,0,0,4,0,0,0,0,0,78,0,0,0,0,0,1,0,0,0,0,0,5,0,0,22814,15,125,0,1,0,0,0,0,0,17,0,0,0,0,0,1,6,1507,0,1,3,1,0,1,0,0,50,0,6,0,0,4,1,25,0,3,0,0,8391,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1494,0,148,0,0,0,0,3,64,37,1510,0,0,0,0,1,0,0,0,0,0,0,0,0,1642,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,113,17,922,8,0,0,759,0,745,0,1,0,572,23,0,0,0,0,0,0,0,0,0,147,1,0,0,0,2,0,0,0,0,0,604,21,0,0,0,0,0,0,0,0,1166,0,0,1714,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,1,1,1,0,0,0,0,0,0,9,19,73,0,1,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,723,119,4 +20,0,0,0,0,35,24,0,36,2,5,0,2,0,4,0,20,0,6,5,0,0,0,7,0,10,3,0,5,0,2,1,0,0,6,0,35,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,76,0,0,0,0,0,1,0,0,0,0,0,3,0,0,703,35,115,0,8,0,0,0,0,0,13,0,0,0,0,0,11,16,142,0,0,6,0,0,2,25,0,298,15,0,0,0,4,0,170,0,2,0,0,753,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,97,0,48,0,0,0,6,12,197,169,101,0,0,0,0,1,0,3,0,0,0,0,0,0,387,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,138,0,0,0,149,0,251,0,0,0,61,29,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,125,53,0,0,30,0,0,0,0,0,107,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,10,0,0,0,0,1,41,22,0,12,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,35,4 +0,0,0,5,0,36,24,0,47,3,23,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12329,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,772,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40527,36,911,0,24,0,0,0,0,0,45,0,0,0,0,0,8,94,6610,0,0,1,0,0,0,0,0,363,25,2,0,0,2,0,836,0,0,91,0,4176,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1672,0,32,0,0,0,13,16,493,2065,1650,0,0,0,0,1,0,3,0,0,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,284,5,0,0,316,0,304,0,0,0,155,11,0,0,0,0,0,0,0,0,0,859,1,0,0,0,9,0,0,0,0,1,172,7,0,0,132,0,0,0,0,0,4380,1,0,1032,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,212,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2326,29,4 +106,0,0,24,4,69,113,7,157,3,16,0,0,2,19,0,187,0,12,6,0,1,1,5,0,23,9,0,10,0,5,0,0,4,20,0,73,164,0,0,265,0,0,0,1,0,0,7,0,0,0,0,20,256,0,0,0,0,0,1,0,1,0,0,0,16,0,0,5308,69,531,0,28,0,0,0,0,0,30,3,0,0,0,0,8,21,1027,0,7,20,4,0,4,43,0,567,20,12,0,0,8,4,366,0,10,0,0,1649,0,0,0,0,45,23,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,37,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,762,0,244,0,0,0,23,62,256,394,728,0,0,0,0,1,0,4,0,0,0,0,0,0,2065,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,69,784,33,0,0,865,0,1565,0,3,0,289,28,0,0,0,0,0,0,2,0,0,506,1,0,0,0,13,0,0,0,0,20,199,156,0,0,34,0,0,0,0,0,1199,0,0,946,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,71,1,1,1,0,62,0,0,0,0,33,93,358,0,38,9,0,0,0,0,0,317,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,7,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1306,1573,4 +151,0,0,29,10,84,185,22,410,30,70,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,94,301,0,0,661,0,0,0,1,0,0,3,0,0,0,0,28,364,0,0,0,0,0,1,0,3,0,12,0,80,0,0,2835,84,1496,0,39,0,0,0,0,0,70,12,0,0,0,0,13,22,387,0,22,33,9,0,10,183,0,1821,100,3,0,0,14,10,1229,0,46,0,0,2321,0,0,0,0,53,39,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,19,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,327,0,231,0,0,0,36,76,296,1551,356,0,0,0,0,1,0,5,0,0,0,0,0,0,2667,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1396,48,0,0,1552,0,2904,0,6,0,561,63,0,0,0,0,0,0,0,0,0,1126,1,0,0,0,30,0,0,0,0,22,280,512,0,0,215,0,0,0,0,0,9921,0,0,184,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,77,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,687,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1610,1654,4 +50,0,0,8,1,52,36,1,57,7,10,0,0,2,13,0,73,0,8,15,0,0,0,5,0,22,0,0,11,0,1,0,0,1,15,0,53,89,0,0,105,0,0,0,1,0,0,1,0,0,0,0,15,123,0,0,0,0,0,1,0,0,0,0,0,19,0,0,954,52,173,0,24,0,0,0,0,0,9,0,0,0,0,0,19,26,149,0,1,15,1,0,2,21,0,335,20,1,0,0,4,1,189,0,10,0,0,1036,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,132,0,68,0,0,0,14,17,225,226,135,0,0,0,0,1,0,3,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,142,29,373,9,0,0,365,0,530,0,1,0,115,13,0,0,0,0,0,0,0,0,0,199,1,0,0,0,20,0,0,0,0,17,150,64,0,0,29,0,0,0,0,0,241,0,0,24,3,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,53,1,1,1,0,9,0,0,0,0,9,68,68,0,25,9,0,0,0,0,0,116,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,2,35110,53,4 +0,0,0,3,0,12,3,0,6,4,3,0,0,0,7,0,9,0,6,1,0,0,0,2,0,0,0,0,1,0,2,0,0,0,2,0,12,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,1,32,0,0,0,0,0,1,0,0,0,0,0,7,0,0,115,12,31,0,3,0,0,0,0,0,0,0,0,0,0,0,2,2,40,0,0,2,0,0,0,0,0,12,0,0,0,0,2,0,19,0,5,0,0,111,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,48,0,46,0,0,0,2,5,29,17,74,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,44,3,0,0,44,0,141,0,0,0,8,3,0,0,0,0,0,0,0,0,0,34,0,0,0,0,3,0,0,0,0,2,94,1,0,0,0,0,0,0,0,0,24,0,0,1,0,0,1,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,14,2,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,42,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,409,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,144,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,30,0,27,0,0,0,2,4,27,94,44,0,0,0,0,1,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,48,3,0,0,47,0,144,0,0,0,5,8,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,11,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,78,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,48,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,36,4 +0,0,0,6,0,8,2,0,24,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,6,0,0,0,1,0,0,2,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,1,0,0,302,8,48,0,1,0,0,0,0,0,5,0,0,0,0,0,1,4,26,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,23,0,0,0,0,277,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,40,0,0,0,0,3,22,6,46,0,0,0,0,1,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,132,8,0,0,127,0,263,0,0,0,60,15,0,0,0,0,0,0,0,0,0,52,1,0,0,0,2,0,0,0,0,0,96,40,0,0,0,0,0,0,0,0,28,0,0,15,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,163,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,55,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,42,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,4 +0,0,0,0,0,9,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,0,0,0,80,9,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,11,0,49,0,0,0,0,3,26,4,25,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,46,2,0,0,69,0,109,0,0,0,29,1,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,92,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,36,4 +5,0,0,0,0,15,2,0,4,0,1,0,0,0,2,0,10,0,7,1,0,0,0,1,0,4,0,0,2,0,1,0,0,0,4,0,15,6,0,0,26,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,76,15,25,0,6,0,0,0,0,0,0,0,0,0,0,0,1,1,11,0,0,4,0,0,0,0,0,13,0,0,0,0,2,0,14,0,0,0,0,163,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,4,6,31,28,30,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,23,71,0,0,0,63,0,131,0,0,0,24,10,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,4,105,3,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,2,0,0,0,0,1,19,4,0,7,0,0,0,0,0,0,19,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,76,4 +153,0,0,29,10,84,192,22,445,30,77,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,3,0,9,33,0,94,301,0,0,747,0,0,0,1,0,0,3,0,0,0,0,28,352,0,0,0,0,0,1,0,3,0,12,0,87,0,0,2969,84,1555,0,39,0,0,0,0,0,75,12,0,0,0,0,13,22,413,0,22,33,9,0,10,218,0,2080,100,3,0,0,14,10,1404,0,46,0,0,2294,0,0,0,0,52,42,0,0,30,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,343,0,243,0,0,0,36,75,296,1781,374,0,0,0,0,1,0,5,0,0,0,0,0,0,2781,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1421,48,0,0,1560,0,2959,0,6,0,569,50,0,0,0,0,0,0,0,0,0,1175,1,0,0,0,30,0,0,0,0,22,276,603,0,0,215,0,0,0,0,0,9926,0,0,187,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,75,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,781,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,4,1637,1716,4 +4,0,0,2,0,8,2,0,15,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,2,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,1,0,0,881,8,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,459,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,13,0,0,0,0,33,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,33,0,23,0,0,0,0,3,21,4,45,0,0,0,0,1,0,0,0,0,0,0,0,0,115,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,59,2,0,0,90,0,117,0,0,0,32,0,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,88,27,0,0,0,0,0,0,0,0,781,0,0,731,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,74,0,1,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,229,3,4 +11,0,0,9,1,49,50,1,125,7,15,1,0,2,13,0,69,0,9,5,0,0,0,7,0,10,0,0,13,0,1,0,0,1,17,0,50,54,0,0,163,0,0,0,1,0,0,16,3,0,0,0,3,323,0,0,0,0,0,1,0,0,0,20,0,11,0,0,8133,49,339,0,15,0,0,0,0,0,61,0,0,0,0,5,11,39,1417,0,1,17,1,0,1,47,0,520,20,33,1,0,4,1,341,0,8,0,0,1317,0,0,0,0,33,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,8,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,29,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,10,10,10,0,0,0,1153,0,256,0,0,0,2,7,226,426,1069,0,0,0,0,1,0,3,0,0,0,0,0,0,2484,0,0,0,0,0,0,0,0,0,0,0,0,17,1,0,0,0,0,0,1,0,135,26,399,12,0,0,526,0,1560,0,1,0,276,47,0,0,0,0,0,0,0,0,0,284,1,0,9,0,12,0,0,0,0,3,161,224,0,0,34,0,0,0,0,0,639,0,0,1451,2,0,1,1,0,0,0,0,43,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,57,1,1,1,0,14,0,0,0,0,9,67,785,0,16,8,0,0,0,0,0,204,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,10,1805,105,4 +89,0,0,0,12,82,17,48,146,2,25,0,1,0,4,0,116,0,7,31,0,12,12,3,0,3,3,0,19,0,65,1,0,12,53,0,94,9,0,0,168,0,0,0,0,0,0,0,0,0,0,0,68,116,0,0,0,0,0,1,0,0,0,0,0,3,0,0,893,82,1265,0,88,0,0,0,0,0,3,36,0,0,0,0,9,9,45,0,48,53,12,0,1,32,0,580,55,0,0,0,4,12,323,0,2,0,0,2159,0,0,0,0,24,18,0,0,3,0,0,0,0,0,0,15,0,0,0,0,0,0,0,18,0,0,0,18,0,0,0,0,0,1,0,22,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,0,0,0,0,0,0,80,0,112,0,0,0,133,136,143,451,113,0,0,0,0,0,0,0,0,0,0,0,0,0,698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,25,713,12,0,0,672,0,556,0,0,0,276,85,0,0,0,0,0,0,0,0,0,316,0,0,0,0,58,0,0,0,0,67,172,60,0,0,121,0,0,0,0,0,258,0,0,64,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,81,1,1,1,0,152,0,0,0,120,97,147,53,0,91,0,0,0,0,0,0,198,16,0,0,0,0,0,0,0,0,0,0,0,12,0,1,2,0,0,0,0,0,0,0,0,0,0,0,20,0,0,138,891,4 +147,0,0,29,10,84,188,22,425,27,73,0,0,2,61,0,375,0,20,16,0,6,2,6,0,34,22,0,14,0,9,3,0,9,33,0,94,301,0,0,685,0,0,0,1,0,0,3,0,0,0,0,38,354,0,0,0,0,0,1,0,3,0,12,0,80,0,0,2984,84,1526,0,48,0,0,0,0,0,73,12,0,0,0,0,13,22,387,0,22,33,9,0,10,198,0,1956,100,3,0,0,14,10,1306,0,43,0,0,2301,0,0,0,0,47,40,0,0,30,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,34,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,328,0,230,0,0,0,48,87,296,1663,357,0,0,0,0,1,0,5,0,0,0,0,0,0,2680,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,143,1428,48,0,0,1558,0,2944,0,6,0,567,65,0,0,0,0,0,0,0,0,0,1144,1,0,0,0,30,0,0,0,0,32,280,551,0,0,215,0,0,0,0,0,9922,0,0,172,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,62,0,0,0,0,81,127,309,0,73,9,0,0,0,0,0,720,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,37,0,0,0,0,0,0,0,0,0,0,0,15,0,3,1595,1799,4 +6,0,0,0,0,33,28,0,34,6,6,0,0,0,9,0,138,0,7,4,0,0,0,3,0,13,6,0,4,0,1,2,0,0,16,0,33,337,0,0,259,0,0,0,0,0,0,0,0,0,0,0,15,86,0,0,0,0,0,1,0,0,0,0,0,8,0,0,919,33,236,0,13,0,0,0,0,0,0,0,0,0,0,0,6,6,55,0,0,16,0,0,0,24,0,213,15,0,0,0,2,0,228,0,6,0,0,853,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,14,0,0,0,0,0,0,90,0,47,0,0,0,10,29,70,478,191,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,31,227,0,0,0,423,0,256,0,0,0,366,50,0,0,0,0,0,0,0,0,0,222,0,0,0,0,7,0,0,0,0,9,195,163,0,0,37,0,0,0,19,0,303,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,29,0,0,0,0,1,49,16,0,26,0,0,0,0,0,0,536,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,127,4 +118,0,0,29,11,90,157,27,271,30,38,0,0,2,66,1,565,0,20,45,0,98,2,6,0,33,22,0,17,0,8,2,0,10,38,0,100,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,343,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2545,90,1771,0,50,0,0,0,0,0,20,15,0,0,0,0,13,22,291,0,27,38,10,0,8,37,0,729,70,3,0,0,14,11,586,0,46,0,0,2191,0,0,0,0,46,16,1,0,31,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,287,0,233,0,0,0,42,74,343,591,297,0,0,0,0,1,0,6,0,0,0,0,0,0,2256,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1447,49,0,0,1498,0,2943,0,6,0,503,347,0,0,0,0,0,0,0,0,0,1120,1,0,0,0,151,0,0,0,0,29,284,149,0,0,155,0,0,0,0,0,10428,0,0,162,3,0,1,6,0,0,0,0,6,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,7,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,63,0,0,0,0,121,138,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,170,0,2,1738,1619,4 +4,0,0,5,2,15,51,2,52,8,5,0,0,0,14,0,112,0,11,1,0,0,0,1,0,5,3,0,1,0,2,0,0,2,4,0,17,102,0,0,34,0,0,0,0,0,0,0,0,0,0,0,6,68,0,0,0,0,0,1,0,0,0,4,0,11,0,0,166,15,173,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,35,0,2,4,2,0,2,0,0,94,0,0,0,0,6,2,64,0,10,0,0,194,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,37,0,34,0,0,0,7,14,41,145,54,0,0,0,0,0,0,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,37,335,8,0,0,362,0,694,0,2,0,89,245,0,0,0,0,0,0,0,0,0,245,0,0,0,0,2,0,0,0,0,8,127,2,0,0,0,0,1,0,0,0,227,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,14,1,1,1,0,3,0,0,0,0,17,21,6,0,11,0,0,0,0,0,0,69,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,120,122,4 +3,0,0,11,0,41,23,0,70,4,32,0,0,7,6,0,904,0,7,2,0,0,0,8,0,11,3,0,22,0,1,1,0,0,3,12304,41,6,0,0,78,0,0,0,1,0,0,2,0,0,0,0,2,757,0,0,0,0,0,1,0,0,0,0,0,8,0,0,27483,41,1095,0,20,0,0,0,0,0,43,0,0,0,0,0,9,84,3448,0,0,3,0,0,1,20,0,518,60,3,0,0,2,0,1090,0,2,89,0,3254,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,1271,0,64,0,0,0,11,19,495,1330,1252,0,0,0,0,1,0,3,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,1,0,0,2,1,0,0,0,0,0,1,0,108,29,343,14,0,0,339,0,356,0,0,0,167,19,0,0,0,0,0,0,0,0,0,1049,1,0,0,0,10,0,0,0,0,2,172,58,0,0,199,0,0,0,0,0,3222,1,0,293,22,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,22,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,55,0,0,0,0,1,44,224,0,24,14,0,0,0,0,0,126,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1152,63,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1,0,0,0,0,0,0,0,0,44,8,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,15,0,0,0,0,3,21,4,24,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,37,0,22,0,0,0,3,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,1,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,4,4 +217,0,0,0,3,85,54,12,328,3,105,1,2,0,5,0,48,0,7,15,0,3,3,3,0,7,4,0,72,0,299,1,0,3,36,0,88,12,0,0,490,0,0,0,0,0,0,0,0,0,0,0,305,110,0,0,0,0,0,1,0,0,0,0,0,22,0,0,5844,85,1651,0,380,0,0,0,0,0,270,9,0,0,0,0,11,11,240,0,12,36,3,0,4,287,0,3542,405,0,0,0,6,3,1638,0,2,0,0,7427,0,0,0,0,83,92,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,77,0,0,0,76,0,0,0,0,0,1,0,13,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,72,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,228,0,199,0,0,0,604,608,164,2403,249,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,649,6,0,0,701,0,552,0,0,0,466,56,0,0,0,0,0,0,0,0,0,550,0,0,0,0,24,0,0,0,0,304,176,555,0,0,905,0,0,0,0,0,1309,0,0,299,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,85,1,1,1,0,675,0,0,0,586,25,124,36,0,383,0,0,0,0,0,0,614,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,1,0,0,0,0,0,0,0,0,0,0,5,0,0,1227,1956,4 +0,0,0,3,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,2,0,0,18,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,3,0,0,32,0,93,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,7,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,42,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,4 +5,0,0,8,1,39,33,1,72,11,10,0,0,2,16,0,567,0,8,3,0,0,0,7,0,11,0,0,16,0,37,0,0,1,5,898,40,61,0,0,94,0,0,0,1,0,0,1,0,0,0,0,37,182,0,0,0,0,0,1,0,0,0,0,0,20,0,0,22272,39,733,0,49,0,0,0,0,0,25,0,0,0,0,0,9,20,3756,0,1,5,1,0,2,14,0,404,25,3,0,0,4,1,679,0,13,0,0,1819,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,12,12,12,0,0,0,3056,0,73,0,0,0,72,75,252,553,3279,0,0,0,0,1,0,4,0,0,0,0,0,0,1335,0,202,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,136,32,418,9,0,0,375,0,554,0,1,0,108,22,0,0,0,0,0,0,0,0,0,708,1,0,0,0,10,0,0,0,0,37,136,35,0,0,41,0,0,0,0,0,1617,1,0,137,9,0,1,1,0,0,0,0,6,0,6,0,2,0,0,0,0,0,11,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,9,73,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,42,1,1,1,0,84,0,0,0,72,9,45,94,0,50,14,0,0,0,0,0,105,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,15,0,0,0,0,0,0,0,0,0,0,0,1,0,1,561,38,4 +54,0,0,1,1,57,12,4,56,2,13,0,3,0,5,0,37,0,7,10,0,1,1,6,0,16,3,0,7,0,4,1,0,1,22,0,58,12,0,0,181,0,0,0,1,0,0,0,0,0,0,0,13,89,0,0,0,0,0,1,0,1,0,0,0,7,0,0,1006,57,258,0,18,0,0,0,0,0,10,3,0,0,0,0,13,18,140,0,4,22,1,0,4,31,0,381,30,0,0,0,6,1,231,0,2,0,0,3899,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,142,0,91,0,0,0,16,23,225,327,131,0,0,0,0,1,0,3,0,0,0,0,0,0,503,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,285,2,0,0,235,0,404,0,0,0,102,31,0,0,0,0,0,0,0,0,0,133,0,0,0,0,18,0,0,0,0,12,148,72,0,0,60,0,0,0,0,0,691,0,0,6,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,18,0,0,0,0,9,80,38,0,22,9,0,0,0,0,0,190,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,159,796,4 +8,0,0,8,0,42,47,0,131,8,47,0,0,7,18,0,880,0,6,2,0,0,0,8,0,11,3,0,13,0,2,0,0,0,7,18503,42,6,0,0,222,0,0,0,1,0,0,2,0,0,0,0,2,518,0,0,0,0,0,1,0,0,0,17,0,17,0,0,26401,42,1170,0,13,0,0,0,0,0,39,0,0,0,0,0,9,90,3894,0,0,7,0,0,1,77,0,973,95,2,0,0,2,0,1355,0,9,99,0,3208,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,7,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,60,12,12,12,0,0,0,1138,0,57,0,0,0,7,13,749,1834,1115,0,0,0,0,1,0,4,0,0,0,0,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,108,40,323,8,0,0,390,0,412,0,0,0,230,26,0,0,0,0,0,0,0,0,0,1136,1,0,0,0,10,0,0,0,0,3,173,234,0,0,296,0,0,0,0,0,3528,1,0,168,16,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,16,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,27,0,0,0,0,1,49,180,0,17,12,0,0,0,0,0,252,1,0,0,0,0,0,0,0,0,0,0,0,2,0,2,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1360,39,4 +200,0,0,27,18,79,193,30,356,32,48,0,0,2,76,1,648,0,22,32,0,19,3,5,0,48,16,0,32,0,4,3,0,16,37,0,97,540,0,0,377,0,0,0,1,0,0,0,0,0,0,0,47,341,0,0,0,0,0,1,0,1,0,2,0,53,0,0,2145,79,2582,0,77,0,0,0,0,0,4,33,0,0,0,0,14,19,147,0,30,37,16,0,8,48,0,901,80,0,0,0,16,18,743,0,49,0,0,2754,0,0,0,0,38,19,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,16,0,0,0,6,0,0,0,0,0,7,0,58,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,1,0,0,0,0,0,0,13,0,0,0,3,0,0,0,12,2,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,54,10,10,10,0,0,0,147,0,181,0,0,0,52,67,348,602,162,0,0,0,0,1,0,4,0,0,0,0,0,0,1869,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,772,186,1821,52,0,0,1742,0,2650,0,7,0,508,171,0,0,0,0,0,0,0,0,0,1346,0,0,0,0,59,0,0,0,0,51,278,107,0,0,187,0,0,0,1,0,14839,0,0,9,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,1,0,0,0,0,52,52,0,0,13,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,84,1,1,1,0,47,0,0,0,0,191,134,76,0,94,9,0,0,0,0,0,344,41,0,0,0,0,0,0,0,0,0,0,0,19,0,1,38,0,0,0,0,0,0,0,0,0,0,0,24,0,0,976,1162,4 +403,0,0,32,28,118,275,64,796,40,133,0,0,2,87,0,558,0,24,81,0,122,2,7,0,59,19,0,36,0,9,2,0,28,54,0,140,400,159,0,1399,0,0,0,1,0,0,5,1,0,0,0,60,446,0,0,0,0,0,1,0,2,0,21,0,141,0,0,4538,118,3971,0,94,0,0,0,0,0,107,60,0,0,0,0,14,28,670,0,64,54,28,0,12,398,0,3613,90,11,0,0,18,28,2482,0,63,0,0,3934,0,0,0,0,105,102,0,0,41,0,0,1,0,0,0,21,0,0,0,0,0,0,0,28,0,0,0,18,0,0,0,2,0,6,0,75,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,3,0,0,0,0,0,1,13,0,0,0,0,0,0,0,18,6,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,103,10,10,10,0,0,0,554,0,359,0,0,0,69,117,379,3176,604,0,0,0,0,1,0,4,0,0,0,0,0,0,5061,0,0,0,0,0,0,0,0,0,1,0,0,5,1,3,0,0,0,0,1,0,884,413,2221,68,0,0,2347,0,4197,0,8,0,813,153,0,0,0,0,0,0,0,0,0,1875,1,0,2,0,212,0,0,0,0,53,349,1035,0,0,192,0,0,0,0,0,10687,0,0,170,3,0,1,9,0,0,0,0,13,0,0,0,4,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,3,38,4,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,121,1,1,1,0,124,0,0,0,0,177,194,211,0,116,9,0,0,0,0,0,1353,32,0,0,0,0,0,0,1,0,0,0,0,23,0,4,50,0,0,0,0,0,0,0,0,117,0,0,203,0,6,2359,2423,4 +5,0,0,5,0,9,2,0,5,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,2,0,0,30,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,51,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,19,0,0,0,0,3,23,4,32,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,11,32,5,0,0,35,0,51,0,0,0,5,1,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,88,4 +1,0,0,3,0,28,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,8,0,0,2,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,5,0,0,0,0,1,172,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1248,28,64,0,1,0,0,0,0,0,20,0,0,0,0,0,7,17,165,0,0,2,0,0,0,0,0,76,5,8,0,0,2,0,29,0,0,0,0,544,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,138,0,51,0,0,0,0,3,182,12,128,0,0,0,0,1,0,3,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,4,1,4,0,0,0,0,1,0,32,10,147,3,0,0,215,0,348,0,0,0,106,8,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,111,85,0,0,0,0,0,0,0,0,83,0,0,64,3,0,1,1,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,0,0,0,0,0,1,30,366,0,2,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,76,4 +0,0,0,0,3,13,30,1,47,2,4,0,17,5,4,0,129,0,8,3,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,6,14,54,0,0,24,0,0,0,1,0,0,1,0,0,0,0,0,129,0,0,0,0,0,1,0,0,0,0,0,0,0,0,67,13,203,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,9,0,1,0,1,0,2,0,0,45,0,0,0,0,6,3,90,0,1,0,0,73,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,17,28,0,0,0,0,3,27,13,38,0,0,0,0,1,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,444,42,251,3,0,0,275,0,1107,0,1,0,89,78,0,0,0,0,0,0,0,0,0,244,1,0,0,0,4,0,0,0,0,0,158,5,0,0,0,0,0,0,0,0,2601,0,0,3,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,1,1,1,0,0,0,0,0,0,9,14,2,0,1,0,0,0,0,0,0,47,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,97,26,4 +0,0,0,2,0,10,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,8382,10,40,0,1,0,0,0,0,0,8,0,0,0,0,0,1,5,1963,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,13,0,0,0,0,706,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,81,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1233,0,151,0,0,0,0,3,26,5,1275,0,0,0,0,1,0,0,0,0,0,0,0,0,3217,0,0,0,0,0,0,0,0,0,0,0,0,2,0,81,0,0,0,0,0,0,8,3,101,2,0,0,129,0,277,0,0,0,63,13,0,0,0,0,0,0,171,0,0,40,1,0,0,0,2,0,0,0,0,0,92,56,0,0,0,0,0,0,0,0,562,0,0,2397,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,160,0,0,0,0,309,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,90,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,178,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,83,0,0,0,0,0,0,0,1,1175,292,4 +21,0,0,3,1,55,36,1,70,14,6,0,5,0,23,0,92,0,8,31,0,90,0,5,0,27,0,0,20,0,2,0,0,1,20,0,56,65604,160,0,453,0,0,0,1,0,0,5,0,0,0,0,20,164,0,0,0,0,0,1,0,1,0,0,0,13,0,0,1287,55,485,0,38,0,0,0,0,0,23,0,0,0,0,0,8,21,312,0,1,20,1,0,6,8,0,252,15,7,0,0,12,1,181,0,12,0,0,974,0,0,0,0,20,4,0,0,16,0,0,1,0,0,0,7,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,52,10,10,10,0,0,0,249,0,150,0,0,0,20,33,213,279,270,0,0,0,0,1,0,3,0,0,0,0,0,0,915,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,165,305,403,4,0,0,409,0,650,0,1,0,145,56,0,0,0,0,0,0,0,0,0,240,1,0,0,0,126,0,0,0,0,20,154,40,0,0,30,0,0,0,0,0,66506,0,0,80,3,0,1,4,0,0,0,0,9,0,0,0,3,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,53,1,1,1,0,25,0,0,0,0,9,76,130,0,40,9,0,0,0,0,0,155,2,0,0,0,0,0,0,1,0,0,0,0,2,0,5,16,0,0,0,0,0,0,0,0,117,0,0,119,0,5,748,673,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,42,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,4 +0,0,0,3,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,2,0,0,18,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,3,0,0,32,0,95,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,7,4 +48,0,0,0,4,113,3,16,65,1,14,0,1,0,3,0,47,0,6,11,0,4,4,2,0,6,0,0,11,0,13,0,0,4,86,0,117,9,0,0,146,0,0,0,0,0,0,0,0,0,0,0,18,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3820,113,1187,0,30,0,0,0,0,0,394,12,0,0,0,0,4,4,246,0,16,86,4,0,1,20,0,257,40,0,0,0,4,4,139,0,0,0,0,6903,0,0,0,0,3,11,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,11,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,14,0,0,0,0,0,0,175,0,198,0,0,0,30,33,176,241,188,0,0,0,0,0,0,0,0,0,0,0,0,0,3646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,16,532,6,0,0,880,0,370,0,0,0,690,113,0,0,0,0,0,0,0,0,0,139,0,0,0,0,21,0,0,0,0,19,196,59,0,0,120,0,0,0,0,0,950,0,0,12,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,111,1,1,1,0,35,0,0,0,24,33,203,86,0,30,0,0,0,0,0,0,183,5,0,0,0,0,0,0,0,0,0,0,0,4,0,1,1,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1423,488,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,734,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,730,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,2,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,1,108,4 +15,0,0,4,0,17,2,0,28,3,3,0,0,0,6,0,116,0,6,1,0,0,0,1,0,0,60,0,20,0,21,0,0,0,6,0,17,61,0,0,22,0,53,0,1,0,0,54,0,0,0,0,20,270,0,0,0,0,0,1,0,0,0,0,0,7,0,0,8635,17,455,0,41,0,0,0,0,0,130,0,0,0,0,0,1,56,1327,0,0,6,0,0,0,0,0,160,0,70,0,0,2,0,419,0,4,0,0,702,0,4,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,1517,0,408,0,0,0,40,103,39,174,1911,0,0,0,0,1,0,0,0,0,0,0,0,0,3693,0,59,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,8,7,132,4,0,0,565,0,825,0,0,0,507,11,0,0,0,0,0,0,0,0,0,161,1,0,0,0,2,0,0,0,0,21,99,408,0,0,0,0,0,0,0,0,529,0,0,1134,0,0,1,0,1,0,0,0,157,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,175,0,0,0,0,21,20,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,40,0,0,0,0,1,23,103,0,101,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1134,378,4 +15,0,0,5,0,34,11,0,33,0,8,0,0,2,2,0,19,0,6,6,0,0,0,5,0,12,0,0,4,0,1,0,0,0,5,0,34,6,0,0,64,0,0,0,1,0,0,1,0,0,0,0,5,94,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1624,34,79,0,7,0,0,0,0,0,9,0,0,0,0,0,10,17,361,0,0,5,0,0,1,21,0,253,20,1,0,0,2,0,129,0,0,0,0,473,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,224,0,53,0,0,0,4,7,191,156,215,0,0,0,0,1,0,3,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,1,1,8,0,0,0,0,1,0,32,10,131,5,0,0,155,0,261,0,0,0,48,2,0,0,0,0,0,0,5,0,0,81,1,0,0,0,11,0,0,0,0,5,116,65,0,0,29,0,0,0,0,0,138,0,0,275,3,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,2,0,0,0,0,1,39,101,0,8,9,0,0,0,0,0,67,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,273,27,4 +0,0,0,0,0,8,41,0,49,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,141,8,132,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,48,0,0,0,0,0,2,45,0,338,15,0,0,0,4,0,231,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,33,0,0,0,0,3,21,207,54,0,0,0,0,0,0,0,0,0,0,0,0,0,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,87,0,59,0,0,0,53,3,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2,0,0,0,0,0,91,90,0,0,30,0,0,0,0,0,35,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,106,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,4,4 +83,0,0,1,1,52,25,4,115,5,22,0,4,0,9,0,30,0,7,6,0,1,1,5,0,26,0,0,5,0,4,0,0,1,17,0,53,15,0,0,476,0,0,0,1,0,0,0,0,0,0,0,22,118,0,0,0,0,0,1,0,1,0,0,0,24,0,0,1325,52,342,0,25,0,0,0,0,0,16,3,0,0,0,0,8,13,266,0,4,17,1,0,4,88,0,796,15,0,0,0,8,1,510,0,6,0,0,3593,0,0,0,0,32,22,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,29,10,10,10,0,0,0,207,0,111,0,0,0,24,47,217,779,205,0,0,0,0,1,0,4,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,90,266,3,0,0,239,0,313,0,0,0,102,12,0,0,0,0,0,0,0,0,0,212,0,0,0,0,13,0,0,0,0,21,137,230,0,0,30,0,0,0,0,0,718,0,0,20,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,35,0,0,0,0,9,70,41,0,26,9,0,0,0,0,0,326,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,255,1336,4 +0,0,0,6,0,12,2,0,17,0,4,0,0,0,4,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,9,0,0,0,1,0,0,2,0,0,0,0,0,91,0,0,0,0,0,1,0,0,0,0,0,1,0,0,10686,12,48,0,1,0,0,0,0,0,8,0,0,0,0,0,1,4,709,0,0,2,0,0,0,0,0,7,0,4,0,0,2,0,22,0,0,0,0,2584,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,411,0,48,0,0,0,0,3,29,7,421,0,0,0,0,1,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,140,10,0,0,161,0,248,0,0,0,86,16,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,99,67,0,0,0,0,0,0,0,0,339,0,0,23,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,305,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,387,45,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,732,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,728,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,9,0,0,1,107,4 +55,0,0,0,1,56,13,4,57,3,13,0,4,0,6,0,38,0,7,8,0,1,1,8,0,16,3,0,6,0,3,1,0,1,22,0,57,15,0,0,188,0,0,0,1,0,0,0,0,0,0,0,13,100,0,0,0,0,0,1,0,1,0,0,0,7,0,0,1015,56,260,0,17,0,0,0,0,0,10,3,0,0,0,0,13,18,146,0,4,22,1,0,5,31,0,382,30,0,0,0,8,1,233,0,2,0,0,3023,0,0,0,0,12,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,140,0,110,0,0,0,16,23,221,327,129,0,0,0,0,1,0,3,0,0,0,0,0,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,67,285,3,0,0,238,0,420,0,0,0,104,22,0,0,0,0,0,0,0,0,0,138,0,0,0,0,18,0,0,0,0,12,148,73,0,0,60,0,0,0,0,0,698,0,0,6,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,17,0,0,0,0,9,79,38,0,20,9,0,0,0,0,0,194,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,313,729,4 +0,0,0,3,0,10,2,0,22,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,6,0,1,0,1,0,0,1,0,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,2,0,0,8309,10,45,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,1935,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,21,0,0,0,0,648,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,83,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1139,0,132,0,0,0,0,3,26,4,1181,0,0,0,0,1,0,0,0,0,0,0,0,0,3179,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,0,0,0,0,0,0,8,3,98,3,0,0,128,0,205,0,0,0,61,10,0,0,0,0,0,0,163,0,0,48,1,0,0,0,2,0,0,0,0,0,92,48,0,0,0,0,0,0,0,0,519,0,0,2444,0,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,157,0,0,0,0,305,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,87,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,228,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,83,0,0,0,0,0,0,0,1,1162,10,4 +0,0,0,9,0,40,69,0,57,43,69,0,0,8,4,0,849,0,7,1,0,0,0,9,0,10,0,0,27,0,2,0,0,0,2,8161,40,6,0,0,53,0,2,0,1,0,0,2,0,0,0,0,2,385,0,0,0,0,0,1,0,0,0,0,0,4,0,0,54312,40,1256,0,26,0,0,0,0,0,135,0,0,0,0,0,9,206,10239,0,0,2,0,0,0,0,0,609,30,3,0,0,2,0,1036,0,0,117,0,7591,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,2114,0,44,0,0,0,17,19,1179,4080,2083,0,0,0,0,1,0,3,0,0,0,0,0,0,658,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,122,145,329,9,0,0,443,0,357,0,0,0,270,22,0,0,0,0,0,0,0,0,0,1063,1,0,0,0,10,0,0,0,0,3,194,19,0,0,352,0,0,0,0,0,6843,1,0,1230,66,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,66,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,71,0,0,0,0,1,42,202,0,27,12,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,47,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4157,387,4 +108,0,0,29,11,92,157,27,273,27,38,0,0,2,63,1,567,0,20,45,0,98,2,6,0,41,22,0,19,0,7,3,0,10,40,0,102,301,160,0,382,0,0,0,1,0,0,3,0,0,0,0,42,344,0,0,0,0,0,1,0,3,0,12,0,49,0,0,2516,92,1778,0,60,0,0,0,0,0,20,15,0,0,0,0,13,22,286,0,27,40,10,0,8,37,0,746,70,3,0,0,14,11,592,0,43,0,0,2408,0,0,0,0,42,13,1,0,32,0,0,1,0,0,0,22,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,26,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,296,0,230,0,0,0,50,83,343,594,293,0,0,0,0,1,0,6,0,0,0,0,0,0,2156,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,679,335,1449,49,0,0,1502,0,2975,0,6,0,507,337,0,0,0,0,0,0,0,0,0,1121,1,0,0,0,151,0,0,0,0,37,284,149,0,0,155,0,0,0,0,0,10433,0,0,158,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,8,1,0,0,0,0,3,15,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,96,1,1,1,0,48,0,0,0,0,121,142,328,0,83,9,0,0,0,0,0,315,10,0,0,0,0,0,0,1,0,0,0,0,11,0,4,33,0,0,0,0,0,0,0,0,117,0,0,158,0,2,1715,1748,4 +5,0,0,0,0,15,2,0,4,0,1,0,0,0,2,0,10,0,7,1,0,0,0,1,0,4,0,0,2,0,1,0,0,0,4,0,15,6,0,0,26,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,70,15,25,0,6,0,0,0,0,0,0,0,0,0,0,0,1,1,11,0,0,4,0,0,0,0,0,13,0,0,0,0,2,0,14,0,0,0,0,143,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,4,6,31,28,30,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,23,64,0,0,0,63,0,120,0,0,0,24,12,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,4,105,3,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,2,0,0,0,0,1,19,4,0,7,0,0,0,0,0,0,19,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,73,4 +16,0,0,4,0,24,2,0,20,0,3,0,0,0,3,0,61,0,6,1,0,0,0,12,0,0,24,0,8,0,9,0,0,0,11,0,24,18,0,0,13,0,0,0,1,0,0,22,0,0,0,0,8,72,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2054,24,242,0,17,0,0,0,0,0,45,0,0,0,0,22,12,57,559,0,0,11,0,0,0,0,0,89,0,20,0,0,2,0,170,0,1,0,0,500,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,469,0,335,0,0,0,16,51,77,1224,591,0,0,0,0,1,0,0,0,0,0,0,0,0,2630,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,10,4,184,4,0,0,145,0,209,0,0,0,76,595,0,0,0,0,0,0,0,0,0,95,1,0,0,0,13,0,0,0,0,9,107,8,0,0,0,0,9,0,17,8,892,0,0,184,0,0,1,0,0,0,0,0,22,0,26,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,24,0,0,0,0,1,35,76,0,41,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1058,36,4 +4,0,0,18,1,15,10,4,28,9,10,0,0,0,12,1,37,0,6,3,0,1,1,2,0,0,9,0,2,0,3,1,0,1,5,0,16,6,0,0,155,0,3,0,1,0,0,4,0,0,0,0,3,65,0,0,0,0,0,1,0,0,0,0,0,13,0,0,67297,15,176,0,6,0,0,0,0,0,13,3,0,0,0,1,2,9,5625,0,4,5,1,0,0,0,0,31,0,6,0,0,2,1,124,0,10,0,0,384,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,5694,0,35,0,0,0,6,19,34,117,5625,0,0,0,0,1,0,0,0,0,0,0,0,0,23527,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,15,146,95,0,0,165,0,271,0,0,0,72,15,0,0,0,0,0,0,0,0,0,104,1,0,0,0,7,0,0,0,0,4,97,40,0,0,0,0,0,0,0,0,5630,0,0,22502,0,0,1,0,1,0,0,0,5,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,184,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,7,0,0,0,0,9,21,149,0,15,0,0,0,0,0,0,181,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,2,0,0,5719,641,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,0,0,0,50,8,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,9,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,18,0,0,0,0,3,21,4,27,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,37,0,22,0,0,0,3,5,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,4,4 +3,0,0,9,5,21,53,14,92,5,13,0,2,0,19,0,291,0,10,7,0,3,3,2,0,1,0,0,0,0,1,0,0,5,9,0,26,117,0,0,140,0,0,0,1,0,0,2,0,0,0,0,1,179,0,8,0,0,0,1,0,0,0,0,0,9,0,0,438,21,560,0,1,0,0,0,0,0,9,9,0,0,5,0,2,6,124,0,14,9,5,0,4,0,0,98,0,2,0,0,12,5,90,0,8,0,0,320,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,110,0,83,0,0,0,0,3,58,86,191,0,0,0,0,1,0,0,0,0,0,0,0,0,544,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,234,70,532,14,0,0,557,0,1529,0,2,0,173,3,0,0,0,0,0,0,0,0,0,480,1,0,0,0,15,0,0,0,0,0,147,19,0,0,0,0,0,0,0,0,610,0,0,29,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,19,1,1,1,0,1,0,0,0,0,41,35,216,0,2,0,0,0,0,0,0,210,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,5,0,0,0,0,0,0,0,0,0,0,0,8,0,3,458,72,4 +61,0,0,26,8,101,93,17,575,50,26,1,0,2,86,0,376,0,16,14,0,3,0,7,1,13,84,0,29,0,31,1,0,6,54,0,107,289,0,0,356,0,0,0,1,0,0,2,0,0,0,0,36,279,0,0,0,0,0,1,1,0,0,35,0,72,0,0,3604,101,1518,0,64,0,0,0,0,0,13,9,0,0,0,0,11,19,852,0,17,54,6,0,5,24,0,576,40,4,0,0,8,8,959,0,62,0,0,3316,0,0,1,0,23,1,1,0,0,0,0,1,0,0,1,31,0,0,0,0,0,0,0,0,0,4,0,11,0,0,0,0,0,0,0,34,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0,37,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,4,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,794,11,11,11,0,0,1,527,1,202,0,0,0,65,163,299,519,616,0,0,0,0,1,0,3,0,0,233,0,0,0,3870,0,0,0,0,0,0,0,0,0,0,0,0,237,1,0,0,0,0,0,1,0,350,140,1205,39,0,0,1100,0,6208,0,2,0,461,91,0,0,0,0,0,0,0,0,0,1175,0,0,0,0,25,0,0,0,0,34,238,100,0,0,82,0,4,0,0,2,1179,0,0,99,4,0,1,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,1,0,0,0,0,3,40,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,101,1,1,1,1,95,0,0,0,1,72,161,169,0,149,9,0,1,0,0,0,5990,5,0,0,0,0,0,0,0,0,0,0,0,7,0,2,56,0,0,0,0,0,0,0,0,0,0,0,8,0,1,36282,312,4 +151,0,0,29,10,84,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,3,0,9,33,0,94,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,372,0,0,0,0,0,1,0,3,0,12,0,83,0,0,3086,84,1523,0,38,0,0,0,0,0,73,12,0,0,0,0,13,22,402,0,22,33,9,0,10,198,0,1932,100,3,0,0,14,10,1304,0,46,0,0,2620,0,0,0,0,52,39,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,37,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,330,0,234,0,0,0,36,75,296,1650,359,0,0,0,0,1,0,5,0,0,0,0,0,0,2787,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1409,48,0,0,1557,0,2902,0,6,0,566,43,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,279,551,0,0,215,0,0,0,0,0,9937,0,0,194,3,0,1,6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,75,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1622,1648,4 +6,0,0,9,0,60,181,0,121,6,15,0,0,2,21,2,66,0,63,4,0,0,0,7,0,8,24,0,12,0,9,4,0,0,23,0,60,206,0,0,282,0,0,0,1,0,0,7,1,0,0,0,13,228,0,0,0,0,0,1,0,0,0,5,0,16,0,0,9097,60,550,0,22,0,0,0,0,0,36,0,0,0,0,1,10,25,847,0,0,23,0,0,1,94,0,842,60,19,0,0,2,0,717,0,10,0,0,2394,0,0,0,0,3,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,809,0,160,0,0,0,24,50,253,1341,784,0,0,0,0,1,0,14,0,0,0,0,0,0,3304,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,25,422,9,0,0,621,0,1265,0,0,0,478,73,0,0,0,0,0,0,0,0,0,471,1,0,8,0,11,0,0,0,0,12,159,383,0,0,293,0,0,0,0,0,1522,0,0,2278,3,0,1,1,1,0,0,0,27,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,26,0,0,0,0,1,83,624,0,48,9,0,0,0,0,0,289,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1102,1485,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,141,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,48,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,70,0,46,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,34,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,4,4 +3,0,0,6,0,61,150,0,60,8,125,0,0,7,12,0,1209,0,7,3,0,0,0,9,0,12,0,0,26,0,9,0,0,0,11,9298,61,6,0,0,64,0,0,0,1,0,0,5,0,0,0,0,9,3617,0,0,0,0,0,1,0,0,0,0,0,11,0,0,104388,61,1987,0,32,0,0,0,0,0,277,0,0,0,0,0,11,330,21644,0,0,11,0,0,0,0,0,1695,25,9,0,0,2,0,1540,0,8,1764,0,13806,0,1,0,0,1,0,4,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,55,12,12,12,0,0,0,7215,0,127,0,0,0,29,26,945,8366,7182,0,0,0,0,1,0,7,0,0,0,0,0,0,1117,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,110,33,367,6,0,0,622,0,363,0,0,0,419,17,0,0,0,0,0,0,0,0,0,1570,1,0,0,0,12,0,0,0,0,5,171,31,0,0,1428,0,0,0,0,0,11965,1,0,746,131,0,1,1,0,0,0,0,13,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,131,9,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,70,1,1,1,0,78,0,0,0,4,1,72,748,0,33,14,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,5,7088,172,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,195,55,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,84,0,58,0,0,0,50,5,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,4,4 +33,0,0,0,8,44,99,9,196,20,19,0,10,0,21,0,62791,1,13,11,0,4,3,1,0,0,21,0,6,0,9,0,0,5,20,0,53,258,0,0,300,0,0,0,1,0,0,1,0,0,0,0,8,276,0,0,0,0,0,1,0,0,0,0,0,6,0,0,1091,44,67329,0,15,0,0,0,0,0,4152,9,0,0,0,0,3,5,9,0,9,20,5,0,13,22,0,41368,5,0,0,0,28,8,4647,0,7,1,0,2678,0,0,0,0,43,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,17,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,3,47,3,177,3,0,175,3,83,5,71,0,0,0,16,53,88,97410,71,0,0,0,0,1,0,0,0,0,0,0,0,0,796,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3109,200,833,12,1,0,925,0,5821,0,3,0,327,62085,0,0,0,0,0,0,0,0,0,63150,1,0,0,0,19,0,0,0,0,8,218,115,0,0,11,0,2,0,0,0,68296,0,0,23,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,38,1,1,1,0,59,0,0,0,0,152,73,32,0,36,0,0,0,0,0,0,598,11,0,0,0,0,0,0,0,0,0,0,0,9,0,1,20,0,0,0,0,0,0,0,0,0,0,0,6,0,0,621,282,4 +13,0,0,0,2,12,50,2,52,4,3,0,0,0,6,0,111,0,11,2,0,0,0,1,0,1,0,0,1,0,3,0,0,2,1,0,14,1656,0,0,14,0,0,0,0,0,0,0,0,0,0,0,3,80,0,0,0,0,0,1,0,0,0,0,0,0,0,0,140,12,155,0,5,0,0,0,0,0,0,0,0,0,0,0,2,2,22,0,2,1,2,0,2,0,0,92,0,0,0,0,6,2,35,0,2,0,0,377,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,31,0,28,0,0,0,5,6,38,23,43,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,37,362,2,0,0,367,0,1050,0,2,0,86,20,0,0,0,0,0,0,0,0,0,233,0,0,0,0,3,0,0,0,0,4,129,1,0,0,0,0,0,0,0,0,1793,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,13,1,1,1,0,5,0,0,0,0,17,15,3,0,5,0,0,0,0,0,0,48,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,335,947,4 +152,0,0,29,10,85,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,95,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,344,0,0,0,0,0,1,0,3,0,12,0,83,0,0,2907,85,1522,0,39,0,0,0,0,0,72,12,0,0,0,0,13,22,403,0,22,33,9,0,10,198,0,1932,100,3,0,0,14,10,1304,0,46,0,0,2146,0,0,0,0,52,40,0,0,31,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,38,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,329,0,237,0,0,0,36,76,300,1650,359,0,0,0,0,1,0,5,0,0,0,0,0,0,2713,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1446,48,0,0,1559,0,2899,0,6,0,566,49,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,280,551,0,0,215,0,0,0,0,0,9930,0,0,181,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,77,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1640,1651,4 +143,0,0,31,16,136,228,34,432,44,70,1,1,2,93,1,1476,0,25,20,0,8,4,8,2,53,26,0,34,0,102,2,0,14,66,0,152,418,0,0,668,0,0,0,1,0,0,3,0,0,0,0,149,462,0,0,0,0,0,1,0,4,0,13,0,87,0,0,7117,136,2957,0,182,0,0,0,0,0,33,21,0,0,0,0,17,27,1475,0,34,66,14,0,13,114,0,1905,140,4,0,0,20,16,1917,0,72,1,0,4348,0,0,0,0,144,19,2,0,54,0,0,1,0,0,0,26,0,0,0,0,0,0,0,8,0,0,0,10,0,0,0,0,0,2,0,25,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,32,4,0,0,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,17,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,81,12,12,12,0,0,2,1022,2,350,0,0,2,251,283,453,1672,1044,0,0,0,0,1,0,7,0,0,0,0,0,0,2754,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,872,220,1929,58,0,0,2035,0,3547,0,8,0,691,128,0,0,0,0,0,0,0,0,0,2329,1,0,0,0,42,0,0,0,0,139,365,293,0,0,308,0,0,0,0,0,12083,0,0,307,3,0,1,10,0,0,0,0,6,0,0,0,1,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,78,78,0,0,15,1,0,0,0,0,3,116,1,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,146,1,1,1,0,269,0,0,0,0,272,218,235,1,208,9,0,0,0,0,0,583,14,0,0,0,0,0,0,0,0,0,0,0,17,0,1,54,0,0,0,0,0,0,0,0,10,0,0,31,0,3,1518,1879,4 +42,0,0,1,1,54,10,4,40,2,8,0,3,0,5,0,36,0,7,10,0,1,1,6,0,15,3,0,6,0,3,1,0,1,21,0,55,12,0,0,158,0,0,0,1,0,0,0,0,0,0,0,11,104,0,0,0,0,0,1,0,1,0,0,0,5,0,0,949,54,233,0,15,0,0,0,0,0,10,3,0,0,0,0,13,18,141,0,4,21,1,0,3,18,0,265,15,0,0,0,6,1,167,0,2,0,0,3810,0,0,0,0,11,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,119,0,83,0,0,0,13,19,221,218,119,0,0,0,0,1,0,3,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,52,283,2,0,0,225,0,383,0,0,0,97,32,0,0,0,0,0,0,0,0,0,109,0,0,0,0,18,0,0,0,0,10,145,45,0,0,30,0,0,0,0,0,120,0,0,4,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,13,0,0,0,0,9,76,37,0,19,9,0,0,0,0,0,160,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,153,760,4 +3,0,0,5,6,13,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,19,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,100,0,0,0,0,0,1,0,0,0,0,0,25,0,0,472,13,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,43,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,300,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,58,0,45,0,0,0,2,10,44,224,96,0,0,0,0,1,0,1,0,0,0,0,0,0,415,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,116,36,391,11,0,0,401,0,600,0,1,0,103,7,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,110,74,0,0,57,0,0,0,0,0,538,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,6,0,0,0,0,49,22,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,11,0,0,215,35,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,22,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,22,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,35,0,0,0,2,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,5,4 +217,0,0,0,3,89,55,12,327,3,105,1,2,0,5,0,48,0,7,15,0,3,3,3,0,6,3,0,78,0,300,1,0,3,36,0,92,12,0,0,490,0,0,0,0,0,0,0,0,0,0,0,306,110,0,0,0,0,0,1,0,0,0,0,0,22,0,0,5886,89,1654,0,385,0,0,0,0,0,270,9,0,0,0,0,11,11,241,0,12,36,3,0,4,287,0,3550,405,0,0,0,6,3,1643,0,2,0,0,2854,0,0,0,0,87,91,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,77,0,0,0,77,0,0,0,0,0,1,0,13,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,73,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,233,0,196,0,0,0,606,610,180,2405,254,0,0,0,0,0,0,0,0,0,0,0,0,0,3920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,593,6,0,0,713,0,559,0,0,0,466,55,0,0,0,0,0,0,0,0,0,550,0,0,0,0,24,0,0,0,0,305,180,555,0,0,905,0,0,0,0,0,1344,0,0,300,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,89,1,1,1,0,681,0,0,0,588,25,128,36,0,388,0,0,0,0,0,0,614,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,1,0,0,0,0,0,0,0,0,0,0,6,0,0,1255,1951,4 +451,0,0,5,14,167,213,38,521,62,83,0,6,0,133,1,975,0,17,27,0,10,6,10,2,55,51,0,23,0,14,6,0,12,92,0,181,246,6476,0,1088,0,0,0,1,0,0,5,1,0,0,0,66,414,0,0,0,0,0,1,0,3,0,14,0,106,0,0,41407,167,3072,0,86,0,0,0,0,0,154,27,0,0,0,0,22,33,8515,0,38,92,12,0,12,254,0,2432,135,11,0,0,20,14,2622,0,73,1,0,7084,0,0,0,0,151,102,2,0,31,0,0,1,0,0,0,22,0,0,0,0,0,0,0,27,0,0,0,31,0,0,0,0,0,2,0,25,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,120,9,0,0,0,0,0,2,0,0,0,0,0,7,23,0,0,0,3,0,0,0,0,10,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,113,12,12,12,0,0,2,5380,2,469,0,0,2,84,409,421,138095,5385,0,0,0,0,1,0,19,0,0,0,0,0,0,11647,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,468,271,1733,24,0,0,1838,0,2235,0,4,0,879,128522,0,0,0,0,0,0,0,0,0,1949,1,0,2,0,55,0,0,0,0,51,359,703,0,0,318,0,0,0,0,0,12962,0,0,8674,3,0,1,11,0,0,0,0,14,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1,0,0,0,0,3,212,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,175,1,1,1,0,778,0,0,0,0,188,273,463,1,140,9,0,0,0,0,0,1062,19,0,0,0,0,0,0,0,0,0,0,0,15,0,2,68,0,0,0,0,0,0,0,39,8,0,0,28,0,4,4589,2686,4 +117,0,0,29,11,90,157,27,271,30,38,0,0,2,66,1,565,0,20,44,0,99,2,6,0,33,22,0,17,0,7,3,0,10,38,0,100,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,340,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2562,90,1775,0,50,0,0,0,0,0,21,15,0,0,0,0,13,22,294,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,586,0,46,0,0,2081,0,0,0,0,47,16,1,0,30,0,0,1,0,0,0,20,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,296,0,232,0,0,0,42,73,344,591,305,0,0,0,0,1,0,6,0,0,0,0,0,0,2252,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1429,49,0,0,1498,0,2980,0,6,0,503,414,0,0,0,0,0,0,0,0,0,1120,1,0,0,0,151,0,0,0,0,30,284,149,0,0,155,0,0,0,0,0,10426,0,0,172,3,0,1,5,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,7,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,61,0,0,0,0,123,138,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,246,0,4,1761,1620,4 +0,0,0,2,0,10,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,8237,10,40,0,1,0,0,0,0,0,8,0,0,0,0,0,1,5,1950,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,13,0,0,0,0,558,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,77,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1211,0,146,0,0,0,0,3,26,5,1253,0,0,0,0,1,0,0,0,0,0,0,0,0,3159,0,0,0,0,0,0,0,0,0,0,0,0,2,0,75,0,0,0,0,0,0,8,3,88,2,0,0,117,0,239,0,0,0,52,13,0,0,0,0,0,0,161,0,0,40,1,0,0,0,2,0,0,0,0,0,92,44,0,0,0,0,0,0,0,0,567,0,0,2393,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,156,0,0,0,0,305,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,87,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,152,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,81,0,0,0,0,0,0,0,1,1188,233,4 +4,0,0,6,3,28,5,13,41,7,6,0,0,0,15,0,24,0,6,7,1,3,2,2,1,0,0,0,6,0,5,0,0,3,14,0,31,6,2,0,55,0,0,0,1,0,0,3,0,0,0,0,4,91,1,0,0,0,0,1,0,0,0,17,0,16,0,0,674,28,288,0,11,0,0,0,0,0,16,9,0,0,2,1,3,8,92,0,13,14,3,0,0,0,0,34,0,7,0,0,2,3,72,0,13,0,0,574,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,114,0,74,0,0,0,8,8,60,43,124,0,0,0,0,1,0,0,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,20,210,9,0,0,248,0,306,0,0,0,135,23,0,0,0,0,0,0,0,0,0,97,1,0,0,0,16,0,0,0,0,3,117,55,0,0,0,0,0,0,1,0,103,0,0,73,0,0,1,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,7,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,14,0,0,0,2,17,45,227,0,11,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,5,0,3,159,113,4 +32,1,0,0,1,34,30,1,49,19,11,0,11,0,16,8,88,0,8,4,0,0,0,5,2,4,9,0,10,0,1,1,0,1,17,0,35,69,9,0,138,0,0,0,0,0,0,0,0,0,0,0,7,71,0,0,0,0,0,1,0,0,0,0,0,7,0,0,666,34,194,0,14,0,0,0,0,0,0,0,0,0,0,0,6,6,28,0,1,17,1,0,2,0,0,130,0,0,0,0,6,1,178,0,13,1,0,2264,0,0,0,0,26,8,0,5,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,6,5,13,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,104,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,38,0,0,0,0,0,0,74,0,57,0,0,0,12,37,69,133,63,0,0,0,0,0,0,37,0,0,0,0,0,0,651,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,115,61,325,1,0,0,280,0,550,0,1,0,106,23,0,0,0,0,0,0,0,0,0,221,0,0,0,0,11,0,0,0,0,8,145,3,0,0,0,0,0,0,0,0,296,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,36,1,1,1,0,20,0,0,0,0,9,52,18,0,25,0,0,0,0,0,0,147,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,19,0,0,0,0,0,0,1,0,0,0,0,1,0,0,190,106,4 +29,0,0,15,1,67,57,1,97,18,22,0,0,9,36,0,956,0,9,3,0,0,0,7,0,16,3,0,9,0,6,1,0,1,22,12288,68,54,0,3,231,0,0,0,1,0,0,5,1,0,0,0,13,584,0,0,0,0,0,1,0,0,0,9,0,30,0,0,104532,67,1189,0,13,0,0,0,0,0,36,0,0,0,0,0,9,35,17446,0,1,22,1,0,2,15,0,468,60,11,0,0,4,1,1176,0,22,28,0,6341,0,0,0,0,12,3,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,0,13,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,40,0,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,6,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,56,12,12,12,0,0,0,14585,0,148,0,0,0,20,24,470,3210,14604,0,0,0,0,1,0,8,0,0,0,0,0,0,4398,0,0,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,7,0,222,70,593,19,0,0,579,0,782,0,1,0,277,21,0,0,0,0,0,0,0,0,0,1186,1,0,3,0,10,0,0,0,0,5,205,80,0,0,95,0,0,0,0,0,4371,1,0,3208,7,0,1,1,0,0,0,0,14,0,0,0,0,0,0,0,0,0,17,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,7,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,78,1,1,1,0,31,0,0,0,0,9,90,197,0,23,12,0,0,0,0,0,206,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,26,0,0,0,0,0,0,0,0,0,0,0,1,0,7,2621,124,4 +0,0,0,0,0,8,31,0,39,1,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,1,0,0,126,8,120,0,0,0,0,0,0,0,16,0,0,0,0,0,1,1,46,0,0,0,0,0,2,35,0,268,15,0,0,0,4,0,181,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,34,0,0,0,0,3,21,166,56,0,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,32,2,0,0,81,0,87,0,0,0,48,2,0,0,0,0,0,0,0,0,0,95,0,0,0,0,2,0,0,0,0,0,91,70,0,0,30,0,0,0,0,0,32,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,86,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,1,4 +46,0,0,1,1,57,10,4,44,2,8,0,3,0,5,0,44,0,7,10,0,1,1,6,0,23,12,0,8,0,3,1,0,1,22,0,58,12,0,0,156,0,0,0,1,0,0,0,0,0,0,0,19,99,0,0,0,0,0,1,0,1,0,0,0,5,0,0,967,57,270,0,25,0,0,0,0,0,10,3,0,0,0,0,13,18,139,0,4,22,1,0,3,18,0,283,15,0,0,0,6,1,208,0,2,0,0,1259,0,0,0,0,14,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,27,10,10,10,0,0,0,144,0,82,0,0,0,21,41,223,241,120,0,0,0,0,1,0,3,0,0,0,0,0,0,473,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,52,290,2,0,0,234,0,409,0,0,0,100,42,0,0,0,0,0,0,0,0,0,121,0,0,0,0,18,0,0,0,0,18,148,45,0,0,30,0,0,0,0,0,142,0,0,4,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,15,0,0,0,0,9,80,38,0,38,9,0,0,0,0,0,160,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,138,993,4 +20,0,0,0,0,25,4,0,8,3,1,0,2,0,5,0,20,0,7,5,0,0,0,1,0,7,3,0,3,0,2,1,0,0,12,0,25,12,0,0,66,0,0,0,0,0,0,0,0,0,0,0,9,36,0,0,0,0,0,1,0,0,0,0,0,2,0,0,244,25,51,0,13,0,0,0,0,0,0,0,0,0,0,0,5,5,25,0,0,12,0,0,2,0,0,42,0,0,0,0,6,0,51,0,2,0,0,4576,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,50,0,74,0,0,0,11,17,48,69,61,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,130,2,0,0,99,0,232,0,0,0,48,14,0,0,0,0,0,0,0,0,0,47,0,0,0,0,6,0,0,0,0,9,116,2,0,0,0,0,0,0,0,0,47,0,0,3,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,10,0,0,0,0,1,37,12,0,16,0,0,0,0,0,0,77,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,254,4 +113,0,0,29,11,89,156,27,263,30,34,0,0,2,66,1,556,0,20,45,0,98,2,6,0,33,22,0,17,0,7,2,0,10,38,0,99,301,168,0,373,0,0,0,1,0,0,3,0,0,0,0,34,327,0,0,0,0,0,1,0,3,0,12,0,51,0,0,2429,89,1744,0,49,0,0,0,0,0,17,15,0,0,0,0,13,22,282,0,27,38,10,0,7,29,0,657,55,3,0,0,14,11,546,0,46,0,0,2223,0,0,0,0,46,13,1,0,33,0,0,1,0,0,0,20,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,22,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,28,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,273,0,221,0,0,0,42,72,334,526,286,0,0,0,0,1,0,6,0,0,0,0,0,0,2042,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1451,49,0,0,1488,0,2943,0,6,0,496,202,0,0,0,0,0,0,0,0,0,1098,1,0,0,0,151,0,0,0,0,28,283,132,0,0,125,0,0,0,0,0,10427,0,0,154,4,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,8,1,0,0,0,0,3,19,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,58,0,0,0,0,115,137,314,0,72,9,0,0,0,0,0,295,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,34,0,0,0,0,0,0,0,0,117,0,0,185,0,2,1607,1589,4 +0,0,0,6,0,11,2,0,16,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,92,0,0,0,0,0,1,0,0,0,0,0,1,0,0,502,11,45,0,1,0,0,0,0,0,10,0,0,0,0,0,1,4,64,0,0,0,0,0,0,0,0,8,0,3,0,0,2,0,15,0,0,0,0,166,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,67,0,47,0,0,0,0,3,30,6,73,0,0,0,0,1,0,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,2,0,8,0,0,0,0,0,0,8,3,96,8,0,0,137,0,274,0,0,0,59,6,0,0,0,0,0,0,4,0,0,44,1,0,0,0,2,0,0,0,0,0,97,47,0,0,0,0,0,0,0,0,44,0,0,63,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,189,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,114,39,4 +152,0,0,29,10,84,188,22,431,30,74,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,2,0,9,33,0,94,301,0,0,701,0,0,0,1,0,0,3,0,0,0,0,28,375,0,0,0,0,0,1,0,3,0,12,0,84,0,0,3044,84,1534,0,39,0,0,0,0,0,75,12,0,0,0,0,13,22,397,0,22,33,9,0,10,203,0,1969,100,3,0,0,14,10,1329,0,46,0,0,1940,0,0,0,0,53,40,0,0,31,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,7,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,37,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,332,0,234,0,0,0,36,76,296,1682,361,0,0,0,0,1,0,5,0,0,0,0,0,0,2799,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1443,48,0,0,1561,0,2967,0,6,0,570,45,0,0,0,0,0,0,0,0,0,1154,1,0,0,0,30,0,0,0,0,22,280,564,0,0,215,0,0,0,0,0,9938,0,0,188,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,77,0,0,0,0,81,127,309,0,62,9,0,0,0,0,0,735,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,4,1624,1653,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,0,0,0,80,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,48,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,1,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,36,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,2,0,0,405,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,145,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,42,3,0,0,41,0,157,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,24,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,14,4 +278,0,0,28,21,94,166,37,376,32,43,0,0,2,69,1,628,0,20,67,0,117,2,6,0,35,22,0,20,0,7,3,0,20,41,0,114,301,160,0,380,0,0,0,1,0,0,4,0,0,0,0,36,401,0,0,0,0,0,1,0,3,0,12,0,53,0,0,2611,94,3301,0,55,0,0,0,0,0,18,45,0,0,0,1,14,25,262,0,37,41,20,0,7,29,0,691,55,3,0,0,14,21,626,0,49,0,0,2572,0,0,0,0,62,32,0,0,27,0,0,1,0,0,0,18,0,0,0,0,0,0,0,27,0,0,0,16,0,0,0,0,0,7,0,67,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,34,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,20,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,78,10,10,10,0,0,0,286,0,227,0,0,0,44,73,362,536,311,0,0,0,0,1,0,5,0,0,0,0,0,0,2814,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,677,341,1803,58,0,0,1846,0,3206,0,6,0,594,385,0,0,0,0,0,0,0,0,0,1305,1,0,0,0,192,0,0,0,0,33,288,134,0,0,125,0,0,0,0,0,10524,0,0,163,3,0,1,7,0,0,0,0,6,0,0,0,2,0,0,0,0,0,31,0,0,0,0,0,0,0,0,1,0,0,51,51,0,0,11,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,100,1,1,1,0,59,0,0,0,0,191,155,370,0,78,9,0,0,0,0,0,304,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,36,0,0,0,0,0,0,0,0,117,0,0,257,0,2,1786,1856,4 +81,0,0,3,1,55,25,4,118,6,24,0,4,0,12,0,38,0,7,6,0,1,1,5,0,29,9,0,5,0,4,0,0,1,18,0,56,15,0,0,480,0,0,0,1,0,0,0,0,0,0,0,25,112,0,0,0,0,0,1,0,1,0,0,0,26,0,0,1353,55,370,0,28,0,0,0,0,0,16,3,0,0,0,0,8,13,266,0,4,18,1,0,4,88,0,802,15,0,0,0,8,1,552,0,7,0,0,1366,0,0,0,0,38,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,219,0,110,0,0,0,27,58,226,785,204,0,0,0,0,1,0,4,0,0,0,0,0,0,795,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,93,282,5,0,0,248,0,329,0,0,0,105,23,0,0,0,0,0,0,0,0,0,228,0,0,0,0,13,0,0,0,0,24,140,230,0,0,30,0,0,0,0,0,737,0,0,18,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,33,0,0,0,0,9,74,42,0,38,9,0,0,0,0,0,325,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,275,1484,4 +90,0,0,4,1,53,26,4,122,10,25,0,4,0,18,0,37,0,7,6,0,1,1,5,0,22,9,0,5,0,4,0,0,1,17,0,54,15,0,0,498,0,0,0,1,0,0,0,0,0,0,0,18,107,0,0,0,0,0,1,0,1,0,0,0,33,0,0,1343,53,374,0,21,0,0,0,0,0,16,3,0,0,0,0,8,13,265,0,4,17,1,0,4,93,0,825,15,0,0,0,8,1,580,0,13,0,0,1535,0,0,0,0,40,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,209,0,108,0,0,0,20,50,221,814,206,0,0,0,0,1,0,4,0,0,0,0,0,0,835,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,99,275,6,0,0,243,0,310,0,0,0,103,21,0,0,0,0,0,0,0,0,0,239,0,0,0,0,13,0,0,0,0,17,138,243,0,0,30,0,0,0,0,0,739,0,0,28,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,49,0,0,0,0,9,71,41,0,31,9,0,0,0,0,0,343,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,2,0,0,281,1354,4 +314,0,0,36,29,111,226,69,489,47,73,0,0,2,91,0,562,0,24,85,0,122,2,7,0,62,22,0,35,0,7,3,0,28,50,0,133,400,159,0,788,0,0,0,1,0,0,5,1,0,0,0,62,444,0,0,0,0,0,1,0,3,0,12,0,83,0,0,3533,111,3757,0,95,0,0,0,0,0,55,63,0,0,0,0,14,28,465,0,69,50,28,0,11,91,0,1331,95,10,1,0,18,29,959,0,67,0,0,3573,0,0,0,0,88,44,0,0,38,0,0,1,0,0,0,21,0,0,0,0,0,0,0,26,0,0,0,17,0,0,0,2,0,7,0,76,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,3,0,0,0,0,0,1,15,0,0,0,0,0,0,0,20,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,107,10,10,10,0,0,0,420,0,252,0,0,0,71,106,368,1151,475,0,0,0,0,1,0,5,0,0,0,0,0,0,3791,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,886,419,2179,76,0,0,2233,0,4208,0,8,0,707,182,0,0,0,0,0,0,0,0,0,1467,1,0,2,0,216,0,0,0,0,55,345,238,0,0,211,0,0,0,0,0,10330,0,0,140,3,0,1,9,0,0,0,0,13,0,0,0,5,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1,0,0,0,0,3,22,3,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,116,1,1,1,0,84,0,0,0,0,177,183,223,0,120,9,0,0,0,0,0,529,32,0,0,0,0,0,0,1,0,0,0,0,23,0,4,55,0,0,0,0,0,0,0,0,117,0,0,204,0,5,2177,2375,4 +0,0,0,5,4,19,55,2,80,7,7,0,18,5,8,1,190,0,12,6,0,0,0,0,0,0,6,0,0,0,3,0,0,2,3,6,21,105,0,0,60,0,0,0,1,0,0,1,0,0,0,0,2,161,0,0,0,0,0,1,0,0,0,0,0,1,0,0,261,19,307,0,3,0,0,0,0,0,2,0,0,0,0,1,3,6,11,0,2,3,2,0,4,0,0,96,0,0,0,0,10,4,146,0,2,0,0,285,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,52,16,43,0,0,0,4,14,39,37,52,0,0,0,0,1,0,0,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,605,82,465,11,0,0,480,0,1475,0,2,0,159,92,0,0,0,0,0,0,0,0,0,376,1,0,0,0,6,0,0,0,0,3,179,27,0,0,0,0,0,0,0,1,2886,0,0,5,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,11,1,1,1,0,3,0,0,0,0,17,24,69,0,9,0,0,0,0,0,0,81,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,248,57,4 +112,0,0,29,11,92,156,27,265,27,34,0,0,2,63,1,563,0,20,46,0,97,2,6,0,42,22,0,23,0,8,2,0,10,40,0,102,301,160,0,389,0,0,0,1,0,0,3,0,0,0,0,42,323,0,0,0,0,0,1,0,3,0,12,0,48,0,0,2516,92,1780,0,64,0,0,0,0,0,17,15,0,0,0,0,13,22,278,0,27,40,10,0,7,29,0,677,55,3,0,0,14,11,559,0,43,0,0,2109,0,0,0,0,42,14,1,0,28,0,0,1,0,0,0,23,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,23,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,27,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,280,0,234,0,0,0,50,84,339,534,292,0,0,0,0,1,0,6,0,0,0,0,0,0,2207,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,681,335,1455,49,0,0,1499,0,2927,0,6,0,504,185,0,0,0,0,0,0,0,0,0,1104,1,0,0,0,151,0,0,0,0,37,285,135,0,0,125,0,0,0,0,0,10424,0,0,142,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,53,53,0,0,6,1,0,0,0,0,3,15,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,57,0,0,0,0,117,142,328,0,88,9,0,0,0,0,0,306,10,0,0,0,0,0,0,1,0,0,0,0,11,0,5,31,0,0,0,0,0,0,0,0,117,0,0,187,0,3,1786,1805,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,52,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,195,55,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,84,0,58,0,0,0,50,2,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,38,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,4,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,70,0,46,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,4,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,80,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,48,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,1,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,36,4 +0,0,0,5,0,37,25,0,48,3,24,0,0,7,4,0,804,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12331,37,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,771,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39601,37,971,0,24,0,0,0,0,0,46,0,0,0,0,0,8,94,6583,0,0,1,0,0,0,0,0,369,25,1,0,0,2,0,892,0,0,94,0,4118,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1444,0,32,0,0,0,13,16,504,2092,1421,0,0,0,0,1,0,3,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,287,5,0,0,318,0,293,0,0,0,155,11,0,0,0,0,0,0,0,0,0,918,1,0,0,0,9,0,0,0,0,1,173,6,0,0,138,0,0,0,0,0,4671,1,0,996,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,62,0,0,0,0,1,38,208,0,25,12,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2402,22,4 +18,0,0,0,0,34,24,0,36,2,5,0,2,0,4,0,20,0,6,5,0,0,0,7,0,10,3,0,6,0,2,1,0,0,6,0,34,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,76,0,0,0,0,0,1,0,0,0,0,0,3,0,0,689,34,116,0,9,0,0,0,0,0,13,0,0,0,0,0,11,16,134,0,0,6,0,0,2,25,0,299,15,0,0,0,4,0,171,0,2,0,0,586,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,2,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,94,0,47,0,0,0,6,12,193,169,98,0,0,0,0,1,0,3,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,136,0,0,0,146,0,248,0,0,0,61,28,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,124,53,0,0,30,0,0,0,0,0,95,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,11,0,0,0,0,1,40,22,0,13,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,35,4 +148,0,0,29,10,83,183,22,400,30,68,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,93,301,0,0,641,0,0,0,1,0,0,3,0,0,0,0,28,357,0,0,0,0,0,1,0,3,0,12,0,78,0,0,3048,83,1475,0,39,0,0,0,0,0,66,12,0,0,0,0,13,22,394,0,22,33,9,0,10,173,0,1747,100,3,0,0,14,10,1179,0,46,0,0,2415,0,0,0,0,54,37,0,0,30,0,0,1,0,0,0,19,0,0,0,0,0,0,0,8,0,0,0,9,0,0,0,0,0,1,0,17,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,321,0,227,0,0,0,36,76,292,1487,351,0,0,0,0,1,0,5,0,0,0,0,0,0,2651,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1446,48,0,0,1541,0,2897,0,6,0,554,55,0,0,0,0,0,0,0,0,0,1112,1,0,0,0,30,0,0,0,0,22,277,486,0,0,215,0,0,0,0,0,9924,0,0,177,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,90,1,1,1,0,77,0,0,0,0,81,126,309,0,63,9,0,0,0,0,0,663,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1578,1657,4 +54,0,0,1,1,57,12,4,56,2,13,0,3,0,5,0,37,0,7,10,0,1,1,6,0,16,3,0,6,0,4,1,0,1,23,0,58,12,0,0,181,0,0,0,1,0,0,0,0,0,0,0,13,95,0,0,0,0,0,1,0,1,0,0,0,7,0,0,961,57,258,0,17,0,0,0,0,0,10,3,0,0,0,0,13,18,142,0,4,23,1,0,4,31,0,380,30,0,0,0,6,1,230,0,2,0,0,6755,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,141,0,90,0,0,0,16,23,222,327,130,0,0,0,0,1,0,3,0,0,0,0,0,0,485,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,279,2,0,0,235,0,415,0,0,0,104,28,0,0,0,0,0,0,0,0,0,133,0,0,0,0,18,0,0,0,0,12,147,72,0,0,60,0,0,0,0,0,691,0,0,7,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,17,0,0,0,0,9,81,39,0,21,9,0,0,0,0,0,188,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,153,782,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,34,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,83,0,57,0,0,0,49,4,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,4,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,140,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,32,0,0,0,0,3,21,195,54,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,84,0,57,0,0,0,50,2,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,4,4 +0,0,0,5,0,37,24,0,47,3,23,0,0,7,4,0,767,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12511,37,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,747,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40410,37,929,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6489,0,0,1,0,0,0,0,0,359,25,2,0,0,2,0,855,0,0,87,0,4934,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1487,0,33,0,0,0,12,15,499,2062,1464,0,0,0,0,1,0,3,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,276,5,0,0,309,0,291,0,0,0,145,12,0,0,0,0,0,0,0,0,0,878,1,0,0,0,9,0,0,0,0,1,164,7,0,0,130,0,0,0,0,0,4662,1,0,1039,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,58,0,0,0,0,1,38,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2505,30,4 +2,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,7027,10,41,0,1,0,0,0,0,0,8,0,0,0,0,0,1,5,1912,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,13,0,0,0,0,103,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,816,0,37,0,0,0,0,3,26,8,826,0,0,0,0,1,0,0,0,0,0,0,0,0,2012,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,10,3,82,2,0,0,94,0,237,0,0,0,29,8,0,0,0,0,0,0,3,0,0,42,1,0,0,0,2,0,0,0,0,0,92,21,0,0,0,0,0,0,0,0,994,0,0,2270,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,835,477,4 +410,0,0,32,28,118,275,64,798,40,133,0,0,2,87,0,558,0,24,81,0,123,2,6,0,62,19,0,35,0,9,2,0,27,55,0,140,400,159,0,1409,0,0,0,1,0,0,5,1,0,0,0,63,442,0,0,0,0,0,1,0,3,0,21,0,141,0,0,4461,118,3987,0,96,0,0,0,0,0,107,60,0,0,0,0,14,28,646,0,64,55,27,0,12,398,0,3618,90,10,0,0,18,28,2483,0,63,0,0,4127,0,0,0,0,107,103,0,0,39,0,0,1,0,0,0,21,0,0,0,0,0,0,0,28,0,0,0,18,0,0,0,2,0,8,0,77,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,3,0,0,0,0,0,1,13,0,0,0,0,0,0,0,20,6,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,103,10,10,10,0,0,0,553,0,359,0,0,0,72,119,382,3205,605,0,0,0,0,1,0,4,0,0,0,0,0,0,5047,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,884,413,2246,68,0,0,2345,0,4198,0,8,0,814,138,0,0,0,0,0,0,0,0,0,1877,1,0,2,0,212,0,0,0,0,55,348,1035,0,0,192,0,0,0,0,0,10654,0,0,163,3,0,1,9,0,0,0,0,13,0,0,0,4,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,1,0,0,0,0,3,38,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,121,1,1,1,0,123,0,0,0,0,177,195,212,0,118,9,0,0,0,0,0,1351,32,0,0,0,0,0,0,1,0,0,0,0,23,0,4,50,0,0,0,0,0,0,0,0,117,0,0,212,0,6,2507,2452,4 +150,0,0,29,10,85,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,95,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,350,0,0,0,0,0,1,0,3,0,12,0,83,0,0,2846,85,1522,0,39,0,0,0,0,0,72,12,0,0,0,0,13,22,389,0,22,33,9,0,10,198,0,1932,100,3,0,0,14,10,1304,0,46,0,0,2029,0,0,0,0,52,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,328,0,240,0,0,0,36,76,300,1649,358,0,0,0,0,1,0,5,0,0,0,0,0,0,2710,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1410,48,0,0,1559,0,2899,0,6,0,566,45,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,280,551,0,0,215,0,0,0,0,0,9932,0,0,181,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,77,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1614,1663,4 +0,0,0,7,2,15,50,2,56,10,6,0,0,0,19,0,123,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,4,0,17,136,0,0,39,0,0,0,1,0,0,7,0,0,0,0,1,164,0,0,0,0,0,1,0,0,0,0,0,17,0,0,3983,15,233,0,2,0,0,0,0,0,30,0,0,0,0,0,1,10,745,0,2,4,2,0,2,0,0,90,0,13,0,0,6,2,89,0,14,0,0,344,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,566,0,287,0,0,0,2,7,40,24,761,0,0,0,0,1,0,0,0,0,0,0,0,0,2667,0,192,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,236,38,459,9,0,0,460,0,1535,0,2,0,159,18,0,0,0,0,0,0,0,0,0,265,1,0,0,0,2,0,0,0,0,1,134,43,0,0,0,0,0,0,0,0,751,0,0,924,0,0,1,0,0,0,0,0,19,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,13,1,1,1,0,2,0,0,0,0,17,21,172,0,6,0,0,0,0,0,0,89,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,1467,70,4 +96,0,0,0,12,83,18,48,145,3,24,0,2,0,5,0,118,0,7,33,0,12,12,3,0,3,3,0,19,0,61,1,0,12,51,0,95,12,0,0,170,0,0,0,0,0,0,0,0,0,0,0,64,114,0,0,0,0,0,1,0,0,0,0,0,3,0,0,960,83,1359,0,84,0,0,0,0,0,3,36,0,0,0,0,11,11,47,0,48,51,12,0,2,30,0,554,50,0,0,0,6,12,317,0,2,0,0,2215,0,0,0,0,25,18,0,0,4,0,0,0,0,0,0,17,0,0,0,0,0,0,0,20,0,0,0,18,0,0,0,0,0,1,0,24,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,0,0,0,0,0,0,84,0,114,0,0,0,125,128,148,438,119,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,722,14,0,0,680,0,584,0,0,0,272,134,0,0,0,0,0,0,0,0,0,319,0,0,0,0,60,0,0,0,0,63,174,58,0,0,110,0,0,0,0,0,257,0,0,60,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,1,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,82,1,1,1,0,144,0,0,0,110,97,146,51,0,87,0,0,0,0,0,0,198,16,0,0,0,0,0,0,0,0,0,0,0,12,0,1,3,0,0,0,0,0,0,0,0,0,0,0,20,0,0,257,878,4 +2,0,0,10,2,37,54,2,75,10,15,0,0,2,20,6,121,0,10,4,0,0,0,5,0,8,0,0,1,0,1,0,0,2,7,0,39,143,0,0,92,0,0,0,1,0,0,2,0,0,0,0,1,143,0,0,0,0,0,1,0,0,0,0,0,23,0,0,992,37,220,0,1,0,0,0,0,0,9,0,0,0,0,0,8,16,151,0,2,7,2,0,3,14,0,272,25,2,0,0,6,2,164,0,15,0,0,632,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4,10,10,10,0,0,0,124,0,292,0,0,0,0,3,202,155,155,0,0,0,0,1,0,3,0,0,0,0,0,0,707,0,15,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,254,46,450,12,0,0,477,0,1059,0,2,0,130,14,0,0,0,0,0,0,0,0,0,303,1,0,0,0,9,0,0,0,0,1,155,48,0,0,45,0,0,0,0,0,354,0,0,33,2,0,1,1,0,0,0,0,6,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,39,1,1,1,0,0,0,0,0,0,17,46,33,0,2,8,0,0,0,0,0,125,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,14,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1244,85,4 +155,0,0,3,0,36,2,0,10,2,3,0,0,0,6,0,20,0,6,2,0,0,0,0,0,55,6,0,13,0,1,2,0,0,17,0,36,6,0,0,23,0,0,0,0,0,0,0,0,0,0,0,57,53,0,0,0,0,0,1,0,0,0,0,0,6,0,0,867,36,106,0,71,0,0,0,0,0,1,0,0,0,0,0,1,1,3,0,0,17,0,0,0,0,0,128,0,0,0,0,2,0,111,0,4,0,0,1173,0,0,0,0,4,1,0,0,14,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,61,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,31,0,49,0,0,0,59,57,60,295,39,0,0,0,0,0,0,0,0,0,0,0,0,0,515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,206,3,0,0,130,0,288,0,0,0,64,15,0,0,0,0,0,0,0,0,0,47,0,0,0,0,2,0,0,0,0,52,126,2,0,0,0,0,0,0,0,0,99,0,0,2,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,19,0,0,0,0,1,53,17,0,77,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,858,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,0,0,0,80,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,48,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,1,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,36,4 +6,0,0,4,0,33,5,0,14,0,3,0,0,2,3,0,24,0,6,5,0,0,0,7,0,8,0,0,9,0,2,0,0,0,4,0,33,6,13,0,28,0,1,0,1,0,0,1,0,0,0,0,5,98,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1659,33,56,0,9,0,0,0,0,0,9,0,0,0,0,0,8,18,625,0,0,4,0,0,0,0,0,105,5,1,0,0,2,0,31,0,0,0,0,699,0,0,1,0,1,2,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,102,0,47,0,0,0,8,21,191,82,99,0,0,0,0,1,0,5,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,36,10,144,4,0,0,161,0,321,0,0,0,55,17,0,0,0,0,0,0,0,0,0,57,1,0,0,0,12,0,0,0,0,4,115,35,0,0,0,0,0,0,0,0,1083,0,0,733,3,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,3,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,12,0,0,0,0,1,37,107,0,10,9,0,1,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,331,47,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,124,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1104,28,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,192,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,465,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,145,0,48,0,0,0,1,4,182,14,143,0,0,0,0,1,0,3,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,2,1,3,0,0,0,0,1,0,32,10,127,4,0,0,152,0,324,0,0,0,42,6,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,110,24,0,0,0,0,0,0,0,0,103,0,0,113,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,86,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,182,52,4 +0,0,0,5,0,38,24,0,49,3,23,0,0,7,4,0,862,0,6,1,0,0,0,8,0,11,0,0,25,0,0,0,0,0,1,12434,38,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,737,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40066,38,1026,0,23,0,0,0,0,0,45,0,0,0,0,0,8,92,6615,0,0,1,0,0,0,0,0,361,25,2,0,0,2,0,950,0,0,91,0,4636,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1423,0,32,0,0,0,12,15,506,2075,1399,0,0,0,0,1,0,3,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,282,5,0,0,313,0,302,0,0,0,148,12,0,0,0,0,0,0,0,0,0,975,1,0,0,0,9,0,0,0,0,1,167,7,0,0,132,0,0,0,0,0,4879,1,0,1023,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,360,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,58,0,0,0,0,1,39,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2476,26,4 +100,0,0,24,4,71,113,7,157,7,16,0,0,2,24,0,187,0,12,6,0,1,1,5,0,15,9,0,9,0,4,0,0,4,20,0,75,164,0,0,274,0,0,0,1,0,0,7,0,0,0,0,11,259,0,0,0,0,0,1,0,1,0,0,0,21,0,0,5196,71,521,0,18,0,0,0,0,0,30,3,0,0,0,0,8,21,999,0,7,20,4,0,4,43,0,546,20,12,0,0,8,4,367,0,15,0,0,2124,0,0,0,0,41,21,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,34,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,746,0,245,0,0,0,13,46,264,369,711,0,0,0,0,1,0,4,0,0,0,0,0,0,2034,0,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,1,0,349,74,795,33,0,0,871,0,1503,0,3,0,283,39,0,0,0,0,0,0,2,0,0,511,1,0,0,0,13,0,0,0,0,11,201,156,0,0,34,0,0,0,0,0,1195,0,0,935,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,73,1,1,1,0,63,0,0,0,0,33,95,358,0,28,9,0,0,0,0,0,312,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,11,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1303,1361,4 +0,0,0,0,0,8,40,0,48,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,147,8,130,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,44,0,331,15,0,0,0,4,0,226,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,33,0,0,0,0,3,21,203,54,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,86,0,58,0,0,0,52,7,0,0,0,0,0,0,0,0,0,113,0,0,0,0,2,0,0,0,0,0,91,88,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,104,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,4,4 +0,0,0,5,0,36,25,0,47,3,24,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12499,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,710,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39927,36,913,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6400,0,0,1,0,0,0,0,0,364,25,1,0,0,2,0,836,0,0,88,0,4610,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1404,0,32,0,0,0,12,15,496,2086,1382,0,0,0,0,1,0,3,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,285,5,0,0,309,0,300,0,0,0,149,14,0,0,0,0,0,0,0,0,0,861,1,0,0,0,9,0,0,0,0,1,164,6,0,0,135,0,0,0,0,0,4601,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2425,23,4 +151,0,0,29,10,84,188,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,15,0,8,2,0,9,33,0,94,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,348,0,0,0,0,0,1,0,3,0,11,0,82,0,0,3042,84,1517,0,40,0,0,0,0,0,72,12,0,0,0,0,13,22,391,0,22,33,9,0,10,193,0,1896,100,3,0,0,14,10,1280,0,46,0,0,2392,0,0,0,0,52,40,0,0,29,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,327,0,238,0,0,0,36,76,296,1619,357,0,0,0,0,1,0,5,0,0,0,0,0,0,2700,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1445,48,0,0,1555,0,2902,0,6,0,565,40,0,0,0,0,0,0,0,0,0,1141,1,0,0,0,30,0,0,0,0,22,278,538,0,0,215,0,0,0,0,0,9933,0,0,177,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,78,0,0,0,0,81,127,309,0,64,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1621,1678,4 +1,0,0,6,0,34,9,0,27,0,9,0,0,2,5,0,19,0,7,2,0,0,0,7,0,8,0,0,4,0,3,0,0,0,8,0,34,6,0,0,52,0,0,0,1,0,0,2,0,0,0,0,3,105,0,0,0,0,0,1,0,0,0,0,0,7,0,0,838,34,74,0,5,0,0,0,0,0,10,0,0,0,0,0,8,17,137,0,0,8,0,0,1,14,0,204,30,4,0,0,2,0,92,0,1,0,0,522,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,118,0,58,0,0,0,4,8,192,116,104,0,0,0,0,1,0,3,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,11,148,8,0,0,166,0,280,0,0,0,69,28,0,0,0,0,0,0,0,0,0,78,1,0,0,0,9,0,0,0,0,3,119,52,0,0,60,0,0,0,0,0,79,0,0,56,3,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,12,0,0,0,0,1,42,88,0,6,9,0,0,0,0,0,54,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,176,165,4 +0,0,0,5,0,37,25,0,47,3,24,0,0,7,4,0,804,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12405,37,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,459,0,0,0,0,0,1,0,0,0,0,0,2,0,0,32194,37,969,0,23,0,0,0,0,0,45,0,0,0,0,0,8,93,3191,0,0,1,0,0,0,0,0,363,25,2,0,0,2,0,892,0,0,88,0,2840,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1400,0,30,0,0,0,12,15,502,1294,1379,0,0,0,0,1,0,3,0,0,0,0,0,0,3246,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,82,282,5,0,0,340,0,420,0,0,0,175,14,0,0,0,0,0,0,0,0,0,917,1,0,0,0,9,0,0,0,0,1,159,42,0,0,135,0,0,0,0,0,3171,1,0,2895,22,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,58,0,0,0,0,1,38,287,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1257,45,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,15,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,15,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,4 +1,0,0,3,0,30,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,3,0,30,6,0,0,20,0,0,0,1,0,0,5,0,0,0,0,2,553,0,0,0,0,0,1,0,0,0,0,0,2,0,0,5083,30,75,0,3,0,0,0,0,0,25,0,0,0,0,0,7,19,421,0,0,3,0,0,0,0,0,79,5,10,1,0,2,0,31,0,0,0,0,815,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,393,0,85,0,0,0,1,4,188,15,382,0,0,0,0,1,0,3,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,5,1,4,0,0,0,0,1,0,32,10,239,3,0,0,213,0,428,0,0,0,101,26,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,112,75,0,0,0,0,0,0,0,0,91,0,0,121,3,0,1,1,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,1,0,0,0,0,1,33,325,0,4,9,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,193,96,4 +220,0,0,31,19,94,190,32,359,26,47,0,0,2,64,1,669,0,22,59,0,113,1,7,0,47,13,0,22,0,4,3,0,18,39,0,112,352,160,0,373,0,0,0,1,0,0,1,1,0,0,0,44,350,0,0,0,0,0,1,0,2,0,12,0,50,0,0,2051,94,2355,0,65,0,0,0,0,0,14,36,0,0,0,0,14,21,156,0,32,39,18,0,9,37,0,799,70,4,0,0,16,19,611,0,45,0,0,2573,0,0,0,0,59,24,0,0,38,0,0,1,0,0,0,19,0,0,0,0,0,0,0,22,0,0,0,14,0,0,0,2,0,6,0,66,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,16,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,79,10,10,10,0,0,0,184,0,218,0,0,0,49,66,371,619,217,0,0,0,0,1,0,4,0,0,0,0,0,0,2434,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,780,345,1834,61,0,0,1856,0,3754,0,7,0,550,167,0,0,0,0,0,0,0,0,0,1354,1,0,2,0,180,0,0,0,0,42,315,86,0,0,155,0,0,0,0,0,9920,0,0,26,3,0,1,7,0,0,0,0,5,0,0,0,1,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,58,58,0,0,16,1,0,0,0,0,3,10,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,96,1,1,1,0,43,0,0,0,0,191,151,90,0,80,9,0,0,0,0,0,317,26,0,0,0,0,0,0,1,0,0,0,0,19,0,4,32,0,0,0,0,0,0,0,0,117,0,0,196,0,1,1606,991,4 +2,0,0,2,0,8,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,1,0,0,281,8,44,0,1,0,0,0,0,0,8,0,0,0,0,0,1,4,38,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,16,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,29,0,0,0,0,3,22,5,52,0,0,0,0,1,0,0,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,70,2,0,0,94,0,113,0,0,0,29,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,90,20,0,0,0,0,0,0,0,0,38,0,0,64,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,115,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,14,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,142,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,32,0,0,0,0,3,21,195,54,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,84,0,57,0,0,0,50,3,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,4,4 +90,0,0,24,4,65,81,7,125,3,16,0,0,2,20,0,187,0,12,6,0,1,1,5,0,23,9,0,9,0,5,0,0,4,22,0,69,165,0,0,218,0,0,0,1,0,0,7,0,0,0,0,20,254,0,0,0,0,0,1,0,1,0,0,0,17,0,0,4780,65,487,0,27,0,0,0,0,0,30,3,0,0,0,0,8,21,914,0,7,22,4,0,4,11,0,342,20,12,0,0,8,4,207,0,11,0,0,1635,0,0,0,0,36,21,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,1,3,0,0,0,6,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,30,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,701,0,230,0,0,0,23,54,250,239,667,0,0,0,0,1,0,4,0,0,0,0,0,0,1749,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,70,757,33,0,0,823,0,1538,0,3,0,285,32,0,0,0,0,0,0,2,0,0,443,1,0,0,0,13,0,0,0,0,20,195,94,0,0,34,0,0,0,0,0,1158,0,0,854,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,67,1,1,1,0,41,0,0,0,0,33,91,360,0,37,9,0,0,0,0,0,242,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,7,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1241,1511,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,15,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,4 +3,0,0,5,6,13,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,1,1,1,3,0,2,0,1,0,0,6,3,0,19,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,99,0,0,0,0,0,1,0,0,0,0,0,25,0,0,475,13,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,46,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,310,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,60,0,50,0,0,0,2,10,44,224,98,0,0,0,0,1,0,1,0,0,0,0,0,0,424,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,116,36,390,11,0,0,401,0,609,0,1,0,103,12,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,110,74,0,0,57,0,0,0,0,0,539,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,6,0,0,0,0,49,22,4,0,7,0,0,0,0,0,0,144,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,11,0,0,224,36,4 +5,0,0,8,0,34,6,0,19,6,3,0,0,2,14,0,18,0,6,2,0,0,0,6,0,8,0,0,4,0,3,0,0,0,10,0,34,6,0,0,99,0,0,0,1,0,0,3,0,0,0,0,3,132,0,0,0,0,0,1,0,0,0,11,0,14,0,0,1519,34,61,0,5,0,0,0,0,0,8,0,0,0,0,0,7,16,138,0,0,10,0,0,0,0,0,85,5,1,0,0,2,0,57,0,8,0,0,1189,0,0,0,0,2,0,6,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1033,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,10,10,0,0,0,86,0,78,0,0,0,4,6,188,71,97,0,0,0,0,1,0,7,0,0,0,0,0,0,1348,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,24,252,8,0,0,354,0,1059,0,0,0,254,20,0,0,0,0,0,0,0,0,0,68,1,0,0,0,8,0,0,0,0,3,120,215,0,0,0,0,0,0,0,0,98,0,0,15,3,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,6,0,0,0,0,1,44,796,0,6,9,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,8381,4 +219,0,0,0,3,85,57,12,334,3,104,1,2,0,5,0,48,0,7,15,0,3,3,3,0,6,3,0,75,0,300,1,0,3,36,0,88,12,0,0,508,0,0,0,0,0,0,0,0,0,0,0,306,119,0,0,0,0,0,1,0,0,0,0,0,24,0,0,5962,85,1668,0,382,0,0,0,0,0,272,9,0,0,0,0,11,11,243,0,12,36,3,0,3,294,0,3586,390,0,0,0,6,3,1678,0,2,0,0,4557,0,0,0,0,84,93,0,0,2,0,0,0,0,0,0,5,0,0,0,0,0,0,0,78,0,0,0,76,0,0,0,0,0,1,0,13,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,72,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,230,0,185,0,0,0,606,610,164,2446,251,0,0,0,0,0,0,0,0,0,0,0,0,0,3914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,591,6,0,0,706,0,521,0,0,0,471,70,0,0,0,0,0,0,0,0,0,558,0,0,0,0,24,0,0,0,0,305,177,580,0,0,875,0,0,0,0,0,1307,0,0,300,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,85,1,1,1,0,678,0,0,0,588,25,124,36,0,385,0,0,0,0,0,0,635,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,1,0,0,0,0,0,0,0,0,0,0,5,0,0,1158,1950,4 +146,0,0,29,10,84,188,22,425,27,73,0,0,2,61,0,375,0,20,16,0,6,2,6,0,35,22,0,14,0,8,3,0,9,33,0,94,301,0,0,685,0,0,0,1,0,0,3,0,0,0,0,38,357,0,0,0,0,0,1,0,3,0,11,0,80,0,0,2959,84,1525,0,49,0,0,0,0,0,73,12,0,0,0,0,13,22,387,0,22,33,9,0,10,198,0,1956,100,3,0,0,14,10,1306,0,43,0,0,2638,0,0,0,0,51,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,34,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,326,0,239,0,0,0,48,87,296,1663,355,0,0,0,0,1,0,5,0,0,0,0,0,0,2765,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,143,1460,48,0,0,1557,0,2882,0,6,0,566,54,0,0,0,0,0,0,0,0,0,1144,1,0,0,0,30,0,0,0,0,32,279,551,0,0,215,0,0,0,0,0,9922,0,0,176,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,62,0,0,0,0,81,127,309,0,73,9,0,0,0,0,0,720,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,37,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1603,1810,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,0,0,0,0,2,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,105,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1121,28,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,174,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,516,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,141,0,48,0,0,0,1,4,182,14,139,0,0,0,0,1,0,3,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,32,10,136,4,0,0,157,0,322,0,0,0,47,9,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,110,29,0,0,0,0,0,0,0,0,92,0,0,97,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,106,0,3,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,172,53,4 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,25,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,24,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,37,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,5,4 +0,0,0,4,0,25,4,0,9,0,2,0,0,2,3,1,100,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,1,0,25,6,0,0,22,0,0,0,1,0,0,0,0,0,0,0,1,71,0,0,0,0,0,1,0,0,0,0,0,2,0,0,479,25,116,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,79,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,47,0,0,0,0,451,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,51,0,66,0,0,0,0,3,196,14,46,0,0,0,0,1,0,3,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,14,73,4,0,0,87,0,134,0,0,0,17,3,0,0,0,0,0,0,0,0,0,127,0,0,0,0,8,0,0,0,0,0,107,12,0,0,0,0,0,0,0,0,362,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,19,26,29,0,2,8,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,20,4 +0,0,0,9,0,40,39,0,69,4,34,0,0,9,4,0,1383,0,6,1,0,0,0,8,0,10,0,0,23,0,1,0,0,0,1,3500,40,6,0,0,56,0,2,0,1,0,0,2,0,0,0,0,1,787,0,0,0,0,0,1,0,0,0,0,0,4,0,0,261671,40,1644,0,21,0,0,0,0,0,74,0,0,0,0,0,8,145,37023,0,0,1,0,0,0,0,0,506,30,3,0,0,2,0,1514,0,0,218,0,65119,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,12,12,12,0,0,0,23862,0,41,0,0,0,14,17,462,8285,23844,0,0,0,0,1,0,3,0,0,0,0,0,0,16729,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,119,28,336,9,0,0,416,0,317,0,0,0,242,8,0,0,0,0,0,0,0,0,0,1544,1,0,0,0,9,0,0,0,0,0,232,32,0,0,245,0,0,0,0,0,12152,1,0,11113,36,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,36,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,62,0,0,0,0,1,41,246,0,22,12,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9412,439,4 +11,0,0,9,1,50,50,1,125,7,15,1,0,2,13,0,69,0,9,5,0,0,0,7,0,11,0,0,12,0,1,0,0,1,17,0,51,54,0,0,163,0,0,0,1,0,0,16,3,0,0,0,4,353,0,0,0,0,0,1,0,0,0,20,0,11,0,0,7633,50,339,0,15,0,0,0,0,0,61,0,0,0,0,5,11,39,1369,0,1,17,1,0,1,47,0,521,20,34,1,0,4,1,341,0,8,0,0,1718,0,0,0,0,31,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,8,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,10,10,10,0,0,0,1116,0,261,0,0,0,3,8,227,430,1032,0,0,0,0,1,0,3,0,0,0,0,0,0,2278,0,0,0,0,0,0,0,0,0,0,0,0,16,1,0,0,0,0,0,1,0,135,26,411,12,0,0,528,0,1652,0,1,0,275,38,0,0,0,0,0,0,0,0,0,284,1,0,9,0,12,0,0,0,0,5,162,223,0,0,34,0,0,0,0,0,599,0,0,1283,2,0,1,1,0,0,0,0,44,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,58,1,1,1,0,14,0,0,0,0,9,68,822,0,16,8,0,0,0,0,0,204,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,10,1802,107,4 +0,0,0,9,0,39,69,0,60,43,70,0,0,8,4,0,942,0,7,1,0,0,0,9,0,10,0,0,27,0,2,0,0,0,2,8099,39,6,0,0,53,0,2,0,1,0,0,2,0,0,0,0,2,405,0,0,0,0,0,1,0,0,0,0,0,4,0,0,54157,39,1357,0,26,0,0,0,0,0,137,0,0,0,0,0,9,208,10243,0,0,2,0,0,0,0,0,615,30,3,0,0,2,0,1131,0,0,120,0,7812,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,1988,0,43,0,0,0,17,19,1178,4117,1957,0,0,0,0,1,0,3,0,0,0,0,0,0,669,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,122,145,326,9,0,0,444,0,356,0,0,0,274,15,0,0,0,0,0,0,0,0,0,1160,1,0,0,0,10,0,0,0,0,3,198,19,0,0,358,0,0,0,0,0,7165,1,0,1236,67,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,67,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,71,0,0,0,0,1,41,202,0,27,12,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,47,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4190,383,4 +1,0,0,3,0,26,5,0,20,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,26,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,90,0,0,0,0,0,1,0,0,0,0,0,2,0,0,978,26,60,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,179,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,399,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,131,0,45,0,0,0,1,4,178,14,129,0,0,0,0,1,0,3,0,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,124,4,0,0,142,0,287,0,0,0,40,2,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,108,22,0,0,0,0,0,0,0,0,100,0,0,120,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,1,0,0,0,0,1,28,89,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,183,53,4 +0,0,0,4,1,12,26,1,32,0,4,0,0,0,5,0,69,0,8,1,0,0,0,2,0,0,3,0,1,0,1,1,0,1,3,0,13,54,0,0,14,0,1,0,1,0,0,1,0,0,0,0,1,37,0,0,0,0,0,1,0,0,0,0,0,4,0,0,943,12,107,0,3,0,0,0,0,0,4,0,0,0,0,0,2,5,445,0,1,3,1,0,1,0,0,51,0,1,0,0,4,1,36,0,2,0,0,261,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,42,0,26,0,0,0,2,9,33,20,52,0,0,0,0,1,0,0,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,208,5,0,0,245,0,271,0,1,0,75,2,0,0,0,0,0,0,0,0,0,144,1,0,0,0,3,0,0,0,0,2,106,25,0,0,0,0,0,0,0,0,306,0,0,739,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,6,0,0,0,0,9,16,69,0,6,0,0,0,0,0,0,39,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,257,7,4 +0,0,0,6,0,27,5,0,26,0,2,0,0,2,2,0,18,0,6,2,0,0,0,6,0,8,0,0,3,0,1,0,0,0,2,0,27,6,0,0,27,0,2,0,1,0,0,3,0,0,0,0,2,99,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1718,27,63,0,3,0,0,0,0,0,14,0,0,0,0,1,7,20,611,0,0,2,0,0,0,0,0,82,5,5,0,0,2,0,36,0,0,0,0,481,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,118,0,44,0,0,0,2,4,182,14,112,0,0,0,0,1,0,3,0,0,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,10,141,6,0,0,166,0,421,0,0,0,63,12,0,0,0,0,0,0,0,0,0,61,1,0,0,0,8,0,0,0,0,2,109,41,0,0,0,0,0,0,0,0,264,0,0,798,3,0,1,1,1,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,3,0,0,0,0,1,29,150,0,3,9,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,340,597,4 +150,0,0,29,10,86,191,22,440,30,76,0,0,2,64,0,375,0,20,16,0,6,2,6,0,27,22,0,14,0,7,2,0,9,33,0,96,301,0,0,721,0,0,0,1,0,0,3,0,0,0,0,28,346,0,0,0,0,0,1,0,3,0,12,0,86,0,0,2946,86,1547,0,39,0,0,0,0,0,74,12,0,0,0,0,13,22,405,0,22,33,9,0,10,213,0,2043,100,3,0,0,14,10,1379,0,46,0,0,2226,0,0,0,0,52,41,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,7,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,329,0,239,0,0,0,36,76,304,1747,359,0,0,0,0,1,0,5,0,0,0,0,0,0,2787,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1399,48,0,0,1564,0,2906,0,6,0,568,51,0,0,0,0,0,0,0,0,0,1168,1,0,0,0,30,0,0,0,0,22,278,590,0,0,215,0,0,0,0,0,9937,0,0,180,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,3,28,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,93,1,1,1,0,77,0,0,0,0,81,129,309,0,63,9,0,0,0,0,0,759,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1635,1653,4 +3,0,0,5,6,13,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,19,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,99,0,0,0,0,0,1,0,0,0,0,0,25,0,0,493,13,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,46,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,321,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,61,0,46,0,0,0,2,10,44,224,99,0,0,0,0,1,0,1,0,0,0,0,0,0,428,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,116,36,392,11,0,0,401,0,594,0,1,0,103,8,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,110,74,0,0,57,0,0,0,0,0,540,0,0,20,0,0,1,0,0,0,0,0,3,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,6,0,0,0,0,49,22,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,11,0,0,218,36,4 +9,0,0,6,1,15,26,1,38,1,4,0,0,0,6,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,3,0,16,54,0,0,19,0,0,0,1,0,0,4,0,0,0,0,0,78,0,0,0,0,0,1,0,0,0,0,0,5,0,0,22732,15,125,0,1,0,0,0,0,0,17,0,0,0,0,0,1,6,1513,0,1,3,1,0,1,0,0,50,0,6,0,0,4,1,25,0,3,0,0,8207,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1496,0,148,0,0,0,0,3,64,37,1512,0,0,0,0,1,0,0,0,0,0,0,0,0,1626,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,113,17,931,8,0,0,769,0,745,0,1,0,582,18,0,0,0,0,0,0,0,0,0,147,1,0,0,0,2,0,0,0,0,0,614,21,0,0,0,0,0,0,0,0,1161,0,0,1694,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,1,1,1,0,0,0,0,0,0,9,19,73,0,1,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,723,119,4 +403,0,0,3,13,168,182,37,462,67,75,0,6,0,123,1,925,0,15,20,0,10,6,9,2,59,51,0,20,0,15,4,0,11,93,0,181,195,6492,0,1010,0,0,0,1,0,0,5,1,0,0,0,69,398,0,0,0,0,0,1,0,3,0,16,0,101,0,0,38974,168,2847,0,86,0,0,0,0,0,137,27,0,0,0,0,14,25,7942,0,37,93,11,0,11,219,0,2121,135,11,0,0,18,13,2416,0,75,1,0,6462,0,0,0,0,130,94,2,0,30,0,0,1,0,0,0,21,0,0,0,0,0,0,0,22,0,0,0,34,0,0,0,0,0,2,0,24,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,108,8,0,0,0,0,0,2,0,0,0,0,0,7,23,0,0,0,3,0,0,0,0,8,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,2,113,12,12,12,0,0,2,5023,2,483,0,0,2,86,316,430,137902,5036,0,0,0,0,1,0,15,0,0,0,0,0,0,11361,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,364,245,1620,20,0,0,1659,0,2002,0,3,0,817,128670,0,0,0,0,0,0,0,0,0,1789,1,0,2,0,47,0,0,0,0,54,345,608,0,0,318,0,0,0,0,0,12687,0,0,8508,3,0,1,12,0,0,0,0,14,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,1,0,0,0,0,3,155,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3,178,1,1,1,0,531,0,0,0,0,180,274,454,1,140,9,0,0,0,0,0,936,18,0,0,0,0,0,0,0,0,0,0,0,14,0,2,73,1,0,0,0,0,0,0,29,8,0,0,27,0,4,4328,2547,4 +0,0,0,8,0,35,6,0,43,1,5,0,0,6,4,0,586,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,1,898,35,6,0,0,48,0,2,0,1,0,0,2,0,0,0,0,1,157,0,0,0,0,0,1,0,0,0,0,0,4,0,0,18185,35,653,0,3,0,0,0,0,0,14,0,0,0,0,0,8,23,4342,0,0,1,0,0,0,0,0,189,20,3,0,0,2,0,634,0,0,1,0,3016,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,530,0,39,0,0,0,1,4,267,1162,516,0,0,0,0,1,0,3,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,19,198,8,0,0,246,0,324,0,0,0,94,11,0,0,0,0,0,0,0,0,0,656,1,0,0,0,9,0,0,0,0,0,118,54,0,0,6,0,0,0,0,0,3478,1,0,778,6,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,36,245,0,4,12,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1960,324,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,32,0,0,0,0,3,21,195,54,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,41,1,0,0,84,0,57,0,0,0,50,1,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,5,4 +0,0,0,0,0,10,2,0,3,1,1,0,0,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,1,0,0,53,10,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,1,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,19,0,43,0,0,0,0,3,23,9,37,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,35,0,0,0,40,0,93,0,0,0,7,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,92,3,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,1,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,81,4 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 +23,0,0,0,4,29,6,16,47,3,5,0,2,0,5,0,49,0,6,13,0,4,4,1,0,3,3,0,12,0,5,1,0,4,13,0,33,12,0,0,28,0,0,0,0,0,0,0,0,0,0,0,8,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,343,29,375,0,21,0,0,0,0,0,2,12,0,0,0,0,5,5,14,0,16,13,4,0,2,0,0,59,0,0,0,0,6,4,78,0,1,0,0,491,0,0,0,0,4,1,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,10,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,20,0,0,0,0,0,0,40,0,39,0,0,0,13,18,64,91,57,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,28,252,6,0,0,239,0,316,0,0,0,79,42,0,0,0,0,0,0,0,0,0,120,0,0,0,0,22,0,0,0,0,8,112,4,0,0,0,0,0,0,0,0,101,0,0,5,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,23,0,0,0,8,33,46,13,0,24,0,0,0,0,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,3,0,0,0,0,0,0,0,0,0,0,0,6,0,0,178,625,4 +21,0,0,7,1,51,36,1,69,13,7,0,4,0,22,0,77,0,8,4,0,0,0,5,0,26,0,0,14,0,2,0,0,1,17,0,52,65601,0,0,430,0,0,0,1,0,0,4,0,0,0,0,20,151,0,0,0,0,0,1,0,0,0,0,0,15,0,0,1534,51,257,0,32,0,0,0,0,0,35,0,0,0,0,0,8,21,333,0,1,17,1,0,5,13,0,284,15,6,0,0,10,1,182,0,13,0,0,12007,0,0,0,0,20,7,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,47,10,10,10,0,0,0,257,0,154,0,0,0,20,34,216,264,277,0,0,0,0,1,0,3,0,0,0,0,0,0,917,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,141,102,381,10,0,0,405,0,628,0,1,0,151,17,0,0,0,0,0,0,0,0,0,223,1,0,0,0,9,0,0,0,0,20,153,52,0,0,30,0,0,0,0,0,66360,0,0,68,3,0,1,4,0,0,0,0,8,0,0,0,3,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,53,1,1,1,0,14,0,0,0,0,9,69,127,0,33,9,0,0,0,0,0,152,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,15,0,0,0,0,0,0,0,0,0,0,0,1,0,5,545,672,4 +11,0,0,8,1,34,48,1,122,7,15,1,0,0,13,0,71,0,9,2,0,0,0,4,0,3,3,0,12,0,2,0,0,1,17,0,35,54,0,0,148,0,0,0,1,0,0,16,3,0,0,0,4,285,0,0,0,0,0,1,0,0,0,20,0,10,0,0,7345,34,344,0,17,0,0,0,0,0,59,0,0,0,0,5,5,29,1334,0,1,17,1,0,1,47,0,462,15,33,1,0,4,1,348,0,8,0,0,1198,0,0,0,0,32,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,8,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,1074,0,227,0,0,0,5,13,72,431,1016,0,0,0,0,1,0,0,0,0,0,0,0,0,2263,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,112,19,364,11,0,0,486,0,1552,0,1,0,273,45,0,0,0,0,0,0,0,0,0,279,1,0,9,0,6,0,0,0,0,6,146,221,0,0,34,0,0,0,0,0,586,0,0,1293,0,0,1,0,0,0,0,0,43,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,38,1,1,1,0,16,0,0,0,0,9,52,817,0,20,0,0,0,0,0,0,199,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,10,1704,87,4 +5,0,0,0,0,12,3,0,5,0,1,0,1,0,2,0,12,0,6,2,0,0,0,0,0,2,0,0,2,0,1,0,0,0,4,0,12,12,0,0,25,0,0,0,0,0,0,0,0,0,0,0,2,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,63,12,26,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,4,0,0,1,0,0,13,0,0,0,0,4,0,14,0,0,0,0,107,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,20,0,19,0,0,0,2,5,27,13,23,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,21,66,0,0,0,61,0,134,0,0,0,27,2,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,3,104,4,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,2,0,0,0,0,1,16,4,0,5,0,0,0,0,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,14,4 +0,0,0,5,0,36,25,0,47,3,24,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12347,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,719,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41260,36,913,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6768,0,0,1,0,0,0,0,0,364,25,1,0,0,2,0,836,0,0,88,0,4916,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1503,0,34,0,0,0,12,15,493,2078,1481,0,0,0,0,1,0,3,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,274,5,0,0,313,0,286,0,0,0,151,15,0,0,0,0,0,0,0,0,0,861,1,0,0,0,9,0,0,0,0,1,169,6,0,0,135,0,0,0,0,0,4746,1,0,995,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2533,23,4 +151,0,0,29,10,85,187,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,3,0,9,33,0,95,301,0,0,697,0,0,0,1,0,0,3,0,0,0,0,28,375,0,0,0,0,0,1,0,3,0,11,0,82,0,0,2892,85,1512,0,39,0,0,0,0,0,71,12,0,0,0,0,13,22,427,0,22,33,9,0,10,193,0,1895,100,3,0,0,14,10,1279,0,46,0,0,2057,0,0,0,0,50,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,339,0,247,0,0,0,36,75,300,1617,370,0,0,0,0,1,0,5,0,0,0,0,0,0,2767,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1477,48,0,0,1558,0,2906,0,6,0,564,55,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,281,538,0,0,215,0,0,0,0,0,9943,0,0,189,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,75,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,721,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1636,1720,4 +112,0,0,29,11,89,156,27,263,30,34,0,0,2,66,1,557,0,20,44,0,99,2,6,0,33,22,0,17,0,7,3,0,10,38,0,99,301,160,0,373,0,0,0,1,0,0,3,0,0,0,0,34,337,0,0,0,0,0,1,0,3,0,12,0,51,0,0,2523,89,1748,0,49,0,0,0,0,0,19,15,0,0,0,0,13,22,283,0,27,38,10,0,7,29,0,658,55,3,0,0,14,11,547,0,46,0,0,2132,0,0,0,0,44,13,1,0,33,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,28,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,281,0,227,0,0,0,42,71,332,528,293,0,0,0,0,1,0,6,0,0,0,0,0,0,1990,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1464,49,0,0,1492,0,2859,0,6,0,499,351,0,0,0,0,0,0,0,0,0,1099,1,0,0,0,151,0,0,0,0,30,283,135,0,0,125,0,0,0,0,0,10418,0,0,164,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,6,1,0,0,0,0,3,19,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,96,1,1,1,0,56,0,0,0,0,115,137,326,0,73,9,0,0,0,0,0,295,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,34,0,0,0,0,0,0,0,0,117,0,0,221,0,3,1563,1594,4 +283,0,0,28,21,93,166,37,371,32,43,0,0,2,69,2,789,0,20,67,0,117,2,6,0,36,22,0,18,0,7,2,0,20,41,0,113,301,160,0,380,0,0,0,1,0,0,3,0,0,0,0,36,407,0,0,0,0,0,1,0,3,0,12,0,53,0,0,2508,93,3450,0,53,0,0,0,0,0,18,45,0,0,0,0,14,23,270,0,37,41,20,0,7,29,0,688,55,3,0,0,14,21,664,0,49,0,0,2604,0,0,0,0,62,32,0,0,30,0,0,1,0,0,0,19,0,0,0,0,0,0,0,27,0,0,0,15,0,0,0,0,0,7,0,70,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,34,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,20,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,302,0,277,0,0,0,44,72,399,547,305,0,0,0,0,1,0,5,0,0,0,0,0,0,2698,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,341,1894,58,0,0,1835,0,3161,0,6,0,586,388,0,0,0,0,0,0,0,0,0,1462,1,0,0,0,192,0,0,0,0,37,287,132,0,0,125,0,0,0,0,0,10703,0,0,160,4,0,1,7,0,0,0,0,5,0,0,0,1,0,0,0,0,0,31,0,0,0,0,0,0,0,0,1,0,0,101,101,0,0,8,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,97,1,1,1,0,59,0,0,0,0,233,154,317,0,76,9,0,0,0,0,0,304,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,36,0,0,0,0,0,0,0,0,117,0,0,196,0,2,1660,1826,4 +0,0,0,5,0,36,25,0,49,3,24,0,0,7,4,0,799,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,2,12424,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,725,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40794,36,966,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6717,0,0,2,0,0,0,0,0,364,25,1,0,0,2,0,887,0,0,88,0,4422,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1485,0,32,0,0,0,12,15,498,2086,1463,0,0,0,0,1,0,3,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,283,5,0,0,308,0,296,0,0,0,148,14,0,0,0,0,0,0,0,0,0,914,1,0,0,0,9,0,0,0,0,1,164,6,0,0,135,0,0,0,0,0,4794,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,38,209,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2472,22,4 +0,0,0,11,0,37,9,0,59,2,8,0,0,7,5,0,892,0,6,2,0,0,0,7,0,13,0,0,10,0,2,0,0,0,2,2253,37,6,0,0,45,0,0,0,1,0,0,1,0,0,0,0,2,231,0,0,0,0,0,1,0,0,0,0,0,4,0,0,23086,37,994,0,12,0,0,0,0,0,17,0,0,0,0,0,8,33,4540,0,0,2,0,0,0,0,0,237,25,2,0,0,2,0,957,0,0,12,0,2525,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,966,0,43,0,0,0,5,9,304,760,947,0,0,0,0,1,0,3,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,106,22,248,13,0,0,280,0,373,0,0,0,110,5,0,0,0,0,0,0,0,0,0,986,1,0,0,0,9,0,0,0,0,1,126,42,0,0,27,0,0,0,0,0,3523,1,0,65,9,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,27,0,0,0,0,1,39,171,0,13,12,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1663,49,4 +9,0,0,6,1,15,26,1,38,1,4,0,0,0,6,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,3,0,16,54,0,0,19,0,0,0,1,0,0,4,0,0,0,0,0,82,0,0,0,0,0,1,0,0,0,0,0,5,0,0,22423,15,125,0,1,0,0,0,0,0,17,0,0,0,0,0,1,6,1502,0,1,3,1,0,1,0,0,50,0,6,0,0,4,1,25,0,3,0,0,8181,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1477,0,150,0,0,0,0,3,64,37,1493,0,0,0,0,1,0,0,0,0,0,0,0,0,1521,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,113,17,923,8,0,0,757,0,745,0,1,0,570,22,0,0,0,0,0,0,0,0,0,147,1,0,0,0,2,0,0,0,0,0,602,21,0,0,0,0,0,0,0,0,1136,0,0,1554,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,1,1,1,0,0,0,0,0,0,9,19,73,0,1,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,700,126,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,408,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,25,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,203,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,49,3,0,0,47,0,144,0,0,0,5,11,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,11,4 +21,0,0,0,0,35,14,0,26,2,5,0,2,0,4,0,20,0,6,6,0,0,0,6,0,10,3,0,6,0,2,1,0,0,6,0,35,9,0,0,73,0,0,0,1,0,0,0,0,0,0,0,5,78,0,0,0,0,0,1,0,0,0,0,0,3,0,0,678,35,88,0,9,0,0,0,0,0,9,0,0,0,0,0,11,16,117,0,0,6,0,0,2,15,0,229,15,0,0,0,4,0,121,0,2,0,0,730,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,88,0,44,0,0,0,6,12,197,130,92,0,0,0,0,1,0,3,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,137,0,0,0,135,0,245,0,0,0,47,28,0,0,0,0,0,0,0,0,0,77,0,0,0,0,12,0,0,0,0,6,125,33,0,0,30,0,0,0,0,0,92,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,11,0,0,0,0,1,41,22,0,13,9,0,0,0,0,0,71,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,35,4 +0,0,0,3,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,2,0,0,18,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,3,0,0,32,0,94,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,7,4 +5,0,0,0,0,12,3,0,5,0,1,0,1,0,2,0,12,0,6,2,0,0,0,0,0,2,0,0,2,0,1,0,0,0,4,0,12,12,0,0,25,0,0,0,0,0,0,0,0,0,0,0,2,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,56,12,26,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,4,0,0,1,0,0,13,0,0,0,0,4,0,14,0,0,0,0,99,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,20,0,19,0,0,0,2,5,27,13,23,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,21,62,0,0,0,61,0,110,0,0,0,27,2,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,3,104,4,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,2,0,0,0,0,1,16,4,0,5,0,0,0,0,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,4 +119,0,0,29,11,90,157,27,271,30,38,0,0,2,66,1,559,0,20,45,0,98,2,6,0,34,22,0,17,0,7,2,0,10,38,0,100,301,160,0,385,0,0,0,1,0,0,3,0,0,0,0,34,336,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2569,90,1768,0,49,0,0,0,0,0,22,15,0,0,0,0,13,22,291,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,584,0,46,0,0,2336,0,0,0,0,47,15,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,10,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,294,0,230,0,0,0,42,73,339,589,305,0,0,0,0,1,0,6,0,0,0,0,0,0,2233,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1440,49,0,0,1500,0,2873,0,6,0,504,144,0,0,0,0,0,0,0,0,0,1114,1,0,0,0,151,0,0,0,0,29,285,149,0,0,155,0,0,0,0,0,10417,0,0,178,3,0,1,7,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,53,53,0,0,7,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,61,0,0,0,0,117,138,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,202,0,3,1725,1621,4 +46,0,0,1,1,56,9,4,42,2,10,0,3,0,5,0,45,0,7,10,0,1,1,6,0,23,12,0,7,0,3,1,0,1,21,0,57,12,0,0,148,0,0,0,1,0,0,0,0,0,0,0,19,98,0,0,0,0,0,1,0,1,0,0,0,4,0,0,918,56,255,0,24,0,0,0,0,0,6,3,0,0,0,0,13,18,138,0,4,21,1,0,4,16,0,280,30,0,0,0,6,1,194,0,2,0,0,1303,0,0,0,0,16,8,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,27,10,10,10,0,0,0,137,0,88,0,0,0,21,41,222,240,127,0,0,0,0,1,0,3,0,0,0,0,0,0,437,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,52,279,2,0,0,226,0,401,0,0,0,92,31,0,0,0,0,0,0,0,0,0,121,0,0,0,0,18,0,0,0,0,18,147,33,0,0,60,0,0,0,0,0,714,0,0,4,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,14,0,0,0,0,9,78,37,0,37,9,0,0,0,0,0,149,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,153,987,4 +53,0,0,1,1,56,12,4,56,2,13,0,3,0,5,0,37,0,7,9,0,1,1,7,0,16,3,0,7,0,4,1,0,1,22,0,57,12,0,0,181,0,0,0,1,0,0,0,0,0,0,0,13,94,0,0,0,0,0,1,0,1,0,0,0,7,0,0,963,56,258,0,18,0,0,0,0,0,10,3,0,0,0,0,13,18,139,0,4,22,1,0,4,31,0,381,30,0,0,0,6,1,231,0,2,0,0,9536,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,141,0,92,0,0,0,16,23,221,327,130,0,0,0,0,1,0,3,0,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,269,2,0,0,233,0,405,0,0,0,102,24,0,0,0,0,0,0,0,0,0,133,0,0,0,0,18,0,0,0,0,12,147,72,0,0,60,0,0,0,0,0,705,0,0,7,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,18,0,0,0,0,9,79,38,0,22,9,0,0,0,0,0,190,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,157,794,4 +6,0,0,9,0,58,181,0,123,6,15,0,0,2,21,2,66,0,61,4,0,0,0,7,0,9,24,0,11,0,9,3,0,0,23,0,58,206,0,0,282,0,0,0,1,0,0,7,1,0,0,0,13,220,0,0,0,0,0,1,0,0,0,5,0,16,0,0,7728,58,543,0,22,0,0,0,0,0,33,0,0,0,0,1,10,25,723,0,0,23,0,0,1,94,0,840,60,19,0,0,2,0,716,0,10,0,0,3473,0,0,0,0,3,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,687,0,168,0,0,0,24,50,245,1341,664,0,0,0,0,1,0,14,0,0,0,0,0,0,2873,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,25,446,9,0,0,622,0,1267,0,0,0,485,132,0,0,0,0,0,0,0,0,0,471,1,0,8,0,11,0,0,0,0,12,166,383,0,0,293,0,0,0,0,0,1401,0,0,1805,3,0,1,1,1,0,0,0,27,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,85,1,1,1,0,25,0,0,0,0,1,81,624,0,47,9,0,0,0,0,0,289,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,8,976,1489,4 +240,0,0,10,14,171,203,38,486,67,78,0,5,0,111,1,976,0,17,20,0,10,6,9,2,57,54,0,22,0,13,3,0,12,98,0,185,65785,6455,0,984,0,0,0,1,0,0,5,1,0,0,0,64,457,0,0,0,0,0,1,0,2,0,16,0,107,0,0,38983,171,2920,0,83,0,0,0,0,0,140,27,0,0,0,0,14,25,7997,0,38,98,12,0,11,219,0,2146,135,11,0,0,18,14,2413,0,81,1,0,5716,0,0,0,0,57,70,2,0,31,0,0,1,0,0,0,20,0,0,0,0,0,0,0,11,0,0,0,37,0,0,0,0,0,2,0,26,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,41,8,0,0,0,0,0,2,0,0,0,0,0,7,23,0,0,0,3,0,0,0,0,9,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,129,12,12,12,0,0,2,5044,2,504,0,0,2,78,320,427,135113,5085,0,0,0,0,1,0,5,0,0,0,0,0,0,10624,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,464,214,1732,27,0,0,1820,0,2193,0,4,0,870,126296,0,0,0,0,0,0,0,0,0,1877,1,0,2,0,47,0,0,0,0,50,360,609,0,0,318,0,0,0,0,0,78364,0,0,8350,3,0,1,12,0,0,0,0,15,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,18,1,0,0,0,0,3,125,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,179,1,1,1,0,542,0,0,0,0,188,283,440,1,140,9,0,0,0,0,0,901,19,0,0,0,0,0,0,0,0,0,0,0,15,0,2,73,1,0,0,0,0,0,0,0,8,0,0,27,0,4,4625,1838,4 +87,0,2,0,5,58,20,10,597,5,19,0,4,0,8,18,6209,0,8,8,0,3,2,7,2,13,0,0,3,0,2,0,0,2,14,26,62,15,0,0,246,0,0,0,1,0,0,2,0,0,0,0,7,179,0,0,0,0,0,1,0,0,0,0,0,13,0,0,1572,58,7115,0,8,0,0,0,0,0,11,9,0,0,0,0,10,18,291,0,10,14,2,0,4,51,0,533,15,2,0,0,8,5,6524,0,3,1,0,3040,0,0,0,0,8,22,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,0,0,26,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1017,12,12,12,0,0,2,215,2,161,0,0,2,7,9,245,529,238,0,0,0,0,1,0,3,0,0,0,11833,3,1,795,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,67,14875,378,7,0,0,329,0,843,0,0,0,99,517,0,0,0,0,0,0,0,0,0,6883,1,0,0,0,22,0,0,0,0,6,137,140,0,2,30,0,0,0,1,0,13195,0,0,21,3,0,1,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,65,1,1,1,0,3,0,0,0,0,98,76,68,1,9,9,0,0,0,0,0,255,2,0,0,0,0,0,0,0,0,0,0,0,5,0,1,7,0,0,0,0,0,0,0,0,5,0,0,9,0,1,523,336,4 +80,0,0,2,1,53,25,4,118,6,24,0,4,0,12,0,38,0,7,6,0,1,1,5,0,29,9,0,5,0,4,0,0,1,18,0,54,15,0,0,480,0,0,0,1,0,0,0,0,0,0,0,25,113,0,0,0,0,0,1,0,1,0,0,0,26,0,0,1365,53,370,0,28,0,0,0,0,0,16,3,0,0,0,0,8,13,269,0,4,18,1,0,4,88,0,802,15,0,0,0,8,1,552,0,7,0,0,1264,0,0,0,0,36,21,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,219,0,110,0,0,0,27,58,218,786,205,0,0,0,0,1,0,4,0,0,0,0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,93,301,4,0,0,242,0,334,0,0,0,105,27,0,0,0,0,0,0,0,0,0,228,0,0,0,0,13,0,0,0,0,24,138,230,0,0,30,0,0,0,0,0,737,0,0,18,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,33,0,0,0,0,9,72,42,0,38,9,0,0,0,0,0,327,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,276,1558,4 +5,0,0,6,6,37,30,21,106,11,22,0,0,2,16,0,103,0,8,14,0,10,0,5,0,8,0,0,1,0,1,0,0,6,6,0,43,54,0,0,91,0,0,0,1,0,0,1,0,0,0,0,1,143,0,0,0,0,0,1,0,0,0,0,0,20,0,0,813,37,524,0,1,0,0,0,0,0,5,15,0,0,0,0,8,14,90,0,21,6,6,0,3,23,0,322,45,1,0,0,4,6,180,0,13,0,0,747,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,14,10,10,10,0,0,0,75,0,256,0,0,0,0,3,209,214,107,0,0,0,0,1,0,4,0,0,0,0,0,0,521,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,137,39,453,12,0,0,468,0,668,0,1,0,114,12,0,0,0,0,0,0,0,0,0,287,1,0,0,0,29,0,0,0,0,1,134,56,0,0,91,0,0,0,0,0,202,0,0,8,2,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,39,1,1,1,0,0,0,0,0,0,49,49,31,0,2,8,0,0,0,0,0,112,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,17,0,0,0,0,0,0,0,0,0,0,0,11,0,0,629,43,4 +241,0,0,10,14,176,204,38,484,72,78,0,5,0,119,1,905,0,17,19,0,10,6,10,2,57,54,0,23,0,14,3,0,12,100,0,190,56539,6803,0,1005,0,0,0,1,0,0,5,1,0,0,0,65,469,0,0,0,0,0,1,0,2,0,27,0,113,0,0,38034,176,2852,0,85,0,0,0,0,0,140,27,0,0,0,0,14,25,7809,0,38,100,12,0,11,219,0,2151,135,10,0,0,18,14,2361,0,87,1,0,7152,0,0,0,0,57,69,2,0,29,0,0,1,0,0,0,23,0,0,0,0,0,0,0,11,0,0,0,40,0,0,0,0,0,2,0,30,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,41,8,0,0,0,0,0,2,0,0,0,0,0,8,23,0,0,0,3,0,0,0,0,11,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,127,12,12,12,0,0,2,4899,2,494,0,0,2,80,322,440,135469,4946,0,0,0,0,1,0,5,0,0,0,0,0,0,10489,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,464,226,1694,27,0,0,1836,0,2267,0,4,0,877,126310,0,0,0,0,0,0,0,0,0,1813,1,0,2,0,47,0,0,0,0,51,365,610,0,0,318,0,0,0,0,0,68977,0,0,8045,3,0,1,12,0,0,0,0,14,0,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,17,1,0,0,0,0,3,126,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,184,1,1,1,0,541,0,0,0,0,184,290,416,1,142,9,0,0,0,0,0,909,19,0,0,0,0,0,0,0,0,0,0,0,15,0,2,78,1,0,0,0,0,0,0,0,7,0,0,26,0,4,4582,1860,4 +120,0,0,29,11,90,157,27,272,30,38,0,0,2,66,2,738,0,20,46,0,97,2,6,0,33,22,0,18,0,8,2,0,10,38,0,100,301,160,0,389,0,0,0,1,0,0,3,0,0,0,0,34,361,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2555,90,1949,0,52,0,0,0,0,0,21,15,0,0,0,0,13,22,292,0,27,38,10,0,8,37,0,731,70,3,0,0,14,11,641,0,46,0,0,2439,0,0,0,0,46,17,1,0,31,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,60,10,10,10,0,0,0,316,0,285,0,0,0,42,74,379,597,306,0,0,0,0,1,0,6,0,0,0,0,0,0,2161,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1445,49,0,0,1498,0,2945,0,6,0,503,232,0,0,0,0,0,0,0,0,0,1295,1,0,0,0,151,0,0,0,0,32,284,149,0,0,155,0,0,0,0,0,10642,0,0,171,4,0,1,6,0,0,0,0,4,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,1,0,0,108,108,0,0,8,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,64,0,0,0,0,157,138,326,0,74,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,201,0,3,1680,1617,4 +109,0,0,24,4,63,81,7,125,7,16,0,0,2,24,0,187,0,12,6,0,1,1,5,0,15,9,0,10,0,4,0,0,4,23,0,67,165,0,0,210,0,0,0,1,0,0,7,0,0,0,0,11,272,0,0,0,0,0,1,0,1,0,0,0,21,0,0,5509,63,484,0,19,0,0,0,0,0,30,3,0,0,0,0,8,21,1130,0,7,23,4,0,4,11,0,323,20,12,0,0,8,4,208,0,15,0,0,1492,0,0,0,0,42,30,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,34,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,796,0,243,0,0,0,13,46,242,242,763,0,0,0,0,1,0,4,0,0,0,0,0,0,2010,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,74,751,33,0,0,817,0,1484,0,3,0,288,35,0,0,0,0,0,0,2,0,0,447,1,0,0,0,13,0,0,0,0,11,193,94,0,0,34,0,0,0,0,0,1256,0,0,1072,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,65,1,1,1,0,64,0,0,0,0,33,90,361,0,29,9,0,0,0,0,0,268,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,11,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1399,1352,4 +116,0,0,29,11,91,157,27,273,28,38,0,0,2,64,1,566,0,20,46,0,97,2,6,0,38,22,0,23,0,9,2,0,10,40,0,101,301,160,0,405,0,0,0,1,0,0,3,0,0,0,0,39,340,0,0,0,0,0,1,0,3,0,12,0,50,0,0,2509,91,1796,0,62,0,0,0,0,0,21,15,0,0,0,0,13,22,311,0,27,40,10,0,8,37,0,745,70,3,0,0,14,11,593,0,44,0,0,2877,0,0,0,0,42,16,1,0,30,0,0,1,0,0,0,23,0,0,0,0,0,0,0,7,0,0,0,8,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,29,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,300,0,247,0,0,0,48,77,337,592,310,0,0,0,0,1,0,6,0,0,0,0,0,0,2096,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,681,336,1430,49,0,0,1499,0,2945,0,6,0,506,292,0,0,0,0,0,0,0,0,0,1121,1,0,0,0,151,0,0,0,0,36,282,149,0,0,155,0,0,0,0,0,10442,0,0,156,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,7,1,0,0,0,0,3,18,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,64,0,0,0,0,119,141,328,0,85,9,0,0,0,0,0,328,10,0,0,0,0,0,0,1,0,0,0,0,11,0,5,34,0,0,0,0,0,0,0,0,117,0,0,215,0,3,1663,1716,4 +0,0,0,5,0,35,6,0,33,0,5,0,0,6,4,0,550,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,1,762,35,6,0,0,41,0,1,0,1,0,0,1,0,0,0,0,1,167,0,0,0,0,0,1,0,0,0,0,0,2,0,0,17186,35,608,0,3,0,0,0,0,0,13,0,0,0,0,0,8,22,4109,0,0,1,0,0,0,0,0,189,20,2,0,0,2,0,589,0,0,1,0,2403,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,598,0,52,0,0,0,1,4,262,1124,587,0,0,0,0,1,0,3,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,84,16,170,5,0,0,182,0,195,0,0,0,40,2,0,0,0,0,0,0,0,0,0,610,1,0,0,0,9,0,0,0,0,0,119,6,0,0,6,0,0,0,0,0,3178,1,0,758,6,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,36,16,0,4,12,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1822,24,4 +0,0,0,12,0,39,28,0,54,0,27,0,0,10,5,0,730,0,6,2,0,0,0,7,0,10,0,0,24,0,1,0,0,0,1,5343,39,6,0,0,52,0,0,0,1,0,0,2,0,0,0,0,1,344,0,0,0,0,0,1,0,0,0,0,0,4,0,0,20015,39,927,0,22,0,0,0,0,0,54,0,0,0,0,0,8,110,3664,0,0,1,0,0,0,0,0,409,35,4,0,0,2,0,838,0,0,81,0,2832,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,1003,0,43,0,0,0,13,16,607,1197,975,0,0,0,0,1,0,3,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,135,16,270,14,0,0,329,0,445,0,0,0,153,5,0,0,0,0,0,0,0,0,0,860,1,0,0,0,9,0,0,0,0,1,141,42,0,0,145,0,0,0,0,0,3228,1,0,182,25,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,60,0,0,0,0,1,40,180,0,23,12,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1396,59,4 +34,0,0,23,6,23,84,15,262,7,83,0,0,0,13,0,199,0,13,10,0,3,0,4,0,1,0,0,1,0,1,0,0,6,11,0,29,399,0,0,364,0,0,0,0,0,0,0,0,0,0,0,1,150,0,0,0,0,0,1,0,0,0,17,0,15,0,0,965,23,684,0,3,0,0,0,0,0,0,9,0,0,0,0,4,4,161,0,15,11,6,0,4,152,0,1347,355,0,0,0,8,6,694,0,5,0,0,582,0,0,0,0,76,18,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,8,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,17,0,0,0,0,0,0,149,0,72,0,0,0,1,4,88,773,181,0,0,0,0,0,0,0,0,0,0,0,0,0,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,113,738,26,0,0,718,0,985,0,3,0,247,27,0,0,0,0,0,0,0,0,0,654,0,0,0,0,17,0,0,0,0,2,179,262,0,0,1062,0,0,0,0,0,1265,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,6,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,43,1,1,1,0,1,0,0,0,0,49,40,14,0,3,0,0,0,0,0,0,406,25,0,0,0,0,0,0,0,0,0,0,0,6,0,1,9,0,0,0,0,0,0,0,0,0,0,0,9,0,0,517,266,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,122,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1226,28,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,193,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,483,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,146,0,47,0,0,0,1,4,182,14,144,0,0,0,0,1,0,3,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,32,10,141,4,0,0,167,0,303,0,0,0,57,14,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,110,39,0,0,0,0,0,0,0,0,106,0,0,116,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,163,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,182,54,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,31,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,41,1,0,0,83,0,57,0,0,0,49,1,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,5,4 +73,0,0,0,6,85,17,24,114,5,15,0,3,0,7,0,95,0,7,20,0,6,6,6,0,20,9,0,25,0,16,2,0,6,38,0,91,12,0,0,188,0,0,0,1,0,0,1,0,0,0,0,30,150,0,0,0,0,0,1,0,1,0,0,0,5,0,0,3900,85,999,0,52,0,0,0,0,0,11,18,0,0,0,0,13,20,692,0,24,38,6,0,2,28,0,433,35,1,0,0,6,6,310,0,4,0,0,2503,0,0,0,0,18,6,2,0,3,0,0,1,0,0,0,13,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,3,0,24,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,53,10,10,10,0,0,0,443,0,119,0,0,0,46,58,282,315,437,0,0,0,0,1,0,5,0,0,0,0,0,0,702,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,29,55,576,6,0,0,537,0,742,0,0,0,222,49,0,0,0,0,0,0,0,0,0,258,1,0,0,0,38,0,0,0,0,26,177,93,0,0,81,0,0,0,0,0,239,0,0,26,3,0,1,5,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,92,1,1,1,0,60,0,0,0,24,49,129,99,0,63,9,0,0,0,0,0,134,11,0,0,0,0,0,0,0,0,0,0,0,7,0,1,5,0,0,0,0,0,0,0,0,0,0,0,9,0,1,183,1367,4 +0,0,0,0,0,8,40,0,48,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,130,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,44,0,331,15,0,0,0,4,0,226,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,203,55,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,86,0,59,0,0,0,52,3,0,0,0,0,0,0,0,0,0,113,0,0,0,0,2,0,0,0,0,0,91,88,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,104,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,4,4 +151,0,0,17,6,111,284,6,853,40,173,0,0,2,65,0,348,0,27,15,0,0,0,11,0,38,18,0,26,0,9,4,0,6,54,0,117,294,0,0,1591,0,3,0,1,0,0,3,1,0,0,0,42,314,0,0,0,0,0,1,0,0,0,18,0,173,0,0,5541,111,1805,0,67,0,0,0,0,0,117,0,0,0,0,0,25,35,904,0,6,54,6,0,13,682,0,5679,220,6,0,0,14,6,3673,0,52,0,0,4205,0,0,0,0,31,67,1,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,17,0,0,0,9,0,0,0,2,0,4,0,21,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,11,0,1,1,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,36,10,10,10,0,0,0,384,0,308,0,0,0,53,72,368,4715,445,0,0,0,0,1,0,4,0,0,0,0,0,0,3258,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,1,0,659,143,1380,26,0,0,1559,0,3535,0,6,0,656,119,0,0,0,0,0,0,0,0,0,1752,1,0,2,0,26,0,0,0,0,39,288,1697,0,0,517,0,0,0,0,0,1537,0,0,769,3,0,1,8,1,0,0,0,6,0,0,0,0,0,0,0,0,0,38,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,13,1,1,0,0,0,3,379,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,6,142,1,1,1,0,55,0,0,0,0,49,171,116,0,86,9,0,0,0,0,0,1981,11,0,0,0,0,0,0,0,0,0,0,0,7,0,1,56,0,0,0,0,0,0,0,0,0,0,0,6,0,2,1395,1548,4 +0,0,0,0,0,9,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,1,0,0,142,9,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,33,0,0,0,0,3,25,138,55,0,0,0,0,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,45,1,0,0,73,0,47,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,92,56,0,0,30,0,0,0,0,0,35,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,4,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,2,0,0,428,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,32,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,141,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,37,0,34,0,0,0,2,4,26,94,53,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,156,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,27,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365,14,4 +75,0,0,1,1,54,26,4,116,7,22,0,5,0,10,0,31,0,7,6,0,1,1,5,0,22,0,0,5,0,3,0,0,1,18,0,55,18,0,0,488,0,0,0,1,0,0,0,0,0,0,0,17,104,0,0,0,0,0,1,0,2,0,0,0,24,0,0,1362,54,342,0,20,0,0,0,0,0,16,3,0,0,0,0,8,13,258,0,4,18,1,0,5,88,0,786,15,0,0,0,10,1,509,0,6,0,0,1566,0,0,0,0,32,21,0,0,18,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,207,0,114,0,0,0,18,39,220,825,207,0,0,0,0,1,0,4,0,0,0,0,0,0,794,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,43,102,297,3,0,0,250,0,275,0,0,0,107,31,0,0,0,0,0,0,0,0,0,217,0,0,0,0,13,0,0,0,0,16,140,231,0,0,30,0,0,0,0,0,716,0,0,21,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,36,0,0,0,0,9,73,42,0,21,9,0,0,0,0,0,334,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,2,0,0,450,1126,4 +51,0,0,1,1,55,8,4,30,2,6,0,3,0,5,0,36,0,7,12,0,1,1,6,0,15,3,0,6,0,4,1,0,1,21,0,56,12,0,0,139,0,0,0,1,0,0,0,0,0,0,0,12,86,0,0,0,0,0,1,0,1,0,0,0,3,0,0,938,55,211,0,16,0,0,0,0,0,6,3,0,0,0,0,15,20,128,0,4,21,1,0,3,8,0,199,15,0,0,0,6,1,118,0,2,0,0,1166,0,0,0,0,11,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,8,0,0,0,3,0,0,0,0,0,1,0,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,118,0,77,0,0,0,15,21,220,164,121,0,0,0,0,1,0,3,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,52,276,2,0,0,222,0,420,0,0,0,91,35,0,0,0,0,0,0,0,0,0,95,0,0,0,0,20,0,0,0,0,11,146,19,0,0,30,0,0,0,0,0,118,0,0,5,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,15,0,0,0,0,9,77,37,0,20,9,0,0,0,0,0,132,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,137,663,4 +119,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,556,0,20,45,0,98,2,6,0,33,22,0,18,0,7,3,0,11,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,345,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2572,89,1770,0,50,0,0,0,0,0,22,15,0,0,0,0,13,22,301,0,27,38,11,0,8,37,0,731,70,3,0,0,14,11,584,0,46,0,0,2339,0,0,0,0,46,15,1,0,32,0,0,1,0,0,0,22,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,293,0,228,0,0,0,42,73,332,589,305,0,0,0,0,1,0,6,0,0,0,0,0,0,2160,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1451,49,0,0,1495,0,2970,0,6,0,503,354,0,0,0,0,0,0,0,0,0,1111,1,0,0,0,151,0,0,0,0,29,282,149,0,0,155,0,0,0,0,0,10422,0,0,178,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,10,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,62,0,0,0,0,115,137,326,0,74,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,187,0,3,1665,1618,4 +382,0,0,3,13,164,186,37,475,72,77,0,6,0,128,1,927,0,15,20,0,10,6,9,2,66,54,0,23,0,14,4,0,11,96,0,177,195,6492,0,1036,0,0,0,1,0,0,5,1,0,0,0,75,406,0,0,0,0,0,1,0,3,0,18,0,108,0,0,38444,164,2889,0,95,0,0,0,0,0,140,27,0,0,0,0,14,25,7778,0,37,96,11,0,11,229,0,2208,135,11,0,0,18,13,2501,0,80,1,0,7229,0,0,0,0,127,90,2,0,31,0,0,1,0,0,0,22,0,0,0,0,0,0,0,19,0,0,0,40,0,0,0,0,0,2,0,28,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,95,8,0,0,0,0,0,2,0,0,0,0,0,8,24,0,0,0,3,0,0,0,0,9,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,117,12,12,12,0,0,2,4932,2,484,0,0,2,91,317,404,136796,4948,0,0,0,0,1,0,13,0,0,0,0,0,0,11082,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,364,247,1571,21,0,0,1655,0,1930,0,3,0,834,127528,0,0,0,0,0,0,0,0,0,1815,1,0,2,0,47,0,0,0,0,59,344,634,0,0,318,0,0,0,0,0,12648,0,0,8395,3,0,1,12,0,0,0,0,15,0,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,1,0,0,0,0,3,144,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3,174,1,1,1,0,502,0,0,0,0,180,273,441,1,152,9,0,0,0,0,0,967,18,0,0,0,0,0,0,0,0,0,0,0,14,0,2,78,1,0,0,0,0,0,0,28,8,0,0,27,0,4,4253,2580,4 +12,0,0,11,1,46,74,1,365,36,101,0,0,2,49,0,83,0,8,5,0,0,0,5,0,11,6,0,9,0,3,0,0,1,17,0,47,54,0,0,681,0,0,0,1,0,0,13,0,0,0,0,6,313,0,0,0,0,0,1,0,0,0,18,0,87,0,0,21060,46,721,0,14,0,0,0,0,0,49,0,0,0,0,1,9,29,1821,0,1,17,1,0,3,301,0,2494,250,20,0,0,4,1,1568,0,35,0,0,1080,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,10,10,10,0,0,0,1777,0,176,0,0,0,7,18,215,2097,1762,0,0,0,0,1,0,3,0,0,0,0,0,0,5820,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,1,0,135,68,456,13,0,0,513,0,1506,0,1,0,278,34,0,0,0,0,0,0,0,0,0,682,1,0,0,0,10,0,0,0,0,7,180,814,0,0,560,0,0,0,0,0,1999,0,0,6000,2,0,1,1,0,0,0,0,26,0,0,0,2,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,48,1,1,1,0,13,0,0,0,0,9,64,417,0,21,8,0,0,0,0,0,779,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,42,0,0,0,0,0,0,0,0,0,0,0,1,0,12,2384,89,4 +0,0,0,0,0,8,4,0,12,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,57,8,36,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,12,0,0,0,0,0,2,8,0,79,15,0,0,0,4,0,46,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,17,0,0,0,0,3,21,58,29,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,39,0,25,0,0,0,5,3,0,0,0,0,0,0,0,0,0,41,0,0,0,0,2,0,0,0,0,0,91,16,0,0,30,0,0,0,0,0,24,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,4,4 +372,0,0,36,29,113,250,69,608,42,97,0,0,2,86,0,561,0,24,84,0,123,2,7,0,69,22,0,35,0,9,2,0,28,50,0,135,400,160,0,1028,0,0,0,1,0,0,5,1,0,0,0,70,471,0,0,0,0,0,1,0,3,0,12,0,102,0,0,4364,113,4017,0,103,0,0,0,0,0,109,63,0,0,0,0,14,28,615,0,69,50,28,0,11,211,0,2235,95,10,0,0,18,29,1557,0,62,0,0,4441,0,0,0,0,99,86,0,0,38,0,0,1,0,0,0,19,0,0,0,0,0,0,0,27,0,0,0,18,0,0,0,2,0,6,0,73,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,3,0,0,0,0,0,1,14,0,0,0,0,0,0,0,20,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,107,10,10,10,0,0,0,523,0,339,0,0,0,79,131,376,1995,578,0,0,0,0,1,0,5,0,0,0,0,0,0,5011,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,886,414,2172,76,0,0,2318,0,4174,0,8,0,786,199,0,0,0,0,0,0,0,0,0,1628,1,0,2,0,216,0,0,0,0,63,348,550,0,0,211,0,0,0,0,0,10385,0,0,152,3,0,1,9,0,0,0,0,14,0,0,0,4,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,1,0,0,0,0,3,30,3,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,118,1,1,1,0,105,0,0,0,0,177,185,223,0,128,9,0,0,0,0,0,860,32,0,0,0,0,0,0,1,0,0,0,0,23,0,4,50,0,0,0,0,0,0,0,0,117,0,0,195,0,5,2629,2603,4 +0,0,0,3,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,2,0,0,18,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,3,0,0,32,0,93,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,7,4 +0,0,0,7,2,15,50,2,56,10,6,0,0,0,19,0,123,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,4,0,17,136,0,0,39,0,0,0,1,0,0,7,0,0,0,0,1,168,0,0,0,0,0,1,0,0,0,0,0,17,0,0,3885,15,219,0,3,0,0,0,0,0,23,0,0,0,0,0,1,10,713,0,2,4,2,0,2,0,0,89,0,11,0,0,6,2,89,0,14,0,0,358,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,540,0,273,0,0,0,2,7,40,24,740,0,0,0,0,1,0,0,0,0,0,0,0,0,2542,0,191,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,236,38,453,9,0,0,454,0,1516,0,2,0,153,24,0,0,0,0,0,0,0,0,0,265,1,0,0,0,2,0,0,0,0,1,134,43,0,0,0,0,0,0,0,0,745,0,0,904,0,0,1,0,0,0,0,0,15,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,13,1,1,1,0,2,0,0,0,0,17,21,172,0,6,0,0,0,0,0,0,89,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,1409,66,4 +0,0,0,0,0,1,0,1,20,0,1,0,0,0,1,0,731,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,727,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,9,0,0,1,107,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,147,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,83,0,57,0,0,0,49,6,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,4,4 +196,0,0,0,10,151,53,40,330,3,73,0,4,0,5,0,112,0,7,30,0,10,10,6,0,15,3,0,26,0,43,1,0,10,98,0,161,15,0,0,608,0,0,0,1,0,0,0,0,0,0,0,51,190,0,0,0,0,0,1,0,1,0,0,0,32,0,0,6270,151,2504,0,75,0,0,0,0,0,473,30,0,0,0,0,15,20,350,0,40,98,10,0,4,220,0,1995,160,0,0,0,8,10,1206,0,2,0,0,4995,0,0,0,0,49,61,0,0,3,0,0,0,0,0,0,12,0,0,0,0,0,0,0,29,0,0,0,30,0,0,0,0,0,1,0,20,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,33,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,45,10,10,10,0,0,0,352,0,299,0,0,0,93,109,383,1604,351,0,0,0,0,1,0,3,0,0,0,0,0,0,5112,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,39,69,893,12,0,0,1318,0,770,0,0,0,902,76,0,0,0,0,0,0,0,0,0,584,0,0,0,0,56,0,0,0,0,50,242,506,0,0,373,0,0,0,0,0,1091,0,0,61,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,1,0,0,0,0,3,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,154,1,1,1,0,139,0,0,0,0,81,259,114,0,79,9,0,0,0,0,0,760,15,0,0,0,0,0,0,0,0,0,0,0,11,0,1,5,0,0,0,0,0,0,0,0,0,0,0,17,0,0,1678,857,4 +0,0,0,2,12,13,74,15,425,1,18,0,0,0,7,0,27838,0,7,20,0,6,0,1,0,3,0,0,3,0,1,0,0,9,2,0,19,6,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,1,3,0,0,0,0,4,0,0,332,13,41017,0,6,0,0,0,0,0,6,18,0,0,0,0,2,2,16,0,15,2,9,0,0,0,0,23,0,0,0,0,2,12,27999,0,0,0,0,677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0,0,0,21,0,30,0,0,0,0,3,40,142,47,0,0,0,0,0,0,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,10,6,200,14,0,0,165,0,55825,0,0,0,45,514,0,0,0,0,0,0,0,0,0,28369,0,0,0,0,27,0,0,0,0,0,95,6,0,0,0,0,0,0,0,0,43897,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,3,3,0,0,0,0,28,18,2,0,7,0,0,0,0,0,0,18,3,0,0,0,0,0,0,0,0,0,0,0,6,3,2,1,0,0,0,0,0,0,0,0,0,0,0,12,0,0,493,62,4 +30,0,0,9,1,63,31,1,43,6,4,0,0,2,16,0,74,0,8,8,0,0,0,5,0,13,0,0,5,0,2,0,0,1,27,0,64,91,0,0,102,0,0,0,1,0,0,1,1,0,0,0,7,106,0,0,0,0,0,1,0,0,0,12,0,14,0,0,859,63,141,0,10,0,0,0,0,0,9,0,0,0,0,0,12,20,132,0,1,27,1,0,1,0,0,134,5,4,1,1,4,1,83,0,9,0,0,1125,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,3,0,0,0,11,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,10,10,10,0,0,0,112,0,86,0,0,0,7,10,236,66,119,0,0,0,0,1,0,3,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,142,34,408,10,0,0,403,0,1364,0,1,0,151,30,0,0,0,1,0,0,0,0,0,178,1,0,3,0,13,0,0,0,0,8,165,16,0,0,0,0,0,0,0,0,219,0,0,21,3,0,1,1,0,0,0,0,7,0,0,0,2,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,65,1,1,1,0,5,0,0,0,0,9,91,64,0,11,9,0,0,0,0,0,110,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,35126,56,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,77,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,45,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,1,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,36,4 +54,0,0,1,1,59,12,4,59,3,13,0,3,0,6,0,45,0,7,10,0,1,1,6,0,23,12,0,7,0,4,1,0,1,23,0,60,12,0,0,180,0,0,0,1,0,0,0,0,0,0,0,20,107,0,0,0,0,0,1,0,1,0,0,0,8,0,0,990,59,277,0,25,0,0,0,0,0,10,3,0,0,0,0,13,18,141,0,4,23,1,0,4,31,0,395,30,0,0,0,6,1,271,0,3,0,0,8855,0,0,0,0,16,11,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,29,10,10,10,0,0,0,155,0,94,0,0,0,23,43,226,346,132,0,0,0,0,1,0,3,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,55,284,2,0,0,242,0,401,0,0,0,105,31,0,0,0,0,0,0,0,0,0,145,0,0,0,0,18,0,0,0,0,19,150,72,0,0,60,0,0,0,0,0,716,0,0,7,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,18,0,0,0,0,9,83,39,0,38,9,0,0,0,0,0,191,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,159,994,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,0,0,0,34,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +0,0,0,5,0,37,11,0,41,3,9,0,0,6,4,0,602,0,6,0,0,0,0,9,0,11,0,0,12,0,1,0,0,0,2,1123,37,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,236,0,0,0,0,0,1,0,0,0,0,0,2,0,0,36262,37,685,0,9,0,0,0,0,0,20,0,0,0,0,0,9,53,5881,0,0,2,0,0,0,0,0,228,20,2,0,0,2,0,657,0,0,13,0,3981,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,1712,0,35,0,0,0,4,7,440,2164,1688,0,0,0,0,1,0,3,0,0,0,0,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,84,25,198,5,0,0,217,0,274,0,0,0,63,14,0,0,0,0,0,0,0,0,0,679,1,0,0,0,9,0,0,0,0,1,120,13,0,0,30,0,0,0,0,0,3736,1,0,2861,12,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,12,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,20,0,0,0,0,1,39,213,0,10,14,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2099,106,4 +25,0,17,12,4,300,57,6,98,26,17,1,1,3,255,0,134,0,11,226,0,1,0,7,1,8,0,0,14,0,18,0,0,2,47,21,303,102,0,0,412,0,0,0,1,0,0,18,0,0,0,0,19,463,0,0,0,0,0,1,0,0,0,15,0,44,0,0,10169,300,687,0,31,0,0,0,0,0,65,3,0,0,0,5,224,256,2155,0,6,47,2,0,4,21,0,865,35,27,0,0,7,4,709,0,34,0,0,4027,0,0,0,0,5,0,8,0,0,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,9,0,0,0,19,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,2,33,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,5,0,0,0,0,238,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,10,10,10,0,0,0,1872,5,436,0,0,0,36,37,833,754,1892,0,0,0,0,1,0,4,0,0,0,0,0,0,3277,0,0,0,0,0,0,0,0,0,0,0,0,17,1,8,0,0,0,0,2,0,2603,493,1772,16,0,0,1503,0,1739,0,1,0,452,80,0,0,0,0,0,0,4,0,0,577,1,0,0,0,235,0,0,0,0,17,427,211,0,18,60,0,0,0,0,0,1091,0,0,2112,3,0,1,1,0,0,0,0,28,0,0,0,8,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,312,1,1,1,0,48,0,0,0,0,25,350,710,0,31,9,0,0,0,0,0,308,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,33,0,0,0,0,0,0,0,2,0,0,0,154,0,8,1758,248,4 +12,0,0,18,0,69,32,0,232,4,72,0,0,14,53,0,1094,0,7,2,0,0,0,9,0,11,0,0,19,0,6,0,0,0,26,1775,69,6,0,0,426,0,0,0,1,0,0,7,0,0,0,0,6,270,0,0,0,0,0,1,0,0,0,18,0,44,0,0,18353,69,1554,0,21,0,0,0,0,0,49,0,0,0,0,0,10,53,3742,0,0,26,0,0,6,149,0,1711,140,11,0,0,2,0,2049,0,12,85,0,3954,0,0,0,0,14,2,1,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,3,0,9,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,59,12,12,12,0,0,0,1183,0,153,0,0,0,13,16,420,2258,1158,0,0,0,0,1,0,5,0,0,0,0,0,0,912,0,0,0,0,0,0,0,0,0,0,0,0,7,1,4,0,0,0,0,1,0,246,37,455,21,0,0,495,0,503,0,0,0,308,58,0,0,0,0,0,0,4,0,0,1504,1,0,0,0,11,0,0,0,0,6,171,494,0,0,345,0,1,0,0,0,7362,1,0,347,15,0,1,1,1,0,0,0,16,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,15,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,75,1,1,1,0,34,0,0,0,0,1,95,384,0,22,14,0,0,0,0,0,512,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,31,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1752,217,4 +1,0,0,8,0,16,2,0,27,0,3,0,0,0,4,0,15,0,7,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,6,0,16,6,0,0,22,0,2,0,1,0,0,5,0,0,0,0,0,106,0,0,0,0,0,1,0,0,0,0,0,5,0,0,48709,16,74,0,1,0,0,0,0,0,20,0,0,0,0,1,2,11,10215,0,0,6,0,0,0,0,0,13,0,9,1,0,2,0,26,0,2,0,0,225,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,10,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,6096,0,55,0,0,0,0,3,37,5,6097,0,0,0,0,1,0,0,0,0,0,0,0,0,14423,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,7,105,8,0,0,183,0,257,0,0,0,109,3,0,0,0,0,0,0,0,0,0,58,1,0,0,0,3,0,0,0,0,0,99,69,0,0,0,0,0,0,0,0,2219,0,0,14041,0,0,1,0,0,0,0,0,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,22,313,0,1,0,0,0,1,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4283,23,4 +10,0,0,8,0,11,2,0,15,0,2,0,0,0,7,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,6,0,0,18,0,1,0,1,0,0,1,0,0,0,0,1,35,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1182,11,46,0,3,0,0,0,0,0,6,0,0,0,0,0,1,6,476,0,0,0,0,0,0,0,0,13,0,2,0,0,2,0,26,0,0,0,0,281,0,0,0,0,3,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,55,0,38,0,0,0,2,5,26,12,63,0,0,0,0,1,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,116,16,0,0,98,0,186,0,0,0,31,12,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,2,93,24,0,0,0,0,0,0,0,0,210,0,0,737,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,363,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,45,0,3,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,248,22,4 +315,0,0,28,26,107,253,59,775,34,131,0,0,2,77,1,688,0,22,79,0,122,1,6,0,61,10,0,34,0,6,2,0,25,50,0,127,352,159,0,1379,0,0,0,1,0,0,5,1,0,0,0,59,411,0,0,0,0,0,1,0,2,0,20,0,134,0,0,4211,107,3924,0,93,0,0,0,0,0,113,57,0,0,0,0,14,28,601,0,59,50,25,0,11,408,0,3638,90,11,0,0,16,26,2528,0,55,0,0,2926,0,0,0,0,72,90,0,0,40,0,0,1,0,0,0,19,0,0,0,0,0,0,0,26,0,0,0,17,0,0,0,2,0,7,0,75,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2,0,0,0,0,0,1,13,0,0,0,0,0,0,0,18,6,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,94,10,10,10,0,0,0,520,0,410,0,0,0,65,84,404,3162,555,0,0,0,0,1,0,3,0,0,0,0,0,0,4698,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,782,382,2020,62,0,0,2137,0,3869,0,7,0,765,308,0,0,0,0,0,0,0,0,0,1949,1,0,2,0,208,0,0,0,0,56,329,1057,0,0,192,0,0,0,0,0,10930,0,0,120,3,0,1,8,0,0,0,0,14,0,0,0,4,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,60,60,0,0,15,1,0,0,0,0,3,11,4,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,110,1,1,1,0,56,0,0,0,0,211,177,190,0,104,9,0,0,0,0,0,1338,30,0,0,0,0,0,0,1,0,0,0,0,21,0,4,44,0,0,0,0,0,0,0,0,117,0,0,191,0,6,2400,1496,4 +0,0,0,5,0,36,25,0,47,3,24,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12505,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,702,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39836,36,914,0,24,0,0,0,0,0,46,0,0,0,0,0,8,94,6506,0,0,1,0,0,0,0,0,368,25,1,0,0,2,0,836,0,0,92,0,4967,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1429,0,32,0,0,0,13,16,497,2093,1407,0,0,0,0,1,0,3,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,280,5,0,0,308,0,292,0,0,0,146,10,0,0,0,0,0,0,0,0,0,861,1,0,0,0,9,0,0,0,0,1,164,6,0,0,137,0,0,0,0,0,4625,1,0,996,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,208,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2484,22,4 +0,0,0,0,0,8,3,0,4,0,2,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,53,8,23,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,12,0,0,0,0,0,1,0,0,9,0,0,0,0,4,0,10,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,19,0,0,0,0,3,21,5,28,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,40,1,0,0,38,0,26,0,0,0,4,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,3,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,5,4 +0,0,0,3,0,9,3,0,24,1,3,0,0,0,8,0,26,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,44,0,1,0,1,0,0,1,1,0,0,0,0,284,0,0,0,0,0,1,0,0,0,0,0,9,0,0,4645,9,63,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,453,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,68,0,0,0,0,1180,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,35,0,39,0,0,0,0,3,24,12,44,0,0,0,0,1,0,0,0,0,0,0,0,0,2132,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,156,3,0,0,158,0,173,0,0,0,102,12,0,0,0,0,0,0,0,0,0,70,1,0,2,0,2,0,0,0,0,0,91,95,0,0,0,0,0,0,0,0,273,0,0,736,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,96,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,257,73,4 +119,0,0,29,11,91,158,27,276,30,39,0,0,2,66,1,568,0,20,46,0,97,2,6,0,33,22,0,17,0,8,2,0,10,38,0,101,301,160,0,397,0,0,0,1,0,0,3,0,0,0,0,34,347,0,0,0,0,0,1,0,2,0,12,0,53,0,0,2536,91,1784,0,50,0,0,0,0,0,22,15,0,0,0,0,13,22,287,0,27,38,10,0,8,42,0,766,70,3,0,0,14,11,612,0,46,0,0,2161,0,0,0,0,46,15,1,0,30,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,291,0,235,0,0,0,42,74,351,616,298,0,0,0,0,1,0,6,0,0,0,0,0,0,2313,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,677,338,1493,49,0,0,1503,0,2963,0,6,0,504,317,0,0,0,0,0,0,0,0,0,1130,1,0,0,0,151,0,0,0,0,30,284,162,0,0,155,0,0,0,0,0,10424,0,0,150,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,56,56,0,0,9,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,96,1,1,1,0,63,0,0,0,0,125,139,326,0,73,9,0,0,0,0,0,334,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,245,0,2,1806,1641,4 +3,0,0,6,1,46,6,0,56,2,7,0,0,6,7,0,790,0,6,2,0,0,0,8,0,11,0,0,54,0,1,0,0,0,9,898,46,28,0,0,48,0,0,0,1,0,0,11,1,0,0,0,1,265,0,0,0,0,0,1,0,0,0,0,0,5,0,0,11061,46,973,0,51,0,0,0,0,0,44,0,0,0,0,3,9,33,1830,0,0,9,0,0,0,0,0,260,20,22,0,0,2,1,906,0,2,2,0,1626,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,1051,0,194,0,0,0,0,3,275,376,1016,0,0,0,0,1,0,3,0,0,0,0,0,0,1673,0,0,0,0,0,0,0,0,0,0,0,0,11,1,2,0,0,0,0,1,0,84,23,272,7,0,0,377,0,500,0,0,0,210,55,0,0,0,0,0,0,0,0,0,878,1,0,4,0,10,0,0,0,0,1,139,115,0,0,6,0,1,0,0,0,2404,1,0,1065,8,0,1,1,0,0,0,0,31,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,50,0,0,0,0,1,55,575,0,52,14,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1153,799,4 +0,0,0,6,0,11,2,0,24,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1212,11,49,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,295,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,23,0,0,0,0,167,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,175,0,41,0,0,0,0,3,30,6,185,0,0,0,0,1,0,0,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,108,8,0,0,129,0,227,0,0,0,52,7,0,0,0,0,0,0,4,0,0,52,1,0,0,0,2,0,0,0,0,0,97,34,0,0,0,0,0,0,0,0,103,0,0,276,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,127,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,212,25,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,15,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,15,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,23,0,0,0,6,7,23,13,33,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,30,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,4 +219,0,0,0,3,85,57,12,334,3,104,1,2,0,5,0,48,0,7,15,0,3,3,3,0,6,4,0,74,0,298,1,0,3,36,0,88,12,0,0,508,0,0,0,0,0,0,0,0,0,0,0,305,135,0,0,0,0,0,1,0,0,0,0,0,24,0,0,5910,85,1665,0,380,0,0,0,0,0,272,9,0,0,0,0,11,11,241,0,12,36,3,0,3,294,0,3581,390,0,0,0,6,3,1676,0,2,0,0,5731,0,0,0,0,83,93,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,78,0,0,0,77,0,0,0,0,0,1,0,13,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,72,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,231,0,193,0,0,0,604,608,164,2444,252,0,0,0,0,0,0,0,0,0,0,0,0,0,3948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,675,6,0,0,705,0,564,0,0,0,470,63,0,0,0,0,0,0,0,0,0,558,0,0,0,0,24,0,0,0,0,304,176,580,0,0,875,0,0,0,0,0,1305,0,0,299,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,85,1,1,1,0,675,0,0,0,586,25,124,36,0,383,0,0,0,0,0,0,635,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,1,0,0,0,0,0,0,0,0,0,0,4,0,0,1201,1962,4 +1,0,0,3,0,26,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,26,6,0,0,20,0,0,0,1,0,0,4,0,0,0,0,2,112,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1183,26,66,0,3,0,0,0,0,0,20,0,0,0,0,0,7,17,173,0,0,2,0,0,0,0,0,77,5,8,0,0,2,0,31,0,0,0,0,473,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,147,0,48,0,0,0,1,4,178,14,135,0,0,0,0,1,0,3,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,10,131,3,0,0,155,0,228,0,0,0,52,4,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,108,32,0,0,0,0,0,0,0,0,85,0,0,107,3,0,1,1,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,1,0,0,0,0,1,28,106,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,55,4 +6,0,0,0,0,16,7,0,13,0,3,0,4,0,3,0,23,0,6,3,0,0,0,0,0,1,0,0,1,0,6,0,0,0,4,0,16,16,0,0,51,0,0,0,1,0,0,1,0,0,0,0,6,31,0,0,0,0,0,1,0,0,0,0,0,0,0,0,182,16,49,0,8,0,0,0,0,0,2,0,0,0,0,0,2,4,11,0,0,4,0,0,4,0,0,39,0,0,0,0,10,0,33,0,0,0,0,279,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,30,0,46,0,0,0,11,11,36,38,50,0,0,0,0,1,0,1,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,32,49,113,0,0,0,101,0,1020,0,0,0,31,8,0,0,0,0,0,0,0,0,0,59,1,0,0,0,3,0,0,0,0,7,99,12,0,0,0,0,1,0,0,0,38139,0,0,8,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,11,0,0,0,0,1,20,24,0,8,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,44,4 +0,0,2,0,1,27,9,0,440,1,5,0,1,0,2,0,3342,0,6,4,0,1,0,1,0,0,0,0,0,0,1,0,0,0,5,26,27,9,0,0,42,0,0,0,1,0,0,0,0,0,0,0,0,58,0,0,0,0,0,1,0,0,0,0,0,2,0,0,285,27,3801,0,1,0,0,0,0,0,1,0,0,0,0,0,2,2,23,0,0,5,0,0,1,16,0,125,0,0,0,0,4,1,3430,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,838,0,0,0,0,0,0,35,0,35,0,0,0,0,3,37,92,53,0,0,0,0,1,0,0,0,0,0,6729,3,1,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,8425,104,1,0,0,118,0,320,0,0,0,30,415,0,0,0,0,0,0,0,0,0,3805,0,0,0,0,6,0,0,0,0,0,104,47,0,2,0,0,0,0,0,0,6706,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,3,32,15,0,1,0,0,0,0,0,0,64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,105,4 +182,0,4,3,6,109,56,20,766,27,60,0,7,0,34,25,7873,0,7,22,0,6,5,8,0,25,33,0,28,0,20,4,0,5,47,26,114,34,0,0,734,0,3,0,1,0,0,3,1,0,0,0,41,239,0,0,0,0,0,1,0,0,0,18,0,50,0,0,4488,109,9648,0,65,0,0,0,0,0,52,15,0,0,0,0,17,27,914,0,20,47,5,0,8,187,0,1712,130,7,0,0,14,6,9079,0,25,0,0,6946,0,0,0,0,32,31,1,0,3,0,0,1,0,0,0,22,0,0,0,0,0,0,0,14,0,0,0,16,0,0,0,0,0,5,0,51,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,14,1,1,1,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,7,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1023,10,10,10,0,0,0,351,0,273,0,0,0,63,98,337,1568,395,0,0,0,0,1,0,4,0,0,0,15893,3,1,2222,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,1,0,91,20058,780,13,0,0,700,0,2295,0,0,0,327,648,0,0,0,0,0,0,0,0,0,8828,1,0,2,0,41,0,0,0,0,33,203,475,0,4,320,0,0,0,1,0,16725,0,0,791,3,0,1,8,1,0,0,0,7,0,0,0,0,0,0,0,0,0,24,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,18,1,2,0,0,0,3,404,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,133,1,1,1,0,80,0,0,0,24,43,161,117,0,101,9,0,0,0,0,0,600,16,0,0,0,0,0,0,0,0,0,0,0,6,0,1,31,0,0,0,0,0,0,0,0,0,0,0,8,0,2,1003,1000,4 +1,0,0,5,0,34,6,0,35,0,5,0,0,6,4,0,570,0,6,1,0,0,0,8,0,11,0,0,5,0,1,0,0,0,1,762,34,6,0,0,41,0,1,0,1,0,0,2,0,0,0,0,1,172,0,0,0,0,0,1,0,0,0,0,0,2,0,0,18258,34,639,0,4,0,0,0,0,0,18,0,0,0,0,1,8,26,4216,0,0,1,0,0,0,0,0,192,20,5,0,0,2,0,610,0,0,1,0,3222,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,627,0,55,0,0,0,2,5,258,1141,609,0,0,0,0,1,0,3,0,0,0,0,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,16,165,5,0,0,192,0,211,0,0,0,51,3,0,0,0,0,0,0,0,0,0,632,1,0,0,0,9,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3372,1,0,822,6,0,1,1,1,0,0,0,6,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,9,0,0,0,0,1,35,83,0,5,12,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1938,29,4 +276,0,0,28,21,94,166,37,371,32,43,0,0,2,69,3,978,0,20,67,0,117,2,6,0,35,22,0,19,0,8,2,0,21,41,0,114,301,160,0,380,0,0,0,1,0,0,3,0,0,0,0,36,397,0,0,0,0,0,1,0,3,0,12,0,53,0,0,2636,94,3639,0,55,0,0,0,0,0,18,45,0,0,0,0,14,23,286,0,37,41,21,0,7,29,0,689,55,2,0,0,14,21,727,0,49,0,0,2648,0,0,0,0,63,32,0,0,28,0,0,1,0,0,0,19,0,0,0,0,0,0,0,26,0,0,0,15,0,0,0,0,0,7,0,70,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,32,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,19,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,82,10,10,10,0,0,0,329,0,334,0,0,0,44,74,453,544,305,0,0,0,0,1,0,5,0,0,0,0,0,0,2933,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,341,1846,58,0,0,1837,0,3166,0,6,0,586,464,0,0,0,0,0,0,0,0,0,1652,1,0,0,0,192,0,0,0,0,40,287,132,0,0,125,0,0,0,0,0,10947,0,0,157,5,0,1,7,0,0,0,0,5,0,0,0,1,0,0,0,0,0,31,0,0,0,0,0,0,0,0,2,0,0,159,159,0,0,10,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,100,1,1,1,0,60,0,0,0,0,283,155,317,0,77,9,0,0,0,0,0,304,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,36,0,0,0,0,0,0,0,0,117,0,0,198,0,2,1842,1817,4 +26,0,0,6,0,45,36,0,54,30,35,0,0,8,8,0,1032,0,7,1,0,0,0,8,0,10,12,0,23,0,5,0,0,0,3,6361,45,6,0,0,56,0,6,0,1,0,0,7,0,0,0,0,5,383,0,0,0,0,0,1,0,0,0,0,0,7,0,0,75521,45,1343,0,25,0,0,0,0,0,102,0,0,0,0,0,8,126,14684,0,0,3,0,0,0,0,0,425,30,11,0,0,2,0,1214,0,4,70,0,4928,0,0,0,0,10,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,10331,0,133,0,0,0,18,29,681,1441,10297,0,0,0,0,1,0,8,0,0,0,0,0,0,800,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,124,98,353,6,0,0,397,0,368,0,0,0,222,32,0,0,0,0,0,0,0,0,0,1180,1,0,0,0,9,0,0,0,0,2,149,60,0,0,171,0,0,0,0,0,5258,1,0,1054,36,0,1,1,1,0,0,0,17,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,36,365,0,0,0,4,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,54,0,0,0,0,1,48,223,0,38,12,0,1,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,34,0,0,0,0,0,0,0,0,0,0,0,0,0,8,2243,114,4 +5,0,0,11,2,38,9,8,55,15,11,0,0,2,24,2,70,0,7,9,0,2,2,5,4,17,18,0,15,0,2,0,0,2,9,0,40,204,20,0,194,0,0,0,0,0,0,0,0,0,0,0,11,158,0,0,0,0,0,1,0,0,0,0,0,26,0,0,1137,38,413,0,19,0,0,0,0,0,4,6,0,0,0,0,8,14,112,0,8,9,2,0,2,16,0,270,30,0,0,0,2,2,304,0,16,0,0,1401,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,10,10,10,0,0,0,101,0,47,0,0,0,16,70,176,247,104,0,0,0,0,0,0,2,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,36,41,295,14,0,0,190,0,423,0,0,0,54,28,0,0,0,0,0,0,0,0,0,180,0,0,0,0,22,0,0,0,0,7,124,29,0,0,50,0,0,0,0,0,5629,0,0,1,3,0,1,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,42,0,0,0,0,17,49,9,0,43,9,0,0,0,0,0,105,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,19,0,0,0,0,0,0,0,0,0,0,0,3,0,0,182,44,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,46,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,70,0,46,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,32,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,4,4 +1,0,0,3,1,34,37,0,462,1,18,2,5,2,5,0,98,0,7,5,0,0,0,6,0,9,0,0,2,0,1,0,0,0,6,0,34,91,0,0,154,0,0,0,1,0,0,0,0,0,0,0,2,108,0,0,0,0,0,1,0,0,0,0,0,4,0,0,754,34,219,0,1,0,0,0,0,0,3,0,0,0,0,0,8,13,158,0,0,6,0,0,5,50,0,462,70,0,0,0,13,1,346,0,1,0,0,627,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,11,10,10,10,0,0,0,91,0,59,0,0,0,0,3,193,236,106,0,0,0,0,1,0,3,0,0,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,64,62,144,4,0,0,149,0,288,0,0,0,50,393,0,0,0,0,0,0,0,0,0,636,0,0,0,0,11,0,0,0,0,0,116,98,0,0,143,0,1,0,0,0,317,0,0,0,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,1,0,0,0,0,1,40,18,0,3,9,0,0,0,0,0,158,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,103,4 +0,0,0,3,0,8,2,0,4,0,2,0,0,0,2,0,10,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,2,0,0,16,8,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,58,0,0,0,3,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,28,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,0,0,0,135,8,41,0,1,0,0,0,0,0,10,0,0,0,0,0,1,1,45,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,36,0,0,0,0,3,21,4,54,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,47,0,30,0,0,0,13,4,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,4,4 +73,0,0,11,2,112,334,2,954,31,170,0,4,2,49,0,139,0,10,13,0,0,0,7,0,21,3,0,16,0,3,0,0,2,65,0,114,134,4,0,1999,0,0,0,1,0,0,1,1,0,0,0,16,155,0,1,0,0,0,1,0,0,0,12,0,186,0,0,2130,112,1602,0,29,0,0,0,0,0,8,0,0,0,0,0,18,26,164,0,2,65,2,0,9,880,0,6733,100,5,1,0,14,2,4552,0,39,0,0,2094,0,0,0,0,19,0,2,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,3,0,1,0,16,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,36,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,14,10,10,10,0,0,0,164,0,156,0,0,0,18,26,308,5425,195,0,0,0,0,1,0,4,0,0,0,0,0,0,1900,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,267,125,740,16,0,0,1019,0,2209,0,2,0,604,56,0,0,0,0,0,0,0,0,0,1662,1,0,6,0,20,0,0,0,0,13,238,2204,0,0,246,0,1,0,0,0,10127,0,0,18,3,0,1,1,0,0,0,0,8,0,0,0,2,0,0,0,0,0,31,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,2,115,1,1,1,0,22,0,0,0,0,17,179,103,0,34,9,0,0,0,0,0,2331,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,39,0,0,0,0,0,0,0,0,0,0,0,2,0,1,535,167,4 +79,0,0,7,4,69,133,4,292,23,46,0,0,2,36,0,233,0,15,11,0,0,0,7,0,29,9,0,23,0,5,3,0,4,30,0,73,202,0,0,445,0,0,0,1,0,0,6,0,0,0,0,29,231,0,0,0,0,0,1,0,0,0,0,0,65,0,0,5523,69,747,0,50,0,0,0,0,0,61,0,0,0,0,0,17,29,843,0,4,30,4,0,6,166,0,1589,35,10,0,0,10,4,1044,0,31,0,0,2421,0,0,0,0,21,29,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,10,0,0,0,6,0,0,0,2,0,4,0,10,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,24,10,10,10,0,0,0,631,0,196,0,0,0,35,47,259,1337,631,0,0,0,0,1,0,3,0,0,0,0,0,0,2148,0,0,0,0,0,0,0,0,0,0,0,0,6,1,2,0,0,0,0,1,0,450,90,921,11,0,0,1004,0,1369,0,4,0,387,66,0,0,0,0,0,0,3,0,0,757,1,0,0,0,18,0,0,0,0,29,220,475,0,0,60,0,0,0,0,0,1203,0,0,806,3,0,1,5,0,0,0,0,13,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,73,1,1,1,0,40,0,0,0,0,33,103,185,0,60,9,0,0,0,0,0,563,8,0,0,0,0,0,0,0,0,0,0,0,5,0,1,29,0,0,0,0,0,0,0,0,0,0,0,4,0,2,835,1072,4 +111,0,0,24,4,63,81,7,125,3,16,0,0,2,19,0,187,0,12,6,0,1,1,5,0,23,9,0,9,0,5,0,0,4,23,0,67,164,0,0,201,0,0,0,1,0,0,7,0,0,0,0,20,273,0,0,0,0,0,1,0,1,0,0,0,16,0,0,4975,63,486,0,27,0,0,0,0,0,30,3,0,0,0,0,8,21,984,0,7,23,4,0,4,11,0,342,20,12,0,0,8,4,205,0,10,0,0,1684,0,0,0,0,41,30,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,36,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,731,0,245,0,0,0,23,60,242,260,698,0,0,0,0,1,0,4,0,0,0,0,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,69,769,33,0,0,817,0,1517,0,3,0,288,27,0,0,0,0,0,0,2,0,0,442,1,0,0,0,13,0,0,0,0,20,193,94,0,0,34,0,0,0,0,0,1182,0,0,886,3,0,1,2,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,65,1,1,1,0,56,0,0,0,0,33,90,361,0,37,9,0,0,0,0,0,263,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,7,0,0,0,0,0,0,0,0,0,0,0,6,0,2,1297,1542,4 +0,0,0,0,2,25,12,8,64,0,9,0,1,0,3,0,46,0,6,6,0,3,2,2,0,1,0,0,9,0,9,0,0,2,10,0,27,25,160,0,86,0,0,0,1,0,0,2,0,0,0,0,9,568,0,0,0,0,0,1,0,0,0,2,0,4,0,0,2847,25,279,0,18,0,0,0,0,0,9,6,0,0,0,1,3,8,51,0,8,10,2,0,2,27,0,269,15,3,0,0,4,2,191,0,0,0,0,1016,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,74,0,53,0,0,0,18,23,53,205,814,0,0,0,0,1,0,0,0,0,0,0,0,0,815,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,20,17,237,2,0,0,268,0,463,0,0,0,127,19,0,0,0,0,0,0,0,0,0,141,1,0,0,0,13,0,0,0,0,9,109,138,0,0,41,0,0,0,0,0,836,0,0,66,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,32,0,0,0,12,18,37,253,0,19,0,0,0,0,0,0,96,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,262,60,4 +1,0,0,5,0,35,6,0,28,0,2,0,0,2,3,0,18,0,6,3,0,0,0,5,0,9,0,0,4,0,2,0,0,0,9,0,35,6,0,0,24,0,0,0,1,0,0,6,0,0,0,0,3,218,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2279,35,85,0,5,0,0,0,0,0,22,0,0,0,0,4,7,23,268,0,0,9,0,0,0,0,0,82,5,10,0,0,2,0,44,0,0,0,0,690,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,12,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,223,0,71,0,0,0,3,4,189,17,213,0,0,0,0,1,0,3,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,6,1,10,0,0,0,0,1,0,32,10,199,6,0,0,187,0,389,0,0,0,79,16,0,0,0,0,0,0,0,0,0,65,1,0,0,0,8,0,0,0,0,1,117,31,0,0,0,0,0,0,0,0,123,0,0,114,3,0,1,1,0,0,0,0,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,44,270,0,6,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,223,64,4 +0,0,0,3,0,9,3,0,24,1,3,0,0,0,8,0,26,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,44,0,1,0,1,0,0,1,1,0,0,0,0,272,0,0,0,0,0,1,0,0,0,0,0,9,0,0,4719,9,63,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,480,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,68,0,0,0,0,1197,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,35,0,37,0,0,0,0,3,24,12,44,0,0,0,0,1,0,0,0,0,0,0,0,0,2102,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,155,3,0,0,158,0,164,0,0,0,102,16,0,0,0,0,0,0,0,0,0,70,1,0,2,0,2,0,0,0,0,0,91,95,0,0,0,0,0,0,0,0,272,0,0,736,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,96,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,252,73,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,137,8,41,0,1,0,0,0,0,0,10,0,0,0,0,0,1,1,44,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,35,0,0,0,0,3,21,4,54,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,47,0,30,0,0,0,13,7,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,4,4 +90,0,0,4,1,52,25,4,117,6,24,0,4,0,13,0,37,0,7,6,0,1,1,5,0,30,9,0,5,0,5,0,0,1,17,0,53,15,0,0,479,0,0,0,1,0,0,0,0,0,0,0,27,95,0,0,0,0,0,1,0,1,0,0,0,27,0,0,1353,52,370,0,30,0,0,0,0,0,16,3,0,0,0,0,8,13,266,0,4,17,1,0,4,88,0,808,15,0,0,0,8,1,553,0,8,0,0,1848,0,0,0,0,38,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,208,0,109,0,0,0,30,62,217,795,206,0,0,0,0,1,0,4,0,0,0,0,0,0,825,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,94,274,6,0,0,239,0,324,0,0,0,102,21,0,0,0,0,0,0,0,0,0,227,0,0,0,0,13,0,0,0,0,26,137,230,0,0,30,0,0,0,0,0,739,0,0,22,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,37,0,0,0,0,9,70,41,0,40,9,0,0,0,0,0,328,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,274,1601,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,16,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,42,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,6,4 +284,0,0,28,21,93,168,37,382,32,48,0,0,2,69,1,636,0,20,67,0,117,2,6,0,36,22,0,18,0,8,2,0,20,41,0,113,301,160,0,400,0,0,0,1,0,0,3,0,0,0,0,37,374,0,0,0,0,0,1,0,3,0,12,0,55,0,0,2632,93,3326,0,53,0,0,0,0,0,23,45,0,0,0,0,14,23,275,0,37,41,20,0,8,42,0,797,70,3,0,0,14,21,682,0,49,0,0,2606,0,0,0,0,65,34,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,27,0,0,0,15,0,0,0,0,0,7,0,69,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,35,3,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,19,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,78,10,10,10,0,0,0,294,0,242,0,0,0,45,77,366,640,316,0,0,0,0,1,0,5,0,0,0,0,0,0,2937,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,341,1811,58,0,0,1842,0,3154,0,6,0,593,91,0,0,0,0,0,0,0,0,0,1326,1,0,0,0,192,0,0,0,0,34,287,159,0,0,155,0,0,0,0,0,10505,0,0,161,4,0,1,7,0,0,0,0,5,0,0,0,1,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,7,1,0,0,0,0,3,21,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,97,1,1,1,0,64,0,0,0,0,199,154,317,0,77,9,0,0,0,0,0,339,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,38,0,0,0,0,0,0,0,0,117,0,0,198,0,2,1734,1846,4 +120,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,556,0,20,44,0,99,2,6,0,33,22,0,17,0,8,2,0,10,38,0,99,301,160,0,385,0,0,0,1,0,0,3,0,0,0,0,34,345,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2564,89,1766,0,48,0,0,0,0,0,22,15,0,0,0,0,13,22,299,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,583,0,46,0,0,2283,0,0,0,0,46,16,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,291,0,230,0,0,0,42,74,335,588,302,0,0,0,0,1,0,6,0,0,0,0,0,0,2086,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1452,49,0,0,1496,0,2950,0,6,0,503,269,0,0,0,0,0,0,0,0,0,1111,1,0,0,0,151,0,0,0,0,29,283,149,0,0,155,0,0,0,0,0,10424,0,0,170,4,0,1,5,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,8,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,63,0,0,0,0,117,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,247,0,3,1641,1621,4 +268,0,0,10,14,184,220,38,508,68,83,0,5,0,113,1,973,0,17,20,0,10,6,9,2,68,51,0,23,0,14,3,0,12,109,0,198,35035,6189,0,1046,0,0,0,1,0,0,5,1,0,0,0,76,439,0,0,0,0,0,1,0,1,0,31,0,108,0,0,38233,184,2958,0,96,0,0,0,0,0,134,27,0,0,0,0,14,25,7756,0,38,109,12,0,11,243,0,2347,155,11,0,0,18,14,2531,0,81,1,0,6748,0,0,0,0,74,69,2,0,31,0,0,1,0,0,0,22,0,0,0,0,0,0,0,13,0,0,0,45,0,0,0,0,0,2,0,33,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,45,8,0,0,0,0,0,2,0,0,0,0,0,9,27,0,0,0,3,0,0,0,0,10,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,2,131,12,12,12,0,0,2,4854,2,460,0,0,2,91,263,440,134488,4901,0,0,0,0,1,0,5,0,0,0,0,0,0,11139,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,464,220,1727,27,0,0,1873,0,2216,0,4,0,917,125867,0,0,0,0,0,0,0,0,0,1920,1,0,2,0,47,0,0,0,0,60,381,652,0,0,374,0,0,0,0,0,47541,0,0,8535,3,0,1,12,0,0,0,0,14,0,0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,15,1,0,0,0,0,3,93,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,192,1,1,1,0,359,0,0,0,0,186,307,428,1,150,9,0,0,0,0,0,939,19,0,0,0,0,0,0,0,0,0,0,0,15,0,2,74,1,0,0,0,0,0,0,0,8,0,0,27,0,0,4496,2071,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,0,0,0,73,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,41,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,1,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,36,4 +0,0,0,3,0,9,3,0,24,1,3,0,0,0,8,0,26,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,44,0,1,0,1,0,0,1,1,0,0,0,0,286,0,0,0,0,0,1,0,0,0,0,0,9,0,0,4704,9,63,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,460,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,68,0,0,0,0,1196,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,35,0,37,0,0,0,0,3,24,12,44,0,0,0,0,1,0,0,0,0,0,0,0,0,2122,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,155,3,0,0,158,0,174,0,0,0,102,11,0,0,0,0,0,0,0,0,0,70,1,0,2,0,2,0,0,0,0,0,91,95,0,0,0,0,0,0,0,0,272,0,0,736,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,96,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,252,72,4 +111,0,0,29,11,89,156,27,263,30,34,0,0,2,66,1,556,0,20,44,0,99,2,6,0,33,22,0,17,0,7,3,0,10,38,0,99,301,160,0,373,0,0,0,1,0,0,3,0,0,0,0,34,351,0,0,0,0,0,1,0,3,0,12,0,51,0,0,2507,89,1748,0,49,0,0,0,0,0,18,15,0,0,0,0,13,22,281,0,27,38,10,0,7,29,0,658,55,3,0,0,14,11,546,0,46,0,0,2360,0,0,0,0,43,12,1,0,31,0,0,1,0,0,0,20,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,28,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,280,0,220,0,0,0,42,71,333,528,293,0,0,0,0,1,0,6,0,0,0,0,0,0,2072,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1453,49,0,0,1490,0,2987,0,6,0,498,334,0,0,0,0,0,0,0,0,0,1098,1,0,0,0,151,0,0,0,0,29,282,135,0,0,125,0,0,0,0,0,10417,0,0,167,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,9,1,0,0,0,0,3,19,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,56,0,0,0,0,115,137,326,0,73,9,0,0,0,0,0,295,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,34,0,0,0,0,0,0,0,0,117,0,0,207,0,4,1639,1588,4 +0,0,0,5,0,36,25,0,48,3,24,0,0,7,4,0,784,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12492,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,762,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40459,36,951,0,24,0,0,0,0,0,46,0,0,0,0,0,8,94,6594,0,0,1,0,0,0,0,0,365,25,1,0,0,2,0,872,0,0,86,0,4944,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1467,0,33,0,0,0,13,16,494,2082,1446,0,0,0,0,1,0,3,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,272,5,0,0,309,0,286,0,0,0,146,13,0,0,0,0,0,0,0,0,0,898,1,0,0,0,9,0,0,0,0,1,164,6,0,0,134,0,0,0,0,0,4721,1,0,996,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,208,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2467,22,4 +115,0,0,24,4,62,81,7,125,7,16,0,0,2,24,0,187,0,12,5,0,1,1,6,0,15,9,0,9,0,4,0,0,4,22,0,66,164,0,0,210,0,0,0,1,0,0,8,0,0,0,0,11,260,0,0,0,0,0,1,0,1,0,0,0,21,0,0,5305,62,483,0,18,0,0,0,0,0,30,3,0,0,0,0,8,21,1058,0,7,22,4,0,4,11,0,322,20,13,0,0,8,4,207,0,15,0,0,1541,0,0,0,0,43,33,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,38,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,778,0,254,0,0,0,13,48,241,246,745,0,0,0,0,1,0,4,0,0,0,0,0,0,1977,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,74,760,33,0,0,814,0,1503,0,3,0,285,24,0,0,0,0,0,0,2,0,0,447,1,0,0,0,13,0,0,0,0,11,192,94,0,0,34,0,0,0,0,0,1213,0,0,976,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,26,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,64,1,1,1,0,68,0,0,0,0,33,88,360,0,28,9,0,0,0,0,0,276,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,11,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1358,1380,4 +6,0,0,10,0,65,181,0,121,6,16,0,0,2,33,3,66,0,63,3,0,0,0,9,0,10,22,0,11,0,12,4,0,0,24,0,65,206,0,0,311,0,0,0,1,0,0,7,1,0,0,0,16,228,0,0,0,0,0,1,0,0,0,5,0,16,0,0,8969,65,562,0,25,0,0,0,0,0,36,0,0,0,0,1,12,27,854,0,0,24,0,0,1,94,0,857,60,20,0,0,2,0,743,0,10,0,0,4072,0,0,0,0,4,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,789,0,172,0,0,0,30,53,280,1368,768,0,0,0,0,1,0,14,0,0,0,0,0,0,3047,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,26,464,11,0,0,652,0,1492,0,0,0,497,85,0,0,0,0,0,0,0,0,0,485,1,0,9,0,12,0,0,0,0,15,164,399,0,0,293,0,0,0,0,0,1441,0,0,2043,3,0,1,1,1,0,0,0,27,0,0,0,2,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,3,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,110,1,1,1,0,34,0,0,0,0,1,89,659,0,50,9,0,0,0,0,0,301,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1213,1494,4 +0,0,0,5,0,37,24,0,47,3,23,0,0,7,4,0,767,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12412,37,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,732,0,0,0,0,0,1,0,0,0,0,0,2,0,0,38915,37,929,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6334,0,0,1,0,0,0,0,0,359,25,2,0,0,2,0,855,0,0,87,0,4690,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1261,0,33,0,0,0,12,15,496,2057,1239,0,0,0,0,1,0,3,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,276,5,0,0,314,0,286,0,0,0,148,14,0,0,0,0,0,0,0,0,0,878,1,0,0,0,9,0,0,0,0,1,168,7,0,0,130,0,0,0,0,0,4692,1,0,1031,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,58,0,0,0,0,1,38,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2508,28,4 +327,0,0,10,14,164,206,38,525,65,86,0,6,0,130,1,977,0,17,27,0,10,6,10,2,51,51,0,24,0,18,6,0,12,90,0,178,65791,6811,0,1102,0,0,0,1,0,0,5,1,0,0,0,66,454,0,0,0,0,0,1,0,3,0,16,0,111,0,0,39429,164,3083,0,87,0,0,0,0,0,156,27,0,0,0,0,22,33,8053,0,38,90,12,0,12,259,0,2476,135,11,0,0,20,14,2635,0,77,1,0,6831,0,0,0,0,105,87,2,0,31,0,0,1,0,0,0,23,0,0,0,0,0,0,0,21,0,0,0,23,0,0,0,0,0,2,0,24,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,76,8,0,0,0,0,0,2,0,0,0,0,0,0,17,0,0,0,3,0,0,0,0,12,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,119,12,12,12,0,0,2,5083,2,480,0,0,2,88,359,416,137056,5099,0,0,0,0,1,0,13,0,0,0,0,0,0,10966,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,470,260,1663,27,0,0,1812,0,2325,0,4,0,856,127417,0,0,0,0,0,0,0,0,0,1948,1,0,2,0,55,0,0,0,0,52,337,715,0,0,318,0,0,0,0,0,78425,0,0,8317,3,0,1,11,0,0,0,0,14,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,19,1,0,0,0,0,3,163,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,172,1,1,1,0,627,0,0,0,0,188,268,400,1,141,9,0,0,0,0,0,1049,19,0,0,0,0,0,0,0,0,0,0,0,15,0,2,71,0,0,0,0,0,0,0,25,8,0,0,28,0,5,4587,2513,4 +102,0,0,30,11,91,156,27,265,28,35,0,0,2,64,2,737,0,20,46,0,97,2,6,0,38,22,0,24,0,8,2,0,10,40,0,101,301,160,0,392,0,0,0,1,0,0,4,0,0,0,0,38,338,0,0,0,0,0,1,0,3,0,12,0,49,0,0,2687,91,1970,0,62,0,0,0,0,0,20,15,0,0,0,1,13,24,293,0,27,40,10,0,7,29,0,672,55,5,0,0,14,11,622,0,44,0,0,2654,0,0,0,0,38,12,1,0,32,0,0,1,0,0,0,23,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,22,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,24,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,5,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,60,10,10,10,0,0,0,316,0,287,0,0,0,46,75,373,529,304,0,0,0,0,1,0,6,0,0,0,0,0,0,2071,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,681,334,1454,50,0,0,1503,0,2892,0,6,0,510,292,0,0,0,0,0,0,0,0,0,1281,1,0,0,0,151,0,0,0,0,36,283,135,0,0,125,0,0,0,0,0,10649,0,0,160,4,0,1,6,0,0,0,0,7,0,0,0,2,0,0,0,0,0,27,0,0,0,0,0,0,0,0,1,0,0,106,106,0,0,8,1,0,0,0,0,3,14,1,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,96,1,1,1,0,56,0,0,0,0,155,141,373,0,85,9,0,0,0,0,0,306,10,0,0,0,0,0,0,1,0,0,0,0,11,0,5,32,0,0,0,0,0,0,0,0,117,0,0,247,0,3,1606,1661,4 +1,0,0,3,0,28,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,127,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1176,28,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,183,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,540,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,136,0,52,0,0,0,1,4,182,14,134,0,0,0,0,1,0,3,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,32,10,135,3,0,0,166,0,335,0,0,0,60,12,0,0,0,0,0,2,0,0,0,55,1,0,0,0,8,0,0,0,0,1,110,43,0,0,0,0,0,0,0,0,103,0,0,117,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,222,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,189,55,4 +21,0,0,7,0,38,5,0,57,5,22,0,0,0,15,0,43,0,7,3,0,0,0,4,0,9,15,0,17,0,10,0,0,0,18,0,38,13,0,0,89,0,0,0,1,0,0,1,0,0,0,0,18,91,0,0,0,0,0,1,0,0,0,0,0,14,0,0,4399,38,188,0,36,0,0,0,0,0,6,0,0,0,0,0,6,8,814,0,0,18,0,0,1,35,0,371,80,2,0,0,2,0,304,0,5,0,0,799,0,0,0,0,8,1,0,0,1,0,0,1,0,0,0,18,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,9,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,12,0,0,0,0,0,0,551,0,108,0,0,0,27,44,87,314,581,0,0,0,0,1,0,0,0,0,0,0,0,0,1311,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,9,18,205,7,0,0,207,0,348,0,0,0,109,6,0,0,0,0,0,0,0,0,0,149,1,0,0,0,7,0,0,0,0,17,124,96,0,0,229,0,0,0,0,0,344,0,0,1076,0,0,1,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,11,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,30,0,0,0,6,1,56,138,0,51,0,0,0,0,0,0,95,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,574,226,4 +3,0,0,0,2,27,66,2,94,1,14,0,3,0,4,0,64,0,8,4,0,1,0,1,0,0,0,0,0,0,1,0,0,2,6,0,28,81,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,1,0,0,0,0,0,5,0,0,285,27,234,0,1,0,0,0,0,0,1,3,0,0,0,0,1,1,28,0,2,6,2,0,6,64,0,533,30,0,0,0,10,2,343,0,1,1,0,1913,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,43,0,73,0,0,0,0,3,56,388,67,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,35,249,2,0,0,289,0,710,0,1,0,66,1,0,0,0,0,0,0,0,0,0,253,0,0,0,0,6,0,0,0,0,0,126,135,0,0,68,0,0,0,0,0,779,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,24,1,1,1,0,0,0,0,0,0,9,34,7,0,1,0,0,0,0,0,0,197,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1167,69,4 +71,0,0,25,9,80,133,22,235,26,34,0,0,2,58,2,642,0,18,42,0,98,1,6,0,32,13,0,17,0,4,3,0,8,33,0,88,253,160,0,339,0,0,0,1,0,0,3,0,0,0,0,30,315,0,0,0,0,0,1,0,2,0,12,0,45,0,0,2293,80,1680,0,46,0,0,0,0,0,19,12,0,0,0,0,13,22,258,0,22,33,8,0,7,37,0,676,70,3,0,0,12,9,569,0,40,0,0,1996,0,0,0,0,30,12,1,0,30,0,0,1,0,0,0,19,0,0,0,0,0,0,0,6,0,0,0,8,0,0,0,0,0,1,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,9,2,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,262,0,257,0,0,0,35,53,355,535,265,0,0,0,0,1,0,5,0,0,0,0,0,0,1895,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,573,309,1208,43,0,0,1277,0,2584,0,5,0,439,350,0,0,0,0,0,0,0,0,0,1124,1,0,0,0,147,0,0,0,0,28,259,146,0,0,155,0,0,0,0,0,10479,0,0,149,5,0,1,5,0,0,0,0,5,0,0,0,1,0,0,0,0,0,25,0,0,0,0,0,0,0,0,1,0,0,98,98,0,0,8,1,0,0,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,85,1,1,1,0,35,0,0,0,0,139,121,308,0,60,9,0,0,0,0,0,281,8,0,0,0,0,0,0,1,0,0,0,0,9,0,3,32,0,0,0,0,0,0,0,0,117,0,0,149,0,2,1569,792,4 +209,0,0,0,3,83,56,12,329,3,103,1,2,0,5,0,48,0,7,13,0,3,3,3,0,6,4,0,72,0,300,1,0,3,36,0,86,12,0,0,497,0,0,0,0,0,0,0,0,0,0,0,306,106,0,0,0,0,0,1,0,0,0,0,0,23,0,0,5836,83,1656,0,380,0,0,0,0,0,270,9,0,0,0,0,9,9,220,0,12,36,3,0,3,289,0,3543,390,0,0,0,6,3,1651,0,2,0,0,3216,0,0,0,0,82,91,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,75,0,0,0,76,0,0,0,0,0,1,0,13,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,72,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,212,0,182,0,0,0,606,610,161,2408,232,0,0,0,0,0,0,0,0,0,0,0,0,0,3775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,616,6,0,0,696,0,542,0,0,0,468,60,0,0,0,0,0,0,0,0,0,551,0,0,0,0,22,0,0,0,0,305,174,567,0,0,875,0,0,0,0,0,1270,0,0,300,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,83,1,1,1,0,676,0,0,0,590,25,122,36,0,383,0,0,0,0,0,0,623,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1207,2010,4 +1,0,0,4,0,28,5,0,20,1,3,0,0,2,3,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,24,0,0,0,1,0,0,2,0,0,0,0,2,128,0,0,0,0,0,1,0,0,0,0,0,4,0,0,868,28,59,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,156,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,573,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,127,0,56,0,0,0,1,4,182,14,125,0,0,0,0,1,0,3,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,2,1,8,0,0,0,0,1,0,32,13,143,5,0,0,161,0,353,0,0,0,51,14,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,112,33,0,0,0,0,0,0,0,0,80,0,0,38,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,125,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,229,62,4 +149,0,0,29,10,85,187,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,15,0,7,3,0,9,33,0,95,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,343,0,0,0,0,0,1,0,3,0,11,0,82,0,0,2894,85,1512,0,40,0,0,0,0,0,70,12,0,0,0,0,13,22,374,0,22,33,9,0,10,193,0,1896,100,3,0,0,14,10,1280,0,46,0,0,2137,0,0,0,0,52,39,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,313,0,235,0,0,0,36,75,300,1617,343,0,0,0,0,1,0,5,0,0,0,0,0,0,2650,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1407,48,0,0,1553,0,2961,0,6,0,560,58,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,277,538,0,0,215,0,0,0,0,0,9906,0,0,129,3,0,1,6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,76,0,0,0,0,81,128,309,0,64,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1591,1668,4 +1208,0,0,5,1,17,27,1,28,2,4,0,0,0,5,0,66,0,17,1,0,0,0,2,0,4,0,0,0,0,1,0,0,1,2,0,18,73,0,0,19,0,0,0,0,0,0,0,0,0,0,0,4,39,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2172,17,104,0,5,0,0,0,0,0,0,0,0,0,0,0,2,2,67,0,1,2,1,0,1,0,0,53,0,0,0,0,4,1,22,0,2,0,0,2410,0,0,0,0,0,1208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,54,0,55,0,0,0,4,7,43,646,4917,0,0,0,0,0,0,0,0,0,0,0,0,0,11283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,16,365,6,0,0,231,0,386,0,1,0,63,59,0,0,0,0,0,0,0,0,0,147,0,0,0,0,3,0,0,0,0,5,119,8,0,0,0,0,1206,0,2413,1207,717,0,0,0,0,0,1,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,20,1,1,1,0,0,0,0,0,0,9,20,3,0,5,0,0,0,0,0,0,106,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,230,114,4 +0,0,0,6,0,40,57,0,110,2,39,0,0,8,3,0,989,0,6,1,0,0,0,8,0,10,0,0,44,0,1,0,0,0,1,14143,40,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,497,0,0,0,0,0,1,0,0,0,0,0,2,0,0,85539,40,1335,0,42,0,0,0,0,0,111,0,0,0,0,0,8,317,11203,0,0,1,0,0,0,0,0,576,30,2,0,0,2,0,1176,0,0,219,0,8424,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,12,12,12,0,0,0,4389,0,37,0,0,0,26,29,1451,5851,4319,0,0,0,0,1,0,3,0,0,0,0,0,0,5760,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,25,400,6,0,0,400,0,367,0,0,0,222,75,0,0,0,0,0,0,0,0,0,1212,1,0,0,0,9,0,0,0,0,1,174,76,0,0,297,0,0,0,0,0,6208,1,0,7446,54,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,54,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,119,0,0,0,0,1,41,289,0,43,12,0,1,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3674,219,4 +219,0,0,31,19,96,191,32,365,29,49,0,0,2,67,1,673,0,22,60,0,113,1,6,0,46,13,0,21,0,4,3,0,18,39,0,114,352,159,0,384,0,0,0,1,0,0,1,1,0,0,0,43,354,0,0,0,0,0,1,0,2,0,12,0,53,0,0,2130,96,2363,0,63,0,0,0,0,0,14,36,0,0,0,0,14,21,172,0,32,39,18,0,9,43,0,848,80,4,0,0,16,19,640,0,48,0,0,2876,0,0,0,0,61,24,0,0,38,0,0,1,0,0,0,18,0,0,0,0,0,0,0,22,0,0,0,14,0,0,0,2,0,6,0,64,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,15,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,79,10,10,10,0,0,0,189,0,219,0,0,0,48,66,384,636,221,0,0,0,0,1,0,4,0,0,0,0,0,0,2680,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,778,348,1802,61,0,0,1868,0,3758,0,7,0,556,208,0,0,0,0,0,0,0,0,0,1370,1,0,2,0,180,0,0,0,0,44,322,96,0,0,181,0,0,0,0,0,9936,0,0,25,3,0,1,7,0,0,0,0,3,0,0,0,1,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,60,60,0,0,13,1,0,0,0,0,3,10,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,101,1,1,1,0,41,0,0,0,0,195,153,90,0,78,9,0,0,0,0,0,328,26,0,0,0,0,0,0,1,0,0,0,0,19,0,3,35,0,0,0,0,0,0,0,0,117,0,0,178,0,1,1833,1016,4 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,35,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,4 +20,0,0,1,3,28,86,3,181,1,32,0,12,0,6,1,132,0,10,4,0,1,0,1,0,0,0,0,0,0,1,0,0,3,12,0,30,159,0,0,313,0,0,0,1,0,0,1,0,0,0,0,0,108,0,0,0,0,0,1,0,0,0,0,0,21,0,0,621,28,436,0,1,0,0,0,0,0,14,3,0,0,0,0,1,3,139,0,3,12,3,0,16,114,0,972,30,1,0,0,30,3,617,0,2,1,0,1077,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,125,0,156,0,0,0,0,3,57,788,166,0,0,0,0,1,0,0,0,0,0,0,0,0,718,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,294,147,449,4,0,0,507,0,2219,0,2,0,163,9,0,0,0,0,0,0,0,0,0,460,1,0,0,0,6,0,0,0,0,0,143,289,0,0,68,0,0,0,0,0,947,0,0,8,0,0,1,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,25,1,1,1,0,0,0,0,0,0,17,42,14,0,1,0,0,0,0,0,0,446,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,1383,49,4 +15,0,0,22,1,47,52,1,147,19,37,0,0,2,118,0,92,0,8,3,0,0,0,7,0,12,9,0,5,0,4,0,0,1,14,0,48,54,0,0,401,0,1,0,1,0,0,2,1,0,0,0,8,115,0,0,0,0,0,1,0,0,0,17,0,38,0,0,1185,47,427,0,10,0,0,0,0,0,11,0,0,0,0,0,9,18,154,0,1,14,1,0,3,99,0,920,85,9,1,0,4,1,802,0,17,0,0,1203,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,2,0,0,0,11,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,10,10,10,0,0,0,127,0,86,0,0,0,10,20,216,703,135,0,0,0,0,1,0,3,0,0,0,0,0,0,1258,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,1,0,136,76,419,104,0,0,382,0,1650,0,1,0,132,36,0,0,0,0,0,0,0,0,0,456,1,0,5,0,10,0,0,0,0,4,150,247,0,0,205,0,0,0,0,0,1116,0,0,27,3,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,49,1,1,1,0,6,0,0,0,0,9,62,47,0,21,9,0,0,0,0,0,320,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,25,0,0,0,0,0,0,0,0,0,0,0,1,0,1,644,131,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,195,55,0,0,0,0,0,0,0,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,84,0,58,0,0,0,50,3,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,4,4 +147,0,5,3,4,104,68,9,705,23,43,0,6,0,29,0,7794,0,9,21,0,3,2,8,0,28,18,0,23,0,7,3,0,3,41,26,107,13363,0,0,586,0,3,0,1,0,0,2,1,0,0,0,30,230,0,0,0,0,0,1,0,0,0,19,0,37,0,0,3227,104,8946,0,49,0,0,0,0,0,17,6,0,0,0,0,22,32,861,0,9,41,3,0,7,136,0,1303,100,7,0,0,14,4,8586,0,21,0,0,5244,0,0,0,0,32,25,1,0,1,0,0,1,0,0,0,19,0,0,0,0,0,0,0,18,0,0,0,14,0,0,0,0,0,5,0,36,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,12,1,1,1,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,9,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1011,10,10,10,0,0,0,292,0,210,0,0,0,38,57,332,1006,325,0,0,0,0,1,0,4,0,0,0,16073,3,1,1506,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,1,0,192,20228,753,8,0,0,687,0,2725,0,1,0,271,566,0,0,0,0,0,0,0,0,0,8654,1,0,2,0,34,0,0,0,0,22,209,352,0,5,249,0,0,0,0,0,29827,0,0,777,3,0,1,8,1,0,0,0,8,0,0,0,0,0,0,0,0,0,19,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,7,1,2,0,0,0,3,376,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,132,1,1,1,0,46,0,0,0,0,27,148,112,0,70,9,0,0,0,0,0,483,14,0,0,0,0,0,0,0,0,0,0,0,4,0,1,25,0,0,0,0,0,0,0,0,0,0,0,7,0,2,796,931,4 +0,0,0,6,0,9,2,0,17,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,66,0,0,0,0,0,1,0,0,0,0,0,1,0,0,322,9,44,0,1,0,0,0,0,0,8,0,0,0,0,0,1,4,52,0,0,1,0,0,0,0,0,8,0,3,0,0,2,0,16,0,0,0,0,133,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,60,0,40,0,0,0,0,3,23,6,67,0,0,0,0,1,0,0,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,92,8,0,0,112,0,251,0,0,0,44,2,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,96,28,0,0,0,0,0,0,0,0,41,0,0,65,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,114,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,93,37,4 +8,0,0,19,1,37,86,1,163,49,123,0,0,0,36,0,89,0,8,2,0,0,0,1,0,5,3,0,2,0,2,0,0,1,10,0,38,194,0,0,559,0,0,0,1,0,0,3,0,0,0,0,6,217,0,0,0,0,0,1,0,0,0,18,0,35,0,0,3631,37,474,0,9,0,0,0,0,0,13,0,0,0,0,0,2,8,310,0,1,10,1,0,9,113,0,1288,123,5,1,0,4,1,823,0,14,4,0,2064,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,0,0,2,6,0,0,0,7,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,79,0,0,0,0,0,0,275,0,104,0,0,0,7,13,72,1569,279,0,0,0,0,1,0,0,0,0,0,0,0,0,1178,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,123,86,419,22,0,0,439,0,1159,0,1,0,204,161,0,0,0,0,0,0,12,0,0,505,1,0,0,0,3,0,0,0,0,6,152,332,0,0,334,0,0,0,0,0,1017,0,0,312,0,0,1,0,0,0,0,0,6,0,0,0,2,0,0,0,0,0,26,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,1,34,1,1,1,0,3,0,0,0,0,9,48,211,0,12,0,0,0,0,0,0,478,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,57,0,0,0,0,0,0,0,0,0,0,0,1,0,4,420,171,4 +106,0,0,0,2,68,42,5,79,8,7,0,4,0,10,12,86,0,9,6,0,1,1,5,0,15,3,0,4,0,5,0,0,2,30,0,70,63,0,0,215,0,0,0,1,0,0,0,0,0,0,0,12,121,0,0,0,0,0,1,0,2,0,6,0,9,0,0,1498,68,320,0,13,0,0,0,0,0,13,3,0,0,0,0,8,13,204,0,5,30,2,0,4,20,0,294,0,0,0,0,10,2,229,0,6,0,0,1357,0,0,0,0,20,21,0,0,18,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,12,0,0,0,0,0,0,0,17,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,29,10,10,10,0,0,0,183,0,115,0,0,0,15,23,239,407,177,0,0,0,0,1,0,3,0,0,0,0,0,0,834,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,142,106,462,4,0,0,440,0,878,0,1,0,177,45,0,0,0,0,0,0,0,0,0,249,0,0,0,0,13,0,0,0,0,9,184,59,0,0,0,0,0,0,1,0,820,0,0,10,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,72,1,1,1,0,21,0,0,0,0,17,100,47,0,18,9,0,0,0,0,0,382,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,3,0,0,612,886,4 +34,0,0,0,0,16,13,0,50,5,12,0,2,0,9,0,18,0,7,1,0,0,0,2,0,5,3,0,0,0,1,0,0,0,4,0,16,15,0,0,114,0,0,0,0,0,0,0,0,0,0,0,5,40,0,0,0,0,0,1,0,0,0,0,0,14,0,0,606,16,139,0,6,0,0,0,0,0,16,0,0,0,0,0,2,2,141,0,0,4,0,0,3,43,0,352,15,0,0,0,6,0,254,0,6,0,0,753,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,126,0,97,0,0,0,5,10,36,325,144,0,0,0,0,0,0,0,0,0,0,0,0,0,520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,31,113,1,0,0,96,0,157,0,0,0,48,4,0,0,0,0,0,0,0,0,0,111,0,0,0,0,3,0,0,0,0,6,103,110,0,0,30,0,0,0,0,0,639,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,20,4,0,9,0,0,0,0,0,0,217,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,107,4 +150,0,0,29,10,84,187,22,426,30,73,0,0,2,64,0,375,0,20,15,0,6,2,7,0,26,22,0,14,0,7,3,0,9,33,0,94,301,0,0,707,0,0,0,1,0,0,3,0,0,0,0,28,358,0,0,0,0,0,1,0,3,0,12,0,83,0,0,2940,84,1523,0,39,0,0,0,0,0,73,12,0,0,0,0,13,22,421,0,22,33,9,0,10,198,0,1932,100,3,0,0,14,10,1304,0,46,0,0,2071,0,0,0,0,55,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,17,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,338,0,242,0,0,0,36,75,296,1649,369,0,0,0,0,1,0,5,0,0,0,0,0,0,2763,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1414,48,0,0,1557,0,2960,0,6,0,566,46,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,279,551,0,0,215,0,0,0,0,0,9943,0,0,190,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,75,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,733,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1649,1722,4 +0,0,0,8,2,15,50,2,56,9,6,0,0,0,18,8,123,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,4,0,17,136,0,0,47,0,0,0,1,0,0,7,0,0,0,0,1,112,0,0,0,0,0,1,0,0,0,0,0,16,0,0,3649,15,238,0,3,0,0,0,0,0,29,0,0,0,0,0,1,10,710,0,2,4,2,0,2,0,0,90,0,13,0,0,6,2,103,0,13,0,0,286,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,558,0,293,0,0,0,2,7,40,24,735,0,0,0,0,1,0,0,0,0,0,0,0,0,2536,0,185,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,219,37,410,10,0,0,467,0,876,0,2,0,166,10,0,0,0,0,0,0,0,0,0,272,1,0,0,0,2,0,0,0,0,1,133,52,0,0,0,0,0,0,0,0,615,0,0,843,0,0,1,0,0,0,0,0,20,0,0,0,2,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,13,1,1,1,0,2,0,0,0,0,17,21,173,0,6,0,0,0,0,0,0,90,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,2,0,3,1135,62,4 +1,0,0,3,0,35,20,0,39,0,2,0,0,2,2,0,607,0,6,3,0,0,0,6,0,11,0,0,4,0,1,0,0,0,2,980,35,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,359,0,0,0,0,0,1,0,0,0,0,0,2,0,0,23271,35,697,0,3,0,0,0,0,0,28,0,0,0,0,0,8,18,4135,0,0,2,0,0,0,0,0,89,5,4,0,0,2,0,634,0,0,0,0,2055,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,2795,0,50,0,0,0,1,4,267,447,2779,0,0,0,0,1,0,5,0,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,209,3,0,0,263,0,359,0,0,0,105,6,0,0,0,0,0,0,0,0,0,678,1,0,0,0,9,0,0,0,0,1,119,45,0,0,0,0,0,0,0,0,2047,1,0,122,11,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,1,0,0,0,0,1,37,218,0,4,12,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,750,75,4 +150,0,0,29,10,85,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,95,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,360,0,0,0,0,0,1,0,2,0,11,0,83,0,0,3111,85,1524,0,39,0,0,0,0,0,74,12,0,0,0,0,13,22,408,0,22,33,9,0,10,198,0,1932,100,3,0,0,14,10,1304,0,46,0,0,2074,0,0,0,0,52,40,0,0,31,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,332,0,234,0,0,0,36,76,300,1648,360,0,0,0,0,1,0,5,0,0,0,0,0,0,2702,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1456,48,0,0,1562,0,2903,0,6,0,567,53,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,281,551,0,0,215,0,0,0,0,0,9933,0,0,185,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,77,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,4,1616,1660,4 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,14,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,32,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,4 +12,0,0,0,0,32,24,0,36,2,5,0,2,0,4,0,20,0,6,5,0,0,0,5,0,10,3,0,5,0,1,1,0,0,6,0,32,9,0,0,92,0,0,0,1,0,0,0,0,0,0,0,4,73,0,0,0,0,0,1,0,0,0,0,0,3,0,0,635,32,115,0,7,0,0,0,0,0,13,0,0,0,0,0,9,14,126,0,0,6,0,0,2,25,0,290,15,0,0,0,4,0,170,0,2,0,0,507,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,87,0,44,0,0,0,4,11,187,163,91,0,0,0,0,1,0,3,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,121,0,0,0,140,0,236,0,0,0,61,22,0,0,0,0,0,0,0,0,0,97,0,0,0,0,10,0,0,0,0,4,122,53,0,0,30,0,0,0,0,0,95,0,0,2,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,8,0,0,0,0,1,38,22,0,11,9,0,0,0,0,0,88,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,32,4 +0,0,0,4,1,12,26,1,32,0,4,0,0,0,5,0,69,0,8,1,0,0,0,2,0,0,3,0,1,0,0,1,0,1,3,0,13,54,0,0,14,0,1,0,1,0,0,1,0,0,0,0,1,37,0,0,0,0,0,1,0,0,0,0,0,4,0,0,960,12,107,0,3,0,0,0,0,0,4,0,0,0,0,0,2,5,460,0,1,3,1,0,1,0,0,51,0,1,0,0,4,1,36,0,2,0,0,243,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,42,0,26,0,0,0,2,9,33,21,52,0,0,0,0,1,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,14,209,5,0,0,245,0,272,0,1,0,75,2,0,0,0,0,0,0,0,0,0,144,1,0,0,0,3,0,0,0,0,2,106,25,0,0,0,0,0,0,0,0,309,0,0,739,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,6,0,0,0,0,9,16,69,0,5,0,0,0,0,0,0,39,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,256,7,4 +2,0,0,0,0,10,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,21,10,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,9,0,0,2,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,16,0,0,0,0,3,25,4,25,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,35,0,0,0,38,0,76,0,0,0,8,7,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,92,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,2,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,29,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,0,0,0,34,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,405,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,25,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,134,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,48,3,0,0,47,0,144,0,0,0,5,2,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,11,4 +21,0,0,0,0,34,24,0,36,2,5,0,2,0,4,0,20,0,6,5,0,0,0,7,0,10,3,0,6,0,2,1,0,0,6,0,34,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,68,0,0,0,0,0,1,0,0,0,0,0,3,0,0,685,34,116,0,8,0,0,0,0,0,13,0,0,0,0,0,11,16,131,0,0,6,0,0,2,25,0,299,15,0,0,0,4,0,171,0,2,0,0,522,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,94,0,48,0,0,0,6,12,193,169,98,0,0,0,0,1,0,3,0,0,0,0,0,0,371,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,130,0,0,0,146,0,248,0,0,0,61,26,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,124,53,0,0,30,0,0,0,0,0,97,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,11,0,0,0,0,1,40,22,0,13,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,35,4 +0,0,0,0,0,9,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,142,9,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,33,0,0,0,0,3,25,138,55,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,45,1,0,0,73,0,47,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,92,56,0,0,30,0,0,0,0,0,35,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,4,4 +11,0,0,0,0,22,2,0,7,0,1,0,0,0,2,2,18,0,7,3,0,0,0,0,0,1,3,0,2,0,2,0,0,0,8,0,21,6,0,0,36,0,0,0,0,0,0,0,0,0,0,0,2,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,104,22,38,0,5,0,0,0,0,0,0,0,0,0,0,0,2,2,4,0,0,8,0,0,0,0,0,15,0,0,0,0,2,0,38,0,0,0,0,237,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,5,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,24,0,44,0,0,0,3,7,42,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,13,81,0,0,0,80,0,168,0,0,0,31,16,0,0,0,0,0,0,0,0,0,39,0,0,0,0,3,0,0,0,0,2,107,1,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,3,0,0,0,0,1,29,8,0,8,0,0,0,0,0,0,19,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,26,4 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,913,10,30,0,1,0,0,0,0,0,5,0,0,0,0,0,1,4,469,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,7,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,29,0,0,0,0,3,30,4,46,0,0,0,0,1,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,72,2,0,0,69,0,68,0,0,0,12,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,92,5,0,0,0,0,0,0,0,0,207,0,0,732,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,4,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,241,10,4 +150,0,0,29,10,85,189,22,430,30,74,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,95,301,0,0,701,0,0,0,1,0,0,3,0,0,0,0,28,356,0,0,0,0,0,1,0,3,0,12,0,84,0,0,2906,85,1530,0,39,0,0,0,0,0,73,12,0,0,0,0,13,22,410,0,22,33,9,0,10,203,0,1969,100,3,0,0,14,10,1329,0,46,0,0,1982,0,0,0,0,53,41,0,0,30,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,335,0,239,0,0,0,36,76,300,1682,364,0,0,0,0,1,0,5,0,0,0,0,0,0,2707,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1444,48,0,0,1560,0,2904,0,6,0,566,48,0,0,0,0,0,0,0,0,0,1154,1,0,0,0,30,0,0,0,0,22,279,564,0,0,215,0,0,0,0,0,9935,0,0,193,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,77,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,735,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1647,1652,4 +1,0,0,5,0,33,6,0,36,0,5,0,0,6,4,0,588,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,1,762,33,6,0,0,41,0,1,0,1,0,0,2,0,0,0,0,1,162,0,0,0,0,0,1,0,0,0,0,0,2,0,0,17842,33,657,0,3,0,0,0,0,0,18,0,0,0,0,1,8,24,4197,0,0,1,0,0,0,0,0,190,20,5,0,0,2,0,628,0,0,1,0,2891,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,576,0,54,0,0,0,1,4,250,1138,559,0,0,0,0,1,0,3,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,16,163,5,0,0,190,0,203,0,0,0,51,3,0,0,0,0,0,0,0,0,0,651,1,0,0,0,9,0,0,0,0,0,116,15,0,0,6,0,0,0,0,0,3397,1,0,826,6,0,1,1,1,0,0,0,6,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,5,0,0,0,0,1,34,83,0,4,12,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1925,32,4 +74,0,2,0,5,58,20,10,581,3,19,0,4,0,8,18,5907,0,8,8,0,3,2,7,2,13,0,0,2,0,1,0,0,2,13,26,62,15,0,0,243,0,0,0,1,0,0,2,0,0,0,0,6,176,0,0,0,0,0,1,0,0,0,0,0,13,0,0,1575,58,6795,0,5,0,0,0,0,0,11,9,0,0,0,0,10,18,305,0,10,13,2,0,4,51,0,528,15,2,0,0,8,5,6220,0,3,1,0,781,0,0,0,0,6,21,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,0,0,21,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,985,12,12,12,0,0,2,220,2,172,0,0,2,5,7,245,527,242,0,0,0,0,1,0,3,0,0,0,11185,3,1,801,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,67,14066,373,7,0,0,329,0,686,0,0,0,96,498,0,0,0,0,0,0,0,0,0,6565,1,0,0,0,22,0,0,0,0,5,137,140,0,2,30,0,0,0,1,0,12572,0,0,20,3,0,1,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,0,0,0,0,0,98,75,67,1,7,9,0,0,0,0,0,258,2,0,0,0,0,0,0,0,0,0,0,0,5,0,1,5,0,0,0,0,0,0,0,0,5,0,0,9,0,1,554,247,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,408,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,25,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,145,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,48,3,0,0,47,0,145,0,0,0,5,4,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,11,4 +0,0,0,15,0,48,6,0,49,10,6,0,0,6,27,0,719,0,7,2,0,0,0,7,0,10,0,0,6,0,1,0,0,0,9,978,48,32,0,0,101,0,0,0,1,0,0,2,0,0,0,0,1,224,0,0,0,0,0,1,0,0,0,4,0,14,0,0,29144,48,804,0,4,0,0,0,0,0,15,0,0,0,0,0,8,18,5497,0,0,9,0,0,0,0,0,188,20,4,0,0,2,0,832,0,10,1,0,2548,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,3302,0,53,0,0,0,0,3,298,842,3235,0,0,0,0,1,0,15,0,0,0,0,0,0,2152,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,89,29,258,27,0,0,260,0,401,0,0,0,92,13,0,0,0,0,0,0,0,0,0,820,1,0,0,0,9,0,0,0,0,1,132,26,0,0,6,0,0,0,0,1,2918,1,0,2215,6,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,3,0,0,0,0,1,57,173,0,5,12,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1714,58,4 +48,0,0,13,8,60,106,12,215,11,16,0,40,22,42,5,741,0,15,7,0,2,2,6,0,14,32,0,12,0,10,0,0,6,23,9,66,368,0,0,228,0,0,0,1,0,0,3,0,0,0,0,23,282,0,0,0,0,0,1,0,0,0,16,0,24,0,0,1541,60,1258,0,39,0,0,0,0,0,8,6,0,0,0,0,6,11,156,0,12,23,6,0,4,0,0,250,0,4,0,0,10,8,521,0,15,0,2,1191,0,0,0,0,73,1,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,13,0,12,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,7,3,0,0,0,0,0,2,0,0,0,0,0,7,7,0,0,0,0,0,0,0,1,0,0,0,0,0,87,0,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,52,0,0,0,0,0,0,216,39,131,0,0,0,32,63,150,256,239,0,0,0,0,1,0,1,0,0,1,0,0,0,1176,0,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,1,1550,196,1090,22,0,0,1273,0,2535,0,4,0,583,254,0,0,0,0,0,0,0,0,0,1202,1,0,0,0,17,0,0,0,0,17,361,120,0,0,0,0,0,0,0,0,4940,0,0,191,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,8,1,0,0,2,0,0,0,0,0,0,0,38,38,0,0,5,1,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,58,1,1,1,0,55,0,0,0,0,79,89,169,0,68,0,0,0,0,0,0,449,23,0,0,0,0,0,0,0,0,0,0,0,6,0,1,11,0,0,0,0,0,0,0,0,0,0,0,7,0,0,2021,362,4 +63,0,7,19,7,85,154,4,877,36,68,0,0,2,60,1,9829,0,15,8,0,1,0,8,0,39,20,0,23,0,6,3,0,6,40,26,89,244,0,0,523,0,0,0,1,0,0,1,1,0,0,0,38,288,0,0,0,0,0,1,0,0,0,17,0,61,0,0,1796,85,10915,0,60,0,0,0,0,0,10,0,0,0,0,0,13,20,146,0,4,40,6,0,7,166,0,1726,190,4,0,0,15,7,10526,0,43,0,0,1842,0,0,0,0,21,8,2,0,1,0,0,1,0,0,0,10,0,0,0,0,0,0,0,7,0,0,0,4,0,0,0,2,0,4,0,20,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,7,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1194,10,10,10,0,0,0,149,0,174,0,0,0,45,66,310,1227,161,0,0,0,0,1,0,4,0,0,0,18897,3,1,1106,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,659,23757,1007,30,0,0,1049,0,5595,0,5,0,360,689,0,0,0,0,0,0,0,0,0,11006,1,0,2,0,17,0,0,0,0,33,250,367,0,7,488,0,0,0,0,0,20085,0,0,26,3,0,1,5,0,0,0,0,4,0,0,0,0,0,0,0,0,0,32,0,0,1,0,0,0,0,0,0,0,0,47,47,0,0,7,1,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,83,1,1,1,0,43,0,0,0,0,77,129,83,0,82,9,0,0,0,0,0,583,8,0,0,0,0,0,0,0,0,0,0,0,5,0,1,44,0,0,0,0,0,0,0,0,0,0,0,11,0,2,555,997,4 +3,0,0,5,6,13,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,19,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,95,0,0,0,0,0,1,0,0,0,0,0,25,0,0,464,13,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,41,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,318,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,58,0,45,0,0,0,2,10,44,224,96,0,0,0,0,1,0,1,0,0,0,0,0,0,425,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,116,36,388,11,0,0,401,0,608,0,1,0,103,9,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,110,74,0,0,57,0,0,0,0,0,537,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,6,0,0,0,0,49,22,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,11,0,0,210,36,4 +0,0,0,8,2,14,50,2,57,9,8,0,0,0,19,2,127,0,11,1,0,0,0,1,0,0,6,0,2,0,2,1,0,2,4,0,16,140,0,0,43,0,0,0,1,0,0,7,0,0,0,0,2,122,0,0,0,0,0,1,0,0,0,0,0,17,0,0,13879,14,244,0,5,0,0,0,0,0,29,0,0,0,0,0,1,10,3899,0,2,4,2,0,2,0,0,92,0,13,0,0,6,2,114,0,13,0,0,1336,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,3194,0,289,0,0,0,4,11,39,26,3374,0,0,0,0,1,0,0,0,0,0,0,0,0,5726,0,187,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,220,37,423,10,0,0,459,0,922,0,2,0,161,20,0,0,0,0,0,0,0,0,0,274,1,0,0,0,2,0,0,0,0,1,132,46,0,0,0,0,0,0,0,0,1333,0,0,3980,0,0,1,0,0,0,0,0,19,0,0,0,2,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,12,1,1,1,0,4,0,0,0,0,17,20,175,0,11,0,0,0,0,0,0,92,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,2,0,3,3877,80,4 +0,0,0,0,0,9,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,125,9,37,0,1,0,0,0,0,0,8,0,0,0,0,0,1,1,38,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,33,0,0,0,0,3,25,4,49,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,45,1,0,0,48,0,29,0,0,0,11,11,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,92,2,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,4,4 +17,1,0,0,0,29,6,0,26,16,10,0,12,0,12,0,39,0,6,5,0,0,0,4,3,5,9,0,11,0,1,0,0,0,12,0,29,24,11,0,103,0,0,0,0,0,0,0,0,0,0,0,7,53,0,0,0,0,0,1,0,0,0,0,0,4,0,0,543,29,124,0,14,0,0,0,0,0,0,0,0,0,0,0,6,6,25,0,0,12,0,0,0,0,0,103,0,0,0,0,2,0,152,0,10,0,0,2929,0,0,0,0,28,9,0,6,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,6,5,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,104,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,36,0,0,0,0,0,0,74,0,53,0,0,0,12,44,60,87,54,0,0,0,0,0,0,42,0,0,0,0,0,0,621,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,8,31,184,0,0,0,115,0,302,0,0,0,58,21,0,0,0,0,0,0,0,0,0,111,0,0,0,0,12,0,0,0,0,8,131,1,0,0,0,0,0,0,0,0,376,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,27,0,0,0,0,1,41,12,0,26,0,0,0,0,0,0,122,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,0,0,0,0,0,0,1,0,0,0,0,0,0,0,97,96,4 +0,0,0,10,0,17,4,0,25,1,7,0,0,0,4,0,19,0,7,1,0,0,0,1,0,0,0,0,6,0,9,0,0,0,5,0,17,6,0,0,36,0,0,0,1,0,0,1,0,0,0,0,8,73,1,0,0,0,0,1,0,0,0,2,0,7,0,0,17803,17,69,0,15,0,0,0,0,0,6,0,0,0,0,0,1,3,3463,0,0,5,0,0,1,9,0,112,15,1,0,0,2,0,68,0,1,0,0,547,0,0,0,0,2,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2503,0,53,0,0,0,16,14,38,150,2519,0,0,0,0,1,0,0,0,0,0,0,0,0,4674,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,7,118,14,0,0,96,0,236,0,0,0,30,6,0,0,0,0,0,0,0,0,0,66,1,0,0,0,2,0,0,0,0,6,101,20,0,0,31,0,0,0,0,0,1610,0,0,4911,0,0,1,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,22,0,0,0,10,1,22,12,0,15,0,0,0,0,0,0,54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,3,0,0,0,0,0,0,0,0,0,0,0,0,1,2312,60,4 +146,0,0,29,10,85,187,22,421,27,72,0,0,2,61,0,375,0,20,16,0,6,2,6,0,34,22,0,14,0,10,2,0,9,34,0,95,301,0,0,675,0,0,0,1,0,0,3,0,0,0,0,38,365,0,0,0,0,0,1,0,3,0,12,0,79,0,0,2886,85,1513,0,49,0,0,0,0,0,70,12,0,0,0,0,13,22,386,0,22,34,9,0,10,193,0,1919,100,3,0,0,14,10,1281,0,43,0,0,2204,0,0,0,0,50,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,17,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,34,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,334,0,234,0,0,0,48,88,297,1631,352,0,0,0,0,1,0,5,0,0,0,0,0,0,2661,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,143,1422,48,0,0,1557,0,2898,0,6,0,567,46,0,0,0,0,0,0,0,0,0,1138,1,0,0,0,30,0,0,0,0,32,281,538,0,0,215,0,0,0,0,0,9918,0,0,170,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,64,0,0,0,0,81,129,310,0,73,9,0,0,0,0,0,708,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,37,0,0,0,0,0,0,0,0,0,0,0,14,0,5,1590,1809,4 +150,0,0,29,10,83,187,22,420,30,72,0,0,2,64,0,375,0,20,15,0,6,2,7,0,26,22,0,16,0,8,2,0,9,33,0,93,301,0,0,697,0,0,0,1,0,0,3,0,0,0,0,28,354,0,0,0,0,0,1,0,3,0,12,0,82,0,0,2908,83,1513,0,41,0,0,0,0,0,70,12,0,0,0,0,13,22,408,0,22,33,9,0,10,193,0,1897,100,3,0,0,14,10,1281,0,46,0,0,2382,0,0,0,0,52,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,7,0,0,0,0,0,1,0,17,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,333,0,246,0,0,0,36,76,292,1617,365,0,0,0,0,1,0,5,0,0,0,0,0,0,2679,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1467,48,0,0,1549,0,2900,0,6,0,562,61,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,277,538,0,0,215,0,0,0,0,0,9931,0,0,174,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,90,1,1,1,0,79,0,0,0,0,81,126,309,0,65,9,0,0,0,0,0,721,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1612,1723,4 +119,0,0,29,11,92,157,27,273,30,38,0,0,2,66,1,564,0,20,46,0,97,2,6,0,34,22,0,23,0,8,2,0,10,40,0,102,301,160,0,411,0,0,0,1,0,0,3,0,0,0,0,34,326,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2530,92,1793,0,56,0,0,0,0,0,20,15,0,0,0,0,13,22,296,0,27,40,10,0,8,37,0,733,70,3,0,0,14,11,595,0,46,0,0,2269,0,0,0,0,47,17,1,0,29,0,0,1,0,0,0,23,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,298,0,242,0,0,0,42,74,344,587,308,0,0,0,0,1,0,6,0,0,0,0,0,0,2289,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,681,338,1448,49,0,0,1502,0,2948,0,6,0,507,316,0,0,0,0,0,0,0,0,0,1121,1,0,0,0,151,0,0,0,0,29,284,149,0,0,155,0,0,0,0,0,10432,0,0,162,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,53,53,0,0,6,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,97,1,1,1,0,73,0,0,0,0,121,142,328,0,80,9,0,0,0,0,0,330,10,0,0,0,0,0,0,1,0,0,0,0,11,0,5,36,0,0,0,0,0,0,0,0,117,0,0,246,0,2,1781,1692,4 +38,0,0,13,4,49,42,16,154,12,26,0,0,2,21,0,83,0,7,13,0,4,4,5,0,8,19,0,10,0,5,1,0,1,21,0,53,11,0,0,293,0,0,0,1,0,0,4,0,0,0,0,6,173,0,0,0,0,0,1,0,0,0,43,0,18,0,0,1975,49,721,0,14,0,0,0,0,0,22,12,0,0,0,0,9,19,273,0,16,21,1,0,0,87,0,764,20,7,0,0,2,4,672,0,14,0,0,1168,0,0,0,0,16,0,2,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,1,0,25,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,0,0,0,0,72,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,34,10,10,10,0,0,0,209,0,123,0,0,0,10,30,222,671,264,0,0,0,0,1,0,4,0,0,0,0,0,0,994,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,28,384,18,0,0,432,0,638,0,0,0,215,40,0,0,0,0,0,0,0,0,0,335,1,0,0,0,26,0,0,0,0,2,133,302,0,0,34,0,0,0,0,0,3016,0,0,186,3,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,29,0,0,0,0,33,74,286,0,34,9,0,0,0,0,0,281,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,16,0,0,0,0,0,0,0,0,0,0,0,8,0,5,2363,277,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,4 +273,0,0,29,21,97,166,37,380,33,43,0,0,2,70,2,808,0,20,68,0,116,2,6,0,38,22,0,26,0,7,3,0,20,44,0,117,301,160,0,476,0,0,0,1,0,0,4,0,0,0,0,38,401,0,0,0,0,0,1,0,3,0,12,0,55,0,0,2648,97,3513,0,64,0,0,0,0,0,19,45,0,0,0,1,14,25,286,0,37,44,20,0,7,29,0,699,55,4,0,0,14,21,696,0,50,0,0,2766,0,0,0,0,63,29,0,0,28,0,0,1,0,0,0,22,0,0,0,0,0,0,0,26,0,0,0,14,0,0,0,0,0,7,0,69,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,32,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,20,10,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,330,0,292,0,0,0,46,75,416,546,325,0,0,0,0,1,0,5,0,0,0,0,0,0,2866,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,683,362,1811,59,0,0,1851,0,3246,0,6,0,599,738,0,0,0,0,0,0,0,0,0,1491,1,0,0,0,192,0,0,0,0,37,288,132,0,0,125,0,0,0,0,0,10733,0,0,162,4,0,1,7,0,0,0,0,6,0,0,0,2,0,0,0,0,0,32,0,0,0,0,0,0,0,0,1,0,0,105,105,0,0,7,1,0,0,0,0,3,17,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,98,1,1,1,0,64,0,0,0,0,247,161,365,0,87,9,0,0,0,0,0,324,30,0,0,0,0,0,0,1,0,0,0,0,21,0,6,37,0,0,0,0,0,0,0,0,117,0,0,197,0,2,1781,1909,4 +2,0,0,8,0,26,32,0,179,2,60,0,0,0,8,0,18,0,7,1,0,0,0,1,0,0,0,0,6,0,6,0,0,0,14,0,26,6,0,0,335,0,0,0,1,0,0,1,0,0,0,0,5,99,0,0,0,0,0,1,0,0,0,0,0,30,0,0,3647,26,307,0,12,0,0,0,0,0,6,0,0,0,0,0,1,3,774,0,0,14,0,0,9,161,0,1372,165,1,0,0,2,0,804,0,4,0,0,795,0,0,0,0,12,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,3,0,3,0,1,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,437,0,55,0,0,0,10,13,63,1156,445,0,0,0,0,1,0,0,0,0,0,0,0,0,1438,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,12,77,185,33,0,0,187,0,383,0,0,0,115,23,0,0,0,0,0,0,4,0,0,304,1,0,0,0,2,0,0,0,0,6,116,373,0,0,375,0,0,0,1,0,572,0,0,776,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,16,0,0,0,0,1,40,182,0,12,0,0,0,0,0,0,362,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,473,612,4 +20,0,0,0,0,35,24,0,36,2,5,0,2,0,4,0,20,0,6,6,0,0,0,6,0,10,3,0,6,0,2,1,0,0,6,0,35,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,77,0,0,0,0,0,1,0,0,0,0,0,3,0,0,708,35,116,0,9,0,0,0,0,0,13,0,0,0,0,0,11,16,124,0,0,6,0,0,2,25,0,299,15,0,0,0,4,0,171,0,2,0,0,635,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,96,0,49,0,0,0,6,12,197,170,100,0,0,0,0,1,0,3,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,133,0,0,0,149,0,227,0,0,0,61,37,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,6,125,53,0,0,30,0,0,0,0,0,90,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,11,0,0,0,0,1,41,22,0,13,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,35,4 +94,0,0,0,2,66,38,5,77,10,7,0,4,0,13,12,86,0,9,5,0,1,1,6,0,16,3,0,4,0,5,0,0,2,29,0,68,63,0,0,223,0,0,0,1,0,0,0,0,0,0,0,13,123,0,0,0,0,0,1,0,2,0,1,0,10,0,0,1444,66,319,0,14,0,0,0,0,0,13,3,0,0,0,0,8,13,201,0,5,29,2,0,4,20,0,294,0,0,0,0,10,2,228,0,7,0,0,4016,0,0,0,0,16,21,0,0,18,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,6,0,0,0,0,0,0,0,18,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,1,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,191,0,114,0,0,0,16,24,239,403,174,0,0,0,0,1,0,3,0,0,0,0,0,0,788,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,141,110,449,4,0,0,437,0,888,0,1,0,177,41,0,0,0,0,0,0,0,0,0,246,0,0,0,0,13,0,0,0,0,9,184,60,0,0,0,0,0,0,1,0,809,0,0,10,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,72,1,1,1,0,21,0,0,0,0,17,97,46,0,19,9,0,0,0,0,0,394,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,3,0,0,601,912,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,0,0,0,34,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +0,0,0,5,0,35,24,0,47,3,23,0,0,7,4,0,729,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12380,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,671,0,0,0,0,0,1,0,0,0,0,0,2,0,0,38091,35,891,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6321,0,0,1,0,0,0,0,0,359,25,2,0,0,2,0,817,0,0,87,0,4547,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1329,0,32,0,0,0,12,15,487,2061,1308,0,0,0,0,1,0,3,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,282,5,0,0,307,0,302,0,0,0,146,12,0,0,0,0,0,0,0,0,0,840,1,0,0,0,9,0,0,0,0,1,164,7,0,0,130,0,0,0,0,0,4462,1,0,1013,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2419,25,4 +0,0,0,0,0,8,40,0,48,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,8,130,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,44,0,331,15,0,0,0,4,0,226,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,32,0,0,0,0,3,21,203,54,0,0,0,0,0,0,0,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,86,0,58,0,0,0,52,4,0,0,0,0,0,0,0,0,0,113,0,0,0,0,2,0,0,0,0,0,91,88,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,104,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,4,4 +0,0,0,0,0,10,2,0,3,1,1,0,0,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,59,10,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,20,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,1,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,19,0,43,0,0,0,0,3,23,9,37,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,35,0,0,0,40,0,92,0,0,0,7,1,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,92,3,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,1,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,81,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,2,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,2,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,33,10,18,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,4,3,23,9,33,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,29,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,3,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,4 +2,0,0,4,0,27,6,0,10,0,2,0,0,2,3,0,12,0,7,3,0,0,0,5,0,11,0,0,2,0,1,0,0,0,2,0,27,6,0,0,27,0,0,0,1,0,0,0,0,0,0,0,4,82,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1045,27,31,0,3,0,0,0,0,0,3,0,0,0,0,0,7,12,112,0,0,2,0,0,0,0,0,72,5,0,0,0,2,0,26,0,0,0,0,992,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,65,0,34,0,0,0,3,5,180,15,79,0,0,0,0,1,0,4,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,34,10,236,4,0,0,89,0,271,0,0,0,15,71,0,0,0,0,0,0,0,0,0,42,0,0,0,0,8,0,0,0,0,0,110,7,0,0,0,0,2,0,0,0,644,0,0,0,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,0,0,0,0,0,1,29,18,0,5,9,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,300061,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,156,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,83,0,57,0,0,0,49,15,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,4,4 +15,0,0,4,0,17,2,0,28,3,3,0,0,0,6,0,116,0,6,1,0,0,0,1,0,0,60,0,20,0,21,0,0,0,6,0,17,65,0,0,22,0,55,0,1,0,0,55,0,0,0,0,20,312,0,0,0,0,0,1,0,0,0,0,0,7,0,0,10148,17,457,0,41,0,0,0,0,0,132,0,0,0,0,0,1,57,1538,0,0,6,0,0,0,0,0,161,0,68,0,0,2,0,419,0,4,0,0,583,0,4,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,1677,0,428,0,0,0,40,103,39,180,2083,0,0,0,0,1,0,0,0,0,0,0,0,0,4147,0,65,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,8,7,135,4,0,0,607,0,896,0,0,0,548,7,0,0,0,0,0,0,0,0,0,161,1,0,0,0,2,0,0,0,0,21,99,449,0,0,0,0,0,0,0,0,675,0,0,1597,0,0,1,0,1,0,0,0,157,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,178,0,0,0,0,21,20,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,40,0,0,0,0,1,23,87,0,101,0,0,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1349,385,4 +218,0,0,31,19,94,190,32,359,26,47,0,0,2,64,1,670,0,22,61,0,112,1,6,0,47,13,0,22,0,4,3,0,18,39,0,112,352,160,0,373,0,0,0,1,0,0,1,1,0,0,0,44,336,0,0,0,0,0,1,0,2,0,12,0,50,0,0,2096,94,2354,0,65,0,0,0,0,0,14,36,0,0,0,0,14,21,150,0,32,39,18,0,9,37,0,799,70,4,0,0,16,19,612,0,45,0,0,4304,0,0,0,0,55,23,0,0,37,0,0,1,0,0,0,18,0,0,0,0,0,0,0,22,0,0,0,14,0,0,0,1,0,6,0,65,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,17,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,79,10,10,10,0,0,0,181,0,214,0,0,0,49,66,371,619,214,0,0,0,0,1,0,4,0,0,0,0,0,0,2444,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,780,345,1819,61,0,0,1862,0,3742,0,7,0,556,189,0,0,0,0,0,0,0,0,0,1355,1,0,2,0,180,0,0,0,0,42,321,86,0,0,155,0,0,0,0,0,9917,0,0,26,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,58,58,0,0,16,1,0,0,0,0,3,10,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,98,1,1,1,0,43,0,0,0,0,191,151,90,0,80,9,0,0,0,0,0,317,26,0,0,0,0,0,0,1,0,0,0,0,19,0,4,32,0,0,0,0,0,0,0,0,117,0,0,169,0,1,1629,1006,4 +153,0,0,29,10,85,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,3,0,9,33,0,95,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,358,0,0,0,0,0,1,0,3,0,12,0,83,0,0,2826,85,1518,0,39,0,0,0,0,0,70,12,0,0,0,0,13,22,399,0,22,33,9,0,10,198,0,1932,100,3,0,0,14,10,1304,0,46,0,0,2165,0,0,0,0,52,41,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,19,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,37,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,329,0,235,0,0,0,36,75,300,1651,359,0,0,0,0,1,0,5,0,0,0,0,0,0,2662,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1415,48,0,0,1557,0,2950,0,6,0,564,44,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,280,551,0,0,215,0,0,0,0,0,9924,0,0,183,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,75,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1618,1643,4 +5,0,0,0,0,12,2,0,4,0,1,0,0,0,2,0,10,0,6,2,0,0,0,0,0,2,0,0,2,0,1,0,0,0,4,0,12,6,0,0,18,0,0,0,1,0,0,1,0,0,0,0,2,30,0,0,0,0,0,1,0,0,0,0,0,0,0,0,72,12,26,0,5,0,0,0,0,0,2,0,0,0,0,0,1,3,4,0,0,4,0,0,0,0,0,12,0,0,0,0,2,0,13,0,0,0,0,103,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,22,0,25,0,0,0,2,5,27,14,27,0,0,0,0,1,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,11,57,0,0,0,53,0,130,0,0,0,23,7,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,3,102,2,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,2,0,0,0,0,1,16,4,0,5,0,0,0,0,0,0,22,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,10,4 +149,0,0,29,10,85,187,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,3,0,9,33,0,95,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,353,0,0,0,0,0,1,0,3,0,13,0,82,0,0,2834,85,1511,0,39,0,0,0,0,0,70,12,0,0,0,0,13,22,382,0,22,33,9,0,10,193,0,1895,100,3,0,0,14,10,1279,0,46,0,0,2137,0,0,0,0,52,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,17,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,326,0,235,0,0,0,36,75,300,1616,356,0,0,0,0,1,0,5,0,0,0,0,0,0,2670,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1468,48,0,0,1556,0,2904,0,6,0,563,45,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,280,538,0,0,215,0,0,0,0,0,9913,0,0,177,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,75,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1608,1655,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,0,0,0,96,8,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,1,27,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,28,0,0,0,0,3,21,4,42,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,43,0,26,0,0,0,9,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,4,4 +1,0,0,3,0,29,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,136,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1187,29,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,181,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,648,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,145,0,49,0,0,0,1,4,186,14,143,0,0,0,0,1,0,3,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,32,10,144,3,0,0,150,0,313,0,0,0,41,9,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,111,24,0,0,0,0,0,0,0,0,96,0,0,101,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,87,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,179,51,4 +224,0,0,0,3,85,57,12,344,3,110,1,2,0,5,0,47,0,7,15,0,3,3,3,0,7,3,0,42,0,87,1,0,3,36,0,88,12,0,0,516,0,0,0,0,0,0,0,0,0,0,0,93,103,0,0,0,0,0,1,0,0,0,0,0,24,0,0,5294,85,1439,0,137,0,0,0,0,0,272,9,0,0,0,0,11,11,245,0,12,36,3,0,4,303,0,2785,420,0,0,0,6,3,1466,0,2,0,0,8224,0,0,0,0,86,96,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,80,0,0,0,81,0,0,0,0,0,1,0,13,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,75,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,233,0,185,0,0,0,180,184,164,1996,254,0,0,0,0,0,0,0,0,0,0,0,0,0,3895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,545,6,0,0,705,0,533,0,0,0,471,48,0,0,0,0,0,0,0,0,0,573,0,0,0,0,24,0,0,0,0,92,176,590,0,0,938,0,0,0,0,0,1088,0,0,87,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,85,1,1,1,0,220,0,0,0,0,25,124,36,0,140,0,0,0,0,0,0,647,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,1,0,0,0,0,0,0,0,0,0,0,5,0,0,1175,274,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,415,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,32,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,123,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,36,0,34,0,0,0,2,4,27,96,54,0,0,0,0,1,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,46,3,0,0,47,0,150,0,0,0,5,4,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,28,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,14,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,22,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,4 +151,0,0,29,10,84,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,94,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,340,0,0,0,0,0,1,0,3,0,10,0,83,0,0,3084,84,1522,0,39,0,0,0,0,0,72,12,0,0,0,0,13,22,390,0,22,33,9,0,10,198,0,1932,100,3,0,0,14,10,1304,0,46,0,0,2084,0,0,0,0,52,40,0,0,30,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,327,0,234,0,0,0,36,76,296,1649,357,0,0,0,0,1,0,5,0,0,0,0,0,0,2683,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1415,48,0,0,1554,0,2901,0,6,0,564,61,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,277,551,0,0,215,0,0,0,0,0,9925,0,0,180,3,0,1,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,77,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1618,1650,4 +5,0,0,6,6,37,30,21,106,11,22,0,0,2,16,0,103,0,8,14,0,10,0,5,0,8,0,0,1,0,1,0,0,6,6,0,43,54,0,0,91,0,0,0,1,0,0,1,0,0,0,0,1,138,0,0,0,0,0,1,0,0,0,0,0,20,0,0,815,37,524,0,1,0,0,0,0,0,5,15,0,0,0,0,8,14,98,0,21,6,6,0,3,23,0,322,45,1,0,0,4,6,180,0,13,0,0,626,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,14,10,10,10,0,0,0,76,0,259,0,0,0,0,3,209,214,109,0,0,0,0,1,0,4,0,0,0,0,0,0,526,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,137,39,454,12,0,0,468,0,671,0,1,0,114,12,0,0,0,0,0,0,0,0,0,287,1,0,0,0,29,0,0,0,0,1,134,56,0,0,91,0,0,0,0,0,208,0,0,8,2,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,39,1,1,1,0,0,0,0,0,0,49,49,31,0,2,8,0,0,0,0,0,112,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,17,0,0,0,0,0,0,0,0,0,0,0,11,0,0,637,44,4 +38,0,0,10,4,16,31,7,68,0,5,0,0,0,27,0,106,0,8,8,0,3,3,2,0,5,6,0,5,0,1,0,0,4,3,0,20,370,0,0,309,0,0,0,0,0,0,0,0,0,0,0,5,80,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1055,16,381,0,11,0,0,0,0,0,0,9,0,0,0,0,3,3,78,0,7,3,4,0,1,0,0,67,0,0,0,0,4,4,189,0,1,0,0,3954,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,67,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,14,0,0,0,0,0,0,69,0,30,0,0,0,5,13,45,70,87,0,0,0,0,0,0,0,0,0,0,0,0,0,823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,183,421,20,0,0,309,0,663,0,1,0,72,17,0,0,0,0,0,0,0,0,0,245,0,0,0,0,16,0,0,0,0,5,113,1,0,0,0,0,0,0,1,0,1192,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,1,1,1,0,5,0,0,0,0,33,23,4,0,17,0,0,0,0,0,0,74,88,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,875,38,4 +22,0,0,0,0,34,24,0,36,2,5,0,2,0,4,0,20,0,6,6,0,0,0,6,0,10,3,0,6,0,2,1,0,0,6,0,34,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,76,0,0,0,0,0,1,0,0,0,0,0,3,0,0,714,34,116,0,9,0,0,0,0,0,13,0,0,0,0,0,11,16,139,0,0,6,0,0,2,25,0,299,15,0,0,0,4,0,171,0,2,0,0,584,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,6,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,95,0,47,0,0,0,6,12,193,169,99,0,0,0,0,1,0,3,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,133,0,0,0,146,0,246,0,0,0,61,34,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,124,53,0,0,30,0,0,0,0,0,97,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,11,0,0,0,0,1,40,22,0,13,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,35,4 +0,0,2,0,1,19,3,0,120,0,2,0,1,0,2,0,755,0,6,4,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,24,19,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,1,46,0,0,0,0,0,1,0,0,0,0,0,0,0,0,20,19,885,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,1,0,0,1,0,0,7,0,0,0,0,4,1,759,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,0,0,0,0,0,0,17,0,19,0,0,0,1,3,24,4,21,0,0,0,0,0,0,0,0,0,0,1520,2,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,1913,73,1,0,0,79,0,267,0,0,0,6,108,0,0,0,0,0,0,0,0,0,889,0,0,0,0,5,0,0,0,0,1,96,1,0,2,0,0,0,0,0,0,1517,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,3,20,3,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,4,4 +0,0,0,5,0,35,25,0,48,3,24,0,0,7,4,0,764,0,6,1,0,0,0,8,0,10,0,0,24,0,1,0,0,0,1,12527,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,724,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39902,35,929,0,22,0,0,0,0,0,46,0,0,0,0,0,8,90,6585,0,0,1,0,0,0,0,0,363,25,1,0,0,2,0,852,0,0,90,0,4621,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1505,0,32,0,0,0,11,14,488,2095,1484,0,0,0,0,1,0,3,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,273,5,0,0,307,0,288,0,0,0,148,17,0,0,0,0,0,0,0,0,0,878,1,0,0,0,9,0,0,0,0,1,163,6,0,0,136,0,0,0,0,0,4629,1,0,990,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,54,0,0,0,0,1,36,208,0,23,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2470,22,4 +0,0,0,0,0,9,40,0,48,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,9,130,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,44,0,331,15,0,0,0,4,0,226,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,33,0,0,0,0,3,25,203,56,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,46,1,0,0,89,0,60,0,0,0,52,3,0,0,0,0,0,0,0,0,0,113,0,0,0,0,2,0,0,0,0,0,92,88,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,104,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,4,4 +6,0,0,10,0,65,181,0,121,6,15,0,0,2,38,3,66,0,63,4,0,0,0,9,0,8,24,0,15,0,12,4,0,0,24,0,65,206,0,0,319,0,0,0,1,0,0,7,1,0,0,0,16,264,0,0,0,0,0,1,0,0,0,5,0,16,0,0,8417,65,572,0,29,0,0,0,0,0,37,0,0,0,0,1,12,27,841,0,0,24,0,0,1,94,0,862,60,20,0,0,2,0,755,0,10,0,0,4148,0,0,0,0,4,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,774,0,176,0,0,0,30,53,288,1376,753,0,0,0,0,1,0,14,0,0,0,0,0,0,2640,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,26,428,11,0,0,671,0,1528,0,0,0,516,101,0,0,0,0,0,0,0,0,0,489,1,0,9,0,13,0,0,0,0,15,174,408,0,0,293,0,0,0,0,0,1360,0,0,1706,3,0,1,1,1,0,0,0,28,0,0,0,2,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,118,1,1,1,0,40,0,0,0,0,1,89,728,0,54,9,0,1,0,0,0,305,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1203,1487,4 +147,0,0,1,9,96,113,27,283,35,39,0,5,0,48,0,355,0,13,28,0,5,6,10,0,21,27,0,32,0,17,6,0,9,40,0,105,181,0,0,636,0,3,0,1,0,0,5,0,0,0,0,36,273,0,0,0,0,0,1,0,0,0,19,0,43,0,0,4403,96,1673,0,66,0,0,0,0,0,38,18,0,0,0,0,24,38,1104,0,27,40,9,0,7,112,0,1250,75,7,0,0,16,9,1099,0,33,0,0,4656,0,0,0,0,27,33,1,0,4,0,0,1,0,0,0,25,0,0,0,0,0,0,0,15,0,0,0,16,0,0,0,0,0,8,0,33,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,15,0,1,1,0,0,0,1,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,7,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,4,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,58,10,10,10,0,0,0,429,0,279,0,0,0,57,91,385,977,494,0,0,0,0,1,0,4,0,0,0,0,0,0,2250,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,352,159,1226,10,0,0,1118,0,1460,0,3,0,411,99,0,0,0,0,0,0,0,0,0,856,1,0,0,0,49,0,0,0,0,33,245,314,0,0,189,0,0,0,0,0,9785,0,0,803,3,0,1,8,1,0,0,0,6,0,0,0,1,0,0,0,0,0,31,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,12,1,2,0,0,0,3,397,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,172,1,1,1,0,94,0,0,0,0,73,145,269,0,94,9,0,1,0,0,0,534,20,0,0,0,0,0,0,0,0,0,0,0,10,0,1,35,0,0,0,0,0,0,0,0,0,0,0,12,0,2,1313,945,4 +215,0,0,31,19,97,190,32,359,27,47,0,0,2,65,1,676,0,22,59,0,113,1,7,0,48,13,0,22,0,5,2,0,18,40,0,115,352,160,0,375,0,0,0,1,0,0,1,1,0,0,0,45,346,0,0,0,0,0,1,0,2,0,12,0,51,0,0,2092,97,2357,0,66,0,0,0,0,0,14,36,0,0,0,0,14,21,173,0,32,40,18,0,9,37,0,801,70,4,0,0,16,19,617,0,46,0,0,2930,0,0,0,0,59,21,0,0,38,0,0,1,0,0,0,19,0,0,0,0,0,0,0,22,0,0,0,14,0,0,0,3,0,6,0,64,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,16,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,79,10,10,10,0,0,0,188,0,225,0,0,0,50,69,383,624,219,0,0,0,0,1,0,4,0,0,0,0,0,0,2592,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,780,346,1826,61,0,0,1869,0,3756,0,7,0,557,192,0,0,0,0,0,0,0,0,0,1362,1,0,2,0,180,0,0,0,0,43,322,86,0,0,155,0,0,0,0,0,9940,0,0,26,3,0,1,7,0,0,0,0,3,0,0,0,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,60,60,0,0,14,1,0,0,0,0,3,10,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,101,1,1,1,0,45,0,0,0,0,195,155,91,0,81,9,0,0,0,0,0,318,26,0,0,0,0,0,0,1,0,0,0,0,19,0,4,33,0,0,0,0,0,0,0,0,117,0,0,165,0,1,1760,1014,4 +21,0,0,0,0,34,24,0,36,2,5,0,2,0,4,0,20,0,6,5,0,0,0,7,0,10,3,0,5,0,2,1,0,0,6,0,34,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,77,0,0,0,0,0,1,0,0,0,0,0,3,0,0,702,34,115,0,8,0,0,0,0,0,13,0,0,0,0,0,11,16,135,0,0,6,0,0,2,25,0,298,15,0,0,0,4,0,170,0,2,0,0,651,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,95,0,47,0,0,0,6,12,193,169,99,0,0,0,0,1,0,3,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,132,0,0,0,146,0,247,0,0,0,61,31,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,124,53,0,0,30,0,0,0,0,0,100,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,10,0,0,0,0,1,40,22,0,12,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,35,4 +0,0,0,9,0,17,2,0,11,0,3,0,0,3,3,0,18,0,8,3,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,17,21,0,0,14,0,0,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,3,0,0,165,17,39,0,1,0,0,0,0,0,5,0,0,0,0,0,3,5,26,0,0,3,0,0,0,0,0,10,0,1,0,0,2,0,18,0,1,0,5,201,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,62,0,0,0,0,3,43,10,52,0,0,0,0,1,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,10,111,19,0,0,117,0,1770,0,0,0,36,3,0,0,0,0,0,0,0,0,0,48,1,0,0,0,4,0,0,0,0,1,99,17,0,0,0,0,0,0,0,0,34,0,0,12,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,0,0,0,0,0,1,20,52,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,28,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,44,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,7,4 +0,0,0,6,0,9,2,0,25,0,4,0,0,0,4,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,9,0,0,0,1,0,0,2,0,0,0,0,0,91,0,0,0,0,0,1,0,0,0,0,0,1,0,0,296,9,55,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,41,0,0,1,0,0,0,0,0,8,0,3,0,0,2,0,30,0,0,0,0,157,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,41,0,0,0,0,3,23,6,57,0,0,0,0,1,0,0,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,110,10,0,0,128,0,255,0,0,0,59,5,0,0,0,0,0,0,0,0,0,57,1,0,0,0,2,0,0,0,0,0,95,38,0,0,0,0,0,0,0,0,32,0,0,29,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,229,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,85,46,4 +0,0,0,8,2,15,50,2,56,9,6,0,0,0,18,4,123,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,4,0,17,136,0,0,43,0,0,0,1,0,0,7,0,0,0,0,1,115,0,0,0,0,0,1,0,0,0,0,0,16,0,0,3719,15,224,0,3,0,0,0,0,0,24,0,0,0,0,0,1,10,697,0,2,4,2,0,2,0,0,89,0,12,0,0,6,2,95,0,13,0,0,403,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,523,0,272,0,0,0,2,7,40,24,716,0,0,0,0,1,0,0,0,0,0,0,0,0,2575,0,186,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,219,37,403,10,0,0,459,0,882,0,2,0,158,12,0,0,0,0,0,0,0,0,0,268,1,0,0,0,2,0,0,0,0,1,133,48,0,0,0,0,0,0,0,0,623,0,0,844,0,0,1,0,0,0,0,0,15,0,0,0,2,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,13,1,1,1,0,2,0,0,0,0,17,21,173,0,6,0,0,0,0,0,0,90,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,2,0,2,1106,64,4 +365,0,0,3,13,168,182,37,466,72,75,0,6,0,126,1,928,0,15,20,0,10,6,9,2,63,50,1,22,0,16,2,0,11,93,0,181,195,6332,0,1008,0,0,0,1,0,0,5,1,0,0,0,72,412,0,0,0,0,0,1,0,3,0,16,0,106,0,0,39078,168,2862,0,91,0,0,0,0,0,138,27,0,0,0,0,14,25,7955,0,37,93,11,0,11,219,0,2131,135,11,0,0,18,13,2427,0,80,1,0,6237,0,0,0,0,116,86,2,0,31,0,0,1,0,0,0,22,0,0,0,0,0,0,0,17,0,0,0,37,0,0,0,0,0,2,0,26,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,92,8,0,0,0,0,0,2,0,0,0,0,0,7,24,0,0,0,3,0,0,0,0,9,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,113,12,12,12,0,0,2,5042,2,500,0,0,2,88,309,432,136814,5057,0,0,0,0,1,0,11,0,0,0,0,0,0,11487,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,364,242,1597,20,0,0,1646,0,1932,0,3,0,804,127879,0,0,0,0,0,0,0,0,0,1799,1,0,2,0,47,0,0,0,0,58,332,607,0,0,318,0,0,0,0,0,12715,0,0,8633,3,0,1,12,0,0,0,0,14,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,23,1,0,0,0,0,3,140,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3,178,1,1,1,0,495,0,0,0,0,182,274,443,1,145,9,0,0,0,0,0,937,18,0,0,0,0,0,0,0,0,0,0,0,14,0,2,78,1,0,0,0,0,0,0,27,8,0,0,27,0,5,4382,2550,4 +0,0,0,8,0,34,19,0,50,0,20,0,0,7,5,0,607,0,6,1,0,0,0,8,0,10,0,0,11,0,1,0,0,0,1,5832,34,6,0,0,57,0,3,0,1,0,0,3,0,0,0,0,1,358,0,0,0,0,0,1,0,0,0,0,0,4,0,0,16364,34,756,0,9,0,0,0,0,0,42,0,0,0,0,0,8,102,3340,0,0,1,0,0,0,0,0,312,25,4,0,0,2,0,692,0,0,61,0,2152,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,15,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,944,0,47,0,0,0,7,10,573,805,917,0,0,0,0,1,0,3,0,0,0,0,0,0,360,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,106,24,261,8,0,0,295,0,551,3,0,0,136,9,0,0,0,0,0,0,0,0,0,714,1,0,0,0,9,0,0,0,0,1,136,36,0,0,99,0,0,0,0,0,2458,1,0,852,19,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,19,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,29,0,0,0,0,1,35,143,0,10,12,0,1,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1184,559,4 +275,0,0,28,21,93,166,37,377,29,43,0,0,2,66,2,800,0,20,67,0,117,2,6,0,42,22,0,19,0,7,3,0,20,41,0,113,301,160,0,374,0,0,0,1,0,0,4,0,0,0,0,43,396,0,0,0,0,0,1,0,2,0,12,0,50,0,0,2638,93,3466,0,61,0,0,0,0,0,20,45,0,0,0,1,14,25,283,0,37,41,20,0,7,29,0,704,55,4,0,0,14,21,678,0,46,0,0,2949,0,0,0,0,60,32,0,0,27,0,0,1,0,0,0,19,0,0,0,0,0,0,0,27,0,0,0,13,0,0,0,0,0,7,0,67,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,33,2,0,0,0,0,0,2,0,0,0,0,0,0,14,0,0,0,0,0,0,0,20,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,312,0,289,0,0,0,51,83,409,547,314,0,0,0,0,1,0,5,0,0,0,0,0,0,2760,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,677,338,1805,58,0,0,1845,0,3140,0,6,0,595,652,0,0,0,0,0,0,0,0,0,1476,1,0,0,0,192,0,0,0,0,42,287,134,0,0,125,0,0,0,0,0,10723,0,0,169,4,0,1,7,0,0,0,0,5,0,0,0,2,0,0,0,0,0,28,0,0,0,0,0,0,0,0,1,0,0,104,104,0,0,12,1,0,0,0,0,3,15,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,99,1,1,1,0,47,0,0,0,0,243,154,370,0,84,9,0,0,0,0,0,301,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,33,0,0,0,0,0,0,0,0,117,0,0,258,0,2,1693,1975,4 +95,0,0,4,1,53,25,4,117,10,24,0,4,0,18,0,37,0,7,6,0,1,1,5,0,22,9,0,5,0,4,0,0,1,17,0,54,15,0,0,488,0,0,0,1,0,0,0,0,0,0,0,18,104,0,0,0,0,0,1,0,1,0,0,0,32,0,0,1370,53,367,0,21,0,0,0,0,0,16,3,0,0,0,0,8,13,277,0,4,17,1,0,4,88,0,788,15,0,0,0,8,1,555,0,13,0,0,2088,0,0,0,0,41,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,211,0,109,0,0,0,20,50,221,782,209,0,0,0,0,1,0,4,0,0,0,0,0,0,836,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,99,285,6,0,0,242,0,302,0,0,0,102,23,0,0,0,0,0,0,0,0,0,232,0,0,0,0,13,0,0,0,0,17,138,230,0,0,30,0,0,0,0,0,743,0,0,28,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,49,0,0,0,0,9,71,41,0,31,9,0,0,0,0,0,333,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,2,0,0,289,1430,4 +0,0,0,0,0,1,0,1,12,0,1,0,0,0,1,0,224,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,220,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,2,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,3,0,0,0,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,1,45,4 +6,0,0,6,0,54,8,0,62,7,9,0,0,2,11,0,1280,0,9,6,0,0,0,6,0,24,6,0,19,0,52,0,0,0,12,898,54,9,33159,0,58,0,0,0,1,0,0,6,0,0,0,0,66,1378,0,0,0,0,0,1,0,0,0,0,0,15,0,0,37151,54,1499,0,80,0,0,0,0,0,38,0,0,0,0,0,9,23,4625,0,0,12,0,0,1,7,0,406,20,10,0,0,2,0,1451,0,8,0,0,7281,0,0,0,0,15,0,1,0,3,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,6,0,0,7,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,12,12,12,0,0,0,3845,0,129,0,0,0,115,119,267,62041,3832,0,0,0,0,1,0,3,0,0,0,0,0,0,709,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,38,21,635,6,0,0,323,0,538,0,0,0,133,33347,0,0,0,0,0,0,0,0,0,1381,1,0,0,0,12,0,0,0,0,63,135,52,0,0,34,0,0,0,0,0,3182,1,0,298,7,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,6,0,0,0,6,3,0,0,0,0,0,7,52,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,116,0,0,0,0,1,66,300,0,89,12,0,0,0,0,0,115,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,5,732,43673,4 +21,0,0,0,0,36,24,0,36,2,5,0,2,0,4,0,20,0,6,6,0,0,0,6,0,10,3,0,6,0,2,1,0,0,6,0,36,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,68,0,0,0,0,0,1,0,0,0,0,0,3,0,0,693,36,116,0,9,0,0,0,0,0,13,0,0,0,0,0,11,16,126,0,0,6,0,0,2,25,0,299,15,0,0,0,4,0,171,0,2,0,0,573,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,96,0,48,0,0,0,6,12,201,169,100,0,0,0,0,1,0,3,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,135,0,0,0,152,0,291,0,0,0,61,38,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,126,53,0,0,30,0,0,0,0,0,90,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,11,0,0,0,0,1,42,22,0,13,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,39,4 +0,0,0,5,0,35,24,0,48,3,23,0,0,7,4,0,764,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12528,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,742,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39609,35,927,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6626,0,0,1,0,0,0,0,0,361,25,2,0,0,2,0,852,0,0,91,0,4413,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1444,0,32,0,0,0,12,15,485,2072,1423,0,0,0,0,1,0,3,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,274,5,0,0,305,0,289,0,0,0,146,12,0,0,0,0,0,0,0,0,0,876,1,0,0,0,9,0,0,0,0,1,162,7,0,0,132,0,0,0,0,0,4676,1,0,1035,22,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2496,29,4 +1,0,0,3,0,28,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,84,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1021,28,57,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,166,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,508,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,136,0,48,0,0,0,1,4,182,14,134,0,0,0,0,1,0,3,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,2,1,8,0,0,0,0,1,0,32,10,134,3,0,0,144,0,291,0,0,0,39,9,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,110,22,0,0,0,0,0,0,0,0,94,0,0,134,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,70,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,182,53,4 +3,0,0,5,6,13,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,19,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,101,0,0,0,0,0,1,0,0,0,0,0,25,0,0,473,13,531,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,43,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,428,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,58,0,45,0,0,0,2,10,44,224,96,0,0,0,0,1,0,1,0,0,0,0,0,0,428,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,117,36,391,11,0,0,401,0,598,0,1,0,103,7,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,110,74,0,0,57,0,0,0,0,0,539,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,6,0,0,0,0,49,22,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,11,0,0,216,36,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,403,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,132,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,45,3,0,0,47,0,146,0,0,0,5,1,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +282,0,0,30,21,95,169,37,402,35,52,0,0,2,72,2,806,0,20,66,0,118,2,6,0,36,22,0,22,0,8,2,0,20,41,0,115,301,160,0,505,0,0,0,1,0,0,4,0,0,0,0,37,421,0,0,0,0,0,1,0,3,0,12,0,61,0,0,2645,95,3541,0,58,0,0,0,0,0,27,45,0,0,0,1,14,25,290,0,37,41,20,0,9,50,0,875,85,4,0,0,14,21,788,0,52,0,0,2828,0,0,0,0,65,35,0,0,22,0,0,1,0,0,0,21,0,0,0,0,0,0,0,27,0,0,0,13,0,0,0,0,0,7,0,66,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,20,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,323,0,289,0,0,0,45,77,404,697,324,0,0,0,0,1,0,5,0,0,0,0,0,0,2987,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,679,376,1842,60,0,0,1861,0,3164,0,6,0,605,668,0,0,0,0,0,0,0,0,0,1525,1,0,0,0,192,0,0,0,0,35,289,175,0,0,185,0,0,0,0,0,10724,0,0,157,4,0,1,7,0,0,0,0,6,0,0,0,2,0,0,0,0,0,34,0,0,0,0,0,0,0,0,1,0,0,105,105,0,0,11,1,0,0,0,0,3,21,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,99,1,1,1,0,66,0,0,0,0,241,156,370,0,81,9,0,0,0,0,0,361,30,0,0,0,0,0,0,1,0,0,0,0,21,0,4,43,0,0,0,0,0,0,0,0,117,0,0,179,0,2,1707,1956,4 +151,0,0,29,10,84,187,22,426,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,15,0,8,2,0,9,33,0,94,301,0,0,707,0,0,0,1,0,0,3,0,0,0,0,28,336,0,0,0,0,0,1,0,3,0,12,0,83,0,0,2978,84,1520,0,40,0,0,0,0,0,71,12,0,0,0,0,13,22,423,0,22,33,9,0,10,198,0,1933,100,3,0,0,14,10,1305,0,46,0,0,2317,0,0,0,0,52,41,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,338,0,242,0,0,0,36,76,296,1650,369,0,0,0,0,1,0,5,0,0,0,0,0,0,2741,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1422,48,0,0,1556,0,2958,0,6,0,565,49,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,280,551,0,0,215,0,0,0,0,0,9943,0,0,188,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,78,0,0,0,0,81,127,309,0,64,9,0,0,0,0,0,733,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1649,1712,4 +113,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,562,0,20,45,0,98,2,6,0,33,22,0,17,0,8,2,0,10,38,0,99,301,160,0,385,0,0,0,1,0,0,3,0,0,0,0,34,354,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2475,89,1768,0,50,0,0,0,0,0,20,15,0,0,0,0,13,22,275,0,27,38,10,0,8,37,0,729,70,3,0,0,14,11,585,0,46,0,0,2713,0,0,0,0,45,13,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,29,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,280,0,229,0,0,0,42,72,337,582,291,0,0,0,0,1,0,6,0,0,0,0,0,0,2138,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1457,49,0,0,1495,0,2945,0,6,0,503,283,0,0,0,0,0,0,0,0,0,1117,1,0,0,0,151,0,0,0,0,29,283,149,0,0,155,0,0,0,0,0,10417,0,0,154,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,9,1,0,0,0,0,3,19,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,58,0,0,0,0,119,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,187,0,2,1637,1609,4 +12,0,0,4,0,18,2,0,23,3,3,0,0,0,6,0,91,0,6,1,0,0,0,1,0,0,45,0,15,0,15,0,0,0,5,0,18,61,0,0,22,0,54,0,1,0,0,55,0,0,0,0,15,291,0,0,0,0,0,1,0,0,0,0,0,7,0,0,8373,18,389,0,31,0,0,0,0,0,125,0,0,0,0,0,1,56,1367,0,0,5,0,0,0,0,0,135,0,65,0,0,2,0,319,0,4,0,0,836,0,3,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,1478,0,398,0,0,0,30,78,45,147,1861,0,0,0,0,1,0,0,0,0,0,0,0,0,3489,0,61,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,8,7,138,4,0,0,583,0,840,0,0,0,518,12,0,0,0,0,0,0,0,0,0,131,1,0,0,0,2,0,0,0,0,16,100,428,0,0,0,0,0,0,0,0,527,0,0,1137,0,0,1,0,1,0,0,0,149,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,158,0,0,0,0,16,15,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,30,0,0,0,0,1,23,102,0,75,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1192,340,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,25,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,23,0,0,0,0,3,22,13,22,0,0,0,0,1,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,0,0,0,35,0,59,0,0,0,5,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,3,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,2,4 +127,0,0,36,16,125,211,43,350,44,78,1,1,2,67,1,762,0,24,57,0,99,3,10,0,86,35,0,82,0,10,2,0,15,57,0,138,406,158,0,531,0,0,0,1,0,0,4,0,0,0,0,87,424,0,0,0,0,0,1,0,4,0,0,0,51,0,0,5966,125,2648,0,169,0,0,0,0,0,27,24,0,0,0,0,19,30,857,0,43,57,15,0,10,55,0,1142,95,6,0,0,20,16,926,0,47,0,0,8551,0,0,0,0,120,10,1,0,51,0,0,1,0,0,0,31,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,2,0,33,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,25,2,0,0,0,0,0,5,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,823,0,312,0,0,0,96,143,446,858,814,0,0,0,0,1,0,7,0,0,0,0,0,0,2718,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,894,402,1909,79,0,0,1941,0,3627,1,8,0,634,1354,0,0,0,0,0,0,0,0,0,1497,1,0,0,0,169,0,0,0,0,79,353,157,0,0,217,0,0,0,0,0,10271,0,0,179,3,0,1,10,0,0,0,0,9,0,0,0,3,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,73,73,0,0,14,1,0,0,0,0,3,15,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,154,1,1,1,0,128,0,0,0,0,181,195,279,0,206,9,0,0,0,0,0,394,14,0,0,0,0,0,0,1,0,0,0,0,14,0,6,50,0,0,0,0,0,0,0,0,117,0,0,253,0,4,1930,2140,4 +404,0,0,32,28,116,275,64,802,40,133,0,0,2,87,1,767,0,24,81,0,123,2,6,0,62,19,0,35,0,9,2,0,27,55,0,138,400,159,0,1409,0,0,0,1,0,0,5,1,0,0,0,63,447,0,0,0,0,0,1,0,3,0,21,0,141,0,0,4777,116,4211,0,98,0,0,0,0,0,107,60,0,0,0,0,14,28,699,0,64,55,27,0,12,398,0,3618,90,10,0,0,18,28,2549,0,63,0,0,3497,0,0,0,0,103,102,0,0,40,0,0,1,0,0,0,21,0,0,0,0,0,0,0,27,0,0,0,18,0,0,0,2,0,6,0,75,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,3,0,0,0,0,0,1,13,0,0,0,0,0,0,0,20,6,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,105,10,10,10,0,0,0,594,0,427,0,0,0,72,119,420,3211,618,0,0,0,0,1,0,4,0,0,0,0,0,0,5083,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,886,413,2304,68,0,0,2344,0,4236,0,8,0,818,388,0,0,0,0,0,0,0,0,0,2091,1,0,2,0,212,0,0,0,0,60,350,1035,0,0,192,0,0,0,0,0,11117,0,0,172,3,0,1,9,0,0,0,0,13,0,0,0,4,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,64,64,0,0,15,1,0,0,0,0,3,38,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,121,1,1,1,0,123,0,0,0,0,227,193,212,0,118,9,0,0,0,0,0,1351,32,0,0,0,0,0,0,1,0,0,0,0,23,0,4,50,0,0,0,0,0,0,0,0,117,0,0,199,0,6,2471,2463,4 +2,0,0,0,1,60,77,4,80,4,10,0,2,0,5,1,186,0,7,9,1,1,1,9,0,1,3,0,3,0,3,0,0,1,14,0,61,112,5,0,199,0,0,0,0,0,0,0,0,0,0,0,3,125,0,2,0,0,0,1,0,0,1,0,0,8,0,0,868,60,459,0,4,0,0,0,0,0,0,3,0,0,0,0,15,15,92,0,4,14,1,0,2,54,0,614,15,0,0,0,4,1,423,0,3,0,0,1161,0,0,0,0,11,2,0,0,1,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,167,0,105,0,0,0,4,16,139,790,169,0,0,0,0,0,0,0,0,0,0,0,0,0,698,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,1,0,18,26,307,1,0,0,344,0,1092,0,0,0,150,349,0,0,0,0,0,0,0,0,0,368,0,0,0,0,21,0,0,0,0,2,164,136,0,0,101,0,0,0,0,3,961,0,0,2,0,0,1,1,0,0,0,0,0,0,4,0,9,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,79,1,1,1,0,19,0,0,0,0,16,79,17,0,10,0,0,0,0,0,0,278,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,407,215,4 +0,0,0,3,0,11,2,0,7,1,3,0,0,0,5,0,15,0,7,1,0,0,0,1,0,0,0,0,4,0,1,0,0,0,1,0,11,6,0,0,10,0,0,0,1,0,0,1,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,4,0,0,163,11,36,0,5,0,0,0,0,0,3,0,0,0,0,0,1,3,30,0,0,1,0,0,0,0,0,10,0,1,0,0,2,0,17,0,2,0,0,132,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,41,0,0,0,0,3,31,26,54,0,0,0,0,1,0,0,0,0,4,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,81,3,0,0,71,0,169,0,0,0,16,5,0,0,0,0,0,0,0,0,0,39,1,0,0,0,2,0,0,0,0,1,93,5,0,0,0,0,4,0,0,0,34,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,4,0,0,0,0,1,12,1,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,474,10,4 +30,0,0,24,2,27,64,2,94,13,14,0,0,0,19,0,134,0,11,3,0,0,0,2,0,5,3,0,8,0,2,0,0,2,9,0,29,209,0,0,190,0,0,0,1,0,0,1,0,0,0,0,6,139,0,0,0,0,0,1,0,0,0,9,0,22,0,0,916,27,268,0,15,0,0,0,0,0,5,0,0,0,0,0,4,6,63,0,2,9,2,0,4,26,0,317,35,1,0,0,6,2,268,0,12,0,0,873,0,0,0,0,9,5,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,9,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,74,0,59,0,0,0,7,12,77,560,92,0,0,0,0,1,0,0,0,0,0,0,0,0,604,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,232,91,530,25,0,0,490,0,808,0,2,0,164,44,0,0,0,0,0,0,0,0,0,336,1,0,0,0,5,0,0,0,0,5,152,75,0,0,74,0,0,0,0,0,389,0,0,13,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,42,1,1,1,0,9,0,0,0,0,17,38,38,0,18,0,0,0,0,0,0,162,16,0,0,0,0,0,0,0,0,0,0,0,2,0,1,17,0,0,0,0,0,0,0,0,0,0,0,2,0,2,176,350,4 +0,0,0,8,0,35,8,0,42,0,6,0,0,6,4,0,551,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,1,898,35,6,0,0,48,0,2,0,1,0,0,2,0,0,0,0,1,183,0,0,0,0,0,1,0,0,0,0,0,4,0,0,18988,35,626,0,3,0,0,0,0,0,18,0,0,0,0,0,8,29,4446,0,0,1,0,0,0,0,0,204,20,3,0,0,2,0,603,0,0,22,0,2887,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,12,12,12,0,0,0,560,0,40,0,0,0,1,4,273,1213,546,0,0,0,0,1,0,3,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,16,205,8,0,0,235,0,302,0,0,0,81,8,0,0,0,0,0,0,0,0,0,623,1,0,0,0,9,0,0,0,0,0,125,32,0,0,21,0,0,0,0,0,3447,1,0,784,8,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,36,157,0,4,12,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1926,382,4 +1,0,0,58,0,13,2,0,157,0,18,0,0,0,110,0,83,0,10,1,0,0,0,1,0,0,0,0,1,0,1,1,0,0,3,0,13,6,25,0,88,0,1,0,1,0,0,1,1,0,0,0,0,336,0,0,0,0,0,1,0,0,0,0,0,2,0,0,46756,13,287,0,3,0,0,0,0,0,13,0,0,0,0,0,1,6,18130,0,0,3,0,0,0,0,0,9,0,4,0,0,2,0,355,0,0,0,0,10767,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,1,0,9270,0,46,0,0,0,1,4,27,27636,9275,0,0,0,0,1,0,0,0,0,1,0,0,0,786,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,466,5,319,57,0,0,304,0,5624,0,0,0,122,9,0,0,0,0,0,0,0,0,0,380,1,0,2,0,2,0,0,0,0,0,230,11,0,0,0,0,0,0,0,0,10385,0,0,735,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,363,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,1,0,0,0,0,1,16,526,0,3,0,0,1,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10571,100,4 +0,0,0,3,0,10,2,0,5,0,2,0,0,0,4,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,10,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,396,10,24,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,6,0,0,0,0,2,0,15,0,0,0,0,119,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,25,0,0,0,0,3,25,51,45,0,0,0,0,1,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,43,3,0,0,41,0,123,0,0,0,5,2,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,1,92,4,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,1,0,0,0,0,1,10,4,0,2,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,1,4 +107,0,0,30,11,93,156,27,266,30,34,0,0,2,67,1,565,0,20,45,0,97,2,6,0,34,22,0,25,0,7,3,0,10,41,0,103,301,160,0,405,0,0,0,1,0,0,3,0,0,0,0,34,352,0,0,0,0,0,1,0,3,0,12,0,51,0,0,2455,93,1780,0,58,0,0,0,0,0,18,15,0,0,0,0,13,22,278,0,27,41,10,0,7,29,0,662,55,3,0,0,14,11,563,0,46,0,0,2982,0,0,0,0,42,11,1,0,30,0,0,1,0,0,0,24,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,23,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,26,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,282,0,228,0,0,0,42,69,340,513,290,0,0,0,0,1,0,6,0,0,0,0,0,0,2173,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,683,336,1468,50,0,0,1497,0,2963,0,6,0,501,376,0,0,0,0,0,0,0,0,0,1111,1,0,0,0,150,0,0,0,0,30,282,133,0,0,125,0,0,0,0,0,10426,0,0,137,4,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,53,53,0,0,10,1,0,0,0,0,3,17,1,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,64,0,0,0,0,119,144,321,0,82,9,0,0,0,0,0,310,10,0,0,0,0,0,0,1,0,0,0,0,11,0,6,34,0,0,0,0,0,0,0,0,117,0,0,192,0,2,1756,1624,4 +76,0,0,0,16,53,47,33,371,5,65,0,3,0,3,12,171,0,7,22,0,19,31,7,0,9,3,0,7,0,5,0,0,16,7,630,83,52,4350,0,411,0,1,0,1,0,0,5,0,0,0,0,5,1995,0,0,0,0,0,1,0,0,0,0,0,21,0,0,3025,53,2735,0,11,0,0,0,0,0,106,48,0,0,0,5,11,27,411,0,33,7,16,0,2,163,0,1421,110,5,0,0,6,16,1004,0,0,0,0,1967,0,0,0,0,18,23,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,13,0,21,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,46,25,25,25,0,0,15,361,15,318,0,0,0,8,18,312,52354,339,0,0,0,0,1,0,3,0,0,0,1,1,0,1969,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,35,63,957,18,0,0,994,0,1109,0,0,0,335,49284,0,0,0,0,0,0,0,0,0,679,1,0,0,0,76,3,0,0,0,5,162,458,0,0,574,0,0,0,0,0,5281,0,0,48,3,0,1,5,0,0,0,0,5,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,4,0,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,24,0,0,0,0,555,91,109,0,15,9,0,0,0,0,0,507,19,0,0,0,0,0,0,0,0,0,0,0,31,0,2,5,0,0,0,0,0,0,0,0,3,0,0,31,0,0,3514,624,4 +28,0,0,5,0,39,9,0,14,0,5,0,2,0,6,30,24,0,7,5,0,0,0,8,0,10,0,0,5,0,2,0,0,0,10,0,39,12,0,0,189,0,0,0,1,0,0,2,0,0,0,0,4,89,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1110,39,101,0,7,0,0,0,0,0,11,0,0,0,0,0,12,20,203,0,0,10,0,0,1,0,0,98,0,2,0,0,4,0,111,0,0,0,0,1826,0,0,0,0,4,5,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,2,0,7,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,10,10,10,0,0,0,185,0,102,0,0,0,4,7,230,108,214,0,0,0,0,1,0,4,0,0,0,0,0,0,419,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,23,30,240,6,0,0,175,0,2104,0,0,0,61,13,0,0,0,0,0,0,0,0,0,97,1,0,0,0,13,0,0,0,0,4,131,10,0,0,0,0,1,0,0,1,131,0,0,29,3,0,1,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,5,0,0,0,0,1,49,42,0,8,9,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,402,310,4 +0,0,0,0,0,1,0,1,21,0,1,0,0,0,1,0,731,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,727,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,9,0,0,1,107,4 +1,0,0,5,0,29,5,0,26,0,2,0,0,2,3,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,4,0,29,6,0,0,23,0,0,0,1,0,0,6,0,0,0,0,2,166,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1711,29,87,0,3,0,0,0,0,0,25,0,0,0,0,3,7,23,255,0,0,4,0,0,0,0,0,82,5,9,0,0,2,0,39,0,0,0,0,795,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,207,0,79,0,0,0,1,4,185,18,203,0,0,0,0,1,0,5,0,0,0,0,0,0,396,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,10,165,6,0,0,176,0,390,0,0,0,73,13,0,0,0,0,0,0,0,0,0,62,1,0,0,0,8,0,0,0,0,1,113,36,0,0,0,0,0,0,0,0,108,0,0,114,3,0,1,1,0,0,0,0,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,33,168,0,4,9,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,249,72,4 +12,0,0,4,0,21,2,0,23,3,3,0,0,0,6,0,91,0,6,1,0,0,0,1,0,0,45,0,15,0,16,0,0,0,5,0,21,77,0,0,22,0,53,0,1,0,0,53,0,0,0,0,15,272,0,0,0,0,0,1,0,0,0,0,0,7,0,0,8446,21,390,0,31,0,0,0,0,0,125,0,0,0,0,0,1,55,1397,0,0,5,0,0,0,0,0,134,0,58,0,0,2,0,319,0,4,0,0,580,0,3,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,1491,0,411,0,0,0,30,78,57,145,1862,0,0,0,0,1,0,0,0,0,0,0,0,0,3442,0,59,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,8,7,136,4,0,0,580,0,829,0,0,0,506,30,0,0,0,0,0,0,0,0,0,131,1,0,0,0,2,0,0,0,0,16,103,415,0,0,0,0,0,0,0,0,581,0,0,1182,0,0,1,0,1,0,0,0,144,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,161,0,0,0,0,16,17,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,30,0,0,0,0,1,26,110,0,76,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1274,323,4 +26,0,0,6,0,45,36,0,52,30,35,0,0,7,8,0,982,0,7,1,0,0,0,8,0,10,12,0,22,0,5,0,0,0,3,6367,45,6,0,0,54,0,6,0,1,0,0,7,0,0,0,0,5,415,0,0,0,0,0,1,0,0,0,0,0,7,0,0,82090,45,1287,0,24,0,0,0,0,0,102,0,0,0,0,0,8,124,14829,0,0,3,0,0,0,0,0,408,25,11,0,0,2,0,1159,0,4,70,0,4711,0,0,0,0,14,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,10619,0,144,0,0,0,18,29,676,1441,10585,0,0,0,0,1,0,8,0,0,0,0,0,0,840,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,110,98,352,6,0,0,398,0,301,0,0,0,221,37,0,0,0,0,0,0,0,0,0,1127,1,0,0,0,9,0,0,0,0,2,149,61,0,0,171,0,0,0,0,0,5095,1,0,1089,36,0,1,1,1,0,0,0,17,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,36,365,0,0,0,4,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,53,0,0,0,0,1,48,224,0,37,12,0,1,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,34,0,0,0,0,0,0,0,0,0,0,0,0,0,7,2218,123,4 +20,0,0,0,0,35,14,0,26,2,5,0,2,0,4,0,20,0,6,6,0,0,0,6,0,10,3,0,6,0,2,1,0,0,6,0,35,9,0,0,73,0,0,0,1,0,0,0,0,0,0,0,5,74,0,0,0,0,0,1,0,0,0,0,0,3,0,0,676,35,88,0,9,0,0,0,0,0,9,0,0,0,0,0,11,16,121,0,0,6,0,0,2,15,0,229,15,0,0,0,4,0,121,0,2,0,0,599,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,88,0,45,0,0,0,6,12,197,129,92,0,0,0,0,1,0,3,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,128,0,0,0,135,0,218,0,0,0,47,32,0,0,0,0,0,0,0,0,0,77,0,0,0,0,12,0,0,0,0,5,125,33,0,0,30,0,0,0,0,0,95,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,11,0,0,0,0,1,41,22,0,13,9,0,0,0,0,0,71,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,35,4 +11,0,0,8,2,64,33,1,84,2,10,0,0,6,11,3,724,0,9,5,0,0,0,11,3,19,6,0,51,0,1,0,0,1,20,835,65,82,9,0,108,0,0,0,1,0,0,22,2,0,0,0,10,392,0,0,0,0,0,1,0,0,0,8,0,5,0,0,20165,64,1027,0,55,0,0,0,0,0,84,0,0,0,0,7,15,65,4249,0,1,20,1,0,1,0,0,350,20,38,1,0,6,2,833,0,2,2,0,2296,0,0,0,0,5,2,13,0,0,0,0,1,0,0,0,14,0,0,2,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,1,36,0,0,0,0,0,2,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,40,12,12,12,0,0,0,1270,0,288,0,0,0,12,28,315,415,1200,0,0,0,0,1,0,11,0,0,0,0,0,0,1722,0,0,0,0,0,0,0,0,0,0,0,0,22,1,0,0,0,0,0,1,0,191,54,507,18,0,0,631,0,1613,0,1,0,321,52,0,0,0,0,0,0,0,0,0,880,1,0,8,0,19,0,0,0,0,3,173,136,0,0,6,0,1,0,0,0,3144,1,0,629,7,0,1,1,0,0,0,0,56,0,0,0,16,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,78,1,1,1,0,58,0,0,0,0,9,85,493,0,63,14,0,0,0,0,0,173,7,0,0,0,0,0,0,0,0,0,0,0,3,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,14,2468,251,4 +5,0,0,5,0,48,5,0,35,0,7,0,0,2,4,0,19,0,7,4,0,0,0,5,0,9,0,0,141,0,1,0,0,0,18,0,48,6,0,0,50,0,0,0,1,0,0,12,0,0,0,0,1,216,0,0,0,0,0,1,0,0,0,0,0,7,0,0,33786,48,293,0,141,0,0,0,0,0,58,0,0,0,0,0,8,28,524,0,0,18,0,0,1,8,0,305,20,17,1,0,2,0,215,0,2,0,0,31144,0,0,0,0,6,2,1,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,3,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,10,10,0,0,0,435,0,204,0,0,0,0,3,188,25836,415,0,0,0,0,1,0,2,0,0,0,0,0,0,1141,0,0,0,0,0,0,0,0,0,0,0,0,12,1,4,0,0,0,0,1,0,34,12,1344,5,0,0,372,0,870,0,0,0,249,760,0,0,0,0,0,0,11,0,0,79,1,0,0,0,9,0,0,0,0,1,135,161,0,0,31,0,0,0,0,0,889,0,0,396,3,0,1,3,0,0,0,0,24,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,140,0,0,0,0,1,66,553,0,142,9,0,0,0,0,0,119,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,7,727,310259,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,124,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1120,28,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,200,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,468,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,148,0,48,0,0,0,1,4,182,14,146,0,0,0,0,1,0,3,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,32,10,128,4,0,0,152,0,319,0,0,0,42,6,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,110,24,0,0,0,0,0,0,0,0,107,0,0,124,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,86,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,193,52,4 +0,0,0,10,2,43,58,2,84,10,13,0,0,7,21,0,729,0,11,2,0,0,0,7,0,10,3,0,8,0,2,0,0,2,5,898,45,135,0,0,77,0,0,0,1,0,0,6,0,0,0,0,2,277,0,0,0,0,0,1,0,0,0,0,0,18,0,0,11233,43,895,0,7,0,0,0,0,0,40,0,0,0,0,0,8,39,2006,0,2,5,2,0,2,0,0,314,25,14,0,0,6,2,756,0,14,17,0,1507,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,968,0,310,0,0,0,4,9,307,480,1130,0,0,0,0,1,0,3,0,0,0,0,0,0,2949,0,192,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,334,51,595,12,0,0,609,0,1674,0,2,0,215,18,0,0,0,0,0,0,0,0,0,923,1,0,0,0,9,0,0,0,0,1,163,58,0,0,32,0,0,0,0,0,2392,1,0,1132,10,0,1,1,0,0,0,0,17,0,0,0,2,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,10,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,46,1,1,1,0,12,0,0,0,0,17,50,205,0,11,12,0,0,0,0,0,140,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,14,0,0,0,0,0,0,0,0,0,0,0,2,0,2,1895,93,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,405,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,25,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,131,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,48,3,0,0,47,0,142,0,0,0,5,9,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,11,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,15,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,4 +0,0,0,6,0,41,56,0,95,2,39,0,0,8,3,0,847,0,6,1,0,0,0,8,0,12,0,0,44,0,1,0,0,0,1,13861,41,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,565,0,0,0,0,0,1,0,0,0,0,0,2,0,0,110592,41,1179,0,44,0,0,0,0,0,109,0,0,0,0,0,8,309,13232,0,0,1,0,0,0,0,0,573,30,2,0,0,2,0,1030,0,0,209,0,8381,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,6563,0,37,0,0,0,28,31,1435,7256,6492,0,0,0,0,1,0,3,0,0,0,0,0,0,7848,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,25,417,6,0,0,412,0,369,0,0,0,230,89,0,0,0,0,0,0,0,0,0,1054,1,0,0,0,9,0,0,0,0,1,188,72,0,0,290,0,0,0,0,0,5857,1,0,10273,53,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,53,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,127,0,0,0,0,1,42,291,0,45,12,0,1,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3419,214,4 +49,5,0,26,2,77,85,8,350,94,79,2,14,1,110,16,337,0,7,13,0,2,2,10,0,6,73,0,40,0,51,2,0,2,41,0,79,201,3,0,1197,0,0,0,1,0,0,9,0,0,0,0,55,238,0,0,0,0,0,1,0,0,0,260,0,99,0,0,7875,77,1417,0,67,0,0,0,0,0,31,6,0,0,0,4,18,30,1810,0,8,41,2,0,3,265,0,2339,100,10,0,0,2,2,2143,0,83,0,7,1997,0,0,0,0,147,11,0,6,0,0,3,1,0,0,0,20,0,0,0,0,0,0,0,6,0,0,0,31,0,0,0,1,0,47,0,17,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,3,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,21,0,0,0,0,101,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,1,0,68,0,0,0,0,0,0,1318,0,215,0,0,0,75,137,171,2038,1492,0,0,0,0,1,0,3,0,0,7,0,0,0,5458,0,0,0,0,0,0,0,0,0,1,0,17,9,0,2,0,0,0,0,2,4,8,365,703,35,0,0,766,0,984,0,0,0,566,116,0,0,0,0,0,0,6,0,0,1001,1,0,0,0,27,0,0,0,0,24,276,804,0,0,220,0,2,0,5,10,1570,0,0,1208,0,0,1,0,0,0,0,0,17,0,0,0,2,0,0,3,0,0,69,9,0,0,3,0,0,3,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,116,1,1,1,0,202,0,0,0,0,17,120,376,0,172,0,0,0,0,0,0,1047,21,0,0,0,0,0,0,0,0,0,0,0,2,0,1,102,0,0,0,0,0,0,5,0,0,0,0,4,0,7,1345,112,4 +7,0,0,13,1,18,27,1,48,8,14,0,1,0,16,0,82,0,9,1,0,0,0,1,0,0,0,0,9,0,17,0,0,1,3,0,19,60,0,0,159,0,3,0,1,0,0,6,0,0,0,0,16,124,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2286,18,196,0,26,0,0,0,0,0,18,0,0,0,0,0,1,10,618,0,1,3,1,0,2,0,0,142,0,7,0,0,6,1,126,0,1,0,0,648,0,0,0,0,19,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,2,2,1,1,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,190,0,71,0,0,0,32,34,49,96,192,0,0,0,0,1,0,0,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,124,69,291,31,0,0,305,0,501,0,1,0,104,12,0,0,0,0,0,0,0,0,0,197,1,0,0,0,2,0,0,0,0,17,114,47,0,0,0,0,0,0,0,0,1514,0,0,912,0,0,1,0,1,0,0,0,6,0,0,0,2,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,379,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,24,1,1,1,0,41,0,0,0,0,9,22,514,0,26,0,0,0,0,0,0,112,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,0,0,0,0,0,0,0,1,0,0,0,1,0,4,417,33,4 +26,0,0,6,0,47,36,0,50,30,35,0,0,7,8,0,926,0,7,1,0,0,0,8,0,10,12,0,22,0,5,0,0,0,3,5186,47,6,0,0,54,0,6,0,1,0,0,7,0,0,0,0,5,363,0,0,0,0,0,1,0,0,0,0,0,7,0,0,67161,47,1231,0,24,0,0,0,0,0,102,0,0,0,0,0,8,128,18340,0,0,3,0,0,0,0,0,409,25,11,0,0,2,0,1103,0,4,72,0,4933,0,0,0,0,14,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,14183,0,138,0,0,0,18,29,681,1433,14148,0,0,0,0,1,0,8,0,0,0,0,0,0,839,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,110,98,327,6,0,0,398,0,302,0,0,0,214,23,0,0,0,0,0,0,0,0,0,1069,1,0,0,0,9,0,0,0,0,2,152,60,0,0,172,0,0,0,0,0,4925,1,0,1089,36,0,1,1,1,0,0,0,17,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,36,365,0,0,0,4,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,53,0,0,0,0,1,50,223,0,37,12,0,1,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,34,0,0,0,0,0,0,0,0,0,0,0,0,0,7,2203,127,4 +0,0,0,3,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,2,0,0,18,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,3,0,0,32,0,93,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,7,4 +0,0,0,6,0,25,5,0,19,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,0,0,1,0,25,6,0,0,27,0,2,0,1,0,0,2,0,0,0,0,1,99,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2353,25,48,0,1,0,0,0,0,0,10,0,0,0,0,0,7,15,1060,0,0,1,0,0,0,0,0,74,5,3,0,0,2,0,28,0,0,0,0,517,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,9,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,476,0,34,0,0,0,0,3,177,9,477,0,0,0,0,1,0,3,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,134,6,0,0,164,0,345,0,0,0,64,10,0,0,0,0,0,0,0,0,0,53,1,0,0,0,8,0,0,0,0,0,107,52,0,0,0,0,0,0,0,0,84,0,0,400,3,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,3,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,204,0,2,9,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,374,4 +6,0,0,3,0,18,2,0,7,11,3,0,0,0,17,0,16,0,7,2,0,0,0,1,0,0,0,0,2,0,9,0,0,0,6,0,18,17,0,0,417,0,0,0,1,0,0,1,0,0,0,0,8,88,0,0,0,0,0,1,0,0,0,0,0,17,0,0,732,18,60,0,11,0,0,0,0,0,8,0,0,0,0,0,2,4,58,0,0,6,0,0,0,0,0,43,0,2,0,0,2,0,50,0,15,0,0,446,0,0,2,0,4,0,2,0,4,0,0,1,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,71,0,45,0,0,0,16,19,43,143,103,0,0,0,0,1,0,0,0,0,0,0,0,0,561,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,18,156,3,0,0,184,0,294,0,0,0,92,12,0,0,0,0,0,0,0,0,0,52,1,0,0,0,3,0,0,0,0,9,128,65,0,0,0,0,0,0,0,0,59,0,0,56,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,18,0,0,0,16,1,24,186,0,11,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,1,107,63,4 +13,0,0,0,2,13,50,2,52,4,3,0,0,0,6,0,111,0,11,1,0,0,0,2,0,1,0,0,2,0,3,0,0,2,1,0,15,1655,0,0,14,0,0,0,0,0,0,0,0,0,0,0,3,86,0,0,0,0,0,1,0,0,0,0,0,0,0,0,143,13,156,0,6,0,0,0,0,0,0,0,0,0,0,0,2,2,24,0,2,1,2,0,2,0,0,93,0,0,0,0,6,2,36,0,2,0,0,188,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,32,0,28,0,0,0,5,6,42,23,44,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,37,363,2,0,0,370,0,1049,0,2,0,86,14,0,0,0,0,0,0,0,0,0,233,0,0,0,0,3,0,0,0,0,4,130,1,0,0,0,0,0,0,0,0,1795,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,14,1,1,1,0,6,0,0,0,0,17,16,3,0,6,0,0,0,0,0,0,48,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,341,947,4 +4,0,0,9,19,27,11,19,149,10,40,0,0,0,19,0,197,0,7,16,0,12,8,5,8,0,3,0,4,0,5,0,0,13,8,0,37,6,0,0,137,0,0,0,1,0,0,2,0,0,0,0,4,211,0,0,0,0,0,1,0,0,0,39,0,21,0,0,906,27,1152,0,9,0,0,0,0,0,11,34,0,0,0,0,7,11,122,0,19,17,4,0,2,37,1,466,65,3,0,0,2,19,301,0,11,0,0,606,0,1,0,0,23,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,35,8,8,17,0,0,8,163,8,73,0,0,17,8,14,97,3208,177,0,0,0,0,1,0,0,0,0,0,0,0,0,3494,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,26,317,28,0,0,361,0,444,0,0,0,151,23,0,0,0,0,0,0,0,0,0,423,1,0,0,0,49,0,0,0,0,5,128,127,0,0,158,0,0,0,0,0,6241,0,0,44,0,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,31,1,1,1,0,17,9,0,0,4,263,45,291,8,12,0,0,0,0,0,0,200,10,0,0,0,0,0,0,1,0,0,0,0,10,0,1,14,0,0,0,0,0,0,0,0,0,0,0,35,0,2,374,62,4 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,4,20,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,29,2,0,0,31,0,49,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,30,4 +21,0,0,0,2,29,64,2,160,2,31,0,14,0,5,1,85,0,8,4,0,1,0,1,0,0,0,0,0,0,1,0,0,2,12,0,30,117,0,0,319,0,0,0,1,0,0,1,0,0,0,0,0,106,0,0,0,0,0,1,0,0,0,0,0,21,0,0,659,29,377,0,1,0,0,0,0,0,14,3,0,0,0,0,1,3,137,0,2,12,2,0,17,114,0,939,30,2,0,0,32,2,613,0,1,1,0,925,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,127,0,157,0,0,0,0,3,58,786,168,0,0,0,0,1,0,0,0,0,0,0,0,0,708,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,201,162,327,3,0,0,366,0,1970,0,1,0,130,13,0,0,0,0,0,0,0,0,0,368,1,0,0,0,6,0,0,0,0,0,133,289,0,0,68,0,0,0,0,0,863,0,0,12,0,0,1,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,26,1,1,1,0,0,0,0,0,0,9,42,13,0,1,0,0,0,0,0,0,438,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,3,0,1,1383,45,4 +5,0,0,7,0,17,7,0,26,12,9,0,0,0,20,0,48,0,7,3,0,0,0,1,4,5,15,0,10,0,1,0,0,0,5,0,17,108,22,0,161,0,0,0,0,0,0,0,0,0,0,0,5,90,0,0,0,0,0,1,0,0,0,0,0,20,0,0,630,17,141,0,11,0,0,0,0,0,0,0,0,0,0,0,2,2,21,0,0,5,0,0,2,16,0,192,25,0,0,0,2,0,241,0,12,0,0,1096,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,46,0,37,0,0,0,10,60,38,185,54,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,29,179,8,0,0,64,0,320,0,0,0,21,23,0,0,0,0,0,0,0,0,0,117,0,0,0,0,8,0,0,0,0,6,100,29,0,0,50,0,0,0,0,0,5001,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,38,0,0,0,0,1,22,5,0,31,0,0,0,0,0,0,93,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,30,4 +34,0,0,17,2,78,33,8,214,89,51,0,0,0,118,7,96,0,35,11,0,6,0,2,0,3,23,0,13,0,7,7,0,0,53,0,80,36,970,0,615,0,0,0,1,0,0,6,0,0,0,0,16,269,0,0,0,0,0,1,0,0,0,41,0,108,0,0,11151,78,738,0,27,0,0,0,0,0,23,6,0,0,0,0,6,17,868,0,8,53,0,0,5,104,0,959,165,9,0,0,2,2,920,0,94,0,0,3068,0,0,0,0,45,0,0,0,20,0,0,1,0,0,5,21,0,0,0,0,0,0,0,0,0,20,0,23,0,0,0,0,0,2,0,30,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,1,11,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,88,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,134,0,0,0,0,0,0,10881,10001,173,0,0,8,26,79,138,1096,936,0,0,0,0,1,0,0,0,0,0,0,0,0,3578,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,14,145,544,21,0,0,499,0,775,0,0,0,344,133,0,0,0,0,0,0,0,0,0,554,1,0,0,0,15,4,0,0,0,14,198,293,0,0,496,0,0,0,0,0,4625,0,0,2569,0,0,1,0,0,0,0,0,11,0,0,0,4,0,0,0,0,0,79,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,33,4,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,82,1,1,1,0,115,0,0,0,0,17,133,517,0,53,0,0,0,0,0,0,436,4,0,0,0,0,0,0,0,0,0,0,0,2,0,2,101,0,0,0,0,0,0,0,0,4,0,0,5,0,4,1979,237,4 +54,0,0,8,7,77,87,20,172,26,24,0,3,0,47,2,541,0,14,43,0,96,1,5,0,33,13,0,16,0,4,2,0,6,33,0,83,156,160,0,257,0,0,0,1,0,0,2,0,0,0,0,30,243,0,0,0,0,0,1,0,2,0,12,0,39,0,0,1689,77,1419,0,44,0,0,0,0,0,10,12,0,0,0,0,11,19,110,0,20,33,6,0,7,37,0,605,65,0,0,0,12,7,527,0,37,0,0,2204,0,0,0,0,22,6,0,0,29,0,0,1,0,0,0,17,0,0,0,0,0,0,0,3,0,0,0,7,0,0,0,0,0,2,0,19,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,47,10,10,10,0,0,0,156,0,227,0,0,0,34,49,353,532,153,0,0,0,0,1,0,3,0,0,0,0,0,0,1481,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,358,314,878,20,0,0,917,0,1518,0,3,0,345,323,0,0,0,0,0,0,0,0,0,890,1,0,0,0,145,0,0,0,0,39,228,134,0,0,155,0,0,0,0,0,10160,0,0,15,4,0,1,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,24,0,0,0,0,0,0,0,0,1,0,0,97,97,0,0,6,1,0,0,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,84,1,1,1,0,34,0,0,0,0,129,116,256,0,59,9,0,0,0,0,0,240,6,0,0,0,0,0,0,1,0,0,0,0,7,0,3,30,0,0,0,0,0,0,0,0,117,0,0,155,0,0,811,614,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,404,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,25,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,124,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,49,3,0,0,47,0,143,0,0,0,5,4,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,11,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,14,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,15,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,4 +103,0,0,0,2,68,39,5,84,11,11,0,4,0,14,14,95,0,9,6,0,1,1,5,0,23,12,0,4,0,6,0,0,2,30,0,70,63,0,0,236,0,0,0,1,0,0,0,0,0,0,0,21,123,0,0,0,0,0,1,0,2,0,1,0,12,0,0,1596,68,365,0,22,0,0,0,0,0,15,3,0,0,0,0,8,13,209,0,5,30,2,0,5,28,0,384,15,0,0,0,10,2,307,0,8,0,0,4293,0,0,0,0,22,25,0,0,18,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,6,0,0,0,0,0,0,0,19,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,1,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,29,10,10,10,0,0,0,201,0,129,0,0,0,25,44,244,501,188,0,0,0,0,1,0,3,0,0,0,0,0,0,896,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,141,115,496,4,0,0,447,0,886,0,1,0,184,49,0,0,0,0,0,0,0,0,0,270,0,0,0,0,13,0,0,0,0,17,187,74,0,0,30,0,0,0,1,0,826,0,0,11,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,74,1,1,1,0,20,0,0,0,0,17,100,47,0,36,9,0,0,0,0,0,439,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,13,0,0,0,0,0,0,0,0,0,0,0,3,0,0,630,1096,4 +52,0,0,1,1,55,8,4,30,2,6,0,3,0,5,0,36,0,7,11,0,1,1,7,0,15,3,0,7,0,4,1,0,1,21,0,56,12,0,0,139,0,0,0,1,0,0,0,0,0,0,0,12,97,0,0,0,0,0,1,0,1,0,0,0,3,0,0,912,55,214,0,17,0,0,0,0,0,6,3,0,0,0,0,15,20,134,0,4,21,1,0,3,8,0,200,15,0,0,0,6,1,119,0,2,0,0,8839,0,0,0,0,11,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,8,0,0,0,4,0,0,0,0,0,1,0,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,118,0,81,0,0,0,15,21,220,164,121,0,0,0,0,1,0,3,0,0,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,52,263,2,0,0,222,0,395,0,0,0,91,30,0,0,0,0,0,0,0,0,0,95,0,0,0,0,20,0,0,0,0,11,146,19,0,0,30,0,0,0,0,0,129,0,0,5,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,16,0,0,0,0,9,77,37,0,21,9,0,0,0,0,0,132,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,147,651,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,20,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,2,0,0,165,10,38,0,21,0,0,0,0,0,0,0,0,0,0,0,1,1,15,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,26,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,0,3,23,43,33,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,40,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,20,0,0,0,0,1,10,0,0,21,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,4 +0,0,0,0,0,8,40,0,48,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,8,130,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,52,0,0,0,0,0,2,44,0,331,15,0,0,0,4,0,226,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,203,55,0,0,0,0,0,0,0,0,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,86,0,59,0,0,0,52,8,0,0,0,0,0,0,0,0,0,113,0,0,0,0,2,0,0,0,0,0,91,88,0,0,30,0,0,0,0,0,38,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,104,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,4,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,14,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,17,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,42,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,6,4 +0,0,0,0,0,8,31,0,39,1,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,1,0,0,125,8,120,0,1,0,0,0,0,0,16,0,0,0,0,0,1,1,45,0,0,0,0,0,2,35,0,268,15,0,0,0,4,0,181,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,34,0,0,0,0,3,21,166,56,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,32,2,0,0,81,0,87,0,0,0,48,1,0,0,0,0,0,0,0,0,0,95,0,0,0,0,2,0,0,0,0,0,91,70,0,0,30,0,0,0,0,0,31,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,86,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,1,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,15,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,23,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,2,0,0,410,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,283,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,156,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,31,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,347,14,4 +0,0,2,0,1,27,7,0,416,1,5,0,1,0,2,0,3173,0,6,4,0,1,0,1,0,0,0,0,0,0,1,0,0,0,5,26,27,9,0,0,38,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,1,0,0,0,0,0,2,0,0,280,27,3604,0,1,0,0,0,0,0,1,0,0,0,0,0,2,2,26,0,0,5,0,0,1,14,0,111,0,0,0,0,4,1,3251,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,792,0,0,0,0,0,0,37,0,37,0,0,0,0,3,37,84,55,0,0,0,0,1,0,0,0,0,0,6329,3,1,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,7925,116,1,0,0,116,0,320,0,0,0,25,396,0,0,0,0,0,0,0,0,0,3610,0,0,0,0,6,0,0,0,0,0,104,42,0,2,0,0,0,0,0,0,6413,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,3,32,15,0,1,0,0,0,0,0,0,60,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,105,4 +0,0,0,2,0,8,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,474,8,40,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,48,0,0,0,0,0,0,0,0,7,0,3,0,0,2,0,14,0,0,0,0,123,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,52,0,23,0,0,0,0,3,22,5,62,0,0,0,0,1,0,0,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,78,2,0,0,133,0,451,0,0,0,72,11,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,90,65,0,0,0,0,0,0,0,0,41,0,0,74,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,232,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,413,4 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,33,0,54,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,175,4 +1,0,0,3,0,28,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,115,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1068,28,57,0,2,0,0,0,0,0,14,0,0,0,0,0,7,15,145,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,590,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,9,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,125,0,49,0,0,0,1,4,182,14,123,0,0,0,0,1,0,3,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,1,0,32,10,148,3,0,0,186,0,336,0,0,0,81,10,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,110,64,0,0,0,0,0,0,0,0,72,0,0,41,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,226,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,147,55,4 +1,0,0,3,0,29,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,109,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1040,29,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,180,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,430,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,136,0,49,0,0,0,1,4,186,14,134,0,0,0,0,1,0,3,0,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,0,0,2,1,3,0,0,0,0,1,0,32,10,130,3,0,0,154,0,315,0,0,0,45,12,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,111,28,0,0,0,0,0,0,0,0,104,0,0,130,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,161,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,5,190,52,4 +207,0,0,26,17,81,193,26,344,34,45,0,0,2,76,1,647,0,22,32,0,18,2,5,0,45,16,0,29,0,5,3,0,17,37,0,98,540,0,0,376,0,0,0,1,0,0,0,0,0,0,0,45,327,0,0,0,0,0,1,0,0,0,2,0,54,0,0,2093,81,2482,0,73,0,0,0,0,0,4,30,0,0,0,0,16,21,153,0,26,37,17,0,8,48,0,896,80,0,0,0,16,17,733,0,51,0,0,3259,0,0,0,0,40,21,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,17,0,0,0,7,0,0,0,0,0,7,0,60,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,3,0,0,0,12,2,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,52,10,10,10,0,0,0,152,0,173,0,0,0,51,66,351,588,163,0,0,0,0,1,0,4,0,0,0,0,0,0,1846,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,773,178,1677,50,0,0,1716,0,2644,0,7,0,503,151,0,0,0,0,0,0,0,0,0,1330,0,0,0,0,57,0,0,0,0,47,281,107,0,0,187,0,0,0,1,0,14602,0,0,10,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,1,0,0,0,0,54,54,0,0,12,1,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,85,1,1,1,0,46,0,0,0,0,185,135,76,0,89,9,0,0,0,0,0,346,40,0,0,0,0,0,0,0,0,0,0,0,18,0,1,40,0,0,0,0,0,0,0,0,0,0,0,21,0,0,940,1229,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,2,0,0,407,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,129,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,155,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,30,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,14,4 +120,0,0,29,11,90,157,27,272,30,38,0,0,2,66,1,558,0,20,43,0,98,2,7,0,33,22,0,17,0,8,2,0,10,38,0,100,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,362,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2475,90,1766,0,49,0,0,0,0,0,20,15,0,0,0,0,13,22,288,0,27,38,10,0,8,37,0,729,70,3,0,0,14,11,584,0,46,0,0,2322,0,0,0,0,47,17,1,0,30,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,20,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,285,0,229,0,0,0,42,74,339,591,297,0,0,0,0,1,0,6,0,0,0,0,0,0,2239,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1466,49,0,0,1498,0,2944,0,6,0,503,227,0,0,0,0,0,0,0,0,0,1114,1,0,0,0,150,0,0,0,0,29,284,149,0,0,155,0,0,0,0,0,10416,0,0,154,4,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,53,53,0,0,7,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,63,0,0,0,0,117,138,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,187,0,2,1729,1620,4 +0,0,0,10,0,17,4,0,25,0,7,0,0,0,4,0,19,0,7,1,0,0,0,1,0,0,0,0,5,0,8,0,0,0,5,0,17,6,0,0,35,0,0,0,1,0,0,1,0,0,0,0,7,71,1,0,0,0,0,1,0,0,0,2,0,7,0,0,18538,17,67,0,13,0,0,0,0,0,6,0,0,0,0,0,1,3,3681,0,0,5,0,0,1,9,0,107,15,1,0,0,2,0,66,0,1,0,0,474,0,0,0,0,2,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2615,0,53,0,0,0,14,12,38,148,2631,0,0,0,0,1,0,0,0,0,0,0,0,0,4824,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,6,111,14,0,0,96,0,242,0,0,0,30,8,0,0,0,0,0,0,0,0,0,66,1,0,0,0,2,0,0,0,0,5,101,20,0,0,31,0,0,0,0,0,1672,0,0,5134,0,0,1,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,19,0,0,0,8,1,22,12,0,13,0,0,0,0,0,0,54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,0,0,0,0,0,0,0,0,0,0,0,0,1,2473,60,4 +0,0,0,3,0,13,2,0,12,0,2,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,13,6,0,0,6,0,0,0,1,0,0,1,1,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,2,0,0,111,13,35,0,1,0,0,0,0,0,3,0,0,0,0,0,1,4,39,0,0,0,0,0,0,0,0,6,0,3,1,1,2,0,8,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,46,0,0,0,0,3,31,4,56,0,0,0,0,1,0,0,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,87,3,0,0,97,0,1115,0,0,0,19,2,0,0,0,1,0,0,0,0,0,42,1,0,4,0,2,0,0,0,0,0,96,7,0,0,0,0,0,0,0,0,35,0,0,16,0,0,1,0,0,0,0,0,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,13,16,0,1,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,97,13,4 +121,0,0,29,11,91,159,27,284,30,43,0,0,2,66,1,565,0,20,44,0,99,2,6,0,33,22,0,18,0,8,2,0,10,38,0,101,301,160,0,411,0,0,0,1,0,0,3,0,0,0,0,34,350,0,0,0,0,0,1,0,3,0,12,0,54,0,0,2503,91,1804,0,51,0,0,0,0,0,25,15,0,0,0,0,13,22,295,0,27,38,10,0,9,50,0,840,85,3,0,0,14,11,649,0,46,0,0,2158,0,0,0,0,46,18,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,22,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,298,0,240,0,0,0,42,74,348,680,308,0,0,0,0,1,0,6,0,0,0,0,0,0,2305,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1430,49,0,0,1504,0,2983,0,6,0,506,386,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,151,0,0,0,0,29,285,173,0,0,185,0,0,0,0,0,10425,0,0,165,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,9,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,96,1,1,1,0,64,0,0,0,0,121,139,314,0,74,9,0,0,0,0,0,347,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,38,0,0,0,0,0,0,0,0,117,0,0,187,0,3,1761,1612,4 +268,0,0,28,26,109,203,59,521,34,81,0,0,2,77,0,496,0,22,79,0,121,1,7,0,60,9,0,39,0,6,2,0,25,52,0,129,352,160,0,888,0,0,0,1,0,0,5,1,0,0,0,57,421,0,0,0,0,0,1,0,2,0,21,0,84,0,0,3106,109,3208,0,94,0,0,0,0,0,41,57,0,0,0,0,14,28,442,0,59,52,25,0,11,158,0,1786,90,9,0,0,16,26,1224,0,55,0,0,3384,0,0,0,0,73,42,0,0,37,0,0,1,0,0,0,21,0,0,0,0,0,0,0,27,0,0,0,18,0,0,0,2,0,7,0,74,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,1,0,0,0,0,0,1,13,0,0,0,0,0,0,0,21,14,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,92,10,10,10,0,0,0,377,0,258,0,0,0,63,82,354,1504,446,0,0,0,0,1,0,3,0,0,0,0,0,0,3547,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,784,382,2050,62,0,0,2020,0,3897,0,7,0,648,206,0,0,0,0,0,0,0,0,0,1402,1,0,2,0,208,0,0,0,0,50,329,407,0,0,192,0,0,0,0,0,10493,0,0,122,3,0,1,8,0,0,0,0,14,0,0,0,4,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,1,0,0,0,0,3,11,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,110,1,1,1,0,63,0,0,0,0,161,181,192,0,107,9,0,0,0,0,0,674,30,0,0,0,0,0,0,1,0,0,0,0,21,0,6,44,0,0,0,0,0,0,0,0,117,0,0,177,0,5,2050,1497,4 +0,0,0,6,0,41,57,0,101,1,38,0,0,8,3,0,970,0,6,1,0,0,0,8,0,11,0,0,44,0,1,0,0,0,1,15430,41,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,566,0,0,0,0,0,1,0,0,0,0,0,2,0,0,92723,41,1308,0,43,0,0,0,0,0,111,0,0,0,0,0,8,311,12067,0,0,1,0,0,0,0,0,574,30,2,0,0,2,0,1157,0,0,220,0,8089,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,4935,0,38,0,0,0,27,30,1434,6246,4865,0,0,0,0,1,0,3,0,0,0,0,0,0,6215,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,22,460,6,0,0,430,0,374,0,0,0,246,92,0,0,0,0,0,0,0,0,0,1183,1,0,0,0,9,0,0,0,0,1,198,76,0,0,293,0,0,0,0,0,6422,1,0,8273,54,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,54,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,123,0,0,0,0,1,42,291,0,44,12,0,1,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3708,231,4 +150,0,0,29,10,85,187,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,15,0,8,2,0,9,33,0,95,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,363,0,0,0,0,0,1,0,3,0,11,0,82,0,0,2890,85,1513,0,40,0,0,0,0,0,71,12,0,0,0,0,13,22,394,0,22,33,9,0,10,193,0,1896,100,3,0,0,14,10,1280,0,46,0,0,2177,0,0,0,0,51,40,0,0,30,0,0,1,0,0,0,20,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,328,0,238,0,0,0,36,76,300,1616,357,0,0,0,0,1,0,5,0,0,0,0,0,0,2695,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1413,48,0,0,1558,0,2904,0,6,0,564,57,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,281,538,0,0,215,0,0,0,0,0,9925,0,0,189,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,78,0,0,0,0,81,128,309,0,64,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1623,1660,4 +149,0,0,29,10,84,188,22,420,30,73,0,0,2,63,0,374,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,94,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,355,0,0,0,0,0,1,0,2,0,11,0,82,0,0,2893,84,1514,0,39,0,0,0,0,0,72,12,0,0,0,0,13,22,404,0,22,33,9,0,10,193,0,1895,100,4,0,0,14,10,1279,0,46,0,0,2515,0,0,0,0,52,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,17,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,329,0,233,0,0,0,36,76,296,1616,357,0,0,0,0,1,0,5,0,0,0,0,0,0,2724,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,660,146,1404,48,0,0,1555,0,2956,0,6,0,563,54,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,279,538,0,0,215,0,0,0,0,0,9931,0,0,185,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,77,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1624,1657,4 +0,0,0,2,0,13,2,0,6,0,2,0,0,0,2,1,41,0,6,1,0,0,0,1,0,3,0,0,0,0,1,0,0,0,2,0,13,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,3,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,176,13,59,0,5,0,0,0,0,0,2,0,0,0,0,0,1,3,13,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,21,0,0,0,0,206,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,45,0,0,0,3,6,44,10,46,0,0,0,0,1,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,10,3,56,2,0,0,63,0,130,0,0,0,23,2,0,0,0,0,0,0,1,0,0,60,1,0,0,0,2,0,0,0,0,0,95,16,0,0,0,0,0,0,0,0,256,0,0,7,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,1,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,13,15,45,0,4,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,101,4 +1,0,0,4,0,29,5,0,20,1,3,0,0,2,3,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,24,0,0,0,1,0,0,2,0,0,0,0,2,127,0,0,0,0,0,1,0,0,0,0,0,4,0,0,875,29,59,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,149,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,518,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,128,0,51,0,0,0,1,4,186,14,126,0,0,0,0,1,0,3,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,2,1,8,0,0,0,0,1,0,32,13,140,5,0,0,164,0,368,0,0,0,51,10,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,113,33,0,0,0,0,0,0,0,0,73,0,0,41,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,128,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,216,60,4 +10,0,0,9,1,22,43,1,52,0,3,0,1,0,15,0,78,0,9,1,0,0,0,1,0,0,0,0,4,0,6,0,0,1,6,0,23,61,0,0,88,0,3,0,1,0,0,4,0,0,0,0,5,82,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2082,22,181,0,10,0,0,0,0,0,16,0,0,0,0,1,1,10,641,0,1,6,1,0,2,0,0,63,0,6,0,0,7,1,128,0,1,0,0,504,0,0,0,0,5,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,2,0,0,0,11,0,0,0,0,0,0,0,0,2,4,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,182,0,70,0,0,0,10,9,43,73,191,0,0,0,0,1,0,0,0,0,0,0,0,0,571,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,138,30,326,16,0,0,336,0,455,0,1,0,127,17,0,0,0,0,0,0,0,0,0,201,1,0,0,0,2,0,0,0,0,2,122,53,0,0,0,0,0,0,0,0,766,0,0,942,0,0,1,0,1,0,0,0,7,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,368,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,20,1,1,1,0,14,0,0,0,0,9,29,214,0,10,0,0,1,0,0,0,66,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,492,40,4 +7,0,0,13,0,83,9,0,87,24,42,0,0,2,67,0,164,0,7,9,0,0,0,10,9,16,27,0,33,0,2,1,0,0,43,0,83,6,50,0,377,0,0,0,1,0,0,1,0,0,0,0,17,233,0,0,0,0,0,1,0,0,0,11,0,46,0,0,5208,83,446,0,34,0,0,0,0,0,13,0,0,0,0,0,13,20,508,0,0,43,0,0,4,66,0,781,90,3,0,0,2,0,827,0,31,0,0,3318,0,0,0,0,54,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,5,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,24,10,10,10,0,0,0,403,0,127,0,0,0,32,689,260,941,379,0,0,0,0,1,0,2,0,0,0,0,0,0,1505,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,49,414,16,0,0,316,0,590,0,0,0,168,114,0,0,0,0,0,0,0,0,0,378,1,0,0,0,28,0,0,0,0,14,175,161,0,0,195,0,1,0,0,0,2003,0,0,740,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,118,1,1,1,0,176,0,0,0,0,1,126,507,0,70,9,0,0,0,0,0,278,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,34,0,0,0,0,0,0,0,0,0,0,0,0,0,3,911,198,4 +1,0,0,3,0,26,5,0,20,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,26,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,94,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1028,26,60,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,186,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,440,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,134,0,45,0,0,0,1,4,178,14,132,0,0,0,0,1,0,3,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,122,4,0,0,137,0,285,0,0,0,35,6,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,108,17,0,0,0,0,0,0,0,0,109,0,0,133,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,1,0,0,0,0,1,28,66,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,188,54,4 +0,0,0,7,2,16,50,2,56,10,6,0,0,0,19,0,123,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,4,0,18,136,0,0,39,0,0,0,1,0,0,7,0,0,0,0,1,160,0,0,0,0,0,1,0,0,0,0,0,17,0,0,3736,16,229,0,3,0,0,0,0,0,28,0,0,0,0,0,1,10,708,0,2,4,2,0,2,0,0,89,0,13,0,0,6,2,89,0,14,0,0,374,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,557,0,287,0,0,0,2,7,44,24,730,0,0,0,0,1,0,0,0,0,0,0,0,0,2513,0,182,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,236,38,445,9,0,0,462,0,1555,0,2,0,158,22,0,0,0,0,0,0,0,0,0,265,1,0,0,0,2,0,0,0,0,1,135,43,0,0,0,0,0,0,0,0,715,0,0,843,0,0,1,0,0,0,0,0,19,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,14,1,1,1,0,2,0,0,0,0,17,22,172,0,6,0,0,0,0,0,0,89,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,3,1424,70,4 +108,0,0,24,4,62,81,7,125,7,16,0,0,2,24,0,187,0,12,6,0,1,1,5,0,15,9,0,9,0,4,0,0,4,22,0,66,165,0,0,210,0,0,0,1,0,0,7,0,0,0,0,11,263,0,0,0,0,0,1,0,1,0,0,0,21,0,0,5349,62,483,0,18,0,0,0,0,0,30,3,0,0,0,0,8,21,1086,0,7,22,4,0,4,11,0,322,20,12,0,0,8,4,207,0,15,0,0,1490,0,0,0,0,40,30,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,33,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,779,0,242,0,0,0,13,46,241,240,746,0,0,0,0,1,0,4,0,0,0,0,0,0,1965,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,74,763,33,0,0,814,0,1510,0,3,0,285,25,0,0,0,0,0,0,2,0,0,447,1,0,0,0,13,0,0,0,0,11,192,94,0,0,34,0,0,0,0,0,1226,0,0,1022,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,64,1,1,1,0,63,0,0,0,0,33,88,360,0,28,9,0,0,0,0,0,268,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,11,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1358,1353,4 +0,0,0,2,0,8,2,0,29,0,3,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,58,0,0,0,0,0,1,0,0,0,0,0,1,0,0,7200,8,52,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,1925,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,29,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,816,0,25,0,0,0,0,3,22,4,825,0,0,0,0,1,0,0,0,0,0,0,0,0,1911,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,89,2,0,0,140,0,130,0,0,0,78,2,0,0,0,0,0,0,4,0,0,56,1,0,0,0,2,0,0,0,0,0,90,59,0,0,0,0,0,0,0,0,423,0,0,2296,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,323,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,824,11,4 +221,0,0,31,19,94,190,32,359,26,47,0,0,2,64,1,669,0,22,58,0,114,1,7,0,47,13,0,22,0,5,2,0,18,39,0,112,352,159,0,373,0,0,0,1,0,0,1,1,0,0,0,44,350,0,0,0,0,0,1,0,2,0,12,0,50,0,0,2048,94,2361,0,65,0,0,0,0,0,14,36,0,0,0,0,14,21,162,0,32,39,18,0,9,37,0,799,70,4,0,0,16,19,611,0,45,0,0,3017,0,0,0,0,59,24,0,0,38,0,0,1,0,0,0,19,0,0,0,0,0,0,0,22,0,0,0,14,0,0,0,2,0,6,0,67,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,16,5,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,79,10,10,10,0,0,0,185,0,215,0,0,0,49,67,370,619,218,0,0,0,0,1,0,4,0,0,0,0,0,0,2462,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,780,345,1800,61,0,0,1861,0,3751,0,7,0,555,112,0,0,0,0,0,0,0,0,0,1354,1,0,2,0,180,0,0,0,0,42,320,86,0,0,155,0,0,0,0,0,9924,0,0,24,3,0,1,7,0,0,0,0,4,0,0,0,1,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,58,58,0,0,11,1,0,0,0,0,3,10,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,96,1,1,1,0,45,0,0,0,0,191,151,90,0,80,9,0,0,0,0,0,317,26,0,0,0,0,0,0,1,0,0,0,0,19,0,4,32,0,0,0,0,0,0,0,0,117,0,0,173,0,1,1614,997,4 +0,0,0,6,0,8,2,0,24,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,88,0,0,0,0,0,1,0,0,0,0,0,1,0,0,258,8,47,0,1,0,0,0,0,0,5,0,0,0,0,0,1,4,29,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,23,0,0,0,0,148,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,33,0,0,0,0,3,22,6,46,0,0,0,0,1,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,104,8,0,0,122,0,211,0,0,0,57,2,0,0,0,0,0,0,0,0,0,51,1,0,0,0,2,0,0,0,0,0,94,40,0,0,0,0,0,0,0,0,29,0,0,15,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,152,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,20,4 +81,0,0,2,1,53,25,4,118,6,24,0,4,0,12,0,38,0,7,6,0,1,1,5,0,29,9,0,5,0,4,0,0,1,18,0,54,15,0,0,480,0,0,0,1,0,0,0,0,0,0,0,25,104,0,0,0,0,0,1,0,1,0,0,0,26,0,0,1368,53,369,0,28,0,0,0,0,0,16,3,0,0,0,0,8,13,264,0,4,18,1,0,4,88,0,802,15,0,0,0,8,1,552,0,7,0,0,1769,0,0,0,0,38,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,219,0,112,0,0,0,27,58,218,786,205,0,0,0,0,1,0,4,0,0,0,0,0,0,794,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,93,271,4,0,0,242,0,294,0,0,0,105,20,0,0,0,0,0,0,0,0,0,228,0,0,0,0,13,0,0,0,0,24,138,230,0,0,30,0,0,0,0,0,730,0,0,19,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,33,0,0,0,0,9,72,42,0,38,9,0,0,0,0,0,327,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,275,1564,4 +0,0,0,0,0,12,2,0,4,0,1,0,0,0,2,0,9,0,7,1,0,0,0,1,0,2,0,0,0,0,1,0,0,0,2,0,12,6,0,0,9,0,0,0,0,0,0,0,0,0,0,0,2,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,234,12,21,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,2,0,0,0,0,0,7,0,0,0,0,2,0,9,0,0,0,0,1150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,22,0,19,0,0,0,2,5,27,261,30,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,13,52,0,0,0,46,0,115,0,0,0,10,1,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,2,94,3,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,14,2,0,3,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,93,4 +107,0,0,24,4,72,113,7,157,7,16,0,0,2,24,0,187,0,12,6,0,1,1,5,0,15,9,0,9,0,4,0,0,4,21,0,76,164,0,0,274,0,0,0,1,0,0,7,0,0,0,0,11,273,0,0,0,0,0,1,0,1,0,0,0,21,0,0,5299,72,521,0,18,0,0,0,0,0,30,3,0,0,0,0,8,21,1034,0,7,21,4,0,4,43,0,546,20,12,0,0,8,4,367,0,15,0,0,1845,0,0,0,0,46,23,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,38,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,761,0,249,0,0,0,13,48,257,375,726,0,0,0,0,1,0,4,0,0,0,0,0,0,2056,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,74,793,33,0,0,874,0,1498,0,3,0,286,36,0,0,0,0,0,0,3,0,0,511,1,0,0,0,13,0,0,0,0,11,202,156,0,0,34,0,0,0,0,0,1208,0,0,971,3,0,1,2,0,0,0,0,15,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,26,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,74,1,1,1,0,68,0,0,0,0,33,97,359,0,28,9,0,0,0,0,0,320,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,11,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1328,1393,4 +94,0,0,22,3,71,89,6,134,7,15,0,0,2,22,0,141,0,10,6,0,1,1,5,4,15,9,0,13,0,4,0,0,3,22,0,74,114,4,0,267,0,0,0,1,0,0,7,0,0,0,0,15,241,0,0,0,0,0,1,0,1,0,0,0,21,0,0,5166,71,471,0,22,0,0,0,0,0,30,3,0,0,0,0,8,21,973,0,6,22,3,0,3,43,0,549,20,12,0,0,6,3,360,0,14,0,0,1596,0,0,0,0,40,19,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,33,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,738,0,231,0,0,0,21,60,254,382,696,0,0,0,0,1,0,4,0,0,0,0,0,0,1914,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,245,62,657,30,0,0,716,0,1216,0,2,0,251,23,0,0,0,0,0,0,2,0,0,413,1,0,0,0,17,0,0,0,0,15,186,155,0,0,34,0,0,0,0,0,1098,0,0,930,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,73,1,1,1,0,66,0,0,0,0,25,96,359,0,32,9,0,0,0,0,0,269,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,11,0,0,0,0,0,0,0,0,0,0,0,4,0,2,1132,1418,4 +120,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,556,0,20,45,0,98,2,6,0,32,22,1,17,0,8,2,0,10,38,0,99,301,160,0,395,0,0,0,1,0,0,3,0,0,0,0,34,328,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2561,89,1764,0,49,0,0,0,0,0,21,15,0,0,0,0,13,22,288,0,27,38,10,0,8,37,0,729,70,3,0,0,14,11,583,0,46,0,0,2334,0,0,0,0,46,16,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,288,0,225,0,0,0,42,74,334,591,300,0,0,0,0,1,0,6,0,0,0,0,0,0,2129,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1440,49,0,0,1496,0,2995,0,6,0,503,265,0,0,0,0,0,0,0,0,0,1111,1,0,0,0,151,0,0,0,0,30,283,149,0,0,155,0,0,0,0,0,10420,0,0,173,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,9,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,63,0,0,0,0,115,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,151,0,2,1620,1621,4 +6,0,0,9,0,58,179,0,124,6,15,0,0,2,21,2,66,0,62,4,0,0,0,7,0,9,24,0,10,0,9,3,0,0,23,0,58,206,0,0,282,0,0,0,1,0,0,7,1,0,0,0,13,232,0,0,0,0,0,1,0,0,0,5,0,16,0,0,7490,58,548,0,21,0,0,0,0,0,36,0,0,0,0,1,10,25,715,0,0,23,0,0,1,94,0,840,60,20,0,0,2,0,715,0,10,0,0,2328,0,0,0,0,3,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,676,0,172,0,0,0,24,50,247,1341,651,0,0,0,0,1,0,14,0,0,0,0,0,0,2680,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,25,428,9,0,0,621,0,1294,0,0,0,484,88,0,0,0,0,0,0,0,0,0,471,1,0,9,0,11,0,0,0,0,12,157,389,0,0,293,0,0,0,0,0,1389,0,0,1726,3,0,1,1,1,0,0,0,27,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,24,0,0,0,0,1,81,632,0,46,9,0,0,0,0,0,289,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,967,1485,4 +220,0,0,0,3,86,57,12,337,3,107,1,2,0,5,0,48,0,7,15,0,3,3,3,0,6,3,0,76,0,301,1,0,3,37,0,89,12,0,0,510,0,0,0,0,0,0,0,0,0,0,0,307,100,0,0,0,0,0,1,0,0,0,0,0,24,0,0,6129,86,1728,0,384,0,0,0,0,0,294,9,0,0,0,0,11,11,302,0,12,37,3,0,4,297,0,3626,405,0,0,0,6,3,1692,0,2,0,0,3254,0,0,0,0,84,93,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,79,0,0,0,77,0,0,0,0,0,1,0,13,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,72,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,254,0,206,0,0,0,608,612,166,2472,274,0,0,0,0,0,0,0,0,0,0,0,0,0,4320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,549,6,0,0,730,0,528,0,0,0,496,72,0,0,0,0,0,0,0,0,0,564,0,0,0,0,24,0,0,0,0,306,177,581,0,0,905,0,0,0,0,0,1359,0,0,301,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,86,1,1,1,0,681,0,0,0,590,25,126,37,0,387,0,0,0,0,0,0,638,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1342,2003,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,70,0,46,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,4,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,2,0,0,395,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,121,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,30,0,27,0,0,0,2,4,27,94,44,0,0,0,0,1,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,48,3,0,0,47,0,143,0,0,0,5,2,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +45,0,0,1,1,55,8,4,31,2,6,0,3,0,5,0,36,0,7,10,0,1,1,6,0,19,3,0,7,0,3,1,0,1,21,0,56,12,0,0,138,0,0,0,1,0,0,0,0,0,0,0,15,94,0,0,0,0,0,1,0,1,0,0,0,3,0,0,886,55,217,0,20,0,0,0,0,0,6,3,0,0,0,0,13,18,127,0,4,21,1,0,3,8,0,200,15,0,0,0,6,1,122,0,2,0,0,1538,0,0,0,0,11,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,129,0,78,0,0,0,17,27,220,167,119,0,0,0,0,1,0,3,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,52,267,2,0,0,222,0,380,0,0,0,91,35,0,0,0,0,0,0,0,0,0,96,0,0,0,0,18,0,0,0,0,14,146,19,0,0,30,0,0,0,0,0,119,0,0,4,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,14,0,0,0,0,9,77,37,0,24,9,0,0,0,0,0,128,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,130,837,4 +16,0,0,4,0,23,2,0,20,0,3,0,0,0,3,0,61,0,6,1,0,0,0,12,0,0,24,0,8,0,9,0,0,0,11,0,23,18,0,0,13,0,0,0,1,0,0,22,0,0,0,0,8,85,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1957,23,240,0,17,0,0,0,0,0,45,0,0,0,0,22,12,56,531,0,0,11,0,0,0,0,0,89,0,17,0,0,2,0,171,0,1,0,0,515,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,451,0,328,0,0,0,16,51,73,1183,572,0,0,0,0,1,0,0,0,0,0,0,0,0,2498,0,6,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,10,4,177,4,0,0,142,0,191,0,0,0,76,570,0,0,0,0,0,0,0,0,0,95,1,0,0,0,13,0,0,0,0,9,106,9,0,0,0,0,8,0,16,8,879,0,0,184,0,0,1,0,0,0,0,0,22,0,19,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,24,0,0,0,0,1,34,76,0,41,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,999,28,4 +81,0,0,25,8,75,163,17,383,26,68,0,0,2,56,0,309,0,18,14,0,5,1,6,0,25,13,0,13,0,4,3,0,7,28,0,83,253,0,0,633,0,0,0,1,0,0,3,0,0,0,0,24,308,0,0,0,0,0,1,0,2,0,12,0,75,0,0,2764,75,1276,0,34,0,0,0,0,0,69,9,0,0,0,0,13,22,333,0,17,28,7,0,9,193,0,1841,100,3,0,0,12,8,1217,0,40,0,0,1682,0,0,0,0,28,31,0,0,30,0,0,1,0,0,0,16,0,0,0,0,0,0,0,7,0,0,0,7,0,0,0,0,0,1,0,17,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,10,10,10,0,0,0,270,0,216,0,0,0,29,48,279,1530,312,0,0,0,0,1,0,4,0,0,0,0,0,0,2353,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,556,117,1196,42,0,0,1335,0,2548,0,5,0,499,38,0,0,0,0,0,0,0,0,0,999,1,0,0,0,26,0,0,0,0,18,255,535,0,0,215,0,0,0,0,0,9781,0,0,150,3,0,1,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,82,1,1,1,0,28,0,0,0,0,65,111,291,0,49,9,0,0,0,0,0,676,8,0,0,0,0,0,0,0,0,0,0,0,9,0,1,36,0,0,0,0,0,0,0,0,0,0,0,11,0,3,1531,777,4 +64,0,0,9,3,62,60,6,109,18,11,0,4,0,31,0,154,0,10,33,0,91,1,5,0,28,9,0,18,0,5,0,0,3,23,0,65,111,160,0,492,0,0,0,1,0,0,4,0,0,0,0,24,169,0,0,0,0,0,1,0,1,0,0,0,23,0,0,1170,62,706,0,40,0,0,0,0,0,24,3,0,0,0,0,8,21,316,0,6,23,3,0,6,13,0,337,15,7,0,0,12,3,257,0,20,0,0,21443,0,0,0,0,35,7,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,61,10,10,10,0,0,0,275,0,167,0,0,0,27,50,228,314,282,0,0,0,0,1,0,4,0,0,0,0,0,0,1152,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,261,323,588,15,0,0,617,0,1065,0,2,0,202,31,0,0,0,0,0,0,0,0,0,379,1,0,0,0,130,0,0,0,0,24,176,52,0,0,30,0,0,0,0,0,1085,0,0,74,3,0,1,6,0,0,0,0,8,0,0,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,11,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,61,1,1,1,0,43,0,0,0,0,25,88,138,0,51,9,0,0,0,0,0,202,4,0,0,0,0,0,0,1,0,0,0,0,4,0,4,20,0,0,0,0,0,0,0,0,117,0,0,124,0,3,510,1403,4 +3,0,0,6,0,58,102,0,57,9,88,0,0,7,12,0,1119,0,7,3,0,0,0,9,0,11,0,0,24,0,9,0,0,0,12,8227,58,6,0,0,62,0,0,0,1,0,0,6,0,0,0,0,9,995,0,0,0,0,0,1,0,0,0,0,0,11,0,0,52510,58,1698,0,29,0,0,0,0,0,202,0,0,0,0,0,11,223,10965,0,0,12,0,0,0,0,0,881,25,10,0,0,2,0,1375,0,8,481,0,7031,0,1,0,0,1,0,4,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,53,12,12,12,0,0,0,3728,0,144,0,0,0,27,26,779,4945,3691,0,0,0,0,1,0,7,0,0,0,0,0,0,1006,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,110,33,350,6,0,0,546,0,407,0,0,0,364,10,0,0,0,0,0,0,0,0,0,1392,1,0,0,0,12,0,0,0,0,5,162,59,0,0,620,0,0,0,0,0,6818,1,0,744,94,0,1,1,0,0,0,0,16,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,94,9,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,69,0,0,0,8,1,70,548,0,30,14,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3604,156,4 +136,0,0,1,2,71,41,5,94,13,13,0,4,0,16,18,88,0,9,6,0,1,1,5,0,16,3,0,4,0,5,0,0,2,32,0,73,63,0,0,276,0,0,0,1,0,0,0,0,0,0,0,13,140,0,0,0,0,0,1,0,2,0,2,0,16,0,0,1822,71,368,0,14,0,0,0,0,0,19,3,0,0,0,0,8,13,257,0,5,32,2,0,5,38,0,440,15,0,0,0,10,2,333,0,10,0,0,1684,0,0,0,0,25,34,0,0,19,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,6,0,0,0,0,0,0,0,24,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,25,10,10,10,0,0,0,239,0,157,0,0,0,16,32,248,606,224,0,0,0,0,1,0,3,0,0,0,0,0,0,1061,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,141,125,499,5,0,0,461,0,872,0,1,0,195,53,0,0,0,0,0,0,0,0,0,283,0,0,0,0,13,0,0,0,0,9,190,99,0,0,30,0,0,0,1,0,817,0,0,24,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,75,1,1,1,0,41,0,0,0,0,17,105,49,0,19,9,0,0,0,0,0,561,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,15,0,0,0,0,0,0,0,0,0,0,0,3,0,0,727,994,4 +116,0,0,29,11,89,157,27,271,30,39,0,0,2,65,1,556,0,20,46,0,97,2,6,0,33,22,0,18,0,8,2,0,10,38,0,99,301,160,0,393,0,0,0,1,0,0,3,0,0,0,0,34,356,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2512,89,1765,0,50,0,0,0,0,0,22,15,0,0,0,0,13,22,292,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,584,0,46,0,0,2281,0,0,0,0,46,15,1,0,30,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,20,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,287,0,225,0,0,0,42,74,335,583,297,0,0,0,0,1,0,6,0,0,0,0,0,0,2177,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1450,49,0,0,1498,0,2947,0,6,0,504,365,0,0,0,0,0,0,0,0,0,1111,1,0,0,0,151,0,0,0,0,29,284,149,0,0,155,0,0,0,0,0,10422,0,0,163,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,10,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,64,0,0,0,0,117,137,326,0,74,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,247,0,2,1647,1616,4 +3,0,0,7,0,35,3,0,19,1,3,0,0,0,9,0,15,0,6,2,0,0,0,2,0,0,0,0,5,0,6,0,0,0,23,0,35,6,0,0,63,0,0,0,1,0,0,2,0,0,0,0,5,64,0,0,0,0,0,1,0,0,0,11,0,10,0,0,782,35,67,0,11,0,0,0,0,0,12,0,0,0,0,0,3,6,110,0,0,23,0,0,0,0,0,36,0,4,0,0,2,0,39,0,6,0,0,560,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,6,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,6,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,97,0,78,0,0,0,10,12,60,40,103,0,0,0,0,1,0,0,0,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,8,17,174,8,0,0,221,0,273,0,0,0,146,12,0,0,0,0,0,0,2,0,0,55,1,0,0,0,4,0,0,0,0,6,124,61,0,0,0,0,0,0,0,0,37,0,0,49,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,15,0,0,0,0,1,58,295,0,11,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,21,4 +213,0,0,0,4,85,75,13,343,7,107,1,1,0,12,0,101,0,9,13,0,3,3,3,0,6,6,0,44,0,86,2,0,4,37,0,89,57,0,0,471,0,0,0,0,0,0,0,0,0,0,0,93,139,0,0,0,0,0,1,0,0,0,0,0,24,0,0,5262,85,1484,0,138,0,0,0,0,0,273,9,0,0,0,0,9,9,241,0,13,37,4,0,4,280,0,2648,425,0,0,0,6,4,1379,0,8,0,0,8655,0,0,0,0,84,91,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,78,0,0,0,78,0,0,0,0,0,1,0,12,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,75,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,20,0,0,0,0,0,0,221,0,179,0,0,0,180,183,170,1839,241,0,0,0,0,0,0,0,0,0,0,0,0,0,3919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,47,699,7,0,0,852,0,695,0,1,0,507,44,0,0,0,0,0,0,0,0,0,649,0,0,0,0,22,0,0,0,0,92,191,528,0,0,949,0,0,0,0,0,1172,0,0,93,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,85,1,1,1,0,222,0,0,0,0,33,126,38,0,144,0,0,0,0,0,0,608,9,0,0,0,0,0,0,0,0,0,0,0,4,0,1,11,0,0,0,0,0,0,0,0,0,0,0,7,0,0,1194,273,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,134,8,41,0,1,0,0,0,0,0,10,0,0,0,0,0,1,1,43,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,36,0,0,0,0,3,21,4,54,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,47,0,30,0,0,0,13,6,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,4,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,42,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,4 +3,0,0,6,1,45,6,0,48,2,7,0,0,6,7,0,691,0,6,2,0,0,0,8,0,11,0,0,54,0,1,0,0,0,9,898,45,28,0,0,48,0,0,0,1,0,0,11,1,0,0,0,1,270,0,0,0,0,0,1,0,0,0,0,0,5,0,0,10411,45,866,0,51,0,0,0,0,0,44,0,0,0,0,2,9,33,1635,0,0,9,0,0,0,0,0,260,20,21,0,0,2,1,801,0,2,2,0,1415,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,959,0,192,0,0,0,0,3,271,373,924,0,0,0,0,1,0,3,0,0,0,0,0,0,1711,0,0,0,0,0,0,0,0,0,0,0,0,11,1,2,0,0,0,0,1,0,84,23,272,7,0,0,367,0,514,0,0,0,203,50,0,0,0,0,0,0,0,0,0,771,1,0,4,0,10,0,0,0,0,1,138,114,0,0,6,0,1,0,0,0,2175,1,0,1250,8,0,1,1,0,0,0,0,31,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,50,0,0,0,0,1,54,556,0,52,14,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1142,792,4 +35,0,0,0,1,63,16,4,44,0,6,0,4,0,3,0,106,0,7,7,0,1,1,6,0,18,9,0,5,0,1,0,0,1,28,0,64,24,0,0,272,0,2,0,1,0,0,2,0,0,0,0,11,125,0,0,0,0,0,1,0,1,0,5,0,3,0,0,2122,63,309,0,14,0,0,0,0,0,12,3,0,0,0,0,10,19,744,0,4,28,1,0,3,8,0,179,0,4,0,0,12,1,240,0,0,0,0,1125,0,0,0,0,12,5,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,3,0,6,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,8,0,1,1,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,32,10,10,10,0,0,0,224,0,91,0,0,0,10,27,276,182,214,0,0,0,0,1,0,5,0,0,0,0,0,0,650,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,49,72,359,1,0,0,325,0,619,0,0,0,153,30,0,0,0,0,0,0,0,0,0,186,1,0,0,0,15,0,0,0,0,11,163,42,0,0,0,0,0,0,0,0,8171,0,0,735,3,0,1,4,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,3,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,109,1,1,1,0,3,0,0,0,0,9,92,80,0,24,9,0,0,0,0,0,166,6,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,389,887,4 +150,0,0,29,10,84,189,22,424,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,15,0,7,3,0,9,33,0,94,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,348,0,0,0,0,0,1,0,3,0,12,0,83,0,0,2883,84,1523,0,40,0,0,0,0,0,72,12,0,0,0,0,13,22,396,0,22,33,9,0,10,198,0,1933,100,3,0,0,14,10,1305,0,46,0,0,2096,0,0,0,0,51,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,326,0,238,0,0,0,36,75,296,1649,356,0,0,0,0,1,0,5,0,0,0,0,0,0,2743,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1435,48,0,0,1556,0,2905,0,6,0,566,43,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,279,551,0,0,215,0,0,0,0,0,9931,0,0,181,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,76,0,0,0,0,81,127,309,0,64,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1612,1663,4 +21,0,0,0,0,36,24,0,36,2,5,0,2,0,4,0,20,0,6,5,0,0,0,7,0,10,3,0,6,0,2,1,0,0,6,0,36,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,74,0,0,0,0,0,1,0,0,0,0,0,3,0,0,708,36,116,0,9,0,0,0,0,0,13,0,0,0,0,0,11,16,141,0,0,6,0,0,2,25,0,299,15,0,0,0,4,0,171,0,2,0,0,955,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,97,0,51,0,0,0,6,12,201,169,101,0,0,0,0,1,0,3,0,0,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,137,0,0,0,152,0,250,0,0,0,61,27,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,126,53,0,0,30,0,0,0,0,0,99,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,11,0,0,0,0,1,42,22,0,13,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,35,4 +0,0,0,10,0,17,4,0,25,1,7,0,0,0,4,0,19,0,7,1,0,0,0,1,0,0,0,0,5,0,9,0,0,0,5,0,17,6,0,0,36,0,0,0,1,0,0,1,0,0,0,0,8,70,1,0,0,0,0,1,0,0,0,2,0,7,0,0,17596,17,68,0,14,0,0,0,0,0,6,0,0,0,0,0,1,3,3391,0,0,5,0,0,1,9,0,111,15,1,0,0,2,0,67,0,1,0,0,663,0,0,0,0,2,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2479,0,53,0,0,0,16,14,38,150,2496,0,0,0,0,1,0,0,0,0,0,0,0,0,4477,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,7,110,14,0,0,96,0,232,0,0,0,30,13,0,0,0,0,0,0,0,0,0,66,1,0,0,0,2,0,0,0,0,6,101,20,0,0,31,0,0,0,0,0,1604,0,0,4863,0,0,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,21,0,0,0,10,1,22,12,0,14,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,2,0,0,0,0,0,0,0,0,0,0,0,0,1,2250,60,4 +2,0,0,6,1,35,30,1,58,2,15,0,0,2,6,0,68,0,8,4,0,0,0,5,0,8,0,0,1,0,1,0,0,1,5,0,36,54,0,0,69,0,0,0,1,0,0,1,0,0,0,0,1,120,0,0,0,0,0,1,0,0,0,0,0,10,0,0,752,35,134,0,1,0,0,0,0,0,5,0,0,0,0,0,8,14,100,0,1,5,1,0,2,20,0,279,30,1,0,0,4,1,129,0,3,0,0,574,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4,10,10,10,0,0,0,74,0,252,0,0,0,0,3,197,181,97,0,0,0,0,1,0,3,0,0,0,0,0,0,476,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,137,24,283,7,0,0,297,0,552,0,1,0,71,5,0,0,0,0,0,0,0,0,0,187,1,0,0,0,9,0,0,0,0,1,132,56,0,0,60,0,0,0,0,0,162,0,0,8,2,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,37,1,1,1,0,0,0,0,0,0,9,41,30,0,2,8,0,0,0,0,0,96,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,594,35,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,42,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,7,4 +79,0,0,2,1,52,25,4,117,6,24,0,4,0,12,0,38,0,7,6,0,1,1,5,0,29,9,0,5,0,4,0,0,1,17,0,53,15,0,0,484,0,0,0,1,0,0,0,0,0,0,0,25,107,0,0,0,0,0,1,0,1,0,0,0,26,0,0,1378,52,369,0,28,0,0,0,0,0,16,3,0,0,0,0,8,13,277,0,4,17,1,0,4,88,0,802,15,0,0,0,8,1,552,0,7,0,0,1304,0,0,0,0,36,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,208,0,108,0,0,0,27,58,217,786,206,0,0,0,0,1,0,4,0,0,0,0,0,0,804,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,93,277,4,0,0,239,0,311,0,0,0,102,38,0,0,0,0,0,0,0,0,0,227,0,0,0,0,13,0,0,0,0,24,137,230,0,0,30,0,0,0,0,0,747,0,0,19,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,33,0,0,0,0,9,70,41,0,38,9,0,0,0,0,0,327,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,280,1557,4 +0,0,0,6,0,25,5,0,18,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,0,0,1,0,25,6,0,0,27,0,2,0,1,0,0,2,0,0,0,0,1,94,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1227,25,47,0,1,0,0,0,0,0,10,0,0,0,0,0,7,15,310,0,0,1,0,0,0,0,0,74,5,3,0,0,2,0,27,0,0,0,0,820,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,96,0,35,0,0,0,0,3,177,9,97,0,0,0,0,1,0,3,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,132,6,0,0,164,0,311,0,0,0,65,10,0,0,0,0,0,0,0,0,0,52,1,0,0,0,8,0,0,0,0,0,107,53,0,0,0,0,0,0,0,0,93,0,0,412,3,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,3,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,179,0,2,9,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,244,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,0,0,0,80,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,48,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,1,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,36,4 +94,0,0,29,10,85,132,26,242,24,33,0,0,2,57,1,505,0,18,42,0,99,2,5,0,33,28,0,19,0,7,3,0,9,37,0,94,253,160,0,356,0,0,0,1,0,0,3,0,0,0,0,34,310,0,0,0,0,0,1,0,3,0,12,0,44,0,0,2423,85,1683,0,50,0,0,0,0,0,19,15,0,0,0,0,10,19,270,0,26,37,9,0,6,29,0,617,55,3,0,0,12,10,557,0,38,0,0,2027,0,0,0,0,40,9,1,0,30,0,0,1,0,0,0,21,0,0,0,0,0,0,0,3,0,0,0,7,0,0,0,0,0,1,0,19,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,26,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,5,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,62,10,10,10,0,0,0,270,0,213,0,0,0,42,79,321,516,277,0,0,0,0,1,0,6,0,0,0,0,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,573,321,1301,48,0,0,1327,0,2761,0,5,0,460,1146,0,0,0,0,0,0,0,0,0,990,1,0,0,0,148,0,0,0,0,29,265,135,0,0,125,0,0,0,0,0,10386,0,0,167,4,0,1,5,0,0,0,0,5,0,0,0,1,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,48,48,0,0,5,1,0,0,0,0,3,17,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,90,1,1,1,0,60,0,0,0,0,103,131,324,0,81,9,0,0,0,0,0,268,9,0,0,0,0,0,0,1,0,0,0,0,10,0,3,28,0,0,0,0,0,0,0,0,117,0,0,246,0,3,1612,1587,4 +0,0,0,3,0,11,2,0,5,0,2,0,0,0,4,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,397,11,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,15,0,0,0,0,130,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,54,45,0,0,0,0,1,0,0,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,46,3,0,0,44,0,136,0,0,0,5,1,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,2,93,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,11,4 +21,0,0,7,1,49,36,1,69,12,7,0,4,0,21,0,77,0,8,4,0,0,0,5,0,26,0,0,13,0,2,0,0,1,16,0,50,65601,0,0,426,0,0,0,1,0,0,4,0,0,0,0,20,142,0,0,0,0,0,1,0,0,0,0,0,14,0,0,1187,49,248,0,31,0,0,0,0,0,33,0,0,0,0,0,8,21,330,0,1,16,1,0,5,13,0,283,15,7,1,0,10,1,177,0,12,0,0,12531,0,0,0,0,19,7,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,47,10,10,10,0,0,0,250,0,153,0,0,0,20,33,210,260,269,0,0,0,0,1,0,3,0,0,0,0,0,0,833,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,141,101,355,10,0,0,397,0,623,0,1,0,144,12,0,0,0,0,0,0,0,0,0,222,1,0,0,0,9,0,0,0,0,20,151,52,0,0,30,0,0,0,0,0,66360,0,0,79,3,0,1,4,0,0,0,0,9,0,0,0,3,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,51,1,1,1,0,13,0,0,0,0,9,66,126,0,32,9,0,0,0,0,0,151,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,14,0,0,0,0,0,0,0,0,0,0,0,1,0,5,504,647,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,146,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,52,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,83,0,57,0,0,0,49,4,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,38,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,4,4 +56,0,0,14,11,79,213,10,340,10,45,0,0,6,42,1,1380,0,23,13,0,4,0,8,0,20,0,0,70,0,5,0,0,10,34,852,89,390,0,0,291,0,0,0,1,0,0,2,0,0,0,0,12,535,0,0,0,0,0,1,0,0,0,0,0,31,0,0,17426,79,2097,0,80,0,0,0,0,0,13,6,0,0,0,1,16,33,3184,0,10,34,10,0,10,70,0,1139,55,3,0,0,20,11,1572,0,20,2,0,2459,0,0,0,0,22,6,4,0,0,0,0,1,0,0,0,14,0,0,0,0,2,0,0,4,0,0,0,1,0,0,0,0,0,11,3,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,1,19,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,52,12,12,12,0,0,0,488,0,233,0,0,0,15,20,366,1242,569,0,0,0,0,1,0,4,0,0,0,0,0,0,1277,0,0,0,0,0,0,0,0,0,1,0,0,2,1,0,0,0,0,0,1,0,916,115,1592,27,0,0,1723,0,3126,0,8,0,535,92,0,0,0,0,0,0,0,0,0,2050,1,0,0,0,25,0,0,0,0,6,285,238,0,0,91,0,2,0,0,1,4000,1,0,41,7,0,1,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,91,1,1,1,0,82,0,0,0,8,81,123,266,0,81,14,0,0,0,0,0,439,13,0,0,0,0,0,0,0,0,0,0,0,12,0,3,19,0,0,0,0,0,0,0,0,0,0,0,10,0,1,2157,727,4 +5,0,0,5,0,12,9,0,97,15,32,0,0,0,18,18,75,0,6,1,0,0,0,1,0,0,6,0,1,0,1,2,0,0,4,0,12,171,0,0,264,0,0,0,0,0,0,0,0,0,0,0,2,71,0,0,0,0,0,1,0,0,0,0,0,32,0,0,307,12,254,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,15,0,0,4,0,0,1,89,0,690,70,0,0,0,2,0,522,0,16,0,0,226,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,26,0,22,0,0,0,4,13,27,535,92,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,19,105,5,0,0,199,0,115,0,0,0,169,6,0,0,0,0,0,0,0,0,0,255,0,0,0,0,2,0,0,0,0,3,130,260,0,0,189,0,0,0,0,0,152,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,7,0,0,0,0,1,16,4,0,10,0,0,0,0,0,0,447,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,24,4 +48,0,0,1,1,56,16,4,73,3,16,0,4,0,6,0,45,0,7,9,0,1,1,7,0,21,12,0,6,0,4,1,0,1,18,0,57,15,0,0,201,0,0,0,1,0,0,0,0,0,0,0,18,95,0,0,0,0,0,1,0,1,0,0,0,10,0,0,1031,56,314,0,22,0,0,0,0,0,16,3,0,0,0,0,13,18,142,0,4,18,1,0,5,46,0,503,30,0,0,0,8,1,342,0,2,0,0,1662,0,0,0,0,15,10,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,27,10,10,10,0,0,0,141,0,88,0,0,0,21,41,228,432,132,0,0,0,0,1,0,3,0,0,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,59,287,4,0,0,239,0,406,0,0,0,93,32,0,0,0,0,0,0,0,0,0,167,0,0,0,0,18,0,0,0,0,17,140,112,0,0,60,0,0,0,0,0,712,0,0,7,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,17,0,0,0,0,9,75,34,0,35,9,0,0,0,0,0,225,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,310,925,4 +213,0,0,0,4,103,142,13,414,54,161,1,5,0,56,1,68,0,7,19,0,4,3,15,0,7,6,0,76,0,294,1,0,4,41,0,107,53,0,1,1014,0,0,0,0,0,0,0,0,0,0,0,299,185,0,0,0,0,0,1,0,0,0,0,0,25,0,0,7717,103,2123,0,377,0,0,0,0,0,296,12,0,0,0,0,21,21,564,0,13,41,4,0,7,358,0,4093,395,0,0,0,13,4,2272,0,2,0,0,4862,0,0,0,0,84,88,0,0,3,0,0,0,0,0,0,10,0,0,2,0,0,0,0,76,0,0,0,76,0,0,0,0,0,1,0,14,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,90,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,28,0,0,0,0,0,0,458,0,227,0,0,0,595,597,214,2870,489,0,0,0,0,0,0,0,0,0,3,2,1,0,5046,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,1,2,42,187,753,9,0,0,868,0,598,0,0,0,567,149,0,0,0,0,0,0,0,0,0,855,0,0,0,0,41,0,0,0,0,340,201,733,0,0,883,0,3,0,1,2,6503,0,0,305,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,109,1,1,1,0,664,0,0,0,570,34,148,41,0,384,0,0,0,0,0,0,812,10,0,0,0,0,0,0,0,0,0,0,0,4,0,1,58,1,0,0,0,0,0,0,0,0,0,0,8,0,0,1445,1997,4 +152,0,0,29,10,84,187,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,3,0,9,33,0,94,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,344,0,0,0,0,0,1,0,3,0,12,0,82,0,0,3048,84,1511,0,39,0,0,0,0,0,70,12,0,0,0,0,13,22,401,0,22,33,9,0,10,193,0,1895,100,3,0,0,14,10,1279,0,46,0,0,2568,0,0,0,0,53,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,37,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,331,0,236,0,0,0,36,75,296,1618,361,0,0,0,0,1,0,5,0,0,0,0,0,0,2710,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1412,48,0,0,1550,0,2894,0,6,0,560,47,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,276,538,0,0,215,0,0,0,0,0,9929,0,0,186,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,75,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1590,1659,4 +5,0,0,0,0,15,2,0,4,0,1,0,0,0,2,0,10,0,7,1,0,0,0,1,0,4,0,0,2,0,1,0,0,0,4,0,15,6,0,0,26,0,0,0,0,0,0,0,0,0,0,0,4,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,70,15,25,0,6,0,0,0,0,0,0,0,0,0,0,0,1,1,11,0,0,4,0,0,0,0,0,13,0,0,0,0,2,0,14,0,0,0,0,157,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,4,6,31,29,30,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,23,66,0,0,0,63,0,124,0,0,0,24,10,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,4,105,3,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,2,0,0,0,0,1,19,4,0,7,0,0,0,0,0,0,19,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,74,4 +0,0,0,5,0,39,31,0,56,0,30,0,0,8,5,0,862,0,6,1,0,0,0,8,0,11,0,0,32,0,1,0,0,0,2,8097,39,6,0,0,49,0,2,0,1,0,0,2,0,0,0,0,1,412,0,0,0,0,0,1,0,0,0,0,0,2,0,0,45026,39,1087,0,31,0,0,0,0,0,62,0,0,0,0,0,8,175,5948,0,0,2,0,0,0,0,0,479,30,3,0,0,2,0,978,0,0,202,0,3988,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,2183,0,44,0,0,0,18,21,673,7274,2148,0,0,0,0,1,0,3,0,0,0,0,0,0,3083,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,130,94,280,5,0,0,351,0,449,0,0,0,188,5,0,0,0,0,0,0,0,0,0,998,1,0,0,0,9,0,0,0,0,1,155,43,0,0,219,0,0,0,0,0,4157,1,0,3451,29,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,29,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,84,0,0,0,0,1,41,204,0,32,12,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1965,47,4 +2,0,0,2,0,11,2,0,17,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,3,0,11,6,0,0,7,0,2,0,1,0,0,2,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1268,11,48,0,2,0,0,0,0,0,10,0,0,0,0,0,1,5,531,0,0,3,0,0,0,0,0,10,0,3,0,0,2,0,17,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,1,2,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,76,0,34,0,0,0,0,3,26,9,86,0,0,0,0,1,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,84,2,0,0,110,0,155,0,0,0,49,7,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,1,93,31,0,0,0,0,0,0,0,0,227,0,0,801,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,1,0,0,0,0,1,14,193,0,2,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,277,15,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,140,8,41,0,1,0,0,0,0,0,10,0,0,0,0,0,1,1,46,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,35,0,0,0,0,3,21,4,54,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,47,0,32,0,0,0,13,9,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,4,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,47,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,70,0,46,0,0,0,36,8,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,33,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,4,4 +0,0,0,6,0,8,2,0,16,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,189,8,40,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,33,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,15,0,0,0,0,141,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,30,0,0,0,0,3,22,6,48,0,0,0,0,1,0,0,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,8,0,0,96,0,238,0,0,0,31,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,94,19,0,0,0,0,0,0,0,0,33,0,0,17,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,41,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,69,27,4 +96,0,0,31,14,113,187,38,307,45,77,1,1,2,64,1,688,0,22,51,0,101,2,11,0,76,23,0,79,0,6,2,0,13,50,0,124,358,168,0,488,0,0,0,1,0,0,4,0,0,0,0,73,402,0,0,0,0,0,1,0,3,0,0,0,48,0,0,5753,113,2344,0,151,0,0,0,0,0,23,21,0,0,0,0,19,30,804,0,38,50,13,0,9,55,0,1067,95,5,0,0,18,14,850,0,45,0,0,3357,0,0,0,0,107,8,1,0,48,0,0,1,0,0,0,28,0,0,0,0,0,0,0,6,0,0,0,7,0,0,0,0,0,2,0,30,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,14,2,0,0,0,0,0,5,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,7,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,69,10,10,10,0,0,0,747,0,294,0,0,0,80,109,418,782,767,0,0,0,0,1,0,6,0,0,0,0,0,0,2403,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,790,371,1716,72,0,0,1711,0,3279,0,7,0,561,1211,0,0,0,0,0,0,0,0,0,1350,1,0,0,0,165,0,0,0,0,71,323,156,0,0,217,0,0,0,0,0,10085,0,0,179,4,0,1,9,0,0,0,0,10,0,0,0,3,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,72,72,0,0,22,1,0,0,0,0,3,11,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,138,1,1,1,0,115,0,0,0,0,159,174,270,0,177,9,0,0,0,0,0,362,12,0,0,0,0,0,0,1,0,0,0,0,12,0,6,50,0,0,0,0,0,0,0,0,117,0,0,252,0,3,1815,1289,4 +9,0,0,6,1,16,26,1,38,1,4,0,0,0,6,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,3,0,17,54,0,0,19,0,0,0,1,0,0,4,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,5,0,0,22507,16,125,0,1,0,0,0,0,0,17,0,0,0,0,0,1,6,1487,0,1,3,1,0,1,0,0,50,0,6,0,0,4,1,25,0,3,0,0,8584,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1466,0,152,0,0,0,0,3,68,37,1482,0,0,0,0,1,0,0,0,0,0,0,0,0,1579,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,113,17,942,8,0,0,766,0,750,0,1,0,576,34,0,0,0,0,0,0,0,0,0,147,1,0,0,0,2,0,0,0,0,0,609,21,0,0,0,0,0,0,0,0,1155,0,0,1648,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,45,1,1,1,0,0,0,0,0,0,9,20,73,0,1,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,719,128,4 +119,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,562,0,20,46,0,97,2,6,0,33,23,0,16,0,7,3,0,10,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,348,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2498,89,1770,0,50,0,0,0,0,0,20,15,0,0,0,0,13,22,287,0,27,38,10,0,8,37,0,729,70,3,0,0,14,11,585,0,46,0,0,2250,0,0,0,0,47,16,1,0,31,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,286,0,228,0,0,0,42,73,340,591,296,0,0,0,0,1,0,6,0,0,0,0,0,0,2164,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1440,49,0,0,1496,0,2979,0,6,0,504,265,0,0,0,0,0,0,0,0,0,1117,1,0,0,0,151,0,0,0,0,29,284,149,0,0,155,0,0,0,0,0,10420,0,0,163,4,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,10,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,61,0,0,0,0,121,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,249,0,2,1658,1611,4 +0,0,0,2,0,11,2,0,14,0,2,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,81,0,0,0,0,0,1,0,0,0,0,0,1,0,0,68801,11,38,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,6133,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,15,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,43,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6156,0,106,0,0,0,0,3,30,4,6198,0,0,0,0,1,0,0,0,0,0,0,0,0,21103,0,0,0,0,0,0,0,0,0,0,0,0,1,0,41,0,0,0,0,0,0,8,5,79,2,0,0,142,0,187,0,0,0,74,3,0,0,0,0,0,0,45,0,0,41,1,0,0,0,2,0,0,0,0,0,93,67,0,0,0,0,0,0,0,0,5292,0,0,22370,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,88,0,0,0,0,161,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,57,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,259,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,42,0,0,0,0,0,0,0,1,5746,14,4 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,1,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,318,10,43,0,3,0,0,0,0,0,8,0,0,0,0,0,1,4,28,0,0,0,0,0,0,0,0,13,0,2,0,0,2,0,16,0,0,0,0,176,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,50,0,0,0,2,5,26,10,53,0,0,0,0,1,0,0,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,8,3,87,2,0,0,118,0,269,0,0,0,53,8,0,0,0,0,0,0,2,0,0,42,1,0,0,0,2,0,0,0,0,2,92,45,0,0,0,0,0,0,0,0,29,0,0,27,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,3,0,0,0,2,1,10,144,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,98,273,4 +276,0,0,29,21,99,166,37,380,33,43,0,0,2,70,1,626,0,20,66,0,116,2,6,0,39,22,0,25,0,6,3,0,20,45,0,119,301,160,0,476,0,0,0,1,0,0,4,0,0,0,0,38,399,0,0,0,0,0,1,0,3,0,12,0,55,0,0,2556,99,3352,0,62,0,0,0,0,0,18,45,0,0,0,1,12,22,258,0,37,45,20,0,7,29,0,692,55,3,0,0,14,21,636,0,50,0,0,2319,0,0,0,0,69,29,0,0,26,0,0,1,0,0,0,21,0,0,0,0,0,0,0,24,0,0,0,13,0,0,0,0,0,7,0,69,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,34,2,0,0,0,0,0,2,0,0,0,0,0,0,14,0,0,0,0,0,0,0,20,10,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,78,10,10,10,0,0,0,288,0,235,0,0,0,45,75,365,542,313,0,0,0,0,1,0,5,0,0,0,0,0,0,2924,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,681,364,1819,59,0,0,1859,0,3177,0,6,0,603,439,0,0,0,0,0,0,0,0,0,1308,1,0,0,0,190,0,0,0,0,34,294,131,0,0,125,0,0,0,0,0,10484,0,0,153,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,49,49,0,0,10,1,0,0,0,0,3,17,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,105,1,1,1,0,66,0,0,0,0,187,164,362,0,86,9,0,0,0,0,0,321,30,0,0,0,0,0,0,1,0,0,0,0,21,0,5,37,0,0,0,0,0,0,0,0,117,0,0,257,0,2,1772,2033,4 +19,0,0,0,0,43,12,0,22,0,5,0,2,0,2,0,35,0,6,5,0,0,0,5,0,10,0,0,3,0,1,0,0,0,14,0,43,15,0,0,93,0,2,0,1,0,0,2,0,0,0,0,3,131,0,0,0,0,0,1,0,0,0,5,0,3,0,0,669,43,85,0,5,0,0,0,0,0,12,0,0,0,0,0,9,16,90,0,0,14,0,0,1,8,0,150,0,0,0,0,8,0,87,0,0,0,0,705,0,0,0,0,6,3,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,3,0,5,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,9,10,10,10,0,0,0,80,0,69,0,0,0,2,5,203,90,95,0,0,0,0,1,0,4,0,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,37,40,183,0,0,0,187,0,461,0,0,0,83,6,0,0,0,0,0,0,0,0,0,84,1,0,0,0,10,0,0,0,0,3,136,35,0,0,0,0,0,0,0,0,229067,0,0,3,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,2,0,0,0,0,1,57,50,0,6,8,0,0,0,0,0,73,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,222,4 +0,0,0,5,0,37,25,0,47,3,24,0,0,7,4,0,767,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12333,37,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,832,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40143,37,933,0,24,0,0,0,0,0,46,0,0,0,0,0,8,94,6613,0,0,1,0,0,0,0,0,369,25,2,0,0,2,0,855,0,0,94,0,5113,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1527,0,32,0,0,0,13,16,504,2093,1504,0,0,0,0,1,0,3,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,284,5,0,0,315,0,306,0,0,0,154,11,0,0,0,0,0,0,0,0,0,880,1,0,0,0,9,0,0,0,0,1,169,6,0,0,138,0,0,0,0,0,4659,1,0,1000,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,62,0,0,0,0,1,38,210,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2533,23,4 +56,0,0,1,1,60,8,4,34,2,6,0,3,0,5,0,44,0,7,12,0,1,1,6,0,23,12,0,9,0,4,1,0,1,22,0,61,12,0,0,137,0,0,0,1,0,0,0,0,0,0,0,20,91,0,0,0,0,0,1,0,1,0,0,0,3,0,0,999,60,242,0,27,0,0,0,0,0,6,3,0,0,0,0,15,20,145,0,4,22,1,0,3,8,0,218,15,0,0,0,6,1,160,0,2,0,0,11924,0,0,0,0,16,10,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,8,0,0,0,4,0,0,0,0,0,1,0,9,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,27,10,10,10,0,0,0,150,0,92,0,0,0,23,43,230,188,129,0,0,0,0,1,0,3,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,52,304,2,0,0,236,0,388,0,0,0,93,34,0,0,0,0,0,0,0,0,0,107,0,0,0,0,20,0,0,0,0,20,150,19,0,0,30,0,0,0,0,0,148,0,0,5,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,18,0,0,0,0,9,83,38,0,40,9,0,0,0,0,0,138,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,164,925,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,2,0,0,408,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,127,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,155,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,347,14,4 +5,0,2,12,3,38,72,0,666,11,17,0,0,0,20,0,5021,0,7,3,0,1,0,1,0,3,0,0,3,0,4,0,0,2,14,27,38,89,0,0,99,0,0,0,1,0,0,2,1,0,0,0,6,2008,0,0,0,0,0,1,0,0,0,7,0,19,0,0,1062,38,5811,0,9,0,0,0,0,0,56,0,0,0,0,0,1,4,72,0,0,14,2,0,1,11,0,149,20,6,0,0,7,3,5149,0,14,0,0,1609,0,0,0,0,5,1,0,0,1,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0,0,0,92,0,142,0,0,0,9,11,56,779,99,0,0,0,0,1,0,0,0,0,0,9981,3,1,1074,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,196,12543,499,17,0,0,714,0,3083,0,1,0,251,635,0,0,0,0,0,0,0,0,0,5803,1,0,2,0,5,0,0,0,0,4,193,375,0,2,45,0,0,0,0,0,10179,0,0,34,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,9,0,0,0,0,3,52,1041,0,10,0,0,0,0,0,0,94,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,2,0,3,322,103,4 +0,0,0,5,0,36,24,0,47,3,23,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12385,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,727,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40357,36,910,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6544,0,0,1,0,0,0,0,0,360,25,2,0,0,2,0,836,0,0,89,0,4844,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1418,0,32,0,0,0,12,15,492,2068,1396,0,0,0,0,1,0,3,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,284,5,0,0,313,0,301,0,0,0,153,13,0,0,0,0,0,0,0,0,0,859,1,0,0,0,9,0,0,0,0,1,165,7,0,0,131,0,0,0,0,0,4721,1,0,1039,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,212,0,24,12,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2496,31,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,34,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,83,0,57,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,4,4 +269,0,0,10,14,186,220,38,510,68,83,0,5,0,113,1,983,0,17,19,0,10,6,10,2,67,57,0,24,0,16,3,0,12,109,0,200,56539,6550,0,1046,0,0,0,1,0,0,5,1,0,0,0,77,498,0,0,0,0,0,1,0,1,0,31,0,108,0,0,38811,186,2992,0,98,0,0,0,0,0,138,27,0,0,0,0,14,25,7881,0,38,109,12,0,11,243,0,2354,155,11,0,0,18,14,2569,0,81,1,0,6700,0,0,0,0,72,69,2,0,31,0,0,1,0,0,0,22,0,0,0,0,0,0,0,13,0,0,0,45,0,0,0,0,0,2,0,33,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,47,8,0,0,0,0,0,2,0,0,0,0,0,8,25,0,0,0,3,0,0,0,0,10,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,2,135,12,12,12,0,0,2,4977,2,500,0,0,2,94,349,449,133882,5024,0,0,0,0,1,0,5,0,0,0,0,0,0,10519,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,464,220,1739,27,0,0,1880,0,2242,0,4,0,918,125106,0,0,0,0,0,0,0,0,0,1932,1,0,2,0,47,0,0,0,0,60,379,657,0,0,374,0,0,0,0,0,69108,0,0,8124,3,0,1,12,0,0,0,0,14,0,0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,28,1,0,0,0,0,3,133,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,196,1,1,1,0,557,0,0,0,0,186,309,445,1,158,9,0,0,0,0,0,939,19,0,0,0,0,0,0,0,0,0,0,0,15,0,2,74,1,0,0,0,0,0,0,0,8,0,0,26,0,4,4563,2169,4 +0,0,0,3,0,11,2,0,5,0,2,0,0,0,4,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,401,11,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,25,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,16,0,0,0,0,134,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,32,0,26,0,0,0,2,5,26,54,45,0,0,0,0,1,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,46,3,0,0,44,0,135,0,0,0,5,2,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,2,93,4,0,0,0,0,0,0,0,0,32,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,11,4 +1,0,0,3,0,29,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,120,0,0,0,0,0,1,0,0,0,0,0,2,0,0,976,29,57,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,159,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,727,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,124,0,48,0,0,0,1,4,189,14,121,0,0,0,0,1,0,3,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,2,1,7,0,0,0,0,1,0,32,10,131,3,0,0,188,0,327,0,0,0,81,10,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,111,64,0,0,0,0,0,0,0,0,83,0,0,41,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,226,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,155,53,4 +0,0,0,10,0,17,4,0,25,1,7,0,0,0,4,0,19,0,7,1,0,0,0,1,0,0,0,0,5,0,8,0,0,0,5,0,17,6,0,0,36,0,0,0,1,0,0,1,0,0,0,0,7,69,1,0,0,0,0,1,0,0,0,2,0,7,0,0,18166,17,67,0,13,0,0,0,0,0,6,0,0,0,0,0,1,3,3503,0,0,5,0,0,1,9,0,107,15,1,0,0,2,0,66,0,1,0,0,479,0,0,0,0,2,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2579,0,53,0,0,0,14,12,38,148,2596,0,0,0,0,1,0,0,0,0,0,0,0,0,4697,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,7,112,14,0,0,96,0,233,0,0,0,30,12,0,0,0,0,0,0,0,0,0,66,1,0,0,0,2,0,0,0,0,5,101,20,0,0,31,0,0,0,0,0,1651,0,0,5062,0,0,1,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,19,0,0,0,8,1,22,12,0,13,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,3,0,0,0,0,0,0,0,0,0,0,0,0,1,2313,59,4 +0,0,0,8,0,34,6,0,60,1,5,0,0,6,4,0,1148,0,6,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,71,34,6,0,0,48,0,2,0,1,0,0,2,0,0,0,0,1,181,0,0,0,0,0,1,0,0,0,0,0,4,0,0,84380,34,1231,0,2,0,0,0,0,0,14,0,0,0,0,0,8,19,12144,0,0,1,0,0,0,0,0,187,20,3,0,0,2,0,1196,0,0,1,0,4235,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,12,12,12,0,0,0,6320,0,39,0,0,0,0,3,261,1204,6307,0,0,0,0,1,0,3,0,0,0,0,0,0,21865,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,19,189,8,0,0,209,0,334,0,0,0,73,6,0,0,0,0,0,0,0,0,0,1235,1,0,0,0,9,0,0,0,0,0,117,36,0,0,6,0,0,0,0,0,9708,1,0,22006,6,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,1,0,0,0,0,1,35,198,0,3,12,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9049,263,4 +2,0,0,3,0,33,5,0,23,0,2,0,0,2,2,0,33,0,6,3,0,0,0,5,0,8,9,0,4,0,5,0,0,0,7,0,33,6,0,0,20,0,0,0,1,0,0,4,0,0,0,0,5,112,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2913,33,91,0,7,0,0,0,0,0,20,0,0,0,0,0,7,17,505,0,0,7,0,0,0,0,0,83,5,8,0,0,2,0,85,0,0,0,0,583,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,361,0,106,0,0,0,8,17,189,26,345,0,0,0,0,1,0,4,0,0,0,0,0,0,806,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,32,10,140,3,0,0,206,0,333,0,0,0,96,11,0,0,0,0,0,0,0,0,0,73,1,0,0,0,8,0,0,0,0,2,115,63,0,0,0,0,0,0,0,0,192,0,0,574,3,0,1,1,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,15,0,0,0,0,1,40,252,0,17,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,410,38,4 +1,0,0,3,0,28,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,123,0,0,0,0,0,1,0,0,0,0,0,2,0,0,851,28,51,0,3,0,0,0,0,0,10,0,0,0,0,0,7,15,140,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,458,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,12,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,119,0,50,0,0,0,1,4,182,14,121,0,0,0,0,1,0,3,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,1,0,32,10,130,3,0,0,167,0,304,0,0,0,64,7,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,110,49,0,0,0,0,0,0,0,0,69,0,0,36,3,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,228,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,146,53,4 +0,0,0,3,0,9,3,0,24,1,3,0,0,0,8,0,26,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,44,0,1,0,1,0,0,1,1,0,0,0,0,279,0,0,0,0,0,1,0,0,0,0,0,9,0,0,4668,9,63,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,473,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,68,0,0,0,0,1434,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,35,0,39,0,0,0,0,3,24,12,44,0,0,0,0,1,0,0,0,0,0,0,0,0,2128,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,144,3,0,0,158,0,163,0,0,0,102,12,0,0,0,0,0,0,0,0,0,70,1,0,2,0,2,0,0,0,0,0,91,95,0,0,0,0,0,0,0,0,272,0,0,736,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,96,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,256,73,4 +76,0,0,1,1,52,25,4,120,10,22,0,4,0,15,0,42,0,7,6,0,1,1,5,0,29,12,0,5,0,3,0,0,1,17,0,53,15,0,0,501,0,0,0,1,0,0,0,0,0,0,0,24,115,0,0,0,0,0,1,0,1,0,0,0,30,0,0,1443,52,378,0,27,0,0,0,0,0,16,3,0,0,0,0,8,13,274,0,4,17,1,0,4,88,0,798,15,0,0,0,8,1,571,0,12,0,0,1303,0,0,0,0,37,22,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,37,10,10,10,0,0,0,217,0,124,0,0,0,25,60,217,785,217,0,0,0,0,1,0,4,0,0,0,0,0,0,849,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,96,278,3,0,0,240,0,297,0,0,0,103,17,0,0,0,0,0,0,0,0,0,235,0,0,0,0,13,0,0,0,0,23,137,231,0,0,30,0,0,0,0,0,740,0,0,18,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,31,0,0,0,0,9,70,41,0,40,9,0,0,0,0,0,348,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,2,0,0,301,1382,4 +0,0,0,0,0,1,0,1,21,0,1,0,0,0,1,0,731,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,727,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,9,0,0,1,107,4 +5,0,0,11,2,38,9,8,55,15,11,0,0,2,24,2,70,0,7,9,0,2,2,5,4,17,18,0,15,0,2,0,0,2,9,0,40,108,21,0,194,0,0,0,0,0,0,0,0,0,0,0,11,138,0,0,0,0,0,1,0,0,0,0,0,26,0,0,1135,38,413,0,19,0,0,0,0,0,4,6,0,0,0,0,8,14,92,0,8,9,2,0,2,16,0,270,30,0,0,0,2,2,304,0,16,0,0,1287,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,10,10,10,0,0,0,101,0,49,0,0,0,16,69,176,246,104,0,0,0,0,0,0,2,0,0,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,36,41,332,14,0,0,191,0,431,0,0,0,54,27,0,0,0,0,0,0,0,0,0,180,0,0,0,0,22,0,0,0,0,7,125,29,0,0,50,0,0,0,0,0,5524,0,0,1,3,0,1,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,42,0,0,0,0,17,49,9,0,43,9,0,0,0,0,0,105,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,19,0,0,0,0,0,0,0,0,0,0,0,3,0,0,182,46,4 +100,0,0,24,4,69,113,7,157,7,16,0,0,2,24,0,187,0,12,6,0,1,1,5,0,15,9,0,9,0,4,0,0,4,20,0,73,164,0,0,274,0,0,0,1,0,0,7,0,0,0,0,11,266,0,0,0,0,0,1,0,1,0,0,0,21,0,0,5198,69,522,0,18,0,0,0,0,0,30,3,0,0,0,0,8,21,1001,0,7,20,4,0,4,43,0,546,20,13,0,0,8,4,367,0,15,0,0,1719,0,0,0,0,42,21,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,34,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,744,0,244,0,0,0,13,46,256,369,709,0,0,0,0,1,0,4,0,0,0,0,0,0,2052,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,74,797,33,0,0,865,0,1511,0,3,0,283,28,0,0,0,0,0,0,2,0,0,511,1,0,0,0,13,0,0,0,0,11,199,156,0,0,34,0,0,0,0,0,1194,0,0,926,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,71,1,1,1,0,63,0,0,0,0,33,93,358,0,28,9,0,0,0,0,0,312,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,11,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1293,1362,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,2,0,0,403,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,146,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,30,0,26,0,0,0,2,4,27,94,44,0,0,0,0,1,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,46,3,0,0,47,0,149,0,0,0,5,4,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,24,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,14,4 +1,0,0,3,0,29,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,119,0,0,0,0,0,1,0,0,0,0,0,2,0,0,864,29,51,0,3,0,0,0,0,0,10,0,0,0,0,0,7,15,147,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,486,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,11,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,120,0,51,0,0,0,1,4,186,14,122,0,0,0,0,1,0,3,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,1,0,32,10,135,3,0,0,170,0,305,0,0,0,64,6,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,111,49,0,0,0,0,0,0,0,0,73,0,0,36,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,228,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,154,52,4 +76,0,0,1,1,53,26,4,120,5,23,0,4,0,9,0,30,0,7,6,0,1,1,5,0,22,0,0,5,0,3,0,0,1,17,0,54,15,0,0,486,0,0,0,1,0,0,0,0,0,0,0,17,101,0,0,0,0,0,1,0,1,0,0,0,25,0,0,1283,53,345,0,20,0,0,0,0,0,16,3,0,0,0,0,8,13,257,0,4,17,1,0,4,93,0,821,15,0,0,0,8,1,531,0,6,0,0,1229,0,0,0,0,33,22,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,205,0,110,0,0,0,18,39,221,800,203,0,0,0,0,1,0,4,0,0,0,0,0,0,771,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,90,278,3,0,0,243,0,330,0,0,0,103,17,0,0,0,0,0,0,0,0,0,219,0,0,0,0,13,0,0,0,0,16,138,243,0,0,30,0,0,0,0,0,716,0,0,20,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,36,0,0,0,0,9,71,41,0,21,9,0,0,0,0,0,340,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,259,1141,4 +0,0,0,3,0,9,3,0,24,1,3,0,0,0,8,0,26,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,44,0,1,0,1,0,0,1,1,0,0,0,0,281,0,0,0,0,0,1,0,0,0,0,0,9,0,0,4669,9,63,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,444,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,68,0,0,0,0,1206,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,35,0,37,0,0,0,0,3,24,12,44,0,0,0,0,1,0,0,0,0,0,0,0,0,2151,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,154,3,0,0,158,0,173,0,0,0,102,11,0,0,0,0,0,0,0,0,0,70,1,0,2,0,2,0,0,0,0,0,91,95,0,0,0,0,0,0,0,0,275,0,0,736,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,96,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,73,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,20,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,2,0,0,166,10,38,0,21,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,26,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,0,3,23,43,33,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,40,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,20,0,0,0,0,1,10,0,0,21,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,4 +6,0,0,5,0,16,2,0,9,0,3,0,0,0,5,0,15,0,6,3,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,16,6,0,0,14,0,2,0,1,0,0,2,0,0,0,0,1,39,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1427,16,40,0,3,0,0,0,0,0,9,0,0,0,0,0,3,7,614,0,0,2,0,0,0,0,0,18,0,2,0,0,2,0,14,0,1,0,0,151,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,1,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,4,0,0,0,0,0,0,113,0,51,0,0,0,2,4,38,54,124,0,0,0,0,1,0,0,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,4,0,0,2,0,1,0,0,0,0,0,2,8,4,81,6,0,0,128,0,249,0,0,0,57,8,0,0,0,0,0,0,9,0,0,40,1,0,0,0,4,0,0,0,0,2,98,44,0,0,0,0,0,0,0,0,248,0,0,815,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,3,0,0,0,0,1,18,145,0,3,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,319,18,4 +91,0,0,0,12,83,17,48,150,2,27,0,1,0,4,0,116,0,7,31,0,12,12,3,0,3,3,0,20,0,71,1,0,12,53,0,95,9,0,0,176,0,0,0,0,0,0,0,0,0,0,0,74,122,0,0,0,0,0,1,0,0,0,0,0,3,0,0,913,83,1306,0,95,0,0,0,0,0,5,36,0,0,0,0,9,9,47,0,48,53,12,0,1,36,0,637,65,0,0,0,4,12,344,0,2,0,0,2194,0,0,0,0,26,20,0,0,3,0,0,0,0,0,0,14,0,0,0,0,0,0,0,19,0,0,0,20,0,0,0,0,0,1,0,22,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,0,0,0,0,0,0,82,0,116,0,0,0,145,148,148,485,116,0,0,0,0,0,0,0,0,0,0,0,0,0,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,25,722,12,0,0,677,0,575,0,0,0,278,96,0,0,0,0,0,0,0,0,0,322,0,0,0,0,58,0,0,0,0,73,173,66,0,0,143,0,0,0,0,0,254,0,0,70,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,82,1,1,1,0,165,0,0,0,132,97,148,53,0,98,0,0,0,0,0,0,205,16,0,0,0,0,0,0,0,0,0,0,0,12,0,1,2,0,0,0,0,0,0,0,0,0,0,0,23,0,0,136,928,4 +3,0,0,6,1,44,6,0,54,2,7,0,0,6,7,0,673,0,6,2,0,0,0,8,0,11,0,0,54,0,1,0,0,0,9,898,44,28,0,0,48,0,0,0,1,0,0,11,1,0,0,0,1,270,0,0,0,0,0,1,0,0,0,0,0,5,0,0,9751,44,854,0,51,0,0,0,0,0,44,0,0,0,0,2,9,33,1559,0,0,9,0,0,0,0,0,260,20,21,0,0,2,1,789,0,2,2,0,1830,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,866,0,193,0,0,0,0,3,267,373,831,0,0,0,0,1,0,3,0,0,0,0,0,0,1612,0,0,0,0,0,0,0,0,0,0,0,0,11,1,2,0,0,0,0,1,0,84,23,269,7,0,0,370,0,503,0,0,0,209,51,0,0,0,0,0,0,0,0,0,759,1,0,4,0,10,0,0,0,0,1,137,114,0,0,6,0,1,0,0,0,2124,1,0,1162,8,0,1,1,0,0,0,0,31,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,50,0,0,0,0,1,53,574,0,52,14,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1120,795,4 +9,0,0,6,1,15,26,1,38,1,4,0,0,0,6,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,3,0,16,54,0,0,19,0,0,0,1,0,0,4,0,0,0,0,0,82,0,0,0,0,0,1,0,0,0,0,0,5,0,0,22444,15,125,0,1,0,0,0,0,0,17,0,0,0,0,0,1,6,1494,0,1,3,1,0,1,0,0,50,0,6,0,0,4,1,25,0,3,0,0,8380,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1480,0,148,0,0,0,0,3,64,37,1496,0,0,0,0,1,0,0,0,0,0,0,0,0,1550,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,114,17,919,8,0,0,757,0,752,0,1,0,570,19,0,0,0,0,0,0,0,0,0,147,1,0,0,0,2,0,0,0,0,0,602,21,0,0,0,0,0,0,0,0,1145,0,0,1610,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,1,1,1,0,0,0,0,0,0,9,19,73,0,1,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,699,126,4 +10,0,0,0,4,20,7,10,58,1,12,0,1,0,6,0,387,0,8,3,0,2,2,1,2,5,0,0,0,0,1,0,0,2,7,0,24,9,0,0,72,0,0,0,0,0,0,0,0,0,0,0,5,70,0,0,0,0,0,1,0,0,0,0,0,6,0,0,227,20,570,0,6,0,0,0,0,0,0,9,0,0,0,0,1,1,65,0,10,7,2,0,2,23,0,243,15,0,0,0,4,4,502,0,1,1,0,2978,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,16,2,2,2,0,0,2,62,2,77,0,0,2,5,7,49,204,78,0,0,0,0,0,0,0,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,17,162,6,0,0,153,0,245,0,0,0,46,7,0,0,0,0,0,0,0,0,0,479,0,0,0,0,10,0,0,0,0,5,102,56,0,0,30,0,0,0,0,0,1461,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,0,0,0,0,0,96,31,27,1,6,0,0,0,0,0,0,125,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,3,0,0,0,0,0,0,0,0,5,0,0,9,0,0,277,357,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,83,0,57,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,4,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,401,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,116,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,45,3,0,0,47,0,144,0,0,0,5,3,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,35,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,4 +151,0,0,29,10,85,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,3,0,9,33,0,95,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,363,0,0,0,0,0,1,0,3,0,11,0,83,0,0,2885,85,1523,0,39,0,0,0,0,0,73,12,0,0,0,0,13,22,402,0,22,33,9,0,10,198,0,1932,100,3,0,0,14,10,1304,0,46,0,0,2208,0,0,0,0,53,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,330,0,235,0,0,0,36,75,300,1650,359,0,0,0,0,1,0,5,0,0,0,0,0,0,2711,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1414,48,0,0,1561,0,2941,0,6,0,567,39,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,281,551,0,0,215,0,0,0,0,0,9931,0,0,181,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,75,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1598,1655,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,130,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1267,28,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,191,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,501,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,146,0,54,0,0,0,1,4,182,14,144,0,0,0,0,1,0,3,0,0,0,0,0,0,350,0,0,0,0,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,1,0,32,10,159,4,0,0,166,0,317,0,0,0,57,6,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,112,37,0,0,0,0,0,0,0,0,106,0,0,141,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,137,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,194,62,4 +7,0,0,10,0,29,2,0,89,1,4,0,0,0,4,0,365,0,7,1,0,0,0,1,0,2,210,0,28,0,71,0,0,0,13,0,29,6,0,0,721,0,0,0,1,0,0,11,0,0,0,0,72,134,0,0,0,0,0,1,0,0,0,0,0,4,0,0,6552,29,826,0,101,0,0,0,0,0,33,0,0,0,0,5,1,18,473,0,0,13,0,0,0,0,0,334,0,18,0,0,2,0,1378,0,2,0,0,3317,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,365,0,119,0,0,0,142,424,54,449,367,0,0,0,0,1,0,0,0,0,0,0,0,0,1078,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,8,13,191,14,0,0,235,0,577,0,0,0,153,37,0,0,0,0,0,0,0,0,0,471,1,0,0,0,2,0,0,0,0,75,115,90,0,0,0,0,0,0,0,0,952,0,0,366,0,0,1,0,0,0,0,0,18,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,307,0,0,0,0,1,42,331,0,311,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,440,164,4 +0,0,0,5,0,40,22,0,66,3,24,0,0,10,5,0,1149,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,2,11053,40,6,0,0,54,0,2,0,1,0,0,2,0,0,0,0,1,473,0,0,0,0,0,1,0,0,0,0,0,2,0,0,77752,40,1339,0,23,0,0,0,0,0,43,0,0,0,0,0,8,140,12514,0,0,2,0,0,0,0,0,430,40,3,0,0,2,0,1252,0,0,120,0,7423,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,12,12,12,0,0,0,2154,0,45,0,0,0,13,16,2256,8430,2123,0,0,0,0,1,0,3,0,0,0,0,0,0,3194,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,158,85,290,5,0,0,340,0,453,0,0,0,175,19,0,0,0,0,0,0,0,0,0,1282,1,0,0,0,9,0,0,0,0,1,155,43,0,0,151,0,0,0,0,0,8788,1,0,3426,19,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,19,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,61,0,0,0,0,1,42,173,0,24,12,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4659,44,4 +15,0,0,4,0,17,2,0,28,3,3,0,0,0,6,0,116,0,6,1,0,0,0,1,0,1,60,0,19,0,21,0,0,0,6,0,17,61,0,0,22,0,53,0,1,0,0,53,0,0,0,0,20,297,0,0,0,0,0,1,0,0,0,0,0,7,0,0,8793,17,482,0,41,0,0,0,0,0,143,0,0,0,0,0,1,55,1279,0,0,6,0,0,0,0,0,159,0,80,0,0,2,0,419,0,4,0,0,610,0,4,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,1511,0,417,0,0,0,40,103,39,178,1917,0,0,0,0,1,0,0,0,0,0,0,0,0,3885,0,63,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,8,7,139,4,0,0,602,0,875,0,0,0,544,4,0,0,0,0,0,0,0,0,0,161,1,0,0,0,2,0,0,0,0,21,99,431,0,0,0,0,0,0,0,0,469,0,0,1151,0,0,1,0,1,0,0,0,153,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,163,0,0,0,0,21,20,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,40,0,0,0,0,1,23,103,0,101,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1067,386,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,17,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,42,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,6,4 +68,0,0,7,1,93,56,1,161,10,31,0,8,1,17,1,159,0,9,15,0,0,0,7,0,3,9,0,9,0,7,2,0,1,56,0,94,126,3,0,452,0,0,0,1,0,0,1,0,0,0,0,11,403,0,0,0,0,0,1,0,0,0,0,0,21,0,0,884,93,389,0,20,0,0,0,0,0,11,0,0,0,0,0,20,22,62,0,1,56,1,0,11,76,0,735,30,0,0,0,20,1,602,0,11,0,0,2341,0,0,0,0,17,14,0,1,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,12,0,0,1,5,0,0,0,0,0,3,1,12,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,26,0,0,0,0,0,0,164,0,165,0,0,0,20,35,176,626,140,0,0,0,0,1,0,0,0,0,0,0,0,0,816,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,164,126,570,9,0,0,531,0,2992,0,1,0,256,55,0,0,0,0,0,0,0,0,0,443,1,0,0,0,22,0,0,0,0,10,199,197,0,0,60,0,0,0,0,0,3217,0,0,13,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,9,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,98,1,1,1,0,33,0,0,0,2,31,150,73,0,30,0,0,0,0,0,0,430,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,0,0,0,0,0,0,0,0,0,0,0,1,0,0,203,235,4 +5,0,0,6,6,37,30,21,106,11,22,0,0,2,16,0,103,0,8,14,0,10,0,5,0,8,0,0,1,0,1,0,0,6,6,0,43,54,0,0,91,0,0,0,1,0,0,1,0,0,0,0,1,140,0,0,0,0,0,1,0,0,0,0,0,20,0,0,804,37,524,0,1,0,0,0,0,0,5,15,0,0,0,0,8,14,99,0,21,6,6,0,3,23,0,322,45,1,0,0,4,6,180,0,13,0,0,655,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,14,10,10,10,0,0,0,77,0,261,0,0,0,0,3,209,214,111,0,0,0,0,1,0,4,0,0,0,0,0,0,533,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,137,39,457,12,0,0,468,0,656,0,1,0,114,12,0,0,0,0,0,0,0,0,0,287,1,0,0,0,29,0,0,0,0,1,134,56,0,0,91,0,0,0,0,0,207,0,0,8,2,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,39,1,1,1,0,0,0,0,0,0,49,49,31,0,2,8,0,0,0,0,0,112,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,17,0,0,0,0,0,0,0,0,0,0,0,10,0,0,643,42,4 +82,0,0,3,1,52,25,4,117,6,24,0,4,0,12,0,38,0,7,6,0,1,1,5,0,29,9,0,5,0,4,0,0,1,17,0,53,15,0,0,480,0,0,0,1,0,0,0,0,0,0,0,25,118,0,0,0,0,0,1,0,1,0,0,0,26,0,0,1341,52,370,0,28,0,0,0,0,0,16,3,0,0,0,0,8,13,265,0,4,17,1,0,4,88,0,802,15,0,0,0,8,1,552,0,7,0,0,1637,0,0,0,0,37,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,205,0,107,0,0,0,27,58,217,785,202,0,0,0,0,1,0,4,0,0,0,0,0,0,790,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,93,273,5,0,0,239,0,318,0,0,0,102,26,0,0,0,0,0,0,0,0,0,227,0,0,0,0,13,0,0,0,0,24,137,230,0,0,30,0,0,0,0,0,738,0,0,18,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,33,0,0,0,0,9,70,41,0,38,9,0,0,0,0,0,325,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,266,1480,4 +0,0,0,2,0,11,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,8215,11,40,0,1,0,0,0,0,0,8,0,0,0,0,0,1,5,1957,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,13,0,0,0,0,763,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,76,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1204,0,141,0,0,0,0,3,30,5,1246,0,0,0,0,1,0,0,0,0,0,0,0,0,3104,0,0,0,0,0,0,0,0,0,0,0,0,2,0,77,0,0,0,0,0,0,8,3,99,2,0,0,120,0,232,0,0,0,52,13,0,0,0,0,0,0,157,0,0,40,1,0,0,0,2,0,0,0,0,0,93,44,0,0,0,0,0,0,0,0,569,0,0,2382,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,154,0,0,0,0,301,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,83,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,155,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,81,0,0,0,0,0,0,0,1,1180,233,4 +57,0,0,0,5,75,17,20,106,6,18,0,2,0,8,0,84,0,7,18,0,5,5,6,0,16,9,0,25,0,19,1,0,5,29,0,80,23,0,0,147,0,0,0,1,0,0,1,0,0,0,0,28,143,0,0,0,0,0,1,0,0,0,0,0,6,0,0,3893,75,703,0,50,0,0,0,0,0,10,15,0,0,0,0,13,20,688,0,20,29,5,0,1,37,0,500,55,1,0,0,4,5,337,0,5,0,0,2694,0,0,0,0,17,4,2,0,3,0,0,1,0,0,0,14,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,22,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,34,10,10,10,0,0,0,414,0,113,0,0,0,46,55,273,313,421,0,0,0,0,1,0,4,0,0,0,0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,23,36,513,5,0,0,471,0,679,0,0,0,187,56,0,0,0,0,0,0,0,0,0,242,1,0,0,0,34,0,0,0,0,24,166,110,0,0,137,0,0,0,0,0,234,0,0,27,3,0,1,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,3,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,84,1,1,1,0,66,0,0,0,24,41,109,94,0,61,9,0,0,0,0,0,121,10,0,0,0,0,0,0,0,0,0,0,0,6,0,1,6,0,0,0,0,0,0,0,0,0,0,0,7,0,1,183,819,4 +20,0,0,0,0,34,24,0,36,2,5,0,2,0,4,0,20,0,6,6,0,0,0,6,0,10,3,0,6,0,2,1,0,0,6,0,34,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,77,0,0,0,0,0,1,0,0,0,0,0,3,0,0,705,34,116,0,9,0,0,0,0,0,13,0,0,0,0,0,11,16,128,0,0,6,0,0,2,25,0,299,15,0,0,0,4,0,171,0,2,0,0,582,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,94,0,47,0,0,0,6,12,193,169,98,0,0,0,0,1,0,3,0,0,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,134,0,0,0,146,0,279,0,0,0,61,47,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,124,53,0,0,30,0,0,0,0,0,91,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,11,0,0,0,0,1,40,22,0,13,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,36,4 +1,0,0,22,0,53,123,0,92,1,97,0,0,13,7,1,1080,0,7,4,0,0,0,7,0,16,3,0,66,0,5,0,0,0,9,15260,53,6,0,0,117,0,0,0,1,0,0,6,0,0,0,0,5,1528,0,0,0,0,0,1,0,0,0,0,0,6,0,0,93933,53,1726,0,74,0,0,0,0,0,213,0,0,0,0,2,10,349,9266,0,0,9,0,0,0,0,0,1155,50,11,0,0,2,0,1404,0,0,647,0,9342,0,0,0,0,1,0,4,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,1769,0,96,0,0,0,50,56,1066,4497,1713,0,0,0,0,1,0,3,0,0,0,0,0,0,1035,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,197,24,665,31,0,0,796,0,687,1,0,0,573,19,0,0,0,0,0,0,0,0,0,1420,1,0,0,0,11,0,0,0,0,2,303,150,0,0,740,0,0,0,0,0,6903,1,0,1184,96,0,1,1,0,0,0,0,7,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,96,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,216,0,0,0,0,1,62,1060,0,78,12,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3548,158,4 +0,0,0,5,0,35,24,0,47,3,23,0,0,7,4,0,729,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12332,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,752,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39900,35,891,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6558,0,0,1,0,0,0,0,0,360,25,2,0,0,2,0,817,0,0,89,0,4473,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1559,0,32,0,0,0,12,15,485,2063,1538,0,0,0,0,1,0,3,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,276,5,0,0,307,0,300,0,0,0,147,13,0,0,0,0,0,0,0,0,0,840,1,0,0,0,9,0,0,0,0,1,164,7,0,0,131,0,0,0,0,0,4464,1,0,1031,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2444,29,4 +26,0,0,3,0,41,24,0,103,5,21,0,3,0,9,0,20,0,7,4,0,0,0,5,0,21,0,0,5,0,1,0,0,0,11,0,41,13,0,0,437,0,0,0,1,0,0,0,0,0,0,0,14,105,0,0,0,0,0,1,0,0,0,0,0,24,0,0,1057,41,213,0,17,0,0,0,0,0,15,0,0,0,0,0,8,13,225,0,0,11,0,0,3,88,0,770,15,0,0,0,6,0,498,0,6,0,0,3060,0,0,0,0,16,14,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,24,10,10,10,0,0,0,154,0,92,0,0,0,13,23,201,699,165,0,0,0,0,1,0,3,0,0,0,0,0,0,546,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,69,202,3,0,0,165,0,257,0,0,0,71,7,0,0,0,0,0,0,0,0,0,187,0,0,0,0,9,0,0,0,0,13,125,227,0,0,30,0,0,0,0,0,697,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,3,0,0,0,0,1,52,23,0,18,9,0,0,0,0,0,309,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,651,4 +199,0,0,0,0,74,43,0,201,13,40,0,2,0,15,37,28,0,7,2,0,0,0,1,0,6,6,0,5,0,4,1,0,0,56,0,74,15,0,0,559,0,0,0,0,0,0,0,0,0,0,0,10,312,0,0,0,0,0,1,0,0,0,0,0,50,0,0,3070,74,582,0,16,0,0,0,0,0,100,0,0,0,0,0,2,2,387,0,0,56,0,0,2,190,0,1450,0,0,0,0,6,0,1120,0,12,0,0,1338,0,0,0,0,14,93,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,1,0,48,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,350,0,304,0,0,0,14,23,124,1723,376,0,0,0,0,0,0,0,0,0,0,0,0,0,2566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,126,319,0,0,0,391,0,343,0,0,0,325,38,0,0,0,0,0,0,0,0,0,373,0,0,0,0,3,0,0,0,0,10,168,499,0,0,0,0,0,0,1,0,709,0,0,5,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,75,1,1,1,0,12,0,0,0,0,1,130,56,0,22,0,0,0,0,0,0,710,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,952,676,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,51,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,0,0,0,34,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,2,0,0,403,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,258,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,155,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,24,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,14,4 +3,0,0,5,6,13,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,19,54,3,0,96,0,0,0,1,0,0,3,0,0,0,0,1,94,0,0,0,0,0,1,0,0,0,0,0,25,0,0,472,13,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,42,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,316,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,59,0,46,0,0,0,2,10,44,224,97,0,0,0,0,1,0,1,0,0,0,0,0,0,428,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,115,36,393,11,0,0,401,0,604,0,1,0,103,9,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,110,74,0,0,57,0,0,0,0,0,538,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,6,0,0,0,0,49,22,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,11,0,0,212,37,4 +11,0,0,1,1,36,8,4,22,0,2,0,3,0,3,0,26,0,6,7,0,1,1,4,0,8,0,0,2,0,1,0,0,1,9,0,37,12,0,0,80,0,0,0,1,0,0,0,0,0,0,0,1,63,0,0,0,0,0,1,0,1,0,0,0,0,0,0,605,36,158,0,1,0,0,0,0,0,5,3,0,0,0,0,8,13,112,0,4,9,1,0,2,0,0,79,0,0,0,0,6,1,37,0,0,0,0,4085,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,19,10,10,10,0,0,0,80,0,59,0,0,0,0,3,193,31,84,0,0,0,0,1,0,3,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,40,172,2,0,0,156,0,368,0,0,0,46,3,0,0,0,0,0,0,0,0,0,70,0,0,0,0,13,0,0,0,0,0,121,4,0,0,0,0,0,0,0,0,670,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,9,46,21,0,2,9,0,0,0,0,0,64,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,129,369,4 +0,0,0,0,0,1,0,1,12,0,1,0,0,0,1,0,224,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,220,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,2,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,3,0,0,0,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,2,0,0,1,44,4 +116,0,0,32,17,96,206,54,414,39,73,0,0,2,78,0,425,0,22,60,0,103,1,7,0,57,13,0,30,0,5,3,0,16,40,0,106,352,159,0,897,0,0,0,1,0,0,5,1,0,0,0,54,398,0,0,0,0,0,1,0,2,0,12,0,85,0,0,3855,96,2707,0,83,0,0,0,0,0,111,30,0,0,0,0,13,27,551,0,54,40,16,0,10,161,0,1763,95,11,0,0,16,17,1169,0,56,0,0,2848,0,0,0,0,56,44,0,0,35,0,0,1,0,0,0,25,0,0,0,0,0,0,0,6,0,0,0,11,0,0,0,2,0,1,0,24,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,3,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,76,10,10,10,0,0,0,443,0,293,0,0,0,60,83,321,1537,496,0,0,0,0,1,0,4,0,0,0,0,0,0,3742,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,780,385,1679,60,0,0,1733,0,3611,0,7,0,617,109,0,0,0,0,0,0,0,0,0,1220,1,0,2,0,171,0,0,0,0,46,316,416,0,0,211,0,0,0,0,0,10144,0,0,149,3,0,1,7,0,0,0,0,13,0,0,0,4,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,3,11,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,101,1,1,1,0,54,0,0,0,0,81,146,196,0,99,9,0,0,0,0,0,668,10,0,0,0,0,0,0,1,0,0,0,0,11,0,4,47,0,0,0,0,0,0,0,0,117,0,0,165,0,6,2261,1290,4 +53,0,0,1,1,58,12,4,58,2,13,0,3,0,5,0,45,0,7,9,0,1,1,7,0,23,12,0,7,0,4,1,0,1,22,0,59,12,0,0,179,0,0,0,1,0,0,0,0,0,0,0,20,106,0,0,0,0,0,1,0,1,0,0,0,7,0,0,1036,58,285,0,25,0,0,0,0,0,10,3,0,0,0,0,13,18,139,0,4,22,1,0,4,31,0,395,30,0,0,0,6,1,269,0,2,0,0,1675,0,0,0,0,16,10,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,29,10,10,10,0,0,0,143,0,93,0,0,0,23,43,225,346,132,0,0,0,0,2,0,3,0,0,0,0,0,0,518,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,308,2,0,0,239,0,417,0,0,0,102,39,0,0,0,0,0,0,0,0,0,143,0,0,0,0,18,0,0,0,0,19,149,72,0,0,60,0,0,0,0,0,708,0,0,6,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,18,0,0,0,0,9,81,38,0,38,9,0,0,0,0,0,190,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,159,997,4 +6,0,0,9,0,59,181,0,121,6,15,0,0,2,21,2,66,0,63,4,0,0,0,7,0,8,24,0,13,0,9,4,0,0,23,0,59,206,0,0,282,0,0,0,1,0,0,7,1,0,0,0,13,217,0,0,0,0,0,1,0,0,0,5,0,16,0,0,8217,59,549,0,24,0,0,0,0,0,35,0,0,0,0,1,10,25,757,0,0,23,0,0,1,94,0,843,60,17,0,0,2,0,718,0,10,0,0,2744,0,0,0,0,3,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,723,0,162,0,0,0,24,50,249,1343,699,0,0,0,0,1,0,14,0,0,0,0,0,0,2993,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,25,397,9,0,0,617,0,1302,0,0,0,477,110,0,0,0,0,0,0,0,0,0,471,1,0,6,0,11,0,0,0,0,12,158,383,0,0,293,0,0,0,0,0,1440,0,0,1947,3,0,1,1,1,0,0,0,25,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,86,1,1,1,0,27,0,0,0,0,1,82,624,0,49,9,0,0,0,0,0,289,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1014,1489,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,128,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1154,28,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,190,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,580,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,140,0,51,0,0,0,1,4,182,14,138,0,0,0,0,1,0,3,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,32,10,145,4,0,0,152,0,318,0,0,0,42,11,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,110,24,0,0,0,0,0,0,0,0,97,0,0,81,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,86,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,181,53,4 +147,0,0,29,10,85,188,22,425,28,73,0,0,2,62,0,375,0,20,16,0,6,2,6,0,30,22,0,15,0,10,3,0,9,33,0,95,301,0,0,703,0,0,0,1,0,0,3,0,0,0,0,35,346,0,0,0,0,0,1,0,2,0,12,0,81,0,0,3021,85,1518,0,47,0,0,0,0,0,69,12,0,0,0,0,13,22,399,0,22,33,9,0,10,198,0,1953,100,3,0,0,14,10,1305,0,44,0,0,2361,0,0,0,0,50,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,34,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,334,0,242,0,0,0,46,80,300,1658,365,0,0,0,0,1,0,5,0,0,0,0,0,0,2754,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,144,1455,48,0,0,1556,0,2902,0,6,0,562,50,0,0,0,0,0,0,0,0,0,1145,1,0,0,0,30,0,0,0,0,29,280,551,0,0,215,0,0,0,0,0,9934,0,0,180,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,3,26,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,65,0,0,0,0,81,128,309,0,71,9,0,0,0,0,0,731,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,38,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1624,1761,4 +3,0,0,5,6,13,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,19,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,102,0,0,0,0,0,1,0,0,0,0,0,25,0,0,465,13,537,0,2,0,0,0,0,0,5,15,0,0,0,0,2,7,43,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,337,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,58,0,45,0,0,0,2,10,44,224,96,0,0,0,0,1,0,1,0,0,0,0,0,0,414,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,116,36,385,11,0,0,401,0,607,0,1,0,103,18,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,110,74,0,0,57,0,0,0,0,0,539,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,6,0,0,0,0,49,22,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,10,0,0,211,36,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,141,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,48,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,70,0,48,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,34,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,4,4 +489,0,0,4,13,191,204,37,524,69,89,0,7,0,141,1,917,0,15,30,0,10,6,10,2,35,45,0,21,0,16,5,0,11,116,0,204,201,6012,0,1148,0,0,0,1,0,0,5,1,0,0,0,47,375,0,0,0,0,0,1,0,3,0,16,0,110,0,0,39748,191,3017,0,65,0,0,0,0,0,152,27,0,0,0,0,25,36,8053,0,37,116,11,0,12,279,0,2561,165,12,0,0,20,13,2692,0,76,1,0,8180,0,0,0,0,170,108,2,0,32,0,0,1,0,0,0,23,0,0,0,0,0,0,0,31,0,0,0,34,0,0,0,0,0,2,0,29,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,129,8,0,0,0,0,0,2,0,0,0,0,0,7,23,0,0,0,4,0,0,0,0,11,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,2,109,12,12,12,0,0,2,5148,2,505,0,0,2,66,323,450,134570,5145,0,0,0,0,1,0,19,0,0,0,0,0,0,11962,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,370,292,1664,21,0,0,1747,0,2014,0,3,0,902,125370,0,0,0,0,0,0,0,0,0,1898,1,0,2,0,58,0,0,0,0,37,347,747,0,0,400,0,0,0,0,0,12701,0,0,8721,3,0,1,11,0,0,0,0,14,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,0,3,187,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3,201,1,1,1,0,614,0,0,0,0,180,320,461,1,113,9,0,0,0,0,0,1118,18,0,0,0,0,0,0,0,0,0,0,0,14,0,2,75,0,0,0,0,0,0,0,50,8,0,0,27,0,4,4443,2974,4 +1,0,0,5,0,40,18,0,55,4,11,0,0,6,4,1,839,0,6,2,0,0,0,8,0,11,0,0,18,0,5,0,0,0,4,1347,40,6,0,0,46,0,0,0,1,0,0,2,0,0,0,0,5,295,0,0,0,0,0,1,0,0,0,0,0,2,0,0,33440,40,974,0,19,0,0,0,0,0,37,0,0,0,0,0,9,67,4109,0,0,4,0,0,0,0,0,259,20,4,0,0,2,0,818,0,0,27,0,3149,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,2204,0,92,0,0,0,14,11,534,1934,2161,0,0,0,0,1,0,4,0,0,0,0,0,0,2622,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,28,229,5,0,0,246,0,318,0,0,0,90,18,0,0,0,0,0,0,0,0,0,940,1,0,0,0,10,0,0,0,0,2,123,31,0,0,51,0,0,0,0,0,3007,1,0,2993,19,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,38,38,0,0,2,0,0,0,0,0,19,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,40,0,0,0,0,29,44,215,0,20,14,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1151,207,4 +0,0,0,0,0,1,0,1,20,0,1,0,0,0,1,0,732,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,728,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,9,0,0,1,107,4 +78,0,0,1,1,53,26,4,123,5,23,0,4,0,9,0,38,0,7,6,0,1,1,5,0,33,9,0,5,0,3,0,0,1,18,0,55,15,0,0,484,0,0,0,1,0,0,0,0,0,0,0,28,108,0,0,0,0,0,1,0,1,0,0,0,25,0,0,1360,54,376,0,31,0,0,0,0,0,16,3,0,0,0,0,8,13,273,0,4,18,1,0,4,93,0,843,15,0,0,0,8,1,573,0,6,0,0,1737,0,0,0,0,36,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,218,0,108,0,0,0,29,65,222,825,203,0,0,0,0,1,0,4,0,0,0,0,0,0,796,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,90,284,3,0,0,246,0,328,0,0,0,106,20,0,0,0,0,0,0,0,0,0,230,0,0,0,0,13,0,0,0,0,27,139,243,0,0,30,0,0,0,0,0,747,0,0,18,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,31,0,0,0,0,9,73,42,0,41,9,0,0,0,0,0,336,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,271,1445,4 +5,0,0,6,6,37,30,21,106,11,22,0,0,2,16,0,103,0,8,14,0,10,0,5,0,8,0,0,1,0,1,0,0,6,6,0,43,54,0,0,91,0,0,0,1,0,0,1,0,0,0,0,1,139,0,0,0,0,0,1,0,0,0,0,0,20,0,0,817,37,524,0,1,0,0,0,0,0,5,15,0,0,0,0,8,14,105,0,21,6,6,0,3,23,0,322,45,1,0,0,4,6,180,0,13,0,0,666,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,14,10,10,10,0,0,0,75,0,256,0,0,0,0,3,209,214,107,0,0,0,0,1,0,4,0,0,0,0,0,0,520,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,137,39,452,12,0,0,467,0,670,0,1,0,114,13,0,0,0,0,0,0,0,0,0,287,1,0,0,0,29,0,0,0,0,1,133,56,0,0,91,0,0,0,0,0,212,0,0,8,2,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,39,1,1,1,0,0,0,0,0,0,49,49,31,0,2,8,0,0,0,0,0,112,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,17,0,0,0,0,0,0,0,0,0,0,0,11,0,0,632,43,4 +1,0,0,3,0,29,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,104,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1219,29,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,192,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,552,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,145,0,49,0,0,0,1,4,186,14,143,0,0,0,0,1,0,3,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,2,1,8,0,0,0,0,1,0,32,10,138,3,0,0,168,0,309,0,0,0,59,21,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,111,42,0,0,0,0,0,0,0,0,108,0,0,117,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,174,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,189,54,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,42,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1,0,0,0,0,0,0,0,0,56,8,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,7,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,17,0,0,0,0,3,21,4,26,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,37,0,24,0,0,0,3,11,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,4,4 +16,0,0,24,19,63,62,91,220,24,60,1,0,2,44,0,114,0,9,56,0,18,0,6,6,10,24,0,8,0,7,0,0,19,22,0,70,23821,0,0,374,0,0,0,1,0,0,1,0,0,0,0,9,151,0,0,0,0,0,1,0,0,0,34,0,55,0,0,1091,63,2678,0,15,0,0,0,0,0,6,54,0,0,0,0,13,20,156,0,91,22,19,0,4,131,0,1232,100,1,0,0,4,19,939,0,31,0,0,1255,0,0,1,0,14,0,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,11,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,36,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,90,10,10,10,0,0,0,152,0,83,0,0,0,14,47,238,943,198,0,0,0,0,1,0,2,0,0,0,0,0,0,709,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,136,67,407,49,0,0,427,0,899,0,1,0,156,22,0,0,0,0,0,0,0,0,0,512,1,0,0,0,86,0,0,0,0,9,167,309,0,0,229,0,0,0,0,3,24100,0,0,18,3,0,1,3,0,0,0,0,1,0,0,0,2,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,12,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,70,1,1,1,0,32,0,0,0,0,9,92,27,0,40,9,0,0,0,0,0,375,2,0,0,0,0,0,0,0,0,0,0,0,8,0,1,32,0,0,0,0,0,0,0,0,0,0,0,26,0,0,327,93,4 +107,0,0,24,4,62,81,7,125,7,16,0,0,2,24,0,187,0,12,6,0,1,1,5,0,16,9,0,9,0,3,0,0,4,22,0,66,165,0,0,210,0,0,0,1,0,0,7,0,0,0,0,11,270,0,0,0,0,0,1,0,1,0,0,0,21,0,0,5163,62,483,0,18,0,0,0,0,0,30,3,0,0,0,0,8,21,1018,0,7,22,4,0,4,11,0,322,20,12,0,0,8,4,207,0,15,0,0,1528,0,0,0,0,41,30,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,32,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,756,0,244,0,0,0,13,46,241,241,723,0,0,0,0,1,0,4,0,0,0,0,0,0,1957,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,74,774,33,0,0,814,0,1492,0,3,0,285,24,0,0,0,0,0,0,2,0,0,447,1,0,0,0,13,0,0,0,0,11,192,94,0,0,34,0,0,0,0,0,1190,0,0,941,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,64,1,1,1,0,63,0,0,0,0,33,88,360,0,28,9,0,0,0,0,0,268,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,11,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1313,1348,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,113,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1142,28,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,195,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,471,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,141,0,50,0,0,0,1,4,182,14,139,0,0,0,0,1,0,3,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,32,10,139,4,0,0,162,0,304,0,0,0,53,5,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,110,35,0,0,0,0,0,0,0,0,112,0,0,124,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,132,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,192,53,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,83,0,57,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,4,4 +21,0,0,1,1,52,11,4,42,3,8,0,4,0,6,0,36,0,7,10,0,1,1,5,0,17,3,0,4,0,1,1,0,1,18,0,53,15,0,0,148,0,0,0,1,0,0,0,0,0,0,0,11,96,0,0,0,0,0,1,0,1,0,0,0,5,0,0,755,52,229,0,13,0,0,0,0,0,10,3,0,0,0,0,12,17,124,0,4,18,1,0,4,18,0,259,15,0,0,0,8,1,166,0,2,0,0,4796,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,118,0,77,0,0,0,11,21,217,210,111,0,0,0,0,1,0,3,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,35,57,236,4,0,0,216,0,370,0,0,0,82,18,0,0,0,0,0,0,0,0,0,114,0,0,0,0,17,0,0,0,0,10,136,46,0,0,30,0,0,0,0,0,114,0,0,2,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,7,0,0,0,0,9,71,34,0,17,9,0,0,0,0,0,150,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,1,0,0,0,0,0,0,0,0,0,0,2,0,0,257,691,4 +119,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,556,0,20,45,0,98,2,6,0,33,22,0,17,0,8,2,0,10,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,336,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2480,89,1766,0,49,0,0,0,0,0,22,15,0,0,0,0,13,22,284,0,27,38,10,0,8,37,0,729,70,3,0,0,14,11,583,0,46,0,0,2033,0,0,0,0,46,16,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,289,0,221,0,0,0,42,74,336,592,299,0,0,0,0,1,0,6,0,0,0,0,0,0,2116,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1435,49,0,0,1495,0,2999,0,6,0,501,92,0,0,0,0,0,0,0,0,0,1111,1,0,0,0,151,0,0,0,0,30,284,146,0,0,155,0,0,0,0,0,10412,0,0,168,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,5,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,63,0,0,0,0,117,137,314,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,247,0,2,1613,1612,4 +218,0,0,0,3,85,57,12,337,3,107,1,2,0,5,0,48,0,7,15,0,3,3,3,0,6,3,0,75,0,300,1,0,3,36,0,88,12,0,0,510,0,0,0,0,0,0,0,0,0,0,0,306,103,0,0,0,0,0,1,0,0,0,0,0,24,0,0,5877,85,1670,0,382,0,0,0,0,0,272,9,0,0,0,0,11,11,218,0,12,36,3,0,4,297,0,3621,405,0,0,0,6,3,1690,0,2,0,0,4720,0,0,0,0,85,94,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,77,0,0,0,76,0,0,0,0,0,1,0,11,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,72,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,220,0,202,0,0,0,606,610,164,2470,241,0,0,0,0,0,0,0,0,0,0,0,0,0,3861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,633,6,0,0,705,0,534,0,0,0,471,58,0,0,0,0,0,0,0,0,0,564,0,0,0,0,24,0,0,0,0,305,176,581,0,0,905,0,0,0,0,0,1276,0,0,300,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,85,1,1,1,0,678,0,0,0,588,25,124,36,0,385,0,0,0,0,0,0,638,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,1,0,0,0,0,0,0,0,0,0,0,5,0,0,1195,1952,4 +0,0,0,5,0,36,25,0,49,3,24,0,0,7,4,0,820,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12459,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,751,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41000,36,987,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6721,0,0,1,0,0,0,0,0,364,25,1,0,0,2,0,908,0,0,88,0,4563,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1549,0,33,0,0,0,12,15,495,2083,1528,0,0,0,0,1,0,3,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,275,5,0,0,309,0,293,0,0,0,146,16,0,0,0,0,0,0,0,0,0,935,1,0,0,0,9,0,0,0,0,1,164,6,0,0,135,0,0,0,0,0,4800,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2419,23,4 +12,0,0,4,0,16,2,0,23,3,3,0,0,0,6,0,91,0,6,1,0,0,0,1,0,0,45,0,15,0,16,0,0,0,5,0,16,61,0,0,22,0,56,0,1,0,0,56,0,0,0,0,15,300,0,0,0,0,0,1,0,0,0,0,0,7,0,0,8659,16,402,0,31,0,0,0,0,0,133,0,0,0,0,0,1,58,1443,0,0,5,0,0,0,0,0,137,0,63,0,0,2,0,319,0,4,0,0,554,0,3,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,1516,0,414,0,0,0,30,78,37,149,1905,0,0,0,0,1,0,0,0,0,0,0,0,0,3607,0,63,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,8,7,116,4,0,0,597,0,880,0,0,0,537,8,0,0,0,0,0,0,0,0,0,131,1,0,0,0,2,0,0,0,0,16,98,442,0,0,0,0,0,0,0,0,584,0,0,1236,0,0,1,0,1,0,0,0,154,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,150,0,0,0,0,16,15,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,30,0,0,0,0,1,21,102,0,76,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1305,335,4 +47,0,0,7,0,51,16,0,24,9,10,0,4,1,16,1,107,0,7,11,0,0,0,6,0,2,9,0,7,0,5,2,0,0,21,0,51,57,3,0,220,0,0,0,1,0,0,0,0,0,0,0,8,348,0,0,0,0,0,1,0,0,0,0,0,7,0,0,637,51,188,0,15,0,0,0,0,0,3,0,0,0,0,0,15,17,48,0,0,21,0,0,4,0,0,80,0,0,0,0,10,0,214,0,10,0,0,1458,0,0,0,0,13,8,0,1,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,8,0,0,1,3,0,0,0,0,0,3,1,10,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,24,0,0,0,0,0,0,144,0,110,0,0,0,15,30,122,103,104,0,0,0,0,1,0,0,0,0,0,0,0,0,557,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,34,77,260,8,0,0,215,0,2671,0,0,0,89,59,0,0,0,0,0,0,0,0,0,186,1,0,0,0,17,0,0,0,0,7,143,11,0,0,0,0,0,0,0,0,1556,0,0,11,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,18,18,0,0,10,1,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,27,0,0,0,2,25,72,37,0,25,0,0,0,0,0,0,120,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,233,4 +0,0,0,0,0,8,4,0,12,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,54,8,36,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,10,0,0,0,0,0,2,8,0,79,15,0,0,0,4,0,46,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,16,0,0,0,0,3,21,58,27,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,39,0,25,0,0,0,5,3,0,0,0,0,0,0,0,0,0,41,0,0,0,0,2,0,0,0,0,0,91,16,0,0,30,0,0,0,0,0,23,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,147,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,33,0,0,0,0,3,21,195,54,0,0,0,0,0,0,0,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,84,0,57,0,0,0,50,8,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,4,4 +1,0,0,3,0,28,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,113,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1199,28,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,188,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,533,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,13,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,145,0,51,0,0,0,1,4,182,14,143,0,0,0,0,1,0,3,0,0,0,0,0,0,326,0,0,0,0,0,0,0,0,0,0,0,0,2,1,9,0,0,0,0,1,0,32,10,136,3,0,0,160,0,325,0,0,0,54,9,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,110,37,0,0,0,0,0,0,0,0,106,0,0,122,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,138,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,182,58,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,8,37,0,1,0,0,0,0,0,8,0,0,0,0,0,1,1,36,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,32,0,0,0,0,3,21,4,48,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,45,0,30,0,0,0,11,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,4,4 +0,0,0,5,0,36,24,0,47,3,23,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12376,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,693,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39679,36,910,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6547,0,0,1,0,0,0,0,0,362,25,2,0,0,2,0,836,0,0,93,0,4685,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1393,0,32,0,0,0,12,15,492,2064,1371,0,0,0,0,1,0,3,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,279,5,0,0,308,0,295,0,0,0,146,15,0,0,0,0,0,0,0,0,0,859,1,0,0,0,9,0,0,0,0,1,164,7,0,0,133,0,0,0,0,0,4687,1,0,1023,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2518,26,4 +116,0,0,32,17,97,206,54,414,39,73,0,0,2,78,0,424,0,22,60,0,104,1,6,0,57,13,0,31,0,5,3,0,16,40,0,107,352,159,0,901,0,0,0,1,0,0,5,1,0,0,0,54,410,0,0,0,0,0,1,0,2,0,12,0,85,0,0,3716,97,2690,0,84,0,0,0,0,0,107,30,0,0,0,0,13,27,538,0,54,40,16,0,10,161,0,1764,95,10,0,0,16,17,1169,0,56,0,0,2661,0,0,0,0,59,44,0,0,39,0,0,1,0,0,0,19,0,0,0,0,0,0,0,6,0,0,0,10,0,0,0,2,0,1,0,24,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,3,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,76,10,10,10,0,0,0,432,0,295,0,0,0,60,83,325,1545,486,0,0,0,0,1,0,4,0,0,0,0,0,0,3686,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,780,385,1640,60,0,0,1733,0,3616,0,7,0,614,393,0,0,0,0,0,0,0,0,0,1219,1,0,2,0,171,0,0,0,0,47,318,416,0,0,211,0,0,0,0,0,10139,0,0,110,3,0,1,7,0,0,0,0,13,0,0,0,4,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,3,11,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,100,1,1,1,0,55,0,0,0,0,81,147,196,0,100,9,0,0,0,0,0,668,10,0,0,0,0,0,0,1,0,0,0,0,11,0,4,47,0,0,0,0,0,0,0,0,117,0,0,163,0,6,2281,1273,4 +121,0,0,29,11,90,157,27,271,30,38,0,0,2,66,1,559,0,20,44,0,98,2,7,0,33,22,0,17,0,6,3,0,10,38,0,100,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,347,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2538,90,1769,0,49,0,0,0,0,0,21,15,0,0,0,0,13,22,296,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,584,0,46,0,0,2146,0,0,0,0,46,16,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,32,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,292,0,233,0,0,0,42,73,344,592,302,0,0,0,0,1,0,6,0,0,0,0,0,0,2156,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1466,49,0,0,1498,0,2937,0,6,0,503,295,0,0,0,0,0,0,0,0,0,1114,1,0,0,0,151,0,0,0,0,30,284,149,0,0,155,0,0,0,0,0,10425,0,0,164,4,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,53,53,0,0,7,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,61,0,0,0,0,121,138,326,0,72,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,203,0,3,1668,1622,4 +3,0,0,5,6,13,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,19,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,99,0,0,0,0,0,1,0,0,0,0,0,25,0,0,476,13,531,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,44,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,302,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,59,0,46,0,0,0,2,10,44,224,97,0,0,0,0,1,0,1,0,0,0,0,0,0,429,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,117,36,391,11,0,0,401,0,600,0,1,0,103,9,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,110,74,0,0,57,0,0,0,0,0,539,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,6,0,0,0,0,49,22,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,11,0,0,215,36,4 +218,0,0,0,4,105,152,13,438,53,163,1,5,0,55,1,67,0,7,20,0,4,3,15,0,7,6,0,75,0,291,1,0,4,42,0,109,50,0,1,1072,0,0,0,0,0,0,0,0,0,0,0,296,176,0,0,0,0,0,1,0,0,0,0,0,30,0,0,7347,105,2148,0,373,0,0,0,0,0,296,12,0,0,0,0,22,22,463,0,13,42,4,0,7,381,0,4249,385,0,0,0,13,4,2393,0,2,0,0,7019,0,0,0,0,83,91,0,0,5,0,0,0,0,0,0,10,0,0,2,0,0,0,0,76,0,0,0,76,0,0,0,0,0,1,0,13,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,90,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,28,0,0,0,0,0,0,402,0,257,0,0,0,589,590,218,3022,440,0,0,0,0,0,0,0,0,0,3,2,1,0,5301,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,1,2,42,186,740,9,0,0,878,0,601,0,0,0,573,188,0,0,0,0,0,0,0,0,0,889,0,0,0,0,42,0,0,0,0,338,202,795,0,0,861,0,3,0,1,3,6492,0,0,301,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,1,0,0,0,0,0,583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,111,1,1,1,0,657,0,0,0,562,34,151,42,0,380,0,0,0,0,0,0,876,10,0,0,0,0,0,0,0,0,0,0,0,4,0,1,57,1,0,0,0,0,0,0,0,0,0,0,7,0,0,1496,1942,4 +0,0,0,6,0,39,56,0,97,1,38,0,0,8,3,0,885,0,6,1,0,0,0,8,0,11,0,0,44,0,1,0,0,0,1,13951,39,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,544,0,0,0,0,0,1,0,0,0,0,0,2,0,0,124831,39,1216,0,43,0,0,0,0,0,109,0,0,0,0,0,8,310,14368,0,0,1,0,0,0,0,0,569,30,2,0,0,2,0,1069,0,0,214,0,9336,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,7371,0,37,0,0,0,27,30,1421,8027,7302,0,0,0,0,1,0,3,0,0,0,0,0,0,9219,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,22,394,6,0,0,410,0,346,0,0,0,233,48,0,0,0,0,0,0,0,0,0,1093,1,0,0,0,9,0,0,0,0,1,187,72,0,0,288,0,0,0,0,0,6102,1,0,11902,53,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,53,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,123,0,0,0,0,1,40,277,0,44,12,0,1,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3473,119,4 +0,0,0,0,0,8,4,0,12,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,54,8,36,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,10,0,0,0,0,0,2,8,0,79,15,0,0,0,4,0,46,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,18,0,0,0,0,3,21,58,27,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,39,0,25,0,0,0,5,3,0,0,0,0,0,0,0,0,0,41,0,0,0,0,2,0,0,0,0,0,91,16,0,0,30,0,0,0,0,0,23,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,4,4 +59,0,0,0,17,49,33,37,261,12,37,0,3,0,9,16,416,0,7,23,0,20,32,7,0,18,3,0,11,0,1,1,0,17,8,625,80,41,2586,0,362,0,0,0,1,0,0,2,0,0,0,0,12,2061,0,0,0,0,0,1,0,0,0,0,0,6,0,0,2358,49,1862,0,21,0,0,0,0,0,22,51,0,0,0,0,10,18,378,0,37,8,17,0,2,49,0,576,50,2,0,0,6,17,819,0,4,0,0,1623,0,0,0,0,30,15,0,0,1,0,0,1,0,0,0,3,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,30,0,19,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,3,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,46,25,25,25,0,0,15,320,16,177,0,0,0,12,17,385,581,300,0,0,0,0,1,0,3,0,0,0,18,2,0,1511,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,35,79,1041,17,0,0,908,0,1066,1,0,0,251,264,0,0,0,0,0,0,0,0,0,782,1,0,0,0,79,3,0,0,0,11,164,153,0,0,164,0,0,0,0,0,14852,0,0,21,3,0,1,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,121,1,1,1,0,12,0,0,0,0,563,89,85,0,25,9,0,0,0,0,0,266,21,0,0,0,0,0,0,0,0,0,0,0,32,0,1,12,0,0,0,0,0,0,0,0,3,0,0,32,0,1,3440,483,4 +0,0,0,6,0,33,7,0,39,0,2,0,0,2,2,0,547,0,6,2,0,0,0,8,0,11,0,0,4,0,1,0,0,0,1,900,33,6,0,0,27,0,2,0,1,0,0,2,0,0,0,0,1,213,0,0,0,0,0,1,0,0,0,0,0,4,0,0,32977,33,608,0,1,0,0,0,0,0,16,0,0,0,0,0,9,22,6696,0,0,1,0,0,0,0,0,94,5,3,0,0,2,0,568,0,0,0,0,3092,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,2964,0,45,0,0,0,0,3,246,1124,2950,0,0,0,0,1,0,3,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,221,6,0,0,228,0,332,0,0,0,74,14,0,0,0,0,0,0,0,0,0,605,1,0,0,0,10,0,0,0,0,0,116,33,0,0,0,0,0,0,0,0,3383,1,0,773,9,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,9,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,34,160,0,2,14,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1855,330,4 +0,0,0,3,0,12,2,0,7,1,3,0,0,0,5,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,6,0,0,18,0,0,0,1,0,0,1,0,0,0,0,0,35,0,0,0,0,0,1,0,1,0,0,0,5,0,0,244,12,38,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,48,0,0,4,0,0,0,0,0,7,0,1,0,0,2,0,12,0,3,0,0,229,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,41,0,0,0,0,3,26,7,63,0,0,0,0,1,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,8,107,3,0,0,110,0,160,0,0,0,61,3,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,108,25,0,0,0,0,0,0,0,0,35,0,0,26,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,79,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,79,39,4 +5,0,0,6,6,37,30,21,106,11,22,0,0,2,16,0,103,0,8,14,0,10,0,5,0,8,0,0,1,0,1,0,0,6,6,0,43,54,0,0,91,0,0,0,1,0,0,1,0,0,0,0,1,140,0,0,0,0,0,1,0,0,0,0,0,20,0,0,839,37,524,0,1,0,0,0,0,0,5,15,0,0,0,0,8,14,120,0,21,6,6,0,3,23,0,322,45,1,0,0,4,6,180,0,13,0,0,600,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,14,10,10,10,0,0,0,86,0,268,0,0,0,0,3,209,214,129,0,0,0,0,1,0,4,0,0,0,0,0,0,611,0,19,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,137,39,455,12,0,0,468,0,664,0,1,0,114,17,0,0,0,0,0,0,0,0,0,287,1,0,0,0,29,0,0,0,0,1,134,56,0,0,91,0,0,0,0,0,217,0,0,8,2,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,39,1,1,1,0,0,0,0,0,0,49,49,31,0,2,8,0,0,0,0,0,112,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,17,0,0,0,0,0,0,0,0,0,0,0,10,0,0,667,42,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,129,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1210,28,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,184,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,621,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,146,0,48,0,0,0,1,4,182,14,144,0,0,0,0,1,0,3,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,32,10,145,4,0,0,156,0,318,0,0,0,46,6,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,110,28,0,0,0,0,0,0,0,0,95,0,0,109,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,102,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,182,54,4 +0,0,0,6,0,27,5,0,20,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,0,0,1,0,27,6,0,0,27,0,2,0,1,0,0,2,0,0,0,0,1,138,0,0,0,0,0,1,0,0,0,0,0,4,0,0,8851,27,50,0,1,0,0,0,0,0,11,0,0,0,0,0,7,16,2058,0,0,1,0,0,0,0,0,75,5,3,0,0,2,0,29,0,0,0,0,976,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,86,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,1256,0,115,0,0,0,0,3,181,9,1289,0,0,0,0,1,0,3,0,0,0,0,0,0,3307,0,0,0,0,0,0,0,0,0,0,0,0,2,1,85,0,0,0,0,1,0,32,10,142,6,0,0,146,0,337,0,0,0,38,8,0,0,0,0,0,0,176,0,0,54,1,0,0,0,8,0,0,0,0,0,109,27,0,0,0,0,0,0,0,0,622,0,0,2494,3,0,1,2,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,175,0,0,0,3,341,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,58,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,0,0,1,28,162,0,2,9,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,88,0,0,0,0,0,0,0,1,1170,441,4 +0,0,0,4,1,20,27,1,34,3,4,0,1,0,9,0,74,0,8,4,0,0,0,1,0,3,7,0,5,0,2,0,0,1,7,0,21,57,10,0,32,0,0,0,1,0,0,0,0,0,0,0,4,72,0,0,0,0,0,1,0,0,0,0,0,8,0,0,1727,20,118,0,7,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,1,7,1,0,2,0,0,70,0,0,0,0,6,1,67,0,6,0,0,817,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,56,0,30,0,0,0,8,37,38,70,43,0,0,0,0,1,0,0,0,0,3,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,118,28,229,5,0,0,232,0,583,0,1,0,67,13,0,0,0,0,0,0,0,0,0,157,0,0,0,0,5,0,0,0,0,4,116,9,0,0,0,0,0,0,0,0,189,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,1,1,1,0,15,0,0,0,0,9,28,8,0,17,0,0,0,0,0,0,81,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,97,80,4 +287,0,0,28,21,94,168,37,383,32,48,0,0,2,69,2,803,0,20,67,0,117,2,6,0,35,22,0,19,0,7,2,0,20,39,0,114,301,160,0,402,0,0,0,1,0,0,3,0,0,0,0,35,392,0,0,0,0,0,1,0,3,0,12,0,55,0,0,2597,94,3515,0,54,0,0,0,0,0,21,45,0,0,0,0,14,23,270,0,37,39,20,0,8,42,0,796,70,2,0,0,14,21,735,0,49,0,0,2477,0,0,0,0,66,35,0,0,23,0,0,1,0,0,0,19,0,0,0,0,0,0,0,26,0,0,0,14,0,0,0,0,0,7,0,70,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,20,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,303,0,281,0,0,0,43,75,405,616,313,0,0,0,0,1,0,5,0,0,0,0,0,0,2912,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,341,1837,58,0,0,1843,0,3147,0,6,0,586,695,0,0,0,0,0,0,0,0,0,1495,1,0,0,0,192,0,0,0,0,34,288,159,0,0,155,0,0,0,0,0,10714,0,0,158,4,0,1,7,0,0,0,0,5,0,0,0,1,0,0,0,0,0,31,0,0,0,0,0,0,0,0,1,0,0,105,105,0,0,10,1,0,0,0,0,3,21,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,99,1,1,1,0,61,0,0,0,0,237,153,315,0,76,9,0,0,0,0,0,339,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,38,0,0,0,0,0,0,0,0,117,0,0,186,0,2,1813,1848,4 +11,0,0,0,0,24,4,0,8,3,1,0,2,0,5,0,21,0,7,4,0,0,0,0,0,7,3,0,3,0,1,1,0,0,13,0,24,12,0,0,69,0,0,0,0,0,0,0,0,0,0,0,8,32,0,0,0,0,0,1,0,0,0,0,0,2,0,0,202,24,51,0,12,0,0,0,0,0,0,0,0,0,0,0,3,3,21,0,0,13,0,0,2,0,0,34,0,0,0,0,6,0,52,0,2,0,0,1944,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,43,0,69,0,0,0,9,15,43,65,54,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,116,2,0,0,96,0,186,0,0,0,51,16,0,0,0,0,0,0,0,0,0,48,0,0,0,0,4,0,0,0,0,8,115,2,0,0,0,0,0,0,0,0,49,0,0,2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,8,0,0,0,0,1,37,13,0,15,0,0,0,0,0,0,76,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,254,4 +0,0,0,10,0,17,4,0,25,0,7,0,0,0,4,0,19,0,7,1,0,0,0,1,0,0,0,0,2,0,6,0,0,0,5,0,17,6,0,0,35,0,0,0,1,0,0,1,0,0,0,0,5,71,1,0,0,0,0,1,0,0,0,2,0,7,0,0,18379,17,62,0,8,0,0,0,0,0,6,0,0,0,0,0,1,3,3773,0,0,5,0,0,1,9,0,96,15,1,0,0,2,0,61,0,1,0,0,211,0,0,0,0,2,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2681,0,47,0,0,0,10,8,38,144,2697,0,0,0,0,1,0,0,0,0,0,0,0,0,4865,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,6,107,14,0,0,96,0,235,0,0,0,30,5,0,0,0,0,0,0,0,0,0,66,1,0,0,0,2,0,0,0,0,3,101,20,0,0,31,0,0,0,0,0,1685,0,0,5264,0,0,1,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,12,0,0,0,4,1,22,12,0,8,0,0,0,0,0,0,54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,2512,58,4 +1,0,0,6,0,53,58,0,67,10,48,0,0,10,4,0,405,0,6,2,0,0,0,7,0,11,0,0,34,0,1,0,0,0,12,19837,53,6,0,0,56,0,0,0,1,0,0,5,0,0,0,0,2,1332,0,0,0,0,0,1,0,0,0,0,0,2,0,0,72697,53,764,0,33,0,0,0,0,0,119,0,0,0,0,0,8,229,13232,0,0,12,0,0,0,0,0,686,35,8,0,0,2,0,591,0,0,308,0,11380,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,12,12,12,0,0,0,5008,0,105,0,0,0,21,24,729,3533,4968,0,0,0,0,1,0,5,0,0,0,0,0,0,1647,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,145,46,412,6,0,0,500,0,364,0,0,0,320,8,0,0,0,0,0,0,0,0,0,598,1,0,0,0,9,0,0,0,0,2,238,55,0,0,363,0,0,0,0,0,5833,1,0,1462,53,0,1,1,0,0,0,0,13,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,91,0,0,0,0,1,65,277,0,34,12,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4100,122,4 +4,0,0,4,0,29,3,0,37,1,3,1,0,0,5,0,48,0,7,1,0,0,0,3,0,0,18,0,12,0,10,0,0,0,8,0,29,18,0,0,19,0,0,0,1,0,0,18,0,0,0,0,9,217,0,0,0,0,0,1,0,0,0,0,0,4,0,0,45381,29,230,0,22,0,0,0,0,0,83,0,0,0,0,0,3,23,4422,0,0,8,0,0,0,0,0,69,0,33,0,0,2,0,166,0,2,0,0,1172,0,0,0,0,18,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,4004,0,303,0,0,0,18,28,57,131,3972,0,0,0,0,1,0,0,0,0,0,0,0,0,12481,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,8,11,299,4,0,0,364,0,335,0,0,0,223,21,0,0,0,0,0,0,0,0,0,104,1,0,0,0,4,0,0,0,0,4,149,138,0,0,0,0,0,0,0,0,3193,0,0,13211,0,0,1,0,0,0,0,0,21,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,24,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,38,0,0,0,0,1,37,440,0,40,0,0,0,0,0,0,121,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,3774,263,4 +0,0,0,5,0,28,5,0,22,0,2,0,0,2,2,0,19,0,6,3,0,0,0,5,0,8,0,0,2,0,1,0,0,0,1,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,1,153,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1703,28,54,0,1,0,0,0,0,0,12,0,0,0,0,0,7,15,375,0,0,1,0,0,0,0,0,74,5,4,0,0,2,0,31,0,0,0,0,508,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,209,0,43,0,0,0,0,3,185,10,208,0,0,0,0,1,0,3,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,1,0,32,10,137,11,0,0,188,0,332,0,0,0,68,4,0,0,0,0,0,0,2,0,0,58,1,0,0,0,8,0,0,0,0,0,114,52,0,0,0,0,0,0,0,0,148,0,0,273,3,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,0,0,0,0,0,1,29,217,0,2,9,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,55,4 +0,0,0,5,0,36,24,0,46,3,23,0,0,7,4,0,712,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12503,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,693,0,0,0,0,0,1,0,0,0,0,0,2,0,0,38523,36,873,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6307,0,0,1,0,0,0,0,0,360,25,2,0,0,2,0,800,0,0,89,0,4610,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,1307,0,32,0,0,0,12,15,492,2065,1285,0,0,0,0,1,0,3,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,280,5,0,0,308,0,302,0,0,0,148,17,0,0,0,0,0,0,0,0,0,822,1,0,0,0,9,0,0,0,0,1,163,7,0,0,131,0,0,0,0,0,4520,1,0,1020,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2508,25,4 +1,0,0,3,0,27,5,0,20,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,27,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,97,0,0,0,0,0,1,0,0,0,0,0,2,0,0,981,27,60,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,175,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,387,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,134,0,47,0,0,0,1,4,182,14,132,0,0,0,0,1,0,3,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,127,4,0,0,145,0,279,0,0,0,40,7,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,109,22,0,0,0,0,0,0,0,0,101,0,0,124,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,1,0,0,0,0,1,29,89,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,190,52,4 +0,0,0,6,0,38,56,0,94,1,38,0,0,8,3,0,786,0,6,1,0,0,0,8,0,11,0,0,44,0,1,0,0,0,1,14732,38,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,522,0,0,0,0,0,1,0,0,0,0,0,2,0,0,107484,38,1115,0,43,0,0,0,0,0,109,0,0,0,0,0,8,314,12873,0,0,1,0,0,0,0,0,569,30,2,0,0,2,0,970,0,0,214,0,7420,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,6238,0,37,0,0,0,27,30,1416,7277,6170,0,0,0,0,1,0,3,0,0,0,0,0,0,7530,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,19,424,6,0,0,401,0,365,0,0,0,225,33,0,0,0,0,0,0,0,0,0,991,1,0,0,0,9,0,0,0,0,1,179,72,0,0,288,0,0,0,0,0,5752,1,0,10052,53,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,53,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,123,0,0,0,0,1,39,291,0,44,12,0,1,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3361,126,4 +113,0,0,29,11,90,156,27,264,30,34,0,0,2,66,2,738,0,20,45,0,97,2,7,0,33,22,0,17,0,8,2,0,10,38,0,100,301,160,0,373,0,0,0,1,0,0,3,0,0,0,0,34,336,0,0,0,0,0,1,0,2,0,12,0,51,0,0,2578,90,1930,0,51,0,0,0,0,0,18,15,0,0,0,0,13,22,291,0,27,38,10,0,7,29,0,658,55,3,0,0,14,11,603,0,46,0,0,2582,0,0,0,0,45,14,1,0,33,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,27,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,60,10,10,10,0,0,0,303,0,282,0,0,0,42,72,378,528,294,0,0,0,0,1,0,6,0,0,0,0,0,0,2230,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1456,49,0,0,1494,0,2868,0,6,0,499,229,0,0,0,0,0,0,0,0,0,1282,1,0,0,0,151,0,0,0,0,29,284,135,0,0,125,0,0,0,0,0,10650,0,0,166,4,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,1,0,0,108,108,0,0,10,1,0,0,0,0,3,19,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,58,0,0,0,0,155,138,326,0,73,9,0,0,0,0,0,295,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,34,0,0,0,0,0,0,0,0,117,0,0,187,0,3,1722,1594,4 +100,1,0,18,9,114,129,24,354,66,64,0,13,2,97,0,339,0,16,24,0,7,3,11,3,25,45,0,30,0,12,5,0,9,61,0,123,227,14,0,805,0,0,0,1,0,0,2,1,0,0,0,35,565,0,0,0,0,0,1,0,0,0,0,0,86,0,0,2819,114,1553,0,59,0,0,0,0,0,16,15,0,0,0,0,22,30,229,0,24,61,9,0,7,103,0,1305,145,6,1,1,10,9,1076,0,87,0,0,3846,0,0,0,0,74,28,1,12,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,13,0,0,0,9,0,0,1,3,0,18,13,19,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,2,0,0,0,0,0,13,6,0,0,0,1,0,0,0,0,8,0,0,0,0,29,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,105,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,162,10,10,10,0,0,0,257,0,207,0,0,0,55,134,339,828,243,0,0,0,0,1,0,88,0,0,0,0,0,0,2462,0,0,0,0,0,0,0,0,0,26,0,0,2,1,2,0,0,0,0,2,0,448,163,1322,32,0,0,1291,0,4089,0,4,0,501,122,0,0,0,1,0,0,0,0,0,1014,1,0,5,0,48,0,0,0,0,31,298,229,0,0,357,0,42,0,0,0,9259,0,0,42,3,0,1,3,0,0,0,0,7,0,0,0,2,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,1,0,0,0,0,3,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,126,1,1,1,0,107,0,0,0,0,73,184,157,0,108,9,0,0,0,0,0,1290,22,0,0,0,0,0,0,0,0,0,0,0,10,0,1,74,0,0,0,0,0,0,1,0,0,0,0,13,0,1,748,550,4 +0,0,0,6,0,26,5,0,19,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,0,0,1,0,26,6,0,0,27,0,2,0,1,0,0,2,0,0,0,0,1,112,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1207,26,48,0,1,0,0,0,0,0,10,0,0,0,0,0,7,15,312,0,0,1,0,0,0,0,0,74,5,3,0,0,2,0,28,0,0,0,0,427,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,98,0,36,0,0,0,0,3,184,9,98,0,0,0,0,1,0,3,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,124,6,0,0,156,0,317,0,0,0,54,15,0,0,0,0,0,0,0,0,0,53,1,0,0,0,8,0,0,0,0,0,108,42,0,0,0,0,0,0,0,0,86,0,0,420,3,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,3,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,0,0,0,0,0,1,27,149,0,2,9,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,308,4 +4,0,0,11,0,66,6,0,34,7,7,0,0,6,12,0,600,0,6,2,0,0,0,7,0,42,0,0,5,0,1,0,0,0,33,835,66,6,0,0,68,0,0,0,1,0,0,1,0,0,0,0,33,161,0,0,0,0,0,1,0,0,0,0,0,11,0,0,29688,66,692,0,35,0,0,0,0,0,7,0,0,0,0,0,8,25,7514,0,0,33,0,0,0,0,0,257,20,0,0,0,2,0,688,0,6,2,0,7377,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,1596,0,66,0,0,0,34,36,291,467,1589,0,0,0,0,1,0,3,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,86,34,292,11,0,0,280,0,383,0,0,0,159,8,0,0,0,0,0,0,0,0,0,671,1,0,0,0,9,0,0,0,0,32,149,35,0,0,11,0,0,0,0,0,4827,1,0,13,5,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,68,1,1,1,0,40,0,0,0,0,1,99,134,0,36,12,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3106,261,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,129,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1206,28,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,189,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,505,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,145,0,48,0,0,0,1,4,182,14,143,0,0,0,0,1,0,3,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,32,10,142,4,0,0,156,0,315,0,0,0,46,9,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,110,28,0,0,0,0,0,0,0,0,99,0,0,105,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,102,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,181,53,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,146,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,53,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,83,0,57,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,39,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,4,4 +34,0,0,0,0,16,13,0,50,5,12,0,2,0,9,0,18,0,7,2,0,0,0,1,0,5,3,0,0,0,1,0,0,0,5,0,16,15,0,0,114,0,0,0,0,0,0,0,0,0,0,0,5,55,0,0,0,0,0,1,0,0,0,0,0,14,0,0,633,16,139,0,6,0,0,0,0,0,16,0,0,0,0,0,2,2,154,0,0,5,0,0,3,43,0,352,15,0,0,0,6,0,254,0,6,0,0,206,0,0,0,0,5,25,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,132,0,103,0,0,0,5,10,36,325,152,0,0,0,0,0,0,0,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,31,108,1,0,0,96,0,157,0,0,0,51,4,0,0,0,0,0,0,0,0,0,111,0,0,0,0,3,0,0,0,0,5,103,110,0,0,30,0,0,0,0,0,646,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,21,5,0,9,0,0,0,0,0,0,221,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,182,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,123,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1200,28,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,195,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,474,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,147,0,50,0,0,0,1,4,182,14,145,0,0,0,0,1,0,3,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,32,10,137,4,0,0,161,0,325,0,0,0,51,10,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,110,33,0,0,0,0,0,0,0,0,101,0,0,116,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,122,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,190,53,4 +0,0,0,0,0,8,33,0,41,1,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,1,0,0,128,8,124,0,1,0,0,0,0,0,16,0,0,0,0,0,1,1,48,0,0,0,0,0,2,37,0,282,15,0,0,0,4,0,191,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,34,0,0,0,0,3,21,174,56,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,32,2,0,0,83,0,88,0,0,0,50,5,0,0,0,0,0,0,0,0,0,99,0,0,0,0,2,0,0,0,0,0,91,74,0,0,30,0,0,0,0,0,34,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,1,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,42,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,4 +0,0,0,6,0,25,5,0,19,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,0,0,1,0,25,6,0,0,27,0,2,0,1,0,0,2,0,0,0,0,1,115,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1184,25,48,0,1,0,0,0,0,0,10,0,0,0,0,0,7,15,306,0,0,1,0,0,0,0,0,74,5,3,0,0,2,0,28,0,0,0,0,425,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,97,0,35,0,0,0,0,3,177,9,98,0,0,0,0,1,0,3,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,125,6,0,0,155,0,340,0,0,0,55,14,0,0,0,0,0,0,0,0,0,53,1,0,0,0,8,0,0,0,0,0,108,42,0,0,0,0,0,0,0,0,88,0,0,420,3,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,3,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,149,0,2,9,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,308,4 +0,0,0,2,0,10,2,0,31,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,5,0,0,0,1,0,0,4,0,0,0,0,0,98,0,0,0,0,0,1,0,0,0,0,0,1,0,0,340,10,65,0,1,0,0,0,0,0,12,0,0,0,0,1,1,7,61,0,0,1,0,0,0,0,0,10,0,7,0,0,2,0,30,0,0,0,0,151,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,71,0,62,0,0,0,0,3,28,7,80,0,0,0,0,1,0,0,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,3,112,8,0,0,145,0,228,0,0,0,73,5,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,0,94,45,0,0,0,0,0,0,0,0,36,0,0,46,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,187,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,134,30,4 +0,0,0,0,0,9,40,0,48,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,9,130,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,44,0,331,15,0,0,0,4,0,226,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,33,0,0,0,0,3,25,203,56,0,0,0,0,0,0,0,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,46,1,0,0,89,0,60,0,0,0,52,3,0,0,0,0,0,0,0,0,0,113,0,0,0,0,2,0,0,0,0,0,92,88,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,104,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,4,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,409,12,25,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,130,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,30,0,27,0,0,0,2,4,27,94,44,0,0,0,0,1,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,48,3,0,0,47,0,145,0,0,0,5,8,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,11,4 +0,0,0,4,0,28,4,0,19,0,2,0,0,2,2,0,17,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,2,0,28,6,0,0,24,0,0,0,1,0,0,3,0,0,0,0,1,102,0,0,0,0,0,1,0,0,0,0,0,3,0,0,585,28,49,0,1,0,0,0,0,0,12,0,0,0,0,0,7,16,76,0,0,2,0,0,0,0,0,72,5,4,0,0,2,0,27,0,0,0,0,336,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,76,0,43,0,0,0,0,3,189,10,72,0,0,0,0,1,0,3,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,10,125,4,0,0,172,0,232,0,0,0,64,3,0,0,0,0,0,0,0,0,0,52,1,0,0,0,8,0,0,0,0,0,111,50,0,0,0,0,0,0,0,0,54,0,0,32,2,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,0,0,0,0,0,1,30,216,0,2,8,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,56,4 +149,0,0,29,10,84,187,22,420,28,72,0,0,2,62,0,375,0,20,16,0,6,2,6,0,30,22,0,15,0,11,2,0,9,33,0,94,301,0,0,677,0,0,0,1,0,0,2,0,0,0,0,35,350,0,0,0,0,0,1,0,3,0,12,0,80,0,0,3067,84,1515,0,47,0,0,0,0,0,70,12,0,0,0,0,13,22,392,0,22,33,9,0,10,193,0,1916,100,3,0,0,14,10,1280,0,44,0,0,2016,0,0,0,0,50,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,324,0,233,0,0,0,46,81,296,1623,354,0,0,0,0,1,0,5,0,0,0,0,0,0,2763,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,144,1422,48,0,0,1553,0,2899,0,6,0,563,53,0,0,0,0,0,0,0,0,0,1138,1,0,0,0,30,0,0,0,0,29,279,538,0,0,215,0,0,0,0,0,9925,0,0,175,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,26,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,67,0,0,0,0,81,127,309,0,71,9,0,0,0,0,0,709,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,38,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1596,1689,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,146,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,34,0,0,0,0,3,21,195,55,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,84,0,58,0,0,0,50,5,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,4,4 +0,0,0,0,0,12,2,0,4,0,1,0,0,0,2,0,9,0,7,1,0,0,0,1,0,2,0,0,0,0,1,0,0,0,2,0,12,6,0,0,9,0,0,0,0,0,0,0,0,0,0,0,2,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,224,12,21,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,2,0,0,0,0,0,7,0,0,0,0,2,0,9,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,22,0,19,0,0,0,2,5,27,248,30,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,13,54,0,0,0,46,0,115,0,0,0,10,2,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,2,94,3,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,14,2,0,3,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,93,4 +16,0,0,4,0,23,2,0,20,0,3,0,0,0,3,0,61,0,6,2,0,0,0,10,1,0,24,0,8,0,9,0,0,0,11,0,23,18,0,0,13,0,0,0,1,0,0,22,0,0,0,0,8,75,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2085,23,242,0,17,0,0,0,0,0,45,0,0,0,0,22,12,57,566,0,0,11,0,0,0,0,0,89,0,18,0,0,2,0,171,0,1,0,0,584,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,475,0,339,0,0,0,16,51,73,1225,600,0,0,0,0,1,0,0,0,0,0,0,0,0,2696,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,10,4,183,4,0,0,142,0,219,0,0,0,76,600,0,0,0,0,0,0,0,0,0,95,1,0,0,0,13,0,0,0,0,9,106,8,0,0,0,0,9,0,16,8,899,0,0,188,0,0,1,0,0,0,0,0,21,0,29,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,24,0,0,0,0,1,34,76,0,41,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1078,38,4 +22,0,3,4,68,56,52,127,486,13,45,0,0,0,62,0,462,0,10,56,0,35,15,2,0,0,0,0,19,0,26,0,0,68,39,0,116,102,0,0,89,0,0,0,1,0,0,0,0,0,0,0,24,220,0,0,0,0,0,1,8,0,0,0,0,34,7,0,1402,56,2624,0,45,0,0,0,0,0,16,94,0,0,0,0,2,2,166,0,127,39,68,0,2,0,0,327,0,0,0,0,6,68,250,0,6,0,0,1388,0,0,0,0,34,16,0,0,7,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,1,54,1,3,1,0,0,1,290,2,114,2,3,68,48,60,224,184,277,0,0,0,0,1,0,0,0,0,0,0,0,0,994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,59,2089,36,0,0,2146,4,1575,0,2,0,644,45,0,0,0,0,0,0,0,0,0,1117,0,0,0,0,108,0,0,0,0,26,178,42,0,3,0,0,0,0,0,0,3206,2,0,33,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,48,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,54,1,1,1,0,85,0,0,0,6,733,155,198,34,45,0,0,0,0,0,0,142,25,0,0,0,0,0,0,0,0,0,0,0,60,0,1,14,0,0,0,0,0,0,0,0,0,0,0,119,0,0,710,259,4 +3,0,0,5,6,13,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,19,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,95,0,0,0,0,0,1,0,0,0,0,0,25,0,0,466,13,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,45,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,292,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,59,0,46,0,0,0,2,10,44,224,97,0,0,0,0,1,0,1,0,0,0,0,0,0,432,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,116,36,384,11,0,0,400,0,615,0,1,0,103,6,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,109,74,0,0,57,0,0,0,0,0,539,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,6,0,0,0,0,49,22,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,10,0,0,218,36,4 +303,0,0,32,28,119,223,64,542,39,81,0,0,2,86,1,776,0,24,81,0,122,2,7,0,60,19,0,36,0,9,2,0,27,57,0,141,400,160,0,873,0,0,0,1,0,0,5,1,0,0,0,59,429,0,0,0,0,0,1,0,3,0,20,0,88,0,0,3416,119,3716,0,96,0,0,0,0,0,42,60,0,0,0,0,14,28,460,0,64,57,27,0,12,138,0,1687,90,10,0,0,18,28,1252,0,62,0,0,3734,0,0,0,0,85,38,0,0,40,0,0,1,0,0,0,24,0,0,0,0,0,0,0,28,0,0,0,18,0,0,0,2,0,5,0,75,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,3,0,0,0,0,0,1,13,0,0,0,0,0,0,0,18,14,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,105,10,10,10,0,0,0,443,0,323,0,0,0,68,95,427,1419,471,0,0,0,0,1,0,4,0,0,0,0,0,0,3705,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,890,412,2234,68,0,0,2240,0,4193,0,8,0,711,210,0,0,0,0,0,0,0,0,0,1735,1,0,2,0,212,0,0,0,0,59,357,359,0,0,192,0,0,0,0,0,11042,0,0,136,3,0,1,9,0,0,0,0,13,0,0,0,4,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,66,66,0,0,16,1,0,0,0,0,3,20,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,122,1,1,1,0,83,0,0,0,0,229,198,214,0,117,9,0,0,0,0,0,652,32,0,0,0,0,0,0,1,0,0,0,0,23,0,6,49,0,0,0,0,0,0,0,0,117,0,0,200,0,6,2073,2288,4 +110,0,0,24,4,63,81,7,125,3,16,0,0,2,19,0,187,0,12,6,0,1,1,5,0,24,9,0,8,0,5,0,0,4,23,0,67,165,0,0,201,0,0,0,1,0,0,7,0,0,0,0,20,266,0,0,0,0,0,1,0,1,0,0,0,16,0,0,4863,63,486,0,27,0,0,0,0,0,30,3,0,0,0,0,8,21,944,0,7,23,4,0,4,11,0,342,20,12,0,0,8,4,205,0,10,0,0,1706,0,0,0,0,43,30,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,35,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,714,0,246,0,0,0,23,60,242,261,681,0,0,0,0,1,0,4,0,0,0,0,0,0,1900,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,69,763,33,0,0,817,0,1502,0,3,0,288,31,0,0,0,0,0,0,2,0,0,442,1,0,0,0,13,0,0,0,0,20,193,94,0,0,34,0,0,0,0,0,1176,0,0,847,3,0,1,2,0,0,0,0,15,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,65,1,1,1,0,56,0,0,0,0,33,90,361,0,37,9,0,0,0,0,0,263,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,7,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1279,1538,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,0,0,0,34,0,66,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +120,0,0,29,11,91,157,27,272,30,38,0,0,2,66,2,744,0,20,45,0,98,2,6,0,33,22,0,17,0,8,2,0,10,38,0,101,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,357,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2612,91,1957,0,51,0,0,0,0,0,22,15,0,0,0,0,13,22,303,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,642,0,46,0,0,2302,0,0,0,0,47,17,1,0,34,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,8,0,0,0,0,0,1,0,20,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,60,10,10,10,0,0,0,322,0,288,0,0,0,42,74,390,594,307,0,0,0,0,1,0,6,0,0,0,0,0,0,2239,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1439,49,0,0,1501,0,2975,0,6,0,502,543,0,0,0,0,0,0,0,0,0,1301,1,0,0,0,151,0,0,0,0,31,284,149,0,0,155,0,0,0,0,0,10658,0,0,178,4,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,1,0,0,110,110,0,0,11,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,96,1,1,1,0,63,0,0,0,0,165,139,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,248,0,3,1746,1618,4 +14,0,0,7,2,23,28,5,41,4,5,0,0,0,12,0,94,0,9,4,0,1,0,2,0,0,15,0,2,0,7,0,0,2,11,0,25,51,0,0,38,0,0,0,0,0,0,0,0,0,0,0,6,49,0,0,0,0,0,1,0,0,0,14,0,8,0,0,303,23,211,0,9,0,0,0,0,0,0,3,0,0,0,0,2,2,32,0,5,11,2,0,1,0,0,52,0,0,0,0,4,2,139,0,3,0,0,496,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,8,0,7,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,14,0,0,0,0,0,0,57,0,44,0,0,0,12,32,52,53,76,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,15,268,11,0,0,269,0,420,0,1,0,83,38,0,0,0,0,0,0,0,0,0,189,0,0,0,0,7,0,0,0,0,2,120,3,0,0,0,0,0,0,0,0,334,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,22,1,1,1,0,36,0,0,0,0,17,36,12,0,24,0,0,0,0,0,0,71,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,441,48,4 +1,0,0,59,0,13,2,0,166,0,17,0,0,0,119,0,79,0,10,1,0,0,0,1,0,0,0,0,1,0,1,1,0,0,3,0,13,6,45,0,101,0,1,0,1,0,0,1,1,0,0,0,0,280,0,0,0,0,0,1,0,0,0,0,0,2,0,0,46973,13,300,0,3,0,0,0,0,0,13,0,0,0,0,0,1,6,18223,0,0,3,0,0,0,0,0,9,0,4,0,0,2,0,381,0,0,0,0,15421,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,1,0,9324,0,65,0,0,0,1,4,27,28112,9328,0,0,0,0,1,0,0,0,0,1,0,0,0,894,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,391,5,273,58,0,0,274,0,4933,0,0,0,107,9,0,0,0,0,0,0,0,0,0,393,1,0,2,0,2,0,0,0,0,0,199,11,0,0,0,0,0,0,0,0,9734,0,0,740,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,363,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,1,0,0,0,0,1,16,404,0,3,0,0,1,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10227,103,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,0,0,0,80,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,48,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,1,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,36,4 +6,0,0,9,0,60,181,0,121,6,15,0,0,2,21,2,66,0,63,4,0,0,0,7,0,9,23,0,9,0,9,4,0,0,23,0,60,206,0,0,282,0,0,0,1,0,0,7,1,0,0,0,13,212,0,0,0,0,0,1,0,0,0,5,0,16,0,0,8191,60,547,0,20,0,0,0,0,0,36,0,0,0,0,1,10,25,784,0,0,23,0,0,1,94,0,839,60,18,0,0,2,0,714,0,10,0,0,2882,0,0,0,0,3,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,728,0,171,0,0,0,24,50,253,1341,703,0,0,0,0,1,0,14,0,0,0,0,0,0,2965,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,25,466,9,0,0,621,0,1220,0,0,0,478,113,0,0,0,0,0,0,0,0,0,471,1,0,8,0,11,0,0,0,0,12,159,383,0,0,293,0,0,0,0,0,1442,0,0,1918,3,0,1,1,1,0,0,0,27,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,23,0,0,0,0,1,83,624,0,45,9,0,0,0,0,0,289,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1038,1483,4 +8,0,0,19,2,54,39,1,157,12,16,0,0,1,34,0,1072,0,9,3,0,0,0,1,0,7,3,0,9,0,1,0,0,2,32,1,55,74,119,0,160,0,0,0,1,0,0,3,1,0,0,0,9,187,0,0,0,0,0,1,0,0,0,12,0,23,0,0,685,54,1311,0,18,0,0,0,0,0,11,0,0,0,0,0,2,9,91,0,1,32,2,0,4,31,0,326,45,6,1,0,8,2,1252,0,14,0,0,784,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,2,0,0,0,8,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,173,0,0,0,0,0,0,118,0,93,0,0,0,11,18,171,236,139,0,0,0,0,1,0,0,0,0,0,78,1,30,514,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,148,51,413,28,0,0,428,0,2212,0,1,0,198,28,0,0,0,0,0,0,0,0,0,1328,1,0,3,0,4,0,0,0,0,6,159,76,0,0,108,0,0,0,0,0,2646,0,0,40,0,0,1,0,0,0,0,0,10,0,0,0,4,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,2,45,1,1,1,0,11,0,0,0,0,11,87,53,0,20,0,0,0,0,0,0,191,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,0,0,0,0,0,0,0,2,0,0,0,2,0,3,3308,180,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,0,0,0,97,8,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,1,28,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,26,0,0,0,0,3,21,4,42,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,43,0,26,0,0,0,9,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,4,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,46,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,70,0,46,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,32,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,4,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,146,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,53,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,83,0,57,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,39,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,4,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,83,0,56,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,4,4 +0,0,0,3,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,2,0,0,18,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,3,0,0,32,0,95,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,7,4 +33,0,3,18,5,96,65,2,761,22,57,1,0,0,45,0,5590,0,8,6,0,2,1,1,1,4,15,0,6,0,83,1,0,4,72,24,98,277,0,0,506,0,0,0,1,0,0,3,0,0,0,0,87,370,0,0,0,0,0,1,0,0,0,16,0,47,0,0,9737,96,6702,0,17,0,0,0,0,0,8,3,0,0,0,0,2,6,706,0,2,72,4,0,10,102,0,1024,150,3,0,0,9,5,6188,0,31,0,0,1976,0,0,0,0,14,6,0,0,2,0,0,1,0,0,0,4,0,0,0,0,0,0,0,2,0,0,0,88,0,0,0,0,0,4,0,21,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,2,0,0,1,0,1,3,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,3,0,0,0,0,33,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1197,0,0,0,0,0,0,742,0,120,0,0,0,92,117,125,913,831,0,0,0,0,1,0,0,0,0,0,10492,2,0,3078,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,379,13244,758,46,0,0,869,0,3468,0,2,0,554,622,0,0,0,0,0,0,0,0,0,6527,1,0,0,0,11,0,0,0,0,9,269,329,0,3,330,0,0,0,0,0,13347,0,0,3023,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,89,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,85,1,1,1,0,498,0,0,0,0,26,171,246,0,109,0,0,0,0,0,0,765,7,0,0,0,0,0,0,0,0,0,0,0,2,0,1,40,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1827,115,4 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 +207,0,0,27,18,77,193,30,356,30,48,0,0,2,73,1,651,0,22,34,0,19,3,5,0,48,15,0,31,0,6,2,0,17,34,0,95,540,0,0,371,0,0,0,1,0,0,0,0,0,0,0,47,348,0,0,0,0,0,1,0,1,0,2,0,50,0,0,2165,77,2640,0,75,0,0,0,0,0,4,33,0,0,0,0,16,21,144,0,30,34,17,0,8,48,0,906,80,0,0,0,16,18,737,0,46,0,0,3050,0,0,0,0,38,21,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,19,0,0,0,7,0,0,0,0,0,7,0,59,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,3,0,0,0,12,2,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,54,10,10,10,0,0,0,151,0,181,0,0,0,53,68,348,602,167,0,0,0,0,1,0,4,0,0,0,0,0,0,1928,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,772,183,1835,52,0,0,1738,0,2651,0,7,0,502,152,0,0,0,0,0,0,0,0,0,1346,0,0,0,0,61,0,0,0,0,51,278,107,0,0,187,0,0,0,1,0,14844,0,0,9,4,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,1,0,0,0,0,53,53,0,0,9,1,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,82,1,1,1,0,50,0,0,0,0,193,129,73,0,93,9,0,0,0,0,0,342,41,0,0,0,0,0,0,0,0,0,0,0,19,0,1,36,0,0,0,0,0,0,0,0,0,0,0,24,0,0,956,1125,4 +26,0,0,3,0,41,24,0,103,5,21,0,3,0,9,0,20,0,7,4,0,0,0,5,0,21,0,0,5,0,1,0,0,0,11,0,41,13,0,0,437,0,0,0,1,0,0,0,0,0,0,0,14,99,0,0,0,0,0,1,0,0,0,0,0,24,0,0,1104,41,213,0,17,0,0,0,0,0,15,0,0,0,0,0,8,13,222,0,0,11,0,0,3,88,0,770,15,0,0,0,6,0,498,0,6,0,0,1098,0,0,0,0,16,14,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,24,10,10,10,0,0,0,154,0,92,0,0,0,13,23,201,699,165,0,0,0,0,1,0,3,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,69,205,3,0,0,165,0,251,0,0,0,71,11,0,0,0,0,0,0,0,0,0,187,0,0,0,0,9,0,0,0,0,13,125,227,0,0,30,0,0,0,0,0,695,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,3,0,0,0,0,1,52,23,0,18,9,0,0,0,0,0,309,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,651,4 +132,0,0,22,15,128,204,33,409,39,68,1,1,2,84,1,1426,0,23,20,0,8,4,8,2,57,27,0,36,0,100,3,0,13,62,0,143,370,0,0,571,0,0,0,1,0,0,3,0,0,0,0,153,444,0,0,0,0,0,1,0,4,0,13,0,78,0,0,7343,128,2869,0,189,0,0,0,0,0,33,21,0,0,0,0,17,27,1526,0,33,62,13,0,12,114,0,1878,140,4,0,0,18,15,1907,0,63,1,0,4131,0,0,0,0,139,18,2,0,54,0,0,1,0,0,0,26,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,2,0,25,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,4,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,17,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,75,12,12,12,0,0,2,1041,2,343,0,0,2,255,286,440,1667,1056,0,0,0,0,1,0,6,0,0,0,0,0,0,2725,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,771,196,1771,43,0,0,1860,0,3234,0,7,0,646,180,0,0,0,0,0,0,0,0,0,2219,1,0,0,0,42,0,0,0,0,144,345,293,0,0,308,0,0,0,0,0,12040,0,0,372,3,0,1,9,0,0,0,0,6,0,0,0,1,0,0,0,0,0,39,0,0,1,0,0,0,0,0,0,0,0,74,74,0,0,15,1,0,0,0,0,3,112,1,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,138,1,1,1,0,258,0,0,0,0,264,205,226,1,214,9,0,0,0,0,0,551,13,0,0,0,0,0,0,0,0,0,0,0,16,0,1,49,0,0,0,0,0,0,0,0,10,0,0,30,0,3,1452,1877,4 +337,0,0,7,14,162,205,38,484,67,77,0,5,0,122,1,973,0,17,20,0,10,6,9,2,64,51,0,18,0,15,3,0,12,93,0,176,247,6432,0,997,0,0,0,1,0,0,5,1,0,0,0,73,475,0,0,0,0,0,1,0,3,0,15,0,101,0,0,38912,162,2915,0,88,0,0,0,0,0,138,27,0,0,0,0,14,25,7859,0,38,93,12,0,11,219,0,2160,135,13,0,0,18,14,2424,0,75,1,0,8049,0,0,0,0,108,81,2,0,31,0,0,1,0,0,0,21,0,0,0,0,0,0,0,15,0,0,0,33,0,0,0,0,0,2,0,24,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,84,8,0,0,0,0,0,2,0,0,0,0,0,7,22,0,0,0,3,0,0,0,0,8,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,116,12,12,12,0,0,2,4986,2,462,0,0,2,89,301,409,136840,5003,0,0,0,0,1,0,9,0,0,0,0,0,0,11111,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,464,234,1696,25,0,0,1793,0,2187,0,4,0,855,127798,0,0,0,0,0,0,0,0,0,1884,1,0,2,0,47,0,0,0,0,58,356,606,0,0,318,0,0,0,0,0,12713,0,0,8600,3,0,1,12,0,0,0,0,14,0,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,1,0,0,0,0,3,133,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,170,1,1,1,0,467,0,0,0,0,188,269,437,1,142,9,0,0,0,0,0,933,19,0,0,0,0,0,0,0,0,0,0,0,15,0,2,73,1,0,0,0,0,0,0,26,8,0,0,29,0,4,4388,2438,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,42,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,7,4 +8,0,0,1,0,49,14,0,32,0,5,0,2,0,3,0,62,0,6,3,0,0,0,5,0,18,27,0,14,0,10,0,0,0,23,0,49,9,0,0,75,0,0,0,1,0,0,0,0,0,0,0,20,79,0,0,0,0,0,1,0,0,0,0,0,2,0,0,874,49,168,0,32,0,0,0,0,0,3,0,0,0,0,0,7,12,131,0,0,23,0,0,2,15,0,262,15,0,0,0,4,0,292,0,0,0,0,855,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,9,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,20,10,10,10,0,0,0,90,0,61,0,0,0,28,55,202,179,98,0,0,0,0,1,0,3,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,23,30,255,1,0,0,204,0,253,0,0,0,125,5,0,0,0,0,0,0,0,0,0,124,0,0,0,0,8,0,0,0,0,20,172,33,0,0,30,0,0,0,0,0,221,0,0,8,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,21,0,0,0,0,1,72,39,0,60,9,0,0,0,0,0,107,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,420,4 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,42,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,7,4 +0,0,0,0,0,8,40,0,48,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,142,8,130,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,44,0,331,15,0,0,0,4,0,226,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,32,0,0,0,0,3,21,203,54,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,86,0,58,0,0,0,52,3,0,0,0,0,0,0,0,0,0,113,0,0,0,0,2,0,0,0,0,0,91,88,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,104,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,4,4 +0,0,0,0,0,8,4,0,12,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,1,0,0,54,8,36,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,10,0,0,0,0,0,2,8,0,79,15,0,0,0,4,0,46,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,16,0,0,0,0,3,21,58,27,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,39,0,27,0,0,0,5,3,0,0,0,0,0,0,0,0,0,41,0,0,0,0,2,0,0,0,0,0,91,16,0,0,30,0,0,0,0,0,23,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,4 +62,0,0,1,1,59,12,4,56,2,13,0,3,0,5,0,37,0,7,12,0,1,1,6,0,19,3,0,7,0,5,1,0,1,22,0,60,12,0,0,182,0,0,0,1,0,0,0,0,0,0,0,17,103,0,0,0,0,0,1,0,1,0,0,0,7,0,0,1079,59,263,0,22,0,0,0,0,0,10,3,0,0,0,0,15,20,142,0,4,22,1,0,4,31,0,395,30,0,0,0,6,1,235,0,2,0,0,7142,0,0,0,0,15,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,8,0,0,0,4,0,0,0,0,0,1,0,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,146,0,96,0,0,0,21,31,226,342,136,0,0,0,0,1,0,3,0,0,0,0,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,346,2,0,0,242,0,428,0,0,0,102,33,0,0,0,0,0,0,0,0,0,133,0,0,0,0,20,0,0,0,0,16,150,72,0,0,60,0,0,0,0,0,696,0,0,7,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,20,0,0,0,0,9,82,38,0,26,9,0,0,0,0,0,194,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,1,0,0,0,0,0,0,0,0,0,0,2,0,0,168,816,4 +0,0,0,5,0,35,25,0,48,3,24,0,0,7,4,0,764,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12519,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,692,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40412,35,930,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6832,0,0,1,0,0,0,0,0,356,25,1,0,0,2,0,852,0,0,72,0,4575,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1562,0,32,0,0,0,12,15,491,2058,1541,0,0,0,0,1,0,3,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,281,5,0,0,306,0,295,0,0,0,146,12,0,0,0,0,0,0,0,0,0,878,1,0,0,0,9,0,0,0,0,1,163,6,0,0,127,0,0,0,0,0,4698,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2483,22,4 +0,0,0,2,0,9,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,1,0,0,82,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,2,2,11,0,0,0,0,0,0,0,0,7,0,0,0,0,2,0,6,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,19,0,0,0,0,3,26,12,43,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,49,2,0,0,39,0,130,0,0,0,6,7,0,0,0,0,0,0,0,0,0,23,0,0,0,0,3,0,0,0,0,0,91,5,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,9,9,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,29,4 +0,0,0,6,0,8,2,0,32,0,4,0,0,0,4,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,9,0,0,0,1,0,0,2,0,0,0,0,0,102,0,0,0,0,0,1,0,0,0,0,0,1,0,0,279,8,65,0,1,0,0,0,0,0,8,0,0,0,0,2,1,5,46,0,0,0,0,0,0,0,0,8,0,4,0,0,2,0,37,0,0,0,0,105,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,51,0,36,0,0,0,0,3,22,6,61,0,0,0,0,1,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,103,10,0,0,125,0,226,0,0,0,55,2,0,0,0,0,0,0,0,0,0,64,1,0,0,0,2,0,0,0,0,0,94,30,0,0,0,0,0,0,0,0,38,0,0,47,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,188,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,86,49,4 +94,0,0,0,12,82,18,48,143,3,23,0,2,0,5,0,118,0,7,33,0,12,12,3,0,5,3,0,17,0,56,1,0,12,50,0,94,12,0,0,164,0,0,0,0,0,0,0,0,0,0,0,59,121,0,0,0,0,0,1,0,0,0,0,0,3,0,0,920,82,1337,0,78,0,0,0,0,0,3,36,0,0,0,0,11,11,46,0,48,50,12,0,2,28,0,518,45,0,0,0,6,12,307,0,2,0,0,2393,0,0,0,0,21,17,0,0,3,0,0,0,0,0,0,19,0,0,0,0,0,0,0,17,0,0,0,17,0,0,0,0,0,1,0,23,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,0,0,0,0,0,0,84,0,111,0,0,0,115,120,147,416,119,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,713,14,0,0,677,0,592,0,0,0,268,85,0,0,0,0,0,0,0,0,0,316,0,0,0,0,60,0,0,0,0,58,173,55,0,0,99,0,0,0,0,0,251,0,0,57,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,81,1,1,1,0,134,0,0,0,104,97,144,50,0,82,0,0,0,0,0,0,192,16,0,0,0,0,0,0,0,0,0,0,0,12,0,1,3,0,0,0,0,0,0,0,0,0,0,0,20,0,0,262,870,4 +0,0,0,5,0,36,24,0,49,3,24,0,0,6,4,0,820,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12406,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,701,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39897,36,984,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6613,0,0,1,0,0,0,0,0,359,25,2,0,0,2,0,908,0,0,87,0,4676,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1358,0,32,0,0,0,12,15,494,2065,1336,0,0,0,0,1,0,3,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,282,5,0,0,309,0,302,0,0,0,147,12,0,0,0,0,0,0,0,0,0,933,1,0,0,0,9,0,0,0,0,1,165,7,0,0,130,0,0,0,0,0,4871,1,0,1005,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2513,24,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,728,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,724,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,2,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,1,108,4 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 +119,0,0,29,11,89,157,27,273,30,38,0,0,2,66,3,908,0,20,45,0,98,2,6,0,33,22,0,17,0,7,3,0,10,38,0,99,301,160,0,385,0,0,0,1,0,0,3,0,0,0,0,34,337,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2592,89,2122,0,52,0,0,0,0,0,22,15,0,0,0,0,13,22,299,0,27,38,10,0,8,37,0,729,70,3,0,0,14,11,693,0,46,0,0,2598,0,0,0,0,45,15,1,0,33,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,32,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,62,10,10,10,0,0,0,328,0,333,0,0,0,42,73,408,595,297,0,0,0,0,1,0,6,0,0,0,0,0,0,2165,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1438,49,0,0,1497,0,2945,0,6,0,503,616,0,0,0,0,0,0,0,0,0,1467,1,0,0,0,151,0,0,0,0,34,283,149,0,0,155,0,0,0,0,0,10866,0,0,174,5,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,2,0,0,160,160,0,0,10,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,61,0,0,0,0,191,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,177,0,2,1645,1619,4 +2,0,0,5,0,25,7,0,33,1,10,0,0,0,8,1,16,0,7,1,0,0,0,1,0,0,0,0,3,0,7,0,0,0,14,0,25,6,0,0,80,0,0,0,1,0,0,2,0,0,0,0,6,85,0,0,0,0,0,1,0,0,0,0,0,12,0,0,381,25,82,0,10,0,0,0,0,0,7,0,0,0,0,0,1,4,55,0,0,14,0,0,1,19,0,173,15,2,0,0,2,0,131,0,6,0,0,351,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,72,0,0,0,12,10,44,140,73,0,0,0,0,1,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,11,140,5,0,0,160,0,201,0,0,0,91,8,0,0,0,0,0,0,0,0,0,82,1,0,0,0,2,0,0,0,0,3,111,77,0,0,29,0,0,0,0,0,63,0,0,30,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,15,0,0,0,8,1,39,125,0,10,0,0,0,0,0,0,105,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,134,19,4 +20,0,0,0,0,23,4,0,9,3,1,0,2,0,5,0,20,0,6,5,0,0,0,1,0,2,3,0,3,0,2,1,0,0,11,0,23,12,0,0,66,0,0,0,0,0,0,0,0,0,0,0,4,36,0,0,0,0,0,1,0,0,0,0,0,2,0,0,213,23,46,0,8,0,0,0,0,0,0,0,0,0,0,0,5,5,23,0,0,11,0,0,2,0,0,32,0,0,0,0,6,0,46,0,2,0,0,335,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,48,0,69,0,0,0,6,12,44,49,59,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,108,2,0,0,93,0,222,0,0,0,45,13,0,0,0,0,0,0,0,0,0,47,0,0,0,0,6,0,0,0,0,5,114,2,0,0,0,0,0,0,0,0,49,0,0,3,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,10,0,0,0,0,1,34,11,0,11,0,0,0,0,0,0,77,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,167,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,142,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,48,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,70,0,46,0,0,0,36,4,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,34,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,4,4 +0,0,0,5,0,35,24,0,46,3,23,0,0,7,4,0,729,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12433,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,714,0,0,0,0,0,1,0,0,0,0,0,2,0,0,38728,35,892,0,24,0,0,0,0,0,45,0,0,0,0,0,8,92,6302,0,0,1,0,0,0,0,0,364,25,2,0,0,2,0,817,0,0,93,0,4543,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1241,0,32,0,0,0,13,16,486,2066,1220,0,0,0,0,1,0,3,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,22,279,5,0,0,307,0,298,0,0,0,147,10,0,0,0,0,0,0,0,0,0,839,1,0,0,0,9,0,0,0,0,1,164,7,0,0,133,0,0,0,0,0,4589,1,0,1020,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,62,0,0,0,0,1,36,212,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2421,27,4 +96,0,0,0,12,81,18,48,145,3,24,0,2,0,5,0,118,0,7,34,0,12,12,2,0,5,2,0,19,0,62,1,0,12,50,0,93,12,0,0,170,0,0,0,0,0,0,0,0,0,0,0,65,117,0,0,0,0,0,1,0,0,0,0,0,3,0,0,946,81,1342,0,86,0,0,0,0,0,3,36,0,0,0,0,11,11,47,0,48,50,12,0,2,30,0,559,50,0,0,0,6,12,319,0,2,0,0,2396,0,0,0,0,25,17,0,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,20,0,0,0,18,0,0,0,0,0,1,0,23,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,0,0,0,0,0,0,83,0,109,0,0,0,127,130,143,440,118,0,0,0,0,0,0,0,0,0,0,0,0,0,748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,702,14,0,0,674,0,594,0,0,0,269,65,0,0,0,0,0,0,0,0,0,319,0,0,0,0,60,0,0,0,0,64,172,58,0,0,110,0,0,0,0,0,258,0,0,61,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,80,1,1,1,0,147,0,0,0,112,97,143,50,0,89,0,0,0,0,0,0,197,16,0,0,0,0,0,0,0,0,0,0,0,12,0,1,3,0,0,0,0,0,0,0,0,0,0,0,20,0,0,245,886,4 +56,0,0,0,5,75,17,20,106,6,18,0,2,0,8,0,84,0,7,18,0,5,5,6,0,16,9,0,24,0,17,1,0,5,29,0,80,23,0,0,146,0,0,0,1,0,0,1,0,0,0,0,26,150,0,0,0,0,0,1,0,0,0,0,0,6,0,0,3819,75,659,0,47,0,0,0,0,0,10,15,0,0,0,0,13,20,691,0,20,29,5,0,1,37,0,491,55,1,0,0,4,5,334,0,5,0,0,2061,0,0,0,0,15,4,2,0,3,0,0,1,0,0,0,13,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,22,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,34,10,10,10,0,0,0,418,0,112,0,0,0,42,51,272,307,425,0,0,0,0,1,0,4,0,0,0,0,0,0,594,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,23,36,507,5,0,0,470,0,701,0,0,0,186,64,0,0,0,0,0,0,0,0,0,242,1,0,0,0,34,0,0,0,0,22,166,109,0,0,137,0,0,0,0,0,240,0,0,25,3,0,1,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,3,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,82,1,1,1,0,61,0,0,0,24,41,109,94,0,58,9,0,0,0,0,0,125,10,0,0,0,0,0,0,0,0,0,0,0,6,0,1,6,0,0,0,0,0,0,0,0,0,0,0,6,0,1,195,792,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1,0,0,0,0,0,0,0,0,99,8,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,1,30,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,28,0,0,0,0,3,21,4,42,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,43,0,28,0,0,0,9,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,4,4 +0,0,0,3,0,8,2,0,4,0,2,0,0,0,2,0,10,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,2,0,0,18,8,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,21,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,58,0,0,0,3,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,28,4 +0,0,0,7,0,10,2,0,17,0,2,0,0,0,3,0,18,0,6,1,0,0,0,1,1,0,0,0,3,0,2,0,0,0,2,0,10,6,1,0,6,0,0,0,1,0,0,1,0,0,0,0,2,181,0,0,0,0,0,1,0,0,0,0,0,2,0,0,15869,10,50,0,5,0,0,0,0,0,6,0,0,0,0,0,1,3,1257,0,0,2,0,0,0,0,0,15,0,1,0,0,2,0,22,0,0,0,0,1274,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1250,0,39,0,0,0,4,7,24,19,1254,0,0,0,0,1,0,0,0,0,0,0,0,0,3850,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,230,10,0,0,103,0,317,0,0,0,37,11,0,0,0,0,0,0,0,0,0,48,1,0,0,0,3,0,0,0,0,1,97,18,0,0,0,0,0,0,0,0,1187,0,0,4667,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,12,55,0,5,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1237,59,4 +83,0,0,1,1,52,25,4,117,5,22,0,4,0,9,0,38,0,7,6,0,1,1,5,0,31,9,0,5,0,3,0,0,1,17,0,53,15,0,0,474,0,0,0,1,0,0,0,0,0,0,0,26,111,0,0,0,0,0,1,0,1,0,0,0,24,0,0,1371,52,365,0,29,0,0,0,0,0,16,3,0,0,0,0,8,13,269,0,4,17,1,0,4,88,0,804,15,0,0,0,8,1,545,0,6,0,0,2377,0,0,0,0,36,21,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,208,0,108,0,0,0,28,61,217,791,206,0,0,0,0,1,0,4,0,0,0,0,0,0,805,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,90,259,3,0,0,239,0,300,0,0,0,102,21,0,0,0,0,0,0,0,0,0,222,0,0,0,0,13,0,0,0,0,25,137,230,0,0,30,0,0,0,0,0,739,0,0,21,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,35,0,0,0,0,9,70,41,0,39,9,0,0,0,0,0,326,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,270,1450,4 +57,0,0,0,5,75,17,20,106,6,18,0,2,0,8,0,84,0,7,18,0,5,5,6,0,16,9,0,25,0,16,2,0,5,29,0,80,23,0,0,146,0,0,0,1,0,0,1,0,0,0,0,26,149,0,0,0,0,0,1,0,0,0,0,0,6,0,0,3769,75,641,0,48,0,0,0,0,0,10,15,0,0,0,0,13,20,686,0,20,29,5,0,1,37,0,492,55,1,0,0,4,5,335,0,5,0,0,1949,0,0,0,0,15,4,2,0,3,0,0,1,0,0,0,11,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,22,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,34,10,10,10,0,0,0,414,0,114,0,0,0,42,50,272,307,421,0,0,0,0,1,0,4,0,0,0,0,0,0,597,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,23,36,492,5,0,0,470,0,652,0,0,0,186,61,0,0,0,0,0,0,0,0,0,242,1,0,0,0,34,0,0,0,0,22,166,109,0,0,137,0,0,0,0,0,243,0,0,26,3,0,1,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,3,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,82,1,1,1,0,60,0,0,0,24,41,109,94,0,59,9,0,0,0,0,0,125,10,0,0,0,0,0,0,0,0,0,0,0,6,0,1,6,0,0,0,0,0,0,0,0,0,0,0,6,0,2,201,796,4 +183,0,0,0,0,75,41,0,191,13,40,0,2,0,16,35,33,0,7,1,0,0,0,2,0,8,6,0,6,0,4,1,0,0,54,0,75,15,3880,0,526,0,0,0,0,0,0,0,0,0,0,0,11,230,0,0,0,0,0,1,0,0,0,0,0,47,0,0,3635,75,612,0,19,0,0,0,0,0,118,0,0,0,0,0,2,2,599,0,0,54,0,0,3,178,0,1379,15,0,0,0,6,0,1060,0,12,0,0,4814,0,0,0,0,14,76,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,7,0,0,0,0,0,1,0,49,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,454,0,342,0,0,0,15,25,121,133418,481,0,0,0,0,0,0,0,0,0,0,0,0,0,2307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,122,319,2,0,0,411,0,382,0,0,0,334,127486,0,0,0,0,0,0,0,0,0,365,0,0,0,0,3,0,0,0,0,11,166,461,0,0,30,0,0,0,1,0,994,0,0,5,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,14,0,0,0,0,1,129,54,0,25,0,0,0,0,0,0,639,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1173,514,4 +105,0,0,1,0,78,4,0,46,13,5,0,1,0,16,0,87,0,7,2,0,0,0,2,0,1,33,0,11,0,14,1,0,0,63,0,78,72,0,0,188,0,0,0,1,0,0,17,0,0,0,0,15,136,0,0,0,0,0,1,0,0,0,0,0,16,0,0,4485,78,439,0,27,0,0,0,0,0,120,0,0,0,0,7,3,34,697,0,0,63,0,0,2,7,0,163,15,18,1,0,4,0,283,0,14,0,0,1670,0,0,0,0,0,80,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,7,0,0,0,13,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,26,0,0,0,0,0,0,612,0,491,0,0,0,29,70,128,337,631,0,0,0,0,1,0,0,0,0,0,0,0,0,2508,0,0,0,0,0,0,0,0,0,0,0,0,17,0,6,0,0,0,0,0,0,16,227,416,1,0,0,514,0,535,0,0,0,428,34,0,0,0,0,0,0,0,0,0,166,1,0,0,0,4,0,0,0,0,15,184,116,0,0,24,0,0,0,0,0,920,0,0,143,0,0,1,3,0,0,0,0,22,0,0,0,13,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,95,1,1,1,0,59,0,0,0,0,1,141,444,0,60,0,0,0,0,0,0,462,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1274,1332,4 +20,0,0,0,0,25,4,0,8,3,1,0,2,0,5,0,20,0,7,5,0,0,0,1,0,7,3,0,3,0,2,1,0,0,12,0,25,12,0,0,66,0,0,0,0,0,0,0,0,0,0,0,9,33,0,0,0,0,0,1,0,0,0,0,0,2,0,0,239,25,50,0,13,0,0,0,0,0,0,0,0,0,0,0,5,5,25,0,0,12,0,0,2,0,0,42,0,0,0,0,6,0,50,0,2,0,0,460,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,50,0,71,0,0,0,11,16,48,69,61,0,0,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,115,2,0,0,99,0,222,0,0,0,48,14,0,0,0,0,0,0,0,0,0,47,0,0,0,0,6,0,0,0,0,9,116,2,0,0,0,0,0,0,0,0,49,0,0,3,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,10,0,0,0,0,1,37,12,0,16,0,0,0,0,0,0,77,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,255,4 +199,0,0,26,18,80,193,30,351,32,48,0,0,2,76,1,651,0,22,32,0,19,3,6,0,48,16,0,32,0,5,2,0,17,37,0,98,540,0,0,371,0,0,0,1,0,0,0,0,0,0,0,47,339,0,0,0,0,0,1,0,1,0,2,0,52,0,0,2025,80,2599,0,77,0,0,0,0,0,4,33,0,0,0,0,15,20,148,0,30,37,17,0,8,48,0,903,80,0,0,0,16,18,744,0,49,0,0,2877,0,0,0,0,40,19,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,15,0,0,0,5,0,0,0,0,0,7,0,58,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,1,0,0,0,0,0,0,13,0,0,0,3,0,0,0,12,2,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,54,10,10,10,0,0,0,148,0,188,0,0,0,52,68,350,605,164,0,0,0,0,1,0,4,0,0,0,0,0,0,1924,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,772,176,1790,51,0,0,1748,0,2653,0,7,0,512,105,0,0,0,0,0,0,0,0,0,1344,0,0,0,0,60,0,0,0,0,51,282,107,0,0,187,0,0,0,1,0,14512,0,0,7,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,1,0,0,0,0,53,53,0,0,15,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,85,1,1,1,0,49,0,0,0,0,191,135,76,0,94,9,0,0,0,0,0,344,41,0,0,0,0,0,0,0,0,0,0,0,19,0,1,38,0,0,0,0,0,0,0,0,0,0,0,23,0,0,971,1122,4 +0,0,0,0,0,1,0,1,20,0,1,0,0,0,1,0,718,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,714,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,2,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,9,0,0,1,101,4 +1,0,0,5,0,34,6,0,35,0,5,0,0,6,4,0,570,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,1,762,34,6,0,0,41,0,1,0,1,0,0,2,0,0,0,0,1,171,0,0,0,0,0,1,0,0,0,0,0,2,0,0,17477,34,638,0,3,0,0,0,0,0,18,0,0,0,0,1,8,24,4212,0,0,1,0,0,0,0,0,190,20,5,0,0,2,0,610,0,0,1,0,2446,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,611,0,58,0,0,0,1,4,254,1129,594,0,0,0,0,1,0,3,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,16,167,5,0,0,193,0,211,0,0,0,51,2,0,0,0,0,0,0,0,0,0,632,1,0,0,0,9,0,0,0,0,0,117,15,0,0,6,0,0,0,0,0,3298,1,0,802,6,0,1,1,1,0,0,0,6,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,35,83,0,4,12,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1869,28,4 +0,0,0,3,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,2,0,0,18,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,3,0,0,32,0,95,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,7,4 +0,0,0,5,0,37,25,0,48,3,24,0,0,7,4,0,804,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12532,37,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,726,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40183,37,970,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6517,0,0,1,0,0,0,0,0,364,25,1,0,0,2,0,892,0,0,88,0,4782,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1409,0,34,0,0,0,12,15,503,2086,1386,0,0,0,0,1,0,3,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,276,5,0,0,309,0,296,0,0,0,144,15,0,0,0,0,0,0,0,0,0,918,1,0,0,0,9,0,0,0,0,1,164,6,0,0,135,0,0,0,0,0,4782,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,58,0,0,0,0,1,38,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2482,22,4 +232,0,0,10,14,164,204,38,483,61,78,0,5,0,105,1,978,0,17,20,0,10,6,9,2,64,54,0,22,0,14,4,0,12,96,0,178,62683,6843,0,984,0,0,0,1,0,0,5,1,0,0,0,73,494,0,0,0,0,0,1,0,2,0,26,0,99,0,0,39076,164,2920,0,92,0,0,0,0,0,138,27,0,0,0,0,14,25,8053,0,38,96,12,0,11,219,0,2164,135,11,0,0,18,14,2416,0,73,1,0,6797,0,0,0,0,57,67,2,0,31,0,0,1,0,0,0,22,0,0,0,0,0,0,0,10,0,0,0,36,0,0,0,0,0,2,0,28,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,40,8,0,0,0,0,0,2,0,0,0,0,0,7,21,0,0,0,3,0,0,0,0,10,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,129,12,12,12,0,0,2,5025,2,489,0,0,2,89,338,405,137815,5069,0,0,0,0,1,0,5,0,0,0,0,0,0,10583,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,464,212,1694,27,0,0,1786,0,2168,0,4,0,851,128620,0,0,0,0,0,0,0,0,0,1871,1,0,2,0,47,0,0,0,0,58,343,608,0,0,318,0,0,0,0,0,75316,0,0,8262,3,0,1,12,0,0,0,0,14,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,20,1,0,0,0,0,3,126,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,172,1,1,1,0,543,0,0,0,0,188,274,439,1,149,9,0,0,0,0,0,885,19,0,0,0,0,0,0,0,0,0,0,0,15,0,2,67,1,0,0,0,0,0,0,0,8,0,0,28,0,4,4603,2028,4 +0,0,0,0,0,8,39,0,47,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,135,8,128,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,43,0,324,15,0,0,0,4,0,221,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,31,0,0,0,0,3,21,199,55,0,0,0,0,0,0,0,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,41,1,0,0,85,0,58,0,0,0,51,2,0,0,0,0,0,0,0,0,0,111,0,0,0,0,2,0,0,0,0,0,91,86,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,102,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,4,4 +5,0,0,0,0,12,3,0,5,0,1,0,1,0,2,0,12,0,6,2,0,0,0,0,0,2,0,0,2,0,1,0,0,0,4,0,12,12,0,0,25,0,0,0,0,0,0,0,0,0,0,0,2,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,59,12,26,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,4,0,0,1,0,0,13,0,0,0,0,4,0,14,0,0,0,0,110,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,20,0,19,0,0,0,2,5,27,13,23,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,21,63,0,0,0,61,0,117,0,0,0,27,3,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,3,104,4,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,2,0,0,0,0,1,16,4,0,5,0,0,0,0,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,4 +0,0,0,5,0,36,25,0,48,3,24,0,0,7,4,0,784,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12302,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,731,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39457,36,951,0,24,0,0,0,0,0,46,0,0,0,0,0,8,94,6347,0,0,1,0,0,0,0,0,367,25,1,0,0,2,0,872,0,0,90,0,4801,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1370,0,32,0,0,0,13,16,497,2089,1348,0,0,0,0,1,0,3,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,283,5,0,0,308,0,297,0,0,0,145,14,0,0,0,0,0,0,0,0,0,898,1,0,0,0,9,0,0,0,0,1,164,6,0,0,136,0,0,0,0,0,4678,1,0,989,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,208,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2464,22,4 +0,0,0,0,0,9,40,0,48,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,142,9,130,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,44,0,331,15,0,0,0,4,0,226,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,34,0,0,0,0,3,25,203,55,0,0,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,47,1,0,0,89,0,59,0,0,0,52,3,0,0,0,0,0,0,0,0,0,113,0,0,0,0,2,0,0,0,0,0,92,88,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,104,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,4,4 +119,0,0,29,11,91,157,27,271,30,38,0,0,2,66,1,569,0,20,46,0,97,2,6,0,33,22,0,17,0,7,3,0,10,38,0,101,301,160,0,393,0,0,0,1,0,0,3,0,0,0,0,34,321,0,0,0,0,0,1,0,3,0,11,0,52,0,0,2465,91,1776,0,50,0,0,0,0,0,21,15,0,0,0,0,13,22,285,0,27,38,10,0,8,37,0,729,70,4,0,0,14,11,587,0,46,0,0,2225,0,0,0,0,47,15,1,0,35,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,291,0,234,0,0,0,42,73,346,590,300,0,0,0,0,1,0,6,0,0,0,0,0,0,2180,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1441,49,0,0,1503,0,2900,0,6,0,504,352,0,0,0,0,0,0,0,0,0,1124,1,0,0,0,151,0,0,0,0,30,286,149,0,0,155,0,0,0,0,0,10424,0,0,163,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,56,56,0,0,11,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,96,1,1,1,0,61,0,0,0,0,121,139,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,196,0,3,1660,1616,4 +20,0,0,0,0,36,24,0,36,2,5,0,2,0,4,0,20,0,6,6,0,0,0,6,0,10,3,0,6,0,2,1,0,0,6,0,36,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,73,0,0,0,0,0,1,0,0,0,0,0,3,0,0,725,36,116,0,9,0,0,0,0,0,13,0,0,0,0,0,11,16,140,0,0,6,0,0,2,25,0,299,15,0,0,0,4,0,171,0,2,0,0,1010,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,96,0,51,0,0,0,6,12,201,169,100,0,0,0,0,1,0,3,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,139,0,0,0,152,0,248,0,0,0,61,32,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,126,53,0,0,30,0,0,0,0,0,104,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,11,0,0,0,0,1,42,22,0,13,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,35,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,0,0,0,34,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +21,0,0,2,1,43,12,4,53,0,12,0,4,0,3,0,37,0,6,6,0,1,1,5,0,16,9,0,4,0,2,0,0,1,12,0,44,15,0,0,135,0,0,0,1,0,0,0,0,0,0,0,10,98,0,0,0,0,0,1,0,1,0,0,0,5,0,0,1330,43,227,0,12,0,0,0,0,0,4,3,0,0,0,0,8,13,122,0,4,12,1,0,5,26,0,321,30,0,0,0,8,1,204,0,0,0,0,3338,0,0,0,0,8,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,113,0,55,0,0,0,10,27,203,1192,90,0,0,0,0,1,0,3,0,0,0,0,0,0,264,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,54,196,3,0,0,183,0,333,0,0,0,58,9,0,0,0,0,0,0,0,0,0,127,0,0,0,0,13,0,0,0,0,10,127,59,0,0,68,0,0,0,0,0,700,0,0,3,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,6,0,0,0,0,9,56,28,0,22,9,0,0,0,0,0,134,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,108,603,4 +0,0,0,6,0,10,2,0,18,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,76,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1275,10,43,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,295,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,17,0,0,0,0,102,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,174,0,38,0,0,0,0,3,26,6,184,0,0,0,0,1,0,0,0,0,0,0,0,0,449,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,90,8,0,0,118,0,236,0,0,0,44,6,0,0,0,0,0,0,4,0,0,46,1,0,0,0,2,0,0,0,0,0,96,32,0,0,0,0,0,0,0,0,102,0,0,276,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,180,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,211,21,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,70,0,48,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,4,4 +115,0,0,29,11,89,157,27,271,27,38,0,0,2,63,1,556,0,20,45,0,98,2,6,0,41,22,0,17,0,7,3,0,10,38,0,99,301,160,0,381,0,0,0,1,0,0,3,0,0,0,0,42,359,0,0,0,0,0,1,0,3,0,12,0,49,0,0,2548,89,1768,0,57,0,0,0,0,0,21,15,0,0,0,0,13,22,285,0,27,38,10,0,8,37,0,746,70,4,0,0,14,11,585,0,43,0,0,2124,0,0,0,0,44,16,1,0,30,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,29,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,287,0,233,0,0,0,50,85,331,603,301,0,0,0,0,1,0,6,0,0,0,0,0,0,2135,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,335,1429,49,0,0,1495,0,2938,0,6,0,503,300,0,0,0,0,0,0,0,0,0,1108,1,0,0,0,151,0,0,0,0,37,283,149,0,0,155,0,0,0,0,0,10412,0,0,160,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,10,1,0,0,0,0,3,17,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,50,0,0,0,0,113,137,326,0,81,9,0,0,0,0,0,313,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,33,0,0,0,0,0,0,0,0,117,0,0,206,0,3,1638,1772,4 +118,0,0,29,11,90,157,27,271,30,38,0,0,2,66,1,565,0,20,44,0,99,2,6,0,33,22,0,17,0,8,2,0,10,38,0,100,301,168,0,387,0,0,0,1,0,0,3,0,0,0,0,34,339,0,0,0,0,0,1,0,2,0,12,0,52,0,0,2504,90,1775,0,50,0,0,0,0,0,21,15,0,0,0,0,13,22,288,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,586,0,46,0,0,2188,0,0,0,0,46,16,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,28,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,293,0,234,0,0,0,42,74,344,592,303,0,0,0,0,1,0,6,0,0,0,0,0,0,2283,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1440,49,0,0,1496,0,2982,0,6,0,501,272,0,0,0,0,0,0,0,0,0,1120,1,0,0,0,151,0,0,0,0,31,285,146,0,0,155,0,0,0,0,0,10432,0,0,165,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,7,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,63,0,0,0,0,121,138,314,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,209,0,4,1786,1614,4 +5,0,19,13,8,44,68,23,397,8,53,0,1,1,29,0,4382,0,14,21,0,5,1,1,1,2,0,0,12,0,15,0,0,6,20,27,52,402,0,0,296,0,0,0,1,0,0,1,1,0,0,0,15,167,0,0,0,0,0,1,0,0,0,0,0,34,0,0,1661,44,5207,0,28,0,0,0,0,0,13,15,0,0,0,0,2,6,72,0,23,20,6,0,10,98,0,1056,140,4,0,0,7,8,4868,0,14,0,0,3195,0,0,0,0,17,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,5,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,410,2,2,2,0,0,2,70,8,77,0,0,0,28,33,109,1156,93,0,0,0,0,1,0,0,0,0,0,25,1,0,1183,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1014,156,757,48,0,0,733,0,1175,0,1,0,268,546,0,0,0,0,0,0,0,0,0,4945,1,0,2,0,29,0,0,0,0,15,182,247,0,20,315,0,0,0,0,0,5353,0,0,109,0,0,1,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,39,1,1,1,0,41,0,0,0,14,100,72,230,0,29,0,0,0,0,0,0,280,7,0,0,0,0,0,0,0,0,0,0,0,8,0,1,25,0,0,0,0,0,0,0,3,0,0,0,30,0,1,382,126,4 +0,0,0,5,0,35,24,0,47,3,23,0,0,7,4,0,729,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12412,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,712,0,0,0,0,0,1,0,0,0,0,0,2,0,0,42756,35,892,0,24,0,0,0,0,0,45,0,0,0,0,0,8,92,7103,0,0,1,0,0,0,0,0,362,25,2,0,0,2,0,817,0,0,89,0,4448,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1861,0,32,0,0,0,13,16,486,2062,1840,0,0,0,0,1,0,3,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,279,5,0,0,303,0,307,0,0,0,143,16,0,0,0,0,0,0,0,0,0,840,1,0,0,0,9,0,0,0,0,1,160,7,0,0,131,0,0,0,0,0,4669,1,0,1024,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,62,0,0,0,0,1,36,212,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2479,27,4 +6,0,0,4,0,35,7,0,33,0,2,0,0,2,5,0,451,0,6,3,0,0,0,6,0,10,9,0,5,0,1,3,0,0,5,898,35,6,0,0,27,0,0,0,1,0,0,4,0,0,0,0,4,190,0,0,0,0,0,1,0,0,0,0,0,6,0,0,20969,35,532,0,6,0,0,0,0,0,22,0,0,0,0,0,8,22,3543,0,0,5,0,0,0,0,0,92,5,7,0,0,2,0,508,0,0,0,0,1570,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,2990,0,83,0,0,0,6,15,227,319,2971,0,0,0,0,1,0,4,0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,2,0,0,4,1,0,0,0,0,0,1,0,32,10,276,4,0,0,261,0,285,0,0,0,123,22,0,0,0,0,0,0,0,0,0,506,1,0,0,0,9,0,0,0,0,1,119,66,0,0,0,0,0,0,0,0,1290,1,0,158,5,0,1,1,0,0,0,0,5,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,40,1217,0,16,12,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,518,74,4 +77,0,0,1,1,52,25,4,115,5,22,0,4,0,9,0,30,0,7,6,0,1,1,5,0,22,0,0,5,0,3,0,0,1,17,0,53,15,0,0,476,0,0,0,1,0,0,0,0,0,0,0,17,108,0,0,0,0,0,1,0,1,0,0,0,24,0,0,1313,52,339,0,20,0,0,0,0,0,16,3,0,0,0,0,8,13,267,0,4,17,1,0,4,88,0,784,15,0,0,0,8,1,506,0,6,0,0,1030,0,0,0,0,31,21,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,205,0,108,0,0,0,18,39,217,767,203,0,0,0,0,1,0,4,0,0,0,0,0,0,755,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,90,281,3,0,0,239,0,320,0,0,0,102,22,0,0,0,0,0,0,0,0,0,212,0,0,0,0,13,0,0,0,0,16,137,230,0,0,30,0,0,0,0,0,719,0,0,21,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,36,0,0,0,0,9,70,41,0,21,9,0,0,0,0,0,328,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,252,1142,4 +69,0,0,0,6,87,17,24,116,5,15,0,3,0,7,0,103,0,7,20,0,6,6,6,0,24,18,0,25,0,16,2,0,6,38,0,93,12,0,0,186,0,0,0,1,0,0,1,0,0,0,0,34,153,0,0,0,0,0,1,0,1,0,0,0,5,0,0,3988,87,1021,0,56,0,0,0,0,0,11,18,0,0,0,0,13,20,712,0,24,38,6,0,2,28,0,441,35,1,0,0,6,6,345,0,4,0,0,2288,0,0,0,0,21,6,2,0,3,0,0,1,0,0,0,14,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,3,0,22,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,57,10,10,10,0,0,0,450,0,122,0,0,0,50,73,288,327,444,0,0,0,0,1,0,5,0,0,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,29,55,594,6,0,0,543,0,741,0,0,0,222,66,0,0,0,0,0,0,0,0,0,268,1,0,0,0,38,0,0,0,0,30,179,93,0,0,81,0,0,0,0,0,263,0,0,26,3,0,1,5,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,3,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,94,1,1,1,0,62,0,0,0,24,49,131,99,0,76,9,0,0,0,0,0,134,11,0,0,0,0,0,0,0,0,0,0,0,7,0,1,5,0,0,0,0,0,0,0,0,0,0,0,9,0,1,199,1480,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,0,0,0,34,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +0,0,0,7,2,15,50,2,56,10,6,0,0,0,19,0,123,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,4,0,17,136,0,0,39,0,0,0,1,0,0,7,0,0,0,0,1,202,0,0,0,0,0,1,0,0,0,0,0,17,0,0,3894,15,227,0,3,0,0,0,0,0,27,0,0,0,0,0,1,10,729,0,2,4,2,0,2,0,0,89,0,13,0,0,6,2,89,0,14,0,0,768,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,568,0,300,0,0,0,2,7,40,24,753,0,0,0,0,1,0,0,0,0,0,0,0,0,2682,0,192,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,238,38,464,9,0,0,458,0,1554,0,2,0,157,19,0,0,0,0,0,0,0,0,0,265,1,0,0,0,2,0,0,0,0,1,134,43,0,0,0,0,0,0,0,0,730,0,0,850,0,0,1,0,0,0,0,0,20,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,13,1,1,1,0,2,0,0,0,0,17,21,172,0,6,0,0,0,0,0,0,93,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,2,1464,72,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,2,0,0,401,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,109,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,48,3,0,0,47,0,143,0,0,0,5,3,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +81,0,0,2,1,53,25,4,118,6,24,0,4,0,12,0,38,0,7,6,0,1,1,5,0,29,9,0,5,0,3,0,0,1,18,0,54,15,0,0,480,0,0,0,1,0,0,0,0,0,0,0,24,116,0,0,0,0,0,1,0,1,0,0,0,26,0,0,1330,53,369,0,27,0,0,0,0,0,16,3,0,0,0,0,8,13,259,0,4,18,1,0,4,88,0,798,15,0,0,0,8,1,552,0,7,0,0,1204,0,0,0,0,37,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,219,0,110,0,0,0,25,58,218,786,205,0,0,0,0,1,0,4,0,0,0,0,0,0,792,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,93,284,4,0,0,242,0,325,0,0,0,105,18,0,0,0,0,0,0,0,0,0,228,0,0,0,0,13,0,0,0,0,23,138,230,0,0,30,0,0,0,0,0,732,0,0,19,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,34,0,0,0,0,9,72,42,0,37,9,0,0,0,0,0,327,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,261,1555,4 +2,0,0,7,0,16,2,0,19,6,8,1,0,0,11,0,23,0,6,1,0,0,0,2,0,0,3,0,1,0,1,1,0,0,5,0,16,6,0,0,38,0,2,0,1,0,0,2,0,0,0,0,1,83,0,0,0,0,0,1,0,0,0,6,0,11,0,0,8429,16,71,0,3,0,0,0,0,0,9,0,0,0,0,0,2,6,1980,0,0,5,0,0,0,0,0,17,0,2,0,0,2,0,62,0,8,0,0,997,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,81,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1240,0,150,0,0,0,2,8,36,15,1287,0,0,0,0,1,0,0,0,0,0,0,0,0,3187,0,0,0,0,0,0,0,0,0,0,0,0,2,0,77,0,0,0,0,0,0,8,14,148,8,0,0,146,0,337,0,0,0,75,19,0,0,0,0,0,0,164,0,0,70,1,0,0,0,3,0,0,0,0,2,102,46,0,0,0,0,0,0,0,0,591,0,0,2392,0,0,1,2,1,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,155,0,0,0,0,306,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,88,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,4,0,0,0,0,1,21,155,0,6,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,85,0,0,0,0,0,0,0,1,1205,297,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,0,0,0,78,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,48,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,36,4 +0,0,0,6,0,10,2,0,26,0,2,0,0,0,2,0,18,0,6,1,0,0,0,1,1,0,0,0,3,0,3,0,0,0,2,0,10,6,1,0,5,0,0,0,1,0,0,2,0,0,0,0,3,153,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3553,10,67,0,6,0,0,0,0,0,10,0,0,0,0,0,1,5,88,0,0,2,0,0,0,0,0,16,0,4,0,0,2,0,30,0,0,0,0,910,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,113,0,43,0,0,0,6,8,24,19,110,0,0,0,0,1,0,0,0,0,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,212,8,0,0,142,0,275,0,0,0,73,57,0,0,0,0,0,0,2,0,0,56,1,0,0,0,3,0,0,0,0,1,97,45,0,0,0,0,0,0,0,0,82,0,0,205,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,8,0,0,0,0,1,12,247,0,6,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,120,10732,4 +197,0,0,26,17,75,193,26,346,33,45,0,0,2,74,1,642,0,22,31,0,18,2,5,0,45,16,0,26,0,5,2,0,17,33,0,92,540,0,0,370,0,0,0,1,0,0,0,0,0,0,0,43,335,0,0,0,0,0,1,0,0,0,2,0,52,0,0,2033,75,2440,0,69,0,0,0,0,0,4,30,0,0,0,0,15,20,133,0,26,33,17,0,8,48,0,886,80,0,0,0,16,17,724,0,49,0,0,2673,0,0,0,0,35,19,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,17,0,0,0,6,0,0,0,0,0,7,0,57,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,0,0,15,0,0,0,3,0,0,0,12,2,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,52,10,10,10,0,0,0,147,0,168,0,0,0,48,63,343,572,158,0,0,0,0,1,0,4,0,0,0,0,0,0,1796,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,773,176,1659,50,0,0,1701,0,2576,0,7,0,494,126,0,0,0,0,0,0,0,0,0,1325,0,0,0,0,56,0,0,0,0,43,278,107,0,0,187,0,0,0,1,0,14903,0,0,7,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,1,0,0,0,0,52,52,0,0,5,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,81,1,1,1,0,44,0,0,0,0,185,125,72,0,85,9,0,0,0,0,0,343,40,0,0,0,0,0,0,0,0,0,0,0,18,0,1,39,0,0,0,0,0,0,0,0,0,0,0,22,0,0,920,1181,4 +150,0,0,29,10,84,186,22,415,30,71,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,15,0,8,2,0,9,32,0,94,301,0,0,671,0,0,0,1,0,0,4,0,0,0,0,28,374,0,0,0,0,0,1,0,3,0,12,0,81,0,0,3152,84,1512,0,40,0,0,0,0,0,74,12,0,0,0,0,13,23,401,0,22,32,9,0,10,188,0,1860,100,6,0,0,14,10,1255,0,46,0,0,2280,0,0,0,0,52,38,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,37,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,345,0,236,0,0,0,36,76,299,1585,371,0,0,0,0,1,0,5,0,0,0,0,0,0,2745,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,660,146,1455,48,0,0,1560,0,2930,0,6,0,567,59,0,0,0,0,0,0,0,0,0,1133,1,0,0,0,30,0,0,0,0,22,279,530,0,0,215,0,0,0,0,0,9933,0,0,224,3,0,1,6,0,0,0,0,7,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,78,0,0,0,0,81,126,490,0,64,9,0,0,0,0,0,699,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1608,1659,4 +0,0,0,5,0,33,6,0,33,0,5,0,0,6,4,0,522,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,1,762,33,6,0,0,41,0,1,0,1,0,0,1,0,0,0,0,1,154,0,0,0,0,0,1,0,0,0,0,0,2,0,0,16907,33,580,0,2,0,0,0,0,0,13,0,0,0,0,0,8,22,3948,0,0,1,0,0,0,0,0,189,20,2,0,0,2,0,561,0,0,1,0,2803,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,477,0,49,0,0,0,1,4,251,1124,467,0,0,0,0,1,0,3,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,84,16,166,5,0,0,176,0,196,0,0,0,40,2,0,0,0,0,0,0,0,0,0,582,1,0,0,0,9,0,0,0,0,0,116,6,0,0,6,0,0,0,0,0,3150,1,0,758,6,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,5,0,0,0,0,1,34,16,0,4,12,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1843,24,4 +0,0,0,0,0,12,2,0,4,0,1,0,0,0,2,0,9,0,7,1,0,0,0,1,0,2,0,0,0,0,1,0,0,0,2,0,12,6,0,0,9,0,0,0,0,0,0,0,0,0,0,0,2,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,244,12,21,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,2,0,0,0,0,0,7,0,0,0,0,2,0,9,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,20,0,0,0,2,5,27,264,32,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,13,52,0,0,0,46,0,110,0,0,0,10,3,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,2,94,3,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,14,2,0,3,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,92,4 +12,0,0,0,0,14,9,0,38,1,10,0,1,0,3,0,12,0,7,1,0,0,0,1,0,5,0,0,0,0,1,0,0,0,5,0,14,9,0,0,78,0,0,0,0,0,0,0,0,0,0,0,5,42,0,0,0,0,0,1,0,0,0,0,0,6,0,0,159,14,76,0,6,0,0,0,0,0,0,0,0,0,0,0,1,1,65,0,0,5,0,0,2,33,0,274,15,0,0,0,4,0,176,0,0,0,0,2898,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,63,0,64,0,0,0,5,7,31,256,77,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,66,2,0,0,61,0,167,0,0,0,25,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,2,0,0,0,0,5,97,81,0,0,30,0,0,0,0,0,611,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,19,5,0,6,0,0,0,0,0,0,146,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,244,283,4 +0,0,0,5,0,35,24,0,47,3,23,0,0,7,4,0,729,0,6,1,0,0,0,8,0,10,0,0,24,0,1,0,0,0,1,12502,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,692,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39021,35,890,0,22,0,0,0,0,0,45,0,0,0,0,0,8,88,6515,0,0,1,0,0,0,0,0,358,25,1,0,0,2,0,817,0,0,89,0,4454,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1330,0,32,0,0,0,11,14,484,2069,1309,0,0,0,0,1,0,3,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,280,5,0,0,307,0,295,0,0,0,147,16,0,0,0,0,0,0,0,0,0,840,1,0,0,0,9,0,0,0,0,1,164,7,0,0,131,0,0,0,0,0,4636,1,0,1004,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,54,0,0,0,0,1,36,212,0,23,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2516,26,4 +0,0,0,5,0,37,24,0,47,3,23,0,0,7,4,0,767,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12489,37,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,711,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39789,37,930,0,24,0,0,0,0,0,45,0,0,0,0,0,8,92,6453,0,0,1,0,0,0,0,0,361,25,2,0,0,2,0,855,0,0,87,0,4583,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1340,0,32,0,0,0,13,16,500,2058,1317,0,0,0,0,1,0,3,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,286,5,0,0,311,0,299,0,0,0,147,13,0,0,0,0,0,0,0,0,0,878,1,0,0,0,9,0,0,0,0,1,166,7,0,0,130,0,0,0,0,0,4686,1,0,1013,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,62,0,0,0,0,1,38,212,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2423,24,4 +61,0,0,1,1,61,12,4,56,2,13,0,3,0,5,0,37,0,7,12,0,1,1,6,0,19,3,0,7,0,5,1,0,1,23,0,62,12,0,0,182,0,0,0,1,0,0,0,0,0,0,0,17,102,0,0,0,0,0,1,0,1,0,0,0,7,0,0,1073,61,260,0,22,0,0,0,0,0,10,3,0,0,0,0,15,20,146,0,4,23,1,0,4,31,0,395,30,0,0,0,6,1,235,0,2,0,0,2358,0,0,0,0,15,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,8,0,0,0,4,0,0,0,0,0,1,0,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,144,0,93,0,0,0,21,31,231,342,134,0,0,0,0,1,0,3,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,297,2,0,0,248,0,418,0,0,0,105,42,0,0,0,0,0,0,0,0,0,133,0,0,0,0,20,0,0,0,0,16,152,72,0,0,60,0,0,0,0,0,700,0,0,8,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,20,0,0,0,0,9,85,39,0,26,9,0,0,0,0,0,194,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,1,0,0,0,0,0,0,0,0,0,0,2,0,0,169,821,4 +215,0,0,27,61,111,302,67,1394,55,265,0,0,2,91,0,649,0,17,27,0,11,11,9,9,31,21,0,31,0,28,3,0,61,53,0,172,253,0,0,1888,0,0,0,1,0,0,1,1,0,0,0,54,533,0,0,0,0,0,1,0,1,0,21,0,207,0,0,4153,111,4310,0,83,0,0,0,0,0,83,123,0,0,0,0,22,29,469,0,67,53,61,0,12,814,0,7185,310,4,0,0,12,61,4472,0,74,0,0,4492,0,0,0,0,91,53,1,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,15,0,0,0,31,0,0,0,2,0,1,0,54,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,0,0,0,0,33,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,59,19,19,19,0,0,9,473,9,263,0,0,90,83,124,448,5596,546,0,0,0,0,1,0,4,0,0,1,0,0,0,3790,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,571,235,2857,94,0,0,3066,0,3845,0,5,0,1034,136,0,0,0,0,0,0,0,0,0,2720,1,0,2,0,67,0,0,0,0,51,284,2004,0,0,768,0,0,0,0,0,4529,0,0,80,3,0,1,7,0,0,0,0,5,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,3,64,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,5,127,1,1,1,0,122,0,0,0,10,930,225,272,45,105,9,0,0,0,0,0,2309,57,0,0,0,0,0,0,0,0,0,0,0,62,0,1,74,1,0,0,0,0,0,0,0,0,0,0,117,0,2,1389,1421,4 +151,0,0,29,10,84,190,22,429,30,74,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,3,0,9,33,0,94,301,0,0,701,0,0,0,1,0,0,3,0,0,0,0,28,360,0,0,0,0,0,1,0,3,0,12,0,84,0,0,2859,84,1529,0,39,0,0,0,0,0,72,12,0,0,0,0,13,22,401,0,22,33,9,0,10,203,0,1969,100,3,0,0,14,10,1329,0,46,0,0,1986,0,0,0,0,53,41,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,17,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,327,0,236,0,0,0,36,75,296,1681,357,0,0,0,0,1,0,5,0,0,0,0,0,0,2744,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1454,48,0,0,1557,0,2902,0,6,0,567,39,0,0,0,0,0,0,0,0,0,1154,1,0,0,0,30,0,0,0,0,22,279,564,0,0,215,0,0,0,0,0,9939,0,0,181,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,75,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,735,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1628,1656,4 +148,0,0,29,10,86,188,22,425,28,73,0,0,2,62,0,375,0,20,16,0,6,2,6,0,30,22,0,15,0,11,2,0,9,33,0,96,301,0,0,703,0,0,0,1,0,0,3,0,0,0,0,35,372,0,0,0,0,0,1,0,3,0,12,0,81,0,0,2895,86,1522,0,47,0,0,0,0,0,71,12,0,0,0,0,13,22,396,0,22,33,9,0,10,198,0,1953,100,3,0,0,14,10,1305,0,44,0,0,2241,0,0,0,0,50,41,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,34,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,335,0,245,0,0,0,46,81,304,1657,366,0,0,0,0,1,0,5,0,0,0,0,0,0,2695,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,144,1437,48,0,0,1561,0,2898,0,6,0,564,48,0,0,0,0,0,0,0,0,0,1145,1,0,0,0,30,0,0,0,0,29,281,551,0,0,215,0,0,0,0,0,9926,0,0,172,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,26,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,93,1,1,1,0,67,0,0,0,0,81,129,309,0,71,9,0,0,0,0,0,731,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,38,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1627,1745,4 +47,0,0,1,1,56,8,4,33,2,6,0,3,0,5,0,44,0,7,9,0,1,1,7,0,23,12,0,8,0,3,1,0,1,21,0,57,12,0,0,136,0,0,0,1,0,0,0,0,0,0,0,19,102,0,0,0,0,0,1,0,1,0,0,0,3,0,0,934,56,241,0,25,0,0,0,0,0,6,3,0,0,0,0,13,18,136,0,4,21,1,0,3,8,0,209,15,0,0,0,6,1,158,0,2,0,0,7592,0,0,0,0,15,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,27,10,10,10,0,0,0,134,0,84,0,0,0,21,41,222,179,124,0,0,0,0,1,0,3,0,0,0,0,0,0,419,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,52,273,2,0,0,225,0,395,0,0,0,91,32,0,0,0,0,0,0,0,0,0,106,0,0,0,0,18,0,0,0,0,18,147,19,0,0,30,0,0,0,0,0,148,0,0,4,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,15,0,0,0,0,9,78,37,0,38,9,0,0,0,0,0,134,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,141,991,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,15,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41,10,22,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,195,55,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,84,0,58,0,0,0,50,3,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,4,4 +210,0,0,0,3,84,55,12,327,3,105,1,2,0,5,0,48,0,7,15,0,2,3,2,0,6,3,0,77,0,299,1,0,3,36,0,87,12,0,0,489,0,0,0,0,0,0,0,0,0,0,0,305,108,0,0,0,0,0,1,0,0,0,0,0,22,0,0,5714,84,1652,0,383,0,0,0,0,0,270,9,0,0,0,0,9,9,209,0,12,36,3,0,4,287,0,3541,405,0,0,0,6,3,1641,0,2,0,0,2767,0,0,0,0,81,89,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,76,0,0,0,76,0,0,0,0,0,1,0,12,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,72,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,214,0,204,0,0,0,604,608,165,2397,234,0,0,0,0,0,0,0,0,0,0,0,0,0,3763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,550,6,0,0,699,0,509,0,0,0,467,40,0,0,0,0,0,0,0,0,0,550,0,0,0,0,22,0,0,0,0,304,176,555,0,0,905,0,0,0,0,0,1313,0,0,299,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,84,1,1,1,0,678,0,0,0,588,25,123,36,0,386,0,0,0,0,0,0,614,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1210,2021,4 +151,0,0,29,10,84,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,23,0,14,0,7,2,0,9,33,0,94,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,354,0,0,0,0,0,1,0,3,0,13,0,83,0,0,2762,84,1518,0,39,0,0,0,0,0,70,12,0,0,0,0,13,22,390,0,22,33,9,0,10,198,0,1932,100,3,0,0,14,10,1304,0,46,0,0,2096,0,0,0,0,52,41,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,322,0,233,0,0,0,36,76,296,1650,352,0,0,0,0,1,0,5,0,0,0,0,0,0,2711,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1414,48,0,0,1554,0,2904,0,6,0,564,35,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,279,551,0,0,215,0,0,0,0,0,9919,0,0,161,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,77,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1599,1652,4 +0,0,0,5,0,36,25,0,48,3,24,0,0,7,4,0,820,0,6,0,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12351,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,795,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40800,36,986,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6763,0,0,1,0,0,0,0,0,363,25,1,0,0,2,0,907,0,0,86,0,4651,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1491,0,32,0,0,0,12,15,496,2099,1469,0,0,0,0,1,0,3,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,275,5,0,0,313,0,293,0,0,0,153,14,0,0,0,0,0,0,0,0,0,934,1,0,0,0,8,0,0,0,0,1,170,6,0,0,134,0,0,0,0,0,4869,1,0,984,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,205,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2506,23,4 +18,0,0,0,0,17,10,0,45,1,2,0,2,0,3,0,36,0,8,1,0,0,0,2,0,1,0,0,1,0,1,0,0,0,7,0,17,270,0,0,68,0,0,0,1,0,0,1,0,0,0,0,1,68,0,0,0,0,0,1,0,0,0,0,0,2,0,0,440,17,96,0,3,0,0,0,0,0,3,0,0,0,0,1,2,5,36,0,0,7,0,0,2,9,0,78,0,1,0,0,6,0,151,0,1,0,0,3167,0,0,0,0,1,5,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,44,0,0,0,0,0,0,45,0,40,0,0,0,1,4,34,71,66,0,0,0,0,1,0,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,72,46,148,0,0,0,159,0,265,0,0,0,82,21,0,0,0,0,0,0,0,0,0,106,1,0,0,0,3,0,0,0,0,1,112,44,0,0,0,0,0,0,0,0,982,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,1,0,0,0,0,1,24,82,0,3,0,0,0,0,0,0,114,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,20,4 +12,0,0,4,0,16,2,0,23,3,3,0,0,0,6,0,91,0,6,1,0,0,0,1,0,0,45,0,15,0,16,0,0,0,5,0,16,61,0,0,22,0,54,0,1,0,0,54,0,0,0,0,15,296,0,0,0,0,0,1,0,0,0,0,0,7,0,0,8518,16,394,0,31,0,0,0,0,0,127,0,0,0,0,0,1,56,1387,0,0,5,0,0,0,0,0,135,0,62,0,0,2,0,319,0,4,0,0,504,0,3,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,1499,0,416,0,0,0,30,77,37,150,1903,0,0,0,0,1,0,0,0,0,0,0,0,0,3579,0,63,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,8,7,117,4,0,0,597,0,902,0,0,0,539,7,0,0,0,0,0,0,0,0,0,131,1,0,0,0,2,0,0,0,0,16,98,446,0,0,0,0,0,0,0,0,533,0,0,1169,0,0,1,0,1,0,0,0,149,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,146,0,0,0,0,16,15,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,30,0,0,0,0,1,21,102,0,76,0,0,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1235,341,4 +115,0,0,29,11,89,157,27,272,27,38,0,0,2,63,2,732,0,20,44,0,99,2,6,0,41,22,0,17,0,7,2,0,10,38,0,99,301,160,0,381,0,0,0,1,0,0,3,0,0,0,0,42,347,0,0,0,0,0,1,0,3,0,12,0,49,0,0,2548,89,1946,0,59,0,0,0,0,0,21,15,0,0,0,0,13,22,295,0,27,38,10,0,8,37,0,746,70,3,0,0,14,11,640,0,43,0,0,2833,0,0,0,0,44,16,1,0,33,0,0,1,0,0,0,20,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,22,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,28,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,60,10,10,10,0,0,0,310,0,280,0,0,0,50,86,375,607,300,0,0,0,0,1,0,6,0,0,0,0,0,0,2142,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,335,1432,49,0,0,1492,0,2994,0,6,0,500,361,0,0,0,0,0,0,0,0,0,1286,1,0,0,0,151,0,0,0,0,40,283,146,0,0,155,0,0,0,0,0,10640,0,0,159,5,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,1,0,0,106,106,0,0,9,1,0,0,0,0,3,17,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,52,0,0,0,0,157,137,314,0,80,9,0,0,0,0,0,313,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,33,0,0,0,0,0,0,0,0,117,0,0,187,0,3,1662,1770,4 +281,0,0,29,21,99,166,37,380,35,43,0,0,2,72,2,808,0,20,66,0,117,2,7,0,38,22,0,25,0,8,2,0,20,44,0,119,301,160,0,486,0,0,0,1,0,0,4,0,0,0,0,39,424,0,0,0,0,0,1,0,3,0,12,0,57,0,0,2674,99,3499,0,63,0,0,0,0,0,19,45,0,0,0,1,14,25,299,0,37,44,20,0,7,29,0,700,55,4,0,0,14,21,698,0,52,0,0,2417,0,0,0,0,68,30,0,0,29,0,0,1,0,0,0,21,0,0,0,0,0,0,0,27,0,0,0,14,0,0,0,0,0,7,0,73,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,32,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,21,8,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,331,0,296,0,0,0,47,77,421,559,327,0,0,0,0,1,0,5,0,0,0,0,0,0,2910,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,679,364,1823,59,0,0,1863,0,3148,0,6,0,605,601,0,0,0,0,0,0,0,0,0,1493,1,0,0,0,192,0,0,0,0,39,294,134,0,0,125,0,0,0,0,0,10163,0,0,163,4,0,1,7,0,0,0,0,6,0,0,0,2,0,0,0,0,0,34,0,0,0,0,0,0,0,0,1,0,0,106,106,0,0,7,1,0,0,0,0,3,17,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,101,1,1,1,0,63,0,0,0,0,245,163,373,0,86,9,0,0,0,0,0,322,30,0,0,0,0,0,0,1,0,0,0,0,21,0,5,39,0,0,0,0,0,0,0,0,117,0,0,187,0,2,1778,1902,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,419,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,32,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,121,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,36,0,34,0,0,0,2,4,27,96,54,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,46,3,0,0,47,0,150,0,0,0,5,8,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,28,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,14,4 +14,0,0,0,6,23,8,27,48,1,8,0,1,0,3,2,135,0,7,19,0,6,3,1,0,5,0,0,4,0,1,0,0,6,5,0,26,19,0,0,50,0,0,0,0,0,0,0,0,0,0,0,4,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,227,23,601,0,10,0,0,0,0,0,0,18,0,0,0,0,4,4,26,0,27,5,6,0,1,7,0,85,0,0,0,0,4,6,116,0,0,0,0,383,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,22,0,0,0,0,0,0,59,0,64,0,0,0,4,6,84,89,60,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,26,223,8,0,0,190,0,298,0,0,0,49,16,0,0,0,0,0,0,0,0,0,212,0,0,0,0,29,0,0,0,0,5,106,21,0,0,0,0,0,0,0,0,428,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,30,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,6,0,0,0,0,51,31,5,0,10,0,0,0,0,0,0,46,4,0,0,0,0,0,0,0,0,0,0,0,3,0,2,1,0,0,0,0,0,0,0,0,0,0,0,8,0,0,227,393,4 +0,0,0,0,0,1,0,1,22,0,1,0,0,0,1,0,730,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,726,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,2,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,1,108,4 +115,0,0,29,11,90,158,27,279,27,42,0,0,2,63,1,565,0,20,46,0,97,2,6,0,41,22,0,18,0,7,3,0,10,38,0,100,301,160,0,391,0,0,0,1,0,0,3,0,0,0,0,42,362,0,0,0,0,0,1,0,3,0,12,0,50,0,0,2544,90,1798,0,59,0,0,0,0,0,23,15,0,0,0,0,13,22,280,0,27,38,10,0,9,45,0,818,85,3,0,0,14,11,626,0,43,0,0,2061,0,0,0,0,43,15,1,0,32,0,0,1,0,0,0,22,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,28,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,289,0,234,0,0,0,50,85,347,659,296,0,0,0,0,1,0,6,0,0,0,0,0,0,2191,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,335,1459,49,0,0,1501,0,2943,0,6,0,505,540,0,0,0,0,0,0,0,0,0,1130,1,0,0,0,151,0,0,0,0,39,283,163,0,0,185,0,0,0,0,0,10421,0,0,161,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,6,1,0,0,0,0,3,17,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,51,0,0,0,0,125,138,326,0,82,9,0,0,0,0,0,328,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,35,0,0,0,0,0,0,0,0,117,0,0,246,0,2,1691,1773,4 +11,0,0,8,1,34,48,1,122,7,15,1,0,0,13,0,71,0,9,2,0,0,0,4,0,4,3,0,10,0,2,0,0,1,17,0,35,54,0,0,148,0,0,0,1,0,0,16,3,0,0,0,4,296,0,0,0,0,0,1,0,0,0,21,0,10,0,0,7822,34,343,0,16,0,0,0,0,0,59,0,0,0,0,5,5,29,1366,0,1,17,1,0,1,47,0,461,15,35,1,0,4,1,347,0,8,0,0,1013,0,0,0,0,29,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,8,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,1109,0,225,0,0,0,5,13,72,428,1051,0,0,0,0,1,0,0,0,0,0,0,0,0,2464,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,112,19,393,11,0,0,487,0,1614,0,1,0,274,25,0,0,0,0,0,0,0,0,0,279,1,0,9,0,6,0,0,0,0,6,146,222,0,0,34,0,0,0,0,0,627,0,0,1469,0,0,1,0,0,0,0,0,43,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,38,1,1,1,0,15,0,0,0,0,9,52,839,0,19,0,0,0,0,0,0,199,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,10,1742,89,4 +6,0,0,9,0,59,181,0,121,6,15,0,0,2,21,2,66,0,63,4,0,0,0,7,0,10,22,0,9,0,9,4,0,0,23,0,59,206,0,0,282,0,0,0,1,0,0,7,1,0,0,0,13,211,0,0,0,0,0,1,0,0,0,5,0,16,0,0,8447,59,547,0,20,0,0,0,0,0,36,0,0,0,0,1,10,25,801,0,0,23,0,0,1,94,0,839,60,19,0,0,2,0,714,0,10,0,0,4518,0,0,0,0,3,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,753,0,170,0,0,0,24,50,249,1341,728,0,0,0,0,1,0,14,0,0,0,0,0,0,3089,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,25,443,9,0,0,618,0,1267,0,0,0,478,155,0,0,0,0,0,0,0,0,0,471,1,0,8,0,11,0,0,0,0,12,158,383,0,0,293,0,0,0,0,0,1463,0,0,2036,3,0,1,1,1,0,0,0,27,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,86,1,1,1,0,23,0,0,0,0,1,82,624,0,45,9,0,0,0,0,0,289,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1043,1500,4 +45,0,0,1,1,55,8,4,28,3,2,0,4,0,6,0,44,0,6,9,0,1,1,7,0,18,12,0,7,0,3,1,0,1,21,0,56,15,0,0,131,0,0,0,1,0,0,0,0,0,0,0,14,75,0,0,0,0,0,1,0,1,0,0,0,2,0,0,882,55,213,0,19,0,0,0,0,0,4,3,0,0,0,0,13,18,126,0,4,21,1,0,3,0,0,128,0,0,0,0,8,1,118,0,2,0,0,2253,0,0,0,0,12,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,27,10,10,10,0,0,0,137,0,99,0,0,0,16,36,219,102,114,0,0,0,0,1,0,3,0,0,0,0,0,0,410,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,35,65,260,4,0,0,224,0,381,0,0,0,90,32,0,0,0,0,0,0,0,0,0,98,0,0,0,0,18,0,0,0,0,14,147,6,0,0,0,0,0,0,0,0,142,0,0,4,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,14,0,0,0,0,9,77,37,0,32,9,0,0,0,0,0,115,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,292,735,4 +12,0,0,0,0,15,2,0,8,0,1,0,0,0,2,0,16,0,6,2,0,0,0,0,0,8,3,0,6,0,1,1,0,0,7,0,15,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,9,34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,148,15,50,0,16,0,0,0,0,0,3,0,0,0,0,0,1,3,6,0,0,7,0,0,0,0,0,28,0,0,0,0,2,0,43,0,0,0,0,179,0,0,0,0,4,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,23,0,35,0,0,0,10,15,30,54,31,0,0,0,0,1,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,72,0,0,0,64,0,168,0,0,0,34,8,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,9,105,3,0,0,0,0,0,0,0,0,53,0,0,4,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,9,0,0,0,0,1,22,7,0,19,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,156,4 +151,0,0,29,10,85,187,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,95,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,358,0,0,0,0,0,1,0,3,0,12,0,82,0,0,2952,85,1512,0,39,0,0,0,0,0,71,12,0,0,0,0,13,22,406,0,22,33,9,0,10,193,0,1895,100,3,0,0,14,10,1279,0,46,0,0,2109,0,0,0,0,52,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,329,0,236,0,0,0,36,76,300,1617,358,0,0,0,0,1,0,5,0,0,0,0,0,0,2687,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1439,48,0,0,1558,0,2901,0,6,0,564,56,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,281,538,0,0,215,0,0,0,0,0,9933,0,0,190,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,77,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1628,1645,4 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,0,0,0,63,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,20,0,0,0,0,3,23,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,45,0,0,0,46,0,49,0,0,0,13,3,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,12,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,36,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,10,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,2,0,0,407,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,128,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,154,0,0,0,2,4,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,30,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,14,4 +119,0,0,29,11,91,159,27,284,30,43,0,0,2,66,1,568,0,20,45,0,98,2,6,0,33,22,0,17,0,8,2,0,10,38,0,101,301,160,0,411,0,0,0,1,0,0,3,0,0,0,0,34,340,0,0,0,0,0,1,0,3,0,12,0,54,0,0,2619,91,1810,0,50,0,0,0,0,0,27,15,0,0,0,0,13,22,304,0,27,38,10,0,9,50,0,839,85,4,0,0,14,11,649,0,46,0,0,2211,0,0,0,0,46,17,1,0,31,0,0,1,0,0,0,22,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,304,0,246,0,0,0,42,74,354,681,310,0,0,0,0,1,0,6,0,0,0,0,0,0,2421,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1470,49,0,0,1507,0,2952,0,6,0,508,132,0,0,0,0,0,0,0,0,0,1143,1,0,0,0,151,0,0,0,0,30,283,176,0,0,185,0,0,0,0,0,10434,0,0,167,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,56,56,0,0,7,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,96,1,1,1,0,63,0,0,0,0,127,139,326,0,73,9,0,0,0,0,0,349,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,38,0,0,0,0,0,0,0,0,117,0,0,186,0,3,1876,1643,4 +7,0,0,15,7,25,91,19,129,12,20,0,0,0,24,8,496,0,21,11,0,4,4,2,0,7,9,0,3,0,2,0,0,7,4,0,32,321,0,0,200,0,0,0,1,0,0,0,0,0,0,0,8,187,0,0,0,0,0,1,0,0,0,15,0,18,0,0,641,25,940,0,12,0,0,0,0,0,0,12,0,0,0,0,4,4,17,0,19,4,7,0,3,0,0,152,0,0,0,0,8,7,271,0,13,0,0,729,0,0,0,0,15,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,4,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,2,0,0,0,0,0,0,0,0,75,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,30,0,0,0,0,0,0,43,0,100,0,0,0,9,20,90,106,121,0,0,0,0,1,0,0,0,0,0,0,0,0,619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,61,762,23,0,0,857,0,2189,0,3,0,328,36,0,0,0,0,0,0,0,0,0,789,0,0,0,0,21,0,0,0,0,9,201,66,0,0,0,0,1,0,1,1,1208,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,2,0,0,1,0,0,0,0,23,23,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,31,1,1,1,0,6,0,0,0,0,73,36,11,0,21,0,0,0,0,0,0,398,58,0,0,0,0,0,0,0,0,0,0,0,7,0,1,12,0,0,0,0,0,0,0,0,0,0,0,11,0,0,1871,90,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,0,0,0,47,8,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,7,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,17,0,0,0,0,3,21,4,26,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,37,0,22,0,0,0,3,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,4,4 +83,0,0,25,8,75,165,17,394,26,70,0,0,2,56,0,308,0,18,14,0,5,1,6,0,25,13,0,15,0,5,2,0,7,28,0,83,253,0,0,669,0,0,0,1,0,0,3,0,0,0,0,24,326,0,0,0,0,0,1,0,2,0,12,0,77,0,0,2839,75,1292,0,36,0,0,0,0,0,69,9,0,0,0,0,13,22,351,0,17,28,7,0,9,203,0,1917,100,3,0,0,12,8,1269,0,40,0,0,1746,0,0,0,0,28,32,0,0,30,0,0,1,0,0,0,16,0,0,0,0,0,0,0,7,0,0,0,8,0,0,0,0,0,1,0,17,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,10,10,10,0,0,0,277,0,223,0,0,0,29,49,279,1597,321,0,0,0,0,1,0,4,0,0,0,0,0,0,2428,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,556,117,1191,42,0,0,1337,0,2551,0,5,0,501,34,0,0,0,0,0,0,0,0,0,1013,1,0,0,0,26,0,0,0,0,18,255,561,0,0,215,0,0,0,0,0,9795,0,0,152,3,0,1,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,82,1,1,1,0,32,0,0,0,0,65,111,291,0,51,9,0,0,0,0,0,710,8,0,0,0,0,0,0,0,0,0,0,0,9,0,1,36,0,0,0,0,0,0,0,0,0,0,0,11,0,3,1575,843,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,403,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,116,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,46,3,0,0,47,0,141,0,0,0,5,5,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +216,0,0,31,19,95,190,32,359,27,47,0,0,2,65,1,670,0,22,60,0,113,1,6,0,48,13,0,23,0,4,3,0,18,40,0,113,352,159,0,375,0,0,0,1,0,0,1,1,0,0,0,45,346,0,0,0,0,0,1,0,2,0,12,0,51,0,0,2063,95,2376,0,67,0,0,0,0,0,14,36,0,0,0,0,14,21,155,0,32,40,18,0,9,37,0,802,70,4,0,0,16,19,616,0,46,0,0,2681,0,0,0,0,64,24,0,0,38,0,0,1,0,0,0,19,0,0,0,0,0,0,0,21,0,0,0,14,0,0,0,2,0,6,0,65,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,15,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,79,10,10,10,0,0,0,183,0,219,0,0,0,50,68,372,623,216,0,0,0,0,1,0,4,0,0,0,0,0,0,2477,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,780,346,1829,61,0,0,1863,0,3755,0,7,0,557,234,0,0,0,0,0,0,0,0,0,1356,1,0,2,0,180,0,0,0,0,42,320,86,0,0,155,0,0,0,0,0,9924,0,0,25,3,0,1,7,0,0,0,0,4,0,0,0,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,58,58,0,0,19,1,0,0,0,0,3,10,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,99,1,1,1,0,44,0,0,0,0,191,153,91,0,82,9,0,0,0,0,0,318,26,0,0,0,0,0,0,1,0,0,0,0,19,0,4,33,0,0,0,0,0,0,0,0,117,0,0,166,0,1,1623,1017,4 +102,0,0,2,2,68,38,5,77,10,9,0,4,0,15,12,95,0,9,6,0,1,1,5,0,23,12,0,4,0,4,0,0,2,30,0,70,63,0,0,224,0,0,0,1,0,0,0,0,0,0,0,19,112,0,0,0,0,0,1,0,2,0,2,0,11,0,0,1454,68,349,0,20,0,0,0,0,0,13,3,0,0,0,0,8,13,189,0,5,30,2,0,4,20,0,304,0,0,0,0,10,2,272,0,7,0,0,4612,0,0,0,0,21,22,0,0,18,0,0,0,0,0,0,5,0,0,0,0,0,0,0,4,0,0,0,6,0,0,0,0,0,0,0,18,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,27,10,10,10,0,0,0,205,0,117,0,0,0,21,43,244,421,176,0,0,0,0,1,0,3,0,0,0,0,0,0,828,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,141,112,464,6,0,0,444,0,899,0,1,0,181,45,0,0,0,0,0,0,0,0,0,259,0,0,0,0,13,0,0,0,0,15,187,60,0,0,0,0,0,0,1,0,818,0,0,10,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,74,1,1,1,0,20,0,0,0,0,17,100,47,0,34,9,0,0,0,0,0,389,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,3,0,0,610,1301,4 +13,0,0,0,0,28,4,0,8,5,1,0,2,0,7,0,21,0,7,3,0,0,0,1,0,9,3,0,4,0,1,1,0,0,16,0,28,12,0,0,73,0,0,0,0,0,0,0,0,0,0,0,10,38,0,0,0,0,0,1,0,0,0,0,0,4,0,0,255,28,56,0,15,0,0,0,0,0,0,0,0,0,0,0,3,3,27,0,0,16,0,0,2,0,0,39,0,0,0,0,6,0,59,0,4,0,0,503,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,48,0,74,0,0,0,11,19,48,74,59,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,40,128,2,0,0,108,0,214,0,0,0,60,21,0,0,0,0,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,10,119,2,0,0,0,0,0,0,0,0,46,0,0,2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,9,0,0,0,0,1,44,16,0,18,0,0,0,0,0,0,86,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,337,4 +0,0,0,5,0,28,5,0,27,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,8,0,0,2,0,1,0,0,0,1,0,28,6,0,0,22,0,0,0,1,0,0,3,0,0,0,0,1,158,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1769,28,62,0,1,0,0,0,0,0,14,0,0,0,0,1,7,17,363,0,0,1,0,0,0,0,0,75,5,6,0,0,2,0,36,0,0,0,0,438,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,214,0,45,0,0,0,0,3,185,10,211,0,0,0,0,1,0,3,0,0,0,0,0,0,520,0,0,0,0,0,0,0,0,0,0,0,0,3,1,6,0,0,0,0,1,0,32,10,150,11,0,0,192,0,312,0,0,0,75,7,0,0,0,0,0,0,2,0,0,62,1,0,0,0,8,0,0,0,0,0,114,53,0,0,0,0,0,0,0,0,136,0,0,272,3,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,0,0,0,0,0,1,29,242,0,2,9,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,43,4 +42,0,0,1,1,53,9,4,31,3,6,0,4,0,6,0,37,0,7,9,0,1,1,7,0,15,3,0,6,0,3,1,0,1,21,0,54,15,0,0,145,0,0,0,1,0,0,0,0,0,0,0,11,94,0,0,0,0,0,1,0,1,0,0,0,3,0,0,868,53,216,0,15,0,0,0,0,0,6,3,0,0,0,0,13,18,132,0,4,21,1,0,4,8,0,193,15,0,0,0,8,1,119,0,2,0,0,2460,0,0,0,0,9,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,117,0,99,0,0,0,13,18,217,156,119,0,0,0,0,1,0,3,0,0,0,0,0,0,418,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,35,65,267,4,0,0,221,0,395,0,0,0,93,24,0,0,0,0,0,0,0,0,0,100,0,0,0,0,18,0,0,0,0,10,145,20,0,0,30,0,0,0,0,0,130,0,0,4,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,13,0,0,0,0,9,75,37,0,19,9,0,0,0,0,0,134,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,2,0,0,292,665,4 +0,0,0,6,0,8,2,0,16,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,186,8,39,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,26,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,15,0,0,0,0,113,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,34,0,0,0,0,3,22,6,46,0,0,0,0,1,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,92,8,0,0,105,0,243,0,0,0,41,3,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,95,28,0,0,0,0,0,0,0,0,28,0,0,9,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,98,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,34,4 +104,0,7,19,8,102,218,5,1101,42,115,0,0,2,69,1,11192,0,17,10,0,1,0,10,0,40,18,0,28,0,5,4,0,7,50,26,107,292,0,0,948,0,0,0,1,0,0,2,1,0,0,0,42,351,0,0,0,0,0,1,0,0,0,17,0,108,0,0,3245,102,12656,0,68,0,0,0,0,0,45,0,0,0,0,0,17,25,320,0,5,50,7,0,10,372,0,3337,220,5,0,0,17,8,12855,0,51,0,0,3704,0,0,0,0,25,36,2,0,1,0,0,1,0,0,0,11,0,0,0,0,0,0,0,11,0,0,0,6,0,0,0,1,0,4,0,20,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1180,10,10,10,0,0,0,290,0,271,0,0,0,50,69,354,2623,312,0,0,0,0,1,0,4,0,0,0,21713,3,1,1959,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,1,0,760,27296,1296,31,0,0,1326,0,5761,0,6,0,497,708,0,0,0,0,0,0,0,0,0,12715,1,0,2,0,21,0,0,0,0,37,281,889,0,7,548,0,0,0,0,0,23373,0,0,49,4,0,1,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,38,0,0,1,0,0,0,0,0,0,0,0,60,60,0,0,20,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,5,100,1,1,1,0,52,0,0,0,0,95,157,94,0,86,9,0,0,0,0,0,1135,10,0,0,0,0,0,0,0,0,0,0,0,6,0,1,54,0,0,0,0,0,0,0,0,0,0,0,12,0,2,841,1251,4 +404,0,0,32,28,117,275,64,798,40,133,0,0,2,87,1,770,0,24,82,0,122,2,6,0,61,19,0,36,0,9,2,0,27,55,0,139,400,160,0,1403,0,0,0,1,0,0,5,1,0,0,0,62,457,0,0,0,0,0,1,0,2,0,21,0,141,0,0,4541,117,4208,0,98,0,0,0,0,0,107,60,0,0,0,0,14,28,629,0,64,55,27,0,12,398,0,3617,90,12,0,0,18,28,2550,0,63,0,0,4822,0,0,0,0,105,102,0,0,39,0,0,1,0,0,0,21,0,0,0,0,0,0,0,28,0,0,0,17,0,0,0,2,0,7,0,77,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,3,0,0,0,0,0,1,13,0,0,0,0,0,0,0,18,6,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,105,10,10,10,0,0,0,578,0,430,0,0,0,71,118,427,3192,600,0,0,0,0,1,0,4,0,0,0,0,0,0,5078,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,886,413,2254,68,0,0,2347,0,4256,0,8,0,818,171,0,0,0,0,0,0,0,0,0,2090,1,0,2,0,212,0,0,0,0,59,355,1031,0,0,192,0,0,0,0,0,11072,0,0,151,3,0,1,9,0,0,0,0,13,0,0,0,4,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,65,65,0,0,16,1,0,0,0,0,3,38,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,122,1,1,1,0,124,0,0,0,0,229,194,196,0,118,9,0,0,0,0,0,1351,32,0,0,0,0,0,0,1,0,0,0,0,23,0,4,50,0,0,0,0,0,0,0,0,117,0,0,203,0,6,2512,2468,4 +153,0,0,29,10,87,189,22,430,30,74,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,3,0,9,33,0,97,301,0,0,701,0,0,0,1,0,0,3,0,0,0,0,28,348,0,0,0,0,0,1,0,3,0,12,0,84,0,0,2959,87,1532,0,39,0,0,0,0,0,74,12,0,0,0,0,13,22,407,0,22,33,9,0,10,203,0,1969,100,3,0,0,14,10,1329,0,46,0,0,2187,0,0,0,0,52,41,0,0,30,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,338,0,242,0,0,0,36,75,308,1681,366,0,0,0,0,1,0,5,0,0,0,0,0,0,2725,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1439,48,0,0,1568,0,2905,0,6,0,567,42,0,0,0,0,0,0,0,0,0,1154,1,0,0,0,30,0,0,0,0,22,282,564,0,0,215,0,0,0,0,0,9937,0,0,191,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,75,0,0,0,0,81,130,309,0,63,9,0,0,0,0,0,735,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1627,1658,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,142,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,32,0,0,0,0,3,21,195,54,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,84,0,57,0,0,0,50,3,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,4,4 +7,0,0,5,1,22,8,5,77,16,26,0,0,0,19,0,16,0,7,4,0,1,0,4,1,0,0,0,0,0,1,0,0,1,7,0,23,6,0,0,171,0,0,0,1,0,0,1,0,0,0,0,0,90,0,0,0,0,0,1,0,0,0,0,0,31,0,0,577,22,241,0,1,0,0,0,0,0,18,3,0,0,0,0,5,7,146,0,5,7,1,0,2,66,0,539,55,2,0,0,2,1,354,0,17,0,0,230,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,124,0,78,0,0,0,0,3,56,461,162,0,0,0,0,1,0,0,0,0,0,0,0,0,476,0,0,0,0,0,0,0,0,0,8,0,0,1,0,0,0,0,0,0,0,3,10,20,124,6,0,0,154,0,200,0,0,0,81,6,0,0,0,0,0,0,0,0,0,153,1,0,0,0,10,0,0,0,0,0,104,189,0,0,139,0,0,0,0,0,636,0,0,56,0,0,1,10,0,0,0,0,3,0,0,0,0,0,0,0,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,0,0,0,0,0,1,30,181,0,1,0,0,0,0,0,0,194,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,20,0,0,0,0,0,0,0,0,0,0,0,2,0,1,219,10,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,146,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,70,0,48,0,0,0,36,5,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,4,4 +6,0,0,0,0,12,5,0,9,0,9,0,0,0,2,0,15,0,6,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,2,0,12,6,0,0,15,0,1,0,1,0,0,1,0,0,0,0,1,68,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1222,12,40,0,2,0,0,0,0,0,6,0,0,0,0,0,1,6,612,0,0,2,0,0,0,5,0,64,0,1,0,0,2,0,25,0,0,0,0,1384,0,0,0,0,30,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,125,0,109,0,0,0,1,4,27,91,134,0,0,0,0,1,0,0,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,116,0,0,0,104,0,261,0,0,0,46,4,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,2,102,31,0,0,0,0,0,0,0,0,265,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,58,0,2,0,0,1,0,0,0,154,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,442,151,4 +20,0,0,7,1,52,31,1,52,0,7,0,0,2,18,0,78,0,11,3,0,0,0,6,0,20,0,0,6,0,1,0,0,1,16,0,53,168,0,0,122,0,0,0,1,0,0,1,1,0,0,0,13,110,0,0,0,0,0,1,0,0,0,0,0,5,0,0,977,52,157,0,17,0,0,0,0,0,5,0,0,0,0,0,8,16,129,0,1,16,1,0,1,8,0,217,20,3,1,0,4,1,151,0,1,0,0,968,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,21,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,2,0,0,0,6,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,2,10,10,10,0,0,0,110,0,59,0,0,0,12,13,240,203,118,0,0,0,0,1,0,3,0,0,0,0,0,0,526,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,148,90,358,9,0,0,350,0,2853,0,1,0,105,38,0,0,0,0,0,0,0,0,0,199,1,0,3,0,9,0,0,0,0,11,149,25,0,0,34,0,0,0,0,0,515,0,0,12,3,0,1,1,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,54,1,1,1,0,4,0,0,0,0,9,69,49,0,18,9,0,0,0,0,0,74,37,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1223,72,4 +0,0,0,16,76,128,12,354,606,34,162,0,0,2,595,0,829,0,7,89,26,99,45,6,50,10,6,0,7,0,0,0,0,76,93,978,204,182,5,0,526,0,0,0,1,0,0,12,0,0,0,0,3,502,1,0,0,0,0,1,0,0,0,0,0,53,0,0,44438,128,7016,0,5,0,0,0,0,0,59,228,0,0,0,1,8,31,7034,0,354,93,76,0,1,150,0,1482,365,18,0,0,2,76,2712,0,35,1,2,5862,0,0,0,0,0,0,4,0,0,0,0,1,1,0,0,209,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,496,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,595,12,12,12,0,0,0,5834,0,218,0,0,0,4,21,505,1000,6024,0,0,0,0,1,0,5,0,0,0,0,0,0,2355,0,0,0,0,0,0,0,0,0,0,0,0,12,1,6,0,0,26,0,1,0,32,99,2000,659,0,0,2755,0,1251,1,0,0,1833,142,0,0,0,0,0,0,3,0,0,2213,1,0,0,0,315,0,0,0,0,3,549,1067,0,0,1395,0,2,0,0,0,2637,1,0,451,9,0,1,1,1,0,0,0,31,0,0,0,3,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,9,1,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,132,1,1,1,0,4,0,0,0,0,209,297,1879,0,11,12,0,0,0,0,0,795,27,0,0,0,0,0,0,0,0,0,0,0,77,0,1,38,0,0,0,0,0,0,0,0,0,0,0,106,0,12,2060,1599,4 +11,0,0,4,0,14,23,0,32,0,7,0,0,0,3,0,11,0,6,1,0,0,0,1,0,6,0,0,3,0,1,0,0,0,5,0,14,6,0,0,56,0,0,0,0,0,0,0,0,0,0,0,6,51,0,0,0,0,0,1,0,0,0,0,0,5,0,0,151,14,82,0,10,0,0,0,0,0,0,0,0,0,0,0,1,1,32,0,0,5,0,0,1,27,0,273,15,0,0,0,2,0,150,0,1,0,0,133,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,40,0,0,0,6,9,31,219,55,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,53,4,0,0,71,0,121,0,0,0,38,7,0,0,0,0,0,0,0,0,0,82,0,0,0,0,2,0,0,0,0,1,96,53,0,0,34,0,0,0,0,0,618,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,19,5,0,10,0,0,0,0,0,0,88,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,7,4 +0,0,0,0,0,8,40,0,48,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,147,8,130,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,44,0,331,15,0,0,0,4,0,226,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,203,55,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,86,0,59,0,0,0,52,6,0,0,0,0,0,0,0,0,0,113,0,0,0,0,2,0,0,0,0,0,91,88,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,104,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,4,4 +57,0,0,0,5,75,17,20,106,6,18,0,2,0,8,0,82,0,7,18,0,5,5,6,0,16,9,0,24,0,17,1,0,5,29,0,80,9,0,0,146,0,0,0,1,0,0,1,0,0,0,0,26,145,0,0,0,0,0,1,0,0,0,0,0,6,0,0,3789,75,633,0,47,0,0,0,0,0,10,15,0,0,0,0,13,20,688,0,20,29,5,0,1,37,0,491,55,1,0,0,4,5,326,0,5,0,0,2333,0,0,0,0,15,4,2,0,3,0,0,1,0,0,0,10,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,22,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,34,10,10,10,0,0,0,415,0,112,0,0,0,42,51,272,307,424,0,0,0,0,1,0,5,0,0,0,0,0,0,588,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,23,36,494,5,0,0,471,0,704,0,0,0,187,72,0,0,0,0,0,0,0,0,0,240,1,0,0,0,34,0,0,0,0,22,166,110,0,0,137,0,0,0,0,0,222,0,0,25,3,0,1,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,14,1,0,0,0,0,3,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,82,1,1,1,0,61,0,0,0,24,41,109,94,0,58,9,0,0,0,0,0,127,10,0,0,0,0,0,0,0,0,0,0,0,6,0,1,6,0,0,0,0,0,0,0,0,0,0,0,8,0,1,201,787,4 +152,0,0,29,10,84,187,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,94,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,360,0,0,0,0,0,1,0,3,0,12,0,82,0,0,2870,84,1512,0,39,0,0,0,0,0,71,12,0,0,0,0,13,22,396,0,22,33,9,0,10,193,0,1895,100,3,0,0,14,10,1279,0,46,0,0,2406,0,0,0,0,52,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,332,0,235,0,0,0,36,76,296,1617,361,0,0,0,0,1,0,5,0,0,0,0,0,0,2631,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1444,48,0,0,1553,0,2907,0,6,0,562,52,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,278,538,0,0,215,0,0,0,0,0,9929,0,0,192,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,77,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1610,1652,4 +119,0,0,29,11,90,157,27,271,30,38,0,0,2,66,1,565,0,20,45,0,98,2,6,0,33,22,0,17,0,8,2,0,10,38,0,100,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,345,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2588,90,1775,0,49,0,0,0,0,0,21,15,0,0,0,0,13,22,300,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,586,0,46,0,0,3225,0,0,0,0,45,16,1,0,32,0,0,1,0,0,0,20,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,295,0,235,0,0,0,42,74,342,592,305,0,0,0,0,1,0,6,0,0,0,0,0,0,2218,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1445,49,0,0,1497,0,2886,0,6,0,502,373,0,0,0,0,0,0,0,0,0,1120,1,0,0,0,151,0,0,0,0,31,283,149,0,0,155,0,0,0,0,0,10430,0,0,169,4,0,1,5,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,10,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,63,0,0,0,0,121,138,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,187,0,3,1716,1618,4 +13,0,0,43,6,42,134,3,234,80,423,0,0,0,378,5,202,0,11,5,0,1,0,15,0,2,15,0,3,0,5,1,0,5,14,0,45,258,36,2,999,0,0,0,1,0,0,1,1,0,0,0,6,247,0,0,0,0,0,1,0,0,0,1,0,16,0,0,3338,42,1411,0,10,0,0,0,0,0,3,6,0,0,0,0,13,16,485,0,3,14,5,0,8,155,0,1353,145,3,1,0,7,6,2015,0,5,0,0,2319,0,0,0,0,12,3,0,0,0,0,0,1,0,0,0,11,0,0,3,0,0,0,0,2,0,0,0,0,0,0,0,2,0,1,0,3,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,24,0,0,0,0,0,0,374,0,93,0,0,0,13,26,106,1189,444,0,0,0,0,1,0,0,0,0,3,2,1,0,1937,0,0,0,0,0,0,0,0,0,2,0,0,3,0,2,0,0,0,0,2,0,285,192,816,55,0,0,730,0,3047,0,2,0,362,134,0,0,0,0,0,0,0,0,0,1387,1,0,4,0,21,0,0,0,0,58,199,358,0,0,355,0,4,0,1,2,2952,0,0,34,0,0,1,0,0,0,0,0,8,0,0,0,2,0,0,0,0,0,187,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,2,46,1,1,1,1,10,0,0,0,0,35,59,34,0,26,0,0,0,0,0,0,632,7,0,0,0,0,0,0,0,0,0,0,0,3,1,1,92,0,0,0,0,0,0,0,0,1,0,0,5,0,1,4443,119,4 +0,0,0,5,0,35,25,0,48,3,24,0,0,7,4,0,764,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12515,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,689,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41050,35,930,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6687,0,0,1,0,0,0,0,0,366,25,1,0,0,2,0,852,0,0,92,0,4333,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1622,0,32,0,0,0,12,15,489,2094,1601,0,0,0,0,1,0,3,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,284,5,0,0,308,0,311,0,0,0,150,12,0,0,0,0,0,0,0,0,0,878,1,0,0,0,9,0,0,0,0,1,164,6,0,0,137,0,0,0,0,0,4570,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2428,22,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,1,0,0,14,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,42,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,7,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,80,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,48,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,1,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,36,4 +1,0,2,0,1,23,3,0,26,0,3,0,1,0,2,0,130,0,6,1,0,1,0,1,0,46,0,0,5,0,1,0,0,0,5,1,23,15,34,0,13,0,0,0,1,0,0,2,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,0,0,0,4188,24,213,0,6,0,0,0,0,0,7,0,0,0,0,0,1,4,763,0,0,5,0,0,1,0,0,14,0,4,0,0,6,0,178,0,0,0,0,417,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,517,1,34,0,0,0,0,43,35,16,537,0,0,0,0,1,0,0,0,0,0,42,1,4,946,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,15,13,160,1,0,0,195,0,544,0,0,0,101,17,0,0,0,0,0,0,0,0,0,171,1,0,0,0,3,0,0,0,0,0,103,67,0,2,0,0,0,0,0,0,456,0,0,1028,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,2,0,51,0,0,0,0,3,28,254,0,52,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,315,2308,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,20,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,20,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,35,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,5,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,2,0,0,407,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,130,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,47,3,0,0,47,0,143,0,0,0,5,4,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +120,0,0,29,11,90,157,27,271,30,38,0,0,2,66,1,565,0,20,44,0,99,2,6,0,34,22,0,16,0,8,2,0,10,38,0,100,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,344,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2578,90,1772,0,50,0,0,0,0,0,21,15,0,0,0,0,13,22,298,0,27,38,10,0,8,37,0,729,70,3,0,0,14,11,586,0,46,0,0,2305,0,0,0,0,46,16,1,0,31,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,292,0,233,0,0,0,42,74,346,592,300,0,0,0,0,1,0,6,0,0,0,0,0,0,2235,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1440,49,0,0,1498,0,2939,0,6,0,502,260,0,0,0,0,0,0,0,0,0,1120,1,0,0,0,151,0,0,0,0,31,283,149,0,0,155,0,0,0,0,0,10431,0,0,168,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,7,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,63,0,0,0,0,123,138,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,245,0,2,1721,1624,4 +118,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,556,0,20,45,0,98,2,6,0,32,22,0,17,0,7,3,0,11,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,33,319,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2499,89,1773,0,48,0,0,0,0,0,21,15,0,0,0,0,13,22,271,0,27,38,11,0,8,37,0,727,70,3,0,0,14,11,583,0,46,0,0,2254,0,0,0,0,45,15,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,8,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,282,0,225,0,0,0,41,73,334,587,293,0,0,0,0,1,0,6,0,0,0,0,0,0,2063,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1462,49,0,0,1495,0,2942,0,6,0,503,369,0,0,0,0,0,0,0,0,0,1111,1,0,0,0,151,0,0,0,0,28,282,149,0,0,155,0,0,0,0,0,10404,0,0,158,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,7,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,61,0,0,0,0,117,137,326,0,72,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,246,0,2,1604,1616,4 +152,0,0,29,10,85,190,22,435,30,75,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,95,301,0,0,711,0,0,0,1,0,0,3,0,0,0,0,28,364,0,0,0,0,0,1,0,3,0,12,0,85,0,0,2887,85,1532,0,39,0,0,0,0,0,70,12,0,0,0,0,13,22,415,0,22,33,9,0,10,208,0,2006,100,3,0,0,14,10,1354,0,46,0,0,2099,0,0,0,0,51,41,0,0,28,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,328,0,238,0,0,0,36,76,300,1713,358,0,0,0,0,1,0,5,0,0,0,0,0,0,2691,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1441,48,0,0,1559,0,2903,0,6,0,566,34,0,0,0,0,0,0,0,0,0,1161,1,0,0,0,30,0,0,0,0,22,280,577,0,0,215,0,0,0,0,0,9946,0,0,176,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,77,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,747,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1624,1660,4 +103,0,0,29,11,91,156,27,271,30,34,0,0,2,66,1,565,0,20,44,0,99,2,6,0,33,22,0,21,0,7,3,0,10,40,0,101,301,160,0,392,0,0,0,1,0,0,4,0,0,0,0,34,344,0,0,0,0,0,1,0,3,0,12,0,51,0,0,2476,91,1774,0,54,0,0,0,0,0,21,15,0,0,0,1,13,24,291,0,27,40,10,0,7,29,0,660,55,4,0,0,14,11,561,0,46,0,0,2169,0,0,0,0,42,10,1,0,30,0,0,1,0,0,0,24,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,25,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,297,0,234,0,0,0,42,67,338,512,305,0,0,0,0,1,0,7,0,0,0,0,0,0,2049,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,679,336,1420,49,0,0,1507,0,2916,0,6,0,512,214,0,0,0,0,0,0,0,0,0,1115,1,0,0,0,151,0,0,0,0,29,283,137,0,0,125,0,0,0,0,0,9865,0,0,175,4,0,1,6,0,0,0,0,6,0,0,0,2,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,11,1,0,0,0,0,3,17,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,57,0,0,0,0,119,141,381,0,77,9,0,0,0,0,0,308,10,0,0,0,0,0,0,1,0,0,0,0,11,0,5,34,0,0,0,0,0,0,0,0,117,0,0,188,0,2,1654,1622,4 +0,0,0,9,0,42,72,0,67,6,68,0,0,10,5,0,1329,0,6,1,0,0,0,8,0,11,0,0,40,0,1,0,0,0,1,7087,42,6,0,0,62,0,2,0,1,0,0,2,0,0,0,0,1,1409,0,0,0,0,0,1,0,0,0,0,0,4,0,0,124770,42,1742,0,37,0,0,0,0,0,128,0,0,0,0,0,8,667,24052,0,0,1,0,0,0,0,0,1278,40,3,0,0,2,0,1524,0,0,1363,0,15551,0,0,0,0,4,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,12,12,12,0,0,0,8107,0,46,0,0,0,24,27,972,6453,8060,0,0,0,0,1,0,3,0,0,0,0,0,0,5488,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,173,34,363,9,0,0,440,0,380,1,0,0,244,20,0,0,0,0,0,0,0,0,0,1557,1,0,0,0,9,0,0,0,0,1,183,34,0,0,966,0,0,0,0,0,11816,1,0,2167,66,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,66,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,108,0,0,0,0,1,43,275,0,38,14,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6717,396,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,3,0,28,6,0,0,22,0,0,0,1,0,0,5,0,0,0,0,2,162,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1714,28,78,0,3,0,0,0,0,0,25,0,0,0,0,0,7,19,208,0,0,3,0,0,0,0,0,79,5,10,1,0,2,0,32,0,0,0,0,695,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,179,0,135,0,0,0,1,4,184,15,166,0,0,0,0,1,0,3,0,0,0,0,0,0,334,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,32,10,370,4,0,0,168,0,320,0,0,0,58,15,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,110,31,0,0,0,0,0,0,0,0,98,0,0,112,3,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,31,233,0,4,9,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,206,143,4 +1,0,0,3,0,27,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,27,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,109,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1061,27,57,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,174,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,522,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,134,0,50,0,0,0,1,4,185,14,131,0,0,0,0,1,0,3,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,128,3,0,0,139,0,286,0,0,0,38,6,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,111,19,0,0,0,0,0,0,0,0,105,0,0,129,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,1,0,0,0,0,1,29,72,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,181,58,4 +58,0,0,2,1,62,8,4,34,5,8,0,3,0,10,0,44,0,7,10,0,1,1,6,0,24,12,0,8,0,4,1,0,1,25,0,63,12,0,0,146,0,0,0,1,0,0,0,0,0,0,0,21,92,0,0,0,0,0,1,0,1,0,0,0,7,0,0,957,62,249,0,27,0,0,0,0,0,6,3,0,0,0,0,13,18,128,0,4,25,1,0,3,8,0,215,15,0,0,0,6,1,171,0,5,0,0,1421,0,0,0,0,18,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,10,10,10,0,0,0,147,0,86,0,0,0,24,44,230,190,125,0,0,0,0,1,0,3,0,0,0,0,0,0,454,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,57,286,3,0,0,243,0,403,0,0,0,103,37,0,0,0,0,0,0,0,0,0,114,0,0,0,0,18,0,0,0,0,20,153,19,0,0,30,0,0,0,0,0,143,0,0,5,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,65,1,1,1,0,17,0,0,0,0,9,88,41,0,40,9,0,0,0,0,0,132,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,143,1231,4 +54,0,0,1,1,59,12,4,59,2,13,0,3,0,5,0,45,0,7,10,0,1,1,6,0,23,12,0,8,0,4,1,0,1,23,0,60,12,0,0,179,0,0,0,1,0,0,0,0,0,0,0,20,98,0,0,0,0,0,1,0,1,0,0,0,7,0,0,1037,59,285,0,26,0,0,0,0,0,10,3,0,0,0,0,13,18,137,0,4,23,1,0,4,31,0,396,30,0,0,0,6,1,270,0,2,0,0,8737,0,0,0,0,16,11,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,29,10,10,10,0,0,0,155,0,95,0,0,0,23,43,226,346,132,0,0,0,0,1,0,3,0,0,0,0,0,0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,290,2,0,0,242,0,427,0,0,0,105,35,0,0,0,0,0,0,0,0,0,144,0,0,0,0,18,0,0,0,0,19,150,72,0,0,60,0,0,0,0,0,709,0,0,7,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,19,0,0,0,0,9,83,39,0,39,9,0,0,0,0,0,190,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,159,995,4 +11,0,0,9,0,23,25,0,118,10,32,0,0,0,19,0,21,0,6,2,0,0,0,2,0,6,3,0,7,0,2,0,0,0,14,0,23,6,0,0,222,0,0,0,1,0,0,6,0,0,0,0,7,109,0,0,0,0,0,1,0,0,0,18,0,30,0,0,22468,23,267,0,15,0,0,0,0,0,28,0,0,0,0,0,3,11,1944,0,0,14,0,0,2,97,0,814,75,10,0,0,2,0,538,0,12,0,0,509,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,14,0,0,0,0,0,0,1944,0,108,0,0,0,8,14,43,686,1935,0,0,0,0,1,0,0,0,0,0,0,0,0,6734,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,23,171,10,0,0,253,0,382,0,0,0,185,10,0,0,0,0,0,0,0,0,0,221,1,0,0,0,4,0,0,0,0,11,117,320,0,0,186,0,0,0,0,0,1538,0,0,6704,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,8,0,0,0,0,1,37,241,0,18,0,0,0,0,0,0,250,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1735,43,4 +0,0,0,5,0,36,25,0,48,3,24,0,0,7,4,0,784,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12406,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,725,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40135,36,950,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6387,0,0,1,0,0,0,0,0,365,25,1,0,0,2,0,872,0,0,90,0,4978,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1382,0,35,0,0,0,12,15,493,2093,1361,0,0,0,0,1,0,3,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,281,5,0,0,310,0,298,0,0,0,147,17,0,0,0,0,0,0,0,0,0,898,1,0,0,0,9,0,0,0,0,1,165,6,0,0,136,0,0,0,0,0,4742,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2478,22,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,47,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,70,0,46,0,0,0,36,8,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,33,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,4,4 +0,0,0,5,0,35,25,0,47,3,24,0,0,7,4,0,729,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12427,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,641,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40530,35,894,0,24,0,0,0,0,0,46,0,0,0,0,0,8,94,6669,0,0,1,0,0,0,0,0,366,25,1,0,0,2,0,817,0,0,88,0,4650,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1547,0,32,0,0,0,13,16,490,2079,1526,0,0,0,0,1,0,3,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,285,5,0,0,311,0,311,0,0,0,153,15,0,0,0,0,0,0,0,0,0,842,1,0,0,0,9,0,0,0,0,1,164,6,0,0,135,0,0,0,0,0,4543,1,0,1020,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,62,0,0,0,0,1,36,208,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2451,22,4 +0,0,0,4,1,11,26,1,32,0,4,0,0,0,5,0,69,0,8,1,0,0,0,1,0,0,3,0,1,0,1,1,0,1,2,0,12,54,0,0,14,0,1,0,1,0,0,1,0,0,0,0,1,31,0,0,0,0,0,1,0,0,0,0,0,4,0,0,951,11,104,0,3,0,0,0,0,0,4,0,0,0,0,0,1,4,494,0,1,2,1,0,1,0,0,49,0,1,0,0,4,1,36,0,2,0,0,113,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,38,0,27,0,0,0,2,9,28,22,50,0,0,0,0,1,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,112,14,208,5,0,0,220,0,271,0,1,0,50,1,0,0,0,0,0,0,0,0,0,144,1,0,0,0,2,0,0,0,0,2,105,3,0,0,0,0,0,0,0,0,304,0,0,739,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,1,1,1,0,6,0,0,0,0,9,14,3,0,6,0,0,0,0,0,0,43,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,266,8,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,124,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1097,28,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,196,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,428,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,146,0,47,0,0,0,1,4,182,14,144,0,0,0,0,1,0,3,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,32,10,128,4,0,0,152,0,306,0,0,0,42,12,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,110,24,0,0,0,0,0,0,0,0,105,0,0,116,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,86,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,187,52,4 +0,0,0,5,0,36,25,0,48,3,24,0,0,7,4,0,784,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12320,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,785,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39711,36,950,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6499,0,0,1,0,0,0,0,0,365,25,1,0,0,2,0,872,0,0,90,0,4746,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1378,0,34,0,0,0,12,15,496,2085,1356,0,0,0,0,1,0,3,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,279,5,0,0,311,0,296,0,0,0,150,16,0,0,0,0,0,0,0,0,0,898,1,0,0,0,9,0,0,0,0,1,167,6,0,0,136,0,0,0,0,0,4742,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2499,23,4 +1,0,0,3,0,29,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,119,0,0,0,0,0,1,0,0,0,0,0,2,0,0,891,29,51,0,3,0,0,0,0,0,10,0,0,0,0,0,7,15,164,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,484,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,120,0,51,0,0,0,1,4,186,14,122,0,0,0,0,1,0,3,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,2,1,7,0,0,0,0,1,0,32,10,134,3,0,0,170,0,299,0,0,0,64,7,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,111,49,0,0,0,0,0,0,0,0,84,0,0,36,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,228,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,156,51,4 +6,0,0,10,0,65,181,0,121,6,15,0,0,2,34,3,66,0,63,4,0,0,0,9,0,8,24,0,15,0,12,4,0,0,24,0,65,206,0,0,311,0,0,0,1,0,0,7,1,0,0,0,16,252,0,0,0,0,0,1,0,0,0,5,0,16,0,0,8783,65,566,0,29,0,0,0,0,0,36,0,0,0,0,1,12,27,821,0,0,24,0,0,1,94,0,861,60,18,0,0,2,0,747,0,10,0,0,3991,0,0,0,0,4,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,771,0,174,0,0,0,30,53,280,1370,750,0,0,0,0,1,0,14,0,0,0,0,0,0,2851,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,26,457,11,0,0,661,0,1370,0,0,0,506,118,0,0,0,0,0,0,0,0,0,485,1,0,8,0,13,0,0,0,0,15,173,399,0,0,293,0,0,0,0,0,1425,0,0,1966,3,0,1,1,1,0,0,0,26,0,0,0,2,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,3,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,110,1,1,1,0,38,0,0,0,0,1,89,659,0,54,9,0,0,0,0,0,301,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1194,1493,4 +1,0,0,57,0,13,2,0,166,0,17,0,0,0,111,0,80,0,10,1,0,0,0,1,0,0,0,0,1,0,1,1,0,0,3,0,13,6,43,0,101,0,1,0,1,0,0,1,1,0,0,0,0,299,0,0,0,0,0,1,0,0,0,0,0,2,0,0,47097,13,292,0,3,0,0,0,0,0,13,0,0,0,0,0,1,6,18307,0,0,3,0,0,0,0,0,9,0,4,0,0,2,0,371,0,0,0,0,10852,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,1,0,9360,0,67,0,0,0,1,4,27,28218,9365,0,0,0,0,1,0,0,0,0,1,0,0,0,833,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,412,5,287,56,0,0,289,0,4337,0,0,0,111,8,0,0,0,0,0,0,0,0,0,386,1,0,2,0,2,0,0,0,0,0,214,11,0,0,0,0,0,0,0,0,10006,0,0,734,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,363,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,1,0,0,0,0,1,16,409,0,3,0,0,1,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10305,123,4 +0,0,0,3,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,2,0,0,20,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,21,0,0,0,0,3,21,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,3,0,0,32,0,96,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,7,4 +0,0,0,0,0,8,40,0,48,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,142,8,130,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,44,0,331,15,0,0,0,4,0,226,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,33,0,0,0,0,3,21,203,54,0,0,0,0,0,0,0,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,86,0,58,0,0,0,52,3,0,0,0,0,0,0,0,0,0,113,0,0,0,0,2,0,0,0,0,0,91,88,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,104,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,4,4 +82,0,0,25,8,75,162,17,378,26,67,0,0,2,56,0,309,0,18,14,0,5,1,6,0,25,13,0,14,0,4,3,0,7,28,0,83,253,0,0,623,0,0,0,1,0,0,3,0,0,0,0,24,317,0,0,0,0,0,1,0,2,0,12,0,74,0,0,2773,75,1270,0,35,0,0,0,0,0,69,9,0,0,0,0,13,22,334,0,17,28,7,0,9,188,0,1805,100,3,0,0,12,8,1193,0,40,0,0,2127,0,0,0,0,28,31,0,0,30,0,0,1,0,0,0,16,0,0,0,0,0,0,0,7,0,0,0,8,0,0,0,0,0,1,0,17,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,10,10,10,0,0,0,270,0,214,0,0,0,29,48,279,1497,312,0,0,0,0,1,0,4,0,0,0,0,0,0,2343,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,556,117,1188,42,0,0,1333,0,2547,0,5,0,497,43,0,0,0,0,0,0,0,0,0,992,1,0,0,0,26,0,0,0,0,18,254,522,0,0,215,0,0,0,0,0,9787,0,0,153,3,0,1,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,82,1,1,1,0,29,0,0,0,0,65,111,291,0,50,9,0,0,0,0,0,664,8,0,0,0,0,0,0,0,0,0,0,0,9,0,1,36,0,0,0,0,0,0,0,0,0,0,0,11,0,3,1527,776,4 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,59,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,8,39,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,27,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,15,0,0,0,0,96,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,30,0,0,0,0,2,22,6,46,0,0,0,0,1,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,88,8,0,0,89,0,218,0,0,0,25,5,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,94,13,0,0,0,0,0,0,0,0,29,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,32,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,63,21,4 +1,0,0,3,0,29,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,117,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1094,29,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,176,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,470,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,142,0,49,0,0,0,1,4,186,14,140,0,0,0,0,1,0,3,0,0,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,0,0,2,1,10,0,0,0,0,1,0,32,10,136,3,0,0,163,0,316,0,0,0,54,8,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,111,37,0,0,0,0,0,0,0,0,91,0,0,106,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,145,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,175,57,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,405,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,135,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,30,0,27,0,0,0,2,4,27,94,44,0,0,0,0,1,0,0,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,46,3,0,0,47,0,145,0,0,0,5,4,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,11,4 +76,0,0,0,4,162,4,16,72,2,15,0,2,0,4,0,54,0,6,12,0,4,4,2,0,15,3,0,22,0,13,1,0,4,134,0,166,12,0,0,203,0,0,0,0,0,0,0,0,0,0,0,28,108,0,0,0,0,0,1,0,0,0,0,0,1,0,0,7660,162,1847,0,51,0,0,0,0,0,710,12,0,0,0,0,5,5,258,0,16,134,4,0,2,21,0,301,40,0,0,0,6,4,188,0,0,0,0,4409,0,0,0,0,9,26,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,2,0,14,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,24,0,0,0,0,0,0,237,0,401,0,0,0,41,46,246,350,254,0,0,0,0,0,0,0,0,0,0,0,0,0,5860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,27,689,6,0,0,1347,0,469,0,0,0,1151,141,0,0,0,0,0,0,0,0,0,157,0,0,0,0,22,0,0,0,0,28,245,61,0,0,120,0,0,0,0,0,947,0,0,13,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,161,1,1,1,0,49,0,0,0,24,33,300,134,0,54,0,0,0,0,0,0,262,5,0,0,0,0,0,0,0,0,0,0,0,4,0,1,2,0,0,0,0,0,0,0,0,0,0,0,6,0,0,2523,923,4 +1,0,0,0,0,9,3,0,4,0,2,0,1,0,2,0,10,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,9,23,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,13,0,0,0,0,3,22,9,22,0,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,13,38,0,0,0,44,0,63,0,0,0,9,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,4,0,0,0,0,1,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,5,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,8,4 +151,0,0,29,10,85,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,15,0,7,3,0,9,33,0,95,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,375,0,0,0,0,0,1,0,3,0,10,0,83,0,0,2851,85,1523,0,40,0,0,0,0,0,72,12,0,0,0,0,13,22,405,0,22,33,9,0,10,198,0,1933,100,3,0,0,14,10,1305,0,46,0,0,2180,0,0,0,0,52,40,0,0,30,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,330,0,236,0,0,0,36,75,300,1650,360,0,0,0,0,1,0,5,0,0,0,0,0,0,2712,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1450,48,0,0,1559,0,2884,0,6,0,566,43,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,280,551,0,0,215,0,0,0,0,0,9940,0,0,177,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,76,0,0,0,0,81,128,309,0,64,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1625,1652,4 +1,0,0,5,0,30,5,0,20,0,2,0,0,2,3,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,0,0,0,0,4,0,30,6,0,0,23,0,0,0,1,0,0,3,0,0,0,0,2,143,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1451,30,69,0,3,0,0,0,0,0,19,0,0,0,0,0,7,17,225,0,0,4,0,0,0,0,0,79,5,6,0,0,2,0,33,0,0,0,0,533,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,182,0,64,0,0,0,1,4,185,15,176,0,0,0,0,1,0,3,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,3,1,6,0,0,0,0,1,0,32,10,158,6,0,0,181,0,399,0,0,0,75,7,0,0,0,0,0,0,0,0,0,56,1,0,0,0,8,0,0,0,0,1,113,48,0,0,0,0,0,0,0,0,107,0,0,154,3,0,1,1,0,0,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,1,0,0,0,0,1,34,167,0,3,9,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,222,59,4 +343,0,0,24,19,173,332,43,697,83,110,0,0,2,145,0,1325,0,27,27,0,10,6,8,2,47,39,0,21,0,15,5,0,17,103,0,192,463,9322,0,1193,0,0,0,1,0,0,1,1,0,0,0,58,490,0,0,0,0,0,1,0,3,0,22,0,154,0,0,6668,173,3429,0,76,0,0,0,0,0,108,27,0,0,0,0,20,27,1103,0,43,103,17,0,13,317,0,3063,175,4,0,0,20,19,2972,0,108,1,0,6400,0,0,0,0,115,76,2,0,37,0,0,1,0,0,0,27,0,0,0,0,0,0,0,19,0,0,0,24,0,0,0,2,0,2,0,31,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,89,0,0,0,0,0,0,2,0,0,0,0,0,3,15,0,0,0,3,0,0,0,0,14,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,117,12,12,12,0,0,2,803,2,436,0,0,2,76,183,436,187913,835,0,0,0,0,1,0,11,0,0,0,0,0,0,4392,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,973,280,2372,51,0,0,2496,0,4357,0,9,0,979,175334,0,0,0,0,0,0,0,0,0,2638,0,0,2,0,53,0,0,0,0,44,423,765,0,0,418,0,0,0,0,0,12099,0,0,161,3,0,1,10,0,0,0,0,6,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,3,99,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,9,178,1,1,1,0,256,0,0,0,0,236,295,218,1,118,9,0,0,0,0,0,1208,21,0,0,0,0,0,0,0,0,0,0,0,20,0,1,93,0,0,0,0,0,0,0,23,10,0,0,34,0,2,2292,2495,4 +0,0,0,8,2,15,50,2,57,9,7,0,0,0,18,4,128,0,11,1,0,0,0,1,0,0,6,0,2,0,2,1,0,2,4,0,17,136,0,0,44,0,0,0,1,0,0,6,0,0,0,0,2,117,0,0,0,0,0,1,0,0,0,0,0,16,0,0,7883,15,236,0,4,0,0,0,0,0,22,0,0,0,0,0,1,9,2200,0,2,4,2,0,2,0,0,89,0,9,0,0,6,2,115,0,13,0,0,569,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,2038,0,300,0,0,0,4,11,40,26,2086,0,0,0,0,1,0,0,0,0,0,0,0,0,3080,0,49,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,220,37,405,10,0,0,457,0,907,0,2,0,160,13,0,0,0,0,0,0,0,0,0,275,1,0,0,0,2,0,0,0,0,1,133,47,0,0,0,0,0,0,0,0,675,0,0,2324,0,0,1,0,0,0,0,0,16,0,0,0,2,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,13,1,1,1,0,6,0,0,0,0,17,21,168,0,11,0,0,0,0,0,0,90,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2681,58,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,2,0,0,410,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,131,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,30,0,27,0,0,0,2,4,27,94,44,0,0,0,0,1,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,49,3,0,0,47,0,145,0,0,0,5,9,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +1,0,0,3,0,28,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,116,0,0,0,0,0,1,0,0,0,0,0,2,0,0,993,28,57,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,154,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,533,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,123,0,49,0,0,0,1,4,182,14,121,0,0,0,0,1,0,3,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,2,1,7,0,0,0,0,1,0,32,10,132,3,0,0,186,0,315,0,0,0,81,8,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,110,64,0,0,0,0,0,0,0,0,80,0,0,41,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,226,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,153,54,4 +0,0,0,5,0,35,25,0,49,3,24,0,0,7,4,0,799,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12504,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,732,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40137,35,967,0,24,0,0,0,0,0,46,0,0,0,0,0,8,94,6401,0,0,1,0,0,0,0,0,365,25,1,0,0,2,0,887,0,0,86,0,4677,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1543,0,34,0,0,0,13,16,490,2078,1522,0,0,0,0,1,0,3,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,283,5,0,0,307,0,294,0,0,0,147,18,0,0,0,0,0,0,0,0,0,914,1,0,0,0,9,0,0,0,0,1,164,6,0,0,134,0,0,0,0,0,4570,1,0,996,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,62,0,0,0,0,1,36,194,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2441,23,4 +0,0,0,4,1,12,26,1,32,0,4,0,0,0,5,0,69,0,8,1,0,0,0,1,0,0,3,0,1,0,1,1,0,1,2,0,13,54,0,0,14,0,1,0,1,0,0,1,0,0,0,0,1,32,0,0,0,0,0,1,0,0,0,0,0,4,0,0,939,12,104,0,3,0,0,0,0,0,4,0,0,0,0,0,1,4,482,0,1,2,1,0,1,0,0,49,0,1,0,0,4,1,36,0,2,0,0,117,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,39,0,28,0,0,0,2,9,32,22,51,0,0,0,0,1,0,0,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,112,14,210,5,0,0,223,0,271,0,1,0,50,1,0,0,0,0,0,0,0,0,0,144,1,0,0,0,2,0,0,0,0,2,106,3,0,0,0,0,0,0,0,0,334,0,0,739,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,1,1,1,0,6,0,0,0,0,9,15,3,0,6,0,0,0,0,0,0,43,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,268,7,4 +113,0,0,29,11,90,156,27,264,30,34,0,0,2,66,2,738,0,20,45,0,98,2,6,0,33,22,0,17,0,8,2,0,10,38,0,100,301,160,0,373,0,0,0,1,0,0,3,0,0,0,0,34,340,0,0,0,0,0,1,0,3,0,12,0,51,0,0,2532,90,1929,0,51,0,0,0,0,0,18,15,0,0,0,0,13,22,288,0,27,38,10,0,7,29,0,658,55,3,0,0,14,11,603,0,46,0,0,2538,0,0,0,0,44,13,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,29,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,60,10,10,10,0,0,0,302,0,276,0,0,0,42,72,378,530,292,0,0,0,0,1,0,6,0,0,0,0,0,0,2126,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1440,49,0,0,1493,0,2971,0,6,0,498,534,0,0,0,0,0,0,0,0,0,1282,1,0,0,0,151,0,0,0,0,31,283,135,0,0,125,0,0,0,0,0,10645,0,0,157,4,0,1,6,0,0,0,0,4,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,1,0,0,108,108,0,0,10,1,0,0,0,0,3,19,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,58,0,0,0,0,157,138,326,0,73,9,0,0,0,0,0,295,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,34,0,0,0,0,0,0,0,0,117,0,0,186,0,3,1688,1586,4 +123,0,0,29,11,92,160,27,292,30,44,0,0,2,66,1,568,0,20,46,0,97,2,6,0,34,22,0,22,0,8,2,0,10,40,0,102,301,159,0,443,0,0,0,1,0,0,3,0,0,0,0,34,348,0,0,0,0,0,1,0,3,0,12,0,55,0,0,2635,92,1835,0,56,0,0,0,0,0,26,15,0,0,0,0,13,22,302,0,27,40,10,0,9,55,0,878,85,3,0,0,14,11,682,0,46,0,0,2586,0,0,0,0,46,18,1,0,30,0,0,1,0,0,0,23,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,307,0,250,0,0,0,42,74,343,709,316,0,0,0,0,1,0,6,0,0,0,0,0,0,2293,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,681,338,1478,49,0,0,1510,0,3011,0,6,0,514,175,0,0,0,0,0,0,0,0,0,1153,1,0,0,0,151,0,0,0,0,31,283,189,0,0,185,0,0,0,0,0,10434,0,0,162,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,12,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,72,0,0,0,0,121,142,328,0,79,9,0,0,0,0,0,375,10,0,0,0,0,0,0,1,0,0,0,0,11,0,5,38,0,0,0,0,0,0,0,0,117,0,0,201,0,3,1736,1696,4 +6,0,0,0,0,17,4,0,11,0,2,0,2,0,2,0,21,0,6,3,0,0,0,0,0,1,0,0,1,0,5,0,0,0,5,0,17,10,0,0,31,0,0,0,1,0,0,1,0,0,0,0,6,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,156,17,42,0,8,0,0,0,0,0,2,0,0,0,0,1,2,4,6,0,0,5,0,0,2,0,0,35,0,0,0,0,6,0,27,0,0,0,0,258,0,0,0,0,1,0,0,0,3,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,25,0,48,0,0,0,11,10,37,32,37,0,0,0,0,1,0,1,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,20,25,98,0,0,0,97,0,1020,0,0,0,33,9,0,0,0,0,0,0,0,0,0,48,1,0,0,0,3,0,0,0,0,7,99,12,0,0,0,0,1,0,0,0,39219,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,11,0,0,0,0,1,22,25,0,7,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,41,4 +10,0,0,9,1,24,46,1,45,1,3,0,1,0,20,0,79,0,9,1,0,0,0,1,0,1,0,0,5,0,7,0,0,1,7,0,25,61,0,0,97,0,3,0,1,0,0,3,0,0,0,0,7,85,0,0,0,0,0,1,0,0,0,0,0,3,0,0,2177,24,182,0,13,0,0,0,0,0,14,0,0,0,0,0,1,8,676,0,1,7,1,0,2,0,0,67,0,5,0,0,7,1,142,0,1,0,0,704,0,0,0,0,3,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,2,0,0,0,11,0,0,0,0,0,0,0,0,2,4,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,182,0,67,0,0,0,14,12,48,82,191,0,0,0,0,1,0,0,0,0,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,138,31,343,16,0,0,324,0,448,0,1,0,115,29,0,0,0,0,0,0,0,0,0,203,1,0,0,0,2,0,0,0,0,3,120,47,0,0,0,0,0,0,0,0,573,0,0,972,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,371,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,22,1,1,1,0,19,0,0,0,0,9,32,144,0,13,0,0,1,0,0,0,67,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,2,436,39,4 +0,0,0,5,0,37,25,0,46,3,24,0,0,7,4,0,730,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12505,37,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,722,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39782,37,894,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6577,0,0,1,0,0,0,0,0,364,25,1,0,0,2,0,818,0,0,88,0,4604,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,1423,0,32,0,0,0,12,15,503,2087,1400,0,0,0,0,1,0,3,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,281,5,0,0,309,0,311,0,0,0,144,16,0,0,0,0,0,0,0,0,0,842,1,0,0,0,9,0,0,0,0,1,164,6,0,0,135,0,0,0,0,0,4636,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,58,0,0,0,0,1,38,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2488,22,4 +64,0,0,1,1,60,12,4,56,2,13,0,3,0,5,0,37,0,7,11,0,1,1,7,0,16,3,0,8,0,5,1,0,1,22,0,61,12,0,0,182,0,0,0,1,0,0,0,0,0,0,0,14,104,0,0,0,0,0,1,0,1,0,0,0,7,0,0,946,60,274,0,20,0,0,0,0,0,10,3,0,0,0,0,15,20,145,0,4,22,1,0,4,31,0,390,30,0,0,0,6,1,233,0,2,0,0,12506,0,0,0,0,15,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,8,0,0,0,4,0,0,0,0,0,1,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,151,0,110,0,0,0,18,25,232,336,140,0,0,0,0,1,0,3,0,0,0,0,0,0,536,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,298,2,0,0,244,0,418,0,0,0,101,21,0,0,0,0,0,0,0,0,0,133,0,0,0,0,20,0,0,0,0,14,150,72,0,0,60,0,0,0,0,0,693,0,0,8,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,21,0,0,0,0,9,83,38,0,24,9,0,0,0,0,0,198,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,180,784,4 +0,0,0,5,0,36,25,0,47,3,24,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,24,0,1,0,0,0,1,12398,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,748,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40992,36,912,0,22,0,0,0,0,0,46,0,0,0,0,0,8,90,6692,0,0,1,0,0,0,0,0,362,25,1,0,0,2,0,836,0,0,88,0,4934,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1593,0,32,0,0,0,11,14,497,2082,1571,0,0,0,0,1,0,3,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,276,5,0,0,307,0,298,0,0,0,145,13,0,0,0,0,0,0,0,0,0,861,1,0,0,0,9,0,0,0,0,1,163,6,0,0,135,0,0,0,0,0,4619,1,0,990,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,54,0,0,0,0,1,37,208,0,23,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2478,23,4 +2,0,0,4,0,27,6,0,16,0,2,0,0,2,5,0,18,0,7,2,0,0,0,6,0,11,0,0,5,0,1,0,0,0,2,0,27,6,0,0,31,0,0,0,1,0,0,1,0,0,0,0,4,101,0,0,0,0,0,1,0,0,0,0,0,5,0,0,1177,27,48,0,6,0,0,0,0,0,6,0,0,0,0,1,7,15,139,0,0,2,0,0,0,0,0,76,5,1,0,0,2,0,34,0,0,0,0,1110,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,87,0,48,0,0,0,3,5,181,17,102,0,0,0,0,1,0,4,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,34,10,257,4,0,0,119,0,297,0,0,0,25,77,0,0,0,0,0,0,0,0,0,56,1,0,0,0,8,0,0,0,0,0,110,10,0,0,0,0,2,0,0,0,682,0,0,8,3,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,3,0,0,0,0,1,29,45,0,8,9,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,941,300062,4 +147,0,0,29,10,84,188,22,425,27,73,0,0,2,61,0,375,0,20,16,0,6,2,6,0,34,22,0,14,0,10,2,0,9,33,0,94,301,0,0,701,0,0,0,1,0,0,3,0,0,0,0,38,361,0,0,0,0,0,1,0,3,0,13,0,80,0,0,2900,84,1525,0,49,0,0,0,0,0,73,12,0,0,0,0,13,22,404,0,22,33,9,0,10,198,0,1956,100,3,0,0,14,10,1306,0,43,0,0,2136,0,0,0,0,50,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,34,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,335,0,243,0,0,0,48,88,296,1663,366,0,0,0,0,1,0,5,0,0,0,0,0,0,2720,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,143,1450,48,0,0,1558,0,2897,0,6,0,567,47,0,0,0,0,0,0,0,0,0,1144,1,0,0,0,30,0,0,0,0,32,280,551,0,0,215,0,0,0,0,0,9930,0,0,180,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,64,0,0,0,0,81,127,309,0,73,9,0,0,0,0,0,730,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,37,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1645,1862,4 +0,0,0,0,0,8,40,0,48,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,138,8,130,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,44,0,331,15,0,0,0,4,0,226,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,31,0,0,0,0,3,21,203,55,0,0,0,0,0,0,0,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,40,1,0,0,86,0,59,0,0,0,52,1,0,0,0,0,0,0,0,0,0,113,0,0,0,0,2,0,0,0,0,0,91,88,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,104,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,5,4 +0,0,0,10,0,18,4,0,25,1,7,0,0,0,4,0,19,0,7,1,0,0,0,1,0,0,0,0,5,0,8,0,0,0,5,0,18,6,0,0,36,0,0,0,1,0,0,1,0,0,0,0,7,67,1,0,0,0,0,1,0,0,0,2,0,7,0,0,15740,18,67,0,13,0,0,0,0,0,6,0,0,0,0,0,1,3,3010,0,0,5,0,0,1,9,0,107,15,1,0,0,2,0,66,0,1,0,0,539,0,0,0,0,2,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2217,0,59,0,0,0,14,12,42,148,2234,0,0,0,0,1,0,0,0,0,0,0,0,0,4046,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,7,119,14,0,0,99,0,241,0,0,0,30,4,0,0,0,0,0,0,0,0,0,66,1,0,0,0,2,0,0,0,0,5,102,20,0,0,31,0,0,0,0,0,1471,0,0,4330,0,0,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,19,0,0,0,8,1,23,12,0,13,0,0,0,0,0,0,58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,2,0,0,0,0,0,0,0,0,0,0,0,0,1,2012,60,4 +3,0,0,5,6,13,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,19,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,98,0,0,0,0,0,1,0,0,0,0,0,25,0,0,470,13,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,43,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,327,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,58,0,45,0,0,0,2,10,44,224,96,0,0,0,0,1,0,1,0,0,0,0,0,0,421,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,117,36,392,11,0,0,401,0,600,0,1,0,103,4,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,110,74,0,0,57,0,0,0,0,0,539,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,6,0,0,0,0,49,22,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,10,0,0,212,35,4 +216,0,0,31,19,95,190,32,359,26,47,0,0,2,64,1,672,0,22,59,0,114,1,6,0,47,13,0,22,0,4,3,0,18,39,0,113,352,160,0,373,0,0,0,1,0,0,1,1,0,0,0,44,349,0,0,0,0,0,1,0,2,0,12,0,50,0,0,2003,95,2369,0,65,0,0,0,0,0,14,36,0,0,0,0,14,21,161,0,32,39,18,0,9,37,0,799,70,4,0,0,16,19,612,0,45,0,0,2943,0,0,0,0,58,24,0,0,38,0,0,1,0,0,0,19,0,0,0,0,0,0,0,22,0,0,0,14,0,0,0,2,0,6,0,63,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,14,5,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,79,10,10,10,0,0,0,186,0,220,0,0,0,49,66,377,618,218,0,0,0,0,1,0,4,0,0,0,0,0,0,2624,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,780,345,1799,61,0,0,1859,0,3751,0,7,0,550,144,0,0,0,0,0,0,0,0,0,1357,1,0,2,0,180,0,0,0,0,41,316,86,0,0,155,0,0,0,0,0,9926,0,0,26,3,0,1,7,0,0,0,0,5,0,0,0,1,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,59,59,0,0,12,1,0,0,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,97,1,1,1,0,43,0,0,0,0,193,152,90,0,80,9,0,0,0,0,0,317,26,0,0,0,0,0,0,1,0,0,0,0,19,0,4,32,0,0,0,0,0,0,0,0,117,0,0,162,0,1,1731,992,4 +5,0,0,6,6,37,30,21,106,11,22,0,0,2,16,0,103,0,8,14,0,10,0,5,0,8,0,0,1,0,1,0,0,6,6,0,43,54,0,0,91,0,0,0,1,0,0,1,0,0,0,0,1,140,0,0,0,0,0,1,0,0,0,0,0,20,0,0,815,37,524,0,1,0,0,0,0,0,5,15,0,0,0,0,8,14,98,0,21,6,6,0,3,23,0,322,45,1,0,0,4,6,180,0,13,0,0,627,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,14,10,10,10,0,0,0,75,0,257,0,0,0,0,3,209,214,107,0,0,0,0,1,0,4,0,0,0,0,0,0,513,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,137,39,453,12,0,0,468,0,669,0,1,0,114,13,0,0,0,0,0,0,0,0,0,287,1,0,0,0,29,0,0,0,0,1,134,56,0,0,91,0,0,0,0,0,205,0,0,8,2,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,39,1,1,1,0,0,0,0,0,0,49,49,31,0,2,8,0,0,0,0,0,112,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,17,0,0,0,0,0,0,0,0,0,0,0,11,0,0,631,44,4 +77,0,7,19,8,92,180,5,911,43,75,0,0,2,74,1,10436,0,17,10,0,1,0,10,0,37,18,0,28,0,6,4,0,7,42,26,97,292,0,0,562,0,0,0,1,0,0,1,1,0,0,0,39,287,0,0,0,0,0,1,0,0,0,17,0,72,0,0,2196,92,11566,0,65,0,0,0,0,0,12,0,0,0,0,0,17,24,166,0,5,42,7,0,9,174,0,1847,205,4,0,0,17,8,11137,0,53,0,0,3012,0,0,0,0,22,11,2,0,1,0,0,1,0,0,0,13,0,0,0,0,0,0,0,10,0,0,0,6,0,0,0,2,0,3,0,23,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1198,10,10,10,0,0,0,164,0,189,0,0,0,47,64,327,1271,176,0,0,0,0,1,0,4,0,0,0,20113,3,1,1225,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,762,25298,1249,31,0,0,1229,0,5698,0,6,0,405,691,0,0,0,0,0,0,0,0,0,11696,1,0,2,0,21,0,0,0,0,32,270,381,0,7,518,0,0,0,0,0,21276,0,0,28,3,0,1,6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,39,0,0,1,0,0,0,0,0,0,0,0,48,48,0,0,9,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,5,88,1,1,1,0,52,0,0,0,0,93,139,86,0,84,9,0,0,0,0,0,642,9,0,0,0,0,0,0,0,0,0,0,0,6,1,3,53,0,0,0,0,0,0,0,0,0,0,0,12,0,1,560,1001,4 +94,0,0,0,12,83,16,48,157,3,31,0,2,0,5,0,117,0,7,31,0,12,12,3,0,2,3,0,19,0,38,1,0,12,55,0,95,12,0,0,183,0,0,0,0,0,0,0,0,0,0,0,40,110,0,0,0,0,0,1,0,0,0,0,0,3,0,0,766,83,1289,0,60,0,0,0,0,0,3,36,0,0,0,0,9,9,46,0,48,55,12,0,2,42,0,554,85,0,0,0,6,12,329,0,2,0,0,1961,0,0,0,0,29,23,0,0,3,0,0,0,0,0,0,15,0,0,0,0,0,0,0,22,0,0,0,23,0,0,0,0,0,1,0,20,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,0,0,0,0,0,0,78,0,111,0,0,0,78,80,143,416,112,0,0,0,0,0,0,0,0,0,0,0,0,0,746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,36,704,14,0,0,674,0,561,0,0,0,278,60,0,0,0,0,0,0,0,0,0,335,0,0,0,0,58,0,0,0,0,39,170,75,0,0,187,0,0,0,0,0,257,0,0,38,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,82,1,1,1,0,98,0,0,0,0,97,150,55,0,63,0,0,0,0,0,0,220,15,0,0,0,0,0,0,0,0,0,0,0,12,0,1,3,0,0,0,0,0,0,0,0,0,0,0,21,0,0,243,101,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,123,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1155,28,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,200,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,511,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,150,0,49,0,0,0,1,4,182,14,148,0,0,0,0,1,0,3,0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,2,1,3,0,0,0,0,1,0,32,10,129,4,0,0,152,0,321,0,0,0,42,8,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,110,24,0,0,0,0,0,0,0,0,106,0,0,128,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,86,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,191,51,4 +54,0,0,1,1,60,12,4,59,2,13,0,3,0,5,0,45,0,7,10,0,1,1,6,0,23,12,0,7,0,4,1,0,1,23,0,61,12,0,0,179,0,0,0,1,0,0,0,0,0,0,0,20,89,0,0,0,0,0,1,0,1,0,0,0,7,0,0,1012,60,291,0,24,0,0,0,0,0,10,3,0,0,0,0,13,18,141,0,4,23,1,0,4,31,0,395,30,0,0,0,6,1,269,0,2,0,0,8257,0,0,0,0,17,11,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,29,10,10,10,0,0,0,155,0,97,0,0,0,23,43,230,346,132,0,0,0,0,1,0,3,0,0,0,0,0,0,506,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,301,2,0,0,245,0,419,0,0,0,105,47,0,0,0,0,0,0,0,0,0,144,0,0,0,0,18,0,0,0,0,19,151,72,0,0,60,0,0,0,0,0,715,0,0,6,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,18,0,0,0,0,9,84,39,0,38,9,0,0,0,0,0,190,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,158,998,4 +104,0,0,24,4,70,113,7,157,7,16,0,0,2,24,0,187,0,12,6,0,1,1,5,0,15,9,0,9,0,4,0,0,4,21,0,74,164,0,0,274,0,0,0,1,0,0,7,0,0,0,0,11,261,0,0,0,0,0,1,0,1,0,0,0,21,0,0,5032,70,521,0,18,0,0,0,0,0,30,3,0,0,0,0,8,21,956,0,7,21,4,0,4,43,0,546,20,12,0,0,8,4,367,0,15,0,0,1627,0,0,0,0,41,21,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,35,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,723,0,242,0,0,0,13,46,257,369,688,0,0,0,0,1,0,4,0,0,0,0,0,0,1998,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,74,787,33,0,0,868,0,1514,0,3,0,286,37,0,0,0,0,0,0,2,0,0,511,1,0,0,0,13,0,0,0,0,11,200,156,0,0,34,0,0,0,0,0,1175,0,0,877,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,72,1,1,1,0,63,0,0,0,0,33,95,359,0,28,9,0,0,0,0,0,312,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,11,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1274,1365,4 +93,0,0,0,12,86,17,48,152,2,28,0,1,0,4,0,116,0,7,31,0,12,12,3,0,3,3,0,21,0,74,1,0,12,56,0,98,9,0,0,172,0,0,0,0,0,0,0,0,0,0,0,77,116,0,0,0,0,0,1,0,0,0,0,0,3,0,0,919,86,1316,0,99,0,0,0,0,0,3,36,0,0,0,0,9,9,45,0,48,56,12,0,1,38,0,666,70,0,0,0,4,12,356,0,2,0,0,2464,0,0,0,0,26,20,0,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,20,0,0,0,20,0,0,0,0,0,1,0,22,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,0,0,0,0,0,0,81,0,114,0,0,0,151,155,150,500,114,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,25,714,12,0,0,684,0,574,0,0,0,285,92,0,0,0,0,0,0,0,0,0,325,0,0,0,0,58,0,0,0,0,76,176,69,0,0,154,0,0,0,0,0,260,0,0,74,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,85,1,1,1,0,172,0,0,0,140,97,154,56,0,102,0,0,0,0,0,0,209,16,0,0,0,0,0,0,0,0,0,0,0,12,0,1,2,0,0,0,0,0,0,0,0,0,0,0,20,0,0,147,940,4 +102,0,0,0,12,85,18,48,151,3,27,0,2,0,5,0,118,0,7,34,0,12,12,2,0,4,3,0,24,0,69,1,0,12,53,0,97,12,0,0,188,0,0,0,0,0,0,0,0,0,0,0,73,110,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1015,85,1357,0,98,0,0,0,0,0,5,36,0,0,0,0,11,11,47,0,48,53,12,0,2,36,0,643,65,0,0,0,6,12,352,0,2,0,0,2521,0,0,0,0,28,22,0,0,3,0,0,0,0,0,0,18,0,0,0,0,0,0,0,22,0,0,0,21,0,0,0,0,0,1,0,23,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,0,0,0,0,0,0,84,0,111,0,0,0,143,146,151,489,120,0,0,0,0,0,0,0,0,0,0,0,0,0,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,717,14,0,0,688,0,593,0,0,0,280,80,0,0,0,0,0,0,0,0,0,328,0,0,0,0,60,0,0,0,0,72,176,67,0,0,143,0,0,0,0,0,268,0,0,69,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,84,1,1,1,0,167,0,0,0,128,97,150,53,0,101,0,0,0,0,0,0,214,16,0,0,0,0,0,0,0,0,0,0,0,12,0,1,3,0,0,0,0,0,0,0,0,0,0,0,21,0,0,265,950,4 +150,0,0,29,10,84,192,22,445,30,77,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,3,0,9,33,0,94,301,0,0,731,0,0,0,1,0,0,3,0,0,0,0,28,356,0,0,0,0,0,1,0,3,0,12,0,87,0,0,2907,84,1555,0,39,0,0,0,0,0,75,12,0,0,0,0,13,22,400,0,22,33,9,0,10,218,0,2080,100,3,0,0,14,10,1404,0,46,0,0,2156,0,0,0,0,54,41,0,0,31,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,17,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,330,0,236,0,0,0,36,75,296,1780,359,0,0,0,0,1,0,5,0,0,0,0,0,0,2747,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1441,48,0,0,1562,0,2900,0,6,0,571,33,0,0,0,0,0,0,0,0,0,1175,1,0,0,0,30,0,0,0,0,22,278,603,0,0,215,0,0,0,0,0,9928,0,0,185,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,75,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,771,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,5,1629,1661,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,2,0,0,412,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,29,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,122,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,34,0,33,0,0,0,2,4,27,96,52,0,0,0,0,1,0,0,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,49,3,0,0,47,0,145,0,0,0,5,1,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,28,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,11,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,142,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,33,0,0,0,0,3,21,195,54,0,0,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,84,0,57,0,0,0,50,3,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,4,4 +3,0,0,4,0,34,6,0,13,1,3,0,0,2,5,0,18,0,7,4,0,0,0,5,0,8,0,0,5,0,6,0,0,0,6,0,34,6,0,0,28,0,0,0,1,0,0,2,0,0,0,0,6,104,0,0,0,0,0,1,0,0,0,0,0,6,0,0,987,34,54,0,9,0,0,0,0,0,11,0,0,0,0,0,8,16,234,0,0,6,0,0,0,0,0,84,5,3,0,0,2,0,30,0,3,0,0,627,0,1,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,10,10,10,0,0,0,162,0,86,0,0,0,10,4,194,26,163,0,0,0,0,1,0,4,0,0,0,0,0,0,381,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,13,163,4,0,0,156,0,257,0,0,0,55,7,0,0,0,0,0,0,0,0,0,54,1,0,0,0,9,0,0,0,0,2,123,18,0,0,0,0,0,0,0,0,100,0,0,53,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,13,0,0,0,0,1,40,46,0,10,9,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,238,68,4 +7,0,0,15,7,25,91,19,129,13,20,0,0,0,25,8,496,0,21,12,0,4,4,1,0,7,9,0,3,0,2,0,0,7,4,0,32,321,0,0,202,0,0,0,0,0,0,0,0,0,0,0,8,180,0,0,0,0,0,1,0,0,0,15,0,19,0,0,677,25,952,0,12,0,0,0,0,0,0,12,0,0,0,0,4,4,15,0,19,4,7,0,3,0,0,152,0,0,0,0,8,7,272,0,14,0,0,936,0,0,0,0,15,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,4,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,2,0,0,0,0,0,0,0,0,75,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,30,0,0,0,0,0,0,43,0,99,0,0,0,9,20,88,106,120,0,0,0,0,0,0,0,0,0,0,0,0,0,606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,62,785,23,0,0,853,0,2132,0,3,0,325,48,0,0,0,0,0,0,0,0,0,790,0,0,0,0,21,0,0,0,0,9,201,62,0,0,0,0,1,0,1,1,1234,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,2,0,0,1,0,0,0,0,23,23,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,29,1,1,1,0,6,0,0,0,0,73,36,7,0,21,0,0,0,0,0,0,399,58,0,0,0,0,0,0,0,0,0,0,0,7,0,1,13,0,0,0,0,0,0,0,0,0,0,0,11,0,0,2235,100,4 +143,0,0,28,10,85,190,22,435,26,73,0,0,2,58,0,375,0,20,16,0,6,2,6,0,38,22,0,17,0,9,2,0,9,33,0,95,301,0,0,715,0,0,0,1,0,0,3,0,0,0,0,41,349,0,0,0,0,0,1,0,3,0,11,0,80,0,0,2985,85,1538,0,55,0,0,0,0,0,73,12,0,0,0,0,13,22,414,0,22,33,9,0,10,208,0,2037,100,3,0,0,14,10,1355,0,42,0,0,3116,0,0,0,0,49,40,0,0,31,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,32,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,334,0,252,0,0,0,50,95,300,1736,365,0,0,0,0,1,0,5,0,0,0,0,0,0,2760,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,140,1472,47,0,0,1561,0,2885,0,6,0,567,50,0,0,0,0,0,0,0,0,0,1153,1,0,0,0,30,0,0,0,0,35,279,577,0,0,215,0,0,0,0,0,9945,0,0,178,3,0,1,6,0,0,0,0,7,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,65,0,0,0,0,81,128,309,0,79,9,0,0,0,0,0,753,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,36,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1651,1826,4 +2,0,0,3,0,11,2,0,10,2,3,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,2,0,11,6,0,0,12,0,1,0,1,0,0,9,0,0,0,0,1,111,0,0,0,0,0,1,0,0,0,0,0,5,0,0,1792,11,82,0,3,0,0,0,0,0,27,0,0,0,0,0,1,20,699,0,0,2,0,0,0,0,0,27,0,9,0,0,2,0,15,0,3,0,0,283,0,0,0,0,0,2,7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,229,0,119,0,0,0,2,5,28,20,236,0,0,0,0,1,0,0,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,10,6,112,3,0,0,119,0,257,0,0,0,63,16,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,2,97,41,0,0,0,0,0,0,0,0,843,0,0,856,0,0,1,0,1,0,0,0,19,0,0,0,8,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,4,0,0,0,2,1,13,95,0,2,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,8,484,62,4 +120,0,0,29,11,90,157,27,271,30,38,0,0,2,66,1,559,0,20,45,0,98,2,6,0,33,22,0,17,0,7,3,0,10,38,0,100,301,160,0,385,0,0,0,1,0,0,3,0,0,0,0,34,340,0,0,0,0,0,1,0,2,0,12,0,52,0,0,2568,90,1771,0,49,0,0,0,0,0,22,15,0,0,0,0,13,22,281,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,584,0,46,0,0,2084,0,0,0,0,46,15,1,0,33,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,292,0,231,0,0,0,42,73,339,589,303,0,0,0,0,1,0,6,0,0,0,0,0,0,2153,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1446,49,0,0,1499,0,2945,0,6,0,503,334,0,0,0,0,0,0,0,0,0,1114,1,0,0,0,151,0,0,0,0,29,284,149,0,0,155,0,0,0,0,0,10410,0,0,174,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,53,53,0,0,9,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,61,0,0,0,0,117,138,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,153,0,3,1615,1616,4 +0,0,0,3,0,9,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,3,0,0,0,0,1,0,0,0,0,0,9,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,12,0,0,0,0,0,1,0,0,0,0,0,2,0,0,27,9,20,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,10,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,16,0,0,0,3,5,22,11,26,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,3,0,0,33,0,33,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,89,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,4,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,35,4 +5,0,0,7,38,98,28,143,471,12,74,0,0,0,23,0,274,0,7,80,0,46,28,2,1,1,6,0,15,0,31,0,0,37,77,0,136,6,801,0,190,0,0,0,1,0,0,2,0,0,0,0,31,262,0,0,0,0,0,1,8,0,0,0,0,33,0,0,2047,98,3513,0,46,0,0,0,0,0,8,114,0,0,0,0,3,7,113,0,143,77,37,0,4,88,0,937,150,2,0,0,2,38,663,0,5,0,0,2831,0,0,0,0,11,0,0,0,20,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,46,0,0,0,0,0,6,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,1,2,82,2,2,2,0,0,2,433,2,173,0,0,0,62,108,231,615,218,0,0,0,0,1,0,0,0,0,0,0,0,0,1444,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,12,26,1696,45,0,0,1580,0,1153,2,0,0,623,83,0,0,0,0,0,0,0,0,0,877,1,0,0,0,157,0,0,0,0,27,199,219,0,0,453,0,0,0,0,0,1940,0,0,79,0,0,1,0,1,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,4,0,0,0,0,0,60,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,99,1,1,1,0,158,0,0,0,0,339,213,166,0,53,0,0,0,0,0,0,215,37,0,0,0,0,0,0,0,0,0,0,0,38,0,1,18,0,0,0,0,0,0,0,0,0,0,0,51,0,2,1134,498,4 +1,0,0,5,0,32,6,0,37,0,5,0,0,6,4,0,604,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,1,762,32,6,0,0,41,0,1,0,1,0,0,2,0,0,0,0,1,159,0,0,0,0,0,1,0,0,0,0,0,2,0,0,21060,32,674,0,3,0,0,0,0,0,18,0,0,0,0,1,8,24,4514,0,0,1,0,0,0,0,0,190,20,5,0,0,2,0,644,0,0,1,0,2795,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,1162,0,55,0,0,0,1,4,243,1143,1146,0,0,0,0,1,0,3,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,16,161,5,0,0,188,0,209,0,0,0,51,10,0,0,0,0,0,0,0,0,0,668,1,0,0,0,9,0,0,0,0,0,115,15,0,0,6,0,0,0,0,0,3262,1,0,846,6,0,1,1,1,0,0,0,6,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,5,0,0,0,0,1,33,83,0,4,12,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1812,35,4 +32,0,0,0,4,64,31,11,112,17,15,0,0,0,23,2,259,0,9,11,0,3,1,5,0,9,6,0,10,0,5,2,0,4,33,0,69,60,443,0,206,0,0,0,0,0,0,0,0,0,0,0,13,161,0,1,0,0,0,1,0,0,0,9,0,9,0,0,1147,64,577,0,27,0,0,0,0,0,0,9,0,0,0,0,7,7,65,0,11,33,4,0,1,12,0,191,5,0,0,0,4,4,220,0,8,0,0,1275,0,0,0,0,13,4,0,0,0,0,0,0,0,0,0,21,0,0,1,0,0,0,0,4,0,10,0,16,0,0,0,0,0,0,0,18,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,54,1,1,1,0,0,1,126,1,85,0,0,0,17,26,110,739,110,0,0,0,0,0,0,0,0,0,0,1,1,0,529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,57,570,7,0,0,516,0,984,0,1,0,199,40,0,0,0,0,0,0,0,0,0,451,0,0,0,0,20,0,0,0,0,12,176,40,0,0,15,0,0,0,0,5,833,0,0,16,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,9,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,4,0,0,0,0,0,9,5,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,62,1,1,1,0,25,0,0,0,0,62,102,37,0,32,0,0,0,0,0,0,235,8,0,0,0,0,0,0,0,0,0,0,0,5,0,2,17,0,0,0,0,0,0,0,0,0,0,0,6,0,0,471,248,4 +2,0,0,4,0,27,6,0,15,0,2,0,0,2,3,0,18,0,7,3,0,0,0,5,0,8,0,0,15,0,1,0,0,0,2,0,27,6,0,0,29,0,0,0,1,0,0,1,0,0,0,0,1,77,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2741,27,54,0,14,0,0,0,0,0,6,0,0,0,0,1,7,15,115,0,0,2,0,0,0,0,0,86,5,1,0,0,2,0,38,0,0,0,0,2920,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,75,0,38,0,0,0,0,3,180,15,87,0,0,0,0,1,0,4,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,34,10,729,4,0,0,118,0,286,0,0,0,24,289,0,0,0,0,0,0,0,0,0,53,1,0,0,0,8,0,0,0,0,0,110,9,0,0,0,0,2,0,0,0,664,0,0,8,3,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,13,0,0,0,0,1,29,45,0,15,9,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,1301356,4 +2,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,666,8,41,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,181,0,0,0,0,0,0,0,0,7,0,3,0,0,2,0,14,0,0,0,0,155,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,55,0,27,0,0,0,0,3,22,8,66,0,0,0,0,1,0,0,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,3,98,2,0,0,99,0,321,0,0,0,39,4,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,90,31,0,0,0,0,0,0,0,0,620,0,0,383,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,137,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,787,4 +80,0,0,4,7,81,101,28,267,54,94,1,5,2,61,1,103,0,7,30,0,7,7,9,0,13,5,0,22,0,28,1,0,7,21,0,88,27,0,0,751,0,0,0,1,0,0,3,1,0,0,0,33,242,0,0,0,0,0,1,0,0,0,17,0,21,0,0,2463,81,1187,0,52,0,0,0,0,0,13,21,0,0,0,0,24,33,181,0,28,21,7,0,5,162,0,1537,110,2,0,0,12,7,1173,0,10,0,0,3335,0,0,0,0,27,17,3,0,3,0,0,1,0,0,0,19,0,0,0,0,0,0,0,17,0,0,0,20,0,0,0,0,0,1,0,21,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,51,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,42,10,10,10,0,0,0,194,0,116,0,0,0,61,67,286,1340,222,0,0,0,0,2,0,3,0,0,0,0,1,0,1344,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,62,164,651,17,0,0,627,0,920,0,0,0,226,180,0,0,0,0,0,0,0,0,0,642,1,0,0,0,53,0,0,0,0,31,179,415,0,0,255,0,2,0,1,2,5429,0,0,92,3,0,1,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,1,0,0,0,0,3,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,90,1,1,1,0,80,0,0,0,0,57,109,75,0,60,9,0,0,0,0,0,447,13,0,0,0,0,0,0,0,0,0,0,0,8,0,1,56,0,0,0,0,0,0,0,0,0,0,0,12,0,0,430,287,4 +105,0,0,28,11,92,158,27,289,26,40,0,0,2,60,1,566,0,20,46,0,97,2,6,0,46,22,0,25,0,6,3,0,10,41,0,102,301,160,0,407,0,0,0,1,0,0,4,0,0,0,0,45,363,0,0,0,0,0,1,0,3,0,12,0,48,0,0,2522,92,1815,0,70,0,0,0,0,0,24,15,0,0,0,1,13,23,281,0,27,41,10,0,9,45,0,828,85,3,0,0,14,11,639,0,42,0,0,2289,0,0,0,0,41,13,1,0,30,0,0,1,0,0,0,23,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,25,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,307,0,247,0,0,0,52,90,338,652,304,0,0,0,0,1,0,6,0,0,0,0,0,0,2116,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,681,332,1464,48,0,0,1515,0,2935,0,6,0,521,191,0,0,0,0,0,0,0,0,0,1136,1,0,0,0,151,0,0,0,0,42,284,165,0,0,185,0,0,0,0,0,10427,0,0,155,3,0,1,6,0,0,0,0,6,0,0,0,1,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,8,1,0,0,0,0,3,14,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,55,0,0,0,0,119,143,354,0,93,9,0,0,0,0,0,341,10,0,0,0,0,0,0,1,0,0,0,0,11,0,5,34,0,0,0,0,0,0,0,0,117,0,0,190,0,2,1654,1774,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,83,0,57,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,4,4 +0,0,0,0,0,1,0,1,21,0,1,0,0,0,1,0,730,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,726,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,9,0,0,1,107,4 +20,0,0,0,0,25,4,0,8,3,1,0,2,0,5,0,20,0,7,4,0,0,0,2,0,7,3,0,3,0,2,1,0,0,12,0,25,12,0,0,66,0,0,0,0,0,0,0,0,0,0,0,9,35,0,0,0,0,0,1,0,0,0,0,0,2,0,0,265,25,51,0,13,0,0,0,0,0,0,0,0,0,0,0,5,5,26,0,0,12,0,0,2,0,0,42,0,0,0,0,6,0,51,0,2,0,0,1759,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,50,0,72,0,0,0,11,17,48,69,61,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,124,2,0,0,99,0,223,0,0,0,48,17,0,0,0,0,0,0,0,0,0,47,0,0,0,0,6,0,0,0,0,9,116,2,0,0,0,0,0,0,0,0,50,0,0,3,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,10,0,0,0,0,1,37,12,0,16,0,0,0,0,0,0,77,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,254,4 +151,0,0,29,10,84,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,3,0,9,33,0,94,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,348,0,0,0,0,0,1,0,2,0,12,0,83,0,0,3093,84,1522,0,39,0,0,0,0,0,72,12,0,0,0,0,13,22,406,0,22,33,9,0,10,198,0,1932,100,2,0,0,14,10,1304,0,46,0,0,3004,0,0,0,0,54,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,7,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,329,0,233,0,0,0,36,75,296,1650,359,0,0,0,0,1,0,5,0,0,0,0,0,0,2775,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,660,146,1434,48,0,0,1554,0,2900,0,6,0,564,50,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,277,551,0,0,215,0,0,0,0,0,9931,0,0,185,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,75,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1619,1659,4 +0,0,0,5,0,35,25,0,47,3,24,0,0,7,4,0,729,0,6,1,0,0,0,8,0,11,0,0,24,0,1,0,0,0,1,12525,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,706,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40479,35,894,0,23,0,0,0,0,0,46,0,0,0,0,0,8,94,6589,0,0,1,0,0,0,0,0,365,25,1,0,0,2,0,817,0,0,90,0,4778,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1437,0,32,0,0,0,12,15,489,2090,1416,0,0,0,0,1,0,3,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,278,5,0,0,307,0,294,0,0,0,147,20,0,0,0,0,0,0,0,0,0,842,1,0,0,0,9,0,0,0,0,1,164,6,0,0,136,0,0,0,0,0,4632,1,0,991,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2505,22,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,0,0,0,97,8,33,0,0,0,0,0,0,0,6,0,0,0,0,0,1,1,28,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,28,0,0,0,0,3,21,4,42,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,43,0,26,0,0,0,9,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,4,4 +0,0,0,5,0,36,24,0,48,3,23,0,0,7,4,0,784,0,6,1,0,0,0,8,0,10,0,0,24,0,1,0,0,0,1,12576,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,726,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39795,36,946,0,22,0,0,0,0,0,45,0,0,0,0,0,8,86,6648,0,0,1,0,0,0,0,0,358,25,2,0,0,2,0,872,0,0,89,0,5060,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1525,0,32,0,0,0,11,14,491,2066,1503,0,0,0,0,1,0,3,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,274,5,0,0,307,0,294,0,0,0,145,17,0,0,0,0,0,0,0,0,0,896,1,0,0,0,9,0,0,0,0,1,163,7,0,0,131,0,0,0,0,0,4662,1,0,1018,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,54,0,0,0,0,1,37,212,0,23,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2492,30,4 +0,0,0,0,0,8,39,0,47,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,141,8,128,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,48,0,0,0,0,0,2,43,0,324,15,0,0,0,4,0,221,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,38,0,32,0,0,0,0,3,21,199,53,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,85,0,57,0,0,0,51,3,0,0,0,0,0,0,0,0,0,111,0,0,0,0,2,0,0,0,0,0,91,86,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,102,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,4,4 +1184,0,0,5,1,18,27,1,28,2,4,0,0,0,5,0,64,0,17,2,0,0,0,1,0,4,0,0,0,0,1,0,0,1,2,0,19,67,0,0,16,0,0,0,1,0,0,1,0,0,0,0,4,39,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2266,18,104,0,5,0,0,0,0,0,2,0,0,0,0,0,2,4,77,0,1,2,1,0,1,0,0,54,0,0,0,0,4,1,22,0,2,0,0,2305,0,0,0,0,0,1184,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,63,0,63,0,0,0,4,7,47,634,4830,0,0,0,0,1,0,0,0,0,0,0,0,0,11529,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,114,16,395,6,0,0,229,0,423,0,1,0,58,75,0,0,0,0,0,0,0,0,0,145,1,0,0,0,3,0,0,0,0,5,118,7,0,0,0,0,1181,0,2364,1182,715,0,0,8,0,0,1,0,0,0,0,0,2,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,21,1,1,1,0,0,0,0,0,0,9,21,3,0,5,0,0,0,0,0,0,96,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,252,131,4 +10,0,0,11,1,51,50,1,124,7,15,1,0,2,13,0,70,0,9,4,0,0,0,8,0,10,0,0,14,0,1,0,0,1,15,0,52,59,0,0,166,0,0,0,1,0,0,19,3,0,0,0,3,352,0,0,0,0,0,1,0,0,0,19,0,10,0,0,12445,51,351,0,14,0,0,0,0,0,71,0,0,0,0,5,11,43,1825,0,1,15,1,0,1,47,0,527,20,38,1,0,4,1,342,0,8,0,0,2098,0,0,0,0,31,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,7,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,29,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,10,10,10,0,0,0,1525,0,262,0,0,0,1,5,233,428,1470,0,0,0,0,1,0,3,0,0,0,0,0,0,4092,0,0,0,0,0,0,0,0,0,0,0,0,19,1,0,0,0,0,0,2,0,137,26,476,16,0,0,609,0,1696,0,1,0,344,42,0,0,0,0,0,0,0,0,0,284,1,0,9,0,12,0,0,0,0,2,217,243,0,0,34,0,0,0,0,0,992,0,0,2816,3,0,1,1,0,0,0,0,48,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,61,1,1,1,0,14,0,0,0,0,9,67,917,0,16,9,0,0,0,0,0,221,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,13,2183,205,4 +0,0,0,0,0,12,2,0,8,0,2,0,0,0,2,0,9,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,1,0,0,23,12,25,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,9,0,0,3,0,0,0,4,0,35,0,0,0,0,2,0,28,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,12,0,18,0,0,0,0,3,26,31,25,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,42,0,0,0,45,0,59,0,0,0,11,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,0,95,11,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,15,3,0,1,0,0,0,0,0,0,23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,1,4 +271,0,0,30,21,97,166,37,373,35,44,0,0,2,72,2,775,0,20,70,0,113,2,7,0,37,22,0,26,0,7,3,0,20,42,0,117,301,160,0,487,0,0,0,1,0,0,3,0,0,0,0,38,379,0,0,0,0,0,1,0,3,0,12,0,58,0,0,2361,97,3486,0,63,0,0,0,0,0,17,45,0,0,0,0,14,23,261,0,37,42,20,0,7,29,0,697,55,2,0,0,14,21,677,0,52,0,0,2604,0,0,0,0,67,30,0,0,25,0,0,1,0,0,0,22,0,0,0,0,0,0,0,26,0,0,0,14,0,0,0,0,0,7,0,66,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,33,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,19,10,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,290,0,274,0,0,0,46,74,391,550,297,0,0,0,0,1,0,5,0,0,0,0,0,0,2844,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,683,366,1793,60,0,0,1842,0,3137,0,6,0,584,725,0,0,0,0,0,0,0,0,0,1454,1,0,0,0,192,0,0,0,0,34,287,132,0,0,125,0,0,0,0,0,10672,0,0,77,4,0,1,7,0,0,0,0,3,0,0,0,1,0,0,0,0,0,34,0,0,0,0,0,0,0,0,1,0,0,93,93,0,0,17,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,98,1,1,1,0,68,0,0,0,0,223,159,318,0,86,9,0,0,0,0,0,327,30,0,0,0,0,0,0,1,0,0,0,0,21,0,6,39,0,0,0,0,0,0,0,0,117,0,0,213,0,2,1756,1905,4 +0,0,0,10,0,19,4,0,25,1,7,0,0,0,4,0,19,0,7,1,0,0,0,1,0,0,0,0,5,0,9,0,0,0,5,0,19,6,0,0,36,0,0,0,1,0,0,1,0,0,0,0,8,68,1,0,0,0,0,1,0,0,0,2,0,7,0,0,19159,19,68,0,14,0,0,0,0,0,6,0,0,0,0,0,1,3,3828,0,0,5,0,0,1,9,0,111,15,1,0,0,2,0,67,0,1,0,0,566,0,0,0,0,2,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2685,0,55,0,0,0,16,14,46,150,2702,0,0,0,0,1,0,0,0,0,0,0,0,0,4879,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,7,118,14,0,0,102,0,236,0,0,0,30,13,0,0,0,0,0,0,0,0,0,66,1,0,0,0,2,0,0,0,0,6,103,20,0,0,31,0,0,0,0,0,1705,0,0,5271,0,0,1,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,21,0,0,0,10,1,24,12,0,14,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,4,0,0,0,0,0,0,0,0,0,0,0,0,1,2592,60,4 +72,0,0,10,4,67,86,7,152,20,14,0,3,2,33,0,204,0,12,33,0,91,1,5,0,28,9,0,18,0,5,0,0,4,26,0,71,159,159,0,552,0,0,0,1,0,0,4,0,0,0,0,24,230,0,0,0,0,0,1,0,1,0,0,0,26,0,0,1444,67,800,0,40,0,0,0,0,0,25,3,0,0,0,0,8,21,345,0,7,26,4,0,7,30,0,500,20,6,1,0,14,4,352,0,21,0,0,1193,0,0,0,0,34,10,0,0,16,0,0,1,0,0,0,8,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,6,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,61,10,10,10,0,0,0,292,0,170,0,0,0,27,50,237,457,312,0,0,0,0,1,0,4,0,0,0,0,0,0,1302,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,379,335,781,17,0,0,792,0,1358,0,3,0,254,71,0,0,0,0,0,0,0,0,0,506,1,0,0,0,130,0,0,0,0,24,200,93,0,0,30,0,0,0,0,0,1180,0,0,93,3,0,1,6,0,0,0,0,8,0,0,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,11,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,66,1,1,1,0,43,0,0,0,0,33,97,142,0,51,9,0,0,0,0,0,271,5,0,0,0,0,0,0,1,0,0,0,0,5,0,4,24,0,0,0,0,0,0,0,0,117,0,0,144,0,5,715,1476,4 +16,0,0,4,0,23,2,0,20,0,3,0,0,0,3,0,61,0,6,2,0,0,0,11,0,0,24,0,8,0,9,0,0,0,11,0,23,18,0,0,13,0,0,0,1,0,0,22,0,0,0,0,8,72,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2103,23,240,0,17,0,0,0,0,0,45,0,0,0,0,24,12,56,560,0,0,11,0,0,0,0,0,89,0,19,0,0,2,0,170,0,1,0,0,565,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,471,0,340,0,0,0,16,51,73,1219,596,0,0,0,0,1,0,0,0,0,0,0,0,0,2597,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,10,4,166,4,0,0,142,0,214,0,0,0,75,597,0,0,0,0,0,0,0,0,0,95,1,0,0,0,13,0,0,0,0,9,106,8,0,0,0,0,9,0,16,8,900,0,0,184,0,0,1,0,0,0,0,0,22,0,30,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,24,0,0,0,0,1,34,76,0,41,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1062,39,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,731,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,727,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,2,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,1,108,4 +31,0,0,8,2,45,20,8,115,4,27,0,0,0,11,0,41,0,6,4,0,2,2,3,2,10,6,0,15,0,3,0,0,2,27,0,47,6,0,0,224,0,0,0,1,0,0,2,0,0,0,0,12,121,0,0,0,0,0,1,0,0,0,0,0,25,0,0,33088,45,486,0,28,0,0,0,0,0,63,6,0,0,0,0,4,7,6787,0,8,27,2,0,2,74,0,593,40,3,0,0,2,2,492,0,8,0,0,1151,0,0,0,0,21,6,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,4162,0,199,0,0,0,14,21,85,594,4227,0,0,0,0,1,0,0,0,0,0,0,0,0,8788,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,25,380,11,0,0,346,0,366,0,0,0,202,32,0,0,0,0,0,0,0,0,0,220,1,0,0,0,13,0,0,0,0,11,130,211,0,0,91,0,0,0,0,0,2109,0,0,9261,0,0,1,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,3,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,17,0,0,0,0,17,74,241,0,34,0,0,0,0,0,0,382,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3125,374,4 +61,0,0,6,2,65,32,2,86,44,15,0,0,2,50,1,35,0,7,9,0,4,0,5,0,21,0,0,7,0,2,0,0,2,30,0,67,6,3,0,233,0,0,0,2,0,0,2,0,0,0,0,16,159,0,0,0,0,0,1,0,0,0,0,0,53,0,0,1154,65,365,0,20,0,0,0,0,0,17,6,0,0,0,0,8,16,217,0,2,30,2,0,1,43,0,448,50,5,0,0,2,2,348,0,48,0,0,1043,0,0,0,0,30,26,1,0,0,0,0,1,0,0,0,12,0,0,0,0,1,0,0,1,0,0,0,3,0,0,0,0,0,3,2,10,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,8,2,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,2,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,184,0,126,0,0,0,17,23,246,284,168,0,0,0,0,1,0,3,0,0,0,0,0,0,774,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,58,345,8,0,0,352,0,518,0,0,0,169,20,0,0,0,0,0,0,0,0,0,228,1,0,0,0,18,0,0,0,0,21,152,98,0,0,122,0,0,0,0,0,724,0,0,38,3,0,1,1,0,0,0,0,6,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,76,1,1,1,0,8,0,0,0,0,17,97,170,0,21,9,0,0,0,0,0,322,5,0,0,0,0,0,0,0,0,0,0,0,3,0,1,48,0,0,0,0,0,0,0,0,0,0,0,4,0,2,331,289,4 +198,0,0,26,17,80,193,26,346,34,45,0,0,2,76,1,644,0,22,31,0,18,2,5,0,45,16,0,29,0,4,3,0,16,37,0,97,540,0,0,375,0,0,0,1,0,0,0,0,0,0,0,44,328,0,0,0,0,0,1,0,0,0,2,0,54,0,0,2062,80,2447,0,72,0,0,0,0,0,4,30,0,0,0,0,15,20,141,0,26,37,16,0,8,48,0,890,80,0,0,0,16,17,731,0,51,0,0,2639,0,0,0,0,37,19,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,17,0,0,0,7,0,0,0,0,0,7,0,58,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,1,0,0,0,0,0,0,13,0,0,0,3,0,0,0,12,2,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,52,10,10,10,0,0,0,148,0,169,0,0,0,49,64,347,581,160,0,0,0,0,1,0,6,0,0,0,0,0,0,1844,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,773,178,1671,50,0,0,1716,0,2629,0,7,0,505,112,0,0,0,0,0,0,0,0,0,1329,0,0,0,0,56,0,0,0,0,45,283,107,0,0,187,0,0,0,1,0,14892,0,0,9,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,1,0,0,0,0,53,53,0,0,7,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,84,1,1,1,0,44,0,0,0,0,183,134,76,0,88,9,0,0,0,0,0,346,40,0,0,0,0,0,0,0,0,0,0,0,18,0,1,40,0,0,0,0,0,0,0,0,0,0,0,22,0,0,923,1228,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,126,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1093,28,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,188,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,432,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,147,0,48,0,0,0,1,4,182,14,145,0,0,0,0,1,0,3,0,0,0,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,32,10,129,4,0,0,152,0,305,0,0,0,42,9,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,110,24,0,0,0,0,0,0,0,0,98,0,0,116,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,86,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,181,52,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,140,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,47,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,70,0,46,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,33,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,4,4 +292,0,0,32,27,104,226,64,573,41,93,0,0,2,81,0,500,0,22,84,0,121,1,6,0,58,13,0,36,0,5,3,0,26,47,0,124,352,160,0,1029,0,0,0,1,0,0,5,1,0,0,0,56,409,0,0,0,0,0,1,0,2,0,12,0,98,0,0,3819,104,3972,0,90,0,0,0,0,0,108,60,0,0,0,0,14,28,583,0,64,47,26,0,10,211,0,2161,95,10,0,0,16,27,1498,0,59,0,0,3398,0,0,0,0,70,76,0,0,36,0,0,1,0,0,0,22,0,0,0,0,0,0,0,25,0,0,0,15,0,0,0,2,0,8,0,72,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,2,0,0,0,0,0,1,13,0,0,0,0,0,0,0,20,14,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,96,10,10,10,0,0,0,481,0,337,0,0,0,62,85,351,1902,552,0,0,0,0,1,0,4,0,0,0,0,0,0,4322,0,0,0,0,0,0,0,0,0,1,0,0,5,1,3,0,0,0,0,1,0,785,388,1981,70,0,0,2096,0,3825,0,7,0,724,195,0,0,0,0,0,0,0,0,0,1497,1,0,2,0,212,0,0,0,0,48,321,546,0,0,211,0,0,0,0,0,10260,0,0,129,3,0,1,8,0,0,0,0,13,0,0,0,4,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,1,0,0,0,0,3,11,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,109,1,1,1,0,61,0,0,0,0,161,171,203,0,106,9,0,0,0,0,0,844,30,0,0,0,0,0,0,1,0,0,0,0,21,0,6,49,0,0,0,0,0,0,0,0,117,0,0,174,0,5,2370,1544,4 +219,0,0,0,3,86,53,12,323,3,106,1,2,0,5,0,48,0,7,15,0,3,3,3,0,6,3,0,42,0,87,1,0,3,37,0,89,12,0,0,476,0,0,0,0,0,0,0,0,0,0,0,93,127,0,0,0,0,0,1,0,0,0,0,0,20,0,0,5491,86,1456,0,136,0,0,0,0,0,296,9,0,0,0,0,11,11,241,0,12,37,3,0,4,283,0,2636,420,0,0,0,6,3,1359,0,2,0,0,7926,0,0,0,0,87,90,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,79,0,0,0,80,0,0,0,0,0,1,0,13,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,75,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,18,0,0,0,0,0,0,226,0,178,0,0,0,180,178,166,1863,247,0,0,0,0,0,0,0,0,0,0,0,0,0,4051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,580,6,0,0,729,0,527,0,0,0,493,36,0,0,0,0,0,0,0,0,0,545,0,0,0,0,24,0,0,0,0,92,178,538,0,0,938,0,0,0,0,0,1093,0,0,87,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,86,1,1,1,0,219,0,0,0,0,25,126,37,0,139,0,0,0,0,0,0,599,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,1,0,0,0,0,0,0,0,0,0,0,5,0,0,1180,283,4 +149,0,0,29,10,84,189,22,430,30,74,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,3,0,9,33,0,94,301,0,0,701,0,0,0,1,0,0,3,0,0,0,0,28,344,0,0,0,0,0,1,0,3,0,12,0,84,0,0,3096,84,1533,0,39,0,0,0,0,0,74,12,0,0,0,0,13,22,399,0,22,33,9,0,10,203,0,1969,100,3,0,0,14,10,1329,0,46,0,0,2146,0,0,0,0,53,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,328,0,234,0,0,0,36,75,296,1682,358,0,0,0,0,1,0,5,0,0,0,0,0,0,2833,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1423,48,0,0,1557,0,2896,0,6,0,567,59,0,0,0,0,0,0,0,0,0,1154,1,0,0,0,30,0,0,0,0,22,277,564,0,0,215,0,0,0,0,0,9932,0,0,181,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,75,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,735,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1630,1654,4 +150,0,0,29,10,84,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,15,0,7,3,0,9,33,0,94,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,344,0,0,0,0,0,1,0,3,0,11,0,83,0,0,2872,84,1523,0,40,0,0,0,0,0,72,12,0,0,0,0,13,22,392,0,22,33,9,0,10,198,0,1933,100,3,0,0,14,10,1305,0,46,0,0,2160,0,0,0,0,52,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,326,0,237,0,0,0,36,75,296,1650,356,0,0,0,0,1,0,5,0,0,0,0,0,0,2772,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1434,48,0,0,1556,0,2901,0,6,0,566,69,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,279,551,0,0,215,0,0,0,0,0,9927,0,0,179,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,76,0,0,0,0,81,127,309,0,64,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1598,1653,4 +2,0,0,10,0,51,7,0,41,2,9,0,0,6,13,1,626,0,7,1,0,0,0,9,0,11,0,0,11,0,17,0,0,0,12,898,51,6,0,0,85,0,4,0,1,0,0,5,2,0,0,0,17,181,0,0,0,0,0,1,0,0,0,0,0,11,0,0,7947,51,751,0,24,0,0,0,0,0,27,0,0,0,0,0,9,30,1815,0,0,12,0,0,0,0,0,270,20,9,0,0,2,0,720,0,6,1,0,1785,0,0,0,0,40,0,1,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,34,12,12,12,0,0,0,571,0,96,0,0,0,33,34,289,414,548,0,0,0,0,1,0,3,0,0,0,0,0,0,738,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,84,35,273,12,0,0,279,0,445,0,0,0,113,15,0,0,0,0,0,0,0,0,0,710,1,0,6,0,10,0,0,0,0,17,138,26,0,0,6,0,0,0,0,0,1952,1,0,928,8,0,1,1,1,0,0,0,16,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,8,377,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,42,0,0,0,24,1,63,119,0,25,14,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,831,212,4 +0,0,0,7,1,14,29,1,40,11,4,0,0,0,19,0,66,0,8,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,4,0,15,70,0,0,44,0,0,0,1,0,0,2,0,0,0,0,0,107,0,0,0,0,0,1,0,0,0,0,0,19,0,0,574,14,137,0,1,0,0,0,0,0,12,0,0,0,0,0,1,5,96,0,1,4,1,0,1,0,0,45,0,4,0,0,4,1,66,0,15,0,0,261,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,95,0,54,0,0,0,0,3,34,9,109,0,0,0,0,1,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,112,27,256,8,0,0,304,0,876,0,1,0,116,11,0,0,0,0,0,0,0,0,0,166,1,0,0,0,2,0,0,0,0,0,114,51,0,0,0,0,0,0,0,0,170,0,0,82,0,0,1,0,1,0,0,0,8,0,0,0,1,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,0,0,0,0,0,9,19,251,0,1,0,0,0,0,0,0,68,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,356,45,4 +0,0,0,5,0,35,25,0,49,3,24,0,0,7,4,0,799,0,6,1,0,0,0,8,0,11,0,0,24,0,1,0,0,0,1,12484,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,794,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40616,35,966,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6592,0,0,1,0,0,0,0,0,364,25,2,0,0,2,0,887,0,0,88,0,4679,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1538,0,32,0,0,0,12,15,490,2085,1517,0,0,0,0,1,0,3,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,270,5,0,0,308,0,285,0,0,0,149,13,0,0,0,0,0,0,0,0,0,914,1,0,0,0,9,0,0,0,0,1,165,6,0,0,135,0,0,0,0,0,4708,1,0,995,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2481,23,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,15,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,4 +0,0,0,10,0,17,4,0,25,1,7,0,0,0,4,0,19,0,7,1,0,0,0,1,0,0,0,0,5,0,8,0,0,0,5,0,17,6,0,0,36,0,0,0,1,0,0,1,0,0,0,0,7,75,1,0,0,0,0,1,0,0,0,2,0,7,0,0,18951,17,67,0,13,0,0,0,0,0,6,0,0,0,0,0,1,3,3823,0,0,5,0,0,1,9,0,107,15,1,0,0,2,0,66,0,1,0,0,553,0,0,0,0,2,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2664,0,53,0,0,0,14,12,38,148,2681,0,0,0,0,1,0,0,0,0,0,0,0,0,4978,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,7,112,14,0,0,96,0,222,0,0,0,30,6,0,0,0,0,0,0,0,0,0,66,1,0,0,0,2,0,0,0,0,5,101,20,0,0,31,0,0,0,0,0,1697,0,0,5234,0,0,1,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,19,0,0,0,8,1,22,12,0,13,0,0,0,0,0,0,54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,3,0,0,0,0,0,0,0,0,0,0,0,0,1,2587,59,4 +3,0,0,5,6,13,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,19,54,2,0,96,0,0,0,1,0,0,2,0,0,0,0,1,94,0,0,0,0,0,1,0,0,0,0,0,25,0,0,516,13,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,45,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,458,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,60,0,51,0,0,0,2,10,44,223,98,0,0,0,0,1,0,1,0,0,0,0,0,0,422,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,117,36,393,11,0,0,401,0,597,0,1,0,103,4,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,110,74,0,0,57,0,0,0,0,0,538,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,6,0,0,0,0,49,22,4,0,7,0,0,0,0,0,0,144,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,11,0,0,226,36,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,0,0,0,34,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +0,0,0,0,0,9,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,9,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,33,0,0,0,0,3,25,191,56,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,47,1,0,0,86,0,58,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,92,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,4,4 +151,0,0,29,10,83,187,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,27,22,0,14,0,6,3,0,9,33,0,93,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,336,0,0,0,0,0,1,0,3,0,12,0,82,0,0,3065,83,1512,0,39,0,0,0,0,0,71,12,0,0,0,0,13,22,407,0,22,33,9,0,10,193,0,1895,100,3,0,0,14,10,1279,0,46,0,0,2118,0,0,0,0,52,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,37,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,328,0,232,0,0,0,36,75,292,1618,357,0,0,0,0,1,0,5,0,0,0,0,0,0,2745,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1417,48,0,0,1551,0,2890,0,6,0,563,35,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,278,538,0,0,215,0,0,0,0,0,9937,0,0,185,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,90,1,1,1,0,75,0,0,0,0,81,126,309,0,63,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1609,1653,4 +0,0,0,6,0,53,8,0,57,7,9,0,0,2,11,0,1152,0,9,6,0,0,0,6,0,16,0,0,15,0,29,0,0,0,11,898,53,9,32926,0,58,0,0,0,1,0,0,5,0,0,0,0,35,1367,0,0,0,0,0,1,0,0,0,0,0,15,0,0,29443,53,1318,0,45,0,0,0,0,0,33,0,0,0,0,0,9,22,4188,0,0,11,0,0,1,7,0,300,20,8,0,0,2,0,1264,0,8,0,0,4225,0,0,0,0,9,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,5,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,3416,0,119,0,0,0,61,63,272,57782,3403,0,0,0,0,1,0,3,0,0,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,38,21,305,6,0,0,307,0,493,0,0,0,117,32946,0,0,0,0,0,0,0,0,0,1248,1,0,0,0,12,0,0,0,0,34,134,42,0,0,34,0,0,0,0,0,2873,1,0,246,7,0,1,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,6,0,0,0,6,2,0,0,0,0,0,7,29,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,68,0,0,0,0,1,64,218,0,48,12,0,0,0,0,0,113,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,4,711,373,4 +135,0,0,0,11,69,56,44,332,2,76,0,0,0,5,0,110,0,7,28,0,11,11,2,0,4,0,0,36,0,120,0,0,11,36,0,80,6,0,0,435,0,2,0,1,0,0,2,0,0,0,0,123,129,0,0,0,0,0,1,0,0,0,0,0,30,0,0,4671,69,2073,0,160,0,0,0,0,0,289,33,0,0,0,0,7,11,644,0,44,36,11,0,2,223,0,2287,185,4,0,0,2,11,1265,0,3,0,0,2380,0,0,0,0,37,49,0,0,4,0,0,1,0,0,0,16,0,0,0,0,0,0,0,30,0,0,0,31,0,0,0,0,0,1,0,20,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,10,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,37,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,26,0,0,0,0,0,0,230,0,214,0,0,0,242,243,154,1735,262,0,0,0,0,1,0,0,0,0,0,0,0,0,3949,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,12,16,701,11,0,0,947,0,629,0,0,0,544,74,0,0,0,0,0,0,0,0,0,586,1,0,0,0,52,0,0,0,0,123,157,496,0,0,421,0,0,0,0,0,1226,0,0,853,0,0,1,3,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,599,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,68,1,1,1,0,274,0,0,0,234,89,116,44,0,160,0,0,0,0,0,0,552,16,0,0,0,0,0,0,0,0,0,0,0,11,0,1,6,0,0,0,0,0,0,0,0,0,0,0,20,0,1,1217,1342,4 +1,0,0,3,0,30,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,30,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,120,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1107,30,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,193,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,433,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,150,0,49,0,0,0,1,4,193,14,147,0,0,0,0,1,0,3,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,1,0,32,10,133,4,0,0,157,0,327,0,0,0,42,5,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,112,24,0,0,0,0,0,0,0,0,101,0,0,124,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,1,0,0,0,0,1,32,84,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,194,51,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,142,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,70,0,48,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,35,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,4,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,142,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,70,0,46,0,0,0,36,4,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,35,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,4,4 +0,0,0,0,0,1,0,1,18,0,1,0,0,0,1,0,657,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,653,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,9,0,0,0,0,0,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,2,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,9,0,0,1,99,4 +30,0,0,0,0,15,13,0,49,0,12,0,2,0,3,0,14,0,7,1,0,0,0,1,0,5,0,0,0,0,1,0,0,0,5,0,15,15,0,0,103,0,0,0,0,0,0,0,0,0,0,0,5,51,0,0,0,0,0,1,0,0,0,0,0,8,0,0,525,15,125,0,6,0,0,0,0,0,16,0,0,0,0,0,1,1,135,0,0,5,0,0,3,43,0,350,15,0,0,0,6,0,227,0,0,0,0,222,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,113,0,85,0,0,0,5,7,32,320,128,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,25,81,1,0,0,92,0,167,0,0,0,50,6,0,0,0,0,0,0,0,0,0,100,0,0,0,0,2,0,0,0,0,5,102,109,0,0,30,0,0,0,0,0,637,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,20,5,0,6,0,0,0,0,0,0,201,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,106,4 +177,0,0,1,21,100,70,53,480,36,83,0,8,0,38,24,440,0,7,37,0,24,36,8,0,32,27,0,29,0,16,5,0,21,43,625,135,65,1188,0,741,0,3,0,1,0,0,3,1,0,0,0,43,768,0,0,0,0,0,1,0,0,0,19,0,50,0,0,4461,100,2979,0,71,0,0,0,0,0,27,63,0,0,0,0,17,27,841,0,53,43,21,0,8,201,0,1905,150,6,0,0,16,21,1709,0,27,0,0,4020,0,0,0,0,47,32,1,0,3,0,0,1,0,0,0,25,0,0,0,0,0,0,0,12,0,0,0,15,0,0,0,0,0,24,0,50,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,13,1,1,1,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,7,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,15,88,25,25,25,0,0,15,356,16,248,0,0,0,63,92,405,1672,379,0,0,0,0,1,0,4,0,0,0,18,2,0,2257,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,1,0,63,204,1434,24,0,0,1294,0,2216,0,0,0,451,359,0,0,0,0,0,0,0,0,0,1150,1,0,2,0,102,3,0,0,0,37,216,535,0,0,399,0,0,0,1,0,5296,0,0,791,3,0,1,8,1,0,0,0,7,0,0,0,0,0,0,0,0,0,25,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,23,1,2,0,0,0,3,399,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,121,1,1,1,0,79,0,0,0,24,595,179,156,0,100,9,0,0,0,0,0,685,34,0,0,0,0,0,0,0,0,0,0,0,36,0,1,38,0,0,0,0,0,0,0,0,3,0,0,34,0,2,2202,1302,4 +0,0,0,5,0,38,25,0,48,3,24,0,0,7,4,0,824,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12483,38,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,714,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40407,38,991,0,24,0,0,0,0,0,46,0,0,0,0,0,8,92,6702,0,0,1,0,0,0,0,0,367,25,1,0,0,2,0,912,0,0,90,0,4856,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1534,0,32,0,0,0,13,16,511,2088,1510,0,0,0,0,1,0,3,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,277,5,0,0,313,0,287,0,0,0,146,15,0,0,0,0,0,0,0,0,0,938,1,0,0,0,9,0,0,0,0,1,167,6,0,0,136,0,0,0,0,0,4827,1,0,996,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,62,0,0,0,0,1,39,208,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2521,22,4 +2,0,0,10,2,38,54,2,75,10,15,0,0,2,20,6,121,0,10,4,0,0,0,5,0,8,0,0,1,0,1,0,0,2,7,0,40,143,0,0,92,0,0,0,1,0,0,2,0,0,0,0,1,147,0,0,0,0,0,1,0,0,0,0,0,23,0,0,1018,38,220,0,1,0,0,0,0,0,9,0,0,0,0,0,8,16,156,0,2,7,2,0,3,14,0,272,25,2,0,0,6,2,164,0,15,0,0,858,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4,10,10,10,0,0,0,126,0,293,0,0,0,0,3,206,155,158,0,0,0,0,1,0,3,0,0,0,0,0,0,710,0,16,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,260,46,456,12,0,0,480,0,1095,0,2,0,130,15,0,0,0,0,0,0,0,0,0,303,1,0,0,0,9,0,0,0,0,1,156,48,0,0,45,0,0,0,0,0,376,0,0,33,2,0,1,1,0,0,0,0,6,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,40,1,1,1,0,0,0,0,0,0,17,47,33,0,2,8,0,0,0,0,0,125,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,14,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1296,86,4 +26,0,0,6,0,45,36,0,53,30,35,0,0,7,8,0,1022,0,7,1,0,0,0,8,0,10,12,0,22,0,5,0,0,0,3,6361,45,6,0,0,54,0,6,0,1,0,0,7,0,0,0,0,5,422,0,0,0,0,0,1,0,0,0,0,0,7,0,0,82363,45,1328,0,24,0,0,0,0,0,102,0,0,0,0,0,8,130,15619,0,0,3,0,0,0,0,0,408,25,11,0,0,2,0,1199,0,4,70,0,4425,0,0,0,0,10,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,11502,0,135,0,0,0,18,29,682,1447,11467,0,0,0,0,1,0,8,0,0,0,0,0,0,817,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,110,98,346,6,0,0,395,0,300,0,0,0,215,29,0,0,0,0,0,0,0,0,0,1168,1,0,0,0,9,0,0,0,0,2,149,61,0,0,171,0,0,0,0,0,5080,1,0,1093,36,0,1,1,1,0,0,0,17,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,36,365,0,0,0,4,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,53,0,0,0,0,1,48,224,0,37,12,0,1,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,34,0,0,0,0,0,0,0,0,0,0,0,0,0,7,2173,120,4 +0,0,0,6,0,12,2,0,24,0,4,0,0,0,4,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,12,6,0,0,9,0,0,0,1,0,0,2,0,0,0,0,0,1375,0,0,0,0,0,1,0,0,0,0,0,1,0,0,151960,12,57,0,1,0,0,0,0,0,8,0,0,0,0,1,1,5,2516,0,0,0,0,0,0,0,0,8,0,4,0,0,2,0,29,0,0,0,0,4396,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2250,0,51,0,0,0,0,3,32,7,2260,0,0,0,0,1,0,0,0,0,0,0,0,0,1888,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,413,10,0,0,174,0,1428,0,0,0,94,105,0,0,0,0,0,0,0,0,0,56,1,0,0,0,2,0,0,0,0,0,101,72,0,0,0,0,0,0,0,0,561,0,0,2004,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,12,490,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,817,125,4 +0,0,0,5,0,35,24,0,48,3,23,0,0,7,4,0,764,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12352,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,769,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39950,35,928,0,24,0,0,0,0,0,45,0,0,0,0,0,8,96,6523,0,0,1,0,0,0,0,0,363,25,2,0,0,2,0,852,0,0,91,0,4636,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1349,0,32,0,0,0,13,16,490,2066,1328,0,0,0,0,1,0,3,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,277,5,0,0,310,0,295,0,0,0,150,11,0,0,0,0,0,0,0,0,0,876,1,0,0,0,9,0,0,0,0,1,167,7,0,0,132,0,0,0,0,0,4743,1,0,1013,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,62,0,0,0,0,1,36,212,0,25,12,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2459,25,4 +122,0,0,29,11,92,159,27,284,30,43,0,0,2,66,1,571,0,20,46,0,97,1,6,0,33,22,0,18,0,8,2,0,10,38,0,102,301,160,0,413,0,0,0,1,0,0,3,0,0,0,0,34,350,0,0,0,0,0,1,0,3,0,12,0,54,0,0,2635,92,1817,0,51,0,0,0,0,0,27,15,0,0,0,0,13,22,305,0,27,38,10,0,9,50,0,840,85,3,0,0,14,11,651,0,46,0,0,2255,0,0,0,0,46,19,1,0,31,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,311,0,252,0,0,0,42,74,355,684,318,0,0,0,0,1,0,6,0,0,0,0,0,0,2600,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1449,49,0,0,1512,0,2946,0,6,0,510,105,0,0,0,0,0,0,0,0,0,1146,1,0,0,0,150,0,0,0,0,31,286,176,0,0,185,0,0,0,0,0,10434,0,0,183,4,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,57,57,0,0,10,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,97,1,1,1,0,64,0,0,0,0,125,140,326,0,74,9,0,0,0,0,0,349,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,38,0,0,0,0,0,0,0,0,117,0,0,176,0,3,2028,1635,4 +0,0,0,3,0,11,2,0,5,0,2,0,0,0,4,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,414,11,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,30,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,15,0,0,0,0,132,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,35,0,32,0,0,0,2,4,26,56,53,0,0,0,0,1,0,0,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,45,3,0,0,44,0,137,0,0,0,5,6,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,2,93,4,0,0,0,0,0,0,0,0,27,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,11,4 +1,0,0,3,0,29,5,0,26,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,5,0,3,0,0,0,4,0,29,6,0,0,20,0,0,0,1,0,0,4,0,0,0,0,4,125,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1540,29,76,0,7,0,0,0,0,0,18,0,0,0,0,2,7,19,219,0,0,4,0,0,0,0,0,81,5,6,0,0,2,0,41,0,0,0,0,868,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,167,0,63,0,0,0,5,6,184,48,161,0,0,0,0,1,0,3,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,10,208,3,0,0,159,0,271,0,0,0,56,17,0,0,0,0,0,0,0,0,0,61,1,0,0,0,8,0,0,0,0,1,111,25,0,0,0,0,0,0,0,0,113,0,0,202,3,0,1,1,0,0,0,0,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,7,0,0,0,0,1,33,140,0,8,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,211,121,4 +151,0,0,29,10,84,187,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,94,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,350,0,0,0,0,0,1,0,3,0,11,0,82,0,0,2872,84,1511,0,39,0,0,0,0,0,70,12,0,0,0,0,13,22,406,0,22,33,9,0,10,193,0,1895,100,3,0,0,14,10,1279,0,46,0,0,2197,0,0,0,0,54,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,323,0,234,0,0,0,36,76,296,1617,353,0,0,0,0,1,0,5,0,0,0,0,0,0,2724,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1465,48,0,0,1552,0,2940,0,6,0,562,49,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,278,538,0,0,215,0,0,0,0,0,9933,0,0,176,3,0,1,5,0,0,0,0,4,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,77,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1625,1657,4 +0,0,0,5,0,35,24,0,48,3,23,0,0,7,4,0,764,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12487,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,732,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40039,35,928,0,24,0,0,0,0,0,45,0,0,0,0,0,8,92,6541,0,0,1,0,0,0,0,0,363,25,2,0,0,2,0,852,0,0,91,0,4576,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1538,0,32,0,0,0,13,16,486,2065,1517,0,0,0,0,1,0,3,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,276,5,0,0,307,0,294,0,0,0,147,20,0,0,0,0,0,0,0,0,0,876,1,0,0,0,9,0,0,0,0,1,164,7,0,0,132,0,0,0,0,0,4580,1,0,1036,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,62,0,0,0,0,1,36,212,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2475,31,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,14,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,15,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,4 +0,0,0,0,0,8,40,0,48,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,139,8,130,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,44,0,331,15,0,0,0,4,0,226,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,31,0,0,0,0,3,21,203,55,0,0,0,0,0,0,0,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,41,1,0,0,86,0,59,0,0,0,52,1,0,0,0,0,0,0,0,0,0,113,0,0,0,0,2,0,0,0,0,0,91,88,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,104,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,5,4 +186,0,11,22,16,163,291,31,1251,39,133,0,14,2,78,1,13656,0,23,28,0,12,1,7,0,65,19,0,44,0,5,4,0,15,97,26,176,802,0,0,1257,0,0,0,1,0,0,1,1,0,0,0,66,687,0,0,0,0,0,1,0,0,0,18,0,121,0,0,4348,163,16041,0,108,0,0,0,0,0,113,18,0,0,0,0,20,27,463,0,31,97,15,0,28,395,0,3733,255,4,0,0,49,16,15422,0,62,0,0,4555,0,0,0,0,72,84,1,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,10,0,0,0,45,0,0,0,2,0,28,0,21,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,4,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,6,0,0,0,0,39,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1183,10,10,10,0,0,0,373,0,326,0,0,0,73,90,406,2848,546,0,0,0,0,1,0,5,0,0,0,26609,3,1,3833,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,2,1074,33625,2336,43,0,0,2474,0,7470,0,8,0,1156,693,0,0,0,0,0,0,0,0,0,15449,1,0,2,0,48,0,0,0,0,61,460,1042,0,11,627,0,0,0,0,0,50009,0,0,40,3,0,1,8,0,0,0,0,6,0,0,0,0,0,0,0,0,0,36,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,162,1,1,1,0,63,0,0,0,0,107,273,159,0,128,9,0,0,0,0,0,2013,18,0,0,0,0,0,0,0,0,0,0,0,14,0,1,55,0,0,0,0,0,0,0,0,0,0,0,24,0,2,105475,1185,4 +272,0,0,29,21,95,166,37,379,35,43,0,0,2,72,2,809,0,20,66,0,117,2,7,0,36,22,0,25,0,8,2,0,20,43,0,115,301,160,0,483,0,0,0,1,0,0,4,0,0,0,0,37,402,0,0,0,0,0,1,0,3,0,12,0,57,0,0,2770,95,3508,0,61,0,0,0,0,0,19,45,0,0,0,1,14,25,301,0,37,43,20,0,7,29,0,696,55,5,0,0,14,21,699,0,52,0,0,2514,0,0,0,0,62,30,0,0,26,0,0,1,0,0,0,21,0,0,0,0,0,0,0,27,0,0,0,13,0,0,0,0,0,7,0,69,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,20,10,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,317,0,297,0,0,0,45,74,402,545,324,0,0,0,0,1,0,5,0,0,0,0,0,0,2885,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,679,364,1844,59,0,0,1848,0,3157,0,6,0,599,273,0,0,0,0,0,0,0,0,0,1493,1,0,0,0,192,0,0,0,0,37,287,134,0,0,125,0,0,0,0,0,10171,0,0,165,4,0,1,7,0,0,0,0,6,0,0,0,2,0,0,0,0,0,34,0,0,0,0,0,0,0,0,1,0,0,106,106,0,0,11,1,0,0,0,0,3,17,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,100,1,1,1,0,59,0,0,0,0,237,158,372,0,84,9,0,0,0,0,0,324,30,0,0,0,0,0,0,1,0,0,0,0,21,0,5,39,0,0,0,0,0,0,0,0,117,0,0,197,0,2,1776,1941,4 +0,0,0,5,0,38,24,0,47,3,23,0,0,7,4,0,786,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12364,38,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,697,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40664,38,948,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6754,0,0,1,0,0,0,0,0,360,25,2,0,0,2,0,874,0,0,89,0,4510,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1483,0,32,0,0,0,12,15,506,2066,1459,0,0,0,0,1,0,3,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,290,5,0,0,313,0,305,0,0,0,147,13,0,0,0,0,0,0,0,0,0,897,1,0,0,0,9,0,0,0,0,1,167,7,0,0,131,0,0,0,0,0,4783,1,0,1027,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,58,0,0,0,0,1,39,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2482,28,4 +1,0,0,5,0,40,16,0,52,6,12,0,0,6,4,1,834,0,6,2,0,0,0,8,0,11,0,0,17,0,5,0,0,0,5,1347,40,6,0,0,46,0,0,0,1,0,0,2,0,0,0,0,5,284,0,0,0,0,0,1,0,0,0,0,0,2,0,0,32448,40,960,0,18,0,0,0,0,0,33,0,0,0,0,0,9,63,4098,0,0,5,0,0,0,0,0,257,20,4,0,0,2,0,809,0,0,22,0,2527,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,2117,0,93,0,0,0,13,10,541,1850,2074,0,0,0,0,1,0,4,0,0,0,0,0,0,2595,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,34,226,5,0,0,243,0,317,0,0,0,89,41,0,0,0,0,0,0,0,0,0,931,1,0,0,0,10,0,0,0,0,2,123,27,0,0,51,0,0,0,0,0,3062,1,0,2996,17,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,38,38,0,0,4,0,0,0,0,0,17,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,36,0,0,0,0,31,45,234,0,19,14,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1162,243,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,83,0,57,0,0,0,49,4,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,4,4 +2,0,0,0,0,23,14,0,46,6,5,1,0,0,7,0,31,0,7,2,0,0,0,2,0,2,3,0,4,0,2,0,0,0,7,0,23,64,4,0,146,0,0,0,1,0,0,1,0,0,0,0,3,144,0,0,0,0,0,1,0,0,0,0,0,5,0,0,633,23,103,0,7,0,0,0,0,0,5,0,0,0,0,0,2,4,122,0,0,7,0,0,0,26,0,220,5,2,0,0,2,0,198,0,2,0,0,698,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,125,0,39,0,0,0,5,14,47,183,120,0,0,0,0,1,0,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,40,196,3,0,0,182,0,567,0,0,0,77,58,0,0,0,0,0,0,0,0,0,111,1,0,0,0,4,0,0,0,0,3,140,89,0,0,15,0,0,0,0,0,328,0,0,17,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,14,0,0,0,0,1,30,168,0,11,0,0,0,0,0,0,97,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,57,4 +5,0,0,0,0,12,3,0,5,0,1,0,1,0,2,0,12,0,6,2,0,0,0,0,0,2,0,0,2,0,1,0,0,0,4,0,12,12,0,0,25,0,0,0,0,0,0,0,0,0,0,0,2,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,56,12,26,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,4,0,0,1,0,0,13,0,0,0,0,4,0,14,0,0,0,0,98,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,20,0,19,0,0,0,2,5,27,13,23,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,21,63,0,0,0,61,0,111,0,0,0,27,1,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,3,104,4,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,2,0,0,0,0,1,16,4,0,5,0,0,0,0,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,4 +305,0,0,10,14,178,214,38,525,65,86,0,6,0,125,1,971,0,17,27,0,10,6,10,2,64,48,0,23,0,17,6,0,12,99,0,192,60641,6670,0,1092,0,0,0,1,0,0,5,1,0,0,0,78,473,0,0,0,0,0,1,0,3,0,24,0,112,0,0,39154,178,3099,0,98,0,0,0,0,0,156,27,0,0,0,0,22,33,7981,0,38,99,12,0,12,259,0,2499,135,11,0,0,20,14,2630,0,78,1,0,6896,0,0,0,0,84,80,1,0,31,0,0,1,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,34,0,0,0,0,0,2,0,29,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,63,8,0,0,0,0,0,2,0,0,0,0,0,7,23,0,0,0,3,0,0,0,0,12,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,125,12,12,12,0,0,2,5076,2,489,0,0,2,99,373,441,135817,5092,0,0,0,0,1,0,9,0,0,0,0,0,0,10867,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,470,247,1670,27,0,0,1877,0,2352,0,4,0,905,126418,0,0,0,0,0,0,0,0,0,1945,1,0,2,0,55,0,0,0,0,63,375,714,0,0,318,0,0,0,0,0,73222,0,0,8150,3,0,1,11,0,0,0,0,14,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,22,1,0,0,0,0,3,159,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,186,1,1,1,0,643,0,0,0,0,186,291,440,1,149,9,0,0,0,0,0,1030,19,0,0,0,0,0,0,0,0,0,0,0,15,0,2,71,0,0,0,0,0,0,0,19,8,0,0,26,0,4,4609,2378,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,405,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,25,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,140,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,154,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,14,4 +0,0,0,3,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,2,0,0,20,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,21,0,0,0,0,3,21,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,3,0,0,32,0,96,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,7,4 +11,0,0,8,1,34,48,1,122,7,15,1,0,0,13,0,71,0,9,2,0,0,0,4,0,3,3,0,13,0,2,0,0,1,17,0,35,54,0,0,148,0,0,0,1,0,0,16,3,0,0,0,4,292,0,0,0,0,0,1,0,0,0,20,0,10,0,0,7230,34,343,0,18,0,0,0,0,0,58,0,0,0,0,5,5,29,1317,0,1,17,1,0,1,47,0,463,15,33,1,0,4,1,349,0,8,0,0,1129,0,0,0,0,31,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,8,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,1063,0,235,0,0,0,5,13,72,431,1006,0,0,0,0,1,0,0,0,0,0,0,0,0,2285,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,112,19,365,11,0,0,486,0,1605,0,1,0,273,39,0,0,0,0,0,0,0,0,0,279,1,0,9,0,6,0,0,0,0,6,146,222,0,0,34,0,0,0,0,0,586,0,0,1277,0,0,1,0,0,0,0,0,43,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,38,1,1,1,0,17,0,0,0,0,9,52,806,0,21,0,0,0,0,0,0,199,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,10,1710,87,4 +12,0,0,4,0,17,2,0,23,3,3,0,0,0,6,0,91,0,6,1,0,0,0,1,0,0,45,0,15,0,16,0,0,0,5,0,17,61,0,0,22,0,60,0,1,0,0,60,0,0,0,0,15,295,0,0,0,0,0,1,0,0,0,0,0,7,0,0,8804,17,418,0,31,0,0,0,0,0,142,0,0,0,0,0,1,62,1518,0,0,5,0,0,0,0,0,141,0,65,0,0,2,0,319,0,4,0,0,523,0,3,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,1572,0,502,0,0,0,30,78,41,149,1960,0,0,0,0,1,0,0,0,0,0,0,0,0,3821,0,63,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,8,7,141,4,0,0,608,0,888,0,0,0,547,12,0,0,0,0,0,0,0,0,0,131,1,0,0,0,2,0,0,0,0,16,99,445,0,0,0,0,0,0,0,0,607,0,0,1342,0,0,1,0,1,0,0,0,167,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,138,0,0,0,0,16,15,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,30,0,0,0,0,1,22,102,0,76,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1522,350,4 +385,0,0,3,13,193,204,37,524,67,88,0,7,0,118,1,914,0,15,29,0,10,6,11,2,42,42,0,19,0,18,3,0,11,116,0,206,201,6131,0,1119,0,0,0,1,0,0,5,1,0,0,0,54,416,0,0,0,0,0,1,0,3,0,16,0,108,0,0,40342,193,3023,0,70,0,0,0,0,0,153,27,0,0,0,0,25,36,8246,0,37,116,11,0,12,283,0,2576,155,11,0,0,20,13,2658,0,73,1,0,7367,0,0,0,0,123,92,2,0,35,0,0,1,0,0,0,22,0,0,0,0,0,0,0,21,0,0,0,34,0,0,0,0,0,2,0,29,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,93,8,0,0,0,0,0,2,0,0,0,0,0,7,22,0,0,0,4,0,0,0,0,11,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,2,107,12,12,12,0,0,2,5246,2,497,0,0,2,73,302,458,137195,5247,0,0,0,0,1,0,9,0,0,0,0,0,0,11913,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,370,235,1654,20,0,0,1753,0,1968,0,3,0,902,128105,0,0,0,0,0,0,0,0,0,1871,1,0,2,0,58,0,0,0,0,44,350,759,0,0,374,0,0,0,0,0,12709,0,0,8979,3,0,1,11,0,0,0,0,15,0,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,1,0,0,0,0,3,153,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3,201,1,1,1,0,528,0,0,0,0,180,322,457,1,115,9,0,0,0,0,0,1065,18,0,0,0,0,0,0,0,0,0,0,0,14,0,2,73,0,0,0,0,0,0,0,29,8,0,0,27,0,4,4400,2696,4 +277,0,0,29,21,93,166,37,370,33,43,0,0,2,70,2,794,0,20,68,0,116,2,6,0,37,22,0,21,0,7,2,0,20,41,0,113,301,159,0,452,0,0,0,1,0,0,2,0,0,0,0,37,372,0,0,0,0,0,1,0,3,0,12,0,55,0,0,2480,93,3480,0,56,0,0,0,0,0,14,45,0,0,0,0,14,23,247,0,37,41,20,0,7,29,0,692,55,1,0,0,14,21,674,0,50,0,0,3112,0,0,0,0,64,32,0,0,26,0,0,1,0,0,0,19,0,0,0,0,0,0,0,27,0,0,0,13,0,0,0,0,0,7,0,68,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,32,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,20,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,278,0,265,0,0,0,45,75,398,547,291,0,0,0,0,1,0,5,0,0,0,0,0,0,2750,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,364,1799,59,0,0,1831,0,3231,0,6,0,584,679,0,0,0,0,0,0,0,0,0,1467,1,0,0,0,192,0,0,0,0,39,286,132,0,0,125,0,0,0,0,0,10698,0,0,142,4,0,1,8,0,0,0,0,5,0,0,0,1,0,0,0,0,0,32,0,0,0,0,0,0,0,0,1,0,0,102,102,0,0,7,1,0,0,0,0,3,18,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,98,1,1,1,0,58,0,0,0,0,235,154,305,0,80,9,0,0,0,0,0,305,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,37,0,0,0,0,0,0,0,0,117,0,0,198,0,1,1650,1868,4 +0,0,0,5,0,35,24,0,47,3,23,0,0,7,4,0,729,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12324,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,782,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39621,35,891,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6554,0,0,1,0,0,0,0,0,360,25,2,0,0,2,0,817,0,0,89,0,4433,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1476,0,34,0,0,0,12,15,485,2059,1455,0,0,0,0,1,0,3,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,288,5,0,0,314,0,292,0,0,0,155,14,0,0,0,0,0,0,0,0,0,840,1,0,0,0,9,0,0,0,0,1,171,7,0,0,131,0,0,0,0,0,4518,1,0,1031,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2405,28,4 +0,0,0,5,0,37,9,0,37,1,7,0,0,6,4,0,564,0,6,1,0,0,0,9,0,11,0,0,8,0,1,0,0,0,2,900,37,6,0,0,43,0,1,0,1,0,0,1,0,0,0,0,1,195,0,0,0,0,0,1,0,0,0,0,0,2,0,0,26049,37,634,0,5,0,0,0,0,0,16,0,0,0,0,0,9,31,4798,0,0,2,0,0,0,0,0,210,20,2,0,0,2,0,614,0,0,7,0,2834,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,1158,0,33,0,0,0,2,5,285,1662,1141,0,0,0,0,1,0,3,0,0,0,0,0,0,1287,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,84,19,187,5,0,0,210,0,202,0,0,0,59,4,0,0,0,0,0,0,0,0,0,633,1,0,0,0,10,0,0,0,0,0,120,13,0,0,18,0,0,0,0,0,3341,1,0,2040,10,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,10,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,10,0,0,0,0,1,39,212,0,6,14,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1881,119,4 +16,0,0,14,0,53,6,0,25,23,3,0,0,0,40,0,38,0,8,3,0,0,0,1,0,3,9,0,9,0,5,0,0,0,33,0,53,6,3,0,185,0,0,0,1,0,0,3,1,0,0,0,7,87,0,0,0,0,0,1,0,0,0,19,0,30,0,0,8926,53,147,0,16,0,0,0,0,0,14,0,0,0,0,0,2,7,881,0,0,33,0,0,0,0,0,44,0,7,0,0,2,0,170,0,27,0,0,1053,0,0,0,0,11,0,1,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,14,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,29,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,28,0,0,0,0,0,0,827,0,133,0,0,0,12,27,88,170,884,0,0,0,0,1,0,0,0,0,0,0,0,0,3104,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,50,347,20,0,0,312,0,550,0,0,0,216,13,0,0,0,0,0,0,0,0,0,120,1,0,4,0,4,0,0,0,0,8,173,69,0,0,0,0,0,0,0,0,1182,0,0,2884,0,0,1,0,0,0,0,0,11,0,0,0,2,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,24,0,0,0,0,1,86,262,0,26,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1005,248,4 +117,0,0,29,11,90,157,27,271,30,38,0,0,2,66,1,565,0,20,44,0,99,2,6,0,33,22,0,17,0,8,2,0,10,38,0,100,301,160,0,385,0,0,0,1,0,0,3,0,0,0,0,34,344,0,0,0,0,0,1,0,3,0,13,0,52,0,0,2534,90,1775,0,50,0,0,0,0,0,21,15,0,0,0,0,13,22,287,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,586,0,46,0,0,2432,0,0,0,0,46,15,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,8,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,293,0,233,0,0,0,42,74,343,588,303,0,0,0,0,1,0,6,0,0,0,0,0,0,2136,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1436,49,0,0,1497,0,2989,0,6,0,502,181,0,0,0,0,0,0,0,0,0,1120,1,0,0,0,151,0,0,0,0,29,283,149,0,0,155,0,0,0,0,0,10428,0,0,168,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,10,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,63,0,0,0,0,121,138,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,186,0,3,1642,1612,4 +114,0,0,24,4,63,81,7,125,7,16,0,0,2,24,0,187,0,12,5,0,1,1,6,0,15,9,0,9,0,4,0,0,4,23,0,67,164,0,0,210,0,0,0,1,0,0,8,0,0,0,0,11,265,0,0,0,0,0,1,0,1,0,0,0,21,0,0,5131,63,483,0,18,0,0,0,0,0,30,3,0,0,0,0,8,21,1012,0,7,23,4,0,4,11,0,322,20,12,0,0,8,4,207,0,15,0,0,2459,0,0,0,0,45,33,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,34,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,748,0,250,0,0,0,13,48,242,249,716,0,0,0,0,1,0,4,0,0,0,0,0,0,2001,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,74,772,33,0,0,817,0,1552,0,3,0,288,49,0,0,0,0,0,0,2,0,0,447,1,0,0,0,13,0,0,0,0,11,193,94,0,0,34,0,0,0,0,0,1196,0,0,910,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,26,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,65,1,1,1,0,68,0,0,0,0,33,90,361,0,28,9,0,0,0,0,0,280,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,11,0,0,0,0,0,0,0,0,0,0,0,6,0,2,1328,1382,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,146,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,52,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,83,0,57,0,0,0,49,4,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,38,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,4,4 +0,0,0,5,0,36,24,0,49,3,23,0,0,7,4,0,820,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12437,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,707,0,0,0,0,0,1,0,0,0,0,0,2,0,0,38671,36,985,0,24,0,0,0,0,0,45,0,0,0,0,0,8,94,6164,0,0,1,0,0,0,0,0,361,25,2,0,0,2,0,908,0,0,87,0,5141,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1287,0,32,0,0,0,13,16,493,2058,1265,0,0,0,0,1,0,3,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,278,5,0,0,308,0,285,0,0,0,146,16,0,0,0,0,0,0,0,0,0,933,1,0,0,0,9,0,0,0,0,1,164,7,0,0,130,0,0,0,0,0,4703,1,0,1021,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,212,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2456,28,4 +139,0,0,36,19,104,215,59,377,45,62,0,0,2,88,0,491,0,24,63,0,104,2,6,0,56,22,0,32,0,8,3,0,18,45,0,116,400,160,0,781,0,0,0,1,0,0,5,1,0,0,0,57,415,0,0,0,0,0,1,0,3,0,12,0,79,0,0,3530,104,2787,0,87,0,0,0,0,0,64,33,0,0,0,0,13,27,472,0,59,45,18,0,11,86,0,1260,95,11,0,0,18,19,860,0,64,0,0,2883,0,0,0,0,70,24,0,0,38,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,12,0,0,0,2,0,1,0,25,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,4,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,87,10,10,10,0,0,0,427,0,245,0,0,0,66,101,334,1096,467,0,0,0,0,1,0,5,0,0,0,0,0,0,3179,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,884,416,1821,66,0,0,1886,0,4001,0,8,0,619,318,0,0,0,0,0,0,0,0,0,1259,1,0,2,0,175,0,0,0,0,50,339,225,0,0,211,0,0,0,0,0,10229,0,0,161,3,0,1,8,0,0,0,0,13,0,0,0,4,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,3,22,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,111,1,1,1,0,81,0,0,0,0,97,161,218,0,112,9,0,0,0,0,0,501,12,0,0,0,0,0,0,1,0,0,0,0,13,0,4,53,0,0,0,0,0,0,0,0,117,0,0,198,0,6,1988,2109,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,2,0,0,407,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,136,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,30,0,27,0,0,0,2,4,27,94,44,0,0,0,0,1,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,47,3,0,0,47,0,144,0,0,0,5,6,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +9,0,0,6,1,17,26,1,38,1,4,0,0,0,6,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,3,0,18,54,0,0,19,0,0,0,1,0,0,4,0,0,0,0,0,82,0,0,0,0,0,1,0,0,0,0,0,5,0,0,22956,17,126,0,1,0,0,0,0,0,17,0,0,0,0,0,1,6,1638,0,1,3,1,0,1,0,0,50,0,6,0,0,4,1,25,0,3,0,0,8315,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1551,0,154,0,0,0,0,3,74,37,1567,0,0,0,0,1,0,0,0,0,0,0,0,0,1619,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,113,17,981,8,0,0,811,0,747,0,1,0,619,28,0,0,0,0,0,0,0,0,0,147,1,0,0,0,2,0,0,0,0,0,652,21,0,0,0,0,0,0,0,0,1218,0,0,1665,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,48,1,1,1,0,0,0,0,0,0,9,21,73,0,1,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,798,123,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,17,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,42,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,7,4 +0,0,0,2,0,10,2,0,14,0,2,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,95,0,0,0,0,0,1,0,0,0,0,0,1,0,0,8209,10,38,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,1922,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,15,0,0,0,0,504,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,71,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1110,0,127,0,0,0,0,3,26,4,1152,0,0,0,0,1,0,0,0,0,0,0,0,0,3057,0,0,0,0,0,0,0,0,0,0,0,0,1,0,71,0,0,0,0,0,0,8,5,81,2,0,0,140,0,225,0,0,0,75,5,0,0,0,0,0,0,82,0,0,41,1,0,0,0,2,0,0,0,0,0,93,67,0,0,0,0,0,0,0,0,528,0,0,2383,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,161,0,0,0,0,293,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,80,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,329,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,84,0,0,0,0,0,0,0,1,1468,5,4 +96,0,0,12,1,77,51,1,141,8,29,0,7,0,14,18,269,0,9,3,0,0,0,8,0,30,12,0,17,0,5,2,0,1,36,0,78,45201,0,0,1183,0,0,0,1,0,0,5,0,0,0,0,29,161,0,0,0,0,0,1,0,0,0,0,0,25,0,0,3004,77,592,0,44,0,0,0,0,0,41,0,0,0,0,3,10,25,312,0,1,36,1,0,10,84,0,873,45,6,0,0,16,1,703,0,9,0,0,14509,0,0,0,0,24,25,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,6,0,0,0,0,0,2,0,25,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,44,10,10,10,0,0,0,363,0,310,0,0,0,34,46,294,929,270,0,0,0,0,1,0,3,0,0,0,0,0,0,1377,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,181,171,638,17,0,0,506,0,915,0,1,0,229,184,0,0,0,0,0,0,0,0,0,538,1,0,0,0,11,0,0,0,0,28,188,215,0,0,98,0,0,0,2,0,46435,0,0,73,3,0,1,6,0,0,0,0,8,0,0,0,4,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,50,50,0,0,14,1,0,0,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,82,1,1,1,0,44,0,0,0,0,45,114,98,0,57,9,0,0,0,0,0,1836,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,14,0,0,0,0,0,0,0,0,0,0,0,1,0,3,814,1174,4 +141,0,0,36,19,105,215,59,376,46,63,0,0,2,88,0,490,0,24,64,0,103,2,6,0,56,22,0,31,0,9,2,0,18,45,0,117,400,160,0,783,0,0,0,1,0,0,5,1,0,0,0,57,415,0,0,0,0,0,1,0,3,0,12,0,80,0,0,3582,105,2786,0,86,0,0,0,0,0,64,33,0,0,0,0,13,27,490,0,59,45,18,0,11,86,0,1259,95,10,0,0,18,19,859,0,65,0,0,4089,0,0,0,0,71,25,0,0,38,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,12,0,0,0,2,0,1,0,25,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,4,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,87,10,10,10,0,0,0,420,0,241,0,0,0,66,102,338,1097,462,0,0,0,0,1,0,5,0,0,0,0,0,0,3211,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,884,417,1834,66,0,0,1890,0,3983,0,8,0,620,344,0,0,0,0,0,0,0,0,0,1258,1,0,2,0,175,0,0,0,0,50,341,225,0,0,211,0,0,0,0,0,10242,0,0,149,3,0,1,8,0,0,0,0,13,0,0,0,4,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,3,22,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,108,1,1,1,0,82,0,0,0,0,97,162,218,0,111,9,0,0,0,0,0,502,12,0,0,0,0,0,0,1,0,0,0,0,13,0,4,54,0,0,0,0,0,0,0,0,117,0,0,205,0,6,2035,2107,4 +1,0,0,3,0,30,5,0,21,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,30,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,150,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1112,30,59,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,191,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,497,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,159,0,54,0,0,0,1,4,190,14,156,0,0,0,0,1,0,3,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,32,10,143,3,0,0,154,0,330,0,0,0,41,13,0,0,0,0,0,0,0,0,0,56,1,0,0,0,8,0,0,0,0,1,112,24,0,0,0,0,0,0,0,0,89,0,0,89,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,1,0,0,0,0,1,32,123,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,174,61,4 +278,0,0,29,21,95,166,37,377,33,43,0,0,2,70,2,798,0,20,67,0,117,2,6,0,36,22,0,21,0,7,3,0,20,41,0,115,301,160,0,452,0,0,0,1,0,0,4,0,0,0,0,37,431,0,0,0,0,0,1,0,3,0,12,0,55,0,0,2619,95,3449,0,57,0,0,0,0,0,18,45,0,0,0,1,14,25,271,0,37,41,20,0,7,29,0,694,55,4,0,0,14,21,684,0,50,0,0,2311,0,0,0,0,65,31,0,0,25,0,0,1,0,0,0,19,0,0,0,0,0,0,0,26,0,0,0,15,0,0,0,0,0,7,0,69,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,33,2,0,0,0,0,0,2,0,0,0,0,0,0,14,0,0,0,0,0,0,0,20,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,301,0,284,0,0,0,45,77,402,544,313,0,0,0,0,1,0,5,0,0,0,0,0,0,2924,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,677,364,1874,59,0,0,1848,0,3168,0,6,0,593,601,0,0,0,0,0,0,0,0,0,1478,1,0,0,0,192,0,0,0,0,33,288,134,0,0,125,0,0,0,0,0,10710,0,0,161,5,0,1,7,0,0,0,0,8,0,0,0,2,0,0,0,0,0,32,0,0,0,0,0,0,0,0,1,0,0,103,103,0,0,9,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,103,1,1,1,0,60,0,0,0,0,229,156,370,0,80,9,0,0,0,0,0,305,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,37,0,0,0,0,0,0,0,0,117,0,0,212,0,2,1839,1884,4 +147,0,0,0,11,69,56,44,340,2,80,0,0,0,5,0,110,0,7,29,0,11,11,1,0,4,0,0,36,0,138,0,0,11,36,0,80,6,0,0,443,0,2,0,1,0,0,2,0,0,0,0,141,137,0,0,0,0,0,1,0,0,0,0,0,30,0,0,4773,69,2097,0,178,0,0,0,0,0,289,33,0,0,0,0,7,11,615,0,44,36,11,0,2,231,0,2423,205,4,0,0,2,11,1310,0,3,0,0,2909,0,0,0,0,41,54,0,0,3,0,0,1,0,0,0,17,0,0,0,0,0,0,0,35,0,0,0,37,0,0,0,0,0,1,0,19,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,9,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,41,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,26,0,0,0,0,0,0,219,0,198,0,0,0,278,278,155,1819,250,0,0,0,0,1,0,0,0,0,0,0,0,0,3859,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,12,16,718,11,0,0,948,0,649,0,0,0,546,82,0,0,0,0,0,0,0,0,0,598,1,0,0,0,52,0,0,0,0,143,158,508,0,0,465,0,0,0,0,0,1187,0,0,870,0,0,1,3,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,0,635,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,68,1,1,1,0,310,0,0,0,268,89,116,44,0,178,0,0,0,0,0,0,560,16,0,0,0,0,0,0,0,0,0,0,0,11,0,1,6,0,0,0,0,0,0,0,0,0,0,0,19,0,1,1193,1443,4 +0,0,0,5,0,37,24,0,48,3,23,0,0,7,4,0,804,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12547,37,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,712,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41486,37,968,0,24,0,0,0,0,0,45,0,0,0,0,0,8,92,6929,0,0,1,0,0,0,0,0,361,25,2,0,0,2,0,892,0,0,87,0,4659,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1648,0,32,0,0,0,13,16,500,2057,1625,0,0,0,0,1,0,3,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,273,5,0,0,312,0,285,0,0,0,150,12,0,0,0,0,0,0,0,0,0,916,1,0,0,0,9,0,0,0,0,1,166,7,0,0,130,0,0,0,0,0,4760,1,0,1024,22,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,62,0,0,0,0,1,38,212,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2493,27,4 +367,0,0,6,14,161,205,38,487,73,77,0,5,0,130,1,978,0,17,20,0,10,6,9,2,60,53,0,20,0,16,3,0,12,93,0,175,247,6504,0,1015,0,0,0,1,0,0,5,1,0,0,0,69,456,0,0,0,0,0,1,0,3,0,15,0,108,0,0,38306,161,2923,0,86,0,0,0,0,0,138,27,0,0,0,0,14,25,7767,0,38,93,12,0,11,219,0,2156,135,11,0,0,18,14,2453,0,82,1,0,7823,0,0,0,0,119,86,2,0,31,0,0,1,0,0,0,22,0,0,0,0,0,0,0,17,0,0,0,37,0,0,0,0,0,2,0,26,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,94,8,0,0,0,0,0,2,0,0,0,0,0,7,25,0,0,0,3,0,0,0,0,9,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,119,12,12,12,0,0,2,4933,2,488,0,0,2,86,317,405,136800,4951,0,0,0,0,1,0,11,0,0,0,0,0,0,11071,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,464,246,1718,24,0,0,1788,0,2277,0,4,0,853,127720,0,0,0,0,0,0,0,0,0,1900,1,0,2,0,47,0,0,0,0,54,351,608,0,0,318,0,0,0,0,0,12741,0,0,8288,3,0,1,12,0,0,0,0,14,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,1,0,0,0,0,3,145,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,169,1,1,1,0,520,0,0,0,0,188,268,447,1,143,9,0,0,0,0,0,955,19,0,0,0,0,0,0,0,0,0,0,0,15,0,2,79,1,0,0,0,0,0,0,27,8,0,0,28,0,4,4398,2394,4 +3,0,0,6,1,46,6,0,54,2,7,0,0,6,7,0,706,0,6,2,0,0,0,8,0,11,0,0,54,0,1,0,0,0,9,898,46,28,0,0,48,0,0,0,1,0,0,11,1,0,0,0,1,273,0,0,0,0,0,1,0,0,0,0,0,5,0,0,9442,46,887,0,51,0,0,0,0,0,44,0,0,0,0,4,9,33,1526,0,0,9,0,0,0,0,0,260,20,21,0,0,2,1,822,0,2,2,0,1459,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,820,0,194,0,0,0,0,3,275,373,785,0,0,0,0,1,0,3,0,0,0,0,0,0,1640,0,0,0,0,0,0,0,0,0,0,0,0,11,1,2,0,0,0,0,1,0,84,23,275,7,0,0,377,0,506,0,0,0,210,63,0,0,0,0,0,0,0,0,0,792,1,0,4,0,10,0,0,0,0,1,139,115,0,0,6,0,1,0,0,0,2189,1,0,1111,8,0,1,1,0,0,0,0,31,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,50,0,0,0,0,1,55,575,0,52,14,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1128,802,4 +0,0,0,10,0,8,2,0,16,0,2,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,0,63,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,8,40,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,25,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,17,0,0,0,0,124,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,33,0,0,0,0,3,22,6,46,0,0,0,0,1,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,89,15,0,0,96,0,245,0,0,0,32,5,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,93,21,0,0,0,0,0,0,0,0,27,0,0,9,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,57,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,62,32,4 +228,0,0,0,3,84,56,12,338,3,109,1,2,0,5,0,48,0,7,15,0,3,3,3,0,6,3,0,41,0,87,1,0,3,36,0,87,12,0,0,506,0,0,0,0,0,0,0,0,0,0,0,93,131,0,0,0,0,0,1,0,0,0,0,0,23,0,0,5254,84,1424,0,135,0,0,0,0,0,270,9,0,0,0,0,11,11,222,0,12,36,3,0,4,298,0,2746,420,0,0,0,6,3,1437,0,2,0,0,2389,0,0,0,0,88,97,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,81,0,0,0,80,0,0,0,0,0,1,0,13,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,75,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,218,0,178,0,0,0,180,182,160,1964,239,0,0,0,0,0,0,0,0,0,0,0,0,0,3897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,552,6,0,0,699,0,536,0,0,0,468,83,0,0,0,0,0,0,0,0,0,566,0,0,0,0,24,0,0,0,0,92,175,577,0,0,938,0,0,0,0,0,1071,0,0,87,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,1,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,84,1,1,1,0,218,0,0,0,0,25,123,36,0,138,0,0,0,0,0,0,635,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,1,0,0,0,0,0,0,0,0,0,0,6,0,0,1168,277,4 +1,0,0,5,0,40,18,0,56,4,11,0,0,6,4,1,872,0,6,2,0,0,0,8,0,11,0,0,17,0,5,0,0,0,5,1347,40,6,0,0,46,0,0,0,1,0,0,2,0,0,0,0,5,279,0,0,0,0,0,1,0,0,0,0,0,2,0,0,32135,40,1007,0,18,0,0,0,0,0,37,0,0,0,0,0,9,64,3874,0,0,5,0,0,0,0,0,257,20,4,0,0,2,0,851,0,0,27,0,3477,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,2011,0,93,0,0,0,13,9,527,1906,1968,0,0,0,0,1,0,4,0,0,0,0,0,0,2535,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,28,226,5,0,0,247,0,320,0,0,0,92,16,0,0,0,0,0,0,0,0,0,974,1,0,0,0,10,0,0,0,0,2,123,31,0,0,51,0,0,0,0,0,3060,1,0,2933,19,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,38,38,0,0,3,0,0,0,0,0,19,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,36,0,0,0,0,31,45,229,0,19,14,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1122,202,4 +0,0,0,4,0,27,6,0,8,0,2,0,0,2,5,0,13,0,6,3,0,0,0,5,0,8,0,0,3,0,2,0,0,0,1,0,27,7,0,0,22,0,0,0,1,0,0,0,0,0,0,0,2,72,0,0,0,0,0,1,0,0,0,0,0,3,0,0,901,27,32,0,3,0,0,0,0,0,3,0,0,0,0,0,7,12,123,0,0,1,0,0,0,0,0,77,5,0,0,0,2,0,31,0,0,0,0,466,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,70,0,33,0,0,0,2,4,180,53,74,0,0,0,0,1,0,3,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,32,10,99,4,0,0,85,0,214,0,0,0,9,4,0,0,0,0,0,0,0,0,0,42,0,0,0,0,8,0,0,0,0,2,109,4,0,0,0,0,0,0,0,0,85,0,0,1,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,3,0,0,0,0,1,28,17,0,4,9,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,311,30,4 +33,0,0,1,1,50,7,4,22,2,2,0,3,0,5,0,35,0,7,8,0,1,1,6,0,15,3,0,5,0,2,1,0,1,20,0,51,12,0,0,125,0,0,0,1,0,0,0,0,0,0,0,10,92,0,0,0,0,0,1,0,1,0,0,0,2,0,0,842,50,183,0,13,0,0,0,0,0,4,3,0,0,0,0,11,16,116,0,4,20,1,0,2,0,0,110,0,0,0,0,6,1,78,0,2,0,0,1109,0,0,0,0,7,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,1,0,7,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,107,0,69,0,0,0,11,17,212,91,106,0,0,0,0,1,0,3,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,52,241,2,0,0,204,0,343,0,0,0,85,29,0,0,0,0,0,0,0,0,0,81,0,0,0,0,16,0,0,0,0,9,141,5,0,0,0,0,0,0,0,0,121,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,10,0,0,0,0,9,71,36,0,17,9,0,0,0,0,0,109,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,126,743,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,404,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,134,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,48,3,0,0,47,0,143,0,0,0,5,2,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +0,0,0,15,0,52,6,0,49,9,6,0,0,6,27,0,764,0,7,2,0,0,0,7,0,10,0,0,6,0,1,0,0,0,10,978,52,32,0,0,101,0,0,0,1,0,0,2,0,0,0,0,1,234,0,0,0,0,0,1,0,0,0,4,0,14,0,0,34356,52,849,0,4,0,0,0,0,0,15,0,0,0,0,0,8,18,6409,0,0,10,0,0,0,0,0,188,20,4,0,0,2,0,877,0,10,1,0,3227,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,4231,0,53,0,0,0,0,3,323,843,4161,0,0,0,0,1,0,15,0,0,0,0,0,0,2168,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,89,29,262,27,0,0,267,0,354,0,0,0,93,8,0,0,0,0,0,0,0,0,0,865,1,0,0,0,9,0,0,0,0,1,135,25,0,0,6,0,0,0,0,1,2974,1,0,2282,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,3,0,0,0,0,1,62,166,0,5,12,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1639,54,4 +46,0,3,26,6,69,127,3,857,88,91,0,0,2,166,0,8670,0,12,7,0,1,0,6,0,12,312,0,45,0,105,2,0,5,30,26,72,336,0,0,721,0,0,0,1,0,0,1,0,0,0,0,110,189,0,0,0,0,0,1,0,0,0,26,0,40,0,0,6147,69,10255,0,153,0,0,0,0,0,9,0,0,0,0,0,10,17,146,0,3,30,5,0,4,70,0,1236,35,2,0,0,13,6,10760,0,37,0,0,4554,0,0,0,0,68,0,0,1,1,0,0,1,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,19,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,102,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1399,10,10,10,0,0,0,136,0,98,0,0,0,215,664,253,2102,226,0,0,0,0,1,0,3,0,0,0,16045,3,1,2102,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,521,20218,829,32,0,0,889,0,4139,0,4,0,343,675,0,0,0,0,0,0,0,0,0,9925,1,0,0,0,14,0,0,0,0,107,225,221,0,3,64,0,45,0,0,0,18685,0,0,379,3,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,3,63,1,1,1,0,474,0,0,0,4,27,102,145,0,467,9,0,0,0,0,0,571,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,94,0,0,0,0,0,0,0,0,0,0,0,6,0,1,1706,429,4 +0,0,0,3,0,10,2,0,5,0,2,0,0,0,4,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,10,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,397,10,24,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,6,0,0,0,0,2,0,15,0,0,0,0,121,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,25,0,0,0,0,3,25,51,45,0,0,0,0,1,0,0,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,111,0,0,0,5,3,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,1,92,4,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,1,0,0,0,0,1,10,4,0,2,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,1,4 +6,0,0,9,0,59,181,0,122,6,15,0,0,2,21,2,66,0,62,4,0,0,0,7,0,9,23,0,8,0,9,4,0,0,23,0,59,206,0,0,282,0,0,0,1,0,0,7,1,0,0,0,13,215,0,0,0,0,0,1,0,0,0,4,0,16,0,0,7434,59,546,0,19,0,0,0,0,0,36,0,0,0,0,2,10,25,702,0,0,23,0,0,1,94,0,838,60,21,0,0,2,0,713,0,10,0,0,2706,0,0,0,0,3,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,657,0,165,0,0,0,24,50,247,1343,632,0,0,0,0,1,0,13,0,0,0,0,0,0,2789,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,25,438,9,0,0,618,0,1208,0,0,0,478,97,0,0,0,0,0,0,0,0,0,471,1,0,9,0,11,0,0,0,0,12,158,383,0,0,293,0,0,0,0,0,1368,0,0,1677,3,0,1,1,1,0,0,0,27,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,84,1,1,1,0,22,0,0,0,0,1,82,624,0,44,9,0,0,0,0,0,289,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,946,1485,4 +74,0,2,0,5,58,20,10,600,6,20,0,4,0,8,18,6193,0,8,8,0,3,2,7,2,13,3,0,3,0,2,0,0,2,13,26,62,15,0,0,246,0,0,0,1,0,0,2,0,0,0,0,7,174,0,0,0,0,0,1,0,0,0,0,0,13,0,0,1588,58,7106,0,8,0,0,0,0,0,11,9,0,0,0,0,10,18,292,0,10,13,2,0,4,51,0,533,15,2,0,0,8,5,6522,0,3,1,0,936,0,0,0,0,6,21,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,0,0,21,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1027,12,12,12,0,0,2,217,2,167,0,0,2,7,13,247,548,238,0,0,0,0,1,0,3,0,0,0,11965,3,1,782,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,63,15043,378,7,0,0,329,0,694,0,0,0,96,520,0,0,0,0,0,0,0,0,0,6871,1,0,0,0,22,0,0,0,0,6,137,140,0,2,30,0,0,0,1,0,13126,0,0,21,3,0,1,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,3,0,0,0,0,98,75,67,1,12,9,0,0,0,0,0,257,2,0,0,0,0,0,0,0,0,0,0,0,5,0,1,8,0,0,0,0,0,0,0,0,5,0,0,9,0,1,544,239,4 +0,0,0,4,0,66,5,0,22,1,3,0,0,2,4,0,19,0,6,3,0,0,0,5,0,8,0,0,5,0,1,0,0,0,41,0,66,6,0,0,104,0,0,0,1,0,0,4,0,0,0,0,1,138,0,0,0,0,0,1,0,0,0,0,0,5,0,0,1799,66,88,0,4,0,0,0,0,0,27,0,0,0,0,0,7,18,237,0,0,41,0,0,0,0,0,83,5,10,0,0,2,0,38,0,2,0,0,988,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,194,0,118,0,0,0,0,3,223,14,188,0,0,0,0,1,0,3,0,0,0,0,0,0,450,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,12,309,4,0,0,393,0,499,0,0,0,284,20,0,0,0,0,0,0,0,0,0,61,1,0,0,0,8,0,0,0,0,1,151,138,0,0,0,0,0,0,0,0,110,0,0,164,3,0,1,1,1,0,0,0,12,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,3,0,0,0,0,1,107,518,0,5,9,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,244,263,4 +0,0,0,6,0,25,5,0,18,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,0,0,1,0,25,6,0,0,27,0,2,0,1,0,0,2,0,0,0,0,1,90,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1041,25,47,0,1,0,0,0,0,0,10,0,0,0,0,0,7,15,293,0,0,1,0,0,0,0,0,74,5,3,0,0,2,0,27,0,0,0,0,433,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,87,0,34,0,0,0,0,3,177,9,88,0,0,0,0,1,0,3,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,127,6,0,0,135,0,274,0,0,0,36,6,0,0,0,0,0,0,0,0,0,52,1,0,0,0,8,0,0,0,0,0,107,24,0,0,0,0,0,0,0,0,82,0,0,388,3,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,3,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,107,0,2,9,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,308,4 +1,0,0,0,1,30,8,0,33,4,5,0,0,3,6,0,70,0,6,4,0,0,0,5,0,8,0,0,1,0,1,0,0,1,5,0,30,6,0,0,112,0,0,0,1,0,0,1,0,0,0,0,1,103,0,0,0,0,0,1,0,0,0,0,0,1,0,0,611,30,122,0,1,0,0,0,0,0,6,0,0,0,0,0,8,14,66,0,0,5,1,0,0,7,0,124,5,1,0,0,4,1,122,0,0,0,0,524,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,70,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,48,0,43,0,0,0,0,3,184,124,55,0,0,0,0,2,0,3,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,47,21,178,3,0,0,209,0,1497,0,0,0,101,11,0,0,0,0,0,0,0,0,0,131,1,0,0,0,9,0,0,0,0,0,133,70,0,0,0,0,0,0,0,0,287,0,0,8,2,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,0,0,0,0,0,1,35,117,0,2,8,0,0,0,0,0,50,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,746,28,4 +0,0,0,2,0,11,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,1,0,0,8174,11,40,0,1,0,0,0,0,0,8,0,0,0,0,0,1,5,1958,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,13,0,0,0,0,612,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,77,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1195,0,140,0,0,0,0,3,30,5,1237,0,0,0,0,1,0,0,0,0,0,0,0,0,3116,0,0,0,0,0,0,0,0,0,0,0,0,2,0,77,0,0,0,0,0,0,8,3,100,2,0,0,120,0,249,0,0,0,52,7,0,0,0,0,0,0,162,0,0,40,1,0,0,0,2,0,0,0,0,0,93,44,0,0,0,0,0,0,0,0,572,0,0,2378,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,155,0,0,0,0,301,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,82,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,150,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,79,0,0,0,0,0,0,0,1,1174,234,4 +398,0,0,5,14,167,205,38,483,68,76,0,5,0,126,1,970,0,17,20,0,10,6,9,2,57,51,0,21,0,13,3,0,12,96,0,181,240,6307,0,1012,0,0,0,1,0,0,5,1,0,0,0,64,414,0,0,0,0,0,1,0,3,0,14,0,103,0,0,39997,167,2916,0,82,0,0,0,0,0,139,27,0,0,0,0,14,25,8126,0,38,96,12,0,11,219,0,2141,135,11,0,0,18,14,2420,0,77,1,0,6350,0,0,0,0,132,97,2,0,31,0,0,1,0,0,0,21,0,0,0,0,0,0,0,21,0,0,0,35,0,0,0,0,0,2,0,22,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,103,8,0,0,0,0,0,2,0,0,0,0,0,7,23,0,0,0,3,0,0,0,0,8,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,113,12,12,12,0,0,2,5156,2,479,0,0,2,78,316,417,138710,5170,0,0,0,0,1,0,15,0,0,0,0,0,0,11464,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,462,247,1728,24,0,0,1801,0,2252,0,4,0,857,129649,0,0,0,0,0,0,0,0,0,1883,1,0,2,0,47,0,0,0,0,49,351,608,0,0,318,0,0,0,0,0,12796,0,0,8794,3,0,1,12,0,0,0,0,14,0,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,3,157,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,175,1,1,1,0,546,0,0,0,0,188,277,460,1,136,9,0,0,0,0,0,952,19,0,0,0,0,0,0,0,0,0,0,0,15,0,2,74,1,0,0,0,0,0,0,29,8,0,0,28,0,4,4359,2460,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,405,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,134,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,48,3,0,0,47,0,145,0,0,0,5,3,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,27,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +93,0,0,0,12,84,17,48,150,2,27,0,1,0,4,0,116,0,7,31,0,12,12,3,0,3,3,0,22,0,69,1,0,12,54,0,96,9,0,0,176,0,0,0,0,0,0,0,0,0,0,0,72,106,0,0,0,0,0,1,0,0,0,0,0,3,0,0,899,84,1304,0,95,0,0,0,0,0,5,36,0,0,0,0,9,9,45,0,48,54,12,0,1,36,0,631,65,0,0,0,4,12,344,0,2,0,0,2102,0,0,0,0,27,20,0,0,3,0,0,0,0,0,0,16,0,0,0,0,0,0,0,20,0,0,0,20,0,0,0,0,0,1,0,22,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,0,0,0,0,0,0,82,0,114,0,0,0,141,144,149,481,116,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,25,711,12,0,0,680,0,569,0,0,0,281,66,0,0,0,0,0,0,0,0,0,322,0,0,0,0,58,0,0,0,0,71,174,66,0,0,143,0,0,0,0,0,250,0,0,68,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,83,1,1,1,0,163,0,0,0,128,97,150,54,0,98,0,0,0,0,0,0,206,16,0,0,0,0,0,0,0,0,0,0,0,12,0,1,2,0,0,0,0,0,0,0,0,0,0,0,20,0,0,146,931,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,142,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,32,0,0,0,0,3,21,195,54,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,84,0,57,0,0,0,50,3,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,4,4 +1,0,0,6,0,35,9,0,27,0,9,0,0,2,5,0,19,0,7,2,0,0,0,7,0,8,0,0,4,0,3,0,0,0,8,0,35,6,0,0,52,0,0,0,1,0,0,2,0,0,0,0,3,106,0,0,0,0,0,1,0,0,0,0,0,7,0,0,893,35,74,0,5,0,0,0,0,0,10,0,0,0,0,0,8,17,145,0,0,8,0,0,1,14,0,204,30,4,0,0,2,0,92,0,1,0,0,651,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,120,0,59,0,0,0,4,8,196,116,106,0,0,0,0,1,0,3,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,11,152,8,0,0,169,0,303,0,0,0,69,31,0,0,0,0,0,0,0,0,0,78,1,0,0,0,9,0,0,0,0,3,120,52,0,0,60,0,0,0,0,0,83,0,0,63,3,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,12,0,0,0,0,1,43,88,0,6,9,0,0,0,0,0,54,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,186,165,4 +10,0,0,8,0,11,2,0,8,0,2,0,0,0,7,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,6,0,0,18,0,1,0,1,0,0,1,0,0,0,0,1,30,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1038,11,39,0,3,0,0,0,0,0,6,0,0,0,0,0,1,6,469,0,0,0,0,0,0,0,0,13,0,2,0,0,2,0,19,0,0,0,0,157,0,0,0,0,3,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,58,0,32,0,0,0,2,5,26,12,65,0,0,0,0,1,0,0,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,87,16,0,0,80,0,196,0,0,0,20,5,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,2,93,13,0,0,0,0,0,0,0,0,208,0,0,737,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,363,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,21,0,3,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,246,13,4 +43,0,0,1,1,54,8,4,30,2,6,0,3,0,5,0,36,0,7,10,0,1,1,6,0,15,3,0,6,0,3,1,0,1,21,0,55,12,0,0,138,0,0,0,1,0,0,0,0,0,0,0,11,94,0,0,0,0,0,1,0,1,0,0,0,3,0,0,888,54,212,0,15,0,0,0,0,0,6,3,0,0,0,0,13,18,129,0,4,21,1,0,3,8,0,191,15,0,0,0,6,1,117,0,2,0,0,1203,0,0,0,0,9,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,116,0,75,0,0,0,13,19,221,156,118,0,0,0,0,1,0,3,0,0,0,0,0,0,388,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,52,262,2,0,0,219,0,379,0,0,0,91,25,0,0,0,0,0,0,0,0,0,95,0,0,0,0,18,0,0,0,0,10,145,19,0,0,30,0,0,0,0,0,120,0,0,4,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,13,0,0,0,0,9,76,37,0,19,9,0,0,0,0,0,128,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,136,721,4 +0,0,0,0,0,1,0,1,20,0,1,0,0,0,1,0,732,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,728,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,9,0,0,1,107,4 +1,0,0,3,0,28,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,116,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1181,28,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,192,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,549,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,12,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,146,0,49,0,0,0,1,4,182,14,144,0,0,0,0,1,0,3,0,0,0,0,0,0,326,0,0,0,0,0,0,0,0,0,0,0,0,2,1,10,0,0,0,0,1,0,32,10,136,3,0,0,160,0,321,0,0,0,54,7,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,110,37,0,0,0,0,0,0,0,0,106,0,0,126,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,138,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,188,57,4 +0,0,0,5,0,38,12,0,46,2,10,0,0,6,4,0,654,0,6,1,0,0,0,9,0,11,0,0,14,0,1,0,0,0,2,1123,38,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,254,0,0,0,0,0,1,0,0,0,0,0,2,0,0,34445,38,747,0,10,0,0,0,0,0,22,0,0,0,0,0,9,62,5854,0,0,2,0,0,0,0,0,241,20,2,0,0,2,0,712,0,0,17,0,3487,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,1625,0,35,0,0,0,6,9,457,2115,1600,0,0,0,0,1,0,3,0,0,0,0,0,0,1869,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,84,22,210,5,0,0,221,0,284,0,0,0,65,29,0,0,0,0,0,0,0,0,0,738,1,0,0,0,10,0,0,0,0,1,121,17,0,0,39,0,0,0,0,0,3923,1,0,2856,13,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,13,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,28,0,0,0,0,1,40,247,0,12,14,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2250,175,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,142,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,70,0,46,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,35,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,4,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,70,0,46,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,4,4 +21,0,0,3,1,53,36,1,71,14,6,0,5,0,23,1,219,0,8,31,0,90,0,5,0,27,0,0,15,0,2,0,0,1,17,0,54,65604,160,0,428,0,0,0,1,0,0,4,0,0,0,0,20,140,0,0,0,0,0,1,0,1,0,0,0,13,0,0,1172,53,606,0,33,0,0,0,0,0,22,0,0,0,0,0,8,21,304,0,1,17,1,0,6,8,0,248,15,8,0,0,12,1,212,0,12,0,0,13290,0,0,0,0,21,4,0,0,15,0,0,1,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,54,10,10,10,0,0,0,249,0,183,0,0,0,20,33,237,272,255,0,0,0,0,1,0,3,0,0,0,0,0,0,904,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,163,305,378,4,0,0,405,0,682,0,1,0,138,538,0,0,0,0,0,0,0,0,0,369,1,0,0,0,126,0,0,0,0,22,154,40,0,0,30,0,0,0,0,0,66844,0,0,72,3,0,1,4,0,0,0,0,9,0,0,0,3,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,39,39,0,0,4,1,0,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,53,1,1,1,0,18,0,0,0,0,35,71,127,0,35,9,0,0,0,0,0,143,2,0,0,0,0,0,0,1,0,0,0,0,2,0,3,16,0,0,0,0,0,0,0,0,117,0,0,119,0,5,722,642,4 +62,0,3,3,1,78,37,0,384,13,32,0,5,0,19,1,4482,0,7,11,0,1,0,7,0,18,18,0,17,0,5,4,0,0,27,26,78,19,0,0,381,0,1,0,1,0,0,1,0,0,0,0,19,160,0,0,0,0,0,1,0,0,0,16,0,19,0,0,1371,78,4999,0,35,0,0,0,0,0,5,0,0,0,0,0,15,21,92,0,0,27,0,0,4,103,0,959,80,0,0,0,10,1,5016,0,8,1,0,1628,0,0,0,0,17,9,2,0,1,0,0,1,0,0,0,11,0,0,0,0,0,0,0,8,0,0,0,5,0,0,0,0,0,4,0,17,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,6,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,531,10,10,10,0,0,0,112,0,144,0,0,0,26,47,291,714,113,0,0,0,0,1,0,4,0,0,0,8577,3,1,729,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,89,10808,355,8,0,0,321,0,2855,0,0,0,138,302,0,0,0,0,0,0,0,0,0,4967,1,0,0,0,19,0,0,0,0,18,165,265,0,3,229,0,0,0,0,0,9390,0,0,18,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,1,0,0,0,0,0,0,0,0,51,51,0,0,8,1,0,0,0,0,2,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,74,1,1,1,0,40,0,0,0,0,49,105,65,0,54,8,0,0,0,0,0,343,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,13,0,0,0,0,0,0,0,0,0,0,0,2,0,0,301,514,4 +38,0,0,15,2,56,53,2,70,16,9,0,0,0,31,3,131,0,12,5,0,0,0,2,0,5,3,0,9,0,4,0,0,2,38,0,58,215,0,0,174,0,0,0,1,0,0,2,1,0,0,0,8,88,0,0,0,0,0,1,0,0,0,14,0,31,0,0,845,56,255,0,18,0,0,0,0,0,8,0,0,0,0,0,6,11,306,0,2,38,2,0,2,0,0,112,0,7,1,0,6,2,141,0,23,0,0,789,0,0,0,0,7,2,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,3,0,3,0,24,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,11,0,0,0,4,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8,0,0,0,0,0,0,123,0,105,0,0,0,12,17,110,127,132,0,0,0,0,1,0,0,0,0,0,0,0,0,781,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,220,92,553,15,0,0,558,0,2718,0,2,0,229,25,0,0,0,0,0,0,0,0,0,309,1,0,3,0,7,0,0,0,0,4,174,16,0,0,0,0,0,0,0,0,940,0,0,528,0,0,1,1,0,0,0,0,9,0,0,0,2,0,0,0,0,0,15,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,2,60,1,1,1,0,16,0,0,0,0,17,96,56,0,21,0,0,0,0,0,0,143,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,16,0,0,0,0,0,0,0,0,0,0,0,2,0,1,219,75,4 +6,0,0,8,0,38,22,0,159,3,43,0,0,2,9,0,20,0,7,3,0,0,0,6,0,8,0,0,8,0,4,0,0,0,10,0,38,6,0,0,286,0,0,0,1,0,0,1,0,0,0,0,4,127,0,0,0,0,0,1,0,0,0,13,0,34,0,0,2158,38,258,0,10,0,0,0,0,0,9,0,0,0,0,0,8,15,391,0,0,10,0,0,6,128,0,1148,95,2,0,0,2,0,685,0,6,0,0,681,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,1,0,5,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,10,10,10,0,0,0,234,0,51,0,0,0,6,9,203,965,239,0,0,0,0,1,0,4,0,0,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,32,22,176,8,0,0,242,0,391,0,0,0,129,34,0,0,0,0,0,0,2,0,0,262,1,0,0,0,9,0,0,0,0,4,124,357,0,0,186,0,0,0,0,0,1715,0,0,323,3,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,12,0,0,0,0,1,48,225,0,11,9,0,0,0,0,0,319,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,1,285,58,4 +213,0,0,0,4,164,27,16,246,1,92,0,1,0,3,0,50,0,6,11,0,4,4,3,0,15,3,0,65,0,360,1,0,4,128,0,168,9,0,0,466,0,0,0,0,0,0,0,0,0,0,0,375,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2733,164,1201,0,441,0,0,0,0,0,51,12,0,0,0,0,5,5,100,0,16,128,4,0,1,198,0,3112,425,0,0,0,4,4,1225,0,0,0,0,8843,0,0,0,0,100,90,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,87,0,0,0,93,0,0,0,0,0,2,0,16,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,24,0,0,0,0,0,0,99,0,190,0,0,0,735,738,220,1978,123,0,0,0,0,0,0,0,0,0,0,0,0,0,1726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,762,4,0,0,713,0,505,0,0,0,495,92,0,0,0,0,0,0,0,0,0,425,0,0,0,0,22,0,0,0,0,375,246,319,0,0,935,0,0,0,0,0,415,0,0,359,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1,0,0,0,0,0,720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,163,1,1,1,0,786,0,0,0,714,33,296,128,0,444,0,0,0,0,0,0,556,5,0,0,0,0,0,0,0,0,0,0,0,4,0,1,1,0,0,0,0,0,0,0,0,0,0,0,6,0,0,354,2764,4 +281,0,0,28,21,98,166,37,380,32,43,0,0,2,69,2,800,0,20,67,0,117,2,6,0,35,22,0,19,0,8,2,0,20,42,0,118,301,160,0,383,0,0,0,1,0,0,4,0,0,0,0,36,409,0,0,0,0,0,1,0,3,0,12,0,53,0,0,2640,98,3486,0,54,0,0,0,0,0,20,45,0,0,0,1,14,25,282,0,37,42,20,0,7,29,0,690,55,4,0,0,14,21,679,0,49,0,0,3109,0,0,0,0,68,30,0,0,27,0,0,1,0,0,0,20,0,0,0,0,0,0,0,27,0,0,0,15,0,0,0,0,0,7,0,72,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,17,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,322,0,287,0,0,0,44,75,420,541,319,0,0,0,0,1,0,5,0,0,0,0,0,0,2907,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,677,341,1914,58,0,0,1864,0,3240,0,6,0,602,355,0,0,0,0,0,0,0,0,0,1482,1,0,0,0,192,0,0,0,0,33,296,134,0,0,125,0,0,0,0,0,10722,0,0,174,4,0,1,7,0,0,0,0,6,0,0,0,2,0,0,0,0,0,31,0,0,0,0,0,0,0,0,1,0,0,105,105,0,0,7,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,102,1,1,1,0,60,0,0,0,0,239,160,371,0,77,9,0,0,0,0,0,304,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,36,0,0,0,0,0,0,0,0,117,0,0,256,0,2,1817,1810,4 +152,0,0,29,10,85,189,22,430,30,74,0,0,2,64,0,375,0,20,16,0,6,2,6,0,27,21,0,14,0,7,2,0,9,33,0,95,301,0,0,701,0,0,0,1,0,0,2,0,0,0,0,28,343,0,0,0,0,0,1,0,3,0,12,0,84,0,0,2976,85,1529,0,39,0,0,0,0,0,72,12,0,0,0,0,13,22,398,0,22,33,9,0,10,203,0,1969,100,3,0,0,14,10,1329,0,46,0,0,2345,0,0,0,0,53,41,0,0,30,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,327,0,238,0,0,0,36,76,300,1681,357,0,0,0,0,1,0,5,0,0,0,0,0,0,2677,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1406,48,0,0,1558,0,2901,0,6,0,565,44,0,0,0,0,0,0,0,0,0,1154,1,0,0,0,30,0,0,0,0,22,278,564,0,0,215,0,0,0,0,0,9932,0,0,180,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,77,0,0,0,0,81,128,309,0,62,9,0,0,0,0,0,735,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1636,1658,4 +0,0,0,3,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,2,0,0,16,8,18,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,3,0,0,32,0,42,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,26,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,2,0,0,408,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,25,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,145,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,49,3,0,0,47,0,152,0,0,0,5,3,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,11,4 +0,0,0,8,2,14,50,2,56,9,7,0,0,0,18,5,122,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,4,0,16,140,0,0,44,0,0,0,1,0,0,9,0,0,0,0,1,118,0,0,0,0,0,1,0,0,0,0,0,17,0,0,3567,14,223,0,3,0,0,0,0,0,23,0,0,0,0,0,1,10,688,0,2,4,2,0,2,0,0,91,0,11,0,0,6,2,98,0,13,0,0,300,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,518,0,271,0,0,0,2,7,39,24,713,0,0,0,0,1,0,0,0,0,0,0,0,0,2464,0,186,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,221,37,399,10,0,0,456,0,959,0,2,0,158,13,0,0,0,0,0,0,0,0,0,269,1,0,0,0,2,0,0,0,0,1,132,49,0,0,0,0,0,0,0,0,619,0,0,836,0,0,1,0,0,0,0,0,15,0,0,0,2,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,12,1,1,1,0,2,0,0,0,0,17,20,173,0,6,0,0,0,0,0,0,92,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,2,0,2,1118,67,4 +273,0,0,29,21,93,166,37,377,35,43,0,0,2,72,2,778,0,20,67,0,117,2,6,0,36,22,0,21,0,8,2,0,20,41,0,113,301,160,0,462,0,0,0,1,0,0,4,0,0,0,0,37,412,0,0,0,0,0,1,0,3,0,12,0,57,0,0,2524,93,3438,0,57,0,0,0,0,0,17,45,0,0,0,2,14,25,269,0,37,41,20,0,7,29,0,693,55,3,0,0,14,21,678,0,52,0,0,2471,0,0,0,0,64,31,0,0,24,0,0,1,0,0,0,19,0,0,0,0,0,0,0,27,0,0,0,14,0,0,0,0,0,7,0,68,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,33,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,19,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,296,0,267,0,0,0,45,75,394,544,309,0,0,0,0,1,0,5,0,0,0,0,0,0,2862,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,677,366,1833,59,0,0,1843,0,3164,0,6,0,594,488,0,0,0,0,0,0,0,0,0,1460,1,0,0,0,192,0,0,0,0,35,287,134,0,0,125,0,0,0,0,0,10646,0,0,157,5,0,1,7,0,0,0,0,6,0,0,0,2,0,0,0,0,0,34,0,0,0,0,0,0,0,0,1,0,0,97,97,0,0,11,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,96,1,1,1,0,58,0,0,0,0,229,154,370,0,80,9,0,0,0,0,0,307,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,39,0,0,0,0,0,0,0,0,117,0,0,258,0,1,1677,1866,4 +0,0,0,10,2,41,58,2,86,10,13,0,0,7,21,0,777,0,11,2,0,0,0,7,0,10,3,0,8,0,2,0,0,2,5,898,43,135,0,0,77,0,0,0,1,0,0,6,0,0,0,0,2,312,0,0,0,0,0,1,0,0,0,0,0,18,0,0,11435,41,937,0,7,0,0,0,0,0,36,0,0,0,0,0,8,39,2070,0,2,5,2,0,2,0,0,314,25,10,0,0,6,2,804,0,14,17,0,1737,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,913,0,278,0,0,0,4,9,296,485,1090,0,0,0,0,1,0,3,0,0,0,0,0,0,2646,0,191,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,334,51,588,12,0,0,599,0,1676,0,2,0,208,19,0,0,0,0,0,0,0,0,0,973,1,0,0,0,9,0,0,0,0,1,161,58,0,0,32,0,0,0,0,0,2557,1,0,1040,10,0,1,1,0,0,0,0,16,0,0,0,2,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,10,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,44,1,1,1,0,12,0,0,0,0,17,48,205,0,11,12,0,0,0,0,0,135,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,14,0,0,0,0,0,0,0,0,0,0,0,2,0,2,1860,85,4 +189,0,0,0,0,77,41,0,192,14,40,0,2,0,17,35,38,0,7,2,0,0,0,1,0,8,9,0,6,0,5,1,0,0,55,0,77,15,3825,0,553,0,0,0,0,0,0,0,0,0,0,0,12,242,0,0,0,0,0,1,0,0,0,0,0,48,0,0,3939,77,672,0,20,0,0,0,0,0,144,0,0,0,0,0,2,2,632,0,0,55,0,0,3,178,0,1383,15,0,0,0,6,0,1081,0,13,0,0,4766,0,0,0,0,21,75,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,7,0,0,0,7,0,0,0,0,0,1,0,48,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,20,0,0,0,0,0,0,482,0,356,0,0,0,17,31,126,132804,510,0,0,0,0,0,0,0,0,0,0,0,0,0,2576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,123,358,2,0,0,443,0,400,0,0,0,362,126923,0,0,0,0,0,0,0,0,0,372,0,0,0,0,3,0,0,0,0,12,168,461,0,0,30,0,0,0,2,0,1010,0,0,6,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,77,1,1,1,0,16,0,0,0,0,1,132,55,0,29,0,0,0,0,0,0,640,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1290,563,4 +152,0,0,29,10,85,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,15,0,7,2,0,9,33,0,95,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,379,0,0,0,0,0,1,0,3,0,11,0,83,0,0,3081,85,1523,0,40,0,0,0,0,0,72,12,0,0,0,0,13,22,400,0,22,33,9,0,10,198,0,1933,100,3,0,0,14,10,1305,0,46,0,0,2988,0,0,0,0,53,40,0,0,30,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,37,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,330,0,232,0,0,0,36,76,300,1649,360,0,0,0,0,1,0,5,0,0,0,0,0,0,2761,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1424,48,0,0,1559,0,2940,0,6,0,566,63,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,280,551,0,0,215,0,0,0,0,0,9936,0,0,184,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,78,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,2,1623,1657,4 +12,0,0,0,0,34,24,0,36,2,5,0,2,0,4,0,20,0,6,5,0,0,0,5,0,10,3,0,5,0,1,1,0,0,6,0,34,9,0,0,92,0,0,0,1,0,0,0,0,0,0,0,4,73,0,0,0,0,0,1,0,0,0,0,0,3,0,0,653,34,115,0,7,0,0,0,0,0,13,0,0,0,0,0,9,14,129,0,0,6,0,0,2,25,0,290,15,0,0,0,4,0,170,0,2,0,0,538,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,89,0,46,0,0,0,4,11,195,163,93,0,0,0,0,1,0,3,0,0,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,126,0,0,0,146,0,238,0,0,0,61,24,0,0,0,0,0,0,0,0,0,97,0,0,0,0,10,0,0,0,0,4,124,53,0,0,30,0,0,0,0,0,98,0,0,2,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,8,0,0,0,0,1,40,22,0,11,9,0,0,0,0,0,88,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,32,4 +402,0,0,32,28,117,275,64,800,40,133,0,0,2,87,0,558,0,24,82,0,122,2,6,0,62,19,0,36,0,9,2,0,27,55,0,139,400,159,0,1410,0,0,0,1,0,0,5,1,0,0,0,63,453,0,0,0,0,0,1,0,3,0,20,0,141,0,0,4578,117,3995,0,97,0,0,0,0,0,107,60,0,0,0,0,14,28,670,0,64,55,27,0,12,398,0,3619,90,11,0,0,18,28,2484,0,63,0,0,4622,0,0,0,0,107,102,0,0,40,0,0,1,0,0,0,21,0,0,0,0,0,0,0,28,0,0,0,18,0,0,0,2,0,7,0,75,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,3,0,0,0,0,0,1,13,0,0,0,0,0,0,0,20,7,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,103,10,10,10,0,0,0,562,0,367,0,0,0,72,119,375,3195,613,0,0,0,0,1,0,4,0,0,0,0,0,0,5151,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,884,413,2284,68,0,0,2350,0,4218,0,8,0,821,162,0,0,0,0,0,0,0,0,0,1879,1,0,2,0,212,0,0,0,0,55,354,1035,0,0,192,0,0,0,0,0,10675,0,0,181,3,0,1,9,0,0,0,0,13,0,0,0,4,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,3,38,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,120,1,1,1,0,124,0,0,0,0,177,194,212,0,119,9,0,0,0,0,0,1351,32,0,0,0,0,0,0,1,0,0,0,0,23,0,4,50,0,0,0,0,0,0,0,0,117,0,0,198,0,6,2551,2459,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,2,0,0,407,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,145,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,157,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,24,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,14,4 +21,0,0,0,0,34,24,0,36,2,5,0,2,0,4,0,20,0,6,6,0,0,0,6,0,10,3,0,6,0,2,1,0,0,6,0,34,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,70,0,0,0,0,0,1,0,0,0,0,0,3,0,0,714,34,116,0,9,0,0,0,0,0,13,0,0,0,0,0,11,16,130,0,0,6,0,0,2,25,0,299,15,0,0,0,4,0,171,0,2,0,0,593,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,95,0,47,0,0,0,6,12,193,169,99,0,0,0,0,1,0,3,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,133,0,0,0,146,0,283,0,0,0,61,49,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,124,53,0,0,30,0,0,0,0,0,97,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,11,0,0,0,0,1,40,22,0,13,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,36,4 +194,0,4,1,8,142,113,28,895,39,66,0,11,0,51,28,11133,0,7,28,0,8,7,7,0,35,85,0,38,0,28,4,0,7,67,26,149,202,0,0,859,0,3,0,1,0,0,3,1,0,0,0,59,293,0,0,0,0,0,1,0,0,0,43,0,62,0,0,5311,142,13511,0,94,0,0,0,0,0,33,21,0,0,0,0,18,28,934,0,28,67,7,0,9,242,0,2209,125,6,0,0,16,8,12728,0,35,0,1,4048,0,0,0,0,58,32,1,0,1,0,0,1,0,0,0,22,0,0,1,0,0,0,0,14,0,0,0,20,0,0,0,0,0,12,0,57,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,14,1,1,1,0,0,0,0,0,0,0,0,0,3,8,0,0,0,0,0,0,0,1,35,0,0,0,0,109,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,1130,10,10,10,0,0,0,368,0,296,0,0,0,89,168,353,1910,508,0,0,0,0,1,0,5,0,0,0,21925,3,1,2724,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,1,0,90,27619,1155,11,0,0,1087,0,3563,0,0,0,620,644,0,0,0,0,0,0,0,0,0,12304,1,0,2,0,50,0,0,0,0,52,332,641,0,4,305,0,0,0,1,0,23327,0,0,804,3,0,1,8,1,0,0,0,8,0,0,0,0,0,0,0,0,0,36,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,12,1,2,0,0,0,3,407,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,141,1,1,1,0,90,0,0,0,8,59,216,129,0,181,9,0,0,0,0,0,1031,35,0,0,0,0,0,0,0,0,0,0,0,8,0,1,43,0,0,0,0,0,0,0,0,0,0,0,10,0,3,1100,1548,4 +0,0,0,5,0,36,24,0,49,3,23,0,0,7,4,0,820,0,6,1,0,0,0,8,0,10,0,0,24,0,1,0,0,0,1,12427,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,671,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39918,36,983,0,21,0,0,0,0,0,45,0,0,0,0,0,8,88,6532,0,0,1,0,0,0,0,0,359,25,2,0,0,2,0,908,0,0,91,0,4577,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1503,0,32,0,0,0,11,14,491,2065,1481,0,0,0,0,1,0,3,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,283,5,0,0,311,0,305,0,0,0,147,12,0,0,0,0,0,0,0,0,0,933,1,0,0,0,9,0,0,0,0,1,163,7,0,0,132,0,0,0,0,0,4733,1,0,1015,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,54,0,0,0,0,1,37,212,0,23,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2431,28,4 +10,0,0,9,2,48,49,1,126,7,17,1,0,2,16,0,73,0,9,4,0,0,0,8,0,8,0,0,53,0,1,0,0,1,17,0,49,54,0,0,171,0,0,0,1,0,0,16,3,0,0,0,1,348,0,0,0,0,0,1,0,0,0,19,0,11,0,0,8262,48,384,0,53,0,0,0,0,0,61,0,0,0,0,5,11,39,1442,0,1,17,1,0,1,47,0,557,20,31,1,0,6,2,382,0,8,1,0,1469,0,0,0,0,32,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,7,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,10,10,10,0,0,0,1157,0,259,0,0,0,0,3,226,421,1079,0,0,0,0,1,0,3,0,0,0,0,0,0,2553,0,0,0,0,0,0,0,0,0,0,0,0,16,1,0,0,0,0,0,1,0,135,28,430,14,0,0,529,0,1494,0,1,0,279,77,0,0,0,0,0,0,0,0,0,293,1,0,9,0,12,0,0,0,0,1,160,226,0,0,34,0,1,0,0,0,688,0,0,1464,2,0,1,1,0,0,0,0,43,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,56,1,1,1,0,52,0,0,0,0,9,66,795,0,54,8,0,0,0,0,0,204,3,0,0,0,0,0,0,0,0,0,0,0,2,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,10,1796,104,4 +1,0,0,6,0,34,9,0,27,0,9,0,0,2,5,0,19,0,7,2,0,0,0,7,0,8,0,0,4,0,3,0,0,0,8,0,34,6,0,0,52,0,0,0,1,0,0,2,0,0,0,0,3,111,0,0,0,0,0,1,0,0,0,0,0,7,0,0,870,34,74,0,5,0,0,0,0,0,10,0,0,0,0,0,8,17,147,0,0,8,0,0,1,14,0,204,30,4,0,0,2,0,92,0,1,0,0,610,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,118,0,58,0,0,0,4,8,192,116,104,0,0,0,0,1,0,3,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,11,147,8,0,0,166,0,277,0,0,0,69,38,0,0,0,0,0,0,0,0,0,78,1,0,0,0,9,0,0,0,0,3,119,52,0,0,60,0,0,0,0,0,85,0,0,63,3,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,12,0,0,0,0,1,42,88,0,6,9,0,0,0,0,0,54,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,165,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,0,0,0,34,0,66,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +1,0,0,0,0,12,4,0,17,1,6,0,1,0,3,0,15,0,6,2,0,0,0,1,0,0,0,0,1,0,1,0,0,0,2,0,12,9,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,1,0,0,111,12,42,0,2,0,0,0,0,0,0,0,0,0,0,0,2,2,20,0,0,2,0,0,2,8,0,82,15,0,0,0,6,0,49,0,0,0,0,342,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,25,0,0,0,0,3,30,118,47,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,11,69,0,0,0,61,0,344,0,0,0,16,8,0,0,0,0,0,0,0,0,0,52,0,0,0,0,3,0,0,0,0,0,97,17,0,0,30,0,0,0,0,0,608,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,1,0,0,0,0,1,14,2,0,2,0,0,0,0,0,0,34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,384,35,4 +208,0,0,27,18,78,193,30,356,32,48,0,0,2,76,1,644,0,22,32,0,19,3,5,0,48,16,0,32,0,5,2,0,17,37,0,96,537,0,0,377,0,0,0,1,0,0,0,0,0,0,0,47,326,0,0,0,0,0,1,0,1,0,2,0,53,0,0,2086,78,2535,0,77,0,0,0,0,0,4,33,0,0,0,0,14,19,142,0,30,37,17,0,8,48,0,901,80,0,0,0,16,18,739,0,49,0,0,2952,0,0,0,0,37,19,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,20,0,0,0,6,0,0,0,0,0,7,0,58,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,1,0,0,0,0,0,0,16,0,0,0,3,0,0,0,11,2,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,54,10,10,10,0,0,0,144,0,177,0,0,0,52,68,342,602,159,0,0,0,0,1,0,4,0,0,0,0,0,0,1885,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,772,186,1794,52,0,0,1740,0,2630,0,7,0,510,140,0,0,0,0,0,0,0,0,0,1342,0,0,0,0,59,0,0,0,0,51,278,107,0,0,187,0,0,0,1,0,14824,0,0,7,4,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,1,0,0,0,0,51,51,0,0,18,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,83,1,1,1,0,49,0,0,0,0,189,133,76,0,94,9,0,0,0,0,0,344,41,0,0,0,0,0,0,0,0,0,0,0,19,0,1,38,0,0,0,0,0,0,0,0,0,0,0,24,0,0,946,1178,4 +5,0,0,0,0,15,2,0,4,0,1,0,0,0,2,0,10,0,7,1,0,0,0,1,0,4,0,0,2,0,1,0,0,0,4,0,15,6,0,0,26,0,0,0,0,0,0,0,0,0,0,0,4,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,70,15,25,0,6,0,0,0,0,0,0,0,0,0,0,0,1,1,11,0,0,4,0,0,0,0,0,13,0,0,0,0,2,0,14,0,0,0,0,146,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,4,6,31,28,30,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,23,64,0,0,0,63,0,119,0,0,0,24,10,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,4,105,3,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,2,0,0,0,0,1,19,4,0,7,0,0,0,0,0,0,19,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,73,4 +0,0,0,6,0,39,59,0,103,2,40,0,0,8,3,0,999,0,6,1,0,0,0,8,0,10,0,0,45,0,1,0,0,0,1,14887,39,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,575,0,0,0,0,0,1,0,0,0,0,0,2,0,0,96677,39,1344,0,43,0,0,0,0,0,113,0,0,0,0,0,8,316,12471,0,0,1,0,0,0,0,0,584,30,2,0,0,2,0,1188,0,0,222,0,7839,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,5218,0,37,0,0,0,27,30,1462,6547,5147,0,0,0,0,1,0,3,0,0,0,0,0,0,6486,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,25,391,6,0,0,416,0,354,0,0,0,237,37,0,0,0,0,0,0,0,0,0,1218,1,0,0,0,9,0,0,0,0,1,188,76,0,0,303,0,0,0,0,0,6579,1,0,8370,55,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,55,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,123,0,0,0,0,1,40,322,0,44,12,0,1,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3840,97,4 +8,0,0,4,0,24,2,0,15,2,3,0,0,0,8,0,15,0,6,5,0,0,0,1,0,0,0,0,7,0,1,0,0,0,11,0,24,6,0,0,61,0,0,0,1,0,0,1,0,0,0,0,0,734,0,0,0,0,0,1,0,0,0,0,0,9,0,0,9306,24,51,0,7,0,0,0,0,0,6,0,0,0,0,0,5,7,1224,0,0,11,0,0,0,0,0,22,0,2,0,0,2,0,33,0,6,0,0,528,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1227,0,59,0,0,0,0,3,44,53,1237,0,0,0,0,1,0,0,0,0,0,0,0,0,2815,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,9,149,4,0,0,119,0,199,0,0,0,45,45,0,0,0,0,0,0,0,0,0,49,1,0,0,0,6,0,0,0,0,1,106,5,0,0,0,0,0,0,0,0,606,0,0,2330,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,7,0,0,0,0,1,35,31,0,8,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,696,246,4 +0,0,0,5,0,38,24,0,49,3,23,0,0,7,4,0,841,0,6,1,0,0,0,8,0,11,0,0,24,0,1,0,0,0,2,12527,38,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,764,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40181,38,1005,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6560,0,0,2,0,0,0,0,0,359,25,2,0,0,2,0,929,0,0,87,0,4963,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1362,0,32,0,0,0,12,15,508,2068,1338,0,0,0,0,1,0,3,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,285,5,0,0,311,0,308,0,0,0,146,13,0,0,0,0,0,0,0,0,0,954,1,0,0,0,9,0,0,0,0,1,165,7,0,0,130,0,0,0,0,0,4899,1,0,1019,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,58,0,0,0,0,1,40,213,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2460,25,4 +75,0,0,1,1,53,25,4,115,5,22,0,4,0,9,0,30,0,7,6,0,1,1,5,0,22,0,0,5,0,2,0,0,1,17,0,54,15,0,0,476,0,0,0,1,0,0,0,0,0,0,0,17,104,0,0,0,0,0,1,0,1,0,0,0,24,0,0,1358,53,338,0,20,0,0,0,0,0,16,3,0,0,0,0,8,13,279,0,4,17,1,0,4,88,0,784,15,0,0,0,8,1,506,0,6,0,0,1212,0,0,0,0,30,22,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,206,0,110,0,0,0,18,39,221,767,204,0,0,0,0,1,0,4,0,0,0,0,0,0,759,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,90,298,3,0,0,242,0,314,0,0,0,102,18,0,0,0,0,0,0,0,0,0,212,0,0,0,0,13,0,0,0,0,16,138,230,0,0,30,0,0,0,0,0,731,0,0,21,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,36,0,0,0,0,9,71,41,0,20,9,0,0,0,0,0,328,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,276,1137,4 +151,0,0,29,10,84,192,22,445,30,77,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,15,0,8,2,0,9,33,0,94,301,0,0,747,0,0,0,1,0,0,3,0,0,0,0,28,346,0,0,0,0,0,1,0,3,0,12,0,87,0,0,3042,84,1556,0,40,0,0,0,0,0,75,12,0,0,0,0,13,22,408,0,22,33,9,0,10,218,0,2081,100,4,0,0,14,10,1405,0,46,0,0,2464,0,0,0,0,52,41,0,0,32,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,335,0,245,0,0,0,36,76,296,1781,366,0,0,0,0,1,0,5,0,0,0,0,0,0,2843,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1440,48,0,0,1563,0,2902,0,6,0,572,39,0,0,0,0,0,0,0,0,0,1175,1,0,0,0,30,0,0,0,0,22,279,603,0,0,215,0,0,0,0,0,9930,0,0,180,3,0,1,5,0,0,0,0,4,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,78,0,0,0,0,81,127,309,0,64,9,0,0,0,0,0,781,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1659,1728,4 +11,0,0,23,0,42,29,0,194,10,132,0,0,0,88,0,24,0,7,1,0,0,0,3,1,1,0,0,12,0,107,0,0,0,25,0,42,275,1,0,645,0,0,0,1,0,0,6,0,0,0,0,108,159,0,0,0,0,0,1,0,0,0,12,0,39,0,0,3493,42,617,0,25,0,0,0,0,0,23,0,0,0,0,1,3,12,518,0,0,25,0,0,10,167,0,1500,190,9,0,0,2,0,1243,0,13,0,0,2430,0,0,0,0,212,4,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,114,0,0,0,0,0,6,0,6,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,9,0,0,0,0,0,0,361,0,85,0,0,0,120,125,101,80172,377,0,0,0,0,1,0,0,0,0,0,0,0,0,1757,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,87,137,322,71,0,0,338,0,667,0,0,0,245,84,0,0,0,0,0,0,0,0,0,474,1,0,0,0,5,0,0,0,0,14,158,447,0,0,452,0,0,0,1,0,5030,0,0,499,0,0,1,1,0,0,0,0,10,0,0,0,2,0,0,0,0,0,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,108,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,606,0,0,0,0,1,67,450,0,120,0,0,0,0,0,0,495,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,30,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3279,348,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,0,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,13,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,6,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,4 +0,0,0,6,0,39,60,0,104,1,39,0,0,8,3,0,926,0,6,1,0,0,0,8,0,10,0,0,44,0,1,0,0,0,1,13757,39,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,562,0,0,0,0,0,1,0,0,0,0,0,2,0,0,87281,39,1272,0,42,0,0,0,0,0,115,0,0,0,0,0,8,324,11775,0,0,1,0,0,0,0,0,584,30,2,0,0,2,0,1118,0,0,231,0,7491,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,4569,0,38,0,0,0,26,29,1470,5879,4499,0,0,0,0,1,0,3,0,0,0,0,0,0,5552,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,22,386,6,0,0,421,0,351,0,0,0,243,38,0,0,0,0,0,0,0,0,0,1146,1,0,0,0,9,0,0,0,0,1,191,80,0,0,305,0,0,0,0,0,6407,1,0,7392,56,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,56,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,119,0,0,0,0,1,40,312,0,43,12,0,1,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3743,234,4 +152,0,0,29,10,85,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,95,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,360,0,0,0,0,0,1,0,3,0,12,0,83,0,0,2950,85,1523,0,39,0,0,0,0,0,73,12,0,0,0,0,13,22,379,0,22,33,9,0,10,198,0,1932,100,3,0,0,14,10,1304,0,46,0,0,2806,0,0,0,0,52,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,37,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,315,0,235,0,0,0,36,76,300,1648,344,0,0,0,0,1,0,5,0,0,0,0,0,0,2730,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1445,48,0,0,1559,0,2909,0,6,0,565,47,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,279,551,0,0,215,0,0,0,0,0,9913,0,0,134,3,0,1,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,77,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1612,1662,4 +317,0,0,28,26,107,251,59,763,34,129,0,0,2,77,0,492,0,22,79,0,121,1,7,0,61,10,0,34,0,6,2,0,25,50,0,127,352,159,0,1355,0,0,0,1,0,0,5,1,0,0,0,59,410,0,0,0,0,0,1,0,2,0,20,0,132,0,0,4115,107,3723,0,91,0,0,0,0,0,106,57,0,0,0,0,14,28,582,0,59,50,25,0,11,398,0,3564,90,10,0,0,16,26,2417,0,55,0,0,3490,0,0,0,0,75,90,0,0,38,0,0,1,0,0,0,18,0,0,0,0,0,0,0,27,0,0,0,17,0,0,0,2,0,7,0,74,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,2,0,0,0,0,0,1,13,0,0,0,0,0,0,0,20,6,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,92,10,10,10,0,0,0,477,0,341,0,0,0,65,84,354,3086,542,0,0,0,0,1,0,3,0,0,0,0,0,0,4616,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,780,382,2034,62,0,0,2124,0,3848,0,7,0,752,120,0,0,0,0,0,0,0,0,0,1736,1,0,2,0,208,0,0,0,0,51,325,1031,0,0,192,0,0,0,0,0,10522,0,0,121,3,0,1,8,0,0,0,0,13,0,0,0,4,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,1,0,0,0,0,3,11,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,110,1,1,1,0,56,0,0,0,0,161,177,190,0,104,9,0,0,0,0,0,1314,30,0,0,0,0,0,0,1,0,0,0,0,21,0,4,44,0,0,0,0,0,0,0,0,117,0,0,191,0,6,2421,1494,4 +2,0,0,6,0,61,103,0,154,0,20,0,0,0,3,0,71,0,6,38,0,0,0,4,0,0,0,0,1,0,2,0,0,0,13,0,61,171,0,0,314,0,1,0,1,0,0,1,0,0,0,0,1,142,0,0,0,0,0,1,0,0,0,0,0,6,0,0,2654,61,364,0,3,0,0,0,1,0,7,0,0,0,0,0,41,46,620,0,0,13,0,0,1,136,0,1100,70,2,0,0,2,0,666,0,1,0,0,1612,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,4,0,0,0,0,0,0,266,0,228,0,0,0,2,5,137,648,487,0,0,0,0,1,0,0,0,0,0,0,0,0,1499,0,0,0,0,0,0,0,0,0,8,0,0,1,0,0,0,0,0,0,0,1,8,5,532,6,0,0,517,0,410,0,0,0,336,62,0,12,0,0,0,0,0,0,0,357,1,0,0,0,42,0,0,0,0,2,179,367,0,0,178,0,72,0,0,0,358,0,0,773,0,0,1,115,1,0,0,0,1,0,10,0,10,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,5,1,2,0,0,0,0,363,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,61,1,1,1,0,3,0,0,0,0,1,74,302,0,3,0,0,1,0,0,0,534,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,99,0,0,0,0,0,0,0,0,0,0,0,0,1,681,110,4 +5,0,0,6,6,38,30,21,106,11,22,0,0,2,16,0,103,0,8,14,0,10,0,5,0,8,0,0,1,0,1,0,0,6,6,0,44,54,0,0,91,0,0,0,1,0,0,1,0,0,0,0,1,142,0,0,0,0,0,1,0,0,0,0,0,20,0,0,822,38,524,0,1,0,0,0,0,0,5,15,0,0,0,0,8,14,98,0,21,6,6,0,3,23,0,322,45,1,0,0,4,6,180,0,13,0,0,726,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,14,10,10,10,0,0,0,77,0,259,0,0,0,0,3,213,214,110,0,0,0,0,1,0,4,0,0,0,0,0,0,540,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,137,39,455,12,0,0,471,0,671,0,1,0,114,4,0,0,0,0,0,0,0,0,0,287,1,0,0,0,29,0,0,0,0,1,135,56,0,0,91,0,0,0,0,0,205,0,0,8,2,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,40,1,1,1,0,0,0,0,0,0,49,50,31,0,2,8,0,0,0,0,0,112,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,17,0,0,0,0,0,0,0,0,0,0,0,10,0,0,641,44,4 +0,0,0,4,1,11,26,1,32,0,4,0,0,0,5,0,69,0,8,1,0,0,0,1,0,0,3,0,1,0,1,1,0,1,2,0,12,54,0,0,14,0,1,0,1,0,0,1,0,0,0,0,1,31,0,0,0,0,0,1,0,0,0,0,0,4,0,0,944,11,104,0,3,0,0,0,0,0,4,0,0,0,0,0,1,4,485,0,1,2,1,0,1,0,0,49,0,1,0,0,4,1,36,0,2,0,0,141,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,38,0,27,0,0,0,2,9,28,22,50,0,0,0,0,1,0,0,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,112,14,209,5,0,0,220,0,270,0,1,0,50,3,0,0,0,0,0,0,0,0,0,144,1,0,0,0,2,0,0,0,0,2,105,3,0,0,0,0,0,0,0,0,304,0,0,739,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,1,1,1,0,6,0,0,0,0,9,14,3,0,6,0,0,0,0,0,0,43,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,266,8,4 +0,0,0,0,0,1,0,1,20,0,1,0,0,0,1,0,729,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,725,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,9,0,0,1,107,4 +18,0,0,2,0,19,20,0,98,0,21,0,1,0,3,0,15,0,7,1,0,0,0,1,0,5,0,0,0,0,1,0,0,0,9,0,19,11,0,0,208,0,0,0,0,0,0,0,0,0,0,0,5,60,0,0,0,0,0,1,0,0,0,0,0,17,0,0,493,19,185,0,6,0,0,0,0,0,12,0,0,0,0,0,1,1,106,0,0,9,0,0,2,88,0,681,15,0,0,0,4,0,458,0,0,0,0,371,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,95,0,78,0,0,0,5,7,36,625,112,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,28,98,2,0,0,99,0,114,0,0,0,60,9,0,0,0,0,0,0,0,0,0,165,0,0,0,0,2,0,0,0,0,5,102,224,0,0,30,0,0,0,0,0,624,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,0,0,0,0,0,1,28,9,0,6,0,0,0,0,0,0,293,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,406,4 +149,0,0,29,10,84,187,22,420,27,72,0,0,2,61,0,375,0,20,16,0,6,2,6,0,34,22,0,15,0,7,2,0,9,33,0,94,301,0,0,675,0,0,0,1,0,0,3,0,0,0,0,35,351,0,0,0,0,0,1,0,3,0,12,0,79,0,0,2837,84,1516,0,47,0,0,0,0,0,70,12,0,0,0,0,13,22,397,0,22,33,9,0,10,193,0,1908,100,3,0,0,14,10,1282,0,43,0,0,2159,0,0,0,0,50,41,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,19,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,34,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,325,0,234,0,0,0,42,88,296,1628,355,0,0,0,0,1,0,5,0,0,0,0,0,0,2670,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,143,1412,48,0,0,1553,0,2900,0,6,0,563,48,0,0,0,0,0,0,0,0,0,1137,1,0,0,0,30,0,0,0,0,29,279,538,0,0,215,0,0,0,0,0,9927,0,0,166,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,68,0,0,0,0,81,127,309,0,71,9,0,0,0,0,0,708,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,37,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1590,1807,4 +153,0,0,29,10,85,189,22,430,30,74,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,3,0,9,33,0,95,301,0,0,701,0,0,0,1,0,0,3,0,0,0,0,28,343,0,0,0,0,0,1,0,3,0,12,0,84,0,0,2938,85,1534,0,39,0,0,0,0,0,75,12,0,0,0,0,13,22,402,0,22,33,9,0,10,203,0,1969,100,3,0,0,14,10,1329,0,46,0,0,2239,0,0,0,0,51,41,0,0,30,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,37,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,332,0,236,0,0,0,36,75,300,1681,361,0,0,0,0,1,0,5,0,0,0,0,0,0,2827,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1438,48,0,0,1563,0,2907,0,6,0,569,45,0,0,0,0,0,0,0,0,0,1154,1,0,0,0,30,0,0,0,0,22,280,564,0,0,215,0,0,0,0,0,9936,0,0,189,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,75,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,735,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1640,1658,4 +0,0,0,5,0,36,24,0,47,3,23,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12492,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,754,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40377,36,911,0,24,0,0,0,0,0,45,0,0,0,0,0,8,92,6494,0,0,1,0,0,0,0,0,360,25,2,0,0,2,0,836,0,0,85,0,4538,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1396,0,32,0,0,0,13,16,494,2059,1374,0,0,0,0,1,0,3,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,285,5,0,0,312,0,295,0,0,0,151,12,0,0,0,0,0,0,0,0,0,859,1,0,0,0,9,0,0,0,0,1,168,7,0,0,129,0,0,0,0,0,4674,1,0,1017,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,212,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2439,25,4 +0,0,0,5,0,36,24,0,48,3,23,0,0,7,4,0,784,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12514,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,752,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40478,36,947,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6541,0,0,1,0,0,0,0,0,360,25,2,0,0,2,0,872,0,0,89,0,4620,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1445,0,34,0,0,0,12,15,492,2059,1423,0,0,0,0,1,0,3,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,273,5,0,0,307,0,298,0,0,0,145,14,0,0,0,0,0,0,0,0,0,896,1,0,0,0,9,0,0,0,0,1,163,7,0,0,131,0,0,0,0,0,4707,1,0,1035,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2448,29,4 +52,0,0,1,1,60,12,4,58,2,13,0,3,0,5,0,45,0,7,10,0,1,1,6,0,23,12,0,9,0,4,1,0,1,22,0,61,12,0,0,179,0,0,0,1,0,0,0,0,0,0,0,20,104,0,0,0,0,0,1,0,1,0,0,0,7,0,0,971,60,292,0,27,0,0,0,0,0,10,3,0,0,0,0,13,18,146,0,4,22,1,0,4,31,0,397,30,0,0,0,6,1,271,0,2,0,0,3749,0,0,0,0,18,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,4,0,0,0,0,0,1,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,27,10,10,10,0,0,0,158,0,102,0,0,0,23,43,233,346,135,0,0,0,0,1,0,3,0,0,0,0,0,0,505,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,288,2,0,0,245,0,422,0,0,0,102,52,0,0,0,0,0,0,0,0,0,143,0,0,0,0,18,0,0,0,0,19,151,72,0,0,60,0,0,0,0,0,721,0,0,7,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,20,0,0,0,0,9,83,38,0,40,9,0,0,0,0,0,192,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,181,1025,4 +0,0,0,5,0,36,25,0,47,3,24,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12393,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,752,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39729,36,913,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6478,0,0,1,0,0,0,0,0,365,25,1,0,0,2,0,836,0,0,90,0,4793,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1392,0,32,0,0,0,12,15,496,2089,1370,0,0,0,0,1,0,3,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,280,5,0,0,308,0,309,0,0,0,146,12,0,0,0,0,0,0,0,0,0,861,1,0,0,0,9,0,0,0,0,1,164,6,0,0,136,0,0,0,0,0,4634,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2515,23,4 +1,0,0,5,0,41,18,0,54,4,11,0,0,6,4,1,816,0,6,2,0,0,0,8,0,11,0,0,17,0,5,0,0,0,5,1347,41,6,0,0,46,0,0,0,1,0,0,2,0,0,0,0,5,287,0,0,0,0,0,1,0,0,0,0,0,2,0,0,32239,41,949,0,18,0,0,0,0,0,37,0,0,0,0,0,9,65,4061,0,0,5,0,0,0,0,0,257,20,4,0,0,2,0,793,0,0,27,0,3190,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,2127,0,95,0,0,0,13,10,545,1814,2083,0,0,0,0,1,0,4,0,0,0,0,0,0,2409,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,28,233,5,0,0,249,0,329,0,0,0,93,12,0,0,0,0,0,0,0,0,0,916,1,0,0,0,10,0,0,0,0,2,124,31,0,0,51,0,0,0,0,0,2983,1,0,2724,19,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,39,39,0,0,2,0,0,0,0,0,19,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,36,0,0,0,0,31,46,234,0,19,14,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1150,179,4 +150,0,0,29,10,85,187,22,415,30,71,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,95,301,0,0,671,0,0,0,1,0,0,3,0,0,0,0,28,345,0,0,0,0,0,1,0,3,0,12,0,81,0,0,2892,85,1507,0,39,0,0,0,0,0,72,12,0,0,0,0,13,22,406,0,22,33,9,0,10,188,0,1858,100,3,0,0,14,10,1254,0,46,0,0,2184,0,0,0,0,52,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,17,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,334,0,237,0,0,0,36,76,300,1588,362,0,0,0,0,1,0,5,0,0,0,0,0,0,2707,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1409,48,0,0,1558,0,2902,0,6,0,563,35,0,0,0,0,0,0,0,0,0,1134,1,0,0,0,30,0,0,0,0,22,280,525,0,0,215,0,0,0,0,0,9937,0,0,189,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,77,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,699,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1619,1680,4 +0,0,0,0,0,10,2,0,14,0,1,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,11,0,1,0,1,0,0,1,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,920,10,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,6,500,0,0,2,0,0,0,0,0,8,0,1,0,0,2,0,15,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,21,0,0,0,0,3,23,4,43,0,0,0,0,1,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,67,0,0,0,95,0,108,0,0,0,37,0,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,92,24,0,0,0,0,0,0,0,0,205,0,0,731,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,71,0,1,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,220,2,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,2,0,0,405,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,124,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,30,0,27,0,0,0,2,4,27,94,44,0,0,0,0,1,0,0,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,49,3,0,0,47,0,144,0,0,0,5,3,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,31,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +119,0,0,29,11,90,157,27,271,30,38,0,0,2,66,1,559,0,20,44,0,99,2,6,0,33,22,0,17,0,7,3,0,10,38,0,100,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,349,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2451,90,1769,0,49,0,0,0,0,0,21,15,0,0,0,0,13,22,287,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,582,0,46,0,0,2398,0,0,0,0,46,16,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,294,0,231,0,0,0,42,71,339,590,306,0,0,0,0,1,0,6,0,0,0,0,0,0,2246,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1424,49,0,0,1495,0,3012,0,6,0,500,307,0,0,0,0,0,0,0,0,0,1114,1,0,0,0,151,0,0,0,0,29,284,146,0,0,155,0,0,0,0,0,10416,0,0,173,3,0,1,6,0,0,0,0,4,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,53,53,0,0,5,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,61,0,0,0,0,117,138,314,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,186,0,3,1715,1610,4 +0,0,0,4,0,28,6,0,8,0,2,0,0,2,7,0,13,0,6,3,0,0,0,5,0,8,0,0,3,0,2,0,0,0,1,0,28,7,0,0,22,0,0,0,1,0,0,0,0,0,0,0,2,74,0,0,0,0,0,1,0,0,0,0,0,3,0,0,888,28,34,0,3,0,0,0,0,0,3,0,0,0,0,0,7,12,110,0,0,1,0,0,0,0,0,77,5,0,0,0,2,0,35,0,0,0,0,508,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,69,0,33,0,0,0,2,4,181,97,73,0,0,0,0,1,0,3,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,32,10,90,4,0,0,88,0,216,0,0,0,9,6,0,0,0,0,0,0,0,0,0,44,0,0,0,0,8,0,0,0,0,2,110,4,0,0,0,0,0,0,0,0,78,0,0,1,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,3,0,0,0,0,1,29,17,0,4,9,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,442,30,4 +26,0,0,3,0,41,24,0,103,5,21,0,3,0,9,0,20,0,7,3,0,0,0,6,0,21,0,0,5,0,1,0,0,0,11,0,41,13,0,0,437,0,0,0,1,0,0,0,0,0,0,0,14,95,0,0,0,0,0,1,0,0,0,0,0,24,0,0,1055,41,213,0,17,0,0,0,0,0,15,0,0,0,0,0,8,13,226,0,0,11,0,0,3,88,0,770,15,0,0,0,6,0,498,0,6,0,0,745,0,0,0,0,16,14,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,24,10,10,10,0,0,0,153,0,92,0,0,0,13,23,201,699,164,0,0,0,0,1,0,3,0,0,0,0,0,0,553,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,69,188,3,0,0,165,0,247,0,0,0,71,20,0,0,0,0,0,0,0,0,0,187,0,0,0,0,9,0,0,0,0,13,125,227,0,0,30,0,0,0,0,0,696,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,3,0,0,0,0,1,52,23,0,18,9,0,0,0,0,0,309,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,650,4 +3,0,0,3,0,24,2,0,3,7,3,0,0,0,13,0,10,0,7,2,0,0,0,1,0,0,0,0,1,0,5,0,0,0,13,0,24,9,0,0,431,0,0,0,1,0,0,0,0,0,0,0,4,21,0,0,0,0,0,1,0,0,0,0,0,13,0,0,307,24,35,0,6,0,0,0,0,0,0,0,0,0,0,0,2,2,25,0,0,13,0,0,0,0,0,24,0,0,0,0,2,0,37,0,11,0,0,2180,0,0,1,0,2,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,37,0,45,0,0,0,8,11,49,130,66,0,0,0,0,1,0,0,0,0,0,0,0,0,311,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,14,91,3,0,0,82,0,156,0,0,0,43,1,0,0,0,0,0,0,0,0,0,38,0,0,0,0,3,0,0,0,0,5,106,3,0,0,0,0,0,0,0,0,26,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,9,0,0,0,8,1,37,13,0,6,0,0,0,0,0,0,1073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,29,4 +214,0,0,16,19,143,327,58,881,141,143,0,0,2,184,0,1296,0,17,44,0,15,11,9,3,28,114,0,32,0,26,7,0,17,90,0,162,236,6,0,1757,0,0,0,1,0,0,3,0,0,0,0,53,376,0,0,0,0,0,1,0,1,0,31,0,180,0,0,6294,143,5131,0,81,0,0,0,0,0,12,42,0,0,0,1,27,40,591,0,58,90,17,0,8,463,0,4061,480,3,0,0,10,19,4131,0,166,1,0,4741,0,0,0,0,67,25,0,4,1,0,0,1,0,0,0,14,0,0,0,0,0,0,0,22,0,0,4,16,0,0,0,0,0,15,4,49,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,23,0,1,1,0,0,0,1,0,0,0,0,0,0,12,0,0,0,14,0,0,0,0,45,0,0,0,0,56,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,1,2,301,12,12,12,0,0,2,591,2,277,0,0,2,86,261,417,3113,638,0,0,0,0,1,0,5,0,0,0,0,0,0,3579,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,451,219,1645,45,0,0,1798,0,2207,0,4,0,802,139,0,0,0,0,0,0,0,0,0,2850,1,0,0,0,82,0,0,0,0,40,294,923,0,0,1272,0,0,0,0,0,11906,0,0,124,3,0,1,2,1,0,0,0,5,0,0,0,2,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1,0,0,0,0,3,78,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,152,1,1,1,0,250,0,0,0,0,240,252,312,1,198,9,0,0,0,0,0,1854,16,0,0,0,0,0,0,0,0,0,0,0,20,0,1,153,0,0,0,0,0,0,0,0,11,0,0,37,0,2,2447,973,4 +2,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,55,0,0,0,0,0,1,0,0,0,0,0,1,0,0,7061,10,41,0,1,0,0,0,0,0,8,0,0,0,0,0,1,5,1925,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,13,0,0,0,0,128,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,820,0,36,0,0,0,0,3,26,8,830,0,0,0,0,1,0,0,0,0,0,0,0,0,2036,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,10,3,79,2,0,0,94,0,237,0,0,0,29,7,0,0,0,0,0,0,4,0,0,42,1,0,0,0,2,0,0,0,0,0,92,21,0,0,0,0,0,0,0,0,1006,0,0,2278,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,101,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,846,476,4 +26,0,0,3,0,42,24,0,103,5,21,0,3,0,9,0,20,0,7,4,0,0,0,5,0,21,0,0,5,0,0,0,0,0,11,0,42,13,0,0,437,0,0,0,1,0,0,0,0,0,0,0,14,100,0,0,0,0,0,1,0,0,0,0,0,24,0,0,1067,42,213,0,17,0,0,0,0,0,15,0,0,0,0,0,8,13,217,0,0,11,0,0,3,88,0,770,15,0,0,0,6,0,498,0,6,0,0,895,0,0,0,0,16,14,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,24,10,10,10,0,0,0,155,0,92,0,0,0,13,23,205,699,166,0,0,0,0,1,0,3,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,69,176,3,0,0,168,0,244,0,0,0,71,12,0,0,0,0,0,0,0,0,0,187,0,0,0,0,9,0,0,0,0,13,126,227,0,0,30,0,0,0,0,0,688,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,3,0,0,0,0,1,53,23,0,17,9,0,0,0,0,0,309,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,653,4 +3,0,0,9,5,22,32,17,66,4,11,0,2,0,17,0,240,0,8,9,0,4,4,2,0,1,0,0,0,0,1,0,0,5,9,0,27,69,0,0,132,0,0,0,0,0,0,0,0,0,0,0,1,89,0,9,0,0,0,1,0,0,0,0,0,9,0,0,347,22,534,0,1,0,0,0,0,0,0,12,0,0,9,0,2,2,103,0,17,9,5,0,3,0,0,58,0,0,0,0,10,5,81,0,7,0,0,678,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,84,0,90,0,0,0,0,3,61,100,187,0,0,0,0,0,0,0,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,130,57,392,14,0,0,395,0,840,0,1,0,127,8,0,0,0,0,0,0,0,0,0,376,0,0,0,0,19,0,0,0,0,0,129,16,0,0,0,0,0,0,0,0,405,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,20,1,1,1,0,1,0,0,0,0,41,36,46,0,2,0,0,0,0,0,0,187,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,4,0,0,0,0,0,0,0,0,0,0,0,10,0,0,341,40,4 +0,0,0,8,0,36,47,0,44,0,30,0,0,6,4,0,636,0,6,1,0,0,0,8,0,10,0,0,31,0,1,0,0,0,1,2817,36,6,0,0,48,0,2,0,1,0,0,2,0,0,0,0,1,309,0,0,0,0,0,1,0,0,0,0,0,4,0,0,30160,36,859,0,29,0,0,0,0,0,66,0,0,0,0,0,8,153,6360,0,0,1,0,0,0,0,0,426,20,3,0,0,2,0,737,0,0,148,0,4174,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,1229,0,40,0,0,0,26,29,402,2123,1214,0,0,0,0,1,0,3,0,0,0,0,0,0,423,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,16,232,8,0,0,306,0,292,0,0,0,133,9,0,0,0,0,0,0,0,0,0,773,1,0,0,0,9,0,0,0,0,0,128,13,0,0,192,0,0,0,0,0,4330,1,0,833,32,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,32,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,106,0,0,0,0,1,37,149,0,30,12,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2496,257,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,404,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,141,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,48,3,0,0,47,0,143,0,0,0,5,3,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +0,0,0,9,0,36,42,0,54,0,34,0,0,6,4,0,747,0,6,1,0,0,0,8,0,11,0,0,16,0,1,0,0,0,1,9949,36,6,0,0,50,0,2,0,1,0,0,2,0,0,0,0,1,982,0,0,0,0,0,1,0,0,0,0,0,4,0,0,55032,36,983,0,15,0,0,0,0,0,73,0,0,0,0,0,8,237,11066,0,0,1,0,0,0,0,0,584,20,3,0,0,2,0,859,0,0,486,0,5958,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,3232,0,42,0,0,0,10,13,757,3431,3207,0,0,0,0,1,0,3,0,0,0,0,0,0,408,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,16,438,9,0,0,432,0,334,0,0,0,257,14,0,0,0,0,0,0,0,0,0,893,1,0,0,0,9,0,0,0,0,1,255,7,0,0,379,0,0,0,0,0,6212,1,0,959,35,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,35,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,44,0,0,0,0,1,37,93,0,16,12,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3458,387,4 +338,0,0,10,15,180,237,39,554,73,87,0,5,0,132,1,1018,0,19,27,0,10,6,10,2,66,48,0,24,0,17,5,0,13,100,0,195,16654,6391,0,1119,0,0,0,1,0,0,5,1,0,0,0,79,437,0,0,0,0,0,1,0,3,0,25,0,120,0,0,40440,180,3172,0,100,0,0,0,0,0,157,27,0,0,0,0,22,33,8276,0,39,100,13,0,12,259,0,2535,135,11,0,0,20,15,2645,0,87,1,0,6757,0,0,0,0,100,88,2,0,31,0,0,1,0,0,0,25,0,0,0,0,0,0,0,19,0,0,0,39,0,0,0,0,0,2,0,32,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,74,8,0,0,0,0,0,2,0,0,0,0,0,7,23,0,0,0,3,0,0,0,0,13,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,125,12,12,12,0,0,2,5191,2,502,0,0,2,99,366,449,135944,5224,0,0,0,0,1,0,13,0,0,0,0,0,0,11427,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,568,258,1864,28,0,0,2041,0,2580,0,5,0,952,126682,0,0,0,0,0,0,0,0,0,2053,1,0,2,0,55,0,0,0,0,64,393,719,0,0,318,0,0,0,0,0,29381,0,0,8527,3,0,1,11,0,0,0,0,14,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,20,1,0,0,0,0,3,159,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,5,190,1,1,1,0,625,0,0,0,0,196,295,402,1,151,9,0,0,0,0,0,1067,20,0,0,0,0,0,0,0,0,0,0,0,16,0,2,79,0,0,0,0,0,0,0,17,8,0,0,28,0,4,4889,2516,4 +16,0,0,4,0,24,2,0,20,0,3,0,0,0,3,0,61,0,6,1,0,0,0,12,0,0,24,0,8,0,9,0,0,0,11,0,24,18,0,0,13,0,0,0,1,0,0,22,0,0,0,0,8,84,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2081,24,242,0,17,0,0,0,0,0,45,0,0,0,0,22,12,57,564,0,0,11,0,0,0,0,0,89,0,19,0,0,2,0,170,0,1,0,0,608,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,474,0,342,0,0,0,16,51,77,1232,598,0,0,0,0,1,0,0,0,0,0,0,0,0,2623,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,10,4,196,4,0,0,146,0,210,0,0,0,77,600,0,0,0,0,0,0,0,0,0,95,1,0,0,0,13,0,0,0,0,9,108,8,0,0,0,0,9,0,16,8,895,0,0,184,0,0,1,0,0,0,0,0,22,0,28,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,24,0,0,0,0,1,35,76,0,41,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1071,37,4 +0,0,0,3,0,34,9,0,31,0,2,0,0,2,2,0,547,0,6,2,0,0,0,8,0,11,0,0,4,0,1,0,0,0,2,900,34,6,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,215,0,0,0,0,0,1,0,0,0,0,0,2,0,0,42877,34,601,0,1,0,0,0,0,0,16,0,0,0,0,0,9,21,8220,0,0,2,0,0,0,0,0,93,5,2,0,0,2,0,562,0,0,0,0,2835,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,4789,0,34,0,0,0,0,3,248,1128,4775,0,0,0,0,1,0,3,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,184,3,0,0,201,0,196,0,0,0,55,3,0,0,0,0,0,0,0,0,0,599,1,0,0,0,10,0,0,0,0,0,117,9,0,0,0,0,0,0,0,0,3198,1,0,771,10,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,10,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,327,0,2,14,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1746,29,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,78,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,48,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,36,4 +0,0,0,0,0,1,0,1,20,0,1,0,0,0,1,0,745,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,741,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,2,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,1,108,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,0,0,0,54,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,53,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,33,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,3,4 +0,0,0,4,0,31,5,0,13,0,3,0,0,2,4,0,22,0,6,4,0,0,0,5,1,8,0,0,7,0,3,0,0,0,6,0,31,6,6,0,28,0,0,0,1,0,0,1,0,0,0,0,5,136,0,0,0,0,0,1,0,0,0,0,0,5,0,0,1072,31,53,0,8,0,0,0,0,0,9,0,0,0,0,0,7,14,149,0,0,6,0,0,0,0,0,103,5,2,0,0,2,0,35,0,2,0,0,612,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,10,10,0,0,0,107,0,42,0,0,0,8,18,184,65,111,0,0,0,0,1,0,4,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,12,157,4,0,0,174,0,350,0,0,0,78,16,0,0,0,0,0,0,0,0,0,55,1,0,0,0,10,0,0,0,0,5,113,52,0,0,0,0,1,0,0,0,127,0,0,106,3,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,20,0,0,0,0,1,37,235,0,9,9,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,149,35,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,141,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,48,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,70,0,48,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,34,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,4,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,658,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,654,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,9,0,0,0,0,0,0,0,0,0,680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,2,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,9,0,0,1,99,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,402,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,25,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,133,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,45,3,0,0,47,0,143,0,0,0,5,3,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,11,4 +9,0,0,6,1,15,26,1,38,1,4,0,0,0,6,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,3,0,16,54,0,0,19,0,0,0,1,0,0,4,0,0,0,0,0,78,0,0,0,0,0,1,0,0,0,0,0,5,0,0,22561,15,125,0,1,0,0,0,0,0,17,0,0,0,0,0,1,6,1487,0,1,3,1,0,1,0,0,50,0,6,0,0,4,1,25,0,3,0,0,8483,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1486,0,150,0,0,0,0,3,64,37,1502,0,0,0,0,1,0,0,0,0,0,0,0,0,1567,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,114,17,932,8,0,0,757,0,746,0,1,0,570,32,0,0,0,0,0,0,0,0,0,147,1,0,0,0,2,0,0,0,0,0,602,21,0,0,0,0,0,0,0,0,1145,0,0,1646,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,1,1,1,0,0,0,0,0,0,9,19,73,0,1,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,695,123,4 +0,0,0,3,0,11,2,0,5,0,2,0,0,0,4,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,400,11,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,15,0,0,0,0,130,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,54,45,0,0,0,0,1,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,45,3,0,0,44,0,140,0,0,0,5,1,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,2,93,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,11,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,195,55,0,0,0,0,0,0,0,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,84,0,58,0,0,0,50,3,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,4,4 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,0,0,0,34,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +0,0,0,5,0,35,24,0,49,3,23,0,0,7,4,0,799,0,6,1,0,0,0,8,0,10,0,0,24,0,1,0,0,0,1,12380,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,638,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40163,35,962,0,22,0,0,0,0,0,45,0,0,0,0,0,8,88,6736,0,0,1,0,0,0,0,0,351,25,2,0,0,2,0,887,0,0,75,0,4271,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1507,0,32,0,0,0,11,14,484,2040,1486,0,0,0,0,1,0,3,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,280,5,0,0,310,0,297,0,0,0,152,13,0,0,0,0,0,0,0,0,0,912,1,0,0,0,9,0,0,0,0,1,163,7,0,0,124,0,0,0,0,0,4728,1,0,1003,22,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,54,0,0,0,0,1,36,201,0,23,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2454,25,4 +149,0,0,29,10,85,187,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,95,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,357,0,0,0,0,0,1,0,3,0,13,0,82,0,0,2819,85,1511,0,39,0,0,0,0,0,70,12,0,0,0,0,13,22,387,0,22,33,9,0,10,193,0,1895,100,3,0,0,14,10,1279,0,46,0,0,1925,0,0,0,0,54,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,330,0,235,0,0,0,36,76,300,1616,360,0,0,0,0,1,0,5,0,0,0,0,0,0,2693,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1458,48,0,0,1555,0,2965,0,6,0,562,43,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,279,538,0,0,215,0,0,0,0,0,9920,0,0,179,3,0,1,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,77,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1598,1652,4 +16,0,0,5,1,18,33,1,44,3,21,0,0,0,24,0,65,0,9,1,0,0,0,1,0,0,0,0,4,0,9,0,0,1,5,0,19,54,0,0,30,0,0,0,2,0,0,1,0,0,0,0,8,49,0,0,0,0,0,1,0,0,0,6,0,8,0,0,462,18,165,0,13,0,0,0,0,0,13,0,0,0,0,0,1,3,47,0,1,5,1,0,1,0,0,80,0,1,0,0,4,1,94,0,5,0,0,537,0,0,0,0,2,6,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,17,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,66,0,56,0,0,0,16,19,50,55,76,0,0,0,0,1,0,0,0,0,0,0,0,0,401,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,2,111,17,293,6,0,0,316,0,450,0,1,0,122,29,0,0,0,0,0,0,0,0,0,196,1,0,0,0,2,0,0,0,0,9,126,51,0,0,0,0,0,0,0,0,122,0,0,32,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,18,1,1,1,0,20,0,0,0,0,9,24,115,0,13,0,0,0,0,0,0,62,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,203,94,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,2,0,0,413,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,156,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,42,3,0,0,41,0,156,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,24,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,14,4 +75,0,0,0,4,155,4,16,71,2,15,0,2,0,4,0,54,0,6,12,0,4,4,2,0,15,3,0,22,0,13,1,0,4,126,0,159,12,0,0,193,0,0,0,0,0,0,0,0,0,0,0,28,101,0,0,0,0,0,1,0,0,0,0,0,1,0,0,7031,155,1707,0,51,0,0,0,0,0,640,12,0,0,0,0,5,5,240,0,16,126,4,0,2,20,0,283,40,0,0,0,6,4,183,0,0,0,0,4342,0,0,0,0,9,27,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,2,0,13,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,24,0,0,0,0,0,0,220,0,364,0,0,0,41,46,239,348,237,0,0,0,0,0,0,0,0,0,0,0,0,0,5328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,27,675,6,0,0,1256,0,452,0,0,0,1057,105,0,0,0,0,0,0,0,0,0,156,0,0,0,0,22,0,0,0,0,28,238,59,0,0,120,0,0,0,0,0,944,0,0,13,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,154,1,1,1,0,49,0,0,0,24,33,285,126,0,54,0,0,0,0,0,0,246,5,0,0,0,0,0,0,0,0,0,0,0,4,0,1,2,0,0,0,0,0,0,0,0,0,0,0,6,0,0,2321,918,4 +38,0,0,12,4,16,31,7,68,0,5,0,0,0,27,0,106,0,8,7,0,3,3,3,0,5,6,0,5,0,1,0,0,4,3,0,20,382,0,0,309,0,0,0,0,0,0,0,0,0,0,0,5,68,0,0,0,0,0,1,0,0,0,2,0,2,0,0,1060,16,379,0,11,0,0,0,0,0,0,9,0,0,0,0,3,3,79,0,7,3,4,0,1,0,0,67,0,0,0,0,4,4,189,0,1,0,0,6465,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,66,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,14,0,0,0,0,0,0,69,0,32,0,0,0,5,13,45,70,87,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,183,406,21,0,0,308,0,671,0,1,0,71,12,0,0,0,0,0,0,0,0,0,245,0,0,0,0,16,0,0,0,0,5,112,1,0,0,0,0,0,0,1,0,1208,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,1,1,1,0,5,0,0,0,0,33,23,4,0,17,0,0,0,0,0,0,74,88,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,876,42,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,407,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,138,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,30,0,27,0,0,0,2,4,27,94,44,0,0,0,0,1,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,44,3,0,0,47,0,147,0,0,0,5,5,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,11,4 +0,0,0,6,0,9,2,0,19,0,4,0,0,0,5,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,10,0,0,0,1,0,0,2,0,0,0,0,0,86,0,0,0,0,0,1,0,0,0,0,0,1,0,0,203,9,50,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,34,0,0,1,0,0,0,0,0,7,0,4,0,0,2,0,26,0,0,0,0,134,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,34,0,0,0,0,3,23,6,49,0,0,0,0,1,0,0,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,97,11,0,0,124,0,222,0,0,0,54,4,0,0,0,0,0,0,0,0,0,52,1,0,0,0,2,0,0,0,0,0,96,38,0,0,0,0,0,0,0,0,33,0,0,27,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,185,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,31,4 +280,0,0,29,21,95,169,37,399,35,52,0,0,2,72,2,796,0,20,67,0,117,2,6,0,36,22,0,23,0,8,2,0,20,42,0,115,301,160,0,499,0,0,0,1,0,0,4,0,0,0,0,37,426,0,0,0,0,0,1,0,3,0,12,0,60,0,0,2817,95,3530,0,59,0,0,0,0,0,28,45,0,0,0,1,14,25,297,0,37,42,20,0,9,50,0,876,85,4,0,0,14,21,788,0,52,0,0,2665,0,0,0,0,63,34,0,0,26,0,0,1,0,0,0,20,0,0,0,0,0,0,0,29,0,0,0,14,0,0,0,0,0,7,0,68,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,32,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,20,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,323,0,293,0,0,0,45,77,400,693,330,0,0,0,0,1,0,5,0,0,0,0,0,0,3063,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,679,366,1823,59,0,0,1862,0,3171,0,6,0,608,528,0,0,0,0,0,0,0,0,0,1512,1,0,0,0,192,0,0,0,0,36,289,175,0,0,185,0,0,0,0,0,10678,0,0,179,4,0,1,7,0,0,0,0,6,0,0,0,2,0,0,0,0,0,34,0,0,0,0,0,0,0,0,1,0,0,102,102,0,0,15,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,99,1,1,1,0,61,0,0,0,0,231,157,371,0,82,9,0,0,0,0,0,359,30,0,0,0,0,0,0,1,0,0,0,0,21,0,4,43,0,0,0,0,0,0,0,0,117,0,0,199,0,2,1828,1914,4 +4,0,19,6,6,32,4,17,262,3,9,0,0,0,18,0,3067,0,9,17,0,4,1,2,1,3,0,0,1,0,2,0,0,4,11,27,37,56,0,0,58,0,3,0,1,0,0,7,0,0,0,0,4,190,0,0,0,0,0,1,0,0,0,10,0,11,0,0,9133,32,3600,0,5,0,0,0,0,3,23,12,0,0,0,2,2,15,1735,0,17,11,4,0,0,0,0,34,0,13,0,0,3,6,3093,0,5,0,0,909,0,0,0,0,2,0,0,0,1,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,402,0,0,0,0,0,0,1148,6,73,0,0,0,5,7,63,42,1191,0,0,0,0,1,0,0,0,0,0,58,1,0,2865,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1497,94,416,12,0,0,458,0,604,0,0,0,188,221,0,0,0,0,0,0,80,0,0,3369,1,0,0,0,25,0,0,0,0,2,121,78,0,20,0,0,0,0,0,0,3941,0,0,2448,0,0,1,1,1,0,0,0,11,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,157,0,0,0,0,307,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,3,0,0,0,0,41,48,287,0,6,0,0,1,0,0,0,77,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,4,0,0,0,0,0,76,0,4,0,0,0,201,0,2,1171,92,4 +15,0,0,4,0,18,2,0,28,3,3,0,0,0,6,0,116,0,6,1,0,0,0,1,0,0,60,0,20,0,21,0,0,0,6,0,18,61,0,0,22,0,51,0,1,0,0,51,0,0,0,0,20,286,0,0,0,0,0,1,0,0,0,0,0,7,0,0,9682,18,427,0,41,0,0,0,0,0,115,0,0,0,0,0,1,53,1540,0,0,6,0,0,0,0,0,157,0,53,0,0,2,0,419,0,4,0,0,591,0,4,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,1616,0,441,0,0,0,40,103,43,174,1998,0,0,0,0,1,0,0,0,0,0,0,0,0,3845,0,59,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,8,7,135,4,0,0,557,0,831,0,0,0,495,20,0,0,0,0,0,0,0,0,0,161,1,0,0,0,2,0,0,0,0,21,100,409,0,0,0,0,0,0,0,0,736,0,0,1597,0,0,1,0,1,0,0,0,145,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,168,0,0,0,0,21,20,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,40,0,0,0,0,1,24,103,0,101,0,0,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1459,348,4 +1,0,0,3,0,28,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,122,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1208,28,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,195,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,683,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,139,0,50,0,0,0,1,4,182,14,137,0,0,0,0,1,0,3,0,0,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,1,0,32,10,129,3,0,0,167,0,330,0,0,0,61,6,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,110,44,0,0,0,0,0,0,0,0,104,0,0,98,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,172,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,184,55,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,25,0,0,0,0,0,1,0,0,0,0,0,2,0,0,408,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,151,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,158,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,347,14,4 +98,0,0,0,12,82,18,48,147,3,25,0,2,0,5,0,118,0,7,34,0,12,12,2,0,3,3,0,20,0,64,1,0,12,50,0,94,12,0,0,178,0,0,0,0,0,0,0,0,0,0,0,67,120,0,0,0,0,0,1,0,0,0,0,0,3,0,0,956,82,1332,0,88,0,0,0,0,0,3,36,0,0,0,0,11,11,48,0,48,50,12,0,2,32,0,583,55,0,0,0,6,12,328,0,2,0,0,3037,0,0,0,0,25,20,0,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,20,0,0,0,19,0,0,0,0,0,1,0,23,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,0,0,0,0,0,0,84,0,114,0,0,0,131,134,144,455,119,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,727,14,0,0,677,0,590,0,0,0,269,85,0,0,0,0,0,0,0,0,0,322,0,0,0,0,60,0,0,0,0,66,173,61,0,0,121,0,0,0,0,0,252,0,0,63,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,81,1,1,1,0,151,0,0,0,116,97,144,50,0,91,0,0,0,0,0,0,202,16,0,0,0,0,0,0,0,0,0,0,0,12,0,1,3,0,0,0,0,0,0,0,0,0,0,0,21,0,0,256,906,4 +54,0,0,1,1,57,12,4,56,2,13,0,3,0,5,0,37,0,7,10,0,1,1,6,0,16,3,0,7,0,4,1,0,1,22,0,58,12,0,0,181,0,0,0,1,0,0,0,0,0,0,0,13,95,0,0,0,0,0,1,0,1,0,0,0,7,0,0,981,57,258,0,18,0,0,0,0,0,10,3,0,0,0,0,13,18,147,0,4,22,1,0,4,31,0,381,30,0,0,0,6,1,231,0,2,0,0,3399,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,139,0,91,0,0,0,16,23,225,327,128,0,0,0,0,1,0,3,0,0,0,0,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,279,2,0,0,236,0,406,0,0,0,102,29,0,0,0,0,0,0,0,0,0,133,0,0,0,0,18,0,0,0,0,12,148,72,0,0,60,0,0,0,0,0,711,0,0,6,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,18,0,0,0,0,9,80,38,0,22,9,0,0,0,0,0,190,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,165,802,4 +6,0,0,2,0,14,2,0,11,0,2,0,0,0,2,0,30,0,6,2,0,0,0,1,0,0,9,0,2,0,4,0,0,0,4,0,14,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,3,34,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1005,14,58,0,6,0,0,0,0,0,4,0,0,0,0,0,2,5,448,0,0,4,0,0,0,0,0,23,0,1,0,0,2,0,63,0,0,0,0,193,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,8,0,0,0,0,0,0,39,0,25,0,0,0,6,16,32,20,48,0,0,0,0,1,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,100,0,199,0,0,0,44,4,0,0,0,0,0,0,0,0,0,53,1,0,0,0,3,0,0,0,0,4,96,25,0,0,0,0,0,0,0,0,250,0,0,731,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,364,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,7,0,0,0,0,1,18,67,0,15,0,0,0,0,0,0,16,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,220,12,4 +0,0,0,6,2,56,8,8,64,3,13,0,0,2,7,0,1041,0,9,12,0,2,0,6,0,18,0,0,6,0,2,0,0,0,13,898,58,9,32860,0,50,0,0,0,1,0,0,5,0,0,0,0,6,1375,0,0,0,0,0,1,0,0,0,0,0,11,0,0,31824,56,1428,0,9,0,0,0,0,0,33,6,0,0,0,0,9,22,4554,0,8,13,0,0,1,7,0,183,20,8,0,0,2,2,1109,0,4,0,0,4054,0,0,0,0,5,0,1,0,2,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,4,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,14,12,0,0,0,3873,0,121,0,0,0,7,9,275,57862,3867,0,0,0,0,1,0,3,0,0,0,0,0,0,545,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,38,17,326,10,0,0,350,0,484,0,0,0,129,32889,0,0,0,0,0,0,0,0,0,1144,1,0,0,0,20,0,0,0,0,8,137,42,0,0,34,0,0,0,0,0,2558,1,0,192,15,0,1,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,6,6,0,0,0,6,4,0,0,0,0,0,13,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,49,1,3,1,0,21,0,0,0,0,23,71,243,0,14,12,0,0,0,0,0,88,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,7,0,0,0,0,0,0,0,0,0,0,0,4,0,4,663,164,4 +90,0,0,4,1,52,25,4,117,6,24,0,4,0,13,0,37,0,7,6,0,1,1,5,0,30,9,0,5,0,5,0,0,1,17,0,53,15,0,0,479,0,0,0,1,0,0,0,0,0,0,0,27,119,0,0,0,0,0,1,0,1,0,0,0,27,0,0,1367,52,370,0,30,0,0,0,0,0,16,3,0,0,0,0,8,13,267,0,4,17,1,0,4,88,0,808,15,0,0,0,8,1,553,0,8,0,0,1264,0,0,0,0,39,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,208,0,110,0,0,0,30,62,217,796,206,0,0,0,0,1,0,4,0,0,0,0,0,0,820,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,94,262,6,0,0,239,0,317,0,0,0,102,24,0,0,0,0,0,0,0,0,0,227,0,0,0,0,13,0,0,0,0,26,137,230,0,0,30,0,0,0,0,0,736,0,0,21,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,37,0,0,0,0,9,70,41,0,40,9,0,0,0,0,0,328,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,278,1601,4 +155,0,4,5,6,103,92,9,740,23,50,0,4,0,31,0,9209,0,9,20,0,3,2,8,0,26,18,0,28,0,14,2,0,5,39,26,106,28814,8942,0,503,0,1,0,1,0,0,2,1,0,0,0,33,206,0,0,0,0,0,1,0,0,0,18,0,36,0,0,3208,103,10441,0,60,0,0,0,0,0,17,6,0,0,0,0,21,30,571,0,9,39,5,0,5,140,0,1391,95,7,1,0,15,6,10006,0,19,0,0,3038,0,0,0,0,34,31,0,0,0,0,0,1,0,0,0,19,0,0,0,0,0,0,0,18,0,0,0,17,0,0,0,0,0,5,0,37,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,9,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1047,10,10,10,0,0,0,398,0,196,0,0,0,47,68,299,124948,423,0,0,0,0,1,0,4,0,0,0,18489,3,1,1554,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,1,0,335,23230,778,16,0,0,760,0,4039,0,2,0,300,115189,0,0,0,0,0,0,0,0,0,10135,1,0,5,0,33,0,0,0,0,30,226,360,0,4,234,0,0,0,0,0,48129,41,0,57,3,0,1,9,0,0,0,0,11,0,0,0,2,0,0,0,0,0,15,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,1,0,0,0,0,3,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,105,1,1,1,0,70,0,0,0,0,27,145,91,0,79,9,0,0,0,0,0,496,14,0,0,0,0,0,0,0,0,0,0,0,4,0,1,25,0,0,0,0,0,0,0,0,0,0,0,7,0,2,811,995,4 +1,0,0,10,2,37,54,2,75,10,15,0,0,2,20,2,121,0,10,4,0,0,0,5,0,8,0,0,1,0,1,0,0,2,7,0,39,143,0,0,88,0,0,0,1,0,0,2,0,0,0,0,1,147,0,0,0,0,0,1,0,0,0,0,0,23,0,0,1037,37,216,0,1,0,0,0,0,0,9,0,0,0,0,0,8,16,148,0,2,7,2,0,3,14,0,272,25,2,0,0,6,2,156,0,15,0,0,691,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4,10,10,10,0,0,0,124,0,289,0,0,0,0,3,202,155,148,0,0,0,0,1,0,3,0,0,0,0,0,0,665,0,10,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,243,46,459,12,0,0,473,0,1041,0,2,0,126,15,0,0,0,0,0,0,0,0,0,299,1,0,0,0,9,0,0,0,0,1,155,44,0,0,45,0,0,0,0,0,314,0,0,33,2,0,1,1,0,0,0,0,6,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,39,1,1,1,0,0,0,0,0,0,17,46,33,0,2,8,0,0,0,0,0,129,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,14,0,0,0,0,0,0,0,0,0,0,0,2,0,1,838,86,4 +1,0,0,0,0,9,4,0,5,0,2,0,2,0,2,0,11,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,9,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,20,9,25,0,1,0,0,0,0,0,0,0,0,0,0,1,1,1,5,0,0,1,0,0,2,0,0,9,0,0,0,0,6,0,10,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,18,0,0,0,0,3,22,6,27,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,23,40,0,0,0,46,0,73,0,0,0,8,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,2,0,0,0,0,0,91,3,0,0,0,0,1,0,0,0,24,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,5,0,1,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,8,4 +0,0,0,9,0,40,70,0,60,44,70,0,0,9,4,0,928,0,7,1,0,0,0,9,0,10,0,0,28,0,2,0,0,0,2,8243,40,6,0,0,55,0,2,0,1,0,0,2,0,0,0,0,2,391,0,0,0,0,0,1,0,0,0,0,0,4,0,0,53550,40,1345,0,27,0,0,0,0,0,137,0,0,0,0,0,9,216,9900,0,0,2,0,0,0,0,0,634,35,4,0,0,2,0,1121,0,0,122,0,7676,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,1882,0,45,0,0,0,18,20,1212,4132,1850,0,0,0,0,1,0,3,0,0,0,0,0,0,692,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,136,148,332,9,0,0,455,0,337,0,0,0,286,16,0,0,0,0,0,0,0,0,0,1148,1,0,0,0,10,0,0,0,0,3,204,19,0,0,359,0,0,0,0,0,7032,1,0,1247,67,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,67,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,75,0,0,0,0,1,42,202,0,28,12,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,48,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4134,388,4 +0,0,0,5,0,39,22,0,68,3,24,0,0,10,5,0,1203,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,2,11043,39,6,0,0,54,0,2,0,1,0,0,2,0,0,0,0,1,494,0,0,0,0,0,1,0,0,0,0,0,2,0,0,77170,39,1395,0,23,0,0,0,0,0,43,0,0,0,0,0,8,136,12462,0,0,2,0,0,0,0,0,431,40,3,0,0,2,0,1306,0,0,122,0,7364,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,12,12,12,0,0,0,2124,0,45,0,0,0,13,16,2224,8413,2094,0,0,0,0,1,0,3,0,0,0,0,0,0,3119,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,158,85,292,5,0,0,341,0,466,0,0,0,179,16,0,0,0,0,0,0,0,0,0,1338,1,0,0,0,9,0,0,0,0,1,157,43,0,0,152,0,0,0,0,0,8873,1,0,3431,19,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,19,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,61,0,0,0,0,1,41,179,0,24,12,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4654,49,4 +0,0,0,0,0,8,31,0,39,1,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,1,0,0,127,8,120,0,1,0,0,0,0,0,16,0,0,0,0,0,1,1,47,0,0,0,0,0,2,35,0,268,15,0,0,0,4,0,181,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,36,0,0,0,0,3,21,166,56,0,0,0,0,0,0,0,0,0,0,0,0,0,325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,32,2,0,0,81,0,87,0,0,0,48,5,0,0,0,0,0,0,0,0,0,95,0,0,0,0,2,0,0,0,0,0,91,70,0,0,30,0,0,0,0,0,33,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,86,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,1,4 +20,0,0,0,0,34,24,0,36,2,5,0,2,0,4,0,20,0,6,6,0,0,0,6,0,10,3,0,6,0,2,1,0,0,6,0,34,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,69,0,0,0,0,0,1,0,0,0,0,0,3,0,0,701,34,116,0,9,0,0,0,0,0,13,0,0,0,0,0,11,16,129,0,0,6,0,0,2,25,0,299,15,0,0,0,4,0,171,0,2,0,0,662,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,94,0,50,0,0,0,6,12,193,169,98,0,0,0,0,1,0,2,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,135,0,0,0,146,0,289,0,0,0,61,55,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,124,53,0,0,30,0,0,0,0,0,88,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,11,0,0,0,0,1,40,22,0,13,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,37,4 +0,0,0,0,0,1,0,1,20,0,1,0,0,0,1,0,730,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,726,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,9,0,0,1,107,4 +18,0,0,20,3,97,67,8,104,17,14,0,0,6,35,0,1946,0,7,10,0,2,1,7,1,24,9,0,34,0,24,1,0,2,53,24188,99,807,12,0,184,0,0,0,1,0,0,2,0,0,0,0,30,1682,0,0,0,0,0,1,0,0,0,34,0,37,0,0,138522,97,2584,0,44,0,0,0,0,0,129,6,0,0,0,0,9,22,28247,0,8,53,2,0,0,0,0,264,20,2,1,0,6,3,2487,0,27,0,0,17295,0,0,0,0,63,0,1,0,0,0,0,1,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,0,15,0,0,0,0,1,0,12,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,170,0,20004,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,93,12,12,12,0,0,0,14717,0,126,0,0,0,34,48,444,1533,14681,0,0,0,0,1,0,3,0,1,0,4,4,0,34861,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,128,55,876,33,0,0,836,0,724,0,0,0,559,399,0,0,0,0,0,0,0,0,0,2179,1,0,0,0,21,0,0,0,0,6,265,81,0,0,1,0,2,0,4,8,64961,1,0,145,65,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,17,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,65,28,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,94,1,1,1,0,111,0,0,0,0,39,153,129,0,78,14,0,1,0,0,0,182,7,0,0,0,0,0,0,0,0,0,0,0,4,0,3,26,0,0,0,0,0,0,0,0,0,0,0,3,0,3,6658,340,4 +0,0,0,5,0,38,51,0,102,2,34,0,0,8,3,0,942,0,6,1,0,0,0,8,0,10,0,0,40,0,1,0,0,0,1,9479,38,6,0,0,50,0,1,0,1,0,0,1,0,0,0,0,1,457,0,0,0,0,0,1,0,0,0,0,0,2,0,0,100293,38,1252,0,38,0,0,0,0,0,99,0,0,0,0,0,8,265,12434,0,0,1,0,0,0,0,0,535,30,2,0,0,2,0,1115,0,0,194,0,9209,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,5634,0,36,0,0,0,24,27,1255,6290,5571,0,0,0,0,1,0,3,0,0,0,0,0,0,6452,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,22,350,5,0,0,365,0,338,0,0,0,197,40,0,0,0,0,0,0,0,0,0,1146,1,0,0,0,9,0,0,0,0,1,164,76,0,0,262,0,0,0,0,0,5852,1,0,8566,48,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,48,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,109,0,0,0,0,1,39,293,0,39,12,0,1,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3421,154,4 +6,0,0,10,0,66,181,0,121,6,16,0,0,2,35,3,66,0,63,4,0,0,0,9,0,8,24,0,13,0,12,4,0,0,24,0,66,206,0,0,315,0,0,0,1,0,0,7,1,0,0,0,16,258,0,0,0,0,0,1,0,0,0,5,0,16,0,0,8503,66,568,0,27,0,0,0,0,0,37,0,0,0,0,1,12,27,798,0,0,24,0,0,1,94,0,860,60,20,0,0,2,0,749,0,10,0,0,6310,0,0,0,0,4,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,752,0,175,0,0,0,30,53,290,1371,731,0,0,0,0,1,0,14,0,0,0,0,0,0,2675,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,26,496,11,0,0,663,0,1581,0,0,0,505,93,0,0,0,0,0,0,0,0,0,487,1,0,9,0,13,0,0,0,0,15,168,404,0,0,293,0,0,0,0,0,1367,0,0,1779,3,0,1,1,1,0,0,0,29,0,0,0,2,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,3,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,117,1,1,1,0,37,0,0,0,0,1,90,719,0,52,9,0,1,0,0,0,303,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1167,1485,4 +3,0,0,6,1,47,6,0,56,2,7,0,0,6,7,0,808,0,6,2,0,0,0,8,0,11,0,0,54,0,1,0,0,0,9,898,47,28,0,0,48,0,0,0,1,0,0,13,1,0,0,0,1,284,0,0,0,0,0,1,0,0,0,0,0,5,0,0,9763,47,1002,0,51,0,0,0,0,0,48,0,0,0,0,4,9,37,1568,0,0,9,0,0,0,0,0,262,20,23,0,0,2,1,924,0,2,2,0,1396,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,881,0,198,0,0,0,0,3,282,375,841,0,0,0,0,1,0,3,0,0,0,0,0,0,1751,0,0,0,0,0,0,0,0,0,0,0,0,13,1,2,0,0,0,0,1,0,84,23,281,7,0,0,383,0,506,0,0,0,219,49,0,0,0,0,0,0,0,0,0,896,1,0,4,0,10,0,0,0,0,1,140,116,0,0,6,0,1,0,0,0,2397,1,0,1173,8,0,1,1,0,0,0,0,37,0,0,0,6,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,50,0,0,0,0,1,56,574,0,52,14,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1154,798,4 +152,0,0,29,10,85,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,95,301,0,0,707,0,0,0,1,0,0,3,0,0,0,0,28,354,0,0,0,0,0,1,0,3,0,12,0,83,0,0,3074,85,1523,0,39,0,0,0,0,0,73,12,0,0,0,0,13,22,409,0,22,33,9,0,10,198,0,1932,100,3,0,0,14,10,1304,0,46,0,0,2740,0,0,0,0,52,40,0,0,31,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,37,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,335,0,246,0,0,0,36,76,300,1650,366,0,0,0,0,1,0,5,0,0,0,0,0,0,2718,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1439,48,0,0,1559,0,2905,0,6,0,565,50,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,279,551,0,0,215,0,0,0,0,0,9931,0,0,173,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,77,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,733,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1636,1716,4 +0,0,0,6,0,25,5,0,19,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,0,0,1,0,25,6,0,0,27,0,2,0,1,0,0,2,0,0,0,0,1,105,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1134,25,48,0,1,0,0,0,0,0,10,0,0,0,0,0,7,15,293,0,0,1,0,0,0,0,0,74,5,3,0,0,2,0,28,0,0,0,0,374,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,95,0,34,0,0,0,0,3,177,9,96,0,0,0,0,1,0,3,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,117,6,0,0,155,0,359,0,0,0,55,5,0,0,0,0,0,0,0,0,0,53,1,0,0,0,8,0,0,0,0,0,108,42,0,0,0,0,0,0,0,0,85,0,0,399,3,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,149,0,2,9,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,307,4 +54,0,0,0,1,58,13,4,57,3,13,0,4,0,6,0,38,0,7,9,0,1,1,7,0,16,3,0,6,0,4,1,0,1,22,0,59,15,0,0,188,0,0,0,1,0,0,0,0,0,0,0,13,91,0,0,0,0,0,1,0,1,0,0,0,7,0,0,999,58,254,0,17,0,0,0,0,0,10,3,0,0,0,0,13,18,148,0,4,22,1,0,5,31,0,382,30,0,0,0,8,1,233,0,2,0,0,2837,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,142,0,112,0,0,0,16,23,229,327,131,0,0,0,0,1,0,3,0,0,0,0,0,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,67,284,3,0,0,243,0,393,0,0,0,103,29,0,0,0,0,0,0,0,0,0,138,0,0,0,0,18,0,0,0,0,12,149,73,0,0,60,0,0,0,0,0,700,0,0,7,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,17,0,0,0,0,9,81,38,0,21,9,0,0,0,0,0,194,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,324,727,4 +77,0,0,0,4,162,4,16,71,2,15,0,2,0,4,0,54,0,6,11,0,4,4,3,0,16,3,0,24,0,13,1,0,4,126,0,166,12,0,0,205,0,0,0,0,0,0,0,0,0,0,0,29,103,0,0,0,0,0,1,0,0,0,0,0,1,0,0,7345,162,1751,0,54,0,0,0,0,0,660,12,0,0,0,0,5,5,391,0,16,126,4,0,2,20,0,308,40,0,0,0,6,4,192,0,0,0,0,4847,0,0,0,0,9,26,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,2,0,14,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,24,0,0,0,0,0,0,287,0,327,0,0,0,42,47,251,351,304,0,0,0,0,0,0,0,0,0,0,0,0,0,6172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,27,738,6,0,0,1297,0,470,0,0,0,1077,148,0,0,0,0,0,0,0,0,0,156,0,0,0,0,22,0,0,0,0,29,245,58,0,0,120,0,0,0,0,0,1033,0,0,13,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,161,1,1,1,0,51,0,0,0,24,33,292,126,0,57,0,0,0,0,0,0,254,5,0,0,0,0,0,0,0,0,0,0,0,4,0,1,2,0,0,0,0,0,0,0,0,0,0,0,6,0,0,2369,957,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,0,0,0,77,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,45,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,1,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,36,4 +172,0,4,3,6,108,56,20,742,24,57,0,7,0,31,24,7755,0,7,21,0,6,5,9,0,26,29,0,27,0,19,4,0,5,46,26,113,34,0,0,690,0,3,0,1,0,0,3,1,0,0,0,40,374,0,0,0,0,0,1,0,0,0,19,0,44,0,0,4133,108,9502,0,63,0,0,0,0,0,33,15,0,0,0,0,17,27,853,0,20,46,5,0,8,174,0,1610,130,7,0,0,14,6,8873,0,22,0,0,3656,0,0,0,0,28,29,1,0,4,0,0,1,0,0,0,21,0,0,0,0,0,0,0,12,0,0,0,14,0,0,0,0,0,5,0,49,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,13,1,1,1,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,7,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,996,10,10,10,0,0,0,322,0,252,0,0,0,61,93,339,1464,365,0,0,0,0,1,0,4,0,0,0,15721,3,1,1900,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,1,0,90,19837,795,13,0,0,675,0,2248,0,0,0,302,606,0,0,0,0,0,0,0,0,0,8679,1,0,2,0,41,0,0,0,0,32,200,439,0,4,320,0,0,0,1,0,16451,0,0,794,3,0,1,8,1,0,0,0,7,0,0,0,0,0,0,0,0,0,21,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,14,1,2,0,0,0,3,401,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,132,1,1,1,0,78,0,0,0,24,43,159,116,0,96,9,0,0,0,0,0,565,16,0,0,0,0,0,0,0,0,0,0,0,6,0,1,28,0,0,0,0,0,0,0,0,0,0,0,8,0,2,908,996,4 +20,0,0,0,0,35,24,0,36,2,5,0,2,0,4,0,20,0,6,5,0,0,0,7,0,10,3,0,6,0,2,1,0,0,6,0,35,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,80,0,0,0,0,0,1,0,0,0,0,0,3,0,0,709,35,116,0,9,0,0,0,0,0,13,0,0,0,0,0,11,16,135,0,0,6,0,0,2,25,0,299,15,0,0,0,4,0,171,0,2,0,0,595,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,95,0,48,0,0,0,6,12,197,169,99,0,0,0,0,1,0,3,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,133,0,0,0,149,0,246,0,0,0,61,31,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,125,53,0,0,30,0,0,0,0,0,95,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,11,0,0,0,0,1,41,22,0,13,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,35,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1,0,0,0,0,0,0,0,0,48,8,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,7,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,17,0,0,0,0,3,21,4,26,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,37,0,22,0,0,0,3,4,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,4,4 +0,0,0,2,0,10,2,0,17,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,72,0,0,0,0,0,1,0,0,0,0,0,1,0,0,393,10,45,0,1,0,0,0,0,0,9,0,0,0,0,0,1,4,61,0,0,0,0,0,0,0,0,8,0,3,0,0,2,0,16,0,0,0,0,132,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,63,0,43,0,0,0,0,3,26,6,70,0,0,0,0,1,0,0,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,8,3,95,8,0,0,134,0,265,0,0,0,59,7,0,0,0,0,0,0,4,0,0,45,1,0,0,0,2,0,0,0,0,0,96,47,0,0,0,0,0,0,0,0,43,0,0,55,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,194,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,102,41,4 +3,0,0,6,1,45,6,0,49,2,7,0,0,6,7,0,732,0,6,2,0,0,0,8,0,11,0,0,54,0,1,0,0,0,9,898,45,28,0,0,48,0,0,0,1,0,0,13,1,0,0,0,1,282,0,0,0,0,0,1,0,0,0,0,0,5,0,0,9582,45,914,0,51,0,0,0,0,0,48,0,0,0,0,4,9,36,1578,0,0,9,0,0,0,0,0,262,20,23,0,0,2,1,842,0,2,2,0,1596,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,848,0,199,0,0,0,0,3,268,374,808,0,0,0,0,1,0,3,0,0,0,0,0,0,1654,0,0,0,0,0,0,0,0,0,0,0,0,13,1,2,0,0,0,0,1,0,84,23,268,7,0,0,372,0,490,0,0,0,206,57,0,0,0,0,0,0,0,0,0,813,1,0,4,0,10,0,0,0,0,1,138,116,0,0,6,0,1,0,0,0,2249,1,0,1058,8,0,1,1,0,0,0,0,34,0,0,0,5,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,50,0,0,0,0,1,54,557,0,52,14,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1136,797,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,2,0,0,408,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,281,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,156,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,347,14,4 +120,0,0,29,11,90,157,27,271,30,38,0,0,2,66,1,559,0,20,43,0,100,2,6,0,33,22,0,17,0,8,2,0,10,38,0,100,301,168,0,387,0,0,0,1,0,0,3,0,0,0,0,34,335,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2528,90,1769,0,49,0,0,0,0,0,21,15,0,0,0,0,13,22,295,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,584,0,46,0,0,2401,0,0,0,0,46,16,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,292,0,228,0,0,0,42,74,340,592,304,0,0,0,0,1,0,6,0,0,0,0,0,0,2346,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1444,49,0,0,1494,0,3005,0,6,0,499,180,0,0,0,0,0,0,0,0,0,1114,1,0,0,0,151,0,0,0,0,30,283,146,0,0,155,0,0,0,0,0,10429,0,0,168,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,53,53,0,0,8,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,63,0,0,0,0,117,138,314,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,202,0,3,1799,1619,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,2,0,0,407,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,129,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,155,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,30,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,14,4 +11,0,0,8,1,34,48,1,122,7,15,1,0,0,13,0,71,0,9,2,0,0,0,4,0,3,3,0,10,0,2,0,0,1,17,0,35,54,0,0,148,0,0,0,1,0,0,16,3,0,0,0,4,297,0,0,0,0,0,1,0,0,0,20,0,10,0,0,7359,34,340,0,15,0,0,0,0,0,58,0,0,0,0,6,5,29,1319,0,1,17,1,0,1,47,0,460,15,33,1,0,4,1,346,0,8,0,0,1106,0,0,0,0,31,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,8,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,1067,0,226,0,0,0,5,13,72,428,1010,0,0,0,0,1,0,0,0,0,0,0,0,0,2300,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,112,19,390,11,0,0,485,0,1612,0,1,0,272,42,0,0,0,0,0,0,0,0,0,279,1,0,9,0,6,0,0,0,0,6,146,221,0,0,34,0,0,0,0,0,581,0,0,1298,0,0,1,0,0,0,0,0,43,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,38,1,1,1,0,14,0,0,0,0,9,52,829,0,18,0,0,0,0,0,0,199,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,10,1699,85,4 +0,0,0,0,0,10,4,0,5,0,1,0,2,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,28,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,1,0,0,0,0,0,0,0,0,26,10,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,2,0,0,2,0,0,9,0,0,0,0,6,0,25,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,22,0,0,0,0,3,23,3,27,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,25,46,2,0,0,51,0,135,0,0,0,11,9,0,0,0,0,0,0,0,0,0,35,0,0,0,0,2,0,0,0,0,0,94,1,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,2,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,9,4 +117,0,0,29,11,91,159,27,284,27,43,0,0,2,63,1,568,0,20,44,0,99,2,6,0,41,22,0,19,0,6,3,0,10,38,0,101,301,160,0,405,0,0,0,1,0,0,3,0,0,0,0,41,360,0,0,0,0,0,1,0,3,0,12,0,51,0,0,2642,91,1812,0,59,0,0,0,0,0,27,15,0,0,0,0,13,22,302,0,27,38,10,0,9,50,0,853,85,3,0,0,14,11,653,0,43,0,0,2226,0,0,0,0,45,18,1,0,31,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,28,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,306,0,243,0,0,0,48,85,351,690,313,0,0,0,0,1,0,6,0,0,0,0,0,0,2483,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,335,1442,49,0,0,1509,0,2996,0,6,0,510,163,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,151,0,0,0,0,35,285,176,0,0,185,0,0,0,0,0,10437,0,0,176,3,0,1,6,0,0,0,0,6,0,0,0,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,56,56,0,0,10,1,0,0,0,0,3,17,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,96,1,1,1,0,53,0,0,0,0,125,139,326,0,82,9,0,0,0,0,0,346,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,35,0,0,0,0,0,0,0,0,117,0,0,248,0,3,1908,1788,4 +0,0,0,2,0,9,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,34397,9,40,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,3901,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,15,0,0,0,0,1376,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3912,0,35,0,0,0,0,2,23,3686,3926,0,0,0,0,1,0,0,0,0,0,0,0,0,9664,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,97,2,0,0,77,0,156,0,0,0,15,6,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,91,8,0,0,0,0,0,0,0,0,2668,0,0,10993,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,225,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,19,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2717,98,4 +40,0,0,1,1,52,8,4,24,3,2,0,4,0,6,0,36,0,6,8,0,1,1,8,0,10,3,0,6,0,3,1,0,1,20,0,53,15,0,0,133,0,0,0,1,0,0,0,0,0,0,0,6,81,0,0,0,0,0,1,0,1,0,0,0,2,0,0,833,52,193,0,10,0,0,0,0,0,4,3,0,0,0,0,13,18,117,0,4,20,1,0,3,0,0,111,0,0,0,0,8,1,79,0,2,0,0,1506,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,114,0,96,0,0,0,8,15,217,79,114,0,0,0,0,1,0,3,0,0,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,35,65,258,4,0,0,215,0,371,0,0,0,87,26,0,0,0,0,0,0,0,0,0,86,0,0,0,0,18,0,0,0,0,6,144,6,0,0,0,0,0,0,0,0,119,0,0,4,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,13,0,0,0,0,9,73,36,0,14,9,0,0,0,0,0,115,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,296,506,4 +10,0,0,10,1,33,47,1,121,7,15,1,0,0,13,0,72,0,9,2,0,0,0,4,0,1,3,0,11,0,2,0,0,1,15,0,34,59,0,0,151,0,0,0,1,0,0,18,3,0,0,0,2,316,0,0,0,0,0,1,0,0,0,19,0,9,0,0,10564,33,355,0,13,0,0,0,0,0,69,0,0,0,0,4,5,31,1611,0,1,15,1,0,1,47,0,459,15,37,1,0,4,1,345,0,8,0,0,1563,0,0,0,0,34,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,7,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,1351,0,245,0,0,0,2,8,73,427,1304,0,0,0,0,1,0,0,0,0,0,0,0,0,3524,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,1,0,112,19,432,15,0,0,557,0,1486,0,1,0,339,37,0,0,0,0,0,0,0,0,0,278,1,0,9,0,6,0,0,0,0,2,199,235,0,0,34,0,0,0,0,0,841,0,0,2323,0,0,1,0,0,0,0,0,47,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,39,1,1,1,0,13,0,0,0,0,9,49,847,0,17,0,0,0,0,0,0,212,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,12,2004,174,4 +0,0,0,0,0,10,19,0,32,0,4,0,1,0,2,0,13,0,6,2,0,0,0,0,0,1,0,0,2,0,2,0,0,0,1,0,10,9,0,0,62,0,0,0,0,0,0,0,0,0,0,0,2,43,0,0,0,0,0,1,0,0,0,0,0,2,0,0,64,10,71,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,7,0,0,1,0,0,1,26,0,203,5,0,0,0,4,0,140,0,0,0,0,2727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,22,0,19,0,0,0,3,5,25,146,28,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,13,49,0,0,0,58,0,144,0,0,0,22,1,0,0,0,0,0,0,0,0,0,77,0,0,0,0,2,0,0,0,0,3,93,59,0,0,15,0,0,0,0,0,201,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,4,0,0,0,0,1,11,1,0,5,0,0,0,0,0,0,84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,24,4 +55,0,0,1,1,56,14,4,65,2,15,0,3,0,5,0,37,0,7,9,0,1,1,7,0,16,3,0,6,0,4,1,0,1,21,0,57,12,0,0,201,0,0,0,1,0,0,0,0,0,0,0,13,92,0,0,0,0,0,1,0,1,0,0,0,9,0,0,974,56,285,0,17,0,0,0,0,0,14,3,0,0,0,0,13,18,135,0,4,21,1,0,4,41,0,454,30,0,0,0,6,1,280,0,2,0,0,5047,0,0,0,0,11,10,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,4,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,23,10,10,10,0,0,0,135,0,85,0,0,0,16,23,224,389,122,0,0,0,0,1,0,3,0,0,0,0,0,0,521,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,283,2,0,0,239,0,405,0,0,0,105,24,0,0,0,0,0,0,0,0,0,146,0,0,0,0,18,0,0,0,0,12,147,98,0,0,60,0,0,0,0,0,694,0,0,7,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,17,0,0,0,0,9,78,37,0,21,9,0,0,0,0,0,214,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,145,799,4 +82,0,0,3,1,53,25,4,118,6,24,0,4,0,12,0,38,0,7,6,0,1,1,5,0,29,9,0,5,0,3,0,0,1,18,0,54,15,0,0,480,0,0,0,1,0,0,0,0,0,0,0,24,117,0,0,0,0,0,1,0,1,0,0,0,26,0,0,1366,53,369,0,27,0,0,0,0,0,16,3,0,0,0,0,8,13,266,0,4,18,1,0,4,88,0,798,15,0,0,0,8,1,552,0,7,0,0,2356,0,0,0,0,36,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,217,0,108,0,0,0,25,58,218,785,202,0,0,0,0,1,0,4,0,0,0,0,0,0,797,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,93,279,5,0,0,242,0,316,0,0,0,105,19,0,0,0,0,0,0,0,0,0,228,0,0,0,0,13,0,0,0,0,23,138,230,0,0,30,0,0,0,0,0,742,0,0,19,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,34,0,0,0,0,9,72,42,0,37,9,0,0,0,0,0,325,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,270,1482,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,70,0,48,0,0,0,36,4,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,4,4 +0,0,0,0,0,9,39,0,47,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,151,9,128,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,52,0,0,0,0,0,2,43,0,324,15,0,0,0,4,0,221,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,33,0,0,0,0,3,25,199,56,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,46,1,0,0,88,0,59,0,0,0,51,9,0,0,0,0,0,0,0,0,0,111,0,0,0,0,2,0,0,0,0,0,92,86,0,0,30,0,0,0,0,0,38,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,102,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,4,4 +245,0,0,0,3,86,58,12,378,3,126,1,2,0,5,0,48,0,7,14,0,3,3,2,0,6,4,0,39,0,99,1,0,3,38,0,89,12,0,0,555,0,0,0,0,0,0,0,0,0,0,0,105,148,0,0,0,0,0,1,0,0,0,0,0,25,0,0,5485,86,1555,0,146,0,0,0,0,0,297,9,0,0,0,0,9,9,231,0,12,38,3,0,4,338,0,3103,495,0,0,0,6,3,1605,0,2,0,0,2593,0,0,0,0,98,107,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,92,0,0,0,91,0,0,0,0,0,1,0,12,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,88,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,18,0,0,0,0,0,0,221,0,205,0,0,0,204,208,169,2193,241,0,0,0,0,0,0,0,0,0,0,0,0,0,4179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,553,6,0,0,734,0,533,0,0,0,502,35,0,0,0,0,0,0,0,0,0,625,0,0,0,0,22,0,0,0,0,104,177,648,0,0,1107,0,0,0,0,0,1109,0,0,100,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,86,1,1,1,0,241,0,0,0,0,25,127,38,0,149,0,0,0,0,0,0,704,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1315,355,4 +150,0,0,29,10,85,187,22,422,30,72,0,0,2,64,0,375,0,20,15,0,6,2,7,0,26,22,0,14,0,8,2,0,9,33,0,95,301,0,0,685,0,0,0,1,0,0,3,0,0,0,0,28,357,0,0,0,0,0,1,0,3,0,11,0,82,0,0,2710,85,1514,0,39,0,0,0,0,0,71,12,0,0,0,0,13,22,378,0,22,33,9,0,10,195,0,1909,100,3,0,0,14,10,1289,0,46,0,0,2902,0,0,0,0,54,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,317,0,232,0,0,0,36,76,300,1620,346,0,0,0,0,1,0,5,0,0,0,0,0,0,2692,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1409,48,0,0,1556,0,2932,0,6,0,562,50,0,0,0,0,0,0,0,0,0,1142,1,0,0,0,30,0,0,0,0,22,279,545,0,0,215,0,0,0,0,0,9911,0,0,131,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,77,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,715,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,4,1606,1657,4 +122,0,0,29,11,89,158,27,280,28,42,0,0,2,62,1,562,0,20,45,0,98,2,6,0,34,22,0,18,0,8,2,0,10,38,0,99,301,160,0,393,0,0,0,1,0,0,3,0,0,0,0,35,349,0,0,0,0,0,1,0,3,0,13,0,50,0,0,2508,89,1783,0,52,0,0,0,0,0,21,15,0,0,0,0,13,22,283,0,27,38,10,0,9,45,0,806,85,3,0,0,14,11,616,0,43,0,0,2375,0,0,0,0,48,18,1,0,31,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,60,10,10,10,0,0,0,290,0,233,0,0,0,44,76,337,653,300,0,0,0,0,1,0,6,0,0,0,0,0,0,2124,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,335,1454,49,0,0,1494,0,2954,0,6,0,501,238,0,0,0,0,0,0,0,0,0,1127,1,0,0,0,151,0,0,0,0,29,283,160,0,0,185,0,0,0,0,0,10418,0,0,166,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,8,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,66,0,0,0,2,119,137,314,0,75,9,0,0,0,0,0,328,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,201,0,2,1635,1620,4 +5,0,0,6,6,37,30,21,106,11,22,0,0,2,16,0,103,0,8,13,0,10,0,6,0,8,0,0,1,0,1,0,0,6,6,0,43,54,0,0,91,0,0,0,1,0,0,1,0,0,0,0,1,133,0,0,0,0,0,1,0,0,0,0,0,20,0,0,814,37,524,0,1,0,0,0,0,0,5,15,0,0,0,0,8,14,108,0,21,6,6,0,3,23,0,322,45,1,0,0,4,6,180,0,13,0,0,806,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,14,10,10,10,0,0,0,82,0,262,0,0,0,0,3,209,214,119,0,0,0,0,1,0,4,0,0,0,0,0,0,548,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,137,39,451,12,0,0,468,0,652,0,1,0,114,4,0,0,0,0,0,0,0,0,0,287,1,0,0,0,29,0,0,0,0,1,134,56,0,0,91,0,0,0,0,0,213,0,0,8,2,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,39,1,1,1,0,0,0,0,0,0,49,49,31,0,2,8,0,0,0,0,0,116,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,17,0,0,0,0,0,0,0,0,0,0,0,11,0,0,651,42,4 +116,0,0,29,11,89,158,27,280,27,42,0,0,2,63,1,561,0,20,46,0,97,2,6,0,41,22,0,17,0,8,2,0,10,38,0,99,301,160,0,393,0,0,0,1,0,0,3,0,0,0,0,42,357,0,0,0,0,0,1,0,3,0,13,0,50,0,0,2587,89,1793,0,58,0,0,0,0,0,25,15,0,0,0,0,13,22,293,0,27,38,10,0,9,45,0,818,85,3,0,0,14,11,624,0,43,0,0,2357,0,0,0,0,45,16,1,0,31,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,8,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,28,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,295,0,237,0,0,0,50,86,342,657,302,0,0,0,0,1,0,6,0,0,0,0,0,0,2196,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,335,1449,49,0,0,1500,0,2941,0,6,0,506,155,0,0,0,0,0,0,0,0,0,1127,1,0,0,0,151,0,0,0,0,38,283,163,0,0,185,0,0,0,0,0,10423,0,0,160,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,9,1,0,0,0,0,3,17,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,52,0,0,0,0,123,137,326,0,81,9,0,0,0,0,0,328,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,35,0,0,0,0,0,0,0,0,117,0,0,246,0,3,1663,1771,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,44,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,4 +21,0,0,0,0,34,24,0,36,2,5,0,2,0,4,0,20,0,6,6,0,0,0,6,0,10,3,0,6,0,2,1,0,0,6,0,34,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,72,0,0,0,0,0,1,0,0,0,0,0,3,0,0,697,34,116,0,9,0,0,0,0,0,13,0,0,0,0,0,11,16,132,0,0,6,0,0,2,25,0,299,15,0,0,0,4,0,171,0,2,0,0,995,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,95,0,47,0,0,0,6,12,193,169,99,0,0,0,0,1,0,3,0,0,0,0,0,0,368,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,132,0,0,0,146,0,249,0,0,0,61,36,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,124,53,0,0,30,0,0,0,0,0,98,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,11,0,0,0,0,1,40,22,0,13,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,35,4 +0,0,0,0,0,1,0,1,18,0,1,0,0,0,1,0,654,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,650,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,9,0,0,0,0,0,0,0,0,0,675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,2,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,8,0,0,1,98,4 +0,0,0,8,2,14,50,2,56,9,6,0,0,0,17,7,123,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,4,0,16,136,0,0,45,0,0,0,1,0,0,7,0,0,0,0,1,117,0,0,0,0,0,1,0,0,0,0,0,16,0,0,3847,14,228,0,3,0,0,0,0,0,25,0,0,0,0,0,1,10,707,0,2,4,2,0,2,0,0,89,0,12,0,0,6,2,99,0,13,0,0,273,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,531,0,269,0,0,0,2,7,36,24,723,0,0,0,0,1,0,0,0,0,0,0,0,0,2516,0,185,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,221,37,393,10,0,0,459,0,908,0,2,0,161,10,0,0,0,0,0,0,0,0,0,270,1,0,0,0,2,0,0,0,0,1,132,50,0,0,0,0,0,0,0,0,632,0,0,887,0,0,1,0,0,0,0,0,15,0,0,0,2,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,12,1,1,1,0,2,0,0,0,0,17,20,172,0,6,0,0,0,0,0,0,90,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,2,0,2,1110,56,4 +1,0,0,5,0,40,18,0,54,4,11,0,0,6,4,1,796,0,6,2,0,0,0,8,0,11,0,0,17,0,5,0,0,0,5,1347,40,6,0,0,46,0,0,0,1,0,0,2,0,0,0,0,5,306,0,0,0,0,0,1,0,0,0,0,0,2,0,0,31926,40,928,0,18,0,0,0,0,0,37,0,0,0,0,0,9,63,4025,0,0,5,0,0,0,0,0,257,20,4,0,0,2,0,775,0,0,27,0,3143,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,2014,0,95,0,0,0,13,9,540,1851,1971,0,0,0,0,1,0,4,0,0,0,0,0,0,2556,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,28,230,5,0,0,247,0,312,0,0,0,93,22,0,0,0,0,0,0,0,0,0,896,1,0,0,0,10,0,0,0,0,2,123,31,0,0,51,0,0,0,0,0,2994,1,0,2814,19,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,38,38,0,0,3,0,0,0,0,0,19,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,36,0,0,0,0,31,45,233,0,19,14,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1175,195,4 +121,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,556,0,20,46,0,97,2,6,0,33,22,0,17,0,8,2,0,10,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,347,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2573,89,1766,0,49,0,0,0,0,0,21,15,0,0,0,0,13,22,296,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,583,0,46,0,0,2567,0,0,0,0,45,16,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,22,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,292,0,234,0,0,0,42,74,334,590,304,0,0,0,0,1,0,6,0,0,0,0,0,0,2181,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1459,49,0,0,1494,0,2944,0,6,0,502,339,0,0,0,0,0,0,0,0,0,1111,1,0,0,0,151,0,0,0,0,30,282,149,0,0,155,0,0,0,0,0,10415,0,0,168,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,9,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,63,0,0,0,0,117,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,247,0,3,1665,1628,4 +0,0,0,9,0,26,5,0,28,0,4,0,0,2,4,0,20,0,6,3,0,0,0,5,0,8,0,0,3,0,2,0,0,0,2,0,26,6,0,0,27,0,0,0,1,0,0,4,0,0,0,0,2,168,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1255,26,77,0,3,0,0,0,0,0,18,0,0,0,0,1,7,19,151,0,0,2,0,0,0,0,0,79,5,7,0,0,2,0,45,0,0,0,0,512,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,132,0,59,0,0,0,2,4,179,31,124,0,0,0,0,1,0,3,0,0,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,10,166,13,0,0,214,0,311,0,0,0,104,22,0,0,0,0,0,0,0,0,0,69,1,0,0,0,8,0,0,0,0,1,112,77,0,0,0,0,0,0,0,0,83,0,0,116,3,0,1,1,0,0,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,3,0,0,0,0,1,28,278,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,185,80,4 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,1,0,0,94,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,30,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,30,0,0,0,0,3,22,6,47,0,0,0,0,1,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,34,2,0,0,56,0,57,0,0,0,26,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,25,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,60,0,1,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,1,4 +0,0,0,0,1,33,7,1,12,0,2,0,2,0,3,0,22,0,6,5,0,1,0,6,0,8,0,0,2,0,1,0,0,1,5,0,33,12,0,0,43,0,1,0,1,0,0,1,0,0,0,0,1,57,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1861,33,101,0,1,0,0,0,0,0,7,3,0,0,0,0,7,15,611,0,1,5,1,0,1,0,0,76,0,1,0,0,4,1,29,0,0,0,0,674,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,87,0,57,0,0,0,0,3,186,655,106,0,0,0,0,1,0,3,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,23,20,145,1,0,0,143,0,254,0,0,0,38,4,0,0,0,0,0,0,0,0,0,54,1,0,0,0,12,0,0,0,0,0,120,9,0,0,0,0,0,0,0,0,269,0,0,732,3,0,1,5,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,3,361,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,0,0,0,0,0,1,38,21,0,2,9,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,325,109,4 +118,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,556,0,20,44,0,99,2,6,0,33,22,0,17,0,8,2,0,10,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,349,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2537,89,1765,0,49,0,0,0,0,0,22,15,0,0,0,0,13,22,281,0,27,38,10,0,8,37,0,729,70,3,0,0,14,11,583,0,46,0,0,2296,0,0,0,0,46,16,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,290,0,229,0,0,0,42,74,333,591,301,0,0,0,0,1,0,6,0,0,0,0,0,0,2219,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1470,49,0,0,1497,0,2934,0,6,0,503,107,0,0,0,0,0,0,0,0,0,1111,1,0,0,0,151,0,0,0,0,30,283,149,0,0,155,0,0,0,0,0,10415,0,0,176,3,0,1,6,0,0,0,0,6,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,8,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,63,0,0,0,0,115,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,186,0,2,1661,1624,4 +5,0,0,0,0,12,3,0,5,0,1,0,1,0,2,0,12,0,6,2,0,0,0,0,0,2,0,0,2,0,1,0,0,0,4,0,12,12,0,0,25,0,0,0,0,0,0,0,0,0,0,0,2,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,58,12,26,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,4,0,0,1,0,0,13,0,0,0,0,4,0,14,0,0,0,0,94,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,20,0,19,0,0,0,2,5,27,13,23,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,21,62,0,0,0,61,0,117,0,0,0,27,2,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,3,104,4,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,2,0,0,0,0,1,16,4,0,5,0,0,0,0,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,12,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,405,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,124,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,44,3,0,0,47,0,144,0,0,0,5,4,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +2,0,0,0,0,41,28,0,110,6,24,2,6,0,12,0,28,0,7,5,0,0,0,7,0,11,0,0,6,0,1,0,0,0,12,0,41,77,0,0,263,0,0,0,1,0,0,0,0,0,0,0,4,165,0,0,0,0,0,1,0,0,0,1,0,9,0,0,1384,41,202,0,8,0,0,0,0,0,4,0,0,0,0,0,11,16,175,0,0,12,0,0,5,94,0,865,95,0,0,0,12,0,504,0,7,0,0,1298,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,9,10,10,10,0,0,0,120,0,70,0,0,0,3,6,212,451,174,0,0,0,0,1,0,4,0,0,2,0,0,0,488,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,41,67,320,0,0,0,171,0,375,0,0,0,68,69,0,0,0,0,0,0,0,0,0,217,0,0,0,0,12,0,0,0,0,4,124,198,0,0,219,0,1,0,0,0,207,0,0,0,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,4,0,0,0,0,1,53,36,0,9,9,0,0,0,0,0,250,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,197,4 +77,0,0,1,1,52,25,4,115,5,22,0,4,0,9,0,30,0,7,5,0,1,1,6,0,22,0,0,5,0,3,0,0,1,17,0,53,15,0,0,476,0,0,0,1,0,0,0,0,0,0,0,17,108,0,0,0,0,0,1,0,1,0,0,0,24,0,0,1298,52,339,0,20,0,0,0,0,0,16,3,0,0,0,0,8,13,259,0,4,17,1,0,4,88,0,784,15,0,0,0,8,1,506,0,6,0,0,1887,0,0,0,0,32,23,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,205,0,108,0,0,0,18,39,217,767,203,0,0,0,0,1,0,4,0,0,0,0,0,0,762,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,90,301,3,0,0,239,0,322,0,0,0,102,19,0,0,0,0,0,0,0,0,0,212,0,0,0,0,13,0,0,0,0,16,137,230,0,0,30,0,0,0,0,0,711,0,0,21,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,36,0,0,0,0,9,70,41,0,21,9,0,0,0,0,0,328,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,257,1136,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,748,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,744,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,2,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,1,108,4 +0,0,0,5,0,35,24,0,47,3,23,0,0,7,4,0,729,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12418,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,632,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39557,35,891,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6363,0,0,1,0,0,0,0,0,358,25,2,0,0,2,0,817,0,0,85,0,4348,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1468,0,32,0,0,0,12,15,485,2051,1447,0,0,0,0,1,0,3,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,285,5,0,0,312,0,294,0,0,0,155,13,0,0,0,0,0,0,0,0,0,840,1,0,0,0,9,0,0,0,0,1,163,7,0,0,129,0,0,0,0,0,4431,1,0,1023,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2409,26,4 +149,0,0,29,10,84,187,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,94,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,366,0,0,0,0,0,1,0,3,0,12,0,82,0,0,2886,84,1515,0,39,0,0,0,0,0,72,12,0,0,0,0,13,22,410,0,22,33,9,0,10,193,0,1895,100,3,0,0,14,10,1279,0,46,0,0,2484,0,0,0,0,55,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,9,0,0,0,0,0,1,0,17,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,328,0,238,0,0,0,36,76,296,1616,358,0,0,0,0,1,0,5,0,0,0,0,0,0,2729,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1440,48,0,0,1555,0,2894,0,6,0,565,52,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,279,538,0,0,215,0,0,0,0,0,9936,0,0,180,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,77,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1629,1652,4 +0,0,0,0,0,1,0,1,12,0,1,0,0,0,1,0,226,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,222,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,2,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,3,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,1,45,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,2,0,0,410,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,26,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,145,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,158,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,27,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,349,14,4 +0,0,0,6,0,9,2,0,23,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,1,0,0,5,0,0,0,0,0,105,0,0,0,0,0,1,0,0,0,0,0,1,0,0,553,9,65,0,1,0,0,0,0,0,15,0,0,0,0,2,1,10,93,0,0,1,0,0,0,0,0,12,0,8,0,0,2,0,22,0,0,0,0,167,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,96,0,71,0,0,0,0,3,24,9,111,0,0,0,0,1,0,0,0,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,3,104,8,0,0,159,0,270,0,0,0,92,4,0,0,0,0,0,0,0,0,0,51,1,0,0,0,2,0,0,0,0,0,97,65,0,0,0,0,1,0,0,0,48,0,0,84,0,0,1,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,235,0,1,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,177,43,4 +147,0,0,29,10,85,187,22,420,27,72,0,0,2,61,0,375,0,20,16,0,6,2,6,0,35,21,0,14,0,9,3,0,9,33,0,95,301,0,0,675,0,0,0,1,0,0,3,0,0,0,0,38,363,0,0,0,0,0,1,0,3,0,12,0,79,0,0,2895,85,1514,0,49,0,0,0,0,0,71,12,0,0,0,0,13,22,398,0,22,33,9,0,10,193,0,1919,100,3,0,0,14,10,1281,0,43,0,0,2365,0,0,0,0,50,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,34,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,327,0,235,0,0,0,48,87,300,1631,356,0,0,0,0,1,0,5,0,0,0,0,0,0,2634,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,143,1443,48,0,0,1557,0,2896,0,6,0,563,47,0,0,0,0,0,0,0,0,0,1137,1,0,0,0,30,0,0,0,0,32,280,538,0,0,215,0,0,0,0,0,9936,0,0,182,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,62,0,0,0,0,81,128,309,0,73,9,0,0,0,0,0,708,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,37,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1605,1798,4 +1,0,0,3,0,29,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,119,0,0,0,0,0,1,0,0,0,0,0,2,0,0,985,29,57,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,156,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,592,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,10,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,124,0,51,0,0,0,1,4,186,14,122,0,0,0,0,1,0,3,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,2,1,8,0,0,0,0,1,0,32,10,131,3,0,0,189,0,331,0,0,0,81,9,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,111,64,0,0,0,0,0,0,0,0,83,0,0,41,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,226,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,157,54,4 +53,0,0,8,1,53,42,1,75,7,13,0,0,2,13,0,73,0,8,15,0,0,0,5,0,22,0,0,11,0,1,0,0,1,16,0,54,89,0,0,141,0,0,0,1,0,0,1,0,0,0,0,15,122,0,0,0,0,0,1,0,0,0,0,0,22,0,0,922,53,200,0,24,0,0,0,0,0,9,0,0,0,0,0,19,26,145,0,1,16,1,0,2,39,0,467,20,1,0,0,4,1,279,0,10,0,0,939,0,0,0,0,18,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,131,0,69,0,0,0,14,17,226,334,134,0,0,0,0,1,0,3,0,0,0,0,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,142,29,374,9,0,0,374,0,541,0,1,0,124,37,0,0,0,0,0,0,0,0,0,226,1,0,0,0,20,0,0,0,0,17,151,109,0,0,29,0,0,0,0,0,254,0,0,20,3,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,54,1,1,1,0,9,0,0,0,0,9,70,69,0,25,9,0,0,0,0,0,158,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,2,35108,53,4 +1,0,0,3,0,29,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,118,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1072,29,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,179,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,561,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,139,0,51,0,0,0,1,4,186,14,137,0,0,0,0,1,0,3,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0,2,1,10,0,0,0,0,1,0,32,10,140,3,0,0,163,0,325,0,0,0,54,8,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,111,37,0,0,0,0,0,0,0,0,95,0,0,94,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,138,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,180,58,4 +16,0,0,4,0,23,2,0,20,0,3,0,0,0,3,0,61,0,6,2,0,0,0,11,0,0,24,0,8,0,9,0,0,0,11,0,23,18,0,0,13,0,0,0,1,0,0,22,0,0,0,0,8,76,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2050,23,242,0,17,0,0,0,0,0,45,0,0,0,0,23,12,57,566,0,0,11,0,0,0,0,0,89,0,20,0,0,2,0,170,0,1,0,0,485,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,472,0,338,0,0,0,16,51,73,1228,596,0,0,0,0,1,0,0,0,0,0,0,0,0,2654,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,10,4,173,4,0,0,142,0,208,0,0,0,76,596,0,0,0,0,0,0,0,0,0,95,1,0,0,0,13,0,0,0,0,9,106,8,0,0,0,0,8,0,16,8,890,0,0,184,0,0,1,0,0,0,0,0,22,0,28,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,24,0,0,0,0,1,34,76,0,41,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1079,39,4 +33,0,0,3,1,47,40,1,89,11,11,0,4,0,20,0,77,0,8,4,0,0,0,5,0,25,0,0,12,0,2,0,0,1,15,0,48,65601,0,0,488,0,0,0,1,0,0,4,0,0,0,0,19,144,0,0,0,0,0,1,0,0,0,0,0,17,0,0,1730,47,314,0,29,0,0,0,0,0,52,0,0,0,0,0,8,21,403,0,1,15,1,0,5,33,0,428,15,7,0,0,10,1,275,0,11,0,0,11433,0,0,0,0,19,19,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,47,10,10,10,0,0,0,309,0,190,0,0,0,19,32,209,402,327,0,0,0,0,1,0,3,0,0,0,0,0,0,1192,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,141,100,376,4,0,0,414,0,614,0,1,0,166,10,0,0,0,0,0,0,0,0,0,249,1,0,0,0,9,0,0,0,0,19,149,104,0,0,30,0,0,0,0,0,66377,0,0,87,3,0,1,4,0,0,0,0,9,0,0,0,3,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,49,1,1,1,0,12,0,0,0,0,9,63,125,0,30,9,0,0,0,0,0,222,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,13,0,0,0,0,0,0,0,0,0,0,0,1,0,5,643,636,4 +81,0,0,3,1,52,25,4,117,6,24,0,4,0,12,0,38,0,7,5,0,1,1,6,0,30,9,0,4,0,4,0,0,1,17,0,53,15,0,0,480,0,0,0,1,0,0,0,0,0,0,0,25,118,0,0,0,0,0,1,0,1,0,0,0,26,0,0,1342,52,369,0,28,0,0,0,0,0,16,3,0,0,0,0,8,13,261,0,4,17,1,0,4,88,0,802,15,0,0,0,8,1,552,0,7,0,0,1321,0,0,0,0,37,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,205,0,109,0,0,0,27,58,217,786,202,0,0,0,0,1,0,4,0,0,0,0,0,0,790,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,93,277,5,0,0,239,0,232,0,0,0,102,23,0,0,0,0,0,0,0,0,0,227,0,0,0,0,13,0,0,0,0,24,137,230,0,0,30,0,0,0,0,0,743,0,0,18,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,33,0,0,0,0,9,70,41,0,38,9,0,0,0,0,0,325,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,266,1486,4 +7,0,0,0,0,36,9,0,17,1,2,0,1,0,3,0,70,0,7,4,0,0,0,6,0,8,0,0,2,0,1,0,0,0,8,0,36,6,0,0,150,0,2,0,1,0,0,2,0,0,0,0,1,80,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1818,36,107,0,1,0,0,0,0,0,11,0,0,0,0,0,9,18,675,0,0,8,0,0,0,8,0,136,0,4,0,0,2,0,168,0,1,0,0,1428,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,153,0,64,0,0,0,0,3,246,115,169,0,0,0,0,1,0,3,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,17,11,209,0,0,0,155,0,326,0,0,0,52,21,0,0,0,0,0,0,0,0,0,109,1,0,0,0,10,0,0,0,0,0,118,34,0,0,0,0,0,0,0,0,6504,0,0,735,3,0,1,3,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,0,0,0,0,0,1,44,40,0,2,9,0,0,0,0,0,63,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,341,323,4 +82,0,0,1,1,53,25,4,115,5,22,0,4,0,9,0,30,0,7,6,0,1,1,5,0,26,0,0,5,0,4,0,0,1,17,0,54,15,0,0,476,0,0,0,1,0,0,0,0,0,0,0,22,136,0,0,0,0,0,1,0,1,0,0,0,24,0,0,1293,53,342,0,25,0,0,0,0,0,16,3,0,0,0,0,8,13,272,0,4,17,1,0,4,88,0,796,15,0,0,0,8,1,510,0,6,0,0,6486,0,0,0,0,33,22,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,29,10,10,10,0,0,0,208,0,113,0,0,0,24,47,221,779,206,0,0,0,0,1,0,4,0,0,0,0,0,0,762,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,90,283,3,0,0,242,0,314,0,0,0,102,17,0,0,0,0,0,0,0,0,0,212,0,0,0,0,13,0,0,0,0,21,138,230,0,0,30,0,0,0,0,0,723,0,0,21,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,35,0,0,0,0,9,71,41,0,26,9,0,0,0,0,0,326,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,265,1334,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,0,0,0,80,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,48,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,1,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,36,4 +1,0,0,5,0,31,6,0,20,0,2,0,0,2,3,0,18,0,6,3,0,0,0,5,0,9,0,0,4,0,2,0,0,0,5,0,31,6,0,0,24,0,0,0,1,0,0,2,0,0,0,0,3,143,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1625,31,61,0,5,0,0,0,0,0,14,0,0,0,0,0,7,15,183,0,0,5,0,0,0,0,0,78,5,4,0,0,2,0,36,0,0,0,0,590,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,142,0,52,0,0,0,3,4,185,17,140,0,0,0,0,1,0,3,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,1,0,32,10,167,6,0,0,173,0,375,0,0,0,67,12,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,113,41,0,0,0,0,0,0,0,0,100,0,0,104,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,5,0,0,0,0,1,36,197,0,6,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,179,59,4 +0,0,0,5,0,36,25,0,47,3,24,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12390,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,714,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40771,36,914,0,24,0,0,0,0,0,46,0,0,0,0,0,8,94,6846,0,0,1,0,0,0,0,0,366,25,1,0,0,2,0,836,0,0,88,0,4962,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1579,0,32,0,0,0,13,16,498,2090,1557,0,0,0,0,1,0,3,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,288,5,0,0,309,0,298,0,0,0,147,13,0,0,0,0,0,0,0,0,0,861,1,0,0,0,9,0,0,0,0,1,165,6,0,0,135,0,0,0,0,0,4694,1,0,996,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,208,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2472,23,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,195,55,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,84,0,58,0,0,0,50,3,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,4,4 +0,0,0,2,0,8,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,6,0,2,0,1,0,0,3,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,1,0,0,575,8,32,0,1,0,0,0,0,0,8,0,0,0,0,0,1,4,156,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,6,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,17,0,0,0,0,3,22,4,50,0,0,0,0,1,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,58,2,0,0,101,0,105,0,0,0,47,2,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,90,40,0,0,0,0,0,0,0,0,36,0,0,354,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,182,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,5,4 +25,0,0,3,0,41,24,0,103,5,21,0,3,0,9,0,20,0,7,3,0,0,0,6,0,21,0,0,5,0,1,0,0,0,11,0,41,13,0,0,437,0,0,0,1,0,0,0,0,0,0,0,14,99,0,0,0,0,0,1,0,0,0,0,0,24,0,0,1087,41,213,0,17,0,0,0,0,0,15,0,0,0,0,0,8,13,217,0,0,11,0,0,3,88,0,770,15,0,0,0,6,0,498,0,6,0,0,834,0,0,0,0,17,14,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,24,10,10,10,0,0,0,154,0,91,0,0,0,13,23,201,699,165,0,0,0,0,1,0,3,0,0,0,0,0,0,556,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,69,179,3,0,0,165,0,211,0,0,0,71,12,0,0,0,0,0,0,0,0,0,187,0,0,0,0,9,0,0,0,0,13,125,227,0,0,30,0,0,0,0,0,697,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,3,0,0,0,0,1,52,23,0,18,9,0,0,0,0,0,309,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,652,4 +0,0,0,4,0,28,6,0,8,0,2,0,0,2,7,0,13,0,6,3,0,0,0,5,0,8,0,0,3,0,2,0,0,0,1,0,28,7,0,0,22,0,0,0,1,0,0,0,0,0,0,0,2,61,0,0,0,0,0,1,0,0,0,0,0,3,0,0,898,28,34,0,3,0,0,0,0,0,3,0,0,0,0,0,7,12,115,0,0,1,0,0,0,0,0,77,5,0,0,0,2,0,35,0,0,0,0,499,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,69,0,33,0,0,0,2,4,181,97,73,0,0,0,0,1,0,3,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,32,10,90,4,0,0,88,0,217,0,0,0,9,5,0,0,0,0,0,0,0,0,0,44,0,0,0,0,8,0,0,0,0,2,110,4,0,0,0,0,0,0,0,0,76,0,0,1,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,3,0,0,0,0,1,29,17,0,4,9,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,30,4 +26,0,0,6,0,45,36,0,55,30,35,0,0,7,8,0,1115,0,7,1,0,0,0,8,0,10,12,0,22,0,5,0,0,0,3,6427,45,6,0,0,54,0,6,0,1,0,0,7,0,0,0,0,5,363,0,0,0,0,0,1,0,0,0,0,0,7,0,0,32847,45,1423,0,24,0,0,0,0,0,102,0,0,0,0,0,8,122,6830,0,0,3,0,0,0,0,0,408,25,11,0,0,2,0,1292,0,4,70,0,5081,0,0,0,0,10,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,12,12,12,0,0,0,2216,0,133,0,0,0,18,29,676,1447,2182,0,0,0,0,1,0,8,0,0,0,0,0,0,794,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,110,98,330,6,0,0,392,0,301,0,0,0,211,19,0,0,0,0,0,0,0,0,0,1263,1,0,0,0,9,0,0,0,0,2,147,61,0,0,171,0,0,0,0,0,5544,1,0,1073,36,0,1,1,1,0,0,0,17,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,36,365,0,0,0,4,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,53,0,0,0,0,1,48,224,0,37,12,0,1,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,34,0,0,0,0,0,0,0,0,0,0,0,0,0,7,2299,119,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,42,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,4 +20,0,0,0,0,23,4,0,9,3,1,0,2,0,5,0,20,0,6,4,0,0,0,2,0,2,3,0,3,0,2,1,0,0,11,0,23,12,0,0,66,0,0,0,0,0,0,0,0,0,0,0,4,31,0,0,0,0,0,1,0,0,0,0,0,2,0,0,191,23,46,0,8,0,0,0,0,0,0,0,0,0,0,0,5,5,24,0,0,11,0,0,2,0,0,32,0,0,0,0,6,0,46,0,2,0,0,3858,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,48,0,72,0,0,0,6,12,44,49,59,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,110,2,0,0,93,0,220,0,0,0,45,11,0,0,0,0,0,0,0,0,0,47,0,0,0,0,6,0,0,0,0,5,114,2,0,0,0,0,0,0,0,0,50,0,0,3,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,10,0,0,0,0,1,34,11,0,11,0,0,0,0,0,0,77,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,165,4 +35,1,0,10,1,39,7,4,100,30,19,0,12,0,48,0,48,0,6,7,0,1,1,4,3,20,9,0,16,0,4,0,0,1,18,0,40,46,12,0,477,0,0,0,1,0,0,2,0,0,0,0,25,116,0,0,0,0,0,1,0,0,0,0,0,31,0,0,1206,39,354,0,36,0,0,0,0,0,11,3,0,0,0,0,6,10,77,0,4,18,1,0,0,0,0,158,0,3,0,0,2,1,261,0,37,0,0,1331,0,0,0,0,56,15,0,12,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,12,12,12,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,108,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1,0,124,0,0,0,0,0,0,153,0,100,0,0,0,33,73,72,189,124,0,0,0,0,1,0,79,0,0,0,0,0,0,1325,0,0,0,0,0,0,0,0,0,24,0,0,2,0,0,0,0,0,0,1,0,8,58,310,12,0,0,269,0,554,0,0,0,146,59,0,0,0,0,0,0,0,0,0,240,1,0,0,0,16,0,0,0,0,26,149,46,0,0,0,0,42,0,0,0,544,0,0,70,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,70,0,0,0,6,9,58,189,0,49,0,0,0,0,0,0,797,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,30,0,0,0,0,0,0,1,0,0,0,0,2,0,2,251,156,4 +16,0,0,4,0,23,2,0,20,0,3,0,0,0,3,0,61,0,6,1,0,0,0,12,0,0,24,0,8,0,9,0,0,0,11,0,23,18,0,0,13,0,0,0,1,0,0,21,0,0,0,0,8,78,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2070,23,242,0,17,0,0,0,0,0,45,0,0,0,0,22,12,57,550,0,0,11,0,0,0,0,0,89,0,15,0,0,2,0,170,0,1,0,0,503,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,468,0,338,0,0,0,16,51,73,1210,590,0,0,0,0,1,0,0,0,0,0,0,0,0,2539,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,10,4,178,4,0,0,143,0,215,0,0,0,77,584,0,0,0,0,0,0,0,0,0,95,1,0,0,0,13,0,0,0,0,9,107,8,0,0,0,0,9,0,16,8,890,0,0,184,0,0,1,0,0,0,0,0,22,0,25,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,24,0,0,0,0,1,34,76,0,41,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,37,4 +42,0,0,1,1,54,8,4,30,2,6,0,3,0,5,0,36,0,7,10,0,1,1,6,0,15,3,0,6,0,3,1,0,1,21,0,55,12,0,0,138,0,0,0,1,0,0,0,0,0,0,0,11,94,0,0,0,0,0,1,0,1,0,0,0,3,0,0,895,54,213,0,15,0,0,0,0,0,6,3,0,0,0,0,13,18,121,0,4,21,1,0,3,8,0,191,15,0,0,0,6,1,117,0,2,0,0,1420,0,0,0,0,9,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,116,0,77,0,0,0,13,19,221,156,118,0,0,0,0,1,0,3,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,52,284,2,0,0,219,0,371,0,0,0,91,38,0,0,0,0,0,0,0,0,0,95,0,0,0,0,18,0,0,0,0,10,145,19,0,0,30,0,0,0,0,0,115,0,0,4,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,13,0,0,0,0,9,76,37,0,19,9,0,0,0,0,0,128,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,131,719,4 +0,0,0,8,0,33,6,0,43,1,5,0,0,6,4,0,555,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,1,898,33,6,0,0,48,0,2,0,1,0,0,2,0,0,0,0,1,156,0,0,0,0,0,1,0,0,0,0,0,4,0,0,18472,33,622,0,3,0,0,0,0,0,14,0,0,0,0,0,8,23,4419,0,0,1,0,0,0,0,0,189,20,3,0,0,2,0,603,0,0,1,0,3426,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,578,0,39,0,0,0,1,4,253,1157,566,0,0,0,0,1,0,3,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,19,196,8,0,0,242,0,322,0,0,0,94,5,0,0,0,0,0,0,0,0,0,625,1,0,0,0,9,0,0,0,0,0,116,54,0,0,6,0,0,0,0,0,3407,1,0,774,6,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,5,0,0,0,0,1,34,248,0,4,12,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1999,323,4 +120,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,562,0,20,46,0,97,2,6,0,33,22,0,17,0,8,2,0,10,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,357,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2572,89,1772,0,50,0,0,0,0,0,22,15,0,0,0,0,13,22,298,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,585,0,46,0,0,2161,0,0,0,0,47,16,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,295,0,238,0,0,0,42,74,340,592,304,0,0,0,0,1,0,6,0,0,0,0,0,0,2145,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1455,49,0,0,1495,0,2951,0,6,0,502,95,0,0,0,0,0,0,0,0,0,1117,1,0,0,0,151,0,0,0,0,30,282,149,0,0,155,0,0,0,0,0,10422,0,0,171,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,7,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,63,0,0,0,0,121,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,246,0,3,1657,1617,4 +104,0,0,30,11,92,157,27,263,28,38,0,0,2,65,1,569,0,20,45,0,98,2,6,0,39,22,0,22,0,8,2,0,10,40,0,102,301,160,0,404,0,0,0,1,0,0,3,0,0,0,0,38,348,0,0,0,0,0,1,0,3,0,12,0,50,0,0,2537,92,1812,0,61,0,0,0,0,0,20,15,0,0,0,0,13,22,266,0,27,40,10,0,8,37,0,741,70,3,0,0,14,11,598,0,44,0,0,2490,0,0,0,0,39,12,1,0,29,0,0,1,0,0,0,23,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,23,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,24,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,282,0,236,0,0,0,46,75,343,575,291,0,0,0,0,1,0,6,0,0,0,0,0,0,2216,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,681,334,1473,50,0,0,1497,0,2888,0,6,0,502,213,0,0,0,0,0,0,0,0,0,1115,1,0,0,0,151,0,0,0,0,35,281,147,0,0,155,0,0,0,0,0,10420,0,0,131,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,8,1,0,0,0,0,3,14,1,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,55,0,0,0,0,121,142,320,0,84,9,0,0,0,0,0,327,10,0,0,0,0,0,0,1,0,0,0,0,11,0,5,34,0,0,0,0,0,0,0,0,117,0,0,188,0,2,1762,1680,4 +120,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,556,0,20,44,0,99,2,6,0,33,22,0,17,0,8,2,0,10,38,0,99,301,160,0,385,0,0,0,1,0,0,3,0,0,0,0,34,340,0,0,0,0,0,1,0,2,0,12,0,52,0,0,2569,89,1766,0,49,0,0,0,0,0,22,15,0,0,0,0,13,22,291,0,27,38,10,0,8,37,0,729,70,3,0,0,14,11,583,0,46,0,0,2048,0,0,0,0,46,16,1,0,33,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,292,0,229,0,0,0,42,74,333,589,303,0,0,0,0,1,0,6,0,0,0,0,0,0,2156,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1457,49,0,0,1497,0,2946,0,6,0,503,263,0,0,0,0,0,0,0,0,0,1111,1,0,0,0,151,0,0,0,0,30,283,149,0,0,155,0,0,0,0,0,10422,0,0,175,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,7,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,63,0,0,0,0,115,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,192,0,3,1670,1616,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,70,0,46,0,0,0,36,5,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,4,4 +130,0,0,22,15,128,204,33,409,43,68,1,1,2,89,1,1420,0,23,20,0,8,4,8,2,50,26,0,38,0,101,2,0,13,63,0,143,370,0,0,580,0,0,0,1,0,0,3,0,0,0,0,145,433,0,0,0,0,0,1,0,4,0,13,0,83,0,0,7331,128,2879,0,183,0,0,0,0,0,34,21,0,0,0,0,17,27,1518,0,33,63,13,0,12,114,0,1864,140,3,0,0,18,15,1909,0,68,1,0,3713,0,0,0,0,140,18,2,0,54,0,0,1,0,0,0,26,0,0,0,0,0,0,0,6,0,0,0,9,0,0,0,0,0,2,0,25,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,29,4,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,18,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,75,12,12,12,0,0,2,1052,2,339,0,0,2,247,273,433,1650,1068,0,0,0,0,1,0,6,0,0,0,0,0,0,2727,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,771,201,1764,43,0,0,1858,0,3224,0,7,0,646,146,0,0,0,0,0,0,0,0,0,2218,1,0,0,0,42,0,0,0,0,136,342,293,0,0,308,0,0,0,0,0,12029,0,0,402,3,0,1,10,0,0,0,0,6,0,0,0,1,0,0,0,0,0,43,0,0,1,0,0,0,0,0,0,0,0,72,72,0,0,12,1,0,0,0,0,3,114,1,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,138,1,1,1,0,268,0,0,0,0,260,206,227,1,208,9,0,0,0,0,0,556,13,0,0,0,0,0,0,0,0,0,0,0,16,0,1,53,0,0,0,0,0,0,0,0,10,0,0,30,0,3,1454,1693,4 +12,0,0,8,2,64,65,2,117,8,16,0,0,2,21,0,953,0,11,4,0,0,0,6,0,14,3,0,19,0,1,0,0,2,22,945,66,150,0,0,141,0,0,0,1,0,0,8,0,0,0,0,5,319,0,0,0,0,0,1,0,0,0,0,0,22,0,0,19041,64,1176,0,21,0,0,0,0,0,43,0,0,0,0,0,9,26,3327,0,2,22,2,0,4,33,0,445,35,17,0,0,6,2,1147,0,14,0,0,2205,0,0,0,0,9,4,5,0,0,0,0,1,0,0,0,9,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,5,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,2,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,42,12,12,12,0,0,0,2063,0,150,0,0,0,5,10,300,688,2037,0,0,0,0,1,0,8,0,0,0,0,0,0,1514,0,0,0,0,0,0,0,0,0,0,0,0,8,1,2,0,0,0,0,1,0,249,51,576,10,0,0,805,0,1507,0,2,0,398,52,0,0,0,0,0,0,0,0,0,1185,1,0,0,0,10,0,0,0,0,4,182,253,0,0,61,0,8,0,3,3,3065,1,0,915,7,0,1,1,1,0,0,0,22,0,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,69,1,1,1,0,19,0,0,0,0,17,88,524,0,25,12,0,0,0,0,0,183,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,23,0,0,0,0,0,0,0,0,0,0,0,2,0,3,1391,118,4 +16,0,0,4,0,23,2,0,20,0,3,0,0,0,3,0,61,0,6,2,0,0,0,11,0,0,24,0,8,0,9,0,0,0,11,0,23,18,0,0,13,0,0,0,1,0,0,22,0,0,0,0,8,76,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1971,23,240,0,17,0,0,0,0,0,45,0,0,0,0,22,12,56,535,0,0,11,0,0,0,0,0,89,0,21,0,0,2,0,171,0,1,0,0,553,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,8,544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,457,0,329,0,0,0,16,51,73,1178,581,0,0,0,0,1,0,0,0,0,0,0,0,0,2514,0,6,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,10,4,169,4,0,0,142,0,195,0,0,0,76,571,0,0,0,0,0,0,0,0,0,95,1,0,0,0,13,0,0,0,0,9,106,9,0,0,0,0,8,0,16,8,878,0,0,184,0,0,1,0,0,0,0,0,22,0,21,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,24,0,0,0,0,1,34,76,0,41,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1003,32,4 +1,0,0,3,0,29,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,109,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1254,29,57,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,192,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,1271,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,14,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,144,0,51,0,0,0,1,4,186,14,142,0,0,0,0,1,0,3,0,0,0,0,0,0,335,0,0,0,0,0,0,0,0,0,0,0,0,2,1,12,0,0,0,0,1,0,32,10,139,3,0,0,167,0,316,0,0,0,59,6,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,111,42,0,0,0,0,0,0,0,0,110,0,0,129,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,224,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,188,51,4 +0,0,0,0,0,1,0,1,20,0,1,0,0,0,1,0,734,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,730,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,9,0,0,1,107,4 +24,0,2,0,1,20,7,0,519,1,3,0,3,0,3,0,3408,0,6,3,0,1,0,1,0,0,0,0,0,0,1,0,0,0,2,26,20,18,0,0,103,0,0,0,1,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,0,0,0,402,20,3973,0,1,0,0,0,0,0,16,0,0,0,0,0,1,1,117,0,0,2,0,0,3,0,0,11,0,0,0,0,8,1,3418,0,0,0,0,162,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0,0,0,99,0,69,0,0,0,0,3,26,6,116,0,0,0,0,1,0,0,0,0,0,6805,3,1,399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,8540,109,1,0,0,116,0,337,0,0,0,36,511,0,0,0,0,0,0,0,0,0,3949,0,0,0,0,5,0,0,0,0,0,103,5,0,2,0,0,0,0,0,0,7459,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,3,22,4,0,1,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,193,307,4 +0,0,0,5,0,36,25,0,48,3,24,0,0,7,4,0,784,0,6,1,0,0,0,8,0,11,0,0,25,0,1,0,0,0,1,12487,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,676,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39550,36,951,0,24,0,0,0,0,0,46,0,0,0,0,0,8,94,6544,0,0,1,0,0,0,0,0,365,25,1,0,0,2,0,872,0,0,86,0,4437,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1415,0,32,0,0,0,13,16,497,2070,1393,0,0,0,0,1,0,3,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,274,5,0,0,311,0,283,0,0,0,152,14,0,0,0,0,0,0,0,0,0,898,1,0,0,0,9,0,0,0,0,1,163,6,0,0,134,0,0,0,0,0,4689,1,0,978,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,208,0,25,12,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2464,22,4 +338,0,0,7,14,171,205,38,483,68,78,0,5,0,117,1,968,0,17,20,0,10,6,9,2,63,48,0,20,0,14,3,0,12,93,0,185,247,6429,0,997,0,0,0,1,0,0,5,1,0,0,0,71,446,0,0,0,0,0,1,0,3,0,16,0,101,0,0,37822,171,2898,0,88,0,0,0,0,0,138,27,0,0,0,0,14,25,7671,0,38,93,12,0,11,219,0,2160,135,11,0,0,18,14,2398,0,75,1,0,5940,0,0,0,0,107,83,2,0,31,0,0,1,0,0,0,21,0,0,0,0,0,0,0,15,0,0,0,33,0,0,0,0,0,2,0,23,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,84,8,0,0,0,0,0,2,0,0,0,0,0,7,23,0,0,0,3,0,0,0,0,8,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,115,12,12,12,0,0,2,4860,2,490,0,0,2,86,289,445,137349,4880,0,0,0,0,1,0,9,0,0,0,0,0,0,11233,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,464,229,1752,25,0,0,1811,0,2196,0,4,0,846,128435,0,0,0,0,0,0,0,0,0,1874,1,0,2,0,47,0,0,0,0,57,357,605,0,0,318,0,0,0,0,0,12695,0,0,8399,3,0,1,12,0,0,0,0,14,0,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,25,1,0,0,0,0,3,127,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,181,1,1,1,0,448,0,0,0,0,188,278,427,1,139,9,0,0,0,0,0,926,19,0,0,0,0,0,0,0,0,0,0,0,15,0,2,74,1,0,0,0,0,0,0,22,8,0,0,28,0,4,4375,2419,4 +155,0,0,29,10,84,193,22,450,30,78,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,15,0,7,3,0,9,33,0,94,301,0,0,741,0,0,0,1,0,0,3,0,0,0,0,28,347,0,0,0,0,0,1,0,3,0,12,0,88,0,0,2961,84,1561,0,40,0,0,0,0,0,74,12,0,0,0,0,13,22,404,0,22,33,9,0,10,223,0,2118,100,3,0,0,14,10,1430,0,46,0,0,2194,0,0,0,0,53,45,0,0,28,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,17,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,332,0,237,0,0,0,36,75,296,1812,361,0,0,0,0,1,0,5,0,0,0,0,0,0,2806,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1418,48,0,0,1563,0,2955,0,6,0,572,47,0,0,0,0,0,0,0,0,0,1182,1,0,0,0,30,0,0,0,0,22,279,616,0,0,215,0,0,0,0,0,9941,0,0,189,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,76,0,0,0,0,81,127,309,0,64,9,0,0,0,0,0,783,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1644,1657,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,33,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +41,0,0,9,8,62,77,32,217,28,49,0,0,2,40,8,333,0,7,21,0,8,8,7,0,27,19,0,9,0,4,0,0,8,23,0,70,171,0,0,395,0,0,0,1,0,0,4,2,0,0,0,23,148,0,0,0,0,0,1,0,0,0,29,0,49,0,0,1812,62,1514,0,31,0,0,0,0,0,16,24,0,0,0,0,11,22,245,0,32,23,8,0,2,100,0,981,105,10,1,0,2,8,905,0,30,0,0,1510,0,0,0,0,33,12,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,2,0,0,0,14,0,0,0,4,0,0,0,19,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,7,0,85,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,56,10,10,10,0,0,0,199,0,182,0,0,0,25,46,260,974,304,0,0,0,0,1,0,3,0,0,2,0,0,0,1219,0,0,0,0,0,0,0,0,0,0,0,0,4,1,3,0,0,0,0,1,0,34,46,700,17,0,0,710,0,2036,0,0,0,367,34,0,0,0,0,0,0,0,0,0,733,1,0,5,0,44,0,0,0,0,22,212,299,0,0,255,0,0,0,0,0,1287,0,0,52,2,0,1,1,0,0,0,0,13,0,0,0,3,0,0,0,0,0,28,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,69,1,1,1,0,11,0,0,0,0,65,93,56,0,51,8,0,0,0,0,0,750,128,0,0,0,0,0,0,0,0,0,0,0,9,0,1,37,0,0,0,0,0,0,0,0,0,0,0,16,0,2,615,418,4 +151,0,0,0,9,74,28,36,192,3,48,0,3,0,9,0,133,0,7,26,0,9,9,7,0,9,3,0,39,0,166,1,0,9,23,0,83,15,0,0,292,0,1,0,1,0,0,1,0,0,0,0,168,111,0,0,0,0,0,1,0,1,0,0,0,5,0,0,2147,74,1326,0,205,0,0,0,0,0,11,27,0,0,0,0,14,21,211,0,36,23,9,0,2,92,0,1533,185,1,0,0,6,9,731,0,4,0,0,2472,0,0,0,0,47,47,0,0,4,0,0,1,0,0,0,15,0,0,0,0,0,0,0,46,0,0,0,45,0,0,0,0,0,0,0,21,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,3,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,45,10,10,10,0,0,0,176,0,96,0,0,0,334,339,308,990,201,0,0,0,0,1,0,4,0,0,0,0,0,0,1194,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,29,44,631,9,0,0,596,0,650,0,0,0,194,142,0,0,0,0,0,0,0,0,0,420,1,0,0,0,51,0,0,0,0,168,161,171,0,0,407,0,0,0,0,0,3745,0,0,174,3,0,1,6,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,3,333,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,107,1,1,1,0,372,0,0,0,324,73,106,67,0,209,9,0,0,0,0,0,236,10,0,0,0,0,0,0,0,0,0,0,0,10,0,1,3,0,0,0,0,0,0,0,0,0,0,0,15,0,0,510,1735,4 +151,0,0,29,10,83,189,22,430,30,74,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,93,301,0,0,717,0,0,0,1,0,0,3,0,0,0,0,28,356,0,0,0,0,0,1,0,3,0,11,0,84,0,0,3125,83,1534,0,39,0,0,0,0,0,75,12,0,0,0,0,13,22,418,0,22,33,9,0,10,203,0,1969,100,3,0,0,14,10,1329,0,46,0,0,2235,0,0,0,0,54,40,0,0,30,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,37,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,336,0,243,0,0,0,36,76,292,1682,367,0,0,0,0,1,0,5,0,0,0,0,0,0,2845,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1421,48,0,0,1557,0,2897,0,6,0,569,55,0,0,0,0,0,0,0,0,0,1154,1,0,0,0,30,0,0,0,0,22,278,564,0,0,215,0,0,0,0,0,9938,0,0,184,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,90,1,1,1,0,77,0,0,0,0,81,126,309,0,63,9,0,0,0,0,0,745,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1641,1713,4 +0,0,0,5,0,35,24,0,48,3,23,0,0,7,4,0,764,0,6,1,0,0,0,8,0,11,0,0,25,0,1,0,0,0,1,12498,35,6,0,0,44,0,1,0,1,0,0,3,0,0,0,0,1,576,0,0,0,0,0,1,0,0,0,0,0,2,0,0,48039,35,935,0,24,0,0,0,0,0,49,0,0,0,0,0,8,94,8313,0,0,1,0,0,0,0,0,362,25,4,0,0,2,0,852,0,0,87,0,4637,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,2546,0,37,0,0,0,13,16,486,2059,2521,0,0,0,0,1,0,3,0,0,0,0,0,0,1307,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,108,25,269,5,0,0,316,0,333,0,0,0,156,18,0,0,0,0,0,0,0,0,0,876,1,0,0,0,9,0,0,0,0,1,154,23,0,0,130,0,0,0,0,0,4915,1,0,2203,22,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,62,0,0,0,0,1,36,251,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2840,29,4 +54,0,0,1,1,58,12,4,56,2,13,0,3,0,5,0,37,0,7,10,0,1,1,6,0,16,3,0,7,0,4,1,0,1,22,0,59,12,0,0,181,0,0,0,1,0,0,0,0,0,0,0,13,92,0,0,0,0,0,1,0,1,0,0,0,7,0,0,991,58,258,0,18,0,0,0,0,0,10,3,0,0,0,0,13,18,139,0,4,22,1,0,4,31,0,381,30,0,0,0,6,1,231,0,2,0,0,8603,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,143,0,96,0,0,0,16,23,229,327,132,0,0,0,0,1,0,3,0,0,0,0,0,0,503,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,285,2,0,0,239,0,408,0,0,0,102,26,0,0,0,0,0,0,0,0,0,133,0,0,0,0,18,0,0,0,0,12,149,72,0,0,60,0,0,0,0,0,697,0,0,7,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,18,0,0,0,0,9,81,38,0,22,9,0,0,0,0,0,190,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,162,799,4 +221,0,0,0,3,86,57,12,334,3,104,1,2,0,5,0,48,0,7,15,0,3,3,3,0,6,3,0,77,0,301,1,0,3,36,0,89,12,0,0,508,0,0,0,0,0,0,0,0,0,0,0,307,118,0,0,0,0,0,1,0,0,0,0,0,24,0,0,5914,86,1671,0,385,0,0,0,0,0,272,9,0,0,0,0,11,11,230,0,12,36,3,0,3,294,0,3592,390,0,0,0,6,3,1681,0,2,0,0,4513,0,0,0,0,85,94,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,78,0,0,0,77,0,0,0,0,0,1,0,13,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,72,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,228,0,198,0,0,0,608,612,168,2448,249,0,0,0,0,0,0,0,0,0,0,0,0,0,3884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,631,6,0,0,708,0,531,0,0,0,470,70,0,0,0,0,0,0,0,0,0,558,0,0,0,0,24,0,0,0,0,306,177,580,0,0,875,0,0,0,0,0,1291,0,0,301,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,86,1,1,1,0,682,0,0,0,590,25,125,36,0,388,0,0,0,0,0,0,635,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,1,0,0,0,0,0,0,0,0,0,0,5,0,0,1207,1958,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,38,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,38,15,0,0,0,0,0,1,0,0,0,0,0,2,0,0,108,10,56,0,39,0,0,0,0,0,0,0,0,0,0,0,1,1,15,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,44,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,38,41,23,43,33,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,57,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,39,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,4 +0,0,0,3,3,10,2,14,21,0,5,0,0,0,4,0,21,0,6,7,0,3,1,1,2,0,0,0,0,0,1,0,0,3,0,0,13,6,0,0,13,0,0,0,1,0,0,3,0,0,0,0,0,43,0,0,0,0,0,1,1,0,0,0,0,4,0,0,294,10,222,0,1,0,0,0,0,0,8,9,0,0,0,2,1,7,37,0,14,0,3,0,0,0,0,15,0,4,0,0,2,3,23,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,44,0,35,0,0,0,0,3,32,6,59,0,0,0,0,1,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,110,6,0,0,162,0,151,0,0,0,76,2,0,0,0,0,0,0,0,0,0,59,1,0,0,0,14,0,0,0,0,0,94,55,0,0,0,0,0,0,0,0,41,0,0,22,0,0,1,0,1,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,9,13,211,0,1,0,0,0,0,0,0,19,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7,0,2,49469,35,4 +0,0,0,5,0,35,24,0,48,3,23,0,0,7,4,0,764,0,6,1,0,0,0,8,0,11,0,0,25,0,1,0,0,0,1,12491,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,732,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39006,35,928,0,24,0,0,0,0,0,45,0,0,0,0,0,8,92,6404,0,0,1,0,0,0,0,0,361,25,2,0,0,2,0,852,0,0,87,0,4405,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1284,0,32,0,0,0,13,16,486,2060,1263,0,0,0,0,1,0,3,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,277,5,0,0,308,0,304,0,0,0,151,13,0,0,0,0,0,0,0,0,0,876,1,0,0,0,9,0,0,0,0,1,164,7,0,0,130,0,0,0,0,0,4706,1,0,1018,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,62,0,0,0,0,1,36,212,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2478,26,4 +206,0,0,26,17,75,193,26,346,33,45,0,0,2,74,1,641,0,22,32,0,18,2,5,0,44,16,0,27,0,6,2,0,16,33,0,92,540,0,0,371,0,0,0,1,0,0,0,0,0,0,0,44,344,0,0,0,0,0,1,0,0,0,2,0,52,0,0,2087,75,2475,0,70,0,0,0,0,0,4,30,0,0,0,0,16,21,143,0,26,33,16,0,8,48,0,892,80,0,0,0,16,17,724,0,49,0,0,2857,0,0,0,0,36,21,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,19,0,0,0,7,0,0,0,0,0,7,0,56,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,1,0,0,0,0,0,0,16,0,0,0,3,0,0,0,12,2,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,52,10,10,10,0,0,0,147,0,167,0,0,0,50,65,337,579,160,0,0,0,0,1,0,5,0,0,0,0,0,0,1842,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,773,176,1688,50,0,0,1699,0,2659,0,7,0,491,115,0,0,0,0,0,0,0,0,0,1324,0,0,0,0,57,0,0,0,0,45,276,107,0,0,187,0,0,0,1,0,14584,0,0,8,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,1,0,0,0,0,52,52,0,0,8,1,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,79,1,1,1,0,46,0,0,0,0,181,125,72,0,86,9,0,0,0,0,0,343,40,0,0,0,0,0,0,0,0,0,0,0,18,0,1,39,0,0,0,0,0,0,0,0,0,0,0,21,0,0,918,1184,4 +0,0,0,7,2,15,50,2,56,10,6,0,0,0,19,0,123,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,4,0,17,136,0,0,39,0,0,0,1,0,0,7,0,0,0,0,1,171,0,0,0,0,0,1,0,0,0,0,0,17,0,0,4002,15,229,0,3,0,0,0,0,0,28,0,0,0,0,0,1,10,734,0,2,4,2,0,2,0,0,89,0,14,0,0,6,2,89,0,14,0,0,762,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,583,0,289,0,0,0,2,7,40,24,755,0,0,0,0,1,0,0,0,0,0,0,0,0,2712,0,182,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,237,38,446,9,0,0,459,0,1539,0,2,0,158,16,0,0,0,0,0,0,0,0,0,265,1,0,0,0,2,0,0,0,0,1,134,43,0,0,0,0,0,0,0,0,733,0,0,940,0,0,1,0,0,0,0,0,19,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,13,1,1,1,0,2,0,0,0,0,17,21,172,0,6,0,0,0,0,0,0,89,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,2,1441,72,4 +334,0,0,36,28,113,235,64,533,47,81,0,0,2,91,0,565,0,24,82,0,122,2,6,0,57,22,0,37,0,8,3,0,27,52,0,135,400,160,0,884,0,0,0,1,0,0,5,1,0,0,0,58,445,0,0,0,0,0,1,0,3,0,12,0,92,0,0,3922,113,4090,0,93,0,0,0,0,0,74,60,0,0,0,0,14,28,550,0,64,52,27,0,11,136,0,1656,95,11,0,0,18,28,1185,0,67,0,0,3690,0,0,0,0,95,64,0,0,35,0,0,1,0,0,0,23,0,0,0,0,0,0,0,26,0,0,0,16,0,0,0,3,0,7,0,72,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,3,0,0,0,0,0,1,14,0,0,0,0,0,0,0,18,14,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,105,10,10,10,0,0,0,477,0,307,0,0,0,67,106,367,1462,534,0,0,0,0,1,0,5,0,0,0,0,0,0,4436,0,0,0,0,0,0,0,0,0,1,0,0,4,1,2,0,0,0,0,1,0,890,419,2192,75,0,0,2266,0,4196,0,8,0,740,266,0,0,0,0,0,0,0,0,0,1531,1,0,2,0,212,0,0,0,0,56,347,355,0,0,211,0,0,0,0,0,10368,0,0,139,3,0,1,9,0,0,0,0,13,0,0,0,4,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,1,0,0,0,0,3,28,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,114,1,1,1,0,103,0,0,0,0,177,187,225,0,118,9,0,0,0,0,0,671,32,0,0,0,0,0,0,1,0,0,0,0,23,0,6,55,0,0,0,0,0,0,0,0,117,0,0,225,0,6,2394,2355,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,728,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,724,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,9,0,0,1,107,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,0,0,0,80,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,48,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,1,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,36,4 +106,0,0,24,4,62,81,7,125,3,16,0,0,2,19,0,187,0,12,6,0,1,1,5,0,24,9,0,7,0,5,0,0,4,22,0,66,164,0,0,201,0,0,0,1,0,0,7,0,0,0,0,20,255,0,0,0,0,0,1,0,1,0,0,0,16,0,0,5131,62,485,0,26,0,0,0,0,0,30,3,0,0,0,0,8,21,1028,0,7,22,4,0,4,11,0,341,20,12,0,0,8,4,204,0,10,0,0,1588,0,0,0,0,41,30,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,33,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,757,0,244,0,0,0,23,60,241,260,724,0,0,0,0,1,0,4,0,0,0,0,0,0,1941,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,69,765,33,0,0,814,0,1517,0,3,0,285,41,0,0,0,0,0,0,2,0,0,442,1,0,0,0,13,0,0,0,0,20,192,94,0,0,34,0,0,0,0,0,1193,0,0,935,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,64,1,1,1,0,55,0,0,0,0,33,88,360,0,36,9,0,0,0,0,0,263,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,7,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1321,1536,4 +1,0,0,3,0,28,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,136,0,0,0,0,0,1,0,0,0,0,0,2,0,0,29660,28,57,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,5908,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,537,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,3887,0,50,0,0,0,1,4,182,14,3885,0,0,0,0,1,0,3,0,0,0,0,0,0,5619,0,0,0,0,0,0,0,0,0,0,0,0,2,1,8,0,0,0,0,1,0,32,10,128,3,0,0,164,0,317,0,0,0,59,13,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,110,42,0,0,0,0,0,0,0,0,1119,0,0,6952,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,242,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2116,55,4 +58,0,0,0,5,74,17,20,106,6,18,0,2,0,8,0,84,0,7,18,0,5,5,6,0,16,9,0,24,0,16,2,0,5,29,0,79,23,0,0,146,0,0,0,1,0,0,1,0,0,0,0,26,146,0,0,0,0,0,1,0,0,0,0,0,6,0,0,3820,74,634,0,47,0,0,0,0,0,10,15,0,0,0,0,13,20,695,0,20,29,5,0,1,37,0,491,55,1,0,0,4,5,334,0,5,0,0,2022,0,0,0,0,15,4,2,0,3,0,0,1,0,0,0,13,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,22,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,34,10,10,10,0,0,0,415,0,110,0,0,0,42,50,268,307,424,0,0,0,0,1,0,4,0,0,0,0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,23,36,491,5,0,0,468,0,721,0,0,0,187,53,0,0,0,0,0,0,0,0,0,242,1,0,0,0,34,0,0,0,0,22,165,110,0,0,137,0,0,0,0,0,245,0,0,26,3,0,1,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,14,1,0,0,0,0,3,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,81,1,1,1,0,59,0,0,0,24,41,108,94,0,58,9,0,0,0,0,0,127,10,0,0,0,0,0,0,0,0,0,0,0,6,0,1,6,0,0,0,0,0,0,0,0,0,0,0,7,0,1,195,792,4 +21,0,0,0,0,36,24,0,36,2,5,0,2,0,4,0,20,0,6,6,0,0,0,6,0,10,3,0,5,0,2,1,0,0,6,0,36,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,77,0,0,0,0,0,1,0,0,0,0,0,3,0,0,710,36,115,0,8,0,0,0,0,0,13,0,0,0,0,0,11,16,132,0,0,6,0,0,2,25,0,298,15,0,0,0,4,0,170,0,2,0,0,624,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,96,0,52,0,0,0,6,12,201,169,100,0,0,0,0,1,0,3,0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,138,0,0,0,152,0,249,0,0,0,61,26,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,126,53,0,0,30,0,0,0,0,0,93,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,10,0,0,0,0,1,42,22,0,12,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,35,4 +155,0,4,0,3,92,46,8,713,25,48,0,7,0,31,21,7415,0,7,15,0,3,2,8,0,25,27,0,19,0,7,3,0,2,37,26,94,34,0,0,591,0,3,0,1,0,0,3,1,0,0,0,27,225,0,0,0,0,0,1,0,0,0,19,0,43,0,0,3875,92,8641,0,42,0,0,0,0,0,31,6,0,0,0,0,16,26,858,0,8,37,2,0,7,154,0,1388,115,8,0,0,14,3,8405,0,23,0,0,3153,0,0,0,0,30,28,1,0,1,0,0,1,0,0,0,18,0,0,0,0,0,0,0,14,0,0,0,13,0,0,0,0,0,5,0,41,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,11,1,1,1,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,7,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1038,10,10,10,0,0,0,282,0,212,0,0,0,35,65,293,1232,314,0,0,0,0,1,0,4,0,0,0,15057,3,1,1787,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,1,0,85,19006,634,5,0,0,514,0,2078,0,0,0,237,595,0,0,0,0,0,0,0,0,0,8288,1,0,2,0,28,0,0,0,0,20,183,397,0,4,290,0,0,0,1,0,15768,0,0,783,3,0,1,8,1,0,0,0,7,0,0,0,0,0,0,0,0,0,22,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,15,1,2,0,0,0,3,378,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,104,1,1,1,0,43,0,0,0,0,19,131,107,0,72,9,0,0,0,0,0,492,13,0,0,0,0,0,0,0,0,0,0,0,3,0,1,27,0,0,0,0,0,0,0,0,0,0,0,5,0,2,825,771,4 +11,0,0,8,1,36,48,1,122,7,15,1,0,0,13,0,71,0,9,3,0,0,0,3,0,3,3,0,12,0,2,0,0,1,17,0,37,54,0,0,148,0,0,0,1,0,0,16,3,0,0,0,4,310,0,0,0,0,0,1,0,0,0,20,0,10,0,0,7314,36,342,0,17,0,0,0,0,0,58,0,0,0,0,4,5,29,1307,0,1,17,1,0,1,47,0,462,15,33,1,0,4,1,348,0,8,0,0,1101,0,0,0,0,31,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,8,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,1067,0,226,0,0,0,5,13,80,431,1010,0,0,0,0,1,0,0,0,0,0,0,0,0,2313,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,112,19,398,11,0,0,491,0,1624,0,1,0,272,27,0,0,0,0,0,0,0,0,0,279,1,0,9,0,6,0,0,0,0,6,148,221,0,0,34,0,0,0,0,0,577,0,0,1285,0,0,1,0,0,0,0,0,43,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,40,1,1,1,0,16,0,0,0,0,9,54,820,0,20,0,0,0,0,0,0,199,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,10,1694,90,4 +3,0,0,8,18,26,43,38,273,5,41,0,0,0,8,0,399,0,8,22,0,20,32,0,0,8,3,0,7,0,4,0,0,18,6,570,58,155,303,0,138,0,0,0,0,0,0,0,0,0,0,0,11,272,0,0,0,0,0,1,0,0,0,1,0,10,0,0,706,26,1687,0,19,0,0,0,0,0,0,51,0,0,0,0,2,2,6,0,38,6,18,0,2,46,0,546,70,0,0,0,4,18,628,0,5,0,0,1292,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,24,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,44,15,15,15,0,0,15,94,15,90,0,0,0,14,18,142,387,73,0,0,0,0,0,0,0,0,0,0,18,2,0,543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,24,983,26,0,0,934,0,1083,0,1,0,237,248,0,0,0,0,0,0,0,0,0,772,0,0,0,0,71,3,0,0,0,10,150,80,0,0,205,0,0,0,0,0,2783,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,23,1,1,1,0,14,0,0,0,0,571,65,52,0,22,0,0,0,0,0,0,181,22,0,0,0,0,0,0,0,0,0,0,0,32,0,1,7,0,0,0,0,0,0,0,0,3,0,0,31,0,0,475,288,4 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 +0,0,0,0,0,1,0,1,18,0,1,0,0,0,1,0,654,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,650,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,9,0,0,0,0,0,0,0,0,0,675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,2,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,9,0,0,1,99,4 +1,0,0,6,0,34,9,0,27,0,9,0,0,2,5,0,19,0,7,2,0,0,0,7,0,9,0,0,4,0,2,0,0,0,8,0,34,6,0,0,52,0,0,0,1,0,0,2,0,0,0,0,3,102,0,0,0,0,0,1,0,0,0,0,0,7,0,0,802,34,74,0,5,0,0,0,0,0,10,0,0,0,0,0,8,17,133,0,0,8,0,0,1,14,0,204,30,4,0,0,2,0,92,0,1,0,0,605,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,112,0,58,0,0,0,4,8,192,116,98,0,0,0,0,1,0,3,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,11,148,8,0,0,166,0,274,0,0,0,69,31,0,0,0,0,0,0,0,0,0,78,1,0,0,0,9,0,0,0,0,3,119,52,0,0,60,0,0,0,0,0,82,0,0,42,3,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,12,0,0,0,0,1,42,88,0,6,9,0,0,0,0,0,54,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,179,165,4 +0,0,0,5,0,38,24,0,47,3,23,0,0,7,4,0,786,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12360,38,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,710,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40466,38,949,0,24,0,0,0,0,0,45,0,0,0,0,0,8,92,6657,0,0,1,0,0,0,0,0,361,25,2,0,0,2,0,874,0,0,87,0,4619,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1550,0,32,0,0,0,13,16,507,2063,1526,0,0,0,0,1,0,3,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,289,5,0,0,313,0,295,0,0,0,148,13,0,0,0,0,0,0,0,0,0,897,1,0,0,0,9,0,0,0,0,1,167,7,0,0,130,0,0,0,0,0,4633,1,0,1013,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,62,0,0,0,0,1,39,212,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2485,26,4 +6,0,0,13,0,20,2,0,12,0,2,0,0,0,10,0,15,0,6,1,0,0,0,1,0,6,0,0,4,0,1,0,0,0,5,0,20,6,0,0,36,0,0,0,1,0,0,5,0,0,0,0,6,79,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1082,20,85,0,11,0,0,0,0,0,23,0,0,0,0,0,1,8,185,0,0,5,0,0,0,0,0,29,0,5,0,0,2,0,34,0,0,0,0,511,0,0,0,0,20,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,9,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,191,0,77,0,0,0,6,9,41,102,192,0,0,0,0,1,0,0,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,19,188,18,0,0,164,0,326,0,0,0,91,19,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,7,146,15,0,0,0,0,0,0,0,0,99,0,0,222,0,0,1,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,4,0,0,0,0,1,25,74,0,11,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,0,0,0,0,0,6,223,262,4 +0,0,0,3,0,10,3,0,24,1,3,0,0,0,8,0,26,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,44,0,1,0,1,0,0,1,1,0,0,0,0,270,0,0,0,0,0,1,0,0,0,0,0,9,0,0,4682,10,63,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,481,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,68,0,0,0,0,1199,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,36,0,39,0,0,0,0,3,28,12,45,0,0,0,0,1,0,0,0,0,0,0,0,0,2135,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,165,3,0,0,161,0,171,0,0,0,102,8,0,0,0,0,0,0,0,0,0,70,1,0,2,0,2,0,0,0,0,0,92,95,0,0,0,0,0,0,0,0,272,0,0,736,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,96,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,73,4 +0,0,0,6,0,27,5,0,18,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,0,0,1,0,27,6,0,0,41,0,2,0,1,0,0,2,0,0,0,0,1,98,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2558,27,47,0,1,0,0,0,0,0,10,0,0,0,0,0,7,15,1035,0,0,1,0,0,0,0,0,74,5,3,0,0,2,0,27,0,0,0,0,924,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,18,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,478,0,45,0,0,0,0,3,185,11,483,0,0,0,0,1,0,5,0,0,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,3,0,32,10,264,6,0,0,161,0,557,0,0,0,55,29,0,0,0,0,0,0,0,0,0,52,1,0,0,0,8,0,0,0,0,0,112,41,0,0,0,0,0,0,0,0,79,0,0,408,3,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,0,0,1,28,194,0,2,9,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,349,4 +0,0,0,6,0,27,5,0,26,0,2,0,0,2,2,0,18,0,6,2,0,0,0,6,0,8,0,0,3,0,2,0,0,0,2,0,27,6,0,0,27,0,2,0,1,0,0,3,0,0,0,0,2,93,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1743,27,63,0,3,0,0,0,0,0,14,0,0,0,0,1,7,20,647,0,0,2,0,0,0,0,0,82,5,4,0,0,2,0,36,0,0,0,0,542,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,116,0,43,0,0,0,2,4,182,14,110,0,0,0,0,1,0,3,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,10,144,6,0,0,166,0,390,0,0,0,63,8,0,0,0,0,0,0,0,0,0,61,1,0,0,0,8,0,0,0,0,2,109,41,0,0,0,0,0,0,0,0,268,0,0,790,3,0,1,1,1,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,3,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,3,0,0,0,0,1,29,150,0,4,9,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,337,597,4 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,35,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,6,4 +0,0,0,7,2,14,50,2,56,10,6,0,0,0,19,0,123,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,4,0,16,136,0,0,39,0,0,0,1,0,0,7,0,0,0,0,1,165,0,0,0,0,0,1,0,0,0,0,0,17,0,0,4114,14,227,0,3,0,0,0,0,0,27,0,0,0,0,0,1,10,726,0,2,4,2,0,2,0,0,88,0,14,1,0,6,2,89,0,14,0,0,391,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,560,0,278,0,0,0,2,7,36,24,754,0,0,0,0,1,0,0,0,0,0,0,0,0,2498,0,191,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,238,38,435,9,0,0,456,0,1519,0,2,0,158,17,0,0,0,0,0,0,0,0,0,265,1,0,0,0,2,0,0,0,0,1,133,43,0,0,0,0,0,0,0,0,741,0,0,948,0,0,1,0,0,0,0,0,19,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,12,1,1,1,0,2,0,0,0,0,17,20,172,0,6,0,0,0,0,0,0,89,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,2,1423,73,4 +0,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,110,0,0,0,0,0,1,0,0,0,0,0,1,0,0,8249,11,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,1919,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,15,0,0,0,0,714,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,83,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1124,0,140,0,0,0,0,3,30,4,1165,0,0,0,0,1,0,0,0,0,0,0,0,0,3159,0,0,0,0,0,0,0,0,0,0,0,0,1,0,76,0,0,0,0,0,0,8,3,108,2,0,0,145,0,281,0,0,0,74,18,0,0,0,0,0,0,168,0,0,42,1,0,0,0,2,0,0,0,0,0,93,68,0,0,0,0,0,0,0,0,512,0,0,2383,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,155,0,0,0,0,305,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,89,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,297,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,86,0,0,0,0,0,0,0,1,1168,1370,4 +0,0,0,6,0,40,57,0,101,0,37,0,0,8,3,0,948,0,6,1,0,0,0,8,0,11,0,0,43,0,1,0,0,0,1,12217,40,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,528,0,0,0,0,0,1,0,0,0,0,0,2,0,0,98010,40,1284,0,42,0,0,0,0,0,111,0,0,0,0,0,8,305,12625,0,0,1,0,0,0,0,0,570,30,2,0,0,2,0,1134,0,0,225,0,9162,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,5180,0,40,0,0,0,26,29,1413,6394,5112,0,0,0,0,1,0,3,0,0,0,0,0,0,6598,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,19,426,6,0,0,395,0,364,0,0,0,215,39,0,0,0,0,0,0,0,0,0,1160,1,0,0,0,9,0,0,0,0,1,175,76,0,0,291,0,0,0,0,0,6544,1,0,8661,54,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,54,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,119,0,0,0,0,1,41,287,0,43,12,0,1,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3897,187,4 +1,0,0,3,0,28,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,122,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1290,28,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,187,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,642,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,146,0,48,0,0,0,1,4,182,14,144,0,0,0,0,1,0,3,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,1,0,32,10,130,3,0,0,167,0,328,0,0,0,61,6,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,110,44,0,0,0,0,0,0,0,0,94,0,0,126,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,172,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,181,54,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,128,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1201,28,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,196,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,489,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,150,0,50,0,0,0,1,4,182,14,148,0,0,0,0,1,0,3,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,32,10,144,4,0,0,152,0,324,0,0,0,42,10,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,110,24,0,0,0,0,0,0,0,0,102,0,0,120,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,104,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,196,53,4 +6,0,0,9,0,58,181,0,122,6,15,0,0,2,21,2,66,0,62,4,0,0,0,7,0,8,24,0,11,0,9,4,0,0,23,0,58,206,0,0,282,0,0,0,1,0,0,7,1,0,0,0,13,222,0,0,0,0,0,1,0,0,0,5,0,16,0,0,7409,58,549,0,22,0,0,0,0,0,36,0,0,0,0,1,10,25,686,0,0,23,0,0,1,94,0,841,60,19,0,0,2,0,716,0,10,0,0,2844,0,0,0,0,3,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,663,0,169,0,0,0,24,50,249,1343,638,0,0,0,0,1,0,13,0,0,0,0,0,0,2779,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,25,446,9,0,0,615,0,1199,0,0,0,478,116,0,0,0,0,0,0,0,0,0,471,1,0,8,0,11,0,0,0,0,12,157,383,0,0,293,0,0,0,0,0,1369,0,0,1709,3,0,1,1,1,0,0,0,26,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,89,1,1,1,0,25,0,0,0,0,1,81,624,0,47,9,0,0,0,0,0,289,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,953,1482,4 +0,0,0,10,0,17,4,0,25,1,7,0,0,0,4,0,19,0,7,1,0,0,0,1,0,0,0,0,4,0,7,0,0,0,5,0,17,6,0,0,36,0,0,0,1,0,0,1,0,0,0,0,6,75,1,0,0,0,0,1,0,0,0,2,0,7,0,0,18153,17,65,0,11,0,0,0,0,0,6,0,0,0,0,0,1,3,3648,0,0,5,0,0,1,9,0,102,15,1,0,0,2,0,64,0,1,0,0,336,0,0,0,0,2,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2617,0,55,0,0,0,12,10,38,146,2634,0,0,0,0,1,0,0,0,0,0,0,0,0,4719,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,7,111,14,0,0,96,0,230,0,0,0,30,7,0,0,0,0,0,0,0,0,0,66,1,0,0,0,2,0,0,0,0,4,101,20,0,0,31,0,0,0,0,0,1663,0,0,5137,0,0,1,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,16,0,0,0,6,1,22,12,0,11,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,2,0,0,0,0,0,0,0,0,0,0,0,0,1,2442,58,4 +30,0,0,0,0,17,13,0,49,0,12,0,2,0,3,0,14,0,7,1,0,0,0,1,0,5,0,0,0,0,1,0,0,0,5,0,17,15,0,0,103,0,0,0,0,0,0,0,0,0,0,0,5,56,0,0,0,0,0,1,0,0,0,0,0,8,0,0,500,17,125,0,6,0,0,0,0,0,16,0,0,0,0,0,1,1,136,0,0,5,0,0,3,43,0,350,15,0,0,0,6,0,227,0,0,0,0,314,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,119,0,92,0,0,0,5,7,40,321,136,0,0,0,0,0,0,0,0,0,0,0,0,0,483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,25,90,1,0,0,98,0,91,0,0,0,50,10,0,0,0,0,0,0,0,0,0,100,0,0,0,0,2,0,0,0,0,5,104,109,0,0,30,0,0,0,0,0,634,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,22,5,0,6,0,0,0,0,0,0,205,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,180,4 +5,0,0,6,6,37,30,21,106,11,22,0,0,2,16,0,103,0,8,14,0,10,0,5,0,8,0,0,1,0,1,0,0,6,6,0,43,54,0,0,91,0,0,0,1,0,0,1,0,0,0,0,1,144,0,0,0,0,0,1,0,0,0,0,0,20,0,0,821,37,524,0,1,0,0,0,0,0,5,15,0,0,0,0,8,14,102,0,21,6,6,0,3,23,0,322,45,1,0,0,4,6,180,0,13,0,0,629,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,14,10,10,10,0,0,0,76,0,257,0,0,0,0,3,209,214,109,0,0,0,0,1,0,4,0,0,0,0,0,0,526,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,137,39,451,12,0,0,468,0,662,0,1,0,114,17,0,0,0,0,0,0,0,0,0,287,1,0,0,0,29,0,0,0,0,1,134,56,0,0,91,0,0,0,0,0,208,0,0,8,2,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,39,1,1,1,0,0,0,0,0,0,49,49,31,0,2,8,0,0,0,0,0,112,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,17,0,0,0,0,0,0,0,0,0,0,0,12,0,0,634,42,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,0,0,0,96,8,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,1,27,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,28,0,0,0,0,3,21,4,42,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,43,0,26,0,0,0,9,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,4,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,2,0,0,405,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,133,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,49,3,0,0,47,0,144,0,0,0,5,1,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +0,0,0,2,0,8,2,0,14,0,2,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,56,0,0,0,0,0,1,0,0,0,0,0,1,0,0,7084,8,38,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,1904,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,15,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,811,0,25,0,0,0,0,3,22,4,820,0,0,0,0,1,0,0,0,0,0,0,0,0,1923,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,79,2,0,0,113,0,107,0,0,0,54,2,0,0,0,0,0,0,4,0,0,41,1,0,0,0,2,0,0,0,0,0,91,46,0,0,0,0,0,0,0,0,420,0,0,2283,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,221,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3059,10,4 +150,0,0,29,10,84,187,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,94,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,348,0,0,0,0,0,1,0,3,0,12,0,82,0,0,3022,84,1511,0,39,0,0,0,0,0,70,12,0,0,0,0,13,22,387,0,22,33,9,0,10,193,0,1895,100,3,0,0,14,10,1279,0,46,0,0,2184,0,0,0,0,52,39,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,19,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,37,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,323,0,236,0,0,0,36,76,296,1616,353,0,0,0,0,1,0,5,0,0,0,0,0,0,2755,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1415,48,0,0,1553,0,2899,0,6,0,563,59,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,279,538,0,0,215,0,0,0,0,0,9929,0,0,176,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,77,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1619,1658,4 +9,0,0,12,0,66,25,0,68,10,23,0,0,6,26,0,639,0,7,2,0,0,0,9,0,11,39,0,23,0,17,0,0,0,29,1005,66,6,0,0,130,0,0,0,1,0,0,4,1,0,0,0,17,349,0,0,0,0,0,1,0,0,0,20,0,22,0,0,14396,66,897,0,38,0,0,0,0,0,40,0,0,0,0,0,10,58,2596,0,0,29,0,0,1,8,0,405,35,8,0,0,2,0,989,0,16,33,0,2498,0,0,0,0,43,0,1,0,0,0,0,1,0,0,0,12,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,4,0,0,0,5,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,76,12,12,12,0,0,0,1151,0,136,0,0,0,41,103,360,917,1140,0,0,0,0,1,0,3,0,0,0,0,0,0,1602,0,0,0,0,0,0,0,0,0,0,0,0,4,1,3,0,0,0,0,1,2,84,64,341,14,0,0,370,0,442,0,0,0,198,14,0,0,0,0,0,0,7,0,0,794,1,0,3,0,11,0,0,0,0,15,153,63,0,0,87,0,0,0,0,0,2145,1,0,949,14,0,1,1,0,0,0,1,12,0,1,0,1,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,14,18,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,9,1,0,0,0,0,0,0,0,1,0,0,70,1,1,1,0,113,0,0,0,0,1,95,475,0,78,12,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,16,0,0,0,0,0,2,0,0,0,0,0,0,0,5,1136,87,4 +1,0,0,6,0,16,2,0,10,0,2,0,0,0,2,0,20,0,6,1,0,0,0,1,0,0,3,0,4,0,2,0,0,0,8,0,16,6,0,0,11,0,0,0,1,0,0,1,0,0,0,0,1,48,0,0,0,0,0,1,0,0,0,0,0,1,0,0,457,16,46,0,6,0,0,0,0,0,6,0,0,0,0,0,1,3,44,0,0,8,0,0,0,0,0,15,0,2,0,0,2,0,31,0,0,0,0,648,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,53,0,35,0,0,0,2,8,34,27,65,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,100,6,0,0,110,0,214,0,0,0,57,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,2,98,26,0,0,0,0,3,0,0,0,52,0,0,64,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,5,0,0,0,0,1,24,119,0,9,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,79,75,4 +9,0,0,6,1,15,26,1,38,1,4,0,0,0,6,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,3,0,16,54,0,0,19,0,0,0,1,0,0,4,0,0,0,0,0,80,0,0,0,0,0,1,0,0,0,0,0,5,0,0,22011,15,125,0,1,0,0,0,0,0,17,0,0,0,0,0,1,6,1430,0,1,3,1,0,1,0,0,50,0,6,0,0,4,1,25,0,3,0,0,8845,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1418,0,151,0,0,0,0,3,64,37,1434,0,0,0,0,1,0,0,0,0,0,0,0,0,1435,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,114,17,916,8,0,0,747,0,746,0,1,0,560,21,0,0,0,0,0,0,0,0,0,147,1,0,0,0,2,0,0,0,0,0,592,21,0,0,0,0,0,0,0,0,1102,0,0,1446,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,1,1,1,0,0,0,0,0,0,9,19,73,0,1,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,660,124,4 +51,0,0,1,1,56,8,4,30,2,6,0,3,0,5,0,36,0,7,11,0,1,1,7,0,15,3,0,6,0,4,1,0,1,21,0,57,12,0,0,139,0,0,0,1,0,0,0,0,0,0,0,12,89,0,0,0,0,0,1,0,1,0,0,0,3,0,0,941,56,213,0,16,0,0,0,0,0,6,3,0,0,0,0,15,20,135,0,4,21,1,0,3,8,0,199,15,0,0,0,6,1,118,0,2,0,0,8428,0,0,0,0,11,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,8,0,0,0,4,0,0,0,0,0,1,0,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,119,0,81,0,0,0,15,21,224,164,122,0,0,0,0,1,0,3,0,0,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,52,294,2,0,0,225,0,420,0,0,0,91,28,0,0,0,0,0,0,0,0,0,95,0,0,0,0,20,0,0,0,0,11,147,19,0,0,30,0,0,0,0,0,122,0,0,5,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,15,0,0,0,0,9,78,37,0,20,9,0,0,0,0,0,132,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,141,656,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,407,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,26,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,123,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,32,0,27,0,0,0,2,4,26,94,44,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,42,3,0,0,41,0,154,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,14,4 +108,0,0,24,4,61,81,7,125,3,16,0,0,2,20,0,187,0,12,6,0,1,1,5,0,23,9,0,9,0,5,0,0,4,22,0,65,165,0,0,218,0,0,0,1,0,0,7,0,0,0,0,20,255,0,0,0,0,0,1,0,1,0,0,0,17,0,0,5515,61,487,0,27,0,0,0,0,0,30,3,0,0,0,0,8,21,1113,0,7,22,4,0,4,11,0,342,20,12,0,0,8,4,207,0,11,0,0,1474,0,0,0,0,41,30,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,33,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,800,0,256,0,0,0,23,60,237,260,769,0,0,0,0,1,0,4,0,0,0,0,0,0,2002,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,70,760,33,0,0,811,0,1500,0,3,0,285,25,0,0,0,0,0,0,2,0,0,443,1,0,0,0,13,0,0,0,0,20,191,94,0,0,34,0,0,0,0,0,1230,0,0,1050,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,63,1,1,1,0,56,0,0,0,0,33,87,360,0,37,9,0,0,0,0,0,278,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,7,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1387,1593,4 +0,0,0,0,0,8,40,0,48,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,8,130,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,44,0,331,15,0,0,0,4,0,226,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,32,0,0,0,0,3,21,203,54,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,86,0,58,0,0,0,52,3,0,0,0,0,0,0,0,0,0,113,0,0,0,0,2,0,0,0,0,0,91,88,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,104,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,4,4 +2,0,0,10,2,38,54,2,75,10,15,0,0,2,20,7,121,0,10,4,0,0,0,5,0,8,0,0,1,0,1,0,0,2,7,0,40,143,0,0,93,0,0,0,1,0,0,2,0,0,0,0,1,144,0,0,0,0,0,1,0,0,0,0,0,23,0,0,981,38,221,0,1,0,0,0,0,0,9,0,0,0,0,0,8,16,132,0,2,7,2,0,3,14,0,272,25,2,0,0,6,2,166,0,15,0,0,702,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4,10,10,10,0,0,0,116,0,284,0,0,0,0,3,206,155,138,0,0,0,0,1,0,3,0,0,0,0,0,0,629,0,6,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,259,46,456,12,0,0,481,0,1094,0,2,0,131,18,0,0,0,0,0,0,0,0,0,304,1,0,0,0,9,0,0,0,0,1,156,49,0,0,45,0,0,0,0,0,366,0,0,33,2,0,1,1,0,0,0,0,6,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,40,1,1,1,0,0,0,0,0,0,17,47,33,0,2,8,0,0,0,0,0,125,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,14,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1270,85,4 +61,0,0,2,1,61,12,4,59,2,13,0,3,0,5,0,45,0,7,9,0,1,1,7,0,27,12,0,8,0,4,1,0,1,23,0,62,12,0,0,179,0,0,0,1,0,0,0,0,0,0,0,24,104,0,0,0,0,0,1,0,1,0,0,0,7,0,0,1007,61,289,0,30,0,0,0,0,0,10,3,0,0,0,0,13,18,147,0,4,23,1,0,4,31,0,404,30,0,0,0,6,1,274,0,2,0,0,8780,0,0,0,0,18,11,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,27,10,10,10,0,0,0,158,0,98,0,0,0,27,51,234,357,135,0,0,0,0,1,0,3,0,0,0,0,0,0,536,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,297,3,0,0,248,0,420,0,0,0,105,39,0,0,0,0,0,0,0,0,0,144,0,0,0,0,18,0,0,0,0,23,152,72,0,0,60,0,0,0,0,0,713,0,0,6,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,19,0,0,0,0,9,85,39,0,43,9,0,0,0,0,0,188,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,168,1194,4 +2,0,0,6,0,46,6,0,43,1,6,0,0,6,5,0,517,0,6,2,0,0,0,7,0,12,0,0,4,0,1,0,0,0,12,898,46,6,0,0,60,0,0,0,1,0,0,4,0,0,0,0,3,190,0,0,0,0,0,1,0,0,0,0,0,4,0,0,5789,46,609,0,4,0,0,0,0,0,27,0,0,0,0,0,8,22,1083,0,0,12,0,0,0,0,0,192,20,10,0,0,2,0,570,0,1,1,0,1270,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,456,0,81,0,0,0,2,5,271,372,427,0,0,0,0,1,0,3,0,0,0,0,0,0,428,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,84,20,241,6,0,0,271,0,326,0,0,0,114,5,0,0,0,0,0,0,0,0,0,589,1,0,0,0,9,0,0,0,0,5,131,30,0,0,6,0,0,0,0,0,1437,1,0,159,6,0,1,1,0,0,0,0,10,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,1,0,0,0,0,1,58,255,0,5,12,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,531,44,4 +9,0,0,7,0,51,7,0,45,9,6,0,0,6,15,1,727,0,7,3,0,0,0,8,0,12,0,0,8,0,2,0,0,0,12,898,51,6,0,0,81,0,0,0,1,0,0,9,0,0,0,0,4,208,0,0,0,0,0,1,0,0,0,14,0,15,0,0,14552,51,858,0,9,0,0,0,0,0,38,0,0,0,0,0,10,30,2809,0,0,12,0,0,0,0,0,210,20,16,1,0,2,0,708,0,11,1,0,1632,0,0,0,0,9,0,1,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,7,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,34,12,12,12,0,0,0,1486,0,151,0,0,0,4,7,315,393,1437,0,0,0,0,1,0,3,0,0,0,0,0,0,2285,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,86,32,292,7,0,0,359,0,373,0,0,0,188,22,0,0,0,0,0,0,0,0,0,814,1,0,0,0,11,0,0,0,0,6,155,77,0,0,6,0,0,0,0,0,2349,1,0,2352,6,0,1,1,0,0,0,0,13,0,0,0,4,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,40,40,0,0,3,1,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,7,0,0,0,0,31,63,393,0,10,12,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1266,159,4 +0,0,0,4,0,28,6,0,8,0,2,0,0,2,7,0,13,0,6,3,0,0,0,5,0,8,0,0,3,0,2,0,0,0,1,0,28,7,0,0,22,0,0,0,1,0,0,0,0,0,0,0,2,71,0,0,0,0,0,1,0,0,0,0,0,3,0,0,896,28,34,0,3,0,0,0,0,0,3,0,0,0,0,0,7,12,116,0,0,1,0,0,0,0,0,77,5,0,0,0,2,0,35,0,0,0,0,450,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,75,0,41,0,0,0,2,4,181,57,83,0,0,0,0,1,0,3,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,32,10,91,4,0,0,88,0,220,0,0,0,9,5,0,0,0,0,0,0,0,0,0,44,0,0,0,0,8,0,0,0,0,2,110,4,0,0,0,0,0,0,0,0,72,0,0,1,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,2,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,3,0,0,0,0,1,29,17,0,4,9,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,456,30,4 +0,0,0,0,0,10,2,0,3,0,1,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,107,10,21,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,65,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,42,0,0,0,0,3,26,5,55,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,35,0,0,0,39,0,38,0,0,0,6,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,92,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,1,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,1,4 +6,0,0,9,0,59,181,0,121,6,15,0,0,2,21,2,66,0,63,4,0,0,0,7,0,8,24,0,9,0,9,4,0,0,23,0,59,206,0,0,282,0,0,0,1,0,0,7,1,0,0,0,13,214,0,0,0,0,0,1,0,0,0,5,0,16,0,0,9784,59,545,0,20,0,0,0,0,0,35,0,0,0,0,1,10,25,908,0,0,23,0,0,1,94,0,838,60,19,0,0,2,0,714,0,10,0,0,3558,0,0,0,0,3,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,860,0,163,0,0,0,24,50,247,1341,835,0,0,0,0,1,0,14,0,0,0,0,0,0,3519,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,25,454,9,0,0,627,0,1278,0,0,0,487,79,0,0,0,0,0,0,0,0,0,471,1,0,8,0,11,0,0,0,0,12,167,383,0,0,293,0,0,0,0,0,1567,0,0,2490,3,0,1,1,1,0,0,0,26,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,84,1,1,1,0,23,0,0,0,0,1,82,624,0,45,9,0,0,0,0,0,289,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1161,1485,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,2,0,0,418,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,32,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,117,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,37,0,33,0,0,0,2,4,26,94,53,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,157,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,27,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,14,4 +0,0,0,6,0,25,5,0,11,0,2,0,0,2,2,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,0,0,1,0,25,6,0,0,27,0,2,0,1,0,0,2,0,0,0,0,1,88,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1660,25,41,0,1,0,0,0,0,0,11,0,0,0,0,0,7,16,645,0,0,1,0,0,0,0,0,75,5,3,0,0,2,0,20,0,0,0,0,735,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,98,0,38,0,0,0,0,3,177,9,100,0,0,0,0,1,0,3,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,136,6,0,0,110,0,300,0,0,0,18,5,0,0,0,0,0,0,0,0,0,45,1,0,0,0,8,0,0,0,0,0,107,6,0,0,0,0,0,0,0,0,270,0,0,789,3,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,17,0,2,9,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,334,351,4 +73,0,0,0,6,88,17,24,117,5,15,0,3,0,7,0,103,0,7,20,0,6,6,6,0,24,18,0,25,0,17,1,0,6,39,0,94,12,0,0,186,0,0,0,1,0,0,1,0,0,0,0,34,159,0,0,0,0,0,1,0,1,0,0,0,5,0,0,3950,88,1019,0,56,0,0,0,0,0,11,18,0,0,0,0,13,20,701,0,24,39,6,0,2,28,0,441,35,1,0,0,6,6,345,0,4,0,0,2723,0,0,0,0,20,6,2,0,3,0,0,1,0,0,0,14,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,3,0,24,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,57,10,10,10,0,0,0,460,0,124,0,0,0,50,74,289,327,442,0,0,0,0,1,0,5,0,0,0,0,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,29,55,596,6,0,0,546,0,817,0,0,0,225,69,0,0,0,0,0,0,0,0,0,269,1,0,0,0,38,0,0,0,0,30,180,93,0,0,81,0,0,0,0,0,255,0,0,25,3,0,1,5,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,3,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,95,1,1,1,0,64,0,0,0,24,49,133,100,0,76,9,0,0,0,0,0,134,11,0,0,0,0,0,0,0,0,0,0,0,7,0,1,5,0,0,0,0,0,0,0,0,0,0,0,9,0,1,197,1482,4 +6,0,0,9,0,59,181,0,121,6,15,0,0,2,21,2,66,0,63,4,0,0,0,7,0,8,24,0,8,0,9,4,0,0,23,0,59,206,0,0,282,0,0,0,1,0,0,7,1,0,0,0,13,229,0,0,0,0,0,1,0,0,0,5,0,16,0,0,8099,59,546,0,19,0,0,0,0,0,36,0,0,0,0,1,10,25,743,0,0,23,0,0,1,94,0,838,60,19,0,0,2,0,713,0,10,0,0,2585,0,0,0,0,3,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,709,0,171,0,0,0,24,50,249,1343,684,0,0,0,0,1,0,14,0,0,0,0,0,0,2945,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,25,456,9,0,0,618,0,1176,0,0,0,478,138,0,0,0,0,0,0,0,0,0,471,1,0,8,0,11,0,0,0,0,12,158,383,0,0,293,0,0,0,0,0,1410,0,0,1841,3,0,1,1,1,0,0,0,26,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,86,1,1,1,0,22,0,0,0,0,1,82,624,0,44,9,0,0,0,0,0,289,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,992,1270,4 +83,0,0,2,1,53,25,4,118,6,24,0,4,0,12,0,38,0,7,6,0,1,1,5,0,29,9,0,5,0,4,0,0,1,18,0,54,15,0,0,480,0,0,0,1,0,0,0,0,0,0,0,25,120,0,0,0,0,0,1,0,1,0,0,0,26,0,0,1392,53,369,0,28,0,0,0,0,0,16,3,0,0,0,0,8,13,263,0,4,18,1,0,4,88,0,802,15,0,0,0,8,1,552,0,7,0,0,1275,0,0,0,0,36,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,217,0,109,0,0,0,27,58,218,785,202,0,0,0,0,1,0,4,0,0,0,0,0,0,798,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,93,269,4,0,0,242,0,325,0,0,0,105,21,0,0,0,0,0,0,0,0,0,228,0,0,0,0,13,0,0,0,0,24,138,230,0,0,30,0,0,0,0,0,735,0,0,19,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,33,0,0,0,0,9,72,42,0,38,9,0,0,0,0,0,325,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,269,1483,4 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 +21,0,0,0,0,34,24,0,36,2,5,0,2,0,4,0,20,0,6,6,0,0,0,6,0,10,3,0,6,0,2,1,0,0,6,0,34,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,71,0,0,0,0,0,1,0,0,0,0,0,3,0,0,717,34,116,0,9,0,0,0,0,0,13,0,0,0,0,0,11,16,141,0,0,6,0,0,2,25,0,299,15,0,0,0,4,0,171,0,2,0,0,635,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,95,0,47,0,0,0,6,12,193,169,99,0,0,0,0,1,0,3,0,0,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,134,0,0,0,146,0,247,0,0,0,61,33,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,124,53,0,0,30,0,0,0,0,0,98,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,11,0,0,0,0,1,40,22,0,13,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,35,4 +0,0,0,10,2,41,58,2,84,10,13,0,0,7,21,0,701,0,11,2,0,0,0,7,0,10,3,0,9,0,2,0,0,2,5,898,43,135,0,0,77,0,0,0,1,0,0,6,0,0,0,0,2,304,0,0,0,0,0,1,0,0,0,0,0,18,0,0,10930,41,858,0,8,0,0,0,0,0,35,0,0,0,0,0,8,39,1945,0,2,5,2,0,2,0,0,316,25,10,0,0,6,2,728,0,14,17,0,1526,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,904,0,281,0,0,0,5,10,297,480,1083,0,0,0,0,1,0,3,0,0,0,0,0,0,2608,0,192,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,335,51,567,12,0,0,598,0,1683,0,2,0,207,16,0,0,0,0,0,0,0,0,0,895,1,0,0,0,9,0,0,0,0,1,161,58,0,0,32,0,0,0,0,0,2331,1,0,1057,10,0,1,1,0,0,0,0,14,0,0,0,2,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,10,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,44,1,1,1,0,16,0,0,0,0,17,48,205,0,12,12,0,0,0,0,0,135,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,14,0,0,0,0,0,0,0,0,0,0,0,2,0,3,1839,83,4 +1,0,0,3,0,31,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,31,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,131,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1209,31,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,199,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,718,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,150,0,52,0,0,0,1,4,194,14,148,0,0,0,0,1,0,3,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,32,10,153,4,0,0,161,0,330,0,0,0,42,15,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,113,24,0,0,0,0,0,0,0,0,106,0,0,109,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,1,0,0,0,0,1,33,84,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,196,53,4 +1,0,0,3,0,28,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,117,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1082,28,57,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,195,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,482,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,145,0,50,0,0,0,1,4,182,14,143,0,0,0,0,1,0,3,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0,2,1,8,0,0,0,0,1,0,32,10,124,3,0,0,146,0,302,0,0,0,41,7,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,110,24,0,0,0,0,0,0,0,0,103,0,0,120,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,85,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,192,49,4 +1,0,0,3,0,28,5,0,21,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,136,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1141,28,59,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,179,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,483,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,138,0,49,0,0,0,1,4,182,14,136,0,0,0,0,1,0,3,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,2,1,3,0,0,0,0,1,0,32,10,128,3,0,0,155,0,312,0,0,0,48,9,0,0,0,0,0,0,0,0,0,56,1,0,0,0,8,0,0,0,0,1,110,31,0,0,0,0,0,0,0,0,97,0,0,116,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,183,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,179,50,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,83,0,57,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,4,4 +210,0,0,26,18,75,193,30,357,31,48,0,0,2,74,1,648,0,22,34,0,19,3,5,0,47,16,0,30,0,5,3,0,16,33,0,93,540,0,0,367,0,0,0,1,0,0,0,0,0,0,0,47,338,0,0,0,0,0,1,0,1,0,2,0,50,0,0,2059,75,2632,0,75,0,0,0,0,0,4,33,0,0,0,0,16,21,137,0,30,33,16,0,8,48,0,905,80,0,0,0,16,18,737,0,47,0,0,2758,0,0,0,0,40,21,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,19,0,0,0,8,0,0,0,0,0,7,0,59,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,3,0,0,0,12,2,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,54,10,10,10,0,0,0,148,0,183,0,0,0,53,67,342,603,164,0,0,0,0,1,0,4,0,0,0,0,0,0,1872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,772,174,1771,51,0,0,1733,0,2640,0,7,0,499,123,0,0,0,0,0,0,0,0,0,1345,0,0,0,0,61,0,0,0,0,51,277,107,0,0,187,0,0,0,1,0,14823,0,0,10,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,1,0,0,0,0,52,52,0,0,9,1,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,80,1,1,1,0,47,0,0,0,0,191,126,72,0,92,9,0,0,0,0,0,341,41,0,0,0,0,0,0,0,0,0,0,0,19,0,1,37,0,0,0,0,0,0,0,0,0,0,0,24,0,0,952,1070,4 +9,0,0,6,1,15,26,1,38,1,4,0,0,0,6,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,3,0,16,54,0,0,19,0,0,0,1,0,0,4,0,0,0,0,0,85,0,0,0,0,0,1,0,0,0,0,0,5,0,0,22602,15,125,0,1,0,0,0,0,0,17,0,0,0,0,0,1,6,1481,0,1,3,1,0,1,0,0,50,0,6,0,0,4,1,25,0,3,0,0,8301,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1464,0,148,0,0,0,0,3,64,37,1480,0,0,0,0,1,0,0,0,0,0,0,0,0,1612,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,114,17,918,8,0,0,757,0,753,0,1,0,570,20,0,0,0,0,0,0,0,0,0,147,1,0,0,0,2,0,0,0,0,0,602,21,0,0,0,0,0,0,0,0,1157,0,0,1666,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,1,1,1,0,0,0,0,0,0,9,19,73,0,1,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,717,120,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,2,0,0,404,11,27,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,123,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,156,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,347,14,4 +0,0,0,5,0,37,25,0,48,3,24,0,0,7,4,0,804,0,6,1,0,0,0,8,0,11,0,0,25,0,1,0,0,0,1,12532,37,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,729,0,0,0,0,0,1,0,0,0,0,0,2,0,0,42035,37,971,0,24,0,0,0,0,0,46,0,0,0,0,0,8,94,6711,0,0,1,0,0,0,0,0,367,25,1,0,0,2,0,892,0,0,90,0,4686,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1679,0,33,0,0,0,13,16,502,2093,1657,0,0,0,0,1,0,3,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,276,5,0,0,310,0,295,0,0,0,145,12,0,0,0,0,0,0,0,0,0,918,1,0,0,0,9,0,0,0,0,1,164,6,0,0,136,0,0,0,0,0,4704,1,0,985,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,62,0,0,0,0,1,38,208,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2382,22,4 +9,0,0,6,1,16,26,1,38,1,4,0,0,0,6,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,3,0,17,54,0,0,19,0,0,0,1,0,0,4,0,0,0,0,0,81,0,0,0,0,0,1,0,0,0,0,0,5,0,0,22743,16,125,0,1,0,0,0,0,0,17,0,0,0,0,0,1,6,1514,0,1,3,1,0,1,0,0,50,0,6,0,0,4,1,25,0,3,0,0,8522,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1498,0,150,0,0,0,0,3,68,37,1514,0,0,0,0,1,0,0,0,0,0,0,0,0,1618,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,113,17,923,8,0,0,756,0,747,0,1,0,566,26,0,0,0,0,0,0,0,0,0,147,1,0,0,0,2,0,0,0,0,0,599,21,0,0,0,0,0,0,0,0,1163,0,0,1694,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,45,1,1,1,0,0,0,0,0,0,9,20,73,0,1,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,726,122,4 +301,0,0,32,28,116,221,64,530,40,79,0,0,2,87,0,558,0,24,82,0,122,2,6,0,60,19,0,36,0,9,2,0,27,55,0,138,400,159,0,845,0,0,0,1,0,0,5,1,0,0,0,61,453,0,0,0,0,0,1,0,3,0,22,0,87,0,0,3154,116,3475,0,95,0,0,0,0,0,35,60,0,0,0,0,14,28,387,0,64,55,27,0,12,128,0,1617,90,11,0,0,18,28,1132,0,63,0,0,3173,0,0,0,0,87,38,0,0,38,0,0,1,0,0,0,21,0,0,0,0,0,0,0,28,0,0,0,18,0,0,0,2,0,7,0,75,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,3,0,0,0,0,0,1,13,0,0,0,0,0,0,0,20,6,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,103,10,10,10,0,0,0,386,0,248,0,0,0,70,99,370,1352,437,0,0,0,0,1,0,4,0,0,0,0,0,0,3432,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,0,0,0,0,1,0,884,413,2253,68,0,0,2218,0,4316,0,8,0,692,190,0,0,0,0,0,0,0,0,0,1501,1,0,2,0,212,0,0,0,0,53,354,329,0,0,192,0,0,0,0,0,10568,0,0,111,3,0,1,9,0,0,0,0,13,0,0,0,4,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1,0,0,0,0,3,20,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,119,1,1,1,0,79,0,0,0,0,177,193,196,0,117,9,0,0,0,0,0,611,32,0,0,0,0,0,0,1,0,0,0,0,23,0,4,50,0,0,0,0,0,0,0,0,117,0,0,210,0,6,1909,2329,4 +2,0,0,11,5,54,311,5,136,11,11,0,0,2,27,0,263,0,16,3,0,0,0,5,0,9,0,0,3,0,1,0,0,5,24,0,59,246,0,0,472,0,0,0,1,0,0,4,0,0,0,0,2,253,0,0,0,0,0,1,0,0,0,0,0,18,0,0,4058,54,591,0,3,0,0,0,0,0,20,0,0,0,0,0,7,17,182,0,5,24,5,0,5,0,0,262,5,8,0,0,12,5,477,0,19,0,0,6309,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,162,0,96,0,0,0,1,4,232,2597,174,0,0,0,0,1,0,3,0,0,0,0,0,0,4400,0,0,0,0,0,0,0,0,0,0,0,0,4,1,8,0,0,0,0,1,0,552,112,1133,19,0,0,1019,0,1533,0,5,0,312,92,0,0,0,0,0,0,0,0,0,766,1,0,0,0,8,0,0,0,0,1,208,44,0,0,0,0,729,0,0,0,707,0,0,86,3,0,1,1,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,55,1,1,1,0,1,0,0,0,0,41,83,237,0,4,9,0,0,0,0,0,171,5,0,0,0,0,0,0,0,0,0,0,0,6,0,1,13,0,0,0,0,0,0,0,0,0,0,0,5,0,0,276,170,4 +110,0,0,1,2,69,39,5,85,11,11,0,4,0,14,14,96,0,9,6,0,1,1,5,0,23,12,0,5,0,5,0,0,2,31,0,71,63,0,0,238,0,0,0,1,0,0,0,0,0,0,0,20,125,0,0,0,0,0,1,0,2,0,2,0,12,0,0,1536,69,366,0,22,0,0,0,0,0,15,3,0,0,0,0,8,13,213,0,5,31,2,0,5,28,0,381,15,0,0,0,10,2,310,0,8,0,0,4035,0,0,0,0,23,26,0,0,18,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,6,0,0,0,0,0,0,0,20,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,29,10,10,10,0,0,0,218,0,128,0,0,0,23,46,245,505,192,0,0,0,0,1,0,3,0,0,0,0,0,0,896,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,141,115,467,5,0,0,448,0,875,0,1,0,185,43,0,0,0,0,0,0,0,0,0,272,0,0,0,0,13,0,0,0,0,16,186,74,0,0,30,0,0,0,1,0,825,0,0,15,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,75,1,1,1,0,27,0,0,0,0,17,102,48,0,36,9,0,0,0,0,0,439,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,13,0,0,0,0,0,0,0,0,0,0,0,3,0,0,634,1113,4 +75,0,0,0,4,147,4,16,72,2,15,0,2,0,4,0,54,0,6,12,0,4,4,2,0,15,3,0,20,0,13,1,0,4,116,0,151,12,0,0,183,0,0,0,0,0,0,0,0,0,0,0,28,98,0,0,0,0,0,1,0,0,0,0,0,1,0,0,5854,147,1550,0,49,0,0,0,0,0,560,12,0,0,0,0,5,5,257,0,16,116,4,0,2,21,0,292,40,0,0,0,6,4,186,0,0,0,0,4030,0,0,0,0,9,26,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,2,0,15,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,24,0,0,0,0,0,0,221,0,296,0,0,0,41,46,234,344,238,0,0,0,0,0,0,0,0,0,0,0,0,0,4794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,27,646,6,0,0,1152,0,473,0,0,0,947,110,0,0,0,0,0,0,0,0,0,157,0,0,0,0,22,0,0,0,0,28,230,55,0,0,120,0,0,0,0,0,957,0,0,13,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,146,1,1,1,0,47,0,0,0,24,33,267,116,0,52,0,0,0,0,0,0,228,5,0,0,0,0,0,0,0,0,0,0,0,4,0,1,2,0,0,0,0,0,0,0,0,0,0,0,7,0,0,1973,922,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,70,0,46,0,0,0,36,6,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,35,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,4,4 +211,0,0,0,3,78,56,12,332,2,107,1,1,0,4,0,47,0,7,13,0,3,3,3,0,6,3,0,73,0,299,1,0,3,35,0,81,9,0,0,501,0,0,0,0,0,0,0,0,0,0,0,305,94,0,0,0,0,0,1,0,0,0,0,0,24,0,0,4756,78,1707,0,379,0,0,0,0,0,294,9,0,0,0,0,9,9,234,0,12,35,3,0,3,297,0,3609,405,0,0,0,4,3,1685,0,2,0,0,6518,0,0,0,0,85,92,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,76,0,0,0,75,0,0,0,0,0,1,0,11,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,72,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,213,0,218,0,0,0,604,609,157,2459,238,0,0,0,0,0,0,0,0,0,0,0,0,0,4007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,29,506,4,0,0,700,0,429,0,0,0,487,63,0,0,0,0,0,0,0,0,0,555,0,0,0,0,22,0,0,0,0,304,167,580,0,0,905,0,0,0,0,0,1324,0,0,299,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,78,1,1,1,0,674,0,0,0,590,25,116,35,0,382,0,0,0,0,0,0,632,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1200,2000,4 +34,0,0,7,7,54,63,25,123,10,14,0,0,2,19,4,355,0,9,17,0,6,6,6,0,25,14,0,8,0,3,0,0,7,15,0,61,219,0,0,166,0,0,0,1,0,0,3,2,0,0,0,20,157,0,0,0,0,0,1,0,0,0,9,0,22,0,0,1550,54,1120,0,27,0,0,0,0,0,24,18,0,0,0,0,10,20,247,0,25,15,7,0,2,11,0,270,20,9,1,1,4,7,363,0,13,0,0,1069,0,0,0,0,24,10,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,9,0,0,1,5,0,1,0,13,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,74,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,3,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,36,10,10,10,0,0,0,199,0,164,0,0,0,21,38,248,212,295,0,0,0,0,1,0,3,0,0,0,0,0,0,1154,0,0,0,0,0,0,0,0,0,0,0,0,3,1,3,0,0,0,0,1,0,139,34,689,14,0,0,766,0,2244,0,1,0,357,24,0,0,0,1,0,0,0,0,0,589,1,0,5,0,35,0,0,0,0,20,222,91,0,0,34,0,0,0,0,0,1275,0,0,38,2,0,1,2,0,0,0,0,11,0,0,0,3,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,61,1,1,1,0,9,0,0,0,0,57,76,49,0,42,8,0,0,0,0,0,478,93,0,0,0,0,0,0,0,0,0,0,0,8,0,1,14,0,0,0,0,0,0,0,0,0,0,0,13,0,2,614,217,4 +41,0,0,1,1,53,8,4,30,2,6,0,3,0,5,0,36,0,7,10,0,1,1,6,0,15,3,0,6,0,3,1,0,1,20,0,54,12,0,0,138,0,0,0,1,0,0,0,0,0,0,0,11,87,0,0,0,0,0,1,0,1,0,0,0,3,0,0,903,53,212,0,15,0,0,0,0,0,6,3,0,0,0,0,13,18,128,0,4,20,1,0,3,8,0,191,15,0,0,0,6,1,117,0,2,0,0,3817,0,0,0,0,9,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,114,0,75,0,0,0,13,19,217,156,116,0,0,0,0,1,0,3,0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,52,258,2,0,0,215,0,379,0,0,0,87,24,0,0,0,0,0,0,0,0,0,95,0,0,0,0,18,0,0,0,0,10,143,19,0,0,30,0,0,0,0,0,127,0,0,4,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,13,0,0,0,0,9,74,36,0,19,9,0,0,0,0,0,126,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,127,706,4 +3,0,0,5,6,14,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,20,54,2,0,96,0,0,0,1,0,0,2,0,0,0,0,1,92,0,0,0,0,0,1,0,0,0,0,0,25,0,0,472,14,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,41,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,357,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,59,0,46,0,0,0,2,10,48,223,97,0,0,0,0,1,0,1,0,0,0,0,0,0,429,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,116,36,391,11,0,0,403,0,602,0,1,0,103,6,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,110,74,0,0,57,0,0,0,0,0,536,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,1,1,1,0,6,0,0,0,0,49,23,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,11,0,0,217,37,4 +3,0,0,4,9,29,17,20,176,0,31,0,0,0,2,0,90,0,6,12,0,9,17,1,0,0,0,0,2,0,3,0,0,9,10,0,46,9,26,0,105,0,0,0,1,0,0,5,0,0,0,0,2,231,0,0,0,0,0,1,0,0,0,0,0,5,0,0,2430,29,899,0,5,0,0,0,0,0,23,27,0,0,0,0,2,10,530,0,20,10,9,0,2,50,0,471,85,7,0,0,4,9,298,0,0,0,0,492,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,7,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,13,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,24,8,8,8,0,0,8,349,8,100,0,0,0,4,7,81,370,356,0,0,0,0,1,0,0,0,0,0,1,1,0,960,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,16,10,511,13,0,0,581,0,611,0,0,0,201,27,0,0,0,0,0,0,6,0,0,322,1,0,0,0,39,0,0,0,0,3,120,136,0,0,222,0,0,0,0,0,462,0,0,579,0,0,1,0,1,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,6,0,0,0,0,310,56,343,0,5,0,0,0,0,0,0,170,13,0,0,0,0,0,0,0,0,0,0,0,17,0,1,4,0,0,0,0,0,0,0,0,0,0,0,16,0,2,442,35,4 +109,0,0,4,5,109,12,20,90,5,17,0,2,2,11,0,72,0,7,16,0,5,5,5,0,11,9,0,12,0,16,0,0,5,60,0,114,12,0,0,174,0,0,0,1,0,0,0,0,0,0,0,19,160,0,0,0,0,0,1,0,1,0,0,0,10,0,0,6516,109,1752,0,29,0,0,0,0,0,585,15,0,0,0,0,10,15,426,0,20,60,5,0,2,24,0,354,45,0,0,0,6,5,233,0,7,0,0,3309,0,0,0,0,23,18,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,1,0,13,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,327,0,225,0,0,0,33,52,327,306,326,0,0,0,0,1,0,3,0,0,0,0,0,0,5346,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,48,61,588,9,0,0,1105,0,599,0,0,0,826,55,0,0,0,0,0,0,0,0,0,213,0,0,0,0,31,0,0,0,0,19,202,51,0,0,120,0,0,0,0,0,1047,0,0,34,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,3,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,111,1,1,1,0,70,0,0,0,24,41,174,72,0,39,9,0,0,0,0,0,140,10,0,0,0,0,0,0,0,0,0,0,0,6,0,1,7,0,0,0,0,0,0,0,0,0,0,0,7,0,0,1890,1181,4 +114,0,0,12,1,106,61,1,181,335,31,0,0,5,351,0,111,0,9,3,0,0,0,6,1,25,24,0,30,0,19,7,0,1,53,0,107,69,4,0,1401,0,0,0,1,0,0,5,0,0,0,0,44,248,0,0,0,0,0,1,0,0,0,0,0,375,0,0,18431,106,958,0,71,0,0,0,0,0,99,0,0,0,0,0,8,23,2954,0,1,53,1,0,2,123,0,1302,20,10,0,0,4,1,1562,0,344,0,5,3432,0,0,0,0,69,72,2,0,1,0,0,1,0,0,0,91,0,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,2,0,22,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,0,0,0,0,90,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,18,10,10,10,0,0,0,2169,0,735,0,0,0,69,108,308,2551,2417,0,0,0,0,1,0,6,0,0,0,0,0,0,9153,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,2,0,138,367,1089,17,0,0,716,0,849,0,1,0,396,3314,0,0,0,0,0,0,0,0,0,749,1,0,0,0,10,0,0,0,0,37,216,389,0,0,32,0,0,0,0,0,2027,0,0,3152,3,0,1,3,0,0,0,0,14,0,0,0,4,0,0,0,0,0,335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,299,0,0,0,0,3,40,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,122,1,1,1,0,96,0,0,0,10,9,160,249,0,96,9,0,0,0,0,0,886,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,339,0,0,0,0,0,0,0,0,0,0,0,1,0,5,4314,812,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,195,55,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,84,0,58,0,0,0,50,3,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,4,4 +114,0,0,29,11,89,156,27,263,30,34,0,0,2,66,1,556,0,20,43,0,100,2,6,0,33,22,0,17,0,8,2,0,10,38,0,99,301,160,0,373,0,0,0,1,0,0,3,0,0,0,0,34,338,0,0,0,0,0,1,0,3,0,12,0,51,0,0,2402,89,1747,0,49,0,0,0,0,0,18,15,0,0,0,0,13,22,272,0,27,38,10,0,7,29,0,658,55,3,0,0,14,11,546,0,46,0,0,2684,0,0,0,0,45,13,1,0,32,0,0,1,0,0,0,22,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,29,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,5,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,281,0,222,0,0,0,42,72,336,528,293,0,0,0,0,1,0,6,0,0,0,0,0,0,2024,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1441,49,0,0,1489,0,2994,0,6,0,497,174,0,0,0,0,0,0,0,0,0,1098,1,0,0,0,151,0,0,0,0,29,284,132,0,0,125,0,0,0,0,0,10410,0,0,168,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,8,1,0,0,0,0,3,19,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,58,0,0,0,0,117,137,314,0,73,9,0,0,0,0,0,295,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,34,0,0,0,0,0,0,0,0,117,0,0,246,0,3,1601,1582,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,2,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,123,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1114,28,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,185,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,481,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,148,0,49,0,0,0,1,4,182,14,146,0,0,0,0,1,0,3,0,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,32,10,129,4,0,0,152,0,326,0,0,0,42,6,0,0,0,0,0,0,0,0,0,58,1,0,0,0,7,0,0,0,0,1,110,24,0,0,0,0,0,0,0,0,95,0,0,120,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,84,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,181,52,4 +0,0,0,4,0,16,2,0,15,0,3,0,0,0,3,0,20,0,6,2,0,0,0,1,4,0,0,0,5,0,1,0,0,0,4,0,16,6,4,0,18,0,0,0,1,0,0,2,0,0,0,0,4,67,0,0,0,0,0,1,0,0,0,1,0,4,0,0,321,16,55,0,6,0,0,0,0,0,6,0,0,0,0,0,2,6,42,0,0,4,0,0,0,0,0,35,0,2,0,0,2,0,14,0,1,0,0,250,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,1,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,60,0,35,0,0,0,8,15,35,21,67,0,0,0,0,1,0,0,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,10,4,92,4,0,0,136,0,319,0,0,0,73,10,0,0,0,0,0,0,0,0,0,49,1,0,0,0,7,0,0,0,0,1,98,54,0,0,0,0,0,0,0,0,212,0,0,21,0,0,1,0,1,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,5,0,0,0,0,1,20,168,0,6,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,68,37,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,15,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,15,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,4 +136,0,0,0,10,161,52,40,314,3,61,0,4,0,5,0,112,0,7,28,0,10,10,6,0,14,3,0,16,0,18,1,0,10,107,0,171,15,0,0,556,0,0,0,1,0,0,0,0,0,0,0,25,213,0,0,0,0,0,1,0,1,0,0,0,37,0,0,12548,161,3794,0,39,0,0,0,0,0,1166,30,0,0,0,0,13,18,421,0,40,107,10,0,4,205,0,1750,75,0,0,0,8,10,1147,0,2,0,0,7591,0,0,0,0,20,37,0,0,3,0,0,0,0,0,0,16,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,1,0,17,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,45,10,10,10,0,0,0,421,0,418,0,0,0,42,56,437,1504,433,0,0,0,0,1,0,3,0,0,0,0,0,0,9324,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,39,69,891,12,0,0,2041,0,722,0,0,0,1622,154,0,0,0,0,0,0,0,0,0,555,0,0,0,0,54,0,0,0,0,24,253,508,0,0,210,0,0,0,0,0,1074,0,0,32,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,0,0,3,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,164,1,1,1,0,74,0,0,0,0,81,278,123,0,43,9,0,0,0,0,0,708,15,0,0,0,0,0,0,0,0,0,0,0,11,0,1,5,0,0,0,0,0,0,0,0,0,0,0,17,0,0,3612,807,4 +26,0,0,6,0,45,36,0,52,30,35,0,0,7,8,0,986,0,7,1,0,0,0,8,0,10,12,0,22,0,5,0,0,0,3,6318,45,6,0,0,54,0,6,0,1,0,0,7,0,0,0,0,5,387,0,0,0,0,0,1,0,0,0,0,0,7,0,0,70842,45,1293,0,23,0,0,0,0,0,102,0,0,0,0,0,8,128,19647,0,0,3,0,0,0,0,0,409,25,12,0,0,2,0,1163,0,4,72,0,4644,0,0,0,0,10,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,15299,0,131,0,0,0,18,29,681,1452,15264,0,0,0,0,1,0,8,0,0,0,0,0,0,808,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,110,98,365,6,0,0,398,0,305,0,0,0,220,38,0,0,0,0,0,0,0,0,0,1131,1,0,0,0,9,0,0,0,0,2,151,62,0,0,172,0,0,0,0,0,5111,1,0,1084,36,0,1,1,1,0,0,0,17,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,36,365,0,0,0,4,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,53,0,0,0,0,1,48,225,0,37,12,0,1,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,34,0,0,0,0,0,0,0,0,0,0,0,0,0,7,2184,122,4 +117,0,0,29,11,91,157,27,272,30,38,0,0,2,66,2,744,0,20,44,0,99,2,6,0,33,22,0,18,0,8,2,0,11,38,0,101,301,160,0,395,0,0,0,1,0,0,3,0,0,0,0,34,341,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2404,91,1959,0,52,0,0,0,0,0,21,15,0,0,0,0,13,22,268,0,27,38,11,0,8,37,0,730,70,3,0,0,14,11,643,0,46,0,0,2156,0,0,0,0,47,16,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,60,10,10,10,0,0,0,304,0,285,0,0,0,42,74,392,594,289,0,0,0,0,1,0,6,0,0,0,0,0,0,2289,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1449,49,0,0,1497,0,2951,0,6,0,499,399,0,0,0,0,0,0,0,0,0,1301,1,0,0,0,151,0,0,0,0,32,283,146,0,0,155,0,0,0,0,0,10634,0,0,121,4,0,1,5,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,1,0,0,110,110,0,0,7,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,96,1,1,1,0,64,0,0,0,0,165,139,314,0,74,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,187,0,2,1787,1629,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,61,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,30,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,0,0,0,60,0,60,0,0,0,30,2,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,29,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,76,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,4,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,2,0,0,404,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,25,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,134,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,44,3,0,0,47,0,152,0,0,0,5,2,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,14,4 +0,0,0,6,0,39,58,0,104,1,38,0,0,8,3,0,926,0,6,0,0,0,0,8,0,11,0,0,44,0,1,0,0,0,1,14694,39,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,521,0,0,0,0,0,1,0,0,0,0,0,2,0,0,91767,39,1268,0,43,0,0,0,0,0,113,0,0,0,0,0,8,324,11729,0,0,1,0,0,0,0,0,580,30,2,0,0,2,0,1115,0,0,228,0,7262,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,4900,0,37,0,0,0,27,30,1454,6393,4831,0,0,0,0,1,0,3,0,0,0,0,0,0,6377,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,22,396,6,0,0,405,0,356,0,0,0,227,78,0,0,0,0,0,0,0,0,0,1143,1,0,0,0,8,0,0,0,0,1,179,80,0,0,299,0,0,0,0,0,6068,1,0,8227,55,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,55,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,123,0,0,0,0,1,40,289,0,44,12,0,1,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3587,146,4 +0,0,0,6,0,39,58,0,105,0,37,0,0,8,3,0,965,0,6,1,0,0,0,8,0,10,0,0,42,0,1,0,0,0,1,13788,39,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,511,0,0,0,0,0,1,0,0,0,0,0,2,0,0,90533,39,1306,0,40,0,0,0,0,0,113,0,0,0,0,0,8,290,12001,0,0,1,0,0,0,0,0,563,30,2,0,0,2,0,1155,0,0,215,0,8213,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,4728,0,37,0,0,0,24,27,1367,6114,4663,0,0,0,0,1,0,3,0,0,0,0,0,0,5840,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,19,394,6,0,0,407,0,364,0,0,0,231,49,0,0,0,0,0,0,0,0,0,1182,1,0,0,0,9,0,0,0,0,1,180,80,0,0,288,0,0,0,0,0,6435,1,0,7801,55,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,55,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,111,0,0,0,0,1,40,291,0,41,12,0,1,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3783,194,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,0,0,0,78,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,48,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,36,4 +16,0,2,0,1,47,18,0,348,1,8,0,5,0,3,0,4049,0,6,7,0,1,0,7,0,8,0,0,3,0,2,0,0,0,8,26,47,21,0,0,109,0,0,0,1,0,0,0,0,0,0,0,2,140,0,0,0,0,0,1,0,0,0,0,0,5,0,0,677,47,4426,0,3,0,0,0,0,0,5,0,0,0,0,0,11,16,114,0,0,8,0,0,4,28,0,298,0,0,0,0,10,1,4213,0,0,0,0,3656,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,618,10,10,10,0,0,0,91,0,55,0,0,0,2,4,200,197,106,0,0,0,0,1,0,3,0,0,0,8337,3,1,248,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,116,10475,193,1,0,0,187,0,549,0,0,0,47,307,0,0,0,0,0,0,0,0,0,4437,0,0,0,0,15,0,0,0,0,2,126,81,0,2,0,0,0,0,0,0,8324,0,0,1,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,3,0,0,0,0,3,55,26,0,4,9,0,0,0,0,0,129,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,118,42,4 +5,0,0,0,0,12,3,0,5,0,1,0,1,0,2,0,12,0,6,2,0,0,0,0,0,2,0,0,2,0,1,0,0,0,4,0,12,12,0,0,25,0,0,0,0,0,0,0,0,0,0,0,2,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,57,12,26,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,4,0,0,1,0,0,13,0,0,0,0,4,0,14,0,0,0,0,107,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,20,0,19,0,0,0,2,5,27,13,23,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,21,60,0,0,0,61,0,113,0,0,0,27,1,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,3,104,4,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,2,0,0,0,0,1,16,4,0,5,0,0,0,0,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,4 +48,0,0,1,1,52,16,4,71,3,16,0,4,0,6,0,37,0,7,10,0,1,1,6,0,14,3,0,4,0,4,1,0,1,18,0,53,15,0,0,203,0,0,0,1,0,0,0,0,0,0,0,11,103,0,0,0,0,0,1,0,1,0,0,0,10,0,0,933,52,279,0,13,0,0,0,0,0,16,3,0,0,0,0,13,18,136,0,4,18,1,0,5,46,0,487,30,0,0,0,8,1,302,0,2,0,0,2633,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,135,0,86,0,0,0,14,21,216,413,126,0,0,0,0,1,0,3,0,0,0,0,0,0,535,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,59,259,4,0,0,227,0,394,0,0,0,93,24,0,0,0,0,0,0,0,0,0,157,0,0,0,0,18,0,0,0,0,10,136,112,0,0,60,0,0,0,0,0,691,0,0,7,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,15,0,0,0,0,9,71,34,0,17,9,0,0,0,0,0,225,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,266,719,4 +219,0,0,0,3,80,52,12,314,2,104,1,1,0,4,0,47,0,7,16,0,3,3,2,0,6,3,0,76,0,303,1,0,3,35,0,83,9,0,0,464,0,0,0,0,0,0,0,0,0,0,0,309,120,0,0,0,0,0,1,0,0,0,0,0,20,0,0,4677,80,1654,0,386,0,0,0,0,0,278,9,0,0,0,0,11,11,213,0,12,35,3,0,3,279,0,3500,410,0,0,0,4,3,1599,0,2,0,0,3211,0,0,0,0,86,88,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,79,0,0,0,78,0,0,0,0,0,1,0,17,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,73,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,12,0,0,0,0,0,0,208,0,187,0,0,0,612,617,160,2351,234,0,0,0,0,0,0,0,0,0,0,0,0,0,3879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,29,608,4,0,0,685,0,458,0,0,0,466,60,0,0,0,0,0,0,0,0,0,530,0,0,0,0,24,0,0,0,0,308,168,531,0,0,916,0,0,0,0,0,1312,0,0,303,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,80,1,1,1,0,685,0,0,0,596,25,118,35,0,389,0,0,0,0,0,0,587,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,1,0,0,0,0,0,0,0,0,0,0,5,0,0,1121,1955,4 +35,1,0,10,1,41,7,4,100,30,20,0,12,0,47,0,48,0,6,6,0,1,1,5,3,20,9,0,16,0,4,0,0,1,19,0,42,46,13,0,477,0,0,0,1,0,0,2,0,0,0,0,25,119,0,0,0,0,0,1,0,0,0,0,0,31,0,0,1275,41,353,0,37,0,0,0,0,0,11,3,0,0,0,0,6,10,87,0,4,19,1,0,0,0,0,158,0,3,0,0,2,1,261,0,37,0,0,1182,0,0,0,0,56,15,0,12,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,11,12,12,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,108,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1,0,124,0,0,0,0,0,0,160,0,102,0,0,0,33,73,77,189,131,0,0,0,0,1,0,79,0,0,0,0,0,0,1417,0,0,0,0,0,0,0,0,0,24,0,0,1,0,0,0,0,0,0,1,0,8,58,314,12,0,0,275,0,562,0,0,0,149,49,0,0,0,0,0,0,0,0,0,240,1,0,0,0,16,0,0,0,0,26,151,46,0,0,0,0,42,0,0,0,608,0,0,94,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,70,0,0,0,6,9,61,179,0,49,0,0,0,0,0,0,797,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,30,0,0,0,0,0,0,1,0,0,0,0,2,0,2,265,158,4 +0,0,0,5,0,36,24,0,47,3,23,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12385,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,721,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40152,36,910,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6653,0,0,1,0,0,0,0,0,359,25,2,0,0,2,0,836,0,0,87,0,4352,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1445,0,34,0,0,0,12,15,492,2061,1423,0,0,0,0,1,0,3,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,278,5,0,0,309,0,295,0,0,0,147,11,0,0,0,0,0,0,0,0,0,859,1,0,0,0,9,0,0,0,0,1,165,7,0,0,130,0,0,0,0,0,4668,1,0,1032,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,196,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2460,31,4 +34,0,0,23,6,31,84,15,262,7,83,0,0,0,13,0,199,0,13,10,0,3,0,4,0,1,0,0,1,0,1,0,0,6,19,0,37,399,0,0,380,0,0,0,0,0,0,0,0,0,0,0,1,144,0,0,0,0,0,1,0,0,0,17,0,15,0,0,973,31,684,0,3,0,0,0,0,0,0,9,0,0,0,0,4,4,163,0,15,19,6,0,4,152,0,1347,355,0,0,0,8,6,694,0,5,0,0,730,0,0,0,0,80,18,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,8,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,17,0,0,0,0,0,0,149,0,80,0,0,0,1,4,98,773,181,0,0,0,0,0,0,0,0,0,0,0,0,0,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,113,753,26,0,0,738,0,985,0,3,0,267,21,0,0,0,0,0,0,0,0,0,654,0,0,0,0,17,0,0,0,0,2,183,262,0,0,1062,0,0,0,0,0,1267,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,6,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,53,1,1,1,0,1,0,0,0,0,49,56,22,0,3,0,0,0,0,0,0,421,25,0,0,0,0,0,0,0,0,0,0,0,6,0,1,9,0,0,0,0,0,0,0,0,0,0,0,9,0,0,521,154,4 +205,0,0,26,17,76,193,26,346,33,45,0,0,2,74,1,644,0,22,31,0,18,2,6,0,44,16,0,27,0,5,3,0,16,33,0,93,540,0,0,371,0,0,0,1,0,0,0,0,0,0,0,44,333,0,0,0,0,0,1,0,0,0,2,0,52,0,0,2067,76,2473,0,70,0,0,0,0,0,4,30,0,0,0,0,16,21,141,0,26,33,16,0,8,48,0,892,80,0,0,0,16,17,725,0,49,0,0,2885,0,0,0,0,37,21,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,19,0,0,0,7,0,0,0,0,0,7,0,58,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,1,0,0,0,0,0,0,12,0,0,0,3,0,0,0,12,2,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,52,10,10,10,0,0,0,150,0,168,0,0,0,50,64,345,579,161,0,0,0,0,1,0,4,0,0,0,0,0,0,1841,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,773,176,1674,50,0,0,1702,0,2620,0,7,0,491,151,0,0,0,0,0,0,0,0,0,1327,0,0,0,0,57,0,0,0,0,45,277,107,0,0,187,0,0,0,1,0,14910,0,0,10,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,1,0,0,0,0,53,53,0,0,13,1,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,80,1,1,1,0,44,0,0,0,0,185,126,72,0,86,9,0,0,0,0,0,343,40,0,0,0,0,0,0,0,0,0,0,0,18,0,1,39,0,0,0,0,0,0,0,0,0,0,0,21,0,0,923,1174,4 +7,0,0,6,1,31,228,1,1240,29,10,0,0,0,46,0,4030,0,8,2,0,0,0,1,0,0,0,0,3,0,2,0,0,1,13,0,32,69,0,0,157,0,0,0,1,0,0,9,0,0,0,0,1,333,0,0,0,0,0,1,0,0,0,22,0,43,0,0,4878,31,4551,0,5,0,0,0,0,0,33,0,0,0,1,0,2,14,268,0,1,13,1,0,2,13,0,180,20,11,0,0,4,1,537,0,35,0,0,2417,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,199,201,7,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,6,0,0,0,0,37,0,28,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,394,0,0,0,0,0,0,260,0,197,0,0,0,2,5,69,167,716,0,0,0,0,1,0,0,0,0,0,0,0,0,12462,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,118,76,778,7,0,0,535,0,1013,0,1,0,313,40,0,0,0,0,0,0,0,0,0,5562,1,0,0,0,3,0,0,0,0,2,166,209,0,0,37,0,0,0,0,0,8263,0,0,164,0,0,1,0,1,0,0,0,18,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,34,1,1,1,0,5,0,0,0,0,9,45,775,0,5,0,0,0,0,0,0,176,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,31,0,0,0,0,0,0,0,0,0,0,0,1,0,8,583,299,4 +831,0,0,37,33,272,388,48,1567,52,330,1,23,2,92,0,564,0,21,68,0,51,3,8,0,67,15,0,92,0,446,5,0,33,196,0,305,373,0,0,2504,0,7,0,1,0,0,12,1,0,0,0,510,553,0,0,0,0,0,1,0,0,0,20,0,199,0,0,13865,272,8201,0,600,0,0,0,0,0,570,81,0,0,0,0,21,43,1421,0,48,196,33,0,39,999,0,10128,795,16,0,0,64,33,5726,0,72,2,0,10134,0,0,0,0,255,232,4,0,8,0,0,1,0,0,0,34,0,0,0,0,0,0,0,165,0,0,0,147,0,0,0,0,0,39,0,134,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,49,4,1,1,0,0,0,1,0,0,0,0,0,0,54,0,0,0,0,0,0,0,44,13,0,0,0,0,163,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,107,10,10,10,0,0,0,955,0,732,0,0,0,959,985,710,7606,1090,0,0,0,0,1,0,8,0,0,0,0,0,0,12356,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,1,4,798,449,3032,80,0,0,3627,0,3181,0,6,0,1915,256,0,0,0,0,0,0,4,0,0,2988,1,0,4,0,130,0,0,0,0,506,455,2345,0,0,1787,0,0,0,0,0,11324,0,0,1651,3,0,1,14,1,0,0,0,33,0,0,0,5,0,0,0,0,0,49,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,1,0,0,0,3,1250,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,6,281,1,1,1,0,997,0,0,0,872,265,501,438,0,616,9,0,0,0,0,0,2630,56,0,0,0,0,0,0,0,0,0,0,0,34,0,1,72,0,0,0,0,0,0,0,0,0,0,0,46,0,10,4756,5373,4 +2,0,0,3,0,27,5,0,13,0,2,0,0,2,2,0,29,0,6,2,0,0,0,7,0,9,3,0,3,0,1,0,0,0,3,0,27,6,0,0,20,0,1,0,1,0,0,1,0,0,0,0,2,88,0,0,0,0,0,1,0,0,0,0,0,2,0,0,699,27,57,0,3,0,0,0,0,0,6,0,0,0,0,0,8,15,143,0,0,3,0,0,0,0,0,78,5,1,0,0,2,0,59,0,0,0,0,423,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,90,0,43,0,0,0,1,8,182,18,92,0,0,0,0,1,0,3,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,111,3,0,0,132,0,253,0,0,0,43,4,0,0,0,0,0,0,0,0,0,59,1,0,0,0,9,0,0,0,0,2,107,27,0,0,0,0,0,0,0,0,115,0,0,16,3,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,76,0,7,9,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,27,4 +0,0,0,5,0,34,6,0,36,1,5,0,0,6,4,0,570,0,6,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,898,34,6,0,0,41,0,1,0,1,0,0,1,0,0,0,0,1,148,0,0,0,0,0,1,0,0,0,0,0,2,0,0,17682,34,626,0,2,0,0,0,0,0,12,0,0,0,0,0,8,18,4163,0,0,1,0,0,0,0,0,186,20,2,0,0,2,0,611,0,0,1,0,2872,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,543,0,30,0,0,0,0,3,258,1156,530,0,0,0,0,1,0,3,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,84,19,179,5,0,0,190,0,198,0,0,0,47,2,0,0,0,0,0,0,0,0,0,633,1,0,0,0,9,0,0,0,0,0,117,8,0,0,6,0,0,0,0,0,3287,1,0,759,6,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,1,0,0,0,0,1,35,130,0,3,12,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1847,25,4 +61,0,0,2,1,60,8,4,34,2,6,0,3,0,5,0,44,0,7,11,0,1,1,7,0,27,12,0,11,0,4,1,0,1,22,0,61,12,0,0,137,0,0,0,1,0,0,0,0,0,0,0,24,99,0,0,0,0,0,1,0,1,0,0,0,3,0,0,994,60,260,0,33,0,0,0,0,0,6,3,0,0,0,0,15,20,142,0,4,22,1,0,3,8,0,228,15,0,0,0,6,1,166,0,2,0,0,11802,0,0,0,0,20,9,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,8,0,0,0,4,0,0,0,0,0,1,0,9,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,154,0,99,0,0,0,27,51,228,198,133,0,0,0,0,1,0,3,0,0,0,0,0,0,457,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,52,294,3,0,0,237,0,404,0,0,0,94,46,0,0,0,0,0,0,0,0,0,107,0,0,0,0,20,0,0,0,0,23,151,19,0,0,30,0,0,0,0,0,144,0,0,5,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,20,0,0,0,0,9,83,38,0,46,9,0,0,0,0,0,136,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,170,1112,4 +3,0,0,5,0,37,7,0,19,1,5,0,0,2,6,0,62,0,7,3,0,0,0,7,0,8,3,0,8,0,2,0,0,0,4,0,37,16,0,0,31,0,0,0,1,0,0,1,0,0,0,0,2,90,0,0,0,0,0,1,0,0,0,0,0,5,0,0,3024,37,108,0,8,0,0,0,0,0,5,0,0,0,0,0,9,16,870,0,0,4,0,0,0,0,0,87,5,0,0,0,2,0,118,0,2,0,0,1129,0,0,0,0,6,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,10,10,10,0,0,0,503,0,46,0,0,0,2,8,196,22,462,0,0,0,0,1,0,3,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,33,14,167,5,0,0,188,0,362,0,0,0,80,7,0,0,0,0,0,0,0,0,0,108,1,0,0,0,10,0,0,0,0,2,130,54,0,0,0,0,0,0,0,0,132,0,0,8,3,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,7,0,0,0,0,1,41,138,0,12,9,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,119,4 +0,0,0,5,0,35,25,0,47,3,24,0,0,7,4,0,729,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12513,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,725,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39876,35,895,0,24,0,0,0,0,0,46,0,0,0,0,0,8,94,6422,0,0,1,0,0,0,0,0,367,25,1,0,0,2,0,817,0,0,90,0,4563,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1433,0,32,0,0,0,13,16,490,2091,1412,0,0,0,0,1,0,3,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,281,5,0,0,305,0,302,0,0,0,145,12,0,0,0,0,0,0,0,0,0,842,1,0,0,0,9,0,0,0,0,1,162,6,0,0,136,0,0,0,0,0,4560,1,0,996,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,62,0,0,0,0,1,36,208,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2452,23,4 +119,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,556,0,20,45,0,98,2,6,0,33,22,0,17,0,8,2,0,10,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,344,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2599,89,1768,0,49,0,0,0,0,0,23,15,0,0,0,0,13,22,303,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,583,0,46,0,0,2429,0,0,0,0,46,16,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,20,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,295,0,231,0,0,0,42,74,334,591,306,0,0,0,0,1,0,6,0,0,0,0,0,0,2162,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1445,49,0,0,1494,0,3003,0,6,0,500,117,0,0,0,0,0,0,0,0,0,1111,1,0,0,0,151,0,0,0,0,30,281,148,0,0,155,0,0,0,0,0,10422,0,0,172,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,10,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,63,0,0,0,0,115,137,322,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,187,0,4,1657,1623,4 +6,0,0,10,0,65,180,0,122,6,15,0,0,2,38,3,66,0,63,4,0,0,0,9,0,8,24,0,14,0,12,4,0,0,24,0,65,206,0,0,319,0,0,0,1,0,0,7,1,0,0,0,16,279,0,0,0,0,0,1,0,0,0,5,0,16,0,0,8728,65,571,0,28,0,0,0,0,0,37,0,0,0,0,1,12,27,865,0,0,24,0,0,1,94,0,861,60,20,0,0,2,0,754,0,10,0,0,4815,0,0,0,0,4,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,796,0,176,0,0,0,30,53,284,1376,775,0,0,0,0,1,0,14,0,0,0,0,0,0,2726,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,26,438,11,0,0,658,0,1558,0,0,0,503,71,0,0,0,0,0,0,0,0,0,489,1,0,9,0,13,0,0,0,0,15,165,404,0,0,293,0,0,0,0,0,1374,0,0,1784,3,0,1,1,1,0,0,0,27,0,0,0,2,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,114,1,1,1,0,39,0,0,0,0,1,89,720,0,53,9,0,1,0,0,0,305,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1215,1483,4 +151,0,0,29,10,85,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,3,0,9,33,0,95,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,355,0,0,0,0,0,1,0,3,0,12,0,83,0,0,2846,85,1522,0,39,0,0,0,0,0,72,12,0,0,0,0,13,22,392,0,22,33,9,0,10,198,0,1932,100,3,0,0,14,10,1304,0,46,0,0,2026,0,0,0,0,51,40,0,0,31,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,327,0,239,0,0,0,36,75,300,1649,357,0,0,0,0,1,0,5,0,0,0,0,0,0,2732,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1439,48,0,0,1559,0,2896,0,6,0,566,48,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,280,551,0,0,215,0,0,0,0,0,9924,0,0,178,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,75,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1619,1657,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,2,0,0,404,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,130,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,49,3,0,0,47,0,145,0,0,0,5,1,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +0,0,0,6,0,39,58,0,104,0,37,0,0,8,3,0,926,0,6,1,0,0,0,8,0,11,0,0,44,0,1,0,0,0,1,12269,39,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,483,0,0,0,0,0,1,0,0,0,0,0,2,0,0,86537,39,1267,0,43,0,0,0,0,0,113,0,0,0,0,0,8,314,11531,0,0,1,0,0,0,0,0,574,30,2,0,0,2,0,1116,0,0,225,0,8011,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,4382,0,38,0,0,0,27,30,1429,5969,4314,0,0,0,0,1,0,3,0,0,0,0,0,0,5491,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,19,364,6,0,0,381,0,355,0,0,0,202,60,0,0,0,0,0,0,0,0,0,1142,1,0,0,0,9,0,0,0,0,1,159,80,0,0,293,0,0,0,0,0,6297,1,0,7382,55,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,55,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,123,0,0,0,0,1,40,279,0,44,12,0,1,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3733,146,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,0,0,0,77,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,45,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,1,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,36,4 +0,0,0,5,0,35,25,0,47,3,24,0,0,7,4,0,729,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12365,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,737,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39562,35,895,0,24,0,0,0,0,0,46,0,0,0,0,0,8,96,6446,0,0,1,0,0,0,0,0,367,25,1,0,0,2,0,817,0,0,90,0,4528,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1373,0,32,0,0,0,13,16,495,2091,1352,0,0,0,0,1,0,3,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,275,5,0,0,306,0,310,0,0,0,146,13,0,0,0,0,0,0,0,0,0,842,1,0,0,0,9,0,0,0,0,1,163,6,0,0,136,0,0,0,0,0,4591,1,0,989,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,62,0,0,0,0,1,36,208,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2426,22,4 +21,0,0,0,0,34,24,0,36,2,5,0,2,0,4,0,20,0,6,6,0,0,0,6,0,10,3,0,5,0,2,1,0,0,6,0,34,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,79,0,0,0,0,0,1,0,0,0,0,0,3,0,0,703,34,115,0,8,0,0,0,0,0,13,0,0,0,0,0,11,16,132,0,0,6,0,0,2,25,0,298,15,0,0,0,4,0,170,0,2,0,0,608,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,95,0,47,0,0,0,6,12,193,169,99,0,0,0,0,1,0,3,0,0,0,0,0,0,371,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,133,0,0,0,146,0,247,0,0,0,61,33,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,124,53,0,0,30,0,0,0,0,0,97,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,10,0,0,0,0,1,40,22,0,12,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,35,4 +403,0,0,32,28,117,277,64,811,40,135,0,0,2,87,1,769,0,24,83,0,121,2,6,0,63,19,0,33,0,8,2,0,27,54,0,139,400,160,0,1425,0,0,0,1,0,0,5,1,0,0,0,62,484,0,0,0,0,0,1,0,3,0,20,0,143,0,0,4752,117,4197,0,96,0,0,0,0,0,113,60,0,0,0,0,14,28,674,0,64,54,27,0,12,408,0,3689,90,10,1,0,18,28,2596,0,63,0,0,4486,0,0,0,0,106,101,0,0,39,0,0,1,0,0,0,20,0,0,0,0,0,0,0,28,0,0,0,17,0,0,0,2,0,6,0,75,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,3,0,0,0,0,0,1,14,0,0,0,0,0,0,0,20,6,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,105,10,10,10,0,0,0,587,0,428,0,0,0,71,118,434,3262,610,0,0,0,0,1,0,4,0,0,0,0,0,0,5347,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,884,413,2301,68,0,0,2362,0,4251,0,8,0,830,596,0,0,0,0,0,0,0,0,0,2106,1,0,2,0,212,0,0,0,0,58,357,1061,0,0,192,0,0,0,0,0,11104,0,0,174,3,0,1,9,0,0,0,0,13,0,0,0,4,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,66,66,0,0,14,1,0,0,0,0,3,38,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,121,1,1,1,0,121,0,0,0,0,233,193,211,0,116,9,0,0,0,0,0,1371,32,0,0,0,0,0,0,1,0,0,0,0,23,0,3,50,0,0,0,0,0,0,0,0,117,0,0,199,0,5,2651,2457,4 +0,0,0,5,0,36,25,0,47,3,24,0,0,7,4,0,748,0,6,1,0,0,0,8,0,11,0,0,25,0,1,0,0,0,1,12448,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,725,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40678,36,914,0,24,0,0,0,0,0,46,0,0,0,0,0,8,94,6543,0,0,1,0,0,0,0,0,365,25,1,0,0,2,0,836,0,0,86,0,4858,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1473,0,33,0,0,0,13,16,495,2084,1452,0,0,0,0,1,0,3,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,281,5,0,0,308,0,304,0,0,0,144,12,0,0,0,0,0,0,0,0,0,861,1,0,0,0,9,0,0,0,0,1,163,6,0,0,134,0,0,0,0,0,4628,1,0,985,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,208,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2415,23,4 +28,0,0,1,1,57,9,4,35,3,6,0,4,0,6,0,45,0,7,8,0,1,1,7,0,23,12,0,6,0,1,1,0,1,22,0,58,15,0,0,141,0,0,0,1,0,0,0,0,0,0,0,17,79,0,0,0,0,0,1,0,1,0,0,0,3,0,0,813,57,234,0,21,0,0,0,0,0,6,3,0,0,0,0,12,17,136,0,4,22,1,0,4,8,0,199,15,0,0,0,8,1,157,0,2,0,0,816,0,0,0,0,10,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,1,0,6,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,27,10,10,10,0,0,0,140,0,100,0,0,0,17,37,224,169,119,0,0,0,0,1,0,3,0,0,0,0,0,0,390,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,35,65,248,4,0,0,233,0,368,0,0,0,96,26,0,0,0,0,0,0,0,0,0,112,0,0,0,0,17,0,0,0,0,16,149,20,0,0,30,0,0,0,0,0,145,0,0,2,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,9,0,0,0,0,9,80,38,0,34,9,0,0,0,0,0,129,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,1,0,0,0,0,0,0,0,0,0,0,2,0,0,300,809,4 +151,0,0,29,10,84,188,22,425,30,74,0,0,2,63,0,375,0,20,16,0,6,2,6,0,26,21,0,14,0,7,4,0,9,33,0,94,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,338,0,0,0,0,0,1,0,3,0,12,0,83,0,0,3029,84,1523,0,39,0,0,0,0,0,72,12,0,0,0,0,13,22,384,0,22,33,9,0,10,198,0,1932,100,4,0,0,14,10,1304,0,46,0,0,2098,0,0,0,0,53,40,0,0,31,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,327,0,236,0,0,0,36,75,296,1649,357,0,0,0,0,1,0,5,0,0,0,0,0,0,2747,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1402,48,0,0,1557,0,2897,0,6,0,567,61,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,280,551,0,0,215,0,0,0,0,0,9917,0,0,182,3,0,1,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,75,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1599,1654,4 +0,0,0,0,0,9,3,0,4,0,2,0,1,0,2,0,13,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,25,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,33,9,25,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,1,0,0,1,0,0,44,0,0,0,0,4,0,25,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,32,0,0,0,0,3,22,11,19,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,36,0,0,0,40,0,76,0,0,0,6,34,0,0,0,0,0,0,0,0,0,31,0,0,0,0,2,0,0,0,0,0,93,2,0,0,0,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,11,4 +11,0,0,9,1,50,50,1,125,7,15,1,0,2,13,0,69,0,9,4,0,0,0,8,0,10,0,0,11,0,1,0,0,1,17,0,51,54,0,0,163,0,0,0,1,0,0,16,3,0,0,0,3,352,0,0,0,0,0,1,0,0,0,20,0,11,0,0,7738,50,337,0,13,0,0,0,0,0,61,0,0,0,0,5,11,39,1371,0,1,17,1,0,1,47,0,518,20,33,1,0,4,1,339,0,8,0,0,1342,0,0,0,0,33,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,8,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,10,10,10,0,0,0,1117,0,261,0,0,0,2,7,233,426,1032,0,0,0,0,1,0,3,0,0,0,0,0,0,2414,0,0,0,0,0,0,0,0,0,0,0,0,16,1,0,0,0,0,0,1,0,136,26,433,12,0,0,529,0,1674,0,1,0,277,30,0,0,0,0,0,0,0,0,0,284,1,0,9,0,12,0,0,0,0,3,162,225,0,0,34,0,0,0,0,0,602,0,0,1300,2,0,1,1,0,0,0,0,43,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,58,1,1,1,0,12,0,0,0,0,9,68,812,0,14,8,0,0,0,0,0,204,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,10,1806,107,4 +379,0,0,36,29,112,250,69,609,47,97,0,0,2,91,1,772,0,24,85,0,123,2,6,0,60,22,0,33,0,8,3,0,28,50,0,134,400,159,0,1038,0,0,0,1,0,0,5,1,0,0,0,61,475,0,0,0,0,0,1,0,3,0,12,0,107,0,0,4599,112,4228,0,94,0,0,0,0,0,110,63,0,0,0,0,14,28,650,0,69,50,28,0,11,211,0,2216,95,11,0,0,18,29,1622,0,67,0,0,3719,0,0,0,0,99,85,0,0,36,0,0,1,0,0,0,22,0,0,0,0,0,0,0,26,0,0,0,18,0,0,0,2,0,7,0,73,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,3,0,0,0,0,0,1,15,0,0,0,0,0,0,0,20,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,109,10,10,10,0,0,0,560,0,411,0,0,0,70,117,422,1984,587,0,0,0,0,1,0,5,0,0,0,0,0,0,4987,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,888,419,2239,76,0,0,2318,0,4183,0,8,0,789,328,0,0,0,0,0,0,0,0,0,1846,1,0,2,0,216,0,0,0,0,59,350,550,0,0,211,0,0,0,0,0,10822,0,0,170,3,0,1,9,0,0,0,0,13,0,0,0,4,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,64,64,0,0,15,1,0,0,0,0,3,34,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,119,1,1,1,0,112,0,0,0,0,227,184,223,0,117,9,0,0,0,0,0,865,32,0,0,0,0,0,0,1,0,0,0,0,23,0,4,55,0,0,0,0,0,0,0,0,117,0,0,201,0,6,2598,2502,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,403,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,126,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,154,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,24,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,14,4 +130,0,0,22,15,128,204,33,409,39,68,1,1,2,84,1,1420,0,23,19,0,8,4,9,2,58,25,0,37,0,102,2,0,13,63,0,143,370,0,0,571,0,0,0,1,0,0,3,0,0,0,0,153,457,0,0,0,0,0,1,0,4,0,13,0,78,0,0,7390,128,2870,0,190,0,0,0,0,0,34,21,0,0,0,0,17,27,1507,0,33,63,13,0,12,114,0,1879,140,5,0,0,18,15,1906,0,63,1,0,3759,0,0,0,0,135,18,2,0,54,0,0,1,0,0,0,26,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,2,0,25,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,28,4,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,17,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,75,12,12,12,0,0,2,1036,2,342,0,0,2,255,287,435,1666,1052,0,0,0,0,1,0,6,0,0,0,0,0,0,2727,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,771,196,1776,43,0,0,1860,0,3256,0,7,0,648,145,0,0,0,0,0,0,0,0,0,2213,1,0,0,0,42,0,0,0,0,143,344,293,0,0,308,0,0,0,0,0,12050,0,0,396,3,0,1,10,0,0,0,0,6,0,0,0,1,0,0,0,0,0,39,0,0,1,0,0,0,0,0,0,0,0,72,72,0,0,10,1,0,0,0,0,3,112,1,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,140,1,1,1,0,261,0,0,0,0,260,206,227,1,215,9,0,0,0,0,0,551,13,0,0,0,0,0,0,0,0,0,0,0,16,0,1,49,0,0,0,0,0,0,0,0,10,0,0,31,0,3,1451,1873,4 +0,0,0,4,1,9,26,1,26,0,4,0,0,0,4,0,60,0,9,2,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,10,54,0,0,9,0,0,0,0,0,0,0,0,0,0,0,1,59,0,0,0,0,0,1,0,0,0,0,0,3,0,0,244,9,87,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,1,0,1,0,1,0,0,44,0,0,0,0,4,1,21,0,1,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,18,0,53,0,0,0,1,4,27,14,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,13,250,5,0,0,193,0,893,0,1,0,43,23,0,0,0,0,0,0,0,0,0,129,0,0,0,0,2,0,0,0,0,2,108,3,0,0,0,0,0,0,0,0,1116,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,1,1,1,0,0,0,0,0,0,9,10,1,0,2,0,0,0,0,0,0,38,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,131,52,4 +0,0,0,4,1,11,26,1,32,0,4,0,0,0,5,0,69,0,8,1,0,0,0,1,0,0,3,0,1,0,1,1,0,1,2,0,12,54,0,0,14,0,1,0,1,0,0,1,0,0,0,0,1,31,0,0,0,0,0,1,0,0,0,0,0,4,0,0,947,11,104,0,3,0,0,0,0,0,4,0,0,0,0,0,1,4,490,0,1,2,1,0,1,0,0,49,0,1,0,0,4,1,36,0,2,0,0,113,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,38,0,27,0,0,0,2,9,28,22,50,0,0,0,0,1,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,112,14,207,5,0,0,220,0,269,0,1,0,50,1,0,0,0,0,0,0,0,0,0,144,1,0,0,0,2,0,0,0,0,2,105,3,0,0,0,0,0,0,0,0,305,0,0,739,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,1,1,1,0,6,0,0,0,0,9,14,3,0,6,0,0,0,0,0,0,43,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,266,7,4 +477,1,0,26,13,242,289,34,1032,72,248,0,10,2,114,25,646,0,19,28,0,7,7,13,2,39,46,0,74,0,348,4,0,13,162,0,255,484,10,0,1974,0,2,0,1,0,0,2,1,0,0,0,384,402,0,0,0,0,0,1,0,1,0,22,0,180,0,0,11533,242,4530,0,453,0,0,0,0,0,443,21,0,0,0,0,24,33,1254,0,34,162,13,0,11,715,0,7469,615,5,0,0,14,13,4351,0,95,0,2,10730,0,0,0,0,189,170,2,8,1,0,0,1,0,0,0,19,0,0,1,0,0,0,0,100,0,0,0,89,0,0,0,1,0,18,8,48,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,46,0,1,1,0,0,0,3,0,0,0,0,0,22,4,0,0,0,0,0,0,0,1,7,0,0,0,0,181,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,106,0,0,0,0,3,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,177,10,10,10,0,0,0,759,0,567,0,0,0,741,817,627,5624,841,0,0,0,0,1,0,59,0,0,1,0,0,0,9089,0,0,0,0,0,0,0,0,0,15,0,0,2,1,2,0,0,0,0,2,0,660,236,2350,43,0,0,2672,0,3079,0,6,0,1521,284,0,0,0,0,0,0,0,0,0,2385,1,0,2,0,57,0,0,0,0,379,469,1634,0,0,1409,0,42,0,1,0,2499,0,0,1131,3,0,1,10,1,0,0,0,5,0,0,0,0,0,0,0,0,0,63,19,0,0,2,0,0,0,0,0,0,0,0,0,0,0,22,1,1,0,0,0,3,1078,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,6,259,1,1,1,0,841,0,0,0,680,105,417,216,0,502,9,0,0,0,0,0,2812,40,0,0,0,0,0,0,0,0,0,0,0,14,0,1,84,0,0,0,0,0,0,1,0,0,0,0,19,0,2,2906,4058,4 +120,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,562,0,20,44,0,99,2,6,0,33,22,0,18,0,8,2,0,10,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,335,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2552,89,1772,0,51,0,0,0,0,0,21,15,0,0,0,0,13,22,303,0,27,38,10,0,8,37,0,731,70,3,0,0,14,11,586,0,46,0,0,2524,0,0,0,0,46,16,1,0,31,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,291,0,232,0,0,0,42,74,336,590,302,0,0,0,0,1,0,6,0,0,0,0,0,0,2151,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1436,49,0,0,1492,0,2979,0,6,0,500,420,0,0,0,0,0,0,0,0,0,1117,1,0,0,0,151,0,0,0,0,28,280,149,0,0,155,0,0,0,0,0,10431,0,0,164,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,13,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,64,0,0,0,0,119,137,326,0,74,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,193,0,3,1663,1619,4 +150,0,0,29,10,84,185,22,410,30,70,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,2,0,9,33,0,94,301,0,0,661,0,0,0,1,0,0,3,0,0,0,0,28,354,0,0,0,0,0,1,0,3,0,12,0,80,0,0,2867,84,1493,0,39,0,0,0,0,0,68,12,0,0,0,0,13,22,390,0,22,33,9,0,10,183,0,1821,100,3,0,0,14,10,1229,0,46,0,0,2407,0,0,0,0,51,39,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,325,0,233,0,0,0,36,76,296,1552,355,0,0,0,0,1,0,5,0,0,0,0,0,0,2675,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1428,48,0,0,1548,0,2903,0,6,0,558,59,0,0,0,0,0,0,0,0,0,1126,1,0,0,0,30,0,0,0,0,22,278,512,0,0,215,0,0,0,0,0,9927,0,0,174,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,77,0,0,0,0,81,127,309,0,62,9,0,0,0,0,0,687,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1606,1655,4 +151,0,0,29,10,84,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,94,301,0,0,707,0,0,0,1,0,0,3,0,0,0,0,28,360,0,0,0,0,0,1,0,3,0,11,0,83,0,0,3092,84,1522,0,39,0,0,0,0,0,72,12,0,0,0,0,13,22,398,0,22,33,9,0,10,198,0,1932,100,3,0,0,14,10,1304,0,46,0,0,2146,0,0,0,0,52,40,0,0,30,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,19,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,333,0,245,0,0,0,36,76,296,1648,365,0,0,0,0,1,0,5,0,0,0,0,0,0,2721,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1430,48,0,0,1556,0,2906,0,6,0,566,51,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,279,551,0,0,215,0,0,0,0,0,9924,0,0,184,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,77,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,733,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1636,1716,4 +120,0,0,22,15,122,200,33,399,43,63,1,1,2,87,1,1407,0,23,20,0,8,4,8,2,43,26,0,31,0,104,2,0,13,58,0,137,370,0,0,544,0,0,0,1,0,0,3,0,0,0,0,141,454,0,0,0,0,0,1,0,2,0,13,0,80,0,0,7146,122,2804,0,171,0,0,0,0,0,25,21,0,0,0,0,17,27,1514,0,33,58,13,0,12,104,0,1779,140,4,0,0,18,15,1825,0,67,1,0,3729,0,0,0,0,134,16,2,0,53,0,0,1,0,0,0,19,0,0,0,0,0,0,0,6,0,0,0,9,0,0,0,0,0,2,0,23,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,27,2,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,18,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,75,12,12,12,0,0,2,1024,2,326,0,0,2,245,271,430,1560,1031,0,0,0,0,1,0,6,0,0,0,0,0,0,2552,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,769,200,1768,43,0,0,1824,0,3228,0,7,0,615,105,0,0,0,0,0,0,0,0,0,2184,1,0,0,0,42,0,0,0,0,132,336,262,0,0,308,0,0,0,0,0,11994,0,0,419,3,0,1,10,0,0,0,0,6,0,0,0,1,0,0,0,0,0,43,0,0,1,0,0,0,0,0,0,0,0,71,71,0,0,11,1,0,0,0,0,3,116,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,134,1,1,1,0,265,0,0,0,0,262,195,214,1,197,9,0,0,0,0,0,523,13,0,0,0,0,0,0,0,0,0,0,0,16,0,1,53,0,0,0,0,0,0,0,0,10,0,0,31,0,3,1484,1618,4 +0,0,0,5,0,36,25,0,49,3,24,0,0,7,4,0,821,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12423,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,667,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39795,36,989,0,24,0,0,0,0,0,46,0,0,0,0,0,8,94,6445,0,0,1,0,0,0,0,0,364,25,2,0,0,2,0,909,0,0,84,0,4474,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1462,0,32,0,0,0,13,16,497,2070,1440,0,0,0,0,1,0,3,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,285,5,0,0,312,0,296,0,0,0,151,14,0,0,0,0,0,0,0,0,0,936,1,0,0,0,9,0,0,0,0,1,164,6,0,0,133,0,0,0,0,0,4671,1,0,1000,22,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,208,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2422,22,4 +5,0,0,6,6,37,30,21,106,11,22,0,0,2,16,0,103,0,8,14,0,10,0,5,0,8,0,0,1,0,1,0,0,6,6,0,43,54,0,0,91,0,0,0,1,0,0,1,0,0,0,0,1,134,0,0,0,0,0,1,0,0,0,0,0,20,0,0,817,37,524,0,1,0,0,0,0,0,5,15,0,0,0,0,8,14,103,0,21,6,6,0,3,23,0,322,45,2,0,0,4,6,180,0,13,0,0,519,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,14,10,10,10,0,0,0,78,0,261,0,0,0,0,3,209,214,112,0,0,0,0,1,0,4,0,0,0,0,0,0,533,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,136,39,455,12,0,0,467,0,668,0,1,0,114,18,0,0,0,0,0,0,0,0,0,287,1,0,0,0,29,0,0,0,0,1,133,56,0,0,91,0,0,0,0,0,208,0,0,12,2,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,39,1,1,1,0,0,0,0,0,0,49,49,31,0,2,8,0,0,0,0,0,112,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,17,0,0,0,0,0,0,0,0,0,0,0,12,0,0,641,42,4 +0,0,0,0,0,9,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,140,9,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,47,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,33,0,0,0,0,3,25,138,55,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,45,1,0,0,73,0,47,0,0,0,36,17,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,92,56,0,0,30,0,0,0,0,0,33,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,4,4 +124,0,0,17,6,103,245,6,652,41,132,0,0,2,67,0,347,0,27,15,0,0,0,11,0,34,18,0,21,0,9,4,0,6,43,0,109,294,0,0,1190,0,3,0,1,0,0,3,1,0,0,0,39,296,0,0,0,0,0,1,0,0,0,18,0,134,0,0,4277,103,1439,0,57,0,0,0,0,0,80,0,0,0,0,0,25,35,816,0,6,43,6,0,13,482,0,4181,220,6,0,0,14,6,2667,0,53,0,0,4447,0,0,0,0,28,45,1,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,16,0,0,0,9,0,0,0,2,0,3,0,19,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,10,0,1,1,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,10,10,10,0,0,0,305,0,250,0,0,0,50,68,357,3361,358,0,0,0,0,1,0,3,0,0,0,0,0,0,2303,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,1,0,659,144,1361,26,0,0,1465,0,3533,0,6,0,553,195,0,0,0,0,0,0,0,0,0,1472,1,0,2,0,26,0,0,0,0,33,286,1178,0,0,517,0,0,0,0,0,1498,0,0,767,3,0,1,8,1,0,0,0,6,0,0,0,0,0,0,0,0,0,39,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,12,1,1,0,0,0,3,379,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,6,132,1,1,1,0,49,0,0,0,0,49,152,109,0,77,9,0,0,0,0,0,1467,11,0,0,0,0,0,0,0,0,0,0,0,7,0,1,57,0,0,0,0,0,0,0,0,0,0,0,6,0,2,1107,1333,4 +0,0,0,7,2,15,50,2,56,10,6,0,0,0,19,0,123,0,11,1,0,0,0,1,0,0,3,0,1,0,2,0,0,2,4,0,17,136,0,0,39,0,0,0,1,0,0,7,0,0,0,0,1,154,0,0,0,0,0,1,0,0,0,0,0,17,0,0,3894,15,223,0,3,0,0,0,0,0,25,0,0,0,0,0,1,10,710,0,2,4,2,0,2,0,0,89,0,12,0,0,6,2,89,0,14,0,0,727,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,537,0,275,0,0,0,2,7,40,24,735,0,0,0,0,1,0,0,0,0,0,0,0,0,2680,0,192,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,237,38,443,9,0,0,456,0,1525,0,2,0,155,17,0,0,0,0,0,0,0,0,0,265,1,0,0,0,2,0,0,0,0,1,134,43,0,0,0,0,0,0,0,0,734,0,0,879,0,0,1,0,0,0,0,0,15,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,13,1,1,1,0,2,0,0,0,0,17,21,172,0,6,0,0,0,0,0,0,89,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,2,0,2,1410,72,4 +22,0,0,9,0,53,6,0,24,10,3,0,0,2,19,0,76,0,7,6,0,0,0,9,0,15,6,0,5,0,2,1,0,0,15,4,53,6,0,0,80,0,0,0,1,0,0,1,0,0,0,0,7,180,0,0,0,0,0,1,0,0,0,0,0,21,0,0,3705,53,142,0,10,0,0,0,0,0,10,0,0,0,0,0,14,23,829,0,0,15,0,0,0,0,0,116,5,2,0,0,2,0,151,0,13,0,0,1192,0,0,0,0,2,6,1,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,4,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,8,12,12,12,0,0,0,457,0,80,0,0,0,8,18,253,97,463,0,0,0,0,1,0,3,0,0,0,0,0,0,802,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,4,0,34,25,280,10,0,0,298,0,409,0,0,0,144,35,0,0,0,0,0,0,0,0,0,137,1,0,0,0,15,0,0,0,0,11,163,42,0,0,0,0,0,0,0,0,643,1,0,468,4,0,1,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,11,0,0,0,0,1,68,234,0,17,12,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,518,146,4 +0,0,0,0,0,9,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,142,9,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,33,0,0,0,0,3,25,138,55,0,0,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,45,1,0,0,73,0,47,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,92,56,0,0,30,0,0,0,0,0,35,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,4,4 +143,0,0,22,15,132,212,33,449,43,76,1,1,2,89,1,1411,0,23,20,0,8,4,8,2,48,26,0,39,0,101,3,0,13,63,0,147,370,0,0,660,0,0,0,1,0,0,3,0,0,0,0,144,451,0,0,0,0,0,1,0,4,0,13,0,91,0,0,7214,132,2956,0,181,0,0,0,0,0,41,21,0,0,0,0,17,27,1470,0,33,63,13,0,12,154,0,2159,140,4,0,0,18,15,2104,0,68,1,0,4410,0,0,0,0,137,26,2,0,51,0,0,1,0,0,0,26,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,2,0,25,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,31,4,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,25,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,75,12,12,12,0,0,2,1041,2,376,0,0,2,246,273,441,1912,1064,0,0,0,0,1,0,6,0,0,0,0,0,0,2853,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,771,201,1801,43,0,0,1888,0,3265,0,7,0,665,154,0,0,0,0,0,0,0,0,0,2265,1,0,0,0,42,0,0,0,0,139,349,397,0,0,308,0,0,0,0,0,11990,0,0,318,3,0,1,10,0,0,0,0,5,0,0,0,1,0,0,0,0,0,43,0,0,1,0,0,0,0,0,0,0,0,70,70,0,0,16,1,0,0,0,0,3,116,1,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,142,1,1,1,0,272,0,0,0,0,256,210,226,1,208,9,0,0,0,0,0,662,13,0,0,0,0,0,0,0,0,0,0,0,16,0,1,53,0,0,0,0,0,0,0,0,10,0,0,29,0,3,1560,1706,4 +1,0,0,5,0,42,18,0,56,4,11,0,0,6,4,1,915,0,6,2,0,0,0,8,0,11,0,0,17,0,4,0,0,0,5,1347,42,6,0,0,46,0,0,0,1,0,0,2,0,0,0,0,5,297,0,0,0,0,0,1,0,0,0,0,0,2,0,0,33523,42,1049,0,18,0,0,0,0,0,37,0,0,0,0,0,9,65,4104,0,0,5,0,0,0,0,0,257,20,4,0,0,2,0,889,0,0,27,0,3207,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,2097,0,95,0,0,0,13,9,549,1950,2052,0,0,0,0,1,0,4,0,0,0,0,0,0,2657,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,28,220,5,0,0,252,0,311,0,0,0,93,31,0,0,0,0,0,0,0,0,0,1017,1,0,0,0,10,0,0,0,0,2,125,31,0,0,51,0,0,0,0,0,3257,1,0,3089,20,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,40,40,0,0,3,0,0,0,0,0,19,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,36,0,0,0,0,33,47,234,0,18,14,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1193,225,4 +21,0,0,0,0,34,24,0,36,2,5,0,2,0,4,0,20,0,6,6,0,0,0,6,0,10,3,0,6,0,2,1,0,0,6,0,34,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,79,0,0,0,0,0,1,0,0,0,0,0,3,0,0,688,34,116,0,9,0,0,0,0,0,13,0,0,0,0,0,11,16,125,0,0,6,0,0,2,25,0,299,15,0,0,0,4,0,171,0,2,0,0,780,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,94,0,47,0,0,0,6,12,193,169,98,0,0,0,0,1,0,3,0,0,0,0,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,135,0,0,0,146,0,280,0,0,0,61,41,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,124,53,0,0,30,0,0,0,0,0,87,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,11,0,0,0,0,1,40,22,0,13,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,38,4 +0,0,0,2,0,10,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,1,0,0,8204,10,40,0,1,0,0,0,0,0,8,0,0,0,0,0,1,5,1954,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,13,0,0,0,0,560,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,79,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1196,0,135,0,0,0,0,3,26,5,1238,0,0,0,0,1,0,0,0,0,0,0,0,0,3137,0,0,0,0,0,0,0,0,0,0,0,0,2,0,77,0,0,0,0,0,0,8,3,80,2,0,0,117,0,240,0,0,0,52,4,0,0,0,0,0,0,162,0,0,40,1,0,0,0,2,0,0,0,0,0,92,44,0,0,0,0,0,0,0,0,569,0,0,2389,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0,305,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,80,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,153,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,81,0,0,0,0,0,0,0,1,1167,231,4 +0,0,0,2,4,17,52,2,77,5,5,0,16,5,7,0,178,0,12,4,0,0,0,1,0,0,6,0,0,0,3,0,0,2,1,6,19,99,0,0,107,0,0,0,0,0,0,0,0,0,0,0,2,151,0,0,0,0,0,1,0,0,0,0,0,1,0,0,166,17,281,0,3,0,0,0,0,0,0,0,0,0,0,0,2,2,34,0,2,1,2,0,2,0,0,89,0,0,0,0,6,4,125,0,2,0,0,180,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,64,13,40,0,0,0,4,14,36,30,59,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,41,424,5,0,0,442,0,1399,0,2,0,127,61,0,0,0,0,0,0,0,0,0,352,0,0,0,0,5,0,0,0,0,3,175,3,0,0,0,0,0,0,0,0,2906,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,9,1,1,1,0,3,0,0,0,0,17,20,3,0,9,0,0,0,0,0,0,155,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,2,0,0,243,396,4 +20,0,0,0,2,29,64,2,160,2,31,0,14,0,5,1,85,0,8,4,0,1,0,1,0,0,0,0,0,0,1,0,0,2,12,0,30,117,0,0,319,0,0,0,1,0,0,1,0,0,0,0,0,99,0,0,0,0,0,1,0,0,0,0,0,21,0,0,639,29,377,0,1,0,0,0,0,0,14,3,0,0,0,0,1,3,139,0,2,12,2,0,17,114,0,939,30,1,0,0,32,2,613,0,1,1,0,882,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,126,0,167,0,0,0,0,3,58,786,167,0,0,0,0,1,0,0,0,0,0,0,0,0,694,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,201,162,325,3,0,0,366,0,1981,0,1,0,130,8,0,0,0,0,0,0,0,0,0,368,1,0,0,0,6,0,0,0,0,0,133,289,0,0,68,0,0,0,0,0,865,0,0,8,0,0,1,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,26,1,1,1,0,0,0,0,0,0,9,42,13,0,1,0,0,0,0,0,0,438,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,3,0,1,1393,43,4 +71,0,0,25,9,81,134,22,243,26,38,0,0,2,58,2,648,0,18,43,0,97,1,6,0,32,13,0,16,0,4,3,0,8,33,0,89,253,160,0,351,0,0,0,1,0,0,2,0,0,0,0,30,311,0,0,0,0,0,1,0,2,0,12,0,46,0,0,2316,81,1702,0,46,0,0,0,0,0,21,12,0,0,0,0,13,22,269,0,22,33,8,0,8,45,0,747,85,3,0,0,12,9,607,0,40,0,0,2041,0,0,0,0,29,12,1,0,32,0,0,1,0,0,0,19,0,0,0,0,0,0,0,6,0,0,0,8,0,0,0,0,0,1,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,9,2,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,5,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,265,0,264,0,0,0,35,54,363,592,267,0,0,0,0,1,0,5,0,0,0,0,0,0,2049,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,573,309,1205,43,0,0,1282,0,2591,0,5,0,441,475,0,0,0,0,0,0,0,0,0,1143,1,0,0,0,147,0,0,0,0,28,259,160,0,0,185,0,0,0,0,0,10489,0,0,154,4,0,1,5,0,0,0,0,5,0,0,0,1,0,0,0,0,0,25,0,0,0,0,0,0,0,0,1,0,0,100,100,0,0,7,1,0,0,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,86,1,1,1,0,34,0,0,0,0,141,122,308,0,59,9,0,0,0,0,0,296,8,0,0,0,0,0,0,1,0,0,0,0,9,0,3,34,0,0,0,0,0,0,0,0,117,0,0,150,0,2,1671,798,4 +6,0,0,10,0,65,181,0,121,6,15,0,0,2,38,3,66,0,63,4,0,0,0,9,0,8,24,0,11,0,12,4,0,0,24,0,65,206,0,0,319,0,0,0,1,0,0,7,1,0,0,0,16,279,0,0,0,0,0,1,0,0,0,5,0,16,0,0,8284,65,568,0,25,0,0,0,0,0,37,0,0,0,0,1,12,27,829,0,0,24,0,0,1,94,0,858,60,19,0,0,2,0,751,0,10,0,0,4149,0,0,0,0,4,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,763,0,174,0,0,0,30,53,282,1374,742,0,0,0,0,1,0,14,0,0,0,0,0,0,2590,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,26,445,11,0,0,660,0,1554,0,0,0,505,86,0,0,0,0,0,0,0,0,0,489,1,0,8,0,13,0,0,0,0,15,165,406,0,0,293,0,0,0,0,0,1351,0,0,1648,3,0,1,1,1,0,0,0,27,0,0,0,2,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,112,1,1,1,0,36,0,0,0,0,1,89,728,0,50,9,0,1,0,0,0,305,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1169,1477,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,671,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,667,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,9,0,0,0,0,0,0,0,0,0,693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,2,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,9,0,0,1,99,4 +1,0,0,5,0,39,18,0,60,4,13,0,0,6,4,1,781,0,6,2,0,0,0,8,0,11,0,0,22,0,5,0,0,0,4,1347,39,6,0,0,46,0,0,0,1,0,0,2,0,0,0,0,5,286,0,0,0,0,0,1,0,0,0,0,0,2,0,0,33352,39,923,0,23,0,0,0,0,0,37,0,0,0,0,0,9,85,4143,0,0,4,0,0,0,0,0,283,20,4,0,0,2,0,765,0,0,31,0,3390,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,2058,0,91,0,0,0,18,15,561,1961,2016,0,0,0,0,1,0,4,0,0,0,0,0,0,2582,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,28,232,5,0,0,244,0,322,0,0,0,90,14,0,0,0,0,0,0,0,0,0,889,1,0,0,0,10,0,0,0,0,2,122,39,0,0,67,0,0,0,0,0,3019,1,0,2945,19,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,37,37,0,0,3,0,0,0,0,0,19,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,56,0,0,0,0,29,43,232,0,24,14,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1241,214,4 +0,0,0,3,0,8,2,0,4,0,2,0,0,0,2,0,10,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,2,0,0,16,8,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,58,0,0,0,3,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,28,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,16,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,44,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,6,4 +0,0,0,0,0,9,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,9,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,33,0,0,0,0,3,25,138,55,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,45,1,0,0,73,0,47,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,92,56,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,4,4 +110,0,0,24,4,64,81,7,125,7,16,0,0,2,24,0,187,0,12,6,0,1,1,5,0,16,9,0,8,0,4,0,0,4,23,0,68,164,0,0,210,0,0,0,1,0,0,7,0,0,0,0,11,260,0,0,0,0,0,1,0,1,0,0,0,21,0,0,5184,64,483,0,18,0,0,0,0,0,30,3,0,0,0,0,8,21,1048,0,7,23,4,0,4,11,0,322,20,12,0,0,8,4,207,0,15,0,0,1553,0,0,0,0,41,30,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,35,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,761,0,245,0,0,0,13,46,243,243,728,0,0,0,0,1,0,4,0,0,0,0,0,0,1974,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,74,755,33,0,0,820,0,1460,0,3,0,288,42,0,0,0,0,0,0,2,0,0,447,1,0,0,0,13,0,0,0,0,11,194,94,0,0,34,0,0,0,0,0,1210,0,0,954,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,66,1,1,1,0,63,0,0,0,0,33,91,361,0,28,9,0,0,0,0,0,268,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,11,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1341,1350,4 +0,0,0,6,0,40,56,0,97,0,37,0,0,8,3,0,908,0,6,1,0,0,0,8,0,10,0,0,44,0,1,0,0,0,1,13930,40,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,555,0,0,0,0,0,1,0,0,0,0,0,2,0,0,96639,40,1237,0,42,0,0,0,0,0,109,0,0,0,0,0,8,308,12134,0,0,1,0,0,0,0,0,560,30,2,0,0,2,0,1092,0,0,209,0,7515,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,5405,0,38,0,0,0,26,29,1408,6441,5337,0,0,0,0,1,0,3,0,0,0,0,0,0,6230,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,19,451,6,0,0,418,0,376,0,0,0,236,49,0,0,0,0,0,0,0,0,0,1115,1,0,0,0,9,0,0,0,0,1,193,72,0,0,281,0,0,0,0,0,6046,1,0,8641,53,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,53,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,119,0,0,0,0,1,41,295,0,43,12,0,1,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3406,221,4 +111,0,0,29,11,88,157,27,274,30,38,0,0,2,66,2,718,0,20,45,0,97,2,6,0,33,28,0,19,0,8,3,0,10,38,0,98,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,35,345,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2624,88,1943,0,54,0,0,0,0,0,23,15,0,0,0,0,12,21,291,0,27,38,10,0,8,37,0,734,70,3,0,0,14,11,668,0,46,0,0,2417,0,0,0,0,45,14,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,5,0,0,0,8,0,0,0,0,0,1,0,20,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,64,10,10,10,0,0,0,308,0,280,0,0,0,44,84,355,592,302,0,0,0,0,1,0,6,0,0,0,0,0,0,2152,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1530,49,0,0,1494,0,2987,0,6,0,503,331,0,0,0,0,0,0,0,0,0,1277,1,0,0,0,150,0,0,0,0,32,282,149,0,0,155,0,0,0,0,0,10638,0,0,181,4,0,1,5,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,1,0,0,98,98,0,0,7,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,93,1,1,1,0,71,0,0,0,0,139,136,326,0,82,9,0,0,0,0,0,314,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,207,0,4,1678,1627,4 +89,0,9,30,10,89,157,16,879,25,71,0,0,2,54,1,11552,0,16,13,0,6,1,5,0,38,19,0,12,0,8,0,0,9,32,26,96,291,0,0,510,0,0,0,1,0,0,1,1,0,0,0,38,294,0,0,0,0,0,1,0,1,0,18,0,50,0,0,1858,89,12939,0,48,0,0,0,0,0,14,9,0,0,0,0,9,16,193,0,16,32,9,0,7,134,0,1490,170,4,0,0,15,10,12063,0,38,0,0,2151,0,0,0,0,35,10,2,0,1,0,0,1,0,0,0,8,0,0,0,0,0,0,0,4,0,0,0,5,0,0,0,2,0,1,0,19,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1202,10,10,10,0,0,0,207,0,186,0,0,0,44,72,315,1078,204,0,0,0,0,1,0,6,0,0,0,22442,3,1,1486,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,665,28181,1158,49,0,0,1186,0,4897,0,5,0,373,664,0,0,0,0,0,0,0,0,0,12732,1,0,2,0,25,0,0,0,0,35,251,296,0,9,423,0,0,0,0,0,32305,0,0,26,3,0,1,4,0,0,0,0,5,0,0,0,0,0,0,0,0,0,24,0,0,1,0,0,0,0,0,0,0,0,54,54,0,0,13,1,0,0,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,84,1,1,1,0,30,0,0,0,0,95,128,103,0,68,9,0,0,0,0,0,458,7,0,0,0,0,0,0,0,0,0,0,0,8,0,1,36,0,0,0,0,0,0,0,0,0,0,0,17,0,1,847,1584,4 +110,0,8,16,9,112,199,12,1071,51,107,0,0,2,77,0,12999,0,16,18,0,5,0,7,0,40,12,0,28,0,8,1,0,8,46,26,118,306,9600,0,861,0,0,0,1,0,0,2,1,0,0,0,39,308,0,0,0,0,0,1,0,0,0,19,0,119,0,0,5461,112,14986,0,67,0,0,0,0,0,181,6,0,0,0,0,18,27,778,0,12,46,8,0,10,338,0,3029,180,5,1,0,15,9,14689,0,64,0,0,3620,0,0,0,0,23,44,0,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,10,0,0,0,8,0,0,0,2,0,3,0,21,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,9,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1170,10,10,10,0,0,0,553,0,336,0,0,0,46,62,341,174691,591,0,0,0,0,1,0,5,0,0,0,25901,3,1,3303,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,1,0,682,32523,1272,32,0,0,1451,0,5500,0,5,0,634,162664,0,0,0,0,0,0,0,0,0,14471,1,0,3,0,30,0,0,0,0,36,293,816,0,8,416,0,0,0,0,0,35533,41,0,39,3,0,1,10,0,0,0,0,6,0,0,0,2,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,1,0,0,0,0,3,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,4,109,1,1,1,0,54,0,0,0,0,51,164,89,0,80,9,0,0,0,0,0,1041,10,0,0,0,0,0,0,0,0,0,0,0,7,0,1,65,0,0,0,0,0,0,0,0,0,0,0,14,0,1,1774,1275,4 +1,0,0,10,2,39,54,2,75,10,15,0,0,2,20,5,121,0,10,4,0,0,0,5,0,8,0,0,1,0,1,0,0,2,7,0,41,143,0,0,91,0,0,0,1,0,0,2,0,0,0,0,1,141,0,0,0,0,0,1,0,0,0,0,0,23,0,0,973,39,219,0,1,0,0,0,0,0,9,0,0,0,0,0,8,16,137,0,2,7,2,0,3,14,0,272,25,2,0,0,6,2,162,0,15,0,0,674,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4,10,10,10,0,0,0,118,0,286,0,0,0,0,3,210,155,139,0,0,0,0,1,0,3,0,0,0,0,0,0,619,0,7,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,244,46,456,12,0,0,482,0,1040,0,2,0,129,19,0,0,0,0,0,0,0,0,0,302,1,0,0,0,9,0,0,0,0,1,157,47,0,0,45,0,0,0,0,0,311,0,0,29,2,0,1,1,0,0,0,0,6,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,41,1,1,1,0,0,0,0,0,0,17,48,33,0,2,8,0,0,0,0,0,125,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,14,0,0,0,0,0,0,0,0,0,0,0,2,0,1,824,86,4 +1,0,0,0,0,11,4,0,10,0,2,0,2,0,2,0,17,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,9,0,0,16,0,0,0,1,0,0,1,0,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,11,37,0,1,0,0,0,0,0,3,0,0,0,0,1,1,4,17,0,0,1,0,0,2,0,0,10,0,1,0,0,6,0,11,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,23,0,21,0,0,0,0,3,30,6,38,0,0,0,0,1,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,20,23,72,0,0,0,79,0,100,0,0,0,15,3,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,93,3,0,0,0,0,1,0,0,0,34,0,0,8,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,7,4 +26,0,0,6,0,45,36,0,54,30,35,0,0,7,8,0,1061,0,7,1,0,0,0,8,0,10,12,0,21,0,5,0,0,0,3,6053,45,6,0,0,54,0,6,0,1,0,0,7,0,0,0,0,5,358,0,0,0,0,0,1,0,0,0,0,0,7,0,0,69553,45,1367,0,23,0,0,0,0,0,102,0,0,0,0,0,8,130,19196,0,0,3,0,0,0,0,0,408,25,11,0,0,2,0,1237,0,4,72,0,4759,0,0,0,0,10,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,12,12,12,0,0,0,14959,0,133,0,0,0,18,29,674,1440,14925,0,0,0,0,1,0,8,0,0,0,0,0,0,794,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,110,98,330,6,0,0,389,0,295,0,0,0,208,32,0,0,0,0,0,0,0,0,0,1208,1,0,0,0,9,0,0,0,0,2,146,59,0,0,172,0,0,0,0,0,5199,1,0,1086,36,0,1,1,1,0,0,0,17,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,36,365,0,0,0,4,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,52,0,0,0,0,1,48,222,0,36,12,0,1,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,34,0,0,0,0,0,0,0,0,0,0,0,0,0,7,2159,121,4 +30,0,0,3,0,41,24,0,106,10,21,0,3,0,15,0,24,0,7,4,0,0,0,5,0,21,3,0,5,0,1,0,0,0,11,0,41,13,0,0,464,0,0,0,1,0,0,0,0,0,0,0,14,92,0,0,0,0,0,1,0,0,0,0,0,30,0,0,1196,41,227,0,17,0,0,0,0,0,15,0,0,0,0,0,8,13,235,0,0,11,0,0,3,88,0,770,15,0,0,0,6,0,525,0,12,0,0,744,0,0,0,0,18,14,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,26,10,10,10,0,0,0,166,0,104,0,0,0,13,26,201,702,179,0,0,0,0,1,0,3,0,0,0,0,0,0,613,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,75,194,3,0,0,166,0,218,0,0,0,72,16,0,0,0,0,0,0,0,0,0,200,0,0,0,0,9,0,0,0,0,13,125,228,0,0,30,0,0,0,0,0,709,0,0,0,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,3,0,0,0,0,1,52,23,0,21,9,0,0,0,0,0,329,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,707,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,142,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,70,0,48,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,35,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,4,4 +410,0,0,1,13,189,204,37,522,67,89,0,7,0,119,1,912,0,16,30,0,10,6,10,2,41,42,0,19,0,16,4,0,11,115,0,202,201,6118,0,1132,0,0,0,1,0,0,5,1,0,0,0,52,398,0,0,0,0,0,1,0,3,0,16,0,107,0,0,39770,189,3018,0,68,0,0,0,0,0,153,27,0,0,0,0,25,36,8144,0,37,115,11,0,12,283,0,2590,155,11,0,0,20,13,2659,0,72,1,0,8044,0,0,0,0,137,99,2,0,34,0,0,1,0,0,0,21,0,0,0,0,0,0,0,23,0,0,0,33,0,0,0,0,0,2,0,28,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,101,8,0,0,0,0,0,2,0,0,0,0,0,7,23,0,0,0,4,0,0,0,0,11,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,2,107,12,12,12,0,0,2,5137,2,501,0,0,2,70,294,445,137602,5148,0,0,0,0,1,0,13,0,0,0,0,0,0,11766,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,370,243,1643,19,0,0,1737,0,1976,0,3,0,895,128465,0,0,0,0,0,0,0,0,0,1870,1,0,2,0,58,0,0,0,0,42,342,759,0,0,374,0,0,0,0,0,12721,0,0,8868,3,0,1,11,0,0,0,0,14,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,3,153,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3,197,1,1,1,0,515,0,0,0,0,180,317,421,1,113,9,0,0,0,0,0,1076,18,0,0,0,0,0,0,0,0,0,0,0,14,0,2,73,0,0,0,0,0,0,0,31,8,0,0,27,0,4,4472,2788,4 +0,0,0,5,0,36,24,0,47,3,23,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12407,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,715,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39468,36,911,0,24,0,0,0,0,0,45,0,0,0,0,0,8,94,6583,0,0,1,0,0,0,0,0,362,25,1,0,0,2,0,836,0,0,89,0,4395,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1336,0,33,0,0,0,13,16,494,2068,1315,0,0,0,0,1,0,3,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,281,5,0,0,310,0,295,0,0,0,147,17,0,0,0,0,0,0,0,0,0,859,1,0,0,0,9,0,0,0,0,1,165,7,0,0,131,0,0,0,0,0,4718,1,0,1013,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,212,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2484,26,4 +1,0,0,3,0,28,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,121,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1090,28,57,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,171,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,555,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,125,0,47,0,0,0,1,4,182,14,123,0,0,0,0,1,0,3,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,2,1,8,0,0,0,0,1,0,32,10,145,3,0,0,186,0,323,0,0,0,81,10,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,110,64,0,0,0,0,0,0,0,0,89,0,0,41,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,226,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,152,54,4 +84,0,0,25,8,75,163,17,383,26,68,0,0,2,56,0,309,0,18,14,0,5,1,6,0,25,13,0,13,0,5,2,0,7,28,0,83,253,0,0,633,0,0,0,1,0,0,3,0,0,0,0,24,311,0,0,0,0,0,1,0,2,0,12,0,75,0,0,2793,75,1276,0,34,0,0,0,0,0,69,9,0,0,0,0,13,22,355,0,17,28,7,0,9,193,0,1841,100,3,0,0,12,8,1217,0,40,0,0,1792,0,0,0,0,28,32,0,0,30,0,0,1,0,0,0,15,0,0,0,0,0,0,0,7,0,0,0,7,0,0,0,0,0,1,0,17,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,8,2,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,10,10,10,0,0,0,274,0,216,0,0,0,29,49,279,1531,316,0,0,0,0,1,0,4,0,0,0,0,0,0,2405,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,556,117,1205,42,0,0,1333,0,2549,0,5,0,497,34,0,0,0,0,0,0,0,0,0,999,1,0,0,0,26,0,0,0,0,18,253,535,0,0,215,0,0,0,0,0,9790,0,0,152,3,0,1,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,82,1,1,1,0,30,0,0,0,0,65,111,291,0,49,9,0,0,0,0,0,676,8,0,0,0,0,0,0,0,0,0,0,0,9,0,1,36,0,0,0,0,0,0,0,0,0,0,0,11,0,3,1565,777,4 +122,0,0,29,11,89,160,27,289,30,44,0,0,2,66,1,562,0,20,44,0,99,2,6,0,33,22,0,17,0,8,2,0,10,38,0,99,301,168,0,421,0,0,0,1,0,0,3,0,0,0,0,34,339,0,0,0,0,0,1,0,3,0,12,0,55,0,0,2589,89,1806,0,50,0,0,0,0,0,25,15,0,0,0,0,13,22,299,0,27,38,10,0,9,55,0,875,85,3,0,0,14,11,672,0,46,0,0,2214,0,0,0,0,46,19,1,0,30,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,294,0,242,0,0,0,42,74,338,713,305,0,0,0,0,1,0,6,0,0,0,0,0,0,2244,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1451,49,0,0,1504,0,2869,0,6,0,512,267,0,0,0,0,0,0,0,0,0,1144,1,0,0,0,151,0,0,0,0,29,284,189,0,0,185,0,0,0,0,0,10436,0,0,161,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,11,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,63,0,0,0,0,119,137,326,0,73,9,0,0,0,0,0,361,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,38,0,0,0,0,0,0,0,0,117,0,0,163,0,2,1656,1637,4 +147,0,0,29,10,85,187,22,421,27,72,0,0,2,61,0,374,0,20,15,0,6,2,7,0,34,22,0,14,0,10,2,0,9,33,0,95,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,38,357,0,0,0,0,0,1,0,3,0,12,0,79,0,0,2893,85,1513,0,49,0,0,0,0,0,70,12,0,0,0,0,13,22,431,0,22,33,9,0,10,193,0,1919,100,3,0,0,14,10,1281,0,43,0,0,2075,0,0,0,0,50,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,17,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,34,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,338,0,245,0,0,0,48,88,300,1631,370,0,0,0,0,1,0,5,0,0,0,0,0,0,2697,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,143,1416,48,0,0,1556,0,2891,0,6,0,563,50,0,0,0,0,0,0,0,0,0,1137,1,0,0,0,30,0,0,0,0,32,280,538,0,0,215,0,0,0,0,0,9946,0,0,174,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,64,0,0,0,0,81,128,309,0,73,9,0,0,0,0,0,718,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,37,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1659,1866,4 +0,0,0,0,0,1,0,1,20,0,1,0,0,0,1,0,728,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,724,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,9,0,0,1,107,4 +252,0,0,0,3,87,60,12,380,3,124,1,2,0,5,0,48,0,7,16,0,3,3,2,0,6,3,0,78,0,351,1,0,3,38,0,90,12,0,0,568,0,0,0,0,0,0,0,0,0,0,0,357,97,0,0,0,0,0,1,0,0,0,0,0,27,0,0,6267,87,1848,0,436,0,0,0,0,0,297,9,0,0,0,0,11,11,263,0,12,38,3,0,4,340,0,4163,475,0,0,0,6,3,1917,0,2,0,0,3233,0,0,0,0,96,112,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,90,0,0,0,90,0,0,0,0,0,1,0,12,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,85,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,241,0,226,0,0,0,708,712,168,2822,261,0,0,0,0,0,0,0,0,0,0,0,0,0,4350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,589,6,0,0,738,0,516,0,0,0,504,70,0,0,0,0,0,0,0,0,0,627,0,0,0,0,24,0,0,0,0,356,177,662,0,0,1063,0,0,0,0,0,1342,0,0,351,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,1,0,0,0,0,0,701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,783,0,0,0,690,25,128,38,0,439,0,0,0,0,0,0,716,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1275,2284,4 +1,0,0,3,0,29,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,113,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1240,29,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,192,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,755,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,150,0,48,0,0,0,1,4,186,14,148,0,0,0,0,1,0,3,0,0,0,0,0,0,327,0,0,0,0,0,0,0,0,0,0,0,0,2,1,7,0,0,0,0,1,0,32,10,141,3,0,0,163,0,322,0,0,0,54,8,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,111,37,0,0,0,0,0,0,0,0,105,0,0,136,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,148,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,190,57,4 +0,0,0,5,0,36,25,0,48,3,24,0,0,7,4,0,784,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12331,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,740,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39391,36,950,0,23,0,0,0,0,0,46,0,0,0,0,0,8,94,6420,0,0,1,0,0,0,0,0,364,25,1,0,0,2,0,872,0,0,88,0,4572,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1405,0,34,0,0,0,12,15,493,2082,1384,0,0,0,0,1,0,3,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,274,5,0,0,310,0,289,0,0,0,146,12,0,0,0,0,0,0,0,0,0,898,1,0,0,0,9,0,0,0,0,1,165,6,0,0,135,0,0,0,0,0,4626,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,192,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2434,23,4 +11,0,0,9,1,50,50,1,124,7,15,1,0,2,13,0,69,0,9,5,0,0,0,7,0,11,0,0,12,0,1,0,0,1,17,0,51,54,0,0,163,0,0,0,1,0,0,16,2,0,0,0,4,329,0,0,0,0,0,1,0,0,0,21,0,11,0,0,8547,50,342,0,15,0,0,0,0,0,63,0,0,0,0,5,11,39,1431,0,1,17,1,0,1,47,0,521,20,28,1,0,4,1,340,0,8,0,0,1399,0,0,0,0,33,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,8,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,10,10,10,0,0,0,1180,0,250,0,0,0,3,8,227,430,1088,0,0,0,0,1,0,3,0,0,0,0,0,0,2517,0,0,0,0,0,0,0,0,0,0,0,0,16,1,0,0,0,0,0,1,0,135,26,445,12,0,0,572,0,1579,0,1,0,319,25,0,0,0,0,0,0,0,0,0,283,1,0,5,0,12,0,0,0,0,5,203,224,0,0,34,0,0,0,0,0,681,0,0,1625,2,0,1,1,0,0,0,0,36,0,0,0,8,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,58,1,1,1,0,14,0,0,0,0,9,68,847,0,16,8,0,0,0,0,0,202,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,10,1860,97,4 +0,0,0,9,0,38,40,0,79,4,41,0,0,13,4,0,1472,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,7097,38,6,0,0,63,0,3,0,1,0,0,3,0,0,0,0,1,420,0,0,0,0,0,1,0,0,0,0,0,4,0,0,361097,38,1749,0,24,0,0,0,0,0,74,0,0,0,0,0,8,245,6301,0,0,1,0,0,0,0,0,546,45,4,0,0,2,0,1609,0,0,144,0,21446,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,12,12,12,0,0,0,1719,0,38,0,0,0,16,19,1220,1864,1668,0,0,0,0,1,0,3,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,172,28,308,9,0,0,361,0,379,0,0,0,195,14,0,0,0,0,0,0,0,0,0,1655,1,0,0,0,9,0,0,0,0,1,154,55,0,0,241,0,0,0,0,0,5668,1,0,534,34,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,34,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,71,0,0,0,0,1,39,326,0,25,12,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2112,263,4 +150,0,0,29,10,84,188,22,425,30,74,0,0,2,63,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,3,0,9,33,0,94,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,364,0,0,0,0,0,1,0,3,0,12,0,83,0,0,2733,84,1523,0,39,0,0,0,0,0,73,12,0,0,0,0,13,22,373,0,22,33,9,0,10,198,0,1932,100,3,0,0,14,10,1304,0,46,0,0,2263,0,0,0,0,52,40,0,0,29,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,9,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,316,0,235,0,0,0,36,75,296,1650,345,0,0,0,0,1,0,5,0,0,0,0,0,0,2703,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1423,48,0,0,1557,0,2908,0,6,0,566,40,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,279,551,0,0,215,0,0,0,0,0,9916,0,0,138,3,0,1,6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,75,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,4,1600,1668,4 +30,0,0,0,0,15,13,0,49,0,12,0,2,0,3,0,14,0,7,1,0,0,0,1,0,5,0,0,0,0,1,0,0,0,5,0,15,15,0,0,103,0,0,0,0,0,0,0,0,0,0,0,5,45,0,0,0,0,0,1,0,0,0,0,0,8,0,0,492,15,125,0,6,0,0,0,0,0,16,0,0,0,0,0,1,1,136,0,0,5,0,0,3,43,0,350,15,0,0,0,6,0,227,0,0,0,0,458,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,117,0,91,0,0,0,5,7,32,321,134,0,0,0,0,0,0,0,0,0,0,0,0,0,478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,25,90,1,0,0,92,0,96,0,0,0,50,6,0,0,0,0,0,0,0,0,0,100,0,0,0,0,2,0,0,0,0,5,102,109,0,0,30,0,0,0,0,0,634,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,20,5,0,6,0,0,0,0,0,0,205,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,180,4 +38,0,0,11,4,15,31,7,68,0,5,0,0,0,27,0,106,0,8,7,0,3,3,3,0,5,6,0,5,0,1,0,0,4,2,0,19,370,0,0,309,0,0,0,0,0,0,0,0,0,0,0,5,79,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1075,15,381,0,11,0,0,0,0,0,0,9,0,0,0,0,3,3,81,0,7,2,4,0,1,0,0,67,0,0,0,0,4,4,189,0,1,0,0,3378,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,66,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,14,0,0,0,0,0,0,70,0,31,0,0,0,5,13,44,70,88,0,0,0,0,0,0,0,0,0,0,0,0,0,817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,183,431,20,0,0,306,0,657,0,1,0,69,26,0,0,0,0,0,0,0,0,0,245,0,0,0,0,16,0,0,0,0,5,112,1,0,0,0,0,0,0,1,0,1191,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,13,1,1,1,0,5,0,0,0,0,33,21,3,0,17,0,0,0,0,0,0,74,88,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,881,41,4 +4,0,0,8,0,63,17,0,63,20,15,0,0,2,30,0,76,0,6,7,0,0,0,14,0,11,9,0,8,0,3,1,0,0,25,890,63,6,4,0,209,0,1,0,1,0,0,3,0,0,0,0,5,179,0,0,0,0,0,1,0,0,0,9,0,36,0,0,15899,63,237,0,9,0,0,0,0,0,17,0,0,0,0,0,19,33,3178,0,0,25,0,0,1,45,0,490,55,5,1,0,2,0,383,0,28,0,0,2767,0,0,0,0,23,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,12,12,12,0,0,0,2163,0,111,0,0,0,8,31,298,607,2168,0,0,0,0,1,0,5,0,0,2,0,0,0,517,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,40,310,8,0,0,291,0,461,0,0,0,133,36,0,0,0,0,0,0,0,0,0,209,1,0,0,0,21,0,0,0,0,5,150,92,0,0,106,0,0,0,0,0,724,1,0,776,6,0,1,1,1,0,0,0,4,0,0,0,2,0,0,0,0,0,20,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,6,367,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,76,1,1,1,0,24,0,0,0,0,1,88,48,0,20,12,0,0,0,0,0,165,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,2,665,117,4 +1,0,0,2,1,12,26,1,41,1,3,0,0,0,4,0,80,0,9,1,0,0,0,1,0,0,9,0,6,0,4,0,0,1,2,0,13,54,0,0,10,0,0,0,1,0,0,4,0,0,0,0,3,111,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3957,12,165,0,10,0,0,0,0,0,19,0,0,0,0,0,1,7,382,0,1,2,1,0,1,0,0,68,0,4,0,0,4,1,85,0,1,0,0,297,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,383,0,77,0,0,0,6,18,39,28,396,0,0,0,0,1,0,0,0,0,0,0,0,0,1229,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,113,11,280,3,0,0,351,0,834,0,1,0,167,36,0,0,0,0,0,0,0,0,0,163,1,0,0,0,2,0,0,0,0,4,150,67,0,0,0,0,0,0,0,0,463,0,0,1129,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,1,1,1,0,9,0,0,0,0,9,15,169,0,19,0,0,0,0,0,0,63,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,635,140,4 +1,0,0,3,0,30,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,30,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,118,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1005,30,57,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,169,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,549,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,125,0,51,0,0,0,1,4,190,14,123,0,0,0,0,1,0,3,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,2,1,8,0,0,0,0,1,0,32,10,132,3,0,0,192,0,328,0,0,0,81,13,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,112,64,0,0,0,0,0,0,0,0,93,0,0,41,3,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,1,0,0,0,0,1,32,226,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,172,52,4 +18,0,0,3,2,51,59,2,80,13,7,0,4,0,22,1,248,0,10,4,0,0,0,5,0,26,0,0,11,0,2,0,0,2,16,0,53,65649,0,0,415,0,0,0,1,0,0,4,0,0,0,0,20,143,0,0,0,0,0,1,0,1,0,0,0,13,0,0,1540,51,405,0,29,0,0,0,0,0,26,0,0,0,0,0,8,21,323,0,2,16,2,0,6,8,0,281,15,5,0,0,12,2,186,0,13,0,0,9712,0,0,0,0,19,4,0,0,14,0,0,1,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,46,10,10,10,0,0,0,252,0,178,0,0,0,20,33,239,266,264,0,0,0,0,1,0,3,0,0,0,0,0,0,856,0,0,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0,246,110,527,5,0,0,546,0,925,0,2,0,180,36,0,0,0,0,0,0,0,0,0,431,1,0,0,0,9,0,0,0,0,20,172,40,0,0,30,0,0,0,0,0,66785,0,0,71,3,0,1,4,0,0,0,0,8,0,0,0,3,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,36,36,0,0,7,1,0,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,53,1,1,1,0,11,0,0,0,0,39,69,82,0,30,9,0,0,0,0,0,156,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,15,0,0,0,0,0,0,0,0,0,0,0,2,0,4,640,616,4 +1,0,0,3,0,29,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,120,0,0,0,0,0,1,0,0,0,0,0,2,0,0,958,29,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,173,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,385,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,133,0,49,0,0,0,1,4,186,14,131,0,0,0,0,1,0,3,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,1,0,32,10,135,4,0,0,154,0,328,0,0,0,42,7,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,111,24,0,0,0,0,0,0,0,0,94,0,0,94,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,119,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,170,54,4 +0,0,0,0,0,1,0,1,18,0,1,0,0,0,1,0,661,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,657,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,9,0,0,0,0,0,0,0,0,0,682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,2,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,9,0,0,1,99,4 +6,0,0,9,0,60,180,0,121,6,15,0,0,2,21,2,66,0,64,4,0,0,0,7,0,10,23,0,11,0,8,4,0,0,23,0,60,206,0,0,282,0,0,0,1,0,0,7,1,0,0,0,13,224,0,0,0,0,0,1,0,0,0,5,0,16,0,0,7587,60,549,0,22,0,0,0,0,0,36,0,0,0,0,1,10,25,725,0,0,23,0,0,1,94,0,841,60,19,0,0,2,0,716,0,10,0,0,2575,0,0,0,0,3,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,678,0,171,0,0,0,24,50,255,1343,653,0,0,0,0,1,0,14,0,0,0,0,0,0,2758,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,25,446,9,0,0,636,0,1326,0,0,0,493,93,0,0,0,0,0,0,0,0,0,471,1,0,8,0,11,0,0,0,0,12,168,389,0,0,293,0,0,0,0,0,1381,0,0,1731,3,0,1,1,1,0,0,0,27,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,89,1,1,1,0,25,0,0,0,0,1,83,632,0,47,9,0,0,0,0,0,289,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,975,1487,4 +286,0,0,1,13,170,189,37,504,48,83,0,7,0,87,1,925,0,15,27,0,10,6,10,2,66,48,0,21,0,13,4,0,11,96,0,183,201,6594,0,1019,0,0,0,1,0,0,5,1,0,0,0,74,418,0,0,0,0,0,1,0,2,0,16,0,94,0,0,41511,170,2970,0,92,0,0,0,0,0,154,27,0,0,0,0,22,33,8565,0,37,96,11,0,12,259,0,2442,135,11,0,0,20,13,2542,0,60,1,0,6862,0,0,0,0,81,78,2,0,31,0,0,1,0,0,0,19,0,0,0,0,0,0,0,12,0,0,0,32,0,0,0,0,0,2,0,24,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,61,8,0,0,0,0,0,2,0,0,0,0,0,6,22,0,0,0,3,0,0,0,0,10,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,111,12,12,12,0,0,2,5359,2,491,0,0,2,89,376,418,136339,5383,0,0,0,0,1,0,5,0,0,0,0,0,0,11236,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,370,201,1568,18,0,0,1693,0,2001,0,3,0,851,127111,0,0,0,0,0,0,0,0,0,1811,1,0,2,0,55,0,0,0,0,59,347,712,0,0,318,0,0,0,0,0,12880,0,0,8787,3,0,1,11,0,0,0,0,14,0,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,1,0,0,0,0,3,155,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3,182,1,1,1,0,644,0,0,0,0,180,279,432,1,143,9,0,0,0,0,0,950,18,0,0,0,0,0,0,0,0,0,0,0,14,0,2,54,0,0,0,0,0,0,0,0,8,0,0,27,0,4,4540,2361,4 +2,0,0,3,0,12,2,0,17,0,3,0,0,0,3,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,3,0,12,6,0,0,8,0,2,0,1,0,0,2,0,0,0,0,0,102,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1133,12,47,0,2,0,0,0,0,0,10,0,0,0,0,0,1,5,515,0,0,3,0,0,0,0,0,10,0,3,0,0,2,0,19,0,1,0,0,139,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,2,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,71,0,33,0,0,0,0,3,27,9,80,0,0,0,0,1,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,86,3,0,0,125,0,208,0,0,0,59,3,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,1,94,43,0,0,0,0,0,0,0,0,212,0,0,745,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,1,0,0,0,0,1,15,329,0,2,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,248,15,4 +19,0,0,18,0,76,8,0,34,19,6,0,0,0,52,0,17,0,7,1,0,0,0,3,0,3,0,0,14,0,8,0,0,0,60,0,76,6,0,0,192,0,0,0,1,0,0,6,0,0,0,0,10,187,0,0,0,0,0,1,0,0,0,21,0,31,0,0,3212,76,156,0,25,0,0,0,0,0,25,0,0,0,0,0,3,12,338,0,0,60,0,0,0,0,0,69,0,9,1,0,2,0,151,0,27,0,0,1353,0,0,0,0,6,2,0,0,0,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1464,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0,2,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,20,0,0,0,0,0,0,297,0,195,0,0,0,17,27,127,176,316,0,0,0,0,1,0,0,0,0,0,0,0,0,2595,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,10,74,495,22,0,0,428,0,662,0,0,0,345,33,0,0,0,0,0,0,0,0,0,124,1,0,0,0,4,0,0,0,0,13,168,139,0,0,0,0,0,0,0,0,5573,0,0,232,0,0,1,0,0,0,0,0,11,0,0,0,2,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,20,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,93,1,1,1,0,54,0,0,0,6,1,136,598,0,25,0,0,1,0,0,0,220,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,5,438,988,4 +227,0,0,29,8,155,198,17,538,35,130,0,0,2,169,1,737,0,17,16,0,3,3,9,0,22,15,0,55,0,248,4,0,8,101,0,163,590,0,0,1304,0,0,0,1,0,0,3,1,0,0,0,266,319,0,0,0,0,0,1,0,0,0,1,0,79,0,0,6563,155,2567,0,320,0,0,0,0,0,154,9,0,0,0,0,18,27,390,0,17,101,8,0,9,359,0,4170,440,7,0,0,12,8,2884,0,47,0,0,6535,0,0,0,0,81,98,3,0,1,0,0,1,0,0,0,30,0,0,0,0,0,0,0,68,0,0,0,64,0,0,0,2,0,4,0,16,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,2,0,0,0,0,71,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,10,10,10,0,0,0,395,0,421,0,0,0,516,534,489,2903,413,0,0,0,0,1,0,6,0,0,0,0,0,0,3791,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,2,0,556,125,1748,44,0,0,1646,0,2482,0,5,0,783,217,0,0,0,0,0,0,0,0,0,1792,1,0,3,0,31,0,0,0,0,264,332,738,0,0,999,0,0,0,0,0,6216,0,0,364,3,0,1,8,0,0,0,0,12,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,59,59,0,0,17,1,0,0,0,0,3,495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,5,161,1,1,1,0,560,0,0,0,482,113,264,187,0,335,9,0,0,0,0,0,1016,13,0,0,0,0,0,0,0,0,0,0,0,9,0,1,45,0,0,0,0,0,0,0,113,0,0,0,11,0,3,4123,2312,4 +0,0,0,5,0,37,24,0,48,3,23,0,0,7,4,0,804,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12496,37,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,730,0,0,0,0,0,1,0,0,0,0,0,2,0,0,42899,37,967,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6904,0,0,1,0,0,0,0,0,359,25,2,0,0,2,0,892,0,0,87,0,4491,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1961,0,33,0,0,0,12,15,496,2065,1939,0,0,0,0,1,0,3,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,280,5,0,0,310,0,300,0,0,0,145,12,0,0,0,0,0,0,0,0,0,916,1,0,0,0,9,0,0,0,0,1,164,7,0,0,130,0,0,0,0,0,4640,1,0,1027,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,58,0,0,0,0,1,38,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2396,27,4 +30,0,0,0,0,15,13,0,49,0,12,0,2,0,3,0,14,0,7,1,0,0,0,1,0,5,0,0,0,0,1,0,0,0,5,0,15,15,0,0,103,0,0,0,0,0,0,0,0,0,0,0,5,58,0,0,0,0,0,1,0,0,0,0,0,8,0,0,516,15,125,0,6,0,0,0,0,0,16,0,0,0,0,0,1,1,131,0,0,5,0,0,3,43,0,350,15,0,0,0,6,0,227,0,0,0,0,267,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,114,0,89,0,0,0,5,7,32,320,130,0,0,0,0,0,0,0,0,0,0,0,0,0,473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,25,81,1,0,0,92,0,167,0,0,0,50,5,0,0,0,0,0,0,0,0,0,100,0,0,0,0,2,0,0,0,0,5,102,109,0,0,30,0,0,0,0,0,632,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,20,5,0,6,0,0,0,0,0,0,203,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,106,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,70,0,48,0,0,0,36,5,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,4,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,411,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,25,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,138,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,50,3,0,0,47,0,142,0,0,0,5,7,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,11,4 +149,0,0,29,10,84,187,22,420,27,72,0,0,2,61,0,375,0,20,16,0,6,2,6,0,35,22,0,15,0,10,2,0,9,33,0,94,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,38,337,0,0,0,0,0,1,0,3,0,12,0,79,0,0,2824,84,1515,0,51,0,0,0,0,0,70,12,0,0,0,0,13,22,392,0,22,33,9,0,10,193,0,1921,100,3,0,0,14,10,1283,0,43,0,0,2355,0,0,0,0,50,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,7,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,34,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,330,0,244,0,0,0,48,88,296,1631,362,0,0,0,0,1,0,5,0,0,0,0,0,0,2697,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,143,1399,48,0,0,1552,0,2894,0,6,0,562,65,0,0,0,0,0,0,0,0,0,1137,1,0,0,0,30,0,0,0,0,32,278,538,0,0,215,0,0,0,0,0,9924,0,0,171,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,66,0,0,0,0,81,127,309,0,75,9,0,0,0,0,0,718,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,37,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1625,1863,4 +0,0,0,5,0,35,24,0,47,3,23,0,0,7,4,0,729,0,6,1,0,0,0,8,0,10,0,0,24,0,1,0,0,0,1,12514,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,734,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40158,35,890,0,22,0,0,0,0,0,45,0,0,0,0,0,8,90,6614,0,0,1,0,0,0,0,0,359,25,2,0,0,2,0,817,0,0,91,0,4823,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1493,0,32,0,0,0,11,14,485,2073,1472,0,0,0,0,1,0,3,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,276,5,0,0,306,0,295,0,0,0,146,14,0,0,0,0,0,0,0,0,0,840,1,0,0,0,9,0,0,0,0,1,163,7,0,0,132,0,0,0,0,0,4576,1,0,1015,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,54,0,0,0,0,1,36,212,0,23,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2434,27,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,407,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,142,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,30,0,27,0,0,0,2,4,27,94,44,0,0,0,0,1,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,46,3,0,0,47,0,144,0,0,0,5,8,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +13,0,0,3,1,43,8,4,25,0,2,0,3,0,3,0,35,0,6,6,0,1,1,5,0,16,9,0,3,0,1,0,0,1,12,0,44,12,0,0,96,0,0,0,1,0,0,0,0,0,0,0,9,79,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1323,43,182,0,10,0,0,0,0,0,4,3,0,0,0,0,8,13,132,0,4,12,1,0,2,0,0,96,0,0,0,0,6,1,80,0,0,0,0,3392,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,115,0,69,0,0,0,8,25,202,987,100,0,0,0,0,1,0,3,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,40,195,4,0,0,178,0,346,0,0,0,56,19,0,0,0,0,0,0,0,0,0,82,0,0,0,0,13,0,0,0,0,9,129,5,0,0,0,0,0,0,0,0,124,0,0,0,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,1,0,0,0,0,9,56,28,0,20,9,0,0,0,0,0,82,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,143,571,4 +194,0,0,0,3,78,40,12,261,1,91,1,1,0,3,0,56,0,7,11,0,3,3,1,0,6,10,0,40,0,86,1,0,3,35,0,81,9,0,0,339,0,0,0,0,0,0,0,0,0,0,0,92,122,0,0,0,0,0,1,0,0,0,0,0,6,0,0,4854,78,1283,0,134,0,0,0,0,0,250,9,0,0,0,0,5,5,230,0,12,35,3,0,2,220,0,2138,405,0,0,0,4,3,1074,0,0,0,0,3547,0,0,0,0,81,85,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,75,0,0,0,77,0,0,0,0,0,1,0,10,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,22,0,0,0,0,0,0,200,0,144,0,0,0,178,182,153,1435,214,0,0,0,0,0,0,0,0,0,0,0,0,0,3621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,30,534,6,0,0,644,0,492,0,0,0,430,38,0,0,0,0,0,0,0,0,0,460,0,0,0,0,18,0,0,0,0,91,170,381,0,0,908,0,0,0,0,0,1122,0,0,85,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,78,1,1,1,0,214,0,0,0,0,25,116,35,0,143,0,0,0,0,0,0,443,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1116,250,4 +0,0,0,0,0,12,2,0,8,0,2,0,0,0,2,0,8,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,1,0,0,23,12,24,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,9,0,0,3,0,0,0,4,0,35,0,0,0,0,2,0,26,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,12,0,18,0,0,0,0,3,26,31,25,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,41,0,0,0,44,0,57,0,0,0,11,1,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,94,11,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,15,3,0,1,0,0,0,0,0,0,23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,1,4 +3,0,0,5,6,14,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,20,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,95,0,0,0,0,0,1,0,0,0,0,0,25,0,0,475,14,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,47,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,309,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,61,0,52,0,0,0,2,10,48,224,99,0,0,0,0,1,0,1,0,0,0,0,0,0,425,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,117,36,397,11,0,0,404,0,602,0,1,0,103,8,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,111,74,0,0,57,0,0,0,0,0,541,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,1,1,1,0,6,0,0,0,0,49,23,4,0,7,0,0,0,0,0,0,144,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,11,0,0,232,37,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,116,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1020,28,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,159,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,501,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,132,0,49,0,0,0,1,4,182,14,130,0,0,0,0,1,0,3,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,32,10,135,4,0,0,174,0,317,0,0,0,65,14,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,110,47,0,0,0,0,0,0,0,0,83,0,0,89,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,180,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,168,54,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,195,55,0,0,0,0,0,0,0,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,84,0,58,0,0,0,50,3,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,4,4 +3,0,0,5,6,13,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,19,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,95,0,0,0,0,0,1,0,0,0,0,0,25,0,0,486,13,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,42,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,322,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,58,0,45,0,0,0,2,10,44,224,96,0,0,0,0,1,0,1,0,0,0,0,0,0,411,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,116,36,388,11,0,0,400,0,592,0,1,0,103,3,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,109,74,0,0,57,0,0,0,0,0,539,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,6,0,0,0,0,49,22,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,11,0,0,211,36,4 +21,0,0,0,0,34,24,0,36,2,5,0,2,0,4,0,20,0,6,5,0,0,0,7,0,10,3,0,5,0,2,1,0,0,6,0,34,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,76,0,0,0,0,0,1,0,0,0,0,0,3,0,0,716,34,115,0,8,0,0,0,0,0,13,0,0,0,0,0,11,16,129,0,0,6,0,0,2,25,0,298,15,0,0,0,4,0,170,0,2,0,0,660,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,95,0,47,0,0,0,6,12,193,169,99,0,0,0,0,1,0,3,0,0,0,0,0,0,389,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,130,0,0,0,146,0,247,0,0,0,61,29,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,124,53,0,0,30,0,0,0,0,0,90,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,10,0,0,0,0,1,40,22,0,12,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,35,4 +5,0,0,0,0,12,3,0,5,0,1,0,1,0,2,0,12,0,6,2,0,0,0,0,0,2,0,0,2,0,1,0,0,0,4,0,12,12,0,0,25,0,0,0,0,0,0,0,0,0,0,0,2,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,55,12,26,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,4,0,0,1,0,0,13,0,0,0,0,4,0,14,0,0,0,0,254,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,20,0,19,0,0,0,2,5,27,13,23,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,21,62,0,0,0,61,0,112,0,0,0,27,2,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,3,104,4,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,2,0,0,0,0,1,16,4,0,5,0,0,0,0,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,13,4 +2,0,0,6,0,25,2,0,18,1,3,0,0,0,6,1,61,0,6,2,0,0,0,1,0,0,0,0,5,0,12,0,0,0,12,0,25,6,0,0,35,0,0,0,1,0,0,3,0,0,0,0,11,152,0,0,0,0,0,1,0,0,0,1,0,7,0,0,1143,25,108,0,17,0,0,0,0,0,6,0,0,0,0,0,2,6,34,0,0,12,0,0,0,0,0,60,0,1,0,0,2,0,54,0,3,0,0,1212,0,0,0,0,131,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,140102,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4,0,0,0,0,0,0,65,0,76,0,0,0,22,25,57,115,68,0,0,0,0,1,0,0,0,0,0,0,0,0,193535,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,6,293,6,0,0,158,0,415,0,0,0,83,49,0,0,0,0,0,0,0,0,0,97,1,0,0,0,3,0,0,0,0,12,110,36,0,0,0,0,0,0,0,0,286,0,0,28,0,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,4,1,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,23,1,1,1,0,27,0,0,0,20,13,37,104,0,17,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,108,174,4 +1,0,0,3,0,29,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,127,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1123,29,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,172,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,523,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,138,0,53,0,0,0,1,4,186,14,136,0,0,0,0,1,0,3,0,0,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,1,0,32,10,141,3,0,0,163,0,312,0,0,0,54,9,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,111,37,0,0,0,0,0,0,0,0,92,0,0,114,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,224,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,179,56,4 +4,0,0,6,0,44,57,0,70,4,48,0,0,7,6,0,1016,0,6,1,0,0,0,8,1,10,0,0,28,0,2,0,0,0,2,9833,44,6,4,0,54,0,3,0,1,0,0,4,0,0,0,0,3,635,0,0,0,0,0,1,0,0,0,0,0,5,0,0,34919,44,1359,0,27,0,0,0,0,0,115,0,0,0,0,0,8,230,6995,0,0,2,0,0,0,0,0,570,25,7,0,0,2,0,1178,0,2,228,0,4899,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,16,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,1802,0,77,0,0,0,19,36,1293,2475,1749,0,0,0,0,1,0,4,0,0,0,0,0,0,630,0,0,0,0,0,0,0,0,0,0,0,0,4,1,6,0,0,0,0,1,0,114,33,321,6,0,0,428,0,428,0,0,0,249,12,0,0,0,0,0,0,0,0,0,1210,1,0,0,0,10,0,0,0,0,4,148,76,0,0,316,0,0,0,0,0,5245,1,0,1296,50,0,1,1,1,0,0,0,9,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,50,363,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,73,0,0,0,0,1,46,624,0,28,12,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2527,68,4 +219,0,0,0,3,86,54,12,322,3,106,1,2,0,5,0,48,0,7,16,0,3,3,2,0,6,3,0,41,0,87,1,0,3,37,0,89,12,0,0,476,0,0,0,0,0,0,0,0,0,0,0,93,124,0,0,0,0,0,1,0,0,0,0,0,20,0,0,5379,86,1458,0,135,0,0,0,0,0,296,9,0,0,0,0,11,11,222,0,12,37,3,0,4,283,0,2635,420,0,0,0,6,3,1361,0,2,0,0,8746,0,0,0,0,89,91,0,0,2,0,0,0,0,0,0,5,0,0,0,0,0,0,0,80,0,0,0,80,0,0,0,0,0,1,0,13,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,75,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,215,0,181,0,0,0,180,181,166,1863,236,0,0,0,0,0,0,0,0,0,0,0,0,0,4014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,538,6,0,0,728,0,524,0,0,0,493,56,0,0,0,0,0,0,0,0,0,545,0,0,0,0,24,0,0,0,0,92,177,538,0,0,938,0,0,0,0,0,1098,0,0,87,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,86,1,1,1,0,218,0,0,0,0,25,126,37,0,138,0,0,0,0,0,0,599,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,1,0,0,0,0,0,0,0,0,0,0,6,0,0,1239,281,4 +1,0,0,3,0,28,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,121,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1131,28,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,175,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,441,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,10,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,145,0,51,0,0,0,1,4,182,14,143,0,0,0,0,1,0,3,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,1,0,32,10,133,3,0,0,160,0,326,0,0,0,54,8,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,110,37,0,0,0,0,0,0,0,0,92,0,0,121,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,138,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,178,56,4 +0,0,0,0,0,17,3,0,19,1,1,0,1,0,3,0,22,0,7,1,0,0,0,1,0,1,3,0,4,0,1,0,0,0,1,0,17,9,0,0,51,0,0,0,1,0,0,1,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,0,0,0,819,17,58,0,6,0,0,0,0,0,6,0,0,0,0,0,1,3,182,0,0,1,0,0,1,0,0,15,0,2,0,0,4,0,39,0,0,0,0,491,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,137,0,34,0,0,0,1,7,41,50,134,0,0,0,0,1,0,0,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,15,131,0,0,0,140,0,276,0,0,0,51,13,0,0,0,0,0,0,0,0,0,56,1,0,0,0,2,0,0,0,0,2,105,34,0,0,0,0,0,0,0,0,61,0,0,56,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,4,0,0,0,0,1,18,210,0,9,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,172,55,4 +152,0,0,29,10,84,187,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,94,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,348,0,0,0,0,0,1,0,2,0,12,0,82,0,0,2872,84,1512,0,39,0,0,0,0,0,71,12,0,0,0,0,13,22,397,0,22,33,9,0,10,193,0,1895,100,3,0,0,14,10,1279,0,46,0,0,2751,0,0,0,0,53,40,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,19,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,330,0,236,0,0,0,36,76,296,1617,359,0,0,0,0,1,0,5,0,0,0,0,0,0,2704,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1436,48,0,0,1553,0,2904,0,6,0,562,48,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,278,538,0,0,215,0,0,0,0,0,9925,0,0,188,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,77,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1608,1661,4 +0,0,0,0,0,9,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,9,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,33,0,0,0,0,3,25,138,55,0,0,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,45,1,0,0,73,0,47,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,92,56,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,4,4 +0,0,0,11,0,65,8,0,63,4,10,0,0,2,8,0,1463,0,10,6,0,0,0,6,0,12,0,0,17,0,1,0,0,0,18,898,65,9,32188,0,55,0,0,0,1,0,0,9,0,0,0,0,3,1422,0,0,0,0,0,1,0,0,0,0,0,12,0,0,35648,65,1639,0,15,0,0,0,0,0,55,0,0,0,0,0,9,26,5068,0,0,18,0,0,1,7,0,190,20,16,0,0,2,0,1541,0,5,0,0,4651,0,0,0,0,8,0,2,0,2,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,4,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,12,12,12,0,0,0,4164,0,176,0,0,0,1,3,296,58483,4153,0,0,0,0,1,0,3,0,0,0,0,0,0,1102,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,1,0,38,20,416,14,0,0,514,0,848,0,0,0,306,32234,0,0,0,0,0,0,42,0,0,1564,1,0,0,0,12,0,0,0,0,1,149,197,0,0,34,0,0,0,0,0,3524,1,0,502,7,0,1,3,0,0,0,0,22,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,6,6,0,0,0,6,4,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,14,0,0,0,0,1,83,797,0,18,12,0,0,0,0,0,152,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,933,12184,4 +3,0,0,5,6,13,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,19,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,99,0,0,0,0,0,1,0,0,0,0,0,25,0,0,467,13,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,40,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,343,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,58,0,45,0,0,0,2,10,44,224,96,0,0,0,0,1,0,1,0,0,0,0,0,0,424,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,116,36,385,11,0,0,400,0,613,0,1,0,103,4,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,109,74,0,0,57,0,0,0,0,0,536,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,6,0,0,0,0,49,22,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,11,0,0,212,36,4 +16,0,0,4,0,23,2,0,20,0,3,0,0,0,3,0,60,0,6,1,0,0,0,12,0,0,24,0,8,0,9,0,0,0,11,0,23,15,0,0,12,0,0,0,1,0,0,22,0,0,0,0,8,70,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1883,23,241,0,17,0,0,0,0,0,45,0,0,0,0,22,12,57,550,0,0,11,0,0,0,0,0,89,0,22,0,0,2,0,171,0,1,0,0,502,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,465,0,331,0,0,0,16,51,74,1233,583,0,0,0,0,1,0,0,0,0,0,0,0,0,2550,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,10,4,150,4,0,0,138,0,214,0,0,0,72,592,0,0,0,0,0,0,0,0,0,94,1,0,0,0,13,0,0,0,0,9,105,6,0,0,0,0,9,0,16,8,876,0,0,188,0,0,1,0,0,0,0,0,23,0,22,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,24,0,0,0,0,1,34,72,0,41,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,31,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,729,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,725,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,9,0,0,1,107,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,26,0,0,0,0,0,1,0,0,0,0,0,2,0,0,408,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,142,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,26,0,0,0,2,4,26,94,43,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,158,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,347,14,4 +20,0,0,0,0,25,4,0,8,3,1,0,2,0,5,0,20,0,7,5,0,0,0,1,0,7,3,0,3,0,2,1,0,0,12,0,25,12,0,0,66,0,0,0,0,0,0,0,0,0,0,0,9,35,0,0,0,0,0,1,0,0,0,0,0,2,0,0,265,25,51,0,13,0,0,0,0,0,0,0,0,0,0,0,5,5,25,0,0,12,0,0,2,0,0,42,0,0,0,0,6,0,51,0,2,0,0,491,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,50,0,71,0,0,0,11,17,48,69,61,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,123,2,0,0,99,0,231,0,0,0,48,14,0,0,0,0,0,0,0,0,0,47,0,0,0,0,6,0,0,0,0,9,116,2,0,0,0,0,0,0,0,0,49,0,0,3,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,10,0,0,0,0,1,37,12,0,16,0,0,0,0,0,0,77,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,255,4 +118,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,562,0,20,45,0,98,2,6,0,33,22,0,17,0,7,3,0,10,38,0,99,301,160,0,385,0,0,0,1,0,0,3,0,0,0,0,34,358,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2522,89,1767,0,50,0,0,0,0,0,21,15,0,0,0,0,13,22,275,0,27,38,10,0,8,37,0,729,70,3,0,0,14,11,585,0,46,0,0,2382,0,0,0,0,46,15,1,0,28,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,285,0,228,0,0,0,42,73,338,583,294,0,0,0,0,1,0,6,0,0,0,0,0,0,2090,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1453,49,0,0,1496,0,2951,0,6,0,503,332,0,0,0,0,0,0,0,0,0,1117,1,0,0,0,151,0,0,0,0,30,283,149,0,0,155,0,0,0,0,0,10419,0,0,160,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,5,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,61,0,0,0,0,121,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,247,0,2,1614,1623,4 +0,0,0,6,0,10,2,0,16,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,500,0,0,0,0,0,1,0,0,0,0,0,1,0,0,38519,10,49,0,1,0,0,0,0,0,10,0,0,0,0,0,1,5,3004,0,0,1,0,0,0,0,0,9,0,2,1,0,2,0,15,0,0,0,0,3380,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1783,0,45,0,0,0,0,3,25,8,1795,0,0,0,0,1,0,0,0,0,0,0,0,0,3181,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,323,8,0,0,113,0,399,0,0,0,44,36,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,96,27,0,0,0,0,0,0,0,0,820,0,0,2880,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,109,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1493,54,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,75,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,45,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,36,4 +5,0,0,0,0,15,2,0,4,0,1,0,0,0,2,0,10,0,7,1,0,0,0,1,0,4,0,0,2,0,1,0,0,0,4,0,15,6,0,0,26,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,73,15,25,0,6,0,0,0,0,0,0,0,0,0,0,0,1,1,11,0,0,4,0,0,0,0,0,13,0,0,0,0,2,0,14,0,0,0,0,267,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,19,0,0,0,4,6,31,28,30,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,23,70,0,0,0,63,0,131,0,0,0,24,7,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,4,105,3,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,2,0,0,0,0,1,19,4,0,7,0,0,0,0,0,0,19,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,74,4 +26,0,0,7,7,49,63,25,122,10,14,0,0,2,19,4,352,0,9,16,0,6,6,7,0,23,11,0,8,0,2,0,0,7,11,0,56,219,0,0,164,0,0,0,1,0,0,1,1,0,0,0,17,151,0,0,0,0,0,1,0,0,0,9,0,22,0,0,1191,49,1066,0,24,0,0,0,0,0,13,18,0,0,0,0,10,17,158,0,25,11,7,0,2,11,0,259,20,5,1,1,4,7,338,0,13,0,0,1263,0,0,0,0,24,6,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,9,0,0,1,3,0,1,0,11,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,73,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,34,10,10,10,0,0,0,135,0,117,0,0,0,17,30,236,200,226,0,0,0,0,1,0,3,0,0,0,0,0,0,864,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,139,34,666,14,0,0,741,0,2515,0,1,0,335,23,0,0,0,1,0,0,0,0,0,585,1,0,5,0,35,0,0,0,0,17,216,89,0,0,34,0,0,0,0,0,1235,0,0,17,2,0,1,2,0,0,0,0,8,0,0,0,2,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,54,1,1,1,0,8,0,0,0,0,57,67,44,0,36,8,0,0,0,0,0,441,93,0,0,0,0,0,0,0,0,0,0,0,8,0,1,14,0,0,0,0,0,0,0,0,0,0,0,13,0,1,454,183,4 +0,0,0,5,0,35,25,0,47,3,24,0,0,7,4,0,729,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12513,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,712,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39785,35,894,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6550,0,0,1,0,0,0,0,0,364,25,1,0,0,2,0,817,0,0,88,0,4481,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1418,0,32,0,0,0,12,15,489,2085,1397,0,0,0,0,1,0,3,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,276,5,0,0,306,0,299,0,0,0,146,16,0,0,0,0,0,0,0,0,0,842,1,0,0,0,9,0,0,0,0,1,163,6,0,0,135,0,0,0,0,0,4620,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2459,23,4 +1,0,0,5,0,33,6,0,20,0,2,0,0,2,3,0,18,0,6,3,0,0,0,5,0,9,0,0,4,0,2,0,0,0,5,0,33,6,0,0,24,0,0,0,1,0,0,2,0,0,0,0,3,422,0,0,0,0,0,1,0,0,0,0,0,2,0,0,6006,33,61,0,5,0,0,0,0,0,14,0,0,0,0,0,7,15,289,0,0,5,0,0,0,0,0,78,5,4,0,0,2,0,36,0,0,0,0,712,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,244,0,56,0,0,0,3,4,193,17,241,0,0,0,0,1,0,3,0,0,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,1,0,32,10,206,6,0,0,171,0,342,0,0,0,59,19,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,115,33,0,0,0,0,0,0,0,0,107,0,0,119,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,5,0,0,0,0,1,38,138,0,6,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,198,62,4 +120,0,0,29,11,89,158,27,279,30,42,0,0,2,66,1,562,0,20,45,0,98,2,6,0,33,22,0,17,0,7,3,0,10,38,0,99,301,160,0,399,0,0,0,1,0,0,3,0,0,0,0,34,350,0,0,0,0,0,1,0,3,0,12,0,53,0,0,2575,89,1784,0,50,0,0,0,0,0,22,15,0,0,0,0,13,22,288,0,27,38,10,0,9,45,0,801,85,3,0,0,14,11,622,0,46,0,0,2089,0,0,0,0,45,18,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,293,0,232,0,0,0,42,73,337,651,302,0,0,0,0,1,0,6,0,0,0,0,0,0,2193,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1436,49,0,0,1497,0,2946,0,6,0,503,223,0,0,0,0,0,0,0,0,0,1130,1,0,0,0,151,0,0,0,0,31,282,163,0,0,185,0,0,0,0,0,10420,0,0,177,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,6,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,61,0,0,0,0,119,137,326,0,73,9,0,0,0,0,0,331,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,38,0,0,0,0,0,0,0,0,117,0,0,168,0,2,1654,1622,4 +3,0,0,6,0,25,2,0,18,1,3,0,0,0,6,1,61,0,6,2,0,0,0,1,0,0,0,0,5,0,12,0,0,0,12,0,25,6,0,0,35,0,0,0,1,0,0,3,0,0,0,0,11,149,0,0,0,0,0,1,0,0,0,1,0,7,0,0,1153,25,108,0,17,0,0,0,0,0,6,0,0,0,0,0,2,6,34,0,0,12,0,0,0,0,0,60,0,1,0,0,2,0,54,0,3,0,0,1244,0,0,0,0,131,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,141933,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4,0,0,0,0,0,0,65,0,76,0,0,0,22,25,57,115,68,0,0,0,0,1,0,0,0,0,0,0,0,0,201787,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,6,384,6,0,0,157,0,424,0,0,0,83,50,0,0,0,0,0,0,0,0,0,97,1,0,0,0,3,0,0,0,0,12,109,36,0,0,0,0,0,0,0,0,286,0,0,28,0,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,3,1,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,23,1,1,1,0,27,0,0,0,20,13,37,104,0,17,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,109,176,4 +118,0,0,29,11,91,157,27,271,30,38,0,0,2,66,0,396,0,20,45,0,98,2,6,0,34,22,0,23,0,8,2,0,10,40,0,101,301,160,0,413,0,0,0,1,0,0,3,0,0,0,0,34,359,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2437,91,1626,0,55,0,0,0,0,0,21,15,0,0,0,0,13,22,276,0,27,40,10,0,8,37,0,733,70,3,0,0,14,11,543,0,46,0,0,2464,0,0,0,0,44,16,1,0,27,0,0,1,0,0,0,23,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,56,10,10,10,0,0,0,262,0,188,0,0,0,42,74,300,578,293,0,0,0,0,1,0,6,0,0,0,0,0,0,2159,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,679,338,1477,49,0,0,1501,0,2939,0,6,0,508,128,0,0,0,0,0,0,0,0,0,950,1,0,0,0,151,0,0,0,0,29,284,149,0,0,155,0,0,0,0,0,10035,0,0,112,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,12,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,96,1,1,1,0,73,0,0,0,0,81,141,328,0,80,9,0,0,0,0,0,330,10,0,0,0,0,0,0,1,0,0,0,0,11,0,5,36,0,0,0,0,0,0,0,0,117,0,0,185,0,2,1635,1733,4 +0,0,0,5,0,35,24,0,46,3,23,0,0,7,4,0,694,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12392,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,782,0,0,0,0,0,1,0,0,0,0,0,2,0,0,38793,35,855,0,23,0,0,0,0,0,45,0,0,0,0,0,8,92,6273,0,0,1,0,0,0,0,0,360,25,2,0,0,2,0,782,0,0,89,0,4772,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,1316,0,32,0,0,0,12,15,485,2063,1295,0,0,0,0,1,0,3,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,278,5,0,0,308,0,301,0,0,0,149,15,0,0,0,0,0,0,0,0,0,804,1,0,0,0,9,0,0,0,0,1,165,7,0,0,131,0,0,0,0,0,4475,1,0,1009,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2466,26,4 +12,0,0,4,0,16,2,0,23,3,3,0,0,0,6,0,91,0,6,1,0,0,0,1,0,1,44,0,15,0,16,0,0,0,5,0,16,61,0,0,22,0,56,0,1,0,0,56,0,0,0,0,15,285,0,0,0,0,0,1,0,0,0,0,0,7,0,0,8266,16,390,0,31,0,0,0,0,0,126,0,0,0,0,0,1,58,1402,0,0,5,0,0,0,0,0,137,0,60,0,0,2,0,319,0,4,0,0,598,0,3,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,1457,0,408,0,0,0,30,78,37,148,1851,0,0,0,0,1,0,0,0,0,0,0,0,0,3512,0,62,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,8,7,138,4,0,0,584,0,861,0,0,0,526,10,0,0,0,0,0,0,0,0,0,131,1,0,0,0,2,0,0,0,0,16,98,436,0,0,0,0,0,0,0,0,576,0,0,1201,0,0,1,0,1,0,0,0,145,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,136,0,0,0,0,16,15,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,30,0,0,0,0,1,21,102,0,76,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1288,343,4 +0,0,0,11,0,45,17,0,69,0,16,0,0,2,7,0,662,0,6,3,0,0,0,6,0,10,3,0,5,0,4,1,0,0,11,945,45,9,0,0,96,0,0,0,1,0,0,6,0,0,0,0,5,235,0,0,0,0,0,1,0,0,0,0,0,15,0,0,26166,45,816,0,7,0,0,0,0,0,33,0,0,0,1,0,8,23,4574,0,0,11,0,0,3,34,0,393,60,11,0,0,2,0,848,0,3,0,0,2171,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,3568,0,94,0,0,0,8,13,265,568,3560,0,0,0,0,1,0,4,0,0,0,0,0,0,776,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,15,414,14,0,0,274,0,504,0,0,0,127,16,0,0,0,0,0,0,0,0,0,779,1,0,0,0,9,0,0,0,0,4,131,89,0,0,128,0,0,0,0,0,2014,1,0,921,8,0,1,1,0,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,8,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,11,0,0,0,0,1,56,227,0,11,12,0,0,0,0,0,126,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1449,294,4 +297,0,0,32,26,104,224,59,561,41,90,0,0,2,81,1,698,0,22,80,0,120,1,7,0,60,13,0,32,0,5,3,0,26,45,0,124,352,159,0,965,0,0,0,1,0,0,5,1,0,0,0,58,416,0,0,0,0,0,1,0,2,0,12,0,96,0,0,4008,104,3780,0,90,0,0,0,0,0,99,57,0,0,0,0,14,28,564,0,59,45,26,0,10,201,0,2088,95,10,1,0,16,26,1503,0,59,0,0,3352,0,0,0,0,72,76,0,0,40,0,0,1,0,0,0,19,0,0,0,0,0,0,0,24,0,0,0,16,0,0,0,2,0,7,0,71,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,2,0,0,0,0,0,1,16,0,0,0,0,0,0,0,19,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,96,10,10,10,0,0,0,481,0,376,0,0,0,64,87,412,1828,521,0,0,0,0,1,0,4,0,0,0,0,0,0,4462,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,784,388,1948,69,0,0,2093,0,3856,0,7,0,716,230,0,0,0,0,0,0,0,0,0,1679,1,0,2,0,208,0,0,0,0,56,329,520,0,0,211,0,0,0,0,0,10664,0,0,136,3,0,1,8,0,0,0,0,13,0,0,0,4,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,62,62,0,0,16,1,0,0,0,0,3,11,3,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,7,107,1,1,1,0,55,0,0,0,0,215,169,201,0,104,9,0,0,0,0,0,804,30,0,0,0,0,0,0,1,0,0,0,0,21,0,4,49,0,0,0,0,0,0,0,0,117,0,0,181,0,5,2382,1511,4 +0,0,0,5,0,35,24,0,47,3,23,0,0,7,4,0,729,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12454,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,719,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39109,35,891,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6367,0,0,1,0,0,0,0,0,361,25,2,0,0,2,0,817,0,0,91,0,4550,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1404,0,32,0,0,0,12,15,487,2064,1383,0,0,0,0,1,0,3,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,276,5,0,0,305,0,308,0,0,0,145,13,0,0,0,0,0,0,0,0,0,840,1,0,0,0,9,0,0,0,0,1,162,7,0,0,132,0,0,0,0,0,4465,1,0,1020,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2413,25,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,731,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,727,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,2,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,1,108,4 +102,0,0,0,12,85,18,48,149,3,26,0,2,0,5,0,118,0,7,33,0,12,12,3,0,3,3,0,23,0,71,1,0,12,54,0,97,12,0,0,180,0,0,0,0,0,0,0,0,0,0,0,74,113,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1030,85,1365,0,98,0,0,0,0,0,5,36,0,0,0,0,11,11,46,0,48,54,12,0,2,34,0,630,60,0,0,0,6,12,344,0,2,0,0,2345,0,0,0,0,28,22,0,0,3,0,0,0,0,0,0,15,0,0,0,0,0,0,0,22,0,0,0,21,0,0,0,0,0,1,0,23,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,0,0,0,0,0,0,84,0,115,0,0,0,145,147,148,482,120,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,723,14,0,0,688,0,583,0,0,0,283,116,0,0,0,0,0,0,0,0,0,325,0,0,0,0,60,0,0,0,0,73,176,64,0,0,132,0,0,0,0,0,255,0,0,69,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,84,1,1,1,0,168,0,0,0,128,97,151,54,0,101,0,0,0,0,0,0,209,16,0,0,0,0,0,0,0,0,0,0,0,12,0,1,3,0,0,0,0,0,0,0,0,0,0,0,22,0,0,248,936,4 +195,0,0,26,17,75,193,26,348,33,45,0,0,2,74,1,641,0,22,31,0,18,2,5,0,44,16,0,27,0,4,3,0,16,33,0,92,540,0,0,370,0,0,0,1,0,0,0,0,0,0,0,43,321,0,0,0,0,0,1,0,0,0,2,0,52,0,0,2056,75,2434,0,69,0,0,0,0,0,4,30,0,0,0,0,15,20,145,0,26,33,16,0,8,48,0,886,80,0,0,0,16,17,723,0,49,0,0,2620,0,0,0,0,34,19,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,17,0,0,0,6,0,0,0,0,0,6,0,57,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,1,0,0,0,0,0,0,13,0,0,0,3,0,0,0,12,2,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,52,10,10,10,0,0,0,146,0,163,0,0,0,48,62,341,574,158,0,0,0,0,1,0,4,0,0,0,0,0,0,1833,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,773,176,1640,50,0,0,1697,0,2571,0,7,0,489,138,0,0,0,0,0,0,0,0,0,1326,0,0,0,0,56,0,0,0,0,45,274,107,0,0,187,0,0,0,1,0,14928,0,0,9,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,1,0,0,0,0,52,52,0,0,8,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,79,1,1,1,0,42,0,0,0,0,183,125,72,0,85,9,0,0,0,0,0,343,40,0,0,0,0,0,0,0,0,0,0,0,18,0,1,39,0,0,0,0,0,0,0,0,0,0,0,24,0,0,928,1173,4 +0,0,0,3,0,9,3,0,25,1,3,0,0,0,8,0,25,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,9,6,0,0,44,0,1,0,1,0,0,1,1,0,0,0,0,276,0,0,0,0,0,1,0,0,0,0,0,9,0,0,4670,9,63,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,471,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,68,0,0,0,0,1169,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,35,0,37,0,0,0,0,3,24,12,44,0,0,0,0,1,0,0,0,0,0,0,0,0,2063,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,160,3,0,0,158,0,174,0,0,0,102,13,0,0,0,0,0,0,0,0,0,70,1,0,2,0,2,0,0,0,0,0,91,95,0,0,0,0,0,0,0,0,272,0,0,736,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,96,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,252,74,4 +118,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,562,0,20,45,0,98,2,6,0,33,22,0,17,0,7,3,0,10,38,0,99,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,371,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2515,89,1770,0,50,0,0,0,0,0,20,15,0,0,0,0,13,22,288,0,27,38,10,0,8,37,0,729,70,3,0,0,14,11,585,0,46,0,0,2264,0,0,0,0,46,16,1,0,33,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,22,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,285,0,234,0,0,0,42,73,337,592,296,0,0,0,0,1,0,6,0,0,0,0,0,0,2141,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1463,49,0,0,1496,0,2948,0,6,0,504,309,0,0,0,0,0,0,0,0,0,1117,1,0,0,0,151,0,0,0,0,30,284,149,0,0,155,0,0,0,0,0,10422,0,0,157,3,0,1,6,0,0,0,0,6,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,10,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,61,0,0,0,0,119,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,177,0,2,1667,1623,4 +1,0,0,3,0,28,5,0,21,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,132,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1196,28,61,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,196,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,32,0,0,0,0,508,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,147,0,49,0,0,0,1,4,182,14,145,0,0,0,0,1,0,3,0,0,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,32,10,148,4,0,0,152,0,317,0,0,0,42,10,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,1,110,24,0,0,0,0,0,0,0,0,100,0,0,109,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,104,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,188,53,4 +156,0,4,3,7,114,48,24,744,21,49,0,6,0,28,0,8262,0,7,28,0,7,6,8,0,27,15,0,28,0,19,2,0,6,48,26,120,31,0,0,610,0,3,0,1,0,0,3,1,0,0,0,40,262,0,0,0,0,0,1,0,0,0,19,0,40,0,0,3328,114,10054,0,64,0,0,0,0,0,18,18,0,0,0,0,21,31,842,0,24,48,6,0,6,152,0,1441,100,6,0,0,12,7,9168,0,20,0,0,6770,0,0,0,0,33,23,1,0,4,0,0,1,0,0,0,24,0,0,0,0,0,0,0,15,0,0,0,16,0,0,0,0,0,5,0,43,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,14,1,1,1,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1041,10,10,10,0,0,0,293,0,220,0,0,0,59,78,344,1178,335,0,0,0,0,1,0,4,0,0,0,16553,3,1,1513,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,1,0,79,20818,755,11,0,0,703,0,2334,0,0,0,296,589,0,0,0,0,0,0,0,0,0,9144,1,0,2,0,49,0,0,0,0,33,207,398,0,4,249,0,0,0,0,0,17434,0,0,789,3,0,1,8,1,0,0,0,8,0,0,0,0,0,0,0,0,0,18,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,18,1,2,0,0,0,3,400,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,139,1,1,1,0,77,0,0,0,24,51,168,118,0,82,9,0,0,0,0,0,502,17,0,0,0,0,0,0,0,0,0,0,0,7,0,1,23,0,0,0,0,0,0,0,0,0,0,0,9,0,2,760,1057,4 +3,0,0,18,0,41,6,0,27,2,8,0,0,2,5,1,169,0,7,7,0,0,0,5,0,8,9,0,5,0,5,0,0,0,12,0,41,6,0,0,87,0,0,0,1,0,0,2,0,0,0,0,5,125,0,0,0,0,0,1,0,0,0,0,0,9,0,0,1291,41,228,0,8,0,0,0,0,0,9,0,0,0,0,0,11,19,122,0,0,12,0,0,0,0,0,104,5,2,0,0,2,0,239,0,3,0,0,1050,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,125,0,60,0,0,0,8,17,231,83,106,0,0,0,0,1,0,3,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,2,0,34,21,301,31,0,0,412,0,924,0,0,0,295,69,0,0,0,0,0,0,0,0,0,225,1,0,0,0,12,0,0,0,0,5,202,170,0,0,0,0,0,0,0,0,5477,0,0,22,3,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,8,0,0,0,0,1,53,672,0,18,9,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,142,1524,4 +0,0,0,0,0,9,13,0,21,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,1,0,0,127,9,72,0,1,0,0,0,0,0,10,0,0,0,0,0,1,1,42,0,0,0,0,0,2,17,0,142,15,0,0,0,4,0,91,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,37,0,31,0,0,0,0,3,25,94,51,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,45,1,0,0,60,0,40,0,0,0,23,3,0,0,0,0,0,0,0,0,0,59,0,0,0,0,2,0,0,0,0,0,92,34,0,0,30,0,0,0,0,0,32,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,50,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,4,4 +31,0,0,0,0,30,8,0,13,2,1,0,2,0,4,0,45,0,7,6,0,0,0,2,0,7,15,0,3,0,7,1,0,0,7,0,30,12,0,0,65,0,0,0,0,0,0,0,0,0,0,0,13,41,0,0,0,0,0,1,0,0,0,0,0,2,0,0,394,30,94,0,18,0,0,0,0,0,0,0,0,0,0,0,7,7,26,0,0,7,0,0,2,0,0,64,0,0,0,0,6,0,131,0,2,0,0,1447,0,0,0,0,7,4,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,202,0,86,0,0,0,20,32,51,83,70,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,29,144,0,0,0,115,0,303,0,0,0,28,18,0,0,0,0,0,0,0,0,0,80,0,0,0,0,8,0,0,0,0,12,115,1,0,0,0,0,0,0,0,0,93,0,0,8,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,18,0,0,0,0,1,37,7,0,33,0,0,0,0,0,0,71,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,133,168,4 +0,0,0,0,0,8,3,0,4,0,1,0,1,0,3,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1,0,0,0,0,0,0,0,0,44,8,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,16,0,0,0,0,3,21,4,24,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,37,0,22,0,0,0,3,3,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,4,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,1,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,2,0,0,407,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,142,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,29,0,25,0,0,0,2,4,26,93,40,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,157,0,0,0,5,4,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,24,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,12,5,0,3,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,326,14,4 +0,0,0,0,1,31,7,1,8,0,2,0,2,0,3,0,16,0,6,5,0,1,0,6,0,8,0,0,2,0,1,0,0,1,4,0,31,12,0,0,39,0,0,0,1,0,0,0,0,0,0,0,1,46,0,0,0,0,0,1,0,0,0,0,0,0,0,0,542,31,87,0,1,0,0,0,0,0,3,3,0,0,0,0,7,12,113,0,1,4,1,0,1,0,0,74,0,0,0,0,4,1,29,0,0,0,0,616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,69,0,47,0,0,0,0,3,184,22,89,0,0,0,0,1,0,3,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,23,20,111,1,0,0,107,0,194,0,0,0,25,2,0,0,0,0,0,0,0,0,0,44,0,0,0,0,12,0,0,0,0,0,115,8,0,0,0,0,0,0,0,0,79,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,0,0,0,0,0,1,35,20,0,2,9,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,125,101,4 +83,0,0,25,8,75,161,17,373,26,66,0,0,2,56,0,309,0,18,14,0,5,1,6,0,25,13,0,13,0,4,3,0,7,28,0,83,253,0,0,613,0,0,0,1,0,0,3,0,0,0,0,24,309,0,0,0,0,0,1,0,2,0,12,0,73,0,0,2765,75,1254,0,34,0,0,0,0,0,65,9,0,0,0,0,13,22,349,0,17,28,7,0,9,183,0,1767,100,3,0,0,12,8,1167,0,40,0,0,1910,0,0,0,0,28,32,0,0,30,0,0,1,0,0,0,15,0,0,0,0,0,0,0,7,0,0,0,7,0,0,0,0,0,1,0,17,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,10,10,10,0,0,0,270,0,214,0,0,0,29,48,279,1467,312,0,0,0,0,1,0,4,0,0,0,0,0,0,2317,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,556,117,1223,42,0,0,1331,0,2546,0,5,0,495,44,0,0,0,0,0,0,0,0,0,985,1,0,0,0,26,0,0,0,0,18,257,509,0,0,215,0,0,0,0,0,9788,0,0,149,3,0,1,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,82,1,1,1,0,28,0,0,0,0,65,111,291,0,49,9,0,0,0,0,0,652,8,0,0,0,0,0,0,0,0,0,0,0,9,0,1,36,0,0,0,0,0,0,0,0,0,0,0,11,0,3,1544,780,4 +0,0,0,2,0,10,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,74,0,0,0,0,0,1,0,0,0,0,0,1,0,0,8216,10,40,0,1,0,0,0,0,0,8,0,0,0,0,0,1,5,1951,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,13,0,0,0,0,520,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,76,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1203,0,142,0,0,0,0,3,26,5,1245,0,0,0,0,1,0,0,0,0,0,0,0,0,3097,0,0,0,0,0,0,0,0,0,0,0,0,2,0,75,0,0,0,0,0,0,8,3,83,2,0,0,117,0,234,0,0,0,52,6,0,0,0,0,0,0,162,0,0,40,1,0,0,0,2,0,0,0,0,0,92,44,0,0,0,0,0,0,0,0,567,0,0,2384,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,151,0,0,0,0,297,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,84,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,149,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,80,0,0,0,0,0,0,0,1,1186,234,4 +69,0,0,25,9,81,133,22,234,26,34,0,0,2,58,1,487,0,18,43,0,97,1,6,0,32,13,0,16,0,4,3,0,8,33,0,89,253,160,0,337,0,0,0,1,0,0,3,0,0,0,0,30,305,0,0,0,0,0,1,0,2,0,12,0,45,0,0,2208,81,1523,0,45,0,0,0,0,0,20,12,0,0,0,0,13,22,250,0,22,33,8,0,7,37,0,675,70,3,0,0,12,9,520,0,40,0,0,1722,0,0,0,0,30,10,1,0,31,0,0,1,0,0,0,19,0,0,0,0,0,0,0,6,0,0,0,8,0,0,0,0,0,1,0,20,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,9,2,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,47,10,10,10,0,0,0,243,0,215,0,0,0,35,54,329,525,263,0,0,0,0,1,0,5,0,0,0,0,0,0,1896,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,573,309,1229,43,0,0,1280,0,2594,0,5,0,438,62,0,0,0,0,0,0,0,0,0,967,1,0,0,0,147,0,0,0,0,23,259,146,0,0,155,0,0,0,0,0,10279,0,0,146,3,0,1,5,0,0,0,0,5,0,0,0,1,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,51,51,0,0,7,1,0,0,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,86,1,1,1,0,34,0,0,0,0,107,122,308,0,59,9,0,0,0,0,0,281,8,0,0,0,0,0,0,1,0,0,0,0,9,0,3,32,0,0,0,0,0,0,0,0,117,0,0,244,0,2,1607,793,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,140,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,47,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,70,0,46,0,0,0,36,23,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,33,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,4,4 +6,0,0,9,0,60,181,0,121,6,15,0,0,2,21,2,66,0,63,4,0,0,0,7,0,8,24,0,9,0,9,4,0,0,23,0,60,206,0,0,282,0,0,0,1,0,0,7,1,0,0,0,13,210,0,0,0,0,0,1,0,0,0,5,0,16,0,0,8400,60,547,0,20,0,0,0,0,0,36,0,0,0,0,1,10,25,774,0,0,23,0,0,1,94,0,839,60,20,0,0,2,0,714,0,10,0,0,2914,0,0,0,0,3,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,723,0,170,0,0,0,24,50,254,1343,697,0,0,0,0,1,0,14,0,0,0,0,0,0,2949,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,25,509,9,0,0,629,0,1174,0,0,0,487,99,0,0,0,0,0,0,0,0,0,471,1,0,9,0,11,0,0,0,0,12,168,383,0,0,293,0,0,0,0,0,1434,0,0,1910,3,0,1,1,1,0,0,0,27,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,85,1,1,1,0,23,0,0,0,0,1,83,624,0,45,9,0,0,0,0,0,289,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1014,1498,4 +1,0,0,9,4,18,30,13,57,4,10,0,2,0,15,0,235,0,8,7,0,3,3,2,0,1,0,0,0,0,1,0,0,4,8,0,22,69,0,0,118,0,0,0,0,0,0,0,0,0,0,0,1,91,0,5,0,0,0,1,0,0,0,0,0,8,0,0,238,18,464,0,1,0,0,0,0,0,0,9,0,0,5,0,2,2,64,0,13,8,4,0,3,0,0,56,0,0,0,0,10,4,68,0,6,0,0,4169,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,57,0,63,0,0,0,0,3,49,81,126,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,130,56,332,13,0,0,346,0,812,0,1,0,112,5,0,0,0,0,0,0,0,0,0,357,0,0,0,0,15,0,0,0,0,0,125,12,0,0,0,0,0,0,0,0,389,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,1,1,1,0,1,0,0,0,0,33,30,29,0,2,0,0,0,0,0,0,173,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,263,38,4 +106,0,0,24,4,64,81,7,125,7,16,0,0,2,24,0,187,0,12,5,0,1,1,6,0,16,9,0,8,0,4,0,0,4,23,0,68,165,0,0,210,0,0,0,1,0,0,7,0,0,0,0,11,267,0,0,0,0,0,1,0,1,0,0,0,21,0,0,5117,64,483,0,18,0,0,0,0,0,30,3,0,0,0,0,8,21,1008,0,7,23,4,0,4,11,0,322,20,12,0,0,8,4,207,0,15,0,0,1709,0,0,0,0,41,30,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,32,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,748,0,246,0,0,0,13,46,246,242,715,0,0,0,0,1,0,4,0,0,0,0,0,0,1969,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,74,769,33,0,0,820,0,1483,0,3,0,288,29,0,0,0,0,0,0,2,0,0,447,1,0,0,0,13,0,0,0,0,11,194,94,0,0,34,0,0,0,0,0,1197,0,0,928,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,66,1,1,1,0,63,0,0,0,0,33,91,361,0,28,9,0,0,0,0,0,268,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,11,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1323,1357,4 +18,0,0,2,0,19,20,0,99,0,21,0,1,0,3,0,15,0,7,1,0,0,0,1,0,5,0,0,0,0,1,0,0,0,9,0,19,12,0,0,208,0,0,0,0,0,0,0,0,0,0,0,5,62,0,0,0,0,0,1,0,0,0,0,0,17,0,0,489,19,185,0,6,0,0,0,0,0,12,0,0,0,0,0,1,1,105,0,0,9,0,0,2,88,0,683,15,0,0,0,4,0,459,0,0,0,0,263,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,95,0,77,0,0,0,5,7,36,625,112,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,28,103,2,0,0,100,0,158,0,0,0,61,7,0,0,0,0,0,0,0,0,0,166,0,0,0,0,2,0,0,0,0,5,103,224,0,0,30,0,0,0,0,0,624,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,0,0,0,0,0,1,28,9,0,6,0,0,0,0,0,0,293,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,410,4 +31,0,0,7,7,54,63,25,123,10,14,0,0,2,19,4,355,0,9,15,0,6,6,8,0,25,14,0,8,0,3,0,0,7,15,0,61,219,0,0,166,0,0,0,1,0,0,3,2,0,0,0,20,166,0,0,0,0,0,1,0,0,0,9,0,22,0,0,1484,54,1121,0,27,0,0,0,0,0,24,18,0,0,0,0,10,20,225,0,25,15,7,0,2,11,0,271,20,9,1,0,4,7,363,0,13,0,0,1131,0,0,0,0,24,8,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,9,0,0,1,5,0,1,0,12,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,73,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,3,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,36,10,10,10,0,0,0,187,0,151,0,0,0,21,38,246,213,280,0,0,0,0,1,0,3,0,0,0,0,0,0,1078,0,0,0,0,0,0,0,0,0,0,0,0,3,1,4,0,0,0,0,1,0,139,34,693,14,0,0,765,0,2241,0,1,0,356,27,0,0,0,0,0,0,0,0,0,589,1,0,5,0,35,0,0,0,0,21,222,91,0,0,34,0,0,0,0,0,1295,0,0,43,2,0,1,2,0,0,0,0,12,0,0,0,3,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,59,1,1,1,0,9,0,0,0,0,57,76,49,0,42,8,0,0,0,0,0,462,93,0,0,0,0,0,0,0,0,0,0,0,8,0,1,14,0,0,0,0,0,0,0,0,0,0,0,13,0,2,561,218,4 +5,0,0,6,6,37,30,21,112,11,25,0,0,2,16,0,103,0,8,13,0,10,0,6,0,8,0,0,1,0,1,0,0,6,6,0,43,54,0,0,102,0,0,0,1,0,0,1,0,0,0,0,1,142,0,0,0,0,0,1,0,0,0,0,0,21,0,0,786,37,533,0,1,0,0,0,0,0,5,15,0,0,0,0,8,14,94,0,21,6,6,0,3,29,0,370,50,1,0,0,4,6,209,0,13,0,0,653,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,14,10,10,10,0,0,0,73,0,254,0,0,0,0,3,209,248,103,0,0,0,0,1,0,4,0,0,0,0,0,0,496,0,6,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,137,39,450,12,0,0,468,0,655,0,1,0,114,15,0,0,0,0,0,0,0,0,0,296,1,0,0,0,29,0,0,0,0,1,134,71,0,0,106,0,0,0,0,0,204,0,0,8,2,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,39,1,1,1,0,0,0,0,0,0,49,49,31,0,2,8,0,0,0,0,0,125,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,17,0,0,0,0,0,0,0,0,0,0,0,10,0,0,626,42,4 +0,0,0,7,0,35,7,0,43,0,3,0,0,2,3,0,835,0,6,2,0,0,0,8,0,11,0,0,5,0,2,0,0,0,2,972,35,6,0,0,30,0,2,0,1,0,0,2,0,0,0,0,2,197,0,0,0,0,0,1,0,0,0,0,0,6,0,0,31194,35,901,0,3,0,0,0,0,0,16,0,0,0,0,0,9,22,5908,0,0,2,0,0,0,0,0,99,5,3,0,0,2,0,854,0,1,0,0,2039,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,98,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,4437,0,134,0,0,0,2,4,241,320,4449,0,0,0,0,1,0,3,0,0,0,0,0,0,3381,0,0,0,0,0,0,0,0,0,0,0,0,2,1,93,0,0,0,0,1,0,32,11,212,7,0,0,263,0,483,1,0,0,111,9,0,0,0,0,0,0,184,0,0,899,1,0,0,0,10,0,0,0,0,2,122,62,0,0,0,0,0,0,0,0,2662,1,0,2505,9,0,1,2,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,179,0,0,0,9,354,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,71,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,3,0,0,0,0,1,37,229,0,4,14,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,97,0,0,0,0,0,0,0,1,1534,375,4 +0,0,0,10,0,17,4,0,25,1,7,0,0,0,4,0,19,0,7,1,0,0,0,1,0,0,0,0,5,0,8,0,0,0,5,0,17,6,0,0,36,0,0,0,1,0,0,1,0,0,0,0,7,73,1,0,0,0,0,1,0,0,0,2,0,7,0,0,18442,17,67,0,13,0,0,0,0,0,6,0,0,0,0,0,1,3,3629,0,0,5,0,0,1,9,0,107,15,1,0,0,2,0,66,0,1,0,0,514,0,0,0,0,2,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2607,0,53,0,0,0,14,12,38,148,2624,0,0,0,0,1,0,0,0,0,0,0,0,0,4801,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,7,111,14,0,0,96,0,237,0,0,0,30,10,0,0,0,0,0,0,0,0,0,66,1,0,0,0,2,0,0,0,0,5,101,20,0,0,31,0,0,0,0,0,1664,0,0,5118,0,0,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,19,0,0,0,8,1,22,12,0,13,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,2,0,0,0,0,0,0,0,0,0,0,0,0,1,2425,59,4 +5,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,0,0,0,23,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,10,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,15,0,0,0,0,3,21,5,28,0,0,0,0,1,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,34,0,33,0,0,0,3,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,3,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,4,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,2,4 +24,0,0,14,3,46,79,3,115,50,6,0,0,2,66,0,190,0,13,4,0,0,0,5,0,8,12,0,8,0,7,0,0,3,16,0,49,150,0,0,217,0,0,0,1,0,0,2,0,0,0,0,7,158,0,0,0,0,0,1,0,0,0,29,0,53,0,0,1370,46,372,0,13,0,0,0,0,0,7,0,0,0,0,0,8,16,188,0,3,16,3,0,3,0,0,217,5,1,0,0,8,3,252,0,52,0,0,1305,0,0,0,0,17,5,0,0,0,0,0,1,0,0,0,5,0,0,1,0,0,0,0,2,0,0,0,8,0,0,0,0,0,0,0,12,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,19,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,72,10,10,10,0,0,0,120,0,91,0,0,0,12,34,226,349,154,0,0,0,0,1,0,3,0,0,0,0,0,0,732,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,344,131,709,21,0,0,647,0,1237,0,3,0,189,22,0,0,0,0,0,0,0,0,0,471,1,0,0,0,9,0,0,0,0,7,187,7,0,0,0,0,0,0,0,0,449,0,0,34,3,0,1,1,0,0,0,0,4,0,0,0,1,0,0,0,0,0,43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,16,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,56,1,1,1,0,32,0,0,0,0,25,65,67,0,26,9,0,0,0,0,0,168,3,0,0,0,0,0,0,0,0,0,0,0,4,0,1,52,0,0,0,0,0,0,0,0,0,0,0,3,0,0,352,106,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,21,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,19,0,0,0,0,3,21,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,36,0,56,0,0,0,6,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,5,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,4,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,4,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,15,0,0,0,0,0,1,0,0,0,0,0,2,0,0,42,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,732,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,728,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,9,0,0,1,107,4 +22,0,0,2,1,52,6,4,35,0,3,0,2,0,4,0,34,0,7,7,0,1,1,6,0,8,0,0,10,0,2,0,0,1,19,0,53,9,0,0,93,0,0,0,1,0,0,4,0,0,0,0,2,117,0,0,0,0,0,1,0,1,0,0,0,0,0,0,9358,52,218,0,10,0,0,0,0,0,24,3,0,0,0,0,10,20,1418,0,4,19,1,0,1,0,0,101,0,8,0,0,4,1,61,0,0,0,0,5873,0,0,0,0,4,2,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,10,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,27,10,10,10,0,0,0,1000,0,111,0,0,0,2,4,223,53,987,0,0,0,0,1,0,3,0,0,0,0,0,0,2574,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,23,30,272,3,0,0,286,0,522,0,0,0,132,21,0,0,0,0,0,0,0,0,0,91,1,0,0,0,15,0,0,0,0,2,135,49,0,0,0,0,0,0,0,0,649,0,0,2149,3,0,1,2,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,10,0,0,0,0,9,72,86,0,11,9,0,0,0,0,0,73,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,917,543,4 +199,0,0,0,13,153,129,43,350,25,51,2,4,0,30,10,314,0,14,35,0,12,8,6,0,41,24,0,24,0,11,2,0,6,69,0,166,334,404,0,621,0,0,0,1,0,0,4,0,0,0,0,44,314,0,0,0,0,0,1,0,0,0,0,0,31,0,0,3415,153,2199,0,63,0,0,0,0,0,18,30,0,0,0,1,20,30,204,0,43,69,6,0,6,143,0,1476,105,4,0,0,14,13,1094,0,24,0,0,4035,0,0,0,0,63,27,1,0,0,0,0,1,0,0,0,39,0,0,0,0,0,0,0,23,0,0,0,22,0,0,0,0,0,1,0,63,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,14,4,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,12,0,0,0,0,12,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,60,10,10,10,0,0,0,243,0,215,0,0,0,57,73,397,12779,324,0,0,0,0,1,0,4,0,0,0,0,0,0,2075,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,374,149,1349,23,0,0,1462,0,1844,0,3,0,556,10470,0,0,0,0,0,0,0,0,0,904,1,0,0,0,61,0,0,0,0,24,294,394,0,0,259,0,0,0,1,0,9996,0,0,42,3,0,1,10,0,0,0,0,6,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,3,28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,163,1,1,1,0,77,0,0,0,0,105,235,214,0,93,9,0,0,0,0,0,552,16,0,0,0,0,0,0,0,0,0,0,0,14,0,2,25,0,0,0,0,0,0,0,0,0,0,0,21,0,1,424,595,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,0,0,0,34,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +0,0,0,3,0,9,3,0,24,1,3,0,0,0,8,0,26,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,44,0,1,0,1,0,0,1,1,0,0,0,0,278,0,0,0,0,0,1,0,0,0,0,0,9,0,0,4751,9,63,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,498,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,68,0,0,0,0,1218,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,35,0,37,0,0,0,0,3,24,12,44,0,0,0,0,1,0,0,0,0,0,0,0,0,2144,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,140,3,0,0,158,0,173,0,0,0,102,9,0,0,0,0,0,0,0,0,0,70,1,0,2,0,2,0,0,0,0,0,91,95,0,0,0,0,0,0,0,0,272,0,0,736,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,96,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,253,74,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,2,0,0,409,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,136,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,48,3,0,0,47,0,145,0,0,0,5,6,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +30,0,0,0,0,16,13,0,49,0,12,0,2,0,3,0,14,0,7,1,0,0,0,1,0,5,0,0,0,0,1,0,0,0,5,0,16,15,0,0,103,0,0,0,0,0,0,0,0,0,0,0,5,43,0,0,0,0,0,1,0,0,0,0,0,8,0,0,482,16,125,0,6,0,0,0,0,0,16,0,0,0,0,0,1,1,137,0,0,5,0,0,3,43,0,350,15,0,0,0,6,0,227,0,0,0,0,184,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,118,0,91,0,0,0,5,7,36,321,135,0,0,0,0,0,0,0,0,0,0,0,0,0,473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,25,89,1,0,0,95,0,156,0,0,0,50,9,0,0,0,0,0,0,0,0,0,100,0,0,0,0,2,0,0,0,0,5,103,109,0,0,30,0,0,0,0,0,635,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,0,0,0,0,0,1,21,5,0,6,0,0,0,0,0,0,205,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,181,4 +1,0,0,7,0,11,2,0,11,0,3,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,2,0,3,0,0,0,1,0,11,6,0,0,8,0,0,0,1,0,0,2,0,0,0,0,2,94,0,0,0,0,0,1,0,0,0,0,0,1,0,0,19552,11,44,0,5,0,0,0,0,0,8,0,0,0,0,1,1,5,342,0,0,1,0,0,0,0,0,10,0,4,0,0,2,0,14,0,0,0,0,6198,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,260,0,32,0,0,0,4,5,26,6056,262,0,0,0,0,1,0,0,0,0,0,0,0,0,412,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,5,91,10,0,0,102,0,248,0,0,0,42,4,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,93,31,0,0,0,0,0,0,0,0,125,0,0,333,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,6,0,0,0,0,1,12,181,0,5,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,211,11,4 +1,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1413,10,42,0,1,0,0,0,0,0,9,0,0,0,0,0,1,4,315,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,13,0,0,0,0,197,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,189,0,49,0,0,0,0,3,26,7,198,0,0,0,0,1,0,0,0,0,0,0,0,0,538,0,0,0,0,0,0,0,0,0,0,0,0,2,0,5,0,0,0,0,0,0,10,3,98,2,0,0,120,0,247,0,0,0,53,13,0,0,0,0,0,0,4,0,0,42,1,0,0,0,2,0,0,0,0,0,92,46,0,0,0,0,0,0,0,0,678,0,0,294,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,152,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,233,307,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,1,0,0,143,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,33,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,83,0,57,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,4,4 +38,0,0,27,2,435,64,2,258,14,140,0,0,2,92,0,335,0,8,6,0,1,1,7,1,11,32,0,18,0,101,2,0,2,400,0,437,495,0,0,1569,0,0,0,1,0,0,3,0,0,0,0,104,234,0,0,0,0,0,1,0,0,0,3,0,45,0,0,5183,435,1176,0,29,0,0,0,0,0,12,3,0,0,0,1,10,20,935,0,2,400,2,0,11,180,0,1701,205,3,0,0,4,2,1687,0,17,0,0,8266,0,0,0,0,41,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0,0,14,0,37,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,6,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,30,10,10,10,0,0,0,544,0,480,0,0,0,111,166,616,1480,637,0,0,0,0,1,0,3,0,0,0,0,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,213,247,1886,108,0,0,1868,0,1615,0,1,0,1591,68,0,0,0,0,0,0,0,0,0,899,1,0,0,0,16,0,0,0,0,12,614,542,0,0,469,0,0,0,0,0,6093,0,0,1211,3,0,1,1,0,0,0,0,5,0,0,0,1,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,110,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,439,1,1,1,0,632,0,0,0,0,17,837,846,0,155,9,0,0,0,0,0,1534,10,0,0,0,0,0,0,0,0,0,0,0,3,0,1,38,0,0,0,0,0,0,0,0,0,0,0,3,0,2,4060,3291,4 +54,0,0,0,2,95,97,5,144,51,48,0,6,0,54,0,144,0,7,18,0,2,1,18,0,23,18,0,16,0,7,1,0,2,34,0,97,182,36,1,792,0,0,0,1,0,0,0,0,0,0,0,21,228,0,0,0,0,0,1,0,1,0,0,0,21,0,0,2540,95,825,0,32,0,0,0,0,0,4,6,0,0,0,0,23,28,264,0,5,34,2,0,5,91,0,900,10,0,0,0,13,2,893,0,16,0,0,3230,0,0,0,0,16,8,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,7,0,0,0,5,0,0,0,0,0,1,0,10,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,54,10,10,10,0,0,0,260,0,133,0,0,0,33,98,299,847,314,0,0,0,0,1,0,5,0,0,1,1,1,0,1108,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,2,0,47,193,594,7,0,0,579,0,798,0,0,0,337,111,0,0,0,0,0,0,0,0,0,500,0,0,0,0,39,0,0,0,0,41,228,289,0,0,26,0,3,0,0,0,568,0,0,19,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,105,1,1,1,0,107,0,0,0,0,18,131,62,0,56,9,0,0,0,0,0,624,7,0,0,0,0,0,0,0,0,0,0,0,3,0,1,51,0,0,0,0,0,0,0,0,0,0,0,4,0,0,268,883,4 +0,0,0,22,3,18,51,2,66,3,11,0,1,0,24,0,127,0,10,3,0,0,0,1,0,0,0,0,7,0,1,0,0,2,6,0,20,163,0,0,91,0,0,0,1,0,0,1,0,0,0,0,0,113,0,0,0,0,0,1,0,0,0,0,0,8,0,0,259612,18,218,0,8,0,0,0,0,0,6,0,0,0,0,0,3,6,61275,0,2,6,2,0,3,0,0,95,0,2,0,0,8,3,112,0,6,1,0,474,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,31668,0,123,0,0,0,0,3,50,62,31714,0,0,0,0,1,0,0,0,0,0,0,0,0,36310,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,230,52,448,27,0,0,428,0,1051,0,2,0,126,25,0,0,0,0,0,0,0,0,0,290,1,0,0,0,4,0,0,0,0,0,135,9,0,0,0,0,1,0,0,0,32528,0,0,96493,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,17,1,1,1,0,7,0,0,0,0,17,26,27,0,8,0,0,0,0,0,0,102,2,0,0,0,0,0,0,0,0,0,0,0,2,0,2,3,0,0,0,0,0,0,0,0,0,0,0,2,0,2,35188,104,4 +119,0,0,29,11,90,157,27,271,30,38,0,0,2,66,1,559,0,20,48,0,95,2,6,0,33,22,0,17,0,7,3,0,10,38,0,100,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,341,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2535,90,1769,0,48,0,0,0,0,0,21,15,0,0,0,0,13,22,296,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,584,0,46,0,0,2908,0,0,0,0,46,16,1,0,31,0,0,1,0,0,0,22,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,290,0,231,0,0,0,42,73,337,591,303,0,0,0,0,1,0,6,0,0,0,0,0,0,2306,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1435,49,0,0,1498,0,2904,0,6,0,503,120,0,0,0,0,0,0,0,0,0,1114,1,0,0,0,151,0,0,0,0,29,284,149,0,0,155,0,0,0,0,0,10419,0,0,166,4,0,1,6,0,0,0,0,6,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,53,53,0,0,8,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,61,0,0,0,0,115,138,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,158,0,3,1753,1615,4 +16,0,0,4,0,25,2,0,21,0,3,0,0,0,3,0,66,0,6,1,0,0,0,14,0,0,27,0,8,0,10,0,1,0,13,0,25,18,0,0,13,0,0,0,1,0,0,22,0,0,0,0,9,74,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2087,25,258,0,18,0,0,0,0,0,45,0,0,0,0,22,14,59,582,0,0,13,0,0,0,0,0,97,0,20,0,0,2,0,189,0,1,0,0,836,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,489,0,358,0,0,0,18,57,81,1235,620,0,0,0,0,1,0,0,0,0,0,0,0,0,2616,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,10,4,175,4,0,0,148,0,217,0,0,0,82,600,0,0,0,0,0,0,0,0,0,101,1,0,0,0,15,0,0,0,0,10,107,9,0,0,0,0,9,0,16,7,905,0,0,185,0,0,1,0,0,0,0,0,22,0,27,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,1,0,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,26,0,0,0,0,1,38,82,0,45,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1101,36,4 +0,0,0,5,0,36,25,0,46,3,24,0,0,7,4,0,712,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12422,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,664,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40160,36,877,0,24,0,0,0,0,0,46,0,0,0,0,0,8,92,6497,0,0,1,0,0,0,0,0,366,25,1,0,0,2,0,800,0,0,88,0,4624,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,1494,0,32,0,0,0,13,16,497,2078,1472,0,0,0,0,1,0,3,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,285,5,0,0,311,0,292,0,0,0,150,15,0,0,0,0,0,0,0,0,0,824,1,0,0,0,9,0,0,0,0,1,167,6,0,0,135,0,0,0,0,0,4520,1,0,996,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,208,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2401,22,4 +100,0,0,29,11,91,156,27,271,27,34,0,0,2,63,1,567,0,20,46,0,97,2,6,0,42,22,0,22,0,6,3,0,10,40,0,101,301,160,0,386,0,0,0,1,0,0,4,0,0,0,0,41,354,0,0,0,0,0,1,0,3,0,13,0,48,0,0,2468,91,1782,0,62,0,0,0,0,0,19,15,0,0,0,1,13,23,267,0,27,40,10,0,7,29,0,673,55,4,0,0,14,11,568,0,43,0,0,2244,0,0,0,0,40,11,1,0,30,0,0,1,0,0,0,23,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,25,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,278,0,234,0,0,0,48,81,339,525,287,0,0,0,0,1,0,6,0,0,0,0,0,0,2014,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,679,333,1490,49,0,0,1501,0,2997,0,6,0,507,201,0,0,0,0,0,0,0,0,0,1114,1,0,0,0,151,0,0,0,0,38,282,134,0,0,125,0,0,0,0,0,9842,0,0,113,3,0,1,6,0,0,0,0,6,0,0,0,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,11,1,0,0,0,0,3,13,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,98,1,1,1,0,50,0,0,0,0,121,141,369,0,86,9,0,0,0,0,0,305,10,0,0,0,0,0,0,1,0,0,0,0,11,0,5,31,0,0,0,0,0,0,0,0,117,0,0,245,0,3,1664,1785,4 +0,0,0,0,0,10,4,0,4,0,1,0,1,0,3,0,11,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,12,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,1,0,0,0,0,0,0,0,0,30,10,23,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,14,0,0,1,0,0,1,0,0,7,0,0,0,0,4,0,11,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,20,0,0,0,0,3,23,8,32,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,13,42,0,0,0,50,0,74,0,0,0,14,13,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,0,97,4,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,1,0,1,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,7,4 +3,0,0,5,6,13,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,19,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,94,0,0,0,0,0,1,0,0,0,0,0,25,0,0,472,13,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,43,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,315,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,58,0,45,0,0,0,2,10,44,224,96,0,0,0,0,1,0,1,0,0,0,0,0,0,418,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,117,36,392,11,0,0,401,0,602,0,1,0,103,10,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,110,74,0,0,57,0,0,0,0,0,539,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,6,0,0,0,0,49,22,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,10,0,0,216,37,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,14,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,4 +68,0,0,0,17,51,33,37,262,19,37,0,3,0,17,16,421,0,7,23,0,20,32,7,0,19,6,0,13,0,2,1,0,17,9,625,82,41,2825,0,384,0,0,0,1,0,0,2,0,0,0,0,14,2124,0,0,0,0,0,1,0,0,0,0,0,14,0,0,2689,51,1914,0,25,0,0,0,0,0,37,51,0,0,0,0,10,18,404,0,37,9,17,0,2,49,0,584,50,2,0,0,6,17,856,0,12,0,0,2170,0,0,0,0,35,17,0,0,1,0,0,1,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,32,0,20,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,3,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,48,25,25,25,0,0,15,338,16,193,0,0,0,15,22,388,612,317,0,0,0,0,1,0,3,0,0,0,18,2,0,1745,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,35,86,1050,17,0,0,928,0,1166,1,0,0,268,258,0,0,0,0,0,0,0,0,0,796,1,0,0,0,79,3,0,0,0,12,165,152,0,0,164,0,0,0,1,0,15097,0,0,22,3,0,1,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,11,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,121,1,1,1,0,15,0,0,0,0,563,92,86,0,32,9,0,0,0,0,0,268,21,0,0,0,0,0,0,0,0,0,0,0,32,0,1,19,0,0,0,0,0,0,0,0,3,0,0,27,0,1,3752,575,4 +0,0,0,2,0,9,2,0,22,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,1,0,9,6,0,0,6,0,0,0,1,0,0,3,0,0,0,0,1,56,0,0,0,0,0,1,0,0,0,0,0,1,0,0,881,9,52,0,3,0,0,0,0,0,9,0,0,0,0,1,1,6,436,0,0,1,0,0,0,0,0,14,0,4,0,0,2,0,22,0,0,0,0,139,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,257,0,37,0,0,0,2,4,23,11,264,0,0,0,0,1,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,5,103,2,0,0,116,0,434,0,0,0,57,6,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,2,91,39,0,0,0,0,0,0,0,0,35,0,0,34,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,3,0,0,0,0,1,10,135,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,83,720,4 +0,0,0,6,0,44,58,0,98,1,39,0,0,8,3,0,1036,0,6,1,0,0,0,8,0,10,0,0,44,0,1,0,0,0,1,14031,44,6,0,0,51,0,1,0,1,0,0,1,0,0,0,0,1,589,0,0,0,0,0,1,0,0,0,0,0,2,0,0,96555,44,1372,0,42,0,0,0,0,0,111,0,0,0,0,0,8,312,12058,0,0,1,0,0,0,0,0,573,30,2,0,0,2,0,1221,0,0,217,0,7174,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,5290,0,37,0,0,0,26,29,1471,6520,5215,0,0,0,0,1,0,3,0,0,0,0,0,0,6344,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,128,22,426,6,0,0,428,0,356,0,0,0,241,52,0,0,0,0,0,0,0,0,0,1248,1,0,0,0,9,0,0,0,0,1,198,72,0,0,294,0,0,0,0,0,6373,1,0,8847,54,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,54,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,119,0,0,0,0,1,45,325,0,43,12,0,1,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3397,251,4 +0,0,0,15,1,60,81,1,306,32,69,0,0,2,50,0,104,0,8,5,0,0,0,5,1,9,21,0,8,0,10,0,0,1,21,0,61,76,7,0,512,0,0,0,1,0,0,2,0,0,0,0,11,250,0,0,0,0,0,1,0,0,0,43,0,52,0,0,3653,60,577,0,17,0,0,0,0,0,10,0,0,0,0,0,9,17,133,0,1,21,1,0,3,206,0,1797,230,2,0,0,4,1,1214,0,38,8,0,1756,0,0,0,0,4,0,2,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,16,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,31,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,48,10,10,10,0,0,0,217,0,96,0,0,0,20,50,231,1481,175,0,0,0,0,1,0,3,0,0,65,0,0,0,932,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,136,97,453,19,0,0,464,0,784,0,1,0,203,80,0,0,0,0,0,0,0,0,0,620,1,0,0,0,11,0,0,0,0,10,162,474,0,0,623,0,0,0,0,0,299,0,0,44,2,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,31,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,2,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,62,1,1,1,0,46,0,0,0,0,9,82,154,0,40,8,0,0,0,0,0,519,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,41,0,0,0,0,0,0,0,0,0,0,0,1,0,2,262,529,4 +117,0,0,29,11,90,157,27,271,30,38,0,0,2,66,1,565,0,20,44,0,99,2,6,0,33,22,0,18,0,7,3,0,10,38,0,100,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,348,0,0,0,0,0,1,0,3,0,11,0,52,0,0,2575,90,1776,0,51,0,0,0,0,0,22,15,0,0,0,0,13,22,292,0,27,38,10,0,8,37,0,731,70,3,0,0,14,11,587,0,46,0,0,2465,0,0,0,0,47,16,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,29,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,299,0,240,0,0,0,42,73,343,592,308,0,0,0,0,1,0,6,0,0,0,0,0,0,2297,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1463,49,0,0,1498,0,2936,0,6,0,502,170,0,0,0,0,0,0,0,0,0,1120,1,0,0,0,151,0,0,0,0,31,283,149,0,0,155,0,0,0,0,0,10425,0,0,181,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,8,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,62,0,0,0,0,121,138,326,0,74,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,187,0,3,1805,1618,4 +0,0,0,0,0,9,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,137,9,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,34,0,0,0,0,3,25,195,55,0,0,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,45,1,0,0,87,0,58,0,0,0,50,9,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,92,84,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,5,4 +116,0,0,29,11,90,157,27,271,30,38,0,0,2,66,1,559,0,20,45,0,98,2,6,0,33,22,0,17,0,8,2,0,10,38,0,100,301,160,0,387,0,0,0,1,0,0,3,0,0,0,0,34,356,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2510,90,1768,0,49,0,0,0,0,0,20,15,0,0,0,0,13,22,286,0,27,38,10,0,8,37,0,729,70,3,0,0,14,11,584,0,46,0,0,2554,0,0,0,0,48,16,1,0,30,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,20,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,29,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,287,0,230,0,0,0,42,74,342,591,298,0,0,0,0,1,0,6,0,0,0,0,0,0,2207,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1452,49,0,0,1499,0,2949,0,6,0,504,96,0,0,0,0,0,0,0,0,0,1114,1,0,0,0,151,0,0,0,0,29,285,149,0,0,155,0,0,0,0,0,10418,0,0,162,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,53,53,0,0,7,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,63,0,0,0,0,119,138,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,247,0,2,1714,1619,4 +0,0,0,3,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,2,0,0,16,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,3,0,0,32,0,42,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,26,4 +152,0,0,29,10,84,187,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,15,0,7,3,0,9,33,0,94,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,344,0,0,0,0,0,1,0,3,0,12,0,82,0,0,3095,84,1513,0,40,0,0,0,0,0,71,12,0,0,0,0,13,22,389,0,22,33,9,0,10,193,0,1896,100,3,0,0,14,10,1280,0,46,0,0,2253,0,0,0,0,54,41,0,0,30,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,329,0,231,0,0,0,36,75,296,1617,358,0,0,0,0,1,0,5,0,0,0,0,0,0,2707,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1418,48,0,0,1554,0,2954,0,6,0,563,45,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,279,538,0,0,215,0,0,0,0,0,9922,0,0,183,3,0,1,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,76,0,0,0,0,81,127,309,0,64,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1599,1648,4 +12,0,0,4,0,16,2,0,23,3,3,0,0,0,6,0,91,0,6,1,0,0,0,1,0,0,45,0,15,0,16,0,0,0,5,0,16,61,0,0,22,0,56,0,1,0,0,56,0,0,0,0,15,304,0,0,0,0,0,1,0,0,0,0,0,7,0,0,8946,16,385,0,31,0,0,0,0,0,124,0,0,0,0,0,1,58,1470,0,0,5,0,0,0,0,0,137,0,58,0,0,2,0,319,0,4,0,0,506,0,3,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,1602,0,425,0,0,0,30,78,37,151,2014,0,0,0,0,1,0,0,0,0,0,0,0,0,3625,0,66,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,8,7,126,4,0,0,600,0,896,0,0,0,541,17,0,0,0,0,0,0,0,0,0,131,1,0,0,0,2,0,0,0,0,16,98,454,0,0,0,0,0,0,0,0,556,0,0,1206,0,0,1,0,1,0,0,0,157,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,181,0,0,0,0,16,15,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,30,0,0,0,0,1,21,83,0,76,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1285,334,4 +383,0,0,36,29,113,248,69,597,47,95,0,0,2,91,0,563,0,24,83,0,124,2,7,0,61,22,0,33,0,9,2,0,28,50,0,135,400,160,0,1017,0,0,0,1,0,0,5,1,0,0,0,62,456,0,0,0,0,0,1,0,3,0,13,0,105,0,0,4408,113,3985,0,93,0,0,0,0,0,100,63,0,0,0,0,14,28,615,0,69,50,28,0,11,201,0,2143,95,11,1,0,18,29,1508,0,67,0,0,3926,0,0,0,0,101,86,0,0,38,0,0,1,0,0,0,20,0,0,0,0,0,0,0,27,0,0,0,17,0,0,0,3,0,7,0,77,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,3,0,0,0,0,0,1,18,0,0,0,0,0,0,0,19,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,107,10,10,10,0,0,0,522,0,336,0,0,0,71,119,375,1923,577,0,0,0,0,1,0,5,0,0,0,0,0,0,4872,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,886,419,2206,76,0,0,2310,0,4182,0,8,0,778,217,0,0,0,0,0,0,0,0,0,1620,1,0,2,0,216,0,0,0,0,55,351,524,0,0,211,0,0,0,0,0,10379,0,0,174,3,0,1,9,0,0,0,0,14,0,0,0,4,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,3,34,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,120,1,1,1,0,114,0,0,0,0,177,185,223,0,118,9,0,0,0,0,0,841,32,0,0,0,0,0,0,1,0,0,0,0,23,0,4,55,0,0,0,0,0,0,0,0,117,0,0,206,0,5,2575,2466,4 +12,0,0,0,0,33,24,0,36,2,5,0,2,0,4,0,20,0,6,5,0,0,0,5,0,10,3,0,5,0,1,1,0,0,6,0,33,9,0,0,92,0,0,0,1,0,0,0,0,0,0,0,4,73,0,0,0,0,0,1,0,0,0,0,0,3,0,0,652,33,115,0,7,0,0,0,0,0,13,0,0,0,0,0,9,14,134,0,0,6,0,0,2,25,0,290,15,0,0,0,4,0,170,0,2,0,0,444,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,88,0,45,0,0,0,4,11,191,163,92,0,0,0,0,1,0,3,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,129,0,0,0,143,0,239,0,0,0,61,27,0,0,0,0,0,0,0,0,0,97,0,0,0,0,10,0,0,0,0,4,123,53,0,0,30,0,0,0,0,0,95,0,0,2,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,8,0,0,0,0,1,39,22,0,11,9,0,0,0,0,0,88,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,32,4 +241,0,0,21,25,176,252,51,885,38,186,0,0,2,56,1,933,0,19,35,0,22,34,9,0,26,19,0,60,0,258,3,0,25,107,625,215,385,457,0,1013,0,0,0,1,0,0,3,1,0,0,0,280,835,0,0,0,0,0,1,0,0,0,1,0,95,0,0,6630,176,5267,0,338,0,0,0,0,0,258,57,0,0,0,0,20,29,454,0,51,107,25,0,11,490,0,5377,530,8,0,0,14,25,3235,0,47,0,0,6195,0,0,0,0,100,101,3,0,1,0,0,1,0,0,0,32,0,0,0,0,0,0,0,71,0,0,0,67,0,0,0,2,0,19,0,20,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,2,0,0,0,0,77,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,70,25,25,25,0,0,15,539,16,483,0,0,0,540,560,629,3680,527,0,0,0,0,1,0,5,0,0,0,18,2,0,5368,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,2,0,663,140,2495,53,0,0,2634,0,4984,0,6,0,1114,394,0,0,0,0,0,0,0,0,0,2334,1,0,4,0,97,3,0,0,0,276,381,1047,0,0,1257,0,0,0,0,0,4469,0,0,330,3,0,1,8,0,0,0,0,10,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,71,71,0,0,20,1,0,0,0,0,3,514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,6,181,1,1,1,0,588,0,0,0,498,687,323,235,0,357,9,0,0,0,0,0,1335,32,0,0,0,0,0,0,0,0,0,0,0,40,0,1,50,0,0,0,0,0,0,0,0,3,0,0,38,0,3,2010,2569,4 +1,0,0,7,0,11,2,0,11,0,3,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,2,0,3,0,0,0,1,0,11,6,0,0,8,0,0,0,1,0,0,2,0,0,0,0,2,86,0,0,0,0,0,1,0,0,0,0,0,1,0,0,19238,11,42,0,5,0,0,0,0,0,8,0,0,0,0,1,1,4,247,0,0,1,0,0,0,0,0,10,0,4,0,0,2,0,14,0,0,0,0,6284,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,196,0,34,0,0,0,4,5,26,6083,198,0,0,0,0,1,0,0,0,0,0,0,0,0,325,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,5,98,10,0,0,102,0,217,0,0,0,41,5,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,93,31,0,0,0,0,0,0,0,0,92,0,0,239,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,6,0,0,0,0,1,12,183,0,5,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,177,12,4 +153,0,0,29,10,84,187,22,420,30,72,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,7,3,0,9,33,0,94,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,364,0,0,0,0,0,1,0,3,0,12,0,82,0,0,2912,84,1512,0,39,0,0,0,0,0,71,12,0,0,0,0,13,22,402,0,22,33,9,0,10,193,0,1895,100,3,0,0,14,10,1279,0,46,0,0,2624,0,0,0,0,52,40,0,0,29,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,38,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,331,0,236,0,0,0,36,75,296,1618,360,0,0,0,0,1,0,5,0,0,0,0,0,0,2699,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1453,48,0,0,1553,0,2901,0,6,0,562,47,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,278,538,0,0,215,0,0,0,0,0,9930,0,0,192,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,75,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,4,1594,1659,4 +26,0,0,9,28,63,87,109,624,11,117,0,0,0,25,0,322,0,9,31,0,27,52,1,0,0,6,0,8,0,1,2,0,28,22,0,91,1219,0,0,791,0,0,0,1,0,0,5,0,0,0,0,2,353,0,0,0,0,0,1,0,0,0,25,0,68,0,0,3292,63,2887,0,11,0,0,0,0,0,20,81,0,0,0,0,2,9,144,0,109,22,28,0,3,325,0,2591,145,7,0,0,4,28,2110,0,17,0,0,2008,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,7,0,15,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,39,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,82,0,0,0,0,0,0,153,0,144,0,0,0,4,11,177,2078,209,0,0,0,0,1,0,0,0,0,0,0,0,0,1239,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,178,38,1461,38,0,0,1476,0,2248,0,1,0,518,59,0,0,0,0,0,0,0,0,0,1184,1,0,0,0,111,0,0,0,0,1,168,1183,0,0,395,0,0,0,0,0,3011,0,0,211,0,0,1,0,1,0,0,0,10,0,0,0,1,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,90,1,1,1,0,14,0,0,0,0,225,113,337,0,17,0,0,0,0,0,0,811,29,0,0,0,0,0,0,0,0,0,0,0,28,0,1,17,0,0,0,0,0,0,0,0,0,0,0,43,0,4,2668,157,4 +1,0,0,3,0,29,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,113,0,0,0,0,0,1,0,0,0,0,0,2,0,0,885,29,51,0,3,0,0,0,0,0,10,0,0,0,0,0,7,15,156,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,488,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,120,0,51,0,0,0,1,4,186,14,122,0,0,0,0,1,0,3,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,2,1,7,0,0,0,0,1,0,32,10,135,3,0,0,170,0,308,0,0,0,64,11,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,111,49,0,0,0,0,0,0,0,0,83,0,0,36,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,228,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,161,51,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,406,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,25,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,126,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,46,3,0,0,47,0,142,0,0,0,5,3,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,11,4 +0,0,0,3,0,34,9,0,30,0,2,0,0,2,2,0,514,0,6,2,0,0,0,8,0,11,0,0,4,0,1,0,0,0,2,900,34,6,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,219,0,0,0,0,0,1,0,0,0,0,0,2,0,0,46312,34,567,0,1,0,0,0,0,0,16,0,0,0,0,0,9,21,8823,0,0,2,0,0,0,0,0,93,5,2,0,0,2,0,529,0,0,0,0,2643,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,5291,0,34,0,0,0,0,3,248,1127,5277,0,0,0,0,1,0,3,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,183,3,0,0,201,0,195,0,0,0,55,3,0,0,0,0,0,0,0,0,0,565,1,0,0,0,10,0,0,0,0,0,117,9,0,0,0,0,0,0,0,0,3180,1,0,775,10,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,10,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,314,0,2,14,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1747,30,4 +12,0,0,37,7,84,110,7,191,36,23,0,1,9,51,0,1550,0,16,9,0,6,0,9,0,12,9,0,14,0,6,1,0,7,35,8148,91,1559,12,0,202,0,0,0,1,0,0,1,1,0,0,0,4,607,0,0,0,0,0,1,0,0,0,15,0,24,0,0,57366,84,1994,0,18,0,0,0,0,0,22,9,0,0,0,0,10,26,5435,0,7,35,7,0,6,14,0,586,55,8,0,0,12,7,1837,0,22,11,1,25631,0,0,0,0,11,5,4,0,0,0,0,1,0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,2,0,0,0,0,0,4,0,4,0,0,0,0,3,0,66,0,0,0,0,0,0,0,0,1,0,3,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,8,0,0,1,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,76,12,12,12,0,4,0,3215,0,133,0,0,0,11,37,386,9425,3206,0,0,0,0,1,0,11,0,0,1,0,0,0,3738,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,571,108,1460,67,0,0,1195,0,2685,0,4,0,392,205,0,0,0,0,0,0,0,0,0,1951,1,0,9,0,24,0,0,0,0,21,7843,30,0,0,74,0,38,0,0,0,247323,1,0,499,6,0,1,1,1,0,0,0,14,0,0,0,0,0,0,0,0,0,17,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,6,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,4,83,1,1,1,0,49,0,0,0,0,59,126,59,0,30,12,0,0,0,0,0,953,8,0,0,0,0,0,0,0,0,0,0,0,9,2,5,50,0,0,0,0,0,0,0,2,0,0,0,9,0,2,2282,159,4 +12,0,0,14,0,66,32,0,231,4,72,0,0,14,42,0,923,0,7,2,0,0,0,9,0,11,0,0,22,0,6,0,0,0,25,1529,66,6,0,0,412,0,0,0,1,0,0,8,0,0,0,0,6,259,0,0,0,0,0,1,0,0,0,18,0,44,0,0,16309,66,1371,0,24,0,0,0,0,0,49,0,0,0,0,0,10,61,3228,0,0,25,0,0,6,149,0,1719,140,11,0,0,2,0,1856,0,12,87,0,3538,0,0,0,0,15,2,1,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,3,0,9,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,4,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,51,12,12,12,0,0,0,989,0,157,0,0,0,16,19,398,2049,967,0,0,0,0,1,0,4,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0,7,1,4,0,0,0,0,1,0,246,35,423,14,0,0,466,0,486,0,0,0,289,25,0,0,0,0,0,0,4,0,0,1321,1,0,0,0,11,0,0,0,0,6,167,488,0,0,347,0,1,0,0,0,5461,1,0,432,14,0,1,1,1,0,0,0,16,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,14,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,71,1,1,1,0,46,0,0,0,0,1,91,365,0,25,14,0,0,0,0,0,514,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,31,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1588,203,4 +0,0,0,9,0,32,6,0,37,0,2,0,0,2,2,0,502,0,6,3,0,0,0,6,0,10,0,0,3,0,0,0,0,0,1,898,32,6,0,0,33,0,0,0,1,0,0,2,0,0,0,0,1,239,0,0,0,0,0,1,0,0,0,0,0,4,0,0,7856,32,557,0,1,0,0,0,0,0,15,0,0,0,0,0,8,18,1753,0,0,1,0,0,0,0,0,86,5,4,0,0,2,0,516,0,0,0,0,1504,0,0,0,0,0,0,8,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,447,0,44,0,0,0,0,3,223,298,440,0,0,0,0,1,0,8,0,0,0,0,0,0,545,0,0,0,0,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,1,0,32,10,225,11,0,0,271,0,363,0,0,0,115,13,0,0,0,0,0,0,2,0,0,557,1,0,0,0,9,0,0,0,0,0,120,67,0,0,0,0,0,0,0,0,1768,1,0,301,6,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,0,0,0,0,0,1,33,262,0,1,12,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,96,4 +3,0,0,5,6,14,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,20,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,98,0,0,0,0,0,1,0,0,0,0,0,25,0,0,510,14,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,42,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,309,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,59,0,46,0,0,0,2,10,48,224,97,0,0,0,0,1,0,1,0,0,0,0,0,0,419,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,117,36,401,11,0,0,404,0,599,0,1,0,103,6,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,111,74,0,0,57,0,0,0,0,0,538,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,1,1,1,0,6,0,0,0,0,49,23,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,11,0,0,219,36,4 +73,0,0,5,1,39,30,1,44,25,4,0,0,2,31,0,68,0,9,3,0,0,0,7,0,10,0,0,2,0,1,0,0,1,6,0,40,54,0,0,97,0,2,0,1,0,0,12,0,0,0,0,3,178,0,0,0,0,0,1,0,0,0,0,0,31,0,0,3595,39,362,0,3,0,0,0,0,0,120,0,0,0,0,9,9,38,920,0,1,6,1,0,1,0,0,131,5,12,0,0,4,1,93,0,28,0,0,1004,0,0,0,0,6,51,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,6,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,4,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,10,10,10,0,0,0,364,0,234,0,0,0,2,5,217,173,358,0,0,0,0,1,0,3,0,0,0,0,0,0,2053,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,1,0,137,49,341,6,0,0,453,0,574,0,1,0,208,15,0,0,0,0,0,0,0,0,0,188,1,0,0,0,10,0,0,0,0,4,144,39,0,0,0,0,0,0,1,0,1019,0,0,826,3,0,1,5,1,0,0,0,14,0,0,0,9,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,3,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,1,1,1,0,0,0,0,0,0,9,46,164,0,4,9,0,0,0,0,0,191,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,27,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1103,160,4 +0,0,0,0,0,1,0,1,20,0,1,0,0,0,1,0,660,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,656,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,9,0,0,0,0,0,0,0,0,0,683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,2,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,9,0,0,1,99,4 +0,0,2,0,1,22,5,0,428,1,4,0,1,0,2,0,3154,0,6,4,0,1,0,1,0,0,0,0,0,0,1,0,0,0,1,26,22,9,0,0,24,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,1,0,0,268,22,3597,0,1,0,0,0,0,0,0,0,0,0,0,0,2,2,24,0,0,1,0,0,1,8,0,67,0,0,0,0,4,1,3202,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,829,0,0,0,0,0,0,31,0,32,0,0,0,0,3,29,49,48,0,0,0,0,1,0,0,0,0,0,6289,3,1,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,7875,93,1,0,0,97,0,279,0,0,0,14,410,0,0,0,0,0,0,0,0,0,3600,0,0,0,0,6,0,0,0,0,0,99,26,0,2,0,0,0,0,0,0,6363,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,3,23,11,0,1,0,0,0,0,0,0,43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,105,4 +186,0,0,36,19,104,230,59,450,45,77,0,0,2,88,0,488,0,24,63,0,104,2,6,0,57,22,0,31,0,9,2,0,19,44,0,116,400,160,0,946,0,0,0,1,0,0,5,1,0,0,0,58,423,0,0,0,0,0,1,0,3,0,12,0,94,0,0,4126,104,2967,0,87,0,0,0,0,0,109,33,0,0,0,0,13,27,601,0,59,44,19,0,11,161,0,1816,95,10,0,0,18,19,1231,0,64,0,0,3408,0,0,0,0,80,52,0,0,38,0,0,1,0,0,0,20,0,0,0,0,0,0,0,7,0,0,0,12,0,0,0,3,0,1,0,24,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,4,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,87,10,10,10,0,0,0,493,0,305,0,0,0,67,111,337,1625,534,0,0,0,0,1,0,5,0,0,0,0,0,0,4067,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,882,416,1853,66,0,0,1948,0,3976,0,8,0,679,135,0,0,0,0,0,0,0,0,0,1359,1,0,2,0,175,0,0,0,0,51,340,420,0,0,211,0,0,0,0,0,10279,0,0,169,3,0,1,8,0,0,0,0,13,0,0,0,4,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,3,30,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,108,1,1,1,0,101,0,0,0,0,97,160,217,0,112,9,0,0,0,0,0,703,12,0,0,0,0,0,0,1,0,0,0,0,13,0,3,53,0,0,0,0,0,0,0,0,117,0,0,198,0,5,2342,2154,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,38,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,2,0,0,181,10,56,0,39,0,0,0,0,0,0,0,0,0,0,0,1,1,15,0,0,0,0,0,0,0,0,43,0,0,0,0,2,0,44,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,23,0,0,0,0,3,23,43,33,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,45,0,0,0,0,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,38,0,0,0,0,1,10,0,0,39,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,4 +46,0,0,1,1,57,8,4,34,2,6,0,3,0,5,0,44,0,7,10,0,1,1,6,0,23,12,0,8,0,3,1,0,1,22,0,58,12,0,0,136,0,0,0,1,0,0,0,0,0,0,0,19,99,0,0,0,0,0,1,0,1,0,0,0,3,0,0,929,57,248,0,25,0,0,0,0,0,6,3,0,0,0,0,13,18,137,0,4,22,1,0,3,8,0,209,15,0,0,0,6,1,158,0,2,0,0,910,0,0,0,0,16,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,27,10,10,10,0,0,0,148,0,87,0,0,0,21,41,223,179,126,0,0,0,0,1,0,3,0,0,0,0,0,0,419,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,52,282,2,0,0,228,0,402,0,0,0,94,46,0,0,0,0,0,0,0,0,0,107,0,0,0,0,18,0,0,0,0,18,148,19,0,0,30,0,0,0,0,0,133,0,0,4,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,15,0,0,0,0,9,80,38,0,38,9,0,0,0,0,0,134,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,151,992,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,14,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,4 +0,0,0,3,0,11,2,0,5,0,2,0,0,0,4,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,408,11,24,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,31,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,15,0,0,0,0,101,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,35,0,32,0,0,0,2,4,26,56,53,0,0,0,0,1,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,44,3,0,0,44,0,138,0,0,0,5,2,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,2,93,4,0,0,0,0,0,0,0,0,28,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,11,4 +42,0,0,1,9,121,51,33,109,16,11,0,3,0,19,0,182,0,8,22,0,8,4,8,0,10,0,0,14,0,15,0,0,9,68,6695,130,54,176,0,220,0,0,0,1,0,0,4,0,0,0,0,15,587,0,0,0,0,0,1,0,0,0,55,0,14,0,0,86981,121,886,0,26,0,0,0,0,0,38,24,0,0,0,0,9,21,13696,0,33,68,9,0,1,0,0,339,0,11,0,0,4,9,270,0,15,0,0,3658,0,0,0,0,29,4,5,0,1,0,0,1,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,4,0,38,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,20,12,12,12,0,0,0,12155,0,198,0,0,0,28,23,415,504,12161,0,0,0,0,1,0,11,0,0,0,0,0,0,1042,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,168,38,848,10,0,0,885,0,1091,0,1,0,424,54,0,0,0,0,0,0,0,0,0,383,1,0,0,0,42,0,0,0,0,7,239,77,0,0,1,0,2,0,0,0,1738,1,0,72,6,0,1,1,0,0,0,0,12,0,0,0,0,0,0,0,0,0,15,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,6,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,127,1,1,1,0,39,0,0,0,0,73,198,229,0,27,12,0,0,0,0,0,258,1,0,0,0,0,0,0,0,0,0,0,0,11,0,1,16,0,0,0,0,0,0,0,0,0,0,0,14,0,2,1120,211,4 +3,0,0,6,1,47,6,0,55,2,7,0,0,6,7,0,754,0,6,2,0,0,0,8,0,11,0,0,54,0,1,0,0,0,9,898,47,28,0,0,48,0,0,0,1,0,0,13,1,0,0,0,1,289,0,0,0,0,0,1,0,0,0,0,0,5,0,0,15455,47,946,0,51,0,0,0,0,0,49,0,0,0,0,4,9,37,2519,0,0,9,0,0,0,0,0,262,20,24,0,0,2,1,870,0,2,2,0,1428,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,1818,0,201,0,0,0,0,3,282,375,1776,0,0,0,0,1,0,3,0,0,0,0,0,0,1723,0,0,0,0,0,0,0,0,0,0,0,0,13,1,2,0,0,0,0,1,0,84,23,280,7,0,0,383,0,498,0,0,0,213,53,0,0,0,0,0,0,0,0,0,841,1,0,4,0,10,0,0,0,0,1,140,116,0,0,6,0,1,0,0,0,2314,1,0,1210,8,0,1,1,0,0,0,0,33,0,0,0,6,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,50,0,0,0,0,1,56,571,0,52,14,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1158,792,4 +0,0,0,0,0,8,29,0,37,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,141,8,108,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,48,0,0,0,0,0,2,33,0,254,15,0,0,0,4,0,171,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,32,0,0,0,0,3,21,158,53,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,75,0,49,0,0,0,41,3,0,0,0,0,0,0,0,0,0,91,0,0,0,0,2,0,0,0,0,0,91,66,0,0,30,0,0,0,0,0,35,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,4,4 +16,0,0,4,0,23,2,0,20,0,3,0,0,0,3,0,61,0,6,1,0,0,0,12,0,0,24,0,8,0,9,0,0,0,11,0,23,18,0,0,13,0,0,0,1,0,0,22,0,0,0,0,8,75,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2049,23,242,0,17,0,0,0,0,0,45,0,0,0,0,23,12,57,553,0,0,11,0,0,0,0,0,89,0,20,0,0,2,0,170,0,1,0,0,483,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,468,0,337,0,0,0,16,51,73,1230,590,0,0,0,0,1,0,0,0,0,0,0,0,0,2663,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,10,4,182,4,0,0,142,0,210,0,0,0,76,609,0,0,0,0,0,0,0,0,0,95,1,0,0,0,13,0,0,0,0,9,106,8,0,0,0,0,9,0,16,8,890,0,0,184,0,0,1,0,0,0,0,0,22,0,25,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,24,0,0,0,0,1,34,76,0,41,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1044,36,4 +116,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,562,0,20,44,0,99,2,6,0,33,22,0,17,0,7,3,0,10,38,0,99,301,160,0,385,0,0,0,1,0,0,3,0,0,0,0,34,330,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2445,89,1772,0,50,0,0,0,0,0,21,15,0,0,0,0,13,22,284,0,27,38,10,0,8,37,0,730,70,3,0,0,14,11,583,0,46,0,0,2106,0,0,0,0,46,15,1,0,33,0,0,1,0,0,0,22,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,29,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,290,0,234,0,0,0,42,71,337,591,301,0,0,0,0,1,0,6,0,0,0,0,0,0,2123,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1415,49,0,0,1495,0,2935,0,6,0,503,250,0,0,0,0,0,0,0,0,0,1117,1,0,0,0,151,0,0,0,0,31,283,149,0,0,155,0,0,0,0,0,10418,0,0,166,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,5,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,61,0,0,0,0,119,137,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,154,0,3,1625,1615,4 +1,0,0,7,0,11,2,0,11,0,3,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,2,0,3,0,0,0,1,0,11,6,0,0,8,0,0,0,1,0,0,2,0,0,0,0,2,84,0,0,0,0,0,1,0,0,0,0,0,1,0,0,19626,11,44,0,5,0,0,0,0,0,8,0,0,0,0,1,1,5,348,0,0,1,0,0,0,0,0,10,0,4,0,0,2,0,14,0,0,0,0,6290,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,266,0,32,0,0,0,4,5,26,6072,268,0,0,0,0,1,0,0,0,0,0,0,0,0,433,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,5,89,10,0,0,102,0,215,0,0,0,42,6,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,93,31,0,0,0,0,0,0,0,0,130,0,0,347,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,6,0,0,0,0,1,12,169,0,5,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,224,13,4 +1,0,0,0,0,8,2,0,4,0,1,0,0,0,2,0,12,0,6,2,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,21,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,17,0,0,0,0,6,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,41,0,0,0,2,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,5,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,5,4 +54,0,0,0,1,59,13,4,60,3,13,0,4,0,6,0,46,0,7,8,0,1,1,8,0,23,12,0,7,0,4,1,0,1,23,0,60,15,0,0,186,0,0,0,1,0,0,0,0,0,0,0,20,89,0,0,0,0,0,1,0,1,0,0,0,7,0,0,981,59,288,0,25,0,0,0,0,0,10,3,0,0,0,0,13,18,141,0,4,23,1,0,5,31,0,397,30,0,0,0,8,1,272,0,2,0,0,3003,0,0,0,0,15,11,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,29,10,10,10,0,0,0,156,0,114,0,0,0,23,43,226,346,133,0,0,0,0,1,0,3,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,67,282,3,0,0,247,0,404,0,0,0,107,40,0,0,0,0,0,0,0,0,0,149,0,0,0,0,18,0,0,0,0,19,151,73,0,0,60,0,0,0,0,0,718,0,0,6,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,18,0,0,0,0,9,83,39,0,38,9,0,0,0,0,0,194,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,313,922,4 +121,0,0,29,11,90,160,27,289,30,44,0,0,2,66,1,565,0,20,45,0,98,2,6,0,33,22,0,17,0,7,3,0,10,38,0,100,301,160,0,421,0,0,0,1,0,0,3,0,0,0,0,34,359,0,0,0,0,0,1,0,3,0,12,0,55,0,0,2583,90,1811,0,50,0,0,0,0,0,26,15,0,0,0,0,13,22,306,0,27,38,10,0,9,55,0,875,85,3,0,0,14,11,673,0,46,0,0,2261,0,0,0,0,46,19,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,6,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,30,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,298,0,240,0,0,0,42,73,343,715,307,0,0,0,0,1,0,6,0,0,0,0,0,0,2300,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1457,49,0,0,1508,0,2949,0,6,0,512,279,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,151,0,0,0,0,31,285,189,0,0,185,0,0,0,0,0,10435,0,0,171,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,9,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,61,0,0,0,0,121,138,326,0,73,9,0,0,0,0,0,361,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,38,0,0,0,0,0,0,0,0,117,0,0,169,0,2,1750,1639,4 +0,0,0,0,0,12,2,0,8,0,2,0,0,0,2,0,9,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,1,0,0,23,12,25,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,9,0,0,3,0,0,0,4,0,35,0,0,0,0,2,0,28,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,12,0,18,0,0,0,0,3,26,31,25,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,41,0,0,0,44,0,59,0,0,0,11,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,0,94,11,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,15,3,0,1,0,0,0,0,0,0,23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,1,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,140,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,31,0,0,0,0,3,21,195,54,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,41,1,0,0,84,0,57,0,0,0,50,4,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,5,4 +0,0,0,5,0,29,5,0,13,0,3,0,0,2,4,0,17,0,6,3,0,0,0,5,0,8,0,0,2,0,1,0,0,0,4,0,29,6,0,0,31,0,0,0,1,0,0,3,0,0,0,0,1,116,0,0,0,0,0,1,0,0,0,2,0,5,0,0,931,29,47,0,1,0,0,0,0,0,12,0,0,0,0,1,7,17,125,0,0,4,0,0,0,0,0,75,5,5,0,0,2,0,26,0,1,0,0,465,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,89,0,39,0,0,0,0,3,184,11,91,0,0,0,0,1,0,4,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,11,127,5,0,0,216,0,270,0,0,0,118,3,0,0,0,0,0,0,0,0,0,50,1,0,0,0,8,0,0,0,0,0,112,96,0,0,0,0,0,0,0,0,78,0,0,44,3,0,1,1,1,0,0,0,4,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,0,0,0,0,0,1,33,319,0,2,9,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,307,33,4 +151,0,0,29,10,83,188,22,425,27,73,0,0,2,61,0,375,0,20,16,0,6,2,6,0,34,22,0,15,0,10,2,0,9,33,0,93,301,0,0,685,0,0,0,1,0,0,3,0,0,0,0,38,359,0,0,0,0,0,1,0,3,0,12,0,80,0,0,2870,83,1525,0,50,0,0,0,0,0,72,12,0,0,0,0,13,22,392,0,22,33,9,0,10,198,0,1957,100,3,0,0,14,10,1307,0,43,0,0,2136,0,0,0,0,50,41,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,37,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,324,0,236,0,0,0,48,88,292,1664,354,0,0,0,0,1,0,5,0,0,0,0,0,0,2704,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,143,1449,48,0,0,1553,0,2890,0,6,0,566,40,0,0,0,0,0,0,0,0,0,1144,1,0,0,0,30,0,0,0,0,32,278,551,0,0,215,0,0,0,0,0,9924,0,0,174,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,90,1,1,1,0,65,0,0,0,0,81,126,309,0,74,9,0,0,0,0,0,720,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,37,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1606,1802,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,0,0,0,80,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,48,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,1,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,36,4 +0,0,0,4,1,11,26,1,32,0,4,0,0,0,5,0,69,0,8,1,0,0,0,1,0,0,3,0,1,0,1,1,0,1,2,0,12,54,0,0,14,0,1,0,1,0,0,1,0,0,0,0,1,31,0,0,0,0,0,1,0,0,0,0,0,4,0,0,924,11,104,0,3,0,0,0,0,0,4,0,0,0,0,0,1,4,465,0,1,2,1,0,1,0,0,49,0,1,0,0,4,1,36,0,2,0,0,113,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,40,0,31,0,0,0,2,9,28,22,52,0,0,0,0,1,0,0,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,112,14,206,5,0,0,220,0,269,0,1,0,50,1,0,0,0,0,0,0,0,0,0,144,1,0,0,0,2,0,0,0,0,2,105,3,0,0,0,0,0,0,0,0,305,0,0,739,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,1,1,1,0,6,0,0,0,0,9,14,3,0,6,0,0,0,0,0,0,47,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,275,7,4 +0,0,0,11,0,69,238,0,749,44,130,0,0,0,91,0,242,0,7,4,0,0,0,3,9,8,60,0,29,0,7,7,0,0,41,0,69,6,49,0,1742,0,0,0,1,0,0,13,0,0,0,0,24,318,0,0,0,0,0,1,0,0,0,15,0,171,0,0,13890,69,1679,0,43,0,0,0,0,0,73,0,0,0,0,0,4,21,1513,0,0,41,0,0,3,710,0,5463,45,28,0,0,2,0,4369,0,50,0,0,5413,0,0,0,0,5,0,0,0,3,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,48,0,0,0,0,0,0,1244,0,253,0,0,0,48,899,127,6654,1229,0,0,0,0,1,0,0,0,0,0,0,0,0,4000,0,0,0,0,0,0,0,0,0,0,0,0,13,0,4,0,0,0,0,0,0,12,61,754,14,0,0,932,0,1184,0,0,0,768,38,0,0,0,0,0,0,9,0,0,1457,1,0,0,0,16,0,0,0,0,25,306,2011,0,0,91,0,0,0,0,0,2885,0,0,2124,0,0,1,0,0,0,0,0,46,0,2,0,3,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,0,85,1,1,1,0,216,0,0,0,0,1,110,1411,0,111,0,0,2,0,0,0,1865,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,50,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1575,460,4 +279,0,0,30,22,96,169,42,404,35,53,0,0,2,72,3,970,0,20,70,0,118,2,6,0,37,22,0,23,0,8,2,0,21,41,0,116,301,160,0,507,0,0,0,1,0,0,4,0,0,0,0,37,422,0,0,0,0,0,1,0,3,0,12,0,61,0,0,2744,96,3818,0,60,0,0,0,0,0,26,48,0,0,0,1,14,25,306,0,42,41,21,0,9,50,0,878,85,3,0,0,14,22,842,0,52,0,0,3068,0,0,0,0,62,33,0,0,24,0,0,1,0,0,0,21,0,0,0,0,0,0,0,27,0,0,0,15,0,0,0,0,0,7,0,67,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,34,2,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,21,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,84,10,10,10,0,0,0,338,0,338,0,0,0,45,73,442,695,324,0,0,0,0,1,0,5,0,0,0,0,0,0,2989,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,679,376,1800,61,0,0,1862,0,3170,0,6,0,603,673,0,0,0,0,0,0,0,0,0,1693,1,0,0,0,196,0,0,0,0,38,289,175,0,0,185,0,0,0,0,0,10947,0,0,160,5,0,1,7,0,0,0,0,7,0,0,0,2,0,0,0,0,0,34,0,0,0,0,0,0,0,0,2,0,0,155,155,0,0,12,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,102,1,1,1,0,62,0,0,0,0,273,157,370,0,83,9,0,0,0,0,0,361,30,0,0,0,0,0,0,1,0,0,0,0,21,0,4,43,0,0,0,0,0,0,0,0,117,0,0,236,0,2,1777,1956,4 +12,0,0,11,1,44,30,1,147,108,6,0,1,53,127,0,201,0,9,6,0,0,0,6,5,10,15,0,15,0,1,0,0,1,13,0,45,459,110,0,168,0,2,0,1,0,0,5,0,0,0,0,9,171,0,0,0,0,0,1,0,0,0,0,0,19,0,0,23398,44,580,0,14,0,0,0,0,0,18,0,0,0,0,0,8,25,9533,0,1,13,1,0,1,0,0,198,5,4,0,0,4,1,735,0,16,0,52,2788,0,0,0,8319,126,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,3,0,1,1,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,12,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,230,10,10,10,0,0,0,8874,0,155,0,0,0,16,200,188,470,17218,0,0,0,0,1,0,2,0,0,0,0,0,0,21899,0,4,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,136,137,682,13,0,0,531,0,585,0,1,0,301,84,0,0,0,0,0,0,0,0,0,574,1,0,0,0,17,0,0,0,0,9,345,10,0,0,0,0,1,0,0,0,1328,0,0,1518,3,0,1,1,1,0,0,0,7,0,0,0,3,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,2,0,0,0,3,361,48,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,58,1,1,1,0,317,0,0,0,0,9,58,73,0,32,9,0,2,0,0,0,127,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,110,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2140,82,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,145,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,52,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,34,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,83,0,55,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,38,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,4,4 +102,0,0,24,4,69,113,7,157,7,16,0,0,2,24,0,187,0,12,6,0,1,1,5,0,15,9,0,10,0,4,0,0,4,20,0,73,164,0,0,274,0,0,0,1,0,0,7,0,0,0,0,11,266,0,0,0,0,0,1,0,1,0,0,0,21,0,0,5125,69,523,0,19,0,0,0,0,0,30,3,0,0,0,0,8,21,972,0,7,20,4,0,4,43,0,547,20,13,0,0,8,4,368,0,15,0,0,1977,0,0,0,0,42,21,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,2,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,36,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,10,10,10,0,0,0,742,0,243,0,0,0,13,46,256,371,707,0,0,0,0,1,0,4,0,0,0,0,0,0,2056,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,349,74,798,33,0,0,865,0,1484,0,3,0,283,27,0,0,0,0,0,0,2,0,0,511,1,0,0,0,13,0,0,0,0,11,199,156,0,0,34,0,0,0,0,0,1180,0,0,917,3,0,1,2,0,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,71,1,1,1,0,64,0,0,0,0,33,93,358,0,29,9,0,0,0,0,0,312,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,11,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1275,1359,4 +0,0,0,5,0,37,24,0,47,3,23,0,0,7,4,0,767,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,11628,37,6,0,0,44,0,1,0,1,0,0,2,0,0,0,0,1,527,0,0,0,0,0,1,0,0,0,0,0,2,0,0,125993,37,937,0,23,0,0,0,0,0,49,0,0,0,0,0,8,92,20756,0,0,1,0,0,0,0,0,356,25,4,0,0,2,0,855,0,0,79,0,4632,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,15878,0,38,0,0,0,12,15,496,2046,15852,0,0,0,0,1,0,3,0,0,0,0,0,0,1214,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,108,25,277,5,0,0,322,0,329,0,0,0,157,11,0,0,0,0,0,0,0,0,0,878,1,0,0,0,9,0,0,0,0,1,160,23,0,0,126,0,0,0,0,0,4620,1,0,2417,22,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,58,0,0,0,0,1,38,260,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2533,28,4 +1,0,0,5,0,40,18,0,56,4,11,0,0,6,4,1,872,0,6,2,0,0,0,8,0,11,0,0,17,0,5,0,0,0,5,1332,40,6,0,0,46,0,0,0,1,0,0,2,0,0,0,0,5,278,0,0,0,0,0,1,0,0,0,0,0,2,0,0,29796,40,1006,0,18,0,0,0,0,0,37,0,0,0,0,0,9,65,3741,0,0,5,0,0,0,0,0,259,20,4,0,0,2,0,851,0,0,31,0,3046,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1819,0,92,0,0,0,13,9,540,1714,1776,0,0,0,0,1,0,4,0,0,0,0,0,0,2434,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,28,228,5,0,0,251,0,322,0,0,0,96,25,0,0,0,0,0,0,0,0,0,974,1,0,0,0,10,0,0,0,0,2,123,31,0,0,53,0,0,0,0,0,3152,1,0,2756,19,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,38,38,0,0,3,0,0,0,0,0,19,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,36,0,0,0,0,31,45,252,0,19,14,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1170,246,4 +148,0,0,29,10,83,192,22,445,27,77,0,0,2,61,0,375,0,20,15,0,6,2,7,0,34,23,0,13,0,9,2,0,9,33,0,93,301,0,0,725,0,0,0,1,0,0,3,0,0,0,0,37,355,0,0,0,0,0,1,0,3,0,12,0,84,0,0,3007,83,1557,0,48,0,0,0,0,0,75,12,0,0,0,0,13,22,401,0,22,33,9,0,10,218,0,2100,100,4,0,0,14,10,1406,0,43,0,0,2114,0,0,0,0,50,41,0,0,30,0,0,1,0,0,0,17,0,0,0,0,0,0,0,7,0,0,0,8,0,0,0,0,0,1,0,19,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,34,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,329,0,237,0,0,0,46,88,292,1793,358,0,0,0,0,1,0,5,0,0,0,0,0,0,2871,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,143,1410,48,0,0,1560,0,2889,0,6,0,572,57,0,0,0,0,0,0,0,0,0,1172,1,0,0,0,30,0,0,0,0,31,278,603,0,0,215,0,0,0,0,0,9928,0,0,180,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,90,1,1,1,0,65,0,0,0,0,81,126,309,0,72,9,0,0,0,0,0,768,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,37,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1629,1808,4 +1,0,0,5,0,30,5,0,20,0,2,0,0,2,3,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,4,0,30,6,0,0,23,0,0,0,1,0,0,3,0,0,0,0,2,142,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1533,30,69,0,3,0,0,0,0,0,19,0,0,0,0,0,7,17,234,0,0,4,0,0,0,0,0,79,5,6,1,0,2,0,33,0,0,0,0,491,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,186,0,63,0,0,0,1,4,185,15,181,0,0,0,0,1,0,3,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,3,1,6,0,0,0,0,1,0,32,10,162,6,0,0,181,0,426,0,0,0,75,10,0,0,0,0,0,0,0,0,0,56,1,0,0,0,8,0,0,0,0,1,113,48,0,0,0,0,0,0,0,0,118,0,0,178,3,0,1,1,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,1,0,0,0,0,1,34,166,0,4,9,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,233,61,4 +0,0,0,2,0,10,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,77,0,0,0,0,0,1,0,0,0,0,0,1,0,0,8418,10,40,0,1,0,0,0,0,0,8,0,0,0,0,0,1,5,1993,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,13,0,0,0,0,715,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,83,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1238,0,152,0,0,0,0,3,26,5,1280,0,0,0,0,1,0,0,0,0,0,0,0,0,3180,0,0,0,0,0,0,0,0,0,0,0,0,2,0,81,0,0,0,0,0,0,8,3,101,2,0,0,129,0,276,0,0,0,63,16,0,0,0,0,0,0,167,0,0,40,1,0,0,0,2,0,0,0,0,0,92,56,0,0,0,0,0,0,0,0,564,0,0,2406,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,160,0,0,0,0,313,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,89,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,178,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,89,0,0,0,0,0,0,0,1,1180,291,4 +0,0,0,0,0,8,25,0,33,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,100,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,29,0,226,15,0,0,0,4,0,151,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,142,54,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,71,0,47,0,0,0,37,3,0,0,0,0,0,0,0,0,0,83,0,0,0,0,2,0,0,0,0,0,91,58,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,4,4 +9,0,0,6,1,15,26,1,38,1,4,0,0,0,6,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,3,0,16,54,0,0,19,0,0,0,1,0,0,4,0,0,0,0,0,81,0,0,0,0,0,1,0,0,0,0,0,5,0,0,22841,15,125,0,1,0,0,0,0,0,17,0,0,0,0,0,1,6,1504,0,1,3,1,0,1,0,0,50,0,6,0,0,4,1,25,0,3,0,0,8415,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1496,0,151,0,0,0,0,3,64,37,1512,0,0,0,0,1,0,0,0,0,0,0,0,0,1603,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,113,17,931,8,0,0,761,0,746,0,1,0,574,30,0,0,0,0,0,0,0,0,0,147,1,0,0,0,2,0,0,0,0,0,606,21,0,0,0,0,0,0,0,0,1149,0,0,1686,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,1,1,1,0,0,0,0,0,0,9,19,73,0,1,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,712,120,4 +124,0,0,17,6,101,243,6,640,41,130,0,0,2,67,0,347,0,29,15,0,0,0,11,0,35,18,0,22,0,9,4,0,6,43,0,107,294,0,0,1170,0,3,0,1,0,0,3,1,0,0,0,40,307,0,0,0,0,0,1,0,0,0,17,0,132,0,0,4172,101,1429,0,59,0,0,0,0,0,80,0,0,0,0,0,25,35,827,0,6,43,6,0,13,472,0,4110,220,6,0,0,14,6,2619,0,53,0,0,4826,0,0,0,0,27,44,1,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,16,0,0,0,9,0,0,0,2,0,3,0,20,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,10,0,1,1,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,30,10,10,10,0,0,0,309,0,251,0,0,0,51,69,351,3297,362,0,0,0,0,1,0,3,0,0,0,0,0,0,2371,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,1,0,658,144,1348,26,0,0,1451,0,3516,0,6,0,545,190,0,0,0,0,0,0,0,0,0,1458,1,0,2,0,26,0,0,0,0,33,279,1151,0,0,517,0,0,0,0,0,1501,0,0,769,3,0,1,8,1,0,0,0,6,0,0,0,0,0,0,0,0,0,39,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,23,1,1,0,0,0,3,379,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,6,132,1,1,1,0,50,0,0,0,0,49,150,105,0,79,9,0,0,0,0,0,1441,11,0,0,0,0,0,0,0,0,0,0,0,7,0,1,57,0,0,0,0,0,0,0,0,0,0,0,6,0,2,1095,1265,4 +9,0,0,0,17,24,22,37,242,6,35,0,2,0,3,0,156,0,7,21,0,20,32,1,0,16,0,0,11,0,1,0,0,17,4,630,55,57,1796,0,133,0,0,0,0,0,0,0,0,0,0,0,16,1600,0,0,0,0,0,1,0,0,0,0,0,2,0,0,605,24,1515,0,28,0,0,0,0,0,0,51,0,0,0,0,2,2,20,0,37,4,17,0,3,40,0,456,50,0,0,0,6,17,387,0,0,0,0,6935,0,0,0,0,32,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,30,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,40,15,15,15,0,0,15,103,15,67,0,0,0,16,16,137,381,85,0,0,0,0,0,0,0,0,0,0,1,1,0,583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,35,854,19,0,0,771,0,949,0,0,0,189,35,0,0,0,0,0,0,0,0,0,467,0,0,0,0,71,3,0,0,0,14,127,115,0,0,159,0,0,0,0,0,4570,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,11,0,0,0,0,563,60,49,0,28,0,0,0,0,0,0,170,21,0,0,0,0,0,0,0,0,0,0,0,31,0,1,8,0,0,0,0,0,0,0,0,3,0,0,29,0,0,2008,554,4 +82,0,0,25,8,75,163,17,383,26,68,0,0,2,56,0,309,0,18,14,0,5,1,6,0,25,13,0,14,0,4,3,0,7,28,0,83,253,0,0,633,0,0,0,1,0,0,3,0,0,0,0,24,336,0,0,0,0,0,1,0,2,0,12,0,75,0,0,2849,75,1278,0,35,0,0,0,0,0,70,9,0,0,0,0,13,22,366,0,17,28,7,0,9,193,0,1842,100,3,0,0,12,8,1218,0,40,0,0,1800,0,0,0,0,28,32,0,0,30,0,0,1,0,0,0,16,0,0,0,0,0,0,0,7,0,0,0,7,0,0,0,0,0,1,0,16,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,10,10,10,0,0,0,274,0,214,0,0,0,29,48,279,1531,315,0,0,0,0,1,0,4,0,0,0,0,0,0,2433,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,556,117,1194,42,0,0,1337,0,2540,0,5,0,500,34,0,0,0,0,0,0,0,0,0,999,1,0,0,0,26,0,0,0,0,18,256,535,0,0,215,0,0,0,0,0,9799,0,0,161,3,0,1,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,82,1,1,1,0,29,0,0,0,0,65,111,291,0,50,9,0,0,0,0,0,676,8,0,0,0,0,0,0,0,0,0,0,0,9,0,1,36,0,0,0,0,0,0,0,0,0,0,0,11,0,3,1560,773,4 +146,0,0,1,9,123,27,36,209,5,55,0,3,0,10,0,110,0,7,24,0,9,9,6,0,25,17,0,18,0,54,0,0,9,74,0,132,12,0,0,278,0,0,0,1,0,0,0,0,0,0,0,70,139,0,0,0,0,0,1,0,2,0,0,0,7,0,0,1714,123,1307,0,86,0,0,0,0,0,9,27,0,0,0,0,11,16,157,0,36,74,9,0,2,102,0,1161,210,0,0,0,6,9,636,0,5,0,0,2575,0,0,0,0,57,49,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,43,0,0,0,43,0,0,0,0,0,0,0,12,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,68,10,10,10,0,0,0,226,0,137,0,0,0,122,146,363,750,201,0,0,0,0,1,0,5,0,0,0,0,0,0,1189,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,57,739,10,0,0,705,0,602,0,0,0,329,83,0,0,0,0,0,0,0,0,0,421,0,0,0,0,48,0,0,0,0,70,207,177,0,0,462,0,0,0,0,0,269,0,0,53,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,1,0,0,0,0,3,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,127,1,1,1,0,122,0,0,0,0,73,206,106,0,105,9,0,0,0,0,0,286,10,0,0,0,0,0,0,0,0,0,0,0,10,0,1,5,0,0,0,0,0,0,0,0,0,0,0,15,0,0,311,1510,4 +49,0,0,1,1,53,16,4,71,3,16,0,4,0,6,0,37,0,7,10,0,1,1,6,0,14,3,0,4,0,4,1,0,1,18,0,54,15,0,0,203,0,0,0,1,0,0,0,0,0,0,0,11,110,0,0,0,0,0,1,0,1,0,0,0,10,0,0,953,53,286,0,13,0,0,0,0,0,16,3,0,0,0,0,13,18,142,0,4,18,1,0,5,46,0,487,30,0,0,0,8,1,302,0,2,0,0,2558,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,136,0,87,0,0,0,14,21,220,413,127,0,0,0,0,1,0,3,0,0,0,0,0,0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,59,277,4,0,0,230,0,396,0,0,0,93,29,0,0,0,0,0,0,0,0,0,157,0,0,0,0,18,0,0,0,0,10,137,112,0,0,60,0,0,0,0,0,692,0,0,7,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,15,0,0,0,0,9,72,34,0,17,9,0,0,0,0,0,225,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,271,720,4 +6,0,0,9,0,59,181,0,122,6,15,0,0,2,21,2,65,0,63,4,0,0,0,7,0,8,24,0,10,0,9,4,0,0,23,0,59,206,0,0,282,0,0,0,1,0,0,8,1,0,0,0,13,218,0,0,0,0,0,1,0,0,0,5,0,16,0,0,7083,59,548,0,21,0,0,0,0,0,36,0,0,0,0,1,10,25,674,0,0,23,0,0,1,94,0,840,60,19,0,0,2,0,715,0,10,0,0,2845,0,0,0,0,3,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,627,0,171,0,0,0,24,50,249,1341,602,0,0,0,0,1,0,14,0,0,0,0,0,0,2584,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,25,440,9,0,0,621,0,1228,0,0,0,481,86,0,0,0,0,0,0,0,0,0,471,1,0,8,0,11,0,0,0,0,12,158,386,0,0,293,0,0,0,0,0,1340,0,0,1523,3,0,1,1,1,0,0,0,26,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,86,1,1,1,0,24,0,0,0,0,1,82,632,0,46,9,0,0,0,0,0,289,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,928,1485,4 +0,0,0,10,0,17,4,0,25,1,7,0,0,0,4,0,19,0,7,1,0,0,0,1,0,0,0,0,5,0,8,0,0,0,5,0,17,6,0,0,36,0,0,0,1,0,0,1,0,0,0,0,7,72,1,0,0,0,0,1,0,0,0,2,0,7,0,0,19201,17,67,0,13,0,0,0,0,0,6,0,0,0,0,0,1,3,3884,0,0,5,0,0,1,9,0,107,15,1,0,0,2,0,66,0,1,0,0,514,0,0,0,0,2,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2699,0,53,0,0,0,14,12,38,148,2716,0,0,0,0,1,0,0,0,0,0,0,0,0,4867,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,7,112,14,0,0,96,0,238,0,0,0,30,5,0,0,0,0,0,0,0,0,0,66,1,0,0,0,2,0,0,0,0,5,101,20,0,0,31,0,0,0,0,0,1708,0,0,5302,0,0,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,19,0,0,0,8,1,22,12,0,13,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,2,0,0,0,0,0,0,0,0,0,0,0,0,1,2634,59,4 +61,0,0,25,7,69,130,16,312,20,55,0,0,2,48,0,259,0,16,11,0,5,1,5,0,25,13,0,13,0,2,3,0,6,27,0,76,205,0,0,523,0,0,0,1,0,0,3,0,0,0,0,22,297,0,0,0,0,0,1,0,2,0,13,0,59,0,0,2313,69,1102,0,31,0,0,0,0,0,54,9,0,0,0,0,9,18,305,0,16,27,6,0,7,145,0,1420,85,3,0,0,10,7,955,0,32,0,0,1696,0,0,0,0,24,24,0,0,30,0,0,1,0,0,0,15,0,0,0,0,0,0,0,3,0,0,0,5,0,0,0,0,0,1,0,15,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,5,2,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,10,10,10,0,0,0,241,0,197,0,0,0,25,43,264,1198,276,0,0,0,0,1,0,4,0,0,0,0,0,0,1978,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,452,100,1032,41,0,0,1141,0,2345,0,4,0,436,27,0,0,0,0,0,0,0,0,0,822,1,0,0,0,22,0,0,0,0,16,236,417,0,0,185,0,0,0,0,0,9683,0,0,114,3,0,1,4,0,0,0,0,5,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,76,1,1,1,0,22,0,0,0,0,57,103,289,0,47,9,0,0,0,0,0,538,7,0,0,0,0,0,0,0,0,0,0,0,8,0,1,28,0,0,0,0,0,0,0,0,0,0,0,10,0,3,1412,776,4 +3,0,0,5,6,14,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,20,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,97,0,0,0,0,0,1,0,0,0,0,0,25,0,0,490,14,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,46,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,308,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,63,0,48,0,0,0,2,10,48,224,101,0,0,0,0,1,0,1,0,0,0,0,0,0,425,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,117,36,389,11,0,0,404,0,614,0,1,0,103,10,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,111,74,0,0,57,0,0,0,0,0,538,0,0,20,0,0,1,0,0,0,0,0,3,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,1,1,1,0,6,0,0,0,0,49,23,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,11,0,0,222,37,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,415,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,130,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,35,0,33,0,0,0,2,4,27,96,53,0,0,0,0,1,0,0,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,45,3,0,0,47,0,147,0,0,0,5,6,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,11,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,406,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,25,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,122,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,45,3,0,0,47,0,143,0,0,0,5,7,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,11,4 +118,0,0,29,11,89,157,27,272,30,38,0,0,2,66,1,561,0,20,45,0,98,2,6,0,33,22,0,18,0,7,3,0,10,38,0,99,301,160,0,385,0,0,0,1,0,0,3,0,0,0,0,34,321,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2488,89,1773,0,51,0,0,0,0,0,22,15,0,0,0,0,13,22,300,0,27,38,10,0,8,37,0,731,70,3,0,0,14,11,586,0,46,0,0,2511,0,0,0,0,45,15,1,0,32,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,294,0,231,0,0,0,42,73,342,591,302,0,0,0,0,1,0,6,0,0,0,0,0,0,2115,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1437,49,0,0,1493,0,2991,0,6,0,500,157,0,0,0,0,0,0,0,0,0,1117,1,0,0,0,151,0,0,0,0,31,283,146,0,0,155,0,0,0,0,0,10427,0,0,169,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,7,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,62,0,0,0,0,123,137,314,0,74,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,247,0,3,1610,1607,4 +72,0,0,0,6,87,17,24,117,5,15,0,3,0,7,0,103,0,7,19,0,6,6,7,0,24,18,0,29,0,17,1,0,6,39,0,93,12,0,0,186,0,0,0,1,0,0,1,0,0,0,0,34,151,0,0,0,0,0,1,0,1,0,0,0,5,0,0,3916,87,1020,0,59,0,0,0,0,0,11,18,0,0,0,0,13,20,708,0,24,39,6,0,2,28,0,445,35,1,0,0,6,6,349,0,4,0,0,2848,0,0,0,0,21,6,2,0,3,0,0,1,0,0,0,14,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,3,0,23,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,57,10,10,10,0,0,0,460,0,123,0,0,0,50,74,285,327,442,0,0,0,0,1,0,5,0,0,0,0,0,0,712,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,29,55,561,6,0,0,541,0,796,0,0,0,223,60,0,0,0,0,0,0,0,0,0,269,1,0,0,0,38,0,0,0,0,30,179,91,0,0,81,0,0,0,0,0,261,0,0,25,3,0,1,5,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,3,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,94,1,1,1,0,68,0,0,0,24,49,132,92,0,80,9,0,0,0,0,0,134,11,0,0,0,0,0,0,0,0,0,0,0,7,0,1,5,0,0,0,0,0,0,0,0,0,0,0,10,0,1,187,1489,4 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,1954,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,159,10,1969,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,29,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,1946,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1990,0,56,0,0,0,0,3,26,13,43,0,0,0,0,1,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,91,2,0,0,83,0,142,0,0,0,24,1941,0,0,0,0,0,0,0,0,0,1974,1,0,0,0,2,0,0,0,0,0,97,11,0,0,0,0,0,0,0,0,3909,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,22,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,114,15,4 +0,0,0,0,0,10,4,0,12,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,9,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,54,10,36,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,10,0,0,0,0,0,2,8,0,79,15,0,0,0,4,0,46,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,29,58,29,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,49,1,0,0,45,0,27,0,0,0,5,822,0,0,0,0,0,0,0,0,0,41,0,0,0,0,2,0,0,0,0,0,93,16,0,0,30,0,0,0,0,0,23,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,4,4 +1,0,0,7,0,11,2,0,11,0,3,0,0,0,2,0,15,0,7,1,0,0,0,1,0,1,0,0,2,0,2,0,0,0,1,0,11,6,0,0,8,0,0,0,1,0,0,2,0,0,0,0,2,83,0,0,0,0,0,1,0,0,0,0,0,1,0,0,19739,11,44,0,5,0,0,0,0,0,8,0,0,0,0,1,1,5,356,0,0,1,0,0,0,0,0,10,0,4,0,0,2,0,14,0,0,0,0,6280,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,260,0,32,0,0,0,4,5,26,6099,262,0,0,0,0,1,0,0,0,0,0,0,0,0,438,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,5,89,10,0,0,102,0,217,0,0,0,42,8,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,93,31,0,0,0,0,0,0,0,0,132,0,0,355,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,6,0,0,0,0,1,12,196,0,5,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,233,11,4 +0,0,0,2,1,12,26,1,41,1,3,0,0,0,4,0,80,0,9,1,0,0,0,1,0,0,9,0,6,0,4,0,0,1,2,0,13,54,0,0,10,0,0,0,1,0,0,4,0,0,0,0,3,103,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2141,12,165,0,10,0,0,0,0,0,19,0,0,0,0,0,1,7,229,0,1,2,1,0,1,0,0,68,0,4,0,0,4,1,85,0,1,0,0,260,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,233,0,78,0,0,0,6,18,39,28,246,0,0,0,0,1,0,0,0,0,0,0,0,0,721,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,112,11,281,3,0,0,353,0,819,0,1,0,169,12,0,0,0,0,0,0,0,0,0,163,1,0,0,0,2,0,0,0,0,4,152,67,0,0,0,0,0,0,0,0,312,0,0,534,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,1,1,1,0,9,0,0,0,0,9,15,169,0,19,0,0,0,0,0,0,63,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,481,142,4 +0,0,0,8,2,15,50,2,57,9,7,0,0,0,19,6,128,0,11,1,0,0,0,1,0,0,6,0,2,0,2,1,0,2,4,0,17,136,0,0,47,0,0,0,1,0,0,7,0,0,0,0,2,105,0,0,0,0,0,1,0,0,0,0,0,16,0,0,8790,15,242,0,5,0,0,0,0,0,26,0,0,0,0,0,1,10,2356,0,2,4,2,0,2,0,0,90,0,11,0,0,6,2,121,0,13,0,0,742,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1888,0,273,0,0,0,4,11,40,26,2081,0,0,0,0,1,0,0,0,0,0,0,0,0,4037,0,187,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,219,37,422,10,0,0,463,0,887,0,2,0,162,9,0,0,0,0,0,0,0,0,0,278,1,0,0,0,2,0,0,0,0,1,133,50,0,0,0,0,0,0,0,0,977,0,0,2418,0,0,1,0,0,0,0,0,16,0,0,0,2,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,13,1,1,1,0,4,0,0,0,0,17,21,171,0,11,0,0,0,0,0,0,90,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2508,76,4 +0,0,0,0,0,1,0,1,20,0,1,0,0,0,1,0,731,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,727,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,2,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,1,108,4 +5,0,2,12,3,37,72,0,670,11,17,0,0,0,20,0,4852,0,7,3,0,1,0,1,0,3,0,0,3,0,4,0,0,2,14,27,37,89,0,0,99,0,0,0,1,0,0,2,1,0,0,0,6,1989,0,0,0,0,0,1,0,0,0,7,0,19,0,0,1049,37,5646,0,9,0,0,0,0,0,56,0,0,0,0,0,1,4,70,0,0,14,2,0,1,11,0,149,20,5,0,0,7,3,4980,0,14,0,0,1556,0,0,0,0,5,1,0,0,1,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0,0,0,91,0,141,0,0,0,9,11,52,772,98,0,0,0,0,1,0,0,0,0,0,9669,3,1,1054,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,192,12153,520,17,0,0,711,0,3111,0,1,0,251,638,0,0,0,0,0,0,0,0,0,5638,1,0,2,0,5,0,0,0,0,4,192,375,0,2,45,0,0,0,0,0,9832,0,0,34,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,9,0,0,0,0,3,51,1041,0,10,0,0,0,0,0,0,94,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,2,0,3,317,101,4 +9,0,0,6,1,17,26,1,38,1,4,0,0,0,6,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,3,0,18,54,0,0,19,0,0,0,1,0,0,4,0,0,0,0,0,80,0,0,0,0,0,1,0,0,0,0,0,5,0,0,22838,17,125,0,1,0,0,0,0,0,17,0,0,0,0,0,1,6,1544,0,1,3,1,0,1,0,0,50,0,6,0,0,4,1,25,0,3,0,0,8207,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1514,0,152,0,0,0,0,3,72,37,1530,0,0,0,0,1,0,0,0,0,0,0,0,0,1644,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,113,17,940,8,0,0,773,0,748,0,1,0,580,25,0,0,0,0,0,0,0,0,0,147,1,0,0,0,2,0,0,0,0,0,614,21,0,0,0,0,0,0,0,0,1174,0,0,1720,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,46,1,1,1,0,0,0,0,0,0,9,21,73,0,1,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,749,121,4 +0,0,0,3,0,11,2,0,4,0,2,0,0,0,2,0,9,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,64,11,23,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,15,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,11,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,22,0,0,0,6,7,24,10,34,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,36,3,0,0,39,0,92,0,0,0,0,2,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,1,91,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,4 +13,0,0,0,0,32,24,0,36,2,5,0,2,0,4,0,20,0,6,5,0,0,0,5,0,10,3,0,5,0,1,1,0,0,6,0,32,9,0,0,92,0,0,0,1,0,0,0,0,0,0,0,4,74,0,0,0,0,0,1,0,0,0,0,0,3,0,0,644,32,115,0,7,0,0,0,0,0,13,0,0,0,0,0,9,14,128,0,0,6,0,0,2,25,0,290,15,0,0,0,4,0,170,0,2,0,0,711,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,87,0,44,0,0,0,4,11,187,163,91,0,0,0,0,1,0,3,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,122,0,0,0,140,0,237,0,0,0,61,26,0,0,0,0,0,0,0,0,0,97,0,0,0,0,10,0,0,0,0,4,122,53,0,0,30,0,0,0,0,0,96,0,0,2,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,8,0,0,0,0,1,38,22,0,11,9,0,0,0,0,0,88,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,32,4 +0,0,0,5,0,36,25,0,46,3,24,0,0,7,4,0,712,0,6,1,0,0,0,8,0,11,0,0,25,0,1,0,0,0,1,12509,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,792,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41990,36,877,0,24,0,0,0,0,0,46,0,0,0,0,0,8,94,6982,0,0,1,0,0,0,0,0,367,25,1,0,0,2,0,800,0,0,90,0,4485,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,1686,0,32,0,0,0,13,16,498,2089,1664,0,0,0,0,1,0,3,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,278,5,0,0,310,0,310,0,0,0,149,16,0,0,0,0,0,0,0,0,0,824,1,0,0,0,9,0,0,0,0,1,166,6,0,0,136,0,0,0,0,0,4616,1,0,996,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,208,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2464,22,4 +0,0,0,2,0,10,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,74,0,0,0,0,0,1,0,0,0,0,0,1,0,0,8207,10,40,0,1,0,0,0,0,0,8,0,0,0,0,0,1,5,1933,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,13,0,0,0,0,546,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,79,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1208,0,144,0,0,0,0,3,26,5,1250,0,0,0,0,1,0,0,0,0,0,0,0,0,3102,0,0,0,0,0,0,0,0,0,0,0,0,2,0,77,0,0,0,0,0,0,8,3,91,2,0,0,117,0,240,0,0,0,52,8,0,0,0,0,0,0,164,0,0,40,1,0,0,0,2,0,0,0,0,0,92,44,0,0,0,0,0,0,0,0,559,0,0,2389,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,155,0,0,0,0,305,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,87,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,155,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,83,0,0,0,0,0,0,0,1,1172,232,4 +0,0,0,5,0,36,24,0,48,3,23,0,0,7,4,0,784,0,6,1,0,0,0,8,0,11,0,0,25,0,1,0,0,0,1,12393,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,632,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39675,36,948,0,24,0,0,0,0,0,45,0,0,0,0,0,8,94,6553,0,0,1,0,0,0,0,0,354,25,2,0,0,2,0,872,0,0,73,0,4382,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1462,0,34,0,0,0,13,16,496,2038,1440,0,0,0,0,1,0,3,0,0,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,283,5,0,0,311,0,286,0,0,0,151,6,0,0,0,0,0,0,0,0,0,896,1,0,0,0,9,0,0,0,0,1,163,7,0,0,123,0,0,0,0,0,4734,1,0,1044,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,62,0,0,0,0,1,37,212,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2523,33,4 +45,1,2,0,1,66,14,0,59,3,10,0,6,0,6,8,352,0,7,9,0,1,0,9,0,10,6,0,9,0,2,1,0,0,18,26,66,19,0,0,130,0,0,0,0,0,0,0,0,0,0,0,7,116,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1071,66,459,0,12,0,0,0,0,0,5,0,0,0,0,0,13,18,111,0,0,18,0,0,3,6,0,171,0,0,0,0,8,1,482,0,2,0,0,1022,0,0,0,0,18,10,0,2,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,2,0,0,0,0,0,2,2,12,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,106,0,0,0,0,2,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,81,10,10,10,0,0,0,111,0,73,0,0,0,10,21,234,138,115,0,0,0,0,1,0,22,0,0,0,605,3,1,751,0,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,2,0,63,823,247,3,0,0,236,0,791,0,0,0,74,97,0,0,0,0,0,0,0,0,0,462,0,0,0,0,19,0,0,0,0,5,149,23,0,2,0,0,0,0,0,0,778,0,0,3,3,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,65,1,1,1,0,11,0,0,0,0,3,84,32,0,19,9,0,0,0,0,0,109,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,1,0,0,0,0,1,0,0,303,98,4 +0,0,0,0,0,1,0,1,20,0,1,0,0,0,1,0,730,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,726,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,2,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,1,108,4 +6,0,0,9,0,59,181,0,121,6,15,0,0,2,21,2,66,0,63,4,0,0,0,7,0,8,24,0,9,0,9,4,0,0,23,0,59,206,0,0,282,0,0,0,1,0,0,8,1,0,0,0,13,219,0,0,0,0,0,1,0,0,0,5,0,16,0,0,7576,59,547,0,20,0,0,0,0,0,36,0,0,0,0,1,10,25,720,0,0,23,0,0,1,94,0,839,60,20,0,0,2,0,714,0,10,0,0,2302,0,0,0,0,3,2,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,694,0,168,0,0,0,24,50,253,1341,669,0,0,0,0,1,0,13,0,0,0,0,0,0,2846,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,54,25,439,9,0,0,618,0,1221,0,0,0,478,78,0,0,0,0,0,0,0,0,0,471,1,0,9,0,11,0,0,0,0,12,158,383,0,0,293,0,0,0,0,0,1391,0,0,1794,3,0,1,1,1,0,0,0,27,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,90,1,1,1,0,23,0,0,0,0,1,82,624,0,45,9,0,0,0,0,0,289,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,973,1491,4 +22,0,0,1,1,39,15,0,42,4,13,0,2,0,8,0,34,0,6,5,0,0,0,6,0,8,0,0,2,0,1,0,0,0,8,0,39,39,0,0,112,0,0,0,1,0,0,0,0,0,0,0,1,106,1,0,0,0,0,1,0,0,0,12,0,13,0,0,1105,39,239,0,1,0,0,0,0,0,72,0,0,0,0,0,8,13,237,0,0,8,0,0,2,28,0,305,15,0,0,0,8,1,187,0,5,0,0,520,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,3,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,6,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,10,10,0,0,0,182,0,121,0,0,0,0,3,195,272,199,0,0,0,0,1,0,3,0,0,0,0,0,0,1063,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,0,41,35,154,2,0,0,243,0,411,0,0,0,134,3,0,0,0,0,0,0,0,0,0,120,0,0,0,0,11,0,0,0,0,0,128,80,0,0,43,0,0,0,0,0,40813,0,0,0,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,23,48,24,0,2,9,0,0,0,0,0,144,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,28,4 +11,0,0,9,1,49,50,1,125,7,15,1,0,2,13,0,69,0,9,4,0,0,0,8,0,10,0,0,12,0,1,0,0,1,17,0,50,54,0,0,163,0,0,0,1,0,0,16,3,0,0,0,3,323,0,0,0,0,0,1,0,0,0,20,0,11,0,0,7665,49,338,0,14,0,0,0,0,0,61,0,0,0,0,5,11,39,1380,0,1,17,1,0,1,47,0,519,20,33,1,0,4,1,340,0,8,0,0,1328,0,0,0,0,31,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,8,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,10,10,10,0,0,0,1115,0,263,0,0,0,2,7,226,426,1031,0,0,0,0,1,0,3,0,0,0,0,0,0,2366,0,0,0,0,0,0,0,0,0,0,0,0,16,1,0,0,0,0,0,1,0,136,26,395,12,0,0,526,0,1659,0,1,0,276,26,0,0,0,0,0,0,0,0,0,284,1,0,9,0,12,0,0,0,0,3,161,224,0,0,34,0,0,0,0,0,608,0,0,1287,2,0,1,1,0,0,0,0,42,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,57,1,1,1,0,13,0,0,0,0,9,67,802,0,15,8,0,0,0,0,0,204,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,10,1809,98,4 +20,0,0,0,0,35,24,0,36,2,5,0,2,0,4,0,20,0,6,6,0,0,0,6,0,10,3,0,5,0,2,1,0,0,6,0,35,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,72,0,0,0,0,0,1,0,0,0,0,0,3,0,0,716,35,115,0,8,0,0,0,0,0,13,0,0,0,0,0,11,16,135,0,0,6,0,0,2,25,0,298,15,0,0,0,4,0,170,0,2,0,0,976,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,2,0,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,97,0,48,0,0,0,6,12,197,169,101,0,0,0,0,1,0,3,0,0,0,0,0,0,387,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,138,0,0,0,149,0,249,0,0,0,61,32,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,125,53,0,0,30,0,0,0,0,0,98,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,10,0,0,0,0,1,41,22,0,12,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,35,4 +57,0,0,0,5,74,17,20,106,6,18,0,2,0,8,0,84,0,7,17,0,5,5,7,0,16,9,0,24,0,17,1,0,5,29,0,79,23,0,0,146,0,0,0,1,0,0,1,0,0,0,0,26,158,0,0,0,0,0,1,0,0,0,0,0,6,0,0,3853,74,665,0,47,0,0,0,0,0,10,15,0,0,0,0,13,20,694,0,20,29,5,0,1,37,0,491,55,1,0,0,4,5,334,0,5,0,0,2044,0,0,0,0,15,4,2,0,3,0,0,1,0,0,0,11,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,3,0,22,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,34,10,10,10,0,0,0,415,0,112,0,0,0,42,52,268,307,422,0,0,0,0,1,0,4,0,0,0,0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,23,36,493,5,0,0,467,0,671,0,0,0,186,63,0,0,0,0,0,0,0,0,0,242,1,0,0,0,34,0,0,0,0,22,165,109,0,0,137,0,0,0,0,0,235,0,0,25,3,0,1,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,3,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,81,1,1,1,0,63,0,0,0,24,41,108,94,0,58,9,0,0,0,0,0,125,10,0,0,0,0,0,0,0,0,0,0,0,6,0,1,6,0,0,0,0,0,0,0,0,0,0,0,6,0,1,198,796,4 +45,0,0,1,1,56,8,4,33,2,6,0,3,0,5,0,44,0,7,10,0,1,1,6,0,23,12,0,8,0,3,1,0,1,21,0,57,12,0,0,136,0,0,0,1,0,0,0,0,0,0,0,19,94,0,0,0,0,0,1,0,1,0,0,0,3,0,0,894,56,237,0,25,0,0,0,0,0,6,3,0,0,0,0,13,18,129,0,4,21,1,0,3,8,0,209,15,0,0,0,6,1,158,0,2,0,0,11418,0,0,0,0,14,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,27,10,10,10,0,0,0,133,0,88,0,0,0,21,41,222,179,123,0,0,0,0,1,0,3,0,0,0,0,0,0,417,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,52,279,2,0,0,225,0,382,0,0,0,91,33,0,0,0,0,0,0,0,0,0,106,0,0,0,0,18,0,0,0,0,18,147,19,0,0,30,0,0,0,0,0,137,0,0,4,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,15,0,0,0,0,9,78,37,0,38,9,0,0,0,0,0,132,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,136,976,4 +0,0,0,2,0,10,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1008,10,41,0,1,0,0,0,0,0,8,0,0,0,0,0,1,7,498,0,0,0,0,0,0,0,0,9,0,2,0,0,2,0,13,0,0,0,0,121,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,48,0,31,0,0,0,0,3,30,5,60,0,0,0,0,1,0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,80,2,0,0,88,0,298,0,0,0,18,9,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,93,15,0,0,0,0,0,0,0,0,216,0,0,749,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,83,0,1,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,258,418,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,15,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,15,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,6,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,16,0,0,0,0,0,1,0,0,0,0,0,2,0,0,54,10,28,0,11,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,0,0,0,0,0,0,11,0,0,0,0,2,0,16,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,32,0,0,0,0,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,57,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,6,0,0,0,0,1,10,0,0,13,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,4 +20,0,0,7,0,65,7,0,46,9,6,0,0,6,16,1,710,0,7,3,0,0,0,8,0,15,0,0,8,0,2,0,0,0,28,898,65,6,0,0,112,0,0,0,1,0,0,8,0,0,0,0,7,233,0,0,0,0,0,1,0,0,0,14,0,16,0,0,14446,65,857,0,12,0,0,0,0,0,44,0,0,0,0,0,10,30,2792,0,0,28,0,0,0,0,0,216,20,15,1,0,2,0,697,0,12,1,0,1843,0,0,0,0,17,8,1,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,8,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,2,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,34,12,12,12,0,0,0,1509,0,188,0,0,0,7,10,322,412,1470,0,0,0,0,1,0,3,0,0,0,0,0,0,2575,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,88,33,337,7,0,0,390,0,422,0,0,0,225,34,0,0,0,0,0,0,0,0,0,799,1,0,0,0,11,0,0,0,0,10,169,60,0,0,6,0,0,0,0,0,2845,1,0,2371,6,0,1,2,0,0,0,0,13,0,0,0,4,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,39,39,0,0,3,1,0,0,0,0,6,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,71,1,1,1,0,7,0,0,0,0,29,93,353,0,13,12,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1339,285,4 +286,0,0,28,21,97,166,37,379,32,43,0,0,2,69,2,802,0,20,67,0,117,2,6,0,37,22,0,19,0,7,3,0,20,42,0,117,301,160,0,383,0,0,0,1,0,0,4,0,0,0,0,38,402,0,0,0,0,0,1,0,2,0,12,0,53,0,0,2707,97,3453,0,56,0,0,0,0,0,20,45,0,0,0,1,14,24,279,0,37,42,20,0,7,29,0,694,55,4,0,0,14,21,681,0,49,0,0,2525,0,0,0,0,69,32,0,0,29,0,0,1,0,0,0,19,0,0,0,0,0,0,0,27,0,0,0,16,0,0,0,0,0,6,0,70,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,14,0,0,0,0,0,0,0,21,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,319,0,286,0,0,0,46,75,415,549,316,0,0,0,0,1,0,5,0,0,0,0,0,0,2918,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,677,341,1855,58,0,0,1865,0,3174,0,6,0,605,429,0,0,0,0,0,0,0,0,0,1483,1,0,0,0,192,0,0,0,0,36,299,134,0,0,125,0,0,0,0,0,10721,0,0,175,4,0,1,7,0,0,0,0,6,0,0,0,2,0,0,0,0,0,31,0,0,0,0,0,0,0,0,1,0,0,105,105,0,0,8,1,0,0,0,0,3,19,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,103,1,1,1,0,58,0,0,0,0,239,159,371,0,79,9,0,0,0,0,0,304,30,0,0,0,0,0,0,1,0,0,0,0,21,0,3,36,0,0,0,0,0,0,0,0,117,0,0,232,0,2,1763,1818,4 +49,0,0,1,1,60,17,4,69,7,15,0,5,0,11,0,46,0,7,10,0,1,1,6,0,19,12,0,9,0,4,1,0,1,21,0,61,18,0,0,205,0,0,0,1,0,0,0,0,0,0,0,16,103,0,0,0,0,0,1,0,1,0,0,0,14,0,0,1032,60,318,0,22,0,0,0,0,0,16,3,0,0,0,0,13,18,139,0,4,21,1,0,6,41,0,459,30,0,0,0,10,1,329,0,7,0,0,1431,0,0,0,0,14,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,0,0,6,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,27,10,10,10,0,0,0,137,0,101,0,0,0,19,35,224,388,134,0,0,0,0,1,0,3,0,0,0,0,0,0,553,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,43,74,302,4,0,0,256,0,439,0,0,0,104,31,0,0,0,0,0,0,0,0,0,170,0,0,0,0,18,0,0,0,0,12,147,99,0,0,60,0,0,0,0,0,735,0,0,6,3,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,20,0,0,0,0,9,82,37,0,36,9,0,0,0,0,0,231,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,2,0,0,325,749,4 +0,0,0,6,0,12,2,0,17,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,12,6,0,0,5,0,0,0,1,0,0,3,0,0,0,0,0,95,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1238,12,50,0,1,0,0,0,0,0,12,0,0,0,0,0,1,6,288,0,0,1,0,0,0,0,0,9,0,5,1,0,2,0,16,0,0,0,0,138,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,187,0,47,0,0,0,0,3,32,7,196,0,0,0,0,1,0,0,0,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,8,3,101,8,0,0,158,0,296,0,0,0,79,5,0,0,0,0,0,0,2,0,0,45,1,0,0,0,2,0,0,0,0,0,99,62,0,0,0,0,0,0,0,0,92,0,0,276,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,253,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,210,42,4 +0,0,0,5,0,35,25,0,48,3,24,0,0,7,4,0,764,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12527,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,722,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39693,35,930,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6626,0,0,1,0,0,0,0,0,364,25,1,0,0,2,0,852,0,0,88,0,4904,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1364,0,32,0,0,0,12,15,489,2082,1343,0,0,0,0,1,0,3,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,272,5,0,0,307,0,291,0,0,0,147,14,0,0,0,0,0,0,0,0,0,878,1,0,0,0,9,0,0,0,0,1,164,6,0,0,135,0,0,0,0,0,4791,1,0,995,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2569,23,4 +113,0,0,29,11,89,157,27,271,30,38,0,0,2,66,1,562,0,20,44,0,99,2,6,0,33,22,0,18,0,8,2,0,10,38,0,99,301,160,0,385,0,0,0,1,0,0,3,0,0,0,0,34,345,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2558,89,1773,0,51,0,0,0,0,0,21,15,0,0,0,0,13,22,291,0,27,38,10,0,8,37,0,731,70,3,0,0,14,11,586,0,46,0,0,2081,0,0,0,0,45,13,1,0,30,0,0,1,0,0,0,21,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,22,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,28,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,286,0,228,0,0,0,42,72,337,581,297,0,0,0,0,1,0,6,0,0,0,0,0,0,2146,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1436,49,0,0,1495,0,3000,0,6,0,503,264,0,0,0,0,0,0,0,0,0,1117,1,0,0,0,151,0,0,0,0,28,283,149,0,0,155,0,0,0,0,0,10426,0,0,162,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,7,1,0,0,0,0,3,19,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,94,1,1,1,0,59,0,0,0,0,119,137,326,0,74,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,246,0,4,1665,1605,4 +12,0,0,0,0,14,4,0,10,0,1,0,1,0,2,0,17,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,14,9,0,0,32,0,0,0,1,0,0,1,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1088,14,57,0,1,0,0,0,0,0,16,0,0,0,0,0,1,3,166,0,0,3,0,0,1,0,0,9,0,1,0,0,4,0,9,0,0,0,0,1677,0,0,0,0,0,12,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,133,0,104,0,0,0,0,3,31,945,158,0,0,0,0,1,0,0,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,13,92,0,0,0,96,0,194,0,0,0,34,1,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,99,3,0,0,0,0,0,0,0,0,648,0,0,20,0,0,1,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,17,3,0,1,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,272,140,4 +18,0,0,2,0,21,20,0,99,0,21,0,1,0,3,0,15,0,7,1,0,0,0,1,0,5,0,0,0,0,1,0,0,0,9,0,21,12,0,0,208,0,0,0,0,0,0,0,0,0,0,0,5,57,0,0,0,0,0,1,0,0,0,0,0,17,0,0,399,21,185,0,6,0,0,0,0,0,12,0,0,0,0,0,1,1,109,0,0,9,0,0,2,88,0,683,15,0,0,0,4,0,459,0,0,0,0,246,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,96,0,80,0,0,0,5,7,44,625,113,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,28,102,2,0,0,106,0,118,0,0,0,61,3,0,0,0,0,0,0,0,0,0,166,0,0,0,0,2,0,0,0,0,5,105,224,0,0,30,0,0,0,0,0,629,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,0,0,0,0,0,1,30,9,0,6,0,0,0,0,0,0,293,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,407,4 +0,0,0,3,0,34,17,0,33,0,2,0,0,2,2,0,644,0,6,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,2,980,34,6,0,0,22,0,4,0,1,0,0,4,0,0,0,0,1,245,0,0,0,0,0,1,0,0,0,0,0,2,0,0,33047,34,737,0,1,0,0,0,0,0,35,0,0,0,0,0,8,21,6094,0,0,2,0,0,0,0,0,92,5,7,0,0,2,0,662,0,0,0,0,1910,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,4435,0,65,0,0,0,0,3,257,404,4421,0,0,0,0,1,0,4,0,0,0,0,0,0,579,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,10,180,3,0,0,271,0,299,0,0,0,124,4,0,0,0,0,0,0,5,0,0,706,1,0,0,0,9,0,0,0,0,0,117,63,0,0,0,0,0,0,0,0,2245,1,0,995,11,0,1,1,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,11,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,0,0,0,0,0,1,36,462,0,2,12,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,968,30,4 +152,0,0,29,10,84,188,22,425,30,73,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,94,301,0,0,691,0,0,0,1,0,0,3,0,0,0,0,28,354,0,0,0,0,0,1,0,3,0,12,0,83,0,0,2927,84,1520,0,39,0,0,0,0,0,72,12,0,0,0,0,13,22,411,0,22,33,9,0,10,198,0,1932,100,3,0,0,14,10,1304,0,46,0,0,2116,0,0,0,0,52,41,0,0,30,0,0,1,0,0,0,18,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,19,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,35,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,335,0,237,0,0,0,36,76,296,1651,363,0,0,0,0,1,0,5,0,0,0,0,0,0,2679,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1443,48,0,0,1555,0,2904,0,6,0,563,43,0,0,0,0,0,0,0,0,0,1147,1,0,0,0,30,0,0,0,0,22,278,551,0,0,215,0,0,0,0,0,9940,0,0,193,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,77,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,723,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1608,1656,4 +116,0,0,29,11,92,157,27,274,27,39,0,0,2,62,1,560,0,20,45,0,98,2,6,0,42,22,0,22,0,8,2,0,10,41,0,102,301,160,0,403,0,0,0,1,0,0,2,0,0,0,0,42,345,0,0,0,0,0,1,0,3,0,12,0,49,0,0,2617,92,1789,0,63,0,0,0,0,0,21,15,0,0,0,0,13,22,300,0,27,41,10,0,8,37,0,748,70,3,0,0,14,11,594,0,43,0,0,2466,0,0,0,0,43,16,1,0,29,0,0,1,0,0,0,23,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,29,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,307,0,240,0,0,0,50,86,334,596,307,0,0,0,0,1,0,6,0,0,0,0,0,0,2129,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,681,335,1442,49,0,0,1502,0,2945,0,6,0,509,406,0,0,0,0,0,0,0,0,0,1115,1,0,0,0,151,0,0,0,0,37,283,149,0,0,155,0,0,0,0,0,10428,0,0,155,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,10,1,0,0,0,0,3,17,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,61,0,0,0,0,115,143,329,0,87,9,0,0,0,0,0,327,10,0,0,0,0,0,0,1,0,0,0,0,11,0,5,33,0,0,0,0,0,0,0,0,117,0,0,201,0,3,1655,1843,4 +0,0,0,0,0,1,0,1,19,0,1,0,0,0,1,0,732,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,728,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,10,0,0,0,0,0,0,0,0,0,754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,9,0,0,1,107,4 +1,0,0,0,0,9,3,0,4,0,2,0,1,0,2,0,10,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,0,0,0,19,9,23,0,1,0,0,0,0,0,0,0,0,0,0,1,1,1,3,0,0,1,0,0,1,0,0,7,0,0,0,0,4,0,9,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,20,0,0,0,0,3,22,5,22,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,13,38,0,0,0,43,0,62,0,0,0,8,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,3,0,0,0,0,1,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,5,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,6,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,16,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,44,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,6,4 +83,0,0,25,8,76,163,17,383,26,68,0,0,2,56,0,309,0,18,14,0,5,1,6,0,25,13,0,14,0,4,3,0,7,28,0,84,253,0,0,633,0,0,0,1,0,0,3,0,0,0,0,24,304,0,0,0,0,0,1,0,2,0,12,0,75,0,0,2758,76,1278,0,35,0,0,0,0,0,70,9,0,0,0,0,13,22,348,0,17,28,7,0,9,193,0,1842,100,3,0,0,12,8,1218,0,40,0,0,1854,0,0,0,0,28,32,0,0,30,0,0,1,0,0,0,16,0,0,0,0,0,0,0,7,0,0,0,7,0,0,0,0,0,1,0,17,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,10,10,10,0,0,0,274,0,216,0,0,0,29,48,283,1531,315,0,0,0,0,1,0,4,0,0,0,0,0,0,2407,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,556,117,1212,42,0,0,1338,0,2547,0,5,0,498,45,0,0,0,0,0,0,0,0,0,999,1,0,0,0,26,0,0,0,0,18,255,535,0,0,215,0,0,0,0,0,9790,0,0,161,3,0,1,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,83,1,1,1,0,29,0,0,0,0,65,112,291,0,50,9,0,0,0,0,0,676,8,0,0,0,0,0,0,0,0,0,0,0,9,0,1,36,0,0,0,0,0,0,0,0,0,0,0,11,0,3,1563,774,4 +0,0,0,3,0,33,9,0,31,0,2,0,0,2,2,0,532,0,6,2,0,0,0,8,0,11,0,0,4,0,1,0,0,0,2,900,33,6,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,236,0,0,0,0,0,1,0,0,0,0,0,2,0,0,45958,33,586,0,1,0,0,0,0,0,16,0,0,0,0,0,9,21,8646,0,0,2,0,0,0,0,0,93,5,2,0,0,2,0,547,0,0,0,0,2774,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,5160,0,33,0,0,0,0,3,240,1128,5147,0,0,0,0,1,0,3,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,179,3,0,0,198,0,196,0,0,0,55,6,0,0,0,0,0,0,0,0,0,584,1,0,0,0,10,0,0,0,0,0,116,9,0,0,0,0,0,0,0,0,3205,1,0,771,10,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,10,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,35,333,0,2,14,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1718,29,4 +0,0,0,10,2,40,58,2,84,10,13,0,0,7,21,0,688,0,11,2,0,0,0,7,0,10,3,0,9,0,2,0,0,2,5,898,42,135,0,0,77,0,0,0,1,0,0,6,0,0,0,0,2,301,0,0,0,0,0,1,0,0,0,0,0,18,0,0,11071,40,847,0,8,0,0,0,0,0,36,0,0,0,0,0,8,41,1939,0,2,5,2,0,2,0,0,316,25,11,0,0,6,2,715,0,14,17,0,1659,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,916,0,281,0,0,0,5,10,290,481,1094,0,0,0,0,1,0,3,0,0,0,0,0,0,2680,0,192,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,335,51,557,12,0,0,597,0,1693,0,2,0,208,16,0,0,0,0,0,0,0,0,0,882,1,0,0,0,9,0,0,0,0,1,160,58,0,0,32,0,0,0,0,0,2280,1,0,1035,10,0,1,1,0,0,0,0,13,0,0,0,2,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,10,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,43,1,1,1,0,16,0,0,0,0,17,47,205,0,12,12,0,0,0,0,0,135,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,14,0,0,0,0,0,0,0,0,0,0,0,2,0,2,1781,86,4 +0,0,0,7,0,34,8,0,52,1,18,0,0,2,5,0,15,0,7,2,0,0,0,7,0,9,0,0,3,0,2,0,0,0,5,0,34,6,3,0,100,0,0,0,1,0,0,0,0,0,0,0,3,119,0,0,0,0,0,1,0,0,0,2,0,13,0,0,718,34,93,0,4,0,0,0,0,0,2,0,0,0,0,0,7,11,108,0,0,5,0,0,1,41,0,404,35,0,0,0,2,0,220,0,2,0,0,550,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,63,0,60,0,0,0,4,8,201,288,76,0,0,0,0,1,0,3,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,32,15,122,7,0,0,112,0,429,0,0,0,29,7,0,0,0,0,0,0,0,0,0,107,0,0,0,0,9,0,0,0,0,3,116,104,0,0,63,0,0,0,10,11,98,0,0,1,2,0,1,1,0,0,0,0,0,0,3,0,10,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,6,0,0,0,0,1,39,17,0,6,8,0,0,0,0,0,149,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,122,4 +85,0,0,2,1,52,25,4,120,12,24,0,4,0,19,0,42,0,7,6,0,1,1,5,0,31,12,0,8,0,3,0,0,1,17,0,53,15,0,0,541,0,0,0,1,0,0,0,0,0,0,0,26,111,0,0,0,0,0,1,0,1,0,0,0,33,0,0,1520,52,389,0,32,0,0,0,0,0,16,3,0,0,0,0,8,13,285,0,4,17,1,0,4,88,0,805,15,0,0,0,8,1,586,0,14,0,0,1458,0,0,0,0,42,23,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,35,10,10,10,0,0,0,220,0,119,0,0,0,27,65,217,800,219,0,0,0,0,1,0,4,0,0,0,0,0,0,865,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,100,287,4,0,0,240,0,324,0,0,0,103,20,0,0,0,0,0,0,0,0,0,241,0,0,0,0,13,0,0,0,0,25,137,231,0,0,30,0,0,0,0,0,748,0,0,19,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,37,0,0,0,0,9,70,41,0,45,9,0,0,0,0,0,346,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,14,0,0,0,0,0,0,0,0,0,0,0,2,0,0,310,1596,4 +4,0,0,8,0,115,23,0,514,0,208,0,1,4,51,0,371,0,7,3,0,0,0,8,0,12,77,0,15,0,5,25,0,0,75,1111,115,18,0,0,1049,0,0,0,1,0,0,7,1,0,0,0,30,311,0,0,0,0,0,1,0,0,0,0,0,77,0,0,47988,115,1376,0,41,0,0,0,0,0,70,0,0,0,0,0,10,33,7833,0,0,75,0,0,1,456,0,3855,390,13,0,0,2,0,3152,0,0,1,0,4999,0,0,0,0,3,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,4,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,64,12,12,12,0,0,0,5812,0,221,0,0,0,59,181,398,2979,5791,0,0,0,0,1,0,5,0,0,0,0,0,0,4208,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,63,22,587,9,0,0,552,0,665,0,0,0,390,97,0,0,0,0,0,0,0,0,0,1179,1,0,3,0,11,0,0,0,0,30,206,1190,0,0,886,0,0,0,0,0,3962,1,0,3464,23,0,1,1,0,0,0,0,21,0,0,0,2,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,23,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,121,1,1,1,0,164,0,0,0,0,1,190,668,0,120,14,0,0,0,0,0,1082,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1526,584,4 +0,0,0,7,0,10,2,0,20,0,2,0,0,0,3,0,17,0,6,1,0,0,0,1,0,4,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,0,0,1,0,0,3,0,0,0,0,4,138,0,0,0,0,0,1,0,0,0,0,0,2,0,0,652,10,54,0,5,0,0,0,0,0,9,0,0,0,0,0,1,6,43,0,0,1,0,0,0,0,0,15,0,3,0,0,2,0,24,0,0,0,0,185,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,61,0,40,0,0,0,4,8,24,72,67,0,0,0,0,1,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,121,10,0,0,118,0,281,0,0,0,46,6,0,0,0,0,0,0,0,0,0,50,1,0,0,0,2,0,0,0,0,3,96,30,0,0,0,0,0,0,0,0,31,0,0,20,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,104,0,5,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,79,121,4 +38,0,0,10,4,15,31,7,68,0,5,0,0,0,27,0,106,0,8,8,0,3,3,2,0,5,6,0,5,0,1,0,0,4,2,0,19,370,0,0,309,0,0,0,0,0,0,0,0,0,0,0,5,76,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1067,15,381,0,11,0,0,0,0,0,0,9,0,0,0,0,3,3,83,0,7,2,4,0,1,0,0,67,0,0,0,0,4,4,189,0,1,0,0,3585,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,67,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,14,0,0,0,0,0,0,71,0,33,0,0,0,5,13,44,70,89,0,0,0,0,0,0,0,0,0,0,0,0,0,813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,183,418,20,0,0,306,0,658,0,1,0,69,17,0,0,0,0,0,0,0,0,0,245,0,0,0,0,16,0,0,0,0,5,112,1,0,0,0,0,0,0,1,0,1197,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,13,1,1,1,0,5,0,0,0,0,33,21,3,0,17,0,0,0,0,0,0,74,88,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,886,38,4 +1,0,0,3,0,29,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,121,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1115,29,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,172,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,494,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,140,0,50,0,0,0,1,4,186,14,138,0,0,0,0,1,0,3,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,1,0,32,10,137,3,0,0,156,0,313,0,0,0,47,9,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,111,30,0,0,0,0,0,0,0,0,103,0,0,122,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,168,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,185,97,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,6,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,15,0,0,0,0,0,1,0,0,0,0,0,2,0,0,42,10,22,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,10,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,6,7,23,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,31,0,0,0,0,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,7,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,42,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,7,4 +3,0,0,0,0,15,2,0,4,0,1,0,0,0,2,0,10,0,7,1,0,0,0,1,0,3,0,0,1,0,1,0,0,0,3,0,15,6,0,0,22,0,0,0,0,0,0,0,0,0,0,0,3,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,59,15,22,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,9,0,0,3,0,0,0,0,0,10,0,0,0,0,2,0,11,0,0,0,0,158,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,23,0,19,0,0,0,3,4,31,24,29,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,19,69,0,0,0,59,0,131,0,0,0,17,9,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,2,101,3,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,1,0,0,0,0,1,18,3,0,5,0,0,0,0,0,0,17,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,73,4 +194,0,0,26,17,74,193,26,344,33,45,0,0,2,74,1,638,0,22,31,0,18,2,5,0,44,16,0,27,0,4,3,0,17,33,0,91,540,0,0,370,0,0,0,1,0,0,0,0,0,0,0,43,315,0,0,0,0,0,1,0,0,0,2,0,52,0,0,2041,74,2447,0,69,0,0,0,0,0,4,30,0,0,0,0,15,20,149,0,26,33,17,0,8,48,0,886,80,0,0,0,16,17,722,0,49,0,0,2729,0,0,0,0,34,20,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,15,0,0,0,6,0,0,0,0,0,7,0,57,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,1,0,0,0,0,0,0,13,0,0,0,3,0,0,0,12,2,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,52,10,10,10,0,0,0,144,0,166,0,0,0,48,62,335,574,157,0,0,0,0,1,0,4,0,0,0,0,0,0,1774,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,773,176,1677,50,0,0,1694,0,2612,0,7,0,490,116,0,0,0,0,0,0,0,0,0,1319,0,0,0,0,56,0,0,0,0,45,273,107,0,0,187,0,0,0,1,0,14913,0,0,9,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,1,0,0,0,0,51,51,0,0,16,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,78,1,1,1,0,42,0,0,0,0,181,124,72,0,85,9,0,0,0,0,0,343,40,0,0,0,0,0,0,0,0,0,0,0,18,0,1,39,0,0,0,0,0,0,0,0,0,0,0,22,0,0,920,1184,4 +0,0,0,6,0,11,2,0,24,0,2,0,0,0,2,0,17,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,11,6,0,0,11,0,0,0,1,0,0,3,0,0,0,0,1,528,0,0,0,0,0,1,0,0,0,0,0,1,0,0,131984,11,65,0,2,0,0,0,0,0,13,0,0,0,0,1,1,7,1516,0,0,2,0,0,0,0,0,11,0,5,0,0,2,0,25,0,0,0,0,11524,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1120,0,59,0,0,0,2,4,27,45,1123,0,0,0,0,1,0,0,0,0,0,0,0,0,3790,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,359,8,0,0,151,0,357,0,0,0,81,118,0,0,0,0,0,0,0,0,0,53,1,0,0,0,2,0,0,0,0,1,97,53,0,0,0,0,0,0,0,0,918,0,0,3584,0,0,1,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,13,230,0,3,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1424,130,4 +66,0,0,0,5,78,17,20,106,6,18,0,2,0,8,0,83,0,7,21,0,5,5,5,0,16,9,0,26,0,19,2,0,5,30,0,83,9,0,0,152,0,0,0,1,0,0,1,0,0,0,0,29,155,0,0,0,0,0,1,0,0,0,0,0,6,0,0,3933,78,691,0,52,0,0,0,0,0,10,15,0,0,0,0,15,22,696,0,20,30,5,0,1,37,0,509,55,1,0,0,4,5,333,0,5,0,0,2313,0,0,0,0,19,6,2,0,3,0,0,1,0,0,0,12,0,0,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,3,0,23,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,34,10,10,10,0,0,0,420,0,113,0,0,0,48,56,277,322,429,0,0,0,0,1,0,4,0,0,0,0,0,0,636,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,23,36,517,5,0,0,480,0,760,0,0,0,190,52,0,0,0,0,0,0,0,0,0,241,1,0,0,0,36,0,0,0,0,25,169,110,0,0,137,0,0,0,0,0,225,0,0,29,3,0,1,5,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,3,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,67,0,0,0,24,41,113,95,0,63,9,0,0,0,0,0,124,10,0,0,0,0,0,0,0,0,0,0,0,6,0,1,6,0,0,0,0,0,0,0,0,0,0,0,7,0,1,193,813,4 +0,0,0,5,0,37,24,0,49,3,23,0,0,7,4,0,841,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12352,37,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,803,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41839,37,1005,0,23,0,0,0,0,0,45,0,0,0,0,0,8,90,6809,0,0,1,0,0,0,0,0,360,25,2,0,0,2,0,929,0,0,89,0,4890,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1715,0,33,0,0,0,12,15,496,2063,1693,0,0,0,0,1,0,3,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,281,5,0,0,315,0,293,0,0,0,151,12,0,0,0,0,0,0,0,0,0,954,1,0,0,0,9,0,0,0,0,1,169,7,0,0,131,0,0,0,0,0,4823,1,0,1027,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,58,0,0,0,0,1,38,212,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2461,27,4 +185,0,0,36,19,106,230,59,453,45,77,0,0,2,88,0,491,0,24,62,0,104,2,7,0,56,22,0,33,0,9,2,0,18,45,0,118,400,159,0,965,0,0,0,1,0,0,5,0,0,0,0,57,399,0,0,0,0,0,1,0,3,0,12,0,94,0,0,4215,106,2991,0,88,0,0,0,0,0,112,33,0,0,0,0,13,27,602,0,59,45,18,0,11,161,0,1815,95,10,0,0,18,19,1235,0,64,0,0,3954,0,0,0,0,78,52,0,0,35,0,0,1,0,0,0,20,0,0,0,0,0,0,0,7,0,0,0,12,0,0,0,2,0,1,0,25,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,6,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,87,10,10,10,0,0,0,500,0,310,0,0,0,66,110,341,1641,543,0,0,0,0,1,0,5,0,0,0,0,0,0,4029,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,884,416,1853,66,0,0,1960,0,3999,0,8,0,687,209,0,0,0,0,0,0,0,0,0,1365,1,0,2,0,175,0,0,0,0,50,345,420,0,0,211,0,0,0,0,0,10278,0,0,170,3,0,1,8,0,0,0,0,13,0,0,0,4,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,3,30,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,111,1,1,1,0,104,0,0,0,0,97,163,218,0,113,9,0,0,0,0,0,705,12,0,0,0,0,0,0,1,0,0,0,0,13,0,4,53,0,0,0,0,0,0,0,0,117,0,0,191,0,5,2289,2159,4 +11,0,0,8,1,36,48,1,122,7,15,1,0,0,13,0,71,0,9,3,0,0,0,3,0,3,3,0,10,0,2,0,0,1,17,0,37,54,0,0,148,0,0,0,1,0,0,16,3,0,0,0,4,297,0,0,0,0,0,1,0,0,0,20,0,10,0,0,7457,36,342,0,15,0,0,0,0,0,59,0,0,0,0,5,5,29,1330,0,1,17,1,0,1,47,0,460,15,33,1,0,4,1,346,0,8,0,0,1262,0,0,0,0,33,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,8,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,1077,0,239,0,0,0,5,13,80,431,1019,0,0,0,0,1,0,0,0,0,0,0,0,0,2366,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,112,19,403,11,0,0,493,0,1615,0,1,0,274,41,0,0,0,0,0,0,0,0,0,279,1,0,9,0,6,0,0,0,0,6,148,222,0,0,34,0,0,0,0,0,591,0,0,1309,0,0,1,0,0,0,0,0,43,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,40,1,1,1,0,14,0,0,0,0,9,54,821,0,18,0,0,0,0,0,0,199,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,10,1728,89,4 +119,0,0,29,11,90,157,27,271,30,39,0,0,2,65,1,565,0,20,45,0,98,2,6,0,33,22,0,17,0,7,3,0,10,38,0,100,301,160,0,385,0,0,0,1,0,0,3,0,0,0,0,34,344,0,0,0,0,0,1,0,3,0,12,0,52,0,0,2469,90,1773,0,50,0,0,0,0,0,21,15,0,0,0,0,13,22,274,0,27,38,10,0,8,37,0,729,70,4,0,0,14,11,586,0,46,0,0,2066,0,0,0,0,47,15,1,0,32,0,0,1,0,0,0,20,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,285,0,235,0,0,0,42,73,344,590,294,0,0,0,0,1,0,6,0,0,0,0,0,0,2174,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,677,338,1444,49,0,0,1499,0,2933,0,6,0,503,96,0,0,0,0,0,0,0,0,0,1120,1,0,0,0,151,0,0,0,0,31,284,149,0,0,155,0,0,0,0,0,10413,0,0,157,3,0,1,6,0,0,0,0,6,0,0,0,1,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,55,55,0,0,10,1,0,0,0,0,3,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,95,1,1,1,0,61,0,0,0,0,121,138,326,0,73,9,0,0,0,0,0,316,10,0,0,0,0,0,0,1,0,0,0,0,11,0,3,36,0,0,0,0,0,0,0,0,117,0,0,210,0,3,1682,1623,4 +1,0,0,5,0,31,5,0,20,0,2,0,0,2,3,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,4,0,31,6,0,0,23,0,0,0,1,0,0,3,0,0,0,0,2,132,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1440,31,69,0,3,0,0,0,0,0,19,0,0,0,0,0,7,17,234,0,0,4,0,0,0,0,0,79,5,6,0,0,2,0,33,0,0,0,0,523,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,185,0,65,0,0,0,1,4,189,15,179,0,0,0,0,1,0,3,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,3,1,5,0,0,0,0,1,0,32,10,166,6,0,0,171,0,436,0,0,0,62,11,0,0,0,0,0,0,0,0,0,56,1,0,0,0,8,0,0,0,0,1,114,35,0,0,0,0,0,0,0,0,116,0,0,162,3,0,1,1,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,1,0,0,0,0,1,35,155,0,4,9,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,230,59,4 +1,0,0,3,0,28,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,141,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1115,28,57,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,190,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,669,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,20,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,148,0,61,0,0,0,1,4,182,14,146,0,0,0,0,1,0,3,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,2,1,15,0,0,0,0,1,0,32,10,147,3,0,0,177,0,389,0,0,0,72,8,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,110,55,0,0,0,0,0,0,0,0,96,0,0,81,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,227,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,187,63,4 +1,0,0,2,1,13,26,1,41,1,3,0,0,0,4,0,80,0,9,1,0,0,0,1,0,0,9,0,6,0,4,0,0,1,2,0,14,54,0,0,10,0,0,0,1,0,0,4,0,0,0,0,3,108,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1963,13,165,0,10,0,0,0,0,0,19,0,0,0,0,0,1,7,217,0,1,2,1,0,1,0,0,68,0,4,0,0,4,1,85,0,1,0,0,255,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,219,0,80,0,0,0,6,18,43,28,232,0,0,0,0,1,0,0,0,0,0,0,0,0,673,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,112,11,264,3,0,0,341,0,819,0,1,0,154,19,0,0,0,0,0,0,0,0,0,163,1,0,0,0,2,0,0,0,0,4,138,67,0,0,0,0,0,0,0,0,305,0,0,469,0,0,1,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,1,1,1,0,9,0,0,0,0,9,16,169,0,19,0,0,0,0,0,0,63,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,473,156,4 +114,0,0,0,5,83,17,20,109,6,18,0,2,0,8,0,88,0,7,19,0,5,5,9,0,16,9,0,28,0,24,2,0,5,33,0,88,23,0,0,175,0,0,0,1,0,0,1,0,0,0,0,34,150,0,0,0,0,0,1,0,0,0,0,0,6,0,0,4051,83,704,0,59,0,0,0,0,0,10,15,0,0,0,0,17,24,709,0,20,33,5,0,1,37,0,535,55,1,0,0,4,5,354,0,5,0,0,2385,0,0,0,0,30,12,2,0,3,0,0,1,0,0,0,12,0,0,0,0,0,0,0,11,0,0,0,9,0,0,0,0,0,3,0,39,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,44,10,10,10,0,0,0,431,0,119,0,0,0,58,66,288,348,439,0,0,0,0,1,0,4,0,0,0,0,0,0,773,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,23,36,546,5,0,0,496,0,730,0,0,0,200,75,0,0,0,0,0,0,0,0,0,249,1,0,0,0,38,0,0,0,0,30,174,111,0,0,137,0,0,0,0,0,287,0,0,34,3,0,1,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,3,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,1,1,1,0,79,0,0,0,24,41,121,98,0,70,9,0,0,0,0,0,135,10,0,0,0,0,0,0,0,0,0,0,0,6,0,1,6,0,0,0,0,0,0,0,0,0,0,0,6,0,1,204,853,4 +1,0,0,3,0,27,5,0,20,0,3,0,0,2,2,0,19,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,27,6,0,0,22,0,0,0,1,0,0,2,0,0,0,0,2,97,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1026,27,60,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,189,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,484,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,135,0,47,0,0,0,1,4,182,14,133,0,0,0,0,1,0,3,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,126,4,0,0,145,0,289,0,0,0,40,9,0,0,0,0,0,0,0,0,0,57,1,0,0,0,8,0,0,0,0,1,109,22,0,0,0,0,0,0,0,0,107,0,0,128,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,1,0,0,0,0,1,29,89,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,197,52,4 +0,0,0,5,0,36,25,0,49,3,24,0,0,7,4,0,820,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12499,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,698,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39883,36,987,0,23,0,0,0,0,0,46,0,0,0,0,0,8,90,6349,0,0,1,0,0,0,0,0,364,25,1,0,0,2,0,908,0,0,88,0,5200,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1471,0,32,0,0,0,12,15,493,2079,1449,0,0,0,0,1,0,3,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,277,5,0,0,308,0,300,0,0,0,147,13,0,0,0,0,0,0,0,0,0,935,1,0,0,0,9,0,0,0,0,1,164,6,0,0,135,0,0,0,0,0,4664,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2483,22,4 +0,0,0,0,0,8,4,0,12,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,123,8,52,0,1,0,0,0,0,0,9,0,0,0,0,0,1,1,42,0,0,0,0,0,2,8,0,79,15,0,0,0,4,0,46,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,36,0,31,0,0,0,0,3,21,58,50,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,47,0,33,0,0,0,13,32,0,0,0,0,0,0,0,0,0,41,0,0,0,0,2,0,0,0,0,0,91,16,0,0,30,0,0,0,0,0,32,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,4,4 +35,0,0,10,1,79,30,1,43,8,4,0,0,2,19,0,71,0,8,12,0,0,0,5,0,18,0,0,9,0,2,0,0,1,37,0,80,54,0,0,126,0,0,0,1,0,0,1,1,0,0,0,12,101,0,0,0,0,0,1,0,0,0,12,0,15,0,0,771,79,152,0,19,0,0,0,0,0,9,0,0,0,0,0,16,24,130,0,1,37,1,0,1,0,0,156,5,5,1,1,4,1,83,0,11,0,0,1248,0,0,0,0,14,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,3,0,0,0,12,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,10,10,10,10,0,0,0,129,0,107,0,0,0,12,15,256,78,134,0,0,0,0,1,0,3,0,0,0,0,0,0,498,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,138,39,440,13,0,0,453,0,1717,0,1,0,181,45,0,0,0,1,0,0,0,0,0,177,0,0,5,0,17,0,0,0,0,15,182,15,0,0,0,0,0,0,0,0,216,0,0,21,3,0,1,1,0,0,0,0,8,0,0,0,2,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,81,1,1,1,0,9,0,0,0,0,9,117,74,0,20,9,0,0,0,0,0,118,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,383,102,4 +9,0,0,0,0,33,8,0,22,3,3,0,3,0,5,0,25,0,6,4,0,0,0,5,0,8,3,0,3,0,2,0,0,0,5,0,33,12,0,0,75,0,0,0,1,0,0,0,0,0,0,0,2,70,0,0,0,0,0,1,0,0,0,0,0,3,0,0,664,33,61,0,3,0,0,0,0,0,3,0,0,0,0,0,8,13,95,0,0,5,0,0,2,5,0,119,0,0,0,0,6,0,97,0,2,0,0,14166,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,6,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,10,10,10,0,0,0,67,0,42,0,0,0,2,7,194,58,73,0,0,0,0,1,0,3,0,0,1,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,33,33,138,0,0,0,121,0,214,0,0,0,33,4,0,0,0,0,0,0,0,0,0,72,0,0,0,0,9,0,0,0,0,2,116,23,0,0,0,0,0,0,0,0,440,0,0,1,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,2,0,0,0,0,1,38,17,0,7,9,0,0,0,0,0,55,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56420,31,4 +0,0,0,10,0,17,4,0,25,1,7,0,0,0,4,0,19,0,7,1,0,0,0,1,0,0,0,0,5,0,8,0,0,0,5,0,17,6,0,0,36,0,0,0,1,0,0,1,0,0,0,0,7,75,1,0,0,0,0,1,0,0,0,2,0,7,0,0,16743,17,67,0,13,0,0,0,0,0,6,0,0,0,0,0,1,3,3285,0,0,5,0,0,1,9,0,107,15,1,0,0,2,0,66,0,1,0,0,481,0,0,0,0,5,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2366,0,60,0,0,0,14,12,38,148,2384,0,0,0,0,1,0,0,0,0,0,0,0,0,4415,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,7,108,14,0,0,96,0,225,0,0,0,30,6,0,0,0,0,0,0,0,0,0,66,1,0,0,0,2,0,0,0,0,5,101,20,0,0,31,0,0,0,0,0,1545,0,0,4626,0,0,1,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,19,0,0,0,8,1,22,12,0,13,0,0,0,0,0,0,60,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,3,0,0,0,0,0,0,0,0,0,0,0,0,1,2213,61,4 +0,0,0,5,0,36,25,0,47,3,24,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12377,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,723,0,0,0,0,0,1,0,0,0,0,0,2,0,0,45403,36,913,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,7497,0,0,1,0,0,0,0,0,366,25,1,0,0,2,0,836,0,0,92,0,4952,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,2269,0,34,0,0,0,12,15,496,2092,2247,0,0,0,0,1,0,3,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,282,5,0,0,308,0,304,0,0,0,146,12,0,0,0,0,0,0,0,0,0,861,1,0,0,0,9,0,0,0,0,1,164,6,0,0,137,0,0,0,0,0,4689,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2502,22,4 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,142,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,32,0,0,0,0,3,21,195,54,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,84,0,57,0,0,0,50,3,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,4,4 +5,0,0,11,2,38,24,8,81,37,18,0,0,2,47,2,77,0,7,9,0,2,2,6,4,18,21,0,17,0,2,0,0,2,9,0,40,300,25,0,276,0,0,0,0,0,0,0,0,0,0,0,12,152,0,0,0,0,0,1,0,0,0,0,0,49,0,0,1360,38,504,0,21,0,0,0,0,0,4,6,0,0,0,0,8,14,109,0,8,9,2,0,2,41,0,473,65,0,0,0,2,2,473,0,38,0,0,1572,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,10,10,10,0,0,0,107,0,45,0,0,0,18,77,176,408,112,0,0,0,0,0,0,2,0,0,0,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,36,63,313,14,0,0,209,0,443,0,0,0,73,38,0,0,0,0,0,0,0,0,0,258,0,0,0,0,23,0,0,0,0,8,128,72,0,0,151,0,0,0,0,0,5553,0,0,1,3,0,1,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,48,0,0,0,0,17,49,9,0,49,9,0,0,0,0,0,180,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,41,0,0,0,0,0,0,0,0,0,0,0,3,0,0,220,51,4 +2,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,59,0,0,0,0,0,1,0,0,0,0,0,1,0,0,7030,10,41,0,1,0,0,0,0,0,8,0,0,0,0,0,1,5,1898,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,13,0,0,0,0,193,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,815,0,35,0,0,0,0,3,26,8,825,0,0,0,0,1,0,0,0,0,0,0,0,0,1962,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,10,3,88,2,0,0,94,0,246,0,0,0,29,13,0,0,0,0,0,0,5,0,0,42,1,0,0,0,2,0,0,0,0,0,92,21,0,0,0,0,0,0,0,0,991,0,0,2266,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,154,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,824,658,4 +222,0,0,0,3,88,57,12,339,3,108,1,2,0,5,0,48,0,7,16,0,3,3,2,0,7,3,0,72,0,301,1,0,3,36,0,91,12,0,0,512,0,0,0,0,0,0,0,0,0,0,0,307,107,0,0,0,0,0,1,0,0,0,0,0,24,0,0,5935,88,1672,0,380,0,0,0,0,0,272,9,0,0,0,0,11,11,263,0,12,36,3,0,4,299,0,3638,410,0,0,0,6,3,1696,0,2,0,0,3040,0,0,0,0,85,94,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,79,0,0,0,78,0,0,0,0,0,1,0,13,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,73,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,244,0,199,0,0,0,608,613,176,2481,265,0,0,0,0,0,0,0,0,0,0,0,0,0,4041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,42,642,6,0,0,715,0,562,0,0,0,472,66,0,0,0,0,0,0,0,0,0,567,0,0,0,0,24,0,0,0,0,306,180,584,0,0,916,0,0,0,0,0,1327,0,0,302,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,88,1,1,1,0,677,0,0,0,592,25,127,36,0,384,0,0,0,0,0,0,641,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,1,0,0,0,0,0,0,0,0,0,0,5,0,0,1222,1979,4 +5,0,0,6,6,37,30,21,106,11,22,0,0,2,16,0,103,0,8,13,0,10,0,6,0,8,0,0,1,0,1,0,0,6,6,0,43,54,0,0,91,0,0,0,1,0,0,1,0,0,0,0,1,141,0,0,0,0,0,1,0,0,0,0,0,20,0,0,806,37,524,0,1,0,0,0,0,0,5,15,0,0,0,0,8,14,97,0,21,6,6,0,3,23,0,322,45,2,0,0,4,6,180,0,13,0,0,611,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,14,10,10,10,0,0,0,77,0,258,0,0,0,0,3,209,214,110,0,0,0,0,1,0,4,0,0,0,0,0,0,517,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,137,39,451,12,0,0,468,0,664,0,1,0,114,13,0,0,0,0,0,0,0,0,0,287,1,0,0,0,29,0,0,0,0,1,134,56,0,0,91,0,0,0,0,0,203,0,0,12,2,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,39,1,1,1,0,0,0,0,0,0,49,49,31,0,2,8,0,0,0,0,0,112,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,17,0,0,0,0,0,0,0,0,0,0,0,10,0,0,634,43,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,141,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,44,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,70,0,46,0,0,0,36,8,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,30,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,4,4 +5,0,0,2,16,24,21,33,251,12,42,1,1,0,13,0,159,0,7,20,0,19,31,3,0,3,6,0,5,0,3,0,0,16,4,630,54,190,558,0,178,0,0,0,0,0,0,0,0,0,0,0,5,233,0,0,0,0,0,1,0,0,0,0,0,12,0,0,568,24,1534,0,11,0,0,0,0,0,0,48,0,0,0,0,5,5,16,0,33,4,16,0,1,53,0,532,80,0,0,0,4,16,470,0,6,0,0,11410,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,16,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,44,15,15,15,0,0,15,137,15,45,0,0,0,7,16,161,346,92,0,0,0,0,0,0,0,0,0,0,1,1,0,539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,34,936,18,0,0,745,0,1318,0,0,0,181,20,0,0,0,0,0,0,0,0,0,495,0,0,0,0,70,3,0,0,0,6,125,122,0,0,218,0,0,0,0,0,2561,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,12,0,0,0,0,555,59,49,0,17,0,0,0,0,0,0,179,19,0,0,0,0,0,0,0,0,0,0,0,30,0,1,12,0,0,0,0,0,0,0,0,3,0,0,31,0,0,659,209,4 +12,0,0,4,0,17,2,0,23,3,3,0,0,0,6,0,91,0,6,1,0,0,0,1,0,0,45,0,15,0,16,0,0,0,5,0,17,77,0,0,22,0,58,0,1,0,0,58,0,0,0,0,15,305,0,0,0,0,0,1,0,0,0,0,0,7,0,0,8332,17,396,0,31,0,0,0,0,0,131,0,0,0,0,0,1,60,1427,0,0,5,0,0,0,0,0,139,0,64,0,0,2,0,319,0,4,0,0,536,0,3,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,1508,0,423,0,0,0,30,78,41,151,1914,0,0,0,0,1,0,0,0,0,0,0,0,0,3542,0,65,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,8,7,137,4,0,0,611,0,925,0,0,0,548,6,0,0,0,0,0,0,0,0,0,131,1,0,0,0,2,0,0,0,0,16,99,457,0,0,0,0,0,0,0,0,587,0,0,1171,0,0,1,0,1,0,0,0,160,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,148,0,0,0,0,16,16,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,30,0,0,0,0,1,22,111,0,76,0,0,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1293,343,4 +0,0,0,7,0,10,4,0,18,0,2,0,0,0,6,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,18,0,0,0,1,0,0,2,0,0,0,0,0,297,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2469,10,53,0,1,0,0,0,0,0,8,0,0,0,0,0,1,5,176,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,29,0,0,0,0,534,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,166,0,59,0,0,0,0,3,25,8,179,0,0,0,0,1,0,0,0,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,191,13,0,0,180,0,335,0,0,0,109,21,0,0,0,0,0,0,0,0,0,52,1,0,0,0,2,0,0,0,0,0,105,84,0,0,0,0,0,0,0,0,141,0,0,437,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,405,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,203,161,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,44,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,4 +142,0,0,22,15,130,209,33,434,43,73,1,1,2,89,1,1426,0,23,20,0,8,4,8,2,51,26,0,36,0,101,2,0,13,63,0,145,370,0,0,630,0,0,0,1,0,0,3,0,0,0,0,145,430,0,0,0,0,0,1,0,4,0,13,0,88,0,0,7569,130,2917,0,181,0,0,0,0,0,38,21,0,0,0,0,17,27,1533,0,33,63,13,0,12,139,0,2048,140,4,0,0,18,15,2035,0,68,1,0,4476,0,0,0,0,142,26,2,0,54,0,0,1,0,0,0,26,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,2,0,25,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,31,4,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,17,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,75,12,12,12,0,0,2,1068,2,365,0,0,2,247,275,445,1819,1082,0,0,0,0,1,0,6,0,0,0,0,0,0,2916,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,771,201,1828,43,0,0,1871,0,3185,0,7,0,653,126,0,0,0,0,0,0,0,0,0,2259,1,0,0,0,42,0,0,0,0,136,342,358,0,0,308,0,0,0,0,0,12023,0,0,420,3,0,1,10,0,0,0,0,6,0,0,0,1,0,0,0,0,0,43,0,0,1,0,0,0,0,0,0,0,0,74,74,0,0,11,1,0,0,0,0,3,116,1,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,142,1,1,1,0,272,0,0,0,0,264,208,227,1,207,9,0,0,0,0,0,620,13,0,0,0,0,0,0,0,0,0,0,0,16,0,1,53,0,0,0,0,0,0,0,0,10,0,0,30,0,3,1558,1713,4 +0,0,0,8,0,35,6,0,44,1,5,0,0,6,4,0,586,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,1,762,35,6,0,0,48,0,2,0,1,0,0,2,0,0,0,0,1,178,0,0,0,0,0,1,0,0,0,0,0,4,0,0,17703,35,651,0,3,0,0,0,0,0,14,0,0,0,0,0,8,25,3942,0,0,1,0,0,0,0,0,189,20,3,0,0,2,0,632,0,0,1,0,3015,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,581,0,42,0,0,0,1,4,347,1141,564,0,0,0,0,1,0,3,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,19,193,8,0,0,217,0,302,0,0,0,65,23,0,0,0,0,0,0,0,0,0,657,1,0,0,0,9,0,0,0,0,1,118,32,0,0,6,0,0,0,0,0,3223,1,0,777,6,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,5,0,0,0,0,1,36,121,0,4,12,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1788,387,4 +34,0,0,1,1,51,8,4,23,3,2,0,4,0,6,0,36,0,7,6,0,1,1,8,0,16,3,0,5,0,2,0,0,1,21,0,52,15,0,0,132,0,0,0,1,0,0,0,0,0,0,0,10,82,0,0,0,0,0,1,0,1,0,0,0,2,0,0,803,51,194,0,13,0,0,0,0,0,4,3,0,0,0,0,11,16,127,0,4,21,1,0,3,0,0,112,0,0,0,0,8,1,80,0,2,0,0,3932,0,0,0,0,7,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,1,0,7,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,112,0,96,0,0,0,11,16,214,91,112,0,0,0,0,1,0,3,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,35,65,241,4,0,0,212,0,384,0,0,0,90,30,0,0,0,0,0,0,0,0,0,86,0,0,0,0,16,0,0,0,0,9,143,6,0,0,0,0,0,0,0,0,124,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,10,0,0,0,0,9,73,37,0,17,9,0,0,0,0,0,115,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,290,693,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,59,8,22,0,1,0,0,0,0,0,2,0,0,0,0,0,1,1,22,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,24,0,35,0,0,0,0,3,21,7,39,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,29,0,0,0,34,0,63,0,0,0,4,7,0,0,0,0,0,0,0,0,0,22,0,0,0,0,1,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,14,4 +115,0,0,29,11,92,157,27,273,28,38,0,0,2,64,1,576,0,20,45,0,97,2,7,0,38,22,0,23,0,8,2,0,10,40,0,102,301,160,0,405,0,0,0,1,0,0,3,0,0,0,0,38,365,0,0,0,0,0,1,0,2,0,12,0,50,0,0,2447,92,1804,0,61,0,0,0,0,0,19,15,0,0,0,0,13,22,284,0,27,40,10,0,8,37,0,741,70,2,0,0,14,11,599,0,44,0,0,2277,0,0,0,0,45,16,1,0,27,0,0,1,0,0,0,23,0,0,0,0,0,0,0,7,0,0,0,9,0,0,0,0,0,1,0,21,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,28,2,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,10,10,10,0,0,0,279,0,240,0,0,0,46,79,345,585,290,0,0,0,0,1,0,6,0,0,0,0,0,0,2185,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,681,336,1452,49,0,0,1501,0,2957,0,6,0,506,176,0,0,0,0,0,0,0,0,0,1131,1,0,0,0,151,0,0,0,0,35,284,149,0,0,155,0,0,0,0,0,10437,0,0,103,3,0,1,6,0,0,0,0,5,0,0,0,1,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,57,57,0,0,13,1,0,0,0,0,3,18,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,97,1,1,1,0,65,0,0,0,0,123,142,328,0,84,9,0,0,0,0,0,328,10,0,0,0,0,0,0,1,0,0,0,0,11,0,5,34,0,0,0,0,0,0,0,0,117,0,0,247,0,3,1731,1766,4 +0,0,0,9,0,41,91,0,67,1,82,0,0,11,5,0,1116,0,6,1,0,0,0,8,0,11,0,0,51,0,1,0,0,0,1,11991,41,6,0,0,60,0,2,0,1,0,0,2,0,0,0,0,1,715,0,0,0,0,0,1,0,0,0,0,0,4,0,0,85064,41,1626,0,48,0,0,0,0,0,168,0,0,0,0,0,8,407,13492,0,0,1,0,0,0,0,0,904,40,3,0,0,2,0,1345,0,0,442,0,9601,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,3790,0,43,0,0,0,32,35,1696,6004,3724,0,0,0,0,1,0,3,0,0,0,0,0,0,9822,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,155,22,519,9,0,0,614,0,396,0,0,0,430,31,0,0,0,0,0,0,0,0,0,1378,1,0,0,0,9,0,0,0,0,1,314,35,0,0,573,0,0,0,0,0,8266,1,0,4148,85,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,85,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,143,0,0,0,0,1,42,317,0,49,14,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4694,372,4 +0,0,0,2,0,9,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1099,9,42,0,1,0,0,0,0,0,9,0,0,0,0,0,1,7,463,0,0,0,0,0,0,0,0,9,0,3,0,0,2,0,13,0,0,0,0,187,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,53,0,36,0,0,0,0,3,26,5,66,0,0,0,0,1,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,105,2,0,0,110,0,241,0,0,0,47,12,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,91,40,0,0,0,0,0,0,0,0,207,0,0,745,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,113,0,1,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,245,249,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,22,0,0,0,0,0,1,0,0,0,0,0,2,0,0,398,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,132,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,30,0,27,0,0,0,2,4,27,92,44,0,0,0,0,1,0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,49,3,0,0,47,0,145,0,0,0,5,13,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,24,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,263,11,4 +0,0,0,0,0,8,4,0,12,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,1,0,0,55,8,36,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,10,0,0,0,0,0,2,8,0,79,15,0,0,0,4,0,46,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,16,0,0,0,0,3,21,58,27,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,43,1,0,0,39,0,27,0,0,0,5,4,0,0,0,0,0,0,0,0,0,41,0,0,0,0,2,0,0,0,0,0,91,16,0,0,30,0,0,0,0,0,23,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,4 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 +16,0,0,4,0,23,2,0,20,0,3,0,0,0,3,0,61,0,6,2,0,0,0,11,0,0,24,0,8,0,9,0,0,0,11,0,23,18,0,0,13,0,0,0,1,0,0,22,0,0,0,0,8,67,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1825,23,241,0,17,0,0,0,0,0,45,0,0,0,0,22,12,57,524,0,0,11,0,0,0,0,0,89,0,21,0,0,2,0,171,0,1,0,0,574,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7,594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,445,0,326,0,0,0,16,51,73,1270,555,0,0,0,0,1,0,0,0,0,0,0,0,0,2539,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,10,4,153,4,0,0,141,0,212,0,0,0,73,605,0,0,0,0,0,0,0,0,0,95,1,0,0,0,13,0,0,0,0,9,105,8,0,0,0,0,9,0,16,8,872,0,0,184,0,0,1,0,0,0,0,0,23,0,12,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,24,0,0,0,0,1,34,76,0,41,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,21,4 +1,0,0,5,0,30,6,0,19,0,2,0,0,2,3,0,18,0,6,3,0,0,0,5,0,9,0,0,4,0,2,0,0,0,5,0,30,6,0,0,24,0,0,0,1,0,0,2,0,0,0,0,3,98,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1387,30,60,0,5,0,0,0,0,0,14,0,0,0,0,0,7,15,184,0,0,5,0,0,0,0,0,78,5,4,0,0,2,0,35,0,0,0,0,1024,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,147,0,51,0,0,0,3,4,188,17,144,0,0,0,0,1,0,3,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,151,6,0,0,175,0,304,0,0,0,74,14,0,0,0,0,0,0,0,0,0,56,1,0,0,0,8,0,0,0,0,1,112,48,0,0,0,0,0,0,0,0,110,0,0,127,3,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,5,0,0,0,0,1,35,99,0,6,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,188,62,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,20,0,0,0,0,0,1,0,0,0,0,0,2,0,0,404,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,25,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,137,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,45,3,0,0,47,0,152,0,0,0,5,2,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,14,4 +0,0,0,0,0,10,2,0,14,0,1,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,9,0,0,0,1,0,0,1,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,0,0,0,673,10,37,0,1,0,0,0,0,0,5,0,0,0,1,0,1,3,28,0,0,1,0,0,0,0,0,6,0,2,0,0,2,0,15,0,0,0,0,373,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,23,0,0,0,0,3,25,509,54,0,0,0,0,1,0,1,0,0,0,0,0,0,1116,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,86,0,0,0,84,0,247,0,0,0,22,3,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,92,12,0,0,0,0,249,0,0,0,28,0,0,20,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,119,0,1,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,23,4 +23,0,0,0,1,33,46,1,50,2,4,0,1,0,5,0,63,0,9,7,0,0,0,0,0,3,0,0,2,0,3,0,0,1,7,0,34,60,0,0,86,0,0,0,0,0,0,0,0,0,0,0,5,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,342,33,132,0,8,0,0,0,0,0,1,0,0,0,0,0,6,6,26,0,1,7,1,0,2,22,0,226,0,0,0,0,6,1,140,0,1,0,0,637,0,0,0,0,7,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,51,0,54,0,0,0,7,9,63,142,74,0,0,0,0,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,25,284,1,0,0,297,0,857,0,1,0,82,16,0,0,0,0,0,0,0,0,0,178,0,0,0,0,7,0,0,0,0,5,135,53,0,0,0,0,0,0,0,0,161,0,0,2,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,32,1,1,1,0,6,0,0,0,0,9,41,8,0,8,0,0,0,0,0,0,115,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,686,111,4 +1,0,0,3,0,28,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,121,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1168,28,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,195,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,465,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,145,0,48,0,0,0,1,4,182,14,143,0,0,0,0,1,0,3,0,0,0,0,0,0,327,0,0,0,0,0,0,0,0,0,0,0,0,2,1,10,0,0,0,0,1,0,32,10,135,3,0,0,160,0,316,0,0,0,54,9,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,110,37,0,0,0,0,0,0,0,0,112,0,0,122,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,138,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,185,57,4 +71,0,0,1,1,53,25,4,118,5,22,0,4,0,9,0,38,0,7,6,0,1,1,5,0,29,9,0,5,0,3,0,0,1,18,0,54,15,0,0,474,0,0,0,1,0,0,0,0,0,0,0,24,99,0,0,0,0,0,1,0,1,0,0,0,24,0,0,1297,53,364,0,27,0,0,0,0,0,16,3,0,0,0,0,8,13,262,0,4,18,1,0,4,88,0,798,15,0,0,0,8,1,544,0,6,0,0,1289,0,0,0,0,34,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,35,10,10,10,0,0,0,217,0,109,0,0,0,25,57,218,781,203,0,0,0,0,1,0,4,0,0,0,0,0,0,755,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,90,270,3,0,0,242,0,321,0,0,0,105,19,0,0,0,0,0,0,0,0,0,223,0,0,0,0,13,0,0,0,0,23,138,230,0,0,30,0,0,0,0,0,736,0,0,18,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,31,0,0,0,0,9,72,42,0,37,9,0,0,0,0,0,328,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,254,1321,4 +0,0,0,8,0,34,8,0,42,0,6,0,0,7,4,0,571,0,6,1,0,0,0,8,0,10,0,0,5,0,1,0,0,0,1,898,34,6,0,0,50,0,2,0,1,0,0,2,0,0,0,0,1,163,0,0,0,0,0,1,0,0,0,0,0,4,0,0,20174,34,647,0,3,0,0,0,0,0,18,0,0,0,0,0,8,25,4446,0,0,1,0,0,0,0,0,212,25,3,0,0,2,0,623,0,0,4,0,3084,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,763,0,41,0,0,0,1,4,267,1206,750,0,0,0,0,1,0,3,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,106,16,190,8,0,0,198,0,300,0,0,0,50,7,0,0,0,0,0,0,0,0,0,644,1,0,0,0,9,0,0,0,0,0,117,7,0,0,12,0,0,0,0,0,3386,1,0,812,7,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,7,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,5,0,0,0,0,1,35,36,0,4,12,0,1,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1953,381,4 +0,0,0,11,0,45,19,0,72,0,17,0,0,2,7,0,625,0,6,3,0,0,0,6,0,10,3,0,6,0,5,1,0,0,11,945,45,9,0,0,102,0,0,0,1,0,0,6,0,0,0,0,6,230,0,0,0,0,0,1,0,0,0,0,0,15,0,0,24697,45,787,0,9,0,0,0,0,0,33,0,0,0,1,0,8,23,4323,0,0,11,0,0,3,38,0,424,65,10,0,0,2,0,830,0,3,0,0,2210,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,3290,0,98,0,0,0,10,14,267,586,3282,0,0,0,0,1,0,4,0,0,0,0,0,0,607,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,15,437,14,0,0,280,0,504,0,0,0,132,16,0,0,0,0,0,0,0,0,0,748,1,0,0,0,9,0,0,0,0,4,130,100,0,0,139,0,0,0,0,0,1963,1,0,802,8,0,1,1,0,0,0,0,13,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,8,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,14,0,0,0,0,1,56,253,0,13,12,0,0,0,0,0,135,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1344,302,4 +22,0,0,0,0,35,24,0,36,2,5,0,2,0,4,0,20,0,6,6,0,0,0,6,0,10,3,0,6,0,2,1,0,0,6,0,35,9,0,0,93,0,0,0,1,0,0,0,0,0,0,0,5,75,0,0,0,0,0,1,0,0,0,0,0,3,0,0,701,35,116,0,9,0,0,0,0,0,13,0,0,0,0,0,11,16,134,0,0,6,0,0,2,25,0,299,15,0,0,0,4,0,171,0,2,0,0,825,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,6,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,96,0,48,0,0,0,6,12,197,169,100,0,0,0,0,1,0,3,0,0,0,0,0,0,376,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,15,26,136,0,0,0,149,0,248,0,0,0,61,32,0,0,0,0,0,0,0,0,0,97,0,0,0,0,12,0,0,0,0,5,125,53,0,0,30,0,0,0,0,0,93,0,0,3,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,11,0,0,0,0,1,41,22,0,13,9,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,35,4 +0,0,0,0,0,8,40,0,48,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,146,8,130,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,52,0,0,0,0,0,2,44,0,331,15,0,0,0,4,0,226,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,203,55,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,86,0,59,0,0,0,52,5,0,0,0,0,0,0,0,0,0,113,0,0,0,0,2,0,0,0,0,0,91,88,0,0,30,0,0,0,0,0,38,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,104,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,4,4 +0,0,0,5,0,32,6,0,34,1,5,0,0,6,4,0,508,0,6,1,0,0,0,8,0,10,0,0,4,0,1,0,0,0,1,898,32,6,0,0,41,0,1,0,1,0,0,1,0,0,0,0,1,155,0,0,0,0,0,1,0,0,0,0,0,2,0,0,20580,32,563,0,2,0,0,0,0,0,12,0,0,0,0,0,8,18,4461,0,0,1,0,0,0,0,0,186,20,2,0,0,2,0,549,0,0,1,0,3045,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,966,0,31,0,0,0,0,3,244,1154,955,0,0,0,0,1,0,3,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,84,16,173,5,0,0,186,0,196,0,0,0,47,7,0,0,0,0,0,0,0,0,0,569,1,0,0,0,9,0,0,0,0,0,115,8,0,0,6,0,0,0,0,0,3160,1,0,766,6,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,1,0,0,0,0,1,33,135,0,3,12,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1807,26,4 +0,0,0,6,0,12,2,0,25,0,2,0,0,0,2,0,21,0,6,2,0,0,0,1,2,0,0,0,6,0,1,0,0,0,4,0,12,6,18,0,6,0,0,0,1,0,0,3,0,0,0,0,3,117,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1439,12,76,0,7,0,0,0,0,0,13,0,0,0,0,0,1,6,197,0,0,4,0,0,0,0,0,29,0,5,0,0,2,0,32,0,0,0,0,409,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,162,0,63,0,0,0,6,172,27,44,160,0,0,0,0,1,0,0,0,0,0,0,0,0,399,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,161,8,0,0,153,0,300,0,0,0,82,19,0,0,0,0,0,0,0,0,0,58,1,0,0,0,5,0,0,0,0,1,99,50,0,0,0,0,0,0,0,0,462,0,0,215,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,9,0,0,0,0,1,16,270,0,7,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,195,57,4 +376,0,0,36,28,113,249,64,609,47,96,0,0,2,91,1,774,0,24,82,0,121,2,7,0,61,22,0,35,0,8,3,0,28,50,0,135,400,160,0,1035,0,0,0,1,0,0,5,1,0,0,0,62,462,0,0,0,0,0,1,0,3,0,12,0,107,0,0,4432,113,4061,0,97,0,0,0,0,0,109,60,0,0,0,0,14,28,641,0,64,50,28,0,11,211,0,2218,95,10,0,0,18,28,1626,0,67,0,0,4088,0,0,0,0,101,86,0,0,38,0,0,1,0,0,0,22,0,0,0,0,0,0,0,27,0,0,0,17,0,0,0,2,0,7,0,75,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,3,0,0,0,0,0,1,14,0,0,0,0,0,0,0,19,6,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,107,10,10,10,0,0,0,552,0,402,0,0,0,71,118,431,1995,576,0,0,0,0,1,0,5,0,0,0,0,0,0,4962,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,887,419,2202,75,0,0,2319,0,4190,0,8,0,788,893,0,0,0,0,0,0,0,0,0,1846,1,0,2,0,212,0,0,0,0,60,349,550,0,0,211,0,0,0,0,0,10879,0,0,165,3,0,1,9,0,0,0,0,13,0,0,0,4,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,65,65,0,0,15,1,0,0,0,0,3,34,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,118,1,1,1,0,114,0,0,0,0,233,185,223,0,120,9,0,0,0,0,0,863,32,0,0,0,0,0,0,1,0,0,0,0,23,0,4,55,0,0,0,0,0,0,0,0,117,0,0,190,0,5,2629,2440,4 +0,0,0,10,0,39,27,0,61,0,28,0,0,10,5,0,769,0,6,1,0,0,0,8,0,10,0,0,21,0,1,0,0,0,1,5257,39,6,0,0,70,0,2,0,1,0,0,2,0,0,0,0,1,379,0,0,0,0,0,1,0,0,0,0,0,6,0,0,33141,39,971,0,19,0,0,0,0,0,53,0,0,0,0,0,8,151,6972,0,0,1,0,0,1,8,0,455,50,3,0,0,2,0,914,0,0,66,0,4676,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,1285,0,42,0,0,0,10,13,882,2202,1244,0,0,0,0,1,0,3,0,0,0,0,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,141,16,275,10,0,0,323,0,344,0,0,0,157,14,0,0,0,0,0,0,0,0,0,906,1,0,0,0,9,0,0,0,0,1,158,43,0,0,148,0,0,0,0,0,5037,1,0,826,25,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,25,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,48,0,0,0,0,1,40,138,0,20,12,0,0,0,0,0,122,1,0,0,0,0,0,0,0,0,0,0,0,2,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2804,259,4 +1,0,0,3,0,28,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,28,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,128,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1077,28,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,178,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,461,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,137,0,49,0,0,0,1,4,182,14,135,0,0,0,0,1,0,3,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,1,0,32,10,136,3,0,0,152,0,309,0,0,0,46,8,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,110,29,0,0,0,0,0,0,0,0,93,0,0,78,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,1,0,0,0,0,1,30,107,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,172,51,4 +0,0,0,0,0,8,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,8,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,34,0,0,0,0,3,21,191,55,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,83,0,57,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,91,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,4,4 +30,0,0,0,0,16,13,0,49,0,12,0,2,0,3,0,14,0,7,1,0,0,0,1,0,5,0,0,0,0,1,0,0,0,5,0,16,15,0,0,103,0,0,0,0,0,0,0,0,0,0,0,5,47,0,0,0,0,0,1,0,0,0,0,0,8,0,0,483,16,125,0,6,0,0,0,0,0,16,0,0,0,0,0,1,1,137,0,0,5,0,0,3,43,0,350,15,0,0,0,6,0,227,0,0,0,0,220,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,119,0,90,0,0,0,5,7,36,321,136,0,0,0,0,0,0,0,0,0,0,0,0,0,476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,25,89,1,0,0,95,0,156,0,0,0,50,4,0,0,0,0,0,0,0,0,0,100,0,0,0,0,2,0,0,0,0,5,103,109,0,0,30,0,0,0,0,0,634,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,0,0,0,0,0,1,21,5,0,6,0,0,0,0,0,0,205,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,180,4 +0,0,0,5,0,35,25,0,46,3,24,0,0,7,4,0,694,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12511,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,693,0,0,0,0,0,1,0,0,0,0,0,2,0,0,41353,35,858,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6843,0,0,1,0,0,0,0,0,366,25,1,0,0,2,0,782,0,0,92,0,4696,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,1645,0,32,0,0,0,12,15,490,2092,1624,0,0,0,0,1,0,3,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,277,5,0,0,307,0,302,0,0,0,147,12,0,0,0,0,0,0,0,0,0,806,1,0,0,0,9,0,0,0,0,1,164,6,0,0,137,0,0,0,0,0,4550,1,0,1000,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2468,22,4 +2,0,0,3,0,13,3,0,6,0,2,0,0,0,3,0,9,0,6,1,0,0,0,1,0,0,0,0,16,0,1,0,0,0,3,0,13,6,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,2,0,0,13143,13,38,0,17,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,3,0,0,0,0,0,21,0,0,0,0,2,0,27,0,0,0,0,17806,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,27,0,24,0,0,0,0,3,31,4998,38,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,6909,3,0,0,6697,0,146,0,0,0,6657,113,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,1,6745,1,0,0,0,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,16,0,0,0,0,1,16,3,0,17,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,67,4 +0,0,0,10,0,17,4,0,25,1,7,0,0,0,4,0,19,0,7,1,0,0,0,1,0,0,0,0,5,0,9,0,0,0,5,0,17,6,0,0,36,0,0,0,1,0,0,1,0,0,0,0,8,77,1,0,0,0,0,1,0,0,0,2,0,7,0,0,18887,17,68,0,14,0,0,0,0,0,6,0,0,0,0,0,1,3,3741,0,0,5,0,0,1,9,0,111,15,1,0,0,2,0,67,0,1,0,0,554,0,0,0,0,2,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2649,0,53,0,0,0,16,14,38,150,2666,0,0,0,0,1,0,0,0,0,0,0,0,0,4825,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,7,114,14,0,0,96,0,234,0,0,0,30,7,0,0,0,0,0,0,0,0,0,66,1,0,0,0,2,0,0,0,0,6,101,20,0,0,31,0,0,0,0,0,1689,0,0,5203,0,0,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,21,0,0,0,10,1,22,12,0,14,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,2,0,0,0,0,0,0,0,0,0,0,0,0,1,2516,60,4 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,0,0,0,52,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,49,0,0,0,0,3,21,7,25,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,30,0,0,0,34,0,67,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,3,4 +5,0,0,6,6,37,30,21,106,11,22,0,0,2,16,0,103,0,8,14,0,10,0,5,0,8,0,0,1,0,1,0,0,6,6,0,43,54,0,0,91,0,0,0,1,0,0,1,0,0,0,0,1,140,0,0,0,0,0,1,0,0,0,0,0,20,0,0,838,37,524,0,1,0,0,0,0,0,5,15,0,0,0,0,8,14,104,0,21,6,6,0,3,23,0,322,45,1,0,0,4,6,180,0,13,0,0,646,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,14,10,10,10,0,0,0,76,0,259,0,0,0,0,3,209,214,109,0,0,0,0,1,0,4,0,0,0,0,0,0,520,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,137,39,453,12,0,0,468,0,662,0,1,0,114,13,0,0,0,0,0,0,0,0,0,287,1,0,0,0,29,0,0,0,0,1,134,56,0,0,91,0,0,0,0,0,209,0,0,8,2,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,39,1,1,1,0,0,0,0,0,0,49,49,31,0,2,8,0,0,0,0,0,112,7,0,0,0,0,0,0,0,0,0,0,0,7,0,1,17,0,0,0,0,0,0,0,0,0,0,0,11,0,0,639,43,4 +0,0,0,19,1,15,2,0,19,3,6,0,0,0,17,0,24,0,6,1,0,0,0,1,0,0,0,0,7,0,1,0,0,0,5,0,15,51,0,0,68,0,0,0,1,0,0,1,0,0,0,0,0,62,0,0,0,0,0,1,0,0,0,0,0,5,0,0,133938,15,77,0,8,0,0,0,0,0,6,0,0,0,0,0,1,4,30923,0,0,5,0,0,0,0,0,15,0,2,0,0,2,1,77,0,4,1,0,351,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,16182,0,109,0,0,0,0,3,34,62,16223,0,0,0,0,1,0,0,0,0,0,0,0,0,19562,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,13,179,22,0,0,116,0,392,0,0,0,51,24,0,0,0,0,0,0,0,0,0,74,1,0,0,0,2,0,0,0,0,0,99,21,0,0,0,0,1,0,0,0,16920,0,0,49534,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,7,0,0,0,0,1,20,60,0,8,0,0,1,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,19460,116,4 +42,0,0,1,1,54,8,4,30,2,6,0,3,0,5,0,36,0,7,10,0,1,1,6,0,15,3,0,5,0,3,1,0,1,21,0,55,12,0,0,138,0,0,0,1,0,0,0,0,0,0,0,11,93,0,0,0,0,0,1,0,1,0,0,0,3,0,0,901,54,202,0,14,0,0,0,0,0,6,3,0,0,0,0,13,18,139,0,4,21,1,0,3,8,0,190,15,0,0,0,6,1,116,0,2,0,0,1116,0,0,0,0,9,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,10,10,10,0,0,0,118,0,76,0,0,0,13,19,221,156,120,0,0,0,0,1,0,3,0,0,0,0,0,0,389,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,29,52,254,2,0,0,219,0,376,0,0,0,91,31,0,0,0,0,0,0,0,0,0,95,0,0,0,0,18,0,0,0,0,10,145,19,0,0,30,0,0,0,0,0,118,0,0,4,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,12,0,0,0,0,9,76,37,0,18,9,0,0,0,0,0,132,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,144,751,4 +3,0,0,5,6,13,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,19,54,3,0,96,0,0,0,1,0,0,2,0,0,0,0,1,98,0,0,0,0,0,1,0,0,0,0,0,25,0,0,499,13,536,0,3,0,0,0,0,0,5,15,0,0,0,0,2,6,46,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,318,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,59,0,47,0,0,0,2,10,44,224,97,0,0,0,0,1,0,1,0,0,0,0,0,0,435,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,117,36,392,11,0,0,401,0,602,0,1,0,103,13,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,110,74,0,0,57,0,0,0,0,0,541,0,0,21,0,0,1,0,0,0,0,0,4,0,2,0,2,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,6,0,0,0,0,49,22,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,11,0,0,220,37,4 +55,0,0,0,1,56,13,4,57,3,13,0,4,0,6,0,38,0,7,9,0,1,1,7,0,16,3,0,6,0,4,1,0,1,22,0,57,15,0,0,188,0,0,0,1,0,0,0,0,0,0,0,13,94,0,0,0,0,0,1,0,1,0,0,0,7,0,0,950,56,261,0,17,0,0,0,0,0,10,3,0,0,0,0,13,18,136,0,4,22,1,0,5,31,0,382,30,0,0,0,8,1,233,0,2,0,0,2426,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,140,0,112,0,0,0,16,23,221,327,129,0,0,0,0,1,0,3,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,67,286,3,0,0,237,0,415,0,0,0,103,32,0,0,0,0,0,0,0,0,0,138,0,0,0,0,18,0,0,0,0,12,147,73,0,0,60,0,0,0,0,0,690,0,0,6,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,17,0,0,0,0,9,79,38,0,21,9,0,0,0,0,0,194,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,309,722,4 +25,0,0,1,2,12,86,2,192,4,33,0,12,0,6,0,126,0,11,2,0,0,0,1,0,1,0,0,1,0,3,0,0,2,1,0,14,1692,0,0,318,0,0,0,0,0,0,0,0,0,0,0,3,97,0,0,0,0,0,1,0,0,0,0,0,25,0,0,317,12,365,0,5,0,0,0,0,0,0,0,0,0,0,0,2,2,47,0,2,1,2,0,16,126,0,1074,30,0,0,0,30,2,674,0,2,0,0,217,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,51,0,46,0,0,0,5,8,39,873,76,0,0,0,0,0,0,0,0,0,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,169,418,3,0,0,433,0,1237,0,2,0,111,13,0,0,0,0,0,0,0,0,0,466,0,0,0,0,3,0,0,0,0,4,129,315,0,0,68,0,0,0,0,0,2425,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,13,1,1,1,0,5,0,0,0,0,17,15,3,0,5,0,0,0,0,0,0,454,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,375,989,4 +0,0,0,5,0,35,24,0,48,3,23,0,0,7,4,0,765,0,6,1,0,0,0,8,0,10,0,0,26,0,1,0,0,0,1,12367,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,684,0,0,0,0,0,1,0,0,0,0,0,2,0,0,44459,35,929,0,24,0,0,0,0,0,45,0,0,0,0,0,8,94,7463,0,0,1,0,0,0,0,0,361,25,2,0,0,2,0,853,0,0,87,0,4527,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,12,12,12,0,0,0,2158,0,32,0,0,0,13,16,490,2063,2137,0,0,0,0,1,0,3,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,282,5,0,0,306,0,294,0,0,0,146,13,0,0,0,0,0,0,0,0,0,877,1,0,0,0,9,0,0,0,0,1,163,7,0,0,130,0,0,0,0,0,4737,1,0,1024,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,62,0,0,0,0,1,36,212,0,25,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2493,28,4 +3,0,0,5,6,13,29,21,111,17,19,0,0,0,20,0,109,0,8,12,0,10,0,2,0,1,3,0,2,0,1,0,0,6,3,0,19,54,2,0,96,0,0,0,1,0,0,2,0,0,0,0,1,100,0,0,0,0,0,1,0,0,0,0,0,25,0,0,462,13,537,0,3,0,0,0,0,0,5,15,0,0,0,0,2,7,41,0,21,3,6,0,2,30,0,299,25,2,0,0,4,6,230,0,17,0,0,302,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,58,0,45,0,0,0,2,10,44,223,96,0,0,0,0,1,0,1,0,0,0,0,0,0,426,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,116,36,383,11,0,0,401,0,609,0,1,0,103,8,0,0,0,0,0,0,0,0,0,296,1,0,0,0,24,0,0,0,0,1,110,74,0,0,57,0,0,0,0,0,536,0,0,13,0,0,1,0,0,0,0,0,2,0,2,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,6,0,0,0,0,49,22,4,0,7,0,0,0,0,0,0,140,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,19,0,0,0,0,0,0,0,0,0,0,0,10,0,0,214,36,4 +20,0,0,0,0,26,4,0,8,3,1,0,2,0,5,0,21,0,7,5,0,0,0,1,0,7,3,0,3,0,2,1,0,0,13,0,26,12,0,0,70,0,0,0,0,0,0,0,0,0,0,0,9,33,0,0,0,0,0,1,0,0,0,0,0,2,0,0,221,26,51,0,13,0,0,0,0,0,0,0,0,0,0,0,5,5,26,0,0,13,0,0,2,0,0,42,0,0,0,0,6,0,52,0,2,0,0,5359,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,1,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,51,0,76,0,0,0,11,16,49,71,62,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,38,123,2,0,0,102,0,227,0,0,0,51,15,0,0,0,0,0,0,0,0,0,48,0,0,0,0,6,0,0,0,0,9,117,2,0,0,0,0,0,0,0,0,50,0,0,3,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,10,0,0,0,0,1,39,13,0,16,0,0,0,0,0,0,79,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,256,4 +24,0,0,2,3,16,74,3,75,4,5,0,0,0,8,0,163,0,13,2,0,0,0,1,1,1,0,0,4,0,3,0,0,3,1,0,19,1608,3,0,23,0,0,0,0,0,0,0,0,0,0,0,4,158,0,0,0,0,0,1,0,0,0,0,0,1,0,0,12488,16,572,0,8,0,0,0,0,0,171,0,0,0,0,0,2,2,365,0,3,1,3,0,3,0,0,139,0,0,0,0,8,3,51,0,3,0,0,5595,0,0,0,0,4,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,9,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,212,0,32,0,0,0,7,39,57,264,225,0,0,0,0,0,0,0,0,0,0,0,0,0,2817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,46,634,5,0,0,702,0,1190,0,3,0,292,15,0,0,0,0,0,0,0,0,0,338,0,0,0,0,4,0,0,0,0,4,146,1,0,0,0,0,0,0,0,0,2025,0,0,2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,18,1,1,1,0,9,0,0,0,0,25,20,4,0,8,0,0,0,0,0,0,78,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,904,950,4 +0,0,0,0,0,8,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,142,8,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,32,0,0,0,0,3,21,138,54,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,42,1,0,0,70,0,46,0,0,0,36,3,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,91,56,0,0,30,0,0,0,0,0,35,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,4,4 +198,0,0,26,17,75,193,26,346,33,45,0,0,2,74,1,645,0,22,31,0,18,2,5,0,44,16,0,27,0,5,2,0,17,33,0,92,540,0,0,370,0,0,0,1,0,0,0,0,0,0,0,43,334,0,0,0,0,0,1,0,0,0,2,0,52,0,0,2076,75,2445,0,69,0,0,0,0,0,4,30,0,0,0,0,15,20,154,0,26,33,17,0,8,48,0,886,80,0,0,0,16,17,725,0,49,0,0,2555,0,0,0,0,35,19,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,17,0,0,0,5,0,0,0,0,0,7,0,60,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,1,0,0,0,0,0,0,12,0,0,0,3,0,0,0,12,2,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,52,10,10,10,0,0,0,147,0,165,0,0,0,48,63,343,575,158,0,0,0,0,1,0,4,0,0,0,0,0,0,1804,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,773,176,1658,50,0,0,1698,0,2596,0,7,0,491,138,0,0,0,0,0,0,0,0,0,1328,0,0,0,0,56,0,0,0,0,46,275,107,0,0,187,0,0,0,1,0,14891,0,0,7,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,1,0,0,0,0,53,53,0,0,10,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,81,1,1,1,0,44,0,0,0,0,185,125,72,0,85,9,0,0,0,0,0,343,40,0,0,0,0,0,0,0,0,0,0,0,18,0,1,39,0,0,0,0,0,0,0,0,0,0,0,22,0,0,934,1183,4 +0,0,0,2,0,10,2,0,14,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,8250,10,40,0,1,0,0,0,0,0,8,0,0,0,0,0,1,5,1970,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,13,0,0,0,0,594,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,76,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1213,0,149,0,0,0,0,3,26,5,1255,0,0,0,0,1,0,0,0,0,0,0,0,0,3152,0,0,0,0,0,0,0,0,0,0,0,0,2,0,76,0,0,0,0,0,0,8,3,92,2,0,0,117,0,234,0,0,0,52,9,0,0,0,0,0,0,162,0,0,40,1,0,0,0,2,0,0,0,0,0,92,44,0,0,0,0,0,0,0,0,572,0,0,2387,0,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,156,0,0,0,0,305,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,89,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,150,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,79,0,0,0,0,0,0,0,1,1195,232,4 +151,0,0,29,10,85,187,22,420,30,72,0,0,2,64,0,375,0,20,15,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,95,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,347,0,0,0,0,0,1,0,3,0,11,0,82,0,0,3122,85,1512,0,39,0,0,0,0,0,71,12,0,0,0,0,13,22,407,0,22,33,9,0,10,193,0,1895,100,3,0,0,14,10,1279,0,46,0,0,2980,0,0,0,0,53,40,0,0,29,0,0,1,0,0,0,19,0,0,0,0,0,0,0,8,0,0,0,7,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,37,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,330,0,238,0,0,0,36,76,300,1617,359,0,0,0,0,1,0,5,0,0,0,0,0,0,2726,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1460,48,0,0,1557,0,2900,0,6,0,563,63,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,29,0,0,0,0,22,280,538,0,0,215,0,0,0,0,0,9935,0,0,188,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,77,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1624,1649,4 +151,0,0,29,10,85,187,22,421,30,72,0,0,2,64,0,374,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,95,301,0,0,681,0,0,0,1,0,0,3,0,0,0,0,28,341,0,0,0,0,0,1,0,3,0,12,0,82,0,0,3051,85,1511,0,39,0,0,0,0,0,70,12,0,0,0,0,13,22,393,0,22,33,9,0,10,193,0,1895,100,3,0,0,14,10,1279,0,46,0,0,2424,0,0,0,0,52,40,0,0,30,0,0,1,0,0,0,19,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,325,0,235,0,0,0,36,76,300,1617,355,0,0,0,0,1,0,5,0,0,0,0,0,0,2821,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,660,146,1408,48,0,0,1555,0,2906,0,6,0,562,57,0,0,0,0,0,0,0,0,0,1140,1,0,0,0,30,0,0,0,0,22,279,538,0,0,215,0,0,0,0,0,9926,0,0,176,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,92,1,1,1,0,77,0,0,0,0,81,128,309,0,63,9,0,0,0,0,0,711,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,14,0,3,1621,1656,4 +16,0,0,10,0,17,4,0,25,1,7,0,0,0,7,0,22,0,7,1,0,0,0,1,0,0,0,0,5,0,11,0,0,0,5,0,17,68,0,0,40,0,0,0,1,0,0,2,0,0,0,0,10,97,1,0,0,0,0,1,0,0,0,2,0,9,0,0,120658,17,84,0,16,0,0,0,0,0,11,0,0,0,0,0,1,4,56860,0,0,5,0,0,1,9,0,97,15,3,0,0,2,0,90,0,3,0,0,367,0,0,0,0,9,0,4,0,3,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,11,0,0,0,0,0,0,0,0,2,5,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,56315,0,70,0,0,0,20,13,43,201,56340,0,0,0,0,1,0,0,0,0,0,0,0,0,3080,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,17,9,134,14,0,0,205,0,492,0,0,0,139,44,0,0,0,0,0,0,0,0,0,72,1,0,0,0,2,0,0,0,0,2,101,126,0,0,31,0,0,0,0,0,1220,0,0,3107,0,0,1,2,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,15,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,25,0,0,0,4,1,22,266,0,16,0,0,0,0,0,0,71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,3,0,0,0,0,0,0,0,0,0,0,0,0,2,1482,186,4 +1,0,0,7,0,12,2,0,11,0,3,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,2,0,3,0,0,0,1,0,12,6,0,0,8,0,0,0,1,0,0,2,0,0,0,0,2,91,0,0,0,0,0,1,0,0,0,0,0,1,0,0,19633,12,42,0,5,0,0,0,0,0,8,0,0,0,0,1,1,4,292,0,0,1,0,0,0,0,0,10,0,4,0,0,2,0,14,0,0,0,0,6339,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,213,0,33,0,0,0,4,5,30,6146,215,0,0,0,0,1,0,0,0,0,0,0,0,0,379,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,5,93,10,0,0,105,0,219,0,0,0,41,8,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,1,94,31,0,0,0,0,0,0,0,0,111,0,0,295,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,6,0,0,0,0,1,13,186,0,5,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,209,12,4 +18,0,0,10,0,19,6,0,28,0,7,0,0,0,7,0,22,0,7,1,0,0,0,1,0,0,0,0,6,0,12,0,0,0,6,0,19,68,0,0,43,0,0,0,1,0,0,2,0,0,0,0,11,96,2,0,0,0,0,1,0,0,0,2,0,9,0,0,245950,19,91,0,18,0,0,0,0,0,11,0,0,0,0,0,1,4,121916,0,0,6,0,0,1,11,0,112,15,3,0,0,2,0,103,0,3,0,0,417,0,0,0,0,9,0,4,0,3,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,11,0,0,0,0,0,0,0,0,3,5,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,121792,0,67,0,0,0,22,15,51,210,121821,0,0,0,0,1,0,0,0,0,0,0,0,0,988,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,17,8,140,14,0,0,213,0,494,0,0,0,144,25,0,0,0,0,0,0,0,0,0,77,1,0,0,0,2,0,0,0,0,2,103,130,0,0,31,0,0,0,0,0,635,0,0,764,0,0,1,6,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,16,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,28,0,0,0,8,1,25,267,0,18,0,0,0,0,0,0,73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,6,0,0,0,0,0,0,0,0,0,0,0,0,2,482,188,4 +21,0,0,7,0,66,4,0,34,6,3,0,0,0,16,0,33,0,7,2,0,0,0,1,0,0,6,0,7,0,3,0,0,0,16,0,66,12,0,0,79,0,0,0,1,0,0,4,0,0,0,0,2,92,0,0,0,0,0,1,0,0,0,12,0,12,0,0,1413,66,121,0,10,0,0,0,0,0,17,0,0,0,0,0,2,8,184,0,0,16,0,0,0,0,0,26,0,4,0,0,2,0,93,0,9,0,0,968,0,0,0,0,4,2,2,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,0,9,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,2,10,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,23,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,28,0,0,0,0,0,0,191,0,144,0,0,0,4,12,136,47,216,0,0,0,0,1,0,0,0,0,0,0,0,0,773,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,17,22,299,7,0,0,330,0,500,0,0,0,144,17,0,0,0,0,0,0,0,0,0,97,1,0,0,0,3,0,0,0,0,2,154,75,0,0,0,0,0,0,0,0,3302,0,0,236,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,104,1,1,1,0,11,0,0,0,0,1,82,210,0,16,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,322,90,4 +0,0,0,0,0,8,41,0,49,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,141,8,132,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,48,0,0,0,0,0,2,45,0,338,15,0,0,0,4,0,231,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,32,0,0,0,0,3,21,207,54,0,0,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,87,0,59,0,0,0,53,3,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2,0,0,0,0,0,91,90,0,0,30,0,0,0,0,0,35,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,106,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,4,4 +181,0,4,3,6,108,54,20,765,28,55,0,7,0,35,25,8042,0,7,22,0,6,5,8,0,25,30,0,28,0,19,3,0,5,47,26,113,34,0,0,661,0,3,0,1,0,0,3,1,0,0,0,39,249,0,0,0,0,0,1,0,0,0,19,0,49,0,0,4264,108,9769,0,63,0,0,0,0,0,34,15,0,0,0,0,17,27,857,0,20,47,5,0,7,174,0,1599,115,7,0,0,14,6,9175,0,26,0,0,5861,0,0,0,0,30,31,1,0,5,0,0,1,0,0,0,22,0,0,0,0,0,0,0,14,0,0,0,16,0,0,0,0,0,5,0,51,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,14,1,1,1,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,7,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1048,10,10,10,0,0,0,325,0,263,0,0,0,59,94,320,1463,369,0,0,0,0,1,0,4,0,0,0,16445,3,1,2063,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,1,0,87,20748,778,13,0,0,679,0,2246,0,0,0,309,649,0,0,0,0,0,0,0,0,0,8990,1,0,2,0,41,0,0,0,0,32,204,449,0,4,290,0,0,0,1,0,17038,0,0,791,3,0,1,8,1,0,0,0,7,0,0,0,0,0,0,0,0,0,25,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,20,1,2,0,0,0,3,402,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,119,1,1,1,0,80,0,0,0,22,43,160,117,0,96,9,0,0,0,0,0,574,16,0,0,0,0,0,0,0,0,0,0,0,6,0,1,30,0,0,0,0,0,0,0,0,0,0,0,8,0,2,940,1008,4 +0,0,0,0,0,9,24,0,32,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,9,98,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,50,0,0,0,0,0,2,28,0,219,15,0,0,0,4,0,146,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,33,0,0,0,0,3,25,138,55,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,46,1,0,0,73,0,47,0,0,0,36,4,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,0,92,56,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,4,4 +152,0,0,29,10,84,189,22,430,30,74,0,0,2,64,0,375,0,20,16,0,6,2,6,0,26,22,0,14,0,8,2,0,9,33,0,94,301,0,0,701,0,0,0,1,0,0,3,0,0,0,0,28,378,0,0,0,0,0,1,0,3,0,12,0,84,0,0,3029,84,1530,0,39,0,0,0,0,0,73,12,0,0,0,0,13,22,385,0,22,33,9,0,10,203,0,1969,100,3,0,0,14,10,1329,0,46,0,0,2227,0,0,0,0,52,41,0,0,29,0,0,1,0,0,0,17,0,0,0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,1,0,18,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,36,2,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,49,10,10,10,0,0,0,327,0,236,0,0,0,36,76,296,1682,356,0,0,0,0,1,0,5,0,0,0,0,0,0,2690,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,660,146,1414,48,0,0,1558,0,2894,0,6,0,567,56,0,0,0,0,0,0,0,0,0,1154,1,0,0,0,30,0,0,0,0,22,279,564,0,0,215,0,0,0,0,0,9915,0,0,185,3,0,1,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,91,1,1,1,0,77,0,0,0,0,81,127,309,0,63,9,0,0,0,0,0,735,10,0,0,0,0,0,0,0,0,0,0,0,11,0,1,40,0,0,0,0,0,0,0,0,0,0,0,15,0,3,1599,1653,4 +2,0,0,2,1,13,26,1,41,1,3,0,0,0,4,0,80,0,9,1,0,0,0,1,0,0,9,0,6,0,4,0,0,1,2,0,14,54,0,0,10,0,0,0,1,0,0,4,0,0,0,0,3,108,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2076,13,164,0,10,0,0,0,0,0,18,0,0,0,0,0,1,7,219,0,1,2,1,0,1,0,0,68,0,4,0,0,4,1,85,0,1,0,0,344,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,221,0,82,0,0,0,6,18,43,28,235,0,0,0,0,1,0,0,0,0,0,0,0,0,676,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,111,11,285,3,0,0,354,0,748,0,1,0,168,16,0,0,0,0,0,0,0,0,0,163,1,0,0,0,2,0,0,0,0,4,152,67,0,0,0,0,0,0,0,0,294,0,0,481,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,1,1,1,0,9,0,0,0,0,9,16,169,0,19,0,0,0,0,0,0,63,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,439,143,4 +54,0,0,1,1,57,12,4,56,2,13,0,3,0,5,0,37,0,7,10,0,1,1,6,0,16,3,0,7,0,4,1,0,1,22,0,58,12,0,0,181,0,0,0,1,0,0,0,0,0,0,0,13,90,0,0,0,0,0,1,0,1,0,0,0,7,0,0,970,57,258,0,18,0,0,0,0,0,10,3,0,0,0,0,13,18,142,0,4,22,1,0,4,31,0,381,30,0,0,0,6,1,231,0,2,0,0,1101,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,1,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,10,10,10,0,0,0,140,0,90,0,0,0,16,23,225,327,129,0,0,0,0,1,0,3,0,0,0,0,0,0,498,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,31,54,284,2,0,0,236,0,407,0,0,0,102,33,0,0,0,0,0,0,0,0,0,133,0,0,0,0,18,0,0,0,0,12,148,72,0,0,60,0,0,0,0,0,705,0,0,6,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,18,0,0,0,0,9,80,38,0,22,9,0,0,0,0,0,190,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,159,794,4 +6,0,0,5,0,23,4,0,18,3,3,0,0,0,10,0,19,0,7,2,0,0,0,1,0,4,0,0,0,0,1,0,0,0,8,0,23,289,0,0,34,0,0,0,1,0,0,1,0,0,0,0,4,58,0,0,0,0,0,1,0,0,0,1,0,9,0,0,6686,23,59,0,4,0,0,0,0,0,6,0,0,0,0,0,2,4,1573,0,0,8,0,0,0,0,0,9,0,1,0,0,2,0,107,0,6,0,0,385,0,0,0,0,0,0,0,0,38,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,837,0,48,0,0,0,4,6,45,136,839,0,0,0,0,1,0,0,0,0,0,0,0,0,2045,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,70,11,151,5,0,0,150,0,216,0,0,0,69,13,0,0,0,0,0,0,4,0,0,61,1,0,0,0,3,0,0,0,0,1,116,23,0,0,0,0,0,0,0,0,828,0,0,1564,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,0,0,0,0,0,1,31,101,0,5,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2198,39,4 +82,0,0,2,1,53,25,4,118,6,24,0,4,0,12,0,38,0,7,6,0,1,1,5,0,29,9,0,5,0,4,0,0,1,18,0,54,15,0,0,480,0,0,0,1,0,0,0,0,0,0,0,25,106,0,0,0,0,0,1,0,1,0,0,0,26,0,0,1344,53,369,0,28,0,0,0,0,0,16,3,0,0,0,0,8,13,264,0,4,18,1,0,4,88,0,802,15,0,0,0,8,1,552,0,7,0,0,1232,0,0,0,0,36,22,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,10,10,10,0,0,0,219,0,110,0,0,0,27,58,218,786,205,0,0,0,0,1,0,4,0,0,0,0,0,0,790,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,37,93,271,4,0,0,242,0,307,0,0,0,105,26,0,0,0,0,0,0,0,0,0,228,0,0,0,0,13,0,0,0,0,24,138,230,0,0,30,0,0,0,0,0,733,0,0,19,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,33,0,0,0,0,9,72,42,0,38,9,0,0,0,0,0,327,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,265,1558,4 +186,0,0,36,19,109,229,59,458,45,77,0,0,2,88,0,494,0,24,61,0,105,2,7,0,57,22,0,36,0,7,3,0,18,47,0,121,400,160,0,977,0,0,0,1,0,0,5,1,0,0,0,57,430,0,0,0,0,0,1,0,3,0,12,0,94,0,0,4221,109,3007,0,91,0,0,0,0,0,113,33,0,0,0,0,13,27,625,0,59,47,18,0,11,161,0,1817,95,10,0,0,18,19,1241,0,64,0,0,3999,0,0,0,0,81,52,0,0,35,0,0,1,0,0,0,23,0,0,0,0,0,0,0,7,0,0,0,12,0,0,0,2,0,1,0,26,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,4,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,10,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,87,10,10,10,0,0,0,514,0,330,0,0,0,66,109,345,1624,559,0,0,0,0,1,0,5,0,0,0,0,0,0,4143,0,0,0,0,0,0,0,0,0,1,0,0,5,1,2,0,0,0,0,1,0,888,416,1891,66,0,0,1962,0,3973,0,8,0,686,151,0,0,0,0,0,0,0,0,0,1372,1,0,2,0,175,0,0,0,0,49,341,420,0,0,211,0,0,0,0,0,10297,0,0,164,3,0,1,8,0,0,0,0,13,0,0,0,4,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,3,30,2,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,8,110,1,1,1,0,107,0,0,0,0,97,168,220,0,116,9,0,0,0,0,0,719,12,0,0,0,0,0,0,1,0,0,0,0,13,0,6,53,0,0,0,0,0,0,0,0,117,0,0,179,0,6,2406,2177,4 +0,0,0,10,0,17,4,0,25,1,7,0,0,0,4,0,19,0,7,1,0,0,0,1,0,0,0,0,5,0,9,0,0,0,5,0,17,6,0,0,36,0,0,0,1,0,0,1,0,0,0,0,8,74,1,0,0,0,0,1,0,0,0,2,0,7,0,0,18732,17,68,0,14,0,0,0,0,0,6,0,0,0,0,0,1,3,3669,0,0,5,0,0,1,9,0,111,15,1,0,0,2,0,67,0,1,0,0,632,0,0,0,0,2,0,2,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2635,0,53,0,0,0,16,14,39,150,2652,0,0,0,0,1,0,0,0,0,0,0,0,0,4808,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,7,116,14,0,0,96,0,235,0,0,0,30,7,0,0,0,0,0,0,0,0,0,66,1,0,0,0,2,0,0,0,0,6,101,20,0,0,31,0,0,0,0,0,1682,0,0,5175,0,0,1,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,21,0,0,0,10,1,22,12,0,14,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,3,0,0,0,0,0,0,0,0,0,0,0,0,1,2453,61,4 +0,0,0,9,0,38,19,0,54,0,15,0,0,10,4,0,787,0,6,1,0,0,0,8,0,10,0,0,9,0,1,0,0,0,1,4143,38,6,0,0,58,0,2,0,1,0,0,2,0,0,0,0,1,337,0,0,0,0,0,1,0,0,0,0,0,4,0,0,60372,38,920,0,7,0,0,0,0,0,36,0,0,0,0,0,8,72,5548,0,0,1,0,0,0,0,0,316,35,3,0,0,2,0,876,0,0,49,0,5629,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,841,0,42,0,0,0,4,7,552,1548,816,0,0,0,0,1,0,3,0,0,0,0,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,133,16,269,9,0,0,302,0,383,0,0,0,135,13,0,0,0,0,0,0,0,0,0,895,1,0,0,0,9,0,0,0,0,1,143,32,0,0,75,0,0,0,0,0,4402,1,0,873,17,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,17,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,18,0,0,0,0,1,39,292,0,8,12,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2387,387,4 +1,0,0,5,0,31,5,0,20,0,2,0,0,2,3,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,4,0,31,6,0,0,23,0,0,0,1,0,0,3,0,0,0,0,2,141,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1462,31,69,0,3,0,0,0,0,0,19,0,0,0,0,0,7,17,235,0,0,4,0,0,0,0,0,79,5,7,0,0,2,0,33,0,0,0,0,532,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,189,0,64,0,0,0,1,4,189,15,183,0,0,0,0,1,0,3,0,0,0,0,0,0,403,0,0,0,0,0,0,0,0,0,0,0,0,3,1,6,0,0,0,0,1,0,32,10,163,6,0,0,171,0,421,0,0,0,62,7,0,0,0,0,0,0,0,0,0,56,1,0,0,0,8,0,0,0,0,1,114,35,0,0,0,0,0,0,0,0,116,0,0,178,3,0,1,1,0,0,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,1,0,0,0,0,1,35,164,0,4,9,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,229,57,4 +0,0,0,3,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,20,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,2,0,0,167,10,38,0,21,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,26,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,21,0,0,0,0,3,23,43,33,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,40,0,0,0,0,3,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,20,0,0,0,0,1,10,0,0,21,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,4 +0,0,0,0,0,8,38,0,46,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,146,8,126,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,49,0,0,0,0,0,2,42,0,317,15,0,0,0,4,0,216,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,32,0,0,0,0,3,21,195,54,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,44,1,0,0,84,0,57,0,0,0,50,7,0,0,0,0,0,0,0,0,0,109,0,0,0,0,2,0,0,0,0,0,91,84,0,0,30,0,0,0,0,0,36,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,4,4 +0,0,0,3,0,12,2,0,5,0,2,0,0,0,5,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,12,7,0,0,6,0,0,0,1,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,2,0,0,406,12,25,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,17,0,0,0,0,124,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,31,0,27,0,0,0,2,4,27,94,45,0,0,0,0,1,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,44,3,0,0,47,0,147,0,0,0,5,3,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,2,94,4,0,0,0,0,0,0,0,0,25,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,3,0,0,0,0,1,12,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,11,4 +0,0,0,5,0,36,25,0,47,3,24,0,0,7,4,0,748,0,6,1,0,0,0,8,0,10,0,0,25,0,1,0,0,0,1,12343,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,805,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40017,36,913,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6565,0,0,1,0,0,0,0,0,368,25,1,0,0,2,0,836,0,0,96,0,4608,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1477,0,33,0,0,0,12,15,493,2094,1456,0,0,0,0,1,0,3,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,285,5,0,0,316,0,306,0,0,0,154,12,0,0,0,0,0,0,0,0,0,861,1,0,0,0,9,0,0,0,0,1,171,6,0,0,139,0,0,0,0,0,4588,1,0,995,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,58,0,0,0,0,1,37,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2456,22,4 +0,0,0,0,0,10,29,0,37,1,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,9,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,1,0,0,126,10,116,0,1,0,0,0,0,0,16,0,0,0,0,0,1,1,46,0,0,0,0,0,2,33,0,254,15,0,0,0,4,0,171,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,36,0,0,0,0,3,29,158,58,0,0,0,0,0,0,0,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,38,2,0,0,85,0,88,0,0,0,46,1,0,0,0,0,0,0,0,0,0,91,0,0,0,0,2,0,0,0,0,0,93,66,0,0,30,0,0,0,0,0,32,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,0,0,1,0,0,0,0,0,0,82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,1,4 +0,0,0,0,0,8,5,0,6,1,1,0,1,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,9,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,72,8,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,0,7,0,0,0,0,4,0,14,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,40,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,43,2,0,0,66,0,108,0,0,0,29,1,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,0,91,26,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,48,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,36,4 +2,0,0,3,0,12,2,0,17,0,3,0,0,0,3,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,3,0,12,6,0,0,8,0,0,0,1,0,0,2,0,0,0,0,0,117,0,0,0,0,0,1,0,0,0,0,0,3,0,0,436,12,47,0,2,0,0,0,0,0,10,0,0,0,0,0,1,4,49,0,0,3,0,0,0,0,0,10,0,3,0,0,2,0,19,0,1,0,0,175,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,67,0,36,0,0,0,0,3,27,8,75,0,0,0,0,1,0,0,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,94,3,0,0,130,0,212,0,0,0,64,3,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,1,94,48,0,0,0,0,0,0,0,0,31,0,0,25,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,1,0,0,0,0,1,15,333,0,2,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,71,21,4 +0,0,0,3,0,8,2,0,4,0,2,0,0,0,2,0,10,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,2,0,0,16,8,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,58,0,0,0,3,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,28,4 +1,0,0,3,0,29,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,111,0,0,0,0,0,1,0,0,0,0,0,2,0,0,878,29,51,0,3,0,0,0,0,0,10,0,0,0,0,0,7,15,159,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,516,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,119,0,50,0,0,0,1,4,186,14,121,0,0,0,0,1,0,3,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,2,1,7,0,0,0,0,1,0,32,10,135,3,0,0,170,0,305,0,0,0,64,22,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,111,49,0,0,0,0,0,0,0,0,84,0,0,36,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,228,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,161,53,4 +0,0,0,0,0,9,37,0,45,0,5,0,1,0,3,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,9,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,144,9,124,0,1,0,0,0,0,0,12,0,0,0,0,0,1,1,51,0,0,0,0,0,2,41,0,310,15,0,0,0,4,0,211,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,33,0,0,0,0,3,25,191,56,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,47,1,0,0,86,0,58,0,0,0,49,3,0,0,0,0,0,0,0,0,0,107,0,0,0,0,2,0,0,0,0,0,92,82,0,0,30,0,0,0,0,0,37,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,4,4 +1,0,0,5,0,40,18,0,55,4,11,0,0,6,4,1,831,0,6,2,0,0,0,8,0,11,0,0,17,0,5,0,0,0,5,1347,40,6,0,0,46,0,0,0,1,0,0,2,0,0,0,0,5,300,0,0,0,0,0,1,0,0,0,0,0,2,0,0,29752,40,965,0,18,0,0,0,0,0,37,0,0,0,0,0,9,67,3641,0,0,5,0,0,0,0,0,259,20,4,0,0,2,0,812,0,0,31,0,3627,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,1772,0,93,0,0,0,13,10,535,1761,1729,0,0,0,0,1,0,4,0,0,0,0,0,0,2363,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,86,28,232,5,0,0,249,0,316,0,0,0,96,21,0,0,0,0,0,0,0,0,0,932,1,0,0,0,10,0,0,0,0,2,123,31,0,0,53,0,0,0,0,0,3008,1,0,2670,19,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,38,38,0,0,4,0,0,0,0,0,19,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,36,0,0,0,0,33,45,234,0,19,14,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1107,206,4 +18,0,0,8,2,45,7,4,52,22,11,0,0,0,36,1,340,0,8,6,0,1,0,2,0,0,54,0,9,0,21,1,0,1,23,0,46,1132,0,0,210,0,0,0,1,0,0,8,0,0,0,0,20,163,0,0,0,0,0,1,0,0,0,41,0,34,0,0,14733,45,623,0,31,0,0,0,0,0,36,3,0,0,0,0,2,13,2638,0,4,23,1,0,0,0,0,140,0,10,0,0,6,2,1000,0,29,0,0,2496,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,4,0,16,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,147,0,19903,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,45,0,0,0,0,0,0,2131,0,198,0,0,0,40,95,83,718,2012,0,0,0,0,1,0,0,0,0,0,4,4,0,37448,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,45,50,603,10,0,0,380,0,1007,0,0,0,239,83,0,0,0,0,0,0,0,0,0,455,1,0,0,0,9,0,0,0,0,19,146,83,0,0,1,0,0,0,0,0,46826,0,0,3435,0,0,1,0,0,0,0,0,17,0,0,0,2,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,23,23,0,0,6,0,0,0,0,0,0,25,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,31,0,0,0,0,45,70,369,0,85,0,0,0,0,0,0,172,8,0,0,0,0,0,0,0,0,0,0,0,1,0,2,27,0,0,0,0,0,0,0,0,0,0,0,2,0,8,1951,10538,4 +0,0,0,0,0,1,0,1,18,0,1,0,0,0,1,0,623,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,619,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,27,0,16,0,0,0,5,9,0,0,0,0,0,0,0,0,0,644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,2,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,8,0,0,8,0,0,1,92,4 +0,0,0,5,0,36,25,0,49,3,24,0,0,7,4,0,820,0,6,1,0,0,0,8,0,10,0,0,27,0,1,0,0,0,1,12352,36,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,778,0,0,0,0,0,1,0,0,0,0,0,2,0,0,39607,36,988,0,25,0,0,0,0,0,46,0,0,0,0,0,8,96,6513,0,0,1,0,0,0,0,0,368,25,1,0,0,2,0,908,0,0,88,0,4516,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1441,0,32,0,0,0,14,17,498,2081,1419,0,0,0,0,1,0,3,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,286,5,0,0,317,0,303,0,0,0,158,12,0,0,0,0,0,0,0,0,0,935,1,0,0,0,9,0,0,0,0,1,172,6,0,0,135,0,0,0,0,0,4718,1,0,1014,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,66,0,0,0,0,1,37,208,0,26,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2468,22,4 +0,0,0,5,0,35,25,0,48,3,24,0,0,7,4,0,764,0,6,1,0,0,0,8,0,11,0,0,25,0,0,0,0,0,1,12497,35,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,1,736,0,0,0,0,0,1,0,0,0,0,0,2,0,0,40339,35,930,0,23,0,0,0,0,0,46,0,0,0,0,0,8,92,6652,0,0,1,0,0,0,0,0,364,25,1,0,0,2,0,852,0,0,88,0,4822,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,1506,0,32,0,0,0,12,15,489,2082,1485,0,0,0,0,1,0,3,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,108,25,269,5,0,0,306,0,284,0,0,0,148,17,0,0,0,0,0,0,0,0,0,878,1,0,0,0,9,0,0,0,0,1,162,6,0,0,135,0,0,0,0,0,4668,1,0,1002,22,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,22,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,58,0,0,0,0,1,36,208,0,24,12,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2460,23,4 +180,0,0,0,0,73,41,0,191,13,40,0,2,0,16,35,33,0,7,2,0,0,0,1,0,8,6,0,6,0,4,1,0,0,54,0,73,15,3744,0,527,0,0,0,0,0,0,0,0,0,0,0,11,184,0,0,0,0,0,1,0,0,0,0,0,47,0,0,3471,73,586,0,19,0,0,0,0,0,120,0,0,0,0,0,2,2,628,0,0,54,0,0,3,178,0,1375,15,0,0,0,6,0,1060,0,12,0,0,7247,0,0,0,0,14,74,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,6,0,0,0,0,0,1,0,47,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,0,0,0,0,0,470,0,355,0,0,0,15,24,115,132885,497,0,0,0,0,0,0,0,0,0,0,0,0,0,2394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,122,345,2,0,0,407,0,401,0,0,0,322,127106,0,0,0,0,0,0,0,0,0,365,0,0,0,0,3,0,0,0,0,11,164,461,0,0,30,0,0,0,1,0,1005,0,0,5,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,13,0,0,0,0,1,127,54,0,25,0,0,0,0,0,0,639,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1200,494,4 +6,0,0,16,1,23,15,4,63,2,20,0,0,0,14,3,92,0,7,3,0,1,1,2,0,4,12,0,7,0,3,2,0,1,8,0,24,9,0,0,92,0,0,0,1,0,0,2,0,0,0,0,8,141,0,0,0,0,0,1,0,0,0,0,0,10,0,0,1653,23,285,0,16,0,0,0,0,0,9,3,0,0,0,2,2,7,296,0,4,8,1,0,1,24,0,227,35,2,0,0,2,1,270,0,3,0,0,637,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,214,0,152,0,0,0,12,28,74,137,202,0,0,0,0,1,0,0,0,0,0,0,0,0,749,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,10,24,203,20,0,0,239,0,319,0,0,0,130,13,0,0,0,0,0,0,4,0,0,214,1,0,0,0,7,0,0,0,0,5,120,108,0,0,72,0,2,0,0,0,434,0,0,282,0,0,1,0,1,0,0,0,3,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,3,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,17,0,0,0,0,27,32,330,0,28,0,0,0,0,0,0,80,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,435,109,4 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,1,0,0,18,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,5,23,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,71,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,4 +18,0,0,23,1,70,500,1,570,135,37,0,0,8,140,0,1567,0,8,1,0,0,0,8,0,10,12,0,33,0,9,0,0,1,30,17583,71,219,0,0,1510,0,3,0,1,0,0,4,0,0,0,0,9,1380,0,0,0,0,0,1,0,0,0,4,0,145,0,0,134349,70,2904,0,39,0,0,0,0,0,75,0,0,0,0,0,8,175,7905,0,1,30,1,0,2,469,0,3805,85,6,0,0,4,1,4230,0,133,174,0,14788,0,0,2,0,5,0,3,0,0,0,0,1,0,0,0,37,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,475,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,12,12,12,0,0,0,3479,0,160,0,0,0,29,35,1092,4247,3398,0,0,0,0,1,0,5,0,0,0,0,0,0,3729,0,0,0,0,0,0,0,0,0,0,0,0,32,1,0,0,0,0,0,1,0,225,234,1310,26,0,0,1249,0,1603,0,1,0,965,206,0,0,0,0,0,0,0,0,0,2830,1,0,0,0,9,0,0,0,0,3,305,1049,0,0,342,0,2,0,0,0,6104,1,0,1399,30,0,1,1,1,0,0,0,8,0,0,0,1,0,0,0,0,0,133,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,6,0,1,0,0,0,30,372,7,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,73,1,1,1,0,83,0,0,0,0,9,101,148,0,52,12,0,0,0,0,0,1443,13,0,0,0,0,0,0,0,0,0,0,0,3,0,1,141,0,0,0,0,0,0,0,0,0,0,0,1,0,4,2691,749,4 +0,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,5,0,0,0,1,0,0,27,0,0,0,0,0,191,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1457,10,114,0,1,0,0,0,0,0,54,0,0,0,0,0,1,29,248,0,0,0,0,0,0,0,0,32,0,27,0,0,2,0,15,0,0,0,0,311,0,0,0,0,0,0,28,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,310,0,193,0,0,0,0,3,30,32,351,0,0,0,0,1,0,0,0,0,0,0,0,0,1043,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,8,3,96,8,0,0,276,0,398,0,0,0,206,2,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,96,169,0,0,0,0,0,0,0,0,54,0,0,172,0,0,1,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,126,0,1,0,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,416,110,4 +1,0,0,3,0,29,5,0,20,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,128,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1312,29,58,0,3,0,0,0,0,0,14,0,0,0,0,0,7,15,201,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,31,0,0,0,0,549,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,147,0,50,0,0,0,1,4,189,14,144,0,0,0,0,1,0,3,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,1,0,32,10,135,3,0,0,169,0,318,0,0,0,61,7,0,0,0,0,0,0,0,0,0,55,1,0,0,0,8,0,0,0,0,1,111,44,0,0,0,0,0,0,0,0,107,0,0,126,3,0,1,1,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,172,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,196,54,4 +0,0,0,8,2,17,50,2,57,9,7,0,0,0,19,5,128,0,11,1,0,0,0,1,0,0,6,0,2,0,2,1,0,2,4,0,19,136,0,0,46,0,0,0,1,0,0,7,0,0,0,0,2,121,0,0,0,0,0,1,0,0,0,0,0,16,0,0,8245,17,246,0,5,0,0,0,0,0,28,0,0,0,0,0,1,10,2360,0,2,4,2,0,2,0,0,90,0,13,0,0,6,2,120,0,13,0,0,902,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,2036,0,297,0,0,0,4,11,48,26,2224,0,0,0,0,1,0,0,0,0,0,0,0,0,4056,0,194,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,219,37,420,10,0,0,470,0,934,0,2,0,163,14,0,0,0,0,0,0,0,0,0,277,1,0,0,0,2,0,0,0,0,1,135,49,0,0,0,0,0,0,0,0,861,0,0,2273,0,0,1,0,0,0,0,0,20,0,0,0,2,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,15,1,1,1,0,4,0,0,0,0,17,23,172,0,11,0,0,0,0,0,0,90,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2653,74,4 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,33,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,4 +1,0,0,3,0,29,5,0,19,0,2,0,0,2,2,0,18,0,6,3,0,0,0,5,0,9,0,0,3,0,1,0,0,0,2,0,29,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,2,120,0,0,0,0,0,1,0,0,0,0,0,2,0,0,894,29,51,0,3,0,0,0,0,0,10,0,0,0,0,0,7,15,157,0,0,2,0,0,0,0,0,77,5,4,0,0,2,0,30,0,0,0,0,513,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,121,0,51,0,0,0,1,4,186,14,123,0,0,0,0,1,0,3,0,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,2,1,8,0,0,0,0,1,0,32,10,136,3,0,0,170,0,307,0,0,0,64,12,0,0,0,0,0,0,0,0,0,54,1,0,0,0,8,0,0,0,0,1,111,49,0,0,0,0,0,0,0,0,80,0,0,40,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,1,0,0,0,0,1,31,228,0,4,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,160,52,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,1,0,0,0,0,0,2,0,0,414,11,27,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,145,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,33,0,28,0,0,0,2,4,26,94,45,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,42,3,0,0,41,0,158,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,27,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,14,4 +83,0,0,25,8,75,163,17,383,26,68,0,0,2,56,0,309,0,18,14,0,5,1,6,0,25,13,0,13,0,5,2,0,7,28,0,83,253,0,0,649,0,0,0,1,0,0,3,0,0,0,0,24,328,0,0,0,0,0,1,0,2,0,12,0,75,0,0,2828,75,1276,0,34,0,0,0,0,0,69,9,0,0,0,0,13,22,370,0,17,28,7,0,9,193,0,1841,100,3,0,0,12,8,1217,0,40,0,0,1878,0,0,0,0,27,32,0,0,30,0,0,1,0,0,0,16,0,0,0,0,0,0,0,7,0,0,0,8,0,0,0,0,0,1,0,17,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,10,10,10,0,0,0,279,0,222,0,0,0,29,49,279,1531,323,0,0,0,0,1,0,4,0,0,0,0,0,0,2448,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,556,117,1185,42,0,0,1334,0,2554,0,5,0,498,34,0,0,0,0,0,0,0,0,0,999,1,0,0,0,26,0,0,0,0,18,254,535,0,0,215,0,0,0,0,0,9794,0,0,149,3,0,1,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,82,1,1,1,0,30,0,0,0,0,65,111,291,0,49,9,0,0,0,0,0,686,8,0,0,0,0,0,0,0,0,0,0,0,9,0,1,36,0,0,0,0,0,0,0,0,0,0,0,11,0,3,1578,841,4 +29,0,0,8,1,54,25,4,143,5,35,0,0,0,13,0,39,0,6,3,0,1,1,7,1,6,9,0,104,0,4,0,0,1,35,0,55,6,0,0,278,0,0,0,1,0,0,2,0,0,0,0,9,106,0,0,0,0,0,1,0,0,0,0,0,33,0,0,296708,54,594,0,114,0,0,0,0,0,79,3,0,0,0,0,8,11,6572,0,4,35,1,0,3,110,0,966,55,3,0,0,2,1,753,0,10,0,0,359838,0,0,0,0,15,9,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,12,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,2,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,4047,0,269,0,0,0,12,23,110,50312,4129,0,0,0,0,1,0,0,0,0,0,0,0,0,9671,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,27,1972,10,0,0,362,0,425,0,0,0,240,1209,0,0,0,0,0,0,0,0,0,261,1,0,0,0,13,0,0,0,0,8,139,292,0,0,121,0,0,0,0,0,2130,0,0,8792,0,0,1,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,4,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,107,0,0,0,0,9,90,249,0,123,0,0,0,0,0,0,500,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,0,0,0,0,0,0,0,0,0,0,0,2,0,4,3306,1089,4 +0,0,0,3,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,2,0,0,16,8,18,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,3,0,0,32,0,41,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,26,4 +35,0,0,0,1,63,16,4,44,0,6,0,4,0,3,0,101,0,7,6,0,1,1,7,0,18,9,0,5,0,1,0,0,1,28,0,64,24,0,0,252,0,2,0,1,0,0,2,0,0,0,0,11,126,0,0,0,0,0,1,0,1,0,5,0,3,0,0,1259,63,300,0,14,0,0,0,0,0,10,3,0,0,0,0,10,18,237,0,4,28,1,0,3,8,0,178,0,1,0,0,12,1,219,0,0,0,0,1109,0,0,0,0,12,5,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,3,0,6,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,32,10,10,10,0,0,0,213,0,86,0,0,0,10,27,266,172,207,0,0,0,0,1,0,6,0,0,0,0,0,0,603,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,49,72,346,1,0,0,323,0,580,0,0,0,152,46,0,0,0,0,0,0,0,0,0,181,1,0,0,0,15,0,0,0,0,11,162,42,0,0,0,0,0,0,0,0,233219,0,0,10,3,0,1,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,1,4,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,99,1,1,1,0,3,0,0,0,0,9,92,80,0,24,9,0,0,0,0,0,156,6,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,190,884,4 +0,0,0,3,0,11,3,0,5,0,2,0,0,0,7,0,10,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,1,0,0,0,0,0,2,0,0,416,11,27,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,0,0,0,0,0,0,10,0,0,0,0,2,0,21,0,0,0,0,142,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,33,0,28,0,0,0,2,4,26,94,45,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,41,3,0,0,41,0,155,0,0,0,2,3,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,2,93,1,0,0,0,0,0,0,0,0,27,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,4,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,14,4 +1,0,0,19,1,105,88,4,242,65,58,1,1,9,90,0,97,0,7,12,0,1,1,9,2,15,21,0,20,0,1,0,0,0,55,0,106,240,288,0,569,0,0,0,1,0,0,15,0,0,0,0,10,393,0,3,0,0,0,1,0,0,2,15,0,84,0,0,14308,105,863,0,19,0,0,0,0,3,65,3,0,0,1,1,11,41,1279,0,4,55,0,0,4,153,0,1474,260,24,0,0,2,1,1092,0,71,0,7,4962,0,1,0,0,21,0,12,0,7,0,0,1,0,0,0,29,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,33,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,10,10,10,0,0,0,1216,0,339,0,0,0,18,100,354,1300,1287,0,0,0,0,1,0,3,1,0,0,0,0,0,2354,0,0,0,0,0,0,0,0,0,0,0,0,15,1,0,0,1,0,0,1,0,93,96,659,25,0,0,949,0,1336,0,0,0,744,146,0,0,0,0,0,0,7,0,0,593,1,0,0,0,25,0,0,0,0,8,229,671,0,0,620,0,0,0,0,13,1232,0,0,716,3,0,1,1,0,0,0,0,31,0,2,0,17,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,3,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,123,1,1,1,0,109,0,1,0,0,9,161,1178,0,48,9,0,0,0,0,0,542,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,73,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1383,255,5 +3,0,0,23,0,101,72,0,211,40,52,0,0,4,68,0,182,0,82,12,0,0,0,10,2,19,38,0,22,0,4,6,0,0,42,4,101,119,37,1,488,0,0,0,1,0,0,4,0,0,0,0,19,375,0,0,0,0,0,1,0,0,2,0,0,64,0,0,4832,101,734,0,30,0,0,0,0,0,24,0,0,0,0,0,15,26,674,0,0,42,0,0,3,133,0,1242,180,4,0,0,2,0,1118,0,46,0,2,3977,0,1,0,0,48,2,8,0,0,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,3,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,88,12,12,12,0,0,0,1153,0,188,0,0,0,37,129,364,1903,480,0,0,1,0,1,0,10,0,0,0,0,0,0,1712,0,0,0,0,0,0,0,0,0,0,0,0,4,1,2,0,0,0,0,2,0,38,75,489,27,0,0,590,0,1300,0,0,0,379,137,0,0,0,0,0,0,4,0,0,671,1,0,0,0,24,0,0,0,0,16,200,399,0,0,377,0,144,0,0,6,920,1,0,228,4,0,1,2,1,1,1,0,6,0,0,0,5,0,0,0,0,0,42,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,4,21,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,142,1,1,1,0,152,0,0,0,1,1,143,432,0,78,11,0,0,0,0,0,448,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,46,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2076,230,5 +10,0,0,21,0,71,81,0,233,60,48,0,1,6,104,1,195,0,7,9,0,0,0,7,7,16,36,0,25,0,1,0,0,0,28,0,71,412,43,0,523,0,0,0,1,0,0,8,1,0,0,0,13,3186,0,0,0,0,0,1,0,0,2,3,0,66,0,0,10023,71,767,0,24,0,0,0,0,0,41,0,0,0,0,0,10,27,3079,0,0,28,0,0,3,130,0,1221,205,18,0,0,2,0,1258,0,55,0,8,3620,0,0,1,0,28,2,9,0,0,0,2,1,0,0,0,18,2,0,0,0,0,0,0,2,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,4,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,126,10,10,10,0,0,0,2151,0,193,0,0,0,24,124,257,1975,2199,0,0,0,0,1,0,3,0,0,0,0,0,0,1850,1,0,0,0,0,0,0,0,0,4,0,0,8,1,6,0,0,0,0,1,2,2708,100,487,38,0,0,777,0,2240,0,0,0,603,108,0,0,0,0,0,0,7,0,0,676,1,0,3,0,23,0,0,0,0,10,207,574,0,0,477,0,0,0,0,3,5782,0,0,561,3,0,1,1,0,0,0,0,22,0,2,0,7,0,0,0,0,0,53,3,0,4,1,0,0,2,0,0,0,0,0,0,0,0,15,1,0,0,0,0,3,1,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,0,78,1,1,1,0,95,0,0,0,0,8,99,837,0,69,9,0,0,0,0,0,484,10,0,1,0,0,0,0,0,0,0,0,0,1,0,1,66,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1276,445,5 +2,0,0,21,0,104,147,0,342,130,112,0,1,11,159,1,522,0,7,7,0,0,0,18,6,20,69,0,62,0,14,1,0,0,50,9620,104,235,37,0,841,0,0,0,1,0,0,9,0,0,0,0,26,1902,0,0,0,0,0,1,0,0,2,1,0,145,0,0,93273,104,1583,0,73,0,0,0,0,0,98,0,0,0,0,1,19,177,17153,0,0,50,0,0,5,233,0,2552,385,16,0,0,2,0,2330,0,129,196,6,9000,0,0,1,0,44,0,13,0,0,0,0,1,0,0,0,24,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,9,0,1,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,12,12,12,0,0,0,8499,0,262,0,0,0,63,241,1138,3461,8089,0,0,0,0,1,0,6,0,0,0,0,0,0,5829,0,0,0,0,0,0,0,0,0,0,0,0,9,1,4,0,0,0,0,1,0,135,210,863,22,0,0,957,0,1545,0,0,0,731,385,0,0,0,0,0,0,11,0,0,1302,1,0,0,0,31,0,0,0,0,25,294,648,0,0,1097,0,0,0,0,3,6336,1,0,6779,33,0,1,1,0,0,0,0,19,0,1,0,9,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,33,31,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,168,1,1,1,0,287,0,0,0,0,1,154,813,0,152,14,0,0,0,0,0,823,13,0,0,0,0,0,0,0,0,0,0,0,2,0,1,144,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5405,433,5 +1,0,0,9,1,47,43,1,84,3,18,0,0,9,10,0,120,0,9,4,0,0,0,7,0,10,0,0,8,0,1,0,0,1,10,5483,48,54,3,0,101,0,0,0,1,0,0,5,0,0,0,0,2,540,0,0,0,0,0,1,0,0,0,2,0,14,0,0,12219,47,269,0,6,0,0,0,0,0,31,0,0,0,0,0,9,39,1778,0,1,10,1,0,3,22,0,486,60,7,0,0,4,1,253,0,4,32,0,2031,0,0,0,0,4,1,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,629,0,82,0,0,0,4,8,430,746,617,0,0,0,0,1,0,4,0,0,0,0,0,0,461,1,0,0,0,0,0,0,0,0,0,0,0,5,2,0,0,0,0,0,1,0,216,31,450,10,0,0,525,0,640,0,1,0,234,18,0,0,0,0,0,0,0,0,0,293,1,0,0,0,11,0,0,0,0,2,173,116,0,0,98,0,0,0,0,0,1140,1,0,132,9,0,1,1,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,54,1,1,1,0,12,0,0,0,0,9,58,459,0,7,12,0,0,0,0,0,177,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,5,850,58,5 +0,0,0,24,1,59,57,1,167,31,28,0,1,5,94,3,159,0,38,10,0,0,0,8,8,7,33,0,27,0,1,0,0,1,16,0,60,289,43,0,213,0,0,0,1,0,0,3,0,0,0,0,15,305,0,0,0,0,0,1,0,0,0,0,0,45,0,0,22537,59,593,0,28,0,0,0,0,1,16,0,0,0,0,0,10,14,1819,0,1,16,1,0,3,51,0,622,70,6,0,0,4,1,746,0,23,0,7,5517,0,0,0,0,28,0,5,0,0,0,0,1,0,0,0,19,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,98,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,1882,0,143,0,0,0,30,135,169,741,1876,0,0,0,0,1,0,0,0,0,0,0,0,0,6147,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,138,61,593,29,0,0,659,0,2312,0,1,0,380,134,0,0,0,0,0,0,2,0,0,552,1,0,0,0,26,0,0,0,0,15,206,297,0,0,181,0,2,0,0,0,2552,0,0,6593,0,0,1,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,29,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,106,1,1,1,0,87,0,0,0,0,9,76,431,0,68,0,0,0,0,0,0,279,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,33,0,0,0,0,0,0,0,0,0,0,0,1,0,3,2532,192,5 +0,0,0,16,0,70,62,0,205,18,49,0,1,4,39,0,77,0,7,8,0,0,0,8,4,8,18,0,30,0,1,0,0,0,43,0,70,163,63,0,397,0,0,0,1,0,0,5,2,0,0,0,16,267,0,1,0,0,0,1,0,0,0,1,0,41,0,0,6948,70,532,0,31,0,0,0,0,0,27,0,0,0,0,0,3,9,293,0,0,43,0,0,3,151,0,1383,155,11,0,0,2,0,960,0,21,0,6,2784,0,0,0,0,26,0,0,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,361,0,157,0,0,0,32,115,123,1567,352,0,0,0,0,1,0,5,0,0,0,0,0,0,3935,0,0,0,0,0,0,0,0,0,0,0,0,5,0,3,0,0,0,0,1,0,13,45,469,20,0,0,500,0,1171,0,0,0,372,67,0,0,0,0,0,0,0,0,0,444,1,0,6,0,20,0,0,0,0,17,190,429,1,0,400,0,0,0,0,1,650,0,0,82,0,0,1,0,0,0,0,0,19,0,0,0,9,0,0,0,0,0,18,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,89,1,1,1,0,128,0,0,0,0,3,113,359,0,57,0,0,0,0,0,0,447,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1624,256,5 +0,0,0,12,0,43,163,0,164,8,46,0,0,0,18,0,48,0,33,5,0,0,0,4,0,2,15,0,8,0,2,0,0,0,10,0,43,49,14,0,414,0,0,0,1,0,0,9,0,0,0,0,5,486,0,0,0,0,0,1,0,0,0,11,0,27,0,0,5459,43,526,0,10,0,0,0,0,0,34,0,0,0,0,0,4,14,605,0,0,10,0,0,7,141,0,1462,180,14,0,0,2,0,787,0,14,0,0,1049,0,0,0,0,1,0,12,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,28,0,0,0,0,0,0,605,0,167,0,0,0,10,41,104,1958,621,0,0,0,0,1,0,0,0,0,0,0,0,0,2147,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,8,23,296,18,0,0,532,0,877,0,0,0,398,45,0,0,0,0,0,0,4,0,0,472,1,0,0,0,9,0,0,0,0,6,135,459,0,0,495,0,0,0,0,13,505,0,0,1109,0,0,1,0,1,0,0,0,23,0,2,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,72,1,1,1,0,19,0,0,0,0,1,53,623,0,27,0,0,0,0,0,0,370,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,7,686,80,5 +0,0,0,13,1,33,32,1,87,26,11,0,1,4,43,0,113,0,9,5,0,0,0,1,1,3,12,0,10,0,1,0,0,1,12,0,34,379,22,0,163,0,0,0,1,0,0,3,0,0,0,0,5,199,0,6,0,0,0,1,0,0,0,0,0,21,0,0,2018,33,292,0,11,0,0,0,0,0,23,0,0,0,0,0,1,10,185,0,1,12,1,0,1,0,0,95,0,6,0,0,7,1,281,0,25,5,6,1414,0,0,0,0,4,0,3,0,0,0,0,1,0,0,0,9,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,0,0,0,0,0,0,179,0,116,0,0,0,10,49,73,161,223,0,0,0,0,1,0,1,0,0,0,0,0,0,647,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,124,58,399,15,0,0,429,0,1639,3,5,0,190,53,0,0,0,0,0,0,4,0,0,300,1,0,0,0,7,0,0,0,0,6,154,80,0,0,0,0,2,0,0,0,647,0,0,196,0,0,1,0,0,2,0,0,5,0,0,0,3,0,0,0,0,0,28,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,40,1,1,1,0,40,0,0,0,0,9,46,254,0,26,0,0,0,0,0,0,129,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,29,0,0,0,0,0,0,0,0,0,0,0,1,0,3,460,196,5 +2,0,0,11,1,51,29,1,33,11,9,0,0,6,18,0,70,0,9,5,0,0,0,5,0,8,0,0,1,0,1,0,0,1,26,0,52,54,0,0,94,0,0,0,1,0,0,1,0,0,0,0,1,99,0,0,0,0,0,1,0,0,0,3,0,16,0,0,940,51,127,0,1,0,0,0,0,0,4,0,0,0,0,0,9,15,54,0,1,26,1,0,1,0,0,204,20,0,0,0,4,1,105,0,14,0,0,1120,0,0,0,0,2,2,2,0,0,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,57,0,60,0,0,0,0,3,207,132,69,0,0,0,0,1,0,3,0,0,0,0,0,0,312,2,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,187,41,312,15,0,0,360,0,711,0,1,0,169,70,0,0,0,0,0,0,0,0,0,174,1,0,0,0,10,0,0,0,0,1,147,54,0,0,0,0,2,0,0,4,737,0,0,1,2,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9,0,0,1,6,1,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,65,1,1,1,0,0,0,0,0,0,9,78,119,0,2,8,0,0,0,0,0,86,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,15,0,0,0,0,0,0,0,0,0,0,0,1,0,0,182,125,5 +0,0,0,16,1,86,191,1,345,36,82,0,1,4,64,0,164,0,11,9,0,0,0,9,12,10,36,0,31,0,1,0,0,1,45,0,87,274,55,0,669,0,0,0,1,0,0,2,0,0,0,0,17,441,0,0,0,0,0,1,0,0,0,14,0,60,0,0,5029,86,911,0,32,0,0,0,0,0,11,0,0,0,0,0,12,16,261,0,1,45,1,0,10,250,0,2384,335,4,0,0,4,1,1559,0,39,0,5,5203,0,0,0,0,8,0,8,0,0,0,0,1,1,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,46,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,333,0,189,0,0,0,34,144,187,2082,418,0,0,0,0,1,0,6,0,0,0,0,0,0,1642,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,147,82,673,18,0,0,782,0,3452,0,1,0,512,114,0,25,0,0,0,0,0,0,0,862,1,0,0,0,30,0,0,0,0,11,233,559,0,0,919,0,0,0,0,0,1007,0,0,67,0,0,1,44,1,0,0,0,3,0,4,0,2,0,0,0,0,0,38,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,111,1,1,1,0,109,0,0,0,0,9,132,307,0,78,0,0,0,0,0,0,697,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,50,16,0,0,0,0,0,0,0,0,0,0,1,0,2,1027,524,5 +0,0,0,11,0,21,7,0,43,8,14,0,1,3,18,0,42,0,7,3,0,0,0,1,1,2,9,0,6,0,1,0,0,0,8,0,21,72,11,0,85,0,0,0,1,0,0,3,1,0,0,0,3,136,2,0,0,0,0,1,0,0,0,0,0,9,0,0,881,21,149,0,7,0,0,0,0,0,13,0,0,0,0,0,1,6,97,0,0,8,0,0,3,13,0,160,19,7,1,0,2,0,208,0,4,2,4,534,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,113,0,58,0,0,0,6,32,52,183,130,0,0,0,0,1,0,0,0,0,0,0,0,0,350,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,13,14,146,12,0,0,172,0,424,0,0,0,93,24,0,0,0,0,0,0,0,0,0,135,1,0,3,0,5,0,0,0,0,4,116,71,0,0,35,0,0,0,0,0,277,0,0,71,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,20,0,0,0,0,1,29,174,0,18,0,0,0,0,0,0,75,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,2,236,59,5 +2,0,0,10,1,41,45,1,105,2,29,0,0,14,8,0,1444,0,9,2,0,0,0,7,0,10,0,0,10,0,1,0,0,1,1,2044,42,54,0,0,86,0,0,0,1,0,0,1,0,0,0,0,1,883,0,0,0,0,0,1,0,0,0,4,0,4,0,0,268493,41,1631,0,8,0,0,0,0,0,38,0,0,0,0,0,8,69,23376,0,1,1,1,0,2,7,0,638,60,2,0,0,4,1,1560,0,1,262,0,44743,0,0,0,0,6,2,3,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,12,12,12,0,0,0,19328,0,42,0,0,0,5,8,727,14189,19317,0,0,0,0,1,0,7,0,0,0,0,0,0,13075,2,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,350,31,917,11,0,0,974,0,546,0,1,0,690,161,0,0,0,0,0,0,0,0,0,1654,1,0,0,0,9,0,0,0,0,2,688,62,0,0,243,0,0,0,0,0,5495,1,0,16642,19,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,50,1,1,1,0,22,0,0,0,0,9,43,109,0,9,12,0,0,0,0,0,187,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,19,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2339,108,5 +2,0,0,19,0,22,6,0,109,13,17,0,0,7,21,0,45,0,7,7,0,0,0,1,0,2,6,0,4,0,1,0,0,0,3,6,22,53,5,0,127,0,0,0,1,0,0,2,0,0,0,0,2,166,0,0,0,0,0,1,0,0,0,0,0,22,0,0,1455,22,158,0,5,0,0,0,0,0,9,0,0,0,0,0,5,8,112,0,0,3,0,0,4,30,0,406,55,4,0,0,15,0,289,0,29,0,0,996,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,5,0,0,0,0,144,0,66,0,0,0,4,24,54,874,154,0,0,0,0,1,0,6,0,0,0,0,0,0,334,0,2,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,1,0,76,24,210,49,0,0,255,0,2745,0,0,0,155,42,0,0,0,0,0,0,0,0,0,212,1,0,0,0,8,0,0,0,0,3,114,176,0,0,120,0,0,0,0,0,1205,0,0,77,0,0,1,3,0,0,0,0,5,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,20,0,0,0,0,18,27,305,0,13,0,0,0,0,0,0,158,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,0,0,0,0,0,0,0,0,2,547,90,5 +2,0,0,8,1,56,42,1,82,9,15,0,0,9,15,0,1467,0,9,5,0,0,0,8,0,12,6,0,14,0,1,0,0,1,7,18870,57,54,6,0,83,0,0,0,1,0,0,1,0,0,0,0,3,666,0,0,0,0,0,1,0,0,0,3,0,13,0,0,93003,56,1620,0,11,0,0,0,0,0,29,0,0,0,0,0,10,58,15293,0,1,7,1,0,1,0,0,353,30,2,0,0,4,1,1546,0,10,54,0,5796,0,0,0,0,3,2,1,0,0,0,0,1,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,12,12,12,0,0,0,10911,0,64,0,0,0,7,33,578,1856,10880,0,0,0,0,1,0,5,0,0,0,0,0,0,887,2,0,0,0,0,0,0,0,0,0,0,0,89,3,0,0,0,0,0,2,0,218,37,602,9,0,0,537,0,1136,0,1,0,224,23,0,0,0,0,0,0,0,0,0,1639,1,0,0,0,13,0,0,0,0,4,205,42,0,0,65,0,0,0,0,0,6110,1,0,108,17,0,1,1,0,0,0,0,2,0,0,0,2,0,0,0,0,0,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,73,1,1,1,0,27,0,0,0,0,9,64,159,0,19,14,0,1,0,0,0,132,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,15,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2236,70,5 +0,0,0,17,0,138,239,0,1264,51,447,2,1,11,88,2,239,0,8,8,0,0,0,10,6,20,42,0,44,0,14,0,0,0,87,8331,138,286,54,0,1829,0,0,0,1,0,0,4,0,0,0,0,26,765,0,0,0,0,0,1,0,0,0,0,0,47,0,0,174754,138,2425,0,54,0,0,0,0,0,33,0,0,0,0,0,11,57,29118,0,0,87,0,0,4,1149,0,9711,2160,7,1,0,2,0,5258,0,34,45,6,10721,0,0,0,0,45,0,6,0,0,0,0,1,0,0,0,18,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,12,12,12,0,0,0,22546,0,214,0,0,0,54,228,770,5205,22542,0,0,0,0,1,0,10,0,0,0,0,0,0,2102,0,0,0,0,0,0,0,0,0,0,0,0,4,1,4,0,0,0,0,1,0,123,93,858,25,0,0,1013,0,2056,0,0,0,753,176,0,5,0,0,0,0,0,0,0,2301,1,0,0,0,24,0,0,0,0,14,322,2050,0,0,5886,0,0,0,0,0,4226,1,0,759,16,0,1,10,0,0,0,0,9,0,0,0,3,0,0,0,0,0,50,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,16,31,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,193,1,1,1,0,241,0,0,0,0,1,225,516,0,106,14,0,0,0,0,0,2095,7,0,0,0,0,0,0,0,0,0,0,0,2,0,1,61,9,0,0,0,0,0,0,0,0,0,0,0,0,3,3346,309,5 +1,0,0,0,0,18,5,0,31,3,2,1,0,0,3,0,27,0,7,2,0,0,0,2,0,1,3,0,2,0,1,0,0,0,6,0,18,6,3,0,61,0,0,0,1,0,0,3,0,0,0,0,1,119,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1020,18,91,0,3,0,0,0,0,0,13,0,0,0,0,0,2,7,156,0,0,6,0,0,0,5,0,59,0,5,0,0,2,0,79,0,1,0,0,335,0,0,0,0,1,1,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,145,0,66,0,0,0,2,12,39,69,168,0,0,0,0,1,0,0,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,15,134,4,0,0,190,0,421,0,0,0,118,13,0,0,0,0,0,0,3,0,0,76,1,0,0,0,4,0,0,0,0,2,101,100,0,0,0,0,0,0,0,0,110,0,0,131,0,0,1,3,0,0,0,0,7,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,10,0,0,0,0,1,24,265,0,7,0,0,0,0,0,0,66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,0,0,0,0,0,0,0,0,3,176,54,5 +0,0,0,4,0,16,4,0,33,5,9,0,0,0,10,1,680,0,6,1,0,0,0,2,0,2,0,0,1,0,1,0,0,0,6,0,16,78,0,0,1302,0,0,0,1,0,0,1,0,0,0,0,2,296,0,0,0,0,0,1,0,0,0,0,0,10,0,0,16214,16,737,0,4,0,0,0,0,0,7,0,0,0,0,0,2,4,2680,0,0,6,0,0,1,13,0,123,15,2,0,0,2,0,1364,0,5,0,0,1340,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,1729,0,72,0,0,0,2,5,46,123,1722,0,0,0,0,1,0,0,0,0,0,0,0,0,3170,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,9,229,4,0,0,214,0,728,0,0,0,156,133,0,0,0,0,0,0,0,0,0,743,1,0,0,0,3,0,0,0,0,3,104,148,0,0,30,0,0,0,0,0,1997,0,0,3792,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,3,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,1,0,0,0,0,11,22,355,0,4,0,0,0,0,0,0,1932,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1399,147,5 +0,0,0,5,0,23,80,0,146,21,48,0,0,0,25,0,36,0,7,4,0,0,0,1,0,1,9,0,7,0,2,0,0,0,11,0,23,6,10,0,247,0,0,0,1,0,0,6,0,0,0,0,4,177,0,0,0,0,0,1,0,0,2,1,0,36,0,0,1812,23,382,0,9,0,0,0,0,0,25,0,0,0,0,0,1,9,224,0,0,11,0,0,4,128,0,1061,190,9,0,0,2,0,671,0,23,0,0,665,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,20,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,364,0,133,0,0,0,8,29,47,1067,259,0,0,0,0,1,0,0,0,0,0,0,0,0,993,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,26,216,5,0,0,311,0,666,0,0,0,238,76,0,0,0,0,0,0,0,0,0,342,1,0,0,0,5,0,0,0,0,5,117,331,0,0,431,0,0,0,0,3,188,0,0,146,0,0,1,0,0,0,0,0,13,0,2,0,7,0,0,0,0,0,21,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,19,0,0,0,0,1,34,455,0,19,0,0,0,0,0,0,338,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,27,0,0,0,0,0,0,0,0,0,0,0,0,0,6,333,68,5 +2,0,0,14,1,45,101,1,159,21,40,0,1,5,52,0,117,0,9,4,0,0,0,7,3,3,18,0,12,0,1,0,0,1,22,0,46,306,21,0,280,0,0,0,1,0,0,1,0,0,0,0,6,216,0,0,0,0,0,1,0,0,2,1,0,41,0,0,1612,45,464,0,13,0,0,0,0,0,4,0,0,0,1,0,7,9,182,0,1,22,1,0,3,97,0,874,160,1,0,0,4,1,701,0,21,0,6,1768,0,1,1,0,13,0,2,0,0,0,0,1,0,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,330,0,106,0,0,0,12,58,104,1137,247,0,0,0,0,1,0,0,0,0,0,0,0,0,908,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,119,45,448,16,0,0,465,0,1076,0,1,0,241,151,0,0,0,0,0,0,0,0,0,484,1,0,0,0,14,0,0,0,0,7,179,198,0,0,391,0,0,0,0,3,637,0,0,12,0,0,1,0,0,0,0,0,2,0,5,0,7,0,0,0,0,0,26,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,59,1,1,1,0,36,0,0,0,0,9,68,171,0,34,0,0,0,0,0,0,311,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,23,0,0,0,0,0,0,0,0,0,0,0,1,0,1,443,109,5 +2,0,0,3,1,33,28,1,28,2,4,0,0,2,4,0,61,0,9,4,0,0,0,4,0,8,0,0,1,0,1,0,0,1,3,0,34,54,0,0,24,0,0,0,1,0,0,0,0,0,0,0,1,96,0,0,0,0,0,1,0,0,0,3,0,2,0,0,421,33,89,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,42,0,1,3,1,0,1,0,0,106,5,0,0,0,4,1,28,0,1,0,0,466,0,0,0,0,2,2,1,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,44,0,33,0,0,0,0,3,171,20,52,0,0,0,0,1,0,2,0,0,0,0,0,0,200,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,137,22,252,4,0,0,268,0,409,0,1,0,62,18,0,0,0,0,0,0,0,0,0,136,0,0,0,0,8,0,0,0,0,1,133,12,0,0,0,0,0,0,0,1,786,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,42,1,1,1,0,0,0,0,0,0,9,37,28,0,2,8,0,0,0,0,0,41,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,103,39,5 +0,0,0,3,0,28,5,0,10,0,2,0,0,2,2,0,17,0,7,2,0,0,0,6,0,8,0,0,2,0,1,0,0,0,2,0,28,6,0,0,22,0,2,0,1,0,0,2,0,0,0,0,1,111,0,0,0,0,0,1,0,0,0,0,0,2,0,0,8685,28,47,0,1,0,0,0,0,0,14,0,0,0,0,0,7,16,2057,0,0,2,0,0,0,0,0,76,5,2,0,0,2,0,20,0,0,0,0,611,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,84,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,1179,0,125,0,0,0,0,3,184,10,1182,0,0,0,0,1,0,3,0,0,0,0,0,0,3131,0,0,0,0,0,0,0,0,0,0,0,0,2,1,84,0,0,0,0,1,0,32,10,115,3,0,0,141,0,278,0,0,0,43,9,0,0,0,0,0,0,167,0,0,45,1,0,0,0,8,0,0,0,0,0,110,26,0,0,0,0,0,0,0,0,575,0,0,2458,3,0,1,1,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,165,0,0,0,3,321,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,60,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,0,0,0,0,0,1,30,103,0,2,9,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,85,0,0,0,0,0,0,0,2,1213,27,5 +1,0,0,26,2,79,133,2,397,68,63,0,0,6,144,0,1977,0,11,8,0,0,0,11,6,22,30,0,32,0,1,0,0,2,29,1222,81,180,46,0,470,0,0,0,1,0,0,37,0,0,0,0,13,778,0,0,0,0,0,1,0,0,0,36,0,84,0,0,38523,79,2981,0,29,0,0,0,0,0,164,0,0,0,0,7,12,106,7496,0,2,29,2,0,4,149,0,1620,260,56,6,0,6,2,3004,0,73,14,0,5242,0,0,0,0,91,0,24,0,0,0,0,1,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,103,0,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,296,12,12,12,0,0,0,5375,0,387,0,0,0,27,142,532,1680,5258,0,0,0,0,1,0,4,0,0,0,0,0,0,5948,0,0,0,0,0,0,0,0,0,0,0,0,37,1,104,0,0,0,0,1,0,299,127,1353,66,0,0,1221,0,2047,0,2,0,778,161,0,0,0,0,0,0,15,0,0,2731,1,0,0,0,25,0,0,2,0,10,251,609,0,0,723,0,5,0,0,0,6058,1,0,3671,12,0,1,1,0,0,0,0,75,0,0,0,20,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,2,106,1,1,1,0,149,0,0,0,0,17,110,1482,0,71,14,0,0,0,0,0,770,3,0,0,0,0,0,0,0,0,0,0,0,4,0,1,74,0,0,0,0,0,0,0,0,0,0,0,2,0,28,2946,528,5 +1,0,0,20,0,82,171,0,242,59,48,0,1,5,87,0,137,0,7,8,0,0,0,8,10,17,49,0,31,0,0,0,0,0,39,0,82,351,54,0,580,0,0,0,1,0,0,6,0,0,0,0,16,385,0,0,0,0,0,1,0,0,0,10,0,78,0,0,5065,82,797,0,30,0,0,0,0,1,28,0,0,0,0,1,10,23,408,0,0,39,0,0,5,151,0,1648,192,10,0,0,2,0,1272,0,63,0,5,5250,0,0,0,0,15,0,5,0,0,0,0,1,0,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,5,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,58,0,1,0,0,0,0,0,0,0,0,1,1,4,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,10,10,10,0,0,0,405,0,164,0,0,0,30,158,279,1841,402,0,0,0,0,1,0,3,0,2,0,0,0,0,1757,0,0,0,0,0,0,0,0,0,2,0,0,6,1,2,0,0,0,0,1,0,45,98,499,24,0,0,697,0,2308,0,0,0,533,175,0,0,0,0,0,0,4,0,0,698,1,0,0,0,26,0,0,0,0,13,196,481,0,0,477,0,0,0,0,1,1035,0,0,224,3,0,1,1,0,0,0,0,12,0,2,0,7,0,0,0,0,0,60,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,3,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,98,1,1,1,0,115,0,2,0,0,1,121,623,0,88,9,0,1,0,0,0,506,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,69,0,0,0,0,0,0,0,0,0,0,0,0,0,4,693,1028,5 +0,0,0,16,0,23,61,0,184,8,57,0,0,0,24,0,50,0,6,3,0,0,0,2,0,2,18,0,6,0,6,0,0,0,13,0,23,6,284,0,286,0,0,0,1,0,0,1,0,0,0,0,7,166,0,0,0,0,0,1,0,0,0,17,0,16,0,0,880,23,402,0,12,0,0,0,0,0,7,0,0,0,0,0,2,4,80,0,0,13,0,0,1,165,0,1325,265,2,0,0,2,0,844,0,11,0,0,893,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,22,0,0,0,0,0,0,77,0,46,0,0,0,14,933,44,647,96,0,0,0,0,1,0,0,0,0,0,0,0,0,994,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,181,211,27,0,0,264,0,540,0,0,0,167,47,0,0,0,0,0,0,0,0,0,382,1,0,0,0,5,0,0,0,0,8,138,347,0,0,706,0,0,0,0,0,2070,0,0,27,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,27,0,0,0,0,1,36,211,0,32,0,0,0,0,0,0,353,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7862,53,5 +2,0,0,10,1,80,59,1,123,13,29,0,0,9,30,0,1512,0,35,5,0,0,0,8,1,13,15,0,18,0,5,0,0,1,25,10585,81,54,10,0,181,0,0,0,1,0,0,4,0,0,0,0,8,624,0,0,0,0,0,1,0,0,0,3,0,28,0,0,20745,80,1804,0,19,0,0,0,0,0,36,0,0,0,0,0,10,62,3210,0,1,25,1,0,3,40,0,703,90,2,0,0,4,1,1842,0,18,58,0,3595,0,0,0,0,12,2,1,0,0,0,0,1,0,0,0,21,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,1,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,12,12,12,0,0,0,1136,0,131,0,0,0,17,56,607,1176,1114,0,0,0,0,1,0,5,0,0,0,0,0,0,727,2,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,1,0,217,45,629,11,0,0,645,0,930,0,1,0,317,72,0,0,0,0,0,0,0,0,0,1797,1,0,0,0,14,0,0,0,0,8,224,136,0,0,218,0,2,0,0,0,5482,1,0,219,17,0,1,1,0,0,0,0,5,0,0,0,2,0,0,0,0,0,13,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,17,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,102,1,1,1,0,50,0,0,0,0,9,106,208,0,37,14,0,0,0,0,0,244,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,21,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2175,204,5 +1,0,0,15,0,61,176,0,244,42,79,0,1,5,75,0,54,0,8,7,0,0,0,8,1,11,12,0,12,0,1,0,0,0,29,0,61,110,24,0,516,0,0,0,1,0,0,3,0,0,0,0,6,296,0,0,0,0,0,1,0,0,9,1,0,67,0,0,2793,61,661,0,11,0,0,0,0,0,19,0,0,0,0,0,9,20,290,0,0,29,0,0,6,194,0,1659,300,6,0,0,19,0,1106,0,47,3,5,2144,0,0,0,0,12,1,4,0,0,0,0,1,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,32,0,1,0,0,0,0,0,0,0,0,0,1,8,1,0,0,0,0,9,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,10,10,10,0,0,0,400,0,133,0,0,0,10,43,214,1959,291,0,0,0,0,1,0,3,0,2,0,0,0,0,1447,1,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,1,0,37,71,410,17,3,0,573,0,1384,1,2,0,424,152,0,0,0,0,0,0,0,0,0,642,1,0,0,0,16,0,0,0,0,5,188,480,0,0,693,0,0,0,0,13,457,0,0,114,3,0,1,1,1,0,0,0,7,0,1,0,11,0,0,0,0,0,43,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,3,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,82,1,1,1,0,33,0,0,0,0,1,90,368,0,27,9,0,0,0,0,0,507,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,50,0,0,0,0,0,0,0,0,0,0,0,0,0,4,503,168,5 +0,0,0,0,0,10,3,0,18,0,1,0,1,0,2,0,27,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,25,0,0,10,0,0,0,1,0,0,1,1,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,0,0,0,67,10,48,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,15,0,0,1,0,0,1,0,0,12,0,4,0,0,4,0,35,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,22,0,26,0,0,0,0,3,26,5,36,0,0,0,0,1,0,1,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,15,97,0,0,0,110,0,478,0,0,0,28,0,0,0,0,0,0,0,0,0,0,58,1,0,2,0,2,0,0,0,0,0,93,9,0,0,0,0,0,0,0,0,53,0,0,12,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,25,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,37,5 +3,0,0,6,1,48,41,1,80,2,20,0,0,2,7,0,72,0,9,3,0,0,0,6,0,9,0,0,4,0,1,0,0,1,10,0,49,57,9,0,105,0,0,0,1,0,0,2,0,0,0,0,2,156,0,0,0,0,0,1,0,0,0,5,0,15,0,0,1495,48,185,0,3,0,0,0,0,0,12,0,0,0,0,0,7,15,100,0,1,10,1,0,4,43,0,468,65,4,0,0,4,1,232,0,3,0,0,684,0,0,0,0,8,3,3,0,0,0,0,1,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,110,0,87,0,0,0,2,15,196,301,113,0,0,0,0,1,0,2,0,0,0,0,0,0,452,3,0,0,0,0,0,0,0,0,0,0,0,2,4,2,0,0,0,0,1,0,137,24,336,7,0,0,484,0,865,0,1,0,228,87,0,0,0,0,0,0,0,0,0,231,1,0,0,0,9,0,0,0,0,1,148,216,0,0,138,0,1,0,0,2,618,0,0,23,3,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,61,1,1,1,0,21,0,0,0,0,9,59,383,0,5,9,0,0,0,0,0,143,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,0,216,78,5 +2,0,0,6,1,43,35,1,71,2,9,0,0,9,6,0,965,0,9,2,0,0,0,7,0,10,0,0,6,0,1,0,0,1,5,9804,44,54,0,0,58,0,0,0,1,0,0,1,0,0,0,0,1,517,0,0,0,0,0,1,0,0,0,4,0,2,0,0,31925,43,1062,0,4,0,0,0,0,0,19,0,0,0,0,0,8,32,5727,0,1,5,1,0,1,0,0,297,30,2,0,0,4,1,985,0,1,27,0,2232,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,3120,0,47,0,0,0,2,5,424,697,3112,0,0,0,0,1,0,6,0,0,0,0,0,0,2186,0,0,0,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,1,0,218,28,388,7,0,0,435,0,508,0,1,0,162,5,0,0,0,0,0,0,4,0,0,1104,1,0,0,0,9,0,0,0,0,2,165,27,0,0,29,0,0,0,0,0,3576,1,0,1667,9,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,1,50,1,1,1,0,9,0,0,0,0,9,49,89,0,5,12,0,0,0,0,0,106,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1791,46,5 +9,0,0,23,0,64,9,0,84,30,19,1,1,3,50,1,90,0,7,7,0,0,0,2,11,5,21,0,30,0,10,0,0,0,29,0,64,199,57,0,265,0,0,0,1,0,0,5,0,0,0,0,26,445,0,0,0,0,0,1,0,0,0,0,0,31,0,0,7519,64,353,0,40,0,0,0,0,0,21,0,0,0,0,0,2,8,464,0,0,29,0,0,1,19,0,381,35,8,0,0,2,0,442,0,23,0,5,2193,0,0,0,0,4,0,3,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,9,0,0,1,3,0,0,0,9,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,88,0,0,0,0,0,0,514,0,152,0,0,0,52,354,143,436,492,0,0,0,0,1,0,1,0,0,0,0,0,0,1378,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,15,66,885,28,0,0,503,0,3157,0,0,0,348,136,0,0,0,0,0,0,0,0,0,265,1,0,0,0,20,0,0,0,0,25,177,255,0,0,82,0,0,0,0,0,1327,0,0,930,0,0,1,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,27,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,105,1,1,1,0,108,0,0,0,0,1,93,475,0,66,0,0,0,0,0,0,200,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,32,0,0,0,0,0,0,0,4,0,0,0,0,0,3,764,254,5 +0,0,0,6,0,41,99,0,208,25,56,0,0,2,31,0,720,0,7,5,0,0,0,6,0,12,6,0,7,0,1,0,0,0,8,898,41,6,8,0,318,0,0,0,1,0,0,7,0,0,0,0,3,397,0,0,0,0,0,1,0,0,2,1,0,45,0,0,52111,41,1166,0,5,0,0,0,0,0,39,0,0,0,0,0,8,23,8700,0,0,8,0,0,5,162,0,1390,255,14,0,0,2,0,1522,0,28,0,0,1953,0,0,0,0,13,0,8,0,0,0,0,1,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,17,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,8123,0,124,0,0,1,4,22,240,1277,8116,0,0,0,0,1,0,5,0,0,0,0,0,0,1292,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,323,39,442,6,0,0,592,0,759,1,0,0,403,32,0,0,0,0,0,0,0,0,0,1123,1,0,0,0,11,0,0,0,0,3,195,433,0,0,618,0,1,0,0,2,2259,1,0,373,6,0,1,1,1,0,0,0,17,0,1,0,10,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,6,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,18,0,0,0,0,1,49,573,0,14,12,0,0,0,0,0,390,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,33,0,0,0,0,0,0,0,0,0,0,0,0,0,6,672,156,5 +0,0,0,3,0,12,2,0,9,0,3,0,0,0,3,0,15,0,6,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,11,0,0,0,1,0,0,1,0,0,0,0,0,67,0,0,0,0,0,1,0,0,0,0,0,3,0,0,6594,12,38,0,1,0,0,0,0,0,7,0,0,0,0,0,2,4,1580,0,0,2,0,0,0,0,0,10,0,1,0,0,2,0,9,0,1,0,0,435,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,827,0,40,0,0,0,0,3,32,5,839,0,0,0,0,1,0,0,0,0,0,0,0,0,1932,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,6,110,3,0,0,141,0,226,0,0,0,75,7,0,0,0,0,0,0,5,0,0,38,1,0,0,0,3,0,0,0,0,0,99,61,0,0,0,0,0,0,0,6,424,0,0,1568,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,14,204,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,836,72,5 +0,0,0,3,0,11,2,0,15,2,3,0,0,0,5,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,14,0,7,0,1,0,0,7,0,0,0,0,0,229,0,0,0,0,0,1,0,0,0,0,0,5,0,0,13270,11,97,0,1,0,0,0,0,0,37,0,0,0,0,0,1,16,2402,0,0,2,0,0,0,0,0,20,0,13,0,0,2,0,20,0,3,0,0,290,0,0,0,0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1772,0,83,0,0,0,0,3,25,1834,1784,0,0,0,0,1,0,0,0,0,0,0,0,0,3082,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,8,6,145,3,0,0,219,0,334,0,0,0,153,15,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,102,118,0,0,0,0,0,0,0,0,1056,0,0,4239,0,0,1,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,536,0,1,0,0,1,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1382,75,5 +4,0,0,10,1,93,127,1,210,25,54,0,0,9,36,0,2329,0,9,6,0,0,0,8,0,14,9,0,16,0,1,0,0,1,38,33166,94,54,14,0,278,0,0,0,1,0,0,1,0,0,0,0,4,824,0,0,0,0,0,1,0,0,2,8,14,38,0,0,142059,93,2781,0,13,0,0,0,0,0,47,0,0,0,0,0,10,66,31190,0,1,38,1,0,3,97,0,1175,190,2,0,0,4,1,2897,0,29,68,0,7618,0,0,0,0,17,4,4,0,0,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,1,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,12,12,12,0,0,0,26427,0,135,0,0,0,9,71,744,3207,26238,0,0,0,0,1,0,7,0,0,0,0,0,0,1505,4,0,0,0,0,0,0,0,0,0,0,0,42,5,0,0,0,0,0,1,0,221,61,762,11,0,0,834,0,882,0,1,0,493,125,0,0,0,0,0,0,0,0,0,2774,1,0,0,0,14,0,0,0,0,5,254,257,0,0,461,0,6,0,0,3,9230,1,0,291,27,0,1,1,0,0,0,0,2,0,5,0,6,0,0,0,0,0,26,0,0,1,12,8,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,27,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,121,1,1,1,0,63,0,0,0,0,9,132,252,0,26,14,0,3,0,0,0,369,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,33,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2749,140,5 +18,0,0,13,0,123,39,0,96,21,31,0,0,6,80,0,857,0,8,9,0,0,0,8,3,19,48,0,34,0,2,6,0,0,79,1521,123,48,50,0,319,0,0,0,1,0,0,3,0,0,0,0,18,529,0,0,0,0,0,1,0,0,0,0,0,35,0,0,108239,123,1242,0,38,0,0,0,0,0,47,0,0,0,0,0,9,80,17619,0,0,79,0,0,2,36,0,670,70,3,0,0,2,0,1531,0,23,69,0,12811,0,0,0,0,13,12,4,12,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,19,0,7,6,0,0,0,0,0,0,2,0,0,0,0,0,4,0,8,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,70,12,12,12,0,0,0,13258,0,191,0,0,0,39,231,842,2771,13229,0,0,0,0,1,0,12,0,0,0,0,0,0,1759,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,2,0,86,40,997,16,0,0,927,0,740,4,0,0,649,75,0,0,0,0,0,0,0,0,0,1117,1,0,0,0,20,0,0,0,0,9,523,166,0,0,213,0,0,0,0,0,22770,1,0,880,21,0,1,1,0,0,0,0,7,0,0,0,3,0,0,0,0,0,23,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,21,8,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,182,1,1,1,0,127,0,0,0,0,1,202,911,0,95,14,0,0,0,0,0,284,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,27,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4487,144,5 +0,0,0,4,0,14,3,0,26,2,8,0,0,0,6,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,14,6,0,0,29,0,0,0,1,0,0,3,0,0,0,0,0,114,0,0,0,0,0,1,0,0,0,0,0,8,0,0,6916,14,67,0,1,0,0,0,0,0,11,0,0,0,0,1,1,6,1573,0,0,2,0,0,1,10,0,96,20,5,0,0,2,0,68,0,4,0,0,177,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,830,0,31,0,0,0,0,3,35,63,839,0,0,0,0,1,0,0,0,0,0,0,0,0,1982,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,8,7,95,4,0,0,182,0,352,0,0,0,105,9,0,0,0,0,0,0,2,0,0,65,1,0,0,0,2,0,0,0,0,0,96,107,0,0,40,0,0,0,0,1,418,0,0,1584,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,16,312,0,1,0,0,0,0,0,0,45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,821,42,5 +1,0,0,13,1,57,31,1,62,16,8,0,1,4,33,0,158,0,9,9,0,0,0,6,8,13,12,0,22,0,1,0,0,1,17,4,58,325,22,0,119,0,0,0,1,0,0,1,0,0,0,0,14,232,0,0,0,0,0,1,0,0,0,2,0,17,0,0,2393,57,302,0,21,0,0,0,0,0,6,0,0,0,0,0,9,17,364,0,1,17,1,0,1,0,0,244,5,0,0,0,4,1,291,0,14,0,3,2051,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,12,12,12,0,0,0,104,0,83,0,0,0,26,70,266,147,107,0,0,0,0,1,0,4,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,168,49,454,15,0,0,380,0,2248,0,1,0,131,70,0,0,0,0,0,0,0,0,0,306,1,0,0,0,23,0,0,0,0,13,171,9,0,0,0,0,0,0,0,0,1014,1,0,1,4,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,73,1,1,1,0,34,0,0,0,0,9,75,41,0,37,11,0,0,0,0,0,113,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,18,0,0,0,0,0,0,0,0,0,0,0,1,0,0,777,89,5 +0,0,0,0,0,9,2,0,17,0,1,0,0,0,2,0,22,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,1,1,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,0,0,0,69,9,42,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,15,0,0,0,0,0,0,0,0,10,0,4,0,0,2,0,17,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,22,0,25,0,0,0,0,3,25,5,35,0,0,0,0,1,0,1,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,91,0,0,0,103,0,463,0,0,0,24,0,0,0,0,0,0,0,0,0,0,50,1,0,2,0,2,0,0,0,0,0,91,9,0,0,0,0,0,0,0,0,34,0,0,12,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,24,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,31,5 +0,0,0,9,0,11,3,0,20,4,9,0,0,0,8,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,35,0,0,0,1,0,0,2,0,0,0,0,0,95,0,0,0,0,0,1,0,0,0,0,0,9,0,0,445,11,58,0,1,0,0,0,0,0,8,0,0,0,0,0,1,4,36,0,0,2,0,0,1,8,0,80,15,3,0,0,2,0,59,0,5,0,0,388,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,44,0,37,0,0,0,0,3,26,781,57,0,0,0,0,1,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,14,98,10,0,0,131,0,344,0,0,0,72,5,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,0,96,75,0,0,54,0,0,0,0,1,34,0,0,42,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,145,0,1,0,0,0,0,0,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,88,43,5 +33,0,0,9,1,124,138,1,333,35,50,0,0,9,43,0,1633,0,9,5,0,0,0,8,0,14,9,0,13,0,1,0,0,1,64,55602,125,54,11,0,383,0,0,0,1,0,0,15,0,0,0,0,4,772,0,0,0,0,0,1,0,0,0,68,0,47,0,0,495412,124,2378,0,10,0,0,0,0,0,178,0,0,0,0,0,9,70,113519,0,1,64,1,0,3,107,0,1488,195,27,0,0,4,1,2442,0,37,71,0,21029,0,0,0,0,45,33,34,0,0,0,0,1,0,0,0,75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,173,0,1,0,0,0,0,0,0,0,0,0,1,4,33,0,0,0,0,2,0,0,0,3,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,12,12,12,0,0,0,96452,0,249,0,0,0,8,71,1359,5413,96324,0,0,0,0,1,0,44,0,0,0,0,0,0,3284,34,0,0,0,0,0,0,0,0,0,0,0,15,33,0,0,0,0,0,1,0,254,64,1109,10,0,0,1032,0,1572,0,1,0,693,285,0,0,0,0,0,0,0,0,0,2215,1,0,0,0,13,0,0,0,0,5,307,546,0,0,584,0,0,0,0,0,14479,1,0,448,89,0,1,1,0,0,0,0,36,0,0,0,12,0,0,0,0,0,35,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,89,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,299,1,1,1,0,55,0,0,0,0,9,189,372,0,23,14,0,0,0,0,0,476,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,43,0,0,0,0,0,0,0,0,0,0,0,1,0,13,8987,341,5 +1,0,0,5,0,19,9,0,30,0,10,0,0,0,4,0,18,0,7,2,0,0,0,1,0,0,0,0,3,0,1,0,0,0,6,0,19,6,3,0,46,0,0,0,1,0,0,1,0,0,0,0,1,59,0,0,0,0,0,1,0,0,0,0,0,11,0,0,215,19,70,0,4,0,0,0,0,0,4,0,0,0,0,0,1,3,21,0,0,6,0,0,2,21,0,187,30,1,0,0,2,0,108,0,1,0,0,315,0,0,1,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,49,0,0,0,2,6,42,139,56,0,0,0,0,1,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,116,5,0,0,102,0,199,0,0,0,37,5,0,0,0,0,0,0,0,0,0,78,1,0,0,0,3,0,0,0,0,1,102,41,0,0,63,0,0,0,0,0,50,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,4,0,0,0,0,1,25,10,0,4,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,92,26,5 +0,0,0,18,0,63,7,0,115,34,18,1,1,3,55,0,96,0,7,9,0,0,0,11,2,6,24,0,33,0,1,0,0,0,37,0,63,314,70,0,296,0,0,0,1,0,0,6,0,0,0,0,17,263,0,0,0,0,0,1,0,0,0,1,0,46,0,0,2788,63,381,0,34,0,0,0,0,0,23,0,0,0,0,0,4,13,262,0,0,37,0,0,1,36,0,474,25,8,0,0,2,0,548,0,35,0,6,3673,0,0,0,0,4,0,5,0,1,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,314,0,169,0,0,0,34,100,113,642,294,0,0,0,0,1,0,4,0,0,0,0,0,0,674,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,19,68,441,20,0,0,361,0,1390,0,0,0,229,114,0,0,0,0,0,0,0,0,0,303,1,0,0,0,22,0,0,0,0,15,172,164,0,0,66,0,0,0,0,1,969,0,0,109,0,0,1,0,0,0,0,0,13,0,0,0,4,0,0,0,0,0,36,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,78,1,1,1,0,90,0,0,0,0,8,100,272,0,64,0,0,0,0,0,0,269,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,36,0,0,0,0,0,0,0,0,0,0,0,0,0,7,669,166,5 +0,0,0,4,0,15,15,0,44,0,12,0,0,0,3,0,18,0,6,2,0,0,0,1,0,1,0,0,2,0,1,0,0,0,5,0,15,6,7,0,61,0,0,0,1,0,0,3,0,0,0,0,1,124,0,0,0,0,0,1,0,0,0,0,0,9,0,0,445,15,98,0,3,0,0,0,0,0,11,0,0,0,0,0,1,5,51,0,0,5,0,0,2,33,0,278,45,5,0,0,2,0,157,0,0,0,0,232,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,69,0,68,0,0,0,2,12,31,245,76,0,0,0,0,1,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,101,4,0,0,158,0,325,0,0,0,97,9,0,0,0,0,0,0,0,0,0,98,1,0,0,0,3,0,0,0,0,1,97,119,0,0,104,0,0,0,0,0,68,0,0,32,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,15,0,0,0,0,1,20,248,0,4,0,0,0,0,0,0,97,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,141,19,5 +1,0,0,14,0,58,65,0,128,60,34,0,2,3,80,0,85,0,7,9,0,0,0,5,2,8,21,0,15,0,1,0,0,0,26,0,58,338,36,0,331,0,0,0,1,0,0,2,0,0,0,0,8,230,0,0,0,0,0,1,0,0,2,1,0,74,0,0,364918,58,434,0,17,0,0,0,0,0,7,0,0,0,0,0,7,10,87408,0,0,26,0,0,2,93,0,817,145,4,0,0,2,0,772,0,65,0,6,4813,0,0,0,0,44,0,3,0,0,0,0,1,0,0,0,15,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,44003,0,108,0,0,0,16,84,133,1196,44014,0,0,0,0,1,0,0,0,0,0,0,0,0,44294,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,18,74,382,15,0,0,348,0,1113,0,0,0,214,103,0,0,0,0,0,0,0,0,0,404,1,0,0,0,16,0,0,0,0,8,182,195,0,0,346,0,0,0,0,2,51469,0,0,130234,0,0,1,0,0,0,0,0,4,0,1,0,4,0,0,0,0,0,62,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,81,1,1,1,0,75,0,0,0,0,1,84,110,0,45,0,0,0,0,0,0,354,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,62,0,0,0,0,0,0,0,0,0,0,0,0,0,3,43500,168,5 +0,0,0,3,0,9,2,0,3,0,3,0,0,0,3,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,3,0,0,60,9,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,21,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,8,0,1,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,20,0,27,0,0,0,0,3,23,4,34,0,0,0,0,1,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,41,3,0,0,39,0,31,0,0,0,9,2,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,91,5,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,9,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,1,5 +0,0,0,8,1,35,52,1,112,23,21,0,0,0,36,0,106,0,33,3,0,0,0,1,1,3,18,0,8,0,4,0,0,1,14,0,36,145,17,0,177,0,0,0,1,0,0,5,0,0,0,0,6,236,0,0,0,0,0,1,0,0,0,0,0,41,0,0,2801,35,350,0,12,0,0,0,0,0,18,0,0,0,0,0,1,9,249,0,1,14,1,0,3,51,0,498,75,7,0,0,4,1,448,0,31,0,0,1176,0,0,0,0,10,0,4,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,288,0,120,0,0,0,12,52,69,573,288,0,0,0,0,1,0,0,0,0,0,0,0,0,1048,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,124,47,534,9,0,0,604,0,1581,0,1,0,385,61,0,0,0,0,0,0,0,0,0,360,1,0,0,0,5,0,0,0,0,5,299,192,0,0,192,0,0,0,0,0,537,0,0,526,0,0,1,0,0,0,0,0,11,0,0,0,5,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,40,1,1,1,0,57,0,0,0,0,9,50,233,0,33,0,0,0,0,0,0,211,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,25,0,0,0,0,0,0,0,0,0,0,0,1,0,3,561,726,5 +3,0,0,7,0,39,4,0,48,5,7,0,2,1,28,0,54,0,7,7,0,0,0,6,3,1,12,0,14,0,1,0,0,0,16,0,39,66,20,0,103,0,0,0,1,0,0,1,0,0,0,0,7,149,0,0,0,0,0,1,0,0,0,0,0,29,0,0,884,39,158,0,15,0,0,0,0,0,5,0,0,0,2,0,8,10,86,0,0,16,0,0,1,8,0,158,15,1,0,0,2,0,203,0,12,0,3,1220,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,18,0,0,0,0,0,0,115,0,69,0,0,0,14,49,79,210,152,0,0,0,0,1,0,0,0,0,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,15,297,10,0,0,293,0,1680,0,0,0,101,60,0,0,0,0,0,0,0,0,0,151,1,0,0,0,16,0,0,0,0,7,120,53,0,0,32,0,0,0,0,0,287,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,45,1,1,1,0,21,0,0,0,0,13,57,140,0,28,0,0,0,0,0,0,106,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,167,53,5 +12,0,0,15,1,90,242,1,594,46,175,2,0,2,83,0,566,0,9,4,0,0,0,29,0,9,3,0,4,0,1,0,0,1,57,0,91,379,2,0,1042,0,0,0,1,0,0,3,0,0,0,0,2,454,0,3,0,0,0,1,0,0,0,3,0,75,0,0,5925,90,1744,0,3,0,0,0,0,0,42,0,0,0,0,0,31,41,1087,0,1,57,1,0,4,540,0,4376,840,5,0,0,4,1,3092,0,67,0,0,3071,0,0,11,0,5,1,3,0,0,0,0,1,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,82,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,10,10,10,0,0,0,849,0,331,0,0,0,2,14,298,2571,1071,0,0,0,0,1,1,2,0,0,0,0,0,0,3170,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,3,0,170,122,762,28,0,0,966,0,3802,0,1,0,713,94,0,0,0,0,0,0,0,0,0,1673,0,0,0,0,33,0,0,0,0,2,293,1045,0,0,1857,0,39,0,0,1,242659,0,0,730,3,0,1,5,0,0,0,0,7,0,0,0,2,0,0,0,0,0,46,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,3,1,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,117,1,1,1,0,10,0,0,0,0,9,148,360,0,8,9,0,0,0,0,0,1268,20,0,0,0,0,0,0,0,0,0,0,0,2,0,1,54,0,0,0,0,0,0,0,0,0,0,0,1,0,4,1497,346,5 +0,0,0,14,0,41,104,0,179,40,53,1,1,3,64,1,69,0,7,6,0,0,0,1,1,5,18,0,16,0,1,0,0,0,18,0,41,441,22,0,382,0,0,0,1,0,0,6,0,0,0,0,6,253,0,0,0,0,0,1,0,0,2,2,0,56,0,0,3763,41,529,0,17,0,0,0,0,0,23,0,0,0,0,0,1,9,625,0,0,18,0,0,4,147,0,1232,230,9,0,0,2,0,955,0,42,0,6,1904,0,0,0,0,14,0,0,0,6,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,659,0,147,0,0,0,12,63,102,1303,492,0,0,0,0,1,0,0,0,0,0,0,0,0,1533,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,38,54,377,16,0,0,398,0,1468,0,0,0,298,149,0,0,0,0,0,0,4,0,0,482,1,0,0,0,8,0,0,0,0,7,190,313,0,0,530,0,0,0,0,3,817,0,0,336,0,0,1,0,0,0,0,0,19,0,2,0,8,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,66,1,1,1,0,52,0,0,0,0,1,59,245,0,40,0,0,0,0,0,0,416,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,44,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1697,352,5 +0,0,0,11,0,35,4,0,47,14,6,1,1,3,26,0,55,0,7,5,0,0,0,3,1,3,12,0,11,0,2,0,0,0,11,0,35,119,19,0,137,0,0,0,1,0,0,6,0,0,0,0,6,196,0,0,0,0,0,1,0,0,0,0,0,8,0,0,6139,35,206,0,13,0,0,0,0,0,29,0,0,0,0,0,3,12,1106,0,0,11,0,0,0,0,0,73,0,9,1,0,2,0,193,0,6,0,5,1276,0,0,0,0,4,0,5,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,692,0,118,0,0,0,12,44,81,150,699,0,0,0,0,1,0,1,0,0,0,0,0,0,921,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,13,25,231,12,0,0,314,0,807,0,0,0,212,37,0,0,0,0,0,0,6,0,0,150,1,0,0,0,9,0,0,0,0,7,141,135,0,0,0,0,4,0,0,0,418,0,0,544,0,0,1,0,0,0,0,0,11,0,0,0,2,0,0,0,0,0,16,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,29,0,0,0,0,1,46,331,0,28,0,0,0,0,0,0,87,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,6,607,89,5 +7,0,0,7,1,64,55,1,91,3,20,0,0,10,7,0,201,0,9,5,0,0,0,8,0,14,9,0,18,0,1,0,0,1,13,18062,65,54,11,0,81,0,0,0,1,0,0,4,0,0,0,0,4,663,0,0,0,0,0,1,0,0,0,13,0,4,0,0,123764,64,433,0,15,0,0,0,0,0,68,0,0,0,0,0,9,86,21375,0,1,13,1,0,1,0,0,453,35,7,0,0,4,1,336,0,2,83,0,7323,0,0,0,0,7,7,6,0,0,0,0,1,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,37,0,1,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,0,0,3,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,12,12,12,0,0,0,15494,0,105,0,0,0,11,84,807,1920,15430,0,0,0,0,1,0,10,0,0,0,0,0,0,1076,7,0,0,0,0,0,0,0,0,0,0,0,14,8,0,0,0,0,0,1,0,240,32,592,8,0,0,596,0,756,0,1,0,277,99,0,0,0,0,0,0,0,0,0,393,1,0,0,0,13,0,0,0,0,5,216,89,0,0,110,0,0,0,0,0,4515,1,0,479,35,0,1,1,0,0,0,0,7,0,0,0,2,0,0,0,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,105,1,1,1,0,67,0,0,0,0,9,78,167,0,28,14,0,0,0,0,0,156,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,3,3193,100,5 +12,0,0,9,1,90,100,1,247,11,39,0,0,9,16,0,1780,0,9,9,0,0,0,9,3,10,0,0,24,0,6,0,0,1,45,34403,91,178,36,0,275,0,0,0,1,0,0,14,0,0,0,0,16,1094,0,0,0,0,0,1,0,0,0,22,0,17,0,0,168059,90,2298,0,27,0,0,0,0,0,117,0,0,0,0,0,10,55,41338,0,1,45,1,0,3,97,0,1301,155,26,0,0,4,1,2359,0,11,33,0,12977,0,0,0,0,46,11,15,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,3,0,58,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,50,0,1,0,0,0,0,0,0,0,0,0,1,0,11,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,12,12,12,0,0,0,32555,0,233,0,0,0,33,54,721,37687,32539,0,0,0,0,1,0,27,0,1,0,0,0,0,1962,11,0,0,0,0,0,0,0,0,8,0,0,14,12,0,0,0,0,0,1,2,250,41,1066,10,0,0,1178,0,1582,0,1,0,789,145,0,0,0,0,0,0,0,0,0,2200,1,0,0,0,21,0,0,0,0,4,349,626,0,0,768,0,0,0,0,2,9518,1,0,669,29,0,1,1,0,0,0,0,36,0,0,0,2,0,0,0,0,0,10,1,0,0,44,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,29,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,141,1,1,1,0,53,0,0,0,6,9,136,1391,0,28,12,0,0,0,0,0,480,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,21,0,0,0,0,0,0,0,0,0,0,0,1,0,13,4652,281,5 +4,0,0,16,0,125,23,0,147,50,42,0,1,9,91,0,1411,0,7,9,0,0,0,11,22,16,18,0,52,0,3,0,0,0,74,13510,125,134,70,0,386,0,0,0,1,0,0,5,0,0,0,0,31,544,0,1,0,0,0,1,0,0,0,0,0,49,0,0,17138,125,1856,0,51,0,0,0,0,0,28,0,0,0,0,0,13,37,1919,0,0,74,0,0,1,62,0,1031,140,5,0,0,2,0,2019,0,45,43,6,3927,0,0,0,0,30,0,0,0,0,0,0,1,0,0,0,24,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,130,12,12,12,0,0,0,855,0,225,0,0,0,61,182,488,1957,673,0,0,0,0,1,0,4,0,0,0,0,0,0,787,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,2,90,80,809,26,0,0,667,0,921,0,0,0,461,53,0,0,0,0,0,0,0,0,0,1731,1,0,0,0,42,0,0,0,0,31,281,183,0,0,301,0,0,0,0,10,4186,1,0,82,11,0,1,1,0,0,0,0,9,0,0,0,1,0,0,0,0,0,47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,11,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,186,1,1,1,0,104,0,0,0,0,1,199,306,0,75,14,0,0,0,0,0,339,4,0,0,0,0,0,0,0,0,0,0,0,2,0,2,56,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2360,232,5 +6,0,0,19,1,78,94,1,231,19,53,1,1,4,46,0,108,0,20,7,0,0,0,1,0,6,15,0,12,0,1,0,0,1,36,0,79,300,29,0,421,0,0,0,1,0,0,2,0,0,0,0,6,308,0,0,0,0,0,1,0,0,0,0,0,33,0,0,4823,78,516,0,13,0,0,0,0,0,7,0,0,0,0,0,1,4,112,0,1,36,1,0,4,156,0,1301,215,2,0,0,4,1,926,0,26,0,5,3209,0,0,0,0,2,1,4,0,0,0,0,1,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,139,0,120,0,0,0,12,66,149,1219,163,0,0,0,0,1,0,0,0,0,0,0,0,0,768,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,121,56,569,24,0,0,619,0,1840,0,1,0,339,91,0,0,0,0,0,0,0,0,0,558,1,0,0,0,8,0,0,0,0,5,207,371,0,0,528,0,0,0,0,3,666,0,0,34,0,0,1,0,1,0,0,0,4,0,0,0,7,0,0,0,0,0,25,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,107,1,1,1,0,82,0,0,0,0,9,115,295,0,34,0,0,0,0,0,0,416,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,25,0,0,0,0,0,0,0,0,0,0,0,1,0,3,345,153,5 +0,0,0,13,0,60,69,0,266,47,68,0,1,5,64,0,1180,0,7,5,0,0,0,8,0,12,6,0,7,0,1,0,0,0,16,1035,60,227,6,0,555,0,0,0,1,0,0,9,1,0,0,0,3,493,0,1,0,0,0,1,0,0,0,0,0,77,0,0,39478,60,1734,0,5,0,0,0,1,0,56,0,0,0,1,0,10,29,7410,0,0,16,0,0,5,198,0,1667,270,17,0,0,2,0,2208,0,51,0,3,3985,0,0,0,0,8,0,13,0,0,0,0,1,0,0,0,21,12,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,11,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,55,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,12,12,12,0,0,0,6037,0,211,0,0,0,4,19,318,1521,6047,0,0,0,0,1,0,7,0,0,0,0,0,0,2279,0,0,0,0,1,0,0,0,0,0,0,0,9,1,0,0,0,0,0,1,0,44,69,487,14,0,0,764,0,881,0,0,0,571,89,0,0,0,0,0,0,0,0,0,1660,1,0,4,0,13,0,0,0,0,3,175,713,0,0,606,0,1,0,0,2,3880,1,0,1378,9,0,1,1,0,0,0,0,27,0,0,0,3,0,0,0,0,0,50,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,9,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,77,1,1,1,0,12,0,0,0,0,1,76,1224,0,14,12,0,0,0,0,0,651,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,55,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1538,165,5 +3,0,0,8,0,48,35,0,84,0,28,0,0,8,9,0,1108,0,7,5,0,0,0,7,0,11,3,0,32,0,7,0,0,0,5,6089,48,6,4,0,71,0,0,0,1,0,0,3,0,0,0,0,8,396,0,0,0,0,0,1,0,0,0,0,1,8,0,0,60027,48,1359,0,36,0,0,0,0,0,61,0,0,0,0,0,10,101,8045,0,0,5,0,0,1,7,0,486,45,5,0,0,2,0,1272,0,2,75,0,6807,0,0,0,0,3,3,4,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,5263,0,84,0,0,0,28,36,482,2916,5252,0,0,0,0,1,0,8,0,0,0,0,0,0,2393,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,130,29,331,10,0,0,388,0,430,0,0,0,201,21,0,0,0,0,0,0,0,0,0,1279,1,0,0,0,12,0,0,0,0,7,152,105,0,0,163,0,13,0,0,0,4092,1,0,1729,20,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,20,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,85,0,0,0,0,1,53,407,0,41,12,0,0,0,0,0,123,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1552,147,5 +8,0,0,18,3,90,118,3,235,33,51,0,1,9,66,1,317,0,13,8,0,0,0,9,5,16,36,0,22,0,1,4,0,3,24,239,93,397,24,0,336,0,0,0,1,0,0,4,0,0,0,0,13,463,0,0,0,0,0,1,0,0,0,5,0,38,0,0,8984,90,781,0,25,0,0,0,0,0,26,0,0,0,0,0,14,29,1452,0,3,24,3,0,9,101,0,1229,185,8,0,0,8,3,1024,0,24,0,6,4664,0,0,4,0,12,4,8,0,0,0,0,1,0,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,45,0,1,0,0,0,0,0,0,0,0,0,1,4,3,0,0,0,0,2,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,12,12,12,0,0,0,920,0,179,0,0,0,24,109,404,1058,895,0,0,0,0,1,0,4,0,0,0,0,0,0,1838,3,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,1,0,409,89,1018,22,0,0,993,0,2321,0,3,0,397,228,0,1,0,0,0,0,0,0,0,811,1,0,0,0,22,0,0,0,0,13,253,292,0,0,418,0,0,0,0,5,2433,1,0,967,6,0,1,4,0,0,0,0,9,0,0,0,4,0,0,0,0,0,46,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,6,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,142,1,1,1,0,87,0,0,0,0,25,117,413,0,67,12,0,0,0,0,0,401,8,0,0,0,0,0,0,0,0,0,0,0,4,0,1,45,2,0,0,0,0,0,0,0,0,0,0,3,0,4,1172,284,5 +0,0,0,11,0,30,89,0,153,25,44,0,1,3,41,0,62,0,7,6,0,0,0,1,1,5,18,0,12,0,1,0,0,0,13,0,30,92,23,0,295,0,0,0,1,0,0,3,0,0,0,0,6,165,0,0,0,0,0,1,0,0,3,1,0,41,0,0,1374,30,429,0,13,0,0,0,0,0,9,0,0,0,0,1,1,8,108,0,0,13,0,0,4,127,0,1055,190,5,0,0,2,0,776,0,26,0,4,1427,0,0,0,0,12,0,1,0,1,0,0,1,0,0,0,15,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,138,0,84,0,0,0,12,57,65,904,155,0,0,0,0,1,0,0,0,0,0,0,0,0,847,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,13,36,223,12,0,0,267,0,406,0,0,0,190,42,0,0,0,0,0,0,0,0,0,400,1,0,0,0,8,0,0,0,0,6,137,247,0,0,460,0,0,0,0,3,417,0,0,27,0,0,1,0,0,0,0,0,6,0,1,0,13,0,0,0,0,0,26,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,44,0,0,0,0,1,43,170,0,36,0,0,0,0,0,0,333,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,314,47,5 +0,0,0,4,0,35,12,0,32,0,2,0,0,2,2,0,713,0,6,2,0,0,0,8,0,11,0,0,4,0,1,0,0,0,2,7144,35,6,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,499,0,0,0,0,0,1,0,0,0,0,0,3,0,0,185601,35,782,0,1,0,0,0,0,0,22,0,0,0,0,0,9,21,31896,0,0,2,0,0,0,0,0,93,5,2,0,0,2,0,732,0,0,0,0,3428,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,27926,0,35,0,0,0,0,3,265,1200,27913,0,0,0,0,1,0,3,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,232,4,0,0,256,0,233,0,0,0,111,9,0,0,0,0,0,0,0,0,0,769,1,0,0,0,10,0,0,0,0,0,144,13,0,0,0,0,0,0,0,0,3836,1,0,735,14,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,14,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,37,21,0,2,14,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2001,21,5 +0,0,0,4,0,17,3,0,13,5,3,0,0,0,10,0,28,0,7,2,0,0,0,2,0,1,3,0,2,0,1,0,0,0,3,0,17,6,6,0,49,0,0,0,1,0,0,1,1,0,0,0,1,277,0,0,0,0,0,1,0,0,0,2,0,4,0,0,390,17,60,0,3,0,0,0,0,0,4,0,0,0,0,0,2,5,99,0,0,3,0,0,0,0,0,17,0,4,1,1,2,0,50,0,1,0,0,253,0,0,0,0,4,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,113,0,41,0,0,0,2,21,41,33,119,0,0,0,0,1,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,11,164,11,0,0,150,0,9565,0,0,0,57,10,0,0,0,1,0,0,0,0,0,64,1,0,3,0,4,0,0,0,0,2,128,7,0,0,0,0,0,0,0,0,100,0,0,18,0,0,1,0,0,0,0,0,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,24,0,0,0,0,1,20,19,0,7,0,0,0,0,0,0,38,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,241,42,5 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,17,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,16,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,34,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,4,5 +6,0,0,6,1,57,99,1,211,28,70,0,0,6,33,0,87,0,9,4,0,0,0,5,1,9,3,0,5,0,1,0,0,1,28,0,58,54,6,0,369,0,0,0,1,0,0,7,0,0,0,0,3,221,0,0,0,0,0,1,0,0,1,14,0,51,0,0,12617,57,512,0,4,0,0,0,0,0,32,0,0,0,0,0,8,22,972,0,1,28,1,0,7,172,0,1577,280,13,1,0,4,1,880,0,29,0,0,2003,0,0,0,0,11,6,12,0,3,0,0,1,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,30,0,1,0,0,0,0,0,0,0,0,0,1,4,7,0,0,0,0,4,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,1341,0,135,0,0,0,4,23,267,1985,989,0,0,0,0,1,0,3,0,0,0,0,0,0,4862,7,0,0,0,0,0,0,0,0,0,0,0,7,9,0,0,0,0,0,1,0,187,50,392,7,0,0,605,0,1098,0,1,0,378,446,0,0,0,0,0,0,0,0,0,515,1,0,0,0,10,0,0,0,0,1,155,483,0,0,537,0,14,0,0,17,1154,0,0,3109,3,0,1,1,0,0,0,0,14,0,0,0,5,0,0,0,0,0,26,0,0,0,25,6,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,3,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,101,1,1,1,0,31,0,0,0,0,9,86,233,0,9,9,0,0,0,0,0,449,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,38,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1152,252,5 +0,0,0,3,0,14,2,0,10,7,3,0,0,0,10,0,22,0,7,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,3,0,14,6,5,0,25,0,0,0,1,0,0,4,0,0,0,0,1,92,0,0,0,0,0,1,0,0,0,0,0,10,0,0,1570,14,79,0,3,0,0,0,0,0,20,0,0,0,0,0,1,7,256,0,0,3,0,0,0,0,0,22,0,9,0,0,2,0,46,0,8,0,0,286,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,214,0,91,0,0,0,2,15,36,33,222,0,0,0,0,1,0,0,0,0,0,0,0,0,591,0,0,0,0,0,0,0,0,0,0,0,0,4,0,20,0,0,0,0,0,0,8,11,104,3,0,0,181,0,320,0,0,0,118,11,0,0,0,0,0,0,2,0,0,54,1,0,0,0,3,0,0,0,0,2,96,94,0,0,0,0,0,0,0,0,121,0,0,288,0,0,1,0,1,0,0,0,10,0,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,16,0,0,0,0,1,17,399,0,7,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,4,285,46,5 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,1,0,0,301,9,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,41,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,29,0,0,0,0,3,23,5,54,0,0,0,0,1,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,63,2,0,0,92,0,96,0,0,0,39,3,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,91,29,0,0,0,0,0,0,0,1,38,0,0,64,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,122,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,80,6,5 +1,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,1,0,0,73,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,102,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,17,0,0,0,0,3,22,5,25,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,49,2,0,0,40,0,40,0,0,0,10,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,92,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,12,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,8,5 +0,0,0,3,0,16,2,0,13,2,3,0,0,0,5,0,25,0,7,1,0,0,0,1,0,0,6,0,2,0,3,0,0,0,6,0,16,6,0,0,12,0,0,0,1,0,0,6,0,0,0,0,2,148,0,0,0,0,0,1,0,0,0,0,0,5,0,0,2155,16,81,0,5,0,0,0,0,0,22,0,0,0,0,2,1,10,504,0,0,6,0,0,0,0,0,22,0,9,0,0,2,0,54,0,3,0,0,318,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,402,0,82,0,0,0,4,15,38,58,388,0,0,0,0,1,0,2,0,0,0,0,0,0,596,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,6,107,3,0,0,210,0,551,0,0,0,143,7,0,0,0,0,0,0,4,0,0,55,1,0,0,0,2,0,0,0,0,3,98,113,0,0,0,0,0,0,0,1,138,0,0,338,0,0,1,0,0,0,0,0,8,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,14,0,0,0,0,1,22,422,0,11,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,317,217,5 +0,0,0,3,0,23,2,0,16,0,2,0,0,0,6,0,59,0,6,1,0,0,0,1,0,0,12,0,1,0,1,4,0,0,1,0,23,6,0,0,8,0,0,0,1,0,0,3,0,0,0,0,4,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,851,23,115,0,6,0,0,0,0,0,16,0,0,0,0,0,1,6,111,0,0,1,0,0,0,0,0,28,0,5,0,0,2,0,136,0,0,0,0,389,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,128,0,64,0,0,0,8,23,43,29,133,0,0,0,0,1,0,0,0,0,0,0,0,0,438,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,9,150,3,0,0,139,0,244,0,0,0,45,17,0,0,0,0,0,0,0,0,0,91,1,0,0,0,2,0,0,0,0,5,105,29,0,0,0,0,0,0,0,0,595,0,0,254,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,13,0,0,0,0,1,24,86,0,18,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,272,43,5 +3,0,0,3,0,30,5,0,12,0,2,0,0,2,2,0,18,0,6,2,0,0,0,7,0,8,0,0,3,0,2,0,0,0,4,0,30,6,0,0,20,0,3,0,1,0,0,7,1,0,0,0,2,178,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2266,30,78,0,3,0,0,0,1,0,28,0,0,0,0,0,8,28,724,0,0,4,0,0,0,0,0,85,5,15,1,0,2,0,23,0,0,0,0,617,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,4,0,0,1,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,10,10,10,0,0,0,214,0,92,0,0,0,2,4,189,17,193,0,0,0,0,1,0,3,0,0,0,0,0,0,581,0,0,0,0,1,0,0,0,0,3,0,0,7,1,0,0,0,0,0,1,0,32,10,151,3,0,0,178,0,289,0,0,0,71,6,0,0,0,0,0,0,0,0,0,47,1,0,3,0,9,0,0,0,0,1,113,48,0,0,0,0,0,0,0,0,290,0,0,869,3,0,1,1,1,0,0,0,17,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,3,363,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,3,0,0,0,0,1,34,210,0,4,9,0,1,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,474,75,5 +4,0,0,9,1,110,64,1,150,15,36,0,0,9,27,0,2501,0,9,8,0,0,0,10,0,15,12,0,26,0,1,0,0,1,46,35764,111,54,18,0,177,0,0,0,1,0,0,2,0,0,0,0,5,831,0,0,0,0,0,1,0,0,0,9,0,29,0,0,172129,110,2824,0,23,0,0,0,0,0,55,0,0,0,0,2,13,119,38831,0,1,46,1,0,4,36,0,768,85,3,0,0,4,1,2828,0,18,75,0,8046,0,0,0,0,13,4,4,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,17,0,1,0,0,0,0,0,0,0,0,0,1,3,4,0,0,0,0,1,0,0,0,16,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,12,12,12,0,0,0,33466,0,129,0,0,0,17,114,954,3225,33409,0,0,0,0,1,0,9,0,0,0,0,0,0,1009,4,0,0,0,1,0,0,0,0,0,0,0,40,5,0,0,0,0,0,1,0,222,45,809,10,0,0,786,0,994,0,1,0,422,167,0,0,0,0,0,0,0,0,0,2796,1,0,0,0,18,0,0,0,0,6,279,114,0,0,232,0,8,0,1,0,8869,1,0,387,30,0,1,1,0,0,0,0,4,0,1,0,2,0,0,0,0,0,17,0,0,0,13,3,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,30,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,167,1,1,1,0,107,0,0,0,0,9,157,175,0,40,14,0,3,0,0,0,249,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,25,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2829,94,5 +0,0,0,4,0,12,2,0,8,0,4,0,0,0,4,0,20,0,7,1,0,0,0,1,0,0,3,0,1,0,1,1,0,0,2,0,12,6,0,0,10,0,0,0,1,0,0,3,0,0,0,0,1,42,0,0,0,0,0,1,0,0,0,0,0,3,0,0,845,12,54,0,3,0,0,0,0,0,12,0,0,0,0,0,1,6,103,0,0,2,0,0,0,0,0,14,0,6,0,0,2,0,31,0,1,0,0,145,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,113,0,35,0,0,0,2,8,32,12,115,0,0,0,0,1,0,0,0,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,6,88,4,0,0,106,0,247,0,0,0,47,6,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,2,100,25,0,0,0,0,0,0,0,0,85,0,0,220,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,4,0,0,0,0,1,14,120,0,6,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,126,32,5 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1166,9,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,476,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,131,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,22,0,0,0,0,3,23,4,55,0,0,0,0,1,0,1,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,71,2,0,0,109,0,269,0,0,0,56,5,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,91,46,0,0,0,0,0,0,0,0,215,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,170,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,231,37,5 +0,0,0,14,0,61,33,0,90,4,14,0,0,2,48,0,52,0,10,5,0,0,0,5,0,10,15,0,15,0,1,5,0,0,24,3,61,60,7,0,122,0,0,0,1,0,0,1,1,0,0,0,8,350,0,0,0,0,0,1,0,0,0,0,0,18,0,0,2165,61,267,0,19,0,0,0,0,0,22,0,0,0,0,0,7,14,203,0,0,24,0,0,2,38,0,407,55,4,0,0,2,0,419,0,5,0,0,1975,0,0,0,0,564,0,0,0,0,0,0,1,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,10,10,10,0,0,0,168,0,104,0,0,0,14,55,235,1551,162,0,0,0,0,1,0,3,0,0,0,0,0,0,2864,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,26,366,29,0,0,358,0,808,0,0,0,206,71,0,0,0,0,0,0,0,0,0,249,1,0,2,0,10,0,0,0,0,2,203,110,0,0,121,0,0,0,6,1,243,0,0,1478,3,0,1,1,0,0,0,0,4,0,0,0,14,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,26,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,66,1,1,1,0,98,0,0,0,0,1,85,188,0,37,9,0,0,0,0,0,140,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1854,80,5 +0,0,0,20,0,40,10,0,68,18,19,0,0,0,29,0,44,0,7,6,0,0,0,1,0,3,12,0,7,0,2,0,0,0,21,0,40,6,9,0,202,0,0,0,1,0,0,1,0,0,0,0,4,180,0,0,0,0,0,1,0,0,0,0,0,30,0,0,847,40,182,0,9,0,0,0,0,0,7,0,0,0,0,0,3,5,60,0,0,21,0,0,2,38,0,416,60,2,0,0,2,0,335,0,24,0,0,1259,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,79,0,74,0,0,0,8,44,67,392,87,0,0,0,0,1,0,0,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,76,238,25,0,0,281,0,4711,0,0,0,190,49,0,0,0,0,0,0,0,0,0,177,1,0,0,0,7,0,0,0,0,5,135,168,0,0,138,0,0,0,0,0,169,0,0,24,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,19,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,39,0,0,0,0,1,61,230,0,24,0,0,0,0,0,0,186,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,26,0,0,0,0,0,0,0,0,0,0,0,0,0,2,179,47,5 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,17,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,59,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,5 +0,0,0,129,1,33,39,1,87,35,21,0,0,0,155,0,90,0,9,4,0,0,0,3,0,4,8,0,6,0,1,0,0,1,17,0,34,106,9,0,298,0,0,0,1,0,0,3,0,0,0,0,3,202,0,0,0,0,0,1,0,0,0,0,0,51,0,0,727,33,379,0,7,0,0,0,0,0,12,0,0,0,0,0,3,7,59,0,1,17,1,0,4,43,0,433,55,5,0,0,4,1,610,0,43,0,0,783,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,237,0,70,0,0,0,6,29,65,497,95,0,0,0,0,1,0,6,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,122,58,345,137,0,0,377,0,1403,0,1,0,173,22,0,0,0,0,0,0,0,0,0,401,1,0,0,0,7,0,0,0,0,4,136,143,0,0,128,0,0,0,0,1,332,0,0,25,0,0,1,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,36,1,1,1,0,22,0,0,0,0,9,51,205,0,19,0,0,0,0,0,0,214,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,41,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1254,106,5 +0,0,0,20,1,32,29,4,102,10,8,0,0,0,32,0,44,0,7,5,0,1,1,1,1,2,9,0,6,0,1,0,0,0,14,0,33,6,235,0,99,0,0,0,1,0,0,8,0,0,0,0,3,675,0,0,0,0,0,1,0,0,0,11,0,18,0,0,18698,32,348,0,7,0,0,0,0,0,34,3,0,0,0,0,1,11,2061,0,4,14,0,0,1,18,0,192,15,13,0,0,2,1,256,0,13,0,0,1051,0,0,0,0,18,0,6,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,0,0,1708,0,144,0,0,0,6,31,55,702,1706,0,0,0,0,1,0,0,0,0,0,0,0,0,5987,0,0,0,0,0,0,0,0,0,2,0,0,8,0,3,0,0,0,0,0,0,10,21,278,23,0,0,404,0,1112,0,0,0,300,46,0,0,0,0,0,0,2,0,0,222,1,0,0,0,9,0,0,0,0,4,117,331,0,0,136,0,0,0,0,0,2291,0,0,5889,0,0,1,0,1,0,0,0,15,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,22,0,0,0,0,9,47,1974,0,18,0,0,0,0,0,0,182,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,0,0,0,0,0,0,0,0,0,0,0,2,0,7,2232,242,5 +0,0,0,2,0,35,6,0,36,0,5,0,0,2,2,0,19,0,7,3,0,0,0,5,0,11,0,0,5,0,1,0,0,0,5,0,35,6,0,0,40,0,0,0,1,0,0,19,1,0,0,0,4,253,0,0,0,0,0,1,0,0,0,0,0,3,0,0,14608,35,178,0,7,0,0,0,0,0,68,0,0,0,0,2,7,36,3193,0,0,5,0,0,1,8,0,172,20,37,0,0,2,0,80,0,0,0,0,1260,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,17,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,1966,0,165,0,0,0,3,5,204,172,1917,0,0,0,0,1,0,4,0,0,0,0,0,0,2918,0,0,0,0,0,0,0,0,0,0,0,0,19,1,15,0,0,0,0,1,0,32,10,187,2,0,0,356,0,643,0,0,0,233,16,0,0,0,0,0,0,2,0,0,77,1,0,4,0,8,0,0,0,0,3,131,163,0,0,31,0,0,0,0,0,913,0,0,3802,3,0,1,1,0,0,0,0,51,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,3,0,0,0,0,1,40,316,0,8,9,0,0,0,0,0,95,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1750,99,5 +0,0,0,5,0,17,48,0,121,9,42,0,0,0,15,0,23,0,7,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,5,0,17,6,3,0,195,0,0,0,1,0,0,4,0,0,0,0,1,147,0,0,0,0,0,1,0,0,1,0,0,28,0,0,749,17,254,0,3,0,0,0,0,0,9,0,0,0,0,0,1,5,55,0,0,5,0,0,5,112,0,918,180,6,0,0,2,0,524,0,12,0,0,365,0,0,0,0,8,0,2,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,78,0,45,0,0,0,2,11,38,889,85,0,0,0,0,1,0,1,0,0,0,0,0,0,505,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,15,124,5,0,0,237,0,533,0,0,0,171,12,0,0,0,0,0,0,0,0,0,256,1,0,0,0,3,0,0,0,0,2,107,287,0,0,451,0,0,0,0,1,77,0,0,58,0,0,1,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,6,0,0,0,0,1,22,287,0,7,0,0,0,0,0,0,248,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,66,5 +0,0,0,16,1,57,72,1,164,26,45,0,1,3,46,0,119,0,9,7,0,0,0,7,2,4,15,0,19,0,1,0,0,1,34,0,58,221,31,0,317,0,0,0,1,0,0,3,0,0,0,0,9,246,0,3,0,0,0,1,0,0,2,1,0,37,0,0,3751,57,469,0,20,0,0,0,0,1,13,0,0,0,0,0,6,10,249,0,1,34,1,0,4,94,0,903,165,4,0,0,4,1,668,0,25,0,4,2037,0,0,0,0,9,0,3,0,0,0,0,1,0,0,0,22,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,307,0,136,0,0,0,18,57,112,787,298,0,0,0,0,1,0,2,0,0,1,0,0,0,927,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,123,55,451,18,0,0,513,0,1311,0,1,0,288,116,0,0,0,0,0,0,4,0,0,459,1,0,0,0,16,0,0,0,0,10,183,237,0,0,349,0,1,0,0,3,658,0,0,209,0,0,1,0,0,0,0,0,7,0,0,0,4,0,0,0,0,0,28,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,6,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,69,1,1,1,0,40,0,0,0,0,9,92,242,0,39,0,0,0,0,0,0,333,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,30,0,0,0,0,0,0,0,0,0,0,0,1,0,2,553,127,5 +2,0,0,9,1,58,117,1,242,23,79,0,0,6,33,0,152,0,9,6,0,0,0,8,0,15,12,0,14,0,1,0,0,1,12,2243,59,54,16,0,374,0,0,0,1,0,0,4,0,0,0,0,5,501,0,0,0,0,0,1,0,0,2,4,0,42,0,0,16469,58,626,0,11,0,0,0,0,0,27,0,0,0,0,0,9,35,1936,0,1,12,1,0,6,189,0,1795,350,6,0,0,4,1,1040,0,26,25,0,2389,0,0,0,0,15,2,5,0,0,0,0,1,0,0,0,14,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,4,2,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,12,12,12,0,0,0,1116,0,109,0,0,0,9,40,457,1634,1106,0,0,0,0,1,0,3,0,0,0,0,0,0,4051,2,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,1,0,189,53,547,10,0,0,648,0,1091,0,1,0,350,72,0,0,0,0,0,0,0,0,0,638,1,0,0,0,14,0,0,0,0,5,188,417,0,0,797,0,0,0,0,6,1817,1,0,2627,10,0,1,1,1,0,0,0,8,0,1,0,11,0,0,0,0,0,23,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,10,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,81,1,1,1,0,35,0,0,0,0,9,71,290,0,28,14,0,0,0,0,0,509,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,33,0,0,0,0,0,0,0,0,0,0,0,1,0,4,7373,122,5 +1,0,0,14,0,43,23,0,38,7,16,0,0,2,11,0,20,0,7,3,0,0,0,8,0,8,0,0,2,0,1,0,0,0,11,0,43,41,0,0,91,0,0,0,1,0,0,23,0,0,0,0,1,593,0,0,0,0,0,1,0,0,0,0,0,19,0,0,8941,43,235,0,1,0,0,0,0,0,96,0,0,0,0,0,10,39,1038,0,0,11,0,0,2,12,0,300,29,43,0,0,2,0,122,0,10,2,0,1282,0,0,1,0,0,0,18,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,984,0,264,0,0,0,0,3,197,1090,987,0,0,0,0,1,0,3,0,0,0,0,0,0,1629,0,0,0,0,0,0,0,0,0,0,0,0,23,1,11,0,0,0,0,1,0,32,27,241,17,0,0,1053,0,1444,0,0,0,896,43,0,0,0,0,0,0,16,0,0,117,1,0,0,0,11,0,0,0,0,1,125,872,0,0,98,0,0,0,0,0,251,0,0,609,3,0,1,22,0,0,0,0,54,0,1,0,1,0,0,0,0,0,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,0,0,0,0,0,1,54,1385,0,2,9,0,0,0,0,0,170,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,13,3,0,0,0,0,0,0,0,0,0,0,0,0,16,765,168,5 +0,0,0,5,0,14,3,0,25,2,9,0,0,0,6,0,41,0,6,6,0,0,0,1,0,3,12,0,8,0,1,0,0,0,4,0,14,6,13,0,37,0,0,0,1,0,0,1,0,0,0,0,4,162,0,2,0,0,0,1,0,0,0,0,0,9,0,0,8097,14,100,0,9,0,0,0,0,0,6,0,0,0,4,0,2,4,2232,0,0,4,0,0,1,13,0,156,20,1,0,0,2,0,153,0,3,1,0,1186,0,0,0,0,6,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,2054,0,65,0,0,0,8,129,32,12053,2071,0,0,0,0,1,0,0,0,0,0,0,0,0,1282,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,6,192,5,0,0,141,0,666,0,0,0,83,75,0,0,0,0,0,0,0,0,0,90,1,0,0,0,7,0,0,0,0,5,97,128,0,0,230,0,0,0,0,0,518,0,0,1255,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,26,0,0,0,0,1,18,153,0,24,0,0,0,0,0,0,69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,589,70,5 +11,0,0,26,0,79,20,0,140,33,18,0,1,6,84,1,191,0,7,9,0,0,0,7,4,18,33,0,25,0,2,0,0,0,35,0,79,386,35,0,347,0,0,0,1,0,0,8,1,0,0,0,12,3198,0,0,0,0,0,1,0,0,0,6,0,35,0,0,18386,79,548,0,25,0,0,0,0,0,41,0,0,0,0,0,9,24,4723,0,0,35,0,0,1,36,0,471,60,19,0,0,2,0,821,0,27,0,8,2898,0,0,1,0,24,2,9,0,0,0,2,1,0,0,0,14,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,2,0,2,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,128,10,10,10,0,0,0,2899,0,189,0,0,0,22,104,268,931,2923,0,0,0,0,1,0,3,0,0,0,0,0,0,2706,1,0,0,0,0,0,0,0,0,1,0,0,8,1,8,0,0,0,0,1,1,2796,71,512,42,0,0,679,0,1968,0,0,0,501,107,0,0,0,0,0,0,7,0,0,468,1,0,3,0,20,0,0,0,0,10,200,369,0,0,131,0,0,0,8,1,6128,0,0,3025,3,0,1,1,0,0,0,0,21,0,0,0,1,0,0,0,0,0,27,2,0,4,1,0,0,2,0,0,0,0,0,0,0,0,16,1,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,136,0,0,0,0,8,114,820,0,69,9,0,0,0,0,0,269,10,0,1,0,0,0,0,0,0,0,0,0,1,0,1,37,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1882,249,5 +0,0,0,6,0,20,85,0,156,25,49,0,0,0,29,0,23,0,7,3,0,0,0,1,0,1,3,0,2,0,1,0,0,0,8,0,20,6,5,0,273,0,0,0,1,0,0,6,0,0,0,0,1,199,0,0,0,0,0,1,0,0,2,0,0,39,0,0,2387,20,390,0,3,0,0,0,0,0,30,0,0,0,0,1,2,9,320,0,0,8,0,0,3,138,0,1110,205,11,0,0,2,0,673,0,27,0,0,828,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,352,0,127,0,0,0,2,14,40,1096,311,0,0,0,0,1,0,0,0,0,0,0,0,0,1136,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,35,173,6,0,0,333,0,477,0,0,0,261,14,0,0,0,0,0,0,4,0,0,349,1,0,0,0,4,0,0,0,0,2,110,369,0,0,469,0,0,0,0,3,157,0,0,305,0,0,1,0,1,0,0,0,18,0,1,0,6,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,12,0,0,0,0,1,28,494,0,7,0,0,0,0,0,0,356,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,29,0,0,0,0,0,0,0,0,0,0,0,0,0,6,415,66,5 +1,0,0,5,1,31,6,4,31,24,7,0,0,4,38,0,68,0,7,8,0,1,1,2,2,6,14,0,12,0,0,0,0,1,16,0,32,6,85,0,123,0,0,0,1,0,0,4,0,0,0,0,7,212,0,0,0,0,0,1,0,0,0,2,0,33,0,0,1589,31,278,0,13,0,0,0,0,0,19,3,0,0,0,0,2,7,115,0,4,16,1,0,0,0,0,173,15,8,0,0,2,1,244,0,28,0,0,642,0,0,0,0,9,0,10,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,12,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,167,0,101,0,0,0,14,58,75,151,144,0,0,0,0,1,0,0,0,0,0,0,0,0,518,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,66,31,241,6,0,0,335,0,553,0,0,0,214,14,0,0,0,0,0,0,0,0,0,161,1,0,0,0,14,0,0,0,0,8,147,142,0,0,0,0,0,0,0,0,835,0,0,111,0,0,1,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,54,0,0,0,0,9,48,377,0,32,0,0,0,0,0,0,124,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,26,0,0,0,0,0,0,0,0,0,0,0,2,0,2,360,86,5 +0,0,0,15,0,339,26631,0,8380,32,269,0,1,3,64,1,517,0,7,69,0,0,0,3,214,7,57,0,333,0,6,2,0,0,293,0,339,130,582,0,16367,0,0,0,1,0,0,4,0,0,0,0,288,904,0,0,0,0,0,1,0,0,0,0,0,35,0,0,82749,339,36803,0,341,0,0,0,0,0,4,0,0,0,0,0,4,8,44,0,0,293,0,0,1,8301,0,61766,1290,0,0,0,2,0,41684,0,30,0,4,30857,0,0,0,0,2,0,3,0,0,0,0,1,0,0,0,11,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,404,0,547,0,0,0,576,1746,414,147592,140,0,0,0,0,1,0,0,0,0,0,0,0,0,106974,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,15,50,2505,16,0,0,28438,0,1755,0,0,0,28287,490,0,0,0,0,0,0,0,0,0,35873,1,0,0,0,286,0,0,0,0,288,1112,36440,0,0,33382,0,0,0,0,0,4935,0,0,135,0,0,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,35,35,0,0,26,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,357,1,1,1,0,664,0,0,0,0,13,632,460,0,405,0,0,0,0,0,0,16795,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,38,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2573,889,5 +0,0,0,8,1,26,53,1,161,15,15,0,0,0,22,6,75,0,9,2,0,0,0,2,0,0,0,0,0,0,1,0,0,1,9,0,27,191,0,0,134,0,0,0,1,0,0,3,0,0,0,0,0,237,0,0,0,0,0,1,0,0,0,0,0,27,0,0,892,26,297,0,1,0,0,0,0,0,10,0,0,0,0,0,3,7,69,0,1,9,1,0,2,37,0,333,20,5,0,0,4,1,348,0,19,0,0,500,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,103,0,55,0,0,0,0,3,52,315,164,0,0,0,0,1,0,0,0,0,0,0,0,0,505,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,127,35,308,10,0,0,377,0,1168,0,1,0,162,34,0,1,0,0,0,0,0,0,0,341,1,0,0,0,4,0,0,0,0,1,130,208,0,0,116,0,0,0,0,0,674,0,0,54,0,0,1,23,0,0,0,0,6,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,28,1,1,1,0,0,0,0,0,0,9,36,257,0,1,0,0,0,0,0,0,216,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,23,0,0,0,0,0,0,0,0,0,0,1,0,0,311,70,5 +0,0,0,4,0,36,28,0,36,0,2,0,0,2,2,0,751,0,6,2,0,0,0,8,0,11,0,0,4,0,1,0,0,0,3,10254,36,6,0,0,21,0,2,0,1,0,0,2,0,0,0,0,1,464,0,0,0,0,0,1,0,0,0,0,0,3,0,0,187210,36,894,0,1,0,0,0,0,0,60,0,0,0,0,0,9,21,31253,0,0,3,0,0,0,0,0,94,5,4,0,0,2,0,805,0,0,0,0,2181,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,29403,0,40,0,0,0,0,3,301,604,29383,0,0,0,0,1,0,3,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,260,4,0,0,344,0,333,0,0,0,184,11,0,0,0,0,0,0,0,0,0,827,1,0,0,0,10,0,0,0,0,1,150,40,0,0,0,0,0,0,0,0,2560,1,0,423,30,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,30,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,0,0,0,0,0,1,39,113,0,2,14,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,945,66,5 +0,0,0,21,0,125,4,0,85,17,11,1,1,4,35,0,54,0,7,4,0,0,0,1,1,2,12,0,35,0,1,0,0,0,107,0,125,255,14,0,122,0,0,0,1,0,0,2,0,0,0,0,4,192,0,0,0,0,0,1,0,0,0,6,0,13,0,0,3355,125,237,0,36,0,0,0,0,0,7,0,0,0,0,0,1,5,305,0,0,107,0,0,1,22,0,243,15,3,0,0,2,0,352,0,6,0,5,2275,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,0,0,295,0,164,0,0,0,8,38,212,270,287,0,0,0,0,1,0,0,0,0,0,0,0,0,791,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,13,28,537,25,0,0,538,0,894,0,0,0,440,61,0,0,0,0,0,0,4,0,0,202,1,0,0,0,6,0,0,0,0,5,225,142,0,0,24,0,0,0,10,0,472,0,0,281,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,134,1,1,1,0,49,0,0,0,0,1,232,392,0,50,0,0,0,0,0,0,112,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,1,497,191,5 +0,0,0,11,0,35,5,0,16,0,4,0,0,2,5,0,30,0,7,4,0,0,0,4,0,8,9,0,2,0,1,1,0,0,8,0,35,6,0,0,38,0,0,0,1,0,0,0,0,0,0,0,2,94,0,0,0,0,0,1,0,0,0,0,0,5,0,0,444,35,64,0,3,0,0,0,0,0,2,0,0,0,0,0,7,11,56,0,0,8,0,0,0,0,0,74,5,0,0,0,2,0,88,0,1,0,0,455,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,10,10,10,0,0,0,46,0,40,0,0,0,2,14,192,20,54,0,0,0,0,1,0,3,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,32,17,128,14,0,0,121,0,4323,0,0,0,32,3,0,0,0,0,0,0,0,0,0,69,0,0,0,0,8,0,0,0,0,2,117,5,0,0,0,0,0,0,0,1,87,0,0,4,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,4,0,0,0,0,1,43,24,0,13,8,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,41,5 +3,0,0,11,1,62,239,1,323,3,26,0,0,9,11,0,817,0,9,2,0,0,0,9,0,11,0,0,7,0,1,0,0,1,21,14270,63,132,0,0,530,0,0,0,1,0,0,10,0,0,0,0,1,860,0,0,0,0,0,1,0,0,0,6,0,11,0,0,61224,62,1449,0,6,0,0,0,0,0,58,0,0,0,0,0,9,42,14321,0,1,21,1,0,2,234,0,2031,95,18,0,0,4,1,2025,0,4,29,0,3793,0,0,0,0,9,3,3,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,11477,0,126,0,0,0,3,7,490,2212,11438,0,0,0,0,1,0,8,0,0,0,0,0,0,2789,3,0,0,0,0,0,0,0,0,0,0,0,9,4,0,0,0,0,0,1,0,235,31,548,12,0,0,904,0,1086,0,1,0,603,48,0,0,0,0,0,0,0,0,0,1434,1,0,0,0,11,0,0,0,0,10,188,2274,0,0,166,0,0,0,0,0,3728,1,0,1284,10,0,1,1,1,0,0,0,21,0,3,0,1,0,0,0,0,0,4,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,76,1,1,1,0,10,0,0,0,0,9,84,722,0,7,12,0,0,0,0,0,645,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,5,3559,134,5 +4,0,0,11,4,45,35,13,607,33,30,0,0,0,53,0,1850,0,9,13,0,3,3,3,1,5,15,0,12,0,1,0,0,4,21,0,49,230,36,0,209,0,0,0,1,0,0,3,0,0,0,0,6,280,0,0,0,0,0,1,0,0,0,0,0,41,0,0,5392,45,2799,0,13,0,0,0,0,0,12,9,0,0,0,0,4,9,206,0,13,21,4,0,4,42,0,474,75,5,1,0,4,4,2186,0,32,0,0,2702,0,0,0,0,3,0,5,0,0,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,8,0,0,0,0,0,0,0,0,0,1,0,4,0,0,54,0,1,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,958,0,0,0,0,0,0,285,0,128,0,0,0,12,79,99,595,305,0,0,0,0,1,0,0,0,0,0,0,0,0,1002,0,0,0,0,0,0,0,0,0,3,0,0,2,0,0,0,0,0,0,0,0,130,65,637,16,0,0,661,0,2561,0,1,0,357,126,0,0,0,0,0,0,0,0,0,2584,1,0,0,0,23,0,0,0,0,6,174,266,0,0,188,0,0,0,0,1,3136,0,0,437,0,0,1,3,0,0,0,0,4,0,1,0,2,0,0,0,0,0,37,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,53,1,1,1,0,104,0,0,0,0,33,70,512,0,33,0,0,0,0,0,0,232,17,0,0,0,0,0,0,0,0,0,0,0,4,0,1,39,3,0,0,0,0,0,0,0,0,0,0,7,0,1,558,154,5 +4,0,0,13,1,50,41,1,120,3,19,0,0,22,11,0,1209,0,10,3,0,0,0,7,0,12,3,0,7,0,1,0,0,1,8,15636,51,54,0,0,108,0,0,0,1,0,0,4,0,0,0,0,3,469,0,0,0,0,0,1,0,0,0,8,0,5,0,0,81631,50,1408,0,5,0,0,0,0,0,47,0,0,0,0,0,9,53,16081,0,1,8,1,0,1,0,0,616,80,7,0,0,4,1,1343,0,2,79,0,4704,0,0,0,0,13,4,8,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,10989,0,93,0,0,0,4,9,529,1406,10989,0,0,0,0,1,0,10,0,0,0,0,0,0,675,4,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,2,0,460,35,476,16,0,0,549,0,764,0,1,0,259,17,0,0,0,0,0,0,0,0,0,1432,1,0,0,0,10,0,0,0,0,2,172,131,0,0,99,0,0,0,0,0,4739,1,0,207,15,0,1,1,1,0,0,0,10,0,0,0,1,0,0,0,0,0,6,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,70,1,1,1,0,19,0,0,0,0,9,59,201,0,11,12,0,0,0,0,0,225,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,20,0,0,0,0,0,0,0,0,0,0,0,1,0,5,2166,117,5 +0,0,0,21,0,51,9,0,35,1,178,2,0,2,183,0,576,0,7,4,0,0,0,7,0,13,12,0,9,0,1,1,0,0,12,898,51,8,8,0,237,0,0,0,1,0,0,17,0,0,0,0,5,367,0,0,0,0,0,1,0,0,0,0,0,8,0,0,30136,51,1108,0,9,0,0,0,0,0,76,0,0,0,0,0,8,35,4615,0,0,12,0,0,0,0,0,132,5,33,0,0,2,0,1184,0,4,0,0,2455,0,0,0,0,5,0,12,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,4026,0,185,0,0,0,8,34,287,383,3981,0,0,0,0,1,0,3,0,0,0,0,0,0,2455,0,0,0,0,0,0,0,0,0,0,0,0,17,1,0,0,0,0,0,1,0,32,36,325,33,0,0,637,0,723,0,0,0,474,35,0,0,0,0,0,0,0,0,0,992,1,0,0,0,11,0,0,0,0,4,139,354,0,0,2,0,0,0,0,0,3074,1,0,2015,7,0,1,1,1,0,0,0,33,0,0,0,2,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,31,0,0,0,0,1,63,444,0,24,12,0,0,0,0,0,117,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,3,0,0,0,0,0,0,0,1,0,0,0,0,0,7,3407,302,5 +2,0,0,7,0,40,13,0,53,7,19,1,0,5,25,0,46,0,7,5,0,0,0,8,3,4,3,0,12,0,1,0,0,0,12,0,40,15,20,0,128,0,0,0,1,0,0,1,0,0,0,0,7,171,0,0,0,0,0,1,0,0,0,0,0,31,0,0,1588,40,170,0,13,0,0,0,0,0,6,0,0,0,0,0,8,10,135,0,0,12,0,0,3,31,0,462,75,1,0,0,8,0,270,0,11,0,0,1719,0,0,2,0,2,0,3,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,168,0,65,0,0,0,14,42,144,481,142,0,0,0,0,1,0,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,100,25,218,7,0,0,245,0,1380,0,0,0,132,65,0,0,0,0,0,0,0,0,0,169,1,0,0,0,16,0,0,0,0,8,126,124,0,0,123,0,0,0,0,0,251,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,22,0,0,0,0,1,52,203,0,20,0,0,0,0,0,0,163,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,2,231,146,5 +1,0,0,6,0,44,7,0,1378,7,10,0,0,2,5,0,95,0,7,5,0,0,0,8,0,11,3,0,5,0,5,0,0,0,13,39268,44,586,4,0,108,0,0,0,1,0,0,2,0,0,0,0,2,1300,0,0,0,0,0,1,0,0,0,0,0,3,0,1,9132,44,207,0,8,0,0,0,0,0,10,0,0,0,0,0,10,19,2850,0,0,13,0,0,0,3,0,163,17,3,0,0,2,0,95,0,0,0,0,2014,0,0,0,0,6,0,1,0,4,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,128,16,35,10,0,0,0,1931,0,62,0,0,55,2,14,742,15021,1934,0,0,0,0,1,0,3,0,1,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,41,76,396,9,0,0,412,0,3542,0,0,0,227,1317,0,0,0,0,0,0,0,0,0,1504,1,0,0,0,13,0,0,0,0,60,146,77,0,0,35,0,0,0,0,0,1092,1,0,70,3,0,1,1,1,0,0,0,4,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,7,0,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,26,0,0,0,2,13,57,256,3,15,9,0,0,0,0,0,131,4,0,0,0,0,0,0,0,0,0,0,0,2,0,2,13,0,0,0,0,0,0,0,0,0,0,0,0,0,2,261,69,5 +1,0,0,4,0,31,5,0,12,9,3,0,0,2,13,0,17,0,6,3,0,0,0,5,0,8,0,0,2,0,1,0,0,0,5,0,31,6,0,0,49,0,0,0,1,0,0,6,0,0,0,0,1,195,0,0,0,0,0,1,0,0,0,0,0,14,0,0,10002,31,77,0,1,0,0,0,0,0,25,0,0,0,0,0,7,22,1319,0,0,5,0,0,0,0,0,81,5,7,0,0,2,0,43,0,11,0,0,677,0,0,0,0,0,1,5,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,877,0,90,0,0,0,0,3,186,140,881,0,0,0,0,1,0,3,0,0,0,0,0,0,4216,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,21,148,4,0,0,232,0,506,0,0,0,129,6,0,0,0,0,0,0,0,0,0,58,1,0,0,0,8,0,0,0,0,0,113,101,0,0,0,0,0,0,0,0,799,0,0,2937,3,0,1,1,1,0,0,0,6,0,0,0,3,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,0,0,0,0,0,1,36,184,0,2,9,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1396,74,5 +0,0,0,13,0,80,154,0,283,64,52,0,1,5,92,0,101,0,24,8,0,0,0,6,4,16,30,0,19,0,1,0,0,0,31,0,80,210,31,0,677,0,0,0,1,0,0,8,0,0,0,0,11,662,0,8,0,0,0,1,0,0,0,2,0,64,0,0,8111,80,798,0,21,0,0,0,0,0,36,0,0,0,0,0,8,23,967,0,0,31,0,0,3,225,0,1871,230,13,0,0,2,0,1471,0,55,0,7,2229,0,0,0,0,19,0,2,0,3,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,9,1,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,71,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,10,10,10,0,0,0,869,0,183,0,0,0,20,99,293,1436,886,0,0,0,0,1,0,3,0,3,0,0,0,0,2839,0,0,0,0,0,0,0,0,0,0,0,0,8,1,8,0,0,0,0,1,0,37,93,691,29,0,0,963,0,1086,0,0,0,609,72,0,0,0,0,0,0,4,0,0,712,1,0,0,0,18,0,0,0,0,11,440,663,0,0,668,0,0,0,0,0,928,0,0,1422,2,0,1,1,1,0,0,0,21,0,0,0,5,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,119,1,1,1,0,68,0,0,0,0,1,111,1311,0,58,8,0,0,0,0,0,616,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,70,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1978,187,5 +1,0,0,10,0,64,8,0,42,29,11,0,0,2,45,0,78,0,23,6,0,0,0,7,3,13,29,1,15,0,5,2,0,0,28,0,64,6,24,0,189,0,0,0,1,0,0,1,1,0,0,0,12,157,0,0,0,0,0,1,0,0,0,0,0,43,0,0,15558,64,253,0,21,0,0,0,0,0,9,0,0,0,0,0,10,18,3341,0,0,28,0,0,1,17,0,301,40,4,1,0,2,0,380,0,37,0,0,2246,0,0,0,0,26,0,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,10,10,10,0,0,0,2056,0,90,0,0,0,22,95,230,454,2044,0,0,0,0,1,0,2,0,0,0,0,0,0,2181,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,49,328,10,0,0,268,0,689,0,0,0,139,48,0,0,0,0,0,0,0,0,0,209,1,0,4,0,16,0,0,0,0,11,153,62,0,0,75,0,1,0,0,2,1698,0,0,4432,3,0,1,1,0,0,0,0,7,0,0,0,2,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,3,7,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,84,1,1,1,0,107,0,0,0,0,1,92,161,0,56,9,0,0,0,0,0,140,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,33,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2338,129,5 +0,0,0,20,0,47,24,0,183,29,50,1,1,4,49,0,144,0,7,9,0,0,0,1,14,17,51,0,35,0,1,0,0,0,25,0,47,173,58,0,278,0,0,0,1,0,0,6,0,0,0,0,22,245,0,0,0,0,0,1,0,0,0,0,0,27,0,0,4850,47,605,0,37,0,0,0,0,0,27,0,0,0,0,0,1,8,178,0,0,25,0,0,1,119,0,1184,210,12,0,0,2,0,1007,0,22,0,5,2179,0,0,0,0,8,0,3,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,0,0,286,0,135,0,0,0,44,196,92,885,213,0,0,0,0,1,0,1,0,0,0,0,0,0,721,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,13,50,406,24,0,0,405,0,971,0,0,0,302,98,0,0,0,0,0,0,0,0,0,463,1,0,0,0,24,0,0,0,0,23,168,354,0,0,506,0,0,0,0,0,798,0,0,184,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,30,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,146,0,0,0,0,1,72,353,0,104,0,0,0,0,0,0,341,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,33,0,0,0,0,0,0,0,0,0,0,0,0,0,3,520,101,5 +0,0,0,8,1,35,71,1,163,21,48,0,0,0,32,0,116,0,9,3,0,0,0,1,0,1,27,0,5,0,9,0,0,1,18,0,36,105,6,0,237,0,0,0,1,0,0,5,0,0,0,0,9,223,0,0,0,0,0,1,0,0,1,0,0,43,0,0,11078,35,444,0,14,0,0,0,0,0,20,0,0,0,0,1,2,9,1436,0,1,18,1,0,6,107,0,923,195,10,0,0,4,1,709,0,27,0,0,1406,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,2014,0,88,0,0,0,18,51,70,1387,1440,0,0,0,0,1,0,0,0,0,0,0,0,0,2881,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,133,43,384,9,0,0,443,0,2096,0,1,0,243,17,0,0,0,0,0,0,2,0,0,439,1,0,0,0,4,0,0,0,0,3,146,257,0,0,410,0,0,0,0,3,618,0,0,2711,0,0,1,0,1,0,0,0,8,0,0,0,5,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,37,1,1,1,0,35,0,0,0,0,9,54,321,0,42,0,0,0,0,0,0,286,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,27,0,0,0,0,0,0,0,0,0,0,0,1,0,1,720,112,5 +0,0,0,7,0,38,36,0,55,0,4,0,0,9,4,0,888,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,2,15025,38,6,0,0,49,0,2,0,1,0,0,4,0,0,0,0,1,736,0,0,0,0,0,1,0,0,0,0,0,3,0,0,202090,38,1101,0,3,0,0,0,0,0,83,0,0,0,0,0,9,33,33965,0,0,2,0,0,0,0,0,229,30,8,1,0,2,0,1008,0,0,0,0,3332,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,30677,0,53,0,0,0,1,4,430,828,30642,0,0,0,0,1,0,3,0,0,0,0,0,0,770,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,111,16,445,7,0,0,529,0,370,0,0,0,355,9,0,0,0,0,0,0,0,0,0,1002,1,0,0,0,10,0,0,0,0,2,275,64,0,0,1,0,0,0,0,1,3547,1,0,982,37,0,1,1,1,0,0,0,5,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,37,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,5,0,0,0,0,1,40,247,0,4,14,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1649,167,5 +2,0,0,15,1,52,65,1,193,35,43,0,1,2,60,0,144,0,9,7,0,0,0,1,4,14,24,0,28,0,3,0,0,1,26,0,53,307,34,0,296,0,0,0,1,0,0,10,0,0,0,0,11,276,0,0,0,0,0,1,0,0,0,12,0,42,0,0,7030,52,576,0,30,0,0,0,0,0,44,0,0,0,0,0,1,14,647,0,1,26,1,0,4,95,0,915,145,16,2,0,4,1,790,0,31,0,7,1788,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,28,2,0,0,0,0,0,0,0,0,0,0,1,0,0,3,45,0,0,0,2,0,0,0,0,1,0,10,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,94,0,0,0,0,0,0,643,0,191,0,0,0,22,90,100,846,644,0,0,0,0,1,0,0,0,0,0,0,0,0,2138,0,0,0,0,0,0,0,0,0,0,0,0,10,0,39,0,0,0,0,0,0,113,61,484,18,0,0,614,0,1385,0,1,0,380,91,0,0,0,0,0,0,9,0,0,517,1,0,0,0,12,0,0,0,0,26,168,352,0,0,382,0,0,0,0,0,867,0,0,1194,0,0,1,0,1,0,0,0,24,0,0,0,3,0,0,0,0,0,38,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,1,61,1,1,1,0,81,0,0,0,0,9,79,485,0,67,2,0,0,0,0,0,385,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,39,0,0,0,0,0,0,0,0,0,0,0,1,0,9,1044,182,5 +0,0,0,7,0,42,23,0,65,4,22,0,0,8,6,0,429,0,7,2,0,0,0,9,0,12,3,0,20,0,1,0,0,0,4,15621,42,6,3,0,66,0,10,0,1,0,0,13,0,0,0,0,2,1055,0,0,0,0,0,1,0,0,0,0,0,7,0,0,127415,42,661,0,17,0,0,0,0,0,80,0,0,0,0,1,9,117,14893,0,0,4,0,0,1,8,0,419,45,19,1,0,2,0,585,0,2,45,0,9684,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,2,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,12,12,12,0,0,0,9082,0,118,0,0,0,10,21,763,7756,9026,0,0,0,0,1,0,3,0,0,0,0,0,0,7143,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,1,0,130,33,391,7,0,0,553,0,761,6,0,0,377,15,0,0,0,0,0,0,0,0,0,560,1,0,0,0,11,0,0,0,0,3,197,210,0,0,115,0,0,0,0,0,4237,1,0,9399,24,0,1,1,1,0,0,0,30,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,24,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,48,0,0,0,0,1,46,814,0,22,14,0,0,0,0,0,141,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2641,80,5 +0,0,0,133,0,52,95,0,66,17,12,0,0,10,371,0,1460,0,7,3,0,0,0,10,0,11,0,0,8,0,1,0,0,0,8,49416,52,6,0,0,576,0,2,0,1,0,0,3,0,0,0,0,1,1140,0,0,0,0,0,1,0,0,0,0,0,26,0,0,96770,52,2283,0,5,0,0,0,0,0,194,0,0,0,0,0,12,58,14254,0,0,8,0,0,0,0,0,307,35,7,1,0,2,0,2297,0,20,31,0,12413,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,14,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,64,12,12,12,0,0,0,4508,0,88,0,0,0,3,6,774,2410,4486,0,0,0,0,1,0,5,0,0,0,0,0,0,733,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,133,37,531,134,0,0,677,0,377,0,0,0,464,58,0,0,0,0,0,0,0,0,0,2021,1,0,0,0,13,0,0,0,0,2,222,81,0,0,39,0,0,0,0,0,8255,1,0,933,93,0,1,1,1,0,0,0,9,0,0,0,2,1,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,93,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,13,0,0,0,0,1,60,422,0,6,14,0,0,0,0,0,263,2,0,0,0,0,0,0,0,0,0,0,0,3,0,2,23,0,0,0,0,0,0,0,0,0,0,0,0,0,4,15564,89,5 +0,0,0,2,0,10,2,0,3,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,18,0,3,0,0,0,1,0,0,0,0,0,1,0,0,48,10,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0,0,2,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,20,0,24,0,0,0,0,3,24,5,41,0,0,0,0,1,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,35,2,0,0,47,0,54,0,0,0,17,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,92,10,0,0,0,0,0,0,0,1,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,26,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,5 +1,0,0,19,0,76,44,0,207,56,60,0,1,5,640,1,113,0,7,6,0,0,0,11,14,9,36,0,38,0,11,0,0,0,45,0,76,310,43,0,2067,0,0,0,1,0,0,6,0,0,0,0,29,377,0,0,0,0,0,1,0,0,0,3,0,57,0,0,13645,76,1226,0,50,0,0,0,0,1,24,0,0,0,0,0,11,18,991,0,0,45,0,0,4,143,0,1444,235,9,0,0,2,0,2233,0,50,0,7,10775,0,0,0,0,197,0,10,0,0,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,734,0,234,0,0,0,58,153,175,2989,830,0,0,0,0,1,0,0,0,0,0,0,0,0,1703,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,13,450,515,23,0,0,523,0,1797,0,0,0,378,183,0,34,0,0,0,0,2,0,0,1078,1,0,0,0,31,0,0,0,0,26,189,421,0,0,615,0,0,0,0,5,773,0,0,845,0,0,1,61,0,0,0,0,14,0,0,0,2,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,193,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,110,1,1,1,0,291,0,4,0,0,1,121,715,0,94,0,0,1,0,0,0,806,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,25,0,0,0,0,0,0,0,0,0,0,0,0,4,4149,350,5 +0,0,0,10,0,33,4,0,33,5,12,0,0,0,12,0,44,0,15,3,0,0,0,1,0,4,12,0,5,0,2,1,0,0,13,0,33,6,4,0,62,0,0,0,1,0,0,1,0,0,0,0,4,121,0,0,0,0,0,1,0,0,0,0,0,12,0,0,15102,33,132,0,8,0,0,0,0,0,11,0,0,0,0,0,1,4,2863,0,0,13,0,0,1,16,0,179,30,4,0,0,2,0,179,0,8,0,0,2578,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,2399,0,56,0,0,0,8,31,60,167,2397,0,0,0,0,1,0,0,0,0,0,0,0,0,2305,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,16,213,12,0,0,236,0,575,0,0,0,140,50,0,0,0,0,0,0,0,0,0,120,1,0,0,0,4,0,0,0,0,5,125,105,0,0,67,0,3,0,0,1,751,0,0,2575,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,24,0,0,0,0,1,46,311,0,22,2,0,0,0,0,0,84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1220,116,5 +0,0,0,22,2,37,69,2,150,14,18,0,0,0,49,0,151,0,24,6,0,0,0,1,0,5,15,0,10,0,1,0,0,2,16,0,39,102,26,0,160,0,0,0,1,0,0,4,0,0,0,0,5,216,0,4,0,0,0,1,0,0,0,10,0,31,0,0,52888,37,418,0,11,0,0,0,0,0,20,0,0,0,0,0,1,9,13069,0,2,16,2,0,4,34,0,401,50,9,0,0,6,2,371,0,22,0,0,1559,0,0,0,0,26,0,4,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,5783,0,102,0,0,0,10,210,71,387,5778,0,0,0,0,1,0,0,0,0,0,0,0,0,10031,0,0,0,0,0,0,0,0,0,8,0,0,4,0,0,0,0,0,0,0,0,218,56,649,41,0,0,701,0,1655,0,2,0,374,85,0,0,0,0,0,0,0,0,0,461,1,0,0,0,7,0,0,0,0,5,202,228,0,0,121,0,0,0,0,0,2401,0,0,13166,0,0,1,0,0,0,0,0,10,0,0,0,4,0,0,0,0,0,13,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,40,1,1,1,0,54,0,0,0,0,17,55,356,0,31,0,0,0,0,0,0,264,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,16,0,0,0,0,0,0,0,0,0,0,0,2,0,4,4030,192,5 +0,0,0,10,0,27,3,0,13,2,4,0,0,0,10,0,27,0,7,1,0,0,0,1,0,0,6,0,2,0,1,2,0,0,10,0,27,6,0,0,36,0,0,0,1,0,0,8,0,0,0,0,2,143,0,0,0,0,0,1,0,0,0,4,0,7,0,0,3384,27,108,0,5,0,0,0,0,0,34,0,0,0,0,0,1,11,458,0,0,10,0,0,0,0,0,22,0,15,0,0,2,0,69,0,4,0,0,1180,0,0,0,0,4,0,3,0,3,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,12,0,0,0,0,0,0,368,0,107,0,0,0,4,14,60,912,386,0,0,0,0,1,0,3,0,0,0,0,0,0,878,0,0,1,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,9,283,13,0,0,316,0,838,0,0,0,227,69,0,0,0,0,0,0,8,0,0,64,1,0,0,0,2,0,0,0,0,2,116,173,0,0,0,0,0,0,0,8,179,0,0,394,0,0,1,8,1,0,0,0,12,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,14,0,0,0,0,1,37,465,0,11,0,0,0,0,1,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,387,277,5 +5,0,0,10,1,53,60,1,121,2,22,0,0,9,8,0,508,0,9,3,0,0,0,8,0,11,0,0,8,0,1,0,0,1,8,14179,54,54,7,0,141,0,0,0,1,0,0,7,1,0,0,0,2,781,0,0,0,0,0,1,0,0,0,11,0,10,0,0,68084,53,735,0,6,0,0,0,1,0,50,0,0,0,0,0,9,42,17773,0,1,8,1,0,3,43,0,679,85,14,0,0,4,1,739,0,1,34,0,5165,0,0,0,0,18,5,5,0,2,0,0,1,0,0,0,7,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,0,25,0,1,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,12,12,12,0,0,0,14200,0,140,0,0,0,4,20,529,1393,14199,0,0,0,0,1,0,12,0,0,0,0,0,0,874,5,0,0,0,3,0,0,0,0,0,0,0,7,6,0,0,0,0,0,1,0,220,28,525,11,0,0,547,0,627,0,1,0,256,20,0,0,0,0,0,0,0,0,0,737,1,0,3,0,11,0,0,0,0,2,192,161,0,0,176,0,0,0,0,0,3346,1,0,171,15,0,1,1,0,0,0,0,18,0,0,0,1,0,0,0,0,0,3,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,15,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,78,1,1,1,0,36,0,0,0,0,9,62,150,0,8,12,0,0,0,0,0,229,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,7,2155,111,5 +3,0,0,13,0,75,16,0,108,62,27,2,0,0,75,8,68,0,11,7,0,0,0,4,5,6,15,0,22,0,1,0,0,0,30,0,75,224,43,0,329,0,0,0,1,0,0,7,0,0,0,0,11,277,0,0,0,0,0,1,0,0,0,3,0,87,0,0,22309,75,387,0,23,0,0,0,0,0,36,0,0,0,0,0,4,28,1588,0,0,30,0,0,2,63,0,615,55,11,0,0,2,0,635,0,69,0,0,3903,0,1,0,0,61,0,1,0,0,0,0,1,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,20,0,0,0,0,0,0,1128,0,151,0,0,0,22,92,147,1471,1086,0,0,0,0,1,0,0,0,0,0,0,0,0,3082,0,0,0,0,0,0,0,0,0,4,0,0,7,0,0,0,0,0,0,0,0,8,79,549,16,0,0,420,0,1084,0,0,0,247,55,0,0,0,0,0,0,0,0,0,315,1,0,0,0,16,0,0,0,0,8,187,248,0,0,146,0,0,0,0,0,28096,0,0,2577,0,0,1,0,0,0,0,0,16,0,0,0,3,0,0,0,0,0,62,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,99,1,1,1,0,98,0,0,0,0,1,105,498,0,44,0,0,0,0,0,0,333,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,0,0,0,0,0,0,0,0,0,0,0,0,0,5,886,164,5 +0,0,0,45,0,17,2,0,18,0,2,0,0,0,91,1,151,0,7,1,0,0,0,3,0,0,9,0,2,0,1,3,0,0,0,0,17,258,0,0,624,0,7,0,1,0,0,7,0,0,0,0,3,227,0,0,0,0,0,1,0,0,0,0,0,2,0,0,63106,17,311,0,6,0,0,0,0,0,26,0,0,0,0,0,3,12,5808,0,0,0,0,0,0,0,0,35,0,9,0,0,2,0,563,0,0,0,0,1380,0,0,0,0,0,0,6,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,5420,0,114,0,0,0,6,23,104,72,5426,0,0,0,0,1,0,0,0,0,0,0,0,0,17437,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,8,4,434,46,0,0,250,0,559,0,0,0,153,63,0,0,0,0,0,0,0,0,0,272,1,0,0,0,4,0,0,0,0,4,112,133,0,0,0,0,0,0,0,0,9882,0,0,20481,0,0,1,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,2,0,0,0,0,369,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,76,1,1,1,0,26,0,0,0,0,1,17,605,0,15,0,0,0,0,0,0,195,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,36,0,0,0,0,0,5,5683,155,5 +0,0,0,5,2,16,2,10,13,0,5,0,0,0,3,0,14,0,6,1,0,2,4,1,2,0,0,0,0,0,1,0,0,2,6,0,18,6,0,0,12,0,0,0,1,0,0,5,0,0,0,0,0,129,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1575,16,185,0,1,0,0,0,0,0,21,6,0,0,0,1,1,9,216,0,10,6,2,0,0,0,0,18,0,8,0,0,2,2,18,0,1,0,0,212,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,177,0,70,0,0,0,0,3,34,8,192,0,0,0,0,1,0,0,0,0,0,0,0,0,588,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,4,103,7,0,0,178,0,368,0,0,0,116,12,0,0,0,0,0,0,0,0,0,43,1,0,0,0,10,0,0,0,0,0,99,78,0,0,0,0,0,0,0,0,123,0,0,354,0,0,1,0,1,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,24,300,0,1,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,278,76,5 +0,0,0,6,0,42,67,0,189,24,50,0,0,6,32,0,60,0,7,5,0,0,0,6,3,10,15,0,10,0,1,0,0,0,9,0,42,6,14,0,361,0,0,0,1,0,0,15,0,0,0,0,6,217,0,0,0,0,0,1,0,0,0,0,0,50,0,0,10775,42,514,0,10,0,0,0,0,0,53,0,0,0,0,3,8,38,1083,0,0,9,0,0,3,158,0,1463,200,23,0,2,2,0,928,0,29,0,0,1200,0,0,0,0,10,0,8,0,0,0,0,1,0,0,0,17,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,10,10,10,0,0,0,1107,0,172,0,0,0,10,46,226,1059,1085,0,0,0,0,1,0,6,0,0,0,0,0,0,3570,0,0,0,0,0,0,0,0,0,0,0,0,15,1,4,0,0,0,0,1,0,84,39,463,6,0,0,599,0,1019,0,0,0,473,31,0,0,0,2,0,0,0,0,0,411,1,0,0,0,14,0,0,0,0,5,328,456,0,0,491,0,2,0,0,0,575,0,0,2154,2,0,1,1,0,0,0,0,29,0,0,0,14,0,0,0,0,0,24,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,27,0,0,0,0,1,51,442,0,28,8,0,0,0,0,0,451,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,32,0,0,0,0,0,0,0,0,0,0,0,0,0,8,838,383,5 +0,0,0,4,0,13,2,0,23,0,9,0,0,0,5,0,21,0,7,1,0,0,0,1,0,0,3,0,1,0,1,1,0,0,4,0,13,6,0,0,30,0,0,0,1,0,0,2,0,0,0,0,1,101,0,0,0,0,0,1,0,0,0,0,0,6,0,0,340,13,69,0,3,0,0,0,0,0,7,0,0,0,1,0,1,5,43,0,0,4,0,0,1,13,0,123,25,3,0,0,2,0,89,0,2,0,0,217,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,53,0,43,0,0,0,2,8,30,185,66,0,0,0,0,1,0,0,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,5,99,4,0,0,98,0,222,0,0,0,44,6,0,0,0,0,0,0,0,0,0,67,1,0,0,0,2,0,0,0,0,1,96,46,0,0,43,0,0,0,0,0,46,0,0,36,0,0,1,0,0,0,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,6,0,0,0,0,1,17,80,0,6,0,0,0,0,0,0,53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3547,20,5 +0,0,0,5,0,42,262,0,712,20,173,0,0,0,33,0,67,0,7,6,0,0,0,2,0,264,34,0,5,0,4,0,0,0,21,0,42,8,7,1,1112,0,0,0,1,0,0,2,0,0,0,0,11,242,0,0,0,0,0,1,0,0,0,0,0,42,0,0,5915,42,1555,0,267,0,0,0,0,0,11,0,0,0,0,0,5,9,853,0,0,21,0,0,4,683,0,6905,830,2,0,0,2,0,3460,0,24,0,0,2005,0,0,0,0,8,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,1,0,24,0,0,0,0,0,0,572,0,105,0,0,0,15,314,77,4494,583,0,0,0,0,2,0,0,0,0,0,0,0,0,2558,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,10,27,402,5,0,0,597,0,405,0,0,0,490,33,0,0,0,0,0,0,0,0,0,1254,1,0,0,0,8,0,0,0,0,261,246,1246,0,0,2236,0,0,0,0,0,793,0,0,1193,0,0,1,1,0,0,0,0,4,0,0,0,2,0,0,0,0,0,20,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,26,0,0,0,4,1,63,177,0,307,0,0,0,0,0,0,1293,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,26,0,0,0,0,0,0,0,0,0,0,0,0,0,3,879,76,5 +6,0,0,34,0,133,253,0,378,127,299,0,1,22,253,0,2593,0,7,10,0,0,0,23,7,26,51,0,232,0,6,1,0,0,53,117361,133,209,45,0,685,0,0,0,1,0,0,6,0,0,0,0,24,3202,0,0,0,0,0,1,0,0,0,8,0,77,0,0,201305,133,4553,0,238,0,0,0,0,0,373,0,0,0,0,1,25,1355,26670,0,0,53,0,0,4,201,0,4042,405,12,0,0,2,0,4729,0,67,1094,6,28250,0,0,0,0,20,0,12,0,0,0,0,1,0,0,0,14,4,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,2,0,0,0,0,0,1,16,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,4,0,0,39,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,172,12,12,12,0,0,0,5988,0,318,0,0,0,163,263,6877,34083,5729,0,0,0,0,1,0,4,0,0,0,0,0,0,4787,0,0,1,0,0,0,0,0,0,1,0,0,6,1,0,0,0,0,0,1,0,693,327,1950,42,0,0,1728,0,1620,8,0,0,1375,321,0,48,0,0,0,0,0,0,0,3806,1,0,0,0,40,0,0,0,0,14,723,653,0,0,2454,0,3,0,0,1,20442,1,0,4831,173,0,1,95,0,0,0,0,13,0,0,0,3,0,0,0,0,0,61,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,173,9,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,172,1,1,1,0,687,0,0,0,0,1,186,1038,0,300,16,0,1,0,1,0,1097,4,0,0,0,0,0,0,0,0,0,0,0,3,0,2,145,48,0,0,0,0,0,0,0,0,0,0,0,0,6,12389,614,5 +3,0,0,12,1,87,135,1,222,19,46,0,0,9,45,0,243,0,33,5,0,0,0,9,7,22,15,0,30,0,9,0,0,1,30,8302,88,54,38,0,415,0,0,0,1,0,0,2,0,0,0,0,28,880,0,0,0,0,0,1,0,0,0,21,0,37,0,0,67889,87,770,0,45,0,0,0,0,0,35,0,0,0,0,0,10,55,11037,0,1,30,1,0,5,153,0,1665,170,4,0,0,4,1,1145,0,25,58,0,4507,0,0,0,0,34,3,20,0,4,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,2,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,26,0,0,0,0,0,0,2,0,0,2,0,0,0,0,29,0,1,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,29,12,12,12,0,0,0,8870,0,132,0,0,0,57,136,629,2684,8856,0,0,0,0,1,0,7,0,0,0,0,0,0,1457,2,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,1,0,217,68,633,13,0,0,765,0,1064,0,1,0,431,94,0,0,0,0,0,0,0,0,0,733,1,0,0,0,21,0,0,0,0,29,236,375,0,0,364,0,32,0,0,0,10799,1,0,293,14,0,1,1,0,0,0,0,4,0,1,0,1,0,0,0,0,0,19,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,14,23,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,109,1,1,1,0,120,0,0,0,0,9,118,399,0,64,12,0,1,0,0,0,514,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,31,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1528,241,5 +0,0,0,21,0,47,14,0,85,14,24,0,0,0,35,0,45,0,47,2,0,0,0,4,0,0,15,0,10,0,12,4,0,0,18,0,47,23,0,0,206,0,0,0,1,0,0,3,0,0,0,0,15,153,0,0,0,0,0,1,0,0,0,0,0,28,0,0,2709,47,270,0,26,0,0,0,0,0,13,0,0,0,0,0,5,9,324,0,0,18,0,0,3,49,0,499,50,3,0,0,2,0,430,0,17,0,0,1542,0,0,0,0,15,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,20,0,0,0,0,0,0,345,0,100,0,0,0,30,42,112,540,316,0,0,0,0,1,0,0,0,0,0,0,0,0,875,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,23,400,29,0,0,414,0,646,0,0,0,288,58,0,0,0,0,0,0,0,0,0,250,1,0,0,0,6,0,0,0,0,16,256,191,0,0,109,0,0,0,0,0,301,0,0,578,0,0,1,2,0,0,0,0,9,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,20,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,55,0,0,0,0,1,65,294,0,41,0,0,1,0,0,0,163,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,2,0,0,0,0,0,0,0,0,0,0,0,0,4,387,124,5 +0,0,0,10,0,37,37,0,87,9,22,0,0,0,16,0,23,0,7,2,0,0,0,1,0,1,3,0,9,0,1,0,0,0,25,0,37,6,7,0,144,0,0,0,1,0,0,3,0,0,0,0,1,144,0,0,0,0,0,1,0,0,0,6,0,22,0,0,1571,37,209,0,10,0,0,0,0,0,14,0,0,0,0,0,1,5,152,0,0,25,0,0,2,64,0,546,90,4,0,0,2,0,345,0,10,0,0,973,0,0,0,0,16,0,5,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,153,0,111,0,0,0,2,19,64,395,149,0,0,0,0,1,0,0,0,0,0,0,0,0,621,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,13,246,10,0,0,332,0,592,0,0,0,258,25,0,0,0,0,0,0,2,0,0,192,1,0,0,0,3,0,0,0,0,2,136,232,0,0,233,0,0,0,10,0,119,0,0,127,0,0,1,0,1,0,0,0,5,0,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,39,0,0,0,0,1,62,356,0,14,0,0,0,0,0,0,171,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,241,86,5 +0,0,0,7,0,25,13,0,46,1,17,0,0,0,6,0,22,0,6,3,0,0,0,1,0,2,0,0,4,0,1,0,0,0,12,0,25,38,9,0,90,0,0,0,1,0,0,3,0,0,0,0,2,152,0,0,0,0,0,1,0,0,0,0,0,11,0,0,560,25,107,0,5,0,0,0,0,0,9,0,0,0,0,0,1,5,49,0,0,12,0,0,3,36,0,331,55,3,0,0,2,0,198,0,4,0,0,556,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,71,0,53,0,0,0,4,14,42,340,69,0,0,0,0,1,0,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,11,147,7,0,0,174,0,551,0,0,0,105,33,0,0,0,0,0,0,0,0,0,110,1,0,0,0,4,0,0,0,0,3,107,115,0,0,126,0,0,0,0,0,116,0,0,61,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,14,0,0,0,0,1,37,159,0,7,0,0,0,0,0,0,111,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,98,60,5 +1,0,0,0,0,25,5,0,17,31,2,0,1,0,35,0,28,0,6,2,0,0,0,1,0,2,0,0,3,0,1,0,0,0,10,0,25,311,10,0,102,0,0,0,1,0,0,1,0,0,0,0,1,102,0,0,0,0,0,1,0,0,0,0,0,33,0,0,8863,25,97,0,5,0,0,0,0,0,9,0,0,0,0,0,1,3,1466,0,0,10,0,0,1,6,0,65,0,3,0,0,4,0,139,0,32,0,0,1008,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,802,0,62,0,0,0,2,17,43,734,794,0,0,0,0,1,0,0,0,0,0,0,0,0,2276,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,14,47,176,0,0,0,140,0,321,0,0,0,63,20,0,0,0,0,0,1,7,0,0,94,1,0,0,0,3,0,0,0,0,3,121,24,0,0,0,0,0,0,0,0,41309,0,0,1448,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,22,0,0,0,0,1,35,89,0,6,0,0,0,0,0,0,99,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,31,0,0,0,0,0,0,0,0,0,0,0,0,0,3,848,70,5 +3,0,0,14,0,31,7,0,55,6,9,0,0,0,9,3,29,0,7,3,0,0,0,2,0,1,6,0,4,0,1,0,0,0,14,0,31,7,8,0,100,0,0,0,1,0,0,3,0,0,0,0,2,93,0,0,0,0,0,1,0,0,0,0,0,13,0,0,900,31,140,0,5,0,0,0,0,0,19,0,0,0,0,0,2,6,104,0,0,14,0,0,1,18,0,174,15,8,0,0,2,0,172,0,6,0,0,533,0,0,1,0,1,2,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,134,0,58,0,0,0,4,25,71,212,131,0,0,0,0,1,0,1,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,16,192,22,0,0,211,0,420,0,0,0,121,15,0,0,0,0,0,0,0,0,0,119,1,0,0,0,5,0,0,0,0,3,127,94,0,0,30,0,0,0,0,0,129,0,0,117,0,0,1,0,1,0,0,0,7,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,18,0,0,0,0,1,45,216,0,12,0,0,0,0,0,0,84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,165,5 +2,0,0,0,1,57,6,4,28,0,3,0,0,1,2,1,172,0,7,8,1,1,1,8,0,0,0,0,1,0,3,0,0,1,10,0,58,140,0,0,91,0,0,0,1,0,0,1,0,0,0,0,2,113,0,2,0,0,0,1,0,0,0,0,0,1,0,0,912,57,309,0,2,0,0,0,0,0,4,3,0,0,0,0,14,16,124,0,4,10,1,0,0,5,0,331,0,1,0,0,2,1,183,0,0,0,0,930,0,0,0,0,3,2,5,0,1,0,0,1,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,188,0,109,0,0,0,2,5,143,255,192,0,0,0,0,1,0,0,0,0,0,0,0,0,429,0,0,0,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,1,0,10,11,301,1,0,0,336,0,855,0,0,0,129,349,0,0,0,0,0,0,0,0,0,220,1,0,0,0,19,0,0,0,0,0,146,85,0,0,0,0,0,0,0,0,699,0,0,14,0,0,1,1,1,0,0,0,2,0,4,0,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,77,1,1,1,0,7,0,0,0,0,16,76,213,0,4,0,0,0,0,0,0,168,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,543,133,5 +5,0,0,20,0,67,13,0,81,45,12,1,1,5,62,0,84,0,32,7,0,0,0,15,4,12,24,0,32,0,53,0,0,0,24,0,67,221,35,0,189,0,0,0,1,0,0,10,0,0,0,0,60,358,0,0,0,0,0,1,0,0,0,0,0,47,0,0,7159,67,478,0,83,0,0,0,0,0,46,0,0,0,0,1,18,35,1195,0,0,24,0,0,1,17,0,544,20,17,0,0,2,0,518,0,43,0,7,3135,0,0,0,0,21,3,1,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,10,10,10,0,0,0,905,0,211,0,0,0,118,198,297,687,905,0,0,0,0,1,0,6,0,0,0,0,0,0,1754,0,0,0,0,0,0,0,0,0,0,0,0,26,1,8,0,0,0,0,1,0,39,70,430,25,0,0,434,0,1154,0,0,0,272,124,0,0,0,0,0,0,10,0,0,291,1,0,0,0,26,0,0,0,0,60,164,188,0,0,34,0,2,0,0,0,1370,0,0,1081,3,0,1,1,0,0,0,0,20,0,0,0,3,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,3,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,105,1,1,1,0,221,0,0,0,0,1,91,996,0,112,9,0,0,0,0,0,213,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,49,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1542,184,5 +11,0,0,17,0,42,109,0,240,37,67,2,1,4,64,0,88,0,7,6,0,0,0,3,4,7,31,0,25,0,1,0,0,0,23,0,42,181,33,0,496,0,0,0,1,0,0,2,0,0,0,0,9,199,0,0,0,0,0,1,0,0,3,0,0,65,0,0,2435,42,626,0,26,0,0,0,0,0,5,0,0,0,0,0,3,6,153,0,0,23,0,0,6,189,0,1576,255,2,0,0,2,0,1201,0,41,0,5,2605,0,0,0,0,14,7,3,0,0,0,0,1,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,3,0,0,0,0,0,0,0,1,1,1,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,33,0,1,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,248,0,102,0,0,0,18,92,94,1540,222,0,0,0,0,1,0,1,0,0,0,0,0,0,1047,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,68,344,18,0,0,394,0,724,0,0,0,304,60,0,0,0,0,0,0,0,0,0,582,1,0,0,0,13,0,0,0,0,8,161,439,0,0,574,0,1,0,0,8,481,0,0,25,0,0,1,0,1,0,0,0,4,0,1,0,7,0,0,0,0,0,41,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,71,0,0,0,0,1,65,192,0,64,0,0,0,0,0,0,513,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,43,0,0,0,0,0,0,0,0,0,0,0,0,0,2,397,201,5 +0,0,0,5,0,16,2,0,51,0,16,0,0,0,4,0,55,0,7,5,0,0,0,2,0,0,12,0,7,0,1,0,0,0,6,0,16,6,9,0,55,0,0,0,1,0,0,4,0,0,0,0,4,169,0,0,0,0,0,1,0,0,0,0,0,7,0,0,3388,16,165,0,8,0,0,0,0,0,18,0,0,0,0,0,2,7,312,0,0,6,0,0,1,25,0,259,60,6,0,0,2,0,200,0,1,0,0,528,0,0,0,0,1,0,5,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,329,0,108,0,0,0,8,41,35,191,355,0,0,0,0,1,0,0,0,0,0,0,0,0,995,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,10,161,5,0,0,243,0,481,0,0,0,174,21,0,9,0,0,0,0,0,0,0,135,1,0,0,0,7,0,0,0,0,5,101,181,0,0,166,0,0,0,0,0,472,0,0,827,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,7,0,0,0,0,1,22,412,0,20,0,0,0,0,0,0,92,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,444,71,5 +2,0,0,4,0,20,10,0,31,6,9,0,0,0,12,0,27,0,7,3,0,0,0,2,0,1,3,0,4,0,1,0,0,0,9,0,20,6,9,0,84,0,0,0,1,0,0,2,0,0,0,0,2,75,0,0,0,0,0,1,0,0,0,0,0,9,0,0,583,20,99,0,5,0,0,0,0,0,9,0,0,0,0,0,2,6,145,0,0,9,0,0,2,21,0,199,30,2,0,0,2,0,148,0,0,0,0,273,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,130,0,56,0,0,0,4,24,45,199,138,0,0,0,0,1,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,9,120,13,0,0,119,0,304,0,0,0,58,17,0,0,0,0,0,0,0,0,0,96,1,0,0,0,5,0,0,0,0,2,103,52,0,0,63,0,0,0,0,0,122,0,0,32,0,0,1,0,0,0,0,0,4,0,1,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,27,0,0,0,0,1,29,77,0,9,0,0,0,0,0,0,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,186,67,5 +107,0,0,19,0,81,39,0,134,43,21,0,1,7,64,0,885,0,7,12,0,0,0,7,1,19,9,0,17,0,1,0,0,0,37,898,81,470,32,0,302,0,0,0,1,0,0,6,0,0,0,0,11,503,0,2,0,0,0,1,0,0,0,0,0,44,0,0,39869,81,1190,0,15,0,0,0,0,1,30,0,0,0,0,1,9,28,6848,0,0,37,0,0,3,58,0,641,65,10,0,0,2,0,1380,0,40,0,10,5041,0,1,106,0,3,0,6,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,105,12,12,12,0,0,0,5796,0,198,0,0,0,20,66,313,1448,5942,0,0,0,0,1,0,3,0,0,0,0,0,0,2375,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,37,67,681,37,0,0,591,0,1173,1,0,0,394,69,0,2,0,0,0,0,2,0,2,1158,1,0,0,0,20,0,0,0,0,11,222,275,0,0,162,0,0,0,0,0,2862,1,0,1182,6,0,1,29,0,0,0,0,15,0,0,0,5,0,0,0,0,0,37,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,1,1,1,0,42,0,0,0,0,1,118,690,0,34,12,0,0,0,0,0,297,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,51,24,0,0,0,0,0,0,0,0,0,0,0,0,5,1664,237,5 +7,0,0,11,1,76,62,1,114,4,24,0,0,19,14,0,791,0,9,8,0,0,0,8,2,16,21,0,20,0,1,0,0,1,26,10270,77,54,27,0,131,0,0,0,1,0,0,6,0,0,0,0,8,1229,0,0,0,0,0,1,0,0,0,13,0,7,0,0,213106,76,1097,0,17,0,0,0,0,0,79,0,0,0,0,0,10,77,46680,0,1,26,1,0,1,0,0,657,65,10,0,0,4,1,1046,0,5,106,0,9737,0,0,0,0,13,7,14,0,0,0,0,1,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,0,7,0,0,0,0,0,0,0,0,11,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,40510,0,131,0,0,0,17,138,802,2531,40445,0,0,0,0,1,0,13,0,0,2,0,0,0,1197,7,0,0,0,0,0,0,0,0,0,0,0,13,7,0,0,0,0,0,1,0,412,35,606,12,0,0,668,0,984,0,1,0,353,271,0,0,0,0,0,0,0,0,0,1033,1,0,0,0,18,0,0,0,0,8,220,143,0,0,130,0,9,0,0,0,10015,1,0,338,36,0,1,1,1,0,0,0,14,0,0,0,2,0,0,0,0,0,7,0,0,0,22,5,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,138,1,1,1,0,91,0,0,0,0,9,103,317,0,44,14,0,0,0,0,0,277,5,0,0,0,0,0,0,0,0,0,0,0,4,0,1,21,0,0,0,0,0,0,0,0,0,0,0,1,0,5,3493,220,5 +6,0,0,21,18,119,153,66,452,34,100,1,1,9,109,1,413,0,11,37,0,16,16,12,5,26,39,0,26,0,1,6,0,17,48,103,137,420,22,0,636,0,0,1,1,1,0,4,0,0,0,0,26,459,0,0,0,0,0,1,0,0,1,7,0,55,0,0,42540,119,3346,0,32,0,0,0,0,0,28,48,0,0,0,0,14,38,3600,0,66,48,17,0,8,203,0,2002,335,7,1,0,6,18,1699,0,39,3,6,41225,0,0,0,0,38,4,3,0,0,0,0,1,0,0,0,26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,45,0,1,0,0,0,0,0,0,0,0,0,1,4,3,0,0,0,0,2,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,113,12,12,12,0,0,0,2884,0,193,0,0,0,31,131,601,7778,2801,0,0,0,0,1,0,5,0,0,0,1,1,0,8263,2,0,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,10,0,294,86,1634,42,0,0,1437,0,2564,0,2,0,550,659,0,0,0,0,1,0,0,0,0,1250,1,0,0,0,86,0,0,0,0,14,252,426,0,0,860,0,0,0,0,3,4673,1,0,7849,10,0,1,1,0,0,0,0,8,0,2,0,7,0,0,0,0,0,79,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,10,27,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,2,172,1,1,1,0,140,0,0,0,0,155,186,272,0,84,14,0,0,0,0,0,628,22,0,0,0,0,0,0,0,0,0,0,0,20,0,1,46,0,0,0,0,0,0,0,0,0,0,0,27,0,5,3173,437,5 +0,0,0,6,0,12,2,0,8,0,3,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,67,0,0,13,0,0,0,1,0,0,2,0,0,0,0,0,60,0,0,0,0,0,1,0,0,0,0,0,4,0,0,316,12,35,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,42,0,0,3,0,0,0,0,0,7,0,4,0,0,2,0,19,0,1,0,0,161,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,43,0,32,0,0,0,0,3,26,5,55,0,0,0,0,1,0,0,0,0,0,0,0,0,180,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,89,6,0,0,87,0,343,0,0,0,31,5,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,94,15,0,0,0,0,0,0,0,0,104,0,0,56,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,68,0,1,0,0,0,0,1,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,46,5 +1,0,0,8,0,45,7,0,45,5,5,1,0,2,16,1,787,0,7,4,0,0,0,8,1,11,0,0,7,0,1,0,0,0,8,898,45,37,7,0,57,0,0,0,1,0,0,7,0,0,0,0,4,308,0,0,0,0,0,1,0,0,0,0,0,7,0,0,21974,45,906,0,5,0,0,0,0,1,36,0,0,0,0,0,10,26,4106,0,0,8,0,0,0,0,0,119,5,9,0,0,2,0,833,0,3,0,0,1509,0,1,0,0,23,0,8,0,0,0,0,1,0,0,0,2,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,2990,0,124,0,0,0,4,11,261,359,2960,0,0,0,0,1,0,9,0,0,0,0,0,0,1967,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,2,0,32,19,275,18,0,0,385,0,655,0,0,0,215,27,0,0,0,0,0,0,10,0,0,871,1,0,0,0,13,0,0,0,0,2,134,143,0,0,1,0,0,0,0,0,2341,1,0,1358,6,0,1,1,1,0,0,0,15,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,7,0,0,0,0,1,53,438,0,7,12,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1257,108,5 +4,0,0,14,1,29,28,1,56,42,14,0,0,0,58,0,262,0,9,1,0,0,0,1,1,0,21,0,9,0,9,2,0,1,11,0,30,124,55702,0,160,0,0,0,1,0,0,2,1,0,0,0,8,124,0,0,0,0,0,1,0,0,0,29,0,48,0,0,1906,29,425,0,19,0,0,0,0,0,10,0,0,0,0,0,1,7,686,0,1,11,1,0,1,10,0,175,20,6,0,0,4,1,498,0,45,0,0,969,0,1,0,0,21,0,0,0,0,0,0,1,0,0,0,13,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,20,0,0,0,0,0,0,288,0,69,0,0,0,15,42,63,186,304,0,0,0,0,1,0,0,0,0,2,0,0,0,656,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,227,195,465,18,0,0,444,0,2816,0,1,0,170,46,0,0,0,0,0,0,0,0,0,427,1,0,3,0,3,0,0,0,0,8,152,41,0,0,40,0,6,0,0,0,2752,0,0,633,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,39,0,0,0,13,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,29,1,1,1,0,28,0,0,0,0,9,41,86,0,41,0,0,0,0,0,0,128,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,0,0,0,0,0,0,0,0,0,0,0,1,0,1,711,226,5 +1,0,0,0,0,12,3,0,4,1,1,0,1,0,3,0,15,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,12,25,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,1,0,0,51,12,27,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,3,0,0,1,0,0,7,0,0,0,0,4,0,29,0,1,0,0,1117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,16,0,0,0,0,3,26,7,28,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,54,0,0,0,48,0,143,0,0,0,12,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,2,0,0,0,0,1,95,1,0,0,0,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,3,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,20,5 +0,0,0,7,0,35,4,0,13,1,3,0,0,2,6,0,28,0,7,4,0,0,0,5,1,8,3,0,8,0,4,0,0,0,9,0,35,37,7,0,32,0,0,0,1,0,0,2,0,0,0,0,6,144,0,0,0,0,0,1,0,0,0,0,0,8,0,0,1073,35,79,0,10,0,0,0,0,0,16,0,0,0,0,0,7,15,165,0,0,9,0,0,0,0,0,98,5,4,0,0,2,0,67,0,4,0,0,585,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,135,0,85,0,0,0,10,18,161,102,128,0,0,0,0,1,0,2,0,0,0,0,0,0,364,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,14,159,7,0,0,204,0,331,0,0,0,103,9,0,0,0,0,0,0,0,0,0,63,1,0,0,0,10,0,0,0,0,3,119,63,0,0,0,0,0,0,0,0,188,0,0,117,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,13,0,0,0,2,1,44,175,0,14,9,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,259,53,5 +0,0,0,4,0,12,3,0,9,0,5,0,0,0,4,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,12,6,0,0,11,0,0,0,1,0,0,17,0,0,0,0,0,757,0,0,0,0,0,1,0,0,0,0,0,2,0,0,3088,12,72,0,1,0,0,0,0,0,24,0,0,0,0,0,1,34,548,0,0,1,0,0,0,0,0,24,0,2,0,0,5,0,14,0,5,5,0,222,0,0,0,0,0,0,17,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,472,0,294,0,0,0,0,3,33,20,502,0,0,0,0,1,0,0,0,0,0,0,0,0,1089,0,0,0,0,0,0,0,0,0,2,0,0,17,0,0,0,0,0,0,0,0,8,13,148,4,0,0,347,0,552,2,4,0,201,9,0,0,0,0,0,0,15,0,0,42,1,0,0,0,2,0,0,0,0,0,122,234,0,0,0,0,0,0,0,0,87,0,0,315,0,0,1,0,0,0,0,0,18,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,646,0,1,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,735,101,5 +11,0,0,6,0,46,16,0,48,7,7,0,0,2,13,0,499,0,6,3,0,0,0,6,0,10,0,0,3,0,0,0,0,0,13,898,46,6,0,0,86,0,0,0,1,0,0,5,0,0,0,0,1,286,0,0,0,0,0,1,0,0,0,0,0,17,0,0,21052,46,614,0,1,0,0,0,0,0,29,0,0,0,0,0,8,25,3494,0,0,13,0,0,1,17,0,226,20,10,0,0,2,0,611,0,11,0,0,1710,0,0,11,0,4,0,5,0,0,0,0,1,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,3010,0,92,0,0,0,0,3,244,476,3046,0,0,0,0,1,0,3,0,0,0,0,0,0,626,0,0,0,0,0,0,0,0,0,0,0,0,5,1,3,0,0,0,0,1,0,32,21,251,6,0,0,414,0,768,0,0,0,265,17,0,0,0,0,0,0,0,0,0,591,1,0,0,0,9,0,0,0,0,0,134,197,0,0,40,0,3,0,0,0,1322,1,0,143,6,0,1,15,1,0,0,0,14,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,0,0,0,0,0,1,59,557,0,1,12,0,0,0,0,0,110,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,12,0,0,0,0,0,0,0,0,0,0,0,0,4,499,121,5 +0,0,0,16,0,37,39,0,141,45,34,4,1,4,66,0,80,0,7,8,0,0,0,1,4,5,21,0,18,0,1,0,0,0,15,0,37,185,25,0,345,0,0,0,1,0,0,9,0,0,0,0,9,365,0,0,0,0,0,1,0,0,0,1,0,51,0,0,7735,37,471,0,19,0,0,0,0,0,43,0,0,0,0,0,3,13,788,0,0,15,0,0,4,82,0,769,130,19,0,0,2,0,698,0,37,0,7,7915,0,0,0,0,8,0,8,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,0,0,713,0,145,0,0,0,18,82,83,696,693,0,0,0,0,1,0,0,0,0,0,0,0,0,2052,0,0,0,0,0,0,0,0,0,0,0,0,9,0,2,0,0,0,0,0,0,13,60,421,19,0,0,496,0,1486,0,0,0,388,131,0,0,0,0,0,0,4,0,0,376,1,0,0,0,13,0,0,0,0,10,167,375,0,0,338,0,0,0,0,0,825,0,0,1286,0,0,1,0,0,0,0,0,24,0,0,0,3,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,48,0,0,0,0,1,52,1033,0,45,0,0,0,0,0,0,297,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,49,0,0,0,0,0,0,0,0,0,0,0,0,0,6,913,246,5 +1,0,0,6,0,16,11,0,55,1,22,0,0,4,5,0,30,0,8,3,0,0,0,2,0,1,0,0,2,0,1,0,0,0,2,1858,16,6,4,0,118,0,0,0,1,0,0,2,0,0,0,0,1,194,0,0,0,0,0,1,0,0,0,0,0,14,0,0,1057,16,133,0,3,0,0,0,0,0,11,0,0,0,0,0,3,6,156,0,0,2,0,0,4,43,0,486,80,4,0,0,2,0,262,0,2,0,0,1504,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,162,0,99,0,0,0,2,10,55,4152,160,0,0,0,0,1,0,0,0,2,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,60,5,380,6,0,0,210,0,469,0,0,0,107,562,0,0,0,0,0,0,0,0,0,135,1,0,0,0,5,0,0,0,0,2,127,152,0,0,189,0,0,0,0,0,411,0,0,73,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,7,0,0,0,0,1,18,185,0,4,0,0,0,0,0,0,130,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,2,282,101,5 +0,0,0,4,0,10,2,0,17,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,7,0,1,0,1,0,0,3,1,0,0,0,0,152,0,0,0,0,0,1,0,0,0,0,0,1,0,0,21519,10,55,0,1,0,0,0,0,0,16,0,0,0,0,1,1,6,149,0,0,0,0,0,0,0,0,8,0,6,0,0,2,0,16,0,0,0,0,2294,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,51,0,27,0,0,0,0,3,25,5,53,0,0,0,0,1,0,0,0,0,0,0,0,0,12778,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,7,84,5,0,0,125,0,173,0,0,0,52,1,0,0,0,0,0,0,0,0,0,43,1,0,2,0,2,0,0,0,0,0,92,41,0,0,0,0,0,0,0,0,28,0,0,325,0,0,1,0,1,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,258,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,28,5 +0,0,0,0,0,23,2,0,10,1,2,1,0,0,3,0,15,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,23,16,0,0,38,0,0,0,1,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1,0,0,0,0,0,2,0,0,123,23,34,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,4,0,0,0,4,0,35,0,0,0,0,2,0,46,0,1,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,15,0,35,0,0,0,0,3,48,34,29,0,0,0,0,1,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,122,0,0,0,148,0,303,0,0,0,63,5,0,0,0,0,0,0,0,0,0,40,0,0,0,0,2,0,0,0,0,1,126,56,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,0,0,0,0,0,1,27,115,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,5 +0,0,0,3,0,17,2,0,12,0,3,0,0,0,2,0,18,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,17,6,0,0,12,0,0,0,1,0,0,1,1,0,0,0,0,312,0,0,0,0,0,1,0,0,0,0,0,3,0,0,106,17,38,0,1,0,0,0,0,0,4,0,0,0,0,0,1,6,29,0,0,2,0,0,0,0,0,6,0,3,1,0,2,0,10,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,40,0,39,0,0,0,0,3,36,9,55,0,0,0,0,1,0,1,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,5,101,3,0,0,113,0,5726,0,0,0,27,0,0,0,0,0,0,0,0,0,0,44,1,0,3,0,2,0,0,0,0,0,100,9,0,0,0,0,0,0,0,0,30,0,0,19,0,0,1,0,0,0,0,0,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,19,18,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,71,25,5 +0,0,0,7,0,40,38,0,79,5,32,0,0,10,4,0,1491,0,6,1,0,0,0,9,0,12,0,0,32,0,1,0,0,0,3,14781,40,6,0,0,53,0,2,0,1,0,0,2,0,0,0,0,1,852,0,0,0,0,0,1,0,0,0,0,0,3,0,0,168516,40,1746,0,30,0,0,0,0,0,72,0,0,0,0,0,9,179,7296,0,0,3,0,0,0,0,0,507,35,4,0,0,2,0,1630,0,0,190,0,10391,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,12,12,12,0,0,0,2538,0,44,0,0,0,17,20,900,22957,2491,0,0,0,0,1,0,3,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,135,28,339,7,0,0,389,0,375,0,0,0,210,27,0,0,0,0,0,0,0,0,0,1660,1,0,0,0,10,0,0,0,0,1,195,28,0,0,223,0,0,0,0,0,5684,1,0,800,36,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,36,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,80,0,0,0,0,1,43,434,0,31,14,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2059,58,5 +0,0,0,19,0,46,35,0,199,16,66,1,1,3,30,0,87,0,7,7,0,0,0,9,11,7,21,0,25,0,1,0,0,0,24,0,46,141,38,0,366,0,0,0,1,0,0,3,0,0,0,0,17,214,0,0,0,0,0,1,0,0,0,2,0,25,0,0,2111,46,507,0,27,0,0,0,0,0,10,0,0,0,0,0,9,13,259,0,0,24,0,0,6,150,0,1407,255,5,0,0,2,0,910,0,8,0,4,1494,0,0,0,0,12,0,3,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,310,0,140,0,0,0,34,108,108,918,388,0,0,0,0,1,0,0,0,0,0,0,0,0,818,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,13,31,322,23,0,0,321,0,1156,0,0,0,221,64,0,25,0,0,0,0,0,0,0,429,1,0,0,0,27,0,0,0,0,16,150,356,0,0,667,0,0,0,0,0,542,0,0,56,0,0,1,50,1,0,0,0,6,0,0,0,4,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,71,0,0,0,0,1,70,284,0,54,0,0,0,0,0,0,395,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,26,5,0,0,0,0,0,0,0,0,0,0,0,0,1,472,119,5 +0,0,0,0,0,14,3,0,9,0,1,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,14,6,0,0,22,0,0,0,1,0,0,4,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,0,0,0,655,14,69,0,1,0,0,0,0,0,25,0,0,0,0,0,1,6,146,0,0,4,0,0,0,0,0,13,0,10,0,0,2,0,12,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,139,0,81,0,0,0,0,3,31,9,142,0,0,0,0,1,0,0,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,5,99,1,0,0,116,0,646,0,0,0,47,4,0,0,0,0,0,0,0,0,0,39,1,0,0,0,2,0,0,0,0,0,96,16,0,0,0,0,0,0,0,0,72,0,0,129,0,0,1,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,11,20,60,0,1,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,212,57,5 +0,0,0,13,0,49,116,0,1086,35,473,0,1,5,50,0,69,0,7,7,0,0,0,5,1,11,18,0,12,0,1,1,0,0,15,0,49,118,19,0,1366,0,0,0,1,0,0,7,0,0,0,0,7,308,0,0,0,0,0,1,0,0,0,0,0,40,0,0,4905,49,1862,0,13,0,0,0,0,0,31,0,0,0,0,1,7,23,269,0,0,15,0,0,3,1034,0,8332,2325,14,0,0,2,0,4087,0,29,6,5,2644,0,0,0,0,12,0,6,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,10,10,10,0,0,0,265,0,124,0,0,0,12,141,239,22293,270,0,0,0,0,1,0,4,0,0,0,0,0,0,1180,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,37,57,340,14,0,0,556,0,1043,0,0,0,433,83,0,0,0,0,0,0,2,0,0,1807,1,0,0,0,13,0,0,0,0,6,151,1844,0,0,8520,0,0,0,0,2,378,0,0,264,2,0,1,1,1,0,0,0,16,0,0,0,5,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,2,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,66,1,1,1,0,259,0,0,0,0,1,64,584,0,35,8,0,1,0,0,0,1728,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,41,0,0,0,0,0,0,0,0,0,0,0,0,0,5,537,182,5 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,18,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,18,0,0,0,0,3,21,3,20,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,43,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,6,5 +0,0,0,15,0,31,57,0,136,14,29,0,1,3,30,0,51,0,7,4,0,0,0,1,1,3,12,0,8,0,1,0,0,0,13,0,31,172,14,0,248,0,0,0,1,0,0,6,0,0,0,0,4,391,0,0,0,0,0,1,0,0,0,0,0,26,0,0,6366,31,353,0,9,0,0,0,0,0,32,0,0,0,0,0,1,8,510,0,0,13,0,0,3,93,0,771,115,15,0,0,2,0,610,0,16,0,5,1021,0,0,0,0,6,0,0,0,0,0,0,1,2,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,16,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,514,0,98,0,0,0,8,39,72,6385,539,0,0,0,0,1,0,0,0,0,0,0,0,0,1850,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,13,25,281,17,0,0,383,0,694,0,0,0,274,50,0,0,0,0,0,0,5,0,0,314,1,0,0,0,6,0,0,0,0,5,129,367,0,0,381,0,0,0,0,2,656,0,0,1292,0,0,1,20,1,0,0,0,12,0,0,0,4,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,26,0,0,0,0,1,44,454,0,24,0,0,0,0,0,0,281,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,17,0,0,0,0,0,0,0,0,0,0,0,0,0,636,116,5 +4,0,0,10,0,135,62,0,158,16,46,0,0,0,31,0,89,0,7,1,0,0,0,19,2,2,39,0,43,0,28,12,0,0,120,0,135,52,7,0,310,0,0,0,1,0,0,6,0,0,0,0,43,332,0,0,0,0,0,1,0,0,0,1,0,23,0,0,6032,135,582,0,85,0,0,0,0,0,27,0,0,0,0,0,19,27,786,0,0,120,0,0,2,122,0,1212,150,8,0,0,2,0,937,0,17,0,0,2455,0,0,0,0,10,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,14,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,39,0,0,0,0,0,0,822,0,312,0,0,0,86,133,228,831,903,0,0,0,0,1,0,0,0,0,0,0,0,0,3162,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,14,24,927,10,0,0,982,0,769,0,0,0,892,173,0,8,0,0,0,0,0,0,0,393,1,0,0,0,22,0,0,0,0,44,553,339,0,0,416,0,0,0,0,1,828,0,0,2423,0,0,1,50,0,0,0,0,12,0,0,0,1,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,0,0,48,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,165,1,1,1,0,150,0,0,0,28,1,255,910,0,124,0,0,0,0,0,0,345,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,42,0,0,0,0,0,0,0,0,0,0,0,0,5,2249,195,5 +0,0,0,4,0,19,2,0,10,10,6,0,0,0,18,0,40,0,7,1,0,0,0,2,24,0,0,0,27,0,2,0,0,0,7,0,19,6,23,0,42,0,0,0,1,0,0,3,0,0,0,0,25,92,0,0,0,0,0,1,0,0,0,0,0,17,0,0,1533,19,170,0,29,0,0,0,0,0,15,0,0,0,0,0,2,7,146,0,0,7,0,0,0,0,0,259,0,6,0,0,5,0,71,0,19,4,0,937,0,0,0,0,5,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,186,0,77,0,0,0,50,101,39,146,166,0,0,0,0,1,0,0,0,0,0,0,0,0,449,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,24,137,4,0,0,226,0,698,2,4,0,152,15,0,0,0,0,0,0,0,0,0,83,1,0,0,0,27,0,0,0,0,26,105,109,0,0,0,0,1,0,0,0,152,0,0,225,0,0,1,0,0,0,0,0,5,0,1,0,2,0,0,0,0,0,10,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,29,0,0,0,0,1,26,293,0,29,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,2,282,172,5 +0,0,0,3,0,22,2,0,36,0,2,0,0,0,2,0,95,0,6,1,0,0,0,1,0,1,47,0,9,0,17,0,0,0,1,0,22,6,0,0,8,0,0,0,1,0,0,3,0,0,0,0,16,63,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1356,22,211,0,26,0,0,0,0,0,16,0,0,0,0,0,1,6,134,0,0,1,0,0,0,0,0,84,0,5,0,0,2,0,312,0,0,0,0,622,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,142,0,62,0,0,0,32,87,39,101,147,0,0,0,0,1,0,0,0,0,0,0,0,0,468,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,9,146,3,0,0,135,0,362,0,0,0,44,10,0,0,0,0,0,0,0,0,0,143,1,0,0,0,2,0,0,0,0,17,104,28,0,0,0,0,0,0,0,0,246,0,0,235,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,57,0,0,0,0,1,23,61,0,74,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,151,162,5 +18,0,0,11,2,60,129,2,222,42,49,1,0,6,53,0,423,0,9,11,0,2,0,11,3,4,6,0,12,0,12,0,0,2,19,0,62,181,20,0,1079,0,0,0,1,0,0,2,0,0,0,0,16,476,0,0,0,0,0,1,0,0,0,2,0,62,0,0,30906,60,929,0,24,0,0,0,0,0,9,3,0,0,0,0,17,21,2913,0,2,19,2,0,7,166,0,1645,195,2,0,0,4,2,1654,0,44,0,0,1698,0,0,1,0,9,11,0,0,1,0,1,1,0,0,0,20,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,15,0,0,0,0,0,0,2714,0,124,0,0,0,32,61,156,2398,2737,0,0,0,0,1,0,2,0,0,0,0,0,0,8568,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,211,88,684,20,0,0,588,0,1345,0,1,0,294,101,0,2,0,0,0,0,0,0,0,892,1,0,0,0,27,0,0,0,0,15,182,402,0,0,512,0,0,0,0,0,3064,0,0,9243,0,0,1,8,0,0,0,0,4,0,0,0,2,0,0,0,0,0,41,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,74,1,1,1,0,65,0,0,0,0,17,81,207,0,34,0,0,0,0,0,0,1441,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,56,8,0,0,0,0,0,0,0,0,0,0,3,0,3,2743,134,5 +15,0,0,17,0,83,53,0,188,38,42,0,1,6,66,1,161,0,7,11,0,0,0,11,3,20,24,0,23,0,1,0,0,0,31,4,83,231,41,0,407,0,0,0,1,0,0,3,0,0,0,0,12,354,0,0,0,0,0,1,0,0,2,2,0,38,0,0,7272,83,532,0,22,0,0,0,0,0,12,0,0,0,0,0,13,23,1299,0,0,31,0,0,3,90,0,911,170,2,0,0,2,0,835,0,27,0,5,6163,0,0,15,0,15,0,3,0,0,0,0,1,0,0,0,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,12,12,12,0,0,0,1515,0,158,0,0,0,22,135,318,1484,748,0,0,0,0,1,0,4,0,0,0,0,0,0,868,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,38,63,536,28,0,0,512,0,1517,0,0,0,315,259,0,0,0,0,0,0,2,0,0,525,1,0,0,0,25,0,0,0,0,11,214,252,0,0,353,0,0,0,0,4,949,1,0,36,4,0,1,1,0,0,0,0,5,0,0,0,4,0,0,0,0,0,41,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,4,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,111,1,1,1,0,87,0,0,0,0,1,114,231,0,57,11,0,0,0,0,0,361,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,0,0,0,0,0,0,0,0,0,0,0,0,0,1,918,262,5 +0,0,0,4,0,34,5,0,8,4,3,0,0,2,8,0,19,0,7,5,0,0,0,4,0,9,3,0,3,0,1,0,0,0,6,0,34,6,4,0,37,0,0,0,1,0,0,0,0,0,0,0,2,89,0,0,0,0,0,1,0,0,0,0,0,9,0,0,593,34,43,0,3,0,0,0,0,0,2,0,0,0,0,0,7,11,49,0,0,6,0,0,0,0,0,74,5,0,0,0,2,0,53,0,6,0,0,557,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,49,0,42,0,0,0,2,10,190,32,55,0,0,0,0,1,0,3,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,32,16,132,4,0,0,168,0,332,0,0,0,86,15,0,0,0,0,0,0,0,0,0,52,0,0,0,0,9,0,0,0,0,1,124,59,0,0,0,0,0,0,0,2,79,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,4,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,6,0,0,0,0,1,40,186,0,8,8,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,39,5 +0,0,0,3,0,27,4,0,10,0,3,0,0,2,3,0,11,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,1,0,27,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,1,71,0,0,0,0,0,1,0,0,0,0,0,1,0,0,488,27,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,76,0,0,1,0,0,0,0,0,70,5,0,0,0,2,0,19,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,39,0,25,0,0,0,0,3,192,8,42,0,0,0,0,1,0,3,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,32,13,78,3,0,0,83,0,132,0,0,0,9,1,0,0,0,0,0,0,0,0,0,39,0,0,0,0,8,0,0,0,0,0,109,5,0,0,1,0,0,0,0,0,62,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,0,0,1,28,17,0,2,8,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,21,5 +2,0,0,37,4,64,37,4,104,11,23,0,0,17,20,0,335,0,9,8,0,6,0,8,0,11,0,0,16,0,8,0,0,4,21,7885,68,220,20,0,107,0,0,0,1,0,0,1,1,0,0,0,1,875,0,0,0,0,0,1,0,0,0,4,0,5,0,0,110333,64,678,0,29,0,0,0,0,0,32,9,0,0,0,0,9,46,13151,0,4,21,4,0,1,0,0,553,55,11,0,0,4,4,629,0,4,71,1,40687,0,0,0,0,2,2,4,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,3,0,60,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,35,12,12,12,0,3,0,7083,0,103,0,0,0,10,23,499,3034,7071,0,0,0,0,1,0,8,0,2,1,0,0,0,719,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,457,43,1682,56,0,0,1541,0,2172,0,1,0,246,71,0,0,0,0,0,0,0,0,0,545,1,0,10,0,22,0,0,0,0,44,8212,17,0,0,85,0,0,0,0,0,247856,1,0,595,9,0,1,1,1,0,0,0,15,0,0,0,0,0,0,0,0,0,6,0,0,0,8,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,57,1,1,1,0,26,0,0,0,4,33,89,37,0,23,12,0,0,0,0,0,1074,6,0,0,0,0,0,0,0,0,0,0,0,6,2,5,36,0,0,0,0,0,0,0,2,0,0,0,6,0,2,6165,135,5 +0,0,0,8,0,20,2,0,12,1,4,0,0,0,12,0,68,0,7,1,0,0,0,1,0,0,12,0,4,0,1,4,0,0,8,0,20,6,0,0,118,0,0,0,1,0,0,2,0,0,0,0,4,79,0,0,0,0,0,1,0,0,0,0,0,5,0,0,15066,20,126,0,9,0,0,0,0,0,11,0,0,0,0,0,1,5,1218,0,0,8,0,0,0,0,0,29,0,4,0,0,2,0,159,0,3,0,0,1049,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1212,0,66,0,0,0,8,28,66,43,1214,0,0,0,0,1,0,0,0,0,0,0,0,0,4289,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,19,10,272,11,0,0,253,0,396,0,0,0,189,27,0,0,0,0,0,0,0,0,0,105,1,0,0,0,2,0,0,0,0,5,179,78,0,0,0,0,0,0,0,0,1349,0,0,4801,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,30,0,0,0,0,1,28,202,0,21,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1351,209,5 +0,0,0,22,1,68,200,1,263,48,69,0,1,1,73,0,139,0,59,9,0,0,0,21,4,3,24,0,16,0,4,4,0,1,28,0,69,428,16,0,499,0,0,0,1,0,0,4,0,0,0,0,13,633,0,4,0,0,0,1,0,0,0,0,0,52,0,0,13940,68,890,0,24,0,0,0,0,1,27,0,0,0,0,0,28,34,1084,0,1,28,1,0,4,170,0,1574,265,9,0,0,4,1,1135,0,32,2,2,9893,0,0,0,0,7,0,7,0,8,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,46,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,116,0,0,0,0,0,0,1006,0,299,0,0,0,24,78,232,3792,1108,0,0,0,0,1,0,0,0,0,0,0,0,0,3391,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,143,124,960,28,0,0,918,0,4209,0,1,0,636,1138,0,0,0,0,0,0,10,0,0,805,1,0,0,0,34,0,0,0,0,13,188,613,0,0,941,0,0,0,0,2,4213,0,0,1717,0,0,1,2,1,0,0,0,15,0,2,0,2,0,0,0,0,0,42,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,17,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,1,137,1,1,1,0,71,0,2,0,2,16,97,519,0,51,0,0,1,0,1,0,519,22,0,0,0,0,0,0,0,0,0,0,0,1,0,1,52,0,0,0,0,0,0,0,0,0,0,0,1,0,5,8127,331,5 +1,0,0,9,0,16,5,0,26,0,9,0,0,0,6,0,18,0,6,6,0,0,0,1,0,2,0,0,0,0,1,0,0,0,5,0,16,15,0,0,44,0,0,0,1,0,0,3,0,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,5,0,0,1029,16,80,0,1,0,0,0,0,0,16,0,0,0,0,0,2,6,172,0,0,5,0,0,1,7,0,86,15,5,0,0,2,0,66,0,1,0,0,270,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,4,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0,144,0,91,0,0,0,0,3,33,58,153,0,0,0,0,1,0,0,0,0,0,0,0,0,399,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,8,4,129,11,0,0,201,0,294,0,0,0,123,9,0,0,0,0,0,1,4,0,0,70,1,0,0,0,7,0,0,0,0,0,99,104,0,0,30,0,0,0,0,0,82,0,0,160,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,21,378,0,3,0,0,1,0,0,0,53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,240,62,5 +0,0,0,2,0,9,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,16,0,0,0,0,3,22,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,2,0,0,35,0,38,0,0,0,5,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,3,5 +0,0,0,25,1,82,88,1,165,24,27,0,1,2,49,0,127,0,9,9,0,0,0,7,3,3,21,0,26,0,1,0,0,1,42,0,83,221,23,0,278,0,0,0,1,0,0,1,0,0,0,0,9,289,0,0,0,0,0,1,0,0,0,12,0,31,0,0,1853,82,451,0,27,0,0,0,0,0,6,0,0,0,0,0,9,11,103,0,1,42,1,0,4,70,0,767,75,2,0,0,4,1,649,0,15,0,3,4098,0,0,0,0,5,0,3,0,0,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,51,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,193,0,158,0,0,0,18,62,170,866,203,0,0,0,0,1,0,0,0,0,0,0,0,0,740,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,122,51,604,32,0,0,539,0,1477,0,1,0,274,75,0,0,0,0,0,0,0,0,0,468,1,0,0,0,19,0,0,0,0,8,196,157,0,0,212,0,0,0,10,0,617,0,0,16,0,0,1,0,0,0,0,0,2,0,2,0,2,0,0,0,0,0,27,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,105,1,1,1,0,38,0,0,0,0,9,125,87,0,51,0,0,0,0,0,0,279,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,30,0,0,0,0,0,0,0,0,0,0,0,1,0,1,426,212,5 +0,0,0,2,0,10,2,0,8,0,2,0,0,0,2,0,15,0,6,1,0,0,0,2,0,0,0,0,0,0,2,0,0,0,1,0,10,6,0,0,7,0,2,0,1,0,0,2,0,0,0,0,1,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1246,10,41,0,2,0,0,0,0,0,11,0,0,0,0,0,2,8,496,0,0,1,0,0,0,0,0,15,0,4,0,0,2,0,8,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,68,0,27,0,0,0,2,5,27,11,71,0,0,0,0,1,0,0,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,74,2,0,0,125,0,192,0,0,0,70,5,0,0,0,0,0,0,0,0,0,35,1,0,0,0,3,0,0,0,0,2,92,57,0,0,0,0,0,0,0,1,217,0,0,784,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,2,0,0,0,0,1,11,210,0,2,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,239,32,5 +0,0,0,2,0,10,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,0,0,1,0,0,1,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,152,10,28,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,18,0,0,1,0,0,0,0,0,7,0,1,0,0,2,0,6,0,0,0,0,230,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,60,0,0,0,0,3,25,8,40,0,0,0,0,1,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,80,2,0,0,84,0,116,0,0,0,31,6,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,99,14,0,0,0,0,0,0,0,0,25,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,29,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,113,12,5 +2,0,0,16,1,49,144,1,235,44,58,0,1,3,63,0,120,0,9,7,0,0,0,3,2,6,21,0,15,0,2,0,0,1,21,0,50,265,27,0,420,0,0,0,1,0,0,4,0,0,0,0,8,284,0,0,0,0,0,1,0,0,4,1,0,58,0,0,29921,49,643,0,17,0,0,0,0,0,25,0,0,0,0,0,4,9,3788,0,1,21,1,0,6,160,0,1374,235,10,0,0,4,1,1008,0,45,0,7,1915,0,0,0,0,19,0,5,0,0,0,1,1,0,0,0,51,12,0,1,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,1,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,2919,0,178,0,0,0,16,72,125,1443,2853,0,0,0,0,1,0,0,0,0,0,0,0,0,10456,0,0,0,0,0,0,0,0,0,4,0,0,4,0,2,0,0,0,0,0,2,120,70,584,18,0,0,706,0,1503,0,1,0,466,516,0,0,0,0,0,0,4,0,0,633,1,0,0,0,12,0,0,0,0,7,192,470,0,0,598,0,0,0,0,6,2789,0,0,9149,0,0,1,0,0,0,0,0,17,0,4,0,10,0,0,0,0,0,46,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,1,73,1,1,1,0,63,0,0,0,0,9,71,433,0,44,0,0,0,0,0,0,484,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,50,0,0,0,0,0,0,0,0,0,0,0,1,0,7,3835,247,5 +0,0,0,12,0,29,4,0,83,9,33,0,0,0,20,1,45,0,7,5,0,0,0,4,2,6,8,0,12,0,1,0,0,0,8,0,29,6,25,0,75,0,0,0,1,0,0,8,0,0,0,0,6,339,0,0,0,0,0,1,0,0,0,0,0,16,0,0,9389,29,221,0,13,0,0,0,0,0,33,0,0,0,0,0,4,13,981,0,0,8,0,0,1,9,0,217,15,11,0,0,69,0,241,0,39,34,0,1140,0,0,0,0,5,0,10,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,921,0,152,0,0,0,12,166,70,215,902,0,0,0,0,1,0,0,0,0,0,0,0,0,2676,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,20,251,21,24,0,399,0,909,8,9,0,257,53,0,0,0,0,0,0,6,0,0,193,1,0,0,0,11,0,0,0,0,7,143,163,0,0,30,0,2,0,1,0,1078,0,0,2570,0,0,1,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,62,0,0,0,0,1,37,356,0,27,0,0,0,0,0,0,156,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1110,125,5 +0,0,0,700,0,48,43,0,2081,32,61,0,0,0,477,0,110,0,8,2,0,0,0,2,0,1,54,0,14,0,16,2,0,0,31,0,48,42,4,0,653,0,0,0,1,0,0,9,0,0,0,0,18,1463,0,0,0,0,0,1,0,0,0,6,0,48,0,0,92881,48,1219,0,32,0,0,0,0,0,29,0,0,0,0,0,2,16,10637,0,0,31,0,0,2,81,0,753,125,11,1,0,2,0,1705,0,36,0,0,9796,0,0,0,0,22,0,5,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,630,0,0,0,0,0,0,8525,0,151,0,0,0,36,115,101,2248,8530,0,0,0,0,1,0,0,0,0,0,0,0,0,1718,0,0,0,0,0,0,0,0,0,0,0,0,9,0,3,0,0,0,0,0,0,8,170,477,976,0,0,721,0,2683,0,0,0,619,103,0,0,0,0,0,0,0,0,0,2780,1,0,0,0,4,0,0,0,0,19,148,611,0,0,342,0,0,0,10,1,2455,0,0,241,0,0,1,0,0,0,0,0,14,0,0,0,7,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,66,0,0,0,0,1,79,1447,0,87,0,0,0,0,0,0,248,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,34,0,0,0,0,0,0,0,0,0,0,0,0,0,6,2918,204,5 +0,0,0,0,0,9,3,0,18,0,1,0,1,0,2,0,27,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,25,0,0,10,0,0,0,1,0,0,1,1,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,0,0,0,68,9,48,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,14,0,0,1,0,0,1,0,0,12,0,4,0,0,4,0,35,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,21,0,25,0,0,0,0,3,22,5,35,0,0,0,0,1,0,1,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,15,94,0,0,0,107,0,477,0,0,0,28,0,0,0,0,0,0,0,0,0,0,58,1,0,2,0,2,0,0,0,0,0,92,9,0,0,0,0,0,0,0,0,52,0,0,12,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,25,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,37,5 +0,0,0,12,0,52,167,0,406,14,139,0,0,10,23,0,178,0,6,5,0,0,0,9,0,13,12,0,23,0,2,1,0,0,12,15327,52,6,8,0,605,0,0,0,1,0,0,1,0,0,0,0,5,1360,0,0,0,0,0,1,0,0,0,0,0,24,0,0,68276,52,1066,0,22,0,0,0,0,0,100,0,0,0,0,0,11,121,11606,0,0,12,0,0,1,365,0,3374,650,2,0,0,2,0,1895,0,19,443,0,6290,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,12,12,12,0,0,0,5588,0,81,0,0,0,16,47,620,2886,5437,0,0,0,0,1,0,3,0,0,0,0,0,0,961,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,133,35,474,15,0,0,661,0,602,0,0,0,484,60,0,0,0,0,0,0,0,0,0,929,1,0,0,0,14,0,0,0,0,6,270,677,0,0,2561,0,0,0,0,0,3926,1,0,197,52,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,52,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,81,0,0,0,0,1,64,165,0,37,14,0,0,0,0,0,754,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2889,86,5 +10,0,0,10,1,117,66,1,131,24,36,0,0,9,38,0,2187,0,27,5,0,0,0,11,2,14,42,0,42,0,5,5,0,1,55,24429,118,54,15,0,178,0,0,0,1,0,0,8,0,0,0,0,15,820,0,0,0,0,0,1,0,0,0,7,0,35,0,0,211086,117,2654,0,48,0,0,0,0,0,105,0,0,0,0,0,12,169,44942,0,1,55,1,0,2,7,0,670,45,15,0,0,4,1,2594,0,29,123,0,10029,0,0,0,0,21,10,21,0,0,0,0,1,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,6,0,0,0,0,0,0,1,0,96,0,2,3,0,0,0,0,0,0,2,0,0,0,0,0,4,0,92,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,53,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,1,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,96,12,12,12,0,0,0,37907,0,193,0,0,0,41,136,1173,3287,37850,0,0,0,0,1,0,12,0,0,0,0,0,0,1992,4,0,0,0,0,0,0,0,0,0,0,0,80,5,2,0,0,0,0,2,0,224,65,835,11,0,0,934,0,1445,0,1,0,576,132,0,0,0,0,0,0,2,0,0,2494,1,0,0,0,18,0,0,0,0,12,284,217,0,0,213,0,33,0,0,0,9760,1,0,603,45,0,1,1,0,0,0,0,16,0,0,0,5,0,0,0,0,0,24,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,45,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,1,179,1,1,1,0,123,0,0,0,0,9,173,567,0,94,14,0,0,0,0,0,246,6,0,0,0,0,0,0,0,0,0,0,0,4,0,1,32,0,0,0,0,0,0,0,0,0,0,0,1,0,5,4804,131,5 +0,0,0,7,0,24,3,0,13,7,3,0,0,0,19,0,22,0,7,2,0,0,0,1,0,1,3,0,4,0,2,0,0,0,13,0,24,6,4,0,65,0,0,0,1,0,0,1,0,0,0,0,2,93,0,0,0,0,0,1,0,0,0,29,0,16,0,0,1016,24,68,0,5,0,0,0,0,0,6,0,0,0,0,0,1,3,103,0,0,13,0,0,0,0,0,18,0,1,0,0,2,0,67,0,13,0,0,463,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,110,0,48,0,0,0,4,12,43,102,140,0,0,0,0,1,0,0,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,25,195,8,0,0,189,0,504,0,0,0,91,18,0,0,0,0,0,0,0,0,0,67,1,0,0,0,3,0,0,0,0,2,140,48,0,0,0,0,0,0,0,0,112,0,0,218,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,10,0,0,0,0,1,37,144,0,10,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,142,134,5 +1,0,0,10,0,26,4,0,28,14,5,0,1,3,25,0,41,0,8,3,0,0,0,1,1,2,9,0,6,0,1,0,0,0,11,0,26,83,11,0,87,0,0,0,1,0,0,1,0,0,0,0,3,97,0,0,0,0,0,1,0,0,0,0,0,15,0,0,2366,26,121,0,7,0,0,0,0,0,6,0,0,0,0,0,1,3,52,0,0,11,0,0,0,0,0,36,0,2,0,0,2,0,151,0,12,0,4,1385,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,72,0,65,0,0,0,6,31,57,86,84,0,0,0,0,1,0,0,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,13,22,176,11,0,0,185,0,519,0,0,0,111,45,0,0,0,0,0,0,0,0,0,115,1,0,0,0,5,0,0,0,0,4,120,59,0,0,0,0,0,0,0,0,261,0,0,53,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,20,0,0,0,0,1,37,164,0,18,0,0,0,0,0,0,53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,1,229,56,5 +1,0,0,20,0,43,24,0,151,11,21,0,0,0,91,0,59,0,6,4,0,0,0,2,3,2,18,0,10,0,1,0,0,0,24,0,43,6,18,0,203,0,1,0,1,0,0,13,0,0,0,0,6,355,0,0,0,0,0,1,0,0,1,18,0,60,0,0,11677,43,452,0,11,0,0,0,0,0,46,0,0,0,0,0,2,29,2346,0,0,24,0,0,2,51,0,485,80,10,0,3,2,0,538,0,18,0,0,1633,0,0,0,0,33,0,9,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,19,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,1689,0,286,0,0,0,12,51,64,784,1352,0,0,0,0,1,0,0,0,0,0,0,0,0,3713,0,0,0,0,0,0,0,0,0,0,0,0,13,0,16,0,0,0,0,0,0,8,25,325,22,0,0,379,0,884,0,0,0,275,55,0,0,0,3,0,0,201,0,0,352,1,0,0,0,9,0,0,0,0,7,138,238,0,0,178,0,0,0,0,2,719,0,0,2438,0,0,1,1,1,0,0,0,25,0,1,0,17,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,183,0,0,0,0,361,2,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,91,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,22,0,0,0,0,1,67,573,0,31,0,0,0,0,0,0,337,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,92,0,0,0,0,0,0,0,8,2811,143,5 +2,0,0,12,0,39,108,0,258,42,60,0,1,4,60,0,84,0,7,5,0,0,0,2,3,4,27,0,16,0,2,1,0,0,16,0,39,776,23,0,441,0,0,1,1,0,0,4,0,0,0,0,9,880,0,0,0,0,0,1,0,0,1,0,0,54,0,0,3901,39,635,0,19,0,0,0,0,0,16,0,0,0,0,1,2,7,214,0,0,16,0,0,6,200,0,1630,245,5,0,0,2,0,1249,0,41,0,9,5563,0,0,1,0,12,0,5,0,0,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,574,0,149,0,0,0,18,76,90,1794,288,0,0,0,0,1,0,1,0,0,0,0,0,0,1257,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,13,55,406,13,0,0,534,0,1452,0,0,0,424,61,0,0,0,0,1,0,0,0,0,582,1,0,0,0,10,0,0,0,0,9,148,592,0,0,642,0,0,0,0,2,766,0,0,299,0,0,1,0,0,0,0,0,6,0,1,0,7,0,0,0,0,0,43,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,50,0,0,0,0,1,55,601,0,50,0,0,0,0,0,0,510,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,50,0,0,0,0,0,0,0,0,0,0,0,0,0,1,924,307,5 +7,0,0,20,1,63,48,1,215,77,68,0,1,2,95,1,143,0,9,10,0,0,0,1,4,3,15,0,16,0,2,1,0,1,27,0,64,1195,24,0,515,0,0,0,1,0,0,1,0,0,0,0,9,274,0,0,0,0,0,1,0,0,0,0,0,98,0,0,2075,63,559,0,19,0,0,0,0,0,7,0,0,0,0,0,7,9,25,0,1,27,1,0,9,154,0,1385,264,1,0,0,4,1,1334,0,76,0,3,2312,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,50,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,60,0,0,0,0,0,0,105,0,111,0,0,0,18,63,154,1134,123,0,0,0,0,1,0,8,0,0,0,0,0,0,627,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,310,100,506,21,0,0,509,0,2275,0,1,0,254,161,0,0,0,0,0,0,0,0,0,582,1,0,0,0,15,0,0,0,0,7,175,383,0,0,621,0,0,0,0,0,1903,0,0,33,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,80,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,94,1,1,1,0,40,0,0,0,0,9,91,219,0,37,0,0,0,0,0,0,534,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,91,0,0,0,0,0,0,0,0,0,0,0,1,0,0,524,245,5 +0,0,0,10,0,20,18,0,63,3,17,0,0,0,7,1,17,0,7,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,6,0,20,6,0,0,97,0,0,0,1,0,0,7,0,0,0,0,0,158,0,0,0,0,0,1,0,0,0,0,0,15,0,0,1970,20,168,0,1,0,0,0,0,0,34,0,0,0,0,0,2,10,286,0,0,6,0,0,2,41,0,345,60,14,0,0,2,0,204,0,4,0,0,349,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,290,0,114,0,0,0,0,3,45,273,322,0,0,0,0,1,0,0,0,0,0,0,0,0,757,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,8,7,159,29,0,0,333,0,575,0,0,0,251,24,0,0,0,0,0,0,0,0,0,130,1,0,0,0,3,0,0,0,0,1,110,255,0,0,157,0,0,0,0,0,93,0,0,274,0,0,1,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,0,0,0,0,0,1,26,712,0,1,0,0,0,0,0,0,143,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,2,0,0,0,0,0,0,0,0,5,317,52,5 +2,0,0,7,1,55,40,1,92,2,15,0,0,9,8,0,1876,0,9,3,0,0,0,8,0,12,3,0,11,0,0,0,0,1,8,4705,56,54,3,0,65,0,0,0,1,0,0,2,0,0,0,0,2,536,0,0,0,0,0,1,0,0,0,3,0,5,0,0,62139,55,2038,0,8,0,0,0,0,0,36,0,0,0,0,0,9,57,10122,0,1,8,1,0,1,0,0,343,30,3,0,0,4,1,1928,0,3,58,0,3319,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,12,12,12,0,0,0,4777,0,64,0,0,0,5,26,554,708,4750,0,0,0,0,1,0,4,0,0,0,0,0,0,2260,2,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,1,0,218,30,528,8,0,0,576,0,1247,0,1,0,277,50,0,0,0,0,0,0,0,0,0,2049,1,0,0,0,11,0,0,0,0,3,184,129,0,0,67,0,0,0,0,0,7373,1,0,7315,17,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,70,1,1,1,0,24,0,0,0,0,9,64,323,0,12,14,0,0,0,0,0,122,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,1,0,1,0,2,4357,92,5 +0,0,0,9,1,45,64,1,71,3,42,0,0,7,8,0,962,0,8,2,0,0,0,7,0,10,0,0,36,0,1,0,0,1,4,10046,46,98,0,0,57,0,0,0,1,0,0,1,2,0,0,0,1,649,0,0,0,0,0,1,0,0,0,0,0,6,0,0,26915,45,1235,0,34,0,0,0,0,0,82,0,0,0,0,0,8,192,4441,0,1,4,1,0,1,0,0,518,25,6,0,0,4,1,1070,0,3,139,0,3794,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1306,0,52,0,0,0,22,25,923,1909,1268,0,0,0,0,1,0,4,0,0,0,0,0,0,516,0,0,0,0,14,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,218,40,472,10,0,0,546,0,1018,0,1,0,261,45,0,0,0,0,0,0,0,0,0,1162,1,0,6,0,9,0,0,0,0,2,188,34,0,0,229,0,0,0,0,0,3883,1,0,443,40,0,1,1,0,0,0,0,12,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,1,0,1,47,1,1,1,0,99,0,0,0,0,9,50,98,0,35,12,0,1,0,0,0,146,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1754,72,5 +2,0,0,11,1,71,80,1,150,18,52,0,0,2,52,1,85,0,9,6,0,0,0,7,2,10,6,0,8,0,6,0,0,1,25,0,72,117,4,0,302,0,0,1,1,1,0,2,0,0,0,0,8,308,0,0,0,0,0,1,0,0,2,0,0,34,0,0,6083,71,398,0,13,0,0,0,0,0,12,0,0,0,0,0,12,19,965,0,1,25,1,0,5,107,0,1076,204,4,0,0,4,1,631,0,23,2,0,2833,0,0,1,0,28,0,3,0,0,0,0,1,3,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,10,10,10,0,0,0,868,0,100,0,0,0,14,27,277,1388,624,0,0,0,0,1,0,3,0,0,0,0,0,0,748,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,146,71,633,13,0,0,609,0,2400,0,1,0,328,186,0,0,0,0,1,0,0,0,0,431,1,0,0,0,15,0,0,0,0,6,178,330,0,0,474,0,0,0,0,3,379,0,0,68,2,0,1,2,0,0,0,0,4,0,1,0,4,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,2,14,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,91,1,1,1,0,29,0,0,0,0,9,97,282,0,22,8,0,0,0,0,0,306,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,26,0,0,0,0,0,0,0,0,0,0,0,1,0,1,480,234,5 +0,0,0,4,0,47,9,0,41,2,3,0,0,2,7,0,1063,0,7,3,0,0,0,6,5,10,0,0,13,0,6,0,0,0,10,1048,47,6,18,0,36,0,0,0,1,0,0,22,0,0,0,0,11,380,0,0,0,0,0,1,0,0,0,0,0,8,0,0,29980,47,1333,0,16,0,0,0,0,0,111,0,0,0,0,0,8,43,5803,0,0,10,0,0,0,0,0,160,5,32,5,0,2,0,1097,0,5,0,0,2287,0,0,0,0,0,0,10,0,10,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,19,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,4182,0,250,0,0,0,20,33,275,734,4129,0,0,0,0,1,0,5,0,0,0,0,0,0,1936,0,0,0,0,0,0,0,0,0,0,0,0,21,1,11,0,0,0,0,1,0,32,15,302,4,0,0,438,0,664,0,0,0,279,11,0,0,0,0,0,0,13,0,0,1132,1,0,0,0,14,0,0,0,0,1,131,150,0,0,0,0,0,0,0,0,3380,1,0,1073,9,0,1,1,1,0,0,0,53,0,0,0,8,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,25,0,0,0,0,1,57,468,0,17,12,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1655,623,5 +0,0,0,2,1,12,26,1,25,2,4,0,0,0,4,0,58,0,9,3,0,0,0,0,0,0,0,0,0,0,1,0,0,1,2,0,13,54,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,163,12,84,0,1,0,0,0,0,0,0,0,0,0,0,0,2,2,4,0,1,2,1,0,1,0,0,44,0,0,0,0,4,1,16,0,1,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,18,0,19,0,0,0,0,3,36,11,31,0,0,0,0,1,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,15,191,3,0,0,239,0,392,0,1,0,86,4,0,0,0,0,0,0,0,0,0,126,0,0,0,0,3,0,0,0,0,1,108,43,0,0,0,0,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,1,1,1,0,0,0,0,0,0,9,15,115,0,1,0,0,0,0,0,0,36,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,61,5 +0,0,0,10,1,13,8,4,44,1,8,0,0,0,6,0,29,0,6,3,0,1,1,1,0,0,0,0,0,0,1,0,0,1,3,0,14,8,77,0,49,0,0,0,1,0,0,1,0,0,0,0,0,188,0,0,0,0,0,1,0,0,0,0,0,6,0,0,1195,13,146,0,1,0,0,0,0,0,7,3,0,0,0,0,1,3,188,0,4,3,1,0,1,13,0,127,15,2,0,0,2,1,91,0,2,0,0,874,0,0,0,0,0,0,2,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,128,0,42,0,0,0,0,3,30,131,151,0,0,0,0,1,0,1,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,37,124,14,0,0,246,0,1528,0,0,0,160,11,0,0,0,0,0,0,0,0,0,101,1,4,0,0,6,0,0,0,0,0,95,153,0,0,46,0,0,0,0,0,384,0,0,193,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,16,17,305,0,1,0,0,1,0,0,0,85,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,240,79,5 +3,0,0,22,0,74,6,0,86,39,14,1,1,5,82,0,117,0,7,7,0,0,0,3,10,8,33,0,30,0,1,0,0,0,36,0,74,183,48,0,322,0,0,0,1,0,0,1,1,0,0,0,16,784,0,0,0,0,0,1,0,0,0,0,0,45,0,0,3608,74,380,0,31,0,0,0,0,0,4,0,0,0,0,0,3,6,129,0,0,36,0,0,1,13,0,284,25,4,1,0,2,0,536,0,40,0,8,6359,0,0,0,0,5,2,4,0,0,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,106,0,0,0,0,0,0,196,0,126,0,0,0,32,134,137,453,186,0,0,0,0,1,0,1,0,0,0,0,0,0,505,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,528,73,565,35,0,0,361,0,7476,0,0,0,203,1645,0,0,0,0,0,0,0,0,0,319,1,0,3,0,20,0,0,0,0,15,212,50,0,0,70,0,0,0,0,2,1345,0,0,16,0,0,1,0,0,0,0,0,6,0,0,0,5,0,0,0,0,0,39,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,91,1,1,1,0,100,0,0,0,0,1,110,70,0,72,0,0,0,0,0,0,203,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,41,0,0,0,0,0,0,0,0,0,0,0,0,0,1,30819,165,5 +0,0,0,30,3,20,4,3,170,6,7,0,0,0,12,0,216,0,9,7,0,6,0,1,0,1,0,0,2,0,3,0,0,3,5,390,23,63,3,0,25,0,1,0,1,0,0,2,3,0,0,0,0,422,0,0,0,0,0,1,0,0,0,0,0,4,0,0,206665,20,537,0,5,0,0,0,1,0,38,9,0,0,0,0,1,11,20758,0,3,5,3,0,0,0,0,26,0,15,0,0,2,3,445,0,3,0,1,99903,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,41,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,21,0,0,0,0,2,0,10346,0,84,0,0,0,2,5,50,33763,10359,0,0,0,0,1,0,2,0,0,1,0,0,0,510,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,30,10,510,49,0,0,422,0,1469,0,0,0,110,46,0,0,0,0,0,0,0,0,0,418,1,0,15,0,14,0,0,0,0,7,100,9,0,0,0,0,0,0,0,0,251635,0,0,1692,0,0,1,0,1,0,0,0,23,0,0,0,2,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,363,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,25,28,138,0,6,0,0,0,0,0,0,608,3,0,0,0,0,0,0,0,0,0,0,0,3,2,3,10,0,0,0,0,0,0,0,2,0,0,0,6,0,3,10874,63,5 +5,0,0,7,1,62,58,1,125,2,18,0,0,9,10,0,1899,0,9,4,0,0,0,8,0,13,6,0,14,0,1,0,0,1,10,28135,63,54,8,0,78,0,0,0,1,0,0,3,0,0,0,0,3,1085,0,0,0,0,0,1,0,0,0,9,0,4,0,0,296229,62,2153,0,11,0,0,0,0,0,64,0,0,0,0,0,9,66,72043,0,1,10,1,0,1,0,0,413,30,5,0,0,4,1,2023,0,2,57,0,8365,0,0,0,0,5,5,6,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,12,12,12,0,0,0,65842,0,88,0,0,0,7,48,726,2495,65792,0,0,0,0,1,0,11,0,0,0,0,0,0,804,5,0,0,0,0,0,0,0,0,0,0,0,19,6,0,0,0,0,0,1,0,224,29,618,8,0,0,624,0,674,0,1,0,280,83,0,0,0,0,0,0,0,0,0,2128,1,0,0,0,12,0,0,0,0,4,227,72,0,0,88,0,0,0,0,0,7942,1,0,255,35,0,1,1,0,0,0,0,7,0,0,0,1,0,0,0,0,0,5,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,95,1,1,1,0,39,0,0,0,0,9,73,99,0,20,14,0,0,0,0,0,148,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,4,3188,116,5 +1,0,0,10,0,31,20,0,90,19,24,0,1,1,29,0,41,0,7,4,0,0,0,3,3,1,6,0,8,0,1,0,0,0,14,0,31,15,13,0,152,0,0,0,1,0,0,1,0,0,0,0,4,136,0,0,0,0,0,1,0,0,0,1,0,10,0,0,1107,31,230,0,9,0,0,0,0,0,6,0,0,0,0,0,5,7,100,0,0,14,0,0,2,48,0,441,75,1,0,0,2,0,349,0,4,0,2,688,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,18,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,149,0,76,0,0,0,8,28,79,314,195,0,0,0,0,1,0,0,0,0,0,0,0,0,505,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,26,209,16,0,0,211,0,375,0,0,0,130,34,0,6,0,0,0,0,0,0,0,213,1,0,0,0,10,0,0,0,0,5,155,107,0,0,191,0,0,0,0,0,222,0,0,143,0,0,1,21,1,0,0,0,1,0,0,0,0,0,0,0,0,0,18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,14,0,0,0,0,1,45,152,0,16,0,0,0,0,0,0,170,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,23,11,0,0,0,0,0,0,0,0,0,0,0,0,1,304,47,5 +4,0,0,27,1,85,80,1,194,47,48,0,0,19,95,1,878,0,9,8,0,0,0,8,3,17,26,0,29,0,6,0,0,1,23,8751,86,54,47,0,408,0,0,0,1,0,0,3,0,0,0,0,14,669,0,0,0,0,0,1,0,0,0,29,0,63,0,0,133759,85,1358,0,31,0,0,0,0,0,53,0,0,0,0,0,10,81,24501,0,1,23,1,0,3,52,0,1103,140,4,0,0,4,1,1573,0,53,122,0,7718,0,0,0,0,49,4,17,0,0,0,0,1,0,0,0,39,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,31,0,1,0,0,0,0,0,0,0,0,0,1,2,4,0,0,0,0,1,0,0,0,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,19941,0,135,0,0,0,30,219,778,2033,19881,0,0,0,0,1,0,9,0,0,0,0,0,0,2211,4,0,0,0,0,0,0,0,0,0,0,0,16,5,0,0,0,0,0,1,0,411,89,798,34,0,0,865,0,1033,0,1,0,517,108,0,0,0,0,0,0,0,0,0,1324,1,0,0,0,19,0,0,0,0,11,354,282,0,0,338,0,7,0,0,0,7322,1,0,914,28,0,1,1,0,0,0,0,7,0,0,0,1,0,0,0,0,0,76,0,0,0,24,3,0,1,0,0,0,0,0,0,0,0,19,0,0,0,0,0,28,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,120,1,1,1,0,109,0,0,0,0,9,109,588,0,64,14,0,0,0,0,0,434,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,66,0,0,0,0,0,0,0,0,0,0,0,1,0,3,3124,186,5 +0,0,0,4,0,14,3,0,16,0,7,0,0,0,4,0,15,0,7,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,3,0,14,6,0,0,23,0,0,0,1,0,0,2,1,0,0,0,0,120,0,0,0,0,0,1,0,0,0,0,0,6,0,0,2660,14,84,0,1,0,0,0,1,0,27,0,0,0,0,0,2,5,585,0,0,3,0,0,1,8,0,83,15,6,0,0,2,0,49,0,2,0,0,407,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,363,0,69,0,0,0,0,3,31,70,376,0,0,0,0,1,0,0,0,0,0,0,0,0,1023,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,5,149,4,0,0,177,0,198,0,0,0,115,40,0,0,0,0,0,0,0,0,0,52,1,0,3,0,3,0,0,0,0,0,96,101,0,0,29,0,0,0,0,0,172,0,0,549,0,0,1,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,17,413,0,1,0,0,0,0,0,0,46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,396,61,5 +0,0,0,6,0,39,7,0,40,1,5,0,0,6,4,0,578,0,6,2,0,0,0,8,0,11,0,0,6,0,0,0,0,0,1,1058,39,6,0,0,43,0,0,0,1,0,0,2,1,0,0,0,1,183,0,0,0,0,0,1,0,0,0,0,0,3,0,0,22562,39,640,0,3,0,0,0,0,0,15,0,0,0,0,0,9,33,3930,0,0,1,0,0,0,0,0,195,20,8,1,0,2,0,620,0,0,1,0,1245,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,3196,0,52,0,0,0,1,4,361,364,3177,0,0,0,0,1,0,3,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,0,84,19,209,6,0,0,229,0,2866,0,0,0,57,11,0,0,0,0,0,0,0,0,0,646,1,0,6,0,10,0,0,0,0,1,122,10,0,0,6,0,0,0,0,0,1609,1,0,52,9,0,1,1,0,0,0,0,10,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,5,0,0,0,0,1,40,32,0,3,14,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,511,40,5 +2,0,0,16,1,77,45,1,129,29,20,0,1,6,60,0,127,0,9,10,0,0,0,5,1,13,21,0,18,0,2,1,0,1,29,0,78,363,28,0,268,0,0,0,1,0,0,6,0,0,0,0,9,331,0,0,0,0,0,1,0,0,0,0,0,51,0,0,4692,77,406,0,19,0,0,0,0,0,31,0,0,0,0,0,9,21,325,0,1,29,1,0,5,40,0,520,65,12,0,0,4,1,539,0,35,0,6,9397,0,0,0,0,5,0,4,0,0,0,0,1,0,0,0,15,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,1,17,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,66,10,10,10,0,0,0,306,0,134,0,0,0,16,82,284,735,308,0,0,0,0,1,0,6,0,0,0,0,0,0,932,0,0,1,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,149,70,680,18,0,0,883,0,2264,0,1,0,581,140,0,0,0,0,0,0,0,0,0,397,1,0,0,0,16,0,0,0,0,8,225,452,0,0,128,0,0,0,0,1,878,0,0,234,3,0,1,9,0,0,0,0,16,0,0,0,3,0,0,0,0,0,30,0,0,4,0,5,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,103,1,1,1,0,77,0,0,0,0,9,107,936,0,46,9,0,0,0,1,0,232,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,35,0,0,0,0,0,0,0,0,0,0,0,1,0,5,633,220,5 +0,0,0,24,0,69,10,0,89,29,15,0,1,10,73,1,147,0,7,13,0,0,0,8,1,16,13,0,12,0,2,0,0,0,10,864,69,427,397,0,255,0,0,0,1,0,0,3,0,0,0,0,9,347,0,0,0,0,0,1,0,0,0,0,0,23,0,0,23735,69,348,0,11,0,0,0,0,0,18,0,0,0,0,0,10,24,3755,0,0,10,0,0,0,0,0,242,20,6,0,0,2,0,434,0,20,0,6,4564,0,0,0,0,1,0,8,0,16,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,1,0,90,12,12,12,0,0,0,3215,0,133,0,0,0,9,39,289,1803,3235,0,0,0,0,1,0,4,0,0,0,0,0,0,558,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,2,0,101,54,611,28,0,0,449,0,2538,0,0,0,234,81,0,0,0,0,0,0,0,0,0,353,1,0,0,0,22,0,0,0,0,5,175,99,0,0,0,0,0,0,0,0,1794,1,0,73,6,0,1,2,0,0,0,0,8,0,0,0,2,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,64,1,1,1,0,30,0,0,0,0,17,79,105,0,30,13,0,0,0,0,0,138,3,0,0,0,0,0,0,0,0,0,0,0,2,0,2,34,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1578,315,5 +0,0,0,3,0,14,2,0,7,2,3,0,0,0,5,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,14,6,0,0,18,0,0,0,1,0,0,1,0,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,5,0,0,386,14,33,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,37,0,0,5,0,0,0,0,0,7,0,1,0,0,2,0,12,0,3,0,0,242,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,47,0,41,0,0,0,0,3,31,5,57,0,0,0,0,1,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,8,6,111,3,0,0,111,0,165,0,0,0,56,5,0,0,0,0,0,0,0,0,0,37,1,0,0,0,2,0,0,0,0,0,98,32,0,0,0,0,0,0,0,0,39,0,0,60,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,19,122,0,1,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,82,19,5 +0,0,0,3,0,27,4,0,10,0,3,0,0,2,3,0,11,0,6,3,0,0,0,5,0,8,0,0,1,0,1,0,0,0,1,0,27,6,0,0,20,0,0,0,1,0,0,0,0,0,0,0,1,63,0,0,0,0,0,1,0,0,0,0,0,1,0,0,509,27,27,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,78,0,0,1,0,0,0,0,0,70,5,0,0,0,2,0,19,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,39,0,25,0,0,0,0,3,192,8,42,0,0,0,0,1,0,3,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,32,13,77,3,0,0,83,0,132,0,0,0,9,1,0,0,0,0,0,0,0,0,0,39,0,0,0,0,8,0,0,0,0,0,109,5,0,0,1,0,0,0,0,0,63,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,0,0,1,28,17,0,2,8,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,22,5 +1,0,0,11,0,64,8,0,72,18,6,0,1,5,32,0,986,0,7,8,0,0,0,7,1,14,15,0,15,0,1,0,0,0,19,898,64,103,26,0,193,0,0,0,1,0,0,4,0,0,0,0,7,329,0,0,0,0,0,1,0,0,0,2,0,10,0,0,14244,64,1158,0,13,0,0,0,0,0,25,0,0,0,0,0,9,21,4115,0,0,19,0,0,0,0,0,148,5,8,0,0,2,0,1163,0,7,0,5,2499,0,0,0,0,6,0,5,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,12,12,12,0,0,0,2620,0,106,0,0,0,12,65,286,1431,2595,0,0,0,0,1,0,4,0,0,0,0,0,0,1032,0,0,0,0,0,0,0,0,0,0,0,0,4,1,2,0,0,0,0,1,0,37,37,385,17,0,0,433,0,912,0,0,0,247,74,0,0,0,0,0,0,0,0,0,1117,1,0,0,0,16,0,0,0,0,7,182,113,0,0,0,0,0,0,0,0,2671,1,0,693,6,0,1,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,77,1,1,1,0,46,0,0,0,0,1,83,468,0,33,12,0,0,0,0,0,103,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,843,99,5 +1,0,0,7,1,77,34,1,50,8,10,0,0,9,19,0,133,0,9,3,0,0,0,7,0,10,6,0,7,0,3,0,0,1,38,5489,78,96,0,0,89,0,0,0,1,0,0,3,0,0,0,0,3,474,0,0,0,0,0,1,0,0,0,2,0,10,0,0,13463,77,237,0,7,0,0,0,0,0,24,0,0,0,0,0,9,33,2234,0,1,38,1,0,1,0,0,299,30,4,0,0,4,1,211,0,8,29,0,3332,0,0,0,0,14,1,8,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,12,12,0,0,0,651,0,123,0,0,0,5,13,493,573,652,0,0,0,0,1,0,15,0,0,0,0,0,0,495,1,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,2,0,222,35,608,8,0,0,538,0,853,0,1,0,263,21,0,0,0,0,0,0,0,0,0,264,1,0,0,0,10,0,0,0,0,4,197,34,0,0,29,0,0,0,0,0,17047,1,0,97,8,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,8,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,8,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,113,1,1,1,0,11,0,0,0,0,9,116,142,0,14,12,0,0,0,0,0,125,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,14,0,0,0,0,0,0,0,0,0,0,0,1,0,3,1550,70,5 +0,0,0,13,0,19,5,0,52,0,13,0,0,0,12,0,23,0,7,2,0,0,0,1,0,2,3,0,2,0,1,0,0,0,8,0,19,6,3,0,100,0,2,0,1,0,0,2,0,0,0,0,2,84,0,0,0,0,0,1,0,0,0,0,0,24,0,0,785,19,96,0,4,0,0,0,0,0,8,0,0,0,0,0,1,4,189,0,0,8,0,0,3,23,0,218,45,3,0,0,2,0,149,0,0,0,0,289,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,91,0,50,0,0,0,3,12,45,254,89,0,0,0,0,1,0,0,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,5,115,12,0,0,119,0,234,0,0,0,57,11,0,0,0,0,0,0,0,0,0,112,1,0,0,0,3,0,0,0,0,3,101,62,0,0,97,0,0,0,0,0,84,0,0,355,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,181,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,8,0,0,0,0,1,27,101,0,8,0,0,0,0,0,0,85,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,170,247,5 +0,0,0,18,0,47,134,0,63,2,17,0,0,16,7,0,347,0,7,2,0,0,0,9,0,11,0,0,9,0,1,0,0,0,6,17124,47,6,0,0,151,0,0,0,1,0,0,4,1,0,0,0,1,1104,0,0,0,0,0,1,0,0,0,0,0,9,0,0,258465,47,964,0,6,0,0,0,1,0,273,0,0,0,0,0,10,53,42827,0,0,6,0,0,1,8,0,613,76,6,0,0,2,0,811,0,2,39,0,6062,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,12,12,12,0,0,0,37257,0,103,0,0,0,3,6,745,1406,37232,0,0,0,0,1,0,3,0,0,0,0,0,0,821,0,0,0,0,1,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,284,26,465,28,0,0,798,0,379,0,0,0,611,33,0,0,0,0,0,0,0,0,0,591,1,0,2,0,11,0,0,0,0,2,239,190,0,0,72,0,0,0,0,0,3956,1,0,210,138,0,1,1,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,138,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,14,0,0,0,0,1,53,180,0,7,14,0,0,0,0,0,223,4,0,0,0,0,0,0,0,0,0,0,0,2,0,2,16,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2845,110,5 +0,0,0,10,0,20,4,0,30,12,6,0,0,2,22,0,36,0,7,3,0,0,0,1,0,1,6,0,4,0,1,0,0,0,7,0,20,61,7,0,113,0,0,0,1,0,0,3,0,0,0,0,2,109,0,0,0,0,0,1,0,0,0,0,0,9,0,0,1117,20,124,0,5,0,0,0,0,0,14,0,0,0,0,0,1,6,113,0,0,7,0,0,0,0,0,29,0,5,1,0,2,0,124,0,6,0,2,894,0,0,0,0,1,0,3,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,14,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,121,0,76,0,0,0,4,18,48,60,150,0,0,0,0,1,0,0,0,0,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,13,21,159,11,0,0,213,0,589,0,0,0,146,28,0,0,0,0,0,0,0,0,0,107,1,0,0,0,4,0,0,0,0,3,127,89,0,0,0,0,0,0,0,0,193,0,0,128,0,0,1,0,1,0,0,0,5,0,0,0,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,8,0,0,0,0,1,27,175,0,12,0,0,0,0,0,0,62,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,4,252,70,5 +0,0,0,16,0,45,170,0,1213,212,304,0,0,3,232,0,50,0,7,6,0,0,0,2,0,5,12,0,11,0,1,0,0,0,21,0,45,94,109,0,2799,0,0,0,1,0,0,2,0,0,0,0,6,316,0,0,0,0,0,1,0,0,0,0,0,433,0,0,4654,45,1976,0,12,0,0,0,0,0,7,0,0,0,0,0,1,4,512,0,0,21,0,0,2,1177,0,8916,455,4,0,0,2,0,6205,0,220,0,3,3688,0,0,0,0,39,0,2,0,0,0,0,1,0,0,0,13,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,56,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,325,0,70,0,0,0,12,206,78,7600,329,0,0,0,0,1,0,0,0,0,0,0,0,0,1521,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,15,236,421,20,0,0,373,0,727,0,0,0,272,62,0,0,0,0,0,0,0,0,0,1979,1,0,0,0,8,0,0,0,0,4,131,3078,0,0,1499,0,0,0,0,0,498,0,0,43,0,0,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,214,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,438,0,0,0,0,1,66,133,0,29,0,0,0,0,0,0,3043,48,0,0,0,0,0,0,0,0,0,0,0,0,0,1,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,435,113,5 +1,0,0,15,0,74,38,0,147,40,35,0,1,9,61,0,136,0,7,9,0,0,0,7,3,16,18,0,20,0,1,0,0,0,26,864,74,212,30,0,284,0,0,0,1,0,0,7,0,0,0,0,9,419,1,0,0,0,0,1,0,0,0,0,0,50,0,0,9841,74,504,0,18,0,0,0,0,0,42,0,0,0,9,0,10,37,1607,0,0,26,0,0,3,73,0,874,135,14,0,0,2,0,736,0,39,2,7,2703,0,0,1,0,11,0,11,0,0,0,0,1,0,0,0,45,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,54,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,12,12,12,0,0,0,931,0,190,0,0,0,17,75,445,1054,940,0,0,0,0,1,0,4,0,0,0,0,0,0,1361,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,89,80,523,16,0,0,672,0,1223,0,0,0,476,102,0,0,0,0,0,0,9,0,0,434,1,0,0,0,19,0,0,0,0,9,197,401,0,0,304,0,0,0,0,1,1073,1,0,412,8,0,1,1,1,0,0,0,15,0,0,0,6,0,0,0,0,0,41,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,8,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,97,1,1,1,0,76,0,0,0,0,1,100,1023,0,43,12,0,0,0,0,0,340,6,0,0,0,0,0,0,0,0,0,0,0,2,0,1,48,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1126,235,5 +0,0,0,62,0,9,13,0,6,0,2,0,0,0,247,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,495,0,0,0,1,0,0,1,0,0,0,0,0,63,0,0,0,0,0,1,0,0,0,0,0,61,0,0,1258,9,288,0,1,0,0,0,0,0,7,0,0,0,0,0,1,3,45,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,518,0,0,0,0,1140,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,32,0,0,0,0,3,24,5,57,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,164,62,0,0,352,0,270,0,0,0,297,40,0,0,0,0,0,0,0,0,0,289,1,0,0,0,2,0,0,0,0,0,91,290,0,0,0,0,0,0,0,0,72,0,0,56,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,9,112,0,1,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,321,81,5 +0,0,0,7,0,38,15,0,98,39,19,0,1,1,54,0,60,0,7,7,0,0,0,1,2,3,15,0,14,0,1,0,0,0,22,0,38,36,22,0,182,0,0,0,1,0,0,2,0,0,0,0,8,213,0,0,0,0,0,1,0,0,0,0,0,44,0,0,1535,38,268,0,15,0,0,0,0,0,12,0,0,0,0,0,1,4,99,0,0,22,0,0,3,34,0,346,50,3,0,0,2,0,403,0,32,0,2,957,0,0,0,0,3,0,0,0,5,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,135,0,96,0,0,0,16,52,83,442,156,0,0,0,0,1,0,0,0,0,0,0,0,0,454,0,0,0,0,0,0,0,0,0,0,0,0,2,0,12,0,0,0,0,0,0,8,53,281,7,0,0,305,0,624,0,0,0,226,86,0,0,0,0,0,0,0,0,0,255,1,0,0,0,10,0,0,0,0,4,149,181,0,0,133,0,0,0,0,0,301,0,0,84,0,0,1,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,39,0,0,0,0,1,60,365,0,33,0,0,0,0,0,0,181,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,43,3,0,0,0,0,0,0,0,0,0,0,0,0,2,315,129,5 +0,0,0,17,1,46,172,1,180,0,64,0,0,7,11,0,122,0,8,3,0,0,0,8,0,10,0,0,19,0,1,0,0,1,7,767,47,127,0,0,278,0,0,0,1,0,0,5,0,0,0,0,1,704,0,2,0,0,0,1,0,0,0,0,0,8,0,0,27560,46,672,0,17,0,0,0,0,0,113,0,0,0,0,0,10,206,5434,0,1,7,1,0,2,118,0,1435,85,6,0,0,4,1,812,0,3,212,0,3263,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,12,12,12,0,0,0,2867,0,104,0,0,0,11,14,1100,7608,2435,0,0,0,0,1,0,3,0,0,0,0,0,0,956,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,212,31,437,22,0,0,611,0,811,0,1,0,335,47,0,0,0,0,0,0,2,0,0,564,1,0,0,0,11,0,0,0,0,2,162,279,0,0,583,0,0,0,0,0,1958,1,0,465,49,0,1,1,0,0,0,0,8,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,49,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,49,1,1,1,0,49,0,0,0,0,9,54,167,0,18,12,0,0,0,0,0,379,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,1,0,4,1550,109,5 +0,0,0,5,0,31,5,0,20,2,7,0,0,2,6,0,20,0,6,3,0,0,0,5,1,8,0,0,4,0,1,0,0,0,4,0,31,6,4,0,39,0,0,0,1,0,0,3,0,0,0,0,2,112,0,0,0,0,0,1,0,0,0,0,0,9,0,0,923,31,72,0,3,0,0,0,0,0,14,0,0,0,0,0,7,16,148,0,0,4,0,0,1,8,0,160,20,4,0,0,2,0,67,0,4,0,0,569,0,0,0,0,1,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,134,0,73,0,0,0,2,5,157,91,129,0,0,0,0,1,0,2,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,20,174,5,0,0,216,0,526,0,0,0,113,12,0,0,0,0,0,0,0,0,0,66,1,0,0,0,9,0,0,0,0,2,129,89,0,0,30,0,0,0,0,0,108,0,0,77,3,0,1,1,0,0,0,0,6,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,4,0,0,0,0,1,35,224,0,4,9,0,0,0,0,0,60,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,216,68,5 +0,0,0,0,0,8,2,0,17,0,1,0,0,0,2,0,22,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,1,0,0,0,0,23,0,0,0,0,0,1,0,0,0,0,0,0,0,0,68,8,42,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,14,0,0,0,0,0,0,0,0,10,0,4,0,0,2,0,17,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,21,0,24,0,0,0,0,3,21,5,34,0,0,0,0,1,0,1,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,88,0,0,0,100,0,460,0,0,0,24,0,0,0,0,0,0,0,0,0,0,50,1,0,2,0,2,0,0,0,0,0,90,9,0,0,0,0,0,0,0,0,34,0,0,12,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,24,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,31,5 +5,0,0,15,6,53,51,12,286,8,54,0,0,0,36,0,75,0,7,15,0,6,6,7,0,0,3,0,1,0,2,0,0,6,22,0,59,18,0,0,720,0,0,0,1,0,0,7,0,0,0,0,1,322,0,2,0,0,0,1,0,0,0,498,0,33,0,0,181502,53,942,8,3,0,0,0,0,0,33,18,0,0,0,0,9,18,51261,0,12,22,6,0,0,206,0,1587,40,14,0,0,2,6,1185,0,15,0,0,28508,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,4,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,22,0,0,0,0,0,0,30899,0,384,0,0,0,2,7,118,61316,30943,0,0,0,0,1,0,3,0,0,0,0,0,0,14203,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,10,195,1420,25,0,0,626,0,1047,0,0,0,341,249,0,0,0,0,0,0,0,0,0,509,1,0,0,0,34,0,0,0,0,2,160,647,0,0,88,0,1,0,2,2,22425,0,0,32540,0,0,1,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,2,0,0,0,0,59,83,486,0,6,0,0,0,0,0,0,542,7,0,0,0,0,0,0,0,0,0,0,0,6,0,1,10,0,0,0,0,0,0,0,0,0,0,0,10,0,8,22517,480,5 +0,0,0,15,1,39,100,1,191,38,47,0,1,4,53,0,115,0,9,7,0,0,0,2,3,3,12,0,13,0,2,0,0,1,16,0,40,278,23,0,349,0,0,0,1,0,0,8,0,0,0,0,8,355,0,0,0,0,0,1,0,0,2,1,0,40,0,0,12715,39,538,0,15,0,0,0,0,0,29,0,0,0,0,1,4,17,1523,0,1,16,1,0,4,108,0,985,175,14,0,0,4,1,737,0,31,0,6,1944,0,0,0,0,9,0,6,0,0,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,1421,0,145,0,0,0,16,58,96,1198,1277,0,0,0,0,1,0,0,0,0,0,0,0,0,3902,0,0,0,0,0,0,0,0,0,0,0,0,8,0,8,0,0,0,0,0,0,151,71,488,17,0,0,602,0,3178,0,1,0,369,71,0,0,0,0,0,0,9,0,0,520,1,0,0,0,12,0,0,0,0,9,194,316,0,0,402,0,0,0,0,3,1384,0,0,2905,0,0,1,0,1,0,0,0,14,0,1,0,10,0,0,0,0,0,39,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,1,55,1,1,1,0,47,0,0,0,0,16,56,334,0,30,0,0,0,0,0,0,341,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,42,0,0,0,0,0,0,0,0,0,0,0,1,0,4,1670,273,5 +0,0,0,2,0,34,9,0,35,3,6,0,1,2,5,0,71,0,6,3,0,0,0,6,0,10,0,0,2,0,1,0,0,0,4,4,34,25,0,0,54,0,0,0,1,0,0,2,0,0,0,0,1,113,0,0,0,0,0,1,0,0,0,0,0,10,0,0,1837,34,122,0,1,0,0,0,0,0,8,0,0,0,0,0,8,17,334,0,0,4,0,0,3,12,0,196,25,1,0,0,4,0,149,0,3,0,0,1182,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,12,12,0,0,0,70,0,42,0,0,0,0,3,216,87,70,0,0,0,0,1,0,4,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,38,25,205,2,0,0,225,0,736,0,0,0,77,4,0,0,0,0,0,0,0,0,0,135,1,0,0,0,9,0,0,0,0,1,117,49,0,0,37,0,0,0,0,0,330,1,0,11,4,0,1,1,1,0,0,0,1,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,0,0,0,0,0,1,38,84,0,2,11,0,0,0,0,0,64,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,60,5 +0,0,0,10,0,23,7,0,42,0,9,0,0,0,4,0,16,0,7,3,0,0,0,1,0,0,0,0,0,0,1,0,0,0,6,0,23,6,0,0,91,0,2,0,1,0,0,3,0,0,0,0,0,168,0,0,0,0,0,1,0,0,0,0,0,11,0,0,39923,23,107,0,1,0,0,0,0,0,21,0,0,0,2,0,3,8,5593,0,0,6,0,0,2,17,0,161,25,7,1,0,2,0,88,0,1,0,0,753,0,0,0,0,1,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,5107,0,237,0,0,0,0,3,58,591,5153,0,0,0,0,1,0,0,0,0,0,0,0,0,9867,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,149,11,0,0,238,0,527,0,0,0,158,28,0,0,0,0,0,0,0,0,0,85,1,0,0,0,4,0,0,0,0,1,105,149,0,0,52,0,0,0,0,0,2403,0,0,10669,0,0,1,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,279,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,0,0,1,29,420,0,1,0,0,1,0,0,0,73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3248,100,5 +0,0,0,13,0,13,13,0,54,4,12,0,0,3,3,0,22,0,6,2,0,0,0,2,0,0,4,0,0,0,0,0,0,0,1,0,13,30,5,0,69,0,0,0,1,0,0,1,0,0,0,0,0,124,0,3,0,0,0,1,0,0,0,0,0,3,0,0,603,13,112,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,85,0,0,1,0,0,1,33,0,302,45,2,0,0,2,0,194,0,9,4,0,227,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,28,0,3,0,0,0,0,90,0,71,0,0,0,0,6,50,241,115,0,0,0,0,1,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,13,124,14,0,0,158,0,730,0,0,0,92,13,0,0,0,0,0,0,0,0,0,113,1,0,0,0,4,0,0,0,0,0,94,114,0,0,115,0,0,0,0,0,72,0,0,49,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,6,14,139,0,4,0,0,0,0,0,0,114,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,133,47,5 +1,0,0,10,0,35,9,0,71,46,16,0,1,2,62,0,53,0,8,4,0,0,0,3,1,3,12,0,8,0,1,0,0,0,21,0,35,84,15,0,204,0,0,0,1,0,0,3,0,0,0,0,4,152,0,0,0,0,0,1,0,0,0,0,0,46,0,0,1368,35,251,0,9,0,0,0,0,0,13,0,0,0,0,0,3,7,129,0,0,21,0,0,2,22,0,266,35,5,0,0,2,0,356,0,41,0,4,977,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,165,0,113,0,0,0,8,51,77,614,192,0,0,0,0,1,0,0,0,0,0,0,0,0,443,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,12,59,235,11,0,0,218,0,385,0,0,0,142,43,0,0,0,0,0,0,0,0,0,222,1,0,0,0,8,0,0,0,0,5,127,92,0,0,79,0,0,0,0,0,299,0,0,96,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,30,0,0,0,0,1,56,233,0,24,0,0,0,0,0,0,180,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,50,0,0,0,0,0,0,0,0,0,0,0,0,0,3,400,50,5 +3,0,0,7,0,52,8,0,81,0,8,0,0,6,5,0,39,0,8,5,0,0,0,5,1,8,0,0,5,0,1,0,0,0,22,0,52,6,1,0,108,0,0,0,1,0,0,9,0,0,0,0,3,172,9,0,0,0,0,1,74,0,0,0,0,14,0,0,2113,52,181,0,4,0,0,0,0,0,28,0,0,0,0,0,8,28,297,0,0,22,0,0,2,12,0,288,40,16,0,0,2,0,147,0,2,0,0,1131,0,0,0,0,1,2,7,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,10,10,10,0,0,0,244,0,106,0,0,0,4,8,228,120,270,0,0,0,0,1,0,10,0,0,0,0,0,0,587,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,94,12,253,7,0,0,309,0,583,0,0,0,186,19,0,0,0,0,0,0,0,0,0,155,1,0,0,0,11,0,0,0,0,1,137,115,0,0,37,0,0,0,0,0,952,0,0,151,3,0,1,1,0,0,0,0,11,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,3,0,0,0,0,1,74,300,0,5,9,0,0,0,0,0,950,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,69,5 +0,0,0,51,0,43,71,0,30,7,46,0,0,2,57,6,38,0,7,4,0,0,0,5,7,14,0,0,24,0,39,0,0,0,13,0,43,6,26,0,473,0,0,0,1,0,0,3,0,0,0,0,47,332,0,0,0,0,0,1,0,0,0,0,0,10,0,0,8665,43,288,0,61,0,0,0,0,0,19,0,0,0,0,0,7,17,997,0,0,13,0,0,0,0,0,322,5,5,0,0,2,0,277,0,6,0,0,4351,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,10,10,10,0,0,0,776,0,86,0,0,0,92,124,174,460,756,0,0,0,0,1,0,2,0,0,0,0,0,0,1239,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,72,537,55,0,0,458,0,926,0,0,0,244,101,0,0,0,0,0,0,0,0,0,257,1,0,0,0,16,0,0,0,0,47,273,73,0,0,0,0,0,0,0,0,567,0,0,999,3,0,1,1,0,0,0,0,6,0,0,0,2,0,0,0,0,0,52,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,0,0,0,0,0,3,39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,112,0,0,0,0,1,56,516,0,68,9,0,0,0,0,0,246,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,38,0,0,0,0,0,3,766,8407,5 +6,0,0,13,1,98,201,1,674,90,191,0,0,2,104,0,179,0,9,9,0,0,0,16,0,13,12,0,29,0,1,0,0,1,43,0,99,331,60,0,1883,0,0,0,1,0,0,0,0,0,0,0,13,348,0,0,0,0,0,1,0,0,3,11,0,176,0,0,19953,98,1424,0,28,0,0,1,0,0,45,0,0,0,0,0,12,19,3976,0,1,43,1,0,9,602,0,4917,620,2,0,0,4,1,3052,0,99,1,0,4407,0,0,0,0,21,6,1,0,0,0,0,1,0,0,0,985,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,3,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,4,2,1,0,0,0,0,0,0,0,0,3,0,0,0,0,8,0,0,0,0,986,0,1,0,0,1,0,0,0,0,0,0,1,1,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,1,0,70,10,10,10,0,0,0,2857,0,212,0,0,0,24,88,314,10579,2944,0,0,0,0,1,0,13,0,4,0,0,0,0,7659,0,0,0,0,0,0,0,0,0,1,1,0,1,1,10,0,0,0,0,2,0,138,121,2288,14,0,0,2681,0,1994,0,1,0,2367,167,0,1,0,0,0,0,0,0,0,1360,1,0,0,0,25,0,0,0,0,13,1829,1674,0,0,1650,0,363,0,8,8,1701,0,0,3491,3,0,1,16,1,0,0,0,2,0,1,0,8,0,0,0,0,0,91,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,20,1,0,0,0,0,3,1,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,123,1,1,1,0,96,0,0,0,0,9,142,544,0,46,9,0,0,0,0,0,2328,48,0,0,0,0,0,0,0,0,0,0,0,2,0,1,106,2,0,0,0,0,0,0,0,0,0,0,1,0,3,1618,1297,5 +1,0,0,4,0,8,3,0,11,0,6,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,4,0,0,28,8,31,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,0,0,0,1,8,0,82,15,0,0,0,2,0,43,0,0,0,0,44,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,15,0,0,0,0,3,21,114,31,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,29,4,0,0,34,0,41,0,0,0,4,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,2,0,0,0,0,0,90,16,0,0,38,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,2,5 +1,0,0,20,0,46,31,0,78,7,22,0,0,2,15,0,44,0,15,7,0,0,0,5,0,11,12,0,9,0,2,0,0,0,10,0,46,6,16,0,161,0,0,0,1,0,0,4,0,0,0,0,5,228,0,0,0,0,0,1,0,0,0,0,0,24,0,0,1858,46,222,0,9,0,0,0,0,0,19,0,0,0,0,0,8,18,201,0,0,10,0,0,3,54,0,550,85,7,0,0,2,0,364,0,11,0,0,1799,0,0,0,0,13,1,9,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,9,1,1,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,10,10,10,0,0,0,176,0,94,0,0,0,8,45,213,395,175,0,0,0,0,1,0,3,0,0,0,0,0,0,665,0,0,0,0,0,0,0,0,0,0,0,0,4,1,4,0,0,0,0,1,0,32,33,224,20,0,0,335,0,801,0,0,0,203,83,0,0,0,0,0,0,0,0,0,207,1,0,0,0,12,0,0,0,0,3,144,217,0,0,192,0,8,0,0,1,227,0,0,114,3,0,1,1,1,0,0,0,7,0,0,0,1,0,0,0,0,0,7,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,60,0,0,0,0,1,56,239,0,25,9,0,0,0,0,0,175,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,2,310,122,5 +0,0,0,9,0,28,139,0,228,42,70,0,0,0,51,0,31,0,7,4,0,0,0,2,0,3,6,0,6,0,1,0,0,0,16,0,28,6,13,0,416,0,0,0,1,0,0,9,1,0,0,0,3,237,0,0,0,0,0,1,0,0,3,0,0,64,0,0,3016,28,582,0,7,0,0,0,1,0,37,0,0,0,0,0,2,15,481,0,0,16,0,0,4,206,0,1660,320,11,0,0,2,0,1010,0,48,0,0,1376,0,0,0,0,19,0,8,0,0,0,0,1,0,0,0,20,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,14,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,417,0,182,0,0,0,6,30,53,1412,403,0,0,0,0,1,0,0,0,0,0,0,0,0,1767,0,0,0,0,8,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,8,51,298,10,0,0,378,0,766,0,0,0,305,70,0,0,0,0,0,0,7,0,0,526,1,0,4,0,6,0,0,0,0,4,126,434,0,0,812,0,0,0,0,7,246,0,0,346,0,0,1,0,0,0,0,0,22,0,2,0,11,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,32,0,0,0,0,1,44,317,0,16,0,0,0,0,0,0,507,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,46,0,0,0,0,0,0,0,0,0,0,0,0,0,7,605,145,5 +1,0,0,7,0,24,3,0,12,0,4,0,0,0,5,0,24,0,6,2,0,0,0,2,0,1,3,0,2,0,1,0,0,0,11,0,24,60,4,0,33,0,0,0,1,0,0,1,0,0,0,0,1,67,0,0,0,0,0,1,0,0,0,0,0,6,0,0,309,24,52,0,3,0,0,0,0,0,4,0,0,0,0,0,2,4,52,0,0,11,0,0,0,0,0,14,0,1,0,0,2,0,47,0,3,0,0,390,0,0,0,0,3,0,2,0,0,0,0,1,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,319,0,51,0,0,0,2,10,41,289,69,0,0,0,0,1,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,3,8,7,135,7,0,0,121,0,352,0,0,0,55,21,0,0,0,0,0,0,0,0,0,54,1,0,0,0,4,0,0,0,0,1,106,15,0,0,0,0,0,0,0,1,128,0,0,12,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,6,0,0,0,0,1,35,55,0,7,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,83,59,5 +0,0,0,12,1,52,113,5,147,35,49,0,0,2,58,0,44,0,7,8,0,1,0,6,1,15,12,0,9,0,1,1,0,1,19,0,53,6,17,1,339,0,0,0,1,0,0,6,0,0,0,0,9,247,0,2,0,0,0,1,0,0,7,3,0,49,0,0,3818,52,574,0,12,0,0,0,0,0,31,3,0,0,0,1,8,22,689,0,5,19,1,0,3,128,0,1120,215,10,0,0,2,1,750,0,38,0,0,1986,0,0,0,0,37,0,7,0,0,0,0,1,0,0,0,42,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,10,10,10,0,0,0,691,0,154,0,0,0,12,49,196,1230,631,0,0,0,0,1,0,2,0,0,0,0,0,0,1666,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,2,0,32,55,372,35,0,0,558,0,1369,0,0,0,420,104,0,0,0,0,0,0,0,0,0,420,0,0,0,0,16,0,0,0,0,4,236,363,0,0,554,0,1,0,0,6,354,0,0,305,3,0,1,1,0,0,0,0,14,0,5,0,10,0,0,0,0,0,32,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,3,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,52,0,0,0,0,1,72,307,0,29,9,0,0,0,0,0,382,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,41,0,0,0,0,0,0,0,0,0,0,0,2,0,6,900,190,5 +0,0,0,16,0,42,137,0,65,0,12,0,0,12,6,0,1164,0,6,2,0,0,0,8,0,11,0,0,11,0,1,0,0,0,3,24894,42,6,0,0,73,0,0,0,1,0,0,3,0,0,0,0,1,1226,0,0,0,0,0,1,0,0,0,0,0,6,0,0,391709,42,1791,0,8,0,0,0,0,0,279,0,0,0,0,0,9,52,70660,0,0,3,0,0,0,0,0,342,45,5,1,0,2,0,1505,0,1,27,0,7496,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,12,12,12,0,0,0,63843,0,60,0,0,0,5,8,735,1971,63825,0,0,0,0,1,0,3,0,1,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,193,21,504,26,0,0,822,0,297,0,0,0,625,25,0,0,0,0,0,0,0,0,0,1402,1,0,0,0,10,0,0,0,0,2,269,152,0,0,46,0,2,0,0,0,6258,1,0,290,138,0,1,1,0,0,0,0,4,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,138,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,22,0,0,0,0,1,45,157,0,9,14,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3360,103,5 +6,0,0,10,1,53,53,1,60,9,14,0,0,6,18,0,168,0,8,2,0,0,0,8,0,11,0,0,8,0,1,0,0,1,7,16064,54,122,0,0,104,0,0,0,1,0,0,1,0,0,0,0,1,759,0,0,0,0,0,1,0,0,0,0,0,19,0,0,132255,53,342,0,5,0,0,0,0,0,54,0,0,0,0,0,9,43,21942,0,1,7,1,0,2,11,0,340,35,1,0,0,4,1,311,0,13,12,0,7488,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,5,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,12,12,0,0,0,10832,0,92,0,0,0,2,5,536,1196,10804,0,0,0,0,1,0,10,0,0,0,0,0,0,450,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,201,38,785,11,0,0,731,0,1433,1,1,0,412,29,0,1,0,0,0,0,0,0,0,327,1,0,0,0,10,0,0,0,0,1,356,79,0,0,46,0,6,0,0,0,5817,1,0,158,35,0,1,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,62,1,1,1,0,10,0,0,0,0,9,61,177,0,6,14,0,0,0,0,0,135,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,15,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4617,169,5 +2,0,0,14,0,62,394,0,602,76,85,1,1,3,99,0,1150,0,7,8,0,0,0,4,44,48,1053,0,101,0,2,0,0,0,34,0,62,223,281,0,774,0,0,0,1,0,0,1,0,0,0,0,51,277,0,0,0,0,0,1,0,0,46,2,0,93,0,0,13387,62,3606,0,103,0,0,0,0,0,6,0,0,0,0,0,5,7,1443,0,0,34,0,0,3,310,0,2896,385,1,0,0,2,0,5744,0,80,0,4,8024,0,0,0,0,446,0,3,0,0,0,0,1,0,0,0,195,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,171,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,1,0,566,0,0,0,0,0,0,1163,0,124,0,0,0,102,1434,134,4608,1396,0,0,0,0,1,0,4,0,0,0,0,0,0,6876,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,24,95,522,18,0,0,742,0,1445,0,0,0,628,235,0,0,0,0,0,0,0,0,0,2342,1,0,0,0,56,0,0,0,0,50,229,598,0,0,1367,0,0,0,0,3,4038,0,0,724,0,0,1,0,0,0,0,0,2,0,5,0,47,0,0,0,0,0,76,1,0,2,0,5,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,83,1,1,1,0,897,0,0,0,0,1,96,125,0,1204,0,0,0,0,0,0,826,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1167,301,5 +0,0,0,10,0,21,21,0,123,32,33,0,0,0,40,0,93,0,7,8,0,0,0,4,6,11,33,0,20,0,1,0,0,0,6,0,21,9,36,0,235,0,0,0,1,0,0,4,0,0,0,0,11,713,0,0,0,0,0,1,0,0,0,0,0,44,0,0,3857,21,379,0,21,0,0,0,0,0,14,0,0,0,0,0,6,12,412,0,0,6,0,0,2,90,0,860,115,6,0,0,4,0,715,0,34,0,0,3509,0,0,0,0,4,0,6,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,520,0,138,0,0,0,22,1123,87,54732,451,0,0,0,0,1,0,0,0,0,0,0,0,0,552,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,14,40,417,11,0,0,276,0,2692,0,0,0,186,131,0,0,0,0,0,0,0,0,0,317,1,0,0,0,18,0,0,0,0,12,136,319,0,0,1559,0,0,0,0,0,743,0,0,66,0,0,1,0,1,0,0,0,7,0,0,0,1,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,116,0,0,0,0,1,27,382,0,65,0,0,0,0,0,0,345,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,36,0,0,0,0,0,0,0,0,0,0,0,0,0,3,346,205,5 +2,0,0,12,1,65,67,1,140,24,34,0,0,2,40,1,140,0,9,6,0,0,0,6,0,13,6,0,8,0,2,0,0,1,19,4,66,54,15,0,258,0,0,0,1,0,0,2,0,0,0,0,4,395,0,0,0,0,0,1,0,0,1,3,0,47,0,0,20161,65,401,0,7,0,0,0,0,0,16,0,0,0,0,0,9,21,1365,0,1,19,1,0,5,87,0,841,140,4,1,0,4,1,582,0,31,0,0,3432,0,0,0,0,14,2,4,0,0,0,0,1,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,10,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,4,2,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,12,12,12,0,0,0,1168,0,157,0,0,0,6,35,293,572,1169,0,0,0,0,1,0,3,0,0,0,0,0,0,3734,2,0,0,0,0,0,0,0,0,0,0,0,2,3,2,0,0,0,0,1,0,135,64,725,16,0,0,1184,0,1337,0,1,0,886,80,0,0,0,0,0,0,5,0,0,433,1,0,0,0,12,0,0,0,0,3,212,827,0,0,318,0,0,0,0,1,1925,1,0,3720,5,0,1,2,0,0,0,0,5,0,0,0,8,0,0,0,0,0,24,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,5,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,86,1,1,1,0,55,0,0,0,0,9,85,2570,0,16,13,0,0,0,0,0,275,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,30,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1365,163,5 +6,0,0,20,0,46,60,0,190,38,39,0,1,3,61,0,85,0,7,6,0,0,0,1,3,5,24,0,16,0,1,0,0,0,23,0,46,139,32,0,417,0,0,0,1,0,0,8,0,0,0,0,8,308,0,15,0,0,0,1,0,0,1,0,0,54,0,0,2745,46,497,0,17,0,0,0,0,0,29,0,0,0,0,0,1,10,251,0,0,23,0,0,5,112,0,984,145,14,0,0,2,0,854,0,38,0,5,1948,0,0,0,0,16,4,5,0,0,0,0,1,0,0,0,27,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,480,0,129,0,0,0,16,84,90,1142,305,0,0,0,0,1,0,5,0,0,0,0,0,0,1223,0,0,0,0,0,0,0,0,0,0,0,0,8,0,4,0,0,0,0,0,0,13,65,323,24,0,0,412,0,979,0,0,0,292,40,0,3,0,0,0,0,4,0,0,446,1,0,0,0,10,0,0,0,0,8,166,314,0,0,371,0,0,0,0,2,522,0,0,227,0,0,1,6,0,0,0,0,12,0,1,0,12,0,0,0,0,0,38,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,76,0,0,0,0,1,69,372,0,46,0,0,0,0,0,0,364,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,44,6,0,0,0,0,0,0,0,0,0,0,0,0,0,534,136,5 +0,0,0,3,0,23,2,0,32,0,2,0,0,0,2,0,75,0,6,1,0,0,0,1,0,1,35,0,3,0,13,0,0,0,1,0,23,6,0,0,8,0,0,0,1,0,0,3,0,0,0,0,12,76,0,0,0,0,0,1,0,0,0,0,0,1,0,0,786,23,161,0,16,0,0,0,0,0,16,0,0,0,0,0,1,6,108,0,0,1,0,0,0,0,0,62,0,5,0,0,2,0,226,0,0,0,0,505,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,124,0,62,0,0,0,24,51,43,69,129,0,0,0,0,1,0,0,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,9,120,3,0,0,138,0,339,0,0,0,44,14,0,0,0,0,0,0,0,0,0,119,1,0,0,0,2,0,0,0,0,13,105,28,0,0,0,0,0,0,0,0,179,0,0,147,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,15,0,0,0,0,1,24,58,0,52,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,127,162,5 +3,0,0,8,1,49,39,1,86,2,11,0,0,9,7,0,1149,0,9,4,0,0,0,7,0,10,3,0,7,0,1,1,0,1,11,12327,50,54,0,0,72,0,0,0,1,0,0,3,0,0,0,0,2,382,0,0,0,0,0,1,0,0,0,5,0,5,0,0,33374,49,1289,0,6,0,0,0,0,0,34,0,0,0,0,0,10,40,4662,0,1,11,1,0,1,0,0,351,30,5,1,0,4,1,1205,0,2,32,0,3219,0,0,0,0,10,3,5,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,2155,0,81,0,0,0,4,9,476,967,2138,0,0,0,0,1,0,8,0,0,0,0,0,0,3439,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,2,0,225,29,488,9,0,0,573,0,817,0,1,0,289,15,0,0,0,0,0,0,0,0,0,1310,1,0,0,0,11,0,0,0,0,2,192,123,0,0,39,0,0,0,0,0,4815,1,0,3730,13,0,1,1,0,0,0,0,5,0,0,0,2,0,0,0,0,0,2,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,13,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,66,1,1,1,0,13,0,0,0,0,9,61,355,0,10,12,0,0,0,0,0,132,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,3,2252,91,5 +0,0,0,19,1,61,100,1,241,77,60,0,1,2,106,0,171,0,9,6,0,0,0,4,8,11,43,0,28,0,3,0,0,1,36,0,62,191,49,0,492,0,0,0,1,0,0,3,0,0,0,0,15,328,0,0,0,0,0,1,0,0,3,3,0,88,0,0,4085,61,732,0,31,0,0,0,0,0,12,0,0,0,0,0,4,9,320,0,1,36,1,0,6,135,0,1259,230,5,0,0,4,1,1152,0,71,0,3,3676,0,0,0,0,16,0,3,0,0,0,0,1,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,54,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,522,0,136,0,0,0,30,154,128,1290,398,0,0,0,0,1,0,0,0,0,0,0,0,0,1362,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,126,121,622,32,0,0,650,0,1543,0,1,0,417,179,0,0,0,0,0,0,0,0,0,690,1,0,0,0,18,0,0,0,0,14,228,351,0,0,522,0,0,0,0,4,924,0,0,365,0,0,1,1,0,0,0,0,4,0,0,0,9,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,77,1,1,1,0,129,0,0,0,0,9,98,380,0,85,0,0,0,0,0,0,467,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,83,1,0,0,0,0,0,0,0,0,0,0,1,0,1,867,245,5 +1,0,0,19,1,80,52,1,141,20,30,8,1,3,37,0,138,0,9,6,0,0,0,1,1,4,18,0,12,0,1,0,0,1,16,0,81,314,20,0,309,0,0,0,1,0,0,9,0,0,0,0,6,380,0,0,0,0,0,1,0,0,0,0,0,23,0,0,11200,80,447,0,13,0,0,0,0,0,40,0,0,0,0,0,1,11,973,0,1,16,1,0,4,58,0,578,95,16,0,0,4,1,553,0,16,0,6,2266,0,1,0,0,8,0,8,0,0,0,0,1,0,0,0,16,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,977,0,215,0,0,0,12,53,186,762,995,0,0,0,0,1,0,0,0,0,0,0,0,0,3851,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,134,64,667,25,0,0,677,0,2909,0,1,0,311,93,0,1,0,0,0,0,4,0,0,419,1,0,0,0,8,0,0,0,0,6,208,252,0,0,273,0,0,0,0,0,1372,0,0,2990,0,0,1,0,1,0,0,0,17,0,0,0,9,0,0,0,0,0,23,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,153,1,1,1,0,34,0,0,0,0,9,97,460,0,35,0,0,0,0,0,0,262,13,0,0,0,0,0,0,0,0,0,0,0,1,0,1,24,0,0,0,0,0,0,0,0,0,0,0,1,0,6,1542,217,5 +0,0,0,10,0,22,49,0,115,15,45,0,0,0,19,0,18,0,7,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,7,0,22,9,0,0,187,0,0,0,1,0,0,5,0,0,0,0,0,179,0,0,0,0,0,1,0,0,2,0,0,27,0,0,1362,22,270,0,0,0,0,0,0,0,21,0,0,0,0,0,2,8,149,0,0,7,0,0,4,99,0,811,180,9,0,0,4,0,459,0,17,0,0,1199,0,0,0,0,7,0,3,0,0,0,0,1,0,0,0,4504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,444,0,117,0,0,0,0,3,49,861,175,0,0,0,0,1,0,0,0,0,0,0,0,0,6862,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,14,27,227,13,0,0,256,0,670,0,0,0,176,34,0,0,0,0,0,0,0,0,0,253,1,0,0,0,3,0,0,0,0,1,105,254,0,0,379,0,0,0,0,3,65,0,0,126,0,0,1,0,0,0,0,0,10,0,0,0,4,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,0,0,0,0,0,1,29,331,0,1,0,0,0,0,0,0,231,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,2,272,166,5 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,0,0,0,48,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,61,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,16,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,34,0,0,0,51,0,111,0,0,0,19,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,92,18,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,31,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,17,5 +17,0,0,13,1,88,31,1,181,16,59,0,0,7,25,0,1440,0,7,6,0,2,0,8,1,11,3,0,7,0,2,0,0,0,44,979,89,47,6,0,879,0,0,0,1,0,0,5,0,0,0,0,3,940,0,0,0,0,0,1,0,0,1,2,0,31,0,0,58287,88,1815,0,5,0,0,0,0,0,29,3,0,0,0,0,10,25,9433,0,1,44,0,0,8,109,0,1150,220,6,0,0,14,1,2343,0,15,0,0,5041,0,0,6,0,9,11,9,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,67,12,12,12,0,0,0,8116,0,209,0,0,0,4,15,332,1355,8091,0,0,0,0,1,0,7,0,0,0,0,0,0,1088,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,2,0,111,29,643,14,0,0,697,0,1483,0,0,0,467,219,0,0,0,0,0,0,0,0,0,1750,1,0,0,0,17,0,0,0,0,8,192,423,0,0,429,0,2,0,0,1,3635,1,0,588,5,0,1,1,0,0,0,0,10,0,2,0,6,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,5,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,93,1,1,1,0,5,0,0,0,0,25,133,552,0,9,14,0,0,0,0,0,1252,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,34,0,0,0,0,0,0,0,0,0,0,0,2,0,6,1201,203,5 +0,0,3,2,1,10,2,0,138,0,3,0,0,0,2,1,10170,0,6,2,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,1,0,0,120,10,10315,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,1,10148,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0,0,0,81,1,57,0,0,0,0,3,31,70,19,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,9028,38,3,0,0,41,0,85,0,0,0,3,250,0,0,0,0,0,0,0,0,0,10322,0,0,0,0,3,0,0,0,0,0,90,1,0,3,0,0,0,0,0,0,16230,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,11,10,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,96,4,5 +21,0,0,33,0,122,121,0,293,63,81,0,1,7,95,0,121,0,7,8,0,0,0,15,9,11,36,0,54,0,1,0,0,0,83,0,122,121,87,0,675,0,0,0,1,0,0,1,0,0,0,0,24,343,1,0,0,0,0,1,0,0,2,2,0,108,0,0,3314,122,844,0,55,0,0,0,0,0,6,0,0,0,3,0,7,9,282,0,0,83,0,0,6,238,0,2245,335,1,0,0,2,0,1574,0,78,0,4,3741,0,1,18,0,35,0,2,0,0,0,0,1,0,0,0,46,10,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,70,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,507,0,188,0,0,0,48,150,220,2061,379,0,0,0,0,1,0,9,0,0,1,0,0,0,1586,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,65,92,611,33,0,0,620,0,1252,0,0,0,474,175,0,0,0,0,0,0,0,0,0,726,1,0,0,0,32,0,0,0,0,22,246,509,0,0,806,0,1,0,6,7,1020,0,0,67,0,0,1,0,0,0,0,0,2,0,5,0,11,0,0,0,0,0,64,0,0,2,0,5,0,4,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,1,12,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,136,1,1,1,0,124,0,0,0,0,1,205,209,0,102,0,0,0,0,0,0,736,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,73,0,0,0,0,0,0,0,0,0,0,0,0,0,2,632,268,5 +2,0,0,15,2,68,70,2,204,29,36,0,1,4,91,0,188,0,11,9,0,0,0,6,5,6,24,0,22,0,1,0,0,2,31,0,70,492,41,0,281,0,0,0,1,0,0,6,0,0,0,0,11,437,0,1,0,0,0,1,0,0,0,0,0,39,0,0,4619,68,587,0,23,0,0,0,0,0,20,0,0,0,0,0,8,14,206,0,2,31,2,0,5,63,0,753,110,10,0,0,6,2,709,0,25,0,6,8849,0,0,0,0,15,0,3,0,0,0,1,1,0,0,0,17,6,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,126,0,1,0,0,0,0,0,1,0,2,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,264,0,227,0,0,0,22,100,218,1504,288,0,0,0,0,1,0,3,0,0,0,0,0,0,1026,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,2,223,80,949,24,0,0,776,0,2218,0,2,0,393,225,0,0,0,0,0,0,0,0,0,605,1,0,0,0,20,0,0,0,0,9,216,316,0,0,396,0,0,0,0,5,1020,0,0,100,0,0,1,0,0,0,0,0,13,0,0,0,2,0,0,0,0,0,26,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,149,1,1,1,0,65,0,0,0,0,29,101,399,0,53,0,0,0,0,0,0,350,6,0,1,0,0,0,0,0,0,0,0,0,2,0,1,35,0,0,0,0,0,0,0,0,0,0,0,2,0,3,849,334,5 +4,0,0,5,0,17,27,0,101,2,30,0,0,0,7,0,21,0,7,2,0,0,0,1,2,0,0,0,5,0,1,0,0,0,6,0,17,6,8,0,142,0,0,0,1,0,0,16,0,0,0,0,3,298,1,0,0,0,0,1,0,0,0,0,0,17,0,0,2989,17,307,0,6,0,0,0,0,0,69,0,0,0,0,0,1,19,474,0,0,6,0,0,3,82,0,705,115,25,0,0,2,0,388,0,4,0,0,662,0,4,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,433,0,193,0,0,0,6,16,42,589,444,0,0,0,0,1,0,0,0,0,0,0,0,0,1265,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,8,7,155,5,0,0,343,0,538,0,0,0,270,21,0,0,0,0,0,0,0,0,0,193,1,0,0,0,5,0,0,0,0,1,104,334,0,0,304,0,0,0,0,0,235,0,0,487,0,0,1,0,0,0,0,0,42,0,0,0,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,8,0,0,0,0,1,23,709,0,6,0,0,1,0,0,0,263,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,16,615,82,5 +4,0,0,7,1,47,36,1,89,3,12,0,0,9,8,0,1142,0,9,2,0,0,0,7,0,10,0,0,6,0,1,0,0,1,5,14072,48,54,0,0,96,0,0,0,1,0,0,5,0,0,0,0,1,535,0,0,0,0,0,1,0,0,0,8,0,4,0,0,90954,47,1301,0,4,0,0,0,0,0,37,0,0,0,0,0,8,35,15323,0,1,5,1,0,2,7,0,452,45,10,1,0,4,1,1234,0,1,24,0,4216,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,12,12,12,0,0,0,12241,0,89,0,0,0,2,5,451,996,12232,0,0,0,0,1,0,10,0,0,0,0,0,0,876,0,0,0,0,0,0,0,0,0,0,0,0,5,5,4,0,0,0,0,1,0,228,29,450,8,0,0,517,0,667,0,1,0,219,18,0,0,0,0,0,0,0,0,0,1305,1,0,0,0,9,0,0,0,0,2,177,88,0,0,46,0,0,0,0,0,4318,1,0,705,7,0,1,1,0,0,0,0,15,0,0,0,3,0,0,0,0,0,2,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,64,1,1,1,0,9,0,0,0,0,9,53,218,0,5,12,0,0,0,0,0,148,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,4,1711,108,5 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,20,0,1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,18,0,0,0,0,3,21,3,19,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,38,0,49,0,0,0,5,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,3,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,4,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,5,5 +0,0,0,3,0,10,3,0,17,0,6,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,21,0,0,0,1,0,0,4,0,0,0,0,0,89,0,0,0,0,0,1,0,0,0,0,0,3,0,0,634,10,64,0,1,0,0,0,0,0,16,0,0,0,0,1,1,7,130,0,0,2,0,0,1,8,0,84,15,6,0,0,2,0,45,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,114,0,48,0,0,0,0,3,24,87,128,0,0,0,0,1,0,0,0,0,0,0,0,0,325,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,3,66,3,0,0,106,0,131,0,0,0,52,2,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,92,47,0,0,36,0,0,0,0,0,67,0,0,153,0,0,1,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,193,0,1,0,0,0,0,0,0,45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,154,14,5 +0,0,0,12,0,29,124,0,218,25,68,0,1,3,42,0,55,0,7,5,0,0,0,1,1,4,15,0,10,0,1,0,0,0,15,0,29,114,18,0,369,0,0,0,1,0,0,1,0,0,0,0,5,171,0,1,0,0,0,1,0,0,3,0,0,50,0,0,2193,29,532,0,11,0,0,0,0,0,6,0,0,0,0,0,1,3,164,0,0,15,0,0,7,190,0,1544,285,2,0,0,2,0,1024,0,27,0,4,1047,0,0,0,0,13,0,2,0,0,0,0,1,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,465,0,68,0,0,0,10,51,65,1842,227,0,0,0,0,1,0,1,0,0,0,0,0,0,1183,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,37,217,13,0,0,290,0,543,0,0,0,219,31,0,0,0,0,0,0,0,0,0,518,1,0,0,0,7,0,0,0,0,6,135,359,0,0,685,0,0,0,0,6,416,0,0,279,0,0,1,0,0,0,0,0,2,0,1,0,12,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,38,0,0,0,0,1,44,72,0,30,0,0,0,0,0,0,447,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,31,0,0,0,0,0,0,0,0,0,0,0,0,0,2,337,89,5 +4,0,0,15,1,97,57,1,138,14,28,0,1,12,33,0,2673,0,9,7,0,0,0,8,1,15,15,0,21,0,1,0,0,1,49,29154,98,152,20,0,175,0,0,0,1,0,0,5,0,0,0,0,6,850,0,0,0,0,0,1,0,0,0,7,0,18,0,0,133855,97,2997,0,18,0,0,0,0,0,68,0,0,0,0,0,10,81,26177,0,1,49,1,0,2,9,0,547,45,11,0,0,4,1,2932,0,14,93,5,7602,0,0,0,0,4,4,7,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,19,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,12,12,12,0,0,0,21049,0,141,0,0,0,14,91,810,2817,20998,0,0,0,0,1,0,8,0,0,0,0,0,0,1546,4,0,0,0,0,0,0,0,0,0,0,0,50,5,0,0,0,0,0,1,0,225,47,764,17,0,0,858,0,1159,0,1,0,534,98,0,0,0,0,0,0,4,0,0,2951,1,0,0,0,16,0,0,0,0,7,270,192,0,0,149,0,6,0,0,0,9210,1,0,720,30,0,1,1,0,0,0,0,13,0,0,0,0,0,0,0,0,0,17,0,0,0,12,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,30,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,142,1,1,1,0,75,0,0,0,0,9,147,396,0,38,14,0,0,0,0,0,203,3,0,0,0,0,0,0,0,0,0,0,0,4,0,1,22,0,0,0,0,0,0,0,0,0,0,0,1,0,4,3024,155,5 +0,0,0,2,0,9,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,1,0,0,4,0,0,0,0,0,80,0,0,0,0,0,1,0,0,0,0,0,1,0,0,407,9,55,0,1,0,0,0,0,0,15,0,0,0,0,0,1,7,92,0,0,1,0,0,0,0,0,13,0,6,0,0,2,0,15,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,90,0,81,0,0,0,0,3,24,8,104,0,0,0,0,1,0,0,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,3,87,2,0,0,107,0,143,0,0,0,46,9,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,91,33,0,0,0,0,0,0,0,0,47,0,0,64,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,164,0,1,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,182,23,5 +1,0,0,15,1,43,29,1,40,3,5,0,0,2,9,0,63,0,9,4,0,0,0,4,0,8,0,0,1,0,1,0,0,1,7,0,44,54,0,0,63,0,0,0,1,0,0,0,0,0,0,0,1,110,0,0,0,0,0,1,0,0,0,2,0,9,0,0,489,43,107,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,67,0,1,7,1,0,1,0,0,106,5,0,0,0,4,1,43,0,4,0,0,540,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,10,10,10,0,0,0,45,0,47,0,0,0,0,3,211,19,54,0,0,0,0,1,0,3,0,0,0,0,0,0,204,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,135,25,277,17,0,0,300,0,1119,0,1,0,70,18,0,0,0,0,0,0,0,0,0,157,0,0,0,0,8,0,0,0,0,1,139,10,0,0,0,0,0,0,3,1,143,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,52,1,1,1,0,0,0,0,0,0,9,51,36,0,2,8,0,0,0,0,0,46,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,125,40,5 +0,0,0,5,0,14,3,0,10,0,3,1,0,0,5,0,16,0,6,1,0,0,0,3,2,0,0,0,4,0,1,0,0,0,4,0,14,6,6,0,17,0,0,0,1,0,0,5,0,0,0,0,2,130,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2973,14,91,0,5,0,0,0,0,0,27,0,0,0,0,0,3,9,515,0,0,4,0,0,0,0,0,41,0,10,0,0,2,0,22,0,1,0,0,333,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,398,0,121,0,0,0,4,1225,40,53,389,0,0,0,0,1,0,0,0,0,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,5,130,5,0,0,184,0,430,0,0,0,126,22,0,0,0,0,0,0,4,0,0,44,1,0,0,0,6,0,0,0,0,3,96,92,0,0,0,0,0,0,0,0,210,0,0,519,0,0,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,4,0,0,0,0,1,18,370,0,5,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,449,43,5 +0,0,0,3,0,25,4,0,7,0,2,0,0,2,2,0,11,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,6,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,61,0,0,0,0,0,1,0,0,0,0,0,2,0,0,431,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,66,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,19,0,0,0,0,416,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,26,0,0,0,0,3,177,8,42,0,0,0,0,1,0,3,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,32,10,80,3,0,0,88,0,128,0,0,0,18,4,0,0,0,0,0,0,0,0,0,34,0,0,0,0,8,0,0,0,0,0,105,16,0,0,0,0,0,0,0,1,59,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,33,0,2,8,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,27,5 +0,0,0,1,0,19,12,0,43,0,8,0,0,0,6,0,36,0,7,3,0,0,0,3,1,0,3,0,4,0,1,0,0,0,4,0,19,6,6,0,50,0,0,0,1,0,0,1,1,0,0,0,2,77,0,0,0,0,0,1,0,0,0,0,0,10,0,0,284,19,106,0,5,0,0,0,0,0,3,0,0,0,0,0,4,6,26,0,0,4,0,0,2,22,0,213,30,4,0,0,2,0,157,0,0,0,0,235,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,50,0,38,0,0,0,4,14,48,164,60,0,0,0,0,1,0,1,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,146,1,0,0,142,0,600,0,0,0,45,7,0,0,0,0,0,0,0,0,0,112,1,0,2,0,7,0,0,0,0,2,101,49,0,0,63,0,0,0,0,0,103,0,0,12,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,5,0,0,0,0,1,23,28,0,8,0,0,0,0,0,0,82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,43,5 +12,0,0,7,1,71,75,1,158,7,12,0,0,9,13,0,1887,0,9,2,0,0,0,9,0,10,0,0,6,0,1,0,0,1,21,42186,72,54,0,0,123,0,0,0,1,0,0,9,0,0,0,0,1,898,0,0,0,0,0,1,0,0,0,28,0,9,0,0,260994,71,2266,0,4,0,0,0,0,0,139,0,0,0,0,0,10,46,61438,0,1,21,1,0,1,0,0,518,30,18,0,0,4,1,2066,0,7,53,0,14833,0,0,0,0,13,12,8,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,46,0,1,0,0,0,0,0,0,0,0,0,1,0,13,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,12,12,12,0,0,0,47611,0,148,0,0,0,2,5,866,3604,47611,0,0,0,0,1,0,38,0,0,0,0,0,0,3220,0,0,0,0,0,0,0,0,0,0,0,0,9,14,0,0,0,0,0,1,0,244,34,698,8,0,0,926,0,980,0,1,0,603,15,0,0,0,0,0,0,0,0,0,2163,1,0,0,0,11,0,0,0,0,2,253,366,0,0,74,0,0,0,0,0,12329,1,0,2666,49,0,1,1,1,0,0,0,26,0,0,0,0,0,0,0,0,0,8,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,121,1,1,1,0,9,0,0,0,0,9,93,735,0,5,12,0,0,0,0,0,196,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,13,0,0,0,0,0,0,0,0,0,0,0,1,0,10,6728,237,5 +42,0,0,13,0,65,85,0,215,316,45,0,1,3,351,0,101,0,17,9,0,0,0,5,5,8,33,0,20,0,1,0,0,0,26,0,65,175,111,0,969,0,0,0,1,0,0,4,0,0,0,0,10,260,0,1,0,0,0,1,0,0,2,1,0,347,0,0,8851,65,849,0,21,0,0,0,0,0,13,0,0,0,0,1,8,14,2099,0,0,26,0,0,4,129,0,1128,195,6,0,0,2,0,1529,0,319,0,4,4203,0,1,1,0,54,0,4,0,0,0,0,1,0,0,0,62,6,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4,0,0,0,80,0,0,0,0,0,0,0,0,0,41,0,0,14,0,78,0,1,0,0,0,0,0,0,0,0,40,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,1216,0,142,0,0,0,20,253,171,1696,1229,0,0,0,0,1,0,0,0,0,0,0,0,0,1926,0,0,0,0,9,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,18,335,466,14,0,0,492,0,1567,0,0,0,309,83,0,0,0,0,0,0,0,0,0,818,1,0,0,0,19,0,0,0,0,9,181,328,0,0,467,0,1,0,0,2,773,0,0,39,0,0,1,0,0,0,0,0,7,0,1,0,11,0,0,0,0,0,315,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,113,1,1,1,0,448,0,0,0,0,1,91,367,0,62,0,0,0,0,0,0,666,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,320,0,0,0,0,0,0,0,0,0,0,0,0,0,2,775,296,5 +8,0,0,31,1,45,51,4,166,35,53,0,0,0,100,2,42,0,7,5,0,1,1,1,0,1,6,0,6,0,7,0,0,1,23,0,46,41,4,0,445,0,0,0,1,0,0,4,0,0,0,0,7,235,0,0,0,0,0,1,0,0,2,12,0,50,0,0,4365,45,491,0,13,0,0,0,0,0,18,3,0,0,0,0,2,8,346,0,4,23,1,0,6,117,0,976,185,6,0,0,2,1,794,0,32,0,0,3249,0,0,0,0,28,0,4,0,0,0,0,1,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,7,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,33,0,0,0,0,0,0,302,0,174,0,0,0,14,20,82,831,299,0,0,0,0,1,0,0,0,0,0,0,0,0,1342,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,69,427,35,0,0,609,0,1495,0,0,0,478,36,0,0,0,0,0,0,0,0,0,421,1,0,0,0,8,0,0,0,0,7,253,420,0,0,409,0,0,0,0,2,220,0,0,369,0,0,1,0,0,0,0,0,15,0,0,0,6,0,0,0,0,0,80,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,45,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,58,0,0,0,0,9,69,887,0,20,0,0,0,0,0,0,372,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,41,0,0,0,0,0,0,0,0,0,0,0,2,0,3,1112,143,5 +1,0,0,16,1,91,207,1,362,58,91,0,1,3,134,0,153,0,18,7,0,0,0,8,6,8,33,0,21,0,1,0,0,1,51,0,92,268,50,0,655,0,0,0,1,0,0,3,0,0,0,0,11,378,0,0,0,0,0,1,0,0,0,19,0,96,0,0,31645,91,974,0,22,0,0,0,0,0,12,0,0,0,0,0,9,13,2633,0,1,51,1,0,7,240,0,2263,392,4,0,0,4,1,1567,0,67,0,6,3793,0,1,0,0,28,0,4,0,0,0,0,1,0,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,111,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0,2666,0,157,0,0,0,22,132,206,2303,2716,0,0,0,0,1,0,0,0,0,0,0,0,0,9680,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,140,103,691,18,0,0,838,0,5180,0,1,0,544,245,0,0,0,0,0,0,0,0,0,969,1,0,0,0,21,0,0,0,0,11,245,535,0,0,1109,0,0,0,0,0,3156,0,0,9341,0,0,1,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,57,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,130,1,1,1,0,101,0,0,0,0,16,143,654,0,63,0,0,0,0,0,0,716,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,68,0,0,0,0,0,0,0,0,0,0,0,1,0,3,3218,277,5 +2,0,0,12,0,53,4,0,101,66,7,0,1,3,190,0,197,0,244,7,0,0,0,8,17,20,81,0,45,0,2,7,0,0,26,0,53,120,116,0,208,0,0,0,1,0,0,5,0,0,0,0,31,671,0,0,0,0,0,1,0,0,0,0,0,60,0,0,10198,53,930,0,54,0,0,0,0,0,16,0,0,0,0,0,8,15,263,0,0,26,0,0,0,0,0,281,0,5,0,0,2,0,1010,0,56,0,5,8412,0,0,1,0,47,0,2,0,0,0,0,1,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,71,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0,0,0,364,0,279,0,0,0,62,605,253,1872,416,0,0,0,0,1,0,0,0,0,0,0,0,0,1867,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,0,0,0,0,0,0,12,78,797,13,0,0,827,0,1528,0,0,0,673,200,0,0,0,0,0,0,0,0,0,747,1,0,0,0,32,0,0,0,0,27,193,561,0,0,0,0,0,0,0,0,1107,0,0,921,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,18,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,201,1,1,1,0,506,0,0,0,0,1,79,605,0,155,0,0,0,0,0,0,230,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,0,0,0,0,0,0,0,0,0,0,0,0,0,5,23550,218,5 +1,0,0,8,0,38,133,0,246,22,78,0,0,0,35,0,42,0,7,5,0,0,0,1,0,4,12,0,8,0,1,0,0,0,15,0,38,6,20,0,431,0,0,0,1,0,0,2,0,0,0,0,4,229,0,0,0,0,0,1,0,0,2,0,0,60,0,0,4781,38,548,0,9,0,0,0,0,0,9,0,0,0,0,1,1,5,461,0,0,15,0,0,10,227,0,1833,335,3,0,0,2,0,1121,0,30,0,0,1476,0,0,0,0,14,0,2,0,0,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,511,0,95,0,0,0,8,48,67,2309,460,0,0,0,0,1,0,1,0,0,0,0,0,0,1953,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,8,45,249,8,0,0,369,0,774,0,0,0,267,61,0,0,0,0,0,0,1,0,0,541,1,0,0,0,6,0,0,0,0,4,139,468,0,0,742,0,0,0,0,6,442,0,0,1052,0,0,1,0,0,0,0,0,4,0,1,0,10,0,0,1,0,0,22,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,54,0,1,0,0,1,53,163,0,25,0,0,1,0,0,0,527,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,32,0,0,0,0,0,0,0,0,0,0,0,0,0,1,511,131,5 +0,0,0,21,0,72,81,0,289,42,75,0,1,16,66,0,142,0,53,11,0,0,0,12,7,8,48,0,34,0,6,0,0,0,33,0,72,325,44,0,578,0,0,0,1,0,0,5,0,0,0,0,22,327,1,0,0,0,0,1,0,0,0,2,0,63,0,0,12191,72,856,0,40,0,0,0,0,0,22,0,0,0,0,0,12,19,1774,0,0,33,0,0,7,213,0,2204,370,8,1,0,2,0,1578,0,47,0,7,4084,0,0,0,0,70,0,11,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,9,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,68,0,0,0,0,0,0,1247,0,260,0,0,0,44,154,231,1420,1375,0,0,0,0,1,0,0,0,0,0,0,0,0,3652,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,225,57,1030,25,0,0,920,0,944,0,0,0,773,133,0,25,0,0,0,0,4,0,0,723,1,0,0,0,30,0,0,0,0,18,653,486,0,0,937,0,0,0,0,0,1425,0,0,2060,0,0,1,68,0,0,0,0,13,0,0,0,8,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,109,1,1,1,0,96,0,0,0,0,1,105,333,0,96,0,0,0,0,0,0,629,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,24,0,0,0,0,0,0,0,0,0,0,0,0,6,1827,242,5 +0,0,0,12,0,107,12,0,118,41,17,0,0,16,78,0,111,0,7,8,0,0,0,30,4,16,24,0,56,0,1,0,0,0,70,0,107,83,123,0,313,0,0,0,1,0,0,16,0,0,0,0,31,268,0,0,0,0,0,1,0,0,0,1,0,65,0,0,6349,107,569,0,55,0,0,0,0,0,61,0,0,0,0,1,11,48,784,0,0,70,0,0,1,46,0,999,85,29,7,0,2,0,696,0,49,0,2,3900,0,0,0,0,5,0,10,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,40,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,10,10,10,0,0,0,707,0,279,0,0,0,60,167,297,858,649,0,0,0,0,1,0,18,0,0,0,0,0,0,1611,0,0,0,0,0,0,0,0,0,0,0,0,16,1,0,0,0,0,0,1,0,271,71,548,13,0,0,489,0,691,0,0,0,354,116,0,0,0,0,0,0,0,0,0,359,1,0,0,0,42,0,0,0,0,28,202,203,0,0,66,0,2,0,0,0,1295,0,0,631,3,0,1,1,0,0,0,0,34,0,0,0,15,0,0,0,0,0,43,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,132,1,1,1,0,200,0,0,0,0,1,177,223,0,88,9,0,0,0,0,0,388,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,47,0,0,0,0,0,0,0,0,0,0,0,0,0,18,1267,161,5 +0,0,0,11,0,42,31,0,162,16,37,0,1,3,27,0,121,0,7,5,0,0,0,1,5,4,48,0,21,0,10,0,0,0,22,0,42,165,27,0,287,0,0,0,1,0,0,10,0,0,0,0,18,448,0,0,0,0,0,1,0,0,0,0,0,11,0,0,8533,42,526,0,32,0,0,0,0,0,39,0,0,0,0,3,1,16,496,0,0,22,0,0,1,100,0,978,150,17,0,0,2,0,848,0,8,0,6,4532,0,0,0,0,1,0,10,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,528,0,159,0,0,0,36,360,79,689,530,0,0,0,0,1,0,0,0,0,0,0,0,0,1599,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,13,25,407,12,0,0,432,0,4838,0,0,0,303,128,0,0,0,0,0,0,0,0,0,389,1,0,0,0,11,0,0,0,0,19,166,353,0,0,437,0,0,0,0,0,1013,0,0,1110,0,0,1,0,0,0,0,0,22,0,0,0,4,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,48,0,0,0,0,1,64,591,0,83,0,0,0,0,0,0,290,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,7,821,270,5 +0,0,0,0,0,46,19,0,47,1,7,1,1,0,2,0,45,0,7,10,0,0,0,10,0,11,9,0,8,0,1,0,0,0,9,0,46,66,15,0,177,0,0,0,1,0,0,6,0,0,0,0,4,273,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2695,46,164,0,7,0,0,0,0,0,24,0,0,0,0,1,16,31,323,0,0,9,0,0,0,22,0,287,15,10,1,0,2,0,210,0,0,0,0,1672,0,0,0,0,4,0,5,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,9,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,10,10,10,0,0,0,294,0,131,0,0,0,6,80,238,1174,305,0,0,0,0,1,0,3,0,0,0,0,0,0,694,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,22,13,283,7,0,0,349,0,848,0,0,0,204,109,0,3,0,0,0,0,6,0,0,129,1,0,0,0,20,0,0,0,0,1,134,241,0,0,211,0,0,0,0,1,335,0,0,232,3,0,1,2,1,0,0,0,10,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,46,0,0,0,0,1,55,468,0,20,9,0,0,0,0,0,138,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,289,129,5 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,35,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,3,5 +1,0,0,6,1,45,34,1,86,2,9,0,0,9,6,0,1632,0,9,2,0,0,0,9,0,10,0,0,6,0,1,0,0,1,5,5281,46,132,0,0,58,0,0,0,1,0,0,2,0,0,0,0,1,450,0,0,0,0,0,1,0,0,0,2,0,2,0,0,21309,45,1744,0,4,0,0,0,0,0,21,0,0,0,0,0,10,35,4300,0,1,5,1,0,1,0,0,300,30,4,0,0,4,1,1661,0,1,25,0,2445,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,12,12,12,0,0,0,1797,0,53,0,0,0,2,5,420,566,1784,0,0,0,0,1,0,4,0,0,0,0,0,0,2160,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,1,0,224,28,426,7,0,0,460,0,834,0,1,0,174,33,0,0,0,0,0,0,4,0,0,1785,1,0,0,0,11,0,0,0,0,2,165,46,0,0,27,0,0,0,0,0,4760,1,0,1627,8,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,1,55,1,1,1,0,9,0,0,0,0,9,51,217,0,5,12,0,0,0,0,0,109,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1622,52,5 +0,0,0,8,0,21,104,0,164,22,55,0,0,0,30,0,25,0,6,2,0,0,0,5,0,1,3,0,2,0,1,0,0,0,11,0,21,6,5,0,300,0,0,0,1,0,0,1,0,0,0,0,1,132,0,1,0,0,0,1,0,0,3,0,0,43,0,0,740,21,391,0,3,0,0,0,0,0,6,0,0,0,0,0,5,7,130,0,0,11,0,0,5,153,0,1218,230,2,0,0,2,0,730,0,26,0,0,664,0,0,0,0,9,0,0,0,0,0,0,1,1,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,222,0,86,0,0,0,2,14,51,1192,183,0,0,0,0,1,0,0,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,29,155,9,0,0,230,0,425,0,0,0,166,17,0,0,0,0,0,0,0,0,0,384,1,0,0,0,7,0,0,0,0,2,111,290,0,0,527,0,0,0,0,7,113,0,0,28,0,0,1,0,0,0,0,0,2,0,1,0,7,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,12,0,0,0,0,1,32,117,0,7,0,0,0,0,0,0,375,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,26,0,0,0,0,0,0,0,0,0,0,0,0,0,2,227,44,5 +0,0,0,3,0,12,2,0,8,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,8,0,0,0,1,0,0,2,0,0,0,0,0,120,0,0,0,0,0,1,0,0,0,0,0,3,0,0,834,12,41,0,1,0,0,0,0,0,11,0,0,0,0,0,1,4,100,0,0,2,0,0,0,0,0,9,0,4,0,0,2,0,9,0,1,0,0,168,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,52,0,0,0,0,3,29,7,107,0,0,0,0,1,0,0,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,83,3,0,0,146,0,362,0,0,0,87,4,0,0,0,0,0,0,0,0,0,36,1,0,0,0,2,0,0,0,0,0,94,71,0,0,0,0,0,0,0,0,53,0,0,122,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,259,0,1,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,145,61,5 +0,0,0,12,0,28,22,0,74,42,17,0,1,5,57,1,55,0,7,4,0,0,0,1,1,3,12,0,8,0,1,0,0,0,8,0,28,98,19,0,201,0,0,0,1,0,0,2,0,0,0,0,4,269,0,0,0,0,0,1,0,0,0,0,0,46,0,0,3406,28,289,0,9,0,0,0,0,0,27,0,0,0,0,0,1,6,1122,0,0,8,0,0,2,40,0,367,60,3,1,0,2,0,422,0,36,0,6,1211,0,0,0,0,8,0,2,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,505,0,65,0,0,0,8,48,73,322,514,0,0,0,0,1,0,0,0,0,0,0,0,0,760,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,52,212,14,0,0,308,0,747,0,0,0,206,63,0,0,0,0,0,0,0,0,0,239,1,0,0,0,6,0,0,0,0,5,164,168,0,0,151,0,0,0,0,0,396,0,0,335,0,0,1,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,44,0,0,0,0,1,36,309,0,24,0,0,1,0,0,0,170,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,44,0,0,0,0,0,0,0,0,0,0,0,0,0,3,423,127,5 +7,0,0,14,1,69,121,1,716,34,174,0,1,3,64,0,169,0,9,7,0,0,0,9,5,6,45,0,29,0,1,7,0,1,29,0,70,553,32,0,1378,0,0,0,1,0,0,2,0,0,0,0,18,343,0,0,0,0,0,1,0,0,0,2,0,146,0,0,2951,69,1301,0,37,0,0,0,0,0,15,0,0,0,0,0,9,13,227,0,1,29,1,0,6,644,0,5102,350,1,0,0,4,1,3561,0,36,2,4,2301,0,1,0,0,6,2,1,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,30,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,72,0,0,0,0,0,0,275,0,134,0,0,0,36,122,145,3951,284,0,0,0,0,1,0,0,0,0,0,0,0,0,1069,0,0,0,0,0,0,0,0,0,2,0,0,3,0,0,0,0,0,0,0,0,142,64,663,20,0,0,608,0,2953,0,1,0,338,122,0,0,0,0,0,0,0,0,0,1257,1,0,0,0,21,0,0,0,0,19,253,1578,0,0,963,0,0,0,0,0,1237,0,0,78,0,0,1,0,1,0,0,0,3,0,1,0,4,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,1,0,0,0,0,0,8,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,85,1,1,1,0,67,0,0,0,0,9,99,99,0,88,0,0,0,0,0,0,1601,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,0,0,0,0,0,0,0,0,0,0,0,1,0,2,704,264,5 +0,0,0,9,1,51,37,1,182,30,70,0,0,0,52,1,101,0,9,5,0,0,0,1,0,4,15,0,10,0,3,0,0,1,22,0,52,104,15,0,300,0,0,0,1,0,0,1,0,0,0,0,6,190,0,0,0,0,0,1,0,0,0,0,0,48,0,0,16017,51,429,0,13,0,0,0,0,0,6,0,0,0,0,0,1,3,1176,0,1,22,1,0,4,139,0,1219,310,1,0,0,4,1,764,0,38,0,0,2728,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,1191,0,84,0,0,0,12,52,92,892,1194,0,0,0,0,1,0,0,0,0,0,0,0,0,4242,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,117,63,463,11,0,0,408,0,1479,0,1,0,175,86,0,0,0,0,0,0,0,0,0,452,1,0,0,0,6,0,0,0,0,5,154,284,0,0,706,0,0,0,0,0,1450,0,0,4472,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,56,1,1,1,0,42,0,0,0,0,9,74,139,0,32,0,0,0,0,0,0,358,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,36,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1367,185,5 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,17,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,33,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,3,5 +0,0,0,10,0,15,2,0,21,6,6,0,0,0,10,0,16,0,6,1,0,0,0,1,1,0,0,0,2,0,1,0,0,0,7,0,15,6,3,0,34,0,0,0,1,0,0,3,0,0,0,0,1,76,0,0,0,0,0,1,0,0,0,0,0,8,0,0,601,15,73,0,3,0,0,0,0,0,12,0,0,0,0,0,1,6,73,0,0,7,0,0,0,0,0,22,0,3,0,0,2,0,41,0,6,0,0,426,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,87,0,76,0,0,0,2,8,30,28,92,0,0,0,0,1,0,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,20,146,13,0,0,157,0,325,0,0,0,97,9,0,0,0,0,0,0,0,0,0,61,1,0,0,0,3,0,0,0,0,2,103,59,0,0,0,0,0,0,0,0,59,0,0,39,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,22,159,0,3,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,170,84,5 +0,0,0,4,0,38,5,0,22,3,2,0,0,2,9,0,40,0,7,4,0,0,0,7,0,8,6,0,3,0,3,0,0,0,4,0,38,6,0,0,47,0,0,0,1,0,0,1,0,0,0,0,3,114,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1217,38,88,0,4,0,0,0,0,0,6,0,0,0,0,0,10,16,83,0,0,4,0,0,0,0,0,83,5,1,0,0,2,0,99,0,0,0,0,1048,0,0,0,0,6,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,10,10,10,0,0,0,71,0,57,0,0,0,2,11,200,750,77,0,0,0,0,1,0,3,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,13,205,9,0,0,200,0,419,0,0,0,62,9,0,0,0,0,0,0,0,0,0,87,1,0,0,0,11,0,0,0,0,2,120,38,0,0,0,0,0,0,0,0,105,0,0,20,2,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,2,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,13,0,0,0,0,1,42,158,0,12,8,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,146,76,5 +0,0,0,22,0,24,4,0,75,17,7,0,1,3,32,0,106,0,7,4,0,0,0,1,1,2,64,0,8,0,1,0,0,0,7,0,24,217,13,0,159,0,0,0,1,0,0,13,0,0,0,0,4,276,0,0,0,0,0,1,0,0,0,0,0,11,0,0,15541,24,409,0,9,0,0,0,0,0,67,0,0,0,0,0,1,15,1545,0,0,7,0,0,0,0,0,70,0,26,0,0,2,0,405,0,10,0,7,1308,0,0,0,0,1,0,28,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,38,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,118,0,0,0,0,0,0,1406,0,196,0,0,0,8,77,63,211,1400,0,0,0,0,1,0,1,0,0,0,0,0,0,4293,0,0,0,0,0,0,0,0,0,0,0,0,13,0,35,0,0,0,0,0,0,13,27,225,25,0,0,390,0,979,0,0,0,302,55,0,0,0,0,0,0,26,0,0,235,1,0,0,0,6,0,0,0,0,5,118,226,0,0,0,0,0,0,0,0,1395,0,0,3923,0,0,1,0,1,0,0,0,39,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,22,0,0,0,0,1,31,741,0,75,0,0,1,0,0,0,109,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,0,0,0,0,0,2,0,0,0,0,0,0,0,14,1792,149,5 +0,0,0,19,0,48,66,0,63,12,6,0,1,7,22,0,955,0,7,6,0,0,0,7,0,13,9,0,10,0,1,0,0,0,9,7194,48,78,11,0,142,0,0,0,1,0,0,3,0,0,0,0,4,736,0,0,0,0,0,1,0,0,0,0,0,9,0,0,225904,48,1314,0,7,0,0,0,0,0,134,0,0,0,0,0,9,23,38591,0,0,9,0,0,0,0,0,158,15,5,1,0,2,0,1203,0,4,0,3,4967,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,12,12,12,0,0,0,35749,0,66,0,0,0,6,28,407,835,35743,0,0,0,0,1,0,3,0,0,0,0,0,0,449,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,72,31,350,30,0,0,506,0,473,0,0,0,332,90,0,0,0,0,0,0,0,0,0,1127,1,0,0,0,13,0,0,0,0,4,180,84,0,0,0,0,0,0,0,0,3670,1,0,63,66,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,16,0,0,0,0,1,57,141,0,19,14,0,0,0,0,0,78,3,0,0,0,0,0,0,0,0,0,0,0,1,0,2,16,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1622,86,5 +1,0,0,13,0,32,14,0,44,10,11,3,0,0,29,3,35,0,7,2,0,0,0,2,1,2,6,0,4,0,1,0,0,0,7,0,32,108,6,0,150,0,0,0,1,0,0,6,0,0,0,0,2,305,0,0,0,0,0,1,0,0,0,2,0,11,0,0,14937,32,184,0,5,0,0,0,0,0,28,0,0,0,0,0,2,12,3898,0,0,7,0,0,1,27,0,251,30,9,0,0,2,0,259,0,5,0,0,1047,0,0,0,0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,2821,0,114,0,0,0,4,28,90,1240,2820,0,0,0,0,1,0,0,0,0,0,0,0,0,1612,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,14,32,502,32,0,0,748,0,826,0,0,0,602,46,0,0,0,0,0,0,0,0,0,146,1,0,0,0,5,0,0,0,0,3,383,405,0,0,58,0,0,0,0,0,959,0,0,2907,0,0,1,0,0,0,0,0,15,0,0,0,3,0,0,0,0,0,12,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,24,0,0,0,0,1,39,914,0,13,0,0,0,0,0,0,132,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,5,6877,115,5 +4,0,0,7,1,53,41,1,86,3,12,0,0,9,9,0,1070,0,9,3,0,0,0,7,0,10,0,0,5,0,1,0,0,1,4,9634,54,54,0,0,120,0,0,0,1,0,0,3,0,0,0,0,1,514,0,0,0,0,0,1,0,0,0,8,0,4,0,0,17960,53,1208,0,3,0,0,0,0,0,27,0,0,0,0,0,9,34,2962,0,1,4,1,0,1,9,0,452,35,5,0,0,4,1,1189,0,2,30,0,3030,0,0,0,0,11,4,4,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,44,12,12,12,0,0,0,745,0,92,0,0,0,1,4,489,967,743,0,0,0,0,1,0,8,0,0,0,0,0,0,555,3,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,1,0,219,32,458,8,0,0,511,0,600,0,1,0,201,9,0,0,0,0,0,0,0,0,0,1236,1,0,0,0,10,0,0,0,0,2,182,119,0,0,46,0,0,0,0,0,10424,1,0,124,9,0,1,1,0,0,0,0,6,0,0,0,1,0,0,0,0,0,3,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,9,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,73,1,1,1,0,5,0,0,0,0,9,58,220,0,4,12,0,0,0,0,0,143,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,3,1308,80,5 +1,0,0,13,0,67,151,0,276,32,79,0,1,5,59,1,71,0,7,11,0,0,0,5,1,15,18,0,18,0,1,0,0,0,32,0,67,184,28,0,543,0,0,0,1,0,0,2,0,0,0,0,9,256,0,2,0,0,0,1,0,0,4,1,0,62,0,0,2919,67,667,0,17,0,0,0,0,0,14,0,0,0,0,0,8,16,284,0,0,32,0,0,7,230,0,1944,335,4,0,0,2,0,1284,0,36,0,4,5234,0,0,0,0,20,1,4,0,0,0,0,1,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,62,0,1,0,0,0,0,0,0,0,0,0,1,10,1,0,0,0,0,10,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,10,10,10,0,0,0,495,0,121,0,0,0,16,66,252,2008,288,0,0,0,0,1,0,4,0,0,0,0,0,0,1482,1,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,1,0,42,55,379,14,0,0,483,0,1219,0,0,0,354,226,0,0,0,0,0,0,0,0,0,650,1,0,0,0,17,0,0,0,0,9,178,489,0,0,790,0,0,0,0,16,565,0,0,117,3,0,1,1,1,0,0,0,5,0,1,0,16,0,0,0,0,0,33,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,3,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,85,1,1,1,0,52,0,0,0,0,1,99,190,0,43,9,0,0,0,0,0,586,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,40,0,0,0,0,0,0,0,0,0,0,0,0,0,3,510,169,5 +0,0,0,2,0,10,2,0,15,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,9,0,0,0,1,0,0,2,0,0,0,0,0,65,0,0,0,0,0,1,0,0,0,0,0,1,0,0,386,10,43,0,1,0,0,0,0,0,8,0,0,0,0,1,1,4,44,0,0,2,0,0,0,0,0,9,0,2,0,0,2,0,14,0,0,0,0,140,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,57,0,0,0,0,3,24,7,66,0,0,0,0,1,0,0,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,87,2,0,0,134,0,223,0,0,0,76,4,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,0,92,61,0,0,0,0,0,0,0,0,31,0,0,26,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,169,0,1,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,116,33,5 +0,0,0,17,0,84,34,0,147,14,37,0,0,7,36,0,993,0,7,3,0,0,0,13,1,12,15,0,27,0,3,4,0,0,40,7822,84,31,9,0,269,0,0,0,1,0,0,3,0,0,0,0,9,488,0,0,0,0,0,1,0,0,0,17,0,38,0,0,16678,84,1314,0,30,0,0,0,0,0,29,0,0,0,0,1,14,46,3191,0,0,40,0,0,4,74,0,920,135,4,0,0,2,0,1526,0,21,35,0,4083,0,0,0,0,26,0,2,0,8,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,12,12,12,0,0,0,735,0,128,0,0,0,20,48,379,1191,710,0,0,0,0,1,0,3,0,0,0,0,0,0,758,0,0,0,0,0,0,0,0,0,4,0,0,3,1,0,0,0,0,0,1,0,106,48,441,21,0,0,485,0,703,0,0,0,312,49,0,0,0,0,0,0,0,0,0,1261,1,0,0,0,17,0,0,0,0,8,196,210,0,0,311,0,0,0,0,2,3710,1,0,206,14,0,1,1,1,0,0,0,5,0,0,0,1,0,0,0,0,0,16,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,11,0,0,0,0,0,14,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,1,1,1,0,71,0,0,0,2,1,124,276,0,47,14,0,0,0,0,0,272,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1780,322,5 +0,0,0,30,0,29,43,0,127,12,20,0,0,11,5,0,41,0,6,3,0,0,0,7,0,8,20,0,2,0,1,0,0,0,2,0,29,78,19,0,167,0,0,0,1,0,0,6,0,0,0,0,1,287,0,12,0,0,0,1,0,0,0,0,0,6,0,0,3059,29,309,0,1,0,0,0,0,0,34,0,0,0,0,0,7,19,513,0,0,2,0,0,1,74,0,759,90,12,0,0,2,0,506,0,27,9,0,1126,0,0,0,0,11,0,12,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,84,10,19,10,0,0,0,427,0,221,0,0,0,0,18,260,378,468,0,0,0,0,1,0,4,0,0,0,0,0,0,1035,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,32,238,27,0,0,330,0,997,0,0,0,225,18,0,0,0,0,0,0,2,0,0,253,1,0,0,0,10,0,0,0,0,0,114,224,0,0,203,0,0,0,0,0,296,0,0,383,3,0,1,1,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,0,0,30,31,253,0,22,9,0,0,0,0,0,281,1,0,0,0,0,0,0,0,0,0,0,0,1,0,23,22,0,0,0,0,0,0,0,0,0,0,0,0,0,6,549,109,5 +0,0,0,5,0,33,8,0,37,0,7,0,0,7,4,0,622,0,6,1,0,0,0,8,0,10,0,0,7,0,1,0,0,0,1,898,33,6,0,0,43,0,1,0,1,0,0,1,0,0,0,0,1,166,0,0,0,0,0,1,0,0,0,0,0,2,0,0,20326,33,694,0,5,0,0,0,0,0,16,0,0,0,0,0,8,28,4640,0,0,1,0,0,0,0,0,219,25,2,0,0,2,0,671,0,0,7,0,3062,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,774,0,30,0,0,0,2,5,264,1219,762,0,0,0,0,1,0,3,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,106,13,173,5,0,0,190,0,193,0,0,0,50,2,0,0,0,0,0,0,0,0,0,691,1,0,0,0,9,0,0,0,0,0,116,7,0,0,18,0,0,0,0,0,3575,1,0,791,8,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,8,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,10,0,0,0,0,1,34,34,0,6,12,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1934,26,5 +0,0,0,17,1,97,35,1,97,36,14,1,1,4,64,0,128,0,9,10,0,0,0,16,1,14,18,0,34,0,2,0,0,1,48,0,98,402,64,0,265,0,0,0,1,0,0,2,0,0,0,0,17,336,0,0,0,0,0,1,0,0,0,1,0,59,0,0,6435,97,362,0,34,0,0,0,0,0,15,0,0,0,0,0,11,19,1138,0,1,48,1,0,2,25,0,484,20,2,0,0,4,1,486,0,49,0,3,3237,0,0,0,0,6,0,5,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,10,10,10,0,0,0,740,0,128,0,0,0,32,89,287,513,690,0,0,0,0,1,0,5,0,0,0,0,0,0,733,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,171,90,628,19,0,0,598,0,3548,0,1,0,299,89,0,0,0,0,0,0,0,0,0,353,1,0,0,0,27,0,0,0,0,16,226,135,0,0,32,0,1,0,0,0,1175,0,0,265,3,0,1,1,1,0,0,0,6,0,0,0,2,0,0,0,0,0,40,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,111,1,1,1,0,92,0,0,0,0,9,146,243,0,59,9,0,1,0,0,0,257,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,40,0,0,0,0,0,0,0,0,0,0,0,1,0,3,749,167,5 +0,0,0,22,0,61,56,0,146,39,47,2,1,4,61,0,67,0,7,8,0,0,0,5,1,14,15,0,14,0,1,0,0,0,19,0,61,94,26,0,384,0,0,0,1,0,0,4,0,0,0,0,8,227,0,0,0,0,0,1,0,0,2,0,0,54,0,0,7856,61,410,0,14,0,0,0,0,0,16,0,0,0,0,0,7,20,943,0,0,19,0,0,4,98,0,904,180,4,0,0,2,0,698,0,37,0,3,2583,0,0,0,0,4,0,7,0,0,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,527,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,10,10,10,0,0,0,1112,0,122,0,0,0,13,58,259,1363,964,0,0,0,0,1,0,3,0,2,0,0,0,0,2263,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,38,73,450,28,0,0,463,0,1072,0,0,0,312,153,0,0,0,0,0,0,0,0,0,391,1,0,0,0,14,0,0,0,0,5,245,261,0,0,367,0,0,0,1,4,593,0,0,1702,3,0,1,1,0,0,0,0,4,0,0,0,10,0,0,0,0,0,42,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,83,1,1,1,0,52,0,0,0,0,1,80,180,0,35,9,0,0,0,0,0,308,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,45,0,0,0,0,0,0,0,0,0,0,0,0,0,2,650,188,5 +0,0,0,8,0,86,21,0,62,24,19,0,0,6,72,0,627,0,7,7,0,0,0,9,1,16,39,0,25,0,3,5,0,0,45,1054,86,60,20,0,206,0,0,0,1,0,0,7,0,0,0,0,14,347,1,0,0,0,0,1,0,0,0,0,0,24,0,0,38579,86,930,0,29,0,0,0,0,0,58,0,0,0,0,0,10,66,8196,0,0,45,0,0,1,8,0,412,35,12,0,0,2,0,1065,0,19,37,0,4224,0,0,0,0,21,0,3,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,6001,0,200,0,0,0,29,116,625,1093,5968,0,0,0,0,1,0,9,0,0,0,0,0,0,1386,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,2,0,87,49,697,35,0,0,632,0,1040,0,0,0,456,86,0,0,0,0,0,0,0,0,0,814,1,0,0,0,17,0,0,0,0,11,307,127,0,0,86,0,1,0,0,0,3071,1,0,1160,16,0,1,1,0,0,0,0,17,0,0,0,0,0,0,0,0,0,19,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,16,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,136,1,1,1,0,91,0,0,0,0,1,131,549,0,74,14,0,0,0,0,0,207,7,0,0,0,0,0,0,0,0,0,0,0,3,0,1,28,0,0,0,0,0,0,0,0,0,0,0,0,0,7,3402,176,5 +0,0,0,12,0,41,11,0,80,25,18,0,1,3,39,0,76,0,23,8,0,0,0,1,9,4,18,0,21,0,1,0,0,0,13,0,41,108,29,0,140,0,0,0,1,0,0,4,0,0,0,0,14,150,0,0,0,0,0,1,0,0,0,0,0,29,0,0,1384,41,299,0,22,0,0,0,0,0,10,0,0,0,0,0,3,8,73,0,0,13,0,0,4,29,0,395,45,2,0,0,2,0,395,0,15,0,5,10052,0,0,0,0,8,0,4,0,0,0,0,1,0,0,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,141,0,101,0,0,0,28,89,92,345,144,0,0,0,0,1,0,1,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,13,39,280,13,0,0,246,0,700,0,0,0,129,51,0,0,0,0,0,0,0,0,0,251,1,0,0,0,18,0,0,0,0,14,141,114,0,0,87,0,0,0,0,0,419,0,0,38,0,0,1,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,26,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,47,0,0,0,0,1,54,134,0,44,0,0,0,0,0,0,163,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,29,0,0,0,0,0,0,0,0,0,0,0,0,0,2,379,88,5 +0,0,0,4,0,17,2,0,17,0,3,0,0,0,3,0,17,0,7,1,0,0,0,1,1,0,0,0,2,0,1,0,0,0,5,0,17,65,1,0,9,0,0,0,1,0,0,4,0,0,0,0,1,176,0,0,0,0,0,1,0,0,0,0,0,4,0,0,798,17,62,0,3,0,0,0,0,0,14,0,0,0,0,0,1,8,89,0,0,5,0,0,0,0,0,19,0,5,0,0,2,0,23,0,1,0,0,262,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,111,0,85,0,0,0,2,6,43,117,118,0,0,0,0,1,0,0,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,8,4,131,4,0,0,272,0,799,0,0,0,180,13,0,0,0,0,0,0,0,0,0,49,1,0,0,0,3,0,0,0,0,1,119,154,0,0,0,0,0,0,0,0,104,0,0,50,0,0,1,0,0,0,0,0,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,3,0,0,0,0,1,22,434,0,3,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,186,37,5 +2,0,0,8,1,51,69,1,113,2,24,0,0,9,8,0,1003,0,9,3,0,0,0,8,0,12,0,0,10,0,1,0,0,1,8,10482,52,54,8,0,132,0,0,0,1,0,0,1,0,0,0,0,2,607,0,0,0,0,0,1,0,0,0,4,0,11,0,0,95663,51,1229,0,7,0,0,0,0,0,46,0,0,0,0,0,9,39,16167,0,1,8,1,0,3,37,0,624,85,2,0,0,4,1,1221,0,1,36,0,4527,0,0,0,0,10,2,3,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,12559,0,56,0,0,0,4,17,513,1447,12538,0,0,0,0,1,0,7,0,0,0,0,0,0,1759,1,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,219,28,505,9,0,0,563,0,570,0,1,0,259,53,0,0,0,0,0,0,0,0,0,1235,1,0,0,0,11,0,0,0,0,2,198,93,0,0,185,0,0,0,0,0,11888,1,0,1641,25,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,63,1,1,1,0,31,0,0,0,0,9,60,159,0,9,14,0,0,0,0,0,186,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1993,167,5 +0,0,0,12,0,43,53,0,164,33,48,0,1,3,50,0,66,0,7,7,0,0,0,1,1,4,15,0,12,0,1,0,0,0,24,0,43,84,24,0,287,0,0,0,1,0,0,1,0,0,0,0,6,202,0,0,0,0,0,1,0,0,2,0,0,39,0,0,1310,43,404,0,13,0,0,0,0,0,6,1,0,0,0,0,1,3,80,0,0,24,0,0,4,110,0,923,180,2,0,0,2,0,722,0,23,0,4,1520,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,19,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,124,0,83,0,0,0,12,55,83,674,147,0,0,0,0,1,0,0,0,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,50,302,13,0,0,282,0,764,0,0,0,188,63,0,0,0,0,0,0,0,0,0,392,1,0,0,0,9,0,0,0,0,5,140,229,0,0,400,0,0,0,0,2,371,0,0,52,0,0,1,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,34,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,43,0,0,0,0,1,67,182,0,32,0,0,0,0,0,0,321,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,37,0,0,0,0,0,0,0,0,0,0,0,0,0,1,554,93,5 +0,0,0,16,0,29,10,0,117,12,17,0,1,2,24,0,55,0,7,4,0,0,0,3,1,2,12,0,8,0,1,0,0,0,8,0,29,64,12,0,189,0,0,0,1,0,0,1,0,0,0,0,4,140,0,0,0,0,0,1,0,0,0,0,0,10,0,0,746,29,244,0,9,0,0,0,0,0,6,0,0,0,0,0,3,5,110,0,0,8,0,0,1,55,0,551,50,1,0,0,2,0,436,0,5,0,3,929,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,147,0,58,0,0,0,8,35,73,442,169,0,0,0,0,1,0,0,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,27,186,20,0,0,162,0,472,0,0,0,60,52,0,0,0,0,0,0,0,0,0,233,1,0,0,0,8,0,0,0,0,5,120,116,0,0,115,0,1,0,0,0,355,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,16,0,0,0,0,1,37,67,0,23,0,0,0,0,0,0,194,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,2,202,16,5 +0,0,0,4,6,16,2,30,21,0,9,0,0,0,9,0,14,0,6,13,0,6,0,4,6,4,0,0,0,0,1,0,0,6,4,0,22,6,0,0,20,0,1,0,1,0,0,7,0,0,0,0,0,86,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1357,16,477,0,5,0,0,0,0,0,18,18,0,0,0,6,4,19,569,0,30,4,6,0,0,0,0,31,0,8,0,0,2,6,43,0,1,0,0,159,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,138,0,62,0,0,0,0,6,57,9,157,0,0,0,0,1,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,8,4,104,10,0,0,153,0,190,0,0,0,75,16,0,0,0,0,0,0,0,0,0,61,1,0,0,0,29,0,0,0,0,0,98,44,0,0,0,0,0,0,0,0,241,0,0,790,0,0,1,0,1,0,0,0,7,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,0,0,0,0,0,1,26,265,0,5,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,382,56,5 +2,0,0,7,1,54,45,1,90,2,16,0,0,9,7,0,1131,0,9,4,0,0,0,8,0,12,6,0,15,0,1,0,0,1,6,14629,55,54,6,0,67,0,0,0,1,0,0,3,0,0,0,0,3,562,0,0,0,0,0,1,0,0,0,3,0,4,0,0,103146,54,1308,0,12,0,0,0,0,0,43,0,0,0,0,0,9,66,17000,0,1,6,1,0,1,0,0,363,30,6,0,0,4,1,1213,0,2,59,0,4062,0,0,0,0,2,2,4,0,0,0,0,1,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,14304,0,81,0,0,0,8,34,599,1229,14265,0,0,0,0,1,0,5,0,0,0,0,0,0,544,2,0,0,0,0,0,0,0,0,0,0,0,8,3,0,0,0,0,0,1,0,218,29,493,8,0,0,563,0,757,0,1,0,248,78,0,0,0,0,0,0,0,0,0,1307,1,0,0,0,12,0,0,0,0,4,180,90,0,0,74,0,0,0,0,0,4299,1,0,228,21,0,1,1,0,0,0,0,6,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,69,1,1,1,0,31,0,0,0,0,9,61,376,0,20,14,0,0,0,0,0,134,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1580,70,5 +0,0,0,0,0,12,4,0,3,0,1,0,0,0,2,0,10,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,0,0,0,143,12,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,2,0,0,0,0,0,5,0,0,0,0,2,0,12,0,0,0,0,130,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,25,0,0,0,0,3,29,7,32,0,0,0,0,1,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,58,0,0,0,76,0,298,0,0,0,40,8,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,94,33,0,0,0,0,0,0,0,2,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,14,66,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,78,5 +0,0,0,38,1,29,57,1,108,39,20,0,1,3,55,0,60,0,7,7,0,1,0,1,1,3,12,0,8,0,1,0,0,1,13,0,30,179,14,0,243,0,0,0,1,0,0,1,0,0,0,0,4,250,0,0,0,0,0,1,0,0,0,0,0,44,0,0,1825,29,373,0,9,0,0,0,0,0,6,3,0,0,0,0,1,3,71,0,1,13,1,0,3,58,0,502,60,2,0,0,2,1,527,0,32,0,4,1303,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,97,0,75,0,0,0,8,40,70,1080,122,0,0,0,0,1,0,0,0,0,0,0,0,0,797,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,72,300,33,0,0,351,0,836,0,0,0,248,86,0,0,0,0,0,0,0,0,0,311,1,0,0,0,10,0,0,0,0,5,129,265,0,0,151,0,0,0,0,0,1503,0,0,48,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,33,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,26,0,0,0,0,9,43,227,0,24,0,0,0,0,0,0,229,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,43,0,0,0,0,0,0,0,0,0,0,0,2,0,2,11146,153,5 +3,0,0,8,1,42,46,1,71,6,16,0,0,2,14,0,79,0,9,6,0,0,0,5,0,9,3,0,4,0,1,0,0,1,9,0,43,125,3,0,104,0,0,0,1,0,0,2,0,0,0,0,2,174,0,3,0,0,0,1,0,0,0,0,0,20,0,0,1212,42,195,0,3,0,0,0,0,0,10,0,0,0,0,0,9,17,203,0,1,9,1,0,3,34,0,399,55,3,0,0,4,1,239,0,10,0,0,1060,0,0,3,0,6,0,3,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,165,0,88,0,0,0,2,11,235,214,180,0,0,0,0,1,0,3,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,144,32,354,9,0,0,390,0,1086,0,1,0,156,21,0,0,0,0,0,0,0,0,0,237,1,0,0,0,11,0,0,0,0,2,149,117,0,0,121,0,0,0,0,0,329,0,0,32,3,0,1,2,1,0,0,0,4,0,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,67,1,1,1,0,6,0,0,0,0,9,52,86,0,8,9,0,0,0,0,0,146,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,3,317,165,5 +0,0,0,3,0,11,2,0,8,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,11,6,0,0,8,0,2,0,1,0,0,2,0,0,0,0,0,102,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1329,11,45,0,1,0,0,0,0,0,13,0,0,0,0,0,1,7,498,0,0,1,0,0,0,0,0,11,0,3,0,0,2,0,9,0,1,0,0,351,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,83,0,41,0,0,0,0,3,28,6,96,0,0,0,0,1,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,77,3,0,0,156,0,137,0,0,0,97,6,0,0,0,0,0,0,0,0,0,36,1,0,0,0,2,0,0,0,0,0,93,84,0,0,0,0,0,0,0,0,214,0,0,761,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,451,0,0,0,0,1,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,270,18,5 +3,0,0,8,2,80,17,2,180,40,27,0,0,0,66,0,4521,0,7,10,0,4,0,4,0,4,15,0,13,0,8,1,0,2,44,0,82,339,21,0,1124,0,0,0,1,0,0,3,2,0,0,0,12,1156,0,0,0,0,0,1,0,0,0,0,0,58,0,0,52310,80,4944,0,22,0,0,0,0,0,16,6,0,0,0,0,5,10,603,0,2,44,2,0,4,43,0,469,80,9,0,0,2,2,4818,0,48,0,0,4300,0,0,0,0,19,0,4,0,0,0,0,1,0,0,0,40,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,8,0,0,2,0,0,13,0,1,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,32,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,1,0,140,0,0,0,0,0,0,556,0,157,0,0,0,24,61,149,1847,1522,0,0,0,0,1,0,1,0,0,0,10,1,0,4559,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,8,63,580,22,0,0,852,0,2960,0,0,0,657,779,0,0,0,0,0,0,0,0,0,4818,0,0,7,0,18,0,0,0,0,8,287,342,0,0,182,0,5,0,158,0,9407,0,0,522,0,0,1,0,0,0,0,0,14,0,0,0,1,0,0,0,0,0,38,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,23,1,0,0,0,0,0,13,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,83,1,1,1,0,78,0,0,0,2,17,126,452,0,41,0,0,0,0,0,0,706,21,0,0,0,0,0,0,0,0,0,0,0,2,0,1,48,0,0,0,0,0,0,0,0,0,0,0,3,0,3,1111,243,5 +6,0,0,10,1,69,64,1,159,6,34,0,0,9,18,0,1252,0,9,7,0,0,0,9,0,14,15,0,20,0,1,0,0,1,17,15835,70,54,19,0,189,0,0,0,1,0,0,4,0,0,0,0,6,687,0,0,0,0,0,1,0,0,1,3,0,22,0,0,78248,69,1546,0,17,0,0,0,0,0,47,0,0,0,0,0,10,71,12797,0,1,17,1,0,3,51,0,785,110,6,0,0,4,1,1608,0,12,59,0,4250,0,2,2,0,6,2,2,0,1,0,0,1,0,0,0,19,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,9957,0,135,0,0,0,14,59,628,1639,9880,0,0,0,0,1,0,6,0,0,4,0,0,0,878,2,0,0,0,0,0,0,0,0,0,0,0,13,3,0,0,0,0,0,1,0,216,40,557,11,0,0,640,0,857,0,1,0,306,45,0,0,0,0,0,0,0,0,0,1545,1,0,0,0,16,0,0,0,0,5,213,171,0,0,252,0,0,0,0,2,5020,1,0,213,21,0,1,1,0,0,0,0,7,0,1,0,6,0,0,0,0,0,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,21,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,87,1,1,1,0,54,0,0,0,0,9,87,338,0,36,14,0,0,0,0,0,269,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,14,0,0,0,0,0,0,0,0,0,0,0,1,0,3,1741,86,5 +0,0,0,6,0,21,2,0,1965,0,4,0,0,0,3,0,41,0,6,1,0,0,0,2,0,2,0,0,1,0,2,0,0,0,7,65420,21,586,0,0,34,0,1,0,1,0,0,1,0,0,0,0,0,4439,0,0,0,0,0,1,0,0,0,0,0,4,0,1,10147,21,81,0,3,0,0,0,0,0,6,0,0,0,0,0,1,4,1002,0,0,7,0,0,0,0,0,18,0,1,0,0,2,0,23,0,1,0,0,793,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,7,11,0,0,0,0,546,0,30,0,0,14,0,3,47,11817,555,0,0,0,0,1,0,0,0,0,0,0,0,0,1664,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,20,30,5241,6,0,0,273,0,5362,9,0,0,120,1414,0,0,0,0,0,0,0,0,0,2021,1,0,0,0,3,0,0,0,0,16,145,21,0,0,0,0,0,0,0,0,1445,1,0,2769,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,365,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,7,0,0,0,3,13,28,70,0,5,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,745,33,5 +0,0,0,4,0,39,5,0,18,3,3,0,0,2,8,0,17,0,7,5,0,0,0,10,0,8,0,0,2,0,1,0,0,0,9,0,39,6,0,0,32,0,0,0,1,0,0,2,0,0,0,0,1,138,0,0,0,0,0,1,0,0,0,0,0,9,0,0,1287,39,86,0,1,0,0,0,0,0,19,0,0,0,0,1,14,23,176,0,0,9,0,0,0,0,0,89,5,3,0,0,2,0,37,0,6,0,0,692,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,167,0,68,0,0,0,0,3,191,128,193,0,0,0,0,1,0,2,0,0,0,0,0,0,396,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,16,167,4,0,0,290,0,322,0,0,0,177,7,1,0,0,0,0,0,0,0,0,60,1,0,0,0,15,0,0,0,0,0,123,125,0,0,0,0,0,0,0,0,247,0,0,64,3,0,1,3,1,0,0,0,3,0,1,0,2,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,0,0,0,0,0,1,48,352,0,2,9,0,0,0,0,0,56,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,5,1,0,0,0,0,0,0,0,0,0,0,0,0,3,180,35,5 +0,0,0,5,0,40,9,0,44,0,8,0,0,2,3,0,642,0,7,3,0,0,0,6,0,10,3,0,4,0,1,1,0,0,3,898,40,6,0,0,45,0,0,0,1,0,0,2,0,0,0,0,2,214,0,0,0,0,0,1,0,0,0,0,0,7,0,0,19878,40,724,0,3,0,0,0,0,0,19,0,0,0,0,0,8,18,2207,0,0,3,0,0,1,13,0,198,20,3,0,0,2,0,729,0,1,0,0,2939,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,1604,0,59,0,0,0,2,8,256,732,1588,0,0,0,0,1,0,3,0,0,0,0,0,0,2746,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,1,0,32,11,236,5,0,0,286,0,511,0,0,0,126,21,0,0,0,0,0,0,0,0,0,715,1,0,0,0,9,0,0,0,0,1,125,100,0,0,31,0,0,0,0,1,2066,1,0,3188,7,0,1,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,7,0,0,0,0,1,43,359,0,7,12,0,0,0,0,0,53,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,2,827,438,5 +2,0,0,18,0,81,72,0,297,45,106,0,1,2,70,5,95,0,7,7,0,0,0,7,6,6,30,0,19,0,1,1,0,0,50,0,81,153,36,0,529,0,0,0,1,0,0,1,0,0,0,0,10,291,0,0,0,0,0,1,0,0,1,0,0,71,0,0,3552,81,712,0,21,0,0,0,0,0,10,0,0,0,0,0,10,14,320,0,0,50,0,0,9,235,0,2019,435,3,0,0,2,0,1389,0,49,0,3,3059,0,0,0,0,7,0,3,0,0,0,0,1,0,0,0,23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,33,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,604,0,184,0,0,0,20,117,154,1601,452,0,0,0,0,1,0,6,0,0,0,0,0,0,1248,0,0,0,0,0,0,0,0,0,4,0,0,2,0,4,0,0,0,0,0,0,13,73,425,19,0,0,421,0,1110,0,0,0,298,246,0,12,0,0,0,0,0,0,0,655,1,0,0,0,20,0,0,0,0,9,188,441,0,0,1041,0,0,0,0,3,584,0,0,266,0,0,1,44,0,0,0,0,2,0,0,0,5,0,0,0,0,0,45,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,99,1,1,1,0,90,0,0,0,0,1,131,203,0,57,0,0,0,0,0,0,608,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,13,0,0,0,0,0,0,0,0,0,0,0,0,2,509,256,5 +0,0,0,11,0,29,16,0,75,16,15,0,1,3,28,0,56,0,7,5,0,0,0,1,1,3,12,0,10,0,1,0,0,0,14,0,29,89,18,0,106,0,0,0,1,0,0,2,0,0,0,0,5,159,0,0,0,0,0,1,0,0,0,0,0,17,0,0,2016,29,215,0,11,0,0,0,0,0,9,0,0,0,0,0,1,4,295,0,0,14,0,0,2,30,0,291,40,4,0,0,2,0,328,0,7,0,4,716,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,222,0,50,0,0,0,10,45,65,264,231,0,0,0,0,1,0,1,0,0,0,0,0,0,621,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,25,202,12,0,0,232,0,433,0,0,0,154,29,0,0,0,0,0,0,2,0,0,201,1,0,0,0,7,0,0,0,0,5,124,133,0,0,89,0,0,0,0,0,445,0,0,300,0,0,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,31,0,0,0,0,1,43,330,0,26,0,0,0,0,0,0,130,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,43,5 +0,0,0,16,0,31,6,0,25,11,3,0,0,6,12,0,22,0,6,3,0,0,0,6,0,8,0,0,2,0,1,0,0,0,5,0,31,6,0,0,67,0,0,0,1,0,0,2,0,0,0,0,1,152,0,3,0,0,0,1,0,0,0,0,0,13,0,0,848,31,73,0,1,0,0,0,0,0,10,0,0,0,0,0,8,16,111,0,0,5,0,0,0,0,0,127,5,3,0,0,2,0,77,0,21,0,0,483,0,0,0,0,6,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,10,13,10,0,0,0,202,0,45,0,0,0,0,3,155,55,108,0,0,0,0,1,0,2,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,147,28,149,20,0,20,173,0,534,0,0,3,62,11,0,0,0,0,0,0,0,0,0,80,1,0,0,0,9,0,0,0,0,2,115,32,0,0,0,0,0,0,0,0,84,0,0,55,3,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,0,0,0,0,0,1,36,102,0,2,9,0,0,0,0,0,67,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9212,58,5 +0,0,0,2,0,9,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,1,0,0,15,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,52,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,17,0,0,0,0,3,22,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,2,0,0,36,0,139,0,0,0,6,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,1,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,23,5 +10,0,0,17,0,120,64,0,372,63,81,0,1,3,82,29,150,0,7,7,0,0,0,10,42,11,36,0,80,0,1,0,0,0,89,0,120,193,129,0,914,0,0,0,1,0,0,6,0,0,0,0,54,228,0,0,0,0,0,1,0,0,0,1,0,143,0,0,4493,120,1017,0,81,0,0,0,0,0,23,0,0,0,0,0,4,12,334,0,0,89,0,0,2,296,0,2707,145,8,0,0,2,0,2014,0,64,0,6,3542,0,1,0,0,42,0,0,0,0,0,0,1,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,57,0,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,401,0,220,0,0,0,108,295,188,2385,356,0,0,0,0,1,0,27,0,0,0,0,0,0,1180,0,0,0,0,0,0,0,0,0,2,0,0,6,0,0,0,0,0,0,0,4,13,80,622,18,0,0,600,0,960,0,0,0,465,181,0,0,0,0,0,0,0,0,0,789,1,0,0,0,59,0,0,0,0,23,224,832,0,0,431,0,0,0,0,0,1127,0,0,141,0,0,1,0,1,0,0,0,11,0,0,0,1,0,0,0,0,0,64,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,141,1,1,1,0,290,0,0,0,0,1,209,419,0,128,0,0,0,0,0,0,935,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,67,0,0,0,0,0,0,0,0,0,0,0,0,0,6,879,387,5 +2,0,0,6,1,43,35,1,65,2,10,0,0,9,6,0,831,0,9,2,0,0,0,7,0,10,0,0,5,0,1,0,0,1,2,5447,44,54,0,0,58,0,0,0,1,0,0,1,0,0,0,0,1,450,0,0,0,0,0,1,0,0,0,4,0,2,0,0,11828,43,924,0,3,0,0,0,0,0,19,0,0,0,0,0,8,32,1798,0,1,2,1,0,1,0,0,289,30,2,0,0,4,1,848,0,1,32,0,1716,0,0,0,0,6,2,2,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,572,0,45,0,0,0,1,4,428,553,565,0,0,0,0,1,0,4,0,0,0,0,0,0,307,2,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,217,28,379,7,0,0,421,0,618,0,1,0,133,3,0,0,0,0,0,0,0,0,0,965,1,0,0,0,9,0,0,0,0,2,159,18,0,0,35,0,0,0,0,0,7022,1,0,77,9,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,51,1,1,1,0,5,0,0,0,0,9,46,105,0,4,12,0,0,0,0,0,104,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,790,44,5 +0,0,0,11,0,54,35,0,59,0,36,0,0,8,5,0,1176,0,16,3,0,0,0,11,0,12,3,0,17,0,1,0,0,0,6,7169,54,6,3,0,73,0,2,0,1,0,0,2,0,0,0,0,2,532,0,0,0,0,0,1,0,0,0,0,0,8,0,0,38073,54,1415,0,14,0,0,0,0,0,69,0,0,0,0,0,12,137,5798,0,0,6,0,0,1,7,0,512,45,2,0,0,2,0,1332,0,1,139,0,6224,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,2199,0,63,0,0,0,10,19,912,2096,2154,0,0,0,0,1,0,4,0,0,0,0,0,0,688,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,1,0,136,17,522,11,0,0,602,0,591,0,0,0,376,21,0,0,0,0,0,0,0,0,0,1335,1,0,0,0,14,0,0,0,0,3,355,83,0,0,228,0,0,0,0,0,4327,1,0,1364,35,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,35,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,65,1,1,1,0,41,0,0,0,0,1,60,273,0,19,14,0,0,0,0,0,131,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1601,142,5 +20,0,0,0,1,35,23,4,208,4,10,0,0,0,8,0,609,0,6,4,0,1,1,3,1,1,0,0,2,0,3,0,0,1,21,0,36,78,0,0,153,0,0,0,2,0,0,1,0,0,0,0,3,245,0,0,0,0,0,1,0,0,0,1379,0,8,0,0,4647,35,918,0,6,0,0,0,0,0,2,3,0,0,0,0,5,7,2807,0,4,21,1,0,0,44,0,349,10,0,0,0,2,1,844,0,4,2,0,1035,0,0,0,0,18,6,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,33,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,298,0,0,0,0,0,0,1451,0,59,0,0,0,5,8,73,335,1523,0,0,0,0,1,0,3,0,0,0,0,0,0,6048,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,2,0,8,26,217,2,0,0,189,0,517,0,0,0,113,36,0,0,0,0,0,0,0,0,0,864,1,0,0,0,10,0,0,0,0,3,117,811,0,0,2105,0,0,0,0,0,1166,0,0,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,7,0,0,0,0,9,57,37,0,6,0,0,0,0,0,0,142,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,814,57,5 +2,0,0,30,0,137,47,0,213,38,68,0,0,0,74,0,125,0,45,7,0,0,0,4,7,50,54,0,64,0,8,0,0,0,91,0,137,6,197,0,402,0,0,0,1,0,0,3,1,0,0,0,57,236,0,0,0,0,0,1,0,0,0,19,0,52,0,0,3068,137,745,0,111,0,0,0,0,0,6,0,0,0,0,1,6,13,553,0,0,91,0,0,1,170,0,1589,310,6,0,0,2,0,1279,0,47,0,0,4471,0,0,0,0,26,2,0,0,0,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,55,0,0,0,0,0,0,425,0,179,0,0,0,75,4174,252,987,402,0,0,0,0,1,0,0,0,0,0,0,0,0,1712,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,8,556,599,56,0,0,547,0,17277,0,0,0,358,99,0,0,0,0,0,0,0,0,0,572,1,0,3,0,18,0,0,0,0,53,219,309,0,0,899,0,2,0,0,0,2691,0,0,29,0,0,1,0,0,0,0,0,9,0,0,0,4,0,0,0,0,0,38,0,0,0,10,0,0,2,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,154,1,1,1,0,190,0,0,0,0,1,228,252,0,176,0,0,0,0,0,0,509,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4983,149,5 +4,0,0,10,1,78,89,1,155,37,55,0,0,10,52,0,852,0,9,4,0,0,0,9,2,12,21,0,31,0,3,1,0,1,19,13754,79,55,11,0,250,0,0,0,1,0,0,8,0,0,0,0,8,787,0,0,0,0,0,1,0,0,0,4,0,56,0,0,103805,78,1358,0,31,0,0,0,0,0,113,0,0,0,0,0,10,160,22491,0,1,19,1,0,4,51,0,984,115,15,1,0,4,1,1386,0,33,136,0,8064,0,0,0,0,30,3,14,0,2,0,1,1,2,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,29,0,1,0,0,0,0,0,0,0,0,0,1,3,2,0,0,0,0,1,0,0,0,0,4,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,16299,0,158,0,0,0,24,68,1000,2846,16240,0,0,0,0,1,0,15,1,0,0,0,0,0,2528,2,0,0,0,0,0,0,0,0,0,1,0,8,3,0,0,0,0,0,1,0,238,87,639,15,0,0,924,0,1223,0,1,0,579,130,0,0,0,0,0,0,0,0,0,1222,1,0,0,0,15,0,0,0,0,7,242,391,0,0,406,0,0,0,0,2,6741,1,0,1817,48,0,1,1,0,0,0,0,16,0,0,0,2,0,0,0,0,0,28,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,48,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,103,1,1,1,0,72,0,0,0,2,9,98,1012,0,54,14,0,0,0,0,0,330,2,0,0,0,0,0,0,0,0,0,0,0,3,0,2,47,0,0,0,0,0,0,0,0,0,0,0,1,0,3,3853,328,5 +0,0,0,10,0,58,2,0,9,38,4,0,0,0,42,146,13,0,7,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,44,0,58,6,0,0,386,0,0,0,1,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1,0,0,0,0,0,43,0,0,705,58,212,0,1,0,0,0,0,0,0,0,0,0,0,0,2,2,5,0,0,44,0,0,0,0,0,7,0,0,0,0,2,0,382,0,39,0,0,993,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,93,0,70,0,0,0,0,3,116,133,151,0,0,0,0,1,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,42,414,14,0,0,210,0,4047,0,0,0,145,16,0,0,0,0,0,0,0,0,0,223,0,0,0,0,3,0,0,0,0,1,140,8,0,0,0,0,0,0,0,1,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,0,0,0,0,0,1,102,60,0,1,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,252,5 +1,0,0,10,0,65,8,0,42,30,11,0,0,2,46,0,80,0,23,6,0,0,0,7,3,12,30,0,17,0,5,2,0,0,29,0,65,6,27,0,187,0,0,0,0,0,0,1,1,0,0,0,12,146,0,0,0,0,0,1,0,0,0,0,0,44,0,0,4220,65,257,0,22,0,0,0,0,0,9,0,0,0,0,0,10,18,748,0,0,29,0,0,1,17,0,302,40,10,1,0,2,0,385,0,38,0,0,2130,0,0,0,0,25,0,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,10,10,10,0,0,0,715,0,94,0,0,0,22,96,233,462,703,0,0,0,0,1,0,2,0,0,0,0,0,0,813,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,50,330,10,0,0,274,0,674,0,0,0,145,35,0,0,0,0,0,0,0,0,0,212,1,0,9,0,16,0,0,0,0,11,157,62,0,0,75,0,1,0,0,2,382,0,0,448,3,0,1,1,0,0,0,0,12,0,0,0,2,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,3,7,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,108,0,0,0,0,1,94,162,0,57,9,0,0,0,0,0,146,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,34,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1026,134,5 +9,0,0,10,1,80,145,1,277,7,68,0,0,11,10,0,1425,0,9,3,0,0,0,8,0,12,6,0,36,0,3,0,0,1,24,35246,81,54,3,0,291,0,0,0,1,0,0,14,0,0,0,0,4,1328,0,0,0,0,0,1,0,0,0,18,0,15,0,0,155143,80,2158,0,36,0,0,0,0,0,184,0,0,0,0,1,9,184,25918,0,1,24,1,0,4,115,0,1529,180,26,0,0,4,1,2147,0,3,166,0,9960,0,0,0,0,28,9,10,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,13,0,9,0,0,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,45,0,1,0,0,0,0,0,0,0,0,0,1,0,9,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,17509,0,275,0,0,0,25,36,1083,3843,17471,0,0,0,0,1,0,22,0,0,0,0,0,0,6453,10,0,0,0,0,0,0,0,0,0,0,0,14,10,11,0,0,0,0,1,0,269,39,709,11,0,0,989,0,1127,0,1,0,630,45,0,0,0,0,0,0,11,0,0,1945,1,0,0,0,11,0,0,0,0,2,246,470,0,0,622,0,0,0,0,0,15984,1,0,5223,56,0,1,1,1,0,0,0,51,0,0,0,11,0,0,0,0,0,3,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,56,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,1,0,1,130,1,1,1,0,104,0,0,0,0,9,105,1141,0,43,14,0,0,0,0,0,416,2,0,0,0,0,0,0,0,0,0,0,0,3,0,2,17,0,0,0,0,0,0,0,0,0,0,0,1,0,12,5548,225,5 +2,0,0,12,1,69,110,1,281,42,63,0,0,6,54,1,148,0,9,3,0,0,0,8,0,12,6,0,14,0,7,0,0,1,21,2876,70,104,5,0,844,0,0,0,1,0,0,8,0,0,0,0,8,566,0,0,0,0,0,1,0,0,0,3,0,80,0,0,12007,69,653,0,17,0,0,0,0,0,31,0,0,0,0,0,9,42,1554,0,1,21,1,0,4,199,0,1826,170,10,2,0,4,1,1244,0,46,25,0,7013,0,0,0,0,24,2,14,0,0,0,0,1,0,0,0,31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,35,0,1,0,0,0,0,0,0,0,0,0,1,4,2,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,12,12,12,0,0,0,449,0,165,0,0,0,15,30,473,2064,461,0,0,0,0,1,0,7,0,0,0,0,0,0,1224,2,0,0,0,0,0,0,0,0,0,0,0,8,3,0,0,0,0,0,1,0,189,82,575,32,0,0,995,0,3226,0,1,0,685,122,0,0,0,0,0,0,0,0,0,672,1,0,0,0,11,0,0,0,0,8,199,862,0,0,439,0,0,0,0,0,1827,1,0,113,10,0,1,1,0,0,0,0,13,0,0,0,11,0,0,0,0,0,40,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,10,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,90,1,1,1,0,38,0,0,0,0,9,91,1243,0,25,14,0,0,0,0,0,634,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,50,0,0,0,0,0,0,0,0,0,0,0,1,0,4,966,226,5 +4,0,0,14,1,94,53,1,151,2,40,0,0,9,17,0,1923,0,9,5,0,0,0,8,0,12,6,0,22,0,1,0,0,1,32,15635,95,54,6,0,258,0,0,0,1,0,0,10,0,0,0,0,3,746,0,0,0,0,0,1,0,0,0,3,0,9,0,0,78823,94,2243,0,19,0,0,0,0,0,68,0,0,0,0,0,10,116,12727,0,1,32,1,0,3,54,0,878,115,16,0,0,4,1,2269,0,3,68,0,7937,0,0,0,0,2,4,29,0,0,0,0,1,0,0,0,9,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,12,12,12,0,0,0,9832,0,216,0,0,0,13,41,888,1599,9792,0,0,0,0,1,0,5,0,0,0,0,0,0,1086,2,0,0,0,0,0,0,0,0,0,0,0,17,3,0,0,0,0,0,1,0,217,30,733,18,0,0,825,0,916,0,1,0,459,151,0,0,0,0,0,0,6,0,0,2202,1,0,0,0,13,0,0,0,0,4,227,296,0,0,327,0,8,0,0,1,6619,1,0,398,24,0,1,1,1,0,0,0,22,0,0,0,2,0,0,0,0,0,2,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,22,2,0,0,0,0,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,1,178,1,1,1,0,53,0,0,0,0,9,127,689,0,27,14,0,0,0,0,0,279,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,12,0,0,0,0,0,0,0,0,0,0,0,1,0,5,1928,235,5 +4,0,0,10,1,94,123,1,211,28,69,0,0,9,38,0,197,0,29,8,0,0,0,10,2,15,12,0,21,0,2,0,0,1,35,2755,95,80,21,0,361,0,0,0,1,0,0,3,0,0,0,0,10,595,0,0,0,0,0,1,0,0,2,3,0,49,0,0,17021,94,718,0,20,0,0,0,0,0,51,0,0,0,0,0,12,40,2624,0,1,35,1,0,8,153,0,1597,280,4,0,0,4,1,986,0,32,32,0,4221,0,0,0,0,30,3,10,0,0,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,1,0,0,0,7,0,0,0,0,0,0,2,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,5,2,0,0,0,0,6,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,12,12,12,0,0,0,934,0,124,0,0,0,19,62,546,2312,861,0,0,0,0,1,0,7,0,0,0,0,0,0,1566,2,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,1,0,216,63,607,11,0,0,751,0,1250,0,1,0,420,93,0,0,0,0,0,0,0,0,0,676,1,0,0,0,20,0,0,0,0,10,223,356,0,0,619,0,18,0,0,6,2111,1,0,60,12,0,1,4,1,0,0,0,2,0,1,0,6,0,0,0,0,0,28,1,0,0,7,1,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,12,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,121,1,1,1,0,51,0,0,0,0,9,130,256,0,36,14,0,0,0,0,0,477,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,42,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1203,173,5 +0,0,0,11,0,24,21,0,62,8,15,0,1,3,23,0,49,0,7,4,0,0,0,1,1,3,12,0,8,0,1,0,0,0,10,0,24,109,14,0,104,0,0,0,1,0,0,1,0,0,0,0,4,109,0,0,0,0,0,1,0,0,0,0,0,18,0,0,1816,24,191,0,9,0,0,0,0,0,6,0,0,0,0,0,1,3,141,0,0,10,0,0,2,36,0,332,50,2,0,0,2,0,321,0,8,0,4,628,0,0,0,0,4,0,2,0,0,0,0,1,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,170,0,41,0,0,0,8,39,56,279,177,0,0,0,0,1,0,0,0,0,0,0,0,0,587,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,18,164,12,0,0,160,0,466,0,0,0,90,26,0,0,0,0,0,0,0,0,0,181,1,0,0,0,6,0,0,0,0,5,122,83,0,0,121,0,0,0,0,0,397,0,0,367,0,0,1,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,26,0,0,0,0,1,34,64,0,24,0,0,0,0,0,0,130,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,2,281,65,5 +9,0,0,8,2,30,91,8,194,43,63,0,0,0,52,1,65,0,7,11,0,3,0,1,0,5,15,0,10,0,1,0,0,2,17,0,32,7,17,0,340,0,0,0,1,0,0,1,0,0,0,0,5,232,0,0,0,0,0,1,0,2,2,1,0,68,0,0,1293,30,582,0,11,0,0,0,0,0,5,6,0,0,0,0,1,3,112,0,8,17,2,0,7,152,0,1282,255,2,0,0,2,2,876,0,49,0,0,1000,0,0,0,0,16,0,0,0,0,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,209,0,93,0,0,0,10,46,63,1401,180,0,0,0,0,1,0,0,0,0,0,0,0,0,958,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,52,296,11,0,0,335,0,558,0,0,0,208,114,0,0,0,0,0,0,0,0,0,473,1,0,0,0,15,0,0,0,0,6,134,283,0,0,597,0,4,0,0,3,8671,0,0,12,0,0,1,0,0,0,0,0,1,0,1,0,8,0,0,0,0,0,43,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,36,0,0,0,0,17,49,127,0,31,0,0,0,0,0,0,425,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,53,0,0,0,0,0,0,0,0,0,0,0,5,0,1,270,63,5 +0,0,0,11,0,50,30,0,84,5,25,0,0,13,6,0,1394,0,7,5,0,0,0,9,0,11,9,0,24,0,1,0,0,0,3,32397,50,14,7,0,173,0,0,0,1,0,0,3,0,0,0,0,4,917,0,0,0,0,0,1,0,0,0,0,0,8,0,0,95123,50,1646,0,21,0,0,0,0,0,65,0,0,0,0,0,10,172,14781,0,0,3,0,0,0,0,0,705,57,5,1,0,2,0,1686,0,2,117,0,4552,0,0,0,0,3,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,12,12,12,0,0,0,10028,0,85,0,0,0,15,32,944,1956,9976,0,0,0,0,1,0,4,0,0,0,0,0,0,1232,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,560,64,445,11,0,0,472,0,349,0,0,0,273,61,0,0,0,0,0,0,0,0,0,1559,1,0,0,0,14,0,0,0,0,2,218,44,0,0,127,0,0,0,0,0,5821,1,0,1316,35,0,1,1,1,0,0,0,5,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,47,0,0,0,0,1,53,429,0,31,14,0,0,0,0,0,271,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2614,190,5 +2,0,0,11,0,97,70,0,251,55,67,0,0,2,83,0,137,0,125,12,0,0,0,10,4,20,57,0,32,0,5,8,0,0,51,0,97,87,62,0,529,0,0,0,1,0,0,5,0,0,0,0,27,361,0,6,0,0,0,1,0,0,0,0,0,97,0,0,8658,97,855,0,45,0,0,0,0,0,31,0,0,0,2,0,12,26,1196,0,0,51,0,0,7,187,0,1767,230,11,0,0,2,0,1453,0,70,0,0,4051,0,0,0,0,50,1,11,0,0,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,1,0,5,0,0,0,22,0,0,0,0,0,0,0,0,0,2,0,0,0,0,52,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,10,10,10,0,0,0,1150,0,189,0,0,0,52,205,319,3013,1136,0,0,0,0,1,0,3,0,0,0,0,0,0,2529,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,35,85,500,11,0,0,610,0,1264,0,0,0,439,116,0,0,0,0,0,0,0,0,0,735,1,0,0,0,26,0,0,0,0,25,196,550,0,0,571,0,49,0,0,0,975,0,0,1398,3,0,1,1,0,0,0,0,13,0,0,0,7,0,0,0,0,0,55,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,3,20,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,128,1,1,1,0,204,0,0,0,0,1,148,807,0,113,9,0,1,0,0,0,596,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,69,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2533,334,5 +4,0,0,11,0,39,56,0,150,9,47,0,0,2,16,0,36,0,7,5,0,0,0,5,2,9,6,0,10,0,1,0,0,0,9,0,39,7,11,0,260,0,0,0,1,0,0,9,0,0,0,0,5,266,0,0,0,0,0,1,0,0,1,12,0,30,0,0,5822,39,368,0,9,0,0,0,0,0,39,0,0,0,0,0,7,29,668,0,0,9,0,0,6,128,0,1153,205,15,0,0,2,0,638,0,11,0,1,933,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,2,1,5,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,574,0,150,0,0,0,8,28,177,742,582,0,0,0,0,1,0,2,0,0,0,0,0,0,2037,0,0,0,0,0,0,0,0,0,0,0,0,9,1,4,0,0,0,0,1,3,32,21,232,13,0,0,415,0,2778,0,0,0,298,32,0,1,0,0,0,0,9,0,0,314,1,0,0,0,12,0,0,0,0,5,135,402,0,0,479,0,0,0,3,1,390,0,0,991,3,0,1,3,0,0,0,0,22,0,1,0,16,0,0,0,0,0,9,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,14,0,0,0,0,1,48,569,0,17,9,0,0,0,0,0,329,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,19,2,0,0,0,0,0,0,0,0,0,0,0,0,6,706,245,5 +1,0,0,0,1,27,29,1,29,2,3,0,1,0,4,0,62,0,9,4,0,0,0,4,0,8,0,0,1,0,1,0,0,1,2,0,28,54,0,0,24,0,0,0,1,0,0,0,0,0,0,0,1,80,0,0,0,0,0,1,0,0,0,2,0,0,0,0,463,27,91,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,56,0,1,2,1,0,1,0,0,105,0,0,0,0,4,1,31,0,1,0,0,453,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,41,0,24,0,0,0,0,3,186,16,52,0,0,0,0,1,0,3,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,120,22,226,1,0,0,246,0,332,0,1,0,57,2,0,0,0,0,0,0,0,0,0,137,0,0,0,0,8,0,0,0,0,1,123,14,0,0,0,0,0,0,0,0,142,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,30,1,1,1,0,0,0,0,0,0,9,30,43,0,2,8,0,0,0,0,0,43,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,80,28,5 +0,0,0,5,0,18,38,0,101,11,25,0,0,0,14,0,19,0,7,1,0,0,0,6,1,0,0,0,3,0,2,0,0,0,5,0,18,6,3,0,173,0,0,0,1,0,0,21,0,0,0,0,2,245,0,0,0,0,0,1,0,0,0,1,0,22,0,0,2100,18,288,0,5,0,0,0,0,0,48,0,0,0,0,3,6,41,284,0,0,5,0,0,2,80,0,665,80,16,1,0,2,0,411,0,12,0,0,426,0,0,0,0,2,0,3,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,19,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,325,0,135,0,0,0,4,8,79,571,314,0,0,0,0,1,0,0,0,0,0,0,0,0,860,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,10,15,134,5,0,0,427,0,579,0,0,0,343,23,0,0,0,0,0,0,0,0,0,204,1,0,0,0,8,0,0,0,0,1,100,429,0,0,193,0,0,0,0,0,269,0,0,210,0,0,1,0,1,0,0,0,17,0,0,0,15,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,6,0,0,0,2,1,23,862,0,5,0,0,0,0,0,0,226,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,6,368,76,5 +4,0,0,15,0,68,6,0,74,36,4,0,0,2,75,0,91,0,7,8,0,0,0,6,3,16,33,0,19,0,4,0,0,0,27,0,68,49,164,0,267,0,0,0,1,0,0,1,1,0,0,0,12,422,1,0,0,0,0,1,0,0,0,19,0,48,0,0,38726,68,297,0,21,0,0,0,0,0,9,0,0,0,0,0,8,16,214,0,0,27,0,0,0,0,0,155,5,5,1,0,2,0,406,0,40,0,0,7317,0,0,0,0,22,3,1,0,0,0,0,1,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,33,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,10,10,10,0,0,0,222,0,88,0,0,0,22,813,225,257,240,0,0,0,0,1,0,3,0,0,0,0,0,0,814,1,0,0,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,1,0,32,151,360,40,0,0,297,0,4799,0,0,0,140,129,0,0,0,0,0,0,0,0,0,259,1,0,3,0,17,0,0,0,0,9,187,7,0,0,0,0,2,0,0,0,1087,0,0,30,3,0,1,1,0,0,0,0,7,0,0,0,18,0,0,0,0,0,39,0,0,6,12,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,81,1,1,1,0,141,0,0,0,0,1,95,43,0,63,9,0,0,0,0,0,167,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,38,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1202,103,5 +1,0,0,10,0,34,3,0,15,41,4,1,0,0,53,0,46,0,7,4,0,0,0,2,1,2,15,0,10,0,5,0,0,0,15,0,34,6,9,0,151,0,0,0,1,0,0,3,0,0,0,0,7,144,0,0,0,0,0,1,0,0,0,21,0,44,0,0,1855,34,164,0,15,0,0,0,0,0,15,0,0,0,0,0,3,7,260,0,0,15,0,0,0,0,0,63,0,6,0,0,2,0,218,0,41,0,0,1017,0,0,0,0,25,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,239,0,113,0,0,0,14,49,62,135,232,0,0,0,0,1,0,0,0,0,0,0,0,0,615,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,59,276,23,0,0,271,0,450,0,0,0,181,36,0,0,0,0,0,0,4,0,0,129,1,0,0,0,7,0,0,0,0,8,150,92,0,0,0,0,0,0,0,0,213,0,0,188,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,35,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,46,0,0,0,2,1,49,375,0,32,0,0,0,0,0,0,103,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,41,0,0,0,0,0,0,0,0,0,0,0,0,0,2,506,104,5 +0,0,0,4,0,32,6,0,13,0,2,0,0,2,2,0,23,0,15,2,0,0,0,6,0,8,3,0,3,0,1,1,0,0,2,0,32,6,0,0,23,0,5,0,1,0,0,6,1,0,0,0,2,119,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1694,32,82,0,3,0,0,0,0,0,24,0,0,0,0,0,7,18,383,0,0,2,0,0,0,0,0,85,5,12,0,0,2,0,40,0,0,0,0,921,0,0,0,0,1,0,3,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,182,0,66,0,0,0,2,8,196,17,171,0,0,0,0,1,0,9,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,32,10,133,4,0,0,188,0,399,0,0,0,78,4,0,0,0,0,0,0,0,0,0,63,1,0,3,0,8,0,0,0,0,2,114,55,0,0,0,0,0,0,0,0,136,0,0,521,3,0,1,1,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,3,182,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,4,0,0,0,0,1,34,185,0,7,9,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,256,55,5 +1,0,0,10,0,24,6,0,31,21,6,0,0,3,32,0,46,0,7,4,0,0,0,2,0,3,9,0,5,0,1,0,0,0,10,0,24,93,12,0,162,0,0,0,1,0,0,2,0,0,0,0,3,156,0,0,0,0,0,1,0,0,0,2,0,9,0,0,1054,24,139,0,7,0,0,0,0,0,7,0,0,0,0,0,2,6,149,0,0,10,0,0,0,0,0,38,0,2,0,0,2,0,174,0,6,0,3,791,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,157,0,58,0,0,0,6,36,56,94,183,0,0,0,0,1,0,0,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,33,259,21,0,0,235,0,398,0,0,0,136,96,0,0,0,0,0,0,0,0,0,131,1,0,0,0,6,0,0,0,0,4,172,61,0,0,0,0,0,0,0,0,254,0,0,24,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,32,0,0,0,0,1,34,173,0,18,0,0,0,0,0,0,75,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,2,394,102,5 +33,0,0,15,0,36,352,0,776,28,225,0,1,4,45,1,64,0,7,6,0,0,0,1,1,4,18,0,12,0,1,0,0,0,14,0,36,364,19,0,1267,0,0,0,1,0,0,3,0,0,0,0,6,498,0,0,0,0,0,1,0,0,0,0,0,68,0,0,8243,36,1492,0,13,0,0,0,0,0,13,0,0,0,0,0,1,7,577,0,0,14,0,0,13,742,0,5799,955,4,0,0,2,0,3482,0,29,3,5,4474,0,0,32,0,5,1,4,0,0,0,0,1,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,568,0,76,0,0,0,12,55,89,5082,743,0,0,0,0,1,0,0,0,0,0,0,0,0,3899,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,13,40,402,18,0,0,602,0,999,0,0,0,503,78,0,6,0,0,0,0,0,0,0,1475,1,0,0,0,8,0,0,0,0,6,135,1549,0,0,2849,0,0,0,0,2,909,0,0,1622,0,0,1,121,0,0,0,0,6,0,0,0,3,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,34,0,0,0,0,1,50,174,0,35,0,0,0,0,0,0,1475,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,52,117,0,0,0,0,0,0,0,0,0,0,0,0,3,1099,5582,5 +0,0,0,33,0,48,28,0,144,33,38,1,1,4,55,0,72,0,7,3,0,0,0,1,1,2,21,0,10,0,4,1,0,0,26,0,48,145,12,0,309,0,0,0,1,0,0,6,0,0,0,0,7,272,0,0,0,0,0,1,0,0,0,0,0,39,0,0,7360,48,407,0,15,0,0,0,0,0,33,0,0,0,0,1,1,12,1142,0,0,26,0,0,5,78,0,718,120,7,1,0,2,0,682,0,30,0,6,6438,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,749,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,678,0,258,0,0,0,14,55,103,3725,695,0,0,0,0,1,0,0,0,0,0,0,0,0,2598,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,21,57,1142,39,0,0,479,0,1280,0,0,0,362,240,0,0,0,0,0,0,4,0,0,350,1,0,0,0,5,0,0,0,0,8,156,368,0,0,330,0,0,0,0,0,713,0,0,1093,0,0,1,0,0,0,0,0,10,0,0,0,4,0,0,0,0,0,34,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,39,0,0,0,0,1,74,778,0,38,0,0,0,0,0,0,280,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,43,0,0,0,0,0,0,0,0,0,0,0,0,0,5,7175,462,5 +4,0,0,26,0,93,129,0,349,103,90,1,1,11,167,0,1775,0,7,11,0,0,0,17,58,17,39,0,90,0,2,0,0,0,34,3272,93,314,104,0,938,0,0,1,1,1,0,4,0,0,0,1,67,548,0,8,0,0,0,1,0,0,2,5,0,152,0,0,21793,93,2786,0,88,0,1,0,0,1,36,0,1,0,0,0,20,51,2274,0,0,34,0,0,6,235,0,2777,310,8,0,0,4,0,3485,0,106,15,7,6652,0,0,0,0,117,3,6,0,0,0,0,1,0,0,0,15,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,36,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,167,12,12,12,0,0,0,1227,0,195,0,0,0,133,331,559,3626,955,0,0,0,0,1,0,3,0,0,0,0,0,0,2173,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,119,230,689,32,0,0,692,0,2020,0,0,0,469,214,0,0,0,0,1,0,7,0,0,2530,1,0,0,0,86,0,0,0,0,63,228,594,0,0,712,0,0,0,0,3,26407,1,0,235,12,0,1,1,0,0,0,0,11,0,1,0,6,0,0,0,0,0,106,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,12,2,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,124,1,1,1,0,142,0,0,0,0,1,127,516,0,134,14,0,0,0,0,0,829,8,0,0,0,0,0,0,0,0,0,0,0,2,0,1,117,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1774,278,5 +2,0,0,6,0,36,3,0,35,4,3,0,0,0,16,1,49,0,15,3,0,0,0,3,2,2,15,0,8,0,1,1,0,0,11,0,36,6,44,0,70,0,0,0,1,0,0,2,0,0,0,0,5,192,0,0,0,0,0,1,0,0,0,1,0,12,0,0,23598,36,140,0,10,0,0,0,0,0,14,0,0,0,0,0,3,7,2602,0,0,11,0,0,0,0,0,50,0,4,0,0,2,0,143,0,7,0,0,2324,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2141,0,118,0,0,0,10,72,86,274,2145,0,0,0,0,1,0,0,0,0,0,0,0,0,5415,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,13,717,7,0,0,247,0,520,0,0,0,142,73,0,0,0,0,0,0,2,0,0,122,1,0,0,0,8,0,0,0,0,4,130,84,0,0,0,0,0,0,0,1,1969,0,0,5794,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,27,0,0,0,0,1,47,217,0,27,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1742,169,5 +0,0,0,8,0,16,5,0,32,0,9,0,0,0,4,0,17,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,16,6,0,0,51,0,0,0,1,0,0,1,0,0,0,0,0,95,0,0,0,0,0,1,0,0,0,0,0,9,0,0,6685,16,69,0,1,0,0,0,0,0,8,0,0,0,0,0,1,3,1575,0,0,4,0,0,1,18,0,158,15,2,0,0,2,0,100,0,1,0,0,4830,0,0,0,0,2,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,845,0,46,0,0,0,0,3,36,135,851,0,0,0,0,1,0,0,0,0,0,0,0,0,2036,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,111,8,0,0,151,0,417,0,0,0,81,15,0,0,0,0,0,0,4,0,0,73,1,0,0,0,2,0,0,0,0,1,98,98,0,0,33,0,0,0,6,0,426,0,0,1592,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,0,0,0,0,0,1,20,160,0,1,0,0,0,0,0,0,67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,835,49,5 +0,0,0,7,0,10,2,0,8,0,3,0,0,0,2,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,19,0,0,0,1,0,0,3,0,0,0,0,0,63,0,0,0,0,0,1,0,0,0,0,0,1,0,0,318,10,42,0,1,0,0,0,0,0,10,0,0,0,0,0,1,6,63,0,0,1,0,0,0,0,0,11,0,3,0,0,2,0,8,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,62,0,52,0,0,0,0,3,25,7,78,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,11,80,10,0,0,103,0,162,0,0,0,49,4,0,0,0,0,0,0,0,0,0,36,1,0,0,0,2,0,0,0,0,0,96,33,0,0,0,0,0,0,0,2,38,0,0,33,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,98,0,1,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,115,64,5 +4,0,0,16,1,95,129,1,133,4,23,0,0,12,11,0,2444,0,9,5,0,0,0,8,0,13,6,0,22,0,1,0,0,1,35,37314,96,57,10,0,109,0,0,0,1,0,0,3,0,0,0,0,3,895,0,0,0,0,0,1,0,0,0,7,0,8,0,0,190451,95,3023,0,19,0,0,0,0,0,215,0,0,0,0,0,10,118,41923,0,1,35,1,0,1,0,0,476,40,5,1,0,4,1,2728,0,4,77,0,11515,0,0,0,0,8,4,4,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,15,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,12,12,12,0,0,0,33795,0,118,0,0,0,13,77,1080,3597,33732,0,0,0,0,1,0,9,0,0,0,0,0,0,1333,4,0,0,0,0,0,0,0,0,0,0,0,38,5,0,0,0,0,0,1,0,247,35,744,27,0,0,974,0,766,0,1,0,605,85,0,0,0,0,0,0,0,0,0,2761,1,0,0,0,13,0,0,0,0,4,266,134,0,0,112,0,6,0,0,1,10940,1,0,577,109,0,1,1,0,0,0,0,4,0,0,0,2,0,0,0,0,0,5,0,0,0,12,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,109,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,130,1,1,1,0,77,0,0,0,0,9,131,195,0,28,14,0,1,0,0,0,157,1,0,0,0,0,0,0,0,0,0,0,0,4,0,2,12,0,0,0,0,0,0,0,0,0,0,0,1,0,5,4239,167,5 +0,0,0,9,0,35,19,0,75,5,35,0,0,0,14,0,34,0,24,5,0,0,0,3,0,1,12,0,6,0,2,0,0,0,8,0,35,6,10,0,173,0,0,0,1,0,0,0,0,0,0,0,4,328,0,0,0,0,0,1,0,0,0,5,0,23,0,0,605,35,200,0,8,0,0,0,0,0,0,0,0,0,0,0,4,4,28,0,0,8,0,0,7,65,0,653,125,0,0,0,2,0,400,0,10,0,0,1303,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,14,0,0,0,0,0,0,57,0,68,0,0,0,8,33,83,1060,61,0,0,0,0,1,0,0,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,19,170,10,0,0,170,0,383,0,0,0,81,45,0,0,0,0,0,0,0,0,0,201,0,0,0,0,8,0,0,0,0,5,124,171,0,0,374,0,0,0,0,2,124,0,0,1,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,13,0,0,0,0,1,43,75,0,21,0,0,0,0,0,0,186,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,22,5 +0,0,0,17,1,69,32,1,136,14,25,0,1,3,42,0,133,0,9,8,0,0,0,14,4,6,21,0,35,0,1,0,0,1,43,0,70,334,69,0,265,0,0,0,0,0,0,2,0,0,0,0,18,256,0,0,0,0,0,1,0,0,0,9,0,36,0,0,2013,69,402,0,36,0,7,0,0,0,7,0,0,0,0,0,7,10,165,0,1,43,1,0,3,56,0,695,55,4,0,0,4,1,575,0,21,0,4,2225,0,0,0,0,5,0,2,0,4,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,223,0,99,0,0,0,36,99,130,724,204,0,0,0,0,1,0,7,0,0,0,0,0,0,584,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,129,58,574,19,0,0,453,0,1739,0,1,0,228,94,0,8,0,0,0,0,0,0,0,381,1,0,0,0,26,0,0,0,0,16,189,156,0,0,148,0,1,0,0,0,1150,0,0,55,0,0,1,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,18,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,83,1,1,1,0,90,0,0,0,0,9,113,145,0,63,0,0,0,0,0,0,282,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,18,0,0,0,0,0,0,0,0,0,0,0,1,0,0,562,155,5 +0,0,0,13,0,44,204,0,382,59,102,0,1,5,74,0,64,0,7,8,0,0,0,5,0,12,15,0,12,0,1,0,0,0,14,0,44,151,21,0,723,0,0,0,1,0,0,5,0,0,0,0,6,335,0,0,0,0,0,1,0,0,6,0,0,87,0,0,15281,44,875,0,11,0,0,0,0,0,29,0,0,0,0,0,7,18,1288,0,0,14,0,0,7,310,0,2524,400,9,0,0,2,0,1672,0,55,0,5,1871,0,0,0,0,19,0,6,0,0,0,0,1,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,1,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,10,10,10,0,0,0,1306,0,154,0,0,0,10,50,191,2351,1337,0,0,0,0,1,0,3,0,0,0,0,0,0,5024,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,39,84,384,14,0,0,585,0,914,0,0,0,463,92,0,0,0,0,0,0,0,0,0,839,1,0,0,0,13,0,0,0,0,6,172,732,0,0,985,0,0,0,0,19,1347,0,0,4023,3,0,1,1,1,0,0,0,13,0,1,0,11,0,0,0,0,0,60,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,40,0,0,0,0,1,58,496,0,31,9,0,0,0,0,0,755,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,67,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1613,202,5 +1,0,0,17,0,49,12,0,94,16,15,0,1,4,33,0,80,0,7,8,0,0,0,2,1,4,18,0,14,0,1,0,0,0,22,0,49,496,24,0,217,0,0,0,1,0,0,3,0,0,0,0,7,140,0,1,0,0,0,1,0,0,0,0,0,17,0,0,2492,49,273,0,15,0,0,0,0,0,13,0,0,0,2,0,3,8,185,0,0,22,0,0,2,24,0,269,35,5,0,0,2,0,384,0,8,0,6,2977,0,0,0,0,4,0,1,0,0,0,0,1,2,0,0,10,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,89,0,0,0,0,0,0,229,0,180,0,0,0,14,54,99,402,277,0,0,0,0,1,0,3,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,2,0,13,57,464,19,0,0,456,0,1177,0,0,0,317,80,0,0,0,0,0,0,0,0,0,246,1,0,0,0,11,0,0,0,0,6,152,247,0,0,78,0,0,0,0,0,658,0,0,57,0,0,1,0,1,0,0,0,7,0,6,0,6,0,0,0,0,0,16,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,33,0,0,0,0,1,71,460,0,37,0,0,0,0,0,0,173,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,1,0,0,0,0,0,0,0,0,0,0,0,3,548,192,5 +0,0,0,5,0,16,14,0,48,0,12,0,0,0,4,0,18,0,7,2,0,0,0,1,0,1,0,0,2,0,1,0,0,0,5,0,16,6,4,0,58,0,0,0,1,0,0,4,0,0,0,0,1,101,0,0,0,0,0,1,0,0,0,0,0,11,0,0,13023,16,115,0,3,0,0,0,0,0,17,0,0,0,0,0,1,6,902,0,0,5,0,0,2,30,0,257,40,8,0,0,2,0,155,0,1,0,0,3629,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,905,0,266,0,0,0,2,9,382,178,914,0,0,0,0,1,0,0,0,0,0,0,0,0,3827,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,4,1172,5,0,0,265,0,1397,0,0,0,181,296,0,0,0,0,0,0,0,0,0,103,1,0,0,0,3,0,0,0,0,1,150,155,0,0,89,0,0,0,0,1,863,0,0,3299,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,363,1,1,1,0,9,0,0,0,0,1,21,276,0,4,0,0,0,0,0,0,97,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1327,545,5 +4,0,0,12,12,80,7,10,138,5,23,0,0,2,187,0,1148,0,7,9,0,3,1,5,2,10,48,0,9,0,1,0,0,11,45,0,90,4857,9,0,92,0,0,0,1,0,0,3,0,0,0,0,5,661,0,0,0,0,0,1,0,0,0,20,0,14,0,0,5969,80,1768,0,9,0,0,0,0,0,16,18,0,0,0,0,8,18,478,0,10,45,11,0,0,0,0,195,5,6,0,0,2,12,4327,0,10,0,0,2060,0,0,0,0,4,0,3,0,0,0,0,1,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1,1,74,11,11,11,0,0,1,494,1,112,0,0,20,6,68,283,866,475,0,0,0,0,1,0,4,0,0,0,0,0,0,2138,0,0,0,0,0,0,0,0,0,2,0,0,3,1,2,0,0,0,0,2,0,1442,40,854,195,0,0,777,0,743,0,0,0,380,180,0,0,0,0,0,0,0,0,0,1512,1,0,0,0,20,0,0,0,0,4,233,109,0,0,0,0,0,0,0,0,7547,0,0,1388,2,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,19,0,0,0,0,151,135,453,10,60,8,0,0,0,0,0,115,9,0,0,0,0,0,0,0,0,0,0,0,11,0,3,7,0,0,0,0,0,0,0,0,0,0,0,22,0,0,964,145,5 +13,0,0,15,0,73,75,0,188,33,56,0,1,4,58,1,232,0,7,10,0,0,0,6,3,15,27,0,20,0,2,0,0,0,30,0,73,103,36,0,378,0,0,0,1,0,0,1,0,0,0,0,11,314,0,0,0,0,0,1,0,0,1,0,0,67,0,0,3749,73,648,0,20,0,0,0,0,0,9,0,0,0,0,0,9,16,862,0,0,30,0,0,7,133,0,1219,240,1,0,0,2,0,956,0,45,0,3,3195,0,0,0,0,9,0,2,0,0,0,0,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,7,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,43,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,56,10,10,10,0,0,0,757,0,167,0,0,0,20,93,250,1236,542,0,0,0,0,1,0,2,0,0,0,0,0,0,825,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,39,67,360,16,0,0,404,0,1182,0,0,0,242,3777,0,0,0,0,0,0,1,0,0,622,1,0,0,0,19,0,0,0,0,6,175,282,0,0,510,0,2,0,1,3,819,0,0,20,3,0,1,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,35,0,0,4,1,0,0,0,0,0,0,0,45,45,0,0,10,0,0,0,0,0,3,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,88,1,1,1,0,95,0,0,0,0,23,103,242,0,55,9,0,0,0,0,0,386,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,43,0,0,0,0,0,0,0,0,0,0,0,0,0,2,344,232,5 +0,0,0,12,0,16,11,0,26,7,14,0,0,0,13,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,6,0,16,6,0,0,73,0,0,0,1,0,0,1,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,20,0,0,217,16,74,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,6,0,0,2,22,0,184,35,0,0,0,2,0,129,0,10,0,0,253,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,10,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,19,0,31,0,0,0,0,3,35,115,34,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,17,71,15,0,0,112,0,367,0,0,0,76,5,0,0,0,0,0,0,0,0,0,81,1,0,0,0,2,0,0,0,0,1,98,88,0,0,80,0,0,0,0,2,20,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,0,0,0,0,0,1,22,106,0,1,0,0,0,0,0,0,75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,48,5 +0,0,0,0,0,8,2,0,17,0,1,0,0,0,2,0,22,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,1,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,0,0,0,97,8,43,0,1,0,0,0,0,0,4,0,0,0,0,0,1,4,25,0,0,0,0,0,0,0,0,10,0,4,0,0,2,0,17,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,20,0,43,0,0,0,0,3,21,5,34,0,0,0,0,1,0,1,0,0,0,0,0,0,152,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,88,0,0,0,100,0,464,0,0,0,24,0,0,0,0,0,0,0,0,0,0,50,1,0,2,0,2,0,0,0,0,0,90,9,0,0,0,0,0,0,0,0,34,0,0,36,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,24,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,26,5 +0,0,0,12,0,20,4,0,34,12,6,0,1,2,22,0,39,0,7,5,0,0,0,0,0,3,9,0,5,0,1,0,0,0,7,0,20,123,11,0,113,0,0,0,1,0,0,0,0,0,0,0,3,65,0,0,0,0,0,1,0,0,0,0,0,7,0,0,466,20,118,0,7,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,7,0,0,0,0,0,32,0,0,0,0,2,0,151,0,4,0,3,1940,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,32,0,31,0,0,0,6,28,51,76,59,0,0,0,0,1,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,20,139,13,0,0,84,0,380,0,0,0,37,31,0,0,0,0,0,0,0,0,0,115,0,0,0,0,5,0,0,0,0,4,112,7,0,0,0,0,0,0,0,0,289,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,16,0,0,0,0,1,27,15,0,18,0,0,0,0,0,0,48,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,27,5 +2,0,0,17,1,34,28,1,65,10,7,0,1,3,30,0,102,0,9,5,0,0,0,2,1,3,12,0,10,0,2,0,0,1,14,0,35,271,18,0,119,0,0,0,1,0,0,1,0,0,0,0,5,143,0,0,0,0,0,1,0,0,0,0,0,12,0,0,1112,34,208,0,12,0,0,0,0,0,4,0,0,0,0,0,3,5,61,0,1,14,1,0,1,0,0,88,0,1,0,0,4,1,212,0,8,0,4,3489,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,10,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,88,0,67,0,0,0,10,47,85,122,103,0,0,0,0,1,0,0,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,124,38,403,28,0,0,390,0,1276,0,1,0,180,57,0,0,0,0,0,0,0,0,0,245,1,0,0,0,8,0,0,0,0,5,161,70,0,0,0,0,0,0,0,0,585,0,0,13,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,49,1,1,1,0,46,0,0,0,0,9,49,197,0,27,0,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,2,356,193,5 +11,0,0,16,0,62,121,0,265,36,78,2,0,0,56,1,64,0,8,5,0,0,0,7,2,4,18,0,14,0,3,1,0,0,38,0,62,6,18,0,515,0,0,0,1,0,0,2,0,0,0,0,8,238,0,4,0,0,0,1,0,0,3,16,0,58,0,0,2142,62,611,0,18,0,0,0,0,0,8,0,0,0,0,0,8,12,287,0,0,38,0,0,5,231,0,1887,355,2,0,0,2,0,1224,0,40,0,0,1988,0,0,0,0,30,0,0,0,0,0,0,1,0,0,0,30,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,10,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,35,0,1,0,0,0,0,0,1,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,24,0,0,0,0,0,0,521,0,158,0,0,0,16,61,146,1753,352,0,0,0,0,1,0,0,0,0,0,0,0,0,1491,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,59,427,25,0,0,471,0,857,0,0,0,355,625,0,0,0,0,0,0,0,0,0,595,1,0,0,0,14,0,0,0,0,9,185,475,0,0,1068,0,0,0,0,4,13180,0,0,37,0,0,1,0,0,0,0,0,5,0,5,0,12,0,0,0,0,0,38,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,17,1,0,0,0,0,0,6,13,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,81,1,1,1,0,47,0,0,0,0,1,100,233,0,40,0,0,0,0,0,0,558,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,42,0,0,0,0,0,0,0,0,0,0,0,0,0,3,474,130,5 +5,0,0,10,1,52,63,1,127,2,23,0,0,9,9,0,537,0,9,3,0,0,0,8,0,11,0,0,8,0,1,0,0,1,8,15165,53,54,10,0,149,0,0,0,1,0,0,7,1,0,0,0,2,885,0,0,0,0,0,1,0,0,0,9,0,10,0,0,68223,52,775,0,6,0,0,0,1,0,50,0,0,0,0,0,9,42,17986,0,1,8,1,0,3,48,0,714,90,14,0,0,4,1,790,0,1,30,0,4772,0,0,0,0,18,5,5,0,2,0,0,1,0,0,0,7,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,25,0,1,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,12,12,12,0,0,0,14204,0,143,0,0,0,4,20,518,1387,14205,0,0,0,0,1,0,12,0,0,0,0,0,0,899,5,0,0,0,3,0,0,0,0,0,0,0,7,6,0,0,0,0,0,1,0,220,28,548,11,0,0,551,0,634,0,1,0,260,13,0,0,0,0,0,0,0,0,0,777,1,0,3,0,11,0,0,0,0,2,198,170,0,0,185,0,0,0,0,0,3540,1,0,164,15,0,1,1,0,0,0,0,19,0,0,0,1,0,0,0,0,0,4,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,15,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,77,1,1,1,0,36,0,0,0,0,9,61,150,0,8,12,0,0,0,0,0,239,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,7,2127,113,5 +1,0,0,9,1,147,33,1,94,16,13,0,0,2,36,0,121,0,9,10,0,0,0,10,12,13,12,0,28,0,7,0,0,1,67,2,148,185,176,0,192,0,0,0,1,0,0,5,0,0,0,0,24,340,0,0,0,0,0,1,0,0,0,2,0,30,0,0,51568,147,320,0,33,0,0,0,0,0,20,0,0,0,0,1,14,27,4342,0,1,67,1,0,3,18,0,472,35,7,0,0,4,1,322,0,23,0,0,3568,0,0,0,0,16,0,12,0,0,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,3,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,10,10,10,0,0,0,4446,0,197,0,0,0,46,186,321,400,4347,0,0,0,0,1,0,2,0,0,0,0,0,0,19493,0,0,0,3,0,0,0,0,0,11,0,0,6,1,0,0,0,0,0,1,0,177,57,833,23,0,0,904,0,4306,0,1,0,497,35,0,0,0,0,0,0,0,0,0,308,1,0,0,0,32,0,0,1,0,22,324,193,0,0,72,0,25,0,0,5,4827,0,0,15388,3,0,1,1,1,0,0,0,6,0,0,0,1,0,0,0,0,0,14,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,157,1,1,1,0,106,0,0,0,8,9,215,635,0,51,9,1,0,0,0,0,193,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,22,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4883,985,5 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,78,9,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,81,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,28,0,0,0,0,3,23,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,41,0,0,0,49,0,144,0,0,0,19,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,91,15,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,25,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,14,5 +0,0,0,26,3,35,89,3,203,11,39,1,0,0,29,0,184,0,13,5,0,0,0,0,0,3,9,0,6,0,1,0,0,3,22,0,38,228,12,0,201,0,0,0,1,0,0,0,0,0,0,0,3,182,0,0,0,0,0,1,0,0,0,4,0,26,0,0,643,35,446,0,7,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,3,22,3,0,6,77,0,754,140,0,0,0,8,3,480,0,18,0,0,994,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,48,0,67,0,0,0,6,30,64,348,40,0,0,0,0,1,0,0,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,63,688,38,0,0,610,0,1962,0,3,0,213,47,0,0,0,0,0,0,0,0,0,558,0,0,0,0,5,0,0,0,0,3,182,133,0,0,262,0,0,0,0,1,816,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,33,1,1,1,0,28,0,0,0,0,25,60,33,0,19,0,0,0,0,0,0,313,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,15,0,0,0,0,0,0,0,0,0,0,0,3,0,0,459,118,5 +1,0,0,9,1,57,56,1,132,4,34,0,0,9,10,0,135,0,9,5,0,0,0,7,0,11,3,0,10,0,1,1,0,1,13,4621,58,54,7,0,179,0,0,0,1,0,0,4,0,0,0,0,4,618,0,0,0,0,0,1,0,0,0,2,0,21,0,0,12294,57,358,0,9,0,0,0,0,0,27,0,0,0,0,0,9,34,1786,0,1,13,1,0,6,71,0,878,130,8,0,0,4,1,495,0,4,29,0,4952,0,0,0,0,5,1,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,675,0,77,0,0,0,7,20,457,9681,689,0,0,0,0,1,0,5,0,0,0,0,0,0,518,1,0,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,1,0,217,31,584,10,0,0,603,0,935,0,1,0,304,103,0,0,0,0,0,0,0,0,0,385,1,0,0,0,12,0,0,0,0,2,186,248,0,0,324,0,0,0,0,2,8890,1,0,111,8,0,1,1,1,0,0,0,9,0,0,0,1,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,8,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,66,1,1,1,0,27,0,0,0,0,9,71,578,0,14,12,0,0,0,0,0,263,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,16,0,0,0,0,0,0,0,0,0,0,0,1,0,2,796,148,5 +6,0,0,410,0,32,324,0,358,81,123,0,0,0,93,0,67,0,7,4,0,0,0,1,0,2,15,0,6,0,1,3,0,0,18,0,32,75,9,0,764,0,0,0,1,0,0,11,0,0,0,0,5,269,0,4,0,0,0,1,0,0,12,0,0,126,0,0,7554,32,1046,0,10,0,0,0,0,0,40,0,0,0,1,0,2,23,550,0,0,18,0,0,6,335,0,2665,430,14,0,2,2,0,1745,0,87,0,0,2162,0,0,6,0,19,0,15,0,0,0,0,1,0,0,0,268,0,0,0,0,0,0,0,0,0,0,0,5,0,0,2,14,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,1,0,0,0,0,0,0,0,0,0,1,16,0,0,0,4,0,18,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,25,0,0,0,0,0,0,867,0,307,0,0,0,10,57,63,3896,1013,0,0,0,0,1,0,1,0,0,0,0,0,0,3727,0,15,0,0,0,0,0,0,0,0,0,0,11,0,8,0,0,0,0,0,0,8,92,406,515,0,0,1121,0,970,0,0,0,1038,64,0,0,0,2,0,0,0,0,0,972,1,0,0,0,5,0,0,0,0,5,183,1211,0,0,1075,0,2,0,0,30,314,0,0,219,0,0,1,0,0,0,0,0,22,0,1,0,54,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,4,27,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,29,0,0,0,0,1,50,807,0,27,0,0,0,0,0,0,1431,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,89,0,0,0,0,0,0,0,0,0,0,0,0,0,14,863,261,5 +0,0,0,11,0,28,11,0,28,2,11,0,0,0,11,0,25,0,7,2,0,0,0,2,0,1,3,0,6,0,1,0,0,0,15,0,28,9,3,0,68,0,3,0,1,0,0,6,0,0,0,0,1,162,0,0,0,0,0,1,0,0,0,4,0,14,0,0,43660,28,134,0,7,0,0,0,0,0,28,0,0,0,0,0,2,12,3780,0,0,15,0,0,1,16,0,162,20,11,1,0,4,0,128,0,9,0,0,894,0,0,0,0,2,0,5,0,0,0,0,1,0,0,0,4886,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,3998,0,112,0,0,0,2,11,60,422,3710,0,0,0,0,1,0,1,0,0,0,0,0,0,19361,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,14,19,278,14,0,0,247,0,753,0,0,0,176,46,0,0,0,0,0,0,0,0,0,93,1,0,0,0,4,0,0,0,0,2,120,122,0,0,48,0,0,0,0,2,3591,0,0,14318,0,0,1,0,1,0,0,0,14,0,0,0,5,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,10,0,0,0,0,1,43,273,0,11,0,0,0,0,0,0,96,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3835,234,5 +0,0,0,6,0,15,2,0,20,7,3,0,0,0,14,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,15,6,0,0,39,0,0,0,1,0,0,3,0,0,0,0,0,158,0,0,0,0,0,1,0,0,0,0,0,14,0,0,2267,15,70,0,1,0,0,0,0,0,15,0,0,0,0,0,1,6,402,0,0,4,0,0,0,0,0,10,0,6,0,0,2,0,38,0,11,0,0,328,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,2,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,295,0,65,0,0,0,0,3,31,14,421,0,0,0,0,1,0,0,0,1,0,0,0,0,722,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,44,115,21,0,0,224,0,616,0,0,0,151,12,0,0,0,0,0,0,4,0,0,63,1,0,0,0,2,0,0,0,0,1,97,125,0,0,0,0,0,0,0,0,104,0,0,301,0,0,1,0,1,0,0,0,7,0,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,1,0,0,1,19,460,0,1,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,258,121,5 +4,0,0,6,1,47,61,1,79,2,22,0,0,6,6,0,986,0,9,2,0,0,0,7,0,10,0,0,13,0,1,0,0,1,2,5386,48,54,0,0,56,0,0,0,1,0,0,3,0,0,0,0,1,571,0,0,0,0,0,1,0,0,0,8,0,3,0,0,22157,47,1190,0,11,0,0,0,0,0,56,0,0,0,0,0,8,82,4253,0,1,2,1,0,1,0,0,385,20,5,0,0,4,1,1038,0,1,142,0,3860,0,0,0,0,0,4,8,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,2,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,1153,0,67,0,0,0,8,11,393,1307,1163,0,0,0,0,1,0,8,0,0,0,0,0,0,678,5,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,1,0,188,28,451,7,0,0,585,0,608,0,1,0,271,33,0,0,0,0,0,0,0,0,0,1169,1,0,0,0,9,0,0,0,0,1,177,106,0,0,147,0,2,0,0,0,16397,1,0,231,24,0,1,1,1,0,0,0,7,0,0,0,1,0,0,0,0,0,2,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,62,1,1,1,0,34,0,0,0,0,9,50,430,0,12,12,0,0,0,0,0,93,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,6,0,0,0,0,0,0,0,0,0,0,0,1,0,4,1621,89,5 +0,0,0,3,0,21,2,0,18,0,2,0,0,0,5,0,53,0,6,1,0,0,0,1,0,0,12,0,1,0,2,3,0,0,1,0,21,6,0,0,8,0,0,0,1,0,0,3,0,0,0,0,4,63,0,0,0,0,0,1,0,0,0,0,0,1,0,0,858,21,109,0,6,0,0,0,0,0,16,0,0,0,0,0,1,6,111,0,0,1,0,0,0,0,0,28,0,5,0,0,2,0,123,0,0,0,0,477,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,127,0,61,0,0,0,8,23,35,35,132,0,0,0,0,1,0,0,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,9,141,3,0,0,133,0,256,0,0,0,45,6,0,0,0,0,0,0,0,0,0,86,1,0,0,0,2,0,0,0,0,5,103,29,0,0,0,0,0,0,0,0,365,0,0,210,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,13,0,0,0,0,1,22,82,0,18,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,192,72,5 +2,0,0,14,0,82,14,0,52,61,8,0,1,5,84,0,133,0,7,10,0,0,0,6,5,19,18,0,24,0,1,0,0,0,34,879,82,276,43,0,265,0,0,0,1,0,0,1,0,0,0,0,13,323,0,0,0,0,0,1,0,0,0,1,0,76,0,0,8827,82,338,0,23,0,0,0,0,0,14,0,0,0,0,0,9,18,1015,0,0,34,0,0,1,8,0,260,20,2,0,0,2,0,478,0,67,0,4,3166,0,0,0,0,58,1,1,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,617,0,112,0,0,0,23,97,315,1125,586,0,0,0,0,1,0,4,0,0,0,0,0,0,626,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,37,84,557,15,0,0,390,0,882,0,0,0,198,132,0,0,0,0,0,0,0,0,0,304,1,0,0,0,21,0,0,0,0,10,193,55,0,0,63,0,0,0,0,0,20114,1,0,44,7,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,98,1,1,1,0,100,0,0,0,0,1,116,151,0,50,12,0,0,0,0,0,207,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,65,0,0,0,0,0,0,0,0,0,0,0,0,0,2,577,189,5 +6,0,0,16,1,63,132,1,275,65,59,0,0,0,167,0,175,0,9,5,0,0,0,8,13,4,51,0,30,0,5,1,0,1,29,0,64,158,37,0,579,0,0,0,1,0,0,4,0,0,0,0,22,312,0,4,0,0,0,1,0,0,2,13,0,139,0,0,8912,63,909,0,37,0,0,0,0,0,21,0,0,0,0,0,9,17,859,0,1,29,1,0,6,158,0,1500,245,8,0,0,4,1,1421,0,73,0,0,2661,0,0,0,0,28,0,1,0,0,0,0,1,0,0,0,27,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,6,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,49,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,197,0,0,0,0,0,0,982,0,190,0,0,0,44,149,128,1855,810,0,0,0,0,1,0,0,0,0,0,0,0,0,2421,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,118,96,574,18,0,0,695,0,1817,0,1,0,435,86,0,0,0,0,0,0,0,0,0,817,1,0,0,0,26,0,0,0,0,22,192,455,0,0,634,0,2,0,0,3,1028,0,0,1138,0,0,1,0,0,0,0,0,11,0,5,0,10,0,0,0,0,0,66,0,0,2,0,5,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,11,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,69,1,1,1,0,70,0,0,0,0,9,93,450,0,91,0,0,0,0,0,0,540,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,71,0,0,0,0,0,0,0,0,0,0,0,1,0,7,1021,179,5 +44,0,0,9,1,39,89,1,181,18,54,0,0,0,34,1,78,0,9,4,0,0,0,4,0,1,3,0,4,0,1,0,0,1,17,0,40,110,7,0,283,0,0,0,1,0,0,2,0,0,0,0,2,256,0,0,0,0,0,1,0,0,2,15,0,42,0,0,3100,39,407,0,5,0,0,0,0,0,9,0,0,0,0,0,5,9,873,0,1,17,1,0,6,136,0,1164,225,3,1,0,4,1,694,0,27,0,0,1302,0,0,0,0,7,0,4,0,0,0,15,1,0,0,0,12,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,3,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1,0,8,0,0,0,0,0,0,657,0,101,0,0,0,4,18,87,1324,549,0,0,0,0,1,0,0,0,0,0,0,0,0,999,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,122,43,392,11,0,0,462,0,1729,0,1,0,242,41,0,0,0,0,0,0,0,0,0,446,1,0,0,0,8,0,0,0,0,3,152,304,0,0,531,0,0,0,0,3,317,0,0,88,0,0,1,0,0,0,0,0,2,0,0,0,6,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,47,1,1,1,0,9,0,0,0,0,9,57,289,0,9,0,0,0,0,0,0,343,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,24,0,0,0,0,0,0,0,0,0,0,0,1,0,2,368,750,5 +2,0,0,5,0,22,67,0,141,20,41,0,0,0,26,0,23,0,7,2,0,0,0,3,0,1,3,0,2,0,1,0,0,0,9,0,22,6,5,0,235,0,6,0,1,0,0,7,0,0,0,0,1,790,0,0,0,0,0,1,0,0,2,1,0,32,0,0,6650,22,338,0,3,0,0,0,0,0,27,0,0,0,0,0,3,12,1481,0,0,9,0,0,3,118,0,931,175,13,1,0,2,0,590,0,23,0,0,867,0,0,2,0,9,0,1,0,0,0,0,1,0,0,0,8,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,999,0,100,0,0,0,2,13,52,946,819,0,0,0,0,1,0,0,0,0,0,0,0,0,2283,0,0,0,0,0,0,0,0,0,0,0,0,7,0,2,0,0,0,0,0,0,8,26,248,5,0,0,339,0,596,0,0,0,251,15,0,0,0,0,0,0,2,0,0,305,1,0,0,0,5,0,0,0,0,2,135,1092,0,0,404,0,0,0,0,3,420,0,0,1680,0,0,1,0,1,0,0,0,13,0,1,0,7,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,181,5,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,8,0,0,0,0,1,31,519,0,7,0,0,0,0,0,0,297,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1903,124,5 +0,0,0,5,0,13,47,0,89,11,35,0,0,0,15,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,13,6,0,0,140,0,0,0,1,0,0,1,0,0,0,0,0,107,0,0,0,0,0,1,0,0,2,0,0,21,0,0,440,13,200,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,47,0,0,3,0,0,2,81,0,644,150,1,0,0,2,0,358,0,13,0,0,314,0,0,0,0,3,0,2,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,231,0,45,0,0,0,0,3,31,623,81,0,0,0,0,1,0,0,0,0,0,0,0,0,387,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,16,94,5,0,0,149,0,393,0,0,0,92,15,0,0,0,0,0,0,0,0,0,208,1,0,0,0,2,0,0,0,0,1,95,166,0,0,317,0,0,0,0,3,36,0,0,8,0,0,1,0,1,0,0,0,1,0,0,0,4,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,16,89,0,1,0,0,0,0,0,0,176,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,106,67,5 +3,0,0,22,1,63,147,1,202,6,41,0,0,27,14,0,2073,0,9,5,0,0,0,8,0,14,12,0,19,0,2,0,0,1,8,27131,64,54,9,0,322,0,0,0,1,0,0,5,0,0,0,0,5,1130,0,0,0,0,0,1,0,0,0,5,0,15,0,0,170266,63,2715,0,17,0,0,0,0,0,196,0,0,0,0,0,9,92,39602,0,1,8,1,0,3,36,0,1370,159,9,1,0,4,1,2753,0,4,95,0,13614,0,0,0,0,9,3,3,0,0,0,0,1,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,3,3,0,0,0,0,2,0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,12,12,12,0,0,0,30224,0,77,0,0,0,13,62,921,4075,30164,0,0,0,0,1,0,8,0,0,0,0,0,0,4693,3,0,0,0,0,0,0,0,0,0,0,0,29,4,0,0,0,0,0,1,0,651,43,798,33,0,0,908,0,1030,0,1,0,564,66,0,0,0,0,0,0,0,0,0,2513,1,0,0,0,13,0,0,0,0,5,296,242,0,0,257,0,0,0,0,1,10333,1,0,3260,100,0,1,1,0,0,0,0,5,0,0,0,5,0,0,0,0,0,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,100,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,86,1,1,1,0,57,0,0,0,0,9,72,575,0,33,14,0,0,0,0,0,470,9,0,0,0,0,0,0,0,0,0,0,0,4,0,2,27,0,0,0,0,0,0,0,0,0,0,0,1,0,2,4958,204,5 +2,0,0,3,0,12,2,0,19,1,3,0,0,0,5,0,26,0,7,1,0,0,0,1,0,0,6,0,2,0,2,1,0,0,2,0,12,8,0,0,13,0,0,0,1,0,0,6,0,0,0,0,2,530,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1664,12,99,0,5,0,0,0,0,0,24,0,0,0,0,0,1,7,258,0,0,2,0,0,0,0,0,21,0,8,0,0,2,0,65,0,2,0,0,313,0,0,1,0,2,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,210,0,89,0,0,0,4,12,32,22,212,0,0,0,0,1,0,0,0,0,0,0,0,0,560,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,0,0,0,0,0,0,8,7,119,3,0,0,148,0,295,0,0,0,80,15,0,0,0,0,0,0,7,0,0,62,1,0,0,0,2,0,0,0,0,2,94,57,0,0,0,0,0,0,0,0,130,0,0,246,0,0,1,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,4,0,0,0,0,1,14,175,0,11,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,293,47,5 +0,0,0,5,0,12,11,0,24,6,9,0,0,0,10,0,11,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,54,0,0,0,1,0,0,0,0,0,0,0,0,42,0,0,0,0,0,1,0,0,0,0,0,17,0,0,49,12,63,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,2,0,0,2,20,0,175,25,0,0,0,2,0,115,0,7,0,0,140,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,16,0,19,0,0,0,0,3,28,106,30,0,0,0,0,1,0,0,0,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,50,5,0,0,57,0,168,0,0,0,18,2,0,0,0,0,0,0,0,0,0,72,0,0,0,0,2,0,0,0,0,1,94,38,0,0,50,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,15,5 +0,0,0,3,0,18,2,0,18,2,3,0,0,0,5,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,7,0,18,6,0,0,24,0,0,0,1,0,0,5,0,0,0,0,0,142,0,0,0,0,0,1,0,0,0,0,0,5,0,0,840,18,67,0,1,0,0,0,0,0,19,0,0,0,0,0,1,7,179,0,0,7,0,0,0,0,0,14,0,7,0,0,2,0,23,0,3,0,0,284,0,0,0,0,0,0,6,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,183,0,83,0,0,0,0,3,34,9,192,0,0,0,0,1,0,0,0,0,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,0,0,0,0,0,0,8,6,129,3,0,0,201,0,409,0,0,0,130,11,0,0,0,0,0,0,2,0,0,48,1,0,0,0,2,0,0,0,0,0,107,88,0,0,0,0,0,0,0,0,58,0,0,107,0,0,1,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,25,364,0,1,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,5,183,64,5 +1,0,0,12,0,42,8,0,40,14,9,0,1,5,24,0,44,0,7,7,0,0,0,5,1,10,9,0,11,0,4,0,0,0,11,0,42,39,11,0,75,0,0,0,1,0,0,1,0,0,0,0,7,347,0,0,0,0,0,1,0,0,0,0,0,11,0,0,1689,42,147,0,13,0,0,0,0,0,9,0,0,0,0,0,9,16,151,0,0,11,0,0,1,7,0,187,20,2,0,0,2,0,195,0,5,0,4,1176,0,0,0,0,2,1,1,0,0,0,0,1,0,0,0,12,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,10,10,10,0,0,0,149,0,56,0,0,0,12,38,228,149,145,0,0,0,0,1,0,3,0,0,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,1,0,32,37,317,16,0,0,353,0,494,0,0,0,202,118,0,0,0,0,0,0,0,0,0,138,1,0,0,0,13,0,0,0,0,7,169,165,0,0,30,0,1,0,0,0,258,0,0,48,3,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,29,0,0,0,0,1,53,522,0,25,9,0,0,0,0,0,63,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,2,289,65,5 +7,0,0,7,1,77,73,1,147,2,21,0,0,9,8,0,2624,0,9,5,0,0,0,8,2,14,9,0,20,0,1,0,0,1,16,45850,78,54,14,0,94,0,0,0,1,0,0,6,0,0,0,0,6,971,0,0,0,0,0,1,0,0,0,13,0,4,0,0,314391,77,2980,0,17,0,0,0,0,0,103,0,0,0,0,0,9,83,66980,0,1,16,1,0,1,0,0,515,30,12,0,0,4,1,2801,0,2,98,0,13324,0,0,0,0,7,7,13,0,0,0,0,1,0,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,2,0,0,35,0,1,0,0,0,0,0,0,0,0,0,1,0,7,0,0,0,0,0,0,0,0,6,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,12,12,12,0,0,0,55795,0,107,0,0,0,14,113,937,4030,55716,0,0,0,0,1,0,20,0,0,0,0,0,0,1377,5,0,0,0,0,0,0,0,0,0,0,0,38,8,0,0,0,0,0,1,0,228,29,741,8,0,0,811,0,840,0,1,0,452,76,0,0,0,0,0,0,0,0,0,2891,1,0,0,0,15,0,0,0,0,7,261,196,0,0,131,0,0,0,0,0,12632,1,0,549,56,0,1,1,1,0,0,0,13,0,0,0,4,0,0,0,0,0,3,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,126,1,1,1,0,86,0,0,0,0,9,94,359,0,30,14,0,0,0,0,0,164,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,4,5560,175,5 +1,0,0,6,0,32,34,0,124,27,42,0,0,0,32,0,364,0,7,4,0,0,0,2,304,2,3,0,322,0,1,0,0,0,10,0,32,896,306,0,231,0,0,0,1,0,0,12,0,0,0,0,306,199,0,0,0,0,0,1,0,0,0,0,0,45,0,0,10101,32,1586,0,323,0,0,0,0,0,42,0,0,0,0,0,3,17,598,0,0,10,0,0,5,112,0,4001,180,15,0,0,2,0,948,0,28,0,0,5002,0,0,1,0,255,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,5,0,7,0,0,0,0,0,0,0,0,0,16,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,831,0,132,0,0,0,612,1243,69,3674,528,0,0,0,0,1,0,0,0,0,0,0,0,0,2608,0,0,0,0,0,0,0,0,0,0,0,0,13,0,3,0,0,0,0,0,0,8,31,378,6,0,0,397,0,833,0,0,0,291,130,0,0,0,0,0,0,10,0,0,603,1,0,0,0,310,0,0,0,0,307,139,381,0,0,485,0,0,0,0,0,132151,0,0,709,0,0,1,0,1,0,0,0,33,0,0,0,1,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,349,0,0,0,0,1,42,490,0,328,0,0,0,0,0,0,608,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,33,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1408,641,5 +0,0,0,5,0,32,4,0,14,0,3,0,0,2,5,0,29,0,7,5,0,0,0,5,0,9,6,0,5,0,1,1,0,0,6,0,32,6,6,0,31,0,0,0,1,0,0,3,0,0,0,0,3,140,0,0,0,0,0,1,0,0,0,0,0,7,0,0,8351,32,77,0,5,0,0,0,0,0,16,0,0,0,0,0,8,19,803,0,0,6,0,0,0,0,0,85,5,5,0,0,2,0,64,0,3,0,0,625,0,0,0,0,7,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,773,0,64,0,0,0,4,18,160,83,772,0,0,0,0,1,0,2,0,0,0,0,0,0,2301,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,2,0,32,13,194,5,0,0,264,0,559,0,0,0,155,6,0,0,0,0,0,0,0,0,0,64,0,0,0,0,10,0,0,0,0,1,151,98,0,0,0,0,0,0,0,0,769,0,0,2659,3,0,1,1,0,0,0,0,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,20,0,0,0,0,1,38,338,0,13,9,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,839,60,5 +0,0,0,16,3,21,4,3,162,2,7,0,0,0,8,0,211,0,6,7,0,6,0,1,0,1,0,0,4,0,3,0,0,3,7,1567,24,27,11,0,20,0,1,0,1,0,0,1,1,0,0,0,0,851,0,0,0,0,0,1,0,0,0,0,0,4,0,0,76294,21,484,0,7,0,0,0,0,0,16,9,0,0,0,0,1,7,8828,0,3,7,3,0,0,0,0,26,0,10,0,0,2,3,408,0,3,0,1,33520,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0,0,0,0,0,0,0,0,2,0,60,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,24,0,0,0,0,3,0,4304,0,88,0,0,0,3,6,43,6162,4298,0,0,0,0,1,0,2,0,2,1,0,0,0,568,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,1,0,46,6,669,27,0,0,611,0,3813,0,0,0,129,40,0,0,0,0,0,0,0,0,0,398,1,0,6,0,14,0,0,0,0,18,107,12,0,0,0,0,0,0,0,0,246995,0,0,1367,0,0,1,0,1,0,0,0,38,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,2,0,0,0,0,363,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,25,31,109,0,8,0,0,0,0,0,0,682,3,0,0,0,0,0,0,0,0,0,0,0,3,2,5,8,0,0,0,0,0,0,0,2,0,0,0,5,0,2,5301,45,5 +0,0,0,49,0,43,72,0,30,10,48,0,0,2,59,6,34,0,7,5,0,0,0,5,1,11,0,0,16,0,38,0,0,0,12,0,43,6,18,0,481,0,0,0,1,0,0,3,0,0,0,0,42,332,0,0,0,0,0,1,0,0,0,0,0,11,0,0,7772,43,264,0,53,0,0,0,0,0,19,0,0,0,0,0,7,17,817,0,0,12,0,0,0,0,0,267,5,5,0,0,2,0,274,0,7,0,0,3701,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,10,10,10,0,0,0,551,0,83,0,0,0,82,122,173,427,536,0,0,0,0,1,0,2,0,0,0,0,0,0,1103,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,77,518,53,0,0,465,0,837,0,0,0,248,98,0,0,0,0,0,0,0,0,0,258,1,0,0,0,11,0,0,0,0,42,280,73,0,0,0,0,0,0,0,0,579,0,0,832,3,0,1,1,0,0,0,0,5,0,0,0,2,0,0,0,0,0,55,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,0,0,0,0,0,3,39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,113,0,0,0,0,1,55,587,0,56,9,0,0,0,0,0,245,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,0,0,0,0,0,0,0,38,0,0,0,0,0,3,747,7646,5 +0,0,0,15,0,59,5,0,37,0,11,0,0,2,9,0,91,0,7,5,0,0,0,6,49,59,9,0,62,0,1,1,0,0,28,0,59,6,58,0,76,0,0,0,1,0,0,1,1,0,0,0,53,202,0,0,0,0,0,1,0,0,0,10,0,11,0,0,1963,59,362,0,62,0,0,0,0,0,6,0,0,0,0,0,8,16,174,0,0,28,0,0,2,14,0,720,35,3,1,0,2,0,268,0,2,0,0,1761,0,0,0,0,5,0,4,0,1,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,10,10,10,0,0,0,179,0,74,0,0,0,104,273,232,511,136,0,0,0,0,1,0,7,0,0,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,12,275,18,0,0,234,0,634,0,0,0,118,42,0,0,0,0,0,0,0,0,0,162,1,0,4,0,60,0,0,0,0,52,141,47,0,0,74,0,12,0,9,0,395,0,0,19,3,0,1,1,0,0,0,0,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,234,0,0,0,0,1,87,100,0,123,9,0,0,0,0,0,130,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,333,67,5 +0,0,0,6,0,26,3110,0,4454,34,712,0,0,0,43,0,36,0,7,4,0,0,0,1,0,3,9,0,6,0,1,0,0,0,12,0,26,6,21,0,7622,0,0,0,1,0,0,6,0,0,0,0,3,306,0,0,0,0,0,1,0,0,3,0,0,73,0,0,18829,26,8398,0,7,0,0,0,0,0,25,0,0,0,0,0,1,9,2363,0,0,12,0,0,10,4440,0,32630,3455,11,1,0,2,0,20316,0,39,0,0,3067,0,0,0,0,39,0,1,0,0,0,0,1,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1997,0,140,0,0,0,6,49,50,17126,1600,0,0,0,0,1,0,1,0,0,0,0,0,0,15487,0,0,0,0,0,0,0,0,0,0,0,0,6,0,4,0,0,0,0,0,0,8,43,392,6,0,0,3397,0,538,0,0,0,3292,71,0,0,0,0,0,0,0,0,0,8362,1,0,0,0,5,0,0,0,0,3,163,8528,0,0,7893,0,0,0,0,12,662,0,0,3018,0,0,1,0,0,0,0,0,13,0,1,0,26,0,0,0,0,0,34,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,74,0,0,0,0,1,38,398,0,19,0,0,0,0,0,0,8350,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,46,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8549,114,5 +18,0,0,7,0,95,32,0,54,17,26,0,0,6,25,0,865,0,7,6,0,0,0,8,0,15,32,0,29,0,2,6,0,0,54,1317,95,6,12,0,105,0,0,0,1,0,0,2,0,0,0,0,12,401,0,0,0,0,0,1,0,0,0,0,0,23,0,0,105804,95,1126,0,33,0,0,0,0,0,58,0,0,0,0,0,9,128,17384,0,0,54,0,0,0,0,0,397,20,3,0,0,2,0,1154,0,19,77,0,7638,0,0,0,0,10,12,2,10,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,16,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,62,12,12,12,0,0,0,14341,0,127,0,0,0,32,93,899,1970,14298,0,0,0,0,1,0,8,0,0,0,0,0,0,954,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,2,0,84,35,632,7,0,0,585,0,535,1,0,0,416,97,0,0,0,0,0,0,0,0,0,1015,1,0,0,0,14,0,0,0,0,9,331,12,0,0,134,0,0,0,0,0,5628,1,0,531,29,0,1,1,0,0,0,0,5,0,0,0,1,0,0,0,0,0,19,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,29,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,129,1,1,1,0,86,0,0,0,0,1,149,241,0,70,14,0,0,0,0,0,149,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2719,68,5 +1,0,0,13,0,39,12,0,169,31,55,0,1,3,46,0,79,0,7,6,0,0,0,1,22,6,12,0,37,0,1,0,0,0,18,0,39,302,61,0,351,0,3,0,1,0,0,7,0,0,0,0,25,252,0,0,0,0,0,1,0,0,0,0,0,47,0,0,4218,39,463,0,38,0,0,0,0,0,19,0,0,0,0,0,3,15,356,0,0,18,0,0,1,117,0,1120,60,7,1,0,2,0,833,0,25,0,7,1555,0,0,1,0,31,0,7,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,387,0,154,0,0,0,50,178,121,2610,382,0,0,0,0,1,0,0,0,0,0,0,0,0,799,0,0,0,0,0,0,0,0,0,0,0,0,7,0,4,0,0,0,0,0,0,19,43,336,15,0,0,343,0,1271,0,0,0,235,68,0,13,0,0,0,0,6,0,0,372,1,0,0,0,29,0,0,0,0,9,145,442,0,0,189,0,0,0,0,6,822,0,0,200,0,0,1,0,1,0,0,0,11,0,0,0,4,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,76,1,1,1,0,82,0,0,0,0,1,57,383,0,56,0,0,0,0,0,0,405,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,33,0,0,0,0,0,0,0,0,0,0,0,0,0,3,828,471,5 +1,0,0,6,1,38,35,1,67,2,10,0,0,9,6,0,793,0,9,2,0,0,0,7,0,10,0,0,6,0,0,0,0,1,3,5454,39,54,0,0,54,0,0,0,1,0,0,1,0,0,0,0,1,427,0,0,0,0,0,1,0,0,0,2,0,2,0,0,12706,38,889,0,4,0,0,0,0,0,19,0,0,0,0,0,8,30,1864,0,1,3,1,0,1,0,0,291,30,2,0,0,4,1,810,0,1,32,0,2498,0,0,0,0,3,1,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,541,0,65,0,0,0,2,5,404,567,531,0,0,0,0,1,0,4,0,0,0,0,0,0,260,1,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,216,28,510,7,0,0,454,0,535,0,1,0,185,36,0,0,0,0,0,0,0,0,0,929,1,0,0,0,9,0,0,0,0,2,159,61,0,0,35,0,0,0,0,0,2536,1,0,66,9,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,43,1,1,1,0,9,0,0,0,0,9,42,163,0,4,12,0,0,0,0,0,103,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,2,788,174,5 +2,0,0,26,1,105,74,1,219,53,25,2,1,7,145,0,269,0,48,7,0,0,0,10,22,28,84,0,66,0,23,0,0,1,50,0,106,326,77,0,417,0,0,0,1,0,0,2,0,0,0,0,50,376,0,9,0,0,0,1,0,0,0,10,0,111,0,0,5834,105,970,0,88,0,0,0,0,0,20,0,0,0,0,0,12,28,800,0,1,50,1,0,4,76,0,1027,85,3,0,0,4,1,1369,0,41,0,7,3851,0,0,0,0,30,1,4,0,0,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,10,10,10,0,0,0,619,0,185,0,0,0,98,298,335,1064,633,0,0,0,0,1,0,3,0,0,0,0,0,0,1640,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,158,102,676,31,0,0,654,0,3243,0,1,0,342,160,0,0,0,0,0,0,0,0,0,790,1,0,0,0,39,0,0,0,0,27,234,212,0,0,215,0,8,0,6,0,1506,0,0,353,3,0,1,9,1,0,0,0,2,0,0,0,2,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,3,31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,132,1,1,1,0,235,0,0,0,0,9,156,228,0,192,9,0,0,0,0,0,387,17,0,0,0,0,0,0,0,0,0,0,0,2,0,1,59,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2973,655,5 +32,0,0,59,1,80,94,1,338,46,245,0,0,0,252,1,211,0,9,8,0,0,0,9,18,20,63,0,39,0,5,0,0,1,43,0,81,127,64,0,543,0,0,0,1,0,0,6,0,0,0,0,28,805,0,8,0,0,0,1,0,0,1,8,0,74,0,0,61915,80,1281,0,44,0,0,0,0,0,24,0,0,0,1,1,10,18,19047,0,1,43,1,0,7,188,0,1859,335,11,0,0,4,1,1978,0,52,2,0,4996,0,0,32,0,29,0,5,0,0,0,0,1,0,0,0,12,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,0,0,0,0,0,0,6870,0,199,0,0,0,56,268,166,1547,6859,0,0,0,0,1,0,1,0,0,0,0,0,0,7370,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,131,217,670,66,0,0,811,0,2818,0,1,0,547,175,0,0,0,0,0,0,0,0,0,1150,1,0,0,0,35,0,0,0,0,28,206,606,0,0,841,0,0,0,0,2,7705,0,0,18565,0,0,1,0,0,0,0,0,12,0,1,0,5,0,0,0,0,0,64,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,106,1,1,1,0,128,0,0,0,0,9,124,451,0,127,0,0,0,0,0,0,631,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,58,0,0,0,0,0,0,0,0,0,0,0,1,0,3,10046,481,5 +0,0,0,6,0,25,6,0,77,14,28,0,0,0,26,0,35,0,6,2,0,0,0,3,15,11,0,0,23,0,1,0,0,0,14,0,25,6,123,0,148,0,0,0,1,0,0,5,0,0,0,0,16,439,0,0,0,0,0,1,0,0,0,0,0,24,0,0,3203,25,270,0,24,0,0,0,0,0,22,0,0,0,0,0,3,11,453,0,0,14,0,0,2,57,0,654,100,8,0,0,2,0,344,0,17,0,0,1073,0,0,0,0,6,0,6,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,25,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,374,0,136,0,0,0,32,309,49,485,388,0,0,0,0,1,0,0,0,0,0,0,0,0,848,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,25,294,6,0,0,378,0,728,0,0,0,308,26,0,24,0,0,0,0,0,0,0,178,1,0,0,0,20,0,0,0,0,6,146,303,0,0,671,0,0,0,0,0,990,0,0,508,0,0,1,3,0,0,0,0,11,0,0,0,3,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,104,0,0,0,0,1,39,503,0,35,0,0,0,0,0,0,204,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,3,0,0,0,0,0,0,0,0,0,0,0,0,4,1342,63,5 +1,0,0,11,0,38,4,0,33,0,4,1,0,2,8,0,35,0,7,4,0,0,0,5,0,9,9,0,5,0,3,0,0,0,9,0,38,6,9,0,63,0,0,0,1,0,0,3,0,0,0,0,4,152,0,0,0,0,0,1,0,0,0,0,0,9,0,0,6900,38,93,0,7,0,0,0,0,0,16,0,0,0,0,0,7,15,590,0,0,9,0,0,0,0,0,90,5,5,0,0,2,0,94,0,3,0,0,790,0,1,0,0,0,0,7,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,10,10,10,0,0,0,581,0,89,0,0,0,6,28,197,67,588,0,0,0,0,1,0,4,0,0,0,0,0,0,1756,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,23,196,15,0,0,290,0,672,0,0,0,182,10,0,0,0,0,0,0,0,0,0,94,1,0,0,0,9,0,0,0,0,3,124,140,0,0,0,0,2,0,0,0,574,0,0,1841,2,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,36,0,0,0,0,1,47,326,0,18,8,0,0,0,0,0,55,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,664,85,5 +0,0,0,16,0,67,28,0,112,24,24,0,1,5,40,0,126,0,7,9,0,0,0,6,49,13,20,0,66,0,3,0,0,0,27,0,67,224,63,0,273,0,0,0,1,0,0,5,0,0,0,0,57,311,0,0,0,0,0,1,0,0,0,0,0,31,0,0,6556,67,534,0,67,0,0,0,0,0,24,0,0,0,0,0,9,20,856,0,0,27,0,0,3,50,0,1026,80,10,0,0,2,0,579,0,21,0,6,3227,0,0,0,0,15,0,8,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,10,10,10,0,0,0,784,0,119,0,0,0,112,254,257,1128,565,0,0,0,0,1,0,4,0,0,0,0,0,0,756,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,42,44,401,17,0,0,434,0,1421,0,0,0,289,115,0,0,0,0,0,0,0,0,0,343,1,0,0,0,64,0,0,0,0,55,169,239,0,0,182,0,3,0,0,2,686,0,0,156,3,0,1,1,1,0,0,0,12,0,0,0,1,0,0,0,0,0,25,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,86,1,1,1,0,90,0,0,0,0,1,94,378,0,93,9,0,0,0,0,0,282,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,644,188,5 +0,0,0,12,2,23,4,8,51,2,12,0,0,5,7,0,44,0,7,6,0,3,2,2,0,1,0,0,2,0,0,0,0,2,4,0,25,6,102,0,79,0,0,0,1,0,0,3,0,0,0,0,1,259,0,0,0,0,0,1,0,0,0,3,0,11,0,0,13891,23,266,0,3,0,0,0,0,0,12,6,0,0,0,0,3,8,1165,0,8,4,2,0,1,13,0,256,35,4,0,0,2,2,142,0,2,0,0,617,0,0,0,0,1,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,1196,0,61,0,0,0,2,12,78,238,1176,0,0,0,0,1,0,0,0,0,0,0,0,0,3899,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,84,11,223,17,0,0,259,0,843,0,0,0,126,38,0,0,0,0,0,0,0,0,0,130,1,0,0,0,13,0,0,0,0,2,105,115,0,0,44,0,0,0,0,0,1440,0,0,4320,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,4,0,0,0,0,18,29,235,0,3,0,0,0,0,0,0,97,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1360,122,5 +3,0,0,10,3,33,6,12,106,8,11,0,0,4,31,0,540,0,8,12,0,6,0,5,1,0,0,0,2,0,1,0,0,3,9,0,36,174,3,0,218,0,0,0,1,0,0,1,1,0,0,0,1,127,0,0,0,0,0,1,0,0,0,0,0,25,0,0,1240,33,934,0,3,0,0,0,0,0,6,9,0,0,0,0,2,5,136,0,12,9,3,0,1,15,0,214,15,4,0,0,2,3,213,0,18,2,0,534,0,0,0,0,3,1,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,127,0,3,0,0,0,0,104,0,79,0,0,1,2,8,68,65088,193,0,0,0,0,1,0,1,0,0,0,0,0,0,454,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,78,26,344,16,0,0,415,0,5516,0,0,0,232,31,0,0,0,0,0,0,0,0,0,706,1,0,2,0,24,0,0,0,0,4075,152,107,0,0,30,0,0,0,0,0,867,0,0,102,0,0,1,0,0,0,0,0,6,0,1,0,2,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,3,0,0,0,0,26,45,70,0,3,0,0,0,0,0,0,538,6,0,0,0,0,0,0,0,0,0,0,0,3,0,1,13,0,0,0,0,0,0,0,0,0,0,0,6,0,3,2196,51,5 +2,0,0,12,1,40,349,1,1127,13,350,0,0,2,43,0,79,0,9,4,0,0,0,6,0,9,3,0,11,0,12,0,0,1,13,0,41,118,4,0,1722,0,0,0,1,0,0,38,0,0,0,0,13,1149,0,0,0,0,0,1,0,0,0,26,0,56,0,0,14522,40,2137,0,21,0,0,0,0,0,138,0,0,0,0,3,8,70,4359,0,1,13,1,0,2,1079,0,8480,1550,58,0,0,4,1,4648,0,16,0,0,1717,0,0,0,0,23,0,22,0,7,0,0,1,0,0,0,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,29,0,0,0,0,0,0,0,0,5,0,28,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,10,10,10,0,0,0,3191,0,344,0,0,0,24,35,197,4642,3137,0,0,0,0,1,0,2,0,0,0,0,0,0,4029,0,0,0,0,0,0,0,0,0,0,0,0,38,1,18,0,0,0,0,1,1,162,50,719,37,0,0,1529,0,3035,0,1,0,1252,45,0,0,0,0,0,0,28,0,0,1959,1,0,0,0,10,0,0,0,0,13,383,2595,0,0,4638,0,0,0,0,0,811,0,0,1027,3,0,1,1,1,0,0,0,71,0,0,0,18,0,0,0,0,0,11,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,1,0,1,65,1,1,1,0,39,0,0,0,0,9,54,1145,0,26,9,0,0,0,0,0,2123,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,17,0,0,0,0,0,0,0,0,0,0,0,1,0,21,2171,1005,5 +0,0,0,7,1,35,6,4,67,2,15,0,0,0,10,1,49,0,7,6,0,1,0,8,0,2,9,0,15,0,1,1,0,0,20,0,36,6,120,0,104,0,0,0,1,0,0,6,0,0,0,0,8,211,0,0,0,0,0,1,0,0,0,1,0,19,0,0,3212,35,279,0,17,0,0,0,0,0,24,3,0,0,0,0,3,9,307,0,4,20,0,0,1,36,0,391,25,9,0,0,2,1,279,0,7,0,0,1256,0,0,0,0,8,0,4,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,281,0,115,0,0,0,16,38,57,449,253,0,0,0,0,1,0,4,0,0,0,0,0,0,473,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,10,246,9,0,0,318,0,10502,0,0,0,206,38,0,0,0,0,0,0,0,0,0,155,1,0,0,0,15,0,0,0,0,9,121,206,0,0,66,0,1,0,0,0,574,0,0,167,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,35,0,0,0,0,9,56,479,0,28,0,0,0,0,0,0,162,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5,404,100,5 +12,0,0,19,2,87,36,2,188,46,43,0,1,5,110,0,136,0,8,19,0,2,0,8,8,10,45,0,27,0,4,0,0,0,41,0,89,175,35,0,380,0,0,0,1,0,0,6,0,0,0,0,17,297,0,0,0,0,0,1,0,0,0,8,0,96,0,0,2779,87,735,0,29,0,0,0,0,0,21,6,0,0,0,1,15,28,298,0,2,41,0,0,5,93,0,1017,160,6,0,0,2,2,1021,0,48,0,6,2676,0,0,1,0,14,3,0,0,0,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,7,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,1,0,101,10,10,10,0,0,0,302,0,159,0,0,0,32,117,297,902,289,0,0,0,0,1,0,3,0,0,0,0,0,0,858,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,37,73,491,23,0,0,518,0,879,0,0,0,310,204,0,0,0,0,0,0,0,0,0,527,1,0,0,2,37,0,0,0,0,16,196,282,0,0,391,0,0,0,0,0,760,0,0,59,3,0,1,1,0,0,0,0,5,0,0,0,1,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,108,1,1,1,0,39,0,0,0,0,17,130,351,0,77,9,0,0,2,0,0,445,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,56,0,0,0,0,0,0,0,0,0,0,0,2,0,3,725,133,5 +0,0,0,10,0,37,13,0,42,0,4,0,0,6,3,0,796,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,2,5142,37,6,0,0,42,0,1,0,1,0,0,2,0,0,0,0,1,668,0,0,0,0,0,1,0,0,0,0,0,3,0,0,149491,37,887,0,3,0,0,0,0,0,27,0,0,0,0,0,9,29,26137,0,0,2,0,0,0,0,0,192,20,3,1,0,2,0,850,0,0,0,0,3948,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,21664,0,47,0,0,0,1,4,384,1332,21634,0,0,0,0,1,0,3,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,15,227,14,0,0,254,0,304,0,0,0,103,7,0,0,0,0,0,0,0,0,0,870,1,0,0,0,10,0,0,0,0,1,135,15,0,0,1,0,0,0,0,0,4299,1,0,742,15,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,15,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,5,0,0,0,0,1,39,25,0,4,14,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2326,47,5 +0,0,0,8,0,44,81,0,139,28,47,0,0,2,36,0,51,0,7,6,0,0,0,3,0,5,15,0,10,0,2,0,0,0,19,0,44,42,20,0,266,0,0,0,1,0,0,1,0,0,0,0,6,200,0,0,0,0,0,1,0,0,2,1,0,40,0,0,1721,44,379,0,12,0,0,0,0,0,6,0,0,0,0,0,3,5,247,0,0,19,0,0,2,116,0,1013,200,1,0,0,2,0,677,0,36,0,0,1679,0,0,0,0,14,0,2,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,1,0,0,0,0,508,0,98,0,0,0,12,58,76,1118,288,0,0,0,0,1,0,0,0,0,0,0,0,0,913,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,36,249,8,0,20,279,0,653,0,0,3,172,172,0,0,0,0,0,0,0,0,0,363,1,0,0,0,9,0,0,0,0,8,135,218,0,0,456,0,0,0,0,3,258,0,0,130,0,0,1,0,0,0,0,0,2,0,5,0,6,0,0,0,0,0,27,0,0,2,0,5,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,68,0,0,0,0,3,63,93,0,32,0,0,0,0,0,0,320,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,38,0,0,0,0,0,0,0,0,0,0,0,0,0,2,268,92,5 +4,0,0,15,2,80,71,2,235,54,46,0,1,4,130,0,196,0,11,9,0,0,0,6,4,7,27,0,22,0,1,0,0,2,40,0,82,551,39,0,360,0,0,0,1,0,0,6,0,0,0,0,11,662,0,1,0,0,0,1,0,0,0,0,0,71,0,0,8033,80,689,0,23,0,0,0,0,0,23,0,0,0,0,0,7,14,291,0,2,40,2,0,6,82,0,915,150,12,0,0,6,2,890,0,52,0,6,14323,0,0,0,0,8,0,5,0,0,0,3,1,0,0,0,21,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,164,0,1,0,0,0,0,0,1,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,336,0,273,0,0,0,22,104,254,1614,357,0,0,0,0,1,0,2,0,0,0,0,0,0,1276,0,0,0,0,0,0,0,0,0,2,0,0,6,0,0,0,0,0,0,0,2,248,122,1131,18,0,0,856,0,4297,0,2,0,465,253,0,0,0,0,0,0,0,0,0,694,1,0,0,0,19,0,0,0,0,9,245,375,0,0,479,0,0,0,0,27,1240,0,0,184,0,0,1,0,0,0,0,0,16,0,0,0,0,0,0,1,0,0,51,1,0,6,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,178,1,1,1,0,72,0,0,0,0,29,122,431,0,57,0,0,0,0,0,0,441,8,0,1,0,0,0,0,0,0,0,0,0,2,0,1,62,0,0,0,0,0,0,0,0,0,0,0,2,0,4,1299,408,5 +0,0,0,13,0,41,64,0,24,1,5,0,0,6,4,0,142,0,6,2,0,0,0,8,0,11,0,0,5,0,1,0,0,0,3,1538,41,6,0,0,54,0,0,0,1,0,0,3,0,0,0,0,1,460,0,0,0,0,0,1,0,0,0,0,0,4,0,0,82207,41,434,0,2,0,0,0,0,0,136,0,0,0,0,0,9,24,12780,0,0,3,0,0,0,0,0,197,20,5,1,0,2,0,299,0,0,1,0,3150,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,0,0,0,10432,0,55,0,0,0,0,3,409,1433,10409,0,0,0,0,1,0,3,0,0,0,0,0,0,1851,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,84,27,238,23,0,0,426,0,373,0,0,0,274,14,0,0,0,0,0,0,0,0,0,251,1,0,0,0,10,0,0,0,0,1,150,83,0,0,6,0,0,0,0,0,1760,1,0,1838,65,0,1,1,0,0,0,0,4,0,0,0,2,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,1,0,0,0,0,1,44,86,0,3,14,0,1,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1331,117,5 +0,0,0,4,0,15,7,0,18,6,9,0,0,0,10,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,15,6,0,0,46,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,16,0,0,181,15,54,0,1,0,0,0,0,0,3,0,0,0,0,0,1,1,3,0,0,3,0,0,2,16,0,137,25,0,0,0,2,0,94,0,8,0,0,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,25,0,0,0,0,3,36,84,31,0,0,0,0,1,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,11,62,4,0,0,119,0,201,0,0,0,76,3,0,0,0,0,0,0,0,0,0,61,0,0,0,0,2,0,0,0,0,1,97,90,0,0,50,0,0,0,0,1,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,18,191,0,1,0,0,0,0,0,0,58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,22,5 +4,0,0,6,0,40,6,0,20,2,3,0,0,2,6,0,65,0,7,5,0,0,0,8,0,10,3,0,4,0,3,0,0,0,6,4,40,6,0,0,64,0,0,0,1,0,0,11,0,0,0,0,3,190,0,0,0,0,0,1,0,0,0,0,0,7,0,0,3163,40,182,0,5,0,0,0,0,0,54,0,0,0,0,0,12,32,520,0,0,6,0,0,0,0,0,117,5,20,0,0,2,0,93,0,2,0,0,875,0,0,2,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,14,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,12,12,12,0,0,0,337,0,142,0,0,0,4,9,235,39,300,0,0,0,0,1,0,4,0,0,0,0,0,0,853,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,1,0,32,13,202,7,0,0,372,0,549,0,0,0,235,19,0,0,0,0,0,0,0,0,0,109,1,0,0,0,13,0,0,0,0,3,124,164,0,0,0,0,0,0,0,0,316,1,0,297,4,0,1,1,1,0,0,0,21,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,5,0,0,0,0,1,46,376,0,9,11,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7,492,60,5 +0,0,0,3,0,13,2,0,12,0,2,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,13,6,0,0,6,0,0,0,1,0,0,1,1,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,2,0,0,103,13,37,0,1,0,0,0,0,0,4,0,0,0,0,0,1,4,34,0,0,0,0,0,0,0,0,6,0,4,1,0,2,0,8,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,36,0,0,0,0,3,31,5,52,0,0,0,0,1,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,87,3,0,0,98,0,2658,0,0,0,20,2,0,0,0,0,0,0,0,0,0,42,1,0,3,0,2,0,0,0,0,0,95,7,0,0,0,0,0,0,0,0,34,0,0,16,0,0,1,0,0,0,0,0,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,13,16,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,74,16,5 +0,0,0,75,0,59,39,0,432,41,204,0,1,5,87,0,145,0,7,8,0,0,0,5,2,13,42,0,23,0,8,2,0,0,26,0,59,131,35,0,716,0,0,0,1,0,0,5,0,0,0,0,17,946,0,1,0,0,0,1,0,0,0,0,0,55,0,0,16951,59,1018,0,31,0,0,0,0,0,29,0,0,0,0,0,7,19,3192,0,0,26,0,0,4,366,0,3103,830,9,0,0,2,0,1990,0,41,4,5,2960,0,0,0,0,9,0,8,0,4,0,0,1,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,14,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,10,10,10,0,0,0,2908,0,143,0,0,0,32,150,310,1608,2913,0,0,0,0,1,0,4,0,0,0,0,0,0,2023,0,0,0,0,0,0,0,0,0,0,0,0,5,1,6,0,0,0,0,1,0,37,65,855,112,0,0,1164,0,1360,0,0,0,614,78,0,0,0,0,0,0,0,0,0,920,1,0,0,0,15,0,0,0,0,12,631,994,0,0,2817,0,0,0,0,0,1369,0,0,1562,3,0,1,1,1,0,0,0,12,0,0,0,2,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,3,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,138,1,1,1,0,172,0,0,0,0,1,85,1917,0,79,9,0,0,0,0,0,737,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,49,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1412,601,5 +0,0,0,4,0,14,2,0,16,0,3,0,0,0,3,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,14,6,0,0,9,0,0,0,1,0,0,3,0,0,0,0,0,104,0,0,0,0,0,1,0,0,0,0,0,4,0,0,406,14,50,0,1,0,0,0,0,0,11,0,0,0,0,0,1,6,66,0,0,3,0,0,0,0,0,10,0,3,0,0,2,0,17,0,1,0,0,351,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,74,0,71,0,0,0,0,3,34,95,88,0,0,0,0,1,0,0,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,8,4,119,4,0,0,217,0,412,0,0,0,148,5,0,0,0,0,0,0,0,0,0,45,1,0,0,0,2,0,0,0,0,0,109,116,0,0,0,0,0,0,0,0,35,0,0,42,0,0,1,0,1,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,17,332,0,1,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,145,29,5 +1,0,0,14,0,87,128,0,196,25,29,0,1,5,47,0,86,0,25,9,0,0,0,9,6,18,27,0,24,0,1,0,0,0,41,0,87,102,40,0,415,0,0,0,1,0,0,2,0,0,0,0,14,341,0,0,0,0,0,1,0,0,0,3,0,39,0,0,3797,87,568,0,24,0,0,0,0,0,14,0,0,0,0,0,11,19,399,0,0,41,0,0,3,145,0,1279,115,4,0,0,2,0,1012,0,27,0,5,4093,0,0,0,0,12,1,4,0,0,0,0,1,3,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,10,10,10,0,0,0,434,0,129,0,0,0,26,123,271,9275,390,0,0,0,0,1,0,3,0,0,0,0,0,0,1253,1,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,1,0,37,56,454,19,0,0,549,0,1278,0,0,0,389,158,0,1,0,0,0,0,0,0,0,517,1,0,0,0,24,0,0,0,0,11,212,364,0,0,310,0,0,0,0,1,626,0,0,182,3,0,1,1,1,0,0,0,5,0,3,0,7,0,0,0,0,0,23,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,3,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,126,1,1,1,0,100,0,0,0,0,1,128,278,0,61,9,0,0,0,0,0,441,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,31,0,0,0,0,0,0,0,0,0,0,0,0,0,3,648,222,5 +2,0,0,6,1,44,35,1,74,2,9,0,0,10,6,0,1067,0,9,2,0,0,0,7,0,10,0,0,6,0,1,0,0,1,5,9700,45,54,0,0,58,0,0,0,1,0,0,1,0,0,0,0,1,494,0,0,0,0,0,1,0,0,0,4,0,2,0,0,32675,44,1168,0,3,0,0,0,0,0,19,0,0,0,0,0,8,32,5894,0,1,5,1,0,1,0,0,301,35,2,0,0,4,1,1088,0,1,27,0,2671,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,3123,0,48,0,0,0,2,5,428,701,3115,0,0,0,0,1,0,6,0,0,0,0,0,0,2190,0,0,0,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,1,0,234,28,389,7,0,0,432,0,515,0,1,0,157,19,0,0,0,0,0,0,4,0,0,1210,1,0,0,0,9,0,0,0,0,2,160,27,0,0,29,0,0,0,0,0,3922,1,0,1643,9,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,1,51,1,1,1,0,9,0,0,0,0,9,50,89,0,5,12,0,0,0,0,0,107,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1937,47,5 +3,0,0,16,1,96,68,1,169,23,48,0,0,6,35,0,189,0,47,4,0,0,0,19,0,13,21,0,15,0,2,4,0,1,27,863,97,57,9,0,292,0,0,0,1,0,0,3,0,0,0,0,8,616,0,0,0,0,0,1,0,0,0,7,0,33,0,0,10580,96,584,0,17,0,0,0,0,0,21,0,0,0,0,0,20,45,1660,0,1,27,1,0,4,109,0,1190,195,5,0,0,4,1,808,0,26,25,0,3872,0,0,0,0,6,3,7,0,0,0,0,1,0,0,0,18,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,47,0,1,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,1,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,12,12,12,0,0,0,793,0,232,0,0,0,15,53,551,1136,891,0,0,2,0,1,0,4,0,0,0,0,0,0,1326,3,0,0,0,0,0,0,0,0,0,0,0,3,4,2,0,0,0,0,1,0,195,58,701,20,0,0,701,0,1970,0,1,0,333,188,0,30,0,0,0,0,0,0,0,562,1,0,0,0,23,0,0,0,0,6,233,296,0,0,504,0,0,0,0,0,2446,1,0,184,10,0,1,67,0,0,0,0,5,0,0,0,5,0,0,0,0,0,23,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,10,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,151,1,1,1,0,61,0,0,0,0,9,124,317,0,41,14,0,0,0,0,0,371,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,33,26,0,0,0,0,0,0,0,0,0,0,1,0,2,1040,348,5 +0,0,0,13,0,21,3,0,66,9,17,0,0,0,12,0,27,0,9,1,0,0,0,2,1,0,0,0,4,0,3,0,0,0,8,2105,21,70,4,0,122,0,0,0,1,0,0,5,0,0,0,0,3,126,0,0,0,0,0,1,0,0,0,0,0,22,0,0,1411,21,156,0,7,0,0,0,0,0,19,0,0,0,0,0,2,8,291,0,0,8,0,0,1,46,0,407,30,6,0,0,2,0,275,0,10,0,0,902,0,0,0,0,2,0,10,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,241,0,86,0,0,0,6,14,42,641,241,0,0,0,0,1,0,0,0,5,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,15,19,330,17,0,0,364,0,1612,0,0,0,227,384,0,0,0,0,0,0,0,0,0,134,1,0,0,0,4,0,0,0,0,2,134,230,0,0,62,0,0,0,0,0,370,0,0,91,0,0,1,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,9,0,0,0,4,1,29,324,0,7,0,0,0,0,0,0,159,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,6,250,129,5 +0,0,0,8,0,48,75,0,139,16,42,0,0,6,22,0,882,0,7,4,0,0,0,9,0,13,6,0,15,0,2,0,0,0,9,2987,48,6,9,0,241,0,0,0,1,0,0,3,0,0,0,0,4,339,0,1,0,0,0,1,0,0,2,3,0,25,0,0,17104,48,1195,0,13,0,0,0,0,0,29,0,0,0,0,1,10,64,2926,0,0,9,0,0,2,93,0,992,165,6,0,0,2,0,1390,0,15,35,0,2505,0,0,0,0,10,0,1,0,0,0,0,1,0,0,0,8,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1144,0,73,0,0,0,10,35,496,1222,1119,0,0,0,0,1,0,3,0,0,0,0,0,0,1798,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,84,36,347,11,0,0,416,0,716,0,0,0,245,22,0,0,0,0,0,0,0,0,0,1173,1,0,0,0,13,0,0,0,0,4,154,224,0,0,396,0,0,0,0,2,3065,1,0,1364,14,0,1,1,0,0,0,0,4,0,1,0,7,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,14,8,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,61,0,0,0,0,1,57,341,0,22,14,0,0,0,0,0,294,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1269,116,5 +0,0,0,9,0,28,94,0,155,20,50,0,0,0,27,0,40,0,7,4,0,0,0,1,2,2,9,0,9,0,1,0,0,0,13,0,28,45,12,0,264,0,0,0,1,0,0,6,0,0,0,0,5,154,0,0,0,0,0,1,0,0,2,1,0,39,0,0,31361,28,415,0,10,0,0,0,0,0,25,0,0,0,0,2,1,12,8452,0,0,13,0,0,4,138,0,1145,220,11,1,0,2,0,706,0,24,0,0,7497,0,0,0,0,19,0,1,0,0,0,0,1,0,0,0,28,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,2,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,5833,0,122,0,0,0,10,37,62,1060,5729,0,0,0,0,1,0,0,0,0,0,0,0,0,3946,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,27,197,9,0,0,282,0,596,0,0,0,202,259,0,0,0,0,0,0,0,0,0,373,1,0,0,0,7,0,0,0,0,6,124,275,0,0,518,0,0,0,0,3,3114,0,0,2642,0,0,1,0,0,0,0,0,12,0,5,0,14,0,0,0,0,0,20,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,23,0,0,0,0,1,41,188,0,21,0,0,0,0,0,0,353,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3201,214,5 +0,0,0,9,0,32,242,0,362,46,112,0,0,0,57,0,43,0,7,5,0,0,0,2,1,1,3,0,2,0,1,0,0,0,10,0,32,66,7,0,709,0,0,0,1,0,0,6,0,0,0,0,1,253,0,0,0,0,0,1,0,0,7,0,0,86,0,0,4641,32,847,0,3,0,0,1,0,0,25,0,0,0,0,0,6,13,1071,0,0,10,0,0,9,348,0,2754,425,10,0,0,2,0,1667,0,49,0,0,2705,0,0,0,0,20,0,0,0,0,0,0,1,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,823,0,155,0,0,0,2,17,75,3049,824,0,0,0,0,1,0,4,0,0,0,0,0,0,2225,0,0,0,0,0,0,0,0,0,0,0,0,6,0,3,0,0,0,0,0,0,8,56,285,9,0,0,626,0,731,0,0,0,521,35,0,2,0,0,0,0,0,0,0,823,1,0,0,0,8,0,0,0,0,2,175,828,0,0,1090,0,56,0,0,26,202,0,0,195,0,0,1,3,0,0,0,0,14,0,1,0,13,0,0,0,0,0,46,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,44,1,1,1,0,18,0,0,0,0,1,42,492,0,7,0,0,0,0,0,0,927,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,1,0,0,0,0,0,0,0,0,0,0,0,0,6,425,176,5 +0,0,0,3,0,21,2,0,32,0,2,0,0,0,2,0,75,0,6,1,0,0,0,1,0,0,36,0,6,0,13,0,0,0,1,0,21,6,0,0,8,0,0,0,1,0,0,3,0,0,0,0,12,75,0,0,0,0,0,1,0,0,0,0,0,1,0,0,894,21,174,0,19,0,0,0,0,0,16,0,0,0,0,0,1,6,108,0,0,1,0,0,0,0,0,65,0,5,0,0,2,0,239,0,0,0,0,521,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,121,0,60,0,0,0,24,61,35,69,126,0,0,0,0,1,0,0,0,0,0,0,0,0,362,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,9,155,3,0,0,132,0,324,0,0,0,44,15,0,0,0,0,0,0,0,0,0,119,1,0,0,0,2,0,0,0,0,13,103,28,0,0,0,0,0,0,0,0,180,0,0,143,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,18,0,0,0,0,1,22,57,0,55,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,123,161,5 +0,0,0,11,0,27,35,0,122,23,29,0,1,3,36,0,61,0,7,6,0,0,0,2,1,3,15,0,10,0,1,0,0,0,9,0,27,99,20,0,250,0,0,0,1,0,0,3,0,0,0,0,5,171,0,0,0,0,0,1,0,0,0,0,0,26,0,0,3446,27,314,0,11,0,0,0,0,0,10,0,0,0,0,0,3,8,842,0,0,9,0,0,3,69,0,621,105,3,0,0,2,0,531,0,16,0,5,1953,0,0,0,0,12,0,2,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,496,0,67,0,0,0,10,50,69,506,516,0,0,0,0,1,0,0,0,0,0,0,0,0,450,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,13,33,258,12,0,0,280,0,719,0,0,0,182,84,0,1,0,0,0,0,0,0,0,294,1,0,0,0,9,0,0,0,0,6,137,215,0,0,268,0,0,0,0,0,358,0,0,33,0,0,1,0,1,0,0,0,3,0,0,0,2,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,38,0,0,0,0,1,36,265,0,29,0,0,0,0,0,0,209,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,27,0,0,0,0,0,0,0,0,0,0,0,0,0,2,289,143,5 +1,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,23,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,8,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,16,0,0,0,0,3,21,5,27,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,29,0,0,0,32,0,39,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,4,5 +1,0,0,19,1,39,62,1,150,12,26,0,1,2,29,1,108,0,9,6,0,0,0,1,1,5,15,0,12,0,1,0,0,1,17,0,40,364,41,0,226,0,0,0,1,0,0,19,2,0,0,0,6,346,0,0,0,0,0,1,0,0,0,0,0,20,0,0,5798,39,462,0,13,0,0,0,0,0,60,0,0,0,0,6,1,29,813,0,1,17,1,0,3,72,0,675,90,31,0,0,4,1,530,0,12,0,6,1762,0,1,0,0,12,0,10,0,0,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,753,0,388,0,0,0,12,170,114,626,735,0,0,0,0,1,0,1,0,0,0,0,0,0,2062,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,115,63,437,25,0,0,642,0,1262,0,1,0,430,94,0,0,0,0,0,0,0,0,0,388,1,0,8,0,8,0,0,0,0,6,161,373,0,0,223,0,0,0,0,0,841,0,0,767,0,0,1,0,1,0,0,0,51,0,0,0,8,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,1,73,1,1,1,0,155,0,0,0,0,9,57,414,0,33,0,0,0,0,0,0,276,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,0,0,0,0,0,0,0,0,0,0,0,1,0,7,1397,352,5 +5,0,0,11,0,89,87,0,149,216,215,0,1,0,240,6,83,0,7,10,0,0,0,7,13,8,17,0,37,0,1,0,0,0,50,0,89,93,66,0,950,0,0,0,1,0,0,1,0,0,0,0,20,296,0,0,0,0,0,1,0,0,0,0,0,49,0,0,9024,89,850,0,38,0,0,0,0,0,4,0,0,0,0,0,9,11,3366,0,0,50,0,0,5,120,0,1114,75,1,0,0,2,0,1455,0,29,0,1,4755,0,0,0,0,11,3,3,0,3,0,0,1,6,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,2363,0,136,0,0,0,40,140,197,2250,2245,0,0,0,0,1,0,0,0,0,0,0,0,0,789,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,8,423,538,17,0,0,483,0,1090,0,0,0,337,57,0,0,0,0,0,0,0,0,0,788,1,0,0,0,30,0,0,0,0,10,255,274,0,0,196,0,0,0,0,0,817,0,0,12,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,211,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,147,1,1,1,0,145,0,0,0,0,1,139,96,0,63,0,0,0,0,0,0,638,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,226,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1544,287,5 +3,0,0,10,1,70,57,1,140,2,27,0,0,9,11,0,2046,0,9,4,0,0,0,8,0,12,6,0,21,0,1,0,0,1,14,33990,71,54,11,0,114,0,0,0,1,0,0,1,0,0,0,0,3,1227,0,0,0,0,0,1,0,0,0,6,0,12,0,0,218339,70,2303,0,19,0,0,0,0,0,57,0,0,0,0,0,9,107,47212,0,1,14,1,0,3,12,0,929,50,2,0,0,4,1,2215,0,2,72,1,7962,0,0,0,0,10,3,4,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,12,12,12,0,0,0,41496,0,91,0,0,0,13,75,854,3114,41449,0,0,0,0,1,0,8,0,0,13,0,0,0,753,3,0,0,0,0,0,0,0,0,0,0,0,14,4,0,0,0,0,0,1,0,221,49,732,11,0,0,745,0,796,0,1,0,392,28,0,0,0,0,0,0,0,0,0,2299,1,0,0,0,12,0,0,0,0,4,250,148,0,0,146,0,0,0,0,0,14337,1,0,435,28,0,1,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,3,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,97,1,1,1,0,77,0,0,0,0,9,85,228,0,28,12,0,0,0,0,0,192,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,3,2908,85,5 +3,0,0,8,0,49,45,0,105,7,30,0,0,2,14,0,41,0,7,4,0,0,0,6,1,9,9,0,7,0,2,0,0,0,19,0,49,98,6,0,168,0,0,0,1,0,0,19,0,0,0,0,4,331,0,0,0,0,0,1,0,0,0,0,0,22,0,0,6437,49,391,0,7,0,0,0,0,0,85,0,0,0,0,0,8,39,1134,0,0,19,0,0,2,81,0,762,135,28,0,1,2,0,464,0,11,0,0,1161,0,0,0,0,23,0,1,0,0,0,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,14,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,4,0,1,3,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,923,0,263,0,0,0,6,24,222,552,887,0,0,0,0,1,0,3,0,2,0,0,0,0,2075,0,0,0,0,0,0,0,0,0,1,0,0,19,1,10,0,0,0,0,1,2,32,21,314,8,0,0,506,0,1596,0,0,0,375,43,0,0,0,1,0,0,19,0,0,244,1,0,0,0,11,0,0,0,0,3,157,351,0,0,361,0,0,0,0,0,515,0,0,988,3,0,1,1,0,0,0,0,45,0,0,0,7,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,15,0,0,0,0,1,68,1095,0,18,9,0,0,0,0,0,273,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,14,982,155,5 +23,0,0,13,2,49,41,8,189,46,53,0,1,4,66,0,84,0,7,11,0,4,0,9,1,5,18,0,15,0,1,0,0,1,22,0,51,213,467,0,303,0,0,0,1,0,0,6,1,0,0,0,7,415,0,0,0,0,0,1,0,0,0,0,0,47,0,0,67660,49,651,0,16,0,0,0,1,2,21,6,0,0,0,0,9,16,16005,0,8,22,1,0,3,117,0,1041,200,10,0,0,2,2,802,0,39,0,8,8412,0,2,21,0,10,0,0,0,0,0,0,1,0,0,0,20,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,57,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,8482,0,197,0,0,0,14,76,141,992,8498,0,0,0,0,1,0,0,0,0,0,0,0,0,9277,0,0,0,0,3,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,17,62,446,16,0,0,440,0,1215,0,0,0,293,258,0,0,0,0,0,0,4,2,2,445,1,0,3,0,25,0,0,0,0,6,158,337,0,0,552,0,0,0,0,1,9344,0,0,24082,0,0,1,0,0,0,0,0,16,0,0,0,3,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,81,1,1,1,0,89,0,0,0,0,17,73,417,0,39,0,0,0,0,0,0,351,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,50,0,0,0,0,0,0,0,0,0,0,0,1,0,3,8814,215,5 +0,0,0,12,0,55,47,0,290,19,64,0,1,2,89,0,164,0,7,10,0,0,0,3,18,18,60,0,47,0,1,0,0,0,24,0,55,180,69,0,634,0,0,0,1,0,0,7,0,0,0,0,27,257,0,0,0,0,0,1,0,0,0,0,0,116,0,0,3768,55,833,0,48,0,0,0,0,0,31,0,0,0,0,0,3,12,306,0,0,24,0,0,3,219,0,1949,85,11,0,0,8,0,1707,0,18,0,5,2823,0,0,0,0,3,0,7,0,0,0,0,1,0,0,0,17,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,360,0,148,0,0,0,54,212,126,1757,320,0,0,0,0,1,0,0,0,0,0,0,0,0,919,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,33,41,375,13,0,0,464,0,2228,0,0,0,340,145,0,0,0,0,0,0,0,0,0,664,1,0,0,0,31,0,0,0,0,26,154,716,0,0,205,0,0,0,0,0,880,0,0,187,0,0,1,0,0,0,0,0,14,0,0,0,3,0,0,0,0,0,21,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,85,1,1,1,0,95,0,0,0,0,1,79,498,0,126,0,0,0,0,0,0,657,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2604,199,5 +0,0,0,10,0,62,84,0,208,2,59,0,0,12,12,1,1283,0,6,5,0,0,0,16,0,14,6,0,16,0,1,0,0,0,19,54733,62,6,15,0,289,0,0,0,1,0,0,2,0,0,0,0,4,1006,0,0,0,0,0,1,0,0,0,2,0,21,0,0,225694,62,1786,0,13,0,0,0,0,0,83,0,0,0,0,0,17,85,30725,0,0,19,0,0,6,146,0,1627,260,3,1,0,2,0,1982,0,4,131,0,5637,0,0,0,0,5,0,4,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,12,12,12,0,0,0,25867,0,183,0,0,0,9,34,649,7278,25907,0,0,0,0,1,0,3,0,0,0,0,0,0,9351,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,176,20,486,10,0,0,559,0,573,0,0,0,361,58,0,33,0,0,0,0,0,0,0,1665,1,0,0,0,21,0,0,0,0,2,214,293,0,0,644,0,0,0,0,0,5492,1,0,10322,42,0,1,60,0,0,0,0,3,0,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,46,46,0,0,13,0,0,0,0,0,42,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,56,0,0,0,0,31,81,364,0,23,14,0,0,0,0,0,424,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,18,25,0,0,0,0,0,0,0,0,0,0,0,0,3,2637,113,5 +1,0,0,15,0,30,41,0,135,20,30,0,1,3,33,0,61,0,7,6,0,0,0,1,1,3,15,0,10,0,1,0,0,0,12,0,30,112,17,0,282,0,0,1,1,1,0,3,0,0,0,0,5,242,0,0,0,0,0,1,0,0,0,0,0,25,0,0,4652,30,341,0,11,0,0,0,0,0,16,0,0,0,0,0,2,6,483,0,0,12,0,0,5,82,0,719,95,6,0,0,2,0,603,0,13,0,5,1148,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,0,0,432,0,114,0,0,0,10,47,70,630,455,0,0,0,0,1,0,0,0,0,0,0,0,0,1526,0,0,0,0,0,0,0,0,0,0,0,0,3,0,6,0,0,0,0,0,0,13,30,328,20,0,0,309,0,720,0,0,0,223,29,0,0,0,0,2,0,3,0,0,311,1,0,0,0,8,0,0,0,0,6,132,271,0,0,238,0,0,0,0,1,565,0,0,1073,0,0,1,0,1,0,0,0,8,0,0,0,1,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,28,0,0,0,0,1,42,364,0,29,0,0,0,0,0,0,251,4,0,0,0,0,0,1,0,0,0,0,0,0,0,1,28,0,0,0,0,0,0,0,0,0,0,0,0,0,3,710,66,5 +0,0,0,3,0,17,2,0,5,2,3,0,0,0,6,0,16,0,6,3,0,0,0,0,0,1,3,0,2,0,1,0,0,0,6,0,17,6,4,0,20,0,0,0,1,0,0,0,0,0,0,0,1,53,0,0,0,0,0,1,0,0,0,0,0,6,0,0,148,17,35,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,6,0,0,0,0,0,10,0,0,0,0,2,0,36,0,4,0,0,302,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,22,0,30,0,0,0,2,10,33,26,30,0,0,0,0,1,0,0,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,82,3,0,0,79,0,274,0,0,0,40,8,0,0,0,0,0,0,0,0,0,38,0,0,0,0,3,0,0,0,0,1,102,18,0,0,0,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,6,0,0,0,0,1,23,38,0,7,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,75,5 +4,0,0,28,3,57,37,12,157,67,29,0,1,2,121,1,124,0,7,12,0,4,3,1,4,7,27,0,19,0,1,0,0,1,31,0,60,309,1304,0,373,0,0,0,1,0,0,14,1,0,0,0,10,551,0,0,0,0,0,1,0,0,0,1,0,81,0,0,41574,57,854,0,20,0,0,0,0,0,69,9,0,0,0,2,1,26,7795,0,12,31,1,0,3,24,0,332,40,30,1,0,2,3,654,0,70,0,6,3155,0,0,0,0,7,0,1,0,0,0,0,1,0,0,0,34,6,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,16,0,10,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,137,0,0,0,0,0,0,6764,0,286,0,0,0,20,118,123,75192,6520,0,0,0,0,1,0,0,0,0,0,0,0,0,5660,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,20,141,752,35,0,0,708,0,1159,0,0,0,479,145,0,0,0,0,0,0,0,0,0,479,1,0,1,0,24,0,0,0,0,9,206,296,0,0,81,0,0,0,0,0,6603,0,0,6213,0,0,1,0,0,0,0,0,33,0,0,0,21,0,0,0,0,0,77,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,78,1,1,1,0,95,0,0,0,0,39,92,1032,0,54,0,0,0,0,0,0,329,9,0,0,0,0,0,0,0,0,0,0,0,3,0,1,71,0,0,0,0,0,0,0,0,0,0,0,3,0,10,3991,304,5 +0,0,0,8,0,41,66,0,32,9,6,0,0,15,10,0,159,0,6,3,0,0,0,7,0,11,0,0,4,0,1,0,0,0,5,7601,41,6,0,0,120,0,0,0,1,0,0,5,0,0,0,0,1,1016,0,0,0,0,0,1,0,0,0,0,0,12,0,0,160577,41,469,0,1,0,0,0,0,0,141,0,0,0,0,0,9,26,26818,0,0,5,0,0,0,0,0,436,56,6,1,0,2,0,424,0,8,0,0,4211,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,12,12,0,0,0,23331,0,66,0,0,0,0,3,411,661,23308,0,0,0,0,1,0,3,0,0,0,0,0,0,496,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,254,20,359,8,0,0,535,0,377,0,0,0,381,14,0,0,0,0,0,0,0,0,0,294,1,0,0,0,10,0,0,0,0,1,229,99,0,0,0,0,0,0,0,0,2195,1,0,230,70,0,1,1,0,0,0,0,4,0,0,0,4,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,70,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,0,0,0,0,0,1,46,170,0,2,14,0,0,0,0,0,160,2,0,0,0,0,0,0,0,0,0,0,0,1,0,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1804,78,5 +1,0,0,49,6,135,437,18,359,90,128,0,0,0,137,2,139,0,9,20,0,5,1,7,3,6,3,0,25,0,20,0,0,5,94,76,141,228,514,0,2126,0,0,0,1,0,0,3,0,0,0,0,25,774,0,0,0,0,0,1,0,0,0,7,0,132,0,0,6988,135,1706,0,45,0,0,0,0,0,12,15,0,0,0,0,9,13,490,0,18,94,5,0,17,236,0,2308,404,4,0,0,4,6,2212,0,104,7,0,5875,0,0,1,0,15,0,1,0,0,0,0,1,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,47,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,0,459,0,242,0,0,0,50,74,306,2893,488,0,0,0,0,1,0,6,0,0,0,0,0,0,2744,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,137,181,1100,70,0,0,1113,0,3073,0,1,0,703,426,0,1,0,0,0,0,0,0,0,1211,1,0,0,0,36,0,0,0,0,26,320,622,0,0,1138,0,1,0,10,68,3973,0,0,131,0,0,1,3,0,0,0,0,5,0,0,0,0,0,0,0,0,0,94,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,20,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,211,1,1,1,0,77,0,0,0,14,49,235,702,0,54,0,0,0,0,0,0,861,12,0,0,0,0,0,0,0,0,0,0,0,7,0,1,112,2,0,0,0,0,0,0,0,0,0,0,9,0,3,983,285,5 +0,0,0,8,0,14,2,0,15,4,3,0,0,0,8,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,14,6,0,0,31,0,0,0,1,0,0,11,0,0,0,0,0,109,0,0,0,0,0,1,0,0,0,0,0,9,0,0,3300,14,112,0,1,0,0,0,0,0,42,0,0,0,0,0,1,22,564,0,0,3,0,0,0,0,0,23,0,14,0,0,2,0,19,0,6,0,0,699,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,419,0,155,0,0,0,0,3,39,16,421,0,0,0,0,1,0,0,0,0,0,0,0,0,1010,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,8,9,116,11,0,0,230,0,265,0,0,0,168,18,0,0,0,0,0,0,8,0,0,49,1,0,0,0,2,0,0,0,0,0,96,132,0,0,0,0,0,0,0,0,167,0,0,526,0,0,1,0,0,0,0,0,19,0,0,0,9,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,0,0,0,0,0,1,17,267,0,1,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7,560,59,5 +0,0,0,5,0,29,36,0,105,17,29,0,0,0,28,0,46,0,7,4,0,0,0,1,0,2,15,0,8,0,1,2,0,0,14,0,29,6,12,0,208,0,0,0,1,0,0,3,0,0,0,0,5,154,0,0,0,0,0,1,0,0,1,0,0,40,0,0,1131,29,258,0,11,0,0,0,0,0,10,0,0,0,0,0,1,6,140,0,0,14,0,0,4,80,0,676,120,4,0,0,2,0,500,0,22,0,0,850,0,0,0,0,20,0,4,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,117,0,84,0,0,0,10,41,54,470,138,0,0,0,0,1,0,0,0,0,0,0,0,0,594,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,31,211,5,0,0,256,0,647,0,0,0,181,60,0,0,0,0,0,0,0,0,0,251,1,0,0,0,5,0,0,0,0,5,135,213,0,0,269,0,0,0,0,1,172,0,0,156,0,0,1,0,0,0,0,0,5,0,1,0,7,0,0,0,0,0,19,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,35,0,0,0,0,1,43,168,0,28,0,0,0,0,0,0,239,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,2,216,146,5 +0,0,0,4,0,37,43,0,33,0,2,0,0,2,2,0,769,0,6,3,0,0,0,7,0,11,0,0,4,0,1,0,0,0,2,6890,37,6,0,0,22,0,0,0,1,0,0,4,0,0,0,0,1,311,0,0,0,0,0,1,0,0,0,0,0,3,0,0,144623,37,987,0,1,0,0,0,0,0,98,0,0,0,0,0,9,24,24249,0,0,2,0,0,0,0,0,98,5,7,1,0,2,0,850,0,0,0,0,2735,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,22257,0,75,0,0,0,0,3,334,636,22237,0,0,0,0,1,0,4,0,0,0,0,0,0,452,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,10,255,4,0,0,407,0,290,0,0,0,253,11,0,0,0,0,0,0,0,0,0,857,1,0,0,0,10,0,0,0,0,0,148,83,0,0,0,0,0,0,0,0,2776,1,0,133,45,0,1,1,1,0,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,0,0,0,0,0,1,39,169,0,2,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1147,81,5 +0,0,0,30,3,20,4,3,45,9,7,0,0,0,15,1,218,0,6,7,0,6,0,1,0,1,0,0,2,0,3,0,0,3,7,337,23,244,4,0,26,0,1,0,1,0,0,1,1,0,0,0,0,809,0,0,0,0,0,1,9,0,0,0,0,4,0,0,42198,20,454,0,5,0,0,0,0,0,11,9,0,0,0,0,1,7,4819,0,3,7,3,0,0,0,0,23,0,4,0,0,2,3,427,0,3,0,1,19667,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,43,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,23,0,0,0,0,2,0,2183,0,41,0,0,0,2,5,48,9896,2196,0,0,0,0,1,0,2,0,0,1,0,0,0,322,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,63,20,1030,50,0,0,907,0,1484,0,0,0,89,477,0,0,0,0,0,0,0,0,0,296,1,0,2,0,14,0,0,0,0,8,807,3,0,0,0,0,0,0,0,0,244704,0,0,1214,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,2,0,0,0,0,363,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,25,30,7,0,6,0,0,0,0,0,0,546,3,0,0,0,0,0,0,0,0,0,0,1,3,2,5,13,0,0,0,0,0,0,0,2,0,0,0,6,0,1,3235,40,5 +4,0,0,9,1,72,86,1,153,13,43,0,0,9,21,0,746,0,9,7,0,0,0,8,0,14,15,0,25,0,1,1,0,1,15,17031,73,54,15,0,201,0,0,0,1,0,0,7,1,0,0,0,6,726,0,194,0,0,0,1,0,0,0,7,0,25,0,0,134855,72,1136,0,23,0,0,0,0,0,79,0,0,0,0,0,10,117,24529,0,1,15,1,0,3,64,0,990,125,12,0,0,4,1,1194,0,15,96,0,7866,0,0,0,0,13,4,3,0,0,0,0,1,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,29,0,1,0,0,0,0,0,0,0,0,0,1,3,4,0,0,0,0,1,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,19236,0,178,0,0,0,18,97,887,2589,19359,0,0,0,0,1,0,9,0,0,0,0,0,0,1691,4,0,0,0,0,0,0,0,0,0,0,0,25,5,2,0,0,0,0,1,0,224,45,618,10,0,0,832,0,995,0,1,0,499,81,0,0,0,0,0,0,0,0,0,1067,1,0,5,0,15,0,0,0,0,7,227,371,0,0,380,0,1,0,0,0,5412,1,0,522,36,0,1,1,1,0,0,0,18,0,0,0,4,0,0,0,0,0,12,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,36,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,106,1,1,1,0,91,0,0,0,0,9,88,665,0,42,14,0,0,0,0,0,306,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,21,0,0,0,0,0,0,0,0,0,0,0,1,0,2,3044,127,5 +2,0,0,17,2,110,44,5,201,37,38,0,1,5,70,0,169,0,9,12,0,1,1,18,42,17,33,0,40,0,38,1,0,2,58,0,112,288,73,0,454,0,0,0,1,0,0,2,0,0,0,0,57,790,0,1,0,0,0,1,0,0,0,6,0,68,0,0,15408,110,740,0,77,0,0,0,0,0,13,3,0,0,0,0,14,23,2966,0,5,58,2,0,3,102,0,1273,75,2,0,0,4,2,1068,0,46,0,5,3884,0,0,0,0,10,0,6,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,62,10,10,10,0,0,0,2244,0,142,0,0,0,42,223,291,2382,2140,0,0,0,0,1,0,6,0,0,0,0,0,0,905,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,155,94,864,33,0,0,735,0,2678,0,1,0,396,168,0,0,0,0,0,0,0,0,0,537,1,0,0,0,74,0,0,0,0,57,261,347,0,0,201,0,3,0,0,1,1268,0,0,181,3,0,1,1,0,0,0,0,4,0,0,0,3,0,0,0,0,0,36,1,0,5,2,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,3,39,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,127,1,1,1,0,189,0,0,0,0,17,170,340,0,120,9,0,0,0,0,0,442,9,0,0,0,0,0,0,0,0,0,0,0,3,0,1,43,0,0,0,0,0,0,0,0,0,0,0,3,0,3,967,223,5 +0,0,0,4,0,16,7,0,21,5,6,0,0,0,6,0,23,0,6,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,6,0,16,6,6,0,31,0,0,0,1,0,0,11,0,0,0,0,1,222,0,0,0,0,0,1,0,0,0,1,0,6,0,0,2194,16,121,0,3,0,0,0,0,0,36,0,0,0,0,2,1,17,261,0,0,6,0,0,0,0,0,28,0,14,1,0,2,0,61,0,3,0,0,912,0,0,0,0,0,0,11,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,272,0,100,0,0,0,2,18,37,61,285,0,0,0,0,1,0,1,0,0,0,0,0,0,557,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,10,10,170,4,0,0,356,0,697,0,0,0,289,36,0,0,0,0,0,0,0,0,0,69,1,0,0,0,3,0,0,0,0,1,119,229,0,0,0,0,0,0,0,0,299,0,0,169,0,0,1,0,0,0,0,0,24,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,16,0,0,0,0,1,22,469,0,7,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,8,253,169,5 +0,0,0,13,0,44,16,0,55,9,6,0,0,7,14,0,721,0,7,2,0,0,0,10,0,10,0,0,5,0,1,0,0,0,4,898,44,19,0,0,69,0,3,0,1,0,0,3,0,0,0,0,1,300,0,0,0,0,0,1,0,0,0,0,0,14,0,0,9783,44,862,0,3,0,0,0,0,0,40,0,0,0,0,0,11,32,1946,0,0,4,0,0,0,0,0,212,25,6,0,0,2,0,820,0,9,1,0,1770,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,55,12,12,12,0,0,0,579,0,64,0,0,0,1,4,410,527,551,0,0,0,0,1,0,3,0,0,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,106,30,249,16,0,0,353,0,515,0,0,0,178,14,0,0,0,0,0,0,0,0,0,826,1,0,0,0,12,0,0,0,0,2,126,105,0,0,6,0,0,0,0,0,2343,1,1,1405,16,0,1,1,1,0,0,0,6,0,2,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,16,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,5,0,0,0,0,1,48,556,0,4,12,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1081,64,5 +6,0,0,10,1,64,55,1,126,6,29,0,0,9,17,0,151,0,9,5,0,0,0,9,0,13,9,0,11,0,1,0,0,1,17,3913,65,54,10,0,184,0,0,0,1,0,0,3,0,0,0,0,4,537,0,0,0,0,0,1,0,0,1,3,0,21,0,0,13118,64,362,0,8,0,0,0,0,0,26,0,0,0,0,0,10,39,2048,0,1,17,1,0,3,51,0,716,110,5,0,0,4,1,454,0,11,28,0,2393,0,2,2,0,6,2,2,0,1,0,0,1,0,0,0,19,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,0,0,0,975,0,99,0,0,0,7,29,468,1047,817,0,0,0,0,1,0,4,0,0,0,0,0,0,651,2,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,1,0,216,39,524,11,0,0,566,0,811,0,1,0,252,42,0,0,0,0,0,0,0,0,0,396,1,0,0,0,14,0,0,0,0,3,188,144,0,0,211,0,0,0,0,2,1691,1,0,96,11,0,1,1,0,0,0,0,5,0,1,0,6,0,0,0,0,0,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,11,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,78,1,1,1,0,28,0,0,0,0,9,82,295,0,20,14,0,0,0,0,0,247,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,14,0,0,0,0,0,0,0,0,0,0,0,1,0,2,905,86,5 +2,0,0,8,1,43,34,1,90,2,14,0,0,9,10,0,776,0,9,2,0,0,0,7,0,10,0,0,8,0,3,0,0,1,7,5459,44,54,0,0,95,0,0,0,1,0,0,3,0,0,0,0,3,516,0,0,0,0,0,1,0,0,0,3,0,8,0,0,21302,43,909,0,8,0,0,0,0,0,24,0,0,0,0,1,8,35,2628,0,1,7,1,0,2,16,0,440,45,5,0,0,4,1,885,0,4,29,0,1799,0,0,0,0,2,2,0,0,1,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,1358,0,53,0,0,0,6,7,411,687,1342,0,0,0,0,1,0,4,0,0,0,0,0,0,2377,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,1,0,218,31,408,9,0,0,459,0,618,0,1,0,188,33,0,0,0,0,0,0,0,0,0,942,1,0,0,0,9,0,0,0,0,2,160,91,0,0,53,0,0,0,0,0,3090,1,0,2712,8,0,1,1,1,0,0,0,6,0,0,0,2,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,48,1,1,1,0,15,0,0,0,0,9,51,252,0,9,12,0,0,0,0,0,155,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,3,5067,67,5 +0,0,0,11,0,22,2,0,27,3,8,0,0,0,79,1,45,0,7,9,0,0,0,6,1,3,8,0,16,0,3,0,0,0,6,0,22,6,31,0,127,0,0,0,1,0,0,2,0,0,0,0,9,183,0,1,0,0,0,1,0,0,0,1,0,11,0,0,4906,22,188,0,18,0,0,0,0,0,7,0,0,0,0,0,7,11,1676,0,0,6,0,0,1,7,0,139,15,2,0,0,2,0,280,0,4,0,0,1280,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,957,0,61,0,0,0,18,101,74,571,918,0,0,0,0,1,0,0,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,0,10,8,290,16,0,0,199,0,1176,0,0,0,120,116,0,0,0,0,0,0,3,0,0,169,1,0,0,0,16,0,0,0,0,4,107,106,0,0,39,0,0,0,0,0,618,0,0,250,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,233,0,0,0,0,1,28,310,0,30,0,0,0,0,0,0,80,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,264,222,5 +0,0,0,6,0,36,5,0,30,4,8,0,0,0,10,0,38,0,9,6,0,0,0,2,0,4,9,0,8,0,1,0,0,0,5,0,36,6,20,0,55,0,0,0,1,0,0,4,0,0,0,0,4,181,0,0,0,0,0,1,0,0,0,0,0,14,0,0,19296,36,124,0,9,0,0,0,0,0,18,0,0,0,0,0,3,8,2990,0,0,5,0,0,2,12,0,160,20,8,0,0,2,0,145,0,5,0,0,1323,0,0,0,0,4,0,4,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,0,8,0,0,0,0,0,0,1798,0,108,0,0,0,8,103,76,197,1816,0,0,0,0,1,0,0,0,0,0,0,0,0,2799,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,8,238,6,0,0,315,0,1077,0,0,0,191,52,0,0,0,0,0,0,0,0,0,100,1,0,0,0,8,0,0,0,0,5,125,174,0,0,37,0,0,0,0,1,1869,0,0,6281,0,0,1,1,0,0,0,0,12,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,58,0,0,0,0,1,41,307,0,22,0,0,0,0,1,0,107,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2623,311,5 +0,0,0,11,0,18,16,0,38,5,14,0,0,0,10,1,28,0,7,3,0,0,0,2,0,1,6,0,3,0,2,0,0,0,5,0,18,7,3,0,82,0,0,0,1,0,0,1,0,0,0,0,2,104,0,0,0,0,0,1,0,0,0,0,0,18,0,0,472,18,110,0,5,0,0,0,0,0,4,0,0,0,0,0,3,5,64,0,0,5,0,0,2,28,0,252,40,1,0,0,2,0,191,0,7,0,0,418,0,0,0,0,6,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,79,0,48,0,0,0,4,16,74,206,94,0,0,0,0,1,0,0,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,16,145,15,0,0,180,0,431,0,0,0,115,28,0,0,0,0,0,0,0,0,0,114,1,0,0,0,5,0,0,0,0,3,107,123,0,0,91,0,0,0,0,1,86,0,0,10,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,10,0,0,0,0,1,23,214,0,12,0,0,0,0,0,0,116,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,112,63,5 +8,0,0,6,1,85,31,1,70,13,6,0,0,6,24,0,1111,0,9,7,0,0,0,7,0,14,15,0,12,0,2,1,0,1,48,5259,86,54,18,0,119,0,0,0,1,0,0,2,0,0,0,0,6,564,0,0,0,0,0,1,0,0,0,3,0,18,0,0,14262,85,1240,0,11,0,0,0,0,0,17,0,0,0,0,0,10,40,2324,0,1,48,1,0,1,0,0,260,20,2,0,0,4,1,1226,0,15,0,0,2743,0,0,0,0,20,6,5,2,0,0,0,1,0,0,0,20,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,11,0,2,2,0,0,0,0,0,0,0,1,1,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,36,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,65,12,12,12,0,0,0,1191,0,139,0,0,0,10,135,358,599,1192,0,0,0,0,1,0,6,0,0,0,0,0,0,627,2,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,2,0,187,39,655,11,0,0,617,0,1038,1,1,0,338,70,0,0,0,0,0,0,0,0,0,1257,1,0,0,0,14,0,0,0,0,5,242,55,0,0,0,0,2,0,0,0,10027,1,0,37,7,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,10,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,125,1,1,1,0,66,0,0,0,0,9,134,141,0,30,14,0,0,0,0,0,120,8,0,0,0,0,0,0,0,0,0,0,0,2,0,1,17,0,0,0,0,0,0,0,0,0,0,0,1,0,2,769,163,5 +0,0,0,5,0,41,5,0,31,10,3,0,0,2,16,0,42,0,6,4,0,0,0,5,2,11,9,0,7,0,1,0,0,0,9,0,41,6,27,0,76,0,0,0,1,0,0,3,0,0,0,0,4,215,0,0,0,0,0,1,0,0,0,0,0,18,0,0,3044,41,121,0,6,0,0,0,0,0,17,0,0,0,0,0,7,16,506,0,0,9,0,0,0,0,0,96,5,3,0,0,2,0,128,0,10,0,0,1527,0,0,0,0,0,0,6,0,0,0,0,1,0,0,0,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,327,0,95,0,0,0,6,56,200,118,322,0,0,0,0,1,0,3,0,0,0,0,0,0,803,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,33,213,5,0,0,248,0,693,0,0,0,123,41,0,0,0,0,0,0,11,0,0,105,1,0,0,0,11,0,0,0,0,1,131,76,0,0,0,0,0,0,0,0,326,0,0,427,3,0,1,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,95,0,0,0,0,1,50,206,0,19,9,0,0,0,0,0,82,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,3,464,100,5 +0,0,0,2,0,9,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,1,0,0,14,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,16,0,0,0,0,3,22,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,2,0,0,35,0,33,0,0,0,5,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,3,5 +0,0,0,18,0,40,65,0,99,63,23,0,0,2,111,0,88,0,92,7,0,0,0,1,4,8,27,0,16,0,1,0,0,0,17,0,40,199,37,0,376,0,0,0,1,0,0,3,0,0,0,0,9,204,0,0,0,0,0,1,0,0,0,0,0,71,0,0,15899,40,529,0,17,0,0,0,0,0,14,0,0,0,0,0,2,7,1292,0,0,17,0,0,3,49,0,466,70,4,0,0,2,0,683,0,59,0,2,1801,0,0,0,0,3,0,4,0,5,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,1311,0,101,0,0,0,18,254,91,1217,1335,0,0,0,0,1,0,0,0,0,0,0,0,0,5013,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,19,128,467,22,0,0,309,0,1211,0,0,0,205,67,0,0,0,0,0,0,0,0,0,480,1,0,0,0,12,0,0,0,0,3,141,176,0,0,227,0,2,0,0,0,1824,0,0,4686,0,0,1,0,1,0,0,0,5,0,0,0,1,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,118,0,0,0,0,1,57,174,0,52,0,0,0,0,0,0,269,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,67,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1647,132,5 +1,0,0,4,0,26,2,0,23,4,3,0,0,0,11,0,26,0,7,6,0,0,0,1,5,0,0,0,14,0,11,0,0,0,13,0,26,6,24,0,34,0,0,0,1,0,0,4,0,0,0,0,20,185,0,0,0,0,0,1,0,0,0,0,0,8,0,0,1947,26,119,0,25,0,0,0,0,0,19,0,0,0,0,0,1,8,230,0,0,13,0,0,0,0,0,145,0,6,0,0,2,0,63,0,6,0,0,1047,1,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,194,0,77,0,0,0,40,91,65,1179,193,0,0,0,0,1,0,0,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,2,0,0,5,0,0,0,0,0,0,0,1,8,9,198,4,0,0,250,0,480,0,0,0,170,14,0,0,0,0,0,0,0,0,0,72,1,0,0,0,12,0,0,0,0,21,112,109,0,0,0,0,0,0,0,2,260,0,0,243,0,0,1,0,0,0,0,0,7,0,0,0,2,0,0,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,44,0,0,0,20,1,39,502,0,25,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,272,43,5 +0,0,0,5,0,36,46,0,35,0,2,0,0,4,2,0,733,0,6,2,0,0,0,8,0,11,0,0,4,0,1,0,0,0,2,7395,36,6,0,0,27,0,1,0,1,0,0,2,0,0,0,0,1,387,0,0,0,0,0,1,0,0,0,0,0,3,0,0,163829,36,950,0,1,0,0,0,0,0,95,0,0,0,0,0,9,23,28418,0,0,2,0,0,0,0,0,126,10,3,1,0,2,0,832,0,0,0,0,4356,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,23716,0,44,0,0,0,0,3,341,1415,23701,0,0,0,0,1,0,3,0,0,0,0,0,0,338,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,43,10,244,5,0,0,370,0,281,0,0,0,215,5,0,0,0,0,0,0,0,0,0,828,1,0,0,0,10,0,0,0,0,0,144,48,0,0,0,0,0,0,0,0,4245,1,0,773,48,0,1,1,1,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,48,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,0,0,0,0,0,1,38,31,0,2,14,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2409,51,5 +7,0,0,19,0,54,87,0,166,23,47,1,1,3,43,1,104,0,7,6,0,0,0,8,3,4,42,0,24,0,11,4,0,0,25,0,54,168,28,0,358,0,0,0,1,0,0,2,0,0,0,0,19,434,0,0,0,0,0,1,0,0,0,0,11,34,0,0,8288,54,552,0,39,0,0,0,0,0,18,0,0,0,0,0,11,14,764,0,0,25,0,0,3,115,0,994,144,3,0,0,2,0,950,0,24,0,6,5247,0,0,7,0,1,0,1,0,0,0,0,1,2,0,0,43,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,3,1,1,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,95,0,0,0,0,0,0,291,0,166,0,0,0,38,108,133,3108,414,0,0,0,0,1,0,0,0,0,0,0,0,0,1698,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,88,358,25,0,0,539,0,2670,0,0,0,401,105,0,21,0,0,0,0,0,0,0,460,1,0,0,0,17,0,0,0,0,6,168,410,0,0,1208,0,0,0,0,1,1130,0,0,289,0,0,1,51,1,5,1,0,4,0,7,1,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,17,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,69,1,1,1,0,103,0,0,0,0,1,79,580,0,85,0,0,0,0,0,0,356,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,29,45,0,0,0,0,0,0,0,0,0,0,0,0,3,2624,1886,5 +0,0,0,53,0,155,3684,0,1633,431,227,0,1,2,594,0,1895,0,7,9,0,0,0,53,29,23,72,0,64,0,7,7,0,0,87,883,155,6,97,0,1671,0,0,0,1,0,0,18,0,0,0,0,48,860,0,2,0,0,0,1,0,0,14,19,0,211,0,0,67522,155,8506,0,75,0,0,0,0,0,98,0,0,0,3,0,56,89,17040,0,0,87,0,0,6,735,0,6177,860,34,0,0,2,0,13122,0,155,0,0,16275,0,0,0,0,135,0,18,0,0,0,0,1,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,80,0,1,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1714,12,12,12,0,0,0,14812,0,841,0,0,0,94,377,647,7523,14874,0,0,0,0,1,0,8,0,0,0,0,0,0,14871,0,0,0,0,0,0,0,0,0,0,0,0,28,1,4,0,0,0,0,1,0,34,472,1320,83,0,0,1405,0,1240,0,0,0,1127,574,0,145,0,0,0,0,10,0,0,8043,1,0,0,0,91,0,0,0,0,21,268,1728,0,0,2695,0,0,0,0,45,24031,1,0,3121,11,0,1,1,1,0,0,0,37,0,1,0,27,0,0,0,0,0,162,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,52,0,0,0,0,0,11,29,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,226,1,1,1,0,426,0,0,0,0,1,242,1181,0,161,12,0,0,0,0,0,2492,138,0,0,0,0,0,0,0,0,0,0,0,1,0,1,443,0,0,0,0,0,0,0,0,0,0,0,0,0,15,7281,614,5 +0,0,0,21,3,15,4,3,43,2,7,0,0,0,9,0,212,0,6,7,0,6,0,1,0,1,0,0,2,0,1,0,0,3,3,243,18,240,6,0,18,0,0,0,1,0,0,1,1,0,0,0,0,2687,0,0,0,0,0,1,0,0,0,0,0,3,0,0,101381,15,434,0,3,0,0,0,0,0,9,9,0,0,0,0,1,6,11381,0,3,3,3,0,0,0,0,20,0,4,0,0,2,3,385,0,2,0,1,41780,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,27,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,1,0,5668,0,38,0,0,0,1,4,37,1630,5680,0,0,0,0,1,0,2,0,0,1,0,0,0,968,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,23,7,336,35,0,0,287,0,1253,0,0,0,48,34,0,0,0,0,0,0,0,0,0,281,1,0,2,0,14,0,0,0,0,9,96,3,0,0,0,0,0,0,0,0,248031,0,0,503,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,1,0,0,0,0,25,21,3,0,4,0,0,0,0,0,0,341,3,0,0,0,0,0,0,0,0,0,0,0,3,2,1,5,0,0,0,0,0,0,0,2,0,0,0,6,0,2,6277,39,5 +0,0,0,5,0,14,23,0,50,3,16,0,0,0,7,0,23,0,7,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,3,0,14,6,2,0,79,0,0,0,1,0,0,1,0,0,0,0,1,75,0,0,0,0,0,1,0,0,0,0,0,14,0,0,352,14,120,0,3,0,0,0,0,0,4,0,0,0,0,0,1,3,22,0,0,3,0,0,2,41,0,342,60,1,0,0,2,0,215,0,4,0,0,207,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,41,0,60,0,0,0,2,11,35,237,56,0,0,0,0,1,0,0,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,7,116,5,0,0,139,0,394,0,0,0,80,8,0,0,0,0,0,0,0,0,0,126,1,0,0,0,3,0,0,0,0,2,102,110,0,0,151,0,0,0,0,1,60,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,6,0,0,0,0,1,17,75,0,7,0,0,0,0,0,0,111,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,126,32,5 +0,0,0,3,0,20,5,0,27,0,6,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,12,0,20,6,0,0,45,0,0,0,1,0,0,3,0,0,0,0,0,164,0,0,0,0,0,1,0,0,0,0,0,3,0,0,316,20,64,0,1,0,0,0,0,0,12,0,0,0,0,1,1,6,63,0,0,12,0,0,1,10,0,95,15,5,0,0,2,0,63,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,65,0,46,0,0,0,0,3,34,75,73,0,0,0,0,1,0,1,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,112,3,0,0,160,0,181,0,0,0,94,3,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,0,104,64,0,0,32,0,0,0,0,0,41,0,0,55,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,0,0,0,0,0,1,32,245,0,1,0,0,0,0,0,0,69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,88,14,5 +0,0,0,28,0,112,34,0,196,61,44,0,1,10,101,0,1490,0,7,10,0,0,0,14,18,31,98,0,67,0,11,0,0,0,52,10653,112,150,79,0,475,0,0,0,1,0,0,1,0,0,0,0,35,567,0,0,0,0,0,1,0,0,0,10,0,74,0,0,56338,112,2119,0,75,0,0,0,0,0,37,0,0,0,0,0,18,112,10170,0,0,52,0,0,3,67,0,1156,110,1,0,0,2,0,2610,0,61,52,4,9088,0,0,0,0,42,0,1,0,0,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,198,12,12,12,0,0,0,5809,0,172,0,0,0,75,662,787,2157,5758,0,0,0,0,1,0,5,0,0,0,0,0,0,1005,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,118,120,686,33,0,0,560,0,1082,0,0,0,324,179,0,0,0,0,0,0,0,0,0,1883,1,0,0,0,42,0,0,0,0,32,247,160,0,0,265,0,1,0,0,0,6716,1,0,148,22,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,22,13,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,136,1,1,1,0,285,0,0,0,0,1,164,140,0,193,14,0,0,0,0,0,473,12,0,0,0,0,0,0,0,0,0,0,0,2,0,1,73,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2912,293,5 +1,0,0,14,1,43,108,1,387,47,85,0,1,7,67,0,148,0,9,5,0,0,0,4,7,8,27,0,20,0,1,0,0,1,21,0,44,467,39,0,824,0,0,0,1,0,0,3,0,0,0,0,11,274,1,0,0,0,0,1,0,0,0,0,0,107,0,0,6995,43,838,0,21,0,0,0,0,0,14,0,0,0,0,0,4,8,1302,0,1,21,1,0,6,327,0,2742,150,5,0,0,4,1,2018,0,47,0,5,6638,0,0,0,0,69,0,1,0,0,0,0,1,0,0,0,18,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,1,0,0,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,786,0,103,0,0,0,22,122,110,2737,794,0,0,0,0,1,0,0,0,0,0,0,0,0,2421,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,198,83,564,21,0,0,467,0,3374,0,1,0,253,104,0,0,0,0,0,0,6,0,0,812,1,0,0,0,16,0,0,0,0,12,168,860,0,0,369,0,0,0,0,0,1372,0,0,1239,0,0,1,0,0,0,0,0,9,0,0,0,3,0,0,0,0,0,44,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,1,53,1,1,1,0,138,0,0,0,0,9,65,188,0,56,0,0,0,0,0,0,940,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,57,0,0,0,0,0,0,0,0,0,0,0,1,0,4,1306,154,5 +0,0,0,10,0,21,4,0,32,12,6,0,1,2,22,0,39,0,7,5,0,0,0,0,0,2,9,0,6,0,1,0,0,0,7,0,21,71,11,0,112,0,0,0,0,0,0,0,0,0,0,0,3,72,0,0,0,0,0,1,0,0,0,0,0,7,0,0,433,21,116,0,7,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,7,0,0,0,0,0,32,0,0,0,0,2,0,151,0,4,0,3,546,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,31,0,30,0,0,0,6,28,50,75,54,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,20,115,11,0,0,81,0,326,0,0,0,33,43,0,0,0,0,0,0,0,0,0,113,0,0,0,0,5,0,0,0,0,4,111,3,0,0,0,0,0,0,0,0,234,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,16,0,0,0,0,1,28,7,0,18,0,0,0,0,0,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,88,5 +0,0,0,7,1,19,40,1,70,6,18,0,0,0,14,0,76,0,9,2,0,0,0,1,0,1,3,0,2,0,1,0,0,1,8,0,20,111,3,0,88,0,0,0,1,0,0,4,0,0,0,0,1,169,0,0,0,0,0,1,0,0,0,0,0,20,0,0,824,19,200,0,3,0,0,0,0,0,14,0,0,0,0,1,1,8,129,0,1,8,1,0,4,35,0,350,55,6,0,0,4,1,235,0,10,0,0,397,0,0,0,0,4,0,2,0,1,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,131,0,73,0,0,0,2,11,42,225,146,0,0,0,0,1,0,1,0,0,0,0,0,0,414,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,126,25,299,8,0,0,368,0,1572,0,1,0,187,15,0,0,0,0,0,0,0,0,0,227,1,0,0,0,3,0,0,0,0,2,132,150,0,0,121,0,0,0,0,0,296,0,0,54,0,0,1,0,1,0,0,0,8,0,0,0,3,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,19,1,1,1,0,6,0,0,0,0,9,28,252,0,7,0,0,0,0,0,0,145,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,4,332,152,5 +0,0,0,10,0,71,240,0,386,7,84,0,0,0,12,208,54,0,7,3,0,0,0,12,4,6,18,0,12,0,1,0,0,0,53,0,71,6,20,0,1049,0,0,0,1,0,0,18,0,0,0,0,6,331,0,1,0,0,0,1,0,0,0,0,0,21,0,0,15158,71,1143,0,13,0,0,0,0,0,52,0,0,0,0,0,12,45,2585,0,0,53,0,0,3,369,0,2852,375,17,3,0,2,0,2210,0,10,0,0,1990,0,0,0,0,6,0,19,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,1739,0,466,0,0,0,12,84,353,2696,1714,0,0,0,0,1,0,0,0,0,0,0,0,0,4391,0,0,0,0,0,0,0,0,0,0,0,0,18,0,3,0,0,0,0,0,0,8,13,480,12,0,0,856,0,599,0,0,0,772,78,0,0,0,0,0,0,22,0,0,991,1,0,0,0,19,0,0,0,0,2,157,1034,0,0,1136,0,0,0,0,1,784,0,0,2184,0,0,1,0,0,0,0,0,32,0,0,0,15,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,100,1,1,1,0,86,0,0,0,0,1,124,523,0,37,0,0,0,0,0,0,1040,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1594,436,5 +5,0,0,17,2,121,95,2,579,65,149,1,0,2,116,80,209,0,11,11,0,0,0,19,9,22,36,0,35,0,3,0,0,2,63,0,123,452,62,0,1345,0,0,0,1,0,0,9,2,0,0,0,19,511,0,2,0,0,0,1,0,0,0,5,0,175,0,0,12691,121,1301,0,38,0,0,0,0,0,37,0,0,0,0,0,23,40,2372,0,2,63,2,0,7,476,0,4003,350,19,0,0,6,2,2940,0,80,0,0,5622,0,0,0,0,28,1,20,0,0,0,0,1,3,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,28,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,87,0,1,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,66,10,10,10,0,0,0,1593,0,300,0,0,0,36,167,374,4071,1647,0,0,0,0,1,0,7,0,1,0,0,0,0,3168,0,0,1,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,1,0,321,135,1035,41,0,0,1141,0,6527,0,2,0,707,168,0,26,0,0,0,0,5,0,0,1242,1,0,6,0,39,0,0,0,0,15,366,1382,0,0,966,0,0,0,0,1,1911,0,0,1250,3,0,1,48,0,0,0,0,29,0,0,0,4,0,0,0,0,0,64,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,3,3,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,1,0,2,156,1,1,1,0,194,0,0,0,0,17,186,594,0,87,9,0,0,0,1,0,1339,11,0,0,0,0,0,0,0,0,0,0,0,3,0,1,77,6,0,0,0,0,0,0,0,0,0,0,2,0,7,2498,343,5 +3,0,0,7,0,56,57,0,224,35,59,0,0,0,46,0,71,0,7,2,0,0,0,2,1,1,30,0,12,0,9,2,0,0,33,0,56,6,6,0,471,0,0,0,1,0,0,9,0,0,0,0,12,250,0,0,0,0,0,1,0,0,0,4,0,79,0,0,7874,56,552,0,23,0,0,0,0,0,33,0,0,0,0,0,2,12,1363,0,0,33,0,0,4,204,0,1652,140,14,0,0,2,0,1252,0,42,0,0,3570,0,0,0,0,8,0,6,0,10,0,2,1,0,0,0,22,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,6,0,0,44,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,995,0,195,0,0,0,24,67,145,1863,988,0,0,0,0,1,0,0,0,0,0,0,0,0,2566,0,0,0,0,0,0,0,0,0,2,0,0,9,0,0,0,0,0,0,0,2,8,45,376,7,0,0,586,0,1636,0,0,0,465,145,0,0,0,0,0,0,3,0,0,464,1,0,0,0,5,0,0,0,0,11,157,750,0,0,369,0,1,0,0,18,510,0,0,1167,0,0,1,0,0,0,0,0,21,0,0,0,3,0,0,0,0,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,16,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,53,0,0,0,0,1,89,769,0,54,0,0,0,0,0,0,569,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,41,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1442,293,5 +0,0,0,14,0,128,36,0,99,44,23,0,0,2,61,0,58,0,16,6,0,0,0,5,0,13,17,0,27,0,2,1,0,0,90,0,128,54,9,0,267,0,0,0,1,0,0,8,0,0,0,0,7,329,0,0,0,0,0,1,0,0,0,6,0,64,0,0,4837,128,368,0,29,0,0,0,0,0,34,0,0,0,0,0,7,22,349,0,0,90,0,0,2,61,0,617,95,10,0,0,2,0,556,0,50,0,0,3656,0,0,0,0,12,0,8,0,0,0,0,1,0,0,0,19,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,13,0,0,0,0,0,0,0,0,0,17,1,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,66,0,1,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,10,10,10,0,0,0,336,0,229,0,0,0,12,40,338,513,329,0,0,0,0,1,0,10,0,0,0,0,0,0,1101,0,0,0,0,0,0,0,0,0,0,0,0,8,1,2,0,0,0,0,1,0,32,60,525,14,0,0,713,0,1295,0,0,0,571,56,0,0,0,0,0,0,4,0,0,295,1,0,0,0,11,0,0,0,0,5,214,353,0,0,241,0,0,0,8,0,333,0,0,176,3,0,1,1,1,0,0,0,15,0,0,0,7,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,0,141,1,1,1,0,60,0,0,0,0,1,218,811,0,51,9,0,0,0,0,0,263,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,48,0,0,0,0,0,0,0,0,0,0,0,0,0,8,721,240,5 +0,0,0,11,0,30,6,0,28,3,3,0,0,6,4,0,23,0,7,3,0,0,0,5,0,8,0,0,2,0,2,0,0,0,3,0,30,6,0,0,47,0,0,0,1,0,0,2,0,0,0,0,2,138,0,0,0,0,0,1,0,0,0,0,0,5,0,0,19322,30,75,0,2,0,0,0,0,0,12,0,0,0,0,0,7,15,3925,0,0,3,0,0,0,0,0,127,5,4,0,0,2,0,72,0,13,0,0,876,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,13,10,0,0,0,2364,0,68,0,0,0,2,5,184,136,2347,0,0,0,0,1,0,3,0,0,0,0,0,0,3772,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,63,16,188,13,0,20,226,0,447,0,0,3,106,4,0,0,0,0,0,0,0,0,0,77,1,0,0,0,8,0,0,0,0,3,128,66,0,0,0,0,0,0,0,0,884,0,0,5018,3,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,2,0,0,0,0,3,33,240,0,3,9,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10569,46,5 +0,0,0,6,0,23,64,0,104,12,36,0,0,0,16,0,26,0,6,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,10,0,23,6,5,0,165,0,0,0,1,0,0,1,1,0,0,0,1,158,0,0,0,0,0,1,0,0,1,1,0,23,0,0,599,23,246,0,3,0,0,0,0,0,3,0,0,0,0,0,1,4,101,0,0,10,0,0,2,92,0,736,155,3,1,1,2,0,433,0,14,0,0,593,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,272,0,90,0,0,0,2,14,47,732,146,0,0,0,0,1,0,0,0,0,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,17,164,6,0,0,207,0,13673,0,0,0,116,151,0,0,0,1,0,0,0,0,0,252,1,0,4,0,3,0,0,0,0,2,114,161,0,0,344,0,0,0,0,2,84,0,0,16,0,0,1,0,0,0,0,0,7,0,5,0,7,0,0,0,0,0,12,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,12,0,0,0,0,1,33,26,0,7,0,0,0,0,0,0,234,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,1,198,59,5 +11,0,0,19,1,116,31,1,157,24,30,2,0,0,65,0,123,0,9,3,0,0,0,6,8,7,12,0,18,0,3,0,0,1,73,0,117,135,19,0,274,0,0,0,1,0,0,5,0,0,0,0,11,419,0,0,0,0,0,1,0,0,0,0,0,64,0,0,7139,116,395,0,20,0,0,0,0,0,22,0,0,0,0,0,6,16,275,3,1,73,1,0,4,52,0,635,100,9,0,0,4,1,478,0,41,0,0,3254,0,0,8,0,2,3,5,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,4,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,45,1,1,1,0,0,0,1308,0,191,0,0,1,22,61,192,1676,355,0,0,0,0,1,0,1,0,0,0,0,0,0,823,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,122,68,765,26,0,0,875,0,4400,0,1,0,560,102,0,0,0,0,0,0,0,3,3,417,1,0,0,0,17,0,0,0,0,18,253,340,0,0,322,0,0,0,0,3,485,0,0,95,0,0,1,0,0,0,0,0,9,0,0,0,11,0,0,0,0,0,27,0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,6,0,0,0,0,0,0,2,7,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,117,1,1,1,0,30,0,0,0,0,9,190,512,0,34,6,0,0,0,1,0,288,11,0,0,0,0,0,0,0,0,0,0,0,1,0,2,31,0,0,0,0,3,0,0,0,0,0,0,1,0,5,1762,1178,5 +0,0,0,16,1,61,113,1,204,42,49,1,1,7,79,0,131,0,9,9,0,0,0,6,2,6,21,0,16,0,1,0,0,1,27,0,62,276,31,0,417,0,0,0,1,0,0,1,0,0,0,0,8,221,0,0,0,0,0,1,0,0,2,1,0,77,0,0,4132,61,565,0,17,0,0,0,0,0,7,0,0,0,0,0,8,12,911,0,1,27,1,0,5,125,0,1210,215,2,0,0,4,1,932,0,49,0,4,2459,0,0,0,0,18,0,3,0,0,0,0,1,0,0,0,22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,717,0,134,0,0,0,16,78,157,1283,638,0,0,0,0,1,0,0,0,0,0,0,0,0,1136,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,197,77,506,19,0,0,532,0,2996,0,1,0,286,203,0,0,0,0,0,0,0,0,0,594,1,0,0,0,17,0,0,0,0,8,204,245,0,0,458,0,0,0,0,3,810,0,0,27,0,0,1,0,0,0,0,0,4,0,5,0,8,0,0,0,0,0,45,0,0,6,0,5,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,80,1,1,1,0,70,0,0,0,0,9,89,115,0,44,0,0,0,0,0,0,447,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,48,0,0,0,0,0,0,0,0,0,0,0,1,0,3,796,166,5 +0,0,0,14,0,77,7,0,52,77,8,0,0,2,128,2,117,0,35,6,0,0,0,9,4,14,42,0,20,0,2,8,0,0,29,0,77,6,31,0,342,0,0,0,1,0,0,4,0,0,0,0,16,513,0,0,0,0,0,1,0,0,0,0,0,97,0,0,11618,77,456,0,29,0,0,0,0,0,31,0,0,0,0,1,13,44,1367,0,0,29,0,0,1,9,0,251,20,7,0,0,2,0,666,0,89,0,0,4474,0,0,0,0,35,0,5,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,10,10,10,0,0,0,1050,0,165,0,0,0,29,154,254,659,1051,0,0,0,0,1,0,3,0,0,0,0,0,0,2227,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,115,495,19,0,0,456,0,994,0,0,0,288,157,0,0,0,0,0,0,0,0,0,351,1,0,0,0,19,0,0,0,0,9,206,155,0,0,30,0,2,0,1,0,7080,0,0,1895,3,0,1,1,0,0,0,0,7,0,1,0,2,0,0,0,0,0,110,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,108,1,1,1,0,178,0,0,0,0,1,106,535,0,77,9,0,0,0,0,0,249,14,0,0,0,0,0,0,0,0,0,0,0,1,0,1,81,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1010,344,5 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5 +0,0,0,2,0,9,2,0,4,0,2,0,0,0,2,0,9,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,3,0,0,0,0,0,0,1,0,0,1,0,0,24,0,0,0,0,0,1,0,0,0,0,0,1,0,0,39,9,21,0,1,0,0,0,0,0,1,0,0,1,0,0,1,2,13,0,0,0,0,0,0,0,0,6,0,0,0,0,2,0,7,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,16,0,27,0,0,0,0,3,25,5,29,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,36,2,0,0,39,0,73,0,0,0,3,4,0,0,0,0,0,0,0,0,0,25,1,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,9,5 +0,0,0,3,0,11,2,0,7,2,3,0,0,0,5,0,14,0,6,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,12,0,0,0,1,0,0,9,0,0,0,0,0,119,0,1,0,0,0,1,0,0,0,0,0,5,0,0,69963,11,69,0,1,0,0,0,0,0,28,0,0,0,0,0,2,12,16999,0,0,1,0,0,0,0,0,19,0,17,0,0,2,0,12,0,3,0,0,324,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8764,0,116,0,0,0,0,3,31,26,8772,0,0,0,0,1,0,0,0,0,0,0,0,0,9261,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,8,6,126,3,0,0,230,0,379,0,0,0,153,9,0,0,0,0,0,0,7,0,0,37,1,0,0,0,3,0,0,0,0,0,114,129,0,0,0,0,0,0,0,0,8335,0,0,25809,0,0,1,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,12,343,0,1,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,8608,99,5 +0,0,0,20,0,82,232,0,449,35,198,0,0,11,57,0,1415,0,7,5,0,0,0,8,1,14,15,0,44,0,1,1,0,0,30,92483,82,213,14,0,756,0,0,0,1,0,0,14,0,0,0,0,6,1438,1,2,0,0,0,1,0,0,0,0,0,49,0,0,103920,82,2651,0,42,0,0,0,0,0,194,0,0,0,0,0,9,214,11822,0,0,30,0,0,3,357,0,3305,590,21,0,0,2,0,3288,0,37,150,7,7885,0,0,0,0,6,0,14,0,1,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,12,12,12,0,0,0,7259,0,280,0,0,0,30,70,1112,19808,7233,0,0,0,0,1,0,5,0,0,0,0,0,0,4719,0,0,0,0,0,0,0,0,0,0,0,0,15,1,4,0,0,0,0,1,0,113,72,1160,25,0,0,1036,0,928,0,0,0,797,107,0,0,0,0,0,0,2,0,0,2369,1,0,0,0,14,0,0,0,0,7,298,831,0,0,1898,0,0,0,0,5,7247,1,0,3155,54,0,1,1,0,0,0,0,34,0,0,0,10,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,54,8,6,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,98,1,1,1,0,139,0,0,0,0,1,112,1250,0,61,14,0,0,0,0,0,831,3,0,1,0,0,0,0,0,0,0,0,0,3,0,2,43,0,0,0,0,0,0,0,0,0,0,0,0,0,12,3721,1095,5 +0,0,0,8,0,47,66,0,154,11,23,0,0,2,21,0,769,0,6,7,0,0,0,6,4,10,0,0,17,0,1,0,0,0,14,898,47,23,21,0,253,0,0,0,1,0,0,4,0,0,0,0,9,360,0,0,0,0,0,1,0,0,0,24,0,29,0,0,22425,47,1071,0,15,0,0,0,0,0,26,0,0,0,0,0,8,20,3708,0,0,14,0,0,4,94,0,882,85,8,0,0,2,0,1264,0,16,0,0,1448,0,0,0,0,2,0,6,0,12,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,12,12,12,0,0,0,3160,0,93,0,0,0,16,36,245,1305,3121,0,0,0,0,1,0,3,0,0,0,0,0,0,675,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,26,293,9,0,0,398,0,653,0,0,0,250,33,0,0,0,0,0,0,0,0,0,1041,1,0,0,0,17,0,0,0,0,6,130,280,0,0,182,0,0,0,0,0,2039,1,0,84,6,0,1,1,1,0,0,0,9,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,22,0,0,0,0,1,61,572,0,16,12,0,0,0,0,0,259,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,19,0,0,0,0,1,0,0,0,0,0,0,0,0,3,519,59,5 +0,0,0,13,0,40,56,0,58,15,12,0,0,2,85,0,627,0,6,1,0,0,0,8,0,10,0,0,3,0,1,0,0,0,3,898,40,6,0,0,85,0,7,0,1,0,0,8,0,0,0,0,1,402,0,2,0,0,0,1,0,0,0,0,0,21,0,0,60163,40,1025,0,1,0,0,0,0,0,131,0,0,0,0,0,8,26,11908,0,0,3,0,0,1,16,0,233,35,12,1,0,2,0,969,0,16,0,0,2416,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,8804,0,100,0,0,0,0,3,368,712,8799,0,0,0,0,1,0,3,0,0,0,0,0,0,1351,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,32,29,281,13,0,0,556,0,478,0,0,0,393,46,0,3,0,0,0,0,2,0,0,846,1,0,0,0,9,0,0,0,0,0,124,262,0,0,63,0,0,0,0,0,2533,1,0,2414,53,0,1,4,1,0,0,0,18,0,0,0,1,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,53,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,0,0,0,0,0,1,43,665,0,2,12,0,0,0,0,0,117,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,19,3,0,0,0,0,0,0,0,0,0,0,0,0,6,1939,92,5 +0,0,0,10,0,24,96,0,168,28,34,0,0,0,45,0,26,0,7,3,0,0,0,2,3,2,3,0,6,0,1,0,0,0,5,0,24,6,8,0,320,0,0,0,1,0,1,12,0,0,0,0,4,237,0,0,1,0,0,1,0,0,0,0,0,43,0,0,10275,24,439,0,7,0,13,0,0,0,42,0,0,0,0,1,3,16,1411,0,0,5,0,0,3,143,0,1144,145,22,0,0,2,0,770,0,41,0,0,1697,0,0,0,0,10,0,5,0,0,0,0,1,24,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,1294,0,408,0,0,0,8,111,80,1338,1328,0,0,0,0,1,0,6,0,0,0,0,0,0,3867,0,0,0,0,0,0,0,0,0,2,0,0,11,0,0,1,0,0,0,0,0,8,44,243,10,0,0,368,0,984,0,0,0,262,75,0,104,0,0,0,0,0,0,0,376,1,0,0,0,8,0,0,0,0,5,110,385,0,0,414,0,0,0,0,0,1133,0,0,2796,0,0,1,56,0,0,0,0,19,0,0,0,2,0,0,0,0,1,28,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,37,0,0,0,0,1,29,372,0,12,0,0,0,0,0,0,435,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,32,54,0,0,0,0,0,0,0,0,0,0,0,0,0,1915,286,5 +9,0,0,19,0,98,32,0,149,51,28,0,4,6,108,2,473,0,7,3,0,0,0,16,350,14,29,0,387,0,3,0,0,0,63,0,98,1917,402,0,415,0,0,0,1,0,0,6,0,0,0,0,361,404,0,0,0,0,0,1,0,0,0,1,0,46,0,0,8494,98,1982,0,392,0,0,0,0,0,26,0,0,0,0,1,8,17,594,0,0,63,0,0,3,70,0,4246,40,10,0,0,2,0,1342,0,34,0,15,5287,0,0,0,0,19,0,7,0,0,0,0,1,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,9,1,1,0,0,0,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,2,0,0,0,0,80,0,1,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,935,0,189,0,0,0,722,1507,210,3472,587,0,0,0,0,1,0,6,0,0,0,0,0,0,1131,0,0,0,0,0,0,0,0,0,11,0,0,6,0,2,0,0,0,0,0,0,12,80,687,38,0,0,671,0,1726,0,0,0,512,165,0,0,0,0,0,0,4,0,0,809,1,0,0,0,369,0,0,0,0,362,273,670,0,0,99,0,0,0,0,11,2672,0,0,291,0,0,1,0,1,0,0,0,15,0,0,0,2,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,123,1,1,1,0,425,0,0,0,0,1,161,723,0,433,0,0,0,0,0,0,730,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,53,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3615,226,5 +1,0,0,6,1,37,34,1,84,2,9,0,0,9,6,0,1409,0,9,2,0,0,0,7,0,10,0,0,6,0,1,0,0,1,3,2684,38,54,0,0,56,0,0,0,1,0,0,1,0,0,0,0,1,433,0,0,0,0,0,1,0,0,0,2,0,2,0,0,39093,37,1517,0,4,0,0,0,0,0,17,0,0,0,0,0,8,32,5671,0,1,3,1,0,1,0,0,293,30,1,0,0,4,1,1426,0,1,21,0,2085,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,12,12,12,0,0,0,3871,0,44,0,0,0,2,5,391,324,3863,0,0,0,0,1,0,4,0,0,0,0,0,0,6147,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,218,28,388,7,0,0,398,0,556,0,1,0,147,18,0,0,0,0,0,0,0,0,0,1560,1,0,0,0,9,0,0,0,0,2,167,27,0,0,25,0,0,0,0,0,5604,1,0,7521,8,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,41,1,1,1,0,9,0,0,0,0,9,41,107,0,5,12,0,0,0,0,0,105,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2865,120,5 +2,0,0,20,0,149,39,0,147,101,33,1,1,6,143,0,94,0,7,11,0,0,0,5,6,16,24,0,42,0,19,0,0,0,92,0,149,369,37,0,575,0,0,0,1,0,0,8,0,0,0,0,32,233,0,0,0,0,0,1,0,0,0,0,0,114,0,0,5305,149,605,0,59,0,0,0,0,0,36,0,0,0,0,0,8,29,674,0,0,92,0,0,3,78,0,937,130,12,0,0,2,0,926,0,104,0,8,4975,0,0,0,0,15,0,0,0,0,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,55,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,94,10,10,10,0,0,0,718,0,201,0,0,0,62,134,423,1045,589,0,0,0,0,1,0,3,0,0,0,0,0,0,1236,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,37,130,757,25,0,0,615,0,1019,0,0,0,413,195,0,0,0,0,0,0,0,0,0,471,1,0,0,0,22,0,0,0,0,31,251,202,0,0,319,0,0,0,0,0,862,0,0,279,3,0,1,1,0,0,0,0,15,0,0,0,10,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,185,1,1,1,0,177,0,0,0,36,1,241,350,0,92,9,0,0,0,0,0,417,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,107,0,0,0,0,0,0,0,0,0,0,0,0,0,8,11852,332,5 +8,0,0,16,1,73,298,1,939,67,247,1,2,6,105,0,122,0,9,10,0,0,0,4,1,35,18,0,36,0,1,0,0,1,37,0,74,1415,36,0,1771,0,0,1,1,0,0,6,0,0,0,0,35,402,0,2,0,0,0,1,0,0,4,3,0,205,0,0,8452,73,1768,0,65,0,0,0,0,0,25,0,0,0,0,0,7,15,1092,0,1,37,1,0,11,856,0,6731,635,10,0,0,4,1,4414,0,81,0,13,4804,0,0,0,0,30,1,7,0,0,0,0,1,0,0,0,62,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,1,0,0,0,0,0,0,0,0,6,1,17,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,874,0,175,0,0,0,42,135,145,7372,821,0,0,0,0,1,0,1,0,0,1,0,0,0,2542,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,128,104,719,19,0,0,945,0,2450,0,1,0,672,171,0,0,0,0,0,0,0,0,0,1729,1,0,0,0,15,0,0,0,0,35,265,2131,0,0,1791,0,0,0,1,8,1030,0,0,525,0,0,1,0,0,0,0,0,7,0,4,0,17,0,0,0,0,0,70,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,11,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,90,1,1,1,0,134,0,0,0,0,9,111,273,0,90,0,0,0,0,0,0,2061,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,79,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1844,212,5 +3,0,0,12,0,64,35,0,142,31,27,0,1,4,65,0,90,0,27,7,0,0,0,2,5,10,30,0,25,0,4,0,0,0,30,0,64,114,36,0,289,0,0,0,1,0,0,2,0,0,0,0,14,205,0,0,0,0,0,1,0,0,0,1,0,48,0,0,20906,64,434,0,29,0,0,0,0,0,9,0,0,0,0,0,2,6,1692,0,0,30,0,0,3,74,0,709,105,2,0,0,2,0,705,0,36,0,5,3137,0,0,0,0,6,3,4,0,0,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,84,0,0,0,0,0,0,1611,0,111,0,0,0,28,106,129,1100,1635,0,0,0,0,1,0,0,0,0,0,0,0,0,5202,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,64,389,13,0,0,356,0,848,0,0,0,225,104,0,0,0,0,0,0,0,0,0,391,1,0,0,0,14,0,0,0,0,12,167,205,0,0,230,0,0,0,0,1,1931,0,0,5608,0,0,1,8,1,0,0,0,4,0,0,0,3,0,0,0,0,0,39,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,8,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,91,1,1,1,0,93,0,0,0,0,1,94,196,0,69,0,0,0,0,1,0,290,11,0,0,0,0,0,0,0,0,0,0,0,0,0,1,35,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1902,93,5 +5,0,0,13,1,81,65,1,165,36,35,0,0,19,47,0,2237,0,9,6,0,0,0,8,0,14,9,0,25,0,1,0,0,1,22,29111,82,54,12,0,226,0,0,0,1,0,0,4,0,0,0,0,4,789,3,0,0,0,0,1,0,0,0,9,0,43,0,0,216222,81,2590,0,22,0,0,0,0,0,60,0,0,0,0,0,10,131,45992,0,1,22,1,0,2,24,0,848,80,6,0,0,4,1,2619,0,37,134,0,8108,0,0,0,0,5,5,5,0,0,0,0,1,2,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,12,12,12,0,0,0,40604,0,90,0,0,0,16,97,940,2729,40558,0,0,0,0,1,0,8,0,0,0,0,0,0,954,5,0,0,0,0,0,0,0,0,0,0,0,34,6,0,0,0,0,0,1,0,411,71,729,14,0,0,772,0,880,0,1,0,408,140,0,0,0,0,0,0,0,0,0,2577,1,0,0,0,14,0,0,0,0,5,251,205,0,0,200,0,7,0,0,1,9785,1,0,410,33,0,1,1,0,0,0,0,3,0,2,0,5,0,0,0,0,0,40,0,0,1,15,4,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,33,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,115,1,1,1,0,89,0,0,0,0,9,104,315,0,35,14,0,0,0,0,0,324,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,55,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3072,131,5 +13,0,0,21,0,64,65,0,154,37,34,0,1,5,74,0,87,0,32,6,0,0,0,2,4,7,30,0,17,0,1,1,0,0,35,0,64,202,33,0,403,0,0,0,1,0,0,2,0,0,0,0,10,453,0,1,0,0,0,1,0,0,2,3,0,49,0,0,23859,64,491,0,20,0,0,0,0,0,12,0,0,0,0,0,3,7,2636,0,0,35,0,0,2,93,0,817,145,4,0,0,2,0,782,0,38,0,6,2453,0,0,0,0,13,0,1,0,0,0,5,1,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,16,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,0,0,3,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,1,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,1752,0,134,0,0,0,20,98,134,812,1781,0,0,0,0,1,5,0,0,1,0,0,0,0,6537,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,13,61,688,30,0,0,425,0,1133,0,0,0,304,78,0,0,0,0,0,0,0,0,0,452,1,0,0,0,12,0,0,0,0,9,183,254,0,0,346,0,1,0,0,2,2029,0,0,6429,0,0,1,0,1,0,0,0,7,0,1,0,7,0,0,0,0,0,39,4,0,4,1,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,3,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,97,1,1,1,0,87,0,0,0,0,1,99,250,0,56,0,0,0,0,0,0,339,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,39,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2780,111,5 +1,0,0,18,1,79,52,1,138,54,25,0,1,6,84,0,210,0,189,9,0,0,0,14,91,13,18,0,111,0,1,0,0,1,38,0,80,829,113,0,306,0,0,0,1,0,0,10,0,0,0,0,97,398,0,10,0,0,0,1,0,0,0,0,0,75,0,0,54416,79,1019,0,110,0,0,0,0,0,39,0,0,0,0,0,17,34,4794,0,1,38,1,0,4,54,0,1543,90,16,0,0,4,1,709,0,68,0,11,2953,0,0,0,0,8,0,9,0,0,0,0,1,0,0,0,34,4,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,1,0,0,0,0,0,0,0,0,0,1,6,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,50,10,10,10,0,0,0,4717,0,206,0,0,0,192,427,306,1365,4645,0,0,2,0,1,0,3,0,0,7,0,0,0,16604,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,1,0,145,96,627,20,0,0,709,0,1599,0,1,0,411,80,0,0,0,0,0,0,0,0,0,705,1,0,0,0,114,0,0,0,0,96,242,280,0,0,224,0,0,0,0,6,5187,0,0,16840,3,0,1,1,0,0,0,0,21,0,0,0,4,0,0,0,0,0,57,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,3,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,110,1,1,1,0,169,0,0,0,0,9,118,550,0,134,9,0,0,0,0,0,412,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,60,0,0,0,0,0,0,0,0,0,0,0,1,0,8,5946,4582,5 +3,0,0,7,1,50,44,1,92,2,12,0,0,9,8,0,1053,0,9,2,0,0,0,8,0,10,0,0,6,0,1,0,0,1,14,18257,51,54,0,0,73,0,0,0,1,0,0,3,0,0,0,0,1,667,0,0,0,0,0,1,0,0,0,10,0,4,0,0,72186,50,1211,0,4,0,0,0,0,0,43,0,0,0,0,0,9,40,12134,0,1,14,1,0,1,0,0,362,30,5,0,0,4,1,1109,0,2,43,0,4944,0,0,0,0,18,3,5,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,7902,0,79,0,0,0,2,5,534,1358,7893,0,0,0,0,1,0,12,0,0,0,0,0,0,539,5,0,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,1,0,224,29,518,8,0,0,568,0,626,0,1,0,298,17,0,0,0,0,0,0,0,0,0,1227,1,0,0,0,10,0,0,0,0,2,200,111,0,0,52,0,0,0,0,0,4820,1,0,93,18,0,1,1,0,0,0,0,5,0,0,0,1,0,0,0,0,0,3,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,72,1,1,1,0,9,0,0,0,0,9,65,224,0,5,12,0,0,0,0,0,129,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,3,2140,114,5 +0,0,0,12,0,39,76,0,141,43,40,0,1,3,57,0,67,0,7,6,0,0,0,1,1,4,18,0,12,0,1,0,0,0,21,0,39,84,21,0,339,0,0,0,1,0,0,2,0,0,0,0,6,200,0,0,0,0,0,1,0,0,2,1,0,46,0,0,1545,39,412,0,13,0,0,0,0,0,7,0,0,0,0,0,1,4,102,0,0,21,0,0,2,97,0,822,160,2,0,0,2,0,688,0,37,0,4,1201,0,0,0,0,12,0,3,0,0,0,0,1,0,0,0,23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,182,0,97,0,0,0,12,57,82,872,184,0,0,0,0,1,0,0,0,0,0,0,0,0,818,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,13,55,245,13,0,0,299,0,616,0,0,0,217,106,0,0,0,0,0,0,0,0,0,392,1,0,0,0,8,0,0,0,0,7,145,215,0,0,375,0,0,0,0,3,448,0,0,41,0,0,1,0,0,0,0,0,1,0,1,0,6,0,0,0,0,0,44,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,40,0,0,0,0,1,60,158,0,35,0,0,0,0,0,0,305,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,45,0,0,0,0,0,0,0,0,0,0,0,0,0,1,358,78,5 +0,0,0,3,0,11,2,0,7,0,3,0,0,0,3,0,15,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,10,0,0,0,1,0,0,1,0,0,0,0,0,46,0,0,0,0,0,1,0,0,0,0,0,3,0,0,223,11,31,0,1,0,0,0,0,0,5,0,0,0,0,0,2,4,35,0,0,2,0,0,0,0,0,9,0,2,0,0,2,0,9,0,1,0,0,137,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,47,0,30,0,0,0,0,3,28,12,65,0,0,0,0,1,0,1,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,75,3,0,0,125,0,442,0,0,0,71,4,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,1,93,58,0,0,0,0,0,0,0,0,28,0,0,16,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,97,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,53,62,5 +1,0,0,18,0,59,19,0,84,78,16,0,1,4,104,0,80,0,7,6,0,0,0,3,1,6,27,0,15,0,4,0,0,0,27,0,59,273,17,0,298,0,0,0,1,0,0,2,0,0,0,0,9,134,0,0,0,0,0,1,0,0,0,19,0,98,0,0,6788,59,354,0,19,0,0,0,0,0,10,0,0,0,0,0,3,7,986,0,0,27,0,0,2,34,0,348,50,4,0,0,2,0,600,0,87,0,6,2670,0,0,1,0,25,0,2,0,0,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,644,0,117,0,0,0,18,71,112,564,642,0,0,0,0,1,0,6,0,0,0,0,0,0,963,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,15,101,433,22,0,0,324,0,1086,0,0,0,187,129,0,0,0,0,0,0,0,0,0,315,1,0,0,0,10,0,0,0,0,8,171,110,0,0,121,0,1,0,0,0,556,0,0,410,0,0,1,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,81,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,72,1,1,1,0,54,0,0,0,0,1,86,192,0,52,0,0,0,0,0,0,246,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,0,0,0,0,0,0,0,0,3,533,178,5 +2,0,0,9,0,42,20,0,48,3,11,8,0,6,12,1,627,0,6,5,0,0,0,6,1,10,68,0,99,0,1,0,0,0,5,898,42,27,0,0,56,0,0,0,1,0,0,7,0,0,0,0,1,489,0,0,0,0,0,1,0,0,0,0,0,9,0,0,40857,42,917,0,165,0,0,0,0,0,36,0,0,0,0,0,10,250,7323,0,0,5,0,0,0,0,0,292,20,13,0,0,2,0,785,0,4,0,0,3880,0,0,0,0,2,0,7,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,49,0,1,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,32,12,24,12,0,0,0,7548,0,94,0,0,0,0,20,534,2412,5759,0,0,0,0,2,0,4,0,0,0,0,0,0,1402,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,389,21,281,12,0,0,390,0,12429,0,0,0,200,20,0,0,0,0,0,0,2,0,0,739,1,0,0,0,12,0,0,0,0,17,121,133,0,0,0,0,1,0,0,0,3602,1,0,1594,7,0,1,1,0,0,0,0,18,0,0,0,1,0,0,0,0,0,9,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,7,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,39,1,1,1,0,96,0,0,0,0,8,47,841,0,166,12,0,0,0,0,0,91,0,0,0,0,0,0,0,1,0,0,0,0,1,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1653,114,5 +0,0,0,23,1,37,29,1,123,31,33,1,1,4,52,1,133,0,9,5,0,0,0,4,4,4,18,0,16,0,1,0,0,1,19,0,38,389,27,0,290,0,0,0,1,0,0,1,0,0,0,0,8,255,0,0,0,0,0,1,0,0,0,2,0,23,0,0,3466,37,377,0,17,0,0,0,0,0,6,0,0,0,0,0,4,6,504,0,1,19,1,0,2,47,0,515,115,1,0,0,4,1,519,0,18,0,5,1914,0,0,0,0,6,0,2,0,0,0,0,1,0,0,0,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,354,0,74,0,0,0,16,76,86,453,380,0,0,0,0,1,0,0,0,0,0,0,0,0,1530,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,163,66,532,36,0,0,455,0,4162,0,1,0,249,113,0,0,0,0,0,0,2,0,0,386,1,0,0,0,13,0,0,0,0,9,213,153,0,0,334,0,0,0,0,0,1017,0,0,192,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,46,1,1,1,0,58,0,0,0,0,16,58,215,0,39,0,0,0,0,0,0,219,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,33,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1082,247,5 +0,0,0,5,0,38,46,0,48,2,35,0,0,7,4,0,862,0,6,1,0,0,0,9,0,11,0,0,17,0,1,0,0,0,1,16664,38,6,0,0,45,0,1,0,1,0,0,1,0,0,0,0,1,582,0,0,0,0,0,1,0,0,0,0,0,2,0,0,59466,38,1093,0,14,0,0,0,0,0,76,0,0,0,0,0,9,170,9301,0,0,1,0,0,0,0,0,467,25,2,0,0,2,0,980,0,0,205,0,6202,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,2401,0,35,0,0,0,9,12,1041,2909,2362,0,0,0,0,1,0,3,0,0,0,0,0,0,376,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,106,22,309,5,0,0,366,0,328,0,0,0,199,15,0,0,0,0,0,0,0,0,0,1008,1,0,0,0,10,0,0,0,0,1,163,22,0,0,243,0,0,0,0,0,5697,1,0,1116,40,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,40,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,40,0,0,0,0,1,39,530,0,15,14,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3178,41,5 +0,0,0,15,0,23,4,0,44,14,7,0,1,3,25,0,53,0,7,4,0,0,0,1,1,2,12,0,8,0,1,0,0,0,10,0,23,64,13,0,134,0,0,0,1,0,0,1,0,0,0,0,4,83,0,0,0,0,0,1,0,0,0,0,0,8,0,0,560,23,154,0,9,0,0,0,0,0,4,0,0,0,0,0,1,3,29,0,0,10,0,0,0,0,0,45,0,1,0,0,2,0,185,0,5,0,4,951,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,55,0,43,0,0,0,8,38,56,90,80,0,0,0,0,1,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,27,151,19,0,0,124,0,287,0,0,0,59,28,0,0,0,0,0,0,0,0,0,144,1,0,0,0,6,0,0,0,0,5,117,10,0,0,0,0,0,0,0,1,267,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,22,0,0,0,0,1,33,69,0,23,0,0,0,0,0,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,1,196,21,5 +2,0,0,11,0,73,21,0,65,13,7,0,0,2,19,0,786,0,7,15,0,0,0,7,0,14,48,0,28,0,2,2,0,0,30,898,73,6,28,0,116,0,0,0,1,0,0,2,0,0,0,0,17,743,0,0,0,0,0,1,0,0,0,0,0,22,0,0,29778,73,1010,0,30,0,0,0,0,0,24,0,0,0,0,0,9,20,4756,0,0,30,0,0,1,18,0,362,20,4,0,0,2,0,1142,0,16,0,0,3131,0,0,0,0,7,2,3,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,12,0,2,1,0,0,0,0,0,0,0,1,1,0,0,0,3,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,70,12,12,12,0,0,0,3818,0,120,0,0,0,32,137,333,698,3791,0,0,0,0,1,0,6,0,0,0,0,0,0,669,2,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,2,0,32,34,448,14,0,0,385,0,1111,0,0,0,208,31,0,0,0,0,0,0,0,0,0,907,1,0,0,0,22,0,0,0,0,17,172,84,0,0,46,0,0,0,0,0,7316,1,0,118,9,0,1,1,1,0,0,0,3,0,0,0,1,0,0,0,0,0,13,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,9,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,97,1,1,1,0,67,0,0,0,0,1,103,273,0,82,12,0,0,0,0,0,123,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,2,810,122,5 +0,0,0,8,0,44,198,0,334,40,92,0,0,7,48,0,572,0,7,3,0,0,0,7,0,11,6,0,8,0,1,1,0,0,8,898,44,6,4,0,597,0,0,0,1,0,0,9,0,0,0,0,3,409,0,0,0,0,0,1,0,0,8,0,0,73,0,0,14576,44,1313,0,7,0,0,0,0,0,44,0,0,0,0,1,8,33,2612,0,0,8,0,0,6,287,0,2445,360,14,0,0,2,0,1998,0,44,4,0,2410,0,0,0,0,18,0,8,0,0,0,0,1,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,1770,0,157,0,0,0,5,20,283,2725,1697,0,0,0,0,1,0,4,0,0,0,0,0,0,2438,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,1,0,106,60,330,8,0,0,669,0,1006,0,0,0,510,33,0,0,0,0,0,0,1,0,0,1258,1,0,0,0,10,0,0,0,0,3,135,788,0,0,839,0,0,0,0,26,1655,1,0,836,7,0,1,1,0,0,0,0,20,0,1,0,15,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,7,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,21,0,2,0,0,1,52,623,0,15,12,0,2,0,0,0,721,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,50,0,0,0,0,0,0,0,0,0,0,0,0,0,8,810,153,5 +8,0,0,8,1,93,153,1,139,39,117,0,0,13,57,0,1421,0,9,1,0,0,0,28,0,10,15,0,47,0,1,5,0,1,43,32057,94,54,0,0,225,0,7,0,1,0,0,7,0,0,0,0,6,1677,0,0,0,0,0,1,0,0,0,24,0,54,0,0,323583,93,2334,0,50,0,0,0,0,0,286,0,0,0,0,0,28,460,80383,0,1,43,1,0,1,0,0,1429,45,14,0,0,4,1,1939,0,43,632,0,14217,0,0,0,0,11,8,1,0,0,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,37,1,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,43,0,1,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,64,12,12,12,0,0,0,66246,0,252,0,0,0,39,57,2424,5506,66290,0,0,0,0,1,0,27,0,0,0,0,0,0,2404,0,0,0,0,0,0,0,0,0,0,0,0,7,9,0,0,0,0,0,1,0,287,94,1064,9,0,0,1182,0,1124,0,1,0,843,67,0,0,0,0,0,0,0,0,0,1909,1,0,0,0,29,0,0,0,0,7,352,275,0,0,825,0,1,0,0,0,11252,1,0,2716,127,0,1,1,1,0,0,0,24,0,0,0,0,0,0,0,0,0,34,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,23,0,2,0,0,0,127,366,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,143,1,1,1,0,136,0,0,0,0,9,137,645,0,66,12,0,1,0,0,0,289,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,47,0,0,0,0,0,0,0,0,0,0,0,1,0,7,7007,203,5 +1,0,0,14,0,86,12,0,131,57,22,0,2,3,90,2,146,0,7,9,0,0,0,7,8,12,45,0,40,0,7,0,0,0,43,0,86,132,67,0,380,0,0,0,1,0,0,7,0,0,0,0,25,247,0,0,0,0,0,1,0,0,0,1,0,62,0,0,6853,86,517,0,45,0,0,0,0,0,21,0,0,0,0,0,4,12,231,0,0,43,0,0,1,51,0,625,30,11,0,0,2,0,835,0,47,0,6,5829,0,0,0,0,10,0,2,0,0,0,0,1,0,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,31,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,318,0,167,0,0,0,48,223,147,769,309,0,0,0,0,1,0,6,0,1,0,0,0,0,841,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,83,455,16,0,0,475,0,1079,0,0,0,312,96,0,0,0,0,0,0,0,0,0,415,1,0,0,0,24,0,0,0,0,22,200,256,0,0,85,0,0,0,0,0,1045,0,0,616,0,0,1,0,0,0,0,0,9,0,0,0,3,0,0,0,0,0,69,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,97,1,1,1,0,115,0,0,0,0,1,129,493,0,104,0,0,0,0,0,0,332,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,0,0,0,0,0,0,0,0,0,0,0,0,0,2,642,173,5 +0,0,0,7,0,36,10,0,57,1,18,0,0,2,6,0,36,0,7,3,0,0,0,6,0,8,9,0,5,0,2,2,0,0,7,0,36,46,0,0,86,0,0,0,1,0,0,5,0,0,0,0,4,259,0,0,0,0,0,1,0,0,0,0,0,12,0,0,2500,36,171,0,7,0,0,0,0,0,26,0,0,0,0,1,8,20,322,0,0,7,0,0,4,31,0,389,55,9,0,0,2,0,267,0,2,0,0,1074,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,255,0,90,0,0,0,6,20,196,321,268,0,0,0,0,1,0,6,0,0,0,0,0,0,579,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,38,12,264,9,0,0,300,0,1130,0,0,0,182,38,0,0,0,0,0,0,0,0,0,136,1,0,0,0,9,0,0,0,0,4,118,208,0,0,113,0,0,0,0,0,233,0,0,251,3,0,1,1,1,0,0,0,12,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,17,0,0,0,0,1,43,646,0,17,9,0,0,0,0,0,113,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,5,852,343,5 +52,0,0,11,6,67,26,13,171,18,83,0,0,0,78,0,216,0,7,9,2,4,6,2,1,0,6,0,5,0,1,1,0,5,40,0,71,429,6,0,331,0,0,0,1,0,0,2,0,0,0,0,3,199,0,2,0,0,0,1,7,0,0,0,0,45,0,0,10992,67,842,0,7,0,0,0,0,0,11,12,0,0,0,0,5,9,866,0,13,40,5,0,8,101,0,919,175,4,0,0,2,6,791,0,29,2,0,5304,0,0,1,0,0,35,0,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,1,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5,30,0,0,0,0,0,0,539,0,163,0,0,0,6,18,114,753,577,0,0,0,0,1,0,0,0,0,0,0,0,0,2132,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,390,46,719,18,0,0,556,0,726,0,0,0,345,283,0,0,0,0,0,0,0,0,0,581,1,0,0,0,24,0,0,0,0,1,249,254,2,0,401,0,6,0,0,1,2036,0,0,45,0,0,1,6,0,0,0,0,4,0,0,0,1,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,68,1,1,1,0,9,0,0,0,0,33,111,304,0,13,0,0,0,0,0,0,590,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,36,0,0,0,0,0,0,0,0,0,0,0,9,0,3,484,733,5 +1,0,0,6,0,21,19,0,139,1,46,0,0,4,8,0,37,0,8,4,0,0,0,2,1,1,3,0,5,0,1,0,0,0,5,1073,21,6,8,0,253,0,0,0,1,0,0,1,0,0,0,0,3,193,0,0,0,0,0,1,0,0,0,0,0,26,0,0,1464,21,259,0,6,0,0,0,0,0,6,0,0,0,0,0,3,5,173,0,0,5,0,0,3,125,0,1121,145,1,0,0,2,0,660,0,3,0,0,1203,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,151,0,52,0,0,0,6,22,62,10983,144,0,0,0,0,1,0,0,0,1,0,0,0,0,350,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,60,6,348,6,0,0,219,0,342,0,0,0,120,273,0,0,0,0,0,0,0,0,0,261,1,0,0,0,7,0,0,0,0,3,129,334,0,0,557,0,0,0,0,0,173,0,0,171,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,15,0,0,0,0,1,26,122,0,10,0,0,0,0,0,0,322,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,1,342,69,5 +0,0,0,2,0,11,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,0,0,1,0,0,6,0,0,0,0,0,121,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1088,11,79,0,1,0,0,0,0,0,27,0,0,0,0,0,1,11,143,0,0,0,0,0,0,0,0,17,0,12,0,0,2,0,15,0,0,0,0,232,0,0,0,0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,21,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,156,0,99,0,0,0,0,3,30,10,168,0,0,0,0,1,0,0,0,0,0,0,0,0,437,0,0,0,0,0,0,0,0,0,0,0,0,6,0,17,0,0,0,0,0,0,8,3,106,2,0,0,203,0,658,0,0,0,131,7,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,95,113,0,0,0,0,0,0,0,0,51,0,0,102,0,0,1,0,0,0,0,0,13,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,260,0,1,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,226,117,5 +0,0,0,4,0,13,3,0,26,0,7,0,0,0,3,0,15,0,7,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,13,6,0,0,22,0,0,0,1,0,0,3,0,0,0,0,0,87,1,0,0,0,0,1,0,0,0,0,0,5,0,0,753,13,59,0,1,0,0,0,0,0,8,0,0,0,1,0,2,6,183,0,0,2,0,0,1,8,0,83,15,2,0,0,2,0,57,0,1,0,0,166,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,126,0,58,0,0,0,0,3,34,69,154,0,0,0,0,1,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,97,4,0,0,150,0,255,0,0,0,77,8,0,0,0,0,0,0,1,0,0,61,1,0,0,0,3,0,0,0,0,0,95,77,0,0,30,0,0,0,0,2,38,0,0,69,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,15,204,0,1,0,0,0,0,0,0,43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,126,49,5 +0,0,0,6,0,23,64,0,100,12,36,0,0,0,16,0,20,0,6,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,10,0,23,6,5,0,163,0,0,0,1,0,0,1,1,0,0,0,1,151,0,0,0,0,0,1,0,0,1,1,0,23,0,0,567,23,238,0,3,0,0,0,0,0,2,0,0,0,0,0,1,4,93,0,0,10,0,0,2,92,0,736,155,3,1,1,2,0,433,0,14,0,0,443,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,424,0,84,0,0,0,2,14,47,904,142,0,0,0,0,1,0,0,0,0,0,0,0,0,686,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,17,143,6,0,0,182,0,13395,0,0,0,109,179,0,0,0,1,0,0,0,0,0,242,1,0,4,0,3,0,0,0,0,2,114,161,0,0,368,0,0,0,0,2,75,0,0,15,0,0,1,0,0,0,0,0,7,0,5,0,7,0,0,0,0,0,12,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,12,0,0,0,0,1,33,26,0,7,0,0,0,0,0,0,228,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,1,178,56,5 +8,0,0,11,1,40,35,1,72,2,10,0,0,9,6,0,957,0,9,2,0,0,0,7,0,10,0,0,6,0,1,0,0,1,3,9429,41,54,0,0,63,0,0,0,1,0,0,1,0,0,0,0,1,505,0,0,0,0,0,1,0,0,0,12,0,2,0,0,27760,40,1054,0,4,0,0,0,0,0,17,0,0,0,0,0,8,32,4551,0,1,3,1,0,1,0,0,295,30,2,0,0,4,1,978,0,1,23,0,3023,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,2572,0,46,0,0,0,2,5,416,681,2573,0,0,0,0,1,0,8,0,0,0,0,0,0,399,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,1,0,218,34,424,15,0,0,435,0,511,0,1,0,165,19,0,0,0,0,0,0,0,0,0,1098,1,0,0,0,9,0,0,0,0,2,163,37,0,0,27,0,0,0,0,0,3237,1,0,55,9,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,51,1,1,1,0,9,0,0,0,0,9,44,89,0,5,12,0,0,0,0,0,106,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1112,64,5 +6,0,0,24,1,156,96,1,348,41,92,0,1,12,77,0,2555,0,9,6,0,0,0,8,6,32,38,0,47,0,6,0,0,1,91,47933,157,122,39,0,686,0,0,0,1,0,0,2,0,0,0,0,27,1351,0,0,0,0,0,1,0,0,0,44,0,91,0,0,255382,156,3295,0,60,0,0,0,0,0,63,0,0,0,0,0,9,141,54901,0,1,91,1,0,7,199,0,2254,200,4,0,0,4,1,3953,0,51,117,4,17293,0,0,0,0,30,6,9,0,0,0,0,1,4,0,0,131,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,6,0,0,0,0,53,0,1,0,0,0,0,0,0,0,0,0,1,4,6,0,0,0,0,1,0,0,0,5,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,12,12,12,0,0,0,44337,0,177,0,0,0,51,214,1163,5530,44285,0,0,0,0,1,0,12,0,0,0,0,0,0,2157,6,0,0,0,0,0,0,0,0,0,0,0,119,7,0,0,0,0,0,1,0,229,93,1177,35,0,0,1106,0,1182,0,1,0,731,369,0,0,0,0,0,0,0,0,0,3190,1,0,0,0,20,0,0,0,0,26,384,576,0,0,600,0,0,0,0,0,12553,1,0,506,39,0,1,1,0,0,0,0,5,0,0,0,3,0,0,0,0,0,42,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,39,8,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,216,1,1,1,0,169,0,0,0,0,9,248,373,0,109,14,0,0,0,0,0,696,5,0,0,0,0,0,0,0,0,0,0,0,4,0,1,57,0,0,0,0,0,0,0,0,0,0,0,1,0,2,5266,602,5 +1,0,0,13,1,61,48,1,109,4,33,1,0,19,15,0,196,0,9,6,0,0,0,7,0,11,6,0,20,0,1,0,0,1,12,6917,62,54,6,0,154,0,0,0,1,0,0,1,0,0,0,0,3,769,0,0,0,0,0,1,0,0,0,2,0,17,0,0,137544,61,401,0,18,0,0,0,0,0,38,0,0,0,0,0,10,108,22547,0,1,12,1,0,4,19,0,793,100,2,0,0,4,1,453,0,6,99,0,4085,0,0,0,0,5,1,2,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,12,12,12,0,0,0,19885,0,69,0,0,0,13,42,774,1211,19843,0,0,0,0,1,0,6,0,0,0,0,0,0,448,1,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,421,36,550,14,0,0,608,0,949,0,1,0,303,59,0,0,0,0,0,0,0,0,0,430,1,0,0,0,13,0,0,0,0,4,210,181,0,0,193,0,0,0,0,0,6783,1,0,297,18,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,74,1,1,1,0,52,0,0,0,0,9,74,352,0,26,12,0,0,0,0,0,265,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,25,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1635,106,5 +6,0,0,13,0,39,4,0,48,20,6,0,0,2,41,1,59,0,7,5,0,0,0,2,2,3,15,0,13,0,5,0,0,0,19,0,39,134,18,0,185,0,0,0,1,0,0,4,0,0,0,0,9,145,0,0,0,0,0,1,0,0,0,0,0,19,0,0,1755,39,189,0,18,0,0,0,0,0,9,0,0,0,0,0,3,8,93,0,0,19,0,0,0,0,0,78,0,2,0,0,2,0,250,0,14,0,2,1846,0,1,4,0,2,0,0,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,1,0,0,0,0,3,0,7,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,128,0,67,0,0,0,18,55,85,151,158,0,0,0,0,1,0,0,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,4,0,0,4,0,4,0,0,0,0,0,0,20,31,261,14,0,0,281,0,1129,0,0,0,190,92,0,0,0,0,0,0,0,0,0,168,1,0,0,0,9,0,0,0,0,9,153,96,0,0,0,0,0,0,0,0,396,0,0,217,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,41,0,0,0,0,1,58,219,0,36,0,0,0,0,0,0,98,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,316,83,5 +3,0,0,9,1,60,43,1,88,6,20,0,0,9,13,0,1012,0,9,4,0,0,0,7,0,11,3,0,10,0,1,0,0,1,11,8856,61,54,3,0,101,0,0,0,1,0,0,3,0,0,0,0,2,573,0,0,0,0,0,1,0,0,0,6,0,17,0,0,64257,60,1180,0,7,0,0,0,0,0,35,0,0,0,0,0,9,56,10417,0,1,11,1,0,3,12,0,441,50,4,0,0,4,1,1126,0,7,56,0,2920,0,0,0,0,10,3,6,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,8557,0,83,0,0,0,5,26,571,1032,8534,0,0,0,0,1,0,4,0,0,0,0,0,0,477,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,1,0,217,34,497,10,0,0,562,0,748,0,1,0,253,27,0,0,0,0,0,0,4,0,0,1194,1,0,0,0,11,0,0,0,0,3,186,96,0,0,103,0,0,0,0,0,9188,1,0,123,14,0,1,1,1,0,0,0,4,0,0,0,2,0,0,0,0,0,6,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,76,1,1,1,0,24,0,0,0,0,9,72,210,0,13,12,0,0,0,0,0,158,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,14,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1147,86,5 +2,0,0,8,3,19,5,6,72,2,19,0,0,0,7,0,24,0,6,6,0,3,3,1,1,0,0,0,0,0,1,0,0,3,8,2,22,6,0,0,131,0,0,0,1,0,0,2,0,0,0,0,0,97,0,0,0,0,0,1,0,0,0,0,0,14,0,0,761,19,302,0,1,0,0,0,0,0,10,9,0,0,0,0,1,4,69,0,6,8,3,0,2,33,0,287,40,3,0,0,2,3,192,0,4,0,0,252,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,71,0,35,0,0,0,0,3,42,317,96,0,0,0,0,1,0,0,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,17,151,13,0,0,256,0,282,0,0,0,150,8,0,0,0,0,0,0,0,0,0,133,1,0,0,0,14,0,0,0,0,0,103,172,0,0,88,0,0,0,0,0,142,0,0,105,0,0,1,0,1,0,0,0,2,0,0,0,2,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,0,0,0,0,0,9,30,459,0,1,0,0,0,0,0,0,101,58,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,6,0,1,125,74,5 +0,0,0,5,1,15,4,5,27,1,8,0,0,0,4,0,16,0,6,2,0,1,1,1,1,0,0,0,0,0,1,0,0,1,3,0,16,6,0,0,28,0,0,0,1,0,0,3,0,0,0,0,0,102,0,0,0,0,0,1,0,0,0,0,0,7,0,0,814,15,130,0,1,0,0,0,0,0,14,3,0,0,0,0,1,5,133,0,5,3,1,0,1,9,0,91,15,6,0,0,2,1,65,0,2,0,0,156,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,118,0,73,0,0,0,0,3,34,67,131,0,0,0,0,1,0,0,0,0,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,8,5,104,6,0,0,181,0,352,0,0,0,104,3,0,0,0,0,0,0,3,0,0,65,1,0,0,0,6,0,0,0,0,0,97,95,0,0,30,0,0,0,0,0,66,0,0,140,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,19,276,0,1,0,0,0,0,0,0,51,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,2,0,2,192,50,5 +1,0,0,10,1,38,34,1,99,2,16,0,0,17,8,0,1450,0,9,2,0,0,0,7,0,10,0,0,7,0,1,0,0,1,3,1867,39,54,0,0,77,0,0,0,1,0,0,1,0,0,0,0,1,428,0,0,0,0,0,1,0,0,0,2,0,2,0,0,36255,38,1579,0,5,0,0,0,0,0,17,0,0,0,0,0,8,40,5406,0,1,3,1,0,1,0,0,456,55,1,0,0,4,1,1516,0,1,69,0,2362,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,12,12,12,0,0,0,3503,0,44,0,0,0,3,6,431,506,3494,0,0,0,0,1,0,4,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,378,31,382,11,0,0,394,0,563,0,1,0,143,9,0,0,0,0,0,0,0,0,0,1633,1,0,0,0,9,0,0,0,0,2,164,37,0,0,75,0,0,0,0,0,5437,1,0,6065,8,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,42,1,1,1,0,13,0,0,0,0,9,42,107,0,6,12,0,0,0,0,0,173,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,19,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2693,134,5 +0,0,0,5,0,34,6,0,14,0,2,0,0,2,4,0,18,0,6,3,0,0,0,5,0,8,0,0,3,0,0,0,0,0,3,0,34,6,0,0,28,0,0,0,1,0,0,7,0,0,0,0,1,155,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2172,34,86,0,2,0,0,0,0,0,33,0,0,0,0,2,7,21,336,0,0,3,0,0,0,0,0,86,5,9,0,0,2,0,30,0,0,0,0,568,0,0,0,0,0,0,1,0,0,0,0,1,5,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,283,0,112,0,0,0,0,3,198,30,274,0,0,0,0,1,0,3,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,2,0,0,7,1,4,0,0,0,0,1,0,32,10,150,5,0,0,338,0,483,0,0,0,219,19,0,0,0,0,0,0,5,0,0,52,1,0,0,0,8,0,0,0,0,1,117,192,0,0,0,0,0,0,0,0,138,0,0,224,3,0,1,1,1,0,0,0,18,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,1,0,0,0,0,1,37,783,0,2,9,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,2,0,0,0,0,0,0,0,0,0,7,361,125,5 +6,0,0,11,0,40,62,0,166,61,61,0,1,3,72,0,71,0,7,5,0,0,0,1,7,3,15,0,19,0,1,0,0,0,20,0,40,132,22,0,357,0,0,0,1,0,0,7,0,0,0,0,11,290,0,0,0,0,0,1,0,0,2,0,0,56,0,0,38591,40,494,0,20,0,0,0,0,0,30,0,0,0,0,0,1,10,8586,0,0,20,0,0,5,106,0,1157,177,13,1,0,6,0,792,0,47,6,5,2450,0,0,0,0,7,0,4,0,0,0,0,1,0,0,0,37,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,47,0,1,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,4620,0,141,0,0,0,22,71,89,1060,4622,0,0,0,0,1,0,0,0,0,0,0,0,0,6042,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,25,83,315,14,0,0,375,0,1201,0,0,0,268,70,0,0,0,0,0,0,0,0,0,443,1,0,0,0,13,0,0,0,0,12,140,314,0,0,574,0,0,0,0,2,4655,0,0,13578,0,0,1,0,0,0,0,0,12,0,0,0,5,0,0,0,0,0,57,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,37,0,0,0,0,1,60,288,0,38,0,0,0,0,0,0,321,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,67,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9902,203,5 +0,0,0,16,0,77,59,0,260,28,85,0,1,5,50,0,95,0,7,10,0,0,0,12,5,15,33,0,24,0,3,1,0,0,28,0,77,120,30,0,460,0,0,0,1,0,0,1,0,0,0,0,14,364,0,0,0,0,0,1,0,0,0,3,0,46,0,0,5985,77,625,0,26,0,0,0,0,0,9,0,0,0,0,0,16,23,999,0,0,28,0,0,7,198,0,1833,370,3,0,0,2,0,1212,0,29,0,4,4926,0,0,0,0,12,0,5,0,0,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,80,10,10,10,0,0,0,668,0,135,0,0,0,26,105,257,1488,742,0,0,0,0,1,0,3,0,0,0,0,0,0,942,0,0,1,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,45,49,383,18,0,0,451,0,1387,0,0,0,267,155,0,24,0,0,0,0,0,0,0,562,1,0,0,0,27,0,0,0,0,11,188,432,0,0,907,0,0,0,0,1,527,0,0,47,3,0,1,51,1,0,0,0,8,0,0,0,2,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,3,6,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,100,1,1,1,0,86,0,0,0,0,1,105,220,0,67,9,0,0,0,1,0,485,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,46,6,0,0,0,0,0,0,0,0,0,0,0,0,2,425,157,5 +1,0,0,9,0,35,8,0,98,8,31,0,0,2,20,1,36,0,7,6,0,0,0,5,0,9,3,0,4,0,1,0,0,0,7,0,35,94,3,0,195,0,0,0,1,0,0,2,0,0,0,0,2,264,0,0,0,0,0,1,0,0,0,0,0,22,0,0,1388,35,193,0,3,0,0,0,0,0,10,0,0,0,0,0,9,18,158,0,0,7,0,0,3,51,0,558,105,2,0,0,2,0,339,0,13,0,0,757,0,0,0,0,1,0,3,0,1,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,10,10,10,0,0,0,121,0,60,0,0,0,2,11,192,565,111,0,0,0,0,1,0,5,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,29,177,10,0,0,243,0,739,0,0,0,131,19,0,0,0,0,0,0,0,0,0,203,1,0,0,0,11,0,0,0,0,2,123,202,0,0,245,0,0,0,0,0,227,0,0,26,3,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,6,0,0,0,0,1,42,287,0,8,9,0,0,0,0,0,166,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,2,232,75,5 +2,0,0,5,0,58,8,0,51,11,3,0,0,2,16,0,30,0,7,3,0,0,0,5,0,8,6,0,4,0,2,1,0,0,31,0,58,6,0,0,104,0,0,0,1,0,0,1,0,0,0,0,3,130,0,0,0,0,0,1,0,0,0,1,0,17,0,0,13888,58,81,0,5,0,0,0,0,0,11,0,0,0,0,0,7,14,1614,0,0,31,0,0,0,0,0,84,5,2,0,0,2,0,93,0,13,0,0,1169,0,0,0,0,4,2,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,9,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,10,10,10,0,0,0,1230,0,82,0,0,0,4,12,249,11200,1232,0,0,0,0,1,0,4,0,0,0,0,0,0,4243,1,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,2,0,32,23,268,5,0,0,373,0,773,0,0,0,266,45,0,0,0,0,0,0,0,0,0,117,1,0,0,0,8,0,0,0,0,3,148,156,0,0,0,0,0,0,0,0,7533,0,0,4475,3,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,81,1,1,1,0,6,0,0,0,0,1,89,649,0,12,9,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1699,84,5 +0,0,0,18,1,43,28,1,71,63,9,1,1,3,83,0,132,0,9,7,0,0,0,1,2,6,21,0,17,0,1,0,0,1,22,0,44,691,33,0,188,0,0,0,1,0,0,2,0,0,0,0,8,216,0,0,0,0,0,1,0,0,0,0,0,62,0,0,5090,43,332,0,19,0,0,0,0,0,7,0,0,0,0,0,1,4,46,0,1,22,1,0,1,0,0,119,0,4,0,0,4,1,406,0,60,0,4,2261,0,0,0,0,35,0,1,0,0,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,105,0,74,0,0,0,16,77,86,1263,99,0,0,0,0,1,0,1,0,0,0,0,0,0,910,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,126,95,509,24,0,0,391,0,1341,0,1,0,180,75,0,0,0,0,0,0,0,0,0,337,1,0,0,0,10,0,0,0,0,9,171,39,0,0,0,0,0,0,0,0,69685,0,0,47,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,50,1,1,1,0,58,0,0,0,0,9,66,154,0,45,0,0,0,0,0,0,178,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,63,0,0,0,0,0,0,0,0,0,0,0,1,0,0,461,213,5 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,35,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,3,5 +0,0,0,5,0,35,25,0,42,0,2,0,0,2,3,0,647,0,6,3,0,0,0,7,0,11,0,0,4,0,1,0,0,0,1,995,35,6,0,0,24,0,0,0,1,0,0,3,0,0,0,0,1,286,0,0,0,0,0,1,0,0,0,0,0,4,0,0,23586,35,753,0,1,0,0,0,0,0,36,0,0,0,0,0,9,22,4256,0,0,1,0,0,0,0,0,96,5,4,0,0,2,0,687,0,0,0,0,1859,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,4,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,2907,0,61,0,0,0,0,3,280,461,2892,0,0,0,0,1,0,4,0,0,0,0,0,0,364,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,10,222,5,0,0,289,0,352,0,0,0,120,7,0,0,0,0,0,0,0,0,0,727,1,0,0,0,10,0,0,0,0,0,122,53,0,0,0,0,0,0,0,0,2131,1,0,123,18,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,0,0,0,0,0,1,36,205,0,2,14,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,857,39,5 +0,0,0,13,0,40,31,0,123,48,24,4,1,3,67,0,70,0,7,8,0,0,0,1,1,5,18,0,14,0,1,0,0,0,14,0,40,128,25,0,324,0,0,0,1,0,0,3,0,0,0,0,7,237,0,0,0,0,0,1,0,0,0,0,0,49,0,0,4745,40,364,0,15,0,0,0,0,0,16,0,0,0,0,0,2,6,167,0,0,14,0,0,2,55,0,506,80,6,0,0,2,0,564,0,40,0,5,2544,0,0,0,0,15,0,7,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,220,0,110,0,0,0,14,62,84,659,237,0,0,0,0,1,0,0,0,0,0,0,0,0,632,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,14,66,337,16,0,0,376,0,1848,0,0,0,245,72,0,0,0,0,0,0,0,0,0,330,1,0,0,0,10,0,0,0,0,7,166,229,0,0,211,0,0,0,0,0,384,0,0,81,0,0,1,0,0,0,0,0,7,0,0,0,6,0,0,0,0,0,49,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,40,0,0,0,0,1,54,220,0,38,0,0,0,0,0,0,251,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,50,0,0,0,0,0,0,0,0,0,0,0,0,0,3,415,113,5 +9,0,0,12,2,81,117,2,250,16,53,0,0,9,35,0,1658,0,11,8,0,0,0,8,2,15,15,0,26,0,3,0,0,2,23,14312,83,102,30,0,358,0,0,0,1,0,0,7,0,0,0,0,10,771,0,0,0,0,0,1,0,0,0,3,0,45,0,0,42674,81,2147,0,24,0,0,0,0,0,68,0,0,0,0,0,10,72,7494,0,2,23,2,0,6,118,0,1396,165,14,0,0,6,2,2320,0,26,59,0,5740,0,0,0,0,26,2,5,0,0,0,1,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,11,0,30,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0,0,2,0,0,0,0,0,0,0,28,0,1,0,0,0,0,0,2,0,0,0,1,3,2,0,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,12,12,12,0,0,0,3079,0,165,0,0,0,22,108,670,2247,3014,0,0,0,0,1,0,8,0,0,0,0,0,0,1565,2,0,0,0,0,0,0,0,0,0,0,0,13,3,0,0,0,0,0,1,0,321,70,839,15,0,0,935,0,1288,0,2,0,469,92,0,0,0,0,0,0,0,0,0,2133,1,0,0,0,18,0,0,0,0,9,246,374,0,0,414,0,6,0,0,0,6369,1,0,595,25,0,1,1,0,0,0,0,19,0,0,0,2,0,0,0,0,0,16,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,25,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,103,1,1,1,0,89,0,0,0,0,17,106,463,0,45,14,0,0,0,0,0,458,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,28,0,0,0,0,0,0,0,0,0,0,0,2,0,4,2328,176,5 +2,0,0,22,1,87,115,1,257,33,72,0,0,11,53,1,224,0,17,7,0,0,0,8,4,18,30,0,34,0,1,1,0,1,18,4912,88,114,30,0,454,0,0,0,1,0,0,3,0,0,0,0,11,916,0,0,0,0,0,1,0,0,2,3,0,44,0,0,76494,87,794,0,32,0,0,0,0,0,43,0,0,0,0,0,9,101,12300,0,1,18,1,0,5,144,0,1596,265,5,1,0,4,1,1162,0,29,63,2,5261,0,0,0,0,19,2,3,0,1,0,0,1,0,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,31,0,1,0,0,0,0,0,0,0,0,0,1,4,2,0,0,0,0,2,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,12,12,12,0,0,0,9945,0,129,0,0,0,28,174,808,2173,9905,0,0,0,0,1,0,5,0,0,0,0,0,0,1627,2,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,1,0,227,73,665,28,0,0,731,0,1191,0,1,0,356,86,0,0,0,0,0,0,0,0,0,750,1,0,0,0,19,0,0,0,0,11,244,324,0,0,643,0,0,0,0,2,2882,1,0,690,22,0,1,1,0,0,0,0,7,0,0,0,6,0,0,0,0,0,39,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,22,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,143,1,1,1,0,111,0,0,0,0,9,106,338,0,70,14,0,0,0,0,0,480,5,0,0,0,0,0,0,0,0,0,0,0,3,0,1,43,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1818,189,5 +1,0,0,23,2,93,75,2,281,21,76,1,1,3,72,1,199,0,11,10,0,0,0,5,9,8,27,0,28,0,1,0,0,2,56,0,95,359,53,0,537,0,0,0,1,0,0,3,0,0,0,0,15,505,0,0,0,0,0,1,0,0,0,0,0,60,0,0,4328,93,686,0,29,0,0,0,0,0,7,0,0,0,0,0,8,12,118,0,2,56,2,0,9,156,0,1558,280,2,0,0,6,2,1103,0,25,1,5,3844,0,0,0,0,29,1,7,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,201,0,182,0,0,0,30,124,170,1606,217,0,0,0,0,1,0,0,0,0,2,0,0,0,817,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,265,72,907,30,0,0,760,0,4244,0,2,0,381,117,0,0,0,0,0,0,0,0,0,720,1,0,0,0,24,0,0,0,0,11,255,344,0,0,813,0,0,0,0,2,1188,0,0,26,0,0,1,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,109,1,1,1,0,108,0,0,0,0,29,151,171,0,64,0,0,0,0,0,0,540,6,0,0,0,0,0,0,0,0,0,0,0,2,0,1,33,0,0,0,0,0,0,0,0,0,0,0,2,0,1,111837,555,5 +3,0,0,9,0,20,3,0,60,17,7,0,1,2,26,0,63,0,7,4,0,0,0,1,1,2,23,0,8,0,1,0,0,0,6,0,20,24,11,0,56,0,0,0,1,0,0,2,0,0,0,0,4,152,0,0,0,0,0,1,0,0,0,0,0,7,0,0,652,20,195,0,9,0,0,0,0,0,6,0,0,0,0,1,1,5,35,0,0,6,0,0,0,0,0,46,0,3,0,0,2,0,230,0,4,0,3,543,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,86,0,0,0,0,0,0,80,0,41,0,0,0,8,44,52,89,98,0,0,0,0,1,0,0,0,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,24,145,10,0,0,148,0,379,0,0,0,70,26,0,0,0,0,0,0,0,0,0,169,1,0,0,0,6,0,0,0,0,5,110,36,0,0,0,0,0,0,0,0,284,0,0,14,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,16,0,0,0,0,1,26,190,0,34,0,0,0,0,0,0,53,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,1,176,218,5 +1,0,0,14,0,30,7,0,75,16,20,1,1,1,35,1,56,0,7,5,0,0,0,1,0,2,15,0,9,0,2,0,0,0,12,0,30,66,13,0,135,0,0,0,1,0,0,1,0,0,0,0,5,105,0,0,0,0,0,1,0,0,0,0,0,16,0,0,7887,30,212,0,11,0,0,0,0,0,6,0,0,0,0,0,1,3,620,0,0,12,0,0,2,29,0,305,55,1,0,0,2,0,341,0,10,0,2,863,0,0,1,0,2,0,2,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,677,0,65,0,0,0,10,45,73,292,685,0,0,0,0,1,0,0,0,0,0,0,0,0,2077,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,30,495,20,0,0,395,0,746,0,0,0,313,57,0,0,0,0,0,0,0,0,0,204,1,0,0,0,6,0,0,0,0,6,350,80,0,0,113,0,1,0,0,0,839,0,0,2384,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,30,0,0,0,0,1,42,46,0,28,0,0,0,0,0,0,130,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,785,91,5 +1,0,0,6,1,42,40,1,72,2,9,0,0,9,6,0,899,0,9,2,0,0,0,7,0,10,0,0,6,0,1,0,0,1,5,9447,43,54,0,0,58,0,0,0,1,0,0,1,0,0,0,0,1,519,0,0,0,0,0,1,0,0,0,4,0,2,0,0,42529,42,1009,0,4,0,0,0,0,0,24,0,0,0,0,0,8,32,6546,0,1,5,1,0,1,0,0,295,30,2,0,0,4,1,927,0,1,23,0,2794,0,0,0,0,3,1,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,4558,0,42,0,0,0,2,5,431,828,4549,0,0,0,0,1,0,7,0,0,0,0,0,0,1680,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,218,28,395,7,0,0,465,0,594,0,1,0,193,22,0,0,0,0,0,0,0,0,0,1044,1,0,0,0,9,0,0,0,0,2,158,53,0,0,27,0,0,0,0,0,3290,1,0,1607,12,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,50,1,1,1,0,9,0,0,0,0,9,48,185,0,5,12,0,0,0,0,0,106,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1290,55,5 +0,0,0,23,7,55,276,28,1816,18,163,0,0,0,53,0,4120,0,7,17,0,7,7,3,3,1,9,0,14,0,3,2,0,7,27,0,62,110,30,0,1209,0,0,0,1,0,0,3,0,0,0,0,9,317,0,0,0,0,0,1,0,0,0,0,0,40,0,0,4820,55,7002,0,19,0,0,0,0,0,20,21,0,0,0,0,3,9,541,0,28,27,7,0,4,688,0,5832,735,5,0,0,2,7,7291,0,28,0,0,1870,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,8,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2072,0,0,0,0,0,0,493,0,267,0,0,0,18,30,145,2498,716,0,0,0,0,1,0,0,0,0,0,0,0,0,2799,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,16,36,570,58,0,0,890,0,1417,0,0,0,593,72,0,129,0,0,0,0,0,0,0,6435,1,0,0,0,37,0,0,0,0,5,143,1398,0,0,2211,0,0,0,0,4,6685,0,0,178,0,0,1,255,1,0,0,0,8,0,0,0,2,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,81,1,1,1,0,38,0,0,0,0,57,89,610,0,29,0,0,1,0,0,0,1343,22,0,0,0,0,0,0,0,0,0,0,0,7,0,1,24,253,0,0,0,0,0,0,0,0,0,0,14,0,4,1609,82,5 +0,0,0,3,0,31,7,0,17,0,2,0,0,2,2,0,145,0,6,3,0,0,0,6,0,10,0,0,3,0,1,0,0,0,1,71,31,6,0,0,20,0,0,0,1,0,0,1,0,0,0,0,1,370,0,0,0,0,0,1,0,0,0,0,0,2,0,0,78376,31,182,0,1,0,0,0,0,0,14,0,0,0,0,0,8,19,10801,0,0,1,0,0,0,0,0,86,5,2,0,0,2,0,154,0,0,0,0,14433,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,12,12,0,0,0,7610,0,39,0,0,0,0,3,231,1496,7601,0,0,0,0,1,0,3,0,0,0,0,0,0,519,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,166,3,0,0,187,0,199,0,0,0,64,3,0,0,0,0,0,0,0,0,0,181,1,0,0,0,9,0,0,0,0,0,126,15,0,0,0,0,0,0,0,0,2188,1,0,1160,7,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,0,0,0,0,0,1,32,52,0,2,12,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1866,24,5 +0,0,0,5,0,36,67,0,32,0,2,0,0,2,2,0,645,0,6,3,0,0,0,7,0,11,0,0,4,0,1,0,0,0,3,4863,36,6,0,0,22,0,0,0,1,0,0,1,0,0,0,0,1,283,0,0,0,0,0,1,0,0,0,0,0,3,0,0,84233,36,926,0,1,0,0,0,0,0,129,0,0,0,0,0,9,20,14199,0,0,3,0,0,0,0,0,93,5,2,0,0,2,0,770,0,0,0,0,2998,0,0,0,0,4,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,12024,0,58,0,0,0,0,3,371,723,12010,0,0,0,0,1,0,4,0,0,0,0,0,0,422,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,230,5,0,0,439,0,296,0,0,0,285,4,0,0,0,0,0,0,0,0,0,756,1,0,0,0,10,0,0,0,0,0,137,92,0,0,0,0,0,0,0,0,2540,1,0,69,66,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,0,0,0,0,0,1,39,151,0,2,14,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1208,76,5 +1,0,0,15,0,63,39,0,142,24,27,0,1,6,43,7,867,0,7,7,0,0,0,10,7,17,27,0,23,0,2,0,0,0,22,918,63,108,31,0,250,0,1,0,1,0,0,1,0,0,0,0,15,289,0,5,0,0,0,1,0,0,0,0,0,36,0,0,24139,63,1183,0,21,0,0,0,0,0,15,0,0,0,0,0,11,23,4774,0,0,22,0,0,2,62,0,719,115,1,0,0,2,0,1383,0,25,0,5,4325,0,0,0,0,32,1,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,110,12,12,12,0,0,0,1233,0,84,0,0,0,25,117,305,1764,1230,0,0,0,0,1,0,6,0,0,0,0,0,0,1469,0,0,0,2,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,39,50,424,16,0,0,365,0,677,0,0,0,177,82,0,0,0,0,0,0,0,0,0,1139,1,0,0,0,24,0,0,0,0,13,163,131,0,0,301,0,1,0,0,0,4378,1,0,1769,7,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,2,0,0,0,7,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,80,1,1,1,0,76,0,0,0,0,8,85,265,0,57,12,0,1,0,0,0,230,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,28,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2133,99,5 +7,0,0,22,1,105,102,1,280,87,82,0,1,6,161,1,267,0,33,15,0,0,0,11,8,28,42,0,43,0,4,0,0,1,46,4,106,378,81,0,783,0,0,0,1,0,0,4,0,0,0,0,24,545,0,0,0,0,0,1,0,2,1,2,0,120,0,0,10262,105,995,0,44,0,1,0,0,0,21,0,0,0,0,0,13,27,2343,0,1,46,1,0,8,182,0,1770,295,5,1,0,4,1,1586,0,92,0,5,5888,0,0,0,0,21,1,4,0,0,0,0,1,0,0,0,57,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,1,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,12,12,12,0,0,0,2123,0,186,0,0,0,46,597,384,2845,1500,0,0,0,0,1,0,8,0,0,0,0,0,0,1749,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,163,138,1021,48,0,0,1031,0,3215,0,1,0,631,359,0,0,0,0,0,0,0,0,0,933,1,0,0,0,34,0,0,0,0,22,445,512,0,0,626,0,5,0,0,21,2273,1,0,64,5,0,1,1,0,0,0,0,6,0,0,0,6,0,0,0,0,0,111,2,0,4,2,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,5,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,160,1,1,1,0,212,0,0,0,0,9,152,568,0,105,12,0,0,0,0,0,676,11,0,0,0,0,0,0,0,0,0,0,0,2,0,1,95,0,0,0,0,0,0,0,0,0,0,0,1,0,4,5648,392,5 +1,0,0,5,0,14,5,0,39,15,13,0,0,0,18,0,18,0,6,2,0,0,0,1,0,0,0,0,2,0,1,0,0,0,3,0,14,6,3,0,103,0,0,0,1,0,0,2,0,0,0,0,1,98,0,0,0,0,0,1,0,0,0,0,0,25,0,0,7081,14,104,0,3,0,0,0,0,0,11,0,0,0,0,0,1,4,1584,0,0,3,0,0,1,30,0,256,25,3,0,0,2,0,184,0,16,0,0,263,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,866,0,46,0,0,0,2,9,32,231,873,0,0,0,0,1,0,0,0,0,0,0,0,0,2018,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,8,27,103,5,0,0,190,0,302,0,0,0,128,17,0,0,0,0,0,0,2,0,0,99,1,0,0,0,3,0,0,0,0,2,96,175,0,0,59,0,0,0,0,0,447,0,0,1610,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,17,342,0,3,0,0,0,0,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,3,853,53,5 +1,0,0,3,0,21,14,0,11,0,2,0,0,0,15,0,15,0,8,1,0,0,0,1,0,0,0,0,1,0,3,0,0,0,11,2,21,6,0,0,13,0,2,0,1,0,0,2,1,0,0,0,2,60,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1273,21,66,0,4,0,0,0,0,0,14,0,0,0,0,0,1,7,468,0,0,11,0,0,0,0,0,18,0,6,0,0,2,0,35,0,0,0,0,538,0,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,78,0,39,0,0,0,4,5,35,75,78,0,0,0,0,1,0,2,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,147,3,0,0,178,0,264,0,0,0,98,18,0,0,0,0,0,0,0,0,0,65,1,0,2,0,2,0,0,0,0,3,114,51,0,0,0,0,0,0,0,0,232,0,0,812,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,372,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,13,0,0,0,0,1,32,208,0,4,0,0,1,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,273,35,5 +0,0,0,5,0,18,105,0,574,2,122,0,0,0,5,0,21,0,7,1,0,0,0,1,0,0,3,0,1,0,2,0,0,0,8,0,18,6,0,0,1102,0,0,0,1,0,0,9,0,0,0,0,1,187,0,0,0,0,0,1,0,0,0,0,0,113,0,0,2518,18,886,0,3,0,0,0,0,0,36,0,0,0,0,1,1,13,199,0,0,8,0,0,1,552,0,4152,60,16,0,0,2,0,2774,0,3,0,0,416,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,218,0,94,0,0,0,2,8,38,3686,237,0,0,0,0,1,0,0,0,0,0,0,0,0,985,0,0,0,0,0,0,0,0,0,0,0,0,9,0,10,0,0,0,0,0,0,8,9,146,4,0,0,406,0,812,0,0,0,337,18,0,0,0,0,0,2,0,0,0,834,1,0,0,0,2,0,0,0,0,2,103,1591,0,0,146,0,0,0,0,1,78,0,0,179,0,0,1,0,1,0,0,0,21,0,0,0,6,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,4,0,0,0,0,1,26,732,0,6,0,0,0,0,0,0,1361,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,214,43,5 +5,0,0,21,0,36,29,0,72,24,25,0,0,0,110,1,96,0,7,7,0,0,0,9,4,7,30,0,16,0,2,2,0,0,13,0,36,9,35,0,330,0,0,0,1,0,0,4,0,0,0,0,10,295,0,0,0,0,0,1,0,0,0,0,0,35,0,0,9897,36,464,0,20,0,0,0,0,0,40,0,0,0,0,0,12,18,1078,0,0,13,0,0,1,39,0,386,30,10,0,0,2,0,667,0,24,0,0,2251,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,3,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,914,0,153,0,0,0,20,226,109,531,950,0,0,0,0,1,0,0,0,0,0,0,0,0,2538,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,0,0,0,0,0,0,8,44,290,24,0,0,348,0,1081,0,0,0,225,44,0,3,0,0,0,0,2,0,0,340,1,0,0,0,20,0,0,0,0,2,133,192,0,0,182,0,2,0,4,3,7445,0,0,2307,0,0,1,3,0,0,0,0,13,0,8,0,0,0,0,0,0,0,99,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,167,0,0,0,0,1,49,407,0,57,0,0,0,0,0,0,273,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,26,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1524,153,5 +2,0,0,7,1,53,33,1,54,2,12,0,0,6,8,0,128,0,9,2,0,0,0,10,0,11,0,0,6,0,1,0,0,1,7,619,54,54,0,0,70,0,0,0,1,0,0,1,1,0,0,0,1,265,0,0,0,0,0,1,0,0,0,3,0,7,0,0,25605,53,286,0,3,0,0,0,1,0,67,0,0,0,0,0,11,31,6179,0,1,7,1,0,2,8,0,309,35,4,0,0,4,1,173,0,3,3,0,2589,0,0,0,0,2,2,1,0,0,0,0,1,0,0,0,7,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,3069,0,130,0,0,0,1,4,403,358,3056,0,0,0,0,1,0,3,0,0,0,0,0,0,7213,2,0,0,0,2,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,189,30,732,8,0,0,438,0,594,0,1,0,149,334,0,0,0,0,0,0,0,0,0,250,1,0,2,0,12,0,0,0,0,2,150,42,0,0,36,0,0,0,0,0,1972,1,0,4540,8,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,68,1,1,1,0,5,0,0,0,0,9,61,98,0,4,14,0,0,0,0,0,111,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2870,135,5 +2,0,0,7,0,44,129,0,222,51,66,0,0,2,58,0,31,0,7,5,0,0,0,5,0,10,6,0,6,0,0,0,0,0,16,0,44,6,8,0,454,0,0,0,1,0,0,4,0,0,0,0,3,269,0,0,0,0,0,1,0,0,2,1,0,78,0,0,2989,44,538,0,5,0,0,0,0,0,24,0,0,0,1,0,7,17,357,0,0,16,0,0,5,207,0,1705,270,7,0,0,2,0,1069,0,55,0,0,1508,0,0,1,0,18,1,4,0,0,0,0,1,2,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,21,0,1,0,0,0,0,0,1,0,0,0,1,4,3,1,0,1,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,469,0,113,0,0,0,4,22,185,1654,323,0,0,0,0,1,0,2,0,0,0,0,0,0,1386,1,0,0,0,0,0,0,0,0,0,0,0,4,2,4,0,0,0,0,1,0,32,65,242,7,0,0,457,0,699,0,0,0,350,68,0,0,0,0,0,0,4,0,0,515,1,0,0,0,10,0,0,0,0,3,148,524,0,0,622,0,0,0,0,4,216,0,0,210,3,0,1,1,0,0,0,0,9,0,2,0,12,0,0,0,0,0,51,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,3,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,18,0,0,0,0,1,60,459,0,13,9,0,0,0,0,0,515,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,59,0,0,0,0,0,0,0,0,0,0,0,0,0,5,444,154,5 +2,0,0,13,0,53,6,0,35,13,5,0,1,5,31,0,54,0,7,7,0,0,0,5,1,11,12,0,10,0,1,0,0,0,18,0,53,135,21,0,126,0,0,0,1,0,0,3,0,0,0,0,5,153,0,0,0,0,0,1,0,0,0,0,0,22,0,0,7776,53,186,0,9,0,0,0,0,0,27,0,0,0,0,0,8,36,1667,0,0,18,0,0,0,0,0,114,5,3,0,0,2,0,211,0,16,0,4,1636,0,0,0,0,20,0,1,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,10,10,10,0,0,0,929,0,92,0,0,0,8,51,198,188,929,0,0,0,0,1,0,2,0,0,1,0,0,0,2408,0,0,0,0,0,0,0,0,0,5,0,0,3,1,16,0,0,0,0,1,4,37,40,246,14,0,0,287,0,548,0,0,0,160,87,0,0,0,0,0,0,6,0,0,144,1,0,0,0,13,0,0,0,0,4,151,77,0,0,0,0,0,0,0,0,5431,0,0,1555,3,0,1,1,1,0,0,0,6,0,0,0,1,0,0,0,0,0,13,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,0,65,1,1,1,0,56,0,0,0,0,1,71,268,0,25,9,0,0,0,0,0,94,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1106,136,5 +0,0,0,18,0,44,32,0,38,22,18,0,0,2,35,0,30,0,7,3,0,0,0,5,0,8,6,0,3,0,2,2,0,0,5,0,44,6,0,0,179,0,0,0,1,0,0,7,0,0,0,0,4,236,0,0,0,0,0,1,0,0,0,0,0,33,0,0,14652,44,196,0,5,0,0,0,0,0,33,0,0,0,0,0,7,22,3100,0,0,5,0,0,2,16,0,219,30,11,0,0,2,0,206,0,24,0,0,1568,0,0,0,0,0,0,6,0,0,0,0,1,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,10,10,10,0,0,0,2161,0,128,0,0,0,6,19,172,659,2136,0,0,0,0,1,0,2,0,0,0,0,0,0,3289,0,0,0,0,0,0,0,0,0,0,0,0,7,1,2,0,0,0,0,1,0,32,44,324,18,0,0,389,0,779,0,0,0,222,23,0,0,0,0,0,0,4,0,0,162,1,0,0,0,8,0,0,0,0,2,178,151,0,0,50,0,0,0,0,0,785,0,0,2984,3,0,1,1,1,0,0,0,14,0,0,0,5,0,0,0,0,0,31,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,31,0,0,0,0,1,49,523,0,12,9,0,0,0,0,0,126,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,26,0,0,0,0,0,0,0,9,0,0,0,0,0,3,1483,127,5 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,14,0,0,0,0,3,21,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,34,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,3,5 +6,0,0,9,1,85,55,1,129,9,22,0,0,9,14,1,1388,0,9,4,0,0,0,8,0,11,21,0,21,0,2,5,0,1,46,20723,86,89,6,0,124,0,0,0,1,0,0,2,0,0,0,0,9,566,0,0,0,0,0,1,0,0,0,12,0,18,0,0,115871,85,1645,0,25,0,0,0,0,0,50,0,0,0,0,0,9,67,20105,0,1,46,1,0,3,21,0,571,60,3,0,0,4,1,1557,0,8,38,0,6486,0,0,0,0,11,6,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,9,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,12,12,12,0,0,0,14554,0,167,0,0,0,22,51,734,1852,14539,0,0,0,0,1,0,16,0,0,0,0,0,0,2877,0,0,0,0,0,0,0,0,0,0,0,0,2,7,2,0,0,0,0,2,0,227,38,659,10,0,0,680,0,897,0,1,0,394,55,0,0,0,0,0,0,5,0,0,1627,1,0,0,0,12,0,0,0,0,5,212,161,0,0,127,0,0,0,0,1,6292,1,0,2116,22,0,1,1,1,0,0,0,4,0,0,0,1,0,0,0,0,0,8,0,0,0,25,0,0,0,0,0,0,0,46,46,0,0,6,0,0,0,0,0,22,7,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,141,1,1,1,0,57,0,0,0,0,35,132,301,0,48,12,0,0,0,0,0,207,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,17,0,0,0,0,0,0,0,0,0,0,0,1,0,3,3425,111,5 +0,0,0,11,0,40,65,0,127,16,38,0,0,5,21,0,47,0,7,2,0,0,0,5,0,1,3,0,3,0,6,0,0,0,16,13496,40,6,5,0,228,0,4,0,1,0,0,4,0,0,0,0,6,326,0,0,0,0,0,1,0,0,2,1,0,30,0,0,33948,40,335,0,9,0,0,0,0,0,21,0,0,0,0,0,5,12,5651,0,0,16,0,0,3,102,0,942,180,7,0,0,2,0,551,0,19,0,0,3719,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,9,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,3537,0,99,0,0,0,12,21,140,3678,3506,0,0,0,0,1,0,0,0,0,0,0,0,0,3335,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,82,23,1693,14,0,0,784,0,2253,0,0,0,232,69,0,0,0,0,0,0,0,0,0,310,1,0,0,0,7,0,0,0,0,2,141,250,0,0,376,0,0,0,0,3,2337,0,0,6847,0,0,1,0,1,0,0,0,9,0,1,0,5,0,0,0,0,0,16,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,398,0,2,0,0,0,0,377,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,46,0,0,0,0,2,56,372,0,13,0,0,0,0,0,0,275,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2488,164,5 +0,0,0,3,0,8,3,0,25,1,12,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,23,0,0,0,1,0,0,1,0,0,0,0,0,180,0,0,0,0,0,1,0,0,0,0,0,3,0,0,253,8,55,0,0,0,0,0,0,0,6,0,0,0,0,0,1,3,32,0,0,0,0,0,3,13,0,124,19,2,0,0,2,0,76,0,0,2,0,103,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,38,0,50,0,0,0,0,3,22,203,51,0,0,0,0,1,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,8,3,76,3,0,0,103,0,182,0,0,0,42,7,0,0,0,0,0,0,0,0,0,63,1,0,0,0,2,0,0,0,0,0,90,61,0,0,41,0,0,0,0,0,30,0,0,28,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,167,0,1,0,0,0,0,0,0,44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,101,14,5 +2,0,0,8,1,43,34,1,50,2,10,0,0,9,7,0,157,0,9,3,0,0,0,7,0,10,0,0,6,0,1,0,0,1,7,5457,44,54,0,0,58,0,0,0,1,0,0,2,0,0,0,0,1,327,0,0,0,0,0,1,0,0,0,3,0,4,0,0,18927,43,239,0,4,0,0,0,0,0,21,0,0,0,0,0,9,31,2066,0,1,7,1,0,1,0,0,284,30,4,0,0,4,1,173,0,2,21,0,1627,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,12,12,12,0,0,0,1093,0,49,0,0,0,2,5,405,560,1075,0,0,0,0,1,0,4,0,0,0,0,0,0,2734,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,1,0,216,29,399,9,0,0,432,0,493,0,1,0,165,5,0,0,0,0,0,0,0,0,0,276,1,0,0,0,10,0,0,0,0,2,159,28,0,0,25,0,0,0,0,0,1434,1,0,2468,8,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,48,1,1,1,0,9,0,0,0,0,9,51,96,0,5,12,0,0,0,0,0,105,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1053,44,5 +0,0,0,6,0,17,50,0,110,12,39,0,0,0,32,0,23,0,7,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,5,0,17,6,3,0,165,0,0,0,1,0,0,1,0,0,0,0,1,162,0,0,0,0,0,1,0,0,2,0,0,25,0,0,368,17,253,0,3,0,0,0,0,0,4,0,0,0,0,0,1,3,67,0,0,5,0,0,3,90,0,732,165,1,0,0,2,0,465,0,15,0,0,353,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,202,0,63,0,0,0,2,12,36,995,106,0,0,0,0,1,0,0,0,0,0,0,0,0,472,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,18,128,6,0,0,172,0,324,0,0,0,101,77,0,0,0,0,0,0,0,0,0,261,1,0,0,0,3,0,0,0,0,2,100,182,0,0,361,0,0,0,0,3,73,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,12,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,6,0,0,0,0,1,22,116,0,7,0,0,0,0,0,0,220,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,156,152,5 +0,0,0,13,0,32,4,0,27,9,3,0,0,0,21,1,356,0,7,7,0,0,0,2,0,0,3,0,9,0,1,0,0,0,15,0,32,7,20,0,718,0,0,0,1,0,0,5,0,0,0,0,5,288,0,2,0,0,0,1,0,0,0,2,0,18,0,0,6549,32,458,0,10,0,0,0,0,0,30,0,0,0,0,0,3,18,570,0,0,15,0,0,0,0,0,63,0,9,0,0,2,0,718,0,14,0,1,1164,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,74,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,592,0,130,0,0,0,10,14,64,219,924,0,0,0,0,1,0,0,0,0,0,0,0,0,2470,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,12,25,378,16,0,0,296,0,1016,0,0,0,195,722,0,0,0,0,0,0,4,0,0,419,1,0,0,0,9,0,0,0,0,6,139,104,0,0,0,0,0,0,0,0,1493,0,0,1746,0,0,1,0,0,0,0,0,12,0,1,0,3,0,0,0,0,0,8,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,20,0,0,0,0,6,47,315,0,13,0,0,0,0,0,0,1050,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,5,817,80,5 +0,0,0,8,0,20,2,0,10,3,4,0,0,0,7,0,22,0,7,3,0,0,0,1,0,1,3,0,2,0,1,0,0,0,6,0,20,6,4,0,26,0,0,0,1,0,0,4,0,0,0,0,1,133,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1886,20,87,0,3,0,0,0,0,0,26,0,0,0,0,0,2,7,184,0,0,6,0,0,0,0,0,24,0,8,0,0,2,0,40,0,5,0,0,485,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6,0,0,0,0,0,0,196,0,71,0,0,0,2,11,49,33,214,0,0,0,0,1,0,0,0,0,0,0,0,0,522,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,18,135,11,0,0,269,0,901,0,0,0,197,22,0,0,0,0,0,0,0,0,0,52,1,0,0,0,4,0,0,0,0,2,107,154,0,0,0,0,0,0,0,1,100,0,0,177,0,0,1,0,0,1,1,0,10,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,4,0,0,0,0,1,26,415,0,7,0,0,0,0,1,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,6,186,224,5 +1,0,0,5,0,27,5,0,36,0,14,0,0,2,3,0,13,0,7,4,0,0,0,4,0,8,0,0,2,0,2,0,0,0,1,0,27,6,0,0,66,0,0,0,1,0,0,0,0,0,0,0,2,87,0,0,0,0,0,1,0,0,0,0,0,6,0,0,1064,27,71,0,3,0,0,0,0,0,2,0,0,0,0,0,7,11,58,0,0,1,0,0,1,29,0,305,40,0,0,0,2,0,154,0,0,0,0,657,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,43,0,25,0,0,0,2,4,180,788,45,0,0,0,0,1,0,3,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,32,12,90,5,0,0,112,0,239,0,0,0,36,4,0,0,0,0,0,0,0,0,0,80,0,0,0,0,8,0,0,0,0,1,109,94,0,0,83,0,0,0,0,1,55,0,0,2,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,3,0,0,0,0,1,28,73,0,4,8,0,0,0,0,0,79,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,47,5 +1,0,0,6,0,47,12,0,43,1,16,0,0,2,2,0,29,0,19,5,0,0,0,7,1,8,3,0,7,0,2,0,0,0,5,2,47,10,5,0,75,0,0,0,1,0,0,1,1,0,0,0,4,159,0,0,0,0,0,1,0,0,0,0,0,7,0,0,2738,47,122,0,7,0,0,0,0,0,12,0,0,0,0,0,10,17,379,0,0,5,0,0,2,29,0,351,55,4,0,0,2,0,180,0,0,0,1,1114,0,0,0,0,6,1,4,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,274,0,115,0,0,0,6,17,221,816,269,0,0,0,0,1,0,4,0,0,0,0,0,0,648,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,13,213,6,0,0,202,0,688,0,0,0,50,57,0,0,0,0,0,0,0,0,0,123,1,0,2,0,13,0,0,0,0,4,138,71,0,0,119,0,8,0,0,0,192,0,0,362,3,0,1,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,11,0,0,0,0,1,52,34,0,11,9,0,0,0,0,0,100,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,360,94,5 +16,0,0,15,1,95,76,1,215,21,50,0,0,9,49,1,566,0,49,9,0,0,0,10,4,26,39,0,33,0,6,1,0,1,31,17041,96,74,49,0,420,0,0,0,1,0,0,5,0,0,0,0,22,595,0,0,0,0,0,1,0,0,0,29,0,39,0,0,151671,95,1106,0,43,0,0,0,0,0,60,0,0,0,0,0,13,68,26861,0,1,31,1,0,4,112,0,1443,120,6,0,0,4,1,1468,0,19,63,0,9210,0,0,0,0,55,6,20,0,3,0,0,1,0,0,0,31,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,5,0,8,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,34,0,0,0,0,0,0,4,0,0,4,0,0,0,0,55,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,2,12,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,56,12,12,12,0,0,0,20436,0,152,0,0,0,39,1223,786,4296,20399,0,0,0,0,1,0,13,0,0,0,0,0,0,2320,4,0,0,0,0,0,0,0,0,0,0,0,8,6,0,0,0,0,0,1,0,224,72,792,34,0,0,759,0,1035,0,1,0,407,133,0,0,0,0,0,0,0,0,0,1015,0,0,0,0,23,0,0,0,0,22,313,356,0,0,311,0,33,0,0,0,5768,1,0,733,32,0,1,1,0,0,0,0,9,0,0,0,1,0,0,0,0,0,15,1,0,0,9,0,0,0,0,0,0,0,0,0,0,0,29,1,0,0,0,0,32,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,154,1,1,1,0,173,0,0,0,0,9,127,186,0,91,14,0,0,0,0,0,521,6,0,0,0,0,0,0,0,0,0,0,0,4,0,1,33,0,0,0,0,0,0,0,0,0,0,0,1,0,3,3846,302,5 +0,0,0,16,1,72,194,1,967,35,346,3,0,2,139,0,1185,0,10,27,0,0,0,7,17,50,9,0,148,0,140,0,0,1,20,945,73,122,116,0,1335,0,0,0,1,0,0,9,0,0,0,0,180,1995,0,3,0,0,0,1,0,0,0,2,0,42,0,0,56863,72,3217,0,285,0,0,0,0,0,42,0,0,0,2,0,10,28,3049,0,1,20,1,0,4,894,0,8480,1690,13,0,0,4,1,5227,0,31,3,0,15164,0,0,0,0,151,0,4,0,0,0,0,1,2,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,13,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,3081,0,221,0,0,0,358,1121,402,40104,1940,0,0,0,0,1,0,6,0,0,0,0,0,0,5041,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,1,0,142,336,1297,125,0,0,944,0,2001,0,1,0,610,316,0,0,0,0,0,0,0,0,0,2846,1,0,0,0,51,0,0,0,0,180,223,1706,0,0,9194,0,4,0,0,0,5964,1,0,5759,5,0,1,1,1,0,0,0,24,0,1,0,5,0,0,0,0,0,30,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,5,210,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,147,1,1,1,0,622,0,0,0,0,9,93,744,0,335,12,0,0,0,0,0,2031,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,41,0,0,0,0,0,0,0,0,0,0,0,1,0,9,6197,2381,5 +1,0,0,13,0,35,24,0,69,29,18,0,1,4,50,0,64,0,7,7,0,0,0,1,3,5,18,0,14,0,1,0,0,0,14,0,35,126,25,0,229,0,0,0,1,0,0,3,0,0,0,0,7,189,0,1,0,0,0,1,0,0,0,0,0,38,0,0,4011,35,287,0,15,0,0,0,0,0,21,0,0,0,0,0,3,8,521,0,0,14,0,0,2,40,0,395,55,6,0,0,2,0,441,0,27,0,5,1918,0,0,0,0,14,0,5,0,0,0,0,1,0,0,0,11,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,428,0,75,0,0,0,14,64,103,368,430,0,0,0,0,1,0,0,0,0,0,0,0,0,1165,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,13,64,398,21,0,0,449,0,721,0,0,0,354,103,0,0,0,0,0,0,0,0,0,237,1,0,0,0,11,0,0,0,0,6,303,160,0,0,132,0,0,0,0,1,678,0,0,915,0,0,1,2,0,0,0,0,6,0,0,0,2,0,0,0,0,0,28,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,54,0,0,0,0,1,49,283,0,38,0,0,0,0,0,0,187,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,31,0,0,0,0,0,0,0,0,0,0,0,0,0,3,618,104,5 +0,0,0,5,0,27,12,0,60,0,22,0,0,0,4,0,14,0,7,3,0,0,0,0,0,0,0,0,2,0,1,0,0,0,14,0,27,6,3,0,93,0,0,0,1,0,0,0,0,0,0,0,1,93,0,0,0,0,0,1,0,0,0,4,0,15,0,0,193,27,109,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,14,0,0,4,50,0,427,70,0,0,0,2,0,242,0,1,0,0,413,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,27,0,34,0,0,0,2,6,52,382,34,0,0,0,0,1,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,108,5,0,0,117,0,2343,0,0,0,62,16,0,0,0,0,0,0,0,0,0,119,0,0,0,0,3,0,0,0,0,1,111,102,0,0,165,0,0,0,0,1,46,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,3,0,0,0,0,1,41,30,0,3,0,0,0,0,0,0,129,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,70,5 +0,0,0,2,0,14,2,0,16,0,2,0,0,0,2,0,20,0,7,1,0,0,0,1,0,0,3,0,1,0,2,0,0,0,2,0,14,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,1,90,0,0,0,0,0,1,0,0,0,0,0,1,0,0,5501,14,55,0,3,0,0,0,0,0,11,0,0,0,0,0,1,4,1318,0,0,2,0,0,0,0,0,14,0,3,0,0,2,0,34,0,0,0,0,222,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,714,0,47,0,0,0,2,7,34,16,721,0,0,0,0,1,0,0,0,0,0,0,0,0,1677,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,122,2,0,0,210,0,299,0,0,0,127,7,0,0,0,0,0,0,4,0,0,49,1,0,0,0,2,0,0,0,0,2,117,101,0,0,0,0,0,0,0,0,374,0,0,1314,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,2,0,2,0,0,1,16,355,0,6,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,716,41,5 +0,0,0,12,1,48,52,1,113,36,25,0,0,0,55,0,112,0,9,5,0,0,0,2,0,6,12,0,13,0,6,0,0,1,30,0,49,153,26,0,213,0,0,0,1,0,0,4,0,0,0,0,11,280,0,0,0,0,0,1,0,0,0,0,0,51,0,0,2316,48,362,0,21,0,0,0,0,0,19,0,0,0,0,0,2,8,178,0,1,30,1,0,3,51,0,497,75,7,0,0,4,1,484,0,40,0,0,1369,0,0,0,0,15,0,5,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,1,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,322,0,128,0,0,0,20,848,104,609,213,0,0,0,0,1,0,0,0,0,0,0,0,0,782,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,116,66,443,23,0,0,522,0,1895,0,1,0,307,107,0,0,0,0,0,0,0,0,0,366,1,0,0,0,7,0,0,0,0,4,186,203,0,0,192,0,0,0,0,1,3464,0,0,260,0,0,1,0,1,0,0,0,10,0,0,0,4,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,70,1,1,1,0,72,0,0,0,8,9,79,335,0,37,0,0,0,0,0,0,261,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,38,0,0,0,0,0,0,0,0,0,0,0,1,0,4,4508,177,5 +8,0,0,6,1,92,31,1,47,13,6,0,0,6,24,0,168,0,9,7,0,0,0,7,0,14,15,0,12,0,2,1,0,1,56,933,93,54,21,0,110,0,0,0,1,0,0,2,0,0,0,0,6,596,0,0,0,0,0,1,0,0,0,3,0,18,0,0,8622,92,276,0,11,0,0,0,0,0,18,0,0,0,0,0,10,42,1492,0,1,56,1,0,1,0,0,260,20,2,0,0,4,1,281,0,15,0,0,2315,0,0,0,0,20,6,5,2,0,0,0,1,0,0,0,21,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,11,0,2,2,0,0,0,0,0,0,0,1,1,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,34,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,22,12,12,12,0,0,0,806,0,147,0,0,0,10,153,371,334,805,0,0,0,0,1,0,6,0,0,0,0,0,0,630,2,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,2,0,187,39,640,11,0,0,622,0,1067,1,1,0,358,76,0,0,0,0,0,0,0,0,0,291,1,0,0,0,14,0,0,0,0,5,251,58,0,0,0,0,2,0,0,0,7801,1,0,47,7,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,10,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,133,1,1,1,0,64,0,0,0,0,9,149,162,0,30,14,0,0,0,0,0,117,6,0,0,0,0,0,0,0,0,0,0,0,2,0,1,17,0,0,0,0,0,0,0,0,0,0,0,1,0,2,634,167,5 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,14,0,0,0,0,3,21,4,22,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,27,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,5 +4,0,0,8,0,31,8,0,33,7,11,1,0,2,12,0,26,0,7,5,0,0,0,5,0,8,3,0,4,0,1,0,0,0,5,0,31,6,3,0,87,0,0,0,1,0,0,3,0,0,0,0,2,179,0,0,0,0,0,1,0,0,0,0,0,16,0,0,1296,31,101,0,3,0,0,0,0,0,11,0,0,0,1,0,8,18,149,0,0,5,0,0,1,19,0,243,25,2,0,0,2,0,157,0,7,0,0,762,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,104,0,58,0,0,0,2,11,189,163,121,0,0,0,0,1,0,7,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,24,172,8,0,0,250,0,672,0,0,0,145,16,0,0,0,0,0,0,0,0,0,100,1,0,0,0,10,0,0,0,0,2,123,160,0,0,51,0,0,0,0,0,128,0,0,23,3,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,2,0,0,0,0,1,36,414,0,7,9,0,0,0,0,0,89,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,2,382,81,5 +0,0,0,6,0,30,118,0,179,2,46,0,0,0,8,0,59,0,7,8,0,0,0,4,0,2,18,0,13,0,0,0,0,0,13,0,30,6,27,0,322,0,0,0,1,0,0,3,0,0,0,0,7,315,0,0,0,0,0,1,0,0,0,10,0,18,0,0,5235,30,430,0,14,0,0,0,0,0,12,0,0,0,0,0,4,8,550,0,0,13,0,0,7,146,0,1330,180,5,0,0,2,0,805,0,3,0,0,1794,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,40,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,452,0,101,0,0,0,14,58,96,2997,525,0,0,0,0,1,0,0,0,0,0,0,0,0,1196,0,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,8,8,282,10,0,0,516,0,838,0,0,0,438,37,0,1,0,0,0,0,0,0,0,417,1,0,0,0,12,0,0,0,0,3,116,534,0,0,456,0,0,0,0,0,457,0,0,476,0,0,1,34,1,0,0,0,6,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,50,0,0,0,0,1,43,517,0,33,0,0,0,0,0,0,399,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,26,0,0,0,0,0,0,0,0,0,0,0,0,3,480,80,5 +5,0,0,10,0,19,183,0,2903,4,1299,0,0,0,9,0,43,0,7,3,0,0,0,2,1,1,9,0,6,0,1,2,0,0,6,1803,19,68,7,0,3312,0,0,0,1,0,0,5,0,0,0,0,4,329,0,0,0,0,0,1,0,0,0,0,0,62,0,0,3275,19,4478,0,9,0,0,0,0,0,24,0,0,0,0,0,3,15,679,0,0,6,0,0,3,2876,0,22831,6205,7,0,0,2,0,10798,0,5,0,0,2002,0,0,0,0,9,0,6,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,481,0,108,0,0,0,8,30,44,7717,461,0,0,0,0,1,0,0,0,4,0,0,0,0,1235,0,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,2,13,12,454,14,0,0,560,0,2296,0,0,0,423,4456,0,0,0,0,0,0,0,0,0,4444,1,0,0,0,6,0,0,0,0,4,158,4808,0,0,18511,0,0,0,0,0,348,0,0,520,0,0,1,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,17,0,0,0,0,1,25,414,0,19,0,0,0,0,0,0,4692,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,4,357,187,5 +0,0,0,5,0,34,11,0,61,25,12,0,0,2,28,0,39,0,7,3,0,0,0,5,0,8,12,0,4,0,5,0,0,0,7,0,34,6,0,0,138,0,0,0,1,0,0,11,0,0,0,0,5,334,0,0,0,0,0,1,0,0,0,0,0,36,0,0,6663,34,249,0,7,0,0,0,0,0,53,0,0,0,0,1,7,25,463,0,0,7,0,0,1,32,0,361,20,21,0,0,2,0,319,0,26,0,0,2152,0,0,0,0,2,0,12,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,10,10,10,0,0,0,434,0,198,0,0,0,8,22,193,292,396,0,0,0,0,1,0,3,0,0,0,0,0,0,1077,0,0,0,0,0,0,0,0,0,0,0,0,11,1,4,0,0,0,0,1,0,32,44,197,5,0,0,522,0,706,0,0,0,403,22,0,0,0,0,0,0,0,0,0,160,1,0,0,0,8,0,0,0,0,5,120,422,0,0,33,0,0,0,0,0,237,0,0,465,3,0,1,1,0,0,0,0,29,0,0,0,3,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,6,0,0,0,0,1,41,1187,0,20,9,0,0,0,0,0,164,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,29,0,0,0,0,0,0,0,0,0,0,0,0,0,10,609,539,5 +0,0,0,27,1,60,46,1,91,6,27,0,0,0,37,0,106,0,9,9,0,0,0,1,6,10,9,0,26,0,2,0,0,1,26,0,61,321,79,0,275,0,0,0,1,0,0,4,0,0,0,0,15,667,0,0,0,0,0,1,0,0,0,4,0,25,0,0,4465,60,296,0,28,0,0,0,0,0,18,0,0,0,0,0,1,8,217,0,1,26,1,0,2,23,0,357,15,8,0,0,4,1,331,0,16,0,0,3279,0,0,0,0,0,0,3,0,1,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,251,0,121,0,0,0,30,387,128,750,273,0,0,0,0,1,0,1,0,0,0,0,0,0,1157,0,0,0,0,0,0,0,0,0,2,0,0,4,0,0,0,0,0,0,0,0,130,52,631,29,0,0,603,0,2954,0,1,0,297,135,0,0,0,0,0,0,0,0,0,316,1,0,0,0,16,0,0,0,0,13,197,203,0,0,29,0,0,0,1,5,949,0,0,134,0,0,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,22,0,0,4,1,0,0,1,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,67,1,1,1,0,102,0,0,0,0,9,87,725,0,47,0,0,0,0,0,0,228,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,0,0,0,0,0,0,0,15,0,0,0,1,0,0,514,240,5 +0,0,0,4,0,13,4,0,3,6,4,0,0,0,9,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,13,6,0,0,25,0,0,0,1,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,9,0,0,112,13,28,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,4,0,0,0,0,0,5,0,0,0,0,2,0,24,0,7,0,0,148,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,24,0,0,0,0,3,28,11,30,0,0,0,0,1,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,62,4,0,0,60,0,239,0,0,0,27,6,0,0,0,0,0,0,0,0,0,35,0,0,0,0,2,0,0,0,0,1,95,14,0,0,0,0,0,0,0,3,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,17,24,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,52,5 +0,0,0,7,3,51,103,3,200,30,54,0,0,2,42,0,173,0,7,13,0,3,3,11,0,11,12,0,10,0,1,0,0,3,23,0,54,6,16,0,473,0,0,0,1,0,0,2,1,0,0,0,5,272,0,0,0,0,0,1,0,0,2,1,0,55,0,0,4295,51,927,0,9,0,0,0,0,0,16,9,0,0,0,0,13,23,573,0,3,23,3,0,4,144,0,1259,230,5,0,0,2,3,968,0,39,0,0,1444,0,0,0,0,23,0,0,0,0,0,0,1,0,0,0,20,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,768,0,149,0,0,0,8,40,206,1405,460,0,0,0,0,1,0,2,0,0,0,0,0,0,1493,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,49,351,10,0,0,468,0,697,0,0,0,281,291,0,0,0,0,0,0,0,0,0,581,1,0,3,0,30,0,0,0,0,4,150,307,0,0,537,0,0,0,0,2,2296,0,0,411,3,0,1,1,1,0,0,0,7,0,0,0,13,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,36,0,0,0,0,25,77,281,0,25,9,0,0,0,0,0,399,80,0,0,0,0,0,0,0,0,0,0,0,4,0,1,36,0,0,0,0,0,0,0,0,0,0,0,6,0,2,568,248,5 +305,0,0,13,0,51,2544,0,2096,47,22,0,1,4,94,0,101,0,7,7,0,0,0,5,9,9,29,0,30,0,7,0,0,0,29,0,51,190,79,0,5429,0,0,0,1,0,0,11,0,0,0,0,20,494,0,0,0,0,0,1,0,0,0,71,0,44,0,0,12394,51,5016,0,37,0,0,0,0,0,51,0,0,0,0,3,6,24,601,0,0,29,0,0,1,2011,0,16524,60,18,0,0,2,0,12188,0,38,6,7,3638,0,0,0,0,10,123,11,0,0,0,53,1,0,0,0,29,0,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,1,0,0,0,53,0,0,0,0,0,0,0,0,0,6,0,0,0,0,65,0,1,0,0,0,0,0,0,0,0,3,1,0,0,0,18,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,1,0,104,0,0,0,0,0,0,620,0,237,0,0,0,40,223,121,31913,594,0,0,0,0,1,0,1,0,0,0,0,0,0,12741,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,15,0,13,69,595,15,0,0,2985,0,1817,0,0,0,2878,276,0,0,0,0,0,0,0,0,0,4869,1,0,0,0,21,0,0,0,0,16,151,4943,0,0,1995,0,0,0,0,10,860,0,0,568,0,0,1,0,1,0,0,0,30,0,0,0,5,0,0,0,0,0,39,2,0,21,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,408,0,0,0,0,16,84,644,0,75,0,0,3,0,0,0,4221,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,47,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1037,248,5 +0,0,0,8,0,59,17,0,90,6,21,0,0,7,21,0,915,0,7,6,0,0,0,7,0,12,9,0,10,0,2,0,0,0,17,5255,59,9,6,0,138,0,0,0,1,0,0,2,0,0,0,0,4,468,0,0,0,0,0,1,0,0,0,4,0,21,0,0,126370,59,1083,0,9,0,0,0,0,0,19,0,0,0,0,0,10,24,21039,0,0,17,0,0,4,36,0,548,85,4,0,0,2,0,1209,0,8,13,0,2653,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,50,12,12,12,0,0,0,19620,0,65,0,0,0,7,29,318,815,19611,0,0,0,0,1,0,7,0,0,0,0,0,0,326,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,108,24,349,8,0,0,370,0,533,0,0,0,190,41,0,0,0,0,0,0,0,0,0,1078,1,0,0,0,13,0,0,0,0,4,169,106,0,0,138,0,5,0,0,1,2972,1,0,71,8,0,1,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,8,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,65,1,1,1,0,27,0,0,0,0,1,76,244,0,21,12,0,0,0,0,0,185,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,863,56,5 +2,0,0,12,1,50,1008,1,199,19,61,0,0,0,29,0,146,0,9,3,0,0,0,4,0,2,6,0,6,0,4,0,0,1,24,0,51,271,7,0,366,0,0,0,1,0,0,1,0,0,0,0,5,183,0,0,0,0,0,1,0,0,0,0,0,24,0,0,4886,50,1418,0,10,0,0,0,0,0,6,0,0,0,0,0,4,6,948,0,1,24,1,0,4,157,0,1300,235,1,0,0,4,1,821,0,14,0,0,1829,0,0,0,0,24,0,0,0,0,0,0,1,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,575,0,61,0,0,0,10,33,136,7826,700,0,0,0,0,1,0,0,0,0,0,0,0,0,4491,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,115,41,498,20,0,0,1554,0,1134,0,1,0,1313,54,0,0,0,0,0,0,0,0,0,1452,1,0,0,0,7,0,0,0,0,6,233,365,0,0,781,0,1,0,0,0,411,0,0,42,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,68,1,1,1,0,40,0,0,0,0,9,75,136,0,18,0,0,0,0,0,0,715,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,23,0,0,0,0,0,0,0,0,0,0,0,1,0,2,296,120,5 +0,0,0,11,0,28,8,0,36,7,10,0,1,2,21,0,35,0,7,4,0,0,0,1,0,4,9,0,6,0,0,0,0,0,12,0,28,58,12,0,79,0,0,0,0,0,0,0,0,0,0,0,3,84,0,0,0,0,0,1,0,0,0,0,0,18,0,0,416,28,122,0,7,0,0,0,0,0,0,0,0,0,0,0,1,1,23,0,0,12,0,0,2,16,0,160,25,0,0,0,2,0,205,0,9,0,3,586,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,56,0,37,0,0,0,6,28,61,150,62,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,17,127,12,0,0,107,0,335,0,0,0,53,16,0,0,0,0,0,0,0,0,0,120,0,0,0,0,5,0,0,0,0,3,118,32,0,0,50,0,0,0,0,0,208,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,9,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,20,0,0,0,0,1,40,12,0,19,0,0,0,0,0,0,93,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,25,5 +75,0,0,17,2,86,133,2,5522,127,2670,0,1,5,156,0,237,0,11,9,0,0,0,11,12,13,49,0,44,0,11,1,0,2,55,0,88,498,59,0,5935,0,0,0,1,0,0,3,0,0,0,0,28,405,0,1,0,0,0,1,0,0,0,0,0,140,0,0,9852,86,8807,0,54,0,0,0,0,0,12,0,0,0,0,0,12,17,238,0,2,55,2,0,6,5407,0,43569,13240,5,0,0,6,2,19861,0,126,0,6,6406,0,2,22,0,15,4,2,0,10,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,43,0,0,0,0,0,0,10,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,1,0,2,0,0,0,8,1,0,0,0,0,0,0,0,0,1,0,0,0,0,101,0,1,0,0,0,0,0,1,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,326,0,244,0,0,0,56,196,213,14324,459,0,0,0,0,1,0,0,0,0,0,0,0,0,5360,0,0,0,0,0,0,0,0,0,2,0,0,3,0,0,0,0,0,0,0,2,248,176,1281,20,0,0,860,0,3509,0,2,0,489,4866,0,2612,0,0,0,0,0,0,0,8735,1,0,0,0,32,0,0,0,0,41,286,8300,0,0,29382,0,1,0,0,0,1932,0,0,223,0,0,1,68,0,0,0,0,8,0,0,0,3,0,0,0,0,0,129,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,133,1,1,1,0,150,0,0,0,0,29,143,248,0,116,2,0,0,0,0,0,8588,9,0,0,0,0,0,0,0,0,0,0,0,2,0,1,139,65,0,0,0,0,0,0,0,0,0,0,2,0,3,1713,1169,5 +8,0,0,11,0,50,25,0,101,40,23,1,0,0,50,0,43,0,7,5,0,0,0,4,0,2,9,0,7,0,1,0,0,0,18,0,50,274,10,0,270,0,0,0,1,0,0,2,0,0,0,0,3,190,0,6,0,0,0,1,0,0,0,2,0,56,0,0,7931,50,261,0,8,0,0,0,0,0,23,0,0,0,0,0,5,9,3154,0,0,18,0,0,2,63,0,548,45,4,0,0,2,0,532,0,42,0,0,1439,0,3,1,0,5,0,4,0,0,0,0,1,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,1,0,0,0,0,2,0,0,0,0,79,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2135,0,124,0,0,0,6,29,92,1415,2173,0,0,0,0,1,0,6,0,2,0,0,0,0,1091,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,1,0,40,54,327,19,0,0,359,0,1643,0,0,0,207,114,0,0,0,0,0,0,2,0,0,250,1,0,0,0,9,0,0,0,0,4,153,258,0,0,128,0,1,0,0,2,702,0,0,351,0,0,1,2,0,0,0,0,5,0,1,0,1,0,0,0,0,0,38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,19,0,0,0,0,1,68,317,0,19,0,0,0,0,0,0,282,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,44,0,0,0,0,0,0,0,0,0,0,0,0,0,3,535,106,5 +5,0,0,10,1,98,62,1,140,2,36,0,0,9,8,0,1276,0,9,8,0,0,0,8,2,12,6,0,32,0,2,0,0,1,49,15823,99,54,13,0,213,0,0,0,1,0,0,4,0,0,0,0,8,723,0,0,0,0,0,1,0,0,0,11,0,18,0,0,91904,98,1566,0,30,0,0,0,0,0,51,0,0,0,0,0,11,112,15175,0,1,49,1,0,5,48,0,820,100,8,0,0,4,1,1577,0,2,75,0,5502,0,0,0,0,10,3,3,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,56,12,12,12,0,0,0,11634,0,142,0,0,0,24,56,781,1712,11585,0,0,0,0,1,0,8,0,0,3,0,0,0,734,1,0,0,0,0,0,0,0,0,1,0,0,7,2,0,0,0,0,0,1,0,217,29,659,11,0,0,720,0,810,0,1,0,398,29,0,0,0,0,0,0,0,0,0,1540,1,0,0,0,18,0,0,0,0,4,233,146,0,0,254,0,0,0,0,0,10210,1,0,333,21,0,1,1,0,0,0,0,9,0,0,0,1,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,21,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,114,1,1,1,0,72,0,0,0,0,9,148,608,0,38,14,0,0,0,0,0,298,2,0,0,0,0,0,0,0,0,0,0,0,3,0,2,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1973,160,5 +2,0,0,8,0,40,74,0,51,1,12,0,0,9,6,0,880,0,6,2,0,0,0,8,0,11,0,0,11,0,1,0,0,0,4,10783,40,6,0,0,56,0,0,0,1,0,0,3,1,0,0,0,1,628,0,0,0,0,0,1,0,0,0,0,0,5,0,0,110865,40,1235,0,7,0,0,0,0,0,148,0,0,0,0,0,9,58,18671,0,0,4,0,0,0,0,0,292,30,4,1,0,2,0,1072,0,1,49,0,4634,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,14498,0,77,0,0,0,4,7,623,1147,14468,0,0,0,0,1,0,4,0,0,0,0,0,0,511,0,0,0,0,1,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,113,17,383,8,0,0,521,0,370,0,0,0,352,17,0,0,0,0,0,0,0,0,0,1038,1,0,1,0,10,0,0,0,0,2,192,80,0,0,57,0,0,0,0,0,4156,1,0,138,74,0,1,1,0,0,0,0,6,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,19,0,0,0,0,1,44,196,0,9,14,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2164,97,5 +1,0,0,3,0,9,2,0,4,1,3,0,0,0,4,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,4,0,0,74,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,10,0,2,0,0,59,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,18,0,0,0,0,3,23,7,26,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,5,41,3,0,0,54,0,126,0,0,0,24,1,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,91,20,0,0,0,0,0,0,0,0,186,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,45,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,5,5 +0,0,0,5,0,17,38,0,122,5,36,0,0,0,10,0,43,0,6,26,0,0,0,1,1,0,0,0,29,0,1,0,0,0,6,0,17,6,50,0,173,0,0,0,1,0,0,12,0,0,0,0,26,295,0,0,0,0,0,1,0,0,0,0,0,17,0,0,4231,17,346,0,30,0,0,0,0,0,50,0,0,0,0,0,1,24,483,0,0,6,0,0,2,102,0,929,160,19,0,0,2,0,460,0,7,1,0,515,0,0,0,0,2,0,0,0,0,0,0,1,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,0,0,2,0,0,0,0,0,0,512,0,159,0,0,0,52,82,33,658,500,0,0,0,0,1,0,0,0,0,0,0,0,0,1017,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,8,10,163,5,0,0,280,0,709,0,0,0,212,15,0,0,0,0,0,0,0,0,0,255,1,0,0,0,28,0,0,0,0,1,99,297,0,0,473,0,0,0,0,0,398,0,0,225,0,0,1,0,0,0,0,0,31,0,0,0,11,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,55,0,0,0,0,1,23,840,0,30,0,0,0,0,0,0,298,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,12,506,71,5 +0,0,0,22,6,55,186,24,1497,24,140,0,0,0,60,0,3512,0,7,14,0,6,6,3,2,1,9,0,9,0,3,1,0,5,27,0,61,116,23,0,971,0,0,0,1,0,0,2,0,0,0,0,6,256,0,0,0,0,0,1,0,0,0,0,0,48,0,0,3232,55,5874,0,13,0,0,0,0,0,11,18,0,0,0,0,3,7,383,0,24,27,5,0,4,538,0,4636,625,3,0,0,2,6,6007,0,36,0,0,1710,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1766,0,0,0,0,0,0,359,0,249,0,0,0,12,22,140,1943,501,0,0,0,0,1,0,0,0,0,0,0,0,0,1992,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,16,44,488,56,0,0,731,0,1442,0,0,0,458,73,0,117,0,0,0,0,0,0,0,5402,1,0,0,0,31,0,0,0,0,4,141,1093,0,0,1871,0,0,0,0,1,5801,0,0,82,0,0,1,168,1,0,0,0,4,0,0,0,3,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,83,1,1,1,0,23,0,0,0,0,49,88,410,0,23,0,0,1,0,0,0,1055,19,0,0,0,0,0,0,0,0,0,0,0,6,0,1,30,164,0,0,0,0,0,0,0,0,0,0,12,0,2,1323,76,5 +0,0,0,9,0,34,35,0,113,17,25,0,1,3,29,0,53,0,7,4,0,0,0,1,1,3,15,0,9,0,2,1,0,0,17,0,34,57,36,0,156,0,4,0,1,0,0,7,0,0,0,0,6,210,0,0,0,0,0,1,0,0,0,0,0,18,0,0,6836,34,308,0,12,0,0,0,0,0,24,0,0,0,0,2,1,12,1693,0,0,17,0,0,2,71,0,598,95,12,1,0,2,0,504,0,8,0,4,696,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,16,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,927,0,80,0,0,0,12,75,90,498,917,0,0,0,0,1,0,0,0,0,0,0,0,0,1153,0,0,0,0,0,0,0,0,0,0,0,0,7,0,3,0,0,0,0,0,0,8,23,263,11,0,0,376,0,693,0,0,0,276,110,0,0,0,0,0,0,2,0,0,266,1,0,0,0,6,0,0,0,0,4,142,285,0,0,250,0,0,0,0,0,659,0,0,1824,0,0,1,0,1,0,0,0,11,0,0,0,3,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,2,0,0,0,0,183,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,96,0,0,0,0,1,51,574,0,30,0,0,0,0,0,0,189,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1019,94,5 +0,0,0,3,0,8,2,0,5,0,2,0,0,0,2,1,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,0,3,0,0,17,8,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,12,0,0,0,0,3,21,4,22,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,3,34,3,0,0,37,0,97,0,0,0,3,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,187,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,4,5 +0,0,0,7,0,41,4,0,14,0,3,0,0,2,5,0,29,0,7,7,0,0,0,6,0,9,3,0,6,0,1,0,0,0,8,0,41,28,48,0,35,0,0,0,1,0,0,3,0,0,0,0,3,234,0,0,0,0,0,1,0,0,0,0,0,7,0,0,4425,41,84,0,5,0,0,0,0,0,21,0,0,0,0,0,10,24,867,0,0,8,0,0,0,0,0,94,5,5,0,0,2,0,62,0,3,0,0,1419,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,558,0,83,0,0,0,4,10,177,128,558,0,0,0,0,1,0,2,0,0,0,0,0,0,651,0,0,0,0,0,0,0,0,0,0,0,0,3,1,4,0,0,0,0,1,0,32,13,265,7,0,0,337,0,592,0,0,0,156,44,0,0,0,0,0,0,0,0,0,64,1,0,0,0,13,0,0,0,0,1,184,117,0,0,0,0,0,0,0,0,4577,0,0,458,3,0,1,1,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,7,0,0,0,0,1,49,438,0,10,9,0,0,0,0,0,66,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,355,132,5 +17,0,0,36,1,169,309,1,1391,127,412,0,1,6,198,0,303,0,9,14,0,0,0,17,15,25,94,0,53,0,9,1,0,1,106,0,170,417,169,0,2461,0,0,0,1,0,0,9,0,0,0,0,31,408,0,2,0,0,0,1,0,0,0,16,0,193,0,0,12750,169,2821,0,61,0,0,0,0,0,47,0,0,0,0,0,24,39,2259,0,1,106,1,0,8,1250,0,10065,1765,17,0,0,4,1,6429,0,135,0,9,10568,0,1,0,0,86,16,2,0,0,0,0,1,0,0,0,133,0,0,0,0,0,0,1,0,0,0,0,12,0,0,0,0,0,13,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,57,0,1,0,0,0,0,0,0,0,0,0,1,17,0,0,0,0,0,3,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,154,10,10,10,0,0,0,1636,0,466,0,0,0,60,2297,439,6289,1592,0,0,0,0,1,0,11,0,0,0,0,0,0,5004,0,0,0,0,1,0,0,0,0,0,0,0,16,1,0,0,0,0,0,2,0,165,606,1033,59,0,0,1253,0,4408,0,1,0,905,494,0,0,0,0,0,0,4,0,0,2629,1,0,0,0,46,0,0,0,0,24,345,2511,0,0,4466,0,1,0,3,22,2831,0,0,1316,3,0,1,1,1,0,0,0,30,0,0,0,6,0,0,0,0,0,113,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,25,16,0,0,0,0,3,16,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,218,1,1,1,0,236,0,0,0,0,16,276,651,0,173,9,0,0,0,0,0,2822,6,0,0,0,0,0,0,0,0,0,0,0,2,0,3,141,0,0,0,0,3,0,0,0,0,0,0,1,0,10,6003,286,5 +0,0,0,23,0,34,11,0,45,4,32,0,0,6,27,0,31,0,7,4,0,0,0,6,0,8,3,0,3,0,2,0,0,0,8,0,34,51,0,0,168,0,0,0,1,0,0,0,0,0,0,0,2,149,0,0,0,0,0,1,0,0,0,0,0,14,0,0,780,34,152,0,3,0,0,0,0,0,3,0,0,0,0,0,9,14,99,0,0,8,0,0,2,32,0,438,80,0,0,0,2,0,298,0,7,0,0,873,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,73,0,49,0,0,0,2,6,192,208,87,0,0,0,0,1,0,3,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,84,19,168,124,0,0,152,0,3131,0,0,0,69,9,0,20,0,0,0,0,0,0,0,159,0,0,0,0,10,0,0,0,0,1,132,74,0,0,152,0,0,0,0,0,155,0,0,1,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,2,0,0,0,0,1,42,27,0,7,9,0,0,0,0,0,133,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,6,0,0,0,0,0,0,0,0,0,0,0,0,0,459,61,5 +0,0,0,3,0,11,2,0,23,0,2,0,0,0,3,0,130,0,7,14,0,0,0,1,1,5,39,0,19,0,1,0,0,0,1,0,11,68,158,0,12,0,3,0,1,0,0,4,0,0,0,0,14,127,0,0,0,0,0,1,0,0,0,0,0,3,0,0,4008,11,261,0,20,0,0,0,0,0,15,0,0,0,0,0,1,10,691,0,0,1,0,0,0,0,0,75,0,7,0,0,2,0,291,0,0,0,0,1737,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,255,0,106,0,0,0,28,1088,141,196,242,0,0,0,0,1,0,0,0,0,0,0,0,0,779,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,14,3,311,3,0,0,158,0,580,0,0,0,79,32,0,0,0,0,0,0,0,0,0,167,1,0,0,0,16,0,0,0,0,1,116,61,0,0,0,0,0,0,0,0,1468,0,0,1285,0,0,1,0,1,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,123,1,1,1,0,252,0,0,0,0,1,12,273,0,64,0,0,1,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,633,387,5 +0,0,0,3,0,14,2,0,12,0,2,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,14,6,0,0,6,0,0,0,1,0,0,1,1,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,2,0,0,102,14,37,0,1,0,0,0,0,0,4,0,0,0,0,0,1,4,34,0,0,0,0,0,0,0,0,6,0,8,1,0,2,0,8,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,40,0,38,0,0,0,0,3,35,5,52,0,0,0,0,1,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,90,3,0,0,101,0,2570,0,0,0,20,1,0,0,0,0,0,0,0,0,0,42,1,0,6,0,2,0,0,0,0,0,96,7,0,0,0,0,0,0,0,0,35,0,0,16,0,0,1,0,0,0,0,0,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,14,16,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,79,14,5 +3,0,0,9,2,31,16,8,95,18,25,0,0,0,29,0,96,0,7,9,0,3,2,2,3,4,24,0,16,0,1,0,0,2,16,0,33,74,286,0,150,0,0,0,1,0,0,2,1,0,0,0,8,445,0,0,0,0,0,1,0,0,0,2,0,20,0,0,2215,31,451,0,17,0,0,0,0,0,12,6,0,0,0,0,2,5,233,0,8,16,2,0,2,40,0,435,90,6,0,0,2,2,437,0,13,3,0,1441,0,0,0,0,9,0,5,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,24,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,214,0,106,0,0,0,16,106,66,1492,943,0,0,0,0,1,0,0,0,0,0,0,0,0,1287,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,27,465,22,0,0,395,0,1151,0,0,0,237,104,0,0,0,0,0,0,4,0,0,268,1,0,5,0,19,0,0,0,0,9,160,199,0,0,409,0,0,0,0,0,1254,0,0,162,0,0,1,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,42,0,0,0,0,20,49,355,0,45,0,0,1,0,0,0,176,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,22,0,0,0,0,0,0,0,0,0,0,0,5,0,2,9436,284,5 +13,0,0,12,1,88,38,1,74,15,19,0,0,14,25,0,219,0,9,3,0,0,0,8,0,11,9,0,11,0,2,2,0,1,45,1027,89,54,0,0,135,0,0,0,1,0,0,6,0,0,0,0,4,805,0,0,0,0,0,1,0,0,0,7,0,19,0,0,22886,88,388,0,11,0,0,0,0,0,37,0,0,0,0,0,10,67,3322,0,1,45,1,0,1,0,0,454,45,11,0,0,4,1,367,0,16,64,0,4195,0,0,0,0,14,10,6,4,0,0,0,1,0,0,0,19,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,15,0,3,2,0,0,0,0,0,0,1,0,0,0,0,0,3,0,2,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,31,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,4,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,20,12,12,12,0,0,0,1600,0,212,0,0,0,9,20,666,890,1567,0,0,0,0,1,0,7,0,0,0,0,0,0,2222,4,0,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,2,0,349,46,777,13,0,0,749,0,1140,1,1,0,462,139,0,0,0,0,0,0,0,0,0,398,1,0,0,0,11,0,0,0,0,5,276,173,0,0,78,0,6,0,0,0,11708,1,0,1309,13,0,1,1,0,0,0,0,11,0,0,0,1,0,0,0,0,0,17,0,0,0,12,3,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,13,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,187,1,1,1,0,23,0,0,0,0,9,134,341,0,21,14,0,0,0,0,0,202,3,0,0,0,0,0,0,0,0,0,0,0,4,0,1,30,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1417,278,5 +0,0,0,12,0,47,86,0,124,15,44,0,0,17,17,0,232,0,6,2,0,0,0,8,0,11,0,0,10,0,1,0,0,0,7,6290,47,6,0,0,294,0,0,0,1,0,0,3,0,0,0,0,1,541,1,0,0,0,0,1,0,0,2,0,0,22,0,0,176799,47,644,0,7,0,0,0,0,0,105,0,0,0,0,0,9,47,29597,0,0,7,0,0,2,77,0,1254,204,5,1,0,2,0,864,0,12,12,0,4817,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,12,12,12,0,0,0,26560,0,73,0,0,0,3,6,547,1527,26370,0,0,0,0,1,0,3,0,0,0,0,0,0,694,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,349,40,330,12,0,0,472,0,425,0,0,0,304,18,0,0,0,0,0,0,0,0,0,526,1,0,0,0,10,0,0,0,0,2,185,187,0,0,330,0,0,0,0,3,2506,1,0,183,55,0,1,1,0,0,0,0,3,0,0,0,5,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,55,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,15,0,0,0,0,1,54,177,0,8,14,0,0,0,0,0,388,6,0,0,0,0,0,0,0,0,0,0,0,2,0,2,29,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1855,97,5 +6,0,0,26,0,75,41,0,321,44,52,1,1,2,68,0,86,0,7,10,0,0,0,3,2,11,18,0,29,0,7,0,0,0,34,0,75,188,90,0,627,0,0,0,1,0,0,8,0,0,0,0,18,462,0,7,0,0,0,1,0,0,0,0,0,61,0,0,6312,75,655,0,36,0,0,0,0,0,43,0,0,0,0,0,2,12,349,0,0,34,0,0,3,231,0,1902,140,15,0,0,2,0,1438,0,40,0,6,5057,0,2,2,0,7,0,9,0,0,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,35,0,0,0,1,0,0,0,0,3,0,9,0,0,0,0,0,0,0,0,0,13,1,1,0,0,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,518,0,185,0,0,0,36,165,152,1780,442,0,0,0,0,1,0,0,0,0,7,0,0,0,1153,0,0,0,0,0,0,0,0,0,0,0,0,8,0,33,0,0,0,0,0,0,8,77,462,31,0,0,664,0,1614,0,0,0,505,264,0,0,0,0,0,0,0,0,0,579,1,0,0,0,15,0,0,0,0,12,171,830,0,0,441,0,0,0,6,1,699,0,0,242,0,0,1,0,1,0,0,0,21,0,0,0,1,0,0,0,0,0,47,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,101,1,1,1,0,175,0,0,0,0,1,109,889,0,65,0,0,0,0,0,0,689,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,50,0,0,0,0,0,0,0,0,0,0,0,0,0,8,703,325,5 +6,0,0,9,0,36,44,0,102,19,30,0,0,0,35,0,57,0,7,1,0,0,0,3,6,3,18,0,11,0,1,0,0,0,15,0,36,6,19,0,238,0,0,0,1,0,0,7,0,0,0,0,6,191,1,0,0,0,0,1,0,0,0,2,0,27,0,0,4328,36,363,0,12,0,0,0,0,0,35,0,0,0,0,0,3,14,917,0,0,15,0,0,2,84,0,745,130,9,0,0,2,0,555,0,17,0,0,1014,0,0,1,0,22,0,11,0,0,0,4,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,15,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,692,0,158,0,0,0,12,62,82,574,713,0,0,0,0,1,0,0,0,0,0,0,0,0,1604,0,0,0,0,0,0,0,0,0,0,0,0,8,0,2,0,0,0,0,0,0,8,30,299,27,0,0,440,0,897,0,0,0,346,50,0,0,0,0,0,0,14,0,0,275,1,0,0,0,10,0,0,0,0,7,185,314,0,0,361,0,0,0,0,1,435,0,0,562,0,0,1,0,0,0,0,0,20,0,6,3,6,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,29,0,0,0,0,1,51,310,0,33,0,0,0,0,0,0,280,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,8,996,182,5 +3,0,0,6,0,21,32,0,205,5,83,0,0,0,12,0,23,0,7,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,6,0,21,6,3,0,263,0,0,0,1,0,0,14,0,0,0,0,1,350,0,0,0,0,0,1,0,0,0,0,0,18,0,0,2456,21,431,0,3,0,0,0,0,0,48,0,0,0,0,0,1,17,337,0,0,6,0,0,3,187,0,1532,390,20,0,0,2,0,778,0,8,0,0,546,0,0,1,0,7,0,9,0,0,0,0,1,0,0,0,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,323,0,151,0,0,0,2,11,46,725,319,0,0,0,0,1,0,0,0,0,0,0,0,0,926,0,0,0,0,0,0,0,0,0,3,0,0,13,0,0,0,0,0,0,0,3,8,11,169,6,0,0,325,0,781,0,0,0,243,24,0,0,0,0,0,0,4,0,0,362,1,0,0,0,3,0,0,0,0,2,108,471,0,0,997,0,0,0,0,0,143,0,0,297,0,0,1,0,1,0,0,0,25,0,0,0,3,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,6,0,0,0,0,1,27,595,0,7,0,0,0,0,0,0,388,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5432,117,5 +2,0,0,13,0,44,17,0,87,21,21,0,4,5,47,0,69,0,7,7,0,0,0,1,2,5,15,0,15,0,2,0,0,0,24,0,44,166,26,0,251,0,0,0,1,0,0,2,0,0,0,0,9,171,0,0,0,0,0,1,0,0,0,0,0,32,0,0,5111,44,278,0,17,0,0,0,0,0,9,0,0,0,0,0,1,5,390,0,0,24,0,0,3,38,0,403,60,2,0,0,2,0,445,0,21,0,9,1734,0,0,1,0,18,0,2,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,439,0,86,0,0,0,18,62,86,421,458,0,0,0,0,1,0,0,0,0,0,0,0,0,1481,0,0,0,0,0,0,0,0,0,4,0,0,2,0,0,0,0,0,0,0,0,13,39,305,15,0,0,238,0,922,0,0,0,152,45,0,0,0,0,0,0,0,0,0,257,1,0,0,0,10,0,0,0,0,10,142,107,0,0,139,0,0,0,0,1,782,0,0,1313,0,0,1,0,1,0,0,0,3,0,0,0,4,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,45,0,0,0,0,1,68,85,0,37,0,0,0,0,0,0,212,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,25,0,0,0,0,0,0,0,0,0,0,0,0,0,2,626,137,5 +0,0,0,0,0,41,28,0,79,5,16,0,1,0,7,0,23,0,7,3,0,0,0,6,0,8,0,0,5,0,4,0,0,0,8,0,41,6,0,0,151,0,0,0,1,0,0,11,0,0,0,0,4,311,0,0,0,0,0,1,0,0,0,1,0,10,0,0,3269,41,231,0,7,0,0,0,0,0,51,0,0,0,0,0,8,26,514,0,0,8,0,0,0,57,0,534,50,19,0,0,2,0,309,0,5,0,0,792,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,40,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,437,0,137,0,0,0,6,7,217,374,395,0,0,0,0,1,0,3,0,0,0,0,0,0,1152,0,0,0,0,0,0,0,0,0,0,0,0,11,1,39,0,0,0,0,1,0,17,15,194,0,0,0,411,0,699,0,0,0,281,36,0,0,0,0,0,0,8,0,0,161,1,0,0,0,9,0,0,0,0,4,123,320,0,0,150,0,0,0,0,0,190,0,0,452,3,0,1,5,1,0,0,0,25,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,9,0,0,0,0,1,49,866,0,8,9,0,0,0,0,0,175,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,3,0,0,0,0,0,0,0,0,0,0,0,0,7,459,71,5 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,8,0,0,0,1,0,0,1,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,3,0,0,342,10,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,58,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,9,0,1,0,0,97,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,56,0,26,0,0,0,0,3,24,5,70,0,0,0,0,1,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,64,3,0,0,113,0,119,0,0,0,57,1,0,0,0,0,0,0,0,0,0,36,1,0,0,0,2,0,0,0,0,0,92,47,0,0,0,0,0,0,0,0,39,0,0,64,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,181,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,71,7,5 +0,0,0,10,0,18,70,0,143,23,53,0,0,0,30,0,23,0,7,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,6,0,18,6,4,0,252,0,0,0,1,0,0,2,0,0,0,0,1,139,0,1,0,0,0,1,0,0,2,0,0,43,0,0,1343,18,328,0,3,0,0,0,0,0,9,0,0,0,0,0,1,4,119,0,0,6,0,0,5,134,0,1093,230,2,0,0,2,0,637,0,27,0,0,607,0,0,0,0,15,0,1,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,269,0,87,0,0,0,2,15,41,944,148,0,0,0,0,1,0,0,0,0,0,0,0,0,733,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,31,176,13,0,0,274,0,398,0,0,0,212,33,0,0,0,0,0,0,0,0,0,326,1,0,0,0,3,0,0,0,0,2,131,312,0,0,513,0,0,0,0,4,103,0,0,96,0,0,1,0,0,0,0,0,3,0,0,0,5,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,16,0,0,0,0,1,24,257,0,7,0,0,0,0,0,0,310,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,29,0,0,0,0,0,0,0,0,0,0,0,0,0,2,251,60,5 +0,0,0,3,0,9,10,0,72,0,34,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,103,0,0,0,1,0,0,1,0,0,0,0,0,81,0,0,0,0,0,1,0,0,0,0,0,10,0,0,373,9,136,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,36,0,0,1,0,0,8,64,0,583,120,2,0,0,2,0,303,0,0,0,0,318,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,31,0,0,0,0,3,23,497,52,0,0,0,0,1,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,78,3,0,0,110,0,245,0,0,0,57,3,0,0,0,0,0,0,0,0,0,139,1,0,0,0,2,0,0,0,0,0,91,151,0,0,243,0,0,0,0,0,34,0,0,44,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,117,0,1,0,0,0,0,0,0,142,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,68,27,5 +0,0,0,4,0,35,5,0,9,2,3,0,0,2,5,0,19,0,6,7,0,0,0,4,0,9,3,0,3,0,1,0,0,0,7,0,35,6,10,0,34,0,0,0,1,0,0,0,0,0,0,0,2,92,0,0,0,0,0,1,0,0,0,0,0,6,0,0,644,35,40,0,3,0,0,0,0,0,2,0,0,0,0,0,9,13,77,0,0,7,0,0,0,0,0,82,5,0,0,0,2,0,47,0,3,0,0,706,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,59,0,42,0,0,0,2,46,197,45,57,0,0,0,0,1,0,4,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,32,13,145,4,0,0,125,0,371,0,0,0,43,8,0,0,0,0,0,0,0,0,0,49,0,0,0,0,11,0,0,0,0,2,117,21,0,0,0,0,2,0,1,1,144,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,50,0,0,0,0,1,42,59,0,8,8,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,74,5 +2,0,0,12,1,27,45,1,111,19,23,0,0,0,33,0,98,0,9,4,0,0,0,3,1,4,12,0,8,0,1,0,0,1,14,0,28,118,16,0,198,0,0,0,1,0,0,3,0,0,0,0,4,196,0,0,0,0,0,1,0,0,0,0,0,33,0,0,1489,27,293,0,9,0,0,0,0,0,11,0,0,0,0,0,3,7,131,0,1,14,1,0,4,51,0,496,65,6,0,0,4,1,419,0,20,0,0,1123,0,1,0,0,16,0,2,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,153,0,99,0,0,0,8,52,56,393,151,0,0,0,0,1,0,2,0,0,0,0,0,0,571,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,132,52,431,24,0,0,463,0,1792,0,1,0,268,49,0,0,0,0,0,0,0,0,0,319,1,0,0,0,8,0,0,0,0,4,196,187,0,0,151,0,0,0,0,2,495,0,0,51,0,0,1,3,0,0,0,0,7,0,0,0,1,0,0,0,0,0,13,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,27,1,1,1,0,56,0,0,0,0,9,42,181,0,25,0,0,0,0,0,0,210,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,23,1,0,0,0,0,0,0,0,0,0,0,1,0,1,693,146,5 +1,0,0,8,0,24,4,0,31,0,12,0,0,0,7,0,25,0,7,8,0,0,0,1,0,2,6,0,3,0,1,0,0,0,4,0,24,37,6,0,57,0,0,0,0,0,0,0,0,0,0,0,2,65,0,0,0,0,0,1,0,0,0,0,0,13,0,0,725,24,82,0,4,0,0,0,0,0,0,0,0,0,0,0,6,6,11,0,0,4,0,0,3,22,0,227,35,0,0,0,2,0,168,0,2,0,0,1759,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,42,0,45,0,0,0,4,33,58,178,44,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,242,8,0,0,88,0,588,0,0,0,22,96,0,0,0,0,0,0,0,0,0,86,0,0,0,0,9,0,0,0,0,3,109,45,0,0,61,0,0,0,0,0,135,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,19,0,0,0,0,1,28,4,0,12,0,0,0,0,0,0,81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,150,5 +0,0,0,14,0,72,78,0,123,22,75,0,0,9,43,0,1411,0,7,7,0,0,0,8,0,15,15,0,60,0,1,0,0,0,20,12908,72,55,23,0,243,0,0,0,1,0,0,1,0,0,0,0,6,861,0,0,0,0,0,1,0,0,0,2,0,37,0,0,49273,72,1913,0,58,0,0,0,0,0,108,0,0,0,0,0,9,250,8744,0,0,20,0,0,2,42,0,1082,85,2,0,0,2,0,1919,0,24,370,2,7018,0,0,0,0,17,0,3,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,12,12,12,0,0,0,2834,0,78,0,0,0,36,83,1084,3277,2794,0,0,0,0,1,0,4,0,0,0,0,0,0,693,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,119,228,530,19,0,0,569,0,617,0,0,0,361,137,0,0,0,0,0,0,0,0,0,1746,1,0,0,0,15,0,0,0,0,6,266,91,0,0,589,0,0,0,0,0,6450,1,0,543,53,0,1,1,0,0,0,0,2,0,0,0,4,0,0,0,0,0,20,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,53,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,84,1,1,1,0,189,0,0,0,0,1,92,273,0,79,12,0,0,0,0,0,286,6,0,0,0,0,0,0,0,0,0,0,0,3,0,2,28,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2859,127,5 +2,0,0,13,0,44,17,0,87,21,20,0,4,5,48,0,68,0,7,7,0,0,0,1,0,5,15,0,12,0,2,0,0,0,24,0,44,162,23,0,252,0,0,0,1,0,0,2,0,0,0,0,7,186,0,0,0,0,0,1,0,0,0,0,0,32,0,0,6156,44,270,0,14,0,0,0,0,0,9,0,0,0,0,0,1,5,491,0,0,24,0,0,3,38,0,382,60,2,0,0,2,0,444,0,21,0,9,1286,0,0,1,0,12,0,2,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,528,0,86,0,0,0,14,54,89,407,552,0,0,0,0,1,0,0,0,0,0,0,0,0,1745,0,0,0,0,0,0,0,0,0,4,0,0,2,0,0,0,0,0,0,0,0,13,39,315,15,0,0,238,0,923,0,0,0,152,41,0,0,0,0,0,0,0,0,0,256,1,0,0,0,8,0,0,0,0,8,142,107,0,0,139,0,0,0,0,1,807,0,0,1677,0,0,1,0,1,0,0,0,3,0,0,0,4,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,42,0,0,0,0,1,68,85,0,34,0,0,0,0,0,0,201,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,25,0,0,0,0,0,0,0,0,0,0,0,0,0,2,712,76,5 +5,0,0,7,1,64,56,1,95,2,18,0,0,9,7,0,424,0,9,6,0,0,0,8,0,14,12,0,18,0,1,0,0,1,11,19933,65,54,14,0,88,0,0,0,1,0,0,6,0,0,0,0,5,696,0,0,0,0,0,1,0,0,0,11,0,4,0,0,176143,64,673,0,15,0,0,0,0,0,77,0,0,0,0,0,9,76,30387,0,1,11,1,0,1,0,0,461,30,10,0,0,4,1,576,0,2,77,0,8286,0,0,0,0,6,5,5,0,0,0,0,1,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,31,0,1,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,12,12,12,0,0,0,23298,0,106,0,0,0,12,102,781,2065,23231,0,0,0,0,1,0,12,0,0,0,0,0,0,846,6,0,0,0,0,0,0,0,0,0,0,0,11,7,0,0,0,0,0,1,0,226,29,607,8,0,0,656,0,804,0,1,0,335,78,0,0,0,0,0,0,0,0,0,618,1,0,0,0,14,0,0,0,0,6,248,149,0,0,101,0,0,0,0,0,5744,1,0,233,40,0,1,1,1,0,0,0,10,0,0,0,3,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,103,1,1,1,0,70,0,0,0,0,9,76,220,0,31,14,0,1,0,0,0,171,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,3,3629,93,5 +2,0,0,7,0,46,26,0,62,16,14,0,0,6,32,0,886,0,7,2,0,0,0,7,2,10,0,0,12,0,1,0,0,0,8,978,46,110,6,0,128,0,0,0,1,0,0,8,0,0,0,0,3,325,0,0,0,0,0,1,0,0,0,0,0,32,0,0,33707,46,1106,0,10,0,0,0,0,0,61,0,0,0,0,0,8,53,6092,0,0,8,0,0,0,0,0,280,20,11,1,0,2,0,1030,0,15,25,0,3211,0,0,0,0,6,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,12,12,12,0,0,0,3967,0,135,0,0,0,9,18,339,730,3916,0,0,0,0,1,0,5,0,0,0,0,0,0,1812,0,0,0,0,0,0,0,0,0,1,0,0,8,1,0,0,0,0,0,1,0,89,35,301,7,0,0,376,0,1238,0,0,0,200,41,0,0,0,0,0,0,2,0,0,1033,1,0,0,0,11,0,0,0,0,3,132,103,0,0,54,0,0,0,0,0,35379,1,0,1477,14,0,1,1,0,0,0,0,16,0,0,0,1,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,26,0,0,0,0,1,54,587,0,11,12,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,9,52494,117,5 +1,0,0,51,1,101,45,1,366,42,136,5,1,1,65,1,129,0,18,10,0,0,0,7,1,5,17,0,18,0,1,0,0,1,32,0,102,443,32,0,582,0,0,0,1,0,0,2,0,0,0,0,9,283,1,0,0,0,0,1,0,0,0,1,0,64,0,0,1657,101,752,0,19,0,0,0,0,0,7,0,0,0,0,0,8,11,105,0,1,32,1,0,10,270,0,2372,555,2,0,0,4,1,1422,0,38,0,2,2866,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,116,0,0,0,0,0,0,174,0,172,0,0,0,18,84,191,2074,186,0,0,0,0,1,0,2,0,0,0,0,0,0,526,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,125,85,952,59,0,0,589,0,3114,0,1,0,208,80,0,0,0,0,0,0,0,0,0,767,1,0,0,0,18,0,0,0,0,9,221,502,0,0,1550,0,0,0,0,1,943,0,0,28,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,145,1,1,1,0,37,0,0,0,0,9,134,132,0,41,0,0,0,0,0,0,651,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,60,0,0,0,0,0,0,0,0,0,0,0,1,0,2,396,83,5 +0,0,0,52,0,12,3,0,77,3,353,0,0,0,639,0,87,0,7,2,0,0,0,1,1,0,42,0,0,0,1,0,0,0,0,1129,12,6,6202,0,757,0,1,0,1,0,0,1,1,0,0,0,0,580,0,0,0,0,0,1,1,0,0,0,0,4,0,1,27905,12,1205,0,1,0,0,0,0,0,9,0,0,0,0,0,2,5,473,4,0,0,0,0,0,0,0,114,1,4,0,0,4,0,1824,0,0,0,0,1509,0,0,0,0,0,0,2,0,1,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,0,1,0,0,0,0,52,0,26,0,0,0,0,3,30,19,52,0,0,0,0,1,0,1,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,210,1584,67,0,0,1930,0,3734,1,0,0,1695,16,0,0,0,0,0,0,0,0,0,1166,1,0,2,0,3,1,0,0,0,0,1255,456,0,0,0,0,0,0,0,0,5147,0,0,736,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,3,12,1628,0,43,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10726,679,5 +0,0,0,7,0,38,31,0,97,7,24,0,0,2,15,0,23,0,7,4,0,0,0,5,0,8,0,0,4,0,1,0,0,0,12,0,38,76,7,0,187,0,0,0,1,0,0,5,0,0,0,0,2,208,0,0,0,0,0,1,0,0,0,0,0,26,0,0,4681,38,211,0,3,0,0,0,0,0,23,0,0,0,0,1,7,19,560,0,0,12,0,0,3,80,0,712,70,8,0,0,2,0,438,0,8,0,0,815,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,411,0,140,0,0,0,2,3,203,544,452,0,0,0,0,1,0,3,0,0,0,0,0,0,1706,0,1,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,37,18,211,7,0,0,256,0,707,0,0,0,154,23,0,0,0,0,0,0,0,0,0,199,1,0,0,0,9,0,0,0,0,1,123,239,0,0,155,0,9,0,0,0,449,0,0,976,3,0,1,24,0,0,0,0,9,0,0,0,2,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,9,0,0,0,0,1,50,352,0,4,9,0,0,0,0,0,281,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,2,722,278,5 +2,0,0,29,0,41,6,0,107,18,9,0,1,4,58,0,109,0,7,6,0,0,0,2,7,11,36,0,21,0,1,0,0,0,16,0,41,90,206,0,293,0,0,0,1,0,0,2,0,0,0,0,13,210,0,0,0,0,0,1,0,0,0,2,0,13,0,0,2031,41,367,0,22,0,0,0,0,0,6,0,0,0,0,0,2,6,135,0,0,16,0,0,0,5,0,174,10,2,0,0,2,0,455,0,10,0,4,5471,0,0,0,0,7,2,1,0,1,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0,0,0,174,0,97,0,0,0,24,863,89,355,181,0,0,0,0,1,0,0,0,0,0,0,0,0,641,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,13,147,416,43,0,0,218,0,1281,0,0,0,117,146,0,0,0,0,0,0,0,0,0,301,1,0,0,0,15,0,0,0,0,12,157,98,0,0,27,0,1,0,0,0,1353,0,0,24,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,29,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,158,0,0,0,0,1,57,48,0,69,0,0,0,0,0,0,191,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1236,138,5 +1,0,0,7,1,49,167,1,82,2,121,0,0,10,7,0,978,0,8,2,0,0,0,8,0,13,0,0,19,0,1,0,0,1,7,7238,50,54,0,0,65,0,0,0,1,0,0,1,0,0,0,0,1,2251,0,0,0,0,0,1,0,0,0,4,0,4,0,0,135734,49,1667,0,20,0,0,0,0,0,248,0,0,0,0,0,9,293,22555,0,1,7,1,0,1,0,0,1254,35,2,0,0,4,1,1246,0,2,840,0,7121,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,15450,0,45,0,0,0,9,14,813,6151,15438,0,0,0,0,1,0,6,0,0,0,0,0,0,1127,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,237,29,469,8,0,0,749,0,464,0,1,0,441,6,0,0,0,0,0,0,0,0,0,1373,1,0,0,0,10,0,0,0,0,1,229,24,0,0,942,0,2,0,0,0,6658,1,0,600,124,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,124,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,53,1,1,1,0,55,0,0,0,0,9,57,175,0,21,12,0,0,0,0,0,106,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,2,3569,53,5 +5,0,0,14,5,63,217,5,582,6,166,0,0,2,19,1,86,0,7,15,0,9,0,5,0,10,20,0,14,0,8,5,0,5,32,0,67,6,1,0,831,0,0,0,1,0,0,4,0,0,0,0,14,269,0,0,0,0,0,1,0,0,0,1,0,28,0,0,79252,63,1622,0,25,0,0,0,0,0,25,15,0,0,0,1,7,20,9746,0,5,32,5,0,5,514,0,4148,750,8,2,0,2,5,2373,0,12,0,0,2336,0,0,0,0,30,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,9,0,5,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,28,10,10,10,0,0,0,9406,0,124,0,0,0,26,57,247,2260,9434,0,0,0,0,1,0,5,0,0,0,0,0,0,22184,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,38,479,24,0,0,688,0,791,0,0,0,468,169,0,0,0,0,0,0,0,0,0,1080,1,0,0,0,29,0,0,0,0,13,184,962,0,0,1973,0,1,0,0,0,6532,0,0,25748,3,0,1,1,0,0,0,0,9,0,0,0,7,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,3,17,6,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,55,0,0,0,0,33,99,400,0,48,9,0,0,0,0,0,973,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,16,0,0,0,0,0,0,0,0,0,0,0,10,0,5,6930,337,5 +0,0,0,3,0,9,2,0,6,0,2,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,3,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1688,9,23,0,1,0,0,0,0,0,4,0,0,0,0,0,1,5,9,0,0,0,0,0,0,0,0,8,0,0,0,0,2,0,7,0,0,0,0,586,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,16,0,26,0,0,0,0,3,23,1475,31,0,0,0,0,1,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,39,3,0,0,89,0,116,0,0,0,55,4,0,0,0,0,0,0,0,0,0,26,1,0,0,0,2,0,0,0,0,0,91,54,0,0,0,0,0,0,0,0,17,0,0,9,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,91,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,5 +0,0,0,14,0,74,80,0,209,28,52,0,1,8,54,1,177,0,49,7,0,0,0,8,7,21,30,0,30,0,1,0,0,0,16,428,74,103,38,0,345,0,0,0,1,0,0,8,0,0,0,0,13,413,0,0,0,0,0,1,0,0,1,0,0,32,0,0,42899,74,746,0,28,0,0,0,0,0,49,0,0,0,0,0,9,33,6820,0,0,16,0,0,6,139,0,1413,210,18,0,2,2,0,1127,0,16,2,5,3303,0,0,0,0,11,0,6,0,0,0,0,1,0,0,0,29,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,14,1,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,12,12,12,0,0,0,6099,0,164,0,0,0,24,451,395,1185,6072,0,0,0,0,1,0,7,0,0,0,0,0,0,1481,0,0,0,0,0,0,0,0,0,0,0,0,8,1,6,0,0,0,0,1,0,90,56,560,16,0,0,677,0,1221,0,0,0,459,1335,0,0,0,2,0,0,0,0,0,631,1,0,0,0,22,0,0,0,0,11,185,500,0,0,449,0,0,0,0,1,1382,1,0,432,11,0,1,1,1,0,0,0,20,0,1,0,10,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,11,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,142,1,1,1,0,438,0,0,0,0,1,90,685,0,68,14,0,0,0,0,0,463,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1231,212,5 +2,0,0,12,0,40,8,0,43,8,12,0,0,2,29,0,39,0,7,4,0,0,0,2,0,1,9,0,6,0,3,0,0,0,18,0,40,209,6,0,114,0,0,0,1,0,0,6,0,0,0,0,4,178,0,0,0,0,0,1,0,0,0,0,0,24,0,0,3406,40,165,0,9,0,0,0,0,0,16,0,0,0,0,0,3,10,850,0,0,18,0,0,2,16,0,168,25,9,0,0,2,0,232,0,16,0,3,2039,0,0,0,0,1,0,3,0,0,0,1,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,546,0,115,0,0,0,8,25,93,380,539,0,0,0,0,1,0,1,0,0,0,0,0,0,462,0,0,0,0,0,0,0,0,0,2,0,0,6,0,0,0,0,0,0,0,0,14,20,263,13,0,0,333,0,1215,0,0,0,233,89,0,0,0,0,0,0,0,0,0,140,1,0,0,0,6,0,0,0,0,3,133,185,0,0,50,0,0,0,0,0,301,0,0,89,0,0,1,0,1,0,0,0,12,0,0,0,1,0,0,0,0,0,18,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,15,0,0,0,2,1,58,435,0,19,0,0,0,0,0,0,118,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,312,98,5 +0,0,0,13,0,71,134,0,648,44,167,0,1,3,63,0,125,0,7,6,0,0,0,17,7,10,36,0,47,0,1,0,0,0,45,0,71,153,96,0,1286,0,0,0,1,0,0,8,0,0,0,0,24,247,0,0,0,0,0,1,0,0,1,0,0,126,0,0,6378,71,1289,0,49,0,0,0,0,0,25,0,0,0,0,0,5,21,1156,0,0,45,0,0,5,573,0,4647,460,8,0,0,2,0,3086,0,37,1,6,3123,0,0,0,0,34,0,14,0,0,0,0,1,0,0,0,22,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,812,0,206,0,0,0,48,161,119,3590,811,0,0,0,0,1,0,20,0,0,0,0,0,0,1523,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,13,69,602,14,0,0,521,0,1007,0,0,0,396,72,0,0,0,0,0,0,0,0,0,1148,1,0,0,0,30,0,0,0,0,23,191,1410,0,0,1320,0,1,0,0,1,1101,0,0,103,0,0,1,0,0,0,0,0,15,0,1,0,16,0,0,0,0,0,38,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,82,1,1,1,0,152,0,0,0,0,1,116,344,0,94,0,0,0,0,0,0,1476,51,0,0,0,0,0,0,0,0,0,0,0,0,0,1,50,0,0,0,0,0,0,0,0,0,0,0,0,0,8,828,170,5 +0,0,0,23,1,68,101,1,238,39,64,2,0,2,89,1,852,0,9,14,0,0,0,7,4,24,18,0,29,0,3,0,0,1,18,945,69,121,38,0,485,0,0,0,1,0,0,11,0,0,0,0,17,544,0,2,0,0,0,1,0,0,0,2,0,46,0,0,14074,68,1414,0,29,0,0,0,0,0,47,0,0,0,0,2,10,32,2611,0,1,18,1,0,4,158,0,1532,260,16,0,0,4,1,1772,0,35,0,0,4224,0,0,0,0,31,0,4,0,0,0,0,1,1,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,13,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,12,12,12,0,0,0,1553,0,208,0,0,0,32,510,329,2059,1494,0,0,0,0,1,0,6,0,0,0,0,0,0,2292,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,1,0,142,108,769,65,0,0,883,0,1592,0,1,0,544,77,0,0,0,0,0,0,0,0,0,1358,1,0,0,0,25,0,0,0,0,14,308,464,0,0,789,0,4,0,0,0,3816,1,0,969,5,0,1,1,1,0,0,0,26,0,1,0,7,0,0,0,0,0,43,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,5,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,92,1,1,1,0,84,0,0,0,0,9,87,542,0,62,12,0,1,0,0,0,535,6,0,0,0,0,0,0,0,0,0,0,0,2,0,1,45,0,0,0,0,0,0,0,3,0,0,0,1,0,9,2810,299,5 +0,0,0,30,0,76,22,0,102,30,23,0,1,5,68,0,62,0,7,9,0,0,0,2,1,8,12,0,16,0,1,0,0,0,45,0,76,289,50,0,264,0,0,0,1,0,0,4,0,0,0,0,9,333,0,4,0,0,0,1,0,0,0,0,0,47,0,0,105014,76,321,0,17,0,0,0,0,0,22,0,0,0,0,0,2,7,428,0,0,45,0,0,1,32,0,371,70,8,0,0,2,0,454,0,26,0,6,17281,0,0,0,0,1,0,8,0,0,0,0,1,2,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,14,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,480,0,133,0,0,0,18,133,146,678,516,0,0,0,0,1,0,1,0,0,0,0,0,0,1409,1,0,0,0,0,0,0,0,0,0,0,0,53,0,2,0,0,0,0,0,0,14,64,586,39,0,0,509,0,1655,0,0,0,361,105,0,0,0,0,0,0,0,0,0,290,1,0,0,0,12,0,0,0,0,9,241,194,0,0,153,0,1,0,0,0,861,0,0,930,0,0,1,0,0,0,0,0,13,0,0,0,4,0,0,0,0,0,33,0,0,3,4,0,0,5,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,84,1,1,1,0,106,0,0,0,0,1,121,501,0,37,0,0,1,0,0,0,219,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,32,0,0,0,0,0,0,0,0,0,0,0,0,0,8,899,210,5 +0,0,0,13,0,56,23,0,118,16,26,0,1,6,27,0,689,0,7,6,0,0,0,6,1,13,12,0,11,0,1,0,0,0,13,898,56,359,16,0,149,0,0,0,1,0,0,16,0,0,0,0,5,389,0,0,0,0,0,1,0,0,0,0,0,12,0,0,40893,56,1005,0,9,0,0,0,0,0,68,0,0,0,0,0,8,33,6469,0,0,13,0,0,2,53,0,588,95,31,0,0,2,0,1070,0,10,0,10,2825,0,0,0,0,3,0,17,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,28,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,12,12,12,0,0,0,5873,0,289,0,0,0,8,42,304,799,5814,0,0,0,0,1,0,3,0,0,0,0,0,0,1389,0,0,0,0,0,0,0,0,0,0,0,0,16,1,18,0,0,0,0,1,0,37,36,425,14,0,0,857,0,1636,0,0,0,679,60,0,0,0,0,0,0,8,0,0,897,1,0,0,0,13,0,0,0,0,5,215,571,0,0,202,0,0,0,0,0,2154,1,0,633,7,0,1,1,0,0,0,0,37,0,0,0,1,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,80,1,1,1,0,28,0,0,0,0,1,69,1421,0,25,12,0,0,0,0,0,230,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1495,189,5 +1,0,0,0,0,40,21,0,86,1,17,0,0,0,5,0,13,0,7,1,0,0,0,2,0,0,0,0,5,0,0,0,0,0,25,0,40,6,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,1,0,0,0,15,0,16,0,0,646,40,148,0,6,0,0,0,0,0,0,0,0,0,0,0,2,2,22,0,0,25,0,0,1,80,0,604,5,0,0,0,2,0,422,0,1,0,0,5990,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,52,0,54,0,0,0,0,3,65,533,52,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,139,1,0,0,146,0,291,0,0,0,95,56,0,0,0,0,0,0,0,0,0,149,0,0,0,0,3,0,0,0,0,1,122,216,0,0,27,0,0,0,6,0,30,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,5,0,0,0,0,1,65,25,0,5,0,0,0,0,0,0,210,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,15,5 +0,0,0,11,0,36,113,0,261,42,66,0,1,3,61,0,76,0,7,7,0,0,0,1,2,6,21,0,16,0,1,0,0,0,16,0,36,170,35,0,489,0,0,0,1,0,0,8,0,0,0,0,8,295,0,0,0,0,0,1,0,0,2,1,0,54,0,0,3780,36,630,0,17,0,0,0,0,0,24,0,0,0,0,0,1,11,227,0,0,16,0,0,4,188,0,1556,290,11,0,0,2,0,1111,0,40,0,6,2259,0,0,0,0,18,0,8,0,0,0,0,1,0,0,0,15,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,30,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,271,0,151,0,0,0,16,83,73,1551,308,0,0,0,0,1,0,0,0,0,0,0,0,0,1274,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,13,61,347,12,0,0,582,0,1313,0,0,0,486,161,0,0,0,0,0,0,0,0,0,588,1,0,0,0,10,0,0,0,0,8,150,602,0,0,770,0,0,0,0,2,486,0,0,97,0,0,1,0,0,0,0,0,18,0,1,0,13,0,0,0,0,0,43,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,82,0,0,0,0,1,52,387,0,44,0,0,0,0,0,0,497,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,46,0,0,0,0,0,0,0,0,0,0,0,0,0,4,563,160,5 +0,0,0,4,0,9,5,0,39,0,10,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,50,0,0,0,1,0,0,1,0,0,0,0,0,81,0,0,0,0,0,1,0,0,0,0,0,6,0,0,211,9,73,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,25,0,0,1,0,0,1,23,0,190,15,2,0,0,2,0,128,0,0,0,0,98,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,28,0,0,0,0,3,23,192,46,0,0,0,0,1,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,77,4,0,0,128,0,291,0,0,0,65,3,0,0,0,0,0,0,0,0,0,78,1,0,0,0,2,0,0,0,0,1,94,105,0,0,35,0,0,0,0,0,28,0,0,16,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,154,0,1,0,0,0,0,0,0,73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,55,33,5 +6,0,0,38,1,81,98,1,294,20,55,0,0,2,74,0,143,0,17,7,0,0,0,8,4,14,33,0,22,0,2,3,0,1,38,0,82,145,26,0,445,0,0,0,1,0,0,4,0,0,0,0,13,429,0,0,0,0,0,1,0,0,0,13,0,35,0,0,34051,81,690,0,25,0,0,0,0,0,16,0,0,0,0,0,10,21,4238,0,1,38,1,0,6,154,0,1547,195,3,0,0,4,1,1153,0,21,0,0,2901,0,0,1,0,37,3,4,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,10,10,10,0,0,0,3103,0,193,0,0,0,24,112,280,1103,3096,0,0,0,0,1,0,3,0,0,0,0,0,0,12456,0,0,0,0,0,0,0,0,0,0,0,0,4,1,4,0,0,0,0,1,0,150,125,1439,61,0,0,1426,0,1727,0,1,0,1132,102,0,0,0,0,0,0,2,0,0,683,1,0,0,0,19,0,0,0,0,12,978,444,0,0,514,0,9,0,1,0,4313,0,0,10686,3,0,1,1,1,0,0,0,7,0,0,0,1,0,0,0,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,3,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,96,1,1,1,0,100,0,0,0,0,9,120,523,0,65,9,0,0,0,0,0,514,9,0,0,0,0,0,0,0,0,0,1,0,2,0,1,30,0,0,0,0,0,0,0,0,0,0,0,1,0,4,4787,270,5 +3,0,0,19,0,36,19,0,60,13,14,0,0,0,19,0,36,0,7,3,0,0,0,2,0,2,6,0,4,0,1,0,0,0,7,0,36,6,9,0,141,0,0,0,1,0,0,1,0,0,0,0,2,77,0,0,0,0,0,1,0,0,0,2,0,19,0,0,606,36,151,0,5,0,0,0,0,0,4,0,0,0,0,0,2,5,131,0,0,7,0,0,2,35,0,307,50,1,0,0,2,0,241,0,9,0,0,578,0,0,0,0,12,2,0,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,39,0,0,0,0,0,0,128,0,67,0,0,0,4,29,71,247,137,0,0,0,0,1,0,0,0,0,0,0,0,0,391,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,32,226,26,0,0,217,0,2336,0,0,0,91,17,0,0,0,0,0,0,0,0,0,155,1,0,0,0,5,0,0,0,0,3,151,70,0,0,121,0,1,0,0,0,141,0,0,15,0,0,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,30,0,0,0,0,1,43,24,0,13,0,0,0,0,0,0,128,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,1,286,58,5 +0,0,0,13,0,31,13,0,42,12,13,0,1,1,28,0,34,0,7,5,0,0,0,0,1,2,9,0,8,0,1,0,0,0,12,0,31,88,11,0,145,0,0,0,1,0,0,0,0,0,0,0,4,97,0,1,0,0,0,1,0,0,0,0,0,27,0,0,601,31,147,0,9,0,0,0,0,0,2,0,0,0,0,0,1,1,5,0,0,12,0,0,2,23,0,220,35,0,0,0,2,0,246,0,16,0,2,938,0,0,0,0,2,0,3,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,47,0,43,0,0,0,8,28,77,186,58,0,0,0,0,1,0,0,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,33,146,15,0,0,162,0,631,0,0,0,97,37,0,0,0,0,0,0,0,0,0,139,0,0,0,0,6,0,0,0,0,3,119,86,0,0,80,0,0,0,0,0,212,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,15,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,16,0,0,0,0,1,43,83,0,20,0,0,0,0,0,0,115,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,113,5 +7,0,0,10,1,68,135,1,167,7,42,0,1,9,19,0,2329,0,9,6,0,0,0,8,0,15,12,0,33,0,1,0,0,1,11,44934,69,71,14,0,161,0,0,0,1,0,0,5,0,0,0,0,5,1227,0,0,0,0,0,1,0,0,0,7,0,20,0,0,360219,68,2952,0,30,0,0,0,0,0,200,0,0,0,0,0,9,168,78709,0,1,11,1,0,3,35,0,831,80,10,1,0,4,1,2788,0,10,132,0,13096,0,0,0,0,16,4,4,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,1,1,3,4,0,0,0,0,1,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,12,12,12,0,0,0,68931,0,112,0,0,0,23,94,1224,3932,68846,0,0,0,0,1,0,10,0,0,6,0,0,0,1914,4,0,0,0,0,0,0,0,0,0,0,0,17,5,0,0,0,0,0,1,0,220,37,805,11,0,0,974,0,684,0,1,0,601,104,0,0,0,0,0,0,0,0,0,2711,1,0,0,0,14,0,0,0,0,6,309,218,0,0,305,0,0,0,0,0,11862,1,0,1147,101,0,1,1,0,0,0,0,6,0,0,0,4,0,0,0,0,0,9,2,0,0,6,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,101,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,110,1,1,1,0,106,0,0,0,0,9,80,281,0,47,14,0,0,0,0,0,237,2,0,0,0,0,0,0,0,0,0,0,0,4,0,2,15,0,0,0,0,0,0,0,0,0,0,0,1,0,2,5178,184,5 +0,0,0,10,0,25,13,0,40,21,10,0,0,0,31,1,32,0,7,2,0,0,0,3,1,2,6,0,4,0,1,0,0,0,10,0,25,6,8,0,250,0,0,0,1,0,0,5,0,0,0,0,2,215,0,0,0,0,0,1,0,0,0,2,0,28,0,0,2312,25,173,0,5,0,0,0,0,0,27,0,0,0,0,0,3,9,468,0,0,10,0,0,2,20,0,210,25,10,0,0,2,0,211,0,17,0,0,791,0,0,0,0,12,0,5,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,432,0,117,0,0,0,4,28,60,188,460,0,0,0,0,1,0,0,0,0,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,0,0,0,0,0,0,8,63,225,24,0,0,337,0,847,0,0,0,258,81,0,0,0,0,0,2,0,0,0,134,1,0,0,0,6,0,0,0,0,3,163,180,0,0,50,0,0,0,0,0,212,0,0,232,0,0,1,0,1,0,0,0,12,0,0,0,1,0,0,0,0,0,14,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,24,0,0,0,0,1,35,635,0,13,0,0,1,0,0,0,164,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,3,0,0,0,0,0,0,0,0,5,628,94,5 +0,0,0,5,0,16,3,0,4,5,4,0,0,0,9,0,9,0,7,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,16,6,0,0,25,0,0,0,1,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,10,0,0,129,16,29,0,1,0,0,0,0,0,0,0,0,0,0,0,2,2,9,0,0,4,0,0,0,0,0,7,0,0,0,0,2,0,24,0,6,0,0,195,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,19,0,32,0,0,0,0,3,35,11,36,0,0,0,0,1,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,71,5,0,0,76,0,293,0,0,0,31,4,0,0,0,0,0,0,0,0,0,36,0,0,0,0,3,0,0,0,0,0,98,17,0,0,0,0,0,0,0,2,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,20,20,0,1,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,5 +0,0,0,15,0,40,57,0,56,6,12,0,0,6,6,0,1363,0,7,2,0,0,0,8,0,24,0,0,9,0,1,0,0,0,3,6393,40,9,0,0,57,0,0,0,1,0,0,3,0,0,0,0,1,586,0,0,0,0,0,1,0,0,0,0,0,4,0,0,269093,40,1671,0,19,0,0,0,0,0,123,0,0,0,0,0,9,48,46478,0,0,3,0,0,0,0,0,259,20,6,0,0,2,0,1511,0,0,9,0,12747,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,12,12,12,0,0,0,35360,0,47,0,0,0,2,12,444,2769,35341,0,0,0,0,1,0,3,0,0,0,0,0,0,684,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,84,38,290,25,0,0,455,0,370,0,0,0,289,4,0,0,0,0,0,0,0,0,0,1507,1,0,0,0,10,0,0,0,0,1,178,79,0,0,39,0,0,0,0,1,8763,1,0,1401,59,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,59,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,60,0,0,0,0,1,43,203,0,20,14,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5696,93,5 +0,0,0,11,0,58,7,0,75,14,6,0,1,5,30,0,67,0,7,8,0,0,0,5,3,13,15,0,16,0,2,0,0,0,23,0,58,101,30,0,186,0,0,0,1,0,0,4,1,0,0,0,10,206,0,0,0,0,0,1,0,0,0,0,0,14,0,0,4372,58,216,0,17,0,0,0,0,0,21,0,0,0,0,0,7,18,366,0,0,23,0,0,0,0,0,156,5,8,0,0,2,0,236,0,9,0,5,2275,0,0,0,0,7,0,7,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,10,10,10,0,0,0,395,0,148,0,0,0,18,97,232,292,352,0,0,0,0,1,0,3,0,0,0,0,0,0,1118,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,37,38,335,12,0,0,386,0,1019,0,0,0,259,68,0,0,0,0,0,0,0,0,0,198,1,0,3,0,16,0,0,0,0,9,171,145,0,0,0,0,0,0,0,1,615,0,0,589,3,0,1,1,0,0,0,0,12,0,0,0,1,0,0,0,0,0,15,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,68,1,1,1,0,62,0,0,0,0,1,81,318,0,37,9,0,0,0,0,0,111,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,3,623,202,5 +2,0,0,4,1,44,29,1,36,2,5,0,0,2,5,0,74,0,9,4,0,0,0,5,0,9,3,0,5,0,2,0,0,1,9,0,45,54,2,0,36,0,0,0,1,0,0,1,0,0,0,0,3,142,0,0,0,0,0,1,0,0,0,3,0,4,0,0,7300,44,124,0,5,0,0,0,0,0,11,0,0,0,0,0,7,18,883,0,1,9,1,0,1,0,0,117,5,1,0,0,4,1,55,0,2,0,0,624,0,0,0,0,4,2,1,0,0,0,0,1,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,677,0,61,0,0,0,4,11,193,82,680,0,0,0,0,1,0,2,0,0,0,0,0,0,2370,2,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,137,23,334,5,0,0,331,0,573,0,1,0,87,40,0,0,0,0,0,0,0,0,0,160,1,0,0,0,9,0,0,0,0,1,140,16,0,0,0,0,0,0,0,0,1161,0,0,2468,3,0,1,1,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,55,1,1,1,0,9,0,0,0,0,9,54,68,0,10,9,0,0,0,0,0,64,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,1,0,2,949,56,5 +0,0,0,18,0,60,73,0,158,21,29,1,1,4,38,0,81,0,22,12,0,0,0,2,2,9,21,0,22,0,1,0,0,0,21,0,60,332,35,0,269,0,0,0,1,0,0,2,0,0,0,0,11,320,0,0,0,0,0,1,0,0,0,0,0,27,0,0,7178,60,439,0,23,0,0,0,0,0,10,0,0,0,0,0,4,7,1134,0,0,21,0,0,4,101,0,932,100,3,0,0,2,0,765,0,16,0,6,2495,0,0,0,0,21,0,4,0,0,0,0,1,0,0,0,18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,865,0,111,0,0,0,22,83,129,1032,814,0,0,0,0,1,0,0,0,0,0,0,0,0,1532,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,34,375,23,0,0,402,0,1430,0,0,0,246,98,0,0,0,0,0,0,0,0,0,407,1,0,0,0,16,0,0,0,0,11,159,290,0,0,267,0,0,0,0,0,850,0,0,1074,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,80,1,1,1,0,60,0,0,0,0,1,81,197,0,53,0,0,0,0,0,0,323,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,27,0,0,0,0,0,0,0,0,0,0,0,0,0,2,770,172,5 +0,0,0,19,0,47,120,0,49,12,6,0,1,10,22,0,129,0,7,6,0,0,0,7,0,13,9,0,10,0,1,0,0,0,9,9643,47,78,11,0,148,0,0,0,1,0,0,3,0,0,0,0,4,1008,0,0,0,0,0,1,0,0,0,0,0,9,0,0,231863,47,653,0,7,0,0,0,0,0,242,0,0,0,0,0,9,23,38723,0,0,9,0,0,0,0,0,206,30,5,1,0,2,0,461,0,4,1,3,5999,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,12,12,12,0,0,0,34677,0,65,0,0,0,6,28,513,1251,34670,0,0,0,0,1,0,3,0,0,0,0,0,0,596,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,170,31,573,30,0,0,673,0,461,0,0,0,504,84,0,0,0,0,0,0,0,0,0,344,1,0,0,0,13,0,0,0,0,4,239,139,0,0,0,0,0,0,0,0,2722,1,0,57,120,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,16,0,0,0,0,1,56,150,0,19,14,0,0,0,0,0,87,3,0,0,0,0,0,0,0,0,0,0,0,1,0,2,16,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2233,86,5 +2,0,0,19,0,80,28,0,192,54,36,0,1,3,103,0,80,0,31,7,0,0,0,3,6,16,0,0,27,0,1,0,0,0,38,0,80,328,46,0,464,0,0,0,1,0,0,9,0,0,0,0,18,349,0,0,0,0,0,1,0,0,0,0,0,76,0,0,58665,80,577,0,35,0,0,0,0,0,59,0,0,0,0,1,4,18,8530,0,0,38,0,0,2,98,0,937,70,17,0,0,2,0,850,0,56,0,4,4911,0,0,0,0,3,2,10,0,7,0,0,1,0,0,0,19,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,49,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,6575,0,220,0,0,0,36,84,156,1502,6606,0,0,0,0,1,0,5,0,0,0,0,0,0,8831,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,13,88,587,23,0,0,531,0,1328,0,0,0,366,167,0,0,0,0,0,0,0,0,0,474,1,0,0,0,16,0,0,0,0,15,176,417,0,0,182,0,0,0,0,4,3568,0,0,13866,0,0,1,0,1,0,0,0,21,0,0,0,6,0,0,0,0,0,56,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,100,1,1,1,0,79,0,0,0,0,1,118,365,0,44,0,0,0,0,0,0,459,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,0,0,0,0,0,0,0,0,0,0,0,0,0,9,4830,405,5 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,18,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,18,0,0,0,0,3,21,4,22,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,41,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,4,5 +0,0,0,5,0,12,14,0,29,6,11,0,0,0,10,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,62,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,1,0,0,0,0,0,17,0,0,195,12,72,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,2,0,0,2,26,0,221,35,0,0,0,2,0,138,0,7,0,0,187,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,16,0,19,0,0,0,0,3,28,139,29,0,0,0,0,1,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,63,5,0,0,90,0,187,0,0,0,54,5,0,0,0,0,0,0,0,0,0,81,0,0,0,0,2,0,0,0,0,1,94,82,0,0,80,0,0,0,0,1,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,14,90,0,1,0,0,0,0,0,0,75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,39,5 +0,0,0,2,0,14,2,0,19,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,2,0,14,6,0,0,7,0,2,0,1,0,0,3,0,0,0,0,1,86,0,0,0,0,0,1,0,0,0,0,0,1,0,0,9129,14,61,0,3,0,0,0,0,0,15,0,0,0,0,0,1,7,1760,0,0,2,0,0,0,0,0,16,0,4,1,0,2,0,19,0,0,0,0,1030,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,89,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1118,0,42,0,0,0,2,5,30,10,1152,0,0,0,0,1,0,0,0,0,0,0,0,0,3367,0,0,0,0,0,0,0,0,0,0,0,0,3,0,95,0,0,0,0,0,0,8,3,100,2,0,0,125,0,436,0,0,0,51,6,0,0,0,0,0,0,181,0,0,46,1,0,0,0,2,0,0,0,0,2,98,31,0,0,0,0,0,0,0,0,563,0,0,2917,0,0,1,1,1,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,188,0,0,0,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,3,0,0,0,0,1,16,102,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,91,0,0,0,0,0,0,0,3,986,65,5 +0,0,0,16,0,79,77,0,222,56,68,0,1,9,82,0,854,0,7,8,0,0,0,8,4,16,27,0,34,0,2,0,0,0,28,7976,79,169,30,0,503,0,0,0,1,0,0,4,0,0,0,0,10,617,0,0,0,0,0,1,0,0,2,2,0,64,0,0,36794,79,1437,0,33,0,0,0,0,0,66,0,0,0,0,0,11,141,5072,0,0,28,0,0,4,111,0,1320,210,7,0,0,2,0,1739,0,47,130,5,4652,0,0,0,0,13,0,7,0,0,0,0,1,0,0,0,18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,12,12,12,0,0,0,2680,0,190,0,0,0,28,105,880,2309,2645,0,0,0,0,1,0,4,0,0,0,0,0,0,5058,0,0,0,0,0,0,0,0,0,0,0,0,4,1,6,0,0,0,0,1,0,94,95,591,26,0,0,611,0,1107,0,0,0,397,191,0,0,0,0,0,0,4,0,0,1320,1,0,0,0,20,0,0,0,0,9,250,256,0,0,592,0,0,0,0,2,4202,1,0,4620,26,0,1,1,0,0,0,0,8,0,0,0,6,0,0,0,0,0,51,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,26,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,111,1,1,1,0,126,0,0,0,0,1,107,249,0,67,12,0,0,0,0,0,421,9,0,0,0,0,0,0,0,0,0,0,0,2,0,1,64,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2687,229,5 +1,0,0,23,3,74,221,3,351,73,93,0,1,3,107,1,164,0,9,11,0,2,2,4,6,10,33,0,24,0,2,0,0,3,40,0,77,305,50,0,729,0,0,0,1,0,0,4,1,0,0,0,13,434,0,0,0,0,0,1,0,0,11,6,0,106,0,0,5997,74,1158,0,26,0,0,0,0,0,19,6,0,0,0,0,4,9,338,0,3,40,3,0,8,265,0,2248,385,10,0,0,4,3,1652,0,85,1,5,3644,0,0,0,0,24,1,7,0,0,0,0,1,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,18,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,66,0,0,0,0,0,0,432,0,213,0,0,0,26,130,140,2739,424,0,0,0,0,1,0,0,0,0,0,0,0,0,2115,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,133,123,705,31,0,0,992,0,2996,0,1,0,686,149,0,0,0,0,0,0,0,0,0,950,1,0,4,0,25,0,0,0,0,11,229,722,0,0,1093,0,1,0,0,16,1003,0,0,102,0,0,1,0,1,0,0,0,17,0,1,0,18,0,0,0,0,0,75,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,2,14,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,91,1,1,1,0,124,0,0,0,0,25,117,539,0,69,0,0,0,0,1,0,729,7,0,0,0,0,0,0,0,0,0,0,0,3,0,1,83,0,0,0,0,0,0,0,0,0,0,0,4,0,5,922,299,5 +1,0,0,13,0,72,47,0,155,37,40,0,1,5,55,1,202,0,7,7,0,0,0,6,1,12,20,0,19,0,5,2,0,0,24,0,72,98,18,0,351,0,0,0,1,0,0,2,0,0,0,0,12,236,0,0,0,0,0,1,0,0,3,0,0,50,0,0,2284,72,576,0,24,0,0,0,0,0,29,0,0,0,0,0,8,16,222,0,0,24,0,0,4,93,0,886,165,2,0,0,2,0,754,0,35,0,4,2562,0,0,0,0,17,0,2,0,0,0,0,1,0,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,10,10,10,0,0,0,202,0,170,0,0,0,22,65,279,1051,211,0,0,0,0,1,0,3,0,0,0,0,0,0,945,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,39,63,352,14,0,0,341,0,874,0,0,0,170,76,0,0,0,0,0,0,0,0,0,513,1,0,0,0,14,0,0,0,0,11,167,174,0,0,346,0,1,0,0,3,747,0,0,37,3,0,1,4,0,0,0,0,3,0,0,0,5,0,0,0,0,0,38,0,0,2,0,0,0,0,0,0,0,0,38,38,0,0,11,0,0,0,0,0,3,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,85,1,1,1,0,54,0,0,0,0,21,96,81,0,49,9,0,0,0,0,0,288,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,43,0,0,0,0,0,0,0,0,0,0,0,0,0,1,436,136,5 +23,0,0,28,23,78,111,44,463,15,68,0,0,4,45,1,323,0,9,28,0,22,44,5,2,9,48,0,934,0,5,9,0,23,35,0,122,113,1839,0,464,0,0,0,1,0,0,1,0,0,0,0,12,543,0,0,0,0,0,1,0,0,0,13,0,37,0,0,6668,78,3851,0,962,0,0,0,0,0,12,66,0,0,0,0,5,7,84,0,44,35,23,0,7,144,0,2380,175,2,0,0,4,23,2128,0,20,0,0,2574,0,0,0,0,12,0,0,0,0,0,0,1,0,0,1,19,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,3,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,22,87,22,22,22,0,0,22,193,22,152,0,0,0,18,87,677,7339,260,0,0,0,0,1,0,0,0,0,0,1,1,0,1447,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,186,60,1459,55,0,0,1464,0,2256,0,1,0,477,12325,0,9,3,0,0,0,0,0,0,1024,1,0,0,0,101,0,0,0,0,13,195,288,0,0,380,0,0,0,0,0,2224,0,0,54,0,0,1,53,0,0,0,0,2,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1,0,0,0,0,0,25,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,64,1,1,1,0,1023,0,0,0,0,819,158,161,0,1005,0,0,0,0,0,0,589,28,0,0,0,0,0,0,0,0,0,0,0,44,0,2,27,54,0,0,0,0,0,0,0,0,0,0,36,0,2,1585,527,5 +0,0,0,5,0,15,24,0,79,5,23,0,0,0,10,0,34,0,7,2,0,0,0,1,0,1,9,0,4,0,1,2,0,0,3,0,15,6,3,0,106,0,0,0,1,0,0,3,0,0,0,0,3,177,0,1,0,0,0,1,0,0,0,0,0,18,0,0,1942,15,194,0,7,0,0,0,0,0,14,0,0,0,0,0,1,6,382,0,0,3,0,0,3,56,0,475,90,4,0,0,2,0,331,0,7,0,0,402,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,260,0,68,0,0,0,6,20,36,389,279,0,0,0,0,1,0,0,0,0,0,0,0,0,784,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,10,12,132,5,0,0,201,0,292,0,0,0,127,16,0,0,0,0,0,0,2,0,0,177,1,0,0,0,3,0,0,0,0,2,105,174,0,0,221,0,0,0,0,0,345,0,0,347,0,0,1,0,0,0,0,0,10,0,0,0,4,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,16,0,0,0,0,1,18,240,0,17,0,0,0,0,0,0,152,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,4,306,41,5 +4,0,0,34,0,84,9,0,96,47,19,0,1,4,73,0,90,0,32,9,0,0,0,6,0,13,30,0,16,0,6,0,0,0,25,0,84,115,18,0,319,0,0,0,1,0,0,0,0,0,0,0,11,209,1,0,0,0,0,1,0,0,0,21,0,58,0,0,1786,84,335,0,21,0,0,0,0,0,2,0,0,0,0,0,9,13,73,0,0,25,0,0,2,25,0,356,35,0,0,0,5,0,543,0,52,5,3,2182,0,0,1,0,33,3,10,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,119,10,10,10,0,0,0,119,0,86,0,0,0,20,67,286,411,135,0,0,0,0,1,0,4,0,0,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,39,97,386,35,0,0,344,0,2433,3,7,0,132,101,0,0,0,0,0,0,0,0,0,324,0,0,0,0,15,0,0,0,0,10,174,85,0,0,63,0,17,0,6,1,438,0,0,11,2,0,1,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,49,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,16,1,0,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,111,1,1,1,0,78,0,0,0,0,8,109,105,0,57,8,0,0,0,0,0,189,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,391,127,5 +4,0,0,13,1,50,41,1,121,3,19,0,0,22,11,0,1257,0,10,2,0,0,0,8,0,12,3,0,7,0,1,0,0,1,8,16097,51,54,0,0,110,0,0,0,1,0,0,4,0,0,0,0,3,481,0,0,0,0,0,1,0,0,0,8,0,5,0,0,79093,50,1457,0,5,0,0,0,0,0,47,0,0,0,0,0,9,53,17267,0,1,8,1,0,1,0,0,631,80,7,0,0,4,1,1394,0,2,85,0,4616,0,0,0,0,12,4,8,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,12,12,12,0,0,0,12257,0,92,0,0,0,4,9,531,1408,12257,0,0,0,0,1,0,10,0,0,0,0,0,0,619,4,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,2,0,462,35,467,16,0,0,544,0,755,0,1,0,253,21,0,0,0,0,0,0,0,0,0,1481,1,0,0,0,10,0,0,0,0,2,172,131,0,0,102,0,0,0,0,0,4799,1,0,171,15,0,1,1,1,0,0,0,9,0,0,0,1,0,0,0,0,0,6,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,70,1,1,1,0,19,0,0,0,0,9,59,204,0,11,12,0,0,0,0,0,227,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,20,0,0,0,0,0,0,0,0,0,0,0,1,0,5,2169,120,5 +116,0,0,11,0,58,52,0,133,39,39,2,1,5,54,0,63,0,7,8,0,0,0,5,1,10,15,0,11,0,3,0,0,0,25,0,58,65,14,0,242,0,0,0,1,0,0,3,0,0,0,0,7,257,0,0,0,0,0,1,0,0,2,23,0,38,0,0,2064,58,380,0,12,0,0,0,0,0,17,0,0,0,0,0,9,20,217,0,0,25,0,0,2,81,0,763,155,3,0,0,2,0,603,0,30,0,5,1457,0,0,0,0,5,46,4,0,0,0,23,1,0,0,0,36,1,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,1,0,78,10,10,10,0,0,0,348,0,132,0,0,0,12,44,238,754,253,0,0,0,0,1,0,3,0,0,0,0,0,0,1300,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,32,67,350,14,0,0,367,0,825,0,0,0,242,218,0,0,0,0,0,0,0,0,0,356,1,0,0,0,14,0,0,0,0,6,158,234,0,0,317,0,0,0,0,3,286,0,0,48,3,0,1,1,0,0,0,0,6,0,0,0,5,0,0,0,0,0,41,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,26,0,0,0,0,1,83,265,0,30,9,0,0,0,0,0,251,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,43,0,0,0,0,0,0,0,0,0,0,0,0,0,2,472,105,5 +2,0,0,15,0,100,96,0,306,62,114,0,1,5,76,0,104,0,7,16,0,0,0,14,11,23,23,0,41,0,1,0,0,0,54,0,100,161,72,0,605,0,0,0,1,0,0,3,0,0,0,0,23,388,0,0,0,0,0,1,0,0,2,0,0,61,0,0,5820,100,780,0,40,0,0,0,0,0,15,0,0,0,0,0,18,27,431,0,0,54,0,0,6,232,0,2125,358,5,0,0,29,0,1399,0,75,36,4,4014,0,0,0,0,10,0,6,0,0,0,0,1,0,0,0,35,7,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,68,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,90,10,10,10,0,0,0,508,0,208,0,0,0,44,165,335,1425,501,0,0,0,0,1,0,3,0,0,0,0,0,0,1580,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,37,80,594,16,0,0,644,0,1806,9,10,0,470,233,0,9,0,0,0,0,0,0,0,709,1,0,0,0,41,0,0,0,0,20,204,531,0,0,881,0,0,0,0,2,940,0,0,414,3,0,1,42,0,0,0,0,3,0,0,0,4,0,0,0,0,0,45,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,40,1,0,0,0,0,3,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,139,1,1,1,0,148,0,0,0,0,1,154,393,0,79,9,0,0,0,0,0,624,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,95,11,0,0,0,0,0,0,0,0,0,0,0,0,1,813,331,5 +1,0,0,14,0,36,65,0,164,50,36,0,1,4,68,0,108,0,49,6,0,0,0,2,6,10,33,0,21,0,1,0,0,0,15,0,36,180,39,0,397,0,0,0,1,0,0,6,0,0,0,0,11,323,0,0,0,0,0,1,0,0,2,3,0,39,0,0,29598,36,597,0,22,0,0,0,0,1,31,0,0,0,0,0,2,10,2124,0,0,15,0,0,2,93,0,854,145,11,0,0,2,0,838,0,31,0,6,1958,0,0,0,0,17,0,0,0,0,0,0,1,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,2039,0,143,0,0,0,22,121,88,799,2054,0,0,0,0,1,0,0,0,0,0,0,0,0,4307,0,0,0,0,0,0,0,0,0,0,0,0,6,0,4,0,0,0,0,0,0,13,68,812,27,0,0,777,0,889,0,0,0,625,61,0,0,0,0,0,0,6,0,0,495,1,0,0,0,14,0,0,0,0,12,583,242,0,0,346,0,0,0,0,2,2126,0,0,9542,0,0,1,0,0,0,0,0,13,0,1,0,6,0,0,0,0,0,43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,95,0,0,0,0,1,51,436,0,65,0,0,0,0,0,0,340,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,52,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2564,363,5 +2,0,0,10,1,67,79,1,176,12,48,0,0,7,33,0,1151,0,17,5,0,0,0,8,1,13,12,0,20,0,5,0,0,1,21,12475,68,108,9,0,279,0,0,0,1,0,0,16,0,0,0,0,8,1091,0,0,0,0,0,1,0,0,0,2,0,24,0,0,39787,67,1624,0,22,0,0,0,0,1,91,0,0,0,0,0,10,105,8348,0,1,21,1,0,4,98,0,1161,150,26,2,0,4,1,1739,0,9,58,0,3033,0,0,0,0,26,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,12,12,12,0,0,0,4796,0,217,0,0,0,19,50,652,2399,4750,0,0,0,0,1,0,4,0,0,0,0,0,0,2737,0,0,0,0,0,0,0,0,0,0,0,0,16,1,22,0,0,0,0,1,0,235,44,1249,28,0,0,1606,0,1924,1,1,0,777,40,0,0,0,0,0,0,13,0,0,1511,1,0,0,0,14,0,0,0,0,7,802,586,0,0,406,0,0,0,0,0,4033,1,0,2096,16,0,1,1,0,0,0,0,31,0,0,0,7,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,16,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,1,81,1,1,1,0,65,0,0,0,0,9,89,2043,0,38,12,0,0,0,0,0,385,4,0,0,0,0,0,0,0,0,0,1,0,3,0,1,20,0,0,0,0,0,0,0,0,0,0,0,1,0,14,2964,1018,5 +20,0,0,14,0,40,14,0,90,18,29,1,0,0,37,0,67,0,35,5,0,0,0,2,0,4,21,0,10,0,2,3,0,0,12,0,40,45,31,0,221,0,0,0,1,0,0,2,0,0,0,0,7,220,0,0,0,0,0,1,0,0,0,2,0,21,0,0,9479,40,301,0,15,0,0,0,0,0,10,0,0,0,0,0,2,6,3340,0,0,12,0,0,1,62,0,552,125,4,1,0,2,0,494,0,16,0,0,1672,0,0,0,0,6,12,3,0,0,0,0,1,0,0,0,17,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,16,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,1,0,3,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,2351,0,92,0,0,0,14,164,87,1307,2371,0,0,0,0,1,0,0,0,1,0,0,0,0,1447,0,0,0,0,0,0,0,0,0,14,0,0,2,0,0,0,0,0,0,0,3,8,34,415,29,0,0,335,0,788,0,0,0,199,61,0,0,0,0,0,0,0,0,0,273,1,0,0,0,7,0,0,0,0,7,180,199,0,0,311,0,0,0,1,1,615,0,0,1074,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,11,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,131,0,0,0,0,1,52,183,0,40,0,0,0,0,0,0,214,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,800,233,5 +1,0,0,22,1,83,116,1,236,59,57,1,1,9,90,0,1314,0,9,7,0,0,0,10,3,17,24,0,21,0,1,0,0,1,37,898,84,326,28,0,472,0,0,0,1,0,0,10,0,0,0,0,9,541,0,0,0,0,0,1,0,0,2,3,0,78,0,0,33881,83,1898,0,19,0,0,0,0,0,54,0,0,0,0,0,11,39,7595,0,1,37,1,0,6,131,0,1361,235,16,0,0,4,1,2202,0,64,3,6,3814,0,0,0,0,22,0,10,0,0,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,8,0,0,0,0,0,0,0,0,0,14,0,0,0,0,32,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,12,12,12,0,0,0,5615,0,215,0,0,0,17,79,446,3031,5404,0,0,0,0,1,0,3,0,0,0,0,0,0,3581,0,0,0,0,0,0,0,0,0,0,0,0,10,1,6,0,0,0,0,1,0,207,101,660,38,0,0,998,0,1781,0,1,0,681,47,0,0,0,0,0,0,14,0,0,1833,1,0,0,0,20,0,0,0,0,8,257,541,0,0,498,0,0,0,0,8,4271,1,0,2150,7,0,1,1,0,0,0,0,27,0,1,0,8,0,0,0,0,0,61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,7,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,1,103,1,1,1,0,63,0,0,0,0,9,121,936,0,51,12,0,0,0,0,0,511,6,0,0,0,0,0,0,0,0,0,0,0,3,0,1,69,0,0,0,0,0,0,0,0,0,0,0,1,0,8,2132,322,5 +0,0,0,8,0,42,7,0,44,2,14,0,0,2,9,0,70,0,7,4,0,0,0,6,0,10,6,0,4,0,1,2,0,0,9,4,42,6,0,0,77,0,0,0,1,0,0,5,0,0,0,0,3,1055,0,0,0,0,0,1,0,0,0,0,0,11,0,0,21962,42,169,0,5,0,0,0,0,0,22,0,0,0,0,0,9,22,949,0,0,9,0,0,2,20,0,275,45,8,0,0,2,0,212,0,5,0,0,1493,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,12,12,12,0,0,0,757,0,87,0,0,0,4,19,246,181,739,0,0,0,0,1,0,3,0,0,0,0,0,0,3808,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,32,15,267,10,0,0,327,0,392,0,0,0,181,57,0,0,0,0,0,0,0,0,0,153,1,0,0,0,10,0,0,0,0,3,138,144,0,0,93,0,0,0,0,1,887,1,0,3244,4,0,1,1,1,0,0,0,4,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,23,0,0,0,0,1,51,295,0,12,11,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,918,66,5 +2,0,0,8,1,44,38,1,71,3,12,0,0,9,8,0,922,0,9,2,0,0,0,7,0,10,0,0,8,0,1,0,0,1,6,12036,45,54,0,0,66,0,0,0,1,0,0,1,0,0,0,0,1,633,0,0,0,0,0,1,0,0,0,4,0,3,0,0,20329,44,1036,0,6,0,0,0,0,0,25,0,0,0,0,0,8,47,3204,0,1,6,1,0,1,0,0,326,30,2,0,0,4,1,953,0,1,50,0,2741,0,0,0,0,6,2,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,944,0,48,0,0,0,4,7,488,801,930,0,0,0,0,1,0,6,0,0,0,0,0,0,332,2,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,219,31,431,9,0,0,481,0,537,0,1,0,208,31,0,0,0,0,0,0,0,0,0,1069,1,0,0,0,9,0,0,0,0,2,172,51,0,0,54,0,0,0,0,0,3322,1,0,132,12,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,53,1,1,1,0,17,0,0,0,0,9,51,207,0,7,12,0,0,0,0,0,105,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7427,51,5 +17,0,0,20,15,117,167,13,982,293,298,2,0,0,332,3,223,0,9,45,0,13,12,9,0,7,24,0,13,0,8,2,0,14,66,0,130,242,25,2,2143,0,0,0,1,0,0,5,1,0,0,0,15,402,0,0,0,0,0,1,1,0,0,0,0,421,0,0,4610,117,3620,0,24,0,0,0,1,0,18,39,0,0,1,0,22,32,303,0,13,66,14,0,9,822,0,6702,920,9,1,0,2,15,4719,0,322,2,0,5904,0,0,0,0,64,0,1,0,0,0,0,1,0,0,0,28,0,0,0,0,0,0,3,0,0,0,0,2,0,0,0,0,0,0,0,10,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,453,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,56,0,0,0,0,0,0,337,0,234,0,0,0,29,92,283,4533,1106,0,0,0,0,1,0,0,0,0,0,0,0,0,2706,0,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,3,0,10,338,1144,45,0,0,1193,0,1096,0,0,0,695,149,0,0,0,0,0,0,0,0,0,2016,1,0,2,0,79,0,0,0,0,10,285,2098,0,0,2805,0,6,0,0,0,9733,0,0,122,0,0,1,1,0,0,0,0,11,0,0,0,4,0,0,0,0,0,298,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,20,1,0,0,0,0,1,16,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,143,1,1,1,1,125,0,0,0,7,105,196,339,0,54,0,0,0,0,0,0,2411,110,0,0,0,0,0,0,0,0,0,0,0,13,0,1,311,0,0,0,0,0,0,0,1,0,0,0,23,0,4,845,219,5 +0,0,0,5,0,14,75,0,159,15,56,0,0,0,21,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,14,6,0,0,249,0,0,0,1,0,0,1,0,0,0,0,0,182,0,0,0,0,0,1,0,0,2,0,0,36,0,0,1277,14,329,0,1,0,0,0,0,0,7,0,0,0,0,0,1,3,68,0,0,5,0,0,5,142,0,1122,230,2,0,0,2,0,642,0,19,0,0,501,0,0,0,0,4,0,2,0,0,0,0,1,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,552,0,49,0,0,0,0,3,29,1355,112,0,0,0,0,1,0,1,0,0,0,0,0,0,616,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,22,139,5,0,0,255,0,587,0,0,0,190,27,0,0,0,0,0,0,0,0,0,333,1,0,0,0,2,0,0,0,0,1,96,349,0,0,487,0,0,0,0,5,46,0,0,39,0,0,1,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,19,132,0,1,0,0,1,0,0,0,304,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,1,130,102,5 +224,0,0,17,1,76,149,1,167,6,61,0,0,9,28,0,2523,0,9,8,0,0,0,8,0,15,12,0,25,0,1,0,0,1,19,38704,77,54,14,0,252,0,0,0,1,0,0,2,0,0,0,0,5,1078,0,0,0,0,0,1,0,0,0,7,0,18,0,0,290568,76,3174,0,22,0,0,0,0,0,200,0,0,0,0,0,11,114,62982,0,1,19,1,0,3,42,0,824,90,4,0,0,4,1,3060,0,8,99,0,17805,0,0,0,0,10,92,4,0,0,0,44,1,0,0,0,16,1,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,44,0,0,0,0,0,0,4,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,3,4,0,0,0,0,2,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,1,0,96,12,12,12,0,0,0,48225,0,105,0,0,0,16,87,1069,4151,48191,0,0,0,0,1,0,10,0,0,8,0,0,0,2553,4,0,0,0,0,0,0,0,0,0,0,0,19,5,0,0,0,0,0,1,0,222,44,735,43,0,0,936,0,812,0,1,0,581,173,0,0,0,0,0,0,0,0,0,2946,1,0,0,0,16,0,0,0,0,6,280,196,0,0,286,0,0,0,0,0,14910,1,0,715,107,0,1,1,0,0,0,0,3,0,0,0,4,0,0,0,0,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,107,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,124,1,1,1,0,77,0,0,0,0,9,96,267,0,39,14,0,0,0,0,0,395,2,0,0,0,0,0,0,0,0,0,0,0,4,0,2,14,0,0,0,0,0,0,0,0,0,0,0,1,0,2,7339,220,5 +0,0,0,9,0,22,8,0,48,14,18,0,0,0,20,0,27,0,6,3,0,0,0,2,0,1,6,0,3,0,2,0,0,0,11,0,22,6,3,0,123,0,0,0,1,0,0,2,0,0,0,0,2,96,0,0,0,0,0,1,0,0,0,0,0,23,0,0,684,22,131,0,5,0,0,0,0,0,9,0,0,0,0,0,3,6,43,0,0,11,0,0,1,36,0,323,65,4,0,0,2,0,236,0,18,0,0,579,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,73,0,65,0,0,0,4,21,42,203,66,0,0,0,0,1,0,0,0,0,0,0,0,0,257,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,21,142,12,0,0,176,0,439,0,0,0,111,32,0,0,0,0,0,0,0,0,0,127,1,0,0,0,5,0,0,0,0,3,106,125,0,0,146,0,0,0,0,0,74,0,0,27,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,22,0,0,0,0,1,33,211,0,12,0,0,0,0,0,0,117,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,38,5 +2,0,0,35,0,82,52,0,222,26,47,0,0,8,49,0,123,0,7,16,0,0,0,5,0,12,48,0,7,0,1,12,0,0,21,0,82,6,17,0,508,0,0,0,1,0,0,3,0,0,0,0,17,307,0,0,0,0,0,1,0,0,0,42,0,48,0,0,16780,82,570,0,19,0,0,0,0,0,20,0,0,0,0,0,17,35,3146,0,0,21,0,0,4,132,0,1288,90,3,0,0,2,0,1165,0,32,0,0,2709,0,0,0,0,22,2,3,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,61,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,203,10,10,10,0,0,0,3059,0,126,0,0,0,32,104,282,1219,3121,0,0,0,0,1,0,12,0,0,0,0,0,0,2086,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,128,64,391,35,0,0,398,0,1142,0,0,0,182,106,0,0,0,0,0,0,0,0,0,508,1,0,0,0,21,0,0,0,0,8,166,1039,0,0,129,0,1,0,0,0,7011,0,0,1386,3,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,95,1,1,1,0,74,0,0,0,0,1,103,155,0,71,9,0,1,0,0,0,487,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,36,0,0,0,0,0,0,0,8,0,0,0,0,0,2,1824,185,5 +0,0,0,4,0,14,23,0,61,4,20,0,0,0,8,0,23,0,6,2,0,0,0,1,0,0,3,0,2,0,1,0,0,0,5,0,14,6,3,0,94,0,0,0,1,0,0,2,0,0,0,0,1,97,0,0,0,0,0,1,0,0,1,0,0,14,0,0,594,14,144,0,3,0,0,0,0,0,9,0,0,0,0,0,1,5,76,0,0,5,0,0,2,51,0,417,80,2,0,0,2,0,254,0,6,0,0,244,0,0,0,0,4,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,88,0,49,0,0,0,2,10,29,251,106,0,0,0,0,1,0,0,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,9,108,4,0,0,144,0,346,0,0,0,88,8,0,0,0,0,0,0,0,0,0,141,1,0,0,0,3,0,0,0,0,2,104,124,0,0,178,0,0,0,0,1,78,0,0,38,0,0,1,0,1,0,0,0,4,0,1,0,7,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,19,122,0,6,0,0,0,0,0,0,139,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,112,33,5 +1,0,0,12,4,74,51,16,214,25,52,0,1,5,47,0,167,0,7,10,0,6,4,6,16,21,51,0,36,0,3,0,0,4,30,0,78,88,360,0,338,0,0,0,1,0,0,2,0,0,0,0,19,478,0,0,0,0,0,1,0,0,2,5,0,53,0,0,6661,74,1053,0,37,0,0,0,0,0,14,12,0,0,0,0,9,17,520,0,16,30,4,0,6,118,0,1190,205,3,0,0,2,4,1021,0,32,0,4,2356,0,0,1,0,6,0,1,0,0,0,0,1,0,0,0,18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,35,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,4,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,10,10,10,0,0,0,631,0,132,0,0,0,36,153,277,945,2002,0,0,0,0,1,0,3,0,0,0,0,0,0,2530,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,40,53,519,17,0,0,509,0,997,0,0,0,260,97,0,0,0,0,0,0,0,0,0,544,1,0,0,0,42,0,0,0,0,6,175,266,0,0,432,0,1,0,0,3,1945,0,0,1465,3,0,1,1,1,0,0,0,3,0,0,0,5,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,84,1,1,1,0,97,0,0,0,0,35,108,197,0,102,9,0,0,0,0,0,350,5,0,0,0,0,0,0,0,0,0,0,0,5,0,1,35,0,0,0,0,0,0,0,0,0,0,0,8,0,2,1058,218,5 +0,0,0,15,0,40,16,0,782,1,16,0,0,0,26,1,54,0,7,1,0,0,0,3,10,0,15,0,19,0,6,0,0,0,18,0,40,9,16,0,189,0,0,0,1,0,0,1,0,0,0,0,15,160,0,1,0,0,0,1,0,0,0,6,0,12,0,0,3394,40,945,0,25,0,0,0,0,0,7,0,0,0,0,0,3,5,876,0,0,18,0,0,2,49,0,536,30,2,0,0,4,0,409,0,3,0,0,1676,0,0,0,0,24,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0,0,0,519,0,72,0,0,0,30,66,93,520,508,0,0,0,0,1,0,0,0,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,31,277,18,0,0,260,0,2113,0,0,0,164,64,0,0,0,0,0,0,0,0,0,902,1,0,0,0,14,0,0,0,0,14,130,183,0,0,90,0,0,0,10,0,220,0,0,128,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,35,0,0,0,0,1,58,244,0,40,0,0,1,0,0,0,9871,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,302,222,5 +0,0,0,18,1,51,80,1,185,14,39,0,1,3,39,0,123,0,9,10,0,0,0,1,1,6,18,0,20,0,5,1,0,1,26,0,52,361,40,0,289,0,0,0,1,0,0,8,0,0,0,0,16,396,0,0,0,0,0,1,0,0,0,0,0,30,0,0,4854,51,481,0,27,0,0,0,0,0,22,0,0,0,0,1,1,17,227,0,1,26,1,0,3,103,0,963,160,8,2,0,4,1,721,0,20,0,5,2586,0,0,0,0,6,0,1,0,0,0,0,1,0,0,0,19,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,39,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,290,0,134,0,0,0,32,88,100,905,280,0,0,0,0,1,0,0,0,0,0,0,0,0,1017,0,0,0,0,0,0,0,0,0,22,0,0,8,0,0,0,0,0,0,0,0,146,46,614,23,0,0,578,0,3773,0,1,0,333,127,0,0,0,0,0,0,0,0,0,479,1,0,0,0,12,0,0,0,0,15,211,282,0,0,451,0,2,0,0,0,965,0,0,113,0,0,1,0,0,0,0,0,13,0,1,0,11,0,0,0,0,0,16,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,9,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,62,1,1,1,0,108,0,0,0,2,9,78,305,0,50,0,0,0,0,0,0,350,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,0,0,0,0,0,0,0,0,0,0,0,1,0,7,692,195,5 +3,0,0,15,1,86,171,1,284,35,76,0,0,20,50,0,1852,0,9,6,0,0,0,11,0,14,18,0,34,0,4,0,0,1,39,15877,87,54,11,0,419,0,0,0,1,0,0,14,0,0,0,0,7,889,0,0,0,0,0,1,0,0,2,5,0,47,0,0,89987,86,2586,0,34,0,0,0,0,0,107,0,0,0,0,0,13,167,19491,0,1,39,1,0,4,153,0,1908,270,21,0,0,4,1,2817,0,38,139,0,9707,0,0,0,0,13,3,2,0,0,0,0,1,2,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,29,0,1,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,1,0,0,0,119,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,12,12,12,0,0,0,13137,0,214,0,0,0,26,90,954,4327,12983,0,0,0,0,1,0,7,0,0,0,0,0,0,3170,3,0,0,0,0,0,0,0,0,0,0,0,131,4,0,0,0,0,0,1,0,432,68,896,17,0,0,967,0,985,0,1,0,658,152,0,0,0,0,0,0,0,0,0,2462,1,0,0,0,17,0,0,0,0,7,266,499,0,0,655,0,4,0,0,3,8536,1,0,798,32,0,1,1,0,0,0,0,27,0,1,0,12,0,0,0,0,0,40,0,1,0,9,2,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,32,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,124,1,1,1,0,113,0,0,0,0,9,126,633,0,56,14,0,0,0,0,0,587,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,56,0,0,0,0,0,0,0,0,0,0,0,1,0,8,3899,248,5 +0,0,0,11,0,33,37,0,103,13,30,0,0,2,27,0,45,0,7,5,0,0,0,1,0,3,12,0,8,0,1,0,0,0,15,0,33,130,13,0,221,0,0,0,1,0,0,1,0,0,0,0,4,127,0,0,0,0,0,1,0,0,1,0,0,31,0,0,1111,33,257,0,9,0,0,0,0,0,6,0,0,0,0,0,1,3,80,0,0,15,0,0,4,80,0,672,120,2,0,0,2,0,499,0,16,0,2,877,0,0,0,0,8,0,2,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,102,0,63,0,0,0,8,33,67,461,128,0,0,0,0,1,0,0,0,0,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,24,268,12,0,0,224,0,599,0,0,0,140,33,0,0,0,0,0,0,0,0,0,251,1,0,0,0,6,0,0,0,0,4,134,176,0,0,269,0,0,0,0,1,309,0,0,56,0,0,1,0,0,0,0,0,2,0,1,0,6,0,0,0,0,0,15,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,20,0,0,0,0,1,48,97,0,24,0,0,0,0,0,0,234,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,2,195,51,5 +0,0,0,6,0,12,2,0,4,0,3,0,0,0,3,0,10,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,12,39,0,0,11,0,0,0,1,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,4,0,0,73,12,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,3,0,0,0,0,0,5,0,0,0,0,2,0,19,0,1,0,0,148,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,23,0,0,0,0,3,26,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,71,6,0,0,50,0,147,0,0,0,17,4,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,94,7,0,0,0,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,11,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,20,5 +0,0,0,12,2,47,115,5,244,31,89,0,0,0,47,1,114,0,9,9,0,1,0,8,8,2,12,0,16,0,1,0,0,2,27,0,49,159,142,0,477,0,0,0,1,0,0,2,0,0,0,0,12,427,0,0,0,0,0,1,1,0,2,10,0,57,0,0,1638,47,704,0,17,0,0,0,0,0,7,3,0,0,0,0,9,12,175,0,5,27,2,0,12,194,0,1853,360,2,0,0,4,2,1049,0,41,0,0,1767,0,0,0,0,8,0,2,0,0,0,0,1,0,0,0,42,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,33,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,354,0,150,0,0,0,24,66,106,1752,268,0,0,0,0,1,0,0,0,0,0,0,0,0,1079,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,136,60,466,14,0,0,481,0,2077,0,1,0,254,181,0,3,0,0,0,0,0,0,0,619,1,0,0,0,26,0,0,0,0,12,162,353,0,0,857,0,0,0,0,4,1009,0,0,17,0,0,1,4,0,0,0,0,2,0,6,0,4,0,0,0,0,0,32,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,54,1,1,1,0,26,0,0,0,0,17,76,93,0,31,0,0,0,0,0,0,525,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,51,4,0,0,0,0,0,0,0,0,0,0,3,0,2,1067,125,5 +0,0,0,22,0,27,27,0,188,25,57,0,1,1,142,0,44,0,7,4,0,0,0,1,0,2,9,0,8,0,3,0,0,0,13,0,27,74,8,0,398,0,0,0,1,0,0,2,0,0,0,0,5,148,0,0,0,0,0,1,0,0,0,0,0,45,0,0,22656,27,479,0,11,0,0,0,0,0,8,0,0,0,0,0,1,5,4222,0,0,13,0,0,5,142,0,1183,175,2,0,0,2,0,1027,0,20,0,2,913,0,0,0,0,10,0,2,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,3149,0,62,0,0,0,10,30,66,888,3166,0,0,0,0,1,0,0,0,0,0,0,0,0,3531,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,378,224,26,0,0,385,0,783,0,0,0,306,59,0,0,0,0,0,0,0,0,0,467,1,0,0,0,5,0,0,0,0,6,123,555,0,0,555,0,0,0,0,1,835,0,0,4230,0,0,1,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,20,0,0,0,0,1,40,319,0,22,0,0,0,0,0,0,366,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,33,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4059,234,5 +3,0,0,14,0,54,733,0,900,91,97,0,1,8,123,1,157,0,7,6,0,0,0,1,1,6,21,0,13,0,2,0,0,0,27,0,54,499,22,0,1894,0,0,0,1,0,0,2,0,0,0,0,8,362,0,0,0,0,0,1,0,0,3,0,0,114,0,0,10015,54,2034,0,16,0,0,0,0,0,6,0,0,0,0,0,1,4,153,0,0,27,0,0,6,833,0,6149,415,3,0,0,2,0,4408,0,92,0,10,6961,0,0,0,0,970,0,2,0,0,0,0,1,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,6,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,2,1,8,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,359,0,135,0,0,0,16,99,108,44086,225,0,0,0,0,1,0,1,0,0,0,0,0,0,4876,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,15,110,516,16,0,0,1055,0,974,0,0,0,944,233,0,0,0,0,0,0,0,0,0,2027,1,0,0,0,8,0,0,0,0,6,169,1721,0,0,1193,0,0,0,0,9,775,0,0,84,1,0,1,0,0,0,0,0,3,0,1,0,9,0,0,0,0,0,97,1,0,0,0,0,0,0,0,0,0,0,29,29,0,0,12,0,0,0,0,0,0,35,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,158,0,0,0,0,15,81,200,0,42,0,0,0,0,0,0,1791,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,729,367,5 +0,0,0,14,0,42,59,0,64,0,5,0,0,10,5,0,1556,0,6,1,0,0,0,10,0,11,0,0,6,0,1,0,0,0,4,1655,42,6,0,0,69,0,5,0,1,0,0,7,0,0,0,0,1,889,0,0,0,0,0,1,0,0,0,0,0,4,0,0,1280783,42,1886,0,3,0,0,0,0,0,134,0,0,0,0,0,10,36,410669,0,0,4,0,0,0,0,0,259,35,11,1,0,2,0,1717,0,0,6,0,3730,0,0,0,0,4,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,12,12,12,0,0,0,407515,0,73,0,0,0,1,4,409,601,407482,0,0,0,0,1,0,4,0,0,0,0,0,0,3086,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,129,26,256,33,0,0,411,0,432,0,0,0,265,15,0,0,0,0,0,0,0,0,0,1705,1,0,0,0,11,0,0,0,0,1,146,84,0,0,10,0,2,0,0,0,5347,1,0,2913,60,0,1,1,1,0,0,0,11,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,11,0,0,0,60,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,5,0,0,0,0,1,46,152,0,4,14,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2050,112,5 +4,0,0,15,0,50,229,0,254,57,74,0,1,2,77,0,124,0,7,6,0,0,0,5,3,6,24,0,16,0,1,0,0,0,19,0,50,244,29,0,595,0,0,0,1,0,0,5,0,0,0,0,8,298,0,0,0,0,0,1,0,0,5,1,0,59,0,0,17881,50,831,0,17,0,0,0,0,0,24,0,0,0,0,0,5,12,1535,0,0,19,0,0,5,196,0,1638,315,8,0,0,2,0,1339,0,44,0,5,2943,0,0,0,0,71,0,6,0,0,0,0,1,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,2,0,0,0,4,0,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,6,0,0,0,0,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,54,29,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1,0,92,0,0,0,0,0,0,1494,0,176,0,0,0,16,84,129,1890,1510,0,0,0,0,1,0,30,0,0,0,0,0,0,4591,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,8,78,454,30,0,0,893,0,1604,0,0,0,769,134,0,2,0,0,0,0,0,0,0,768,1,0,0,0,14,0,0,0,0,9,237,734,0,0,842,0,0,0,2,8,1482,0,0,3282,0,0,1,2,0,0,0,0,11,0,1,0,10,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,75,1,1,1,0,64,0,0,0,0,1,69,916,0,47,0,0,0,0,0,0,752,51,0,0,0,0,0,0,0,0,0,0,0,0,0,1,63,2,0,0,0,0,0,0,0,0,0,0,0,0,5,1833,195,5 +2,0,0,14,0,62,89,0,100,22,80,0,1,13,42,0,1531,0,7,6,0,0,0,8,3,14,18,0,50,0,3,0,0,0,14,22883,62,152,18,0,214,0,0,0,1,0,0,9,0,0,0,0,10,1678,0,0,0,0,0,1,0,0,0,0,0,11,0,0,49750,62,2116,0,50,0,0,0,0,0,167,0,0,0,0,0,9,368,8051,0,0,14,0,0,0,0,0,881,35,12,0,0,2,0,1932,0,9,329,6,5674,0,0,0,0,19,0,4,0,4,0,0,1,0,0,0,7,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,12,12,12,0,0,0,2253,0,127,0,0,0,44,99,1778,3297,2187,0,0,0,0,1,0,4,0,0,0,0,0,0,1817,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,1,148,53,736,28,0,0,729,0,822,0,0,0,493,55,0,0,0,0,0,0,0,0,0,1863,1,0,0,0,17,0,0,0,0,11,297,90,0,0,491,0,0,0,0,0,7172,1,0,1949,69,0,1,1,0,0,0,0,15,0,0,0,1,0,0,0,0,0,18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,69,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,75,1,1,1,0,164,0,0,0,2,1,76,319,0,73,12,0,0,0,0,0,220,3,0,0,0,0,0,0,0,0,0,0,0,3,0,2,28,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3578,202,5 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,56,0,0,0,0,0,1,0,0,0,0,0,1,0,0,570,8,40,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,164,0,0,0,0,0,0,0,0,7,0,4,0,0,2,0,15,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,18,0,0,0,0,3,22,5,51,0,0,0,0,1,0,0,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,66,2,0,0,89,0,98,0,0,0,27,1,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,90,20,0,0,0,0,0,0,0,0,38,0,0,366,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,112,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,6,5 +2,0,0,16,1,49,102,1,175,5,40,0,0,0,12,3,1377,0,9,9,0,0,0,4,0,1,15,0,5,0,2,0,0,1,9,0,50,108,11,0,2737,0,0,0,1,0,0,4,0,0,0,0,4,1111,1,0,0,0,0,1,0,0,0,6,0,14,0,0,11964,49,1689,0,6,0,0,0,0,0,21,0,0,0,0,0,9,15,468,0,1,9,1,0,5,106,0,961,100,6,0,0,4,1,3174,0,7,0,0,4693,0,0,0,0,8,2,4,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,2,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,4,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,0,0,0,3,0,0,507,0,133,0,0,0,6,35,126,1502,531,0,0,0,0,1,0,5,0,0,0,0,0,0,1845,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,141,31,670,25,0,0,559,0,19211,0,1,0,235,112,0,0,0,0,0,0,2,0,0,1718,1,0,0,0,13,0,0,0,0,4,176,298,0,0,493,0,0,0,0,0,2215,0,0,1021,0,0,1,0,0,0,0,0,9,0,2,0,2,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,50,1,1,1,0,11,0,0,0,0,38,61,440,0,23,0,0,0,0,0,0,4102,4,0,0,0,0,0,0,0,0,0,0,0,1,0,5,15,0,0,0,0,0,0,0,0,0,0,0,1,0,3,904,172,5 +0,0,0,17,0,17,2,0,57,3,12,0,0,0,6,0,17,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,7,0,17,6,0,0,209,0,0,0,1,0,0,5,0,0,0,0,0,194,0,0,0,0,0,1,0,0,0,0,0,9,0,0,1060,17,118,0,1,0,0,0,0,0,18,0,0,0,0,0,2,10,97,0,0,7,0,0,1,7,0,80,15,8,0,0,2,0,62,0,4,0,0,675,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,132,0,0,0,0,0,0,108,0,83,0,0,0,0,3,36,57,119,0,0,0,0,1,0,1,0,0,0,0,0,0,387,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,51,136,20,0,0,234,0,905,0,0,0,160,13,0,0,0,0,0,0,0,0,0,100,1,0,0,0,3,0,0,0,0,0,101,133,0,0,29,0,0,0,0,0,42,0,0,67,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,24,355,0,1,0,0,0,0,0,0,81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,180,52,5 +5,0,0,14,0,74,23,0,195,40,26,0,1,3,66,1,153,0,7,5,0,0,0,3,4,5,18,0,19,0,10,0,0,0,49,0,74,349,32,0,611,0,0,0,1,0,0,5,0,0,0,0,17,362,0,1,0,0,0,1,0,0,0,0,0,56,0,0,14442,74,545,0,29,0,0,0,0,0,25,0,0,0,0,0,3,10,2153,0,0,49,0,0,3,148,0,1687,85,8,0,0,2,0,1059,0,49,0,6,2841,0,0,0,0,26,0,4,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,2,3,0,0,1,0,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,298,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,1707,0,160,0,0,0,34,101,149,1186,1856,0,0,0,0,1,0,0,0,0,0,0,0,0,3275,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,13,61,743,16,0,0,850,0,1032,0,0,0,727,205,0,91,0,0,0,0,0,0,0,475,1,0,0,0,12,0,0,0,0,17,406,525,0,0,193,0,138,0,0,0,1462,0,0,3993,0,0,1,7,0,0,0,0,10,0,0,0,1,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,91,1,1,1,0,111,0,0,0,0,1,123,749,0,52,0,0,1,0,0,0,845,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,46,6,0,0,0,0,0,0,0,0,0,0,0,0,6,1464,464,5 +0,0,0,7,0,21,2,0,19,15,3,0,0,0,18,0,28,0,7,2,0,0,0,1,1,2,6,0,4,0,1,0,0,0,7,0,21,6,7,0,40,0,0,0,1,0,0,3,0,0,0,0,2,134,0,0,0,0,0,1,0,0,0,0,0,18,0,0,1217,21,98,0,5,0,0,0,0,0,14,0,0,0,0,1,1,6,108,0,0,7,0,0,0,0,0,23,0,5,0,0,2,0,89,0,16,0,0,413,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,9,0,0,0,0,0,0,125,0,102,0,0,0,4,24,58,167,147,0,0,0,0,1,0,0,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,8,19,141,10,0,0,175,0,280,0,0,0,96,27,0,0,0,0,0,0,0,0,0,77,1,0,0,0,4,0,0,0,0,1,103,64,0,0,0,0,0,0,0,2,114,0,0,59,0,0,1,0,1,0,0,0,6,0,5,5,1,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,26,0,0,0,0,1,28,284,0,13,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,3,323,85,5 +5,0,0,12,0,75,40,0,126,40,34,0,1,2,66,0,68,0,7,6,0,0,0,13,2,5,21,0,20,0,1,0,0,0,45,0,75,87,21,0,338,0,0,0,1,0,0,8,0,0,0,0,7,380,0,0,0,0,0,1,0,0,0,2,0,58,0,0,22583,75,420,0,21,0,0,0,0,0,26,0,0,0,0,0,13,22,4376,0,0,45,0,0,5,88,0,815,125,11,0,0,2,0,702,0,46,0,4,2241,1,0,0,0,15,4,3,0,0,0,0,1,0,0,0,27,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,3374,0,161,0,0,0,14,66,169,2066,3410,0,0,1,0,1,0,5,0,0,0,0,0,0,4464,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,8,63,484,18,0,0,619,0,1432,0,0,0,475,488,0,0,0,0,0,0,0,0,0,344,1,0,0,0,21,0,0,0,0,8,218,447,0,0,336,0,0,0,0,1,1452,0,0,4244,0,0,1,18,0,0,0,0,8,0,5,0,6,0,0,0,0,0,39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,107,1,1,1,0,48,0,0,0,0,1,120,692,0,47,0,0,0,0,0,0,346,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,48,15,0,0,0,0,0,0,0,0,0,0,0,0,0,1717,85,5 +0,0,0,3,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,1,0,0,17,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,16,0,0,0,0,3,21,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,3,0,0,36,0,64,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,9,5 +0,0,0,4,0,18,2,0,17,0,3,0,0,0,3,0,17,0,7,1,0,0,0,1,1,0,0,0,2,0,1,0,0,0,5,0,18,65,1,0,9,0,0,0,1,0,0,4,0,0,0,0,1,173,0,0,0,0,0,1,0,0,0,0,0,4,0,0,806,18,62,0,3,0,0,0,0,0,14,0,0,0,0,0,1,8,90,0,0,5,0,0,0,0,0,19,0,5,0,0,2,0,23,0,1,0,0,305,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,113,0,88,0,0,0,2,6,47,117,120,0,0,0,0,1,0,0,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,8,4,135,4,0,0,273,0,806,0,0,0,178,15,0,0,0,0,0,0,0,0,0,49,1,0,0,0,3,0,0,0,0,1,120,152,0,0,0,0,0,0,0,0,106,0,0,54,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,3,0,0,0,0,1,23,430,0,3,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,194,38,5 +0,0,0,11,0,20,6,0,50,14,11,0,1,3,24,0,56,0,7,4,0,0,0,1,1,2,12,0,8,0,1,0,0,0,7,0,20,132,14,0,58,0,0,0,1,0,0,4,0,0,0,0,4,168,0,0,0,0,0,1,0,0,0,0,0,9,0,0,1111,20,183,0,9,0,0,0,0,0,15,0,0,0,0,0,1,9,157,0,0,7,0,0,1,8,0,125,15,4,0,0,4,0,220,0,6,0,6,847,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,149,0,102,0,0,0,8,38,50,172,153,0,0,0,0,1,0,0,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,19,25,189,12,0,0,161,0,569,0,0,0,92,43,0,0,0,0,0,0,0,0,0,158,1,0,0,0,6,0,0,0,0,5,123,54,0,0,30,0,0,0,0,0,403,0,0,206,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,22,0,0,0,0,1,27,101,0,23,0,0,0,0,0,0,87,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,4,402,59,5 +0,0,0,9,0,92,11,0,59,5,16,0,0,2,15,0,101,0,6,7,0,0,0,27,3,14,6,0,41,0,2,0,0,0,58,4,92,26,97,0,142,0,0,0,1,0,0,3,0,0,0,0,27,297,0,0,0,0,0,1,0,0,0,1,0,22,0,0,2799,92,292,0,40,0,0,0,0,0,13,0,0,0,0,0,11,22,447,0,0,58,0,0,1,43,0,694,35,1,0,0,2,0,383,0,10,0,0,2074,0,0,0,0,12,0,3,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,12,12,0,0,0,254,0,141,0,0,0,52,143,288,651,201,0,0,0,0,1,0,10,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,20,480,11,0,0,411,0,731,0,0,0,279,22,0,0,0,0,0,0,0,0,0,210,1,0,0,0,37,0,0,0,0,26,174,179,0,0,85,0,1,0,0,1,1060,1,0,21,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,1,1,1,0,105,0,0,0,0,1,150,225,0,51,12,0,0,0,0,0,236,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,541,83,5 +0,0,0,12,0,13,3,0,8,4,3,0,1,0,10,0,17,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,13,9,0,0,29,0,1,0,1,0,0,2,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1136,13,55,0,1,0,0,0,0,0,11,0,0,0,0,0,1,8,496,0,0,5,0,0,0,0,0,14,0,3,0,0,2,0,30,0,5,0,0,158,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0,77,0,48,0,0,0,0,3,32,7,94,0,0,0,0,1,0,0,0,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,8,94,21,0,0,89,0,156,0,0,0,34,2,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,96,8,0,0,0,0,0,2,0,0,229,0,0,769,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,18,78,0,1,0,0,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,302,19,5 +0,0,0,7,0,39,48,0,53,0,9,0,0,6,5,0,934,0,6,1,0,0,0,9,0,11,0,0,10,0,1,0,0,0,3,21090,39,6,0,0,43,0,2,0,1,0,0,2,0,0,0,0,1,1155,0,0,0,0,0,1,0,0,0,0,0,3,0,0,359580,39,1185,0,7,0,0,0,0,0,100,0,0,0,0,0,9,39,62468,0,0,3,0,0,0,0,0,232,20,4,0,0,2,0,1070,0,0,23,0,4191,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,58712,0,40,0,0,0,4,7,423,1130,58691,0,0,0,0,1,0,3,0,0,0,0,0,0,449,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,16,302,7,0,0,442,0,349,0,0,0,269,14,0,0,0,0,0,0,0,0,0,1061,1,0,0,0,10,0,0,0,0,1,176,55,0,0,35,0,0,0,0,0,4090,1,0,618,50,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,50,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,18,0,0,0,0,1,42,187,0,8,14,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1888,72,5 +4,0,0,15,1,90,76,1,184,28,40,0,1,12,50,0,2107,0,9,8,0,0,0,10,1,18,21,0,42,0,5,0,0,1,24,30687,91,206,19,0,247,0,0,0,1,0,0,7,0,0,0,0,11,1162,0,0,0,0,0,1,0,0,0,7,0,40,0,0,219938,90,2611,0,46,0,0,0,0,0,103,0,0,0,0,0,12,195,51065,0,1,24,1,0,3,28,0,785,70,14,0,0,4,1,2541,0,31,129,6,8086,0,0,0,0,10,4,9,0,0,0,0,1,0,0,0,22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,1,0,98,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,4,0,0,36,0,1,0,0,0,0,0,0,0,0,0,1,3,4,0,0,0,0,2,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,12,12,12,0,0,0,45402,0,184,0,0,0,39,92,1176,2884,45337,0,0,0,0,1,0,8,0,0,0,0,0,0,2032,4,0,0,0,0,0,0,0,0,0,0,0,10,5,0,0,0,0,0,1,0,223,78,831,17,0,0,967,0,1033,0,1,0,586,154,0,0,0,0,0,0,0,0,0,2479,1,0,0,0,19,0,0,0,0,9,303,283,0,0,266,0,1,0,0,0,8275,1,0,1278,41,0,1,2,1,0,0,0,23,0,0,0,3,0,0,0,0,0,28,0,1,0,6,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,41,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,137,1,1,1,0,131,0,0,0,4,9,115,597,0,72,14,0,0,0,0,0,288,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,36,1,0,0,0,0,0,0,0,0,0,0,1,0,8,3367,296,5 +3,0,0,10,0,59,13,0,91,32,26,1,0,6,48,0,600,0,7,5,0,0,0,7,0,12,6,0,9,0,1,0,0,0,21,898,59,9,7,0,244,0,0,0,1,0,0,2,0,0,0,0,3,313,0,1,0,0,0,1,0,0,0,0,0,60,0,0,19503,59,798,0,7,0,0,0,0,0,19,0,0,0,1,0,9,31,3340,0,0,21,0,0,5,43,0,587,90,4,0,0,2,0,968,0,43,3,0,1871,0,0,0,0,0,0,4,0,2,0,0,1,0,0,0,19,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,2636,0,85,0,0,0,5,21,390,721,2635,0,0,0,0,1,0,3,0,0,0,0,0,0,550,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,61,325,11,0,0,352,0,619,0,0,0,186,19,0,0,0,0,0,0,0,0,0,792,1,0,0,0,12,0,0,0,0,4,142,156,0,0,149,0,0,0,11,0,1688,1,0,95,7,0,1,1,1,0,0,0,5,0,0,0,3,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,7,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,17,0,0,0,0,1,80,348,0,16,12,0,0,0,0,0,264,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,44,0,0,0,0,0,0,0,0,0,0,0,0,0,3,587,94,5 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1194,8,50,0,1,0,0,0,0,0,12,0,0,0,0,0,1,7,517,0,0,0,0,0,0,0,0,10,0,4,0,0,2,0,15,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,73,0,32,0,0,0,0,3,22,6,84,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,67,2,0,0,107,0,115,0,0,0,46,2,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,91,35,0,0,0,0,0,0,0,0,221,0,0,801,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,128,0,1,0,0,1,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,268,9,5 +0,0,0,4,0,17,3,0,14,2,3,0,0,0,5,0,24,0,6,2,0,0,0,2,0,1,3,0,2,0,1,0,0,0,7,0,17,6,2,0,28,0,0,0,1,0,0,20,0,0,0,0,1,144,0,0,0,0,0,1,0,0,0,0,0,5,0,0,4368,17,208,0,3,0,0,0,0,0,85,0,0,0,0,0,2,39,537,0,0,7,0,0,0,0,0,34,0,40,1,0,2,0,38,0,3,0,0,576,0,0,0,0,1,0,20,0,0,0,0,1,0,0,0,22,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,24,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,528,0,207,0,0,0,2,11,38,50,500,0,0,0,0,1,0,9,0,0,0,0,0,0,1471,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,8,6,231,4,0,0,330,0,503,0,0,0,263,30,0,0,0,0,0,0,4,0,0,55,1,0,0,0,4,0,0,0,0,2,107,170,0,0,0,0,0,0,0,0,188,0,0,566,0,0,1,0,0,0,0,0,42,0,0,0,18,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,10,0,0,0,0,3,24,328,0,7,0,0,0,0,0,0,119,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,620,118,5 +0,0,0,0,0,9,3,0,4,0,1,0,1,0,2,0,10,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,12,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,0,0,0,125,9,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,21,0,0,0,0,2,0,22,0,0,0,0,121,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,22,0,0,0,0,3,23,43,24,0,0,0,0,1,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,55,0,0,20,82,0,281,0,0,3,48,5,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,92,41,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,3,10,77,0,1,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,48,5 +6,0,0,27,0,83,611,0,846,107,151,1,1,3,149,0,107,0,7,14,0,0,0,9,7,18,36,0,35,0,1,1,0,0,53,0,83,143,76,0,1744,0,0,0,1,0,0,4,0,0,0,0,19,513,0,0,0,0,0,1,0,0,1,27,0,139,0,0,8065,83,1977,0,37,0,0,0,0,0,16,0,0,0,0,0,11,16,1797,0,0,53,0,0,9,776,0,6091,690,7,0,0,2,0,4125,0,115,0,5,5779,0,0,0,0,16,0,3,0,8,0,0,1,1,0,0,45,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,5,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,0,0,26,0,0,0,0,91,0,1,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,1447,0,192,0,0,0,38,252,593,6702,1201,0,0,0,0,1,0,6,0,0,0,0,0,0,3821,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,13,142,791,32,0,0,1079,0,1214,0,0,0,945,246,0,0,0,0,0,0,0,0,0,1876,1,0,0,0,30,0,0,0,0,17,253,1521,0,0,2550,0,0,0,9,2,818,0,0,154,0,0,1,0,0,0,0,0,11,0,5,0,8,0,0,0,0,0,110,0,0,6,0,15,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,116,1,1,1,0,257,0,0,0,0,1,136,413,0,91,0,0,0,0,0,0,1738,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,121,0,0,0,0,0,0,0,0,0,0,0,0,0,3,715,179,5 +6,0,0,17,1,40,107,1,397,35,115,0,1,3,54,0,135,0,9,7,0,0,0,3,2,6,29,0,13,0,1,0,0,1,18,0,41,238,27,0,708,0,0,0,1,0,0,2,0,0,0,0,7,324,0,0,0,0,0,1,0,0,0,2,0,68,0,0,1925,40,815,0,14,0,0,0,0,0,9,0,0,0,0,0,4,7,102,0,1,18,1,0,11,322,0,2654,364,3,0,0,4,1,1800,0,31,2,4,1871,0,0,0,0,13,2,3,0,0,0,4,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,143,0,107,0,0,0,14,77,89,2674,167,0,0,0,0,1,0,0,0,0,0,0,0,0,840,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,121,63,457,22,0,0,494,0,896,0,1,0,276,104,0,0,0,0,0,0,0,0,0,821,1,0,0,0,12,0,0,0,0,8,167,804,0,0,1014,0,0,0,0,0,614,0,0,34,0,0,1,0,0,0,0,0,3,0,2,0,2,0,0,0,0,0,36,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,49,1,1,1,0,55,0,0,0,0,9,59,277,0,49,0,0,0,0,0,0,799,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,49,0,0,0,0,0,0,0,0,0,0,0,1,0,2,428,123,5 +1,0,0,7,0,24,3,0,10,13,3,0,0,0,23,0,36,0,7,2,0,0,0,1,2,1,9,0,6,0,3,0,0,0,13,0,24,6,6,0,88,0,1,0,1,0,0,1,0,0,0,0,4,598,0,0,0,0,0,1,0,0,0,0,0,20,0,0,196595,24,100,0,9,0,0,0,0,0,7,0,0,0,0,0,2,7,38606,0,0,13,0,0,0,0,0,44,0,2,0,0,2,0,118,0,17,0,0,632,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,8,0,0,0,0,0,0,21675,0,42,0,0,0,8,28,55,69,21680,0,0,0,0,1,0,0,0,0,0,0,0,0,31946,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,20,197,7,0,0,142,0,449,0,0,0,78,14,0,0,0,0,0,0,0,0,0,82,1,0,0,0,5,0,0,0,0,5,115,22,0,0,0,0,0,0,0,0,21512,0,0,70223,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,363,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,13,0,0,0,0,1,37,94,0,19,0,0,1,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21702,55,5 +7,0,0,7,0,115,25,0,48,18,20,0,0,6,27,0,398,0,7,2,0,0,0,8,4,14,45,0,32,0,6,10,0,0,68,1004,115,6,13,0,119,0,0,0,1,0,0,7,0,0,0,0,20,399,0,0,0,0,0,1,0,0,0,0,0,24,0,0,44959,115,696,0,44,0,0,0,0,0,67,0,0,0,0,1,9,94,7201,0,0,68,0,0,0,0,0,382,20,14,0,0,2,0,753,0,20,61,0,6407,0,0,0,0,12,7,9,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,22,0,7,7,0,0,0,0,0,0,2,1,1,0,0,0,1,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,46,12,12,12,0,0,0,4393,0,187,0,0,0,46,119,777,1430,4353,0,0,0,0,1,0,13,0,0,0,0,0,0,2457,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,2,0,84,39,706,7,0,0,746,0,686,2,0,0,561,84,0,0,0,0,0,0,0,0,0,531,1,0,0,0,14,0,0,0,0,10,382,91,0,0,99,0,0,0,0,0,8291,1,0,1635,25,0,1,1,1,0,0,0,12,0,0,0,4,0,0,0,0,0,20,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,25,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,164,1,1,1,0,106,0,0,0,0,1,183,435,0,93,14,0,0,0,0,0,159,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2740,124,5 +0,0,0,25,0,41,123,0,1041,23,460,0,0,2,36,0,55,0,7,6,0,0,0,6,2,13,15,0,12,0,1,0,0,0,12,0,41,6,26,0,1362,0,0,0,1,0,0,1,0,0,0,0,6,174,0,0,0,0,0,1,0,0,0,2,0,33,0,0,2224,41,1728,0,11,0,0,0,0,0,9,0,0,0,0,0,8,15,240,0,0,12,0,0,3,1005,0,8097,2280,2,0,0,2,0,3880,0,21,0,0,1674,0,0,0,0,16,0,4,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,10,10,10,0,0,0,251,0,85,0,0,0,10,66,172,2717,257,0,0,0,0,1,0,2,0,0,0,0,0,0,1317,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,127,355,42,0,0,427,0,819,0,0,0,293,58,0,0,0,0,0,0,0,0,0,1724,1,0,0,0,14,0,0,0,0,4,190,1629,0,0,6831,0,1,0,0,0,284,0,0,36,3,0,1,1,0,0,0,0,1,0,0,0,8,0,0,0,0,0,15,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,3,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,78,0,0,0,0,1,53,245,0,32,9,0,0,0,0,0,1667,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,29,0,0,0,0,0,0,0,0,0,0,0,0,0,1,508,165,5 +0,0,0,5,0,26,6,0,19,0,6,0,0,2,3,0,12,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,2,0,26,6,0,0,41,0,0,0,1,0,0,0,0,0,0,0,1,102,0,0,0,0,0,1,0,0,0,0,0,5,0,0,387,26,43,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,64,0,0,2,0,0,1,11,0,162,20,0,0,0,2,0,72,0,0,0,0,371,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,36,0,23,0,0,0,0,3,178,62,41,0,0,0,0,1,0,3,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,32,10,76,5,0,0,88,0,199,0,0,0,18,1,0,0,0,0,0,0,0,0,0,54,0,0,0,0,8,0,0,0,0,0,109,34,0,0,24,0,0,0,0,0,57,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,0,0,0,0,0,1,28,18,0,2,8,0,0,0,0,0,42,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,49,5 +2,0,0,25,1,100,174,1,194,24,45,0,1,12,65,0,432,0,9,8,0,0,0,8,3,17,24,0,25,0,1,0,0,1,44,14725,101,169,22,0,461,0,0,0,1,0,0,2,0,0,0,0,9,1050,0,0,0,0,0,1,0,0,0,3,0,37,0,0,91133,100,1253,0,22,0,0,0,0,0,235,0,0,0,0,0,10,60,15567,0,1,44,1,0,6,69,0,994,135,3,1,0,4,1,1248,0,19,59,4,10078,0,0,0,0,11,2,2,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,29,0,1,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,12,12,12,0,0,0,8085,0,118,0,0,0,19,89,902,2108,8063,0,0,0,0,1,0,5,0,0,0,0,0,0,1099,2,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,1,0,223,78,781,34,0,0,1062,0,1330,0,1,0,719,102,0,0,0,0,0,0,0,0,0,932,1,0,0,0,19,0,0,0,0,10,323,239,0,0,304,0,2,0,0,1,6433,1,0,175,119,0,1,1,0,0,0,0,3,0,0,0,4,0,0,0,0,0,25,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,119,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,160,1,1,1,0,66,0,0,0,0,9,145,202,0,53,14,0,0,0,0,0,330,5,0,0,0,0,0,0,0,0,0,0,0,4,0,2,38,0,0,0,0,0,0,0,0,0,0,0,1,0,2,4118,184,5 +1,0,0,5,0,15,358,0,1133,2,363,0,0,0,9,0,12,0,7,2,0,0,0,0,1,1,0,0,2,0,1,0,0,0,5,0,15,6,3,0,1573,0,0,1,1,1,0,1,0,0,0,0,1,83,0,0,0,0,0,1,0,0,0,0,0,9,0,0,1100,15,1881,0,3,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,5,0,0,1,1129,0,8825,1790,0,0,0,2,0,4611,0,5,1,0,2764,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,25,0,36,0,0,0,2,9,33,3138,27,0,0,0,0,1,0,0,0,0,0,0,0,0,2006,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,8,134,5,0,0,449,0,571,0,0,0,413,22,0,414,0,0,0,0,0,0,0,1882,1,0,0,0,3,0,0,0,0,2,98,1966,0,0,7303,0,0,0,0,1,39,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,9,0,0,0,0,1,20,85,0,4,0,0,0,0,0,0,1937,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,151,5 +0,0,0,9,1,52,123,1,194,29,58,0,0,2,43,0,92,0,9,5,0,0,0,9,0,10,9,0,9,0,2,0,0,1,20,0,53,125,16,0,344,0,0,0,1,0,0,2,0,0,0,0,5,307,0,0,0,0,0,1,0,0,2,1,0,55,0,0,1830,52,496,0,9,0,0,0,0,0,12,0,0,0,0,0,10,18,226,0,1,20,1,0,7,153,0,1369,245,4,0,0,4,1,838,0,38,0,0,1521,0,0,0,0,17,0,4,0,0,0,0,1,0,0,0,27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,97,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,10,10,10,0,0,0,381,0,121,0,0,0,8,27,199,1444,243,0,0,0,0,1,0,2,0,0,0,0,0,0,1245,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,145,61,441,10,0,0,534,0,1747,0,1,0,291,137,0,0,0,0,0,0,0,0,0,521,1,0,0,0,14,0,0,0,0,4,188,326,0,0,575,0,1,0,0,3,446,0,0,62,3,0,1,1,0,0,0,0,4,0,1,0,9,0,0,0,0,0,29,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,63,1,1,1,0,21,0,0,0,0,9,73,282,0,21,9,0,0,0,0,0,451,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,39,0,0,0,0,0,0,0,0,0,0,0,1,0,2,474,131,5 +0,0,0,6,0,50,8,0,72,0,6,0,0,6,6,0,63,0,7,2,0,0,0,8,0,10,0,0,5,0,1,0,0,0,17,15564,50,6,0,0,46,0,0,0,1,0,0,12,0,0,0,0,1,461,0,0,0,0,0,1,0,0,0,20,20,4,0,0,40755,50,230,0,3,0,0,0,0,0,53,0,0,0,0,0,9,35,9651,0,0,17,0,0,0,0,0,212,20,19,0,0,2,0,112,0,1,11,0,3390,0,0,0,0,4,0,5,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,22,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,12,12,12,0,0,0,7267,0,140,0,0,0,1,4,331,904,7250,0,0,0,0,1,0,13,0,0,0,0,0,0,1968,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,1,0,86,101,340,6,0,0,501,0,551,0,0,0,342,10,0,0,0,0,0,0,0,0,0,168,1,0,0,0,10,0,0,0,0,0,188,160,0,0,11,0,18,0,0,0,1902,1,0,1048,6,0,1,1,1,0,0,0,28,0,0,0,2,0,0,0,0,0,3,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,5,0,0,0,0,1,67,682,0,4,12,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1578,289,5 +0,0,0,12,0,37,15,0,79,10,12,0,1,2,23,0,41,0,7,5,0,0,0,2,1,3,9,0,8,0,1,0,0,0,16,0,37,30,12,0,113,0,0,0,1,0,0,3,0,0,0,0,5,174,0,0,0,0,0,1,0,0,0,0,0,15,0,0,3434,37,193,0,9,0,0,0,0,0,10,0,0,0,0,2,3,9,863,0,0,16,0,0,2,22,0,228,30,4,0,0,2,0,248,0,4,0,3,873,0,0,0,0,4,0,2,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,95,0,0,0,0,0,0,528,0,66,0,0,0,8,32,84,212,542,0,0,0,0,1,0,0,0,0,0,0,0,0,361,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,8,17,266,14,0,0,292,0,638,0,0,0,189,57,0,0,0,0,0,0,0,0,0,180,1,0,0,0,8,0,0,0,0,4,133,151,0,0,63,0,0,0,0,1,262,0,0,80,0,0,1,0,1,0,0,0,4,0,0,0,2,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,18,0,0,0,0,1,53,332,0,21,0,0,0,0,1,0,111,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,2,212,90,5 +0,0,0,19,0,44,55,0,72,5,62,0,0,18,8,0,1072,0,6,2,0,0,0,8,0,11,0,0,24,0,1,0,0,0,3,20696,44,6,0,0,121,0,0,0,1,0,0,3,0,0,0,0,1,914,0,0,0,0,0,1,0,0,0,0,0,4,0,0,52344,44,1439,0,21,0,0,0,0,0,115,0,0,0,0,0,9,207,8167,0,0,3,0,0,0,0,0,934,60,5,1,0,2,0,1294,0,0,569,0,6184,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,2357,0,53,0,0,0,13,16,1273,2804,2305,0,0,0,0,1,0,3,0,0,0,0,0,0,3105,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,305,46,425,30,0,0,452,0,432,0,0,0,274,43,0,0,0,0,0,0,0,0,0,1293,1,0,0,0,10,0,0,0,0,2,160,110,0,0,538,0,2,0,0,0,5884,1,0,2458,56,0,1,1,0,0,0,0,3,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,59,0,0,0,0,1,47,95,0,22,14,0,0,0,0,0,230,2,0,0,0,0,0,0,0,0,0,0,0,3,0,2,22,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3392,137,5 +6,0,0,5,0,17,12,0,49,9,11,1,0,0,14,16,22,0,6,4,0,0,0,1,3,0,0,0,6,0,1,0,0,0,7,0,17,6,9,0,128,0,0,0,1,0,0,2,0,0,0,0,3,129,0,0,0,0,0,1,0,0,0,0,0,20,0,0,6797,17,147,0,6,0,0,0,0,0,7,0,0,0,0,0,4,7,1604,0,0,7,0,0,1,39,0,382,15,2,0,0,2,0,270,0,12,0,0,412,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,865,0,60,0,0,0,6,17,36,320,874,0,0,0,0,1,0,0,0,0,0,0,0,0,2144,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,8,49,118,21,0,0,133,0,329,0,0,0,73,17,0,0,0,0,0,0,4,0,0,131,1,0,0,0,8,0,0,0,0,1,100,122,0,0,30,0,0,0,0,0,490,0,0,1584,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,9,0,0,0,0,1,24,166,0,7,0,0,0,0,0,0,166,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,2,932,98,5 +1,0,0,5,0,24,2,0,31,1,8,0,0,0,8,0,1269,0,7,2,0,0,0,2,1,0,0,0,4,0,1,0,0,0,10,0,24,24,6,0,2550,0,0,0,1,0,0,5,0,0,0,0,2,844,0,0,0,0,0,1,0,0,0,0,0,12,0,0,5953,24,1349,0,5,0,0,0,0,0,24,0,0,0,0,0,2,9,706,0,0,10,0,0,1,13,0,144,15,11,0,0,2,0,2587,0,6,0,0,2391,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,469,0,80,0,0,0,4,12,57,145,436,0,0,0,0,1,0,0,0,0,0,0,0,0,390,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,3,0,8,9,398,5,0,0,182,0,803,0,0,0,104,141,0,0,0,0,0,0,2,0,0,1325,1,0,0,0,5,0,0,0,0,3,111,85,0,0,24,0,0,0,0,0,1387,0,0,199,0,0,1,0,0,0,0,0,15,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,6,0,0,0,0,1,34,335,0,5,0,0,0,0,0,0,3830,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5,208,113,5 +0,0,0,2,0,9,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,1,0,0,18,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,16,0,0,0,0,3,22,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,2,0,0,35,0,38,0,0,0,5,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,1,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,3,5 +2,0,0,13,1,41,35,1,90,2,19,1,0,0,37,0,85,0,20,3,0,0,0,4,5,2,3,0,13,0,1,0,0,1,15,0,42,144,18,0,146,0,0,0,1,0,0,4,0,0,0,0,7,210,0,0,0,0,0,1,0,0,0,2,0,39,0,0,37428,41,286,0,14,0,0,0,0,0,21,0,0,0,0,0,4,12,8514,0,1,15,1,0,3,37,0,432,40,10,0,0,4,1,326,0,11,0,0,1190,0,0,0,0,0,2,8,0,0,0,0,1,0,0,0,9,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,4537,0,148,0,0,0,14,40,85,392,4544,0,0,0,0,1,0,0,0,0,0,0,0,0,5518,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,116,31,494,19,0,0,541,0,1294,0,1,0,300,128,0,0,0,0,0,0,0,0,0,287,1,0,0,0,12,0,0,0,0,8,174,248,0,0,88,0,2,0,1,0,4596,0,0,13241,0,0,1,3,0,0,0,0,12,0,0,0,2,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,52,1,1,1,0,22,0,0,0,0,9,57,477,0,19,0,0,0,0,0,0,198,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,3,0,0,0,0,0,0,0,0,0,0,1,0,5,4613,144,5 +0,0,0,0,1,12,2,4,18,0,2,0,0,0,2,0,23,0,7,3,0,1,1,1,0,0,0,0,0,0,1,0,0,1,1,0,13,6,0,0,11,0,0,0,1,0,0,3,0,0,0,0,0,52,0,0,0,0,0,1,0,0,0,0,0,0,0,0,190,12,104,0,1,0,0,0,0,0,6,3,0,0,0,0,1,6,28,0,4,1,1,0,0,0,0,10,0,3,0,0,2,1,11,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,36,0,50,0,0,0,0,3,31,7,54,0,0,0,0,1,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,7,116,10,0,0,116,0,389,0,0,0,25,3,0,0,0,0,0,0,0,0,0,54,1,0,0,0,6,0,0,0,0,0,94,4,0,0,0,0,2,0,0,0,41,0,0,26,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,9,14,5,0,1,0,0,0,0,0,0,30,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,101,66,5 +0,0,0,3,0,12,4,0,3,6,3,0,0,0,9,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,9,0,0,68,12,28,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,3,0,0,0,0,0,5,0,0,0,0,2,0,24,0,7,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,48,0,0,0,0,3,27,9,27,0,0,0,0,0,0,1,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,46,3,0,0,44,0,159,0,0,0,11,2,0,0,0,0,0,0,0,0,0,34,0,0,0,0,2,0,0,0,0,1,94,1,0,0,0,0,0,0,0,2,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,3,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,20,5 +8,0,0,6,1,84,31,1,47,13,6,0,0,6,24,0,168,0,9,7,0,0,0,7,0,14,15,0,12,0,2,1,0,1,47,932,85,54,22,0,110,0,0,0,1,0,0,2,0,0,0,0,6,585,0,0,0,0,0,1,0,0,0,3,0,18,0,0,8643,84,277,0,11,0,0,0,0,0,19,0,0,0,0,0,10,40,1518,0,1,47,1,0,1,0,0,260,20,2,0,0,4,1,281,0,15,0,0,2189,0,0,0,0,20,6,5,2,0,0,0,1,0,0,0,20,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,11,0,2,1,0,0,0,0,0,0,0,1,1,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,34,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,22,12,12,12,0,0,0,797,0,137,0,0,0,10,153,356,331,795,0,0,0,0,1,0,6,0,0,0,0,0,0,617,2,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,2,0,187,39,632,11,0,0,595,0,1119,1,1,0,327,65,0,0,0,0,0,0,0,0,0,291,1,0,0,0,14,0,0,0,0,5,239,58,0,0,0,0,2,0,0,0,7763,1,0,45,7,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,125,1,1,1,0,64,0,0,0,0,9,132,156,0,30,14,0,0,0,0,0,117,6,0,0,0,0,0,0,0,0,0,0,0,2,0,1,17,0,0,0,0,0,0,0,0,0,0,0,1,0,2,636,163,5 +0,0,0,2,1,12,26,1,29,2,4,0,0,0,4,0,64,0,9,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,2,0,13,54,0,0,9,0,0,0,1,0,0,1,0,0,0,0,0,56,0,0,0,0,0,1,0,0,0,0,0,1,0,0,193,12,94,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,19,0,1,2,1,0,1,0,0,44,0,1,0,0,4,1,16,0,1,0,0,167,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,33,0,44,0,0,0,0,3,37,12,47,0,0,0,0,1,0,0,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,113,15,227,3,0,0,239,0,457,0,1,0,66,7,0,0,0,0,0,0,0,0,0,136,1,0,0,0,2,0,0,0,0,1,114,11,0,0,0,0,0,0,0,0,109,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,1,1,1,0,0,0,0,0,0,9,15,25,0,1,0,0,0,0,0,0,39,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,94,69,5 +0,0,0,7,0,17,2,0,28,29,3,0,0,0,39,1,53,0,7,1,0,0,0,3,0,0,21,0,7,0,5,3,0,0,2,0,17,6,0,0,76,0,0,0,1,0,0,9,0,0,0,0,7,572,0,0,0,0,0,1,0,0,0,0,0,1,0,0,6147,17,211,0,15,0,0,0,0,0,37,0,0,0,0,0,3,19,1117,0,0,2,0,0,0,0,0,58,0,12,6,0,2,0,231,0,0,0,0,1163,0,0,0,0,1,0,4,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,733,0,129,0,0,0,14,64,76,73,720,0,0,0,0,1,0,0,0,0,0,0,0,0,1013,0,0,0,0,0,0,0,0,0,0,0,0,9,0,4,0,0,0,0,0,0,8,35,287,7,0,0,365,0,531,0,0,0,194,41,0,0,0,0,0,0,0,0,0,133,1,0,0,0,4,0,0,0,0,7,149,212,0,0,0,0,0,0,0,0,267,0,0,639,0,0,1,0,0,0,0,0,12,0,0,0,6,0,0,0,0,0,37,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,94,0,0,0,0,1,19,929,0,36,0,0,0,0,0,0,94,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,29,0,0,0,0,0,0,0,0,0,0,0,0,0,9,570,208,5 +1,0,0,7,0,34,29,0,66,8,18,0,0,2,21,1,45,0,7,6,0,0,0,5,2,12,12,0,12,0,2,1,0,0,4,0,34,6,15,0,147,0,0,0,1,0,0,3,0,0,0,0,8,176,0,0,0,0,0,1,0,0,0,0,0,23,0,0,12267,34,214,0,14,0,0,0,0,0,16,0,0,0,0,0,7,18,941,0,0,4,0,0,3,50,0,540,70,6,0,0,2,0,364,0,11,0,0,981,0,0,0,0,19,1,2,0,0,0,0,1,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,10,10,10,0,0,0,933,0,63,0,0,0,14,54,180,381,916,0,0,0,0,1,0,2,0,0,0,0,0,0,3285,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,22,201,8,0,0,331,0,796,0,0,0,212,27,0,0,0,0,0,0,0,0,0,189,1,0,0,0,13,0,0,0,0,8,135,241,0,0,152,0,0,0,0,1,994,0,0,3399,3,0,1,1,0,0,0,0,3,0,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,42,0,0,0,0,1,38,374,0,30,9,0,0,0,0,0,169,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1046,194,5 +1,0,0,21,1,51,29,1,89,47,6,0,1,6,79,0,108,0,17,6,0,0,0,6,1,7,12,0,15,0,1,0,0,1,18,0,52,343,33,0,302,0,0,0,1,0,0,1,0,0,0,0,8,249,0,0,0,0,0,1,0,0,0,0,0,52,0,0,2112,51,313,0,16,0,0,0,0,0,6,0,0,0,0,0,4,6,123,0,1,18,1,0,1,0,0,126,0,2,0,0,4,1,325,0,49,0,7,2404,0,1,0,0,6,0,2,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,155,0,78,0,0,0,16,73,115,375,156,0,0,0,0,1,0,0,0,0,0,0,0,0,449,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,142,80,530,22,0,0,473,0,2647,0,1,0,199,99,0,0,0,0,0,0,0,0,0,335,1,0,0,0,13,0,0,0,0,8,217,53,0,0,0,0,0,0,0,1,839,0,0,143,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,52,0,0,6,0,0,0,3,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,74,1,1,1,0,69,0,0,0,0,9,70,181,0,35,0,0,0,0,0,0,159,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,47,0,0,0,0,0,0,0,0,0,0,0,1,0,2,708,145,5 +3,0,0,5,0,14,8,0,38,3,9,0,0,0,7,0,22,0,7,1,0,0,0,1,0,0,3,0,1,0,2,0,0,0,2,0,14,6,0,0,67,0,0,0,1,0,0,4,0,0,0,0,1,135,0,0,0,0,0,1,0,0,0,0,0,12,0,0,590,14,95,0,3,0,0,0,0,0,15,0,0,0,0,0,1,6,45,0,0,2,0,0,1,18,0,157,15,6,0,0,2,0,134,0,1,0,0,404,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,68,0,49,0,0,0,2,6,35,231,67,0,0,0,0,1,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,10,128,5,0,0,221,0,412,0,0,0,131,9,0,0,0,0,0,0,0,0,0,91,1,0,0,0,2,0,0,0,0,1,109,152,0,0,43,0,0,0,0,0,49,0,0,32,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,2,0,0,0,0,1,16,780,0,6,0,0,0,0,0,0,58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,104,22,5 +0,0,0,12,0,29,81,0,162,27,45,0,1,4,43,0,62,0,7,6,0,0,0,1,1,5,18,0,12,0,1,0,0,0,11,0,29,109,35,0,278,0,0,0,1,0,0,2,0,0,0,0,6,179,0,0,0,0,0,1,0,0,1,1,0,42,0,0,2573,29,426,0,13,0,0,0,0,0,10,0,0,0,0,0,1,4,202,0,0,11,0,0,4,128,0,1068,195,2,0,0,2,0,783,0,27,0,5,2357,0,0,0,0,13,0,2,0,0,0,0,1,0,0,0,13,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,238,0,72,0,0,0,12,86,68,879,255,0,0,0,0,1,0,0,0,0,0,0,0,0,1091,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,37,234,13,0,0,251,0,545,0,0,0,166,39,0,0,0,0,0,0,0,0,0,405,1,0,0,0,8,0,0,0,0,7,135,244,0,0,467,0,0,0,0,2,534,0,0,387,0,0,1,0,0,0,0,0,3,0,1,0,7,0,0,0,0,0,29,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,110,0,0,0,0,1,40,65,0,36,0,0,0,0,0,0,331,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,31,0,0,0,0,0,0,0,0,0,0,0,0,0,1,382,88,5 +2,0,0,14,1,36,114,1,187,30,44,0,1,3,53,0,132,0,9,8,0,0,0,1,3,5,24,0,19,0,1,0,0,1,17,0,37,232,32,0,376,0,0,0,1,0,0,1,0,0,0,0,10,252,0,0,0,0,0,1,0,0,2,1,0,52,0,0,32897,36,526,0,20,0,0,0,0,0,6,0,0,0,0,0,1,3,2668,0,1,17,1,0,5,118,0,1063,180,2,0,0,4,1,836,0,34,0,4,2154,0,0,0,0,11,0,2,0,0,0,0,1,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,2656,0,82,0,0,0,20,88,80,964,2636,0,0,0,0,1,0,0,0,1,0,0,0,0,18364,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,2,131,61,723,16,0,0,585,0,2866,0,1,0,367,90,0,0,0,0,0,0,0,0,0,543,1,0,0,0,12,0,0,0,0,10,214,323,0,0,426,0,0,0,0,3,3078,0,0,9852,0,0,1,0,1,0,0,0,2,0,1,0,7,0,0,0,0,0,32,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,48,1,1,1,0,67,0,0,0,0,9,54,302,0,49,0,0,0,0,0,0,365,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,34,0,0,0,0,0,0,0,0,0,0,0,1,0,2,3016,155,5 +0,0,0,8,0,18,3,0,17,13,4,0,0,0,18,0,47,0,7,6,0,0,0,1,2,1,15,0,11,0,3,0,0,0,5,0,18,6,13,0,47,0,0,0,1,0,0,4,0,0,0,0,7,151,0,0,0,0,0,1,0,0,0,0,0,18,0,0,19007,18,133,0,14,0,0,0,0,0,15,0,0,0,0,1,3,10,2288,0,0,5,0,0,0,0,0,45,0,5,0,0,2,0,147,0,16,0,0,1376,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,12,0,0,0,0,0,0,1736,0,64,0,0,0,14,65,43,492,1731,0,0,0,0,1,0,0,0,0,0,0,0,0,5017,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,19,345,12,0,0,247,0,814,0,0,0,173,99,0,0,0,0,0,0,4,0,0,96,1,0,0,0,9,0,0,0,0,1,104,145,0,0,0,0,0,0,0,1,1503,0,0,5286,0,0,1,0,1,0,0,0,8,0,0,0,4,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,21,0,0,0,0,1,23,414,0,30,0,0,0,0,1,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1756,238,5 +44,0,0,7,1,45,77,1,151,55,31,0,0,0,69,0,115,0,10,5,0,0,0,1,9,4,6,0,24,0,1,0,0,1,19,0,46,328,50,0,340,0,0,0,1,0,0,12,0,0,0,0,13,477,0,0,0,0,0,1,0,0,0,0,0,76,0,0,78532,45,515,0,26,0,0,0,0,0,51,0,0,0,0,0,1,14,7712,0,1,19,1,0,6,99,0,975,105,24,0,0,4,1,726,0,60,0,0,3507,0,0,16,0,85,5,0,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,12,5,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,5215,0,260,0,0,0,26,149,104,16205,5291,0,0,0,0,1,0,1,0,0,0,0,0,0,10139,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,151,76,1907,9,0,0,1774,0,3352,0,1,0,1545,190,0,64,0,0,0,0,0,0,0,453,1,0,0,0,15,0,0,0,0,13,1360,374,0,0,493,0,0,0,0,0,39368,0,0,24416,0,0,1,83,1,0,0,0,25,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,63,1,1,1,0,91,0,0,0,0,9,65,415,0,35,0,0,0,0,0,0,395,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,63,35,0,0,0,0,0,0,0,0,0,0,1,0,9,8534,308,5 +0,0,0,6,0,12,3,0,10,0,3,0,0,0,4,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,46,0,0,14,0,0,0,1,0,0,4,0,0,0,0,0,118,0,0,0,0,0,1,0,0,0,0,0,5,0,0,2479,12,62,0,1,0,0,0,0,0,19,0,0,0,0,0,1,6,525,0,0,3,0,0,0,0,0,13,0,6,0,0,2,0,23,0,2,0,0,305,0,0,0,0,1,0,3,0,0,0,0,1,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,332,0,81,0,0,0,0,3,26,7,336,0,0,0,0,1,0,0,0,0,0,0,0,0,749,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,14,8,107,6,0,0,204,0,330,0,0,0,144,11,0,0,0,0,0,0,9,0,0,44,1,0,0,0,2,0,0,0,0,0,96,117,0,0,0,0,0,0,0,0,198,0,0,527,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,396,0,1,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,392,63,5 +0,0,0,3,0,14,2,0,8,4,3,0,0,0,8,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,14,6,0,0,21,0,0,0,1,0,0,3,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,8,0,0,1587,14,52,0,1,0,0,0,0,0,14,0,0,0,0,0,1,6,350,0,0,4,0,0,0,0,0,11,0,3,0,0,2,0,19,0,6,0,0,444,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,225,0,80,0,0,0,0,3,31,11,234,0,0,0,0,1,0,0,0,0,0,0,0,0,557,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,8,9,106,3,0,0,112,0,142,0,0,0,53,15,0,0,0,0,0,0,7,0,0,41,1,0,0,0,2,0,0,0,0,0,96,30,0,0,0,0,0,0,0,0,115,0,0,326,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,18,111,0,1,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,312,22,5 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,18,8,18,0,1,0,0,0,0,0,0,0,0,0,0,1,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,19,0,0,0,0,3,21,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,35,0,44,0,0,0,5,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,4,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,4,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,6,5 +0,0,0,7,0,44,15,0,65,0,15,0,0,7,5,0,40,0,7,5,0,0,0,6,2,9,3,0,10,0,2,0,0,0,9,0,44,47,13,0,107,0,0,0,1,0,0,7,0,0,0,0,6,287,0,0,0,0,0,1,0,0,0,0,0,18,0,0,16608,44,203,0,10,0,0,0,0,0,37,0,0,0,0,0,8,21,2296,0,0,9,0,0,4,34,0,512,75,13,0,0,2,0,270,0,1,0,0,1384,0,0,0,0,3,0,4,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,1666,0,126,0,0,0,10,28,228,303,1654,0,0,0,0,1,0,6,0,0,0,0,0,0,4409,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,106,11,340,7,0,0,464,0,1285,0,0,0,316,60,0,0,0,0,0,0,0,0,0,154,1,0,0,0,13,0,0,0,0,2,147,307,0,0,100,0,0,0,0,0,1285,0,0,4747,3,0,1,1,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,21,0,0,0,2,1,53,616,0,15,9,0,0,0,0,0,173,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1802,948,5 +4,0,0,15,0,50,33,0,134,26,32,0,1,5,45,0,88,0,23,8,0,0,0,2,2,6,27,0,16,0,1,2,0,0,17,0,50,244,25,0,293,0,0,0,1,0,0,10,0,0,0,0,9,293,0,0,0,0,0,1,0,0,0,0,0,36,0,0,7098,50,465,0,19,0,0,0,0,0,40,0,0,0,0,1,4,24,1121,0,0,17,0,0,5,74,0,706,115,12,1,1,2,0,669,0,21,0,8,1727,0,0,3,0,9,0,11,0,0,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,757,0,184,0,0,0,18,78,112,668,784,0,0,0,0,1,0,1,0,0,0,0,0,0,1578,0,0,0,0,0,0,0,0,0,0,0,0,10,0,2,0,0,0,0,0,0,13,40,394,16,0,0,461,0,1151,0,0,0,332,976,0,0,0,1,0,0,12,0,0,361,1,0,0,0,12,0,0,0,0,9,155,330,0,0,290,0,0,0,0,0,955,0,0,1379,0,0,1,1,0,0,0,0,16,0,0,0,15,0,0,0,0,0,25,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,4,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,54,0,0,0,0,1,67,416,0,52,0,0,0,0,0,0,299,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,32,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1114,135,5 +0,0,0,8,1,11,7,5,34,0,9,0,0,0,6,0,15,0,6,3,0,1,0,1,1,0,0,0,0,0,1,0,0,1,1,0,12,6,0,0,42,0,0,0,1,0,0,2,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,8,0,0,576,11,119,0,1,0,0,0,0,0,8,3,0,0,0,0,1,5,78,0,5,1,1,0,1,14,0,128,20,4,0,0,2,1,88,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,73,0,43,0,0,0,0,3,30,98,87,0,0,0,0,1,0,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,106,9,0,0,141,0,241,0,0,0,81,9,0,0,0,0,0,0,0,0,0,77,1,0,0,0,6,0,0,0,0,0,93,96,0,0,35,0,0,0,0,0,40,0,0,48,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,256,0,1,0,0,0,0,0,0,54,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,112,46,5 +0,0,0,12,0,14,3,0,8,4,3,0,1,0,10,0,17,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,6,0,14,9,0,0,30,0,1,0,1,0,0,2,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1172,14,55,0,1,0,0,0,0,0,11,0,0,0,0,0,1,8,522,0,0,6,0,0,0,0,0,14,0,3,0,0,2,0,30,0,5,0,0,169,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0,82,0,52,0,0,0,0,2,34,7,99,0,0,0,0,1,0,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,8,97,21,0,0,92,0,157,0,0,0,37,5,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,97,8,0,0,0,0,0,2,0,0,232,0,0,770,0,0,1,0,1,0,0,0,7,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,20,79,0,1,0,0,2,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,314,20,5 +0,0,0,5,0,12,11,0,24,6,9,0,0,0,10,0,11,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,54,0,0,0,1,0,0,0,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,17,0,0,89,12,63,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,2,0,0,2,20,0,175,25,0,0,0,2,0,115,0,7,0,0,164,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,16,0,19,0,0,0,0,3,28,105,30,0,0,0,0,1,0,0,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,59,5,0,0,57,0,185,0,0,0,18,2,0,0,0,0,0,0,0,0,0,72,0,0,0,0,2,0,0,0,0,1,94,38,0,0,50,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,19,5 +0,0,0,2,0,11,3,0,10,0,2,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,914,11,35,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,459,0,0,0,0,0,0,0,0,8,0,1,0,0,2,0,8,0,0,0,0,92,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,33,0,25,0,0,0,0,3,31,4,45,0,0,0,0,1,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,77,2,0,0,122,0,150,0,0,0,58,2,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,94,49,0,0,0,0,0,0,0,0,205,0,0,732,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,128,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,227,6,5 +3,0,0,23,0,73,8,0,93,34,20,0,1,7,59,0,93,0,7,7,0,0,0,3,10,7,21,0,26,0,1,0,0,0,40,0,73,201,37,0,270,0,0,0,1,0,0,2,0,0,0,0,15,204,0,2,0,0,0,1,0,1,0,4,0,46,0,0,5590,73,340,0,27,0,0,0,0,0,7,0,0,0,0,0,4,7,564,0,0,40,0,0,2,38,0,580,65,2,0,0,2,0,549,0,35,0,4,4598,0,0,0,0,7,0,3,0,6,0,0,1,3,0,0,23,5,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,78,0,0,0,0,0,0,508,0,212,0,0,0,30,95,195,622,503,0,0,0,0,1,0,2,0,0,0,0,0,0,981,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,1,60,70,1287,31,0,0,374,0,1331,0,0,0,245,217,0,0,0,0,0,0,0,0,0,288,1,0,0,0,20,0,0,0,0,14,193,151,0,0,112,0,2,0,1,6,664,0,0,547,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,33,1,0,4,1,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,109,1,1,1,0,88,0,0,0,0,1,113,172,0,55,0,0,0,0,0,0,268,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,40,0,0,0,0,0,0,0,0,0,0,0,0,0,2,588,434,5 +0,0,0,15,1,34,28,1,58,17,10,0,0,2,39,0,78,0,9,2,0,0,0,6,0,1,3,0,2,0,1,0,0,1,15,0,35,217,3,0,144,0,0,0,1,0,0,3,0,0,0,0,1,147,0,0,0,0,0,1,0,0,0,0,0,26,0,0,6999,34,203,0,3,0,0,0,0,0,11,0,0,0,0,1,6,12,1619,0,1,15,1,0,2,8,0,143,15,4,0,0,4,1,186,0,23,0,3,807,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,904,0,97,0,0,0,2,11,95,122,935,0,0,0,0,1,0,0,0,0,0,0,0,0,2119,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,128,41,352,17,0,0,359,0,1294,0,1,0,155,87,0,0,0,0,0,0,4,0,0,224,1,0,0,0,8,0,0,0,0,2,143,66,0,0,30,0,0,0,0,1,752,0,0,1538,0,0,1,0,0,0,0,0,5,0,0,0,2,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,52,1,1,1,0,6,0,0,0,0,9,50,146,0,7,0,0,0,0,0,0,141,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,19,0,0,0,0,0,0,0,0,0,0,0,1,0,3,1167,85,5 +0,0,0,3,0,16,50,0,294,0,3,0,0,0,3,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,16,6,0,0,488,0,6,0,1,0,0,7,0,0,0,0,0,78,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3052,16,418,0,1,0,0,0,0,0,34,0,0,0,0,0,1,11,807,0,0,0,0,0,0,237,0,1796,5,11,0,0,2,0,1206,0,0,0,0,464,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,365,0,93,0,0,0,0,3,51,1650,375,0,0,0,0,1,0,0,0,0,0,0,0,0,813,0,0,0,0,0,0,0,0,0,0,0,0,7,0,4,0,0,0,0,0,0,8,3,222,3,0,0,301,0,325,0,0,0,223,28,0,0,0,0,0,0,0,0,0,372,1,0,0,0,2,0,0,0,0,0,130,815,0,0,7,0,0,0,0,0,326,0,0,1117,0,0,1,0,1,0,0,0,15,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,0,0,0,0,0,1,16,295,0,1,0,0,0,0,0,0,567,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1146,182,5 +0,0,0,4,0,14,28,0,77,0,20,0,0,0,3,0,25,0,7,2,0,0,0,1,0,0,3,0,2,0,1,0,0,0,4,0,14,104,3,0,102,0,0,0,1,0,0,4,0,0,0,0,1,179,0,0,0,0,0,1,0,0,0,0,0,5,0,0,1919,14,175,0,3,0,0,0,0,0,16,0,0,0,0,1,1,8,151,0,0,4,0,0,1,59,0,470,80,7,0,0,2,0,306,0,1,0,0,408,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,172,0,44,0,0,0,2,10,34,315,172,0,0,0,0,1,0,0,0,0,0,0,0,0,664,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,14,4,134,4,0,0,231,0,865,0,0,0,160,25,0,0,0,0,0,0,0,0,0,160,1,0,0,0,3,0,0,0,0,1,99,211,0,0,214,0,0,0,0,1,256,0,0,371,0,0,1,0,1,0,0,0,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,2,0,0,0,0,1,18,471,0,6,0,0,0,0,0,0,143,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,166,79,5 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,103,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,47,5 +1,0,0,6,0,49,12,0,43,1,16,0,0,2,2,0,29,0,19,5,0,0,0,7,1,8,3,0,7,0,2,0,0,0,5,2,49,11,6,0,75,0,0,0,1,0,0,1,1,0,0,0,4,167,0,0,0,0,0,1,0,0,0,0,0,7,0,0,2725,49,122,0,7,0,0,0,0,0,12,0,0,0,0,0,10,17,375,0,0,5,0,0,2,29,0,351,55,4,0,0,2,0,180,0,0,0,1,1186,0,0,0,0,5,1,4,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,279,0,115,0,0,0,6,17,231,821,274,0,0,0,0,1,0,4,0,0,0,0,0,0,634,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,13,219,6,0,0,208,0,678,0,0,0,50,38,0,0,0,0,0,0,0,0,0,123,1,0,2,0,13,0,0,0,0,4,140,71,0,0,119,0,8,0,0,0,215,0,0,371,3,0,1,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,11,0,0,0,0,1,54,34,0,11,9,0,0,0,0,0,100,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,357,96,5 +0,0,0,18,0,56,20,0,127,59,33,0,1,2,80,0,108,0,7,10,0,0,0,3,6,5,33,0,26,0,3,1,0,0,27,0,56,359,41,0,284,0,0,0,1,0,0,2,0,0,0,0,16,217,0,0,0,0,0,1,0,0,0,6,0,71,0,0,4468,56,439,0,31,0,0,0,0,0,8,0,0,0,0,0,6,9,80,0,0,27,0,0,5,65,0,681,110,2,0,0,2,0,744,0,54,0,3,5096,0,0,0,0,63,0,0,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,174,0,106,0,0,0,32,111,126,1690,186,0,0,0,0,1,0,0,0,0,0,0,0,0,886,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,18,81,402,22,0,0,273,0,1025,0,0,0,157,143,0,0,0,0,0,0,0,0,0,378,1,0,0,0,19,0,0,0,0,11,166,136,0,0,272,0,0,0,0,1,32646,0,0,84,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,76,1,1,1,0,76,0,0,0,0,1,83,110,0,68,0,0,0,0,0,0,303,17,0,0,0,0,0,0,0,0,0,0,0,0,0,1,65,0,0,0,0,0,0,0,0,0,0,0,0,0,1,404,193,5 +0,0,0,8,0,41,17,0,58,10,19,0,0,2,15,0,41,0,7,5,0,0,0,5,2,10,9,0,8,0,1,0,0,0,8,0,41,44,9,0,118,0,0,0,1,0,0,4,0,0,0,0,4,200,0,0,0,0,0,1,0,0,0,0,0,20,0,0,13027,41,198,0,7,0,0,0,0,0,22,0,0,0,0,0,8,22,1139,0,0,8,0,0,2,41,0,446,75,7,0,0,2,0,297,0,13,0,0,1223,0,0,0,0,6,0,4,0,0,0,0,1,2,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,10,10,10,0,0,0,1123,0,80,0,0,0,6,34,207,272,1131,0,0,0,0,1,0,3,0,0,0,0,0,0,4224,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,23,214,12,0,0,282,0,611,0,0,0,166,30,0,0,0,0,0,0,0,0,0,159,1,0,0,0,12,0,0,0,0,4,126,177,0,0,173,0,0,0,0,0,1127,0,0,3835,3,0,1,1,0,0,0,0,8,0,0,0,26,0,0,0,0,0,10,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,28,0,0,0,0,1,49,238,0,19,9,0,0,0,0,0,154,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1139,127,5 +0,0,0,17,0,49,37,0,193,29,41,0,1,6,46,0,105,0,7,6,0,0,0,7,4,7,27,0,24,0,1,0,0,0,23,0,49,157,45,0,350,0,0,0,1,0,0,2,0,0,0,0,12,244,0,0,0,0,0,1,0,0,0,1,0,42,0,0,2414,49,477,0,25,0,0,0,0,0,7,0,0,0,0,0,4,7,132,0,0,23,0,0,4,110,0,1103,135,2,0,0,2,0,898,0,21,0,4,1898,0,0,0,0,14,0,5,0,0,0,0,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,183,0,114,0,0,0,24,96,128,947,190,0,0,0,0,1,0,8,0,0,0,0,0,0,579,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,64,51,457,18,0,0,351,0,958,0,0,0,243,90,0,0,0,0,0,0,0,0,0,436,1,0,0,0,17,0,0,0,0,12,146,349,0,0,315,0,0,0,0,0,810,0,0,24,0,0,1,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,30,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,66,1,1,1,0,79,0,0,0,0,1,72,215,0,59,0,0,0,0,0,0,391,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,37,0,0,0,0,0,0,0,0,0,0,0,0,0,2,435,96,5 +3,0,0,3,0,16,2,0,18,3,3,0,0,0,7,0,21,0,7,1,0,0,0,1,6,0,0,0,8,0,1,0,0,0,4,0,16,6,6,0,22,0,0,0,1,0,0,24,0,0,0,0,6,376,0,0,0,0,0,1,0,0,0,0,0,7,0,0,7372,16,254,0,9,0,0,0,0,0,104,0,0,0,0,1,1,34,1187,0,0,4,0,0,0,0,0,88,0,46,0,0,2,0,36,0,5,0,0,848,0,0,0,0,3,3,18,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,962,0,254,0,0,0,12,21,37,57,958,0,0,0,0,1,0,0,0,0,0,0,0,0,2166,0,0,0,0,0,0,0,0,0,0,0,0,24,0,3,0,0,0,0,0,0,8,8,158,3,0,0,494,0,781,0,0,0,419,30,0,0,0,0,0,0,13,0,0,58,1,0,0,0,8,0,0,0,0,1,98,345,0,0,0,0,0,0,0,0,363,0,0,1261,0,0,1,0,0,0,0,0,62,0,0,0,8,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,8,0,0,0,0,1,20,933,0,9,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,21,1045,142,5 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,30,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,26,0,0,0,0,3,21,44,22,0,0,0,0,1,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,49,0,61,0,0,0,19,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,18,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,40,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,3,5 +0,0,0,5,0,18,2,0,26,5,7,0,0,0,8,0,18,0,7,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,6,0,18,6,0,0,33,0,0,0,1,0,0,3,0,0,0,0,0,873,0,0,0,0,0,1,0,0,0,0,0,11,0,0,13001,18,72,0,1,0,0,0,0,0,17,0,0,0,0,0,2,6,1055,0,0,6,0,0,1,9,0,102,15,5,0,0,2,0,61,0,6,0,0,486,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,1066,0,90,0,0,0,0,3,48,224,1080,0,0,0,0,1,0,0,0,0,0,0,0,0,3715,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,8,9,250,5,0,0,217,0,383,0,0,0,149,25,0,3,0,0,0,0,4,0,0,68,1,0,0,0,3,0,0,0,0,0,101,140,0,0,41,0,0,0,0,0,881,0,0,3732,0,0,1,2,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,0,0,0,0,0,1,24,336,0,1,0,0,0,0,0,0,51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1035,181,5 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,1,0,0,14,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,83,0,0,0,2,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,34,5 +20,0,0,15,1,114,104,1,277,18,54,0,0,9,37,1,2422,0,75,6,0,0,0,11,3,41,30,0,29,0,6,1,0,1,51,66408,115,84,71,0,369,0,0,0,1,0,0,3,0,0,0,0,37,1494,0,0,0,0,0,1,0,0,0,38,0,41,0,0,513018,114,3119,0,56,0,0,0,0,0,106,0,0,0,0,0,13,83,128300,0,1,51,1,0,4,98,0,1475,115,4,0,0,4,1,3292,0,24,99,0,19372,0,0,0,0,71,11,26,0,1,0,0,1,0,0,0,33,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,10,0,8,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,55,0,0,0,0,0,0,10,0,0,4,0,0,0,0,95,0,1,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,0,0,9,29,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,105,12,12,12,0,0,0,114320,0,168,0,0,0,51,359,1113,6366,114258,0,0,0,0,1,0,22,0,0,0,0,0,0,2466,10,0,0,0,0,0,0,0,0,0,0,0,39,11,0,0,0,0,0,1,0,234,69,1054,16,0,0,979,0,1269,0,1,0,617,129,0,0,0,0,0,0,0,0,0,2979,1,0,0,0,20,0,0,0,0,37,357,416,0,0,362,0,32,0,0,0,14733,1,0,534,65,0,1,1,0,0,0,0,8,0,0,0,2,0,0,0,0,0,21,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,44,1,0,0,0,0,65,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,197,1,1,1,0,243,0,0,0,0,9,166,213,0,93,14,0,0,0,0,0,458,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,30,0,0,0,0,0,0,0,0,0,0,0,1,0,5,7479,473,5 +0,0,0,73,3,16,3,3,156,31,7,0,0,0,37,0,265,0,7,7,0,6,0,1,0,1,0,0,2,0,3,0,0,3,5,356,19,833,5,0,48,0,0,0,1,0,0,1,1,0,0,0,0,585,0,0,0,0,0,1,0,0,0,0,0,4,0,0,199339,16,546,0,5,0,0,0,0,0,9,9,0,0,0,0,1,6,20973,0,3,5,3,0,0,0,0,23,0,4,0,0,2,3,634,0,3,0,1,103570,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,6,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,48,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,0,0,0,0,2,0,10505,0,45,0,0,0,2,5,34,34777,10522,0,0,0,0,1,0,2,0,0,1,0,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,127,35,534,114,0,0,365,0,1525,0,0,0,106,85,0,0,0,0,0,0,0,0,0,475,1,0,2,0,14,0,0,0,0,10,108,8,0,0,0,0,0,0,0,0,253765,0,0,481,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,2,0,0,0,0,27,24,107,0,6,0,0,0,0,0,0,629,3,0,0,0,0,0,0,0,0,0,0,0,3,2,5,35,0,0,0,0,0,0,0,2,0,0,0,5,0,2,11513,92,5 +3,0,0,13,0,52,26,0,57,0,27,0,0,7,7,0,83,0,7,2,0,0,0,7,0,10,3,0,17,0,11,1,0,0,10,1703,52,6,0,0,103,0,0,0,1,0,0,5,0,0,0,0,12,891,0,0,0,0,0,1,0,0,0,0,0,12,0,0,43250,52,293,0,26,0,0,0,0,0,58,0,0,0,0,0,8,100,7164,0,0,10,0,0,2,20,0,542,55,10,0,0,2,0,289,0,1,175,0,2574,0,0,0,0,1,0,3,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,12,12,0,0,0,1406,0,127,0,0,0,29,26,476,939,1373,0,0,0,0,1,0,4,0,0,0,0,0,0,2188,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,106,25,896,16,0,0,992,0,444,0,0,0,780,22,0,0,0,0,0,0,0,0,0,214,1,0,0,0,9,0,0,0,0,3,652,225,0,0,216,0,2,0,0,0,3044,1,0,2245,20,0,1,1,1,0,0,0,11,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,65,1,1,1,0,60,0,0,0,0,1,62,623,0,30,12,0,0,0,0,0,137,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2932,140,5 +0,0,0,3,0,11,3,0,11,0,2,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,0,33,0,0,0,0,0,1,0,0,1,0,0,2,0,0,115,11,34,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,9,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,28,0,52,0,0,0,0,3,28,5,44,0,0,0,0,1,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,83,3,0,0,82,0,483,0,0,0,15,2,0,0,0,0,0,0,0,0,0,40,1,0,0,0,2,0,0,0,0,0,93,6,0,0,0,0,0,0,0,2,26,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,4,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,97,63,5 +0,0,0,8,0,42,7,0,44,3,14,0,0,2,10,0,70,0,7,4,0,0,0,6,0,10,6,0,4,0,1,2,0,0,9,4,42,6,0,0,79,0,0,0,1,0,0,6,0,0,0,0,3,1013,0,0,0,0,0,1,0,0,0,0,0,12,0,0,22083,42,177,0,5,0,0,0,0,0,23,0,0,0,0,0,9,23,805,0,0,9,0,0,2,20,0,276,45,8,0,0,2,0,214,0,6,0,0,1300,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,12,12,12,0,0,0,592,0,88,0,0,0,4,19,250,181,574,0,0,0,0,1,0,3,0,0,0,0,0,0,2835,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,16,284,10,0,0,329,0,375,0,0,0,189,37,0,0,0,0,0,0,0,0,0,154,1,0,0,0,10,0,0,0,0,3,138,146,0,0,93,0,0,0,0,1,723,1,0,2378,4,0,1,1,1,0,0,0,8,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,23,0,0,0,0,1,51,295,0,12,11,0,0,0,0,0,75,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,746,98,5 +0,0,0,19,0,49,71,0,48,12,6,0,1,9,22,0,86,0,7,6,0,0,0,7,0,13,9,0,10,0,1,0,0,0,10,9582,49,78,11,0,146,0,0,0,1,0,0,4,0,0,0,0,4,851,0,0,0,0,0,1,0,0,0,0,0,9,0,0,242050,49,449,0,7,0,0,0,0,0,145,0,0,0,0,0,9,23,40280,0,0,10,0,0,0,0,0,190,25,5,1,0,2,0,352,0,4,0,3,5013,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,37027,0,67,0,0,0,6,28,420,1074,37019,0,0,0,0,1,0,3,0,0,0,0,0,0,506,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,132,31,531,30,0,0,562,0,473,0,0,0,386,103,0,0,0,0,0,0,0,0,0,250,1,0,0,0,13,0,0,0,0,4,234,90,0,0,0,0,0,0,0,0,2296,1,0,102,71,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,16,0,0,0,0,1,59,151,0,19,14,0,0,0,0,0,84,3,0,0,0,0,0,0,0,0,0,0,0,1,0,2,16,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1886,93,5 +1,0,0,22,1,79,23,4,169,15,39,1,1,9,47,0,1021,0,7,10,0,1,1,8,2,16,21,0,26,0,2,0,0,1,29,3560,80,331,34,0,327,0,0,0,1,0,0,2,0,0,0,0,10,392,0,0,0,0,0,1,0,0,0,10,0,47,0,0,39408,79,1419,0,23,0,0,0,0,0,23,3,0,0,0,0,9,53,6445,0,4,29,1,0,4,73,0,933,115,4,0,0,2,1,1646,0,24,14,4,3195,0,0,0,0,14,0,2,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,92,13,13,13,0,0,1,5369,1,85,0,0,0,20,84,516,1307,5334,0,0,0,0,1,0,4,0,0,0,0,0,0,470,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,99,57,783,28,0,0,435,0,1819,0,0,0,221,81,0,0,0,0,0,0,0,0,0,1317,1,0,0,0,22,0,0,0,0,9,198,178,0,0,238,0,5,0,0,0,3493,1,0,84,12,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,19,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,12,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,95,1,1,1,0,84,0,0,0,0,23,109,144,0,51,14,0,0,0,0,0,327,4,0,0,0,0,0,0,0,0,0,0,0,3,0,2,27,0,0,0,0,0,0,0,0,0,0,0,3,0,0,832,183,5 +7,0,0,28,0,109,64,0,165,22,51,0,0,2,75,3,88,0,7,9,0,0,0,7,2,15,6,0,19,0,5,0,0,0,69,0,109,6,25,0,753,0,0,0,1,0,0,4,1,0,0,0,13,358,0,0,0,0,0,1,0,0,1,0,0,38,0,0,40833,109,494,0,22,0,0,0,0,0,29,0,0,0,0,0,9,23,1503,0,0,69,0,0,5,125,0,1152,210,9,0,0,2,0,881,0,20,0,0,7817,0,1,0,0,18,0,5,0,0,0,0,1,0,0,0,9,2,0,5,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,1,0,0,0,0,0,0,0,2,2,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,10,10,10,0,0,0,1338,0,196,0,0,0,24,82,309,6439,1318,0,0,0,0,1,0,3,0,0,0,0,0,0,2121,0,0,0,0,0,0,0,0,0,0,0,0,4,1,2,0,0,0,0,1,2,32,45,558,60,0,0,647,0,1711,0,0,0,494,529,0,0,0,0,0,0,0,0,0,455,1,0,3,0,18,0,0,0,0,5,205,421,0,0,485,0,0,0,0,1,1070,0,0,1369,3,0,1,1,0,0,0,0,14,0,1,0,9,0,0,0,0,0,63,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,3,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,125,1,1,1,0,151,0,0,0,2,1,178,950,0,36,9,0,0,0,0,0,412,32,0,0,0,0,0,0,0,0,0,0,0,1,0,1,32,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1477,233,5 +3,0,0,11,0,65,163,0,296,54,87,1,0,6,71,0,675,0,7,7,0,0,0,7,0,13,9,0,11,0,1,0,0,0,23,898,65,9,16,0,601,0,0,0,1,0,0,2,0,0,0,0,4,367,0,1,0,0,0,1,0,0,4,0,0,99,0,0,20418,65,1313,0,9,0,0,0,0,0,19,0,0,0,1,0,10,30,3387,0,0,23,0,0,9,246,0,2157,350,4,0,0,2,0,1970,0,65,3,0,2466,0,0,0,0,14,0,4,0,3,0,0,1,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,1,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,12,12,12,0,0,0,2930,0,112,0,0,0,7,42,409,2405,2773,0,0,0,0,1,0,4,0,0,0,0,0,0,1514,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,83,374,12,0,0,534,0,708,0,0,0,356,48,0,0,0,0,0,0,0,0,0,1306,1,0,0,0,14,0,0,0,0,5,164,531,0,0,816,0,0,0,13,12,1858,1,0,119,7,0,1,1,1,0,0,0,5,0,1,0,11,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,7,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,74,1,1,1,0,49,0,0,0,0,1,88,314,0,22,12,0,0,0,0,0,675,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,68,0,0,0,0,0,0,0,0,0,0,0,0,0,3,662,140,5 +0,0,0,9,0,92,11,0,59,5,16,0,0,2,15,0,101,0,6,7,0,0,0,27,3,14,6,0,41,0,2,0,0,0,58,4,92,26,97,0,142,0,0,0,1,0,0,3,0,0,0,0,27,272,0,0,0,0,0,1,0,0,0,1,0,22,0,0,2651,92,292,0,40,0,0,0,0,0,13,0,0,0,0,0,11,22,430,0,0,58,0,0,1,43,0,694,35,1,0,0,2,0,383,0,10,0,0,1931,0,0,0,0,12,0,3,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,12,12,0,0,0,255,0,141,0,0,0,52,200,288,651,201,0,0,0,0,1,0,10,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,20,450,11,0,0,412,0,664,0,0,0,282,28,0,0,0,0,0,0,0,0,0,210,1,0,0,0,37,0,0,0,0,26,174,179,0,0,85,0,1,0,0,1,1133,1,0,21,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,1,1,1,0,161,0,0,0,0,1,150,225,0,51,12,0,0,0,0,0,236,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,531,87,5 +0,0,0,14,1,32,50,1,102,14,21,2,1,3,32,0,102,0,9,4,0,0,0,1,1,3,12,0,8,0,1,0,0,1,13,0,33,229,14,0,164,0,0,0,1,0,0,4,0,0,0,0,4,243,0,0,0,0,0,1,0,0,0,0,0,24,0,0,1509,32,311,0,9,0,0,0,0,0,19,0,0,0,0,0,1,6,153,0,1,13,1,0,4,42,0,433,65,5,0,0,4,1,404,0,15,0,5,1225,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,165,0,105,0,0,0,8,39,77,360,173,0,0,0,0,1,0,0,0,0,0,0,0,0,535,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,127,43,434,18,0,0,420,0,1324,0,1,0,191,62,0,0,0,0,0,0,0,0,0,322,1,0,0,0,6,0,0,0,0,5,166,135,0,0,154,0,0,0,0,1,543,0,0,98,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,42,1,1,1,0,26,0,0,0,0,9,46,283,0,24,0,0,0,0,0,0,186,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,18,0,0,0,0,0,0,0,0,0,0,0,1,0,5,521,103,5 +0,0,0,28,3,19,4,3,60,14,7,0,0,0,12,8,212,0,6,7,0,6,0,1,0,1,0,0,2,0,3,0,0,3,7,268,22,520,4,0,23,0,0,0,1,0,0,1,1,0,0,0,0,429,0,0,0,0,0,1,216,0,0,0,0,4,0,0,77094,19,467,0,5,0,0,0,0,0,11,9,0,0,0,0,1,6,8911,0,3,7,3,0,0,0,0,23,0,4,0,0,2,3,410,0,3,0,1,32002,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,40,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,53,0,0,0,0,2,0,4397,0,43,0,0,0,2,5,44,1564,4413,0,0,0,0,1,0,2,0,0,1,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,50,186,934,46,0,0,851,0,1264,0,0,0,59,471,0,0,0,0,0,0,0,0,0,309,1,0,2,0,14,0,0,0,0,8,535,3,0,0,0,0,0,0,0,0,246959,0,0,491,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,2,0,0,0,0,25,29,7,0,6,0,0,0,0,0,0,804,3,0,0,0,0,0,0,0,0,0,0,8,3,2,5,18,0,0,0,0,0,0,0,2,0,0,0,5,0,2,5284,44,5 +64,0,0,12,1,79,32,1,85,79,8,0,1,3,131,0,419,0,9,5,0,0,0,4,1,2,12,0,8,0,1,0,0,1,60,0,80,492,13,0,554,0,0,0,1,0,0,4,1,0,0,0,4,454,0,2,0,0,0,1,0,0,0,1,0,106,0,0,9965,79,704,0,9,0,0,0,1,0,31,0,0,0,0,0,5,10,1004,0,1,60,1,0,1,0,0,96,0,9,0,0,4,1,871,0,105,0,5,2932,0,0,42,0,3,22,4,0,0,0,0,1,3,0,0,9,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1044,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,0,1,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,988,0,259,0,0,0,8,38,132,378,1154,0,0,0,0,1,0,0,0,0,0,0,0,0,4034,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,127,147,675,15,0,0,700,0,2430,0,1,0,481,123,0,0,0,0,0,0,0,0,0,688,1,0,5,0,10,0,0,0,0,5,218,160,0,0,0,0,12,0,0,1,243285,0,0,2238,0,0,1,2,0,0,0,0,14,0,0,0,2,0,0,0,0,0,81,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,1,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,88,1,1,1,0,22,0,0,0,0,19,141,380,0,23,0,0,0,0,0,0,510,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,79,0,0,0,0,0,0,0,0,0,0,0,1,0,5,1362,231,5 +0,0,0,11,0,28,23,0,83,25,17,0,1,3,38,0,55,0,7,5,0,0,0,1,0,3,12,0,8,0,1,0,0,0,11,0,28,75,16,0,216,0,0,0,1,0,0,2,0,0,0,0,4,145,0,0,0,0,0,1,0,0,0,0,0,27,0,0,11891,28,238,0,9,0,0,0,0,0,10,0,0,0,0,0,1,4,1299,0,0,11,0,0,2,38,0,350,50,4,0,0,2,0,378,0,17,0,4,1056,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,13,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,891,0,58,0,0,0,8,39,64,306,918,0,0,0,0,1,0,0,0,0,0,0,0,0,3914,0,0,0,0,0,0,0,0,0,0,0,0,2,0,6,0,0,0,0,0,0,13,35,196,12,0,0,239,0,853,0,0,0,156,23,0,0,0,0,0,0,0,0,0,227,1,0,0,0,6,0,0,0,0,5,126,148,0,0,121,0,0,0,0,0,1048,0,0,3243,0,0,1,0,1,0,0,0,2,0,0,0,6,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,28,0,0,0,0,1,39,295,0,24,0,0,0,0,0,0,151,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,27,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1472,55,5 +6,0,0,8,1,119,82,1,178,26,54,0,0,6,40,1,92,0,9,5,0,0,0,5,0,10,6,0,6,0,2,1,0,1,85,0,120,54,3,0,310,0,0,0,1,0,0,1,0,0,0,0,5,218,0,0,0,0,0,1,0,0,1,9,0,45,0,0,29935,119,419,0,7,0,0,0,0,0,9,0,0,0,0,0,8,15,4467,0,1,85,1,0,7,122,0,1197,235,1,0,0,4,1,709,0,29,0,0,2754,0,0,0,0,9,6,6,0,0,0,0,1,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,12,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,35,0,1,0,0,0,0,0,0,0,0,0,1,3,4,0,0,0,0,3,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,10,10,10,0,0,0,4564,0,156,0,0,0,6,16,404,1128,4451,0,0,0,0,1,0,5,0,0,0,0,0,0,5163,4,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,3,0,187,51,626,10,0,0,691,0,1411,0,1,0,438,253,0,0,0,0,0,0,0,0,0,462,1,0,0,0,10,0,0,0,0,4,241,275,0,0,435,0,5,0,0,6,6209,0,0,4279,3,0,1,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,30,0,0,0,12,3,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,3,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,167,1,1,1,0,11,0,0,0,0,9,205,207,0,16,9,0,0,0,0,0,357,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,36,0,0,0,0,0,0,0,0,0,0,0,1,0,2,609,256,5 +0,0,0,13,0,40,209,0,155,13,53,0,1,1,28,0,42,0,7,6,0,0,0,2,0,3,9,0,8,0,1,0,0,0,18,0,40,71,14,0,289,0,0,0,1,0,0,1,0,0,0,0,4,192,0,0,0,0,0,1,0,0,1,1,0,30,0,0,3380,40,496,0,9,0,0,0,0,0,3,0,0,0,0,1,3,6,862,0,0,18,0,0,5,130,0,1089,220,1,0,0,2,0,691,0,18,0,2,1543,0,0,0,0,13,0,1,0,0,0,0,1,0,0,0,15,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,17,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,533,0,93,0,0,0,8,33,82,1980,540,0,0,0,0,1,0,1,0,0,0,0,0,0,1247,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,24,228,14,0,0,417,0,710,0,0,0,321,91,0,0,0,0,0,0,0,0,0,496,1,0,0,0,8,0,0,0,0,5,134,262,0,0,512,0,0,0,0,2,238,0,0,8,0,0,1,0,0,0,0,0,1,0,5,0,6,0,0,0,0,0,16,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,24,0,0,0,0,1,58,83,0,21,0,0,0,0,0,0,333,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,99,5 +0,0,0,18,0,56,20,0,127,59,33,0,1,2,80,0,107,0,7,9,0,0,0,4,6,6,32,0,25,0,4,1,0,0,28,0,56,183,41,0,283,0,0,0,1,0,0,2,0,0,0,0,16,202,0,0,0,0,0,1,0,0,0,6,0,71,0,0,3735,56,440,0,30,0,0,0,0,0,8,0,0,0,0,0,6,9,89,0,0,28,0,0,5,65,0,680,110,3,0,0,2,0,741,0,54,0,3,2467,0,0,0,0,65,0,0,0,0,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,178,0,109,0,0,0,32,111,123,1114,192,0,0,0,0,1,0,0,0,0,0,0,0,0,739,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,18,81,453,22,0,0,273,0,920,0,0,0,160,129,0,0,0,0,0,0,0,0,0,377,1,0,0,0,19,0,0,0,0,11,166,136,0,0,272,0,0,0,0,1,7827,0,0,107,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,72,1,1,1,0,75,0,0,0,0,1,84,111,0,68,0,0,0,0,0,0,298,17,0,0,0,0,0,0,0,0,0,0,0,0,0,1,65,0,0,0,0,0,0,0,0,0,0,0,0,0,1,401,174,5 +0,0,0,10,0,38,128,0,80,1,42,0,0,17,11,0,997,0,6,1,0,0,0,9,0,11,0,0,18,0,1,0,0,0,2,54428,38,6,0,0,73,0,3,0,1,0,0,3,0,0,0,0,1,1008,0,0,0,0,0,1,0,0,0,0,0,3,0,0,412324,38,1575,0,15,0,0,0,0,0,229,0,0,0,0,0,9,146,63625,0,0,2,0,0,0,0,0,635,68,5,1,0,2,0,1324,0,1,195,0,7079,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,12,12,12,0,0,0,57463,0,42,0,0,0,8,11,1076,4858,57424,0,0,0,0,1,0,3,0,0,0,0,0,0,3914,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,242,20,470,10,0,0,717,0,391,0,0,0,520,21,0,0,0,0,0,0,0,0,0,1281,1,0,0,0,10,0,0,0,0,2,252,86,0,0,265,0,0,0,0,0,5684,1,0,4439,113,0,1,1,1,0,0,0,3,0,0,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,113,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,38,0,0,0,0,1,40,337,0,16,14,0,0,0,0,0,232,10,0,0,0,0,0,0,0,0,0,0,0,3,0,2,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3105,119,5 +2,0,0,9,1,60,38,1,109,12,26,0,0,2,30,0,90,0,9,5,0,0,0,5,0,10,6,0,7,0,2,0,0,1,26,0,61,236,10,0,184,0,0,0,1,0,0,2,0,0,0,0,4,297,0,0,0,0,0,1,0,0,0,0,0,37,0,0,3463,60,264,0,7,0,0,0,0,0,14,0,0,0,0,0,7,15,721,0,1,26,1,0,5,52,0,580,80,3,0,0,4,1,413,0,21,0,0,1759,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,9,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,1,4,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,10,10,10,0,0,0,465,0,93,0,0,0,6,180,247,1660,853,0,0,0,0,1,0,4,0,0,0,0,0,0,604,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,151,62,479,10,0,0,490,0,1660,0,1,0,241,45,0,0,0,0,0,0,0,0,0,304,1,0,0,0,10,0,0,0,0,3,168,209,0,0,161,0,0,0,0,0,1049,0,0,188,3,0,1,1,1,0,0,0,5,0,0,0,1,0,0,0,0,0,13,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,89,1,1,1,0,35,0,0,0,0,9,87,224,0,16,9,0,0,0,0,0,216,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,20,0,0,0,0,0,0,0,0,0,0,0,1,0,3,10544,418,5 +0,0,0,0,0,10,2,0,3,0,1,0,0,0,2,0,9,0,6,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,10,6,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,18,10,19,0,1,0,0,0,0,0,0,0,0,0,0,0,2,2,5,0,0,1,0,0,0,0,0,7,0,0,0,0,2,0,8,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,26,6,23,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,35,0,0,0,38,0,56,0,0,0,5,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,3,0,0,0,0,0,92,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,1,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,3,5 +0,0,0,3,0,15,2,0,6,0,2,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,15,6,0,0,9,0,0,0,1,0,0,1,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,159,15,29,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,21,0,0,2,0,0,0,0,0,7,0,1,0,0,2,0,7,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,55,0,0,0,0,3,34,6,43,0,0,0,0,1,0,0,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,85,3,0,0,116,0,166,0,0,0,51,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,1,97,38,0,0,0,0,0,0,0,1,26,0,0,8,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,0,0,0,0,0,1,17,94,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,98,10,5 +2,0,0,8,1,33,48,1,88,0,19,1,0,0,9,0,85,0,9,2,0,0,0,3,2,1,6,0,8,0,3,0,0,1,13,0,34,251,7,0,106,0,0,0,1,0,0,7,0,0,0,0,5,172,0,0,0,0,0,1,0,0,0,0,0,14,0,0,1378,33,254,0,11,0,0,0,0,0,21,0,0,0,0,0,3,11,191,0,1,13,1,0,4,49,0,469,60,6,0,0,4,1,331,0,4,0,0,1027,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,12,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,198,0,112,0,0,0,10,23,91,361,188,0,0,0,0,1,0,4,0,0,0,0,0,0,550,0,0,0,0,0,0,0,0,0,2,0,0,7,0,0,0,0,0,0,0,0,127,20,398,10,0,0,453,0,1616,0,1,0,229,40,0,0,0,0,0,0,0,0,0,259,1,0,0,0,7,0,0,0,0,1,160,193,0,0,144,0,0,0,0,1,500,0,0,140,0,0,1,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,55,1,1,1,0,17,0,0,0,0,9,47,275,0,18,0,0,0,0,0,0,190,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,1,0,3,379,136,5 +0,0,0,3,4,21,121,20,32,0,7,0,0,0,5,0,69,0,7,8,0,4,1,1,4,0,0,0,0,0,1,0,0,4,9,0,25,171,0,0,107,0,0,0,1,0,0,8,0,0,0,0,0,420,0,0,0,0,0,1,0,0,0,0,0,5,0,0,2319,21,483,0,1,0,0,0,0,0,24,12,0,0,0,0,1,11,258,0,20,9,4,0,0,0,0,24,0,9,0,0,2,4,283,0,3,0,0,471,0,0,0,0,0,0,5,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,211,0,77,0,0,0,0,3,54,10,285,0,0,0,0,1,0,0,0,0,0,0,0,0,789,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,6,258,7,0,0,395,0,481,0,0,0,312,21,0,0,0,0,0,0,0,0,0,241,1,0,0,0,18,0,0,0,0,0,139,168,0,0,0,0,0,0,0,0,472,0,0,322,0,0,1,0,0,0,0,0,19,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,34,584,0,1,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,8,0,4,253,89,5 +0,0,0,9,0,47,18,0,96,10,30,0,0,8,17,0,773,0,6,3,0,0,0,8,0,11,3,0,10,0,1,0,0,0,10,4471,47,39,3,0,153,0,0,0,1,0,0,2,0,0,0,0,2,376,0,0,0,0,0,1,0,0,0,0,0,22,0,0,15000,47,974,0,7,0,0,0,0,0,34,0,0,0,0,0,9,59,2573,0,0,10,0,0,2,41,0,618,80,4,0,0,2,0,1075,0,11,22,0,2494,0,0,0,0,17,0,5,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,778,0,82,0,0,0,4,11,556,1093,753,0,0,0,0,1,0,3,0,0,0,0,0,0,1246,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,130,39,338,11,0,0,435,0,891,0,0,0,263,15,0,0,0,0,0,0,0,0,0,948,1,0,0,0,11,0,0,0,0,2,150,244,0,0,180,0,0,0,0,0,3055,1,0,1073,16,0,1,2,0,0,0,0,4,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,12,0,0,0,0,1,57,410,0,11,14,0,0,0,0,0,209,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1265,80,5 +0,0,0,30,8,131,284,26,856,139,160,0,0,13,193,0,1670,0,18,21,0,6,6,21,14,32,52,0,71,0,6,1,0,8,64,1253,139,102,1733,0,1231,0,0,0,1,0,0,13,0,0,0,0,35,1397,0,0,0,0,0,1,0,0,0,13,0,182,0,0,21034,131,4268,0,76,0,0,0,0,0,72,18,0,0,0,0,13,65,3261,0,26,64,8,0,7,500,0,4520,385,18,0,0,6,8,4739,0,110,19,0,7329,0,0,0,0,145,0,11,0,0,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,7,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,1,0,34,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,12,12,12,0,2,0,1406,0,240,0,0,0,73,328,478,4675,1300,0,0,0,0,1,0,11,0,0,0,0,0,0,3450,0,0,0,0,0,0,0,0,0,0,0,0,13,1,2,0,0,0,0,1,0,313,265,1392,105,0,0,1463,0,2101,0,4,0,769,196,0,0,0,0,0,0,4,0,0,3194,1,0,0,0,68,0,0,0,0,44,378,1335,0,0,1045,0,1,0,0,0,10139,1,0,1065,15,0,1,1,1,0,0,0,19,0,0,0,16,0,0,0,0,0,94,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,23,0,0,0,0,0,15,11,4,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,2,156,1,1,1,0,460,0,0,0,0,65,203,902,0,150,12,0,0,0,0,0,1581,32,0,0,0,0,0,0,0,0,0,0,0,11,0,1,155,0,0,0,0,0,0,0,0,0,0,0,14,0,8,3044,667,5 +4,0,0,11,0,18,18,0,49,17,15,0,0,0,24,0,37,0,7,2,0,0,0,1,1,2,9,0,5,0,1,1,0,0,7,0,18,25,6,0,123,0,0,0,1,0,0,2,0,0,0,0,3,90,0,1,0,0,0,1,0,0,0,5,0,30,0,0,900,18,163,0,7,0,0,0,0,0,8,0,0,0,0,0,1,5,121,0,0,7,0,0,2,34,0,302,50,3,0,0,2,0,268,0,20,0,0,401,0,0,1,0,7,1,0,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,118,0,73,0,0,0,6,25,37,240,135,0,0,0,0,1,0,0,0,0,0,0,0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,28,112,14,0,0,149,0,346,0,0,0,90,10,0,0,0,0,0,0,0,0,0,150,1,0,0,0,4,0,0,0,0,3,104,99,0,0,121,0,0,0,0,4,139,0,0,130,0,0,1,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,12,0,0,0,0,1,25,114,0,18,0,0,0,0,0,0,129,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,2,206,80,5 +0,0,0,12,0,48,18,0,172,30,38,0,1,4,41,0,83,0,7,13,0,0,0,3,2,11,21,0,24,0,1,0,0,0,17,0,48,365,52,0,362,0,0,0,1,0,0,15,0,0,0,0,13,297,0,0,0,0,0,1,0,0,0,0,0,42,0,0,6984,48,478,0,25,0,0,0,0,0,50,0,0,0,0,2,4,31,1028,0,0,17,0,0,2,110,0,1004,60,29,2,0,2,0,843,0,22,0,8,2741,0,0,0,0,6,0,10,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,34,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,850,0,219,0,0,0,26,169,102,1126,760,0,0,0,0,1,0,8,0,4,0,0,0,0,1199,0,0,0,0,0,0,0,0,0,0,0,0,15,0,4,0,0,0,0,0,0,25,47,462,13,0,0,489,0,1922,0,0,0,353,72,0,0,0,0,0,0,6,0,0,364,1,0,0,0,18,0,0,0,0,13,157,506,0,0,165,0,2,0,0,1,918,0,0,339,0,0,1,0,0,0,0,0,36,0,0,0,11,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,104,0,0,0,0,1,65,690,0,57,0,0,0,0,0,0,390,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,34,0,0,0,0,0,0,0,0,0,0,0,0,0,7,838,185,5 +1,0,0,8,1,33,188,1,309,25,87,0,0,0,39,0,103,0,9,7,0,0,0,2,0,5,15,0,9,0,1,0,0,1,17,0,34,96,20,0,499,0,0,0,1,0,0,1,0,0,0,0,5,227,0,0,0,0,0,1,0,0,3,0,0,58,0,0,9526,33,703,0,10,0,0,0,0,0,6,0,0,0,3,0,3,5,1462,0,1,17,1,0,9,267,0,2161,370,2,0,0,4,1,1346,0,34,0,0,1221,0,0,1,0,14,0,2,0,0,0,0,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,1,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,1176,0,85,0,0,0,10,51,63,1952,1039,0,0,0,0,1,0,9,0,0,0,0,0,0,2816,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,122,54,428,9,0,0,560,0,1491,0,1,0,365,35,0,0,0,0,0,0,0,0,0,735,1,0,0,0,9,0,0,0,0,5,174,541,0,0,848,0,1,0,0,8,1340,0,0,2823,0,0,1,0,0,0,0,0,2,0,1,0,9,0,0,0,0,0,26,0,0,4,1,20,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,33,1,1,1,0,45,0,0,0,0,9,51,175,0,30,0,0,0,0,0,0,623,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,33,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1103,154,5 +5,0,0,16,0,60,36,0,77,2,31,0,0,7,12,0,828,0,6,2,0,0,0,8,0,11,0,0,22,0,1,0,0,0,23,7341,60,6,0,0,117,0,0,0,1,0,0,4,0,0,0,0,1,530,0,1,0,0,0,1,0,0,0,19,0,10,0,0,54140,60,1087,0,19,0,0,0,0,0,69,0,0,0,0,0,9,171,9449,0,0,23,0,0,1,19,0,540,45,9,1,0,2,0,1040,0,3,127,0,4569,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,6032,0,110,0,0,0,10,13,846,1612,5977,0,0,0,0,1,0,4,0,0,0,0,0,0,846,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,106,79,388,22,0,0,422,0,468,0,0,0,245,30,0,0,0,0,0,0,0,0,0,997,1,0,0,0,10,0,0,0,0,1,178,78,0,0,202,0,0,0,0,0,3724,1,0,383,28,0,1,1,0,0,0,0,12,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,48,0,0,0,0,1,83,233,0,20,14,0,0,0,0,0,144,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1874,131,5 +6,0,0,17,1,79,183,1,290,56,83,1,1,6,88,1,122,0,9,12,0,0,0,7,1,15,18,0,17,0,1,0,0,1,28,0,80,227,29,0,579,0,0,0,1,0,0,2,0,0,0,0,9,384,0,0,0,0,0,1,0,0,3,1,0,80,0,0,13892,79,762,0,16,0,0,0,0,0,12,0,0,0,0,0,11,19,2236,0,1,28,1,0,8,226,0,1984,360,4,0,0,4,1,1339,0,62,0,5,3235,0,6,0,0,89,0,4,0,0,0,0,1,1,0,0,27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,90,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,10,10,10,0,0,0,1708,0,142,0,0,0,16,87,285,2413,1575,0,0,0,0,1,0,4,0,0,0,0,0,0,3395,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,159,94,601,20,0,0,704,0,3474,0,1,0,412,543,0,0,0,0,0,0,0,0,0,784,1,0,0,0,20,0,0,0,0,8,213,492,0,0,955,0,4,0,0,3,1318,0,0,2359,3,0,1,1,0,0,0,0,5,0,5,0,10,0,0,0,0,0,67,0,0,2,1,4,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,3,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,102,1,1,1,0,53,0,0,0,0,9,108,212,0,42,9,0,0,0,0,0,621,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,68,0,0,0,0,0,0,0,0,0,0,0,1,0,3,1318,193,5 +1,0,0,20,0,83,56,0,197,9,49,0,0,6,98,66,1481,0,29,9,0,0,0,10,11,20,39,0,39,0,8,1,0,0,21,994,83,6,70,0,496,0,0,0,1,0,0,11,0,0,0,0,26,559,0,0,0,0,0,1,0,0,0,0,0,36,0,0,32274,83,2123,0,45,0,0,0,0,0,64,0,0,0,0,0,11,48,7378,0,0,21,0,0,5,104,0,1266,185,21,0,0,2,0,2488,0,18,9,0,7599,0,0,0,0,18,1,19,0,0,0,0,1,0,0,0,11,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,20,1,1,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,82,12,12,12,0,0,0,5906,0,210,0,0,0,52,2110,576,1557,5787,0,0,0,0,1,0,5,0,0,0,0,0,0,2673,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,1,0,84,61,991,29,0,0,976,0,1386,0,0,0,732,83,0,0,0,0,0,0,0,0,0,1982,1,0,0,0,30,0,0,0,0,25,551,352,0,0,447,0,16,0,0,0,8371,1,0,1919,8,0,1,1,1,0,0,0,29,0,0,0,4,0,0,0,0,0,74,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,8,12,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,143,1,1,1,0,297,0,0,0,0,1,104,630,0,95,12,0,1,0,0,0,609,109,0,0,0,0,0,0,0,0,0,0,0,3,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,11,3556,347,5 +2,0,0,18,0,59,21,0,97,39,25,0,1,5,57,1,88,0,7,8,0,0,0,6,3,14,24,0,18,0,1,0,0,0,24,0,59,159,27,0,324,0,0,0,1,0,0,2,0,0,0,0,9,207,0,0,0,0,0,1,0,0,1,2,0,40,0,0,3653,59,339,0,17,0,0,0,0,0,12,0,0,0,0,0,8,17,1172,0,0,24,0,0,2,43,0,496,80,3,0,0,2,0,547,0,28,0,4,2267,0,0,0,0,7,0,5,0,2,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,86,10,10,10,0,0,0,841,0,95,0,0,0,16,81,238,686,852,0,0,0,0,1,0,3,0,0,0,0,0,0,538,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,37,64,360,27,0,0,342,0,710,0,0,0,211,128,0,0,0,0,0,0,0,0,0,302,1,0,0,0,17,0,0,0,0,8,195,140,0,0,167,0,0,0,0,1,610,0,0,39,3,0,1,1,0,0,0,0,2,0,0,0,4,0,0,0,0,0,32,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,71,1,1,1,0,56,0,0,0,0,1,83,202,0,48,9,0,0,0,0,0,220,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,43,0,0,0,0,0,0,0,0,0,0,0,0,0,2,569,160,5 +0,0,0,4,0,38,182,0,37,0,2,0,0,2,2,0,822,0,6,2,0,0,0,8,0,12,0,0,5,0,1,0,0,0,3,9678,38,6,0,0,21,0,2,0,1,0,0,3,0,0,0,0,1,5647,0,0,0,0,0,1,0,0,0,0,0,3,0,0,354263,38,1566,0,1,0,0,0,0,0,359,0,0,0,0,0,9,25,60048,0,0,3,0,0,0,0,0,101,5,5,1,0,2,0,1174,0,0,0,0,7459,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,52910,0,46,0,0,0,0,3,623,2064,52884,0,0,0,0,1,0,3,0,0,0,0,0,0,868,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,10,304,4,0,0,810,0,380,0,0,0,640,15,0,0,0,0,0,0,0,0,0,1053,1,0,0,0,10,0,0,0,0,1,159,192,0,0,0,0,0,0,0,0,5535,1,0,475,181,0,1,1,1,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,181,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,0,0,0,0,0,1,41,665,0,2,16,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3329,70,5 +0,0,0,3,0,34,11,0,28,0,2,0,0,2,2,0,514,0,6,2,0,0,0,7,0,10,0,0,3,0,1,0,0,0,2,898,34,6,0,0,22,0,1,0,1,0,0,1,0,0,0,0,1,264,0,0,0,0,0,1,0,0,0,0,0,2,0,0,35997,34,569,0,1,0,0,0,0,0,18,0,0,0,0,0,8,18,6958,0,0,2,0,0,0,0,0,86,5,2,0,0,2,0,527,0,0,0,0,2842,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,3534,0,34,0,0,0,0,3,253,1131,3522,0,0,0,0,1,0,3,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,10,183,3,0,0,231,0,317,0,0,0,86,5,0,0,0,0,0,0,0,0,0,565,1,0,0,0,9,0,0,0,0,0,117,38,0,0,0,0,0,0,0,0,3141,1,0,775,9,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,9,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,0,0,0,0,0,1,36,222,0,2,12,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1777,32,5 +4,0,0,14,0,68,27,0,152,22,28,0,0,11,40,0,1195,0,7,5,0,0,0,7,2,12,12,0,15,0,1,0,0,0,26,762,68,339,17,0,231,0,0,0,1,0,0,19,0,0,0,0,6,468,0,0,0,0,0,1,0,0,0,0,0,27,0,0,10089,68,1601,0,13,0,0,0,0,0,85,0,0,0,0,3,8,45,1642,0,0,26,0,0,4,63,0,789,90,31,0,0,2,0,1699,0,15,1,9,2473,0,0,0,0,6,2,1,0,0,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,12,12,12,0,0,0,952,0,286,0,0,0,11,45,315,945,946,0,0,0,0,1,0,3,0,0,0,0,0,0,1755,0,0,0,0,0,0,0,0,0,0,0,0,19,1,2,0,0,0,0,1,0,111,49,428,15,0,0,534,0,870,0,0,0,364,133,0,0,0,0,0,0,7,0,0,1460,1,0,0,0,14,0,0,0,0,5,165,311,0,0,147,0,2,0,4,2,3180,1,0,703,6,0,1,5,1,0,0,0,44,0,0,0,6,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,78,1,1,1,0,30,0,0,0,0,1,94,690,0,28,12,0,0,0,0,0,327,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,32,0,0,0,0,0,0,0,0,0,0,0,0,0,14,1598,153,5 +1,0,0,10,0,28,6,0,33,43,9,1,0,0,55,0,23,0,7,1,0,0,0,4,0,0,0,0,5,0,6,0,0,0,9,0,28,14,0,0,164,0,0,0,1,0,0,4,0,0,0,0,5,76,0,1,0,0,0,1,0,0,0,0,0,52,0,0,65221,28,151,0,11,0,0,0,0,0,17,0,0,0,1,0,4,9,14067,0,0,9,0,0,1,14,0,162,20,6,0,0,2,0,218,0,46,0,0,752,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,55,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,7611,0,76,0,0,0,10,13,62,535,7644,0,0,0,0,1,0,0,0,0,0,0,0,0,10464,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,54,195,17,0,0,226,0,272,0,0,0,127,35,0,3,0,0,0,0,0,0,0,134,1,0,0,0,5,0,0,0,0,6,131,99,0,0,41,0,0,0,0,0,8917,0,0,23315,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,50,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,15,0,0,0,0,1,37,288,0,11,0,0,0,0,0,0,150,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,45,0,0,0,0,0,0,0,0,0,0,0,0,0,5,7572,30,5 +3,0,0,8,1,68,68,1,101,4,23,0,0,9,11,0,1749,0,9,6,0,0,0,8,0,13,9,0,24,0,1,0,0,1,24,23647,69,54,9,0,85,0,0,0,1,0,0,2,0,0,0,0,4,965,0,0,0,0,0,1,0,0,0,5,0,7,0,0,211220,68,2040,0,21,0,0,0,0,0,85,0,0,0,0,0,10,121,34891,0,1,24,1,0,1,0,0,426,30,3,0,0,4,1,1899,0,4,83,0,8232,0,0,0,0,3,3,3,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,81,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,12,12,12,0,0,0,28677,0,76,0,0,0,16,63,895,2681,28618,0,0,0,0,1,0,8,0,0,0,0,0,0,1445,3,0,0,0,0,0,0,0,0,0,0,0,81,4,0,0,0,0,0,1,0,216,34,738,9,0,0,728,0,748,0,1,0,419,89,0,0,0,0,0,0,0,0,0,1970,1,0,0,0,14,0,0,0,0,5,310,47,0,0,114,0,4,0,0,0,7776,1,0,475,46,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,5,0,0,1,9,2,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,100,1,1,1,0,66,0,0,0,0,9,93,302,0,33,14,0,0,0,0,0,150,1,0,0,0,0,0,0,0,0,0,0,0,4,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,0,2,3186,163,5 +33,0,0,42,1,241,136,1,394,82,103,0,2,5,140,0,126,0,7,11,0,2,0,8,5,18,33,0,45,0,3,3,0,1,188,0,242,184,39,0,1275,0,0,0,1,0,0,4,0,0,0,0,16,453,0,0,0,0,0,1,0,0,2,46,0,98,0,0,7618,241,1106,0,49,0,0,0,0,0,25,3,0,0,0,0,11,25,519,0,1,188,1,0,6,284,0,2440,250,6,0,0,4,1,2030,0,75,0,4,6928,0,0,11,0,31,0,2,0,0,0,0,1,0,0,0,22,1,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,5,0,17,0,0,0,0,0,0,27,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,192,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,133,10,10,10,0,0,0,539,0,362,0,0,0,30,122,545,3148,582,0,0,0,0,1,0,4,0,0,0,0,0,0,2655,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,43,146,1666,59,0,0,1124,0,2007,0,0,0,887,185,0,0,0,0,0,0,0,0,0,913,1,0,0,0,26,0,0,0,0,10,418,826,0,0,520,0,0,0,8,4,2895,0,0,145,3,0,1,1,0,0,0,0,6,0,0,0,4,0,0,0,0,0,80,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,37,0,0,0,0,0,3,8,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,292,1,1,1,0,191,0,0,0,0,9,430,428,0,93,9,0,0,0,0,0,869,15,0,0,0,0,0,0,0,0,0,0,0,2,0,1,94,0,0,0,0,0,0,0,5,0,0,0,2,0,3,4447,319,5 +0,0,0,11,0,22,6,0,24,0,2,0,0,0,6,0,78,0,7,1,0,0,0,1,3,0,0,0,6,0,1,0,0,0,7,0,22,179,7,0,82,0,5,0,1,0,0,7,0,0,0,0,3,115,0,0,0,0,0,1,0,0,0,0,0,2,0,0,4064,22,159,0,7,0,0,0,0,0,25,0,0,0,0,0,1,14,723,0,0,7,0,0,0,0,0,44,0,9,0,0,2,0,44,0,0,0,0,631,0,0,0,0,5,0,8,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,6,0,0,0,0,0,0,244,0,129,0,0,0,6,15,50,89,317,0,0,0,0,1,0,0,0,0,0,0,0,0,897,0,0,0,0,0,0,0,0,0,0,0,0,7,0,3,0,0,0,0,0,0,8,7,200,21,0,0,414,0,492,0,0,0,328,15,0,0,0,0,0,0,4,0,0,123,1,0,0,0,5,0,0,0,0,1,137,205,2,0,0,0,136,0,0,0,462,0,0,907,0,0,1,3,1,0,0,0,13,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,9,0,0,0,0,1,29,362,0,7,0,0,1,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,6,542,66,5 +7,0,0,19,0,77,12,0,47,32,14,0,1,3,67,2,82,0,7,5,0,0,0,5,6,6,18,0,25,0,14,0,0,0,47,0,77,218,37,0,290,0,0,0,1,0,0,5,0,0,0,0,23,303,0,0,0,0,0,1,0,0,0,0,0,44,0,0,4954,77,316,0,40,0,0,0,0,0,22,0,0,0,0,0,5,13,1106,0,0,47,0,0,1,5,0,285,10,7,0,0,2,0,407,0,41,2,6,2615,0,0,0,0,28,0,5,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,72,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,738,0,179,0,0,0,46,112,173,613,786,0,0,0,0,1,0,0,0,0,0,0,0,0,960,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,13,57,452,22,0,0,501,0,1157,0,0,0,350,79,0,0,0,0,0,0,4,0,0,235,1,0,0,0,16,0,0,0,0,23,195,188,0,0,64,0,0,0,0,1,4630,0,0,248,0,0,1,0,0,0,0,0,15,0,0,0,7,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,15,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,109,1,1,1,0,115,0,0,0,0,1,124,574,0,63,0,0,0,0,0,0,199,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,34,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1128,355,5 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,58,0,0,0,0,0,1,0,0,0,0,0,1,0,0,385,9,36,0,1,0,0,0,0,0,9,0,0,0,0,0,1,4,52,0,0,0,0,0,0,0,0,9,0,3,0,0,2,0,7,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,63,0,63,0,0,0,0,3,26,7,71,0,0,0,0,1,0,0,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,82,2,0,0,128,0,169,0,0,0,72,11,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,95,60,0,0,0,0,0,0,0,0,32,0,0,41,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,224,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,129,18,5 +0,0,0,17,0,73,83,0,188,66,64,0,1,13,82,0,1284,0,7,6,0,0,0,9,1,14,18,0,45,0,1,1,0,0,21,17081,73,211,18,0,426,0,0,0,1,0,0,10,0,0,0,0,7,837,1,0,0,0,0,1,0,0,3,0,0,60,0,0,108779,73,1876,0,43,0,0,0,0,0,97,0,0,0,0,0,10,231,16150,0,0,21,0,0,2,82,0,1157,175,16,1,0,2,0,2039,0,52,92,7,6688,0,0,0,0,17,0,10,0,0,0,0,1,2,0,0,15,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,13,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,12,12,12,0,0,0,12542,0,202,0,0,0,30,72,1294,3038,12529,0,0,0,0,1,0,6,0,0,0,0,0,0,2260,0,0,0,0,0,0,0,0,0,0,0,0,10,1,2,0,0,0,0,1,0,157,103,659,18,0,0,741,0,1343,0,0,0,534,117,0,0,0,0,0,0,0,0,0,1722,1,0,0,0,16,0,0,0,0,6,204,399,0,0,496,0,0,0,0,3,5474,1,0,1560,39,0,1,1,1,0,0,0,23,0,0,0,16,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,39,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,94,1,1,1,0,120,0,0,0,0,1,94,673,0,65,14,0,0,0,0,0,428,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,72,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2621,339,5 +5,0,0,12,0,65,28,0,404,21,89,0,1,4,100,0,185,0,7,6,0,0,0,5,21,23,75,0,40,0,1,0,0,0,31,0,65,135,75,0,881,0,0,0,1,0,0,2,0,0,0,0,26,207,0,1,0,0,0,1,0,0,0,0,0,142,0,0,2593,65,968,0,42,0,0,0,0,0,9,0,0,0,0,0,5,8,121,0,0,31,0,0,1,323,0,2707,115,4,0,0,2,0,2320,0,18,0,5,2450,0,0,0,0,4,1,2,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,0,0,0,0,3,0,0,0,0,36,0,1,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,122,0,0,0,0,0,0,209,0,107,0,0,0,52,253,123,2376,189,0,0,0,0,1,0,0,0,0,0,0,0,0,641,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,13,49,390,13,0,0,321,0,738,0,0,0,182,155,0,0,0,0,0,0,0,0,0,818,1,0,0,0,32,0,0,0,0,25,175,865,0,0,331,0,0,0,0,0,911,0,0,41,0,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,22,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,79,1,1,1,0,135,0,0,0,0,1,96,201,0,139,0,0,0,0,0,0,915,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2436,109,5 +0,0,0,9,0,28,78,0,312,4,109,0,0,0,36,0,58,0,7,3,0,0,0,1,2,4,21,0,11,0,1,3,0,0,10,0,28,6,13,0,443,0,0,0,1,0,0,3,0,0,0,0,7,295,0,0,0,0,0,1,0,0,1,0,0,24,0,0,2372,28,635,0,15,0,0,0,0,0,15,0,0,0,1,0,1,5,128,0,0,10,0,0,4,290,0,2313,500,6,0,0,2,0,1390,0,9,0,0,1951,0,0,0,0,231,0,5,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,148,0,97,0,0,0,14,63,55,2656,176,0,0,0,0,1,0,0,0,0,0,0,0,0,1570,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,20,191,26,0,0,301,0,699,0,0,0,219,54,0,0,0,0,0,0,0,0,0,600,1,0,0,0,6,0,0,0,0,2,121,586,0,0,1152,0,0,0,0,1,207,0,0,477,0,0,1,0,1,0,0,0,7,0,0,0,7,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,72,0,0,0,0,1,38,143,0,40,0,0,0,0,0,0,592,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,854,704,5 +2,0,0,12,1,53,35,1,72,3,17,0,0,17,11,0,149,0,9,2,0,0,0,8,0,10,6,0,9,0,2,2,0,1,6,7954,54,54,0,0,93,0,0,0,1,0,0,1,0,0,0,0,4,493,0,0,0,0,0,1,0,0,0,4,0,4,0,0,17925,53,262,0,9,0,0,0,0,0,19,0,0,0,0,0,9,44,3181,0,1,6,1,0,1,0,0,488,55,2,0,0,4,1,267,0,2,61,0,3124,0,0,0,0,5,2,3,0,1,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,0,0,0,1049,0,55,0,0,0,8,16,519,916,1032,0,0,0,0,1,0,6,0,0,0,0,0,0,357,2,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,383,37,462,13,0,0,516,0,648,0,1,0,217,22,0,0,0,0,0,0,0,0,0,310,1,0,0,0,10,0,0,0,0,4,188,80,0,0,72,0,0,0,0,0,17295,1,0,103,9,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,9,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,66,1,1,1,0,20,0,0,0,0,9,60,172,0,17,12,0,0,0,0,0,181,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,20,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1365,100,5 +0,0,0,15,0,50,70,0,347,4,93,0,0,2,12,0,58,0,7,5,0,0,0,6,2,8,17,0,12,0,2,1,0,0,14,1730,50,50,12,0,592,0,0,0,1,0,0,8,1,0,0,0,7,320,0,0,0,0,0,1,0,0,0,0,0,69,0,0,3915,50,627,0,13,0,0,0,0,0,39,0,0,0,0,0,8,28,728,0,0,14,0,0,4,300,0,2406,185,15,0,0,2,0,1602,0,6,0,0,2991,0,0,0,0,10,0,6,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,10,10,10,0,0,0,430,0,144,0,0,0,12,42,236,2105,401,0,0,0,0,1,0,3,0,5,0,0,0,0,1794,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,37,22,436,19,0,0,574,0,2427,0,0,0,338,529,0,0,0,0,0,0,1,0,0,589,1,0,2,0,13,0,0,0,0,7,166,909,0,0,419,0,0,0,0,0,374,0,0,2302,3,0,1,1,1,0,0,0,24,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,17,0,1,0,2,1,64,817,0,31,9,0,0,0,0,0,778,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,7,457,267,5 +2,0,0,16,1,119,85,1,196,25,48,0,0,13,43,0,181,0,9,7,0,0,0,27,1,14,15,0,34,0,25,0,0,1,62,3550,120,405,17,0,382,0,0,0,1,0,0,23,10,0,0,0,30,909,0,0,0,0,0,1,0,0,0,3,0,27,0,0,19023,119,768,0,55,0,0,0,0,0,83,0,0,0,0,0,29,84,2667,0,1,62,1,0,3,100,0,1246,190,57,1,0,4,1,858,0,23,32,10,10561,0,0,0,0,9,2,1,0,0,0,0,1,0,0,0,27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,0,2,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,2,0,0,231,0,0,0,0,31,0,1,0,0,0,0,0,0,0,0,0,1,4,2,0,0,0,0,2,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,12,12,12,0,0,0,1530,0,567,0,0,0,59,71,621,1681,1578,0,0,0,0,1,0,3,0,0,0,0,0,0,3043,2,0,0,0,0,0,0,0,0,0,0,0,23,3,6,0,0,0,0,1,0,223,60,1597,18,0,0,1188,0,1066,0,1,0,789,334,0,0,0,0,0,0,7,0,0,575,1,0,33,0,35,0,0,0,0,7,343,556,0,0,486,0,0,0,0,1,2395,1,0,1032,11,0,1,1,0,0,0,0,90,0,0,0,12,0,0,0,0,0,25,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,11,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,1,160,1,1,1,0,99,0,0,0,0,9,182,1626,0,74,14,0,0,0,0,0,536,5,0,0,0,0,0,0,0,0,0,0,0,3,0,1,33,0,0,0,0,0,0,0,0,0,0,0,1,0,18,2255,491,5 +1,0,0,7,0,26,10,0,31,1,7,0,0,0,4,1,25,0,7,4,0,0,0,3,0,1,3,0,4,0,1,0,0,0,5,0,26,6,6,0,49,0,0,0,1,0,0,1,0,0,0,0,2,107,0,0,0,0,0,1,0,0,0,0,0,7,0,0,750,26,87,0,5,0,0,0,0,0,6,0,0,0,0,0,4,6,110,0,0,5,0,0,1,15,0,157,15,2,0,0,2,0,113,0,2,0,0,493,0,0,0,0,4,1,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,133,0,57,0,0,0,4,15,69,176,162,0,0,0,0,1,0,0,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,6,135,10,0,0,175,0,371,0,0,0,79,42,0,0,0,0,0,0,0,0,0,85,1,0,0,0,7,0,0,0,0,3,112,77,0,0,31,0,0,0,0,0,109,0,0,95,0,0,1,9,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,6,0,0,0,0,1,31,166,0,9,0,0,0,0,0,0,82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,6,0,0,0,0,0,0,0,0,0,0,0,0,2,130,33,5 +2,0,0,6,0,21,4,0,46,7,11,0,0,0,20,0,31,0,7,3,0,0,0,2,1,2,6,0,4,0,1,0,0,0,10,0,21,6,4,0,119,0,0,0,1,0,0,6,0,0,0,0,2,140,0,0,0,0,0,1,0,0,0,2,0,9,0,0,3523,21,167,0,4,0,0,0,0,0,29,0,0,0,0,1,3,10,790,0,0,10,0,0,1,27,0,259,25,11,0,0,2,0,223,0,1,0,0,665,0,0,0,0,14,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,593,0,113,0,0,0,4,28,44,328,601,0,0,0,0,1,0,0,0,0,0,0,0,0,1050,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,19,226,23,0,0,316,0,515,0,0,0,248,22,0,0,0,0,0,0,7,0,0,119,1,0,0,0,6,0,0,0,0,3,171,183,0,0,52,0,0,0,0,0,286,0,0,527,0,0,1,0,1,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,24,0,0,0,0,1,31,457,0,13,0,0,0,0,0,0,161,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,6,861,85,5 +13,0,0,12,1,113,133,4,487,84,122,0,0,2,138,0,134,0,6,7,0,1,1,29,0,12,6,0,47,0,2,0,0,1,66,756,114,91,86,0,1125,0,0,0,1,0,0,18,0,0,0,0,23,531,0,0,0,0,0,1,0,0,3,6,0,189,0,0,14438,113,1574,0,46,0,0,0,0,0,222,3,0,0,0,0,12,42,2259,0,4,66,1,0,3,391,0,3347,370,30,0,0,2,1,2206,0,94,0,0,4582,0,2,1,0,25,3,1,0,0,0,3,1,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,4,0,0,0,0,0,0,1,2,12,0,0,0,0,0,2,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,168,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,0,24,12,12,12,0,0,0,1657,0,369,0,0,0,44,62,350,3275,1675,0,0,0,0,1,0,30,0,4,0,0,0,0,5316,0,0,0,0,0,0,0,8,0,16,0,0,18,1,0,0,0,0,0,3,2,40,112,967,13,0,0,1142,0,1340,0,0,0,902,84,0,0,0,0,0,0,0,0,0,1022,1,0,0,0,38,0,0,0,0,23,275,1220,0,0,1076,0,123,0,6,6,2478,1,0,1112,5,0,1,15,0,0,0,0,48,0,91,0,11,0,0,0,0,0,85,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,1,0,0,0,0,5,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,121,1,1,1,0,41,0,0,0,0,9,180,1118,0,55,12,0,0,0,0,0,1222,42,0,0,0,0,0,0,0,0,0,0,0,3,0,1,90,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6212,426,5 +0,0,0,6,0,27,30,0,93,0,30,0,0,0,21,1,46,0,7,2,0,0,0,3,11,2,9,0,24,0,4,2,0,0,11,0,27,6,29,0,172,0,0,0,1,0,0,34,0,0,0,0,17,1190,0,0,0,0,0,1,0,0,0,0,0,11,0,0,9742,27,475,0,31,0,0,0,0,0,115,0,0,0,0,0,3,51,2718,0,0,11,0,0,2,81,0,838,130,49,0,0,2,0,466,0,1,0,0,1507,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,31,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,2360,0,311,0,0,0,34,92,75,575,2330,0,0,0,0,1,0,0,0,0,0,0,0,0,1758,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,8,5,652,7,0,0,795,0,753,0,0,0,420,33,0,0,0,0,0,0,0,0,0,228,1,0,0,0,16,0,0,0,0,15,410,433,0,0,369,0,0,0,0,0,486,0,0,648,0,0,1,0,0,0,0,0,60,0,0,0,13,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,91,0,0,0,0,1,38,2040,0,41,0,0,0,0,0,0,301,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,22,976,350,5 +2,0,0,20,0,62,80,0,263,51,72,0,1,2,91,0,228,0,7,8,0,0,0,3,8,9,66,0,33,0,2,7,0,0,27,0,62,183,48,0,698,0,0,0,1,0,0,4,0,0,0,0,22,231,0,0,0,0,0,1,0,0,0,0,0,53,0,0,20544,62,871,0,43,0,0,0,0,0,20,0,0,0,0,1,5,12,1921,0,0,27,0,0,4,166,0,1562,285,7,0,0,6,0,1551,0,34,0,5,8941,0,0,0,0,31,0,1,0,0,0,0,1,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,54,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,140,0,0,0,0,0,0,1803,0,212,0,0,0,44,215,276,1146,1835,0,0,0,0,1,0,0,0,0,0,0,0,0,5633,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,24,88,678,42,0,0,518,0,1333,0,0,0,383,1479,0,0,0,0,0,0,0,0,0,744,1,0,0,0,19,0,0,0,0,15,207,424,0,0,734,0,0,0,0,1,2100,0,0,5157,0,0,1,0,1,0,0,0,8,0,0,0,12,0,0,0,0,0,50,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,21,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,212,1,1,1,0,214,0,0,0,0,1,89,484,0,117,0,0,0,0,0,0,529,11,0,0,0,0,0,0,0,0,0,0,0,0,0,1,69,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2357,310,5 +0,0,0,14,0,39,62,0,50,3,8,0,0,9,5,0,959,0,6,1,0,0,0,9,0,11,0,0,9,0,1,0,0,0,2,15569,39,6,0,0,61,0,2,0,1,0,0,3,0,0,0,0,1,593,0,0,0,0,0,1,0,0,0,0,0,4,0,0,335023,39,1247,0,6,0,0,0,0,0,121,0,0,0,0,0,9,40,57544,0,0,2,0,0,0,0,0,256,30,5,1,0,2,0,1117,0,0,10,0,4065,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,54239,0,55,0,0,0,3,6,494,999,54212,0,0,0,0,1,0,3,0,0,0,0,0,0,543,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,111,31,313,24,0,0,456,0,368,0,0,0,276,14,0,0,0,0,0,0,0,0,0,1099,1,0,0,0,10,0,0,0,0,2,156,69,0,0,24,0,2,0,0,0,3850,1,0,525,59,0,1,1,1,0,0,0,4,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,59,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,14,0,0,0,0,1,41,168,0,7,14,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1761,71,5 +0,0,0,0,0,20,4,0,34,11,3,0,1,1,9,0,44,0,7,3,0,0,0,1,1,1,9,0,6,0,1,0,0,0,6,0,20,18,9,0,49,0,0,0,0,0,0,0,0,0,0,0,3,75,0,0,0,0,0,1,0,0,0,0,0,0,0,0,351,20,109,0,7,0,0,0,0,0,0,0,0,0,0,0,1,1,18,0,0,6,0,0,0,0,0,38,0,0,0,0,2,0,120,0,0,0,2,857,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,51,0,30,0,0,0,6,28,52,74,56,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,14,139,0,0,0,109,0,580,0,0,0,34,10,0,0,0,0,0,0,0,0,0,103,0,0,0,0,5,0,0,0,0,4,106,3,0,0,0,0,0,0,0,0,137,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,10,0,0,0,0,1,26,6,0,17,0,0,0,0,0,0,41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,29,5 +4,0,0,12,0,61,131,0,257,37,79,0,0,6,49,0,846,0,7,4,0,0,0,9,2,14,21,0,21,0,4,0,0,0,20,1595,61,58,19,0,451,0,0,0,1,0,0,1,0,0,0,0,9,360,0,0,0,0,0,1,0,0,3,10,0,68,0,0,10787,61,1403,0,20,0,0,0,0,0,20,0,0,0,0,0,9,52,1847,0,0,20,0,0,7,202,0,1866,330,1,0,0,2,0,1950,0,43,14,0,3264,0,0,0,0,29,0,1,0,0,0,0,1,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,4,0,0,0,0,2,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,9,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,58,12,12,12,0,0,0,821,0,119,0,0,0,18,63,466,1948,767,0,0,0,0,1,0,4,0,0,0,0,0,0,1401,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,89,61,389,13,0,0,489,0,818,0,0,0,318,55,0,0,0,0,0,0,0,0,0,1375,1,0,0,0,15,0,0,0,0,6,165,420,0,0,732,0,1,0,0,6,2512,1,0,92,12,0,1,1,0,0,0,0,2,0,0,0,11,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,12,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,65,1,1,1,0,61,0,0,0,0,1,81,248,0,46,14,0,0,0,0,0,548,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,49,0,0,0,0,0,0,0,0,0,0,0,0,0,1,842,198,5 +0,0,0,10,0,98,6,0,73,19,12,0,0,9,62,0,259,0,8,10,0,0,0,5,20,29,99,0,52,0,8,0,0,0,43,0,98,6,98,0,290,0,0,0,1,0,0,3,0,0,0,0,34,311,0,0,0,0,0,1,0,0,0,0,0,36,0,0,7144,98,637,0,58,0,0,0,0,0,17,0,0,0,0,0,8,17,624,0,0,43,0,0,2,15,0,583,65,6,0,0,2,0,1007,0,28,0,0,4623,0,0,0,0,13,0,6,0,0,0,0,1,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,10,10,10,0,0,0,609,0,179,0,0,0,66,365,345,954,571,0,0,0,0,1,0,6,0,0,0,0,0,0,1299,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,150,42,559,10,0,0,617,0,1788,0,0,0,431,91,0,0,0,0,0,0,0,0,0,429,1,0,0,0,35,0,0,0,0,14,246,250,0,0,59,0,4,0,0,0,1291,0,0,476,3,0,1,1,0,0,0,0,9,0,0,0,2,0,0,0,0,0,37,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,142,1,1,1,0,241,0,0,0,0,1,141,448,0,179,9,0,0,0,0,0,360,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,27,0,0,0,0,0,0,0,2,0,0,0,0,0,4,926,139,5 +0,0,0,5,0,14,21,0,58,14,16,0,0,0,19,0,23,0,7,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,4,0,14,6,3,0,104,0,0,0,1,0,0,3,0,0,0,0,1,109,0,0,0,0,0,1,0,0,0,0,0,26,0,0,714,14,153,0,3,0,0,0,0,0,13,0,0,0,0,1,1,6,86,0,0,4,0,0,2,40,0,338,60,5,0,0,2,0,241,0,16,0,0,342,0,0,0,0,6,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,96,0,47,0,0,0,2,11,32,246,102,0,0,0,0,1,0,0,0,0,0,0,0,0,408,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,8,19,118,5,0,0,166,0,386,0,0,0,99,14,0,0,0,0,0,0,0,0,0,144,1,0,0,0,3,0,0,0,0,2,100,123,0,0,151,0,0,0,0,1,87,0,0,63,0,0,1,0,0,0,0,0,6,0,0,0,4,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,6,0,0,0,0,1,18,231,0,7,0,0,0,0,0,0,127,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,3,138,70,5 +0,0,0,2,48,12,75,205,235,0,50,0,0,0,3,0,23,0,6,44,0,41,39,1,41,0,0,0,0,0,1,0,0,48,2,0,60,6,0,0,174,0,2,0,1,0,0,2,0,0,0,0,0,201,0,0,0,0,0,1,0,0,0,0,0,2,0,0,2510,12,2975,0,1,0,0,0,0,0,11,124,0,0,0,0,1,5,577,0,205,2,48,0,0,0,0,300,0,2,0,0,2,48,347,0,0,0,0,1158,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,102,7,7,7,0,0,7,141,7,44,0,0,14,0,3,124,45,233,0,0,0,0,1,0,0,0,0,0,0,0,0,704,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,11,308,50,0,0,350,0,525,0,0,0,146,22,0,0,0,0,0,0,0,0,0,392,1,0,0,0,166,0,0,0,0,0,94,74,0,0,0,0,0,0,0,0,468,0,0,789,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,204,61,512,7,1,0,0,0,0,0,0,52,50,0,0,0,0,0,0,0,0,0,0,0,47,0,2,0,0,0,0,0,0,0,0,0,0,0,0,96,0,2,3332,137,5 +1,0,0,17,0,58,31,0,148,34,43,0,1,2,57,1,80,0,7,8,0,0,0,3,3,7,21,0,21,0,4,0,0,0,26,0,58,169,27,0,372,0,0,0,1,0,0,2,0,0,0,0,13,194,0,0,0,0,0,1,0,0,0,0,0,61,0,0,10828,58,400,0,25,0,0,0,0,0,8,0,0,0,0,0,3,6,828,0,0,26,0,0,3,112,0,1027,105,2,0,0,8,0,839,0,39,0,3,4878,0,1,0,0,6,0,2,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,822,0,265,0,0,0,26,98,123,1103,810,0,0,0,0,1,0,0,0,0,0,0,0,0,2341,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,33,60,1421,18,0,0,745,0,1641,0,0,0,617,154,0,0,0,0,0,0,0,1,1,370,1,0,0,0,14,0,0,0,0,13,614,270,0,0,242,0,0,0,0,0,1097,0,0,2360,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,81,1,1,1,0,50,0,0,0,0,1,84,164,0,53,0,0,0,0,0,0,401,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,42,0,0,0,0,0,0,0,0,0,0,0,0,0,3,947,584,5 +0,0,0,3,0,9,2,0,16,11,3,0,0,0,14,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,30,0,0,0,1,0,0,3,0,0,0,0,0,146,0,0,0,0,0,1,0,0,0,0,0,14,0,0,1781,9,68,0,1,0,0,0,0,0,15,0,0,0,0,0,1,5,349,0,0,1,0,0,0,0,0,11,0,6,0,0,2,0,39,0,12,0,0,249,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,233,0,54,0,0,0,0,3,23,46,244,0,0,0,0,1,0,0,0,0,0,0,0,0,546,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,15,134,3,0,0,184,0,271,0,0,0,117,14,0,0,0,0,0,0,4,0,0,55,1,0,0,0,2,0,0,0,0,0,98,101,0,0,0,0,0,0,0,0,106,0,0,318,0,0,1,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,495,0,1,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,4,262,24,5 +0,0,0,16,0,52,118,0,244,38,69,0,1,5,52,0,64,0,7,6,0,0,0,6,1,12,15,0,12,0,1,0,0,0,14,0,52,127,17,0,399,0,0,0,1,0,0,2,0,0,0,0,7,272,0,0,0,0,0,1,0,0,3,0,0,49,0,0,4105,52,570,0,11,0,0,0,0,0,10,0,0,0,0,0,7,15,237,0,0,14,0,0,6,178,0,1517,260,2,0,0,2,0,1040,0,29,0,5,2030,0,0,0,0,10,0,6,0,0,0,0,1,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,10,10,10,0,0,0,436,0,111,0,0,0,10,46,240,1672,242,0,0,0,0,1,0,5,0,0,0,0,0,0,1057,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,2,0,32,59,313,17,0,0,428,0,738,0,0,0,289,43,0,0,0,0,0,0,0,0,0,560,1,0,0,0,13,0,0,0,0,6,153,453,0,0,603,0,3,0,0,8,425,0,0,27,3,0,1,4,0,0,0,0,3,0,0,0,18,0,0,0,0,0,41,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,29,0,0,0,0,1,66,194,0,31,9,0,0,0,0,0,467,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,46,3,0,0,0,0,0,0,0,0,0,0,0,0,2,477,120,5 +15,0,0,0,0,63,5,0,31,4,4,1,0,0,10,0,45,0,7,7,0,0,0,10,2,2,6,0,17,0,1,0,0,0,24,0,63,6,30,0,99,0,0,0,1,0,0,2,0,0,0,0,8,125,0,0,0,0,0,1,0,0,0,1,0,11,0,0,1085,63,130,0,18,0,0,0,0,0,8,0,0,0,0,0,10,13,126,0,0,24,0,0,0,15,0,229,0,3,0,0,2,0,177,0,4,0,0,1194,0,0,14,0,1,1,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,164,0,139,0,0,0,16,31,119,243,167,0,0,0,0,1,0,2,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,13,284,2,0,0,306,0,639,0,0,0,157,41,0,0,0,0,0,0,0,0,0,103,1,0,0,0,19,0,0,0,0,8,147,120,0,0,0,0,0,0,0,0,302,0,0,25,0,0,1,1,0,0,0,0,2,0,0,0,2,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,84,1,1,1,0,23,0,0,0,0,1,87,244,0,26,0,0,0,0,0,0,113,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,271,56,5 +0,0,0,5,0,14,3,0,18,2,8,0,0,0,6,0,22,0,7,2,0,0,0,0,0,0,6,0,2,0,2,1,0,0,4,0,14,9,0,0,33,0,0,0,1,0,0,0,0,0,0,0,2,47,0,0,0,0,0,1,0,0,0,0,0,7,0,0,347,14,62,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,4,0,0,1,10,0,113,15,0,0,0,4,0,101,0,4,0,0,545,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,17,0,22,0,0,0,4,14,32,111,24,0,0,0,0,1,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,10,128,5,0,0,77,0,1952,0,0,0,41,37,0,0,0,0,0,0,0,0,0,64,0,0,0,0,2,0,0,0,0,3,99,40,0,0,32,0,0,0,0,0,61,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,10,0,0,0,0,1,18,72,0,11,0,0,0,0,0,0,7724,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,64,5 +7,0,0,25,1,134,265,1,595,96,179,0,1,4,181,2,136,0,9,10,0,0,0,10,31,27,0,0,62,0,1,0,0,1,76,0,135,381,84,0,1424,0,0,0,1,0,0,6,0,0,0,0,37,514,0,1,0,0,0,1,0,0,7,2,0,145,0,0,37007,134,1472,0,61,0,0,0,0,3,28,0,0,0,0,0,14,27,4939,0,1,76,1,0,8,500,0,4425,710,9,0,0,4,1,2677,0,104,3,3,12875,0,0,0,0,47,6,12,0,0,0,0,1,0,0,0,120,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,8,0,0,0,6,0,0,0,0,0,0,0,0,0,7,0,0,0,0,74,0,1,0,0,0,0,0,0,0,0,0,1,10,0,0,0,3,0,12,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,90,10,10,10,0,0,0,3658,0,328,0,0,0,72,221,386,27195,3415,0,0,0,0,1,0,10,0,0,0,0,0,0,7211,0,0,1,0,0,0,0,0,0,0,0,0,8,1,4,0,0,0,0,1,0,152,220,1997,42,0,0,1134,0,2829,0,1,0,795,1063,0,139,0,0,0,0,6,0,0,1372,1,0,0,0,51,0,0,0,0,36,304,1183,0,0,4144,0,4,0,0,29,3501,0,0,9902,3,0,1,17,0,0,0,0,14,0,1,0,19,0,0,0,0,0,121,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,3,1,11,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,1,0,1,171,1,1,1,0,149,0,6,0,0,9,211,415,0,81,9,0,3,0,1,0,1368,7,0,0,0,0,0,0,0,0,0,0,0,2,0,1,106,15,0,0,0,0,0,0,0,0,0,0,1,0,7,5429,921,5 +6,0,0,18,1,84,28,1,118,7,48,1,0,1,68,1,803,0,9,8,0,0,0,4,0,13,8,0,12,0,11,0,0,1,43,0,85,138,7,0,1393,0,0,0,1,0,0,9,0,0,0,0,22,1104,0,1,0,0,0,1,0,0,0,0,0,20,0,0,9854,84,1157,0,18,0,0,0,0,0,110,0,0,0,0,0,8,45,324,0,1,43,1,0,1,0,0,121,0,9,2,0,170,1,1783,0,19,0,0,9511,0,2,0,0,5,0,7,0,1,0,0,1,0,0,0,6,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,6,0,11,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,38,2,2,2,0,2,0,499,0,485,0,0,1,18,25,1576,2791,353,0,0,0,0,1,0,1,0,0,0,0,0,0,8763,0,0,0,2,4,0,0,0,0,0,0,0,8,0,0,0,1,0,0,2,0,405,57,1165,24,0,0,1152,0,24020,0,1,0,821,404,0,0,0,0,0,0,0,0,0,1077,1,0,0,0,12,0,0,0,0,80,264,175,0,0,0,0,0,0,0,3,2272,1,0,387,0,0,1,1,0,0,0,0,14,0,1,0,4,0,0,0,0,0,9,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,89,1,1,1,0,21,0,0,0,0,51,130,526,0,44,0,0,0,0,0,0,2020,1,0,0,0,0,0,0,0,0,0,0,0,2,1,6,11,0,0,0,0,0,0,0,0,0,0,0,1,0,4,784,296,5 +0,0,0,8,0,37,14,0,45,23,15,0,0,0,30,0,18,0,7,1,0,0,0,4,0,0,0,0,0,0,1,0,0,0,26,0,37,42,0,0,131,0,0,0,1,0,0,2,0,0,0,0,0,117,0,0,0,0,0,1,0,0,0,0,0,38,0,0,1402,37,130,0,1,0,0,0,0,0,9,0,0,0,1,0,4,7,504,0,0,26,0,0,3,33,0,296,50,2,0,0,2,0,217,0,27,0,0,860,0,0,0,0,20,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,391,0,115,0,0,0,0,3,68,238,409,0,0,0,0,1,0,0,0,0,0,0,0,0,432,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,50,240,9,0,0,232,0,583,0,0,0,168,64,0,0,0,0,0,0,0,0,0,129,1,0,0,0,5,0,0,0,0,1,140,111,0,0,119,0,0,0,0,1,85,0,0,37,0,0,1,0,0,0,0,0,3,0,6,0,3,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,63,112,0,1,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,27,0,0,0,0,0,0,0,0,0,0,0,0,0,2,214,98,5 +0,0,0,21,1,63,33,1,145,43,24,0,0,2,65,0,123,0,9,7,0,0,0,5,0,4,15,0,21,0,1,0,0,1,38,0,64,1137,37,0,356,0,0,0,1,0,0,1,0,0,0,0,8,290,0,0,0,0,0,1,0,0,0,7,0,62,0,0,12002,63,374,0,22,0,0,0,0,0,6,0,0,0,0,0,3,5,302,0,1,38,1,0,3,52,0,547,30,1,0,0,4,1,592,0,45,0,2,3483,0,0,0,0,51,0,2,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,246,0,109,0,0,0,16,64,112,3635,255,0,0,0,0,1,0,2,0,0,0,0,0,0,1724,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,135,76,620,23,0,0,471,0,2111,0,1,0,237,120,0,0,0,0,0,0,3,0,0,401,1,0,0,0,12,0,0,0,0,8,186,181,0,0,81,0,1,0,10,0,133321,0,0,240,0,0,1,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,46,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,1,70,1,1,1,0,70,0,0,2,0,9,102,193,0,41,0,0,0,0,0,0,292,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,47,4,0,0,0,0,0,0,0,0,0,0,1,0,1,653,241,5 +0,0,0,18,0,79,102,0,253,72,79,0,1,12,88,0,1684,0,7,11,0,0,0,9,5,18,18,0,44,0,1,0,0,0,18,7766,79,1473,36,0,438,0,0,0,1,0,0,7,0,0,0,0,13,825,0,0,0,0,0,1,0,0,0,0,0,71,0,0,35513,79,2353,0,43,0,0,0,0,0,72,0,0,0,0,1,13,154,5353,0,0,18,0,0,4,146,0,1699,245,10,0,0,2,0,2726,0,60,148,8,8088,0,0,0,0,73,0,8,0,0,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,12,12,12,0,0,0,2335,0,155,0,0,0,36,105,956,4005,2298,0,0,0,0,1,0,4,0,0,0,0,0,0,5657,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,110,93,657,23,0,0,687,0,1033,0,0,0,446,228,0,0,0,0,0,0,0,0,0,2226,1,0,0,0,25,0,0,0,0,13,228,424,0,0,801,0,0,0,0,4,198277,1,0,3752,29,0,1,6,1,0,0,0,11,0,0,0,3,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,105,1,1,1,0,133,0,0,0,0,1,97,424,0,67,14,0,0,0,0,0,522,10,0,0,0,0,0,0,0,0,0,0,0,2,0,2,82,4,0,0,0,0,0,0,0,0,0,0,0,0,2,2497,199,5 +11,0,0,6,0,43,32,0,93,2,30,0,0,2,6,0,33,0,7,5,0,0,0,7,12,8,0,0,18,0,1,0,0,0,11,0,43,6,26,0,150,0,10,0,1,0,0,11,0,0,0,0,14,291,0,0,0,0,0,1,0,0,0,0,0,16,0,0,3765,43,322,0,17,0,0,0,0,0,56,0,0,0,0,0,10,28,541,0,0,11,0,0,3,78,0,798,125,19,0,0,2,0,380,0,3,0,0,996,0,1,10,0,2,0,5,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,17,1,1,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,462,0,177,0,0,0,26,55,215,540,470,0,0,0,0,1,0,3,0,0,0,0,0,0,1182,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,1,0,32,13,255,6,0,0,491,0,791,0,0,0,374,31,0,0,0,0,0,0,0,0,0,203,1,0,0,0,24,0,0,0,0,1,136,402,0,0,322,0,0,0,0,0,371,0,0,380,3,0,1,1,1,0,0,0,29,0,1,0,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,29,0,0,0,0,1,54,647,0,18,9,0,0,0,0,0,256,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,11,640,117,5 +0,0,0,11,0,25,55,0,102,18,17,0,1,3,29,0,54,0,7,4,0,0,0,1,1,2,12,0,8,0,1,0,0,0,8,0,25,76,14,0,363,0,0,0,1,0,0,1,0,0,0,0,4,168,0,0,0,0,0,1,0,0,0,0,0,10,0,0,17429,25,278,0,9,0,0,0,0,0,6,0,0,0,0,0,1,3,1438,0,0,8,0,0,0,52,0,458,35,1,0,0,2,0,459,0,7,0,4,996,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,1446,0,46,0,0,0,8,39,57,971,1455,0,0,0,0,1,0,0,0,0,0,0,0,0,5063,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,38,199,12,0,0,241,0,511,0,0,0,154,40,0,0,0,0,0,0,0,0,0,268,1,0,0,0,6,0,0,0,0,5,120,266,0,0,100,0,0,0,0,1,1635,0,0,5486,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,17,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,22,0,0,0,0,1,33,302,0,23,0,0,0,0,0,0,162,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1847,47,5 +1,0,0,7,1,38,34,1,65,2,10,0,0,9,7,0,700,0,9,2,0,0,0,7,0,10,0,0,6,0,1,0,0,1,4,5457,39,54,0,0,57,0,0,0,1,0,0,1,0,0,0,0,1,413,0,0,0,0,0,1,0,0,0,2,0,4,0,0,12209,38,788,0,4,0,0,0,0,0,15,0,0,0,0,0,8,32,1820,0,1,4,1,0,1,0,0,285,30,2,0,0,4,1,717,0,2,29,0,1876,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,582,0,41,0,0,0,2,5,400,538,575,0,0,0,0,1,0,4,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,216,29,369,8,0,0,397,0,489,0,1,0,134,9,0,0,0,0,0,0,0,0,0,834,1,0,0,0,9,0,0,0,0,2,154,13,0,0,29,0,0,0,0,0,2313,1,0,57,8,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,42,1,1,1,0,9,0,0,0,0,9,43,99,0,5,12,0,0,0,0,0,107,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,766,49,5 +1,0,0,15,1,92,236,1,446,94,122,0,1,3,117,0,170,0,29,6,0,0,0,5,8,11,39,0,25,0,1,0,0,1,37,0,93,305,49,0,925,0,0,0,1,0,0,9,0,0,0,0,13,547,0,0,0,0,0,1,0,0,5,0,0,131,0,0,5341,92,1208,0,26,0,0,0,0,0,39,0,0,0,0,1,5,17,370,0,1,37,1,0,12,352,0,2954,465,16,0,1,4,1,2124,0,91,0,6,3767,0,0,0,0,31,0,10,0,0,0,0,1,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,1,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,453,0,253,0,0,0,26,159,191,2913,474,0,0,0,0,1,0,1,0,0,0,0,0,0,2530,0,0,0,0,0,0,0,0,0,2,0,0,9,0,15,0,0,0,0,0,2,131,140,889,18,0,0,1129,0,2121,0,1,0,726,87,0,0,0,1,0,0,0,0,0,1124,1,0,0,0,19,0,0,0,0,11,334,942,0,0,1135,0,2,0,1,12,981,0,0,262,0,0,1,0,0,0,0,0,20,0,2,0,14,0,0,0,0,0,90,1,0,6,1,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,135,1,1,1,0,135,0,0,0,0,9,130,950,0,76,0,0,0,0,0,0,954,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,108,0,0,0,0,1,0,0,0,0,0,0,1,0,6,1047,486,5 +0,0,0,4,0,12,5,0,27,8,13,0,0,0,10,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,43,0,0,0,1,0,0,3,0,0,0,0,0,128,0,0,0,0,0,1,0,0,0,0,0,12,0,0,342,12,71,0,1,0,0,0,0,0,11,0,0,0,0,0,1,5,50,0,0,3,0,0,3,13,0,128,19,5,0,0,2,0,95,0,8,2,0,207,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,59,0,35,0,0,0,0,3,27,176,70,0,0,0,0,1,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,11,93,4,0,0,128,0,230,0,0,0,59,5,0,0,0,0,0,0,0,0,0,76,1,0,0,0,2,0,0,0,0,0,95,73,0,0,54,0,0,0,0,0,33,0,0,38,0,0,1,0,0,0,0,0,5,0,0,0,2,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,218,0,1,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,74,20,5 +0,0,0,0,0,9,2,0,7,0,1,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,0,0,0,146,9,30,0,1,0,0,0,0,0,5,0,0,0,0,0,1,4,38,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,6,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,37,0,45,0,0,0,0,3,25,5,50,0,0,0,0,1,0,0,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,57,0,0,0,63,0,103,0,0,0,10,1,0,0,0,0,0,0,0,0,0,32,1,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,35,0,0,28,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,8,5 +0,0,0,16,0,47,133,0,239,32,73,0,0,0,46,0,52,0,26,5,0,0,0,1,1,4,15,0,10,0,1,0,0,0,19,0,47,6,32,0,462,0,0,0,1,0,0,3,0,0,0,0,5,203,0,0,0,0,0,1,0,0,2,0,0,66,0,0,3817,47,595,0,11,0,0,0,0,0,16,0,0,0,0,0,1,9,261,0,0,19,0,0,7,211,0,1715,305,6,0,0,2,0,1099,0,41,0,0,1827,0,0,0,0,26,0,4,0,0,0,0,1,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,1,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,388,0,120,0,0,0,10,97,88,1664,323,0,0,0,0,1,0,1,0,0,2,0,0,0,1705,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,77,280,19,0,0,447,0,984,0,0,0,327,51,0,0,0,0,0,0,2,0,0,569,1,0,0,0,7,0,0,0,0,5,150,484,0,0,723,0,0,0,0,8,6805,0,0,658,0,0,1,0,0,0,0,0,6,0,0,0,8,0,0,0,0,0,32,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,110,0,0,0,0,1,66,289,0,30,0,0,0,0,0,0,510,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,38,0,0,0,0,0,0,0,1,0,0,0,0,0,1,465,148,5 +0,0,0,18,0,86,12,0,66,5,19,0,0,2,15,0,99,0,6,7,0,0,0,25,2,14,6,0,38,0,3,0,0,0,51,4,86,6,86,0,155,0,0,0,1,0,0,3,0,0,0,0,25,283,0,0,0,0,0,1,0,0,0,1,0,21,0,0,2765,86,292,0,38,0,0,0,0,0,13,0,0,0,0,0,11,22,445,0,0,51,0,0,1,50,0,721,40,1,0,0,2,0,408,0,8,0,0,1864,0,0,0,0,12,0,3,0,0,0,0,1,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,252,0,135,0,0,0,48,117,286,656,205,0,0,0,0,1,0,12,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,23,500,29,0,0,407,0,952,0,0,0,271,26,0,0,0,0,0,0,0,0,0,219,1,0,0,0,34,0,0,0,0,24,177,200,0,0,104,0,1,0,0,1,5323,1,0,1035,5,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,90,1,1,1,0,91,0,0,0,0,1,137,230,0,49,12,0,0,0,0,0,232,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8714,97,5 +0,0,0,8,0,46,6,0,29,2,3,0,0,2,8,0,184,0,6,6,0,0,0,7,0,13,9,0,9,0,1,0,0,0,12,924,46,6,7,0,297,0,1,0,1,0,0,5,0,0,0,0,4,264,0,2,0,0,0,1,0,0,0,0,0,6,0,0,21667,46,295,0,7,0,0,0,0,0,37,0,0,0,0,0,9,27,3557,0,0,12,0,0,0,0,0,113,5,10,0,1,2,0,255,0,3,0,0,2061,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,12,12,12,0,0,0,2555,0,115,0,0,0,6,43,249,501,2534,0,0,0,0,1,0,3,0,0,0,0,0,0,979,0,0,0,0,0,0,0,0,0,0,0,0,5,1,4,0,0,0,0,1,0,32,15,391,13,0,0,365,0,501,0,0,0,205,32,0,0,0,1,0,0,0,0,0,238,1,0,0,0,13,0,0,0,0,1,131,115,0,0,0,0,0,0,0,0,1123,1,0,1473,6,0,1,1,1,0,0,0,16,0,0,0,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,6,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,26,0,0,0,0,1,58,642,0,20,12,0,1,0,0,0,89,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6,876,159,5 +0,0,0,12,0,43,7,0,75,26,12,0,1,5,49,0,59,0,7,6,0,0,0,5,1,10,12,0,9,0,1,0,0,0,10,0,43,78,14,0,121,0,0,0,1,0,0,3,0,0,0,0,5,203,0,1,0,0,0,1,0,0,0,0,0,21,0,0,1560,43,227,0,9,0,0,0,0,0,10,0,0,0,1,0,7,17,146,0,0,10,0,0,1,12,0,230,20,4,0,0,2,0,313,0,15,0,4,1245,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,10,10,10,0,0,0,137,0,82,0,0,0,8,38,218,270,155,0,0,0,0,1,0,3,0,0,0,0,0,0,388,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,37,50,237,13,0,0,258,0,349,1,0,0,133,1604,0,0,0,0,0,0,0,0,0,215,1,0,0,0,12,0,0,0,0,5,138,100,0,0,38,0,1,0,0,0,292,0,0,70,2,0,1,1,1,0,0,0,3,0,0,0,2,0,0,0,0,0,25,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,22,0,0,0,0,1,53,264,0,24,8,0,0,0,0,0,105,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,398,45,5 +0,0,0,7,0,16,37,0,94,32,32,0,0,0,38,0,25,0,7,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,5,0,16,44,2,0,204,0,0,0,1,0,0,2,0,0,0,0,1,116,0,0,0,0,0,1,0,0,0,0,0,47,0,0,864,16,231,0,3,0,0,0,0,0,7,0,0,0,0,0,1,5,78,0,0,5,0,0,3,84,0,684,130,2,0,0,2,0,467,0,35,0,0,362,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,90,0,45,0,0,0,2,11,37,743,109,0,0,0,0,1,0,0,0,0,0,0,0,0,460,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,38,130,7,0,0,161,0,294,0,0,0,100,14,0,0,0,0,0,0,0,0,0,233,1,0,0,0,3,0,0,0,0,2,102,195,0,0,358,0,0,0,0,0,123,0,0,72,0,0,1,0,1,0,0,0,4,0,0,0,3,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,6,0,0,0,0,1,21,117,0,7,0,0,0,0,0,0,232,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,36,0,0,0,0,0,0,0,0,0,0,0,0,0,2,140,43,5 +0,0,0,29,0,95,79,0,202,27,56,0,0,2,81,4,84,0,7,10,0,0,0,5,3,15,12,0,20,0,4,0,0,0,52,0,95,69,33,0,672,0,0,0,1,0,0,4,1,0,0,0,12,357,0,0,0,0,0,1,0,0,1,0,0,58,0,0,26537,95,559,0,22,0,0,0,0,0,30,0,0,0,0,0,9,27,1332,0,0,52,0,0,6,153,0,1391,235,10,0,0,2,0,1035,0,36,0,0,6523,0,0,0,0,48,0,6,0,0,0,0,1,0,0,0,11,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,10,10,10,0,0,0,1240,0,177,0,0,0,22,85,273,4519,1240,0,0,0,0,1,0,3,0,0,0,0,0,0,1947,0,0,0,0,0,0,0,0,0,0,0,0,4,1,6,0,0,0,0,1,0,32,68,525,45,0,0,642,0,1819,0,0,0,481,62,0,0,0,0,0,0,0,0,0,515,1,0,3,0,18,0,0,0,0,10,199,487,0,0,548,0,0,0,0,1,7134,0,0,836,3,0,1,1,0,0,0,0,15,0,2,0,11,0,0,0,0,0,62,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,3,22,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,104,1,1,1,0,86,0,0,0,0,1,147,728,0,42,9,0,0,0,0,0,492,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,39,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1534,218,5 +0,0,0,1,0,18,10,0,29,4,11,0,0,0,9,0,10,0,7,1,0,0,0,1,0,0,0,0,3,0,1,0,0,0,7,0,18,6,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,9,0,0,196,18,72,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,49,0,0,7,0,0,1,26,0,218,45,0,0,0,2,0,133,0,7,0,0,210,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,49,0,41,0,0,0,0,3,37,121,60,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,67,1,0,0,69,0,144,0,0,0,30,8,0,0,0,0,0,0,0,0,0,76,0,0,0,0,2,0,0,0,0,1,100,45,0,0,120,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,3,0,0,0,0,1,25,7,0,4,0,0,0,0,0,0,68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,2,5 +1,0,0,10,0,41,6,0,34,5,12,0,0,0,16,0,21,0,7,2,0,0,0,1,0,0,0,0,9,0,3,0,0,0,24,0,41,70,3,0,96,0,0,0,1,0,0,2,0,0,0,0,3,116,0,0,0,0,0,1,0,0,0,12,0,21,0,0,601,41,96,0,12,0,0,0,0,0,8,0,0,0,0,0,1,4,77,0,0,24,0,0,3,20,0,211,35,3,0,0,2,0,152,0,8,0,0,627,0,0,0,0,3,0,0,0,0,0,0,1,2,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,92,0,80,0,0,0,6,11,64,221,99,0,0,0,0,1,0,2,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,11,189,10,0,0,187,0,595,0,0,0,107,28,0,0,0,0,0,0,0,0,0,96,1,0,0,0,3,0,0,0,0,4,127,56,0,0,78,0,0,0,8,0,146,0,0,42,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,14,0,0,0,0,1,65,103,0,12,0,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,144,31,5 +0,0,0,4,1,13,2,1,11,1,4,0,0,0,5,0,46,0,6,5,0,1,0,0,0,0,0,0,0,0,1,0,0,1,1,0,13,39,0,0,17,0,0,0,1,0,0,1,0,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,6,0,0,66,13,90,0,1,0,0,0,0,0,2,3,0,0,0,0,1,4,12,0,1,1,1,0,0,0,0,7,0,0,0,0,2,1,49,0,1,0,0,110,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,21,0,23,0,0,0,0,3,31,5,36,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,11,5,68,5,0,0,69,0,238,0,0,0,13,3,0,0,0,0,0,0,0,0,0,74,1,0,0,0,6,0,0,0,0,1,95,4,0,0,0,0,0,0,0,0,7747,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,14,1,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,93,58,5 +0,0,0,2,0,16,2,0,15,0,2,0,0,0,2,0,14,0,7,1,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,16,6,0,0,5,0,0,0,1,0,0,5,0,0,0,0,0,184,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1960,16,75,0,1,0,0,0,0,0,26,0,0,0,0,0,3,9,377,0,0,0,0,0,0,0,0,19,0,10,0,0,2,0,15,0,0,0,0,387,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,307,0,85,0,0,0,0,3,69,8,318,0,0,0,0,1,0,0,0,0,0,0,0,0,476,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,3,199,2,0,0,267,0,365,0,0,0,182,9,0,0,0,0,0,0,0,0,0,42,1,0,0,0,4,0,0,0,0,0,158,103,0,0,0,0,0,0,0,0,166,0,0,332,0,0,1,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,0,0,0,0,0,1,16,393,0,1,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,326,46,5 +0,0,0,17,0,51,12,0,87,19,16,0,1,5,37,1,68,0,7,10,0,0,0,9,1,15,12,0,22,0,4,0,0,0,15,0,51,228,31,0,222,0,0,0,1,0,0,5,0,0,0,0,12,369,0,0,0,0,0,1,0,0,0,0,0,14,0,0,9735,51,274,0,24,0,0,0,0,0,24,0,0,0,0,0,9,20,1498,0,0,15,0,0,2,26,0,395,50,7,0,0,2,0,377,0,9,0,5,2602,0,0,0,0,5,0,13,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,10,10,10,0,0,0,1156,0,114,0,0,0,23,141,203,534,1107,0,0,0,0,1,0,2,0,0,0,0,0,0,1833,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,38,46,408,18,0,0,426,0,1520,0,0,0,282,86,0,33,0,0,0,0,0,0,0,234,1,0,0,0,20,0,0,0,0,27,151,246,0,0,107,0,16,0,0,2,865,0,0,1269,3,0,1,1,0,0,0,0,10,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,68,1,1,1,0,48,0,0,0,0,1,66,547,0,44,9,0,0,0,0,0,182,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,697,288,5 +0,0,0,2,0,8,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,1,0,0,113,8,28,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,28,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,6,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,31,0,31,0,0,0,0,3,22,4,42,0,0,0,0,1,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,66,2,0,0,62,0,81,0,0,0,12,2,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,4,0,0,0,0,0,0,0,0,30,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,50,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,10,5 +1,0,0,10,0,64,8,0,43,29,12,0,0,2,45,0,89,0,40,4,0,0,0,7,5,12,36,0,19,0,5,4,0,0,28,0,64,6,26,0,179,0,0,0,1,0,0,1,1,0,0,0,14,162,0,0,0,0,0,1,0,0,0,0,0,42,0,0,5187,64,300,0,26,0,0,0,0,0,9,0,0,0,0,0,10,18,943,0,0,28,0,0,1,17,0,316,40,4,1,0,2,0,427,0,36,0,0,2186,0,0,0,0,25,0,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,10,10,10,0,0,0,815,0,94,0,0,0,26,108,232,473,803,0,0,0,0,1,0,2,0,0,0,0,0,0,957,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,48,326,10,0,0,268,0,677,0,0,0,139,79,0,0,0,0,0,0,0,0,0,239,1,0,4,0,16,0,0,0,0,13,153,62,0,0,75,0,1,0,0,2,529,0,0,794,3,0,1,1,0,0,0,0,7,0,0,0,2,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,3,9,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,86,1,1,1,0,116,0,0,0,0,1,92,166,0,67,9,0,0,0,0,0,144,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,33,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1927,137,5 +2,0,0,6,1,49,38,1,71,6,19,0,0,6,12,0,77,0,9,6,0,0,0,4,0,9,3,0,3,0,1,0,0,1,20,0,50,54,4,0,118,0,0,0,1,0,0,1,0,0,0,0,2,137,0,0,0,0,0,1,0,0,0,3,0,22,0,0,882,49,185,0,3,0,0,0,0,0,4,0,0,0,0,0,8,14,43,0,1,20,1,0,5,34,0,496,75,0,0,0,4,1,260,0,7,0,0,3709,0,0,0,0,3,2,1,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,72,0,50,0,0,0,2,15,206,320,65,0,0,0,0,1,0,2,0,0,0,0,0,0,329,2,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,187,28,312,7,0,0,316,0,719,0,1,0,113,79,0,0,0,0,0,0,0,0,0,232,1,0,0,0,10,0,0,0,0,2,146,65,0,0,117,0,2,0,0,0,362,0,0,3,2,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,65,1,1,1,0,6,0,0,0,0,9,70,29,0,8,8,0,0,0,0,0,152,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,14,0,0,0,0,0,0,0,0,0,0,0,1,0,0,164,162,5 +2,0,0,19,0,110,175,0,873,27,181,1,1,6,52,0,114,0,23,11,0,0,0,19,13,17,27,0,57,0,1,0,0,0,55,0,110,291,92,0,1808,0,7,0,1,0,0,7,0,0,0,0,33,257,0,0,0,0,0,1,0,0,0,1,0,197,0,0,52283,110,1568,0,57,0,0,0,0,0,29,0,0,0,0,0,10,26,4363,0,0,55,0,0,4,828,0,6597,110,10,0,0,2,0,4505,0,33,0,7,3425,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,35,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,10,10,10,0,0,0,4262,0,179,0,0,0,64,172,315,5814,4209,0,0,0,0,1,0,9,0,0,0,0,0,0,13687,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,46,56,775,22,0,0,698,0,1345,0,0,0,507,109,0,0,0,0,0,0,0,0,0,1426,1,0,0,0,43,0,0,0,0,31,220,2235,0,0,268,0,1,0,0,0,4929,0,0,16095,3,0,1,1,1,0,0,0,10,0,0,0,3,1,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,13,0,0,0,3,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,131,1,1,1,0,140,0,0,0,0,1,165,421,0,93,9,0,0,0,0,0,2197,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,35,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4686,250,5 +1,0,0,17,1,48,241,1,989,25,396,0,0,2,34,0,80,0,9,4,0,0,0,8,0,9,3,0,6,0,1,0,0,1,20,0,49,116,12,0,1251,0,0,0,1,0,0,6,0,0,0,0,3,297,0,1,0,0,0,1,0,0,5,1,0,61,0,0,8266,48,1732,0,5,0,0,0,0,0,22,0,0,0,0,0,9,21,3130,0,1,20,1,0,7,943,0,7541,1855,10,0,0,4,1,3770,0,30,0,0,1362,0,0,0,0,16,1,3,0,0,0,0,1,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,8,1,0,0,0,0,9,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,1777,0,117,0,0,0,4,15,194,3392,1778,0,0,0,0,1,0,3,0,0,0,0,0,0,2369,1,0,0,0,0,0,0,0,0,0,0,0,5,2,0,0,0,0,0,1,0,143,52,442,22,0,0,689,0,1688,0,1,0,453,105,0,0,0,0,0,0,0,0,0,1751,1,0,0,0,12,0,0,0,0,2,167,1681,0,0,4260,0,0,0,0,13,496,0,0,688,3,0,1,1,0,0,0,0,10,0,1,0,11,0,0,0,0,0,26,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,3,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,61,1,1,1,0,13,0,0,0,0,9,69,336,0,10,9,0,0,0,0,0,1689,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,33,0,0,0,0,0,0,0,0,0,0,0,1,0,2,550,461,5 +0,0,0,9,0,11,84,0,110,0,8,0,0,0,6,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,198,0,0,0,1,0,0,2,0,0,0,0,0,1742,0,0,0,0,0,1,0,0,0,0,0,5,0,0,854,11,226,0,1,0,0,0,0,0,11,0,0,0,0,0,1,4,77,0,0,2,0,0,1,93,0,690,15,4,0,0,2,0,484,0,2,0,0,303,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,83,0,52,0,0,0,0,3,25,378,94,0,0,0,0,1,0,0,0,0,0,0,0,0,520,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,9,200,13,0,0,276,0,1576,0,0,0,208,11,0,0,0,0,0,0,0,0,0,229,1,0,0,0,2,0,0,0,0,0,107,4137,0,0,24,0,0,0,0,0,39,0,0,54,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,265,0,1,0,0,0,0,0,0,223,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,1,0,0,0,0,0,2,603,161,5 +3,0,0,20,0,44,395,0,380,76,120,0,0,0,95,0,59,0,7,4,0,0,0,2,2,4,15,0,10,0,1,0,0,0,25,0,44,187,32,0,2881,0,0,0,1,0,0,8,0,0,0,0,5,531,0,2,0,0,0,1,0,0,6,0,0,130,0,0,5962,44,1132,0,11,0,0,0,0,0,44,0,0,0,0,0,2,12,370,0,0,25,0,0,7,354,0,3100,455,10,0,0,2,0,2059,0,81,0,0,2494,0,0,0,0,25,0,8,0,0,0,0,1,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,1,14,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,1,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,17,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,516,0,176,0,0,0,10,167,91,4441,493,0,0,0,0,1,0,1,0,0,0,0,0,0,3385,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,17,113,456,25,0,0,1016,0,1849,0,0,0,927,185,0,0,0,0,0,0,0,0,0,1056,1,0,0,0,8,0,0,0,0,4,284,1032,0,0,1179,0,2,0,1,20,771,0,0,468,0,0,1,0,1,0,0,0,18,0,1,0,27,0,0,0,0,0,70,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,94,0,0,0,0,1,69,1319,0,30,0,0,0,0,0,0,903,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,82,0,0,0,0,0,0,0,0,0,0,0,0,0,5,6529,202,5 +6,0,0,23,0,95,178,0,578,55,149,1,1,3,121,0,159,0,7,8,0,0,0,8,16,13,57,0,43,0,3,0,0,0,46,0,95,406,77,0,1184,0,0,0,1,0,0,7,0,0,0,0,25,2504,0,0,0,0,0,1,0,0,3,1,0,173,0,0,10068,95,1363,0,47,0,0,0,0,0,36,0,0,0,0,0,8,16,574,0,0,46,0,0,10,492,0,4060,430,13,0,0,4,0,2973,0,66,0,6,10011,0,0,0,0,23,5,9,0,0,0,0,1,0,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,30,1,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,739,0,246,0,0,0,50,225,194,3749,600,0,0,0,0,1,0,0,0,0,0,0,0,0,2120,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,30,101,795,28,0,0,761,0,2657,0,0,0,558,380,0,0,0,0,0,0,0,0,0,1197,1,0,0,0,32,0,0,0,0,23,215,1254,0,0,1072,0,0,0,0,5,1250,0,0,293,0,0,1,0,1,0,0,0,19,0,2,0,16,0,0,0,0,0,57,1,0,4,0,3,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,6,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,137,1,1,1,0,170,0,0,0,0,1,141,753,0,116,0,0,0,0,0,0,1303,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,67,0,0,0,0,0,0,0,0,0,0,0,0,0,7,944,325,5 +2,0,0,0,1,27,30,1,34,2,3,0,1,0,4,0,68,0,9,3,0,0,0,5,0,8,0,0,2,0,1,0,0,1,1,0,28,54,0,0,27,0,0,0,1,0,0,1,0,0,0,0,1,82,0,0,0,0,0,1,0,0,0,3,0,0,0,0,1217,27,106,0,1,0,0,0,0,0,9,0,0,0,0,0,7,14,162,0,1,1,1,0,1,0,0,110,0,2,0,0,4,1,33,0,1,0,0,505,0,0,0,0,2,2,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,127,0,36,0,0,0,0,3,186,17,136,0,0,0,0,1,0,3,0,0,0,0,0,0,417,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,120,22,246,1,0,0,274,0,406,0,1,0,59,5,0,0,0,0,0,0,0,0,0,149,1,0,0,0,8,0,0,0,0,1,123,12,0,0,0,0,0,0,0,0,213,0,0,231,3,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,30,1,1,1,0,0,0,0,0,0,9,29,42,0,2,9,0,0,0,0,0,47,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,170,40,5 +0,0,0,10,0,19,4,0,37,12,6,0,1,2,22,0,45,0,7,4,0,0,0,1,0,2,9,0,6,0,1,0,0,0,6,0,19,74,11,0,45,0,0,0,1,0,0,1,0,0,0,0,3,99,0,0,0,0,0,1,0,0,0,0,0,7,0,0,487,19,126,0,7,0,0,0,0,0,3,0,0,0,0,0,1,3,12,0,0,6,0,0,0,0,0,33,0,1,0,0,2,0,152,0,4,0,3,464,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,57,0,53,0,0,0,6,28,48,83,71,0,0,0,0,1,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,20,133,11,0,0,118,0,319,0,0,0,52,33,0,0,0,0,0,0,0,0,0,124,1,0,0,0,5,0,0,0,0,4,113,15,0,0,0,0,0,0,0,0,195,0,0,9,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,16,0,0,0,0,1,25,55,0,18,0,0,0,0,0,0,52,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,22,5 +9,0,0,19,1,90,51,1,192,20,60,0,0,7,80,0,163,0,13,9,0,0,0,9,2,14,21,0,21,0,7,1,0,1,30,0,91,856,40,0,323,0,0,0,1,0,0,38,0,0,0,0,14,664,0,0,0,0,0,1,0,0,0,4,0,37,0,0,10010,90,672,0,27,0,0,0,0,0,82,0,0,0,0,0,13,57,1850,0,1,30,1,0,6,123,0,1278,250,20,0,0,4,1,980,0,32,0,13,6647,0,0,0,0,9,0,36,0,0,0,0,1,0,0,0,10,0,0,1,0,0,0,0,0,0,0,0,3,0,41,0,0,0,0,0,5,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,1,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,1,0,1,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,64,10,10,10,0,0,0,1284,0,361,0,0,0,26,108,343,1881,1415,0,0,0,0,1,0,4,0,0,0,0,0,0,2126,0,0,1,0,0,0,0,0,0,0,0,0,38,1,0,0,0,0,0,3,0,173,67,980,21,0,0,812,0,4494,0,1,0,491,110,0,31,0,0,0,0,0,0,0,566,1,0,0,0,20,0,0,0,0,12,251,461,0,0,650,0,0,0,0,2,1468,0,0,490,3,0,1,56,0,0,0,0,57,0,0,0,3,0,0,0,0,0,21,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,0,0,0,0,0,3,26,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,152,1,1,1,0,149,0,0,0,0,9,121,191,0,55,9,0,0,0,1,0,533,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,32,6,0,0,0,0,0,0,0,0,0,0,1,0,19,2148,252,5 +0,0,0,4,0,12,3,0,3,3,4,0,0,0,6,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,6,0,0,47,12,24,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,3,0,0,0,0,0,5,0,0,0,0,2,0,17,0,4,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,24,0,0,0,0,3,26,7,27,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,46,4,0,0,44,0,139,0,0,0,11,1,0,0,0,0,0,0,0,0,0,30,0,0,0,0,2,0,0,0,0,0,94,1,0,0,0,0,0,0,0,2,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,3,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,19,5 +0,0,0,13,0,41,17,0,77,0,18,0,0,6,7,0,606,0,7,2,0,0,0,7,0,10,0,0,5,0,1,0,0,0,6,898,41,6,0,0,106,0,0,0,1,0,0,1,0,0,0,0,1,219,0,0,0,0,0,1,0,0,0,0,0,11,0,0,11356,41,725,0,3,0,0,0,0,0,16,0,0,0,0,0,8,30,2020,0,0,6,0,0,2,33,0,471,65,2,0,0,2,0,807,0,1,6,0,1656,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,1047,0,51,0,0,0,1,4,384,605,1032,0,0,0,0,1,0,4,0,0,0,0,0,0,978,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,84,21,270,16,0,0,267,0,402,0,0,0,105,12,0,0,0,0,0,0,0,0,0,738,1,0,0,0,9,0,0,0,0,2,150,99,0,0,114,0,0,0,0,0,1980,1,0,988,8,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,5,0,0,0,0,1,47,191,0,4,12,0,0,0,0,0,140,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,877,61,5 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,23,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,10,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,15,0,0,0,0,3,21,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,37,0,32,0,0,0,7,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,6,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,4,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,3,5 +5,0,0,7,1,61,61,1,134,3,26,0,0,9,8,0,2109,0,9,5,0,0,0,8,0,14,9,0,22,0,1,0,0,1,10,37484,62,54,13,0,83,0,0,0,1,0,0,2,0,0,0,0,4,1034,0,0,0,0,0,1,0,0,0,9,0,4,0,0,194004,61,2404,0,19,0,0,0,0,0,77,0,0,0,0,0,9,116,37983,0,1,10,1,0,1,0,0,495,30,4,0,0,4,1,2264,0,2,105,0,9159,0,0,0,0,5,5,5,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,4,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,12,12,12,0,0,0,29875,0,69,0,0,0,14,97,914,3337,29809,0,0,0,0,1,0,10,0,0,0,0,0,0,904,5,0,0,0,0,0,0,0,0,0,0,0,32,6,0,0,0,0,0,1,0,224,32,674,8,0,0,666,0,860,0,1,0,327,69,0,0,0,0,0,0,0,0,0,2356,1,0,0,0,13,0,0,0,0,5,243,81,0,0,150,0,0,0,0,0,9617,1,0,477,43,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,3,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,93,1,1,1,0,82,0,0,0,0,9,72,170,0,32,14,0,3,0,0,0,154,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,2,3836,89,5 +8,0,0,15,3,51,103,3,207,64,64,0,2,2,88,66,121,0,9,16,0,2,0,5,0,5,15,0,9,0,1,0,0,2,23,0,54,293,25,0,452,0,0,0,1,0,0,3,0,0,0,0,5,312,0,4,0,0,0,1,0,0,2,1,44,83,0,0,4381,51,833,0,10,0,0,0,0,0,17,6,0,0,0,0,9,14,937,0,3,23,2,0,9,135,0,1209,229,3,0,0,4,3,1053,0,68,2,4,3520,0,0,5,0,9,0,8,0,0,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,776,0,147,0,0,0,10,58,118,1452,709,0,0,0,0,1,0,46,0,0,0,1,1,0,1268,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,138,103,746,20,0,0,576,0,2265,0,1,0,298,82,0,0,0,0,0,0,0,0,0,662,1,0,0,0,23,0,0,0,0,4,213,265,0,0,530,0,4,0,0,3,719,0,0,81,0,0,1,2,0,0,0,0,6,0,1,0,7,0,0,0,0,0,64,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,5,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,65,1,1,1,0,67,0,0,0,0,25,77,103,0,30,0,0,0,0,0,0,523,7,0,0,0,0,0,0,0,0,0,0,0,3,0,1,74,0,0,0,0,0,0,0,0,0,0,0,3,0,5,751,196,5 +0,0,0,8,0,41,7,0,39,1,11,0,0,0,9,0,18,0,6,2,0,0,0,1,0,0,0,0,8,0,1,0,0,0,28,0,41,9,0,0,65,0,0,0,1,0,0,2,0,0,0,0,0,66,0,0,0,0,0,1,0,0,0,0,0,14,0,0,679,41,89,0,9,0,0,0,0,0,6,0,0,0,0,0,2,5,37,0,0,28,0,0,2,15,0,163,25,2,0,0,4,0,117,0,2,0,0,808,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,55,0,93,0,0,0,0,3,60,132,74,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,8,234,9,0,0,230,0,867,0,0,0,155,31,0,0,0,0,0,0,0,0,0,90,1,0,0,0,3,0,0,0,0,1,128,84,0,0,48,0,0,0,3,0,42,0,0,14,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,8,0,0,0,0,1,69,224,0,9,0,0,0,0,0,0,2786,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,188,70,5 +0,0,0,11,0,22,8,0,62,18,12,0,1,3,30,0,61,0,7,5,0,0,0,1,1,2,15,0,10,0,1,0,0,0,8,0,22,107,18,0,161,0,0,0,1,0,0,1,0,0,0,0,5,175,0,0,0,0,0,1,0,0,0,0,0,19,0,0,2158,22,198,0,11,0,0,0,0,0,6,0,0,0,0,0,1,3,313,0,0,8,0,0,2,16,0,186,25,2,0,0,2,0,288,0,10,0,4,2937,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,221,0,45,0,0,0,10,45,53,186,235,0,0,0,0,1,0,0,0,0,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,28,203,12,0,0,174,0,800,0,0,0,89,37,0,0,0,0,0,0,4,0,0,184,1,0,0,0,7,0,0,0,0,6,131,69,0,0,50,0,0,0,0,0,449,0,0,340,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,24,0,0,0,0,1,30,122,0,28,0,0,0,0,0,0,99,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,363,45,5 +3,0,0,8,0,44,34,0,114,23,26,0,0,6,32,0,1189,0,7,3,0,0,0,7,0,11,9,0,7,0,3,0,0,0,7,867,44,6,3,0,178,0,0,0,1,0,0,7,0,0,0,0,4,311,0,0,0,0,0,1,0,0,0,0,0,35,0,0,48938,44,1449,0,7,0,0,0,0,0,35,0,0,0,0,1,8,32,10118,0,0,7,0,0,2,58,0,669,110,14,0,0,2,0,1563,0,24,2,0,5344,0,0,3,0,8,0,7,0,0,0,0,1,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,12,12,12,0,0,0,2843,0,91,0,0,0,8,20,279,802,2826,0,0,0,0,1,0,4,0,0,0,0,0,0,3955,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,84,46,273,8,0,0,364,0,577,0,0,0,205,25,0,0,0,0,0,0,0,0,0,1408,1,0,0,0,10,0,0,0,0,2,131,205,0,0,252,0,1,0,0,1,6428,1,0,2929,6,0,1,1,0,0,0,0,17,0,0,0,4,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,16,0,0,0,0,1,51,442,0,18,12,0,0,0,0,0,226,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,29,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4141,81,5 +0,0,0,6,0,33,32,0,99,8,28,0,0,2,12,0,38,0,7,8,0,0,0,5,13,8,0,0,22,0,2,0,0,0,6,0,33,6,35,0,160,0,0,0,1,0,0,4,0,0,0,0,20,194,0,0,0,0,0,1,0,0,0,0,0,20,0,0,2086,33,274,0,23,0,0,0,0,0,22,0,0,0,0,0,7,16,261,0,0,6,0,0,2,78,0,787,125,7,0,0,2,0,391,0,9,0,0,1094,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,219,0,85,0,0,0,38,71,194,531,203,0,0,0,0,1,0,3,0,0,0,0,0,0,616,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,19,217,6,0,0,274,0,482,0,0,0,165,29,0,0,0,0,0,0,0,0,0,218,1,0,0,0,26,0,0,0,0,1,119,233,0,0,329,0,0,0,0,0,342,0,0,201,2,0,1,1,1,0,0,0,9,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,41,0,0,0,0,1,39,355,0,24,8,0,0,0,0,0,219,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,4,401,158,5 +0,0,0,13,0,58,20,0,74,7,15,0,0,6,22,1,885,0,7,2,0,0,0,11,0,10,3,0,6,0,0,1,0,0,17,898,58,6,0,0,148,0,0,0,1,0,0,2,0,0,0,0,2,178,0,0,0,0,0,1,0,0,0,0,0,25,0,0,18702,58,1050,0,5,0,0,0,0,0,23,0,0,0,0,0,12,28,2194,0,0,17,0,0,2,26,0,426,55,4,0,0,2,0,1097,0,12,8,0,1906,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,54,12,12,12,0,0,0,1402,0,116,0,0,0,3,9,319,594,1416,0,0,0,0,1,0,3,0,0,0,0,0,0,5023,0,0,1,0,0,0,0,0,0,3,0,0,2,1,0,0,0,0,0,1,0,84,29,289,13,0,0,370,0,615,0,0,0,198,23,0,0,0,0,0,0,0,0,0,1030,1,0,0,0,13,0,0,0,0,2,143,137,0,0,94,0,1,0,6,1,3153,1,0,4065,8,0,1,1,1,4,1,0,6,0,0,0,2,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,8,2,0,0,0,0,0,5,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,74,1,1,1,0,9,0,0,0,0,1,75,443,0,8,12,0,0,0,1,0,158,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,13,0,0,0,0,2,0,0,0,0,0,0,0,0,1,1554,116,5 +3,0,0,14,34,175,41,134,239,16,52,0,1,12,30,0,1439,0,9,8,0,33,66,9,33,14,15,0,18,0,1,0,0,34,121,11906,209,118,18,0,190,0,0,0,1,0,0,2,0,0,0,0,6,845,0,0,0,0,0,1,0,0,0,5,0,9,0,0,21196,175,6636,0,15,0,0,0,0,0,33,99,0,0,0,0,11,59,3066,0,134,121,34,0,1,0,0,1389,30,4,0,0,4,34,1763,0,6,60,4,5480,0,0,0,0,5,3,3,0,0,0,0,1,0,0,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,185,44,44,44,0,0,32,1057,32,190,0,0,0,13,60,778,1133,1071,0,0,0,0,1,0,4,0,0,0,0,0,0,987,3,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,1,0,224,45,1163,49,0,0,1155,0,1364,0,1,0,606,73,0,0,0,0,0,0,0,0,0,1823,1,0,0,0,149,0,0,0,0,7,306,33,0,0,68,0,5,0,0,0,6781,1,0,290,17,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,17,0,0,0,8,2,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,210,1,1,1,0,47,0,0,0,0,713,330,356,0,34,14,0,0,0,0,0,162,4,0,0,0,0,0,0,0,0,0,0,0,36,0,1,22,0,0,0,0,0,0,0,0,0,0,0,67,0,1,1584,137,5 +1,0,0,28,0,48,34,0,93,16,24,0,0,2,24,0,44,0,7,4,0,0,0,5,3,12,12,0,9,0,2,0,0,0,21,0,48,6,9,0,178,0,0,0,1,0,0,0,0,0,0,0,6,205,0,1,0,0,0,1,0,0,0,1,0,33,0,0,31834,48,234,0,10,0,0,0,0,0,9,0,0,0,0,0,8,15,464,0,0,21,0,0,3,63,0,630,100,1,0,0,2,0,425,0,21,0,0,5605,0,0,0,0,8,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,14,10,10,10,0,0,0,455,0,84,0,0,0,9,36,206,22877,433,0,0,0,0,1,0,3,0,0,0,0,0,0,1533,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,41,260,25,0,0,265,0,6914,0,0,0,142,18,0,4,0,0,0,0,0,0,0,228,1,0,0,0,12,0,0,0,0,3,136,146,0,0,241,1,0,0,0,0,605,0,0,1316,3,0,1,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,16,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,16,0,0,0,0,1,69,113,0,26,9,0,0,0,0,0,175,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,22,1,0,0,0,0,0,0,0,0,0,0,0,0,1,550,60,5 +0,0,0,5,0,19,17,0,40,6,7,0,0,0,12,0,27,0,7,1,0,0,0,2,0,0,0,0,1,0,2,0,0,0,4,0,19,6,0,0,84,0,0,0,1,0,0,1,0,0,0,0,1,131,0,2,0,0,0,1,0,0,0,0,0,11,0,0,1239,19,94,0,3,0,0,0,0,0,6,0,0,0,0,0,2,4,97,0,0,4,0,0,1,21,0,177,15,2,0,0,2,0,135,0,6,0,0,431,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,91,0,42,0,0,0,2,5,48,211,160,0,0,0,0,1,0,0,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,28,13,133,9,0,0,209,0,305,0,0,0,132,16,0,0,0,0,0,0,0,0,0,110,1,0,0,0,3,0,0,0,0,2,102,140,0,0,37,0,1,0,0,0,3779,0,0,93,0,0,1,11,0,0,0,0,2,0,1,0,6,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,3,0,0,0,0,1,23,95,0,3,0,0,0,0,0,0,74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,13,0,0,0,0,0,0,0,0,0,0,0,0,3,125,21,5 +2,0,0,14,1,63,31,1,151,4,5,0,0,2,14,0,885,0,10,5,0,0,0,12,0,11,3,0,17,0,13,1,0,1,27,898,64,113,0,0,340,0,0,0,1,0,0,2,1,0,0,0,2,288,0,0,0,0,0,1,0,0,0,0,0,12,0,0,38989,63,1179,0,29,0,0,0,0,0,71,0,0,0,0,0,16,26,5244,0,1,27,1,0,1,0,0,183,5,7,0,0,4,1,926,0,8,0,0,2432,0,0,0,0,14,0,0,0,0,0,0,1,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,6,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,115,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,48,12,12,12,0,12,0,4646,0,136,0,0,0,14,20,295,348,4801,0,0,0,0,1,0,10,0,0,0,0,0,0,1485,0,0,0,0,0,0,0,0,0,1,0,0,2,1,0,0,0,0,0,1,0,173,38,776,18,0,0,827,0,3571,0,1,0,408,43,0,0,0,0,0,0,0,0,0,1098,1,0,5,0,17,0,0,0,0,90,220,110,0,0,0,0,0,0,0,0,2593,1,0,150,7,0,1,1,1,0,0,0,15,1,0,0,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,7,14,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,75,1,1,1,0,17,0,0,0,0,48,91,511,0,33,12,0,0,0,0,0,96,1,0,0,0,0,0,0,0,0,0,0,0,2,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,0,3,1146,613,5 +1,0,0,5,0,16,2,0,22,9,3,0,0,0,12,0,34,0,7,3,0,0,0,1,0,1,9,0,5,0,2,0,0,0,6,0,16,6,6,0,36,0,0,0,1,0,0,1,0,0,0,0,3,145,0,0,0,0,0,1,0,0,0,0,0,13,0,0,559,16,85,0,7,0,0,0,0,0,5,0,0,0,0,0,1,3,23,0,0,6,0,0,0,0,0,30,0,2,0,0,2,0,98,0,10,0,0,306,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,44,0,36,0,0,0,6,25,34,62,53,0,0,0,0,1,0,1,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,13,152,5,0,0,159,0,613,0,0,0,92,5,0,0,0,0,0,0,0,0,0,80,1,0,0,0,4,0,0,0,0,4,98,67,0,0,0,0,0,0,0,0,100,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,18,0,0,0,0,1,22,169,0,17,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,73,67,5 +6,0,0,7,0,88,18,0,49,16,14,0,0,6,25,0,697,0,7,6,0,0,0,8,0,16,30,0,21,0,2,4,0,0,49,1010,88,6,14,0,102,0,0,0,1,0,0,1,0,0,0,0,11,292,0,0,0,0,0,1,0,0,0,0,0,22,0,0,45817,88,870,0,25,0,0,0,0,0,29,0,0,0,0,0,9,66,7871,0,0,49,0,0,0,0,0,303,20,1,0,0,2,0,943,0,18,35,0,3683,0,0,0,0,7,6,3,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,13,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,54,12,12,12,0,0,0,6247,0,109,0,0,0,24,80,635,908,6220,0,0,0,0,1,0,8,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,84,37,414,7,0,0,392,0,490,0,0,0,228,62,0,0,0,0,0,0,0,0,0,816,1,0,0,0,14,0,0,0,0,8,176,22,0,0,59,0,0,0,0,0,13584,1,0,127,16,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,18,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,16,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,123,1,1,1,0,58,0,0,0,0,1,137,215,0,59,14,0,0,0,0,0,132,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1912,56,5 +0,0,0,3,0,15,2,0,12,0,2,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,15,6,0,0,6,0,0,0,1,0,0,1,1,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,2,0,0,103,15,37,0,1,0,0,0,0,0,4,0,0,0,0,0,1,4,35,0,0,0,0,0,0,0,0,6,0,4,1,1,2,0,8,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,37,0,0,0,0,3,39,5,53,0,0,0,0,1,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,93,3,0,0,104,0,2671,0,0,0,20,2,0,0,0,1,0,0,0,0,0,42,1,0,3,0,2,0,0,0,0,0,97,7,0,0,0,0,0,0,0,0,36,0,0,16,0,0,1,0,0,0,0,0,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,15,16,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,78,16,5 +5,0,0,18,3,71,108,9,739,25,74,0,0,7,40,0,171,0,9,10,0,2,2,9,0,12,6,0,15,0,3,0,0,3,22,4064,74,124,9,0,1429,0,0,0,1,0,0,6,0,0,0,0,5,899,1,0,0,0,0,1,0,0,0,0,0,48,0,0,23812,71,1353,0,15,0,0,0,0,2,45,6,0,0,0,0,12,80,2788,0,9,22,3,0,6,656,0,5112,270,9,0,0,4,3,3460,0,33,53,0,3299,0,2,3,0,10,0,6,0,4,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1329,0,175,0,0,0,12,30,610,2736,1307,0,0,0,0,1,0,3,0,0,0,1,1,0,2080,0,0,0,0,0,0,0,0,0,0,0,0,6,1,4,0,0,0,0,1,0,233,70,840,24,0,0,930,0,2874,0,1,0,525,81,0,0,0,0,0,0,4,0,0,1148,1,0,0,0,23,0,0,0,0,5,240,1532,0,0,914,0,0,0,0,1,1471,1,0,886,14,0,1,1,1,0,0,0,9,0,0,0,2,0,0,0,0,0,28,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,14,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,80,1,1,1,0,46,0,0,0,0,25,96,679,0,24,12,0,0,0,0,0,1558,4,0,0,0,0,0,0,0,0,0,0,0,5,0,1,37,0,0,0,0,0,0,0,0,0,0,0,5,0,4,1344,261,5 +5,0,0,16,1,83,73,1,187,30,54,0,1,8,51,0,141,0,9,10,0,0,0,6,3,15,24,0,16,0,1,0,0,1,44,0,84,144,32,0,388,0,0,0,1,0,0,1,0,0,0,0,9,244,0,0,0,0,0,1,0,0,1,3,0,46,0,0,2261,83,509,0,15,0,0,0,0,0,7,0,0,0,0,0,10,17,108,0,1,44,1,0,6,109,0,1159,225,1,0,0,4,1,827,0,30,0,3,3196,0,0,0,0,9,2,3,0,0,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,34,0,1,0,0,0,0,0,0,0,0,0,1,3,2,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,10,10,10,0,0,0,381,0,133,0,0,0,16,97,276,1116,170,0,0,0,0,1,0,2,0,0,0,0,0,0,739,2,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,192,71,568,18,0,0,495,0,841,0,1,0,242,228,0,0,0,0,0,0,0,0,0,524,1,0,0,0,19,0,0,0,0,6,191,192,0,0,410,0,4,0,1,4,845,0,0,8,3,0,1,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,30,0,0,4,7,1,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0,0,3,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,115,1,1,1,0,76,0,0,0,0,9,128,57,0,47,9,0,0,0,0,0,368,7,0,0,0,0,0,0,0,0,0,0,0,2,0,1,40,0,0,0,0,0,0,0,0,0,0,0,1,0,1,408,173,5 +8,0,0,3,1,51,17,4,119,10,35,0,0,0,21,2,131,0,7,7,0,2,0,4,1,0,3,0,9,0,3,0,0,0,31,0,52,6,231,0,280,0,0,0,1,0,0,1,0,0,0,0,6,123,0,0,0,0,0,1,0,0,0,19,0,37,0,0,990,51,389,0,12,0,0,0,1,0,4,3,0,0,0,0,5,7,53,0,4,31,0,0,1,78,0,688,40,1,0,0,2,1,549,0,9,0,0,1326,0,0,0,0,10,1,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,2,1,0,0,0,0,3,0,0,0,0,0,0,0,6,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,18,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,26,0,0,0,0,0,0,136,0,124,0,0,0,12,26,108,661,96,0,0,0,0,1,0,0,0,0,0,0,0,0,407,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,24,341,5,0,0,337,0,2022,0,0,0,221,40,0,0,0,0,0,0,0,0,0,332,1,0,0,0,14,0,0,0,0,4,150,294,0,0,131,0,0,0,0,0,953,0,0,10,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,25,25,0,0,4,1,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,16,0,0,0,0,27,83,246,0,15,0,0,0,0,0,0,382,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,485,96,5 +2,0,0,7,1,53,59,1,72,2,10,0,0,9,6,0,1077,0,9,2,0,0,0,8,0,11,0,0,6,0,1,0,0,1,7,17712,54,54,0,0,61,0,0,0,1,0,0,3,0,0,0,0,1,797,0,0,0,0,0,1,0,0,0,3,0,3,0,0,131057,53,1285,0,3,0,0,0,0,0,74,0,0,0,0,0,9,38,21764,0,1,7,1,0,1,0,0,311,30,5,0,0,4,1,1152,0,1,32,0,3630,0,0,0,0,2,2,2,0,0,0,0,1,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,18855,0,72,0,0,0,1,4,525,996,18831,0,0,0,0,1,0,4,0,0,0,0,0,0,484,2,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,1,0,220,28,479,8,0,0,586,0,643,0,1,0,273,23,0,0,0,0,0,0,0,0,0,1242,1,0,0,0,10,0,0,0,0,2,204,43,0,0,35,0,0,0,0,0,4313,1,0,132,36,0,1,1,0,0,0,0,6,0,0,0,1,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,65,1,1,1,0,5,0,0,0,0,9,61,155,0,4,14,0,0,0,0,0,110,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1565,104,5 +0,0,0,7,0,70,7,0,31,39,3,0,0,2,49,0,35,0,7,4,0,0,0,24,0,19,3,0,12,0,1,1,0,0,33,0,70,808,10,0,152,0,5,0,1,0,0,12,1,0,0,0,3,213,0,0,0,0,0,1,0,0,0,0,0,51,0,0,5993,70,295,0,22,0,0,0,1,0,82,0,0,0,0,0,16,39,615,0,0,33,0,0,0,0,0,158,5,28,0,0,2,0,204,0,46,0,0,2693,0,0,0,0,8,0,3,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,21,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,10,10,10,0,0,0,442,0,198,0,0,0,14,40,273,986,404,0,0,0,0,1,0,13,0,0,0,0,0,0,1877,0,0,0,0,7,0,0,0,0,1,0,0,11,1,0,0,0,0,0,1,0,37,56,424,7,0,0,415,0,1226,0,0,0,270,120,0,0,0,0,0,0,0,0,0,134,1,0,3,0,28,0,0,0,0,48,161,115,0,0,0,0,0,0,4,5,103648,0,0,610,3,0,1,1,1,0,0,0,30,0,0,0,7,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,2,0,0,0,3,182,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,88,1,1,1,0,32,0,0,0,0,1,103,306,0,27,9,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,183,5 +0,0,0,19,1,185,257,1,369,36,96,0,0,6,70,0,1510,0,9,7,0,0,0,14,0,16,18,0,36,0,7,0,0,1,113,2857,186,106,24,0,672,0,0,0,1,0,0,5,0,0,0,0,12,545,0,0,0,0,0,1,0,0,2,41,0,71,0,0,56192,185,2336,0,39,0,0,0,0,0,41,0,0,0,0,1,15,36,9904,0,1,113,1,0,9,264,0,2568,384,7,0,0,4,1,2920,0,47,3,0,8200,0,0,0,0,48,0,6,0,4,0,0,1,0,0,0,30,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,7,0,0,0,0,0,0,15,0,59,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,76,0,1,0,0,0,0,0,0,0,8,0,1,6,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,12,12,12,0,0,0,6614,0,277,0,0,0,23,71,644,3366,6614,0,0,0,0,1,0,53,0,0,0,0,0,0,4679,0,0,0,0,0,0,0,0,0,0,0,0,5,1,4,0,0,0,0,1,0,192,87,1055,20,0,0,1270,0,1527,0,1,0,871,154,0,0,0,0,0,0,0,0,0,2317,1,0,0,0,21,0,0,0,0,10,348,653,0,0,898,0,1,0,8,8,5276,1,0,3450,20,0,1,1,1,0,0,0,8,0,3,0,10,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,20,17,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,230,1,1,1,0,136,0,0,0,10,9,299,474,0,63,14,0,0,0,0,0,714,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,52,0,0,0,0,0,0,0,0,0,0,0,1,0,5,2616,329,5 +0,0,0,4,2,27,4,8,35,7,5,0,0,0,17,0,49,0,7,8,0,2,2,2,1,2,6,0,6,0,1,0,0,2,10,0,29,6,9,0,58,0,0,0,1,0,0,7,0,0,0,0,3,109,0,0,0,0,0,1,0,0,0,3,0,6,0,0,1721,27,310,0,7,0,0,0,0,0,30,6,0,0,0,0,3,12,210,0,8,10,2,0,0,0,0,51,0,13,1,0,2,2,99,0,2,0,0,541,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,221,0,97,0,0,0,6,36,61,94,560,0,0,0,0,1,0,0,0,0,0,0,0,0,782,0,0,0,0,0,0,0,0,0,0,0,0,7,0,2,0,0,0,0,0,0,12,14,241,17,0,0,365,0,780,0,0,0,229,36,0,0,0,0,0,0,2,0,0,117,1,0,0,0,15,0,0,0,0,4,121,156,0,0,0,0,0,0,0,0,534,0,0,183,0,0,1,0,0,0,0,0,15,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,27,0,0,0,0,18,39,402,0,15,0,0,0,0,0,0,67,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,4,0,1,324,60,5 +5,0,0,13,0,103,78,0,212,30,83,0,0,6,48,0,1049,0,7,7,0,0,0,8,4,19,45,0,38,0,3,5,0,0,57,1050,103,6,52,0,560,0,0,0,1,0,0,1,0,0,0,0,17,477,0,0,0,0,0,1,0,0,2,0,0,54,0,0,96201,103,1595,0,42,0,0,0,0,0,47,0,0,0,0,0,9,120,13776,0,0,57,0,0,5,151,0,1628,295,2,0,0,2,0,2056,0,36,66,0,15704,0,0,0,0,15,5,4,0,0,0,0,1,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,12,0,6,4,0,0,0,0,0,0,8,1,1,0,0,0,1,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,5,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,68,12,12,12,0,0,0,11000,0,136,0,0,0,42,297,832,3869,10956,0,0,0,0,1,0,7,0,0,0,0,0,0,3641,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,84,60,519,16,0,0,546,0,884,0,0,0,359,118,0,0,0,0,0,0,0,0,0,1483,1,0,0,0,19,0,0,0,0,13,194,309,0,0,720,0,0,0,0,2,4564,1,0,2393,25,0,1,1,1,0,0,0,1,0,0,0,5,0,0,0,0,0,37,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,25,8,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,150,1,1,1,0,331,0,0,0,0,1,160,360,0,96,14,0,0,0,0,0,467,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,40,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3190,152,5 +1,0,0,5,1,34,30,1,38,2,6,0,0,2,5,0,104,0,9,2,0,0,0,8,0,11,0,0,2,0,1,0,0,1,2,4,35,54,0,0,27,0,0,0,1,0,0,1,0,0,0,0,1,145,0,0,0,0,0,1,0,0,0,2,0,2,0,0,2026,34,145,0,1,0,0,0,0,0,8,0,0,0,0,1,9,18,446,0,1,2,1,0,1,0,0,125,5,3,0,0,4,1,66,0,1,0,0,837,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,89,0,76,0,0,0,0,3,239,24,87,0,0,0,0,1,0,4,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,135,25,299,6,0,0,326,0,458,0,1,0,86,5,0,0,0,0,0,0,0,0,0,194,1,0,0,0,10,0,0,0,0,1,132,16,0,0,1,0,0,0,0,1,410,1,0,16,4,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,38,1,1,1,0,0,0,0,0,0,9,37,42,0,2,12,0,0,0,0,0,59,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,375,38,5 +0,0,0,3,0,11,4,0,29,0,8,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,37,0,0,0,1,0,0,4,0,0,0,0,0,86,0,0,0,0,0,1,0,0,0,0,0,5,0,0,421,11,71,0,1,0,0,0,0,0,11,0,0,0,0,0,1,7,87,0,0,1,0,0,1,17,0,151,15,5,0,0,2,0,93,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,82,0,73,0,0,0,0,3,27,139,100,0,0,0,0,1,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,8,3,75,3,0,0,119,0,200,0,0,0,58,11,0,0,0,0,0,0,0,0,0,64,1,0,0,0,2,0,0,0,0,0,93,81,0,0,33,0,0,0,0,0,44,0,0,61,0,0,1,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,180,0,1,0,0,0,0,0,0,67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,169,42,5 +0,0,0,15,0,72,21,0,373,40,161,0,0,7,63,0,1699,0,7,6,0,0,0,7,7,12,24,0,22,0,1,0,0,0,31,898,72,68,40,0,1752,0,0,0,1,0,0,10,0,0,0,0,10,485,0,0,0,0,0,1,0,0,0,0,0,46,0,0,51464,72,2420,0,20,0,0,0,0,0,44,0,0,0,0,0,10,37,8290,0,0,31,0,0,2,298,0,2732,730,12,0,0,2,0,3723,0,37,3,0,5865,0,0,0,0,27,0,9,0,8,0,0,1,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,12,12,12,0,0,0,6267,0,187,0,0,0,19,118,417,1868,6245,0,0,0,0,1,0,11,0,0,0,0,0,0,2672,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,1,0,106,73,615,15,0,0,453,0,761,1,0,0,268,127,0,0,0,0,0,0,0,0,0,2331,1,0,0,0,20,0,0,0,0,11,197,533,0,0,1663,0,0,0,0,0,6394,1,0,1760,6,0,1,1,0,0,0,0,18,0,0,0,3,0,0,0,0,0,31,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,81,1,1,1,0,117,0,0,0,0,1,103,796,0,47,12,0,0,0,0,0,2538,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,48,0,0,0,0,0,0,0,0,0,0,0,0,0,9,2789,160,5 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,2,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,96,8,42,0,1,0,0,0,0,0,5,0,0,0,0,2,1,6,34,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,34,0,23,0,0,0,0,3,21,4,47,0,0,0,0,1,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,63,2,0,0,70,0,87,0,0,0,12,0,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,90,3,0,0,0,0,0,0,0,0,31,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,81,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,1,5 +0,0,0,9,0,17,2,0,10,24,4,2,0,0,32,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,7,0,17,6,0,0,76,0,0,0,1,0,0,1,0,0,0,0,0,87,0,0,0,0,0,1,0,0,0,0,0,31,0,0,496,17,65,0,1,0,0,0,0,0,7,0,0,0,0,0,1,3,58,0,0,7,0,0,0,0,0,8,0,2,0,0,2,0,72,0,28,0,0,432,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,40,0,0,0,0,3,32,19,79,0,0,0,0,1,0,0,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,32,145,13,0,0,180,0,435,0,0,0,87,9,0,0,0,0,0,0,0,0,0,71,1,0,0,0,2,0,0,0,0,1,133,57,0,0,0,0,0,0,0,0,37,0,0,52,0,0,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,0,0,0,0,0,1,24,195,0,1,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,2,131,83,5 +0,0,0,9,0,14,6,0,18,3,4,0,0,0,10,0,19,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,14,8,0,0,30,0,0,0,1,0,0,5,0,0,0,0,0,143,0,0,0,0,0,1,0,0,1,0,0,9,0,0,1758,14,82,0,1,0,0,0,0,0,23,0,0,0,0,0,1,8,141,0,0,3,0,0,0,0,0,13,0,9,1,0,2,0,43,0,4,0,0,307,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,154,0,91,0,0,0,0,3,36,14,182,0,0,0,0,1,0,1,0,0,0,0,0,0,438,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,9,129,14,0,0,354,0,620,0,0,0,289,13,0,0,0,0,0,0,0,0,0,63,1,0,0,0,2,0,0,0,0,0,112,244,0,0,1,0,0,0,0,4,72,0,0,124,0,0,1,0,1,1,1,0,9,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,17,683,0,1,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,1,1,0,0,0,0,0,0,0,0,0,0,3,263,62,5 +0,0,0,2,0,12,2,0,9,0,2,0,0,0,2,0,22,0,6,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,3,0,12,6,4,0,6,0,0,0,1,0,0,1,0,0,0,0,1,53,0,0,0,0,0,1,0,0,0,0,0,1,0,0,399,12,43,0,3,0,0,0,0,0,6,0,0,0,0,0,1,3,36,0,0,3,0,0,0,0,0,16,0,1,0,0,2,0,28,0,0,0,0,231,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,52,0,34,0,0,0,2,11,29,28,61,0,0,0,0,1,0,0,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,116,2,0,0,121,0,307,0,0,0,66,7,0,0,0,0,0,0,0,0,0,43,1,0,0,0,3,0,0,0,0,2,106,38,0,0,0,0,0,0,0,0,73,0,0,56,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,4,0,0,0,0,1,15,84,0,7,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,75,49,5 +11,0,0,12,32,54,49,128,5340,17,81,0,0,0,92,0,19576,0,7,67,0,32,32,4,9,1,12,0,19,0,0,4,0,32,20,0,86,333,8,0,495,0,0,0,1,0,0,10,0,0,0,0,13,1402,0,0,0,0,0,1,0,0,0,224,0,25,0,0,14086,54,28510,0,24,0,0,0,0,0,46,96,0,0,0,0,6,22,1076,0,128,20,32,0,2,99,0,1070,140,11,2,0,2,32,20111,0,19,0,0,2067,0,0,0,0,8,2,0,0,0,0,0,1,0,0,0,1185,0,0,0,0,0,0,0,0,0,0,0,7,0,0,1,7,0,16,0,8,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,41,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,9770,0,0,0,0,0,0,1070,0,207,0,0,0,26,66,179,698,1241,0,0,0,0,1,0,0,0,0,0,2,1,0,4500,0,0,0,0,0,0,0,0,0,0,0,0,10,0,6,0,0,0,0,0,0,10,78,1841,44,0,0,2132,0,1243,0,0,0,876,99,0,0,0,0,0,0,6,0,0,25145,1,0,0,0,144,0,0,0,0,6,421,585,0,0,319,0,0,0,0,0,28415,0,0,353,0,0,1,0,0,0,0,0,18,0,0,0,5,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,78,0,0,0,0,257,106,958,0,36,0,0,0,0,0,0,685,33,0,0,0,0,0,0,0,0,0,0,0,32,0,1,27,0,0,0,0,0,0,0,0,0,0,0,64,0,12,4659,404,5 +1,0,0,2,0,10,2,0,4,0,2,0,0,0,2,0,9,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,1,0,0,40,10,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,91,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,19,0,0,0,0,3,26,13,25,0,0,0,0,1,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,50,2,0,0,42,0,209,0,0,0,6,1,0,0,0,0,0,0,0,0,0,26,0,0,0,0,2,0,0,0,0,0,92,1,0,0,0,0,0,0,0,1,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,1,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,39,5 +0,0,0,16,3,72,66,9,177,43,34,4,0,2,84,0,122,0,9,13,0,2,2,6,1,15,14,0,16,0,1,0,0,3,26,0,75,116,534,0,403,0,0,0,1,0,0,6,0,0,0,0,8,400,0,0,0,0,0,1,0,0,0,4,0,70,0,0,4009,72,679,0,17,0,0,0,0,0,24,6,0,0,0,1,9,21,467,0,9,26,3,0,4,73,0,761,115,9,0,0,4,3,669,0,45,0,0,2362,0,0,0,0,18,0,11,0,2,0,0,1,0,0,0,11,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,10,10,10,0,0,0,426,0,177,0,0,0,13,64,303,697,480,0,0,0,0,1,0,3,0,0,0,0,0,0,1325,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,163,103,645,58,0,0,675,0,2697,0,1,0,331,82,0,0,0,0,0,0,0,0,0,498,1,0,0,0,24,0,0,0,0,4,242,237,0,0,282,0,0,0,0,10,1614,0,0,191,2,0,1,2,0,0,0,0,9,0,0,0,4,0,0,0,0,0,36,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,7,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,88,1,1,1,0,68,0,0,0,0,25,101,346,0,38,8,0,0,0,0,0,326,9,0,0,0,0,0,0,0,0,0,0,0,4,0,1,49,1,0,0,0,0,0,0,0,0,0,0,5,0,4,4648,447,5 +0,0,0,15,1,34,28,1,58,18,10,1,0,2,40,0,84,0,9,3,0,0,0,6,0,1,6,0,4,0,1,0,0,1,15,0,35,217,6,0,145,0,0,0,1,0,0,3,0,0,0,0,2,144,0,0,0,0,0,1,0,0,0,0,0,27,0,0,6978,34,214,0,5,0,0,0,0,0,11,0,0,0,0,1,6,12,1605,0,1,15,1,0,2,8,0,152,15,3,0,0,4,1,208,0,24,0,3,861,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,902,0,96,0,0,0,4,18,93,136,930,0,0,0,0,1,0,0,0,0,0,0,0,0,2127,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,125,43,348,18,0,0,362,0,1083,0,1,0,158,97,0,0,0,0,0,0,4,0,0,232,1,0,0,0,9,0,0,0,0,3,143,69,0,0,30,0,0,0,0,1,768,0,0,1528,0,0,1,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,50,1,1,1,0,8,0,0,0,0,9,50,158,0,12,0,0,0,0,0,0,139,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,20,0,0,0,0,0,0,0,0,0,0,0,1,0,3,1107,82,5 +7,0,0,28,0,110,92,0,88,31,73,0,0,12,37,0,1301,0,7,3,0,0,0,8,0,11,6,0,95,0,4,1,0,0,58,14574,110,79,3,0,247,0,0,0,1,0,0,4,0,0,0,0,6,1583,0,0,0,0,0,1,0,0,0,6,0,26,0,0,54424,110,1882,0,97,0,0,0,0,0,138,0,0,0,0,1,9,396,10722,0,0,58,0,0,1,8,0,1091,55,4,0,0,2,0,1682,0,20,650,2,11054,0,4,0,0,0,2,3,0,0,0,0,1,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,6,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,12,12,12,0,0,0,2085,0,141,0,0,0,60,72,1204,4140,2087,0,0,0,0,1,0,5,0,0,0,0,0,0,944,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,171,239,712,36,0,0,807,0,701,0,0,0,580,138,0,0,0,0,0,0,0,0,0,1610,1,0,0,0,11,0,0,0,0,7,329,79,0,0,636,0,0,0,0,1,8809,1,0,347,65,0,1,1,0,0,0,0,9,0,0,0,1,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,65,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,128,1,1,1,0,253,0,0,0,0,1,168,617,0,105,12,0,0,0,0,0,177,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,37,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4413,169,5 +1,0,0,18,0,68,9,0,81,67,21,1,1,5,84,3,117,0,7,9,0,0,0,5,8,17,39,0,27,0,1,0,0,0,32,0,68,301,45,0,269,0,0,0,1,0,0,2,0,0,0,0,14,246,0,0,0,0,0,1,0,0,0,0,0,71,0,0,2337,68,400,0,27,0,0,0,0,0,9,0,0,0,0,0,8,15,100,0,0,32,0,0,2,22,0,392,40,4,0,0,2,0,642,0,62,0,4,2642,0,0,0,0,7,0,2,0,0,0,0,1,0,0,0,31,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,29,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,10,10,10,0,0,0,146,0,87,0,0,0,26,129,246,470,132,0,0,0,0,1,0,3,0,0,0,0,0,0,476,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,38,91,389,19,0,0,297,0,1033,0,0,0,165,86,0,0,0,0,0,0,0,0,0,329,1,0,0,0,22,0,0,0,0,13,168,90,0,0,83,0,0,0,0,0,884,0,0,39,2,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,65,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,80,1,1,1,0,86,0,0,0,0,1,100,183,0,76,8,0,0,0,0,0,238,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,389,172,5 +0,0,0,19,0,45,10,0,35,82,8,0,0,2,85,0,86,0,7,10,0,0,0,6,0,13,9,0,10,0,2,0,0,0,8,4,45,61,8,0,172,0,0,0,1,0,0,1,0,0,0,0,5,313,0,0,0,0,0,1,0,0,0,0,0,11,0,0,4145,45,236,0,9,0,0,0,0,0,11,0,0,0,0,0,12,21,395,0,0,8,0,0,1,11,0,211,20,2,0,0,2,0,364,0,5,0,0,1472,0,0,0,0,2,0,4,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,12,12,12,0,0,0,197,0,68,0,0,0,8,31,240,740,172,0,0,0,0,1,0,3,0,0,0,0,0,0,338,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,37,163,283,98,0,0,392,0,1584,0,0,0,249,63,0,0,0,0,0,0,0,0,0,233,1,0,0,0,16,0,0,0,0,3,134,246,0,0,103,0,0,0,0,1,1976,1,0,141,5,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,2,0,0,0,5,0,0,0,0,0,0,0,0,4,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,21,0,0,0,0,1,53,221,0,22,12,0,0,0,0,0,156,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1233,315,5 +6,0,0,8,1,51,51,1,115,17,36,0,0,0,33,0,79,0,9,2,0,0,0,22,0,1,3,0,2,0,1,0,0,1,35,0,52,243,3,0,194,0,0,0,1,0,0,2,0,0,0,0,1,759,1,0,0,0,0,1,0,0,0,0,0,41,0,0,1585,51,342,0,3,0,0,0,0,0,9,0,0,0,0,0,22,25,202,0,1,35,1,0,6,76,0,728,135,2,0,0,4,1,442,0,29,0,0,1468,0,0,6,0,10,0,2,0,0,0,0,1,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,231,0,175,0,0,0,2,11,155,3257,311,0,0,0,0,1,0,2,0,0,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,135,56,505,9,0,0,433,0,2969,0,1,0,233,85,0,14,0,0,0,0,0,1,1,323,1,0,0,0,24,0,0,0,0,2,174,673,0,0,906,0,0,0,0,0,555,0,0,53,0,0,1,10,0,0,0,0,3,0,6,0,14,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,85,1,1,1,0,6,0,0,0,0,9,87,139,0,7,0,0,0,0,0,0,271,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,25,5,0,0,0,0,0,0,0,0,0,0,1,0,2,650,103,5 +0,0,0,12,0,24,4,0,60,21,7,0,1,3,32,0,59,0,7,4,0,0,0,1,1,2,12,0,8,0,1,0,0,0,11,0,24,151,14,0,81,0,0,0,1,0,0,6,0,0,0,0,4,200,0,0,0,0,0,1,0,0,0,0,0,11,0,0,3102,24,210,0,9,0,0,0,0,0,24,0,0,0,1,0,1,8,469,0,0,11,0,0,0,0,0,53,0,10,0,0,2,0,208,0,10,0,6,731,0,0,0,0,2,0,3,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,357,0,106,0,0,0,8,38,58,132,380,0,0,0,0,1,0,0,0,0,0,0,0,0,823,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,14,41,217,12,0,0,326,0,799,0,0,0,234,47,0,0,0,0,0,0,5,0,0,173,1,0,0,0,6,0,0,0,0,5,118,165,0,0,0,0,0,0,0,0,5138,0,0,436,0,0,1,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,22,0,0,0,0,8,35,505,0,23,0,0,0,0,0,0,93,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,4,600,77,5 +0,0,0,12,0,58,82,0,427,75,147,0,1,5,94,0,710,0,7,8,0,0,0,7,1,14,18,0,17,0,3,0,0,0,15,898,58,110,22,0,653,0,0,0,1,0,0,3,0,0,0,0,9,314,0,0,0,0,0,1,0,0,0,0,0,77,0,0,32637,58,1501,0,17,0,0,0,0,0,23,0,0,0,0,0,9,20,3785,0,0,15,0,0,3,347,0,2888,700,5,0,0,2,0,2365,0,62,0,4,3320,0,0,0,0,18,0,4,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,12,12,12,0,0,0,3223,0,103,0,0,0,16,66,293,1592,3212,0,0,0,0,1,0,3,0,0,0,0,0,0,4757,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,37,97,401,21,0,0,483,0,992,0,0,0,293,118,0,0,0,0,0,0,0,0,0,1473,1,0,0,0,16,0,0,0,0,9,193,642,0,0,1893,0,0,0,0,0,3192,1,0,4774,7,0,1,1,0,0,0,0,5,0,0,0,6,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,7,8,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,72,1,1,1,0,63,0,0,0,0,1,73,267,0,40,12,0,0,0,0,0,719,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,81,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6406,136,5 +16,0,0,30,1,167,278,1,1058,115,271,0,1,5,191,1,504,0,9,14,0,0,0,16,14,25,91,0,47,0,6,3,0,1,104,0,168,400,112,0,2071,0,0,0,1,0,0,9,0,0,0,0,28,466,0,2,0,0,0,1,0,0,0,16,0,187,0,0,11990,167,2498,0,55,0,0,0,0,0,47,0,0,0,0,0,24,39,2118,0,1,104,1,0,8,926,0,7455,1070,16,0,0,4,1,5277,0,130,1,7,6882,0,1,0,0,80,15,2,0,0,0,0,1,0,0,0,126,0,0,0,0,0,0,1,0,0,0,0,12,0,0,0,0,0,13,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,58,0,1,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,138,10,10,10,0,0,0,1605,0,509,0,0,0,54,1574,492,5430,1495,0,0,0,0,1,0,12,0,0,0,0,0,0,4912,0,0,0,0,1,0,0,0,0,0,0,0,16,1,0,0,0,0,0,2,0,166,745,1007,57,0,0,1237,0,4403,0,1,0,889,688,0,0,0,0,0,0,4,0,0,2318,1,0,0,0,44,0,0,0,0,21,365,1987,0,0,2854,0,1,0,4,21,2949,0,0,1135,3,0,1,1,1,0,0,0,30,0,0,0,6,0,0,0,0,0,108,0,0,4,8,0,0,0,0,0,0,0,62,62,0,0,23,16,0,0,0,0,3,14,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,215,1,1,1,0,196,0,0,0,0,72,272,659,0,163,9,0,0,0,0,0,2303,6,0,0,0,0,0,0,0,0,0,0,0,2,0,3,129,0,0,0,0,0,0,0,0,0,0,0,1,0,11,7064,265,5 +20,0,0,11,1,103,112,1,238,7,58,0,0,11,15,0,1521,0,9,3,0,0,0,11,0,13,3,0,16,0,1,0,0,1,46,34191,104,63,3,0,241,0,0,0,1,0,0,22,0,0,0,0,2,1249,0,0,0,0,0,1,0,0,0,39,0,19,0,0,361038,103,2144,0,14,0,0,0,0,0,173,0,0,0,0,1,12,122,82078,0,1,46,1,0,3,81,0,1179,170,43,0,0,4,1,2038,0,8,111,0,13340,0,0,0,0,29,20,22,0,0,0,0,1,0,0,0,46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,7,0,18,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,103,0,1,0,0,0,0,0,0,0,0,0,1,3,19,0,0,0,0,1,2,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,12,12,12,0,0,0,69928,0,323,0,0,0,8,17,1333,4184,69768,0,0,0,0,1,0,22,0,0,0,0,0,0,4455,21,0,0,0,0,0,0,0,0,0,0,0,22,21,4,0,0,0,0,1,0,268,37,913,17,0,0,1155,0,1264,0,1,0,789,170,0,0,0,0,0,1,4,0,0,1964,1,0,0,0,14,0,0,0,0,3,313,475,0,0,520,0,0,0,0,0,11213,1,0,2825,58,0,1,1,0,0,0,0,48,0,0,0,2,0,0,0,0,0,7,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,215,1,1,1,0,35,0,0,0,0,9,150,1928,0,19,14,0,0,0,0,0,365,3,0,0,0,0,0,0,0,0,0,0,0,4,0,2,15,0,0,0,0,0,0,0,0,0,0,0,1,0,9,6860,475,5 +8,0,0,17,1,91,43,1,116,14,37,0,0,9,37,0,175,0,9,7,0,0,0,12,0,13,32,0,22,0,7,0,0,1,43,7874,92,54,16,0,207,0,0,0,1,0,0,5,2,0,0,0,11,529,0,0,0,0,0,1,0,0,0,6,0,29,0,0,41412,91,463,0,26,0,0,0,0,0,44,0,0,0,0,0,14,43,4858,0,1,43,1,0,3,37,0,675,75,11,1,0,4,1,564,0,19,27,0,9795,0,0,0,0,88,4,2,0,0,0,0,1,0,0,0,99,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,0,105,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,12,12,12,0,0,0,2971,0,202,0,0,0,22,75,514,1472,2960,0,0,0,0,1,0,13,0,0,0,0,0,0,1570,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,1,0,218,66,820,21,0,0,731,0,1120,0,1,0,423,87,0,0,0,0,0,0,0,0,0,426,1,0,3,0,19,0,0,0,0,9,219,229,0,0,140,0,2,0,0,0,1814,1,0,207,9,0,1,1,0,0,0,0,14,0,0,0,4,0,0,0,0,0,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,103,1,1,1,0,90,0,0,0,0,9,135,501,0,62,12,0,0,0,0,0,260,7,0,0,0,0,0,0,0,0,0,0,0,3,0,1,24,0,0,0,0,0,0,0,0,0,0,0,1,0,4,1569,253,5 +1,0,0,0,0,17,5,0,27,9,4,0,1,1,10,0,29,0,7,4,0,0,0,0,0,0,6,0,4,0,1,0,0,0,7,0,17,15,6,0,30,0,0,0,0,0,0,0,0,0,0,0,2,64,0,0,0,0,0,1,0,0,0,0,0,0,0,0,220,17,86,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,7,0,0,0,0,0,23,0,0,0,0,2,0,98,0,0,0,1,270,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,49,0,26,0,0,0,4,17,47,41,44,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,85,0,0,0,66,0,225,0,0,0,30,16,0,0,0,0,0,0,0,0,0,84,0,0,0,0,4,0,0,0,0,3,103,4,0,0,0,0,0,0,0,0,102,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,4,0,0,0,0,1,24,7,0,11,0,0,0,0,0,0,23,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,18,5 +0,0,0,18,0,112,33,0,95,21,19,0,1,3,48,0,63,0,7,5,0,0,0,1,1,5,15,0,36,0,1,0,0,0,94,0,112,135,17,0,254,0,0,0,1,0,0,2,0,0,0,0,5,169,0,0,0,0,0,1,0,0,0,6,0,32,0,0,2754,112,316,0,37,0,0,0,0,0,9,0,0,0,0,0,1,5,77,0,0,94,0,0,2,44,0,439,60,3,0,0,2,0,494,0,15,0,4,2893,0,0,0,0,12,0,2,0,0,0,0,1,0,0,0,22,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,1,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,162,0,151,0,0,0,10,47,188,388,169,0,0,0,0,1,0,0,0,0,0,0,0,0,643,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,33,557,19,0,0,475,0,816,0,0,0,392,87,0,0,0,0,0,0,0,0,0,269,1,0,0,0,7,0,0,0,0,6,210,141,0,0,151,0,0,0,10,0,438,0,0,40,0,0,1,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,119,1,1,1,0,84,0,0,0,0,1,206,229,0,57,0,0,0,0,0,0,183,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,0,0,0,0,0,0,0,0,2,326,113,5 +0,0,0,9,0,44,81,0,58,0,10,0,0,9,5,0,968,0,7,2,0,0,0,8,0,11,0,0,6,0,1,0,0,0,5,13844,44,6,0,0,69,0,0,0,1,0,0,5,0,0,0,0,1,1190,0,0,0,0,0,1,0,0,0,0,0,11,0,0,33832,44,1364,0,3,0,0,0,0,0,172,0,0,0,0,0,9,32,5871,0,0,5,0,0,2,12,0,337,50,9,1,0,2,0,1218,0,0,3,0,4371,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,1735,0,60,0,0,0,1,4,443,1067,1713,0,0,0,0,1,0,4,0,0,0,0,0,0,1890,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,113,16,335,9,0,0,542,0,420,0,0,0,363,10,0,0,0,0,0,0,0,0,0,1138,1,0,0,0,10,0,0,0,0,1,165,119,0,0,44,0,0,0,0,0,4295,1,0,1741,80,0,1,1,0,0,0,0,5,0,0,0,5,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,80,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,5,0,0,0,0,1,49,157,0,4,14,0,0,0,0,0,101,1,0,0,0,0,0,0,0,0,0,0,0,2,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1960,102,5 +0,0,0,2,0,22,24,0,180,130,76,1,0,0,142,1,51,0,6,1,0,0,0,2,3,0,0,0,5,0,1,0,0,0,12,0,22,6,3,0,625,0,0,0,0,0,0,0,0,0,0,0,3,129,0,0,0,0,0,1,0,0,0,12,0,157,0,0,800,22,476,0,6,0,0,0,0,0,0,0,0,0,0,0,2,2,31,0,0,12,0,0,8,162,0,1365,240,0,0,0,2,0,1092,0,130,0,0,792,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,60,0,41,0,0,0,6,15,39,952,74,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,139,137,2,0,0,102,0,318,0,0,0,62,34,0,0,0,0,0,0,0,0,0,481,0,0,0,0,6,0,0,0,0,4,106,321,0,0,580,0,1,0,0,0,3660,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,5,0,0,0,0,1,34,12,0,6,0,0,0,0,0,0,553,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,24,5 +0,0,0,23,0,54,261,0,451,94,144,0,1,3,115,0,73,0,7,8,0,0,0,2,1,7,18,0,15,0,1,0,0,0,23,0,54,267,31,0,931,0,0,0,1,0,0,2,0,0,0,0,8,245,0,0,0,0,0,1,0,0,2,2,0,117,0,0,4280,54,1041,0,16,0,0,0,0,0,12,0,0,0,0,0,2,6,316,0,0,23,0,0,5,329,0,2650,330,4,0,0,334,0,2027,0,92,36,5,2709,0,0,0,0,30,0,4,0,0,0,0,1,2,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,1104,0,129,0,0,0,16,75,111,3772,376,0,0,0,0,1,0,6,0,0,0,0,0,0,1928,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,270,458,47,17,0,732,0,1112,26,57,0,567,116,0,0,0,0,0,0,0,0,0,1055,1,0,0,0,11,0,0,0,0,8,197,737,0,0,895,0,0,0,0,13,643,0,0,57,0,0,1,0,0,0,0,0,6,0,2,0,17,0,0,0,0,0,77,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,72,1,1,1,0,71,0,0,0,0,1,77,196,0,41,0,0,0,0,0,0,926,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,119,0,0,0,0,0,0,0,0,0,0,0,0,0,3,619,213,5 +0,0,0,14,0,33,12,0,61,13,13,0,1,3,82,1,64,0,7,4,0,0,0,2,3,4,20,0,13,0,1,3,0,0,16,0,33,574,20,0,209,0,0,0,1,0,0,3,0,0,0,0,9,127,0,0,0,0,0,1,0,0,0,0,0,17,0,0,4018,33,278,0,17,0,0,0,0,0,13,0,0,0,0,0,2,6,208,0,0,16,0,0,2,24,0,268,35,6,0,0,2,0,443,0,9,0,6,3165,0,0,0,0,60,0,0,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,186,0,51,0,0,0,18,120,131,576,197,0,0,0,0,1,0,1,0,0,0,0,0,0,515,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,23,440,19,0,0,463,0,505,0,0,0,377,94,0,0,0,0,0,0,0,0,0,244,1,0,0,0,9,0,0,0,0,7,324,147,0,0,78,0,0,0,0,0,376,0,0,228,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,1,1,1,0,214,0,0,0,0,1,49,701,0,41,0,0,0,0,0,0,176,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,991,43,5 +0,0,0,0,0,22,19,0,47,10,4,0,1,0,6,0,40,0,7,3,0,0,0,1,0,1,6,0,4,0,1,0,0,0,9,0,22,59,8,0,119,0,0,0,0,0,0,0,0,0,0,0,2,81,0,0,0,0,0,1,0,0,1,0,0,1,0,0,460,22,118,0,5,0,0,0,0,0,0,0,0,0,0,0,1,1,28,0,0,9,0,0,1,14,0,132,0,0,0,0,2,0,173,0,0,0,0,480,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,48,0,39,0,0,0,4,20,51,163,69,0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,140,0,0,0,124,0,636,0,0,0,52,43,0,0,0,0,0,0,0,0,0,124,0,0,0,0,4,0,0,0,0,3,104,37,0,0,0,0,0,0,0,2,172,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,10,0,0,0,0,1,31,9,0,12,0,0,0,0,0,0,72,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,48,5 +1,0,0,52,1,108,46,1,207,44,57,5,1,1,69,3,123,0,9,13,0,0,0,6,0,4,15,0,16,0,1,0,0,1,31,0,109,527,29,0,441,0,0,0,1,0,0,2,0,0,0,0,8,366,1,0,0,0,0,1,0,0,0,1,0,67,0,0,3152,108,495,0,17,0,0,0,0,0,7,0,0,0,0,0,10,13,109,0,1,31,1,0,11,111,0,1099,155,2,0,0,4,1,859,0,40,0,2,2865,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,116,0,0,0,0,0,0,183,0,179,0,0,0,16,77,202,1110,191,0,0,0,0,1,0,2,0,0,0,0,0,0,525,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,154,92,796,60,0,0,643,0,5962,0,1,0,237,123,0,0,0,0,0,0,0,0,0,521,1,0,0,0,19,0,0,0,0,8,259,265,0,0,319,0,0,0,0,1,1231,0,0,28,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,154,1,1,1,0,34,0,0,0,0,9,140,131,0,36,0,0,0,0,0,0,416,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,64,0,0,0,0,0,0,0,0,0,0,0,1,0,2,812,107,5 +0,0,0,26,3,17,4,3,192,10,7,0,0,0,18,0,231,0,6,7,0,6,0,1,0,1,0,0,2,0,1,0,0,3,4,445,20,122,5,0,26,0,1,0,1,0,0,1,2,0,0,0,0,890,0,0,0,0,0,1,0,0,0,0,0,3,0,0,120733,17,530,0,3,0,0,0,0,0,10,9,0,0,0,0,1,7,11594,0,3,4,3,0,0,0,0,20,0,7,0,0,2,3,485,0,2,0,1,65495,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,52,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,20,0,0,0,0,1,0,5630,0,37,0,0,0,1,4,42,25690,5636,0,0,0,0,1,0,2,0,0,1,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,82,15,581,48,0,0,548,0,1672,0,0,0,132,37,0,0,0,0,0,0,0,0,0,458,1,0,6,0,14,0,0,0,0,8,103,5,0,0,0,0,0,0,0,0,247958,0,0,1221,0,0,1,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,1,0,0,0,0,25,24,129,0,4,0,0,0,0,0,0,374,4,0,0,0,0,0,0,0,0,0,0,0,3,2,5,13,0,0,0,0,0,0,0,2,0,0,0,6,0,1,6347,40,5 +0,0,0,14,0,43,28,0,96,4,29,0,0,0,15,0,36,0,7,3,0,0,0,1,0,1,6,0,9,0,1,0,0,0,22,0,43,6,6,0,198,0,0,0,1,0,0,3,0,0,0,0,2,133,0,0,0,0,0,1,0,0,1,6,0,24,0,0,6186,43,231,0,10,0,0,0,0,0,14,0,0,0,0,0,1,6,1395,0,0,22,0,0,3,79,0,659,95,4,0,0,2,0,445,0,8,0,0,1030,0,0,0,0,8,0,4,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,791,0,103,0,0,0,4,17,77,472,800,0,0,0,0,1,0,0,0,0,0,0,0,0,2011,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,8,16,225,17,0,0,244,0,569,0,0,0,151,45,0,0,0,0,0,0,4,0,0,211,1,0,0,0,4,0,0,0,0,2,133,194,0,0,211,0,0,0,8,1,482,0,0,1364,0,0,1,0,0,0,0,0,6,0,1,0,6,0,0,0,0,0,7,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,13,0,0,0,0,1,65,195,0,17,0,0,0,0,0,0,231,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,4,872,63,5 +1,0,0,21,0,98,44,0,206,31,57,0,1,4,65,1,90,0,7,9,0,0,0,13,3,13,27,0,30,0,14,0,0,0,35,0,98,208,28,0,435,0,0,0,1,0,0,4,0,0,0,0,22,396,0,0,0,0,0,1,0,0,0,1,0,54,0,0,14879,98,597,0,42,0,0,0,0,0,44,0,0,0,0,0,16,27,1345,0,0,35,0,0,7,129,0,1285,205,6,0,0,2,0,981,0,34,0,4,7223,0,0,0,0,42,0,10,0,0,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,9,1,1,0,0,0,2,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,8,0,0,0,0,40,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,82,10,10,10,0,0,0,1304,0,207,0,0,0,42,103,345,1562,1368,0,0,0,0,1,0,4,0,0,0,0,0,0,5000,0,0,0,0,0,0,0,0,0,2,0,0,4,1,0,0,0,0,0,1,2,36,76,572,25,0,0,568,0,1605,0,0,0,343,259,0,9,0,0,0,0,0,0,0,475,1,0,0,0,25,0,0,0,0,20,212,372,0,0,495,0,1,0,0,2,1537,0,0,3594,3,0,1,39,1,0,0,0,8,0,0,0,5,0,0,0,0,0,42,1,0,4,1,0,0,0,0,0,0,0,0,0,0,0,26,1,0,0,0,0,3,16,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,134,1,1,1,0,100,0,0,0,0,1,133,468,0,75,9,0,0,0,0,0,433,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,45,2,0,0,0,0,0,0,2,0,0,0,0,0,4,1529,284,5 +1,0,0,53,1,34,26,1,76,25,5,0,0,18,107,0,90,0,9,6,0,0,0,4,1,2,3,0,4,0,2,0,0,1,12,0,35,384,10,0,203,0,0,0,1,0,0,2,0,0,0,0,3,574,0,0,0,0,0,1,0,0,0,3,0,30,0,0,3621,34,298,0,6,0,0,0,0,0,8,0,0,0,0,0,7,11,382,0,1,12,1,0,1,0,0,256,0,3,0,0,4,1,397,0,74,0,0,964,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,15,0,0,0,0,446,0,89,0,0,0,6,22,74,191,359,0,0,0,0,1,0,0,0,0,0,0,0,0,1034,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,128,29,451,62,0,61,401,0,8616,0,1,12,147,3753,0,0,0,0,0,0,0,0,0,331,1,0,0,0,11,0,0,0,0,5,170,33,0,0,0,0,0,0,0,0,672,0,0,813,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,43,1,1,1,0,11,0,0,0,0,19,49,86,0,11,0,0,0,0,0,0,159,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,31,0,0,0,0,0,0,0,0,0,0,0,1,0,3,10753,237,5 +0,0,0,13,0,38,32,0,119,12,35,0,1,3,27,0,74,0,7,6,0,0,0,4,9,5,18,0,22,0,2,0,0,0,20,0,38,129,33,0,254,0,0,0,1,0,0,1,0,0,0,0,15,190,0,0,0,0,0,1,0,0,0,3,0,15,0,0,8467,38,348,0,24,0,0,0,0,0,6,0,0,0,0,0,4,6,1658,0,0,20,0,0,2,90,0,850,135,2,0,0,2,0,623,0,9,0,4,1308,0,0,0,0,6,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,962,0,101,0,0,0,30,89,87,522,1017,0,0,0,0,1,0,0,0,0,0,0,0,0,2341,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,25,231,18,0,0,246,0,647,0,0,0,156,87,0,32,0,0,0,0,2,0,0,298,1,0,0,0,19,0,0,0,0,5,156,189,0,0,376,0,0,0,0,0,836,0,0,1560,0,0,1,46,0,0,0,0,2,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,74,0,0,0,0,1,58,169,0,47,0,0,0,0,0,0,274,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,27,0,0,0,0,0,0,0,0,0,0,0,0,2,1158,127,5 +1,0,0,10,1,48,74,1,138,15,41,0,0,2,23,0,77,0,19,4,0,0,0,6,0,8,3,0,3,0,2,0,0,1,13,0,49,101,0,0,186,0,0,0,1,0,0,5,0,0,0,0,2,304,0,0,0,0,0,1,0,0,2,0,1,30,0,0,1977,48,356,0,3,0,0,0,0,0,25,0,0,0,0,0,9,20,254,0,1,13,1,0,4,88,0,828,170,10,0,0,4,1,476,0,20,0,0,1141,0,0,0,0,13,1,8,0,0,0,0,1,0,0,0,21,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,374,0,136,0,0,0,2,7,225,672,261,0,0,0,0,1,0,3,0,0,0,0,0,0,937,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,148,46,395,11,0,0,493,0,1566,0,1,0,237,104,0,0,0,0,0,0,0,0,0,374,1,0,0,0,10,0,0,0,0,2,152,238,0,0,347,0,16,0,0,3,318,0,0,112,3,0,1,1,0,0,0,0,11,0,0,0,4,0,0,0,0,0,16,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,59,1,1,1,0,3,0,0,0,0,9,62,428,0,7,9,0,0,0,0,0,248,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,21,0,0,0,0,0,0,0,0,0,0,0,1,0,2,507,115,5 +0,0,0,11,0,26,4,0,69,16,15,0,1,1,25,0,36,0,7,4,0,0,0,1,0,1,6,0,4,0,1,0,0,0,11,0,26,15,6,0,114,0,0,0,1,0,0,6,0,0,0,0,2,165,0,0,0,0,0,1,0,0,0,0,0,13,0,0,3534,26,204,0,5,0,0,0,0,0,29,0,0,0,0,1,2,9,588,0,0,11,0,0,1,27,0,255,25,11,0,0,2,0,250,0,5,0,2,831,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,7,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,454,0,127,0,0,0,4,18,61,356,481,0,0,0,0,1,0,0,0,0,0,0,0,0,1067,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,29,171,12,0,0,274,0,574,0,0,0,202,40,0,0,0,0,0,0,9,0,0,158,1,0,0,0,5,0,0,0,0,3,112,198,0,0,52,0,4,0,0,0,256,0,0,581,0,0,1,0,1,0,0,0,21,0,1,0,0,0,0,0,0,0,18,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,8,0,0,0,0,1,37,408,0,12,0,0,0,0,0,0,153,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,7,549,87,5 +1,0,0,1,17,72,38,68,257,30,33,0,1,0,75,48,295,0,32,42,0,17,17,7,3,15,27,0,17,0,2,1,0,17,20,0,89,171,28,0,552,0,0,0,1,0,0,5,0,0,0,0,10,482,0,6,0,0,0,1,0,0,0,19,0,91,0,0,6225,72,3180,0,18,0,0,0,0,0,27,51,0,0,2,0,10,21,1178,0,68,20,17,0,1,56,0,619,65,9,0,0,2,17,837,0,12,0,0,5414,0,0,0,0,16,0,8,0,0,0,0,1,0,0,0,35,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,23,0,0,0,0,0,0,0,15,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,1,1,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,10,10,10,0,0,0,841,0,163,0,0,0,18,99,302,912,989,0,0,0,0,1,1,7,0,0,1,0,0,0,1493,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,17,47,1141,48,0,4,1586,0,1546,0,0,0,965,104,0,0,0,0,0,0,0,0,0,779,1,0,0,0,86,0,0,0,0,8,375,668,0,0,191,0,1,0,0,0,1105,0,0,124,3,0,1,2,0,0,0,0,13,0,0,0,4,0,0,0,0,0,10,0,0,15,2,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,123,1,1,1,0,99,0,0,0,0,137,109,967,0,53,9,0,0,0,0,0,481,22,0,0,0,0,0,0,0,0,0,0,0,18,0,1,30,1,0,0,0,0,0,0,0,0,0,0,34,0,5,6028,210,5 +0,0,0,7,0,37,10,0,42,1,3,0,0,2,4,0,629,0,7,3,0,0,0,6,2,10,14,0,7,0,1,0,0,0,4,980,37,6,6,0,37,0,0,0,1,0,0,3,0,0,0,0,3,233,0,0,0,0,0,1,0,0,0,0,0,7,0,0,10632,37,732,0,5,0,0,0,0,0,24,0,0,0,0,0,8,19,1564,0,0,4,0,0,0,0,0,110,5,6,0,0,2,0,703,0,2,0,0,2612,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,518,0,55,0,0,0,4,25,256,548,501,0,0,0,0,1,0,5,0,0,0,0,0,0,666,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,14,330,11,0,0,293,0,354,0,0,0,133,26,0,0,0,0,0,0,0,0,0,697,1,0,0,0,11,0,0,0,0,3,159,41,0,0,0,0,0,0,0,0,1978,1,0,442,8,0,1,1,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,4,0,0,0,0,1,41,209,0,20,12,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,633,124,5 +5,0,0,17,0,56,125,0,82,1,14,0,0,10,29,0,1531,0,6,2,0,0,0,11,4,21,12,0,18,0,1,0,0,0,15,10503,56,6,11,0,123,0,3,0,1,0,0,5,0,0,0,0,5,1033,0,0,0,0,0,1,0,0,0,0,0,31,0,0,180534,56,2190,0,24,0,0,0,0,0,254,0,0,0,0,0,12,71,36460,0,0,15,0,0,1,8,0,431,50,8,1,0,2,0,1963,0,3,33,0,9908,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,12,12,12,0,0,0,25083,0,95,0,0,0,11,45,745,2149,25037,0,0,0,0,1,0,4,0,0,0,0,0,0,887,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,1,131,25,446,36,0,0,783,0,463,0,0,0,614,24,0,0,0,0,0,0,0,0,0,1797,1,0,0,0,17,0,0,0,0,6,267,163,0,0,71,0,0,0,0,0,9724,1,0,263,123,0,1,1,1,0,0,0,11,0,0,0,2,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,123,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,61,0,0,0,0,1,71,183,0,38,14,0,0,0,0,0,158,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6747,136,5 +0,0,0,10,0,24,4,0,43,14,6,0,1,3,24,0,47,0,7,4,0,0,0,1,0,2,9,0,6,0,1,0,0,0,7,0,24,105,13,0,125,0,0,0,1,0,0,3,0,0,0,0,3,163,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1834,24,155,0,7,0,0,0,0,0,15,0,0,0,0,0,1,5,135,0,0,7,0,0,0,0,0,38,0,6,0,0,2,0,162,0,5,0,5,827,0,0,0,0,2,0,4,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,143,0,84,0,0,0,6,31,62,94,166,0,0,0,0,1,0,0,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,13,22,184,11,0,0,284,0,657,0,0,0,196,47,0,0,0,0,0,0,3,0,0,135,1,0,0,0,5,0,0,0,0,4,127,151,0,0,0,0,0,0,0,0,296,0,0,108,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,22,0,0,0,0,1,31,401,0,18,0,0,0,0,0,0,67,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,3,340,89,5 +3,0,0,37,4,50,31,4,73,10,10,0,0,2,17,1,405,0,11,11,0,6,0,5,0,8,0,0,6,0,1,0,0,4,5,268,54,577,1,0,65,0,0,0,1,0,0,2,1,0,0,0,3,632,0,0,0,0,0,1,0,0,0,3,0,7,0,0,24879,50,666,0,5,0,0,0,0,0,16,9,0,0,0,0,7,17,2023,0,4,5,4,0,1,0,0,142,5,5,0,0,4,4,448,0,5,0,0,10400,0,0,0,0,5,3,6,0,0,0,0,1,0,0,0,14,1,0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,2,0,0,0,0,0,0,3,0,41,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,29,10,10,10,0,0,0,1627,0,130,0,0,0,4,9,237,1979,1613,0,0,0,0,1,0,4,0,0,1,0,0,0,4666,1,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,2,0,164,39,732,58,0,0,553,0,1731,0,1,0,94,644,0,0,0,0,0,0,0,0,0,550,1,0,2,0,22,0,0,0,0,3,148,4,0,0,0,0,0,0,0,0,205731,0,0,103,3,0,1,1,1,0,0,0,9,0,0,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,1,0,0,0,48,48,0,0,11,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,62,1,1,1,0,4,0,0,0,0,67,59,6,0,6,9,0,0,0,0,0,378,4,0,0,0,0,0,0,0,0,0,0,0,5,0,3,13,0,0,0,0,0,0,0,0,0,0,0,7,0,3,1128,122,5 +13,0,0,17,1,71,38,1,121,24,34,2,0,0,41,0,89,0,9,5,0,0,0,13,2,3,0,0,25,0,2,0,0,1,38,0,72,400,52,0,261,0,0,0,1,0,0,2,0,0,0,0,12,349,0,0,0,0,0,1,0,0,0,1,0,51,0,0,4291,71,314,0,27,0,0,0,0,0,8,0,0,0,0,0,8,12,913,0,1,38,1,0,6,70,0,783,62,4,0,0,4,1,499,0,34,2,0,2636,0,0,9,0,14,2,3,0,0,0,0,1,1,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,38,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,784,0,114,0,0,0,24,41,126,1441,605,0,0,0,0,1,0,6,0,0,0,0,0,0,582,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,142,59,527,22,0,0,496,0,4563,0,1,0,243,112,1,0,0,0,0,0,0,0,0,334,1,0,0,0,20,0,0,0,0,12,187,252,0,0,254,0,0,0,0,1,1687,0,0,42,0,0,1,1,0,0,0,0,4,0,0,0,3,0,0,0,0,0,26,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,80,1,1,1,0,37,0,0,0,0,19,112,158,0,30,0,0,0,0,0,0,304,7,0,0,0,0,0,2,0,0,0,0,0,1,0,1,30,0,0,0,0,0,0,0,0,0,0,0,1,0,2,492,242,5 +10,0,0,18,2,51,53,2,96,24,17,0,1,6,48,0,155,0,25,3,0,0,0,2,2,2,12,0,9,0,4,0,0,2,22,0,53,425,6,0,209,0,0,0,1,0,0,3,0,0,0,0,7,252,0,18,0,0,0,1,0,0,0,1,0,47,0,0,9444,51,354,0,15,0,0,0,0,0,12,0,0,0,0,0,4,9,1446,0,2,22,2,0,3,17,0,410,50,3,0,0,6,2,383,0,41,0,1,2930,0,6,1,0,4,0,2,0,0,0,0,1,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,13,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,812,0,101,0,0,0,12,34,230,858,851,0,0,0,0,1,0,0,0,0,0,0,0,0,2144,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,389,70,686,22,0,0,703,0,4995,0,2,0,340,36,0,0,0,0,0,0,4,0,0,401,1,0,0,0,7,0,0,0,0,8,223,167,0,0,49,0,0,0,0,0,1430,0,0,1398,0,0,1,0,0,0,0,0,8,0,0,0,7,0,0,0,0,0,27,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,2,68,1,1,1,0,27,0,0,0,0,17,75,422,0,27,0,0,0,0,0,0,227,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,30,0,0,0,0,0,0,0,0,0,0,0,2,0,3,1818,820,5 +26,0,0,13,2,49,3,8,39,46,10,1,11,0,94,0,50,0,7,10,0,2,2,15,0,2,6,0,4,0,1,0,0,2,13,0,51,21,263,0,122,0,0,0,1,0,0,1,0,0,0,0,2,194,0,0,0,0,0,1,0,0,0,0,0,62,0,0,5218,49,458,0,5,0,0,0,0,0,7,6,0,0,0,0,18,22,944,0,8,13,2,0,1,9,0,144,20,2,0,0,2,2,299,0,55,0,0,2075,0,2,3,0,60,2,0,0,0,0,18,1,0,0,0,10,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,12,0,0,0,0,0,0,558,0,113,0,0,0,4,470,113,171,585,0,0,0,0,1,0,3,0,0,0,0,0,0,1262,0,0,0,0,0,0,0,0,0,8,0,8,1,0,0,0,0,0,0,0,1,8,2193,347,19,0,0,368,0,1109,0,0,0,190,145,0,0,0,0,0,0,0,0,0,215,1,0,0,0,29,0,0,0,0,3,134,142,0,0,70,0,20,0,0,3,1701,0,0,1318,0,0,1,2,0,0,0,0,2,0,0,0,1,0,0,0,0,0,14,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,32,1,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,92,1,1,1,0,22,0,0,0,0,17,64,384,0,13,0,0,0,0,0,0,88,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,48,0,0,0,0,0,0,0,0,0,0,0,4,0,1,676,134,5 +41,0,0,16,18,113,242,21,1103,99,299,2,0,2,139,2,314,0,22,44,0,17,17,11,2,11,11,0,14,0,7,2,0,18,56,2,131,386,7,0,2085,0,0,0,1,0,0,4,0,0,0,0,12,550,0,3,0,0,0,1,0,0,0,4,0,219,0,0,20168,113,4257,0,21,0,0,0,0,0,18,51,0,0,1,0,20,33,1969,0,21,56,18,0,14,864,0,7094,925,4,0,0,4,18,4555,0,123,2,0,7126,0,0,2,0,60,1,1,0,0,0,0,1,0,0,67,25,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,2,0,21,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,4,0,67,0,0,0,0,0,0,0,0,1,0,2,0,0,2,0,0,0,0,380,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,74,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,131,10,10,10,0,0,0,1498,0,291,0,0,0,20,48,354,16162,2294,1,0,0,0,1,0,2,0,0,0,0,0,0,7356,2,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,3,0,147,153,2000,39,0,0,1953,0,1573,0,1,0,1187,482,0,0,0,0,0,0,0,0,0,2125,1,0,0,0,91,0,0,0,0,10,627,2310,0,0,2793,0,1,0,0,0,27156,0,0,1681,3,0,1,5,0,0,0,0,6,0,0,0,4,0,0,0,0,0,98,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,20,1,0,0,0,0,3,18,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,132,1,1,1,0,57,0,0,0,6,145,187,486,0,36,9,0,0,0,0,0,2293,107,0,0,0,0,0,0,0,0,0,0,0,19,0,1,127,4,0,0,0,0,0,0,1,0,0,0,31,0,4,3714,369,5 +0,0,0,12,0,44,13,0,121,17,28,0,1,3,40,0,76,0,7,5,0,0,0,5,2,3,22,0,14,0,2,1,0,0,18,0,44,81,26,0,165,0,0,0,1,0,0,1,1,0,0,0,8,176,0,0,0,0,0,1,0,0,0,0,0,23,0,0,1374,44,300,0,17,0,0,0,0,0,6,0,0,0,0,0,5,8,90,0,0,18,0,0,1,51,0,484,105,5,1,0,2,0,477,0,12,0,4,1424,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,129,0,91,0,0,0,16,71,102,337,161,0,0,0,0,1,0,0,0,0,0,0,0,0,457,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,14,42,275,13,0,0,266,0,8446,0,0,0,130,105,0,0,0,0,0,0,0,0,0,289,1,0,5,0,12,0,0,0,0,7,143,119,0,0,267,0,0,0,1,0,380,0,0,28,0,0,1,0,0,0,0,0,8,0,0,0,2,0,0,0,0,0,18,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,69,0,0,0,0,8,62,90,0,42,0,0,0,0,0,0,173,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,1,341,161,5 +2,0,0,14,0,49,14,0,65,23,29,1,0,0,45,0,67,0,7,9,0,0,0,3,1,6,18,0,18,0,1,0,0,0,21,0,49,138,25,0,254,0,0,0,1,0,0,1,0,0,0,0,9,195,0,0,0,0,0,1,0,0,0,2,0,42,0,0,8864,49,238,0,19,0,0,0,0,0,6,0,0,0,0,0,3,5,2692,0,0,21,0,0,4,34,0,460,58,1,0,0,2,0,452,0,21,2,0,1813,0,0,0,0,38,0,4,0,0,0,1,1,14,0,0,11,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,32,0,0,0,0,0,0,1887,0,127,0,0,0,18,77,98,1873,1817,0,0,0,0,1,0,0,0,0,0,0,0,0,1179,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,56,871,30,0,0,753,0,1055,0,0,0,623,98,0,0,0,0,0,0,0,0,0,228,1,0,0,0,13,0,0,0,0,9,641,129,0,0,238,0,0,0,0,0,826,0,0,776,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,55,0,0,0,0,11,72,168,0,43,0,0,0,0,0,0,195,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,25,0,0,0,0,0,0,0,0,0,0,0,0,0,1,753,288,5 +0,0,0,3,0,11,2,0,15,0,3,0,0,0,4,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,11,0,0,0,1,0,0,2,0,0,0,0,0,53,0,0,0,0,0,1,0,0,0,0,0,4,0,0,2625,11,43,0,1,0,0,0,0,0,9,0,0,0,0,0,1,4,1618,0,0,2,0,0,0,0,0,7,0,4,0,0,2,0,18,0,2,0,0,116,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,835,0,34,0,0,0,0,3,25,4,841,0,0,0,0,1,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,5,79,3,0,0,120,0,193,0,0,0,54,7,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,93,41,0,0,0,0,0,0,0,0,27,0,0,24,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,218,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,210,5 +7,0,0,25,1,161,120,1,442,70,98,1,1,3,102,0,223,0,20,12,0,0,0,42,17,28,54,0,71,0,1,0,0,1,84,0,162,261,186,0,964,0,0,0,1,0,0,6,0,0,0,0,40,502,0,5,0,0,0,1,0,0,0,1,0,126,0,0,21409,161,1193,0,72,0,0,0,0,0,23,0,0,0,0,0,30,37,1687,0,1,84,1,0,5,319,0,3037,223,12,0,0,4,1,2195,0,74,4,5,6928,0,1,0,0,36,0,7,0,0,0,0,1,0,0,0,47,14,0,0,0,0,0,0,0,0,2,4,2,0,0,0,0,0,0,0,6,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,8,0,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,0,0,71,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,128,0,0,0,0,0,0,1796,0,353,0,0,0,80,370,337,3075,1790,0,0,0,0,1,0,24,0,0,3,0,0,0,6731,0,0,0,0,0,0,0,0,0,15,0,1,6,0,0,0,0,0,0,0,0,132,117,897,31,0,0,935,0,2374,0,1,0,545,266,0,0,0,0,0,0,0,0,0,1010,1,0,0,0,71,0,0,0,0,39,291,924,0,0,790,0,0,0,0,0,3023,0,0,4868,0,0,1,0,0,0,0,0,14,0,0,0,6,0,0,0,0,0,71,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,46,1,0,0,0,0,0,1,14,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,223,1,1,1,0,312,0,0,0,0,9,246,492,0,154,0,0,0,2,0,0,1057,28,0,0,0,0,0,0,0,0,0,0,0,1,0,1,76,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2405,538,5 +0,0,0,14,0,34,15,0,76,31,15,1,1,3,49,0,76,0,7,6,0,0,0,1,2,5,21,0,14,0,1,0,0,0,16,0,34,133,24,0,229,0,0,0,1,0,0,1,0,0,0,0,7,167,0,0,0,0,0,1,0,0,0,0,0,37,0,0,1055,34,265,0,15,0,0,0,0,0,4,0,0,0,0,0,1,3,42,0,0,16,0,0,2,27,0,290,40,1,0,0,2,0,423,0,27,0,4,1114,0,0,0,0,6,0,2,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,80,0,61,0,0,0,14,62,80,304,103,0,0,0,0,1,0,0,0,0,0,0,0,0,325,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,46,219,15,0,0,201,0,725,0,0,0,121,48,0,0,0,0,0,0,0,0,0,243,1,0,0,0,9,0,0,0,0,7,136,82,0,0,91,0,0,0,0,0,446,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,40,0,0,0,0,1,50,100,0,41,0,0,0,0,0,0,172,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,33,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,69,5 +0,0,0,0,0,12,15,0,19,0,2,0,0,0,2,0,10,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,45,0,0,0,1,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,1,0,0,119,12,48,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,3,0,0,1,16,0,119,0,0,0,0,2,0,90,0,0,0,0,134,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,25,0,0,0,0,3,27,101,29,0,0,0,0,1,0,0,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,52,0,0,0,83,0,148,0,0,0,50,2,0,0,0,0,0,0,0,0,0,54,0,0,0,0,2,0,0,0,0,0,96,62,0,0,0,0,0,0,0,1,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,71,0,1,0,0,0,0,0,0,49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,10,5 +0,0,0,5,0,14,18,0,51,11,13,0,0,0,16,0,20,0,7,1,0,0,0,1,2,0,0,0,3,0,1,0,0,0,3,0,14,9,1,0,87,0,0,0,1,0,0,1,0,0,0,0,2,93,0,0,0,0,0,1,0,0,0,0,0,23,0,0,12926,14,124,0,4,0,0,0,0,0,6,0,0,0,0,0,1,3,1194,0,0,3,0,0,2,33,0,292,45,2,0,0,2,0,194,0,13,0,0,454,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1195,0,41,0,0,0,4,11,35,201,1184,0,0,0,0,1,0,0,0,0,0,0,0,0,3867,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,16,149,5,0,0,188,0,357,0,0,0,117,19,0,0,0,0,0,0,0,0,0,125,1,0,0,0,4,0,0,0,0,3,114,125,0,0,110,0,0,0,0,0,1157,0,0,4475,0,0,1,0,1,0,0,0,2,0,0,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,17,211,0,4,0,0,0,0,0,0,116,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1255,30,5 +3,0,0,6,1,53,38,1,77,3,10,0,0,6,8,0,939,0,9,2,0,0,0,8,0,11,0,0,7,0,1,0,0,1,7,1050,54,54,0,0,59,0,0,0,1,0,0,1,0,0,0,0,1,859,0,0,0,0,0,1,0,0,0,5,0,4,0,0,390180,53,1060,0,4,0,0,0,0,0,26,0,0,0,0,0,9,40,69535,0,1,7,1,0,1,0,0,247,20,2,0,0,4,1,973,0,2,9,0,4142,0,0,0,0,3,3,3,0,0,0,0,1,0,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,65185,0,58,0,0,0,2,5,482,908,65164,0,0,0,0,1,0,5,0,0,0,0,0,0,413,3,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,1,0,189,32,816,7,0,0,537,0,626,0,1,0,215,158,0,0,0,0,0,0,0,0,0,1087,1,0,0,0,10,0,0,0,0,2,209,50,0,0,19,0,0,0,0,0,3473,1,0,109,16,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,70,1,1,1,0,9,0,0,0,0,9,61,268,0,5,14,0,0,0,0,0,95,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1309,69,5 +0,0,0,97,0,60,75,0,68,3,156,0,0,17,151,0,1447,0,6,1,0,0,0,9,0,12,3,0,12,0,1,1,0,0,23,7711,60,6,0,0,351,0,0,0,1,0,0,4,0,0,0,0,2,369,0,0,0,0,0,1,0,0,0,0,0,4,0,0,46461,60,2127,0,11,0,0,0,0,0,157,0,0,0,0,0,9,65,9341,0,0,23,0,0,0,0,0,570,69,8,1,0,2,0,2216,0,0,12,0,8000,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,2190,0,94,0,0,0,7,14,632,1633,2143,0,0,0,0,1,0,3,0,0,0,0,0,0,2119,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,323,37,353,257,0,0,537,0,479,0,0,0,379,41,0,0,0,0,0,0,0,0,0,1920,1,0,0,0,10,0,0,0,0,2,166,92,0,0,25,0,0,0,0,0,7395,1,0,1369,79,0,1,1,0,0,0,0,4,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,79,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,33,0,0,0,0,1,83,204,0,15,14,0,0,0,0,0,261,3,0,0,0,0,0,0,0,0,0,0,0,3,0,2,15,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6025,667,5 +0,0,0,3,0,22,2,0,36,0,2,0,0,0,2,0,95,0,6,1,0,0,0,1,0,0,48,0,7,0,17,0,0,0,1,0,22,6,0,0,8,0,0,0,1,0,0,3,0,0,0,0,16,68,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1344,22,209,0,24,0,0,0,0,0,16,0,0,0,0,0,1,6,137,0,0,1,0,0,0,0,0,82,0,5,0,0,2,0,310,0,0,0,0,631,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,141,0,61,0,0,0,32,87,39,101,146,0,0,0,0,1,0,0,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,9,135,3,0,0,135,0,335,0,0,0,44,11,0,0,0,0,0,0,0,0,0,143,1,0,0,0,2,0,0,0,0,17,104,28,0,0,0,0,0,0,0,0,258,0,0,231,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,55,0,0,0,0,1,23,63,0,72,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,157,162,5 +2,0,0,15,1,49,40,1,151,19,29,1,1,3,42,0,124,0,9,6,0,0,0,11,2,3,15,0,23,0,1,0,0,1,30,0,50,233,55,0,333,0,0,0,1,0,0,3,0,0,0,0,13,272,0,0,0,0,0,1,0,0,0,1,0,29,0,0,5868,49,428,0,24,0,0,0,0,0,16,0,0,0,0,0,5,11,1535,0,1,30,1,0,3,80,0,816,30,6,2,0,4,1,677,0,11,0,5,2276,0,0,0,0,32,0,0,0,0,0,0,1,0,0,0,9,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,1294,0,147,0,0,0,26,84,101,1022,1301,0,0,0,0,1,0,3,0,0,0,0,0,0,1134,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,2,129,44,506,27,0,0,415,0,1457,0,1,0,212,64,0,0,0,0,0,0,6,0,0,400,1,0,0,0,19,0,0,0,0,14,163,271,0,0,127,0,1,0,0,0,890,0,0,494,0,0,1,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,70,1,1,1,0,99,0,0,0,0,9,80,135,0,42,0,0,0,0,0,0,351,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,23,0,0,0,0,0,0,0,0,0,0,0,1,0,3,967,175,5 +4,0,0,17,0,107,27,0,333,39,113,0,1,5,63,1,415,0,7,13,0,0,0,20,7,20,27,0,54,0,1,0,0,0,52,0,107,221,91,0,1231,0,0,0,1,0,0,8,0,0,0,0,28,718,0,0,0,0,0,1,0,0,0,4,0,70,0,0,7841,107,1110,0,53,0,0,0,0,0,41,0,0,0,0,1,12,27,1005,0,0,52,0,0,8,286,0,2693,445,15,0,0,2,0,2239,0,44,2,6,7920,0,1,0,0,10,3,5,0,0,0,0,1,0,0,0,12,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,29,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,10,10,10,0,0,0,801,0,219,0,0,0,54,135,295,1744,704,0,0,0,0,1,0,12,0,0,0,0,0,0,1635,0,0,0,0,0,0,0,0,0,0,0,0,8,1,2,0,0,0,0,1,0,39,68,630,18,0,0,556,0,1270,0,0,0,359,261,0,0,0,0,0,0,17,0,0,965,1,0,0,0,40,0,0,0,0,28,202,687,0,0,1058,0,0,0,0,0,1545,0,0,746,3,0,1,1,1,0,0,0,25,0,0,0,3,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,3,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,1,0,0,144,1,1,1,0,92,0,0,0,0,1,159,425,0,93,9,0,0,0,0,0,1694,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,57,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1152,290,5 +0,0,0,10,0,44,4,0,49,14,6,0,1,3,26,0,55,0,7,4,0,0,0,1,1,3,12,0,8,0,0,0,0,0,11,0,44,154,14,0,131,0,0,0,1,0,0,7,0,0,0,0,4,151,0,0,0,0,0,1,0,0,0,0,0,9,0,0,1654,44,193,0,9,0,0,0,0,0,21,0,0,0,0,2,1,14,142,0,0,11,0,0,0,0,0,53,0,9,0,0,2,0,191,0,8,0,6,1412,0,0,0,0,1,0,4,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,168,0,96,0,0,0,8,38,55,121,193,0,0,0,0,1,0,0,0,0,0,0,0,0,419,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,13,24,234,11,0,0,318,0,2968,0,0,0,200,46,0,0,0,0,0,0,0,0,0,151,1,0,0,0,6,0,0,0,0,5,122,134,0,0,0,0,0,0,0,0,408,0,0,87,0,0,1,0,0,0,0,0,12,0,0,0,5,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,22,0,0,0,0,1,55,433,0,23,0,0,0,0,0,0,76,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,4,385,105,5 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,1,0,0,72,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,70,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,15,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,34,2,0,0,68,0,188,0,0,0,38,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,37,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,56,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,15,5 +7,0,0,29,0,45,7,0,24,35,45,0,0,2,61,0,26,0,7,8,0,0,0,7,0,8,0,0,5,0,2,0,0,0,11,0,45,6,7,0,336,0,0,0,1,0,0,4,2,0,0,0,3,143,0,2,0,0,0,1,0,0,0,0,0,16,0,0,2496,45,196,0,5,0,0,0,2,0,27,0,0,0,0,0,13,24,419,0,0,11,0,0,0,0,0,106,5,12,0,0,2,0,203,0,52,0,0,1058,0,0,0,0,14,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,6,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,35,10,10,10,0,0,0,329,0,183,0,0,0,4,13,227,124,321,0,0,0,0,1,0,5,0,0,0,0,0,0,955,0,0,0,0,2,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,63,263,33,0,0,255,0,605,0,0,0,131,43,0,0,0,0,0,0,0,0,0,172,1,0,7,0,15,0,0,0,0,3,133,76,0,0,0,0,0,0,0,0,414,0,0,311,3,0,1,1,0,0,0,0,16,0,0,0,1,0,0,0,0,0,74,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,4,5,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,6,0,0,0,0,1,56,658,0,6,9,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,37,0,0,0,0,0,0,0,0,0,0,0,0,0,4,594,61,5 +7,0,0,8,9,69,49,9,200,3,47,0,0,0,13,0,200,0,9,31,0,8,0,36,0,19,30,0,8,0,3,0,0,9,44,0,78,125,10,0,202,0,0,0,1,0,0,4,0,0,0,0,5,290,0,0,0,0,0,1,0,0,0,0,0,26,0,0,2112,69,1487,0,19,0,0,0,0,0,16,24,0,0,0,0,39,45,298,0,9,44,9,0,6,81,0,848,85,7,0,0,4,9,748,0,9,0,0,1955,0,0,7,0,10,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,88,0,8,0,0,0,0,347,0,217,0,0,1,18,120,233,633,460,0,0,0,0,1,0,8,0,0,0,0,0,0,968,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,410,31,739,25,0,0,743,0,1345,0,1,0,367,127,0,0,0,0,0,0,0,0,0,518,1,0,0,0,75,0,0,0,0,5,200,263,0,0,188,0,0,0,0,0,982,0,0,106,83,0,1,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,4,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,17,12,0,0,0,0,8,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,1,111,1,9,1,0,102,0,0,0,0,97,122,692,0,60,0,0,0,0,0,0,305,3,0,0,0,0,0,0,0,0,0,0,0,9,0,1,11,0,0,0,0,0,0,0,0,0,0,0,10,0,2,453,164,5 +7,0,0,16,2,79,129,2,192,12,47,0,0,9,25,0,1452,0,11,7,0,0,0,8,0,15,12,0,18,0,1,0,0,2,21,14191,81,168,20,0,244,0,0,0,1,0,0,9,0,0,0,0,5,1031,0,0,0,0,0,1,0,0,0,13,0,25,0,0,189204,79,1927,0,15,0,0,0,0,0,101,0,0,0,0,0,10,87,39967,0,2,21,2,0,4,59,0,1058,115,18,0,0,6,2,1905,0,16,96,0,9818,0,0,0,0,16,7,16,0,0,0,0,1,0,0,0,27,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,75,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,3,7,0,0,0,0,1,0,0,0,6,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,32705,0,166,0,0,0,11,126,844,3016,32642,0,0,0,0,1,0,13,0,0,0,0,0,0,1977,7,0,0,0,0,0,0,0,0,0,0,0,89,8,0,0,0,0,0,1,0,353,59,934,22,0,0,1052,0,3493,0,2,0,578,77,0,0,0,0,0,0,0,0,0,1865,1,0,0,0,15,0,0,0,0,6,312,456,0,0,360,0,12,0,0,0,11744,1,0,558,39,0,1,1,0,0,0,0,25,0,0,0,3,0,0,0,0,0,13,0,0,0,21,6,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,133,1,1,1,0,103,0,0,0,0,17,102,703,0,32,14,0,3,0,0,0,341,3,0,0,0,0,0,0,0,0,0,0,0,5,0,1,20,0,0,0,0,0,0,0,0,0,0,0,2,0,7,4417,218,5 +0,0,0,18,0,57,20,0,127,59,33,0,1,2,80,0,107,0,7,10,0,0,0,3,6,5,33,0,26,0,4,1,0,0,27,0,57,349,40,0,283,0,0,0,1,0,0,1,0,0,0,0,16,215,0,0,0,0,0,1,0,0,0,6,0,71,0,0,4346,57,438,0,31,0,0,0,0,0,8,0,0,0,0,0,6,9,81,0,0,27,0,0,5,65,0,681,110,3,0,0,2,0,742,0,54,0,3,2824,0,0,0,0,63,0,0,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,175,0,111,0,0,0,32,111,127,1672,188,0,0,0,0,1,0,0,0,0,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,18,81,422,22,0,0,276,0,1011,0,0,0,157,116,0,0,0,0,0,0,0,0,0,377,1,0,0,0,19,0,0,0,0,11,167,136,0,0,272,0,0,0,0,1,31170,0,0,92,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,75,1,1,1,0,76,0,0,0,0,1,84,110,0,69,0,0,0,0,0,0,296,17,0,0,0,0,0,0,0,0,0,0,0,0,0,1,65,0,0,0,0,0,0,0,0,0,0,0,0,0,1,400,169,5 +0,0,0,3,0,9,2,0,9,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,0,63,0,0,0,0,0,1,0,0,0,0,0,2,0,0,518,9,35,0,1,0,0,0,0,0,9,0,0,0,0,0,1,4,101,0,0,0,0,0,0,0,0,9,0,2,0,0,2,0,6,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,84,0,54,0,0,0,0,3,26,6,95,0,0,0,0,1,0,0,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,68,3,0,0,109,0,143,0,0,0,49,2,0,0,0,0,0,0,4,0,0,35,1,0,0,0,2,0,0,0,0,0,91,46,0,0,0,0,0,0,0,0,49,0,0,90,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,140,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,148,57,5 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,0,0,0,16,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,3,21,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,43,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,3,5 +8,0,0,9,1,80,100,1,197,7,54,0,0,9,18,0,2006,0,9,7,0,0,0,8,1,15,21,0,32,0,1,2,0,1,19,29716,81,54,19,0,225,0,0,0,1,0,0,8,0,0,0,0,8,991,0,0,0,0,0,1,0,0,0,11,0,21,0,0,218109,80,2502,0,31,0,0,0,0,0,98,0,0,0,0,0,10,137,42002,0,1,19,1,0,3,78,0,1159,150,15,0,0,4,1,2561,0,11,121,0,10262,0,0,0,0,13,8,5,0,0,0,0,1,0,0,0,25,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,6,0,0,0,0,0,0,1,0,59,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,31,0,1,0,0,0,0,0,0,0,0,0,1,3,6,0,0,0,0,2,0,0,0,5,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,12,12,12,0,0,0,35780,0,169,0,0,0,24,142,1014,3256,35695,0,0,0,0,1,0,9,0,0,0,0,0,0,2802,5,0,0,0,0,0,0,0,0,0,0,0,68,7,2,0,0,0,0,1,0,225,38,823,10,0,0,901,0,935,0,1,0,533,161,0,0,0,0,0,0,0,0,0,2393,1,0,0,0,16,0,0,0,0,8,278,330,0,0,494,0,10,0,0,0,10421,1,0,1875,41,0,1,1,0,0,0,0,20,0,0,0,5,0,0,0,0,0,7,0,0,0,18,5,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,41,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,139,1,1,1,0,124,0,0,0,0,9,100,807,0,57,14,0,2,0,0,0,335,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,15,0,0,0,0,0,0,0,0,0,0,0,1,0,7,3698,160,5 +2,0,0,13,1,57,43,1,109,36,28,0,1,3,55,3,140,0,9,8,0,0,0,8,3,10,24,0,28,0,1,0,0,1,33,0,58,366,51,0,279,0,0,1,1,0,0,2,0,0,0,0,14,349,0,0,0,0,0,1,0,0,0,3,0,50,0,0,2083,57,397,0,30,0,0,0,0,0,6,0,0,0,0,0,4,8,201,0,1,33,1,0,4,59,0,744,52,2,0,0,4,1,657,0,36,2,4,3176,0,0,1,0,11,0,3,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,235,0,117,0,0,0,28,108,114,1429,213,0,0,0,0,1,0,4,0,0,0,0,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,134,77,643,25,0,0,537,0,2770,0,1,0,290,262,0,0,0,0,1,0,0,0,0,391,1,0,0,0,19,0,0,0,0,15,226,249,0,0,216,0,1,0,0,0,1017,0,0,20,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,27,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,66,1,1,1,0,103,0,0,0,0,9,91,223,0,63,0,0,0,0,0,0,315,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,42,0,0,0,0,0,0,0,0,0,0,0,1,0,1,689,289,5 +0,0,0,0,0,29,73,0,115,6,37,0,1,0,8,0,43,0,7,6,0,0,0,1,0,4,12,0,8,0,1,0,0,0,12,0,29,25,16,0,198,0,0,0,0,0,0,0,0,0,0,0,4,102,0,0,0,0,0,1,0,0,1,0,0,11,0,0,533,29,289,0,9,0,0,0,0,0,0,0,0,0,0,0,2,2,52,0,0,12,0,0,3,104,0,850,175,0,0,0,4,0,550,0,6,0,0,8048,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,440,0,64,0,0,0,8,36,54,1047,101,0,0,0,0,0,0,0,0,0,0,0,0,0,545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,28,123,0,0,0,175,0,569,0,0,0,115,9,0,0,0,0,0,0,0,0,0,284,0,0,0,0,7,0,0,0,0,3,120,175,0,0,386,0,0,0,0,2,187,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,30,0,0,0,0,1,41,12,0,25,0,0,0,0,0,0,237,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,44,5 +0,0,0,14,1,97,34,1,133,41,19,0,0,15,85,0,164,0,9,6,0,0,0,27,3,9,24,0,53,0,1,0,0,1,72,0,98,201,131,0,308,0,0,0,1,0,0,19,0,0,0,0,30,283,0,0,0,0,0,1,0,0,0,1,0,67,0,0,5450,97,656,0,55,0,0,0,0,0,63,0,0,0,0,2,5,43,583,0,1,72,1,0,2,46,0,989,85,35,8,0,4,1,729,0,51,0,2,3992,0,0,0,0,5,0,11,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,40,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,621,0,294,0,0,0,60,169,199,881,572,0,0,0,0,1,0,16,0,0,0,0,0,0,1404,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,377,81,676,16,0,0,646,0,1020,0,1,0,424,133,0,0,0,0,0,0,0,0,0,459,1,0,0,0,36,0,0,0,0,28,213,224,0,0,66,0,2,0,0,0,1338,0,0,261,0,0,1,0,0,0,0,0,39,0,0,0,18,0,0,0,0,0,45,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,117,1,1,1,0,206,0,0,0,0,9,170,279,0,87,0,0,0,0,0,0,418,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,45,0,0,0,0,0,0,0,0,0,0,0,1,0,22,1201,169,5 +0,0,0,3,0,10,5,0,15,0,3,0,0,0,5,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,10,6,0,0,21,0,0,0,1,0,0,2,0,0,0,0,0,109,0,0,0,0,0,1,0,0,0,0,0,6,0,0,331,10,54,0,1,0,0,0,0,0,10,0,0,0,0,0,1,4,55,0,0,0,0,0,0,0,0,10,0,4,0,0,2,0,20,0,0,0,0,147,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,60,0,46,0,0,0,0,3,26,8,73,0,0,0,0,1,0,0,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,2,0,5,0,0,0,0,0,0,10,3,117,3,0,0,188,0,345,0,0,0,98,4,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,137,77,0,0,0,0,0,0,0,0,208,0,0,44,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,267,0,0,0,0,1,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,99,25,5 +0,0,0,4,0,13,10,0,35,0,10,0,0,0,3,0,18,0,6,2,0,0,0,1,0,0,0,0,2,0,0,0,0,0,4,0,13,6,3,0,45,0,0,0,1,0,0,4,0,0,0,0,1,93,0,0,0,0,0,1,0,0,0,0,0,9,0,0,561,13,90,0,3,0,0,0,0,0,15,0,0,0,0,0,1,6,89,0,0,4,0,0,2,24,0,211,35,8,0,0,2,0,118,0,0,0,0,187,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,102,0,48,0,0,0,2,6,29,151,108,0,0,0,0,1,0,0,0,0,0,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,3,85,4,0,0,139,0,245,0,0,0,81,15,0,0,0,0,0,0,0,0,0,82,1,0,0,0,3,0,0,0,0,1,95,91,0,0,78,0,0,0,0,0,77,0,0,88,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,3,0,0,0,0,1,17,148,0,2,0,0,0,0,0,0,92,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,23,5 +0,0,0,0,0,43,23,0,75,55,5,0,1,9,51,1,84,0,7,4,0,0,0,4,0,3,9,0,7,0,1,0,0,0,14,0,43,204,41,0,250,0,0,0,1,0,0,7,0,0,0,0,3,208,0,0,0,0,0,1,0,0,1,2,0,14,0,0,4599,43,299,0,8,0,0,0,0,0,28,0,0,0,0,0,4,13,972,0,0,14,0,0,0,14,0,158,0,10,0,0,2,0,391,0,13,0,9,2396,0,0,0,0,10,0,6,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,0,0,671,0,116,0,0,0,6,92,111,289,695,0,0,0,0,1,0,0,0,0,0,0,0,0,791,0,0,0,0,0,0,0,0,0,0,0,0,7,0,5,0,0,0,0,0,0,13,63,424,11,0,0,541,0,915,0,0,0,376,91,0,0,0,0,0,0,0,0,0,256,1,0,0,0,8,0,0,0,0,4,281,232,0,0,0,0,0,0,0,2,557,0,0,201,0,0,1,0,0,0,0,0,16,0,0,0,2,0,0,0,0,0,31,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,143,0,0,0,0,1,57,474,0,20,0,0,1,0,0,0,134,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,55,0,0,0,0,0,0,0,0,0,0,0,0,0,7,863,159,5 +0,0,0,3,0,13,2,0,8,0,3,0,0,0,3,0,20,0,7,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,3,0,13,6,3,0,10,0,0,0,1,0,0,2,0,0,0,0,1,72,0,0,0,0,0,1,0,0,0,0,0,3,0,0,431,13,46,0,3,0,0,0,0,0,10,0,0,0,0,0,1,4,53,0,0,3,0,0,0,0,0,17,0,3,0,0,2,0,28,0,1,0,0,240,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,72,0,40,0,0,0,2,11,29,17,67,0,0,0,0,1,0,0,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,104,3,0,0,121,0,249,0,0,0,60,14,0,0,0,0,0,0,0,0,0,43,1,0,0,0,3,0,0,0,0,2,95,44,0,0,0,0,0,0,0,0,76,0,0,72,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,6,0,0,0,0,1,16,117,0,7,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,92,41,5 +0,0,0,3,0,12,2,0,17,0,2,0,0,0,3,0,23,0,7,1,0,0,0,1,0,0,3,0,1,0,2,0,0,0,2,0,12,18,0,0,11,0,0,0,1,0,0,2,0,0,0,0,1,90,0,0,0,0,0,1,0,0,0,0,0,2,0,0,4179,12,62,0,3,0,0,0,0,0,11,0,0,0,0,0,1,5,369,0,0,2,0,0,0,0,0,14,0,4,0,0,2,0,43,0,0,0,0,220,0,0,0,0,1,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,370,0,41,0,0,0,2,11,29,23,376,0,0,0,0,1,0,0,0,0,0,0,0,0,1230,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,105,3,0,0,132,0,387,0,0,0,65,8,0,0,0,0,0,0,0,0,0,54,1,0,0,0,2,0,0,0,0,2,94,49,0,0,0,0,0,0,0,0,467,0,0,1264,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,11,0,0,0,0,1,14,203,0,6,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,401,52,5 +1,0,0,5,0,10,3,0,18,0,4,0,0,0,3,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,9,0,0,14,0,0,0,1,0,0,4,0,0,0,0,0,140,0,0,0,0,0,1,0,0,0,0,0,2,0,0,761,10,66,0,0,0,0,0,0,0,17,0,0,0,0,0,1,7,102,0,0,1,0,0,0,0,0,11,0,7,0,0,2,0,22,0,0,0,0,301,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,103,0,62,0,0,0,0,3,24,8,115,0,0,0,0,1,0,0,0,0,0,0,0,0,294,0,0,0,0,0,0,0,0,0,2,0,0,4,0,0,0,0,0,0,0,2,8,6,100,5,0,0,176,0,945,0,0,0,108,9,0,0,0,0,0,0,0,0,0,50,1,0,0,0,2,0,0,0,0,0,94,87,0,0,0,0,2,0,0,1,52,0,0,107,0,0,1,0,1,0,0,0,8,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,319,0,1,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1262,69,5 +31,0,0,28,1,114,215,1,306,109,114,0,1,11,140,2,206,0,9,6,0,0,0,25,5,27,24,0,56,0,3,0,0,1,57,1576,115,846,30,0,688,0,0,0,1,0,0,10,0,0,0,0,12,1141,0,1,0,0,0,1,0,0,14,5,0,133,0,0,45157,114,1273,0,54,0,0,0,0,0,138,0,0,0,0,0,26,218,6769,0,1,57,1,0,5,207,0,2360,295,17,0,0,4,1,1680,0,120,237,9,7426,0,0,21,0,24,0,1,0,0,0,0,1,1,0,0,95,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,5,0,0,0,14,0,0,0,0,0,0,0,0,0,4,0,0,0,0,56,0,1,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,12,12,12,0,0,0,2905,0,349,0,0,0,35,106,1288,4505,2669,0,0,0,0,1,0,13,0,0,0,0,0,0,6120,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,1,0,246,174,1054,36,0,0,1055,0,4302,0,1,0,707,131,1,0,0,0,0,0,0,0,0,1004,1,0,0,0,36,0,0,0,0,11,264,600,0,0,1101,0,0,0,6,23,4614,1,0,4356,48,0,1,1,0,0,0,0,23,0,0,0,37,0,0,0,0,0,113,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,48,5,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,152,1,1,1,0,136,0,0,0,0,9,172,890,0,94,16,0,1,0,0,0,829,5,0,0,0,0,0,0,0,0,0,0,0,3,0,1,121,0,0,0,0,2,0,0,0,0,0,0,1,0,10,4544,504,5 +2,0,0,9,1,45,37,1,53,3,13,0,0,9,8,0,124,0,9,3,0,0,0,7,0,10,0,0,8,0,2,0,0,1,8,7710,46,54,0,0,72,0,0,0,1,0,0,2,0,0,0,0,2,417,0,0,0,0,0,1,0,0,0,4,0,3,0,0,16144,45,222,0,7,0,0,0,0,0,27,0,0,0,0,0,9,40,2634,0,1,8,1,0,1,0,0,327,30,4,0,0,4,1,162,0,1,33,0,2598,0,0,0,0,6,2,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,12,12,12,0,0,0,825,0,56,0,0,0,5,7,452,755,804,0,0,0,0,1,0,6,0,0,0,0,0,0,367,2,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,1,0,221,31,445,11,0,0,505,0,682,0,1,0,234,30,0,0,0,0,0,0,0,0,0,253,1,0,0,0,10,0,0,0,0,2,172,80,0,0,41,0,0,0,0,0,1500,1,0,139,11,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,11,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,56,1,1,1,0,16,0,0,0,0,9,54,382,0,8,12,0,0,0,0,0,109,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2694,53,5 +3,0,0,21,0,132,64,0,366,121,96,0,1,7,152,0,1526,0,7,9,0,0,0,10,3,20,57,0,50,0,12,0,0,0,70,16625,132,123,53,0,902,0,0,0,1,0,0,12,0,0,0,0,21,858,0,2,0,0,0,1,0,0,0,6,0,171,0,0,174479,132,2403,0,60,0,0,0,0,2,76,0,0,0,0,1,12,137,28641,0,0,70,0,0,2,262,0,2552,210,22,0,0,2,0,3451,0,127,69,1,7424,0,1,2,0,195,0,12,0,0,0,0,1,6,0,0,28,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,48,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,12,12,12,0,0,0,14387,0,265,0,0,0,51,199,931,3865,14317,0,0,0,0,1,0,3,0,0,0,0,0,0,16002,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,1,0,106,160,935,25,0,0,1064,0,1464,0,0,0,815,94,1,0,0,0,0,0,4,1,1,2219,1,0,0,0,22,0,0,0,0,21,409,885,0,0,562,0,7,0,8,0,38626,1,0,54509,19,0,1,5,0,0,0,0,26,0,0,0,3,0,0,0,0,0,122,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,19,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,148,1,1,1,0,329,0,0,0,0,1,202,846,0,127,12,0,0,0,0,0,910,7,0,0,0,0,0,0,0,0,0,0,0,2,0,1,133,3,0,0,0,0,0,0,0,0,0,0,0,0,9,27097,299,5 +0,0,0,20,1,70,267,1,598,90,149,0,1,14,116,1,127,0,9,12,0,0,0,7,8,16,0,0,34,0,1,0,0,1,34,0,71,939,73,0,1234,0,0,0,1,0,0,7,0,0,0,0,18,625,0,0,0,0,0,1,0,0,2,22,0,101,0,0,10053,70,1322,0,36,0,0,0,0,0,34,0,0,0,0,0,8,16,553,0,1,34,1,0,7,499,0,4698,537,15,0,0,10,1,2644,0,71,0,21,5112,0,0,0,0,62,0,13,0,0,0,0,1,0,0,0,36,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,68,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,0,0,594,0,216,0,0,0,36,118,161,5000,624,0,0,0,0,1,0,1,0,0,0,0,0,0,2386,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,168,135,749,25,0,0,916,0,3961,0,1,0,644,192,0,0,0,0,0,0,4,0,0,1282,1,0,0,0,27,0,0,0,0,18,248,1161,0,0,1416,0,1,0,0,9,8586,0,0,276,0,0,1,0,0,0,0,0,17,0,5,0,6,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,96,1,1,1,0,131,0,0,0,0,9,105,583,0,51,0,0,0,0,0,0,1280,18,0,0,0,0,0,0,0,0,0,0,0,1,0,1,100,0,0,0,0,0,0,0,0,0,0,0,1,0,5,1955,308,5 +0,0,0,19,0,80,119,0,255,66,64,0,1,5,105,0,97,0,7,11,0,0,0,6,4,15,27,0,25,0,1,0,0,0,27,0,80,309,47,0,496,0,0,0,1,0,0,9,0,0,0,0,13,474,0,0,0,0,0,1,0,0,2,3,0,70,0,0,8110,80,751,0,24,0,0,0,0,0,51,0,0,0,0,1,8,25,1225,0,0,27,0,0,4,178,0,1587,280,17,0,0,2,0,1242,0,58,0,8,3836,0,0,0,0,27,0,10,0,0,0,0,1,0,0,0,24,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,10,10,10,0,0,0,1109,0,242,0,0,0,24,98,259,1348,1102,0,0,0,0,1,0,3,0,0,0,0,0,0,2134,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,1,0,37,94,765,53,0,0,787,0,1262,0,0,0,580,205,0,0,0,0,0,0,8,0,0,653,1,0,0,0,21,0,0,0,0,12,303,532,0,0,707,0,1,0,0,2,1113,0,0,658,3,0,1,1,1,0,0,0,22,0,1,0,12,0,0,0,0,0,59,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,3,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,95,1,1,1,0,93,0,0,0,0,1,107,790,0,59,9,0,0,0,0,0,551,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,72,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1683,571,5 +15,0,0,17,0,94,48,0,235,21,59,0,0,0,39,0,94,0,7,2,0,0,0,1,1,6,45,0,16,0,15,6,0,0,78,0,94,6,4,0,461,0,0,0,1,0,0,7,0,0,0,0,28,245,0,2,0,0,0,1,0,0,0,34,0,60,0,0,9787,94,584,0,43,0,0,0,0,0,35,0,0,0,0,0,1,9,551,0,0,78,0,0,5,191,0,1645,155,13,0,0,2,0,1297,0,26,0,0,3538,0,3,0,0,32,0,1,0,0,0,0,1,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,12,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,617,0,187,0,0,0,56,101,181,1559,644,0,0,0,0,1,0,0,0,0,0,0,0,0,2875,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,8,53,528,37,0,0,770,0,999,0,0,0,667,169,0,0,0,0,0,0,0,0,0,482,1,0,0,0,4,0,0,0,0,15,232,756,0,0,411,0,0,0,2,1,510,0,0,1829,0,0,1,0,0,0,0,0,8,0,0,0,2,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,124,1,1,1,0,80,0,0,0,0,1,172,967,0,88,0,0,1,0,0,0,539,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,29,0,0,0,0,0,0,0,0,0,0,0,0,0,7,568,383,5 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,1,0,0,14,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,34,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,3,5 +4,0,0,26,1,82,327,1,698,201,165,1,1,7,311,0,329,0,72,9,0,0,0,9,7,20,35,0,26,0,1,0,0,1,28,0,83,2268,100,0,1638,0,0,0,1,0,0,43,0,0,0,0,13,618,0,2,0,0,0,1,0,0,2,3,0,242,0,0,35552,82,2219,0,25,0,0,0,0,0,157,0,0,0,0,0,12,102,6100,0,1,28,1,0,7,591,0,4782,605,67,11,0,4,1,3932,0,174,0,15,7266,0,0,0,0,129,0,64,0,0,0,0,1,0,0,0,29,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,15,1,1,0,0,0,1,0,5,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,10,10,10,0,0,0,4949,0,397,0,0,0,24,216,276,5552,4943,0,0,0,0,1,0,2,0,0,0,0,0,0,8348,0,0,0,0,0,0,0,0,0,0,0,0,43,1,2,0,0,0,0,1,3,180,272,2557,125,0,0,1962,0,3346,0,1,0,1640,159,0,0,0,0,0,0,0,0,0,1911,1,0,0,0,25,0,0,0,0,11,556,1918,0,0,1634,0,1,0,0,3,3784,0,0,3651,3,0,1,1,1,0,0,0,87,0,1,0,48,0,0,0,0,0,167,2,0,7,2,0,0,1,0,0,0,0,0,0,0,0,12,0,0,0,0,0,3,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,118,1,1,1,0,280,0,0,0,0,9,111,898,0,73,9,0,0,0,0,0,1699,11,0,0,0,0,0,0,0,0,0,0,0,2,0,1,211,0,0,0,0,0,0,0,0,0,0,0,1,0,14,6353,1147,5 +0,0,0,6,0,47,57,0,90,8,17,0,0,2,25,1,20,0,6,4,0,0,0,8,0,8,0,0,2,0,1,0,0,0,17,0,47,43,0,0,230,0,0,0,1,0,0,5,0,0,0,0,1,203,0,21,0,0,0,1,0,0,0,1,0,28,0,0,2156,47,223,0,1,0,0,0,0,0,18,0,0,0,0,1,11,26,315,0,0,17,0,0,3,74,0,647,65,9,1,0,2,0,428,0,16,0,0,1038,0,0,0,0,6,0,11,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,30,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,242,0,127,0,0,0,0,3,213,412,416,0,0,0,0,1,0,9,0,0,0,0,0,0,1045,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,32,30,208,6,0,0,367,0,668,0,0,0,255,18,0,5,0,0,0,0,0,0,0,218,1,0,0,0,12,0,0,0,0,1,129,280,0,0,163,0,0,0,0,0,179,0,0,55,3,0,1,49,1,0,0,0,7,0,1,0,14,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,0,0,0,0,0,1,64,310,0,2,9,0,0,0,0,0,227,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,14,48,0,0,0,10,0,0,0,0,0,0,0,0,3,486,55,5 +0,0,0,4,0,19,3,0,20,1,7,0,0,0,5,0,26,0,7,3,0,0,0,2,0,1,3,0,2,0,1,0,0,0,5,0,19,6,4,0,30,0,0,0,1,0,0,1,0,0,0,0,1,128,1,0,0,0,0,1,0,0,0,0,0,7,0,0,264,19,69,0,3,0,0,0,0,0,5,0,0,0,2,0,3,6,56,0,0,5,0,0,1,8,0,88,15,1,0,0,2,0,75,0,3,0,0,241,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,71,0,53,0,0,0,2,10,47,95,95,0,0,0,0,1,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,6,121,4,0,0,137,0,7050,0,0,0,52,3,0,0,0,0,0,0,0,0,0,68,1,0,0,0,5,0,0,0,0,1,101,38,0,0,32,0,0,0,0,0,73,0,0,19,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,6,0,0,0,0,3,24,114,0,7,0,0,0,0,0,0,53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,105,49,5 +0,0,0,3,0,15,2,0,12,0,2,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,15,6,0,0,6,0,0,0,1,0,0,1,1,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,2,0,0,105,15,37,0,1,0,0,0,0,0,4,0,0,0,0,0,1,4,36,0,0,0,0,0,0,0,0,6,0,4,1,0,2,0,8,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,38,0,0,0,0,3,39,5,54,0,0,0,0,1,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,93,3,0,0,104,0,2661,0,0,0,20,0,0,0,0,0,0,0,0,0,0,42,1,0,3,0,2,0,0,0,0,0,97,7,0,0,0,0,0,0,0,0,35,0,0,16,0,0,1,0,0,0,0,0,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,15,16,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,82,16,5 +0,0,0,13,0,43,32,0,94,9,27,0,0,2,27,0,91,0,49,6,0,0,0,2,0,4,17,0,10,0,2,0,0,0,13,0,43,152,38,0,167,0,0,0,1,0,0,1,0,0,0,0,7,218,0,0,0,0,0,1,0,0,0,0,0,26,0,0,3010,43,342,0,13,0,0,0,0,0,6,0,0,0,0,0,2,4,282,0,0,13,0,0,3,65,0,572,100,2,0,0,2,0,501,0,16,0,3,24147,0,0,0,0,8,0,1,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,236,0,205,0,0,0,13,777,127,748,238,0,0,0,0,1,0,0,0,1,0,0,0,0,850,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,20,644,15,0,0,251,0,8252,0,0,0,132,4317,0,0,0,0,0,0,3,0,0,322,1,0,0,0,8,0,0,0,0,6,132,178,0,0,293,0,0,0,0,0,612,0,0,277,0,0,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,11,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,44,0,0,0,0,1,56,173,0,33,0,0,0,0,0,0,223,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,517,579,5 +5,0,0,12,0,68,78,0,369,16,105,0,0,6,24,0,128,0,7,3,0,0,0,7,0,22,3,0,18,0,3,4,0,0,19,287,68,24,64,0,669,0,0,0,1,0,0,20,0,0,0,0,14,473,0,0,0,0,0,1,0,0,1,0,0,73,0,0,22774,68,875,0,34,0,0,0,0,0,98,0,0,0,0,0,8,57,4548,0,0,19,0,0,5,324,0,2887,295,26,0,0,2,0,1771,0,20,22,0,5324,0,0,0,0,41,0,2,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,5,0,3,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,12,1,1,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,12,12,12,0,0,0,3177,0,339,0,0,0,19,27,427,6169,3110,0,0,0,0,1,0,4,0,0,0,0,0,0,3404,0,0,0,0,0,0,0,0,0,0,0,0,20,1,4,0,0,0,0,1,0,87,44,487,15,0,0,813,0,1205,0,0,0,619,80,0,0,0,0,0,0,5,0,0,717,1,0,0,0,10,0,0,0,0,15,255,1048,0,0,756,0,0,0,0,2,3145,1,0,2027,9,0,1,1,1,0,0,0,46,0,1,0,7,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,9,11,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,0,70,1,1,1,0,36,0,0,0,0,2,87,1373,0,38,12,0,0,0,0,0,902,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,27,0,0,0,0,0,0,0,0,0,0,0,0,0,21,2345,433,5 +20,0,0,8,1,105,175,1,440,59,53,0,0,9,64,0,1632,0,9,2,0,0,0,8,0,10,0,0,5,0,1,0,0,1,25,50057,106,54,0,0,699,0,0,0,1,0,0,25,0,0,0,0,1,1321,0,0,0,0,0,1,0,0,0,38,0,98,0,0,374027,105,2523,0,3,0,18,0,0,0,254,0,0,0,0,0,9,61,92163,0,1,25,1,0,2,187,0,1990,55,35,0,0,4,1,2930,0,59,47,0,16790,0,0,0,0,62,20,23,0,0,0,0,1,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,89,0,0,0,0,90,0,1,0,0,0,0,0,0,0,0,0,1,0,22,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,77611,0,335,0,0,0,1,4,1081,50245,77635,0,0,0,0,1,0,46,0,0,0,0,0,0,10826,20,0,0,0,0,0,0,0,0,0,0,0,26,21,0,0,0,0,0,1,0,253,86,1106,9,0,0,1294,0,1923,0,1,0,810,150,0,0,0,0,0,0,4,0,0,2382,1,0,0,0,10,0,0,0,0,2,326,1143,0,0,187,0,0,0,0,0,42897,1,0,4014,44,0,1,1,0,0,0,0,45,0,0,0,2,0,0,0,0,0,59,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,44,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,221,1,1,1,0,5,0,0,0,0,9,131,829,0,4,12,0,0,0,0,0,741,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,67,0,0,0,0,0,0,0,0,0,6,0,1,0,16,8389,1167,5 +0,0,0,12,0,36,6,0,26,1,8,0,0,2,4,0,31,0,7,6,0,0,0,5,0,10,6,0,6,0,1,0,0,0,7,0,36,6,7,0,53,0,0,0,1,0,0,2,0,0,0,0,3,208,0,0,0,0,0,1,0,0,0,0,0,7,0,0,2234,36,84,0,5,0,0,0,0,0,11,0,0,0,0,0,8,16,169,0,0,7,0,0,1,8,0,163,20,4,0,0,2,0,104,0,2,0,0,1034,0,0,0,0,1,0,6,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,167,0,51,0,0,0,4,20,200,1278,150,0,0,0,0,1,0,3,0,0,0,0,0,0,445,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,39,192,14,0,0,243,0,736,0,0,0,134,34,0,0,0,0,0,0,0,0,0,84,1,0,0,0,11,0,0,0,0,2,128,223,0,0,178,0,0,0,0,0,179,0,0,241,3,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,12,0,0,0,0,1,43,245,0,14,9,0,0,0,0,0,59,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,192,401,5 +17,0,0,11,1,67,49,1,101,9,23,0,0,9,23,0,136,0,9,5,0,0,0,7,0,11,3,0,14,0,2,0,0,1,22,4619,68,54,8,0,179,0,0,0,1,0,0,6,0,0,0,0,4,558,0,0,0,0,0,1,0,0,0,24,0,24,0,0,14610,67,355,0,13,0,0,0,0,0,40,0,0,0,0,1,9,40,2202,0,1,22,1,0,3,37,0,615,85,8,1,0,4,1,375,0,14,32,0,3167,0,0,0,0,16,1,1,0,0,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,16,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,12,12,12,0,0,0,971,0,123,0,0,0,7,20,476,960,957,0,0,0,0,1,0,4,0,0,0,0,0,0,1224,1,0,0,0,0,0,0,0,0,0,0,0,6,2,0,0,0,0,0,1,0,217,47,782,12,0,0,875,0,816,0,1,0,575,32,0,0,0,0,0,0,0,0,0,350,1,0,0,0,12,0,0,0,0,3,344,278,0,0,173,0,0,0,0,0,20622,1,0,726,9,0,1,1,0,0,0,0,11,0,0,0,2,0,0,0,0,0,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,77,1,1,1,0,31,0,0,0,0,9,90,918,0,18,12,0,0,0,0,0,232,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,17,0,0,0,0,0,0,0,0,0,0,0,1,0,6,1062,354,5 +0,0,0,4,0,11,2,0,9,0,5,0,0,0,5,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,7,0,0,13,0,0,0,1,0,0,1,0,0,0,0,0,43,0,0,0,0,0,1,0,0,0,0,0,3,0,0,175,11,36,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,37,0,0,1,0,0,0,0,0,8,0,1,0,0,2,0,18,0,1,0,0,161,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,38,0,34,0,0,0,0,3,28,9,53,0,0,0,0,1,0,1,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,4,96,4,0,0,90,0,144,0,0,0,30,6,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,97,16,0,0,0,0,0,0,0,0,284,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,34,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,65,51,5 +0,0,0,12,0,15,3,0,8,4,3,0,1,0,10,0,17,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,7,0,15,9,0,0,30,0,1,0,1,0,0,2,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1151,15,53,0,1,0,0,0,0,0,10,0,0,0,0,0,1,8,516,0,0,7,0,0,0,0,0,14,0,3,0,0,2,0,30,0,5,0,0,159,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0,77,0,51,0,0,0,0,3,35,7,95,0,0,0,0,1,0,0,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,8,99,19,0,0,94,0,157,0,0,0,39,7,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,98,8,0,0,0,0,0,2,0,0,228,0,0,761,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,22,80,0,1,0,0,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,299,19,5 +1,0,0,4,0,20,3,0,19,7,3,0,0,0,14,0,36,0,7,3,0,0,0,2,1,3,9,0,6,0,1,0,0,0,9,0,20,6,10,0,63,0,0,0,1,0,0,1,0,0,0,0,3,114,0,0,0,0,0,1,0,0,0,0,0,7,0,0,572,20,89,0,7,0,0,0,0,0,4,0,0,0,0,0,2,4,116,0,0,9,0,0,0,0,0,34,0,1,0,0,2,0,104,0,4,0,0,509,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,121,0,48,0,0,0,6,35,42,94,125,0,0,0,0,1,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,17,190,12,0,0,169,0,498,0,0,0,101,16,0,0,0,0,0,0,0,0,0,82,1,0,0,0,6,0,0,0,0,3,134,35,0,0,0,0,0,0,0,0,145,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,30,0,0,0,0,1,29,105,0,19,0,0,0,0,0,0,56,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,273,95,5 +0,0,0,12,0,14,3,0,8,4,3,0,1,0,10,0,17,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,14,9,0,0,29,0,1,0,1,0,0,2,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1156,14,55,0,1,0,0,0,0,0,11,0,0,0,0,0,1,8,516,0,0,5,0,0,0,0,0,14,0,3,0,0,2,0,30,0,5,0,0,163,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0,77,0,47,0,0,0,0,3,36,7,94,0,0,0,0,1,0,0,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,8,96,19,0,0,92,0,156,0,0,0,34,4,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,97,8,0,0,0,0,0,2,0,0,232,0,0,768,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,19,78,0,1,0,0,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,305,19,5 +0,0,0,0,0,11,2,0,3,0,1,0,0,0,2,0,10,0,6,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,21,11,20,0,1,0,0,0,0,0,0,0,0,0,0,0,2,2,6,0,0,2,0,0,0,0,0,7,0,0,0,0,2,0,10,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,16,0,19,0,0,0,0,3,27,10,25,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,38,0,0,0,41,0,65,0,0,0,8,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,3,0,0,0,0,0,93,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,2,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,3,5 +2,0,0,6,0,20,342,0,1778,0,700,0,0,0,10,121,648,0,7,3,0,0,0,2,0,0,0,0,3,0,1,0,0,0,5,0,20,72,2,0,3967,0,0,0,1,0,0,9,0,0,0,0,0,762,0,0,0,0,0,1,0,0,0,0,0,13,0,0,6225,20,3663,0,4,0,0,0,0,0,42,0,0,0,0,0,3,16,406,0,0,5,0,0,5,1728,0,13564,3460,15,1,0,2,0,8137,0,2,0,0,1714,0,0,0,1,0,1,8,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,52,0,0,0,0,0,0,410,0,143,0,0,0,1,4,44,4565,405,0,0,0,0,1,0,0,0,0,0,0,0,0,2332,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,15,10,275,6,0,0,636,0,958,0,0,0,540,66,0,0,0,0,0,0,0,0,0,3606,1,0,0,0,5,0,0,0,0,1,107,2919,0,0,8960,0,0,0,0,0,1515,0,0,600,0,0,1,2,0,0,0,0,22,0,0,0,3,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,5,0,0,0,1,1,25,562,0,4,0,0,0,0,0,0,4830,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1385,283,5 +0,0,0,6,0,28,2280,0,3951,1,985,0,0,2,5,0,19,0,7,3,0,0,0,5,0,8,0,0,2,0,1,0,0,0,2,0,28,35,0,0,5949,0,0,0,1,0,0,4,0,0,0,0,1,301,0,0,0,0,0,1,0,0,0,0,0,17,0,0,15987,28,7261,0,1,0,0,0,0,0,20,0,0,0,0,0,7,18,2501,0,0,2,0,0,2,3932,0,29801,4865,8,0,0,2,0,16796,0,3,1,0,2105,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,1679,0,86,0,0,0,0,3,155,16524,1380,0,0,0,0,1,0,2,0,0,0,0,0,0,10501,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,34,15,446,6,0,0,2556,0,618,0,0,0,2447,82,0,0,0,0,0,0,0,0,0,7249,1,0,0,0,8,0,0,0,0,1,139,7229,0,0,14089,0,0,0,0,1,856,0,0,2908,3,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,0,0,0,0,0,1,30,560,0,2,9,0,0,0,0,0,6950,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1304,138,5 +1,0,0,10,0,31,35,0,107,5,31,0,0,0,22,0,24,0,7,2,0,0,0,3,0,1,3,0,6,0,1,0,0,0,18,0,31,6,2,0,195,0,9,0,1,0,0,10,0,0,0,0,1,228,0,0,0,0,0,1,0,0,0,8,0,11,0,0,13974,31,306,0,7,0,0,0,0,0,49,0,0,0,0,0,3,18,4447,0,0,18,0,0,1,87,0,716,135,11,0,0,2,0,442,0,4,0,0,1236,0,0,0,0,16,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,3109,0,159,0,0,0,2,14,63,1229,3147,0,0,0,0,1,0,0,0,0,0,0,0,0,2447,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,8,12,431,23,0,0,584,0,483,0,0,0,485,23,0,24,0,0,0,0,0,0,0,226,1,0,0,0,5,0,0,0,0,2,312,341,0,0,301,0,0,0,10,0,816,0,0,2695,0,0,1,32,1,0,0,0,19,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,20,0,0,0,0,1,49,553,0,11,0,0,1,0,0,0,263,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,32,0,0,0,0,0,0,0,0,0,0,0,0,12,1386,107,5 +0,0,0,4,0,10,3,0,17,0,8,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,1,0,10,6,0,0,23,0,0,0,1,0,0,3,0,0,0,0,1,77,0,0,0,0,0,1,0,0,0,0,0,5,0,0,5964,10,61,0,3,0,0,0,0,0,13,0,0,0,0,0,1,6,547,0,0,1,0,0,1,10,0,98,20,5,1,0,2,0,55,0,1,0,0,298,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,534,0,39,0,0,0,2,4,25,71,540,0,0,0,0,1,0,1,0,0,0,0,0,0,1770,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,85,4,0,0,143,0,222,0,0,0,82,13,0,0,0,0,0,0,0,0,0,54,1,0,0,0,2,0,0,0,0,1,96,85,0,0,47,0,2,0,0,0,494,0,0,1890,0,0,1,0,1,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,3,0,0,0,0,1,11,236,0,3,0,0,0,0,0,0,43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,567,44,5 +1,0,0,20,1,145,214,1,370,68,89,0,1,6,100,1,260,0,9,10,0,0,0,6,40,54,24,0,84,0,1,0,0,1,103,0,146,321,111,0,757,0,0,0,1,0,0,9,0,0,0,0,48,526,0,1,0,0,0,1,0,0,5,8,0,89,0,0,12958,145,1242,0,84,0,0,0,0,0,31,0,0,0,0,0,8,23,3597,0,1,103,1,0,6,264,0,2636,320,13,0,0,4,1,1757,0,61,0,7,5271,0,0,0,0,35,0,9,0,0,0,0,1,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,1,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,10,10,10,0,0,0,2966,0,269,0,0,0,94,379,381,3860,2632,0,0,0,0,1,0,4,0,0,7,0,0,0,2374,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,1,0,160,108,929,37,0,0,1190,0,2718,0,1,0,897,131,0,0,0,0,0,0,4,0,0,1050,1,0,0,0,56,0,0,0,0,48,352,765,0,0,778,0,0,0,9,23,2334,0,0,508,2,0,1,1,0,0,0,0,15,0,1,0,14,0,0,0,0,0,62,1,0,0,0,0,0,0,0,0,0,0,25,25,0,0,14,0,0,0,0,0,2,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,157,1,1,1,0,325,0,0,0,0,23,249,613,0,155,8,0,0,0,0,0,816,7,0,0,0,0,0,0,0,0,0,0,0,2,0,1,74,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1689,280,5 +0,0,0,5,0,20,52,0,169,0,54,0,0,0,5,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,8,0,20,6,0,0,227,0,0,0,1,0,0,3,0,0,0,0,0,115,0,0,0,0,0,1,0,0,0,0,0,12,0,0,651,20,306,0,1,0,0,0,0,0,15,0,0,0,0,0,1,5,130,0,0,8,0,0,2,152,0,1189,250,6,0,0,2,0,638,0,2,0,0,416,0,0,0,0,17,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,109,0,47,0,0,0,0,3,41,832,121,0,0,0,0,1,0,0,0,0,0,0,0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,5,137,5,0,0,198,0,290,0,0,0,119,12,0,0,0,0,0,0,0,0,0,303,1,0,0,0,2,0,0,0,0,1,102,293,0,0,743,0,0,0,0,1,44,0,0,63,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,0,0,0,0,0,1,28,205,0,1,0,0,0,0,0,0,291,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,101,34,5 +1,0,0,0,0,12,3,0,12,0,1,0,0,0,2,1,16,0,7,1,0,0,0,4,0,0,0,0,0,0,1,0,0,0,4,0,12,116,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,250,12,42,0,1,0,0,0,0,0,0,0,0,0,0,0,4,4,31,0,0,4,0,0,0,0,0,11,0,0,0,0,2,0,26,0,0,0,0,478,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,34,0,39,0,0,0,0,3,35,52,53,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,3,147,0,0,0,71,0,934,0,0,0,22,27,0,0,0,0,0,0,0,0,0,42,0,0,0,0,5,0,0,0,0,0,97,1,0,0,0,0,0,0,0,0,157,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,3,16,8,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,41,5 +0,0,0,4,0,50,8,0,65,6,15,0,0,0,9,0,69,0,9,13,0,0,0,5,3,7,21,0,22,0,1,0,0,0,25,0,50,19,83,0,88,0,2,0,1,0,0,15,1,0,0,0,16,220,0,0,0,0,0,1,0,0,0,0,0,16,0,0,11804,50,329,0,26,0,0,0,1,0,68,0,0,0,0,1,7,37,954,0,0,25,0,0,2,36,0,419,30,27,2,0,2,0,356,0,7,0,0,1996,0,0,0,0,3,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,17,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,967,0,230,0,0,0,32,97,88,623,665,0,0,0,0,1,0,1,0,0,0,0,0,0,1600,0,0,0,0,1,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,8,10,344,4,0,0,445,0,1492,0,0,0,324,77,0,0,0,0,0,0,0,0,0,175,1,0,3,0,21,0,0,0,0,5,135,281,0,0,58,0,0,0,0,0,786,0,0,1243,0,0,1,0,1,0,0,0,37,0,0,0,14,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,80,0,0,0,0,1,75,623,0,51,0,0,0,0,0,0,173,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,9,805,154,5 +17,0,0,35,0,86,13,0,66,43,5,1,0,2,79,3,1187,0,15,3,0,0,0,7,0,11,12,0,14,0,12,0,0,0,33,980,86,6,0,1,268,0,0,0,1,0,0,6,0,0,0,0,13,377,0,0,0,0,0,1,0,0,0,17,0,53,0,0,23988,86,1413,0,23,0,0,0,0,0,37,0,0,0,0,0,9,24,3966,0,0,33,0,0,0,0,0,144,5,10,0,0,2,0,1461,0,55,0,0,3698,0,0,0,0,12,0,3,0,6,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,2,0,0,0,15,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,56,12,12,12,0,0,0,2885,0,151,0,0,0,25,42,344,630,2880,0,0,0,0,1,0,4,0,0,0,0,0,0,1144,0,0,0,0,0,0,0,0,0,0,0,0,6,1,2,0,0,0,0,2,0,42,139,493,82,0,0,553,0,755,0,0,0,337,49,0,0,0,0,0,0,0,0,0,1371,1,0,0,0,10,0,0,0,0,10,194,154,0,0,0,0,0,0,0,1,8547,1,0,534,9,0,1,1,0,0,0,0,13,0,0,0,1,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,9,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,113,1,1,1,0,66,0,0,0,0,1,119,527,0,37,12,0,0,0,0,0,162,20,0,0,0,0,0,0,0,0,0,0,0,2,0,1,45,0,0,0,0,0,0,0,8,0,0,0,0,0,4,1214,218,5 +9,0,0,25,2,104,299,2,454,49,58,0,1,7,104,6,471,0,85,6,0,0,0,6,18,22,77,0,49,0,6,5,0,1,43,0,106,293,61,0,950,0,0,0,1,0,0,4,0,0,0,0,31,354,0,0,0,0,0,1,0,0,0,16,0,68,0,0,47338,104,1575,0,58,0,0,0,0,1,18,0,0,0,0,2,9,22,4252,0,2,43,1,0,8,324,0,2849,185,7,0,0,5,2,2487,0,51,0,6,8704,0,0,0,0,16,3,3,0,0,0,0,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,4,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,1,1,0,0,0,0,0,1,0,0,3,0,0,0,0,54,0,1,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,112,10,10,10,0,0,0,4196,0,258,0,0,0,60,269,414,2227,4128,0,0,0,0,1,0,8,0,1,0,0,0,0,12579,1,0,0,0,0,0,0,0,0,2,0,0,4,2,2,0,0,0,0,1,0,249,98,966,31,0,0,1145,0,2240,0,1,0,692,288,0,3,0,0,0,0,2,0,0,1485,1,0,0,0,30,0,0,0,0,27,272,815,0,0,402,0,0,0,0,0,5202,0,0,13227,3,0,1,1,0,0,0,0,6,0,0,0,6,0,0,0,0,0,50,1,0,0,4,0,0,0,0,0,0,0,62,62,0,0,23,0,0,0,0,0,3,41,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,184,1,1,1,0,257,0,0,0,0,51,149,625,0,150,9,0,0,0,0,0,818,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,65,0,0,0,0,0,0,0,0,0,0,0,2,0,3,4146,367,5 +4,0,0,13,1,74,74,1,214,3,41,0,0,25,15,0,2244,0,9,6,0,0,0,8,0,14,9,0,23,0,1,0,0,1,16,31149,75,54,17,0,205,0,0,0,1,0,0,2,0,0,0,0,5,976,0,0,0,0,0,1,0,0,0,8,0,13,0,0,231396,74,2632,0,21,0,0,0,0,0,77,0,0,0,1,0,9,126,50549,0,1,16,1,0,3,38,0,1156,145,4,0,0,4,1,2667,0,3,138,0,9249,0,0,0,0,14,4,5,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,12,12,12,0,0,0,43644,0,94,0,0,0,16,95,974,3360,43591,0,0,0,0,1,0,10,0,0,10,0,0,0,883,4,0,0,0,0,0,0,0,0,0,0,0,12,5,0,0,0,0,0,1,0,550,36,683,14,0,0,729,0,784,0,1,0,381,32,0,0,0,0,0,0,0,0,0,2622,1,0,0,0,14,0,0,0,0,5,246,230,0,0,308,0,1,0,0,0,28866,1,0,403,32,0,1,1,1,0,0,0,5,0,0,0,2,0,0,0,0,0,7,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,107,1,1,1,0,91,0,0,0,0,9,91,192,0,35,12,0,3,0,0,0,361,5,0,0,0,0,0,0,0,0,0,0,0,3,0,1,22,0,0,0,0,0,0,0,0,0,0,0,1,0,2,3771,138,5 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,0,0,0,23,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,10,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,15,0,0,0,0,3,21,4,26,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,23,0,0,0,2,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,3,5 +6,0,0,175,0,61,222,0,468,76,118,0,0,0,189,0,204,0,7,5,0,0,0,2,104,6,42,0,126,0,3,0,0,0,39,0,61,22,144,0,916,0,0,0,1,0,0,8,0,0,0,0,110,1112,0,0,0,0,0,1,0,0,3,0,0,118,0,0,35980,61,1575,0,129,0,0,0,0,0,21,0,0,0,0,0,2,16,2319,0,0,39,0,0,7,349,0,3836,450,8,1,0,2,0,2293,0,84,0,0,6064,0,0,0,0,59,0,9,0,0,0,0,1,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,6,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,1,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,2570,0,213,0,0,0,220,630,123,3356,2474,0,0,0,0,1,0,0,0,0,0,0,0,0,4925,0,0,0,0,0,0,0,0,0,0,0,0,9,0,14,0,0,0,0,0,0,8,147,600,247,0,0,1013,0,1887,0,0,0,853,219,0,0,0,0,0,0,0,0,0,1208,1,0,0,0,111,0,0,0,0,111,228,1141,0,0,1130,0,0,0,0,11,1537,0,0,3398,0,0,1,0,0,0,0,0,15,0,1,0,20,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,6,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,79,1,1,1,0,281,0,0,0,0,1,100,1440,0,177,0,0,0,0,0,0,986,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,86,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1784,366,5 +0,0,0,3,0,36,6,0,34,0,2,0,0,2,2,0,575,0,7,4,0,0,0,6,0,10,18,0,6,0,1,6,0,0,3,898,36,6,0,0,22,0,0,0,1,0,0,11,0,0,0,0,7,232,0,0,0,0,0,1,0,0,0,0,0,2,0,0,23091,36,715,0,10,0,0,0,0,0,48,0,0,0,0,0,9,31,3638,0,0,3,0,0,0,0,0,121,5,19,0,0,2,0,666,0,0,0,0,1856,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,3095,0,159,0,0,0,12,46,265,356,3061,0,0,0,0,1,0,3,0,0,0,0,0,0,2387,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,1,0,32,10,268,3,0,0,302,0,677,0,0,0,156,21,0,0,0,0,0,0,0,0,0,628,1,0,0,0,10,0,0,0,0,5,119,90,0,0,0,0,0,0,0,0,1766,1,0,1801,5,0,1,1,1,0,0,0,18,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,5,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,71,1,1,1,0,55,0,0,0,0,1,39,301,0,29,12,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,5,891,128,5 +4,0,0,22,2,117,57,2,135,59,22,1,1,15,116,5,258,0,11,10,0,0,0,9,13,15,48,0,37,0,1,0,0,2,69,0,119,3861,55,0,426,0,0,0,1,0,0,9,0,0,0,0,19,567,0,5,0,0,0,1,0,0,0,0,0,96,0,0,72017,117,706,0,36,0,0,0,0,0,49,0,0,0,0,0,13,36,1259,0,2,69,2,0,3,13,0,634,65,18,0,0,6,2,834,0,71,0,12,16235,0,0,0,0,7,3,13,0,0,0,0,1,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,2,0,0,0,1,0,0,0,0,30,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,92,10,10,10,0,0,0,962,0,260,0,0,0,36,165,425,2035,999,0,0,0,0,1,0,3,0,0,0,0,0,0,2165,0,0,0,0,0,0,0,0,0,0,0,0,64,1,4,0,0,0,0,2,0,423,124,1099,28,0,0,975,0,5096,0,2,0,571,143,0,5,0,0,0,0,21,0,0,621,1,0,0,0,32,0,0,0,0,18,302,213,0,0,112,0,2,0,4,3,3063,0,0,777,3,0,1,1,0,0,0,0,26,0,2,0,15,0,0,0,0,0,60,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,16,1,0,0,0,0,3,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,1,0,2,143,1,1,1,0,85,0,0,0,0,17,188,393,0,92,9,0,0,0,0,0,461,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,71,0,0,0,0,0,0,0,0,0,0,0,2,0,9,4754,262,5 +0,0,0,5,0,19,22,0,108,0,32,1,0,0,5,0,37,0,7,6,0,0,0,2,8,1,3,0,24,0,1,0,0,0,5,0,19,6,40,0,194,0,0,0,1,0,0,6,0,0,0,0,13,294,0,0,0,0,0,1,0,0,0,0,0,18,0,0,2736,19,257,0,24,0,0,0,0,0,19,0,0,0,0,0,2,11,151,0,0,5,0,0,2,100,0,930,80,7,0,0,2,0,521,0,2,0,0,1010,0,0,0,0,10,0,4,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,9,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,208,0,141,0,0,0,26,89,47,742,191,0,0,0,0,1,0,10,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,6,290,5,0,0,390,0,404,0,0,0,262,33,0,0,0,0,0,0,0,0,0,212,1,0,0,0,16,0,0,0,0,14,184,419,0,0,287,0,2,0,0,0,282,0,0,119,0,0,1,0,1,0,0,0,6,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,50,0,0,0,0,1,24,599,0,29,0,0,0,0,0,0,303,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,352,88,5 +0,0,0,13,0,77,92,0,222,9,64,0,0,2,19,0,682,0,7,3,0,0,0,10,3,13,15,0,12,0,17,1,0,0,37,1058,77,64,10,0,358,0,0,0,1,0,0,1,0,0,0,0,7,338,0,0,0,0,0,1,0,0,0,2,0,20,0,0,12682,77,1142,0,26,0,0,0,0,0,28,0,0,0,0,0,10,21,1929,0,0,37,0,0,3,183,0,1600,300,1,0,0,2,0,1600,0,13,0,0,3999,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,9,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,976,0,84,0,0,0,26,92,321,2416,949,0,0,0,0,1,0,4,0,1,0,0,0,0,1408,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,31,391,18,0,0,498,0,869,0,0,0,323,45,0,0,0,0,0,0,0,0,0,1088,1,0,0,0,16,0,0,0,0,432,172,392,0,0,948,0,0,0,0,1,2283,1,0,961,15,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35616,0,0,0,0,0,15,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,83,1,1,1,0,57,0,0,0,0,1,114,378,0,44,14,0,1,0,0,0,376,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,2,926,290,5 +0,0,0,5,0,17,98,0,483,12,135,0,0,0,16,0,26,0,7,1,0,0,0,1,0,0,6,0,2,0,1,2,0,0,6,0,17,6,0,0,874,0,0,0,1,0,0,3,0,0,0,0,2,177,0,0,0,0,0,1,0,0,2,0,0,95,0,0,9854,17,771,0,5,0,0,0,0,0,12,0,0,0,0,0,1,5,1024,0,0,6,0,0,3,473,0,3600,285,5,0,0,2,0,2283,0,14,0,0,741,0,0,0,0,6,0,1,0,0,0,0,1,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1000,0,106,0,0,0,4,11,75,2927,927,0,0,0,0,1,0,0,0,0,0,0,0,0,3186,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,17,250,5,0,0,245,0,478,0,0,0,179,94,0,0,0,0,0,0,0,0,0,765,1,0,0,0,2,0,0,0,0,1,101,1619,0,0,834,0,0,0,0,3,696,0,0,2998,0,0,1,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,12,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,8,0,0,0,0,1,23,153,0,11,0,0,0,0,0,0,1092,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,933,145,5 +0,0,0,11,0,42,32,0,143,63,34,0,1,3,74,0,73,0,7,6,0,0,0,2,2,4,21,0,15,0,3,0,0,0,17,0,42,181,19,0,285,0,0,0,1,0,0,7,0,0,0,0,8,384,0,0,0,0,0,1,0,0,0,0,0,53,0,0,4769,42,430,0,18,0,0,0,0,0,22,0,0,0,0,0,3,17,727,0,0,17,0,0,1,80,0,753,120,6,0,0,2,0,705,0,50,0,6,1919,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,527,0,131,0,0,0,16,86,99,804,581,0,0,0,0,1,0,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,8,70,480,13,0,0,419,0,936,0,0,0,292,106,0,1,0,0,0,0,0,0,0,367,1,0,0,0,10,0,0,0,0,9,155,350,0,0,349,0,0,0,0,0,414,0,0,118,0,0,1,11,1,0,0,0,12,0,0,0,6,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,93,0,0,0,0,1,59,575,0,43,0,0,0,0,0,0,293,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,69,12,0,0,0,0,0,0,0,0,0,0,0,0,6,547,128,5 +0,0,0,4,2,21,67,8,31,10,6,0,0,0,16,2,81,0,7,5,0,2,2,1,0,0,0,0,0,0,1,0,0,2,5,0,23,171,238,0,112,0,0,0,1,0,0,3,0,0,0,0,0,402,0,0,0,0,0,1,0,0,0,0,10,18,0,0,5308,21,512,0,1,0,0,0,0,0,80,6,0,0,0,0,1,5,359,0,8,5,2,0,0,0,0,15,0,6,0,0,2,2,58,0,13,0,0,685,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,371,0,418,0,0,0,0,3,57,65,455,0,0,2,0,1,0,0,0,0,0,0,0,0,2656,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,12,22,274,6,0,0,499,0,784,1,0,0,382,20,0,0,0,0,0,0,0,0,0,210,1,0,0,0,10,0,0,0,0,0,144,184,0,0,0,0,1,0,0,0,1038,0,0,1108,0,0,1,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,9,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,0,0,0,0,0,17,28,451,0,1,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,4,0,3,1328,94,5 +0,0,0,14,1,36,212,1,713,66,205,0,1,3,87,0,127,0,9,6,0,0,0,2,2,5,21,0,14,0,1,0,0,1,18,0,37,203,32,0,1170,0,0,0,1,0,0,7,0,0,0,0,7,755,0,0,0,0,0,1,0,0,5,0,0,91,0,0,49038,36,1373,0,15,0,0,0,0,0,29,0,0,0,0,0,2,10,442,0,1,18,1,0,7,619,0,4876,900,13,0,0,4,1,2981,0,65,0,5,2861,0,0,0,0,17,0,6,0,0,0,0,1,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,11,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,766,0,160,0,0,0,14,77,80,3573,492,0,0,0,0,1,0,1,0,0,0,0,0,0,2389,0,0,0,0,0,0,0,0,0,0,0,0,7,0,2,0,0,0,0,0,0,127,99,631,16,0,0,739,0,3377,0,1,0,450,1083,0,0,0,0,0,0,2,0,0,1357,1,0,0,0,10,0,0,0,0,6,232,1236,0,0,2709,0,0,0,0,17,692,0,0,660,0,0,1,0,0,0,0,0,13,0,1,0,12,0,0,0,0,0,68,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,1,1,1,0,72,0,0,0,0,9,55,522,0,41,0,0,0,0,0,0,1302,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,72,0,0,0,0,0,0,0,0,0,0,0,1,0,2,8000,434,5 +0,0,0,11,0,36,13,0,111,32,31,0,0,0,43,0,69,0,7,5,0,0,0,2,0,3,9,0,9,0,2,0,0,0,16,7248,36,182,21,0,239,0,0,0,1,0,0,4,0,0,0,0,5,161,0,0,0,0,0,1,0,0,0,0,0,57,0,0,3746,36,297,0,11,0,0,0,0,0,20,0,0,0,0,0,2,12,312,0,0,16,0,0,4,77,0,687,80,5,0,0,2,0,574,0,38,0,0,1701,0,0,0,0,20,0,7,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,36,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,36,0,0,0,0,0,0,196,0,99,0,0,0,10,41,65,1209,194,0,0,0,0,1,0,0,0,4,0,0,0,0,685,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,15,45,522,14,0,0,458,0,2226,0,0,0,282,638,0,0,0,0,0,0,0,0,0,274,1,0,0,0,7,0,0,0,0,4,212,234,0,0,170,0,0,0,0,1,19746,0,0,368,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,32,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,42,0,0,0,0,1,52,172,0,23,0,0,0,0,0,0,287,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,38,0,0,0,0,0,0,0,0,0,0,0,0,0,4,322,182,5 +2,0,0,12,1,52,35,1,72,3,17,0,0,17,11,0,148,0,9,2,0,0,0,8,0,10,6,0,9,0,2,2,0,1,6,8033,53,54,0,0,93,0,0,0,1,0,0,1,0,0,0,0,4,494,0,0,0,0,0,1,0,0,0,4,0,4,0,0,19006,52,261,0,10,0,0,0,0,0,19,0,0,0,0,0,9,44,3411,0,1,6,1,0,1,0,0,490,55,2,0,0,4,1,266,0,2,65,0,3034,0,0,0,0,6,2,3,0,1,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,0,0,0,1160,0,55,0,0,0,8,16,518,985,1143,0,0,0,0,1,0,6,0,0,0,0,0,0,354,2,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,1,0,383,37,473,13,0,0,512,0,636,0,1,0,218,26,0,0,0,0,0,0,0,0,0,309,1,0,0,0,10,0,0,0,0,4,181,80,0,0,74,0,0,0,0,0,19011,1,0,107,9,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,9,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,65,1,1,1,0,20,0,0,0,0,9,59,168,0,17,12,0,0,0,0,0,182,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,20,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1342,102,5 +0,0,0,4,0,11,2,0,8,0,3,0,0,0,3,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,9,0,0,0,1,0,0,1,0,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,4,0,0,244,11,32,0,1,0,0,0,0,0,8,0,0,0,0,0,2,4,39,0,0,1,0,0,0,0,0,9,0,1,0,0,2,0,8,0,1,0,0,212,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,32,0,0,0,0,3,27,5,60,0,0,0,0,1,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,96,4,0,0,95,0,147,0,0,0,36,6,0,0,0,0,0,0,0,0,0,36,1,0,0,0,3,0,0,0,0,0,93,26,0,0,0,0,0,0,0,1,28,0,0,16,0,0,1,0,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,88,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,57,67,5 +0,0,0,10,0,56,12,0,76,8,20,0,0,7,13,0,38,0,7,9,0,0,0,9,2,11,0,0,10,0,3,0,0,0,15,0,56,52,11,0,182,0,0,0,1,0,0,2,0,0,0,0,8,207,0,0,0,0,0,1,0,0,0,0,0,24,0,0,1585,56,175,0,12,0,0,0,0,0,9,0,0,0,0,0,14,21,164,0,0,15,0,0,2,51,0,659,70,2,0,0,2,0,351,0,11,0,0,1432,0,0,0,0,1,0,4,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,190,0,125,0,0,0,14,25,274,498,178,0,0,0,0,1,0,3,0,0,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,112,30,250,10,0,0,289,0,718,0,0,0,142,27,0,0,0,0,0,0,0,0,0,173,1,0,0,0,20,0,0,0,0,8,144,197,0,0,98,0,0,0,0,0,232,0,0,26,2,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,77,1,1,1,0,19,0,0,0,0,1,71,247,0,16,8,0,0,0,0,0,236,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,2,346,126,5 +4,0,0,12,0,59,62,0,1444,47,667,0,1,4,74,0,116,0,7,7,0,0,0,2,8,11,43,0,26,0,1,0,0,0,33,0,59,114,68,0,1720,0,0,0,1,0,0,8,0,0,0,0,13,386,0,0,0,0,0,1,0,0,0,3,0,53,0,0,7958,59,2475,0,27,0,0,0,0,0,30,0,0,0,0,0,3,12,2153,0,0,33,0,0,5,1375,0,11141,3285,14,0,0,2,0,5422,0,39,0,6,3195,0,0,0,0,42,0,5,0,0,0,0,1,0,0,0,34,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,55,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,1607,0,140,0,0,0,26,213,148,5479,1598,0,0,0,0,1,0,0,0,0,0,0,0,0,1303,0,0,0,0,0,0,0,0,0,20,0,0,8,0,0,0,0,0,0,0,0,13,72,477,23,0,0,677,0,1286,0,0,0,561,139,0,0,0,0,0,0,0,0,0,2375,1,0,0,0,17,0,0,0,0,12,213,2417,0,0,7853,0,1,0,0,0,764,0,0,221,0,0,1,0,0,0,0,0,13,0,0,0,1,0,0,0,0,0,42,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,74,1,1,1,0,196,0,0,0,0,1,92,703,0,81,0,0,0,0,0,0,2269,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,292,5 +0,0,0,13,1,41,33,1,88,20,18,0,1,8,41,0,263,0,9,7,0,0,0,2,133,6,20,0,152,0,4,0,0,1,21,0,42,186,168,0,221,0,0,0,1,0,0,2,0,0,0,0,141,205,0,0,0,0,0,1,0,0,0,0,0,27,0,0,3513,41,854,0,156,0,0,0,0,0,9,0,0,0,0,0,3,7,261,0,1,21,1,0,3,31,0,1772,55,2,0,0,4,1,610,0,19,0,6,3393,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,16,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,356,0,90,0,0,0,282,615,137,1327,238,0,0,0,0,1,0,0,0,0,0,0,0,0,434,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,174,45,557,22,0,0,402,0,999,0,1,0,197,100,0,0,0,0,0,0,0,0,0,461,1,0,0,0,142,0,0,0,0,136,189,96,0,0,93,0,0,0,0,0,1040,0,0,62,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,80,1,1,1,0,208,0,0,0,0,9,63,96,0,182,0,0,0,0,0,0,345,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,26,0,0,0,0,0,0,0,1,0,0,0,1,0,3,962,219,5 +0,0,0,5,0,9,7,0,19,0,8,0,0,0,3,0,20,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,39,0,0,35,0,0,0,1,0,0,2,0,0,0,0,0,117,0,0,0,0,0,1,0,0,0,0,0,3,0,0,437,9,56,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,102,0,0,1,0,0,1,10,0,99,15,2,0,0,6,0,60,0,0,0,0,351,0,0,0,0,0,0,1,0,0,0,0,1,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,94,0,74,0,0,0,0,3,23,149,131,0,0,0,0,1,0,0,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,20,27,130,6,0,0,98,0,815,0,0,0,31,14,0,0,0,0,0,0,0,0,0,63,1,0,0,0,2,0,0,0,0,0,109,28,0,0,41,0,0,0,0,0,78,0,0,32,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,15,0,1,0,0,0,0,0,0,71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,201,29,5 +3,0,0,11,1,55,44,1,109,2,22,0,0,19,9,0,1090,0,9,4,0,0,0,8,0,13,6,0,12,0,1,0,0,1,7,11088,56,54,6,0,96,0,0,0,1,0,0,3,0,0,0,0,3,548,0,0,0,0,0,1,0,0,0,5,0,4,0,0,98875,55,1285,0,9,0,0,0,0,0,42,0,0,0,0,0,9,67,16873,0,1,7,1,0,1,0,0,575,65,5,0,0,4,1,1232,0,2,103,0,4650,0,0,0,0,3,3,2,0,0,0,0,1,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,13178,0,78,0,0,0,7,42,641,1444,13139,0,0,0,0,1,0,6,0,0,0,0,0,0,490,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,1,0,408,32,465,12,0,0,511,0,820,0,1,0,204,32,0,0,0,0,0,0,0,0,0,1302,1,0,0,0,12,0,0,0,0,4,182,71,0,0,122,0,0,0,0,0,5304,1,0,166,23,0,1,1,0,0,0,0,8,0,0,0,2,0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,73,1,1,1,0,33,0,0,0,0,9,63,63,0,18,14,0,0,0,0,0,212,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,19,0,0,0,0,0,0,0,0,0,0,0,1,0,3,2155,72,5 +0,0,0,6,0,49,14,0,76,3,17,0,0,0,15,0,51,0,7,4,0,0,0,2,0,1,3,0,4,0,1,0,0,0,34,0,49,66,11,0,186,0,0,0,1,0,0,4,0,0,0,0,2,125,0,0,0,0,0,1,0,0,0,0,0,22,0,0,850,49,151,0,5,0,0,0,0,0,8,0,0,0,2,0,3,11,66,0,0,34,0,0,3,36,0,323,55,2,0,0,2,0,228,0,10,0,0,993,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,96,0,94,0,0,0,4,21,80,274,148,0,0,0,0,1,0,0,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,20,247,6,0,0,290,0,427,0,0,0,218,46,0,0,0,0,0,0,0,0,0,180,1,0,0,0,6,0,0,0,0,1,156,116,0,0,125,0,2,0,0,1,423,0,0,25,0,0,1,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,29,0,0,0,0,1,83,160,0,9,0,0,0,0,0,0,278,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,152,65,5 +4,0,0,7,1,52,36,1,64,2,10,0,0,9,8,0,132,0,9,3,0,0,0,8,0,11,3,0,10,0,3,0,0,1,11,8209,53,60,4,0,73,0,0,0,1,0,0,5,0,0,0,0,4,497,0,0,0,0,0,1,0,0,0,8,0,4,0,0,34407,52,249,0,10,0,0,0,0,0,31,0,0,0,0,0,9,38,10144,0,1,11,1,0,1,0,0,334,30,9,1,0,4,1,187,0,2,25,0,3832,0,0,0,0,13458,4,4,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,12,12,0,0,0,7976,0,96,0,0,0,8,14,473,7428,7968,0,0,0,0,1,0,9,0,0,0,0,0,0,24209,4,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,1,0,222,29,496,8,0,0,493,0,1194,0,1,0,208,43,0,0,0,0,0,0,0,0,0,268,1,0,0,0,11,0,0,0,0,2,174,67,0,0,29,0,0,0,0,2,1752,1,0,169,10,0,1,1,0,0,0,0,8,0,0,0,1,0,0,0,0,0,3,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,10,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,70,1,1,1,0,21,0,0,0,0,9,64,245,0,15,12,0,0,0,0,0,145,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1292,96,5 +0,0,0,5,0,26,4,0,36,11,10,0,0,0,16,1,30,0,6,3,0,0,0,1,0,2,6,0,4,0,0,0,0,0,6,0,26,6,4,0,64,0,0,0,1,0,0,14,0,0,0,0,2,296,0,0,0,0,0,1,0,0,0,0,0,20,0,0,3256,26,213,0,5,0,0,0,0,0,67,0,0,0,0,0,1,16,582,0,0,6,0,0,1,16,0,194,30,26,0,0,2,0,156,0,14,0,0,789,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,4,0,0,1,5,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,514,0,187,0,0,0,4,19,53,190,510,0,0,0,0,1,0,0,0,0,0,0,0,0,1230,0,0,0,0,0,0,0,0,0,0,0,0,14,0,3,0,0,0,0,0,0,8,17,252,5,0,0,342,0,690,0,0,0,232,58,0,0,0,0,0,0,0,0,0,103,1,0,0,0,4,0,0,0,0,3,150,168,0,0,67,0,3,0,0,1,258,0,0,624,0,0,1,0,1,0,0,0,41,0,1,0,2,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,12,0,0,0,0,1,32,667,0,12,0,0,0,0,0,0,146,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,14,595,169,5 +18,0,0,4,0,32,6,0,24,4,3,0,0,2,8,0,49,0,7,8,0,0,0,5,0,8,15,0,12,0,1,0,0,0,5,0,32,6,10,0,39,0,0,0,1,0,0,30,0,0,0,0,6,291,0,0,0,0,0,1,0,0,0,0,0,9,0,0,21171,32,286,0,11,0,0,0,0,0,100,0,0,0,0,0,7,50,2476,0,0,5,0,0,0,0,0,163,5,43,0,0,2,0,143,0,6,0,0,1485,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,22,0,0,0,0,0,0,0,11,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,10,10,10,0,0,0,2070,0,847,0,0,0,10,44,196,154,2135,0,0,0,0,1,0,4,0,0,0,0,0,0,6324,0,0,0,0,0,0,0,0,0,3,0,0,30,1,0,0,0,0,0,1,2,32,16,421,4,0,0,744,0,1077,0,0,0,614,32,0,0,0,0,0,0,2,0,0,99,1,0,0,0,13,0,0,0,0,6,153,526,0,0,0,0,0,0,0,0,1531,0,0,4018,3,0,1,1,0,0,0,0,56,0,0,0,7,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,10,0,0,0,0,1,37,522,0,27,9,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,16,3243,179,5 +2,0,0,17,1,80,49,1,145,40,29,0,1,5,56,0,165,0,9,6,0,0,0,6,2,12,44,0,21,0,5,6,0,1,30,0,81,181,18,0,325,0,0,0,1,0,0,3,0,0,0,0,16,314,0,0,0,0,0,1,0,0,0,3,0,43,0,0,4500,80,494,0,30,0,0,0,0,0,17,0,0,0,0,0,8,17,398,0,1,30,1,0,3,61,0,697,85,5,0,0,4,1,767,0,35,0,4,2776,0,0,0,0,3,2,5,0,0,0,0,1,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,2,0,0,4,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,98,10,10,10,0,0,0,383,0,147,0,0,0,30,102,340,5067,409,0,0,0,0,1,0,3,0,0,0,0,0,0,1293,2,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,2,0,142,71,529,23,0,0,567,0,1957,0,1,0,277,73,0,0,0,0,0,0,0,0,0,459,1,0,0,0,14,0,0,0,0,12,188,276,0,0,482,0,0,0,0,0,1208,0,0,760,3,0,1,1,0,0,0,0,7,0,0,0,2,0,0,0,0,0,39,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,137,1,1,1,0,65,0,0,0,0,9,111,301,0,79,9,0,1,0,0,0,254,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,48,0,0,0,0,0,0,0,0,0,0,0,1,0,2,702,191,5 +0,0,0,14,1,51,217,1,248,51,54,1,1,4,79,0,238,0,146,8,0,0,0,5,17,16,73,0,43,0,1,1,0,1,21,0,52,232,78,0,459,0,0,0,1,0,0,2,0,0,0,0,23,1322,3,0,0,0,0,1,0,0,0,0,0,64,0,0,24458,51,1100,0,45,0,0,0,0,0,7,0,0,0,0,0,7,10,184,0,1,21,1,0,5,141,0,1393,185,1,0,0,4,1,1366,0,47,0,5,3681,0,0,0,0,10,0,6,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,9,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0,0,0,243,0,172,0,0,0,46,905,181,47293,259,0,0,0,0,1,0,0,0,0,0,0,0,0,1663,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,131,83,1165,17,0,0,790,0,2114,0,1,0,554,177,0,0,0,0,0,0,0,0,0,988,1,0,0,0,30,0,0,0,0,22,316,358,0,0,759,0,0,0,0,1,1704,0,0,86,0,0,1,0,0,0,0,0,3,0,8,0,8,0,0,0,0,0,52,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,135,1,1,1,0,228,0,0,0,0,9,73,241,0,134,0,0,0,0,0,0,508,9,0,0,0,0,0,0,0,0,0,0,0,1,0,2,57,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1015,289,5 +1,0,0,0,2,72,8,2,48,15,6,1,2,0,18,1,217,0,7,16,0,4,0,5,0,8,0,0,5,0,5,0,0,2,32,0,74,85,0,0,217,0,0,0,1,0,0,0,0,0,0,0,5,129,0,0,0,0,0,1,0,0,0,1,0,17,0,0,3408,72,550,0,8,0,0,0,0,0,6,6,0,0,0,0,16,21,140,0,2,32,2,0,1,10,0,201,5,0,0,0,4,2,209,0,15,0,0,1575,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,10,10,10,0,0,0,138,0,147,0,0,0,8,11,662,112,192,0,0,0,0,1,0,3,0,0,0,0,0,0,553,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,17,78,370,2,0,0,377,0,625,0,0,0,203,126,0,0,0,0,0,0,0,0,0,308,0,0,0,0,25,0,0,0,0,5,171,72,0,0,11,0,47,0,0,3,555,0,0,4,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,5,0,0,0,0,0,3,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,442,1,1,1,0,11,0,0,0,0,59,106,128,0,9,9,0,0,0,0,0,226,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,15,0,0,0,0,0,0,0,0,0,0,0,4,0,0,531,190,5 +0,0,0,14,0,69,91,0,225,54,67,0,1,5,86,0,91,0,7,8,0,0,0,8,6,12,27,0,24,0,4,0,0,0,25,0,69,146,31,0,433,0,0,0,1,0,0,6,0,0,0,0,15,341,0,0,0,0,0,1,0,0,2,0,0,81,0,0,6179,69,634,0,26,0,0,0,0,0,23,0,0,0,0,0,10,21,532,0,0,25,0,0,4,167,0,1556,285,8,0,0,2,0,1124,0,52,0,5,2709,0,0,0,0,18,0,7,0,0,0,0,1,0,0,0,34,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,10,10,10,0,0,0,781,0,164,0,0,0,28,95,262,1436,551,0,0,0,0,1,0,3,0,0,0,0,0,0,1956,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,37,76,400,15,0,0,485,0,1525,0,0,0,328,217,0,0,0,0,0,0,0,0,0,573,1,0,0,0,22,0,0,0,0,14,176,416,0,0,651,0,0,0,0,3,753,0,0,1125,3,0,1,1,0,0,0,0,9,0,0,0,5,0,0,0,0,0,55,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,3,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,66,0,0,0,0,1,94,378,0,58,9,0,0,0,0,0,468,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,64,0,0,0,0,0,0,0,0,0,0,0,0,0,3,883,182,5 +1,0,0,10,0,65,8,0,42,29,13,0,0,2,44,0,80,0,23,6,0,0,0,7,3,12,30,0,18,0,5,2,0,0,29,0,65,6,28,0,186,0,0,0,1,0,0,1,1,0,0,0,12,141,0,0,0,0,0,1,0,0,0,0,0,43,0,0,5135,65,257,0,23,0,0,0,0,0,9,0,0,0,0,0,10,18,961,0,0,29,0,0,1,17,0,303,40,4,1,0,2,0,384,0,37,0,0,2148,0,0,0,0,25,0,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,10,10,10,0,0,0,825,0,91,0,0,0,22,95,233,473,814,0,0,0,0,1,0,2,0,0,0,0,0,0,757,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,49,324,11,0,0,271,0,662,0,0,0,142,40,0,0,0,0,0,0,0,0,0,212,1,0,4,0,16,0,0,0,0,11,154,63,0,0,87,0,1,0,0,2,554,0,0,671,3,0,1,1,0,0,0,0,7,0,0,0,2,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,3,7,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,109,0,0,0,0,1,94,162,0,58,9,0,0,0,0,0,145,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,33,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1137,134,5 +5,0,0,13,0,95,21,0,80,38,21,0,1,9,55,0,159,0,7,7,0,0,0,9,1,16,36,0,29,0,1,6,0,0,55,1258,95,104,26,0,267,0,0,0,1,0,0,3,0,0,0,0,13,347,0,0,0,0,0,1,0,0,0,2,0,28,0,0,76484,95,443,0,32,0,0,0,0,0,41,0,0,0,0,0,10,85,12157,0,0,55,0,0,0,0,0,351,20,4,0,0,2,0,555,0,24,49,4,9213,0,0,0,0,18,5,2,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,19,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,92,12,12,12,0,0,0,9491,0,154,0,0,0,31,114,729,2088,9477,0,0,0,0,1,0,7,0,0,0,0,0,0,1176,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,2,0,89,65,761,23,0,0,691,0,1119,1,0,0,513,77,0,0,0,0,0,0,0,0,0,353,1,0,0,0,17,0,0,0,0,10,400,59,0,0,75,0,1,0,0,0,5798,1,0,649,18,0,1,1,0,0,0,0,6,0,0,0,1,0,0,0,0,0,34,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,18,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,136,1,1,1,0,111,0,0,0,0,1,150,288,0,74,14,0,0,0,0,0,181,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,42,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3044,142,5 +2,0,0,23,0,69,93,0,253,31,66,1,1,11,48,0,1329,0,18,8,0,0,0,8,1,15,18,0,19,0,1,0,0,0,19,247,69,189,27,0,374,0,0,0,1,0,0,10,1,0,0,0,7,480,0,0,0,0,0,1,0,0,0,0,0,35,0,0,246426,69,2091,0,17,0,0,0,1,0,188,0,0,0,0,2,10,60,56178,0,0,19,0,0,3,159,0,1567,285,21,0,0,2,0,2255,0,25,26,6,3946,0,2,0,0,6,0,9,0,0,0,0,1,0,0,0,2995,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,11,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,12,12,12,0,0,0,28386,0,265,0,0,0,14,86,530,1662,28332,0,0,0,0,1,0,3,0,0,0,0,0,0,33928,0,0,0,0,2,0,0,0,0,0,0,0,10,1,0,0,0,0,0,1,0,128,64,633,30,0,0,791,0,1066,0,0,0,597,76,0,0,0,0,0,0,0,0,0,1820,1,0,3,0,17,0,0,0,0,7,257,505,0,0,789,0,1,0,0,0,31062,1,0,86485,12,0,1,1,0,0,0,0,27,0,2,0,3,0,0,0,0,0,32,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,89,1,1,1,0,80,0,0,0,0,1,88,1002,0,41,12,0,0,0,0,0,473,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,39,0,0,0,0,0,0,0,0,0,0,0,0,0,4,33258,323,5 +0,0,0,5,0,13,60,0,57,0,13,0,0,0,3,0,21,0,7,1,0,0,0,3,0,0,3,0,1,0,2,0,0,0,2,0,13,6,0,0,96,0,0,0,1,0,0,2,0,0,0,0,1,93,0,0,0,0,0,1,0,0,0,1,0,6,0,0,566,13,163,0,3,0,0,0,0,0,9,0,0,0,0,0,3,6,72,0,0,2,0,0,1,48,0,388,45,3,0,0,2,0,248,0,1,0,0,239,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,88,0,64,0,0,0,2,8,37,433,95,0,0,0,0,1,0,3,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,5,94,5,0,0,180,0,187,0,0,0,118,7,0,0,0,0,0,0,0,0,0,161,1,0,0,0,4,0,0,0,0,1,100,130,0,0,190,0,0,0,0,0,98,0,0,69,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,6,0,0,0,0,1,15,164,0,6,0,0,0,0,0,0,114,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,146,17,5 +0,0,0,11,0,29,6,0,54,18,10,0,1,3,30,0,54,0,7,5,0,0,0,2,1,2,12,0,8,0,1,0,0,0,8,0,29,85,14,0,153,0,0,0,1,0,0,2,0,0,0,0,4,178,0,0,0,0,0,1,0,0,0,0,0,15,0,0,2184,29,191,0,9,0,0,0,0,0,13,0,0,0,0,0,3,6,228,0,0,8,0,0,1,9,0,129,15,3,0,0,2,0,238,0,10,0,4,1193,0,0,0,0,1,0,3,0,0,0,0,1,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,193,0,89,0,0,0,8,38,78,166,230,0,0,0,0,1,0,0,0,0,0,0,0,0,446,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,28,194,12,0,0,269,0,924,0,0,0,178,69,0,0,0,0,0,0,0,0,0,165,1,0,0,0,8,0,0,0,0,5,125,139,0,0,30,0,0,0,0,0,352,0,0,267,0,0,1,2,0,1,1,0,3,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,22,0,0,0,0,1,37,174,0,23,0,0,0,0,0,0,88,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,382,175,5 +1,0,0,17,0,78,85,0,188,44,47,0,1,9,68,0,1008,0,7,7,0,0,0,8,2,16,21,0,19,0,1,0,0,0,32,898,78,224,27,0,401,0,0,0,1,0,0,6,0,0,0,0,8,481,0,0,0,0,0,1,0,0,2,3,0,60,0,0,31566,78,1472,0,17,0,0,0,0,0,35,0,0,0,0,0,9,33,7652,0,0,32,0,0,4,113,0,1149,205,10,0,0,2,0,1796,0,46,3,5,2931,0,0,0,0,15,0,6,0,0,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,0,0,8,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,12,12,12,0,0,0,5859,0,150,0,0,0,15,70,430,2787,5505,0,0,0,0,1,0,3,0,0,0,0,0,0,2452,0,0,0,0,0,0,0,0,0,0,0,0,6,1,3,0,0,0,0,1,0,93,70,528,25,0,0,632,0,1215,0,0,0,437,47,0,0,0,0,0,0,4,0,0,1413,1,0,0,0,17,0,0,0,0,7,210,358,0,0,424,0,0,0,0,3,3188,1,0,1220,7,0,1,1,0,0,0,0,14,0,1,0,7,0,0,0,0,0,44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,7,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,90,1,1,1,0,57,0,0,0,0,1,110,559,0,45,12,0,0,0,0,0,418,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,52,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1621,201,5 +11,0,0,8,0,151,74,0,134,22,51,0,0,6,33,0,1718,0,7,7,0,0,0,9,0,17,28,1,35,0,2,5,0,0,100,1669,151,6,31,0,214,0,0,0,1,0,0,4,0,0,0,0,12,738,0,0,0,0,0,1,0,0,0,0,0,35,0,0,118819,151,2180,0,38,0,0,0,0,0,92,0,0,0,0,0,10,163,21637,0,0,100,0,0,2,54,0,893,105,8,0,0,2,0,2265,0,24,124,0,8428,0,0,0,0,21,11,7,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,18,0,9,10,0,0,0,0,0,0,0,1,1,0,0,0,1,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,88,12,12,12,0,0,0,16436,0,209,0,0,0,35,144,1138,2695,16401,0,0,0,0,1,0,13,0,0,0,0,0,0,1981,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,2,0,84,37,805,8,0,0,848,0,753,1,0,0,627,69,0,0,0,0,0,0,0,0,0,2023,1,0,0,0,16,0,0,0,0,8,278,234,0,0,417,0,1,0,0,0,6948,1,0,1339,43,0,1,1,1,0,0,0,11,0,0,0,0,0,0,0,0,0,26,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,43,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,205,1,1,1,0,153,0,0,0,0,1,251,807,0,74,14,0,0,0,0,0,260,10,0,0,0,0,0,0,0,0,0,0,0,3,0,1,28,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3640,123,5 +4,0,0,13,0,84,33,0,194,78,64,0,0,0,156,16,142,0,7,10,0,0,0,9,11,9,57,0,34,0,3,1,0,0,47,0,84,74,78,0,803,0,0,0,1,0,0,13,0,0,0,1,23,457,1,1,0,0,0,1,0,0,0,0,0,151,0,0,9756,84,823,0,38,0,0,0,0,0,62,0,1,0,0,0,9,25,971,0,0,47,0,0,2,147,0,1453,270,25,0,0,2,0,1353,0,91,0,0,3757,0,0,0,0,58,3,13,0,0,0,0,1,0,0,0,27,16,0,0,0,0,0,0,0,0,0,0,0,0,0,2,9,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,13,0,0,52,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,965,0,295,0,0,0,46,223,212,1705,984,0,0,0,0,1,0,0,0,0,0,0,0,0,3745,0,0,0,0,0,0,0,0,0,0,0,0,13,0,5,0,0,0,0,0,0,8,563,1062,14,0,0,1053,0,1281,0,0,0,900,114,0,0,0,0,0,0,0,0,0,612,1,0,0,0,30,0,0,0,0,23,255,850,0,0,621,0,0,0,0,0,1136,0,0,1528,0,0,1,6,0,0,0,0,34,0,0,0,6,0,0,0,0,0,83,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,4,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,142,1,1,1,0,162,0,0,0,0,1,131,1700,0,104,0,0,0,0,0,0,559,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,82,4,0,0,0,0,0,0,0,0,0,0,0,0,13,1248,361,5 +4,0,0,15,0,148,270,0,460,45,114,0,1,4,75,1,132,0,57,8,0,0,0,18,8,9,54,0,30,0,8,1,0,0,42,0,148,234,45,0,922,0,0,0,1,0,0,5,0,0,0,0,20,395,0,0,0,1,0,1,0,0,0,11,0,97,0,0,9205,148,1254,0,38,0,0,0,0,0,20,0,0,0,0,0,21,31,1825,0,0,42,0,0,11,388,0,3621,410,5,0,0,2,0,2317,0,55,0,7,18963,0,0,4,0,16,0,7,0,0,0,0,1,0,0,0,26,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,8,0,0,0,0,0,0,0,0,0,15,0,0,0,0,84,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,1057,0,302,0,0,0,39,442,353,3423,1125,0,0,0,0,1,0,6,0,0,0,0,0,0,3652,0,0,0,0,0,0,0,0,0,8,0,0,5,0,0,0,0,0,0,0,0,18,69,795,17,0,0,908,0,1193,0,0,0,549,226,0,0,0,0,0,0,2,0,0,1114,1,0,0,0,34,0,0,0,0,12,286,865,0,0,1008,0,0,0,1,0,1238,0,0,1232,0,0,1,0,0,0,0,0,10,0,2,0,6,0,0,0,0,0,50,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,22,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,272,1,1,1,0,146,0,0,0,0,1,190,275,0,102,0,0,0,0,0,0,1002,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,61,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1486,371,5 +1,0,0,18,0,65,83,0,205,44,48,1,1,5,103,0,80,0,7,11,0,0,0,7,1,12,18,0,19,0,4,0,0,0,27,0,65,116,27,0,561,0,0,0,1,0,0,7,0,0,0,0,12,273,0,0,0,0,0,1,0,0,2,1,0,56,0,0,5854,65,598,0,22,0,0,0,0,0,30,0,0,0,0,0,10,25,512,0,0,27,0,0,4,114,0,1044,190,14,0,0,2,0,900,0,42,0,5,2239,0,0,0,0,11,0,5,0,0,0,0,1,0,0,0,48,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,10,10,10,0,0,0,619,0,158,0,0,0,22,73,253,997,555,0,0,0,0,1,0,3,0,0,0,0,0,0,2039,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,37,69,376,22,0,0,464,0,993,0,0,0,331,136,0,0,0,0,0,0,0,0,0,533,1,0,0,0,19,0,0,0,0,6,170,320,0,0,417,0,0,0,0,3,820,0,0,1049,2,0,1,1,0,0,0,0,11,0,1,0,10,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,2,10,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,77,1,1,1,0,72,0,0,0,0,1,92,281,0,45,8,0,0,0,0,0,364,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,50,0,0,0,0,0,0,0,0,0,0,0,0,0,2,995,168,5 +7,0,0,21,1,72,37,1,122,37,25,1,1,3,66,0,133,0,9,5,0,0,0,7,15,4,21,0,32,0,3,0,0,1,46,0,73,227,35,0,308,0,0,0,1,0,0,1,0,0,0,0,21,285,0,0,0,0,0,1,0,0,0,0,0,54,0,0,2104,72,433,0,35,0,0,0,0,0,6,0,0,0,0,0,7,9,115,0,1,46,1,0,2,40,0,592,75,1,0,0,4,1,541,0,49,0,4,2782,0,0,0,0,2,7,2,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,162,0,118,0,0,0,42,128,145,671,174,0,0,0,0,1,0,0,0,0,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,123,83,537,27,0,0,486,0,1163,0,1,0,254,59,0,0,0,0,0,0,0,0,0,397,1,0,0,0,27,0,0,0,0,19,189,111,0,0,181,0,0,0,0,2,690,0,0,33,0,0,1,0,1,0,0,0,2,0,0,0,4,0,0,0,0,0,40,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,95,1,1,1,0,97,0,0,0,0,9,119,204,0,60,0,0,0,0,0,0,256,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,43,0,0,0,0,0,0,0,0,0,0,0,1,0,2,444,248,5 +4,0,0,8,1,61,56,1,112,3,24,0,0,9,10,0,1831,0,9,5,0,0,0,8,0,14,9,0,22,0,1,0,0,1,9,31977,62,122,11,0,85,0,0,0,1,0,0,5,0,0,0,0,4,928,0,0,0,0,0,1,0,0,0,7,0,5,0,0,174329,61,2104,0,19,0,0,0,0,0,76,0,0,0,0,0,9,119,34298,0,1,9,1,0,1,0,0,474,30,6,0,0,4,1,1978,0,2,101,0,7667,0,0,0,0,5,4,4,0,0,0,0,1,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,12,12,12,0,0,0,27972,0,106,0,0,0,14,77,874,2676,27917,0,0,0,0,1,0,9,0,0,0,0,0,0,878,4,0,0,0,0,0,0,0,0,0,0,0,21,5,0,0,0,0,0,1,0,228,32,660,9,0,0,670,0,1045,0,1,0,339,44,0,0,0,0,0,0,0,0,0,2051,1,0,0,0,13,0,0,0,0,5,237,93,0,0,136,0,0,0,0,0,8214,1,0,385,38,0,1,1,1,0,0,0,11,0,0,0,3,0,0,0,0,0,3,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,88,1,1,1,0,70,0,0,0,0,9,71,182,0,32,14,0,2,0,0,0,167,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,5,3248,96,5 +0,0,0,14,1,45,40,1,100,22,17,0,1,3,42,0,129,0,24,6,0,0,0,2,9,4,18,0,21,0,1,0,0,1,18,0,46,195,29,0,147,0,0,0,1,0,0,4,0,0,0,0,14,202,0,0,0,0,0,1,0,0,0,0,0,27,0,0,1292,45,373,0,22,0,0,0,0,0,9,0,0,0,0,0,2,8,82,0,1,18,1,0,3,28,0,408,40,5,0,0,4,1,416,0,18,0,4,2200,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,21,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,131,0,96,0,0,0,28,85,100,361,131,0,0,0,0,1,0,0,0,0,0,0,0,0,477,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,135,50,413,16,0,0,403,0,1667,0,1,0,177,1520,0,0,0,0,0,0,0,0,0,356,1,0,0,0,17,0,0,0,0,14,175,80,0,0,91,0,0,0,0,1,684,0,0,59,0,0,1,0,0,0,0,0,5,0,1,0,3,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,64,1,1,1,0,43,0,0,0,0,9,64,145,0,44,0,0,0,0,0,0,191,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,24,0,0,0,0,0,0,0,0,0,0,0,1,0,0,622,94,5 +0,0,0,3,0,25,4,0,7,0,2,0,0,2,2,0,11,0,6,4,0,0,0,4,0,8,0,0,1,0,1,0,0,0,1,0,25,6,0,0,18,0,0,0,1,0,0,0,0,0,0,0,1,74,0,0,0,0,0,1,0,0,0,0,0,2,0,0,421,25,24,0,1,0,0,0,0,0,2,0,0,0,0,0,7,11,56,0,0,1,0,0,0,0,0,69,5,0,0,0,2,0,19,0,0,0,0,347,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,36,0,24,0,0,0,0,3,177,8,42,0,0,0,0,1,0,3,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,32,10,81,3,0,0,89,0,131,0,0,0,19,4,0,0,0,0,0,0,0,0,0,34,0,0,0,0,8,0,0,0,0,0,105,17,0,0,0,0,0,0,0,1,50,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,26,33,0,2,8,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,28,5 +0,0,0,2,0,10,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,9,0,0,0,1,0,0,1,0,0,0,0,0,61,0,0,0,0,0,1,0,0,0,0,0,1,0,0,450,10,39,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,55,0,0,2,0,0,0,0,0,7,0,2,0,0,2,0,15,0,0,0,0,173,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,53,0,29,0,0,0,0,3,24,5,68,0,0,0,0,1,0,0,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,88,2,0,0,122,0,276,0,0,0,61,3,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,48,0,0,0,0,0,0,0,0,40,0,0,68,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,160,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,71,43,5 +0,0,0,12,0,42,56,0,182,35,46,0,3,3,58,0,95,0,26,5,0,0,0,1,6,8,21,0,17,0,1,0,0,0,15,0,42,92,29,0,362,0,0,0,1,0,0,3,0,0,0,0,13,193,0,1,0,0,0,1,0,0,2,0,0,52,0,0,46812,42,506,0,18,0,0,0,0,0,13,0,0,0,0,1,1,6,2400,0,0,15,0,0,4,114,0,1007,190,5,0,0,2,0,802,0,30,0,4,10133,0,0,0,0,12,0,4,0,0,0,0,1,0,0,0,11,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,0,0,0,0,0,0,2451,0,117,0,0,0,21,92,89,26351,2456,0,0,0,0,1,0,0,0,0,0,0,0,0,5162,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,200,66,325,13,0,0,326,0,954,0,0,0,186,87,0,0,0,0,0,0,0,0,0,469,1,0,0,0,12,0,0,0,0,1001,146,239,0,0,436,0,0,0,0,2,1337,0,0,5185,0,0,1,0,0,0,0,0,4,0,0,0,6,0,0,0,0,0,36,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,67,0,0,0,0,4,57,100,0,47,0,0,0,0,0,0,355,6,0,0,0,0,0,0,0,0,0,0,0,0,1,1,39,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1373,128,5 +0,0,0,22,6,53,308,24,2063,25,286,0,0,0,60,0,3511,0,7,14,0,6,6,3,3,1,6,0,10,0,2,1,0,4,25,0,59,116,27,0,1796,0,0,0,1,0,0,2,0,0,0,0,6,347,0,0,0,0,0,1,0,0,0,0,0,48,0,0,5911,53,6689,0,13,0,0,0,0,0,11,18,0,0,0,0,3,7,913,0,24,25,4,0,4,1098,0,9574,1355,3,0,0,2,6,8360,0,36,0,0,2493,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1764,0,0,0,0,0,0,741,0,412,0,0,0,12,23,158,3615,1001,0,0,0,0,1,0,0,0,0,0,0,0,0,3297,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,16,44,517,56,0,0,849,0,1503,0,0,0,577,88,0,267,0,0,0,0,0,0,0,6235,1,0,0,0,32,0,0,0,0,4,139,2067,0,0,4176,0,0,0,0,1,6019,0,0,140,0,0,1,285,1,0,0,0,4,0,0,0,3,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,101,1,1,1,0,24,0,0,0,0,49,84,410,0,20,0,0,1,0,0,0,2037,19,0,0,0,0,0,0,0,0,0,0,0,6,0,1,31,288,0,0,0,0,0,0,0,0,0,0,12,0,2,2115,87,5 +6,0,0,10,1,69,63,1,136,6,33,0,0,9,18,0,163,0,9,7,0,0,0,9,0,14,15,0,18,0,1,0,0,1,17,5370,70,54,17,0,189,0,0,0,1,0,0,4,0,0,0,0,6,834,0,0,0,0,0,1,0,0,1,3,0,22,0,0,58190,69,427,0,15,0,0,0,0,0,43,0,0,0,0,0,10,60,9557,0,1,17,1,0,3,51,0,774,110,6,0,0,4,1,513,0,12,54,0,3642,0,2,2,0,6,2,2,0,1,0,0,1,0,0,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,12,12,12,0,0,0,7530,0,150,0,0,0,13,58,592,1295,7275,0,0,0,0,1,0,6,0,0,0,0,0,0,783,2,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,1,0,216,40,550,11,0,0,621,0,819,0,1,0,296,51,0,0,0,0,0,0,0,0,0,431,1,0,0,0,16,0,0,0,0,5,220,170,0,0,244,0,0,0,0,2,2434,1,0,160,19,0,1,1,0,0,0,0,6,0,1,0,6,0,0,0,0,0,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,19,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,87,1,1,1,0,49,0,0,0,0,9,87,361,0,34,14,0,0,0,0,0,262,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,14,0,0,0,0,0,0,0,0,0,0,0,1,0,4,1486,90,5 +0,0,0,4,0,15,2,0,10,1,3,0,0,0,4,0,17,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,15,6,0,0,15,0,0,0,1,0,0,3,0,0,0,0,0,79,0,0,0,0,0,1,0,0,4,0,0,5,0,0,472,15,40,0,1,0,0,0,0,0,8,0,0,0,0,0,1,5,57,0,0,3,0,0,0,0,0,13,0,1,0,0,2,0,16,0,2,0,0,214,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,60,0,40,0,0,0,0,3,34,46,82,0,0,0,0,1,0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,5,119,4,0,0,216,0,543,0,0,0,143,9,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,110,114,0,0,0,0,0,0,0,3,203,0,0,28,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,0,0,0,0,0,1,18,281,0,1,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,73,52,5 +0,0,0,20,0,43,9,0,108,27,11,1,1,3,69,0,89,0,7,7,0,0,0,6,4,6,27,0,17,0,1,0,0,0,17,0,43,259,35,0,295,0,0,0,1,0,0,13,0,0,0,0,9,292,0,0,0,0,0,1,0,0,0,2,0,38,0,0,5309,43,384,0,18,0,0,0,0,0,43,0,0,0,0,1,7,26,654,0,0,17,0,0,1,11,0,208,15,22,1,0,2,0,445,0,19,0,6,1973,0,0,0,0,14,0,1,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,15,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,627,0,168,0,0,0,18,91,99,334,638,0,0,0,0,1,0,0,0,0,0,0,0,0,1056,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,13,55,380,40,0,0,574,0,920,0,0,0,452,65,0,0,0,0,0,0,0,0,0,298,1,0,0,0,17,0,0,0,0,8,213,315,0,0,33,0,0,0,0,0,740,0,0,310,0,0,1,0,1,0,0,0,25,0,0,0,5,0,0,0,0,0,22,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,69,0,0,0,0,1,60,938,0,51,0,0,0,0,0,0,203,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,29,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1048,150,5 +1,0,0,14,1,40,43,1,125,18,22,0,1,3,36,0,127,0,9,7,0,0,0,1,3,5,21,0,14,0,1,0,0,1,15,0,41,175,26,0,227,0,0,0,1,0,0,2,0,0,0,0,7,226,0,0,0,0,0,1,0,0,0,0,0,28,0,0,1454,40,354,0,15,0,0,0,0,0,7,0,0,0,0,0,3,6,45,0,1,15,1,0,5,41,0,454,60,4,0,0,4,1,484,0,13,0,4,4783,0,0,0,0,6,0,3,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,92,0,66,0,0,0,14,68,88,381,117,0,0,0,0,1,0,0,0,0,0,0,0,0,415,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,125,46,450,16,0,0,460,0,1400,0,1,0,230,95,0,0,0,0,0,0,0,0,0,366,1,0,0,0,11,0,0,0,0,7,171,164,0,0,128,0,0,0,0,0,626,0,0,19,0,0,1,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,20,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,51,1,1,1,0,52,0,0,0,0,9,56,334,0,41,0,0,0,0,0,0,200,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,22,0,0,0,0,0,0,0,0,0,0,0,1,0,0,361,125,5 +0,0,0,2,0,10,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,0,0,1,0,0,4,0,0,0,0,0,126,0,0,0,0,0,1,0,0,0,0,0,1,0,0,644,10,48,0,1,0,0,0,0,0,15,0,0,0,0,0,1,7,86,0,0,1,0,0,0,0,0,13,0,4,0,0,2,0,6,0,0,0,0,325,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,83,0,76,0,0,0,0,3,27,13,98,0,0,0,0,1,0,0,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,3,151,2,0,0,159,0,1585,0,0,0,87,19,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,126,57,0,0,0,0,0,0,0,0,44,0,0,57,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,255,0,1,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,168,38,5 +1,0,0,0,0,31,17,0,34,20,8,0,1,0,23,0,42,0,7,5,0,0,0,2,0,2,6,0,5,0,1,1,0,0,14,0,31,25,9,0,166,0,0,0,1,0,0,1,0,0,0,0,3,84,0,0,0,0,0,1,0,0,0,2,0,15,0,0,1124,31,134,0,7,0,0,0,0,0,2,0,0,0,0,0,4,6,101,0,0,14,0,0,2,26,0,233,30,0,0,0,4,0,248,0,14,0,0,1014,0,0,0,0,4,0,1,0,0,0,0,1,20,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,122,0,74,0,0,0,6,31,71,292,160,0,0,0,0,1,0,0,0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,14,38,212,7,0,0,219,0,1279,0,0,0,156,55,0,0,0,0,0,0,0,0,0,132,1,0,0,0,7,0,0,0,0,4,145,123,0,0,90,0,0,0,0,0,159,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,35,0,0,0,0,1,45,89,0,15,0,0,0,0,0,0,125,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,104,5 +12,0,0,5,0,34,13,0,88,0,7,0,0,2,4,0,25,0,6,3,0,0,0,5,1,10,0,0,6,0,3,0,0,0,6,0,34,166,1,0,147,0,0,0,1,0,0,7,0,0,0,0,6,124,0,0,0,0,0,1,0,0,0,0,0,3,0,0,3303,34,195,0,9,0,0,0,0,0,37,0,0,0,0,1,7,24,406,0,0,6,0,0,0,54,0,524,30,11,3,0,2,0,320,0,0,0,0,837,0,0,0,0,14,0,1,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,10,10,10,0,0,0,323,0,107,0,0,0,10,13,190,420,310,0,0,0,0,1,0,3,0,0,0,0,0,0,856,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,50,13,230,7,0,0,317,0,1513,0,0,0,188,28,0,0,0,0,0,0,0,0,0,145,1,0,0,0,9,0,0,0,0,4,126,275,0,0,48,0,0,0,0,0,422,0,0,561,3,0,1,1,1,0,0,0,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,9,0,0,0,0,1,40,500,0,10,9,0,0,0,0,0,158,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,7,583,118,5 +4,0,0,6,0,140,20,0,298,46,25,0,0,0,70,0,328,0,7,3,0,0,0,3,2,14,110,0,12,0,49,4,0,0,119,0,140,6,17,0,516,0,0,0,1,0,0,6,0,0,0,0,65,155,0,0,0,0,0,1,0,0,0,2,0,56,0,0,3735,140,966,0,18,0,0,0,0,0,36,0,0,0,0,0,3,15,549,0,0,119,0,0,1,75,0,738,100,13,2,0,2,0,1542,0,41,0,0,2578,0,0,0,0,15,1,1,0,0,0,0,1,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,394,0,0,0,0,0,0,547,0,275,0,0,0,58,218,199,627,544,0,0,0,0,1,0,0,0,0,0,0,0,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,62,794,22,0,0,679,0,825,0,0,0,587,118,0,0,0,0,0,0,0,0,0,748,1,0,0,0,8,0,0,0,0,8,290,250,0,0,285,0,0,0,0,0,3439,0,0,320,0,0,1,0,0,0,0,0,23,0,0,20,3,0,0,0,0,0,37,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,341,1,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,139,1,1,1,0,515,0,0,0,0,1,259,489,0,189,0,0,0,0,0,0,277,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,48,0,0,0,0,0,0,0,0,0,0,0,0,0,7,906,112,5 +1,0,0,14,1,31,27,1,50,4,6,1,0,0,18,0,96,0,9,7,0,0,0,2,0,4,12,0,8,0,1,0,0,1,14,0,32,172,14,0,88,0,0,0,1,0,0,2,0,0,0,0,4,160,0,0,0,0,0,1,0,0,0,2,0,10,0,0,8226,31,177,0,9,0,0,0,0,0,5,0,0,0,0,0,4,7,4244,0,1,14,1,0,1,0,0,79,0,1,0,0,4,1,167,0,8,0,0,1410,0,0,0,0,7,0,5,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,2653,0,66,0,0,0,8,37,78,1096,2657,0,0,0,0,1,0,0,0,0,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,126,33,385,25,0,0,365,0,1715,0,1,0,153,70,0,0,0,0,0,0,1,0,0,207,1,0,0,0,9,0,0,0,0,3,163,41,0,0,0,0,0,0,0,0,444,0,0,21,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,41,1,1,1,0,28,0,0,0,0,9,46,145,0,25,0,0,0,0,0,0,101,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,1,0,2,342,69,5 +2,0,0,14,0,41,12,0,106,29,23,0,1,2,45,0,74,0,7,7,0,0,0,2,3,6,24,0,16,0,1,0,0,0,21,0,41,91,27,0,225,0,0,0,0,0,0,0,0,0,0,0,8,131,0,0,0,0,0,1,0,0,0,1,0,43,0,0,1058,41,287,0,17,0,0,0,0,0,0,0,0,0,0,0,3,3,16,0,0,21,0,0,3,53,0,514,50,0,0,0,2,0,553,0,26,0,3,1331,0,0,1,0,4,0,1,0,0,0,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,81,0,52,0,0,0,16,74,80,485,77,0,0,0,0,0,0,2,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,42,202,15,0,0,152,0,520,0,0,0,86,64,0,0,0,0,0,0,0,0,0,270,0,0,0,0,12,0,0,0,0,8,132,119,0,0,108,0,0,0,0,0,447,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,31,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,54,0,0,0,0,1,62,21,0,47,0,0,0,0,0,0,228,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,67,5 +5,0,0,8,1,54,59,1,143,3,33,0,0,9,7,0,1153,0,9,3,0,0,0,7,0,11,0,0,10,0,1,0,0,1,10,16509,55,54,13,0,161,0,0,0,1,0,0,2,0,0,0,0,2,998,0,0,0,0,0,1,0,0,0,10,0,12,0,0,29747,54,1376,0,8,0,0,0,0,0,30,0,0,0,0,0,8,48,4541,0,1,10,1,0,5,59,0,831,120,2,0,0,4,1,1450,0,1,52,0,4049,0,0,0,0,7,5,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,1409,0,63,0,0,0,6,25,533,1345,1407,0,0,0,0,1,0,10,0,0,0,0,0,0,514,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,1,0,220,31,534,9,0,0,622,0,686,0,1,0,331,19,0,0,0,0,0,0,0,0,0,1413,1,0,0,0,10,0,0,0,0,2,212,212,0,0,272,0,1,0,0,0,4328,1,0,123,14,0,1,2,1,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,68,1,1,1,0,50,0,0,0,0,9,65,248,0,10,12,0,0,0,0,0,232,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,15,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1679,65,5 +1,0,0,10,1,51,93,4,256,69,70,16,0,0,105,2,100,0,7,4,0,1,1,1,3,3,27,0,11,0,3,4,0,1,22,0,52,26,140,0,652,0,0,0,1,0,0,8,0,0,0,0,9,2704,0,0,0,0,0,1,0,0,0,0,0,96,0,0,27227,51,799,0,18,0,0,0,0,0,43,3,0,0,0,0,2,12,540,0,4,22,1,0,5,209,0,1739,285,18,1,0,2,1,1441,0,74,0,0,2676,0,0,0,0,18,0,10,0,0,0,0,1,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,489,0,178,0,0,0,18,83,139,1434,487,0,0,0,0,1,0,0,0,0,0,0,0,0,1794,0,0,0,0,0,0,0,0,0,7,0,0,8,0,9,0,0,0,0,0,2,110,117,554,15,0,0,714,0,2286,0,0,0,571,117,0,0,0,0,0,0,5,0,0,649,1,0,0,0,10,0,0,0,0,8,137,889,0,0,770,0,0,0,0,0,834,0,0,596,0,0,1,0,0,0,0,0,35,0,0,0,2,0,0,0,0,0,89,1,0,20,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,100,1,1,1,0,99,0,0,0,0,9,74,966,0,48,0,0,0,0,0,0,562,19,0,0,0,0,0,0,0,0,0,0,0,1,0,1,77,0,0,0,0,0,0,0,0,0,0,0,2,0,9,1130,184,5 +1,0,0,24,4,46,80,4,278,7,41,0,3,0,39,0,223,0,9,16,0,4,2,3,0,1,6,0,4,0,1,0,0,4,17,17,50,312,8,0,172,0,0,0,1,0,0,4,0,0,0,0,2,422,0,0,0,0,0,1,0,0,0,2,0,21,0,0,15205,46,811,0,5,0,0,0,0,0,21,12,0,0,0,0,6,11,1108,0,4,17,4,0,2,21,0,344,40,7,0,0,2,4,399,0,44,0,11,1268,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,142,0,0,0,0,0,0,104,0,130,0,0,0,4,17,126,343,458,0,0,0,0,1,0,0,0,0,0,0,0,0,3513,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,2,0,0,243,170,682,28,0,0,693,0,4048,0,0,0,247,91,0,0,0,0,0,0,0,0,0,673,1,0,0,0,23,2,0,0,0,2,187,82,0,0,104,0,4,0,0,0,2648,6,0,3281,0,0,1,0,0,0,0,0,7,0,1,0,2,0,0,0,0,0,12,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,59,1,1,1,0,8,0,0,0,0,42,67,163,0,12,0,0,0,0,0,0,334,7,0,0,0,0,0,0,0,0,0,0,0,4,0,1,11,0,0,0,0,0,0,0,0,0,0,0,8,0,4,1610,367,5 +0,0,0,5,0,10,4,0,33,4,9,0,0,0,8,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,63,0,0,0,1,0,0,2,0,0,0,0,0,80,0,0,0,0,0,1,0,0,0,0,0,9,0,0,2605,10,80,0,1,0,0,0,0,0,11,0,0,0,0,0,1,5,242,0,0,1,0,0,1,23,0,194,20,3,0,0,2,0,129,0,5,0,0,175,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,245,0,39,0,0,0,0,3,25,141,259,0,0,0,0,1,0,0,0,0,0,0,0,0,855,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,8,87,5,0,0,124,0,376,0,0,0,68,10,0,0,0,0,0,0,0,0,0,76,1,0,0,0,2,0,0,0,0,0,92,108,0,0,35,0,0,0,0,0,211,0,0,766,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,162,0,1,0,0,0,0,0,0,76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1321,77,5 +89,0,0,6,0,69,6,0,28,52,3,0,0,0,93,0,296,0,7,3,0,0,0,4,0,1,3,0,2,0,1,0,0,0,53,0,69,160,2,0,370,0,0,0,1,0,0,4,1,0,0,0,1,362,0,2,0,0,0,1,0,0,0,1,0,88,0,0,8808,69,474,0,3,0,0,0,1,0,31,0,0,0,0,0,5,10,1041,0,0,53,0,0,0,0,0,26,0,9,0,0,2,0,668,0,85,0,0,2421,0,0,62,0,11,27,4,0,0,0,0,1,2,0,0,9,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,971,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,0,1,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,996,0,254,0,0,0,2,10,100,277,1122,0,0,0,0,1,0,0,0,0,0,0,0,0,3793,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,101,480,7,0,0,411,0,1294,0,0,0,318,76,0,0,0,0,0,0,0,0,0,433,1,0,5,0,7,0,0,0,0,1,156,132,0,0,0,0,6,0,0,0,242782,0,0,2104,0,0,1,2,0,0,0,0,14,0,0,0,3,0,0,0,0,0,52,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,71,1,1,1,0,6,0,0,0,0,11,123,412,0,7,0,0,0,0,0,0,282,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,52,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1047,1137,5 +6,0,0,22,0,88,61,0,190,70,42,0,2,5,110,0,88,0,7,9,0,0,0,19,3,15,24,0,37,0,1,0,0,0,46,0,88,235,73,0,431,0,0,0,1,0,0,8,0,0,0,0,19,346,0,12,0,0,0,1,0,0,0,1,0,95,0,0,7716,88,641,0,36,0,0,0,0,4,44,0,0,0,0,0,12,32,851,0,0,46,0,0,4,117,0,1222,170,15,0,0,2,0,972,0,80,0,8,3099,0,5,0,0,22,0,12,0,0,0,0,1,0,0,0,20,7,0,0,0,0,0,0,0,0,6,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,21,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,33,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,10,10,10,0,0,0,740,0,208,0,0,0,36,111,287,1127,735,0,0,0,0,1,0,5,0,2,0,0,0,0,1678,0,0,0,0,0,0,0,0,0,0,0,0,8,1,6,0,0,0,0,1,0,37,98,593,28,0,0,640,0,1133,0,0,0,484,81,0,0,0,0,0,0,7,0,0,505,1,0,0,0,31,0,0,0,0,17,203,436,0,0,426,0,1,0,1,0,1041,0,0,543,3,0,1,1,0,0,0,0,23,0,0,0,17,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,3,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,108,1,1,1,0,105,0,0,0,0,1,134,683,0,68,9,0,0,0,0,0,471,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,78,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1017,260,5 +0,0,0,5,0,72,132,0,104,16,108,0,0,11,5,0,1757,0,6,2,0,0,0,8,0,11,0,0,75,0,12,0,0,0,19,35488,72,6,0,0,56,0,0,0,1,0,0,6,0,0,0,0,13,1009,0,0,0,0,0,1,0,0,0,0,0,2,0,0,264959,72,2540,0,85,0,0,0,0,0,265,0,0,0,0,0,9,494,43285,0,0,19,0,0,0,0,0,1194,45,14,0,0,2,0,2096,0,0,567,0,24831,0,0,0,0,0,0,6,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,12,12,12,0,0,0,27657,0,135,0,0,0,60,62,2705,8012,27536,0,0,0,0,1,0,15,0,0,0,0,0,0,3249,0,0,0,0,0,0,0,0,0,12,0,0,6,1,0,0,0,0,0,1,0,206,94,843,5,0,0,849,0,541,4,0,0,594,57,0,0,0,0,0,0,0,0,0,2123,1,0,0,0,10,0,0,0,0,14,349,69,0,0,767,0,0,0,0,0,14346,1,0,3675,113,0,1,1,0,0,0,0,16,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,113,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,84,1,1,1,0,204,0,0,0,0,1,91,406,0,86,12,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,20,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8337,141,5 +1,0,0,16,0,68,155,0,296,46,90,0,1,6,63,0,69,0,19,9,0,0,0,7,1,13,18,0,15,0,3,0,0,0,23,0,68,240,23,0,533,0,0,0,1,0,0,10,0,0,0,0,9,434,0,1,0,0,0,1,0,0,3,1,0,64,0,0,16578,68,789,0,16,0,0,0,0,0,51,0,0,0,0,0,10,27,1593,0,0,23,0,0,6,250,0,2124,410,17,0,0,2,0,1364,0,48,0,7,2399,0,0,0,0,25,1,13,0,0,0,0,1,2,0,0,28,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,10,10,10,0,0,0,1861,0,208,0,0,0,16,68,273,2142,1595,0,0,0,0,1,0,3,0,0,0,0,0,0,5455,0,0,0,0,0,0,0,0,0,0,0,0,11,1,2,0,0,0,0,1,0,38,77,391,17,0,0,659,0,1198,0,0,0,493,534,0,0,0,0,0,0,3,0,0,699,1,0,0,0,17,0,0,0,0,9,178,639,0,0,1054,0,8,0,0,9,1508,0,0,4225,3,0,1,1,0,0,0,0,24,0,0,0,13,0,0,0,0,0,46,0,0,1,0,4,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,3,5,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,91,1,1,1,0,58,0,0,0,0,1,91,770,0,40,9,0,0,0,0,0,638,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,56,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1861,247,5 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,1,0,0,140,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,19,0,0,0,0,3,22,5,24,0,0,0,0,1,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,36,2,0,0,78,0,80,0,0,0,48,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,47,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,140,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,6,5 +0,0,0,7,0,38,66,0,72,4,11,0,0,13,5,0,1174,0,6,1,0,0,0,9,0,12,0,0,14,0,1,0,0,0,1,16182,38,6,0,0,60,0,1,0,1,0,0,1,0,0,0,0,1,992,0,0,0,0,0,1,0,0,0,0,0,3,0,0,322076,38,1498,0,12,0,0,0,0,0,122,0,0,0,0,0,9,82,54707,0,0,1,0,0,0,0,0,367,50,1,0,0,2,0,1370,0,0,39,0,17153,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,12,12,12,0,0,0,38104,0,37,0,0,0,7,10,2513,6627,38068,0,0,0,0,1,0,3,0,0,0,0,0,0,4145,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,203,34,475,7,0,0,585,0,400,0,0,0,409,17,0,0,0,0,0,0,0,0,0,1347,1,0,0,0,10,0,0,0,0,2,303,60,0,0,52,0,0,0,0,0,12450,1,0,2164,63,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,63,317,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,32,0,0,0,0,1,39,304,0,13,14,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7322,141,5 +2,0,0,7,0,38,42,0,351,34,97,0,0,0,43,0,36,0,7,5,0,0,0,2,1,2,6,0,10,0,1,0,0,0,17,0,38,48,16,0,741,0,0,0,1,0,0,2,0,0,0,0,5,239,0,0,0,0,0,1,0,0,0,5,0,99,0,0,5419,38,579,0,11,0,0,0,0,0,7,0,0,0,0,0,2,6,2837,0,0,17,0,0,2,340,0,2635,175,2,0,0,2,0,1755,0,36,0,0,659,0,0,0,0,5,0,3,0,0,0,0,1,2,0,0,14,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,1950,0,71,0,0,0,10,32,66,3129,1969,0,0,0,0,1,0,0,0,0,0,0,0,0,596,0,0,0,0,0,0,8,0,0,0,0,0,10,0,0,0,0,0,0,0,0,8,46,225,12,0,0,254,0,613,0,0,0,156,26,2,0,0,0,0,0,0,0,0,576,1,0,0,0,8,0,0,0,0,3,156,851,0,0,430,0,16,0,0,0,241,0,0,27,0,0,1,0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,31,1,0,3,8,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,25,0,0,0,0,1,55,113,0,19,0,0,0,0,0,0,878,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,38,0,0,0,0,2,0,0,0,0,0,0,0,0,3,277,88,5 +2,0,0,10,2,81,85,2,172,16,52,0,0,9,30,0,1309,0,9,7,0,2,0,8,0,13,6,0,12,0,1,0,0,2,24,10184,83,54,8,0,233,0,0,0,1,0,0,3,0,0,0,0,3,618,0,0,0,0,0,1,0,0,2,7,0,31,0,0,58247,81,1798,0,9,0,0,0,0,0,36,3,0,0,0,0,10,55,9274,0,2,24,2,0,3,81,0,993,180,5,0,0,4,2,1754,0,22,58,0,4177,0,0,0,0,7,2,2,0,0,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,1,1,49,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,0,2,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,7488,0,102,0,0,0,6,36,600,2605,7380,0,0,0,0,1,0,4,0,0,0,0,0,0,890,2,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,1,0,217,49,647,12,0,0,677,0,909,0,1,0,312,95,0,0,0,0,0,0,0,0,0,1666,1,0,0,0,17,0,0,0,0,4,216,173,0,0,384,0,2,0,0,3,4894,1,0,140,17,0,1,1,1,0,0,0,4,0,0,0,6,0,0,0,0,0,16,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,17,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,101,1,1,1,0,32,0,0,0,0,17,107,166,0,18,14,0,0,0,0,0,300,3,0,0,0,0,0,0,0,0,0,0,0,4,0,1,24,0,0,0,0,0,0,0,0,0,0,0,3,0,2,1287,114,5 +0,0,0,14,0,48,9,0,33,2,38,0,0,2,41,0,513,0,7,2,0,0,0,7,0,10,6,0,5,0,1,2,0,0,12,898,48,8,0,0,87,0,0,0,1,0,0,16,0,0,0,0,3,260,0,0,0,0,0,1,0,0,0,0,0,8,0,0,25692,48,742,0,5,0,0,0,0,0,69,0,0,0,0,0,8,34,4297,0,0,12,0,0,0,0,0,116,5,31,0,0,2,0,667,0,4,0,0,1891,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,3674,0,158,0,0,0,4,15,275,352,3636,0,0,0,0,1,0,3,0,0,0,0,0,0,1064,0,0,0,0,0,0,0,0,0,0,0,0,16,1,0,0,0,0,0,1,0,32,36,269,20,0,0,463,0,514,0,0,0,314,17,0,0,0,0,0,0,0,0,0,643,1,0,0,0,9,0,0,0,0,3,136,194,0,0,2,0,0,0,0,0,1745,1,0,538,7,0,1,1,1,0,0,0,31,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,13,0,0,0,0,1,60,417,0,12,12,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,4,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1517,121,5 +21,0,0,19,0,68,60,0,308,37,53,0,1,5,141,0,739,0,7,7,0,0,0,10,9,22,36,0,29,0,2,0,0,0,24,965,68,272,51,0,354,0,0,0,1,0,0,9,0,0,0,0,14,320,0,0,0,0,0,1,0,0,0,0,0,32,0,0,36313,68,1453,0,27,0,0,0,0,0,44,0,0,0,0,0,12,38,6015,0,0,24,0,0,2,139,0,1339,225,9,0,0,2,0,1855,0,24,0,7,3756,0,0,0,0,11,17,2,0,0,0,0,1,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,42,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,12,12,12,0,0,0,4823,0,218,0,0,0,26,173,341,1391,4842,0,0,0,0,1,0,4,0,0,0,0,0,0,1830,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,1,0,46,58,488,37,0,0,580,0,923,0,0,0,389,165,0,0,0,0,0,0,13,0,0,1314,1,0,0,0,26,0,0,0,0,13,170,433,0,0,581,0,0,0,0,0,2792,1,0,567,10,0,1,1,1,0,0,0,10,0,0,0,10,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,10,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,89,1,1,1,0,133,0,0,0,0,1,92,643,0,75,14,0,0,0,0,0,382,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,45,0,0,0,0,5,0,0,0,0,0,0,0,0,7,1706,320,5 +0,0,0,27,0,54,216,0,181,16,59,0,1,1,42,0,64,0,9,9,0,0,0,4,4,5,18,0,11,0,1,0,0,0,30,0,54,98,24,0,338,0,0,0,1,0,0,1,0,0,0,0,6,197,0,0,0,0,0,1,0,0,1,0,0,37,0,0,3072,54,594,0,12,0,0,0,0,0,4,0,0,0,0,1,6,20,81,0,0,30,0,0,3,125,0,1051,210,1,0,0,43,0,768,0,31,7,2,1982,0,0,0,0,7,0,2,0,0,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,20,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,186,0,78,0,0,0,12,58,92,2318,130,0,0,0,0,1,0,2,0,0,0,0,0,0,1232,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,84,320,33,8,0,483,0,1285,3,6,0,362,62,0,0,0,0,0,0,0,0,0,573,1,0,0,0,13,4,0,0,0,5,149,229,0,0,486,0,0,0,0,2,360,0,0,8,0,0,1,0,0,0,0,0,1,0,1,0,6,0,0,0,0,0,19,0,0,8,0,0,0,2,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,47,0,0,0,0,1,84,95,0,35,0,0,0,0,0,0,346,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,137,5 +0,0,0,13,0,59,34,0,316,1,88,0,0,0,10,0,26,0,9,2,0,0,0,2,1,0,0,0,11,0,4,0,0,0,41,4874,59,56,3,0,547,0,0,0,1,0,0,4,0,0,0,0,4,261,0,0,0,0,0,1,0,0,0,12,0,57,0,0,4674,59,506,0,15,0,0,0,0,0,16,0,0,0,0,0,3,8,462,0,0,41,0,0,3,277,0,2204,170,5,0,0,2,0,1385,0,2,0,0,2389,0,0,0,0,15,0,8,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,353,0,122,0,0,0,8,14,89,2290,357,0,0,0,0,1,0,0,0,4,0,0,0,0,737,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,13,9,514,17,0,0,633,0,1824,0,0,0,464,881,0,0,0,0,0,0,0,0,0,483,1,0,0,0,5,0,0,0,0,5,234,868,0,0,414,0,0,0,8,0,266,0,0,187,0,0,1,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,18,0,0,0,6,1,100,985,0,15,0,0,0,0,0,0,681,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,6,346,85,5 +0,0,0,2,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,1,0,1,0,0,1,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1067,8,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,466,0,0,0,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,141,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,26,0,0,0,0,3,22,4,52,0,0,0,0,1,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,82,2,0,0,90,0,210,0,0,0,37,2,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,30,0,0,0,0,0,0,0,0,211,0,0,764,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,89,0,1,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,230,31,5 +3,0,0,25,0,31,15,0,74,17,17,0,1,3,34,0,51,0,7,5,0,0,0,1,0,3,9,0,10,0,3,0,0,0,12,0,31,105,18,0,227,0,0,0,1,0,0,2,0,0,0,0,6,107,0,0,0,0,0,1,0,0,0,0,0,17,0,0,7450,31,209,0,13,0,0,0,0,0,7,0,0,0,0,0,1,5,588,0,0,12,0,0,2,24,0,247,35,1,0,0,2,0,305,0,7,0,4,821,0,0,0,0,2,2,6,0,2,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,86,0,0,0,0,0,0,630,0,86,0,0,0,12,40,69,279,659,0,0,0,0,1,0,0,0,0,0,0,0,0,2645,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,13,28,223,34,0,0,181,0,664,0,0,0,94,45,0,0,0,0,0,0,0,0,0,202,1,0,0,0,6,0,0,0,0,6,129,71,0,0,78,0,0,0,0,0,817,0,0,2216,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,17,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,37,0,0,0,2,1,43,51,0,25,0,0,0,0,0,0,136,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7740,85,5 +3,0,0,7,1,50,32,1,46,2,8,0,0,9,7,0,118,0,8,2,0,0,0,8,0,10,0,0,5,0,1,0,0,1,15,8215,51,54,0,0,75,0,0,0,1,0,0,2,0,0,0,0,1,430,0,0,0,0,0,1,0,0,0,10,0,4,0,0,30079,50,184,0,3,0,0,0,0,0,14,0,0,0,0,0,9,23,5301,0,1,15,1,0,1,0,0,280,30,2,0,0,4,1,133,0,2,9,0,2908,0,0,0,0,3,3,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,3404,0,63,0,0,0,1,4,320,675,3399,0,0,0,0,1,0,9,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,219,29,419,8,0,0,471,0,647,0,1,0,205,50,0,0,0,0,0,0,0,0,0,228,1,0,0,0,10,0,0,0,2,1,163,45,0,0,10,0,2,0,0,0,1375,1,0,48,6,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,55,1,1,1,0,5,0,0,0,0,9,66,155,0,4,12,0,0,0,0,0,103,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,4,1116,55,5 +0,0,0,8,0,28,75,0,107,16,37,0,0,0,22,0,25,0,6,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,16,0,28,28,5,0,202,0,0,0,1,0,0,1,0,0,0,0,1,112,0,0,0,0,0,1,0,0,1,1,0,29,0,0,694,28,269,0,3,0,0,0,0,0,6,0,0,0,0,0,1,3,111,0,0,16,0,0,2,97,0,774,160,1,0,0,2,0,477,0,20,0,0,587,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,16,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,188,0,80,0,0,0,2,14,51,770,153,0,0,0,0,1,0,0,0,0,0,0,0,0,738,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,23,153,8,0,0,227,0,338,0,0,0,163,27,0,0,0,0,0,0,0,0,0,272,1,0,0,0,3,0,0,0,0,2,118,192,0,0,367,0,0,0,0,3,109,0,0,20,0,0,1,0,0,0,0,0,2,0,5,0,6,0,0,0,0,0,16,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,25,1,1,1,0,12,0,0,0,0,1,44,177,0,7,0,0,0,0,0,0,263,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,2,186,55,5 +5,0,0,12,0,70,62,0,359,86,113,0,0,0,111,1,81,0,7,4,0,0,0,6,4,2,30,0,21,0,9,4,0,0,45,0,70,82,17,0,772,0,0,0,1,0,0,7,0,0,0,0,17,465,0,1,0,0,0,1,0,0,0,28,0,115,0,0,11058,70,828,0,34,0,0,0,0,0,28,0,0,0,0,1,8,22,810,0,0,45,0,0,5,324,0,2816,470,13,0,0,2,0,1838,0,96,1,0,2060,0,0,0,0,25,0,3,0,5,0,2,1,12,0,0,90,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,0,0,0,18,0,0,0,0,1,0,0,0,0,6,0,0,0,0,0,1,0,2,0,1,0,4,0,0,0,0,0,0,0,0,0,6,0,0,0,0,161,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,50,0,0,0,0,0,0,766,0,203,0,0,0,34,84,145,2020,872,0,0,0,0,1,1,0,0,0,0,0,0,0,3189,0,0,0,0,0,0,0,0,0,5,0,0,8,0,2,0,0,0,0,0,1,8,106,600,13,0,0,810,0,1156,0,0,0,595,70,0,3,0,0,0,0,2,0,0,734,1,0,0,0,14,0,0,0,0,16,297,951,0,0,1402,0,1,0,0,0,801,0,0,1845,0,0,1,1,0,0,0,0,11,0,0,0,9,0,0,0,0,0,90,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,88,1,1,1,0,63,0,0,0,0,1,115,1082,0,66,0,0,0,0,0,0,826,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,96,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1428,330,5 +0,0,0,4,0,13,5,0,24,0,8,0,0,0,3,0,26,0,7,1,0,0,0,1,0,0,6,0,2,0,3,0,0,0,3,0,13,6,0,0,30,0,0,0,1,0,0,5,0,0,0,0,2,128,1,0,0,0,0,1,0,0,0,0,0,6,0,0,1052,13,104,0,5,0,0,0,0,0,22,0,0,0,0,0,1,9,131,0,0,3,0,0,1,13,0,134,15,8,1,0,2,0,112,0,1,0,0,239,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,138,0,88,0,0,0,4,13,32,270,148,0,0,0,0,1,0,0,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,4,119,4,0,0,132,0,416,0,0,0,72,9,0,0,0,0,0,0,0,0,0,73,1,0,0,0,2,0,0,0,0,3,95,73,0,0,38,0,0,0,0,0,91,0,0,149,0,0,1,3,0,0,0,0,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,4,0,0,0,0,1,16,205,0,11,0,0,0,0,0,0,64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,0,0,0,0,0,0,0,0,0,0,0,0,5,227,353,5 +0,0,0,10,0,47,14,0,68,14,18,0,0,2,20,0,628,0,6,4,0,0,0,9,0,12,6,0,7,0,2,0,0,0,12,898,47,6,4,0,138,0,0,0,1,0,0,2,0,0,0,0,3,362,0,0,0,0,0,1,0,0,0,0,0,24,0,0,25795,47,766,0,5,0,0,0,0,0,19,0,0,0,0,0,11,23,4233,0,0,12,0,0,1,36,0,409,70,4,0,0,2,0,856,0,18,0,0,2026,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,3519,0,80,0,0,0,4,22,266,556,3487,0,0,0,0,1,0,3,0,0,0,0,0,0,406,4,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,28,290,13,0,0,323,0,558,0,0,0,157,32,0,0,0,0,0,0,0,0,0,756,1,0,0,0,13,0,0,0,0,3,150,128,0,0,146,0,0,0,0,0,1743,1,0,121,10,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,22,0,0,0,0,1,59,217,0,13,14,0,0,0,0,0,122,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,544,55,5 +0,0,0,3,0,10,4,0,2984,0,1488,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,10,6,0,0,2983,0,1,0,1,0,0,1,0,0,0,0,0,85,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1399,10,4497,0,1,0,0,0,0,0,8,0,0,0,0,0,1,4,482,0,0,0,0,0,1,2973,0,23798,7425,2,0,0,2,0,10424,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,43,0,20,0,0,0,0,3,60,5994,54,0,0,0,0,1,0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,120,3,0,0,151,0,227,0,0,0,82,19,0,0,0,0,0,0,0,0,0,4502,1,0,0,0,2,0,0,0,0,0,92,4532,0,0,16403,0,0,0,0,1,219,0,0,772,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,10,173,0,1,0,0,0,0,0,0,4478,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,240,51,5 +13,0,0,7,0,174,14,0,63,24,13,0,0,6,31,0,1226,0,7,6,0,0,0,8,0,16,33,0,21,0,2,6,0,0,131,1896,174,6,27,0,137,0,0,0,1,0,0,9,0,0,0,0,12,452,0,0,0,0,0,1,0,0,0,0,0,29,0,0,164875,174,1498,0,26,0,0,0,0,0,65,0,0,0,0,0,9,57,30867,0,0,131,0,0,0,0,0,314,20,16,0,0,2,0,1507,0,25,28,0,9813,0,0,0,0,24,13,10,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,22,0,13,13,0,0,0,0,0,0,0,1,1,0,0,0,1,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,78,12,12,12,0,0,0,26202,0,282,0,0,0,25,134,799,1946,26175,0,0,0,0,1,0,15,0,0,0,0,0,0,1855,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,2,0,84,44,1165,7,0,0,936,0,986,1,0,0,757,54,0,0,0,0,0,0,0,0,0,1360,1,0,0,0,14,0,0,0,0,9,420,129,0,0,51,0,0,0,0,0,9029,1,0,834,22,0,1,1,1,0,0,0,26,0,0,0,1,0,0,0,0,0,25,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,22,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,222,1,1,1,0,114,0,0,0,0,1,305,455,0,64,14,0,0,0,0,0,182,11,0,0,0,0,0,0,0,0,0,0,0,3,0,1,28,0,0,0,0,0,0,0,0,0,0,0,0,0,9,3740,129,5 +0,0,0,8,0,23,2,0,10,0,3,0,0,0,2,1,16,0,7,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,6,0,23,6,0,0,432,0,0,0,1,0,0,31,0,0,0,0,0,98,25,0,0,0,0,1,0,0,0,0,0,5,0,0,9842,23,251,0,1,0,0,0,0,0,109,0,0,0,0,17,2,65,1197,0,0,6,0,0,0,0,0,53,0,58,1,0,2,0,12,0,0,0,0,725,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,320,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1213,0,407,0,0,0,0,3,75,834,1259,0,0,0,0,1,0,0,0,0,0,0,0,0,3953,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,8,22,243,27,0,0,259,0,364,0,0,0,175,24,0,0,0,0,0,0,0,0,0,41,1,0,0,0,3,0,0,0,0,0,111,80,0,0,0,0,0,0,0,0,552,0,0,2380,0,0,1,0,0,0,0,0,44,0,0,0,32,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,0,0,0,0,0,1,29,175,0,1,0,0,0,0,0,0,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,3165,543,5 +0,0,0,21,0,50,9,0,35,0,124,2,0,2,128,0,563,0,7,4,0,0,0,7,0,12,12,0,9,0,1,1,0,0,12,898,50,8,8,0,181,0,0,0,1,0,0,17,0,0,0,0,5,373,0,0,0,0,0,1,0,0,0,0,0,7,0,0,29761,50,982,0,9,0,0,0,0,0,74,0,0,0,0,0,8,35,4566,0,0,12,0,0,0,0,0,132,5,33,0,0,2,0,1007,0,3,0,0,2082,0,0,0,0,3,0,12,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,3957,0,171,0,0,0,8,31,283,383,3914,0,0,0,0,1,0,3,0,0,0,0,0,0,2480,0,0,0,0,0,0,0,0,0,0,0,0,17,1,0,0,0,0,0,1,0,32,35,307,33,0,0,579,0,783,0,0,0,419,32,0,0,0,0,0,0,0,0,0,870,1,0,0,0,11,0,0,0,0,4,135,304,0,0,2,0,0,0,0,0,2713,1,0,2039,7,0,1,1,1,0,0,0,34,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,24,0,0,0,0,1,62,458,0,23,12,0,0,0,0,0,116,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0,0,1,0,0,0,0,0,7,5617,250,5 +6,0,0,8,0,44,9,0,41,12,9,0,0,0,26,2,66,0,46,7,0,0,0,2,3,6,21,0,19,0,2,0,0,0,16,0,44,16,35,0,100,0,0,0,1,0,0,3,0,0,0,0,10,156,0,1,0,0,0,1,0,0,0,1,0,28,0,0,6232,44,232,0,21,0,0,0,0,0,9,0,0,0,0,1,2,7,1111,0,0,16,0,0,2,17,0,232,25,4,0,0,2,0,291,0,17,0,0,4043,0,0,0,0,19,1,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,20,0,0,0,0,0,0,720,0,111,0,0,0,20,92,96,511,747,0,0,0,0,1,0,4,0,0,0,0,0,0,538,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,20,826,9,0,0,1331,0,972,0,0,0,1209,217,0,0,0,0,0,0,0,0,0,199,1,0,0,0,12,0,0,0,0,7,670,643,0,0,52,0,0,0,0,0,2487,0,0,122,0,0,1,0,1,0,0,0,3,0,0,0,1,0,0,0,0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,63,0,0,0,0,1,60,2303,0,48,0,0,0,0,0,0,143,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1609,111,5 +0,0,0,5,0,19,14,0,235,1,94,0,0,0,6,0,54,0,7,2,0,0,0,2,0,1,3,0,2,0,1,0,0,0,4,0,19,87,4,0,344,0,0,0,1,0,0,3,0,0,0,0,1,441,0,0,0,0,0,1,0,0,0,0,0,18,0,0,5803,19,427,0,3,0,0,0,0,0,14,0,0,0,0,0,2,7,141,0,0,4,0,0,1,218,0,1741,390,6,0,0,2,0,914,0,2,0,0,648,0,0,0,0,1,0,4,0,0,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,146,0,68,0,0,0,2,17,59,951,195,0,0,0,0,1,0,0,0,0,0,0,0,0,447,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,11,199,5,0,0,312,0,629,0,0,0,224,45,0,0,0,0,0,0,0,0,0,410,1,0,0,0,4,0,0,0,0,2,135,537,0,0,1487,0,1,0,0,1,203,0,0,172,0,0,1,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,12,0,0,0,0,1,23,355,0,7,0,0,0,0,0,0,620,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,218,90,5 +0,0,0,28,3,67,69,12,198,14,42,0,1,6,38,0,71,0,7,15,0,3,0,5,3,10,9,0,13,0,1,0,0,3,36,0,70,366,22,0,326,0,0,0,1,0,0,7,0,0,0,0,7,655,0,0,0,0,0,1,0,0,0,0,0,27,0,0,7726,67,657,0,12,0,0,0,0,0,33,9,0,0,0,0,7,20,712,0,12,36,3,0,3,132,0,1159,170,15,0,0,2,3,794,0,14,0,7,2061,0,0,0,0,1,0,6,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,10,10,10,0,0,0,697,0,134,0,0,0,12,51,213,1561,659,0,0,0,0,1,0,2,0,0,0,0,0,0,2092,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,39,29,651,53,0,0,805,0,1227,0,0,0,434,97,0,0,0,0,0,0,4,0,0,432,1,0,0,0,26,0,0,0,0,6,328,508,0,0,699,0,0,0,0,0,792,0,0,1637,3,0,1,1,1,0,0,0,22,0,0,0,4,0,0,0,0,0,16,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,77,1,1,1,0,28,0,0,0,0,25,106,897,0,24,9,0,0,0,0,0,354,5,0,0,0,0,0,0,0,0,0,0,0,4,0,1,20,0,0,0,0,0,0,0,0,0,0,0,6,0,4,3606,509,5 +5,0,0,16,0,31,22,0,105,24,20,0,1,3,38,0,60,0,7,5,0,0,0,2,1,4,15,0,10,0,1,0,0,0,12,0,31,117,18,0,175,0,0,0,1,0,0,4,2,0,0,0,5,208,0,0,0,0,0,1,0,0,0,2,0,24,0,0,6286,31,286,0,11,0,0,0,1,0,17,0,0,0,0,0,2,8,3074,0,0,12,0,0,2,39,0,372,60,17,0,0,2,0,392,0,15,0,5,1005,0,0,0,0,12,0,1,0,0,0,1,1,0,0,0,11,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,3,0,0,0,2,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,19,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,2024,0,130,0,0,0,10,50,74,1212,2022,0,0,0,0,1,0,0,0,0,0,0,0,0,832,0,0,0,0,2,0,0,0,0,2,0,0,4,0,2,0,0,0,0,0,2,14,63,262,24,0,0,299,0,12541,0,0,0,187,64,0,0,0,0,0,0,0,0,0,256,1,0,17,0,8,0,0,0,0,6,148,149,0,0,151,0,0,0,0,1,340,0,0,583,0,0,1,0,1,0,0,0,28,0,0,0,1,0,0,0,0,0,19,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,36,0,0,0,0,8,43,259,0,30,0,0,0,0,0,0,235,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,26,0,0,0,0,0,0,0,0,0,0,0,0,0,4,530,131,5 +3,0,0,4,0,19,3,0,10,7,3,0,0,0,13,0,36,0,7,3,0,0,0,2,1,3,9,0,6,0,1,0,0,0,7,0,19,6,12,0,60,0,0,0,1,0,0,1,0,0,0,0,3,72,0,0,0,0,0,1,0,0,0,0,0,5,0,0,2154,19,79,0,7,0,0,0,0,0,4,0,0,0,0,0,2,4,1096,0,0,7,0,0,0,0,0,34,0,1,0,0,2,0,93,0,2,0,0,600,0,0,0,0,8,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,778,0,48,0,0,0,6,35,37,386,780,0,0,0,0,1,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,8,15,159,13,0,0,147,0,457,0,0,0,82,20,0,0,0,0,0,0,0,0,0,72,1,0,0,0,6,0,0,0,0,3,140,18,0,0,0,0,0,0,0,0,161,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,30,0,0,0,0,1,26,78,0,19,0,0,0,0,0,0,50,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,300,99,5 +0,0,0,5,0,37,8,0,21,0,5,0,0,6,4,0,63,0,6,3,0,0,0,7,0,10,0,0,5,0,1,0,0,0,5,5167,37,6,0,0,49,0,0,0,1,0,0,1,0,0,0,0,1,330,0,0,0,0,0,1,0,0,0,4,0,2,0,0,10383,37,104,0,3,0,0,0,0,0,12,0,0,0,0,0,9,22,1752,0,0,5,0,0,0,0,0,195,20,1,0,0,2,0,102,0,0,11,0,1421,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,828,0,43,0,0,0,1,4,263,418,823,0,0,0,0,1,0,5,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,86,16,237,5,0,0,234,0,294,0,0,0,95,8,0,0,0,0,0,0,0,0,0,113,1,0,0,0,10,0,0,0,0,1,134,13,0,0,11,0,6,0,0,0,735,1,0,37,6,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,5,0,0,0,0,1,42,65,0,4,12,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,523,109,5 +0,0,0,7,0,33,7,0,41,0,10,0,0,0,4,0,16,0,6,1,0,0,0,1,0,0,0,0,4,0,1,0,0,0,18,0,33,6,0,0,80,0,0,0,1,0,0,4,0,0,0,0,0,101,0,0,0,0,0,1,0,0,0,6,0,9,0,0,936,33,105,0,5,0,0,0,0,0,17,0,0,0,0,0,1,6,114,0,0,18,0,0,1,28,0,246,15,6,0,0,2,0,153,0,0,0,0,682,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,138,0,103,0,0,0,0,3,60,209,130,0,0,0,0,1,0,0,0,0,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,8,3,153,7,0,0,213,0,487,0,0,0,141,32,0,0,0,0,0,0,2,0,0,84,1,0,0,0,2,0,0,0,0,1,115,133,0,0,33,0,0,0,8,0,58,0,0,111,0,0,1,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,4,0,0,0,0,1,51,292,0,5,0,0,0,0,0,0,94,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,198,59,5 +4,0,0,14,0,89,44,0,187,18,44,1,0,0,40,0,104,0,80,10,0,0,0,4,5,10,39,0,32,0,1,3,0,0,34,0,89,15,47,0,416,0,0,0,1,0,0,1,0,0,0,0,17,340,0,0,0,0,0,1,0,0,0,2,0,33,0,0,3016,89,553,0,36,0,0,0,0,0,6,0,0,0,0,0,4,6,290,0,0,34,0,0,2,133,0,1296,185,2,0,0,2,0,1007,0,23,0,0,2419,0,0,1,0,121,1,4,0,1,0,0,1,0,0,0,15,0,0,1,0,0,0,0,0,0,0,0,9,0,0,0,0,0,6,0,2,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,34,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,48,0,0,0,0,0,0,319,0,142,0,0,0,34,194,203,1809,345,0,0,0,0,1,0,0,0,0,0,0,0,0,1076,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,16,50,504,25,0,0,533,0,1265,0,0,0,322,153,0,20,0,0,0,0,0,0,0,500,1,0,0,0,19,0,0,0,0,16,234,392,0,0,800,0,2,0,0,0,776,0,0,169,0,0,1,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,133,1,1,1,0,111,0,0,0,0,1,123,426,0,85,0,0,0,0,0,0,364,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1088,147,5 +0,0,0,5,0,15,8,0,18,9,10,0,0,0,14,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,15,6,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,20,0,0,88,15,59,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,5,0,0,2,16,0,137,25,0,0,0,2,0,105,0,12,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,16,0,28,0,0,0,0,3,32,81,31,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,15,62,5,0,0,58,0,191,0,0,0,22,2,0,0,0,0,0,0,0,0,0,67,0,0,0,0,2,0,0,0,0,1,97,30,0,0,50,0,0,0,0,2,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,1,20,5,0,1,0,0,0,0,0,0,60,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,24,5 +0,0,0,3,0,15,2,0,9,0,3,0,0,0,4,0,22,0,7,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,4,0,15,6,4,0,12,0,0,0,1,0,0,1,0,0,0,0,1,55,0,0,0,0,0,1,0,0,0,0,0,4,0,0,965,15,44,0,3,0,0,0,0,0,4,0,0,0,0,0,1,3,478,0,0,4,0,0,0,0,0,12,0,2,0,0,2,0,32,0,2,0,0,264,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,298,0,35,0,0,0,2,10,35,70,306,0,0,0,0,1,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,111,3,0,0,127,0,250,0,0,0,68,5,0,0,0,0,0,0,0,0,0,47,1,0,0,0,3,0,0,0,0,1,105,41,0,0,0,0,0,0,0,0,68,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,6,0,0,0,0,1,19,120,0,7,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,69,18,5 +1,0,0,0,0,20,10,0,25,2,4,0,0,0,6,0,24,0,7,3,0,0,0,2,0,1,0,0,3,0,2,0,0,0,6,0,20,6,15,0,62,0,1,0,1,0,0,1,0,0,0,0,2,68,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1170,20,73,0,5,0,0,0,0,0,7,0,0,0,1,0,3,8,527,0,0,6,0,0,1,16,0,145,10,2,0,0,2,0,105,0,0,0,0,280,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,75,0,40,0,0,0,4,25,44,139,79,0,0,0,0,1,0,0,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,110,4,0,0,130,0,260,0,0,0,60,15,0,0,0,0,0,0,0,0,0,76,1,0,0,0,5,0,0,0,0,2,102,62,0,0,26,0,0,0,0,0,279,0,0,745,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,42,0,0,0,0,1,26,114,0,6,0,0,1,0,0,0,61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,270,32,5 +0,0,0,15,0,28,17,0,59,15,23,1,0,0,22,30,24,0,7,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,14,0,28,9,3,0,387,0,0,0,1,0,0,1,0,0,0,0,1,128,0,0,0,0,0,1,0,0,0,0,0,28,0,0,1108,28,174,0,2,0,0,0,0,0,6,0,0,0,0,0,1,3,62,0,0,14,0,0,6,42,0,379,59,2,0,0,2,0,331,0,18,2,0,1056,0,0,0,0,4,0,3,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,74,0,79,0,0,0,2,11,54,1033,104,0,0,0,0,1,0,0,0,0,0,0,0,0,334,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,22,254,94,0,0,237,0,482,0,0,0,155,39,0,2,0,0,0,0,0,0,0,183,1,0,0,0,3,0,0,0,0,2,121,168,0,0,147,0,0,0,0,1,70,0,0,20,0,0,1,1,0,0,0,0,3,0,0,0,5,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,6,0,0,0,0,1,42,310,0,7,0,0,0,0,0,0,168,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,1,0,0,0,0,0,0,0,0,0,0,0,0,3,158,251,5 +0,0,0,5,0,29,74,0,264,19,95,0,0,0,26,0,93,0,7,2,0,0,0,2,0,1,3,0,3,0,2,0,0,0,15,0,29,204,8,0,467,0,0,0,1,0,0,1,0,0,0,0,2,217,0,0,0,0,0,1,0,0,0,2,0,35,0,0,2954,29,556,0,5,37,0,1,0,0,7,0,0,0,1,0,2,5,306,0,0,15,0,0,5,246,0,2008,440,2,0,0,2,0,1082,0,20,8,0,3520,0,0,0,0,16,0,84,0,0,0,0,1,0,0,0,188,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,12,0,0,0,0,0,0,258,0,136,0,0,0,4,25,173,958,385,0,0,0,0,1,0,0,0,0,0,0,0,0,1153,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,12,24,459,5,0,0,719,0,627,0,0,0,651,69,0,1,0,0,0,0,0,0,0,559,1,0,0,0,4,0,0,0,0,3,330,651,0,0,1734,0,13,0,0,0,627,0,0,62,0,0,1,3,0,0,0,0,2,0,0,0,6,0,0,0,0,0,19,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,3,3,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,149,1,1,1,0,39,0,0,0,2,1,44,735,0,9,0,0,0,0,0,0,808,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,27,2,0,0,0,0,0,0,0,0,0,0,0,0,1,314,155,5 +0,0,0,13,0,18,3,0,18,3,4,1,0,0,8,0,19,0,6,2,0,0,0,1,0,3,0,0,1,0,1,0,0,0,9,0,18,12,0,0,43,0,0,0,1,0,0,1,0,0,0,0,1,39,0,0,0,0,0,1,0,3,0,0,0,7,0,0,335,18,61,0,5,0,0,0,0,0,6,0,0,0,0,0,2,4,52,0,0,9,0,0,0,0,0,12,0,2,0,0,2,0,38,0,4,0,0,307,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,62,0,47,0,0,0,1,6,34,16,81,0,0,0,0,1,0,0,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,14,135,19,0,0,175,0,298,0,0,0,111,14,0,0,0,0,0,0,0,0,0,59,1,0,0,0,3,0,0,0,0,2,112,59,0,0,0,0,2,0,0,0,47,0,0,28,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,1,0,0,0,0,1,27,175,0,5,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,96,44,5 +1,0,0,15,3,113,543,4,702,145,220,0,0,2,182,1,166,0,33,8,0,2,4,11,1,11,45,0,21,0,10,5,0,3,70,0,117,125,8,0,1278,0,0,0,1,0,0,4,0,0,0,0,18,564,0,2,0,0,0,1,0,0,119,11,0,187,0,0,23490,113,2018,0,34,0,0,0,0,0,20,6,0,0,0,0,14,25,5011,0,4,70,3,0,8,606,0,4996,995,6,0,0,4,3,3247,0,158,1,0,3817,0,0,0,0,46,0,3,0,5,0,0,1,29,0,0,579,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,11,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,66,12,12,12,0,0,2,2278,2,229,0,0,0,34,106,373,6652,2286,0,0,0,0,1,1,3,0,0,0,1,1,0,6326,0,0,0,0,0,0,0,0,0,4,0,0,7,1,0,0,0,0,0,5,1,146,185,841,19,0,0,1359,0,2354,0,1,0,1017,99,0,0,0,0,0,0,0,0,0,1849,0,0,0,0,26,0,0,0,0,16,289,1237,0,0,3062,0,0,0,0,76,1677,0,0,4122,3,0,1,1,0,0,0,0,10,0,0,0,29,0,0,0,0,0,148,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,3,18,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,144,1,1,1,0,82,0,0,0,0,68,187,796,0,83,9,0,1,0,0,0,1344,4,0,0,0,0,0,0,0,0,0,0,0,5,0,1,159,0,0,0,0,0,0,0,0,0,0,0,5,0,4,2990,933,5 +0,0,0,11,0,33,4,0,46,22,6,0,1,4,34,0,68,0,7,5,0,0,0,2,2,4,18,0,12,0,1,0,0,0,11,0,33,124,19,0,177,0,0,0,1,0,0,1,0,0,0,0,6,109,0,0,0,0,0,1,0,0,0,4,0,9,0,0,2260,33,192,0,13,0,0,0,0,0,4,0,0,0,0,0,2,4,100,0,0,11,0,0,0,0,0,67,0,1,0,0,2,0,251,0,6,0,5,1165,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,125,0,71,0,0,0,12,64,76,135,148,0,0,0,0,1,0,0,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,39,248,19,0,0,215,0,646,0,0,0,123,67,0,0,0,0,0,0,0,0,0,170,1,0,0,0,9,0,0,0,0,7,158,39,0,0,0,0,0,0,0,0,361,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,16,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,46,0,0,0,0,1,44,110,0,35,0,0,0,0,0,0,80,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,404,124,5 +4,0,0,9,3,73,45,9,112,9,14,0,0,9,18,0,1441,0,9,7,0,3,2,9,0,10,0,0,8,0,2,0,0,3,25,11499,76,54,189,0,135,0,0,0,1,0,0,11,0,0,0,0,3,861,0,0,0,0,0,1,0,0,0,18,0,12,0,0,83176,73,1969,0,7,0,0,0,0,0,72,6,0,0,0,0,11,36,18010,0,9,25,3,0,2,8,0,417,45,20,1,0,4,3,1538,0,6,11,0,6439,0,0,0,0,35,4,5,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,37,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,12,12,12,0,0,0,13165,0,199,0,0,0,5,10,446,1266,13854,0,0,0,0,1,0,15,0,0,0,0,0,0,1849,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,1,0,227,39,641,16,0,0,698,0,1040,0,1,0,336,57,0,0,0,0,0,0,4,0,0,1648,1,0,0,0,21,0,0,0,0,3,186,97,0,0,42,0,2,0,0,0,6450,1,0,551,14,0,1,1,0,0,0,0,29,0,0,0,2,0,0,0,0,0,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,14,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,87,1,1,1,0,11,0,0,0,0,26,101,743,0,8,12,0,0,0,0,0,174,4,0,0,0,0,0,0,0,0,0,0,0,6,0,1,17,0,0,0,0,0,0,0,0,0,0,0,6,0,10,2882,228,5 +2,0,0,5,0,20,11,0,76,4,28,0,0,0,9,0,16,0,7,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,8,0,20,6,0,0,140,0,0,0,1,0,0,2,0,0,0,0,0,345,0,0,0,0,0,1,0,0,0,0,0,28,0,0,13428,20,148,0,1,0,0,0,0,0,11,0,0,0,0,0,2,6,1378,0,0,8,0,0,3,67,0,546,60,3,0,0,2,0,332,0,6,0,0,399,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,1051,0,55,0,0,0,0,3,54,1588,1064,0,0,0,0,1,0,0,0,0,0,0,0,0,4074,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,9,150,5,0,0,157,0,363,0,0,0,91,13,0,0,0,0,0,0,0,0,0,147,1,0,0,0,3,0,0,0,0,1,111,316,0,0,186,0,0,0,0,0,1024,0,0,4104,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,0,0,0,0,0,1,28,115,0,1,0,0,0,0,0,0,178,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1438,81,5 +3,0,0,7,0,333,3,0,29,55,9,0,0,0,61,0,34,0,7,1,0,0,0,7,16,0,0,0,23,0,1,0,0,0,321,0,333,63,16,0,231,0,0,0,1,0,0,4,0,0,0,0,16,115,0,0,0,0,0,1,0,0,0,0,0,64,0,0,2527,333,221,0,24,0,0,0,0,0,14,0,0,0,0,0,7,14,332,0,0,321,0,0,1,11,0,287,25,4,0,0,2,0,214,0,1,0,0,2974,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,305,0,463,0,0,0,32,67,415,660,315,0,0,0,0,1,0,0,0,0,0,0,0,0,582,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,8,61,1144,7,0,0,1104,0,818,0,0,0,1031,37,0,0,0,0,0,0,0,0,0,143,1,0,0,0,24,0,0,0,0,17,415,74,0,0,64,0,0,0,0,1,230,0,0,214,0,0,1,0,1,0,0,0,7,0,0,0,2,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,350,1,1,1,0,39,0,0,0,0,1,654,533,0,24,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,0,0,0,0,0,0,0,0,0,0,0,0,0,2,562,968,5 +3,0,0,5,0,16,53,0,120,16,42,0,0,0,22,0,28,0,7,2,0,0,0,1,0,1,6,0,3,0,1,1,0,0,5,0,16,6,2,0,200,0,0,0,1,0,0,2,0,0,0,0,2,124,0,0,0,0,0,1,0,0,2,0,0,34,0,0,11132,16,275,0,5,0,0,0,0,0,10,0,0,0,0,0,1,4,948,0,0,5,0,0,4,110,0,887,185,4,0,0,2,0,538,0,19,0,0,583,0,0,0,0,7,0,0,0,1,0,0,1,0,0,0,8,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,959,0,60,0,0,0,4,15,35,571,964,0,0,0,0,1,0,0,0,0,0,0,0,0,3786,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,22,133,5,0,0,169,0,257,0,0,0,105,9,0,0,0,0,0,0,0,0,0,272,1,0,0,0,3,0,0,0,0,2,104,212,0,0,417,0,0,0,0,2,921,0,0,3521,0,0,1,0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,10,0,0,0,0,1,21,119,0,12,0,0,0,0,0,0,250,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1010,71,5 +0,0,0,2,0,11,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,7,0,0,0,1,0,0,2,0,0,0,0,0,58,0,0,0,0,0,1,0,0,0,0,0,1,0,0,416,11,35,0,1,0,0,0,0,0,8,0,0,0,0,0,2,5,44,0,0,2,0,0,0,0,0,9,0,4,0,0,2,0,6,0,0,0,0,156,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,52,0,32,0,0,0,0,3,29,8,64,0,0,0,0,1,0,0,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,85,2,0,0,122,0,352,0,0,0,65,6,0,0,0,0,0,0,0,0,0,33,1,0,0,0,3,0,0,0,0,0,93,52,0,0,0,0,0,0,0,0,37,0,0,59,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,13,145,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,51,5 +0,0,0,5,0,22,88,0,146,21,47,0,0,0,25,0,25,0,6,2,0,0,0,2,0,1,3,0,4,0,1,0,0,0,8,0,22,6,15,0,243,0,0,0,1,0,0,5,0,0,0,0,2,199,0,0,0,0,0,1,0,0,2,0,0,34,0,0,1838,22,364,0,5,0,0,0,0,0,21,0,0,0,0,0,1,7,184,0,0,8,0,0,3,128,0,1033,195,8,0,0,2,0,625,0,23,0,0,751,0,0,0,0,8,0,4,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,357,0,91,0,0,0,4,15,43,1068,215,0,0,0,0,1,0,0,0,0,0,0,0,0,902,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,0,0,0,0,0,0,8,26,187,5,0,0,347,0,992,0,0,0,268,28,0,0,0,0,0,0,0,0,0,337,1,0,0,0,4,0,0,0,0,2,113,361,0,0,441,0,0,0,0,3,151,0,0,156,0,0,1,0,0,0,0,0,10,0,1,0,7,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,13,0,0,0,0,1,30,368,0,9,0,0,0,0,0,0,318,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,25,0,0,0,0,0,0,0,0,0,0,0,0,0,5,266,514,5 +15,0,0,21,7,167,42,25,294,42,30,0,0,6,103,1,2388,0,9,25,0,6,6,10,12,27,48,0,61,0,16,0,0,7,94,1749,174,385,86,0,809,0,0,0,1,0,0,17,0,0,0,0,37,678,0,0,0,0,0,1,0,0,0,9,0,68,0,0,32141,167,3472,0,73,0,0,0,0,2,87,18,0,0,0,0,13,73,8232,0,25,94,7,0,3,28,0,790,60,31,0,0,4,7,3091,0,57,14,0,6115,0,0,0,0,41,3,2,0,0,0,0,1,0,0,0,55,7,0,0,0,0,0,0,1,0,0,0,2,0,0,0,10,0,0,0,5,0,0,1,1,0,0,43,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,1,0,28,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,245,12,12,12,0,0,0,4691,0,353,0,0,0,75,266,670,42131,4597,0,0,0,0,1,0,4,0,0,0,0,0,0,3081,0,0,0,0,0,0,0,0,0,0,0,0,17,1,9,0,0,0,0,1,0,221,109,1436,56,0,0,1405,0,2798,0,1,0,860,127,0,0,0,0,0,0,7,0,0,2873,1,0,0,0,59,0,0,0,0,31,326,386,0,0,121,0,5,0,0,0,8498,1,0,2538,13,0,1,1,0,0,0,0,41,0,0,0,1,0,0,0,0,0,54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,1,0,0,0,0,13,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,1,193,1,1,1,0,315,0,0,0,0,57,268,1776,0,138,14,0,1,0,0,0,1529,13,0,0,0,0,0,0,0,0,0,0,0,9,0,1,50,0,0,0,0,0,0,0,0,0,0,0,9,0,8,2871,401,5 +1,0,0,12,0,61,16,0,102,17,20,0,1,2,42,0,92,0,7,8,0,0,0,6,6,9,24,0,22,0,1,0,0,0,31,0,61,104,43,0,240,0,0,0,0,0,0,1,0,0,0,0,13,186,0,0,0,0,0,1,0,0,0,0,0,34,0,0,2098,61,310,0,23,0,0,0,0,0,6,0,0,0,0,0,6,8,124,0,0,31,0,0,3,29,0,378,45,1,0,0,8,0,450,0,17,0,3,2335,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,189,0,97,0,0,0,26,103,135,438,177,0,0,0,0,1,0,0,0,0,0,0,0,0,496,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,34,49,384,13,0,0,296,0,1191,0,0,0,162,118,0,0,0,0,0,0,0,0,0,282,1,0,0,0,20,0,0,0,0,10,166,81,0,0,99,0,0,0,1,0,542,0,0,152,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,19,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,88,1,1,1,0,78,0,0,0,0,1,92,132,0,56,0,0,0,0,0,0,200,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,353,107,5 +0,0,0,10,0,56,165,0,168,22,67,0,0,7,21,0,1095,0,7,2,0,0,0,9,2,11,9,0,39,0,6,0,0,0,12,22555,56,6,9,0,210,0,0,0,1,0,0,5,0,0,0,0,9,981,0,0,0,0,0,1,0,0,0,2,0,28,0,0,43468,56,1679,0,42,0,0,0,0,0,107,0,0,0,0,0,9,250,8015,0,0,12,0,0,3,86,0,1354,165,7,0,0,2,0,1696,0,16,439,0,6940,0,0,0,0,13,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,12,12,12,0,0,0,2034,0,122,0,0,0,33,55,886,4375,2008,0,0,0,0,1,0,6,0,0,0,0,0,0,1316,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,2,0,106,62,491,10,0,0,656,0,734,0,0,0,449,76,0,0,0,0,0,0,0,0,0,1530,1,0,0,0,13,0,0,0,0,5,190,280,0,0,758,0,0,0,0,0,6046,1,0,607,49,0,1,2,1,0,0,0,8,0,0,0,7,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,49,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,74,1,1,1,0,113,0,0,0,0,1,68,579,0,53,12,0,0,0,0,0,303,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3156,120,5 +0,0,0,16,0,60,108,0,543,95,97,0,0,19,119,0,108,0,7,6,0,0,0,2,1,6,18,0,11,0,1,0,0,0,38,0,60,302,55,0,1228,0,0,0,1,0,0,17,0,0,0,0,6,533,0,0,0,0,0,1,0,0,0,0,0,165,0,0,7444,60,1131,0,12,0,0,0,0,0,71,0,0,0,0,0,2,20,847,0,0,38,0,0,1,473,0,3228,15,30,0,0,2,0,2898,0,50,0,19,2976,0,0,0,0,10,0,1,0,0,0,0,1,0,0,0,10,0,0,2,0,0,0,0,0,0,0,0,0,0,0,4,18,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,747,0,261,0,0,0,12,113,115,4730,727,0,0,0,0,1,0,0,0,0,0,0,0,0,2160,0,0,0,0,0,0,0,0,0,0,0,0,17,0,14,0,0,0,0,0,0,13,117,505,26,0,0,746,0,1236,0,0,0,610,79,0,0,0,0,0,0,15,0,0,1001,1,0,0,0,9,0,0,0,0,5,236,1818,0,0,46,0,0,0,6,3,717,0,0,713,0,0,1,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,61,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,1,0,0,68,1,1,1,0,155,0,0,0,0,1,98,1284,0,36,0,0,0,0,0,0,1332,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,97,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1453,748,5 +0,0,0,4,0,10,2,0,11,3,3,0,0,0,7,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,20,0,0,0,1,0,0,1,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,8,0,0,254,10,38,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,34,0,0,2,0,0,0,0,0,7,0,2,0,0,2,0,16,0,5,0,0,139,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,39,0,29,0,0,0,0,3,24,9,60,0,0,0,0,1,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,8,79,4,0,0,110,0,161,0,0,0,59,3,0,0,0,0,0,0,0,0,0,44,1,0,0,0,2,0,0,0,0,0,92,46,0,0,0,0,1,0,0,0,198,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,147,0,1,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,59,22,5 +2,0,0,17,0,57,133,0,228,58,76,0,1,3,82,7,96,0,8,8,0,0,0,8,7,10,33,0,19,0,1,0,0,0,34,0,57,155,42,0,516,0,0,0,1,0,0,2,0,0,0,0,11,252,0,0,0,0,0,1,0,0,3,0,0,81,0,0,8813,57,704,0,20,0,0,0,0,0,9,0,0,0,0,0,9,17,1337,0,0,34,0,0,5,178,0,1524,270,3,0,0,19,0,1249,0,66,4,4,2708,0,0,2,0,22,0,5,0,0,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,1025,0,161,0,0,0,22,117,111,1637,854,0,0,0,0,1,0,0,0,0,0,0,0,0,2648,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,0,13,97,443,19,4,0,469,0,1139,1,2,0,364,137,0,0,0,0,0,0,4,0,0,634,1,0,0,0,21,2,0,0,0,9,172,406,0,0,652,0,0,0,0,4,910,0,0,1197,0,0,1,0,1,0,0,0,6,0,0,0,8,0,0,0,0,0,58,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,1,7,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,101,0,0,0,0,1,91,287,0,63,0,0,0,0,0,0,536,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,64,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1073,166,5 +17,0,0,7,1,57,366,1,668,14,157,0,0,0,27,0,91,0,9,10,0,0,0,8,2,2,6,0,10,0,1,0,0,1,32,0,58,275,18,0,1055,0,0,0,1,0,0,3,0,0,0,0,5,318,0,3,0,0,0,1,0,0,1,0,0,32,0,0,3717,57,1335,0,11,0,0,0,0,0,27,0,0,0,0,0,14,22,915,0,1,32,1,0,6,632,0,4886,740,4,0,0,4,1,2876,0,16,0,0,1906,0,0,0,0,26,5,1,0,0,0,0,1,0,0,0,8,0,0,4,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,2,0,0,0,0,0,0,0,25,0,1,0,0,1,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,596,0,173,0,0,0,10,35,119,6167,622,0,0,0,0,1,0,0,0,0,0,0,0,0,2317,0,0,0,0,0,0,0,0,0,14,0,0,5,0,0,0,0,0,0,10,3,126,44,561,15,0,0,885,0,2277,0,1,0,658,91,0,0,0,0,0,0,0,0,0,1318,1,0,0,0,20,0,0,0,0,5,186,1269,0,0,2354,0,0,0,2,1,638,0,0,82,0,0,1,4,0,0,0,0,5,0,3,0,8,0,0,0,0,0,12,6,0,2,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,62,1,1,1,0,28,0,0,0,0,9,90,391,0,19,0,0,0,0,0,0,1297,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,20,0,0,0,0,0,0,0,0,0,0,0,1,0,3,636,267,5 +2,0,0,7,0,48,183,0,88,1,157,0,0,8,6,0,251,0,7,3,0,0,0,7,1,10,0,0,74,0,1,0,0,0,3,8097,48,6,1,0,121,0,0,0,1,0,0,8,0,0,0,0,3,1289,0,0,0,0,0,1,0,0,0,0,0,7,0,0,89245,48,1202,0,72,0,0,0,0,0,337,0,0,0,0,0,8,1542,17289,0,0,3,0,0,1,37,0,1858,45,14,0,0,2,0,758,0,2,1094,0,9155,0,0,0,0,0,2,6,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,12,12,12,0,0,0,5390,0,133,0,0,0,68,72,4248,6669,5291,0,0,0,0,1,0,4,0,0,0,0,0,0,1436,0,0,0,0,0,0,0,0,0,0,0,0,8,1,6,0,0,0,0,1,0,132,18,487,7,0,0,880,0,858,0,0,0,679,23,0,0,0,0,0,0,4,0,0,700,1,0,0,0,11,0,0,0,0,2,259,295,0,0,1265,0,0,0,0,0,8348,1,0,927,153,0,1,3,0,0,0,0,17,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,153,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,263,0,0,0,0,1,51,739,0,73,12,0,0,0,0,0,216,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5151,76,5 +0,0,0,4,0,13,4,0,27,3,8,0,0,0,7,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,13,6,0,0,33,0,0,0,1,0,0,1,0,0,0,0,0,96,0,0,0,0,0,1,0,0,0,0,0,9,0,0,540,13,62,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,39,0,0,2,0,0,1,11,0,102,20,2,0,0,2,0,74,0,5,0,0,435,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,32,0,0,0,0,3,29,67,61,0,0,0,0,1,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,8,106,4,0,0,155,0,435,0,0,0,79,9,0,0,0,0,0,0,0,0,0,67,1,0,0,0,2,0,0,0,0,0,100,84,0,0,40,0,1,0,0,0,28,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,15,211,0,1,0,0,0,0,0,0,46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,56,62,5 +6,0,0,17,2,58,28,5,94,26,15,0,1,2,44,0,107,0,9,11,0,1,0,3,1,4,12,0,12,0,1,0,0,1,37,0,60,253,25,0,181,0,0,0,1,0,0,1,0,0,0,0,7,274,0,0,0,0,0,1,0,0,0,0,0,28,0,0,1108,58,318,0,13,0,0,0,0,0,4,3,0,0,0,0,4,6,94,0,5,37,1,0,2,16,0,264,30,2,0,0,4,2,306,0,24,0,3,2717,0,0,4,0,14,0,1,0,0,0,0,1,0,0,0,13,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,201,0,98,0,0,0,14,57,120,658,170,0,0,0,0,1,0,0,0,0,0,0,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,115,51,510,27,0,0,463,0,2109,0,1,0,211,127,0,3,0,0,0,0,0,0,0,300,1,0,0,0,16,0,0,0,0,8,187,83,0,0,102,0,0,0,0,0,569,0,0,16,0,0,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,73,1,1,1,0,50,0,0,0,0,17,97,184,0,29,0,0,0,0,0,0,188,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,28,0,0,0,0,0,0,0,0,0,0,0,3,0,3,254,98,5 +1,0,0,7,1,42,32,1,45,3,9,0,0,9,7,0,114,0,8,3,0,0,0,7,0,10,0,0,5,0,1,0,0,1,7,4513,43,54,0,0,63,0,0,0,1,0,0,1,0,0,0,0,1,376,0,0,0,0,0,1,0,0,0,4,0,4,0,0,10655,42,178,0,3,0,0,0,0,0,13,0,0,0,0,0,9,24,1876,0,1,7,1,0,1,0,0,272,30,1,0,0,4,1,125,0,2,12,0,1558,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,842,0,43,0,0,0,1,4,287,425,838,0,0,0,0,1,0,5,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,217,32,375,8,0,0,429,0,448,0,1,0,162,11,0,0,0,0,0,0,0,0,0,224,1,0,0,0,10,0,0,0,0,1,152,43,0,0,16,0,2,0,0,0,916,1,0,24,6,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,45,1,1,1,0,5,0,0,0,0,9,50,152,0,4,12,0,0,0,0,0,97,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,2,582,35,5 +0,0,0,7,0,27,3,0,12,1,5,0,0,0,10,0,20,0,7,2,0,0,0,1,1,0,0,0,6,0,1,0,0,0,12,0,27,6,5,0,61,0,0,0,1,0,0,2,0,0,0,0,2,70,0,0,0,0,0,1,0,0,0,16,0,9,0,0,287,27,58,0,7,0,0,0,0,0,6,0,0,0,0,0,1,4,33,0,0,12,0,0,0,0,0,30,0,3,0,0,2,0,32,0,4,0,0,300,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,53,0,52,0,0,0,4,12,55,55,56,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,175,7,0,0,135,0,404,0,0,0,63,16,0,0,0,0,0,0,0,0,0,57,1,0,0,0,4,0,0,0,0,3,117,12,0,0,0,0,0,0,8,0,67,0,0,14,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,8,0,0,0,0,1,39,60,0,7,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,113,22,5 +0,0,0,6,0,17,2,0,21,0,3,0,0,0,3,0,20,0,6,1,0,0,0,1,0,0,3,0,1,0,1,1,0,0,5,0,17,6,0,0,13,0,0,0,1,0,0,9,0,0,0,0,1,146,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1552,17,104,0,3,0,0,0,0,0,33,0,0,0,0,2,1,15,263,0,0,5,0,0,0,0,0,23,0,14,0,0,2,0,39,0,1,0,0,274,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,253,0,113,0,0,0,2,8,38,43,249,0,0,0,0,1,0,0,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,9,0,6,0,0,0,0,0,0,8,6,113,6,0,0,227,0,355,0,0,0,152,9,0,0,0,0,0,0,8,0,0,55,1,0,0,0,2,0,0,0,0,2,99,114,0,0,0,0,0,0,0,0,91,0,0,233,0,0,1,0,1,0,0,0,20,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,4,0,0,0,0,1,22,488,0,6,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,318,44,5 +0,0,0,15,0,79,81,0,288,40,87,0,1,5,63,0,97,0,7,8,0,0,0,15,5,17,33,0,22,0,3,1,0,0,33,0,79,108,31,0,530,0,0,0,1,0,0,1,0,0,0,0,14,357,0,0,0,0,0,1,0,0,0,3,0,57,0,0,4538,79,703,0,25,0,0,0,0,0,9,0,0,0,0,0,17,24,280,0,0,33,0,0,7,227,0,2052,380,3,0,0,2,0,1378,0,40,0,4,3258,0,0,0,0,10,0,5,0,0,0,0,1,0,0,0,22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,33,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,78,10,10,10,0,0,0,313,0,179,0,0,0,26,106,263,1471,421,0,0,0,0,1,0,3,0,0,0,0,0,0,1242,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,43,62,472,16,0,0,490,0,1146,0,0,0,316,81,0,30,0,0,0,0,0,0,0,629,1,0,0,0,28,0,0,0,0,11,188,498,0,0,937,0,0,0,0,1,557,0,0,47,3,0,1,72,1,0,0,0,9,0,0,0,4,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,3,6,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,100,1,1,1,0,86,0,0,0,0,1,112,260,0,67,9,0,0,0,1,0,563,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,58,29,0,0,0,0,0,0,0,0,0,0,0,0,2,517,159,5 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,25,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,10,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,15,0,0,0,0,3,21,4,29,0,0,0,0,1,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,37,0,34,0,0,0,7,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,6,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,4,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,4,5 +1,0,0,16,1,45,32,1,71,6,19,0,0,2,15,1,93,0,9,8,0,0,0,6,8,9,3,0,22,0,1,0,0,1,12,0,46,163,21,0,183,0,0,0,1,0,0,3,0,0,0,0,14,228,0,0,0,0,0,1,0,0,0,2,0,16,0,0,1712,45,235,0,21,0,0,0,0,0,13,0,0,0,0,2,8,19,270,0,1,12,1,0,4,32,0,518,50,3,0,0,4,1,263,0,7,0,0,1076,0,0,0,0,3,0,3,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,10,10,10,0,0,0,236,0,64,0,0,0,26,62,183,395,218,0,0,0,0,1,0,2,0,0,0,0,0,0,421,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,148,38,508,25,0,0,436,0,1632,0,1,0,195,31,0,0,0,0,0,0,0,0,0,242,1,0,0,0,22,0,0,0,0,14,202,116,0,0,97,0,1,0,0,0,548,0,0,157,3,0,1,1,0,0,0,0,4,0,0,0,2,0,0,0,0,0,6,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,53,1,1,1,0,31,0,0,0,0,9,58,192,0,26,9,0,0,0,0,0,175,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,14,0,0,0,0,0,0,0,0,0,0,0,1,0,2,486,119,5 +6,0,0,10,1,68,62,1,136,6,33,0,0,9,18,0,164,0,9,7,0,0,0,9,0,14,15,0,17,0,1,0,0,1,17,5536,69,54,18,0,190,0,0,0,1,0,0,4,0,0,0,0,6,816,0,0,0,0,0,1,0,0,1,3,0,22,0,0,93241,68,427,0,14,0,0,0,0,0,43,0,0,0,0,0,10,57,15147,0,1,17,1,0,3,51,0,775,110,6,0,0,4,1,515,0,12,60,0,4247,0,2,2,0,6,2,2,0,1,0,0,1,0,0,0,19,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,12,12,12,0,0,0,12855,0,149,0,0,0,12,57,583,1188,12739,0,0,0,0,1,0,6,0,0,0,0,0,0,802,2,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,1,0,216,40,556,11,0,0,634,0,849,0,1,0,308,48,0,0,0,0,0,0,0,0,0,431,1,0,0,0,16,0,0,0,0,5,229,172,0,0,247,0,0,0,0,2,2555,1,0,163,19,0,1,1,0,0,0,0,7,0,1,0,6,0,0,0,0,0,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,19,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,86,1,1,1,0,45,0,0,0,0,9,86,358,0,33,14,0,0,0,0,0,271,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,14,0,0,0,0,0,0,0,0,0,0,0,1,0,3,1558,87,5 +2,0,0,9,16,54,22,33,271,79,46,0,0,0,161,0,243,0,91,25,0,16,31,4,6,10,36,0,27,0,4,2,0,16,14,0,84,93,329,0,484,0,0,0,1,0,0,9,0,0,0,0,20,627,0,0,0,0,0,1,0,0,0,0,0,120,0,0,9741,54,2525,0,37,9,0,1,0,0,40,48,0,0,0,0,6,16,863,0,33,14,16,0,2,61,0,739,105,12,0,0,2,16,948,0,83,0,0,3226,0,0,0,0,15,0,35,0,0,0,0,1,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,13,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,15,64,15,15,15,0,0,15,908,15,224,0,0,0,37,525,189,958,924,0,0,0,0,1,0,1,0,0,0,1,1,0,2855,0,0,0,0,0,0,0,0,0,1,0,0,9,0,2,0,0,0,0,0,0,10,93,1097,25,0,0,1280,0,1461,0,0,0,649,97,0,8,0,0,0,0,0,0,0,834,1,0,0,0,82,0,0,0,0,15,344,299,0,0,261,0,12,0,0,0,2261,0,0,1797,0,0,1,9,0,0,0,0,22,0,0,0,2,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,66,1,1,1,0,357,0,0,0,0,549,98,811,0,79,0,0,0,0,0,0,525,19,0,0,0,0,0,0,0,0,0,0,0,30,0,1,83,3,0,0,0,0,0,0,0,0,0,0,25,0,9,5472,280,5 +0,0,0,5,0,22,3,0,8,3,4,0,0,0,10,0,16,0,6,3,0,0,0,0,0,1,3,0,2,0,1,0,0,0,9,0,22,6,6,0,36,0,0,0,1,0,0,0,0,0,0,0,1,45,0,0,0,0,0,1,0,0,0,0,0,11,0,0,213,22,42,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,9,0,0,0,0,0,10,0,0,0,0,2,0,47,0,7,0,0,366,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,24,0,36,0,0,0,2,14,38,33,35,0,0,0,0,1,0,0,0,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,15,92,5,0,0,106,0,411,0,0,0,61,12,0,0,0,0,0,0,0,0,0,47,0,0,0,0,3,0,0,0,0,1,108,29,0,0,0,0,0,0,0,2,57,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,16,0,0,0,0,1,31,37,0,7,0,0,0,0,0,0,39,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,60,5 +0,0,0,5,0,36,8,0,43,3,3,0,0,2,6,0,685,0,7,3,0,0,0,6,0,10,0,0,3,0,1,0,0,0,2,945,36,9,0,0,32,0,0,0,1,0,0,7,0,0,0,0,1,368,0,0,0,0,0,1,0,0,0,0,0,8,0,0,34524,36,801,0,1,0,4,0,0,0,44,0,0,0,0,0,8,23,5933,0,0,2,0,0,0,0,0,96,5,14,0,0,2,0,711,0,4,0,0,1779,0,0,0,0,0,0,7,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,4879,0,96,0,0,0,0,3,254,387,4873,0,0,0,0,1,0,4,0,0,0,0,0,0,663,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,32,14,245,5,0,0,440,0,717,0,0,0,275,11,0,0,0,0,0,0,0,0,0,754,1,0,0,0,9,0,0,0,0,0,119,214,0,0,0,0,0,0,0,1,2104,1,0,332,7,0,1,1,1,0,0,0,19,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,0,0,0,0,0,1,38,619,0,2,12,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,6,776,121,5 +3,0,0,10,2,63,59,2,163,2,14,0,0,9,12,0,1316,0,11,3,0,0,0,8,0,11,0,0,6,0,1,0,0,2,23,7988,65,320,0,0,137,0,0,0,1,0,0,2,0,0,0,0,1,402,0,0,0,0,0,1,0,0,0,5,0,7,0,0,26479,63,1514,0,3,0,0,0,0,0,23,0,0,0,0,0,10,38,3652,0,2,23,2,0,2,0,0,356,30,4,0,0,6,2,1476,0,5,24,0,2931,0,0,0,0,5,3,3,0,0,0,0,1,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,84,0,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,1737,0,89,0,0,0,1,4,527,859,1814,0,0,0,0,1,0,4,0,0,0,0,0,0,5221,3,0,0,0,0,0,0,0,0,0,0,0,2,4,2,0,0,0,0,1,0,333,44,684,12,0,0,843,0,1386,0,2,0,446,148,0,0,0,0,0,0,2,0,0,1584,1,0,0,0,11,0,0,0,0,2,204,151,0,0,31,0,4,0,0,0,4737,1,0,3882,11,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,3,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,129,1,1,1,0,5,0,0,0,0,17,88,345,0,4,14,0,0,0,0,0,503,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,8,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2032,164,5 +6,0,0,25,0,121,178,0,608,49,147,1,1,10,103,0,2374,0,7,11,0,0,0,15,21,21,39,0,57,0,2,0,0,0,43,1866,121,398,73,0,1182,0,0,0,1,0,0,7,0,0,0,0,31,2631,0,0,0,0,0,1,0,0,3,1,0,153,0,0,17772,121,3596,0,56,0,0,0,0,0,56,0,0,0,0,0,18,47,1933,0,0,43,0,0,10,478,0,4232,420,14,0,0,4,0,5080,0,55,12,6,8220,0,0,0,0,19,5,9,0,0,0,0,1,0,0,0,16,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,30,1,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,12,12,12,0,0,0,759,0,238,0,0,0,62,215,504,3940,727,0,0,0,0,1,0,3,0,0,0,0,0,0,2011,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,130,100,888,30,0,0,945,0,2939,0,0,0,639,126,0,0,0,0,0,0,0,0,0,3429,1,0,0,0,47,0,0,0,0,29,265,1263,0,0,1008,0,0,0,0,3,6508,1,0,453,15,0,1,1,1,0,0,0,19,0,1,0,16,0,0,0,0,0,54,1,0,5,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,15,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,170,1,1,1,0,162,0,0,0,0,1,164,857,0,105,14,0,0,0,0,0,1299,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,65,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1512,283,5 +0,0,0,6,0,18,71,0,149,19,50,0,0,0,25,0,23,0,7,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,7,0,18,6,3,0,240,0,0,0,1,0,0,2,0,0,0,0,1,170,0,0,0,0,0,1,0,0,2,0,0,38,0,0,695,18,319,0,3,0,0,0,0,0,6,0,0,0,0,0,1,4,72,0,0,7,0,0,5,131,0,1065,215,3,0,0,2,0,629,0,22,0,0,470,0,0,0,0,13,0,3,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,232,0,66,0,0,0,2,11,41,900,118,0,0,0,0,0,0,0,0,0,0,0,0,0,648,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,25,142,6,0,0,203,0,468,0,0,0,135,85,0,0,0,0,0,0,0,0,0,325,1,0,0,0,3,0,0,0,0,2,104,258,0,0,472,0,0,0,0,3,72,0,0,14,0,0,1,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,19,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,6,0,0,0,0,1,25,139,0,7,0,0,0,0,0,0,305,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,164,75,5 +1,0,0,13,0,69,17,0,113,46,29,0,1,4,68,0,86,0,7,9,0,0,0,12,3,7,24,0,33,0,1,0,0,0,44,0,69,99,59,0,325,0,4,0,1,0,0,4,0,0,0,0,16,267,0,0,0,0,0,1,0,0,0,3,0,66,0,0,5714,69,406,0,34,0,0,0,0,0,19,0,0,0,4,0,7,15,2048,0,0,44,0,0,4,71,0,771,80,6,0,0,2,0,699,0,47,0,5,1813,0,0,0,0,8,0,1,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,1484,0,124,0,0,0,32,101,121,745,1495,0,0,0,0,1,0,4,0,0,0,0,0,0,591,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,13,64,426,18,0,0,426,0,879,0,0,0,310,61,0,0,0,0,0,0,0,0,0,325,1,0,0,0,24,0,0,0,0,16,186,269,0,0,191,0,0,0,0,0,784,0,0,812,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,81,1,1,1,0,79,0,0,0,0,1,113,419,0,65,0,0,2,0,0,0,321,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,52,0,0,0,0,0,0,0,0,0,0,0,0,0,4,579,101,5 +0,0,0,2,0,9,2,0,17,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,0,0,1,0,0,5,0,0,0,0,0,91,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1375,9,73,0,1,0,0,0,0,0,22,0,0,0,0,0,1,10,157,0,0,1,0,0,0,0,0,15,0,8,0,0,2,0,16,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,148,0,73,0,0,0,0,3,23,12,162,0,0,0,0,1,0,0,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,3,98,2,0,0,182,0,233,0,0,0,122,10,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,91,102,0,0,0,0,0,0,0,0,74,0,0,192,0,0,1,0,0,0,0,0,13,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,334,0,1,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,203,41,5 +0,0,0,16,0,57,22,0,100,27,34,0,1,5,53,0,57,0,7,7,0,0,0,5,1,10,12,0,14,0,8,0,0,0,15,0,57,67,14,0,299,0,0,0,1,0,0,2,0,0,0,0,12,265,0,0,0,0,0,1,0,0,0,0,0,30,0,0,3458,57,299,0,20,0,0,0,0,0,12,0,0,0,0,0,8,17,544,0,0,15,0,0,1,53,0,573,95,4,0,0,2,0,486,0,23,0,4,1747,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,10,10,10,0,0,0,359,0,120,0,0,0,22,69,236,486,367,0,0,0,0,1,0,3,0,0,0,0,0,0,823,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,37,49,437,16,0,0,268,0,622,0,0,0,122,52,0,0,0,0,0,0,0,0,0,279,1,0,0,0,13,0,0,0,0,12,161,118,0,0,361,0,0,0,0,0,444,0,0,684,3,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,28,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,74,1,1,1,0,106,0,0,0,2,1,72,115,0,35,9,0,0,0,0,0,179,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,239,5 +1,0,0,11,0,32,73,0,165,25,50,0,0,0,36,0,52,0,7,6,0,0,0,1,2,5,15,0,13,0,1,0,0,0,15,0,32,6,20,0,282,0,0,0,1,0,0,6,0,0,0,0,7,570,0,0,0,0,0,1,0,0,3,0,0,48,0,0,13037,32,421,0,14,0,0,0,0,1,24,0,0,0,0,0,1,10,1053,0,0,15,0,0,4,126,0,1065,215,10,0,0,2,0,707,0,32,0,0,1126,0,0,0,0,15,0,5,0,0,0,0,1,0,0,0,26,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,1316,0,137,0,0,0,14,53,62,1099,1081,0,0,0,0,1,0,0,0,0,0,0,0,0,4115,0,0,0,0,0,0,0,0,0,2,0,0,6,0,0,0,0,0,0,0,0,8,44,500,14,0,0,364,0,696,0,0,0,277,523,0,0,0,0,0,0,2,0,0,383,1,0,0,0,9,0,0,0,0,6,124,345,0,0,491,0,0,0,0,4,1083,0,0,3517,0,0,1,0,0,0,0,0,13,0,1,0,8,0,0,0,0,0,25,1,0,4,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,43,0,1,0,0,1,47,462,0,34,0,0,1,0,0,0,351,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,29,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1215,131,5 +0,0,0,2,0,13,2,0,11,0,2,0,0,0,2,0,15,0,6,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,4,0,13,6,0,0,7,0,0,0,1,0,0,1,1,0,0,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1102,13,146,0,1,0,0,0,1,0,78,0,0,0,0,0,2,4,290,0,0,4,0,0,0,0,0,9,0,4,0,0,2,0,8,0,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,177,0,85,0,0,0,0,3,31,42,188,0,0,0,0,1,0,0,0,0,0,0,0,0,820,0,0,0,0,35,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,112,2,0,0,134,0,193,0,0,0,76,23,0,0,0,0,0,0,0,0,0,38,1,0,2,0,3,0,0,0,0,0,95,20,0,0,0,0,0,0,0,0,133,0,0,147,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,17,60,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,285,33,5 +0,0,0,5,0,16,18,0,41,7,13,0,0,0,12,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,16,6,0,0,81,0,0,0,1,0,0,1,0,0,0,0,0,336,0,0,0,0,0,1,0,0,0,0,0,19,0,0,1378,16,99,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,24,0,0,4,0,0,2,33,0,276,45,1,0,0,2,0,172,0,9,0,0,401,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,41,0,41,0,0,0,0,3,34,217,51,0,0,0,0,1,0,0,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,8,12,116,5,0,0,220,0,957,0,0,0,156,13,0,0,0,0,0,0,0,0,0,107,1,0,0,0,2,0,0,0,0,1,101,177,0,0,110,0,0,0,0,0,28,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,0,0,0,0,0,1,20,429,0,1,0,0,0,0,0,0,95,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,78,29,5 +2,0,0,5,0,15,17,0,38,3,12,0,0,0,7,0,23,0,7,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,5,0,15,6,3,0,65,0,0,0,1,0,0,1,0,0,0,0,1,75,0,0,0,0,0,1,0,0,0,0,0,14,0,0,531,15,100,0,3,0,0,0,0,0,6,0,0,0,0,0,1,3,77,0,0,5,0,0,2,29,0,250,40,1,0,0,2,0,167,0,4,0,0,321,0,0,0,0,4,2,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,94,0,43,0,0,0,2,11,36,176,104,0,0,0,0,1,0,1,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,7,117,5,0,0,144,0,424,0,0,0,86,6,0,0,0,0,0,0,0,0,0,104,1,0,0,0,3,0,0,0,0,2,103,96,0,0,91,0,0,0,0,0,85,0,0,75,0,0,1,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,6,0,0,0,0,1,20,109,0,7,0,0,0,0,0,0,92,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,92,54,5 +8,0,0,11,0,33,135,0,337,18,103,0,1,3,34,0,58,0,7,5,0,0,0,2,3,3,15,0,17,0,4,0,0,0,16,0,33,157,24,0,522,0,8,0,1,0,0,12,0,0,0,0,10,453,0,0,0,0,0,1,0,0,2,0,0,39,0,0,7506,33,780,0,21,0,0,0,0,1,48,0,0,0,0,1,2,20,1568,0,0,16,0,0,6,297,0,2405,460,16,0,0,2,0,1459,0,21,0,6,1047,0,0,0,0,15,8,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,9,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,823,0,172,0,0,0,20,58,82,1804,811,0,0,0,0,1,0,0,0,0,0,0,0,0,2471,0,0,0,0,0,0,0,0,0,0,0,0,11,0,2,0,0,0,0,0,0,15,29,290,12,0,0,473,0,710,0,0,0,366,40,0,0,0,0,0,0,14,0,0,678,1,0,0,0,10,0,0,0,0,6,147,657,0,0,1272,0,0,0,0,1,1365,0,0,1847,0,0,1,0,1,0,0,0,19,0,1,0,12,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,364,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,43,0,0,0,0,1,49,730,0,39,0,0,1,0,0,0,665,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,26,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1181,154,5 +2,0,0,40,0,55,8,0,90,15,21,1,1,6,38,0,62,0,7,8,0,0,0,3,2,5,12,0,14,0,1,0,0,0,27,0,55,119,32,0,255,0,0,0,1,0,0,2,0,0,0,0,8,202,0,2,0,0,0,1,0,0,0,4,0,27,0,0,5713,55,233,0,15,0,0,0,0,0,7,0,0,0,0,0,4,7,576,0,0,27,0,0,2,38,0,507,65,2,0,0,2,0,413,0,16,0,3,3199,0,0,0,0,6,0,2,0,2,0,0,1,3,0,0,12,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,52,0,0,0,0,0,0,516,0,149,0,0,0,16,62,146,546,521,0,0,0,0,1,0,2,0,0,0,0,0,0,996,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,1,64,42,707,48,0,0,315,0,965,0,0,0,201,167,0,0,0,0,0,0,0,0,0,234,1,0,0,0,13,0,0,0,0,8,159,162,0,0,112,0,0,0,0,3,550,0,0,691,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,16,1,0,4,0,0,0,2,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,66,1,1,1,0,78,0,0,0,0,1,82,202,0,32,0,0,0,0,0,0,255,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,2,528,255,5 +0,0,0,1,0,25,75,0,130,12,41,0,2,0,14,0,41,0,7,4,0,0,0,1,0,2,9,0,6,0,1,0,0,0,12,0,25,71,11,0,250,0,0,0,0,0,0,0,0,0,0,0,3,107,0,0,0,0,0,1,0,0,1,0,0,12,0,0,640,25,311,0,7,0,0,0,0,0,0,0,0,0,0,0,1,1,46,0,0,12,0,0,3,108,0,879,185,0,0,0,4,0,573,0,7,0,0,952,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,229,0,46,0,0,0,6,29,55,1021,90,0,0,0,0,0,0,1,0,0,0,0,0,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,29,127,1,0,0,165,0,349,0,0,0,117,34,0,0,0,0,0,0,0,0,0,310,0,0,0,0,5,0,0,0,0,4,115,183,0,0,416,0,0,0,0,2,212,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,20,0,0,0,0,1,37,12,0,18,0,0,0,0,0,0,252,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,48,5 +2,0,0,13,0,56,54,0,185,43,47,0,1,3,65,0,82,0,7,7,0,0,0,1,2,5,21,0,16,0,1,0,0,0,35,0,56,108,38,0,434,0,0,0,1,0,0,2,0,0,0,0,8,336,0,0,0,0,0,1,0,0,2,0,0,58,0,0,3210,56,457,0,17,0,0,0,0,0,10,0,0,0,0,0,1,4,330,0,0,35,0,0,4,113,0,967,185,4,0,0,2,0,802,0,41,0,4,2258,0,0,0,0,7,0,3,0,0,0,0,1,0,0,0,30,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,277,0,150,0,0,0,16,85,102,865,293,0,0,0,0,1,0,0,0,0,0,0,0,0,1117,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,71,486,14,0,0,494,0,1453,0,0,0,333,91,0,0,0,0,0,0,3,0,0,444,1,0,0,0,10,0,0,0,0,7,215,335,0,0,415,0,0,0,0,2,521,0,0,277,0,0,1,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,44,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,66,1,1,1,0,87,0,0,0,0,1,91,587,0,43,0,0,0,0,0,0,385,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,47,0,0,0,0,0,0,0,0,0,0,0,0,0,2,784,233,5 +0,0,0,2,0,9,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,1,0,0,23,9,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,21,0,0,0,0,3,22,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,36,2,0,0,40,0,91,0,0,0,7,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,91,2,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,7,5 +1,0,0,16,2,56,87,2,180,37,40,0,1,2,65,0,171,0,11,9,0,0,0,2,1,5,15,0,12,0,1,0,0,2,26,0,58,409,23,0,343,0,0,0,1,0,0,1,0,0,0,0,6,292,0,0,0,0,0,1,0,0,1,0,0,46,0,0,12554,56,495,0,13,0,0,0,0,0,6,0,0,0,0,0,5,7,1372,0,2,26,2,0,4,76,0,741,145,1,0,0,6,2,635,0,38,0,3,2722,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,29,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,82,0,0,0,0,0,0,1327,0,106,0,0,0,12,58,126,1156,1134,0,0,0,0,1,0,0,0,0,0,0,0,0,2839,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,273,92,682,19,0,0,628,0,3961,0,2,0,268,126,0,0,0,0,0,0,0,0,0,557,1,0,0,0,12,0,0,0,0,6,202,170,0,0,294,0,0,0,0,5,1647,0,0,2478,0,0,1,8,0,0,0,0,1,0,0,0,3,0,0,0,0,0,39,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,81,1,1,1,0,50,0,0,0,0,17,84,160,0,33,0,0,0,0,1,0,313,9,0,0,0,0,0,0,0,0,0,0,0,2,0,1,39,0,0,0,0,0,0,0,0,0,0,0,2,0,2,1628,178,5 +0,0,0,11,0,33,18,0,99,30,22,0,1,2,44,0,53,0,7,5,0,0,0,6,1,2,12,0,8,0,1,0,0,0,16,0,33,92,12,0,163,0,0,0,1,0,0,1,0,0,0,0,4,193,0,3,0,0,0,1,0,0,0,0,0,29,0,0,1281,33,275,0,9,0,0,0,0,0,9,0,0,0,0,0,7,9,113,0,0,16,0,0,3,46,0,434,75,1,0,0,2,0,416,0,18,0,3,1717,0,0,0,0,2,0,3,0,0,0,0,1,7,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,183,0,95,0,0,0,8,35,93,383,238,0,0,0,0,1,0,0,0,0,0,0,0,0,586,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,52,238,12,0,0,274,0,928,0,0,0,188,38,7,1,0,0,0,0,0,0,0,246,1,0,0,0,12,0,0,0,0,5,135,183,0,0,205,0,0,0,0,0,361,0,0,8,0,0,1,15,0,0,0,0,1,0,2,0,1,0,0,0,0,0,31,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,16,0,0,0,0,1,49,256,0,23,0,0,0,0,0,0,193,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,34,6,0,0,0,0,0,0,0,0,0,0,0,0,1,308,183,5 +1,0,0,5,0,36,9,0,76,0,25,0,0,2,3,0,471,0,7,5,0,0,0,6,1,11,0,0,9,0,1,0,0,0,3,898,36,6,17,0,79,0,0,0,1,0,0,9,0,0,0,0,4,275,0,1,0,0,0,1,0,0,0,0,0,5,0,0,21730,36,685,0,7,0,0,0,0,0,60,0,0,0,0,0,8,31,5280,0,0,3,0,0,1,48,0,514,115,19,0,0,2,0,663,0,0,0,0,1473,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,12,12,12,0,0,0,4603,0,201,0,0,0,6,25,235,725,4574,0,0,0,0,1,0,4,0,0,0,0,0,0,1214,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,1,0,32,10,255,5,0,0,438,0,764,0,0,0,285,15,0,0,0,0,0,0,13,0,0,593,1,0,0,0,12,0,0,0,0,1,122,287,0,0,331,0,0,0,0,0,1514,1,0,604,5,0,1,1,1,0,0,0,37,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,27,0,0,0,0,1,39,668,0,9,12,0,1,0,0,0,165,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1015,82,5 +0,0,0,9,1,17,139,1,846,0,325,0,0,0,5,0,76,0,9,2,0,0,0,1,0,1,3,0,2,0,1,0,0,1,5,0,18,139,20,0,963,0,0,0,1,0,0,14,0,0,0,0,1,191,10,0,0,0,0,1,0,0,0,0,0,6,0,0,6372,17,1437,0,3,0,0,0,0,0,45,0,0,0,0,7,1,28,674,0,1,5,1,0,2,768,0,6182,1590,20,0,0,4,1,2971,0,2,16,0,2019,0,0,0,0,24,0,12,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,590,0,164,0,0,0,2,61,60,2604,612,0,0,0,0,1,0,0,0,0,0,0,0,0,1962,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,113,57,585,33,0,0,683,0,1034,0,1,0,493,75,0,0,0,0,0,0,2,0,0,1400,1,0,0,0,3,0,0,0,0,2,200,1439,0,0,7715,0,0,0,0,0,452,0,0,807,0,0,1,0,1,0,0,0,21,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,34,1,1,1,0,92,0,0,0,0,9,23,495,0,7,0,0,0,0,0,0,1320,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,5,949,370,5 +0,0,0,7,0,43,23,0,50,0,23,0,0,6,4,0,826,0,7,2,0,0,0,8,0,11,0,0,18,0,1,0,0,0,2,11649,43,6,0,0,56,0,0,0,1,0,0,4,0,0,0,0,1,511,0,0,0,0,0,1,0,0,0,0,0,4,0,0,31031,43,990,0,15,0,0,0,0,0,51,0,0,0,0,1,9,104,4776,0,0,2,0,0,1,7,0,386,35,9,0,0,2,0,936,0,0,81,0,2038,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,3125,0,60,0,0,0,9,12,643,1019,3090,0,0,0,0,1,0,4,0,0,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,0,0,4,1,2,0,0,0,0,1,0,84,19,321,7,0,0,412,0,560,0,0,0,230,12,0,0,0,0,0,0,0,0,0,939,1,0,0,0,10,0,0,0,0,1,169,99,0,0,138,0,0,0,0,0,2712,1,0,295,23,0,1,1,1,0,0,0,8,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,41,0,0,0,0,1,45,515,0,16,14,0,0,0,0,0,95,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,983,65,5 +2,0,0,12,1,73,341,1,570,40,152,0,0,2,58,0,126,0,31,9,0,0,0,7,3,17,24,0,20,0,2,0,0,1,25,0,74,113,41,0,998,0,0,0,1,0,0,2,0,0,0,0,12,433,4,0,0,0,0,1,0,0,5,2,0,93,0,0,13727,73,1278,0,21,0,0,0,0,0,14,0,0,0,0,0,9,18,3052,0,1,25,1,0,10,502,0,4098,605,2,0,0,4,1,2523,0,47,0,0,5288,0,0,0,0,45,1,13,0,0,0,0,1,1,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,1,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,10,10,10,0,0,0,2222,0,128,0,0,0,22,101,262,12799,2391,0,0,0,0,1,0,4,0,0,0,0,0,0,2597,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,149,88,1147,19,0,0,833,0,2400,0,1,0,540,231,0,0,0,0,0,0,0,0,0,1280,1,0,0,0,19,0,0,0,0,8,216,1016,0,0,1651,0,26,0,0,20,750,0,0,96,3,0,1,1,0,0,0,0,4,0,1,0,18,0,0,0,0,0,38,1,0,4,2,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,3,4,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,84,1,1,1,0,93,0,0,0,0,9,99,358,0,54,9,0,0,0,0,0,1141,7,0,0,0,0,0,0,0,0,0,0,0,2,0,1,52,0,0,0,0,0,0,0,0,0,0,0,1,0,3,787,264,5 +0,0,0,4,0,13,3,0,13,3,3,0,0,0,8,0,25,0,7,2,0,0,0,2,0,1,3,0,2,0,1,0,0,0,4,0,13,6,3,0,43,0,0,0,1,0,0,2,0,0,0,0,1,64,0,0,0,0,0,1,0,0,0,2,0,5,0,0,331,13,59,0,3,0,0,0,0,0,6,0,0,0,0,1,2,6,103,0,0,4,0,0,0,0,0,19,0,3,0,0,2,0,47,0,2,0,0,202,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,109,0,32,0,0,0,2,14,31,29,118,0,0,0,0,1,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,10,107,9,0,0,129,0,616,0,0,0,67,6,0,0,0,0,0,0,0,0,0,59,1,0,0,0,4,0,0,0,0,2,111,29,0,0,0,0,0,0,0,0,77,0,0,18,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,10,0,0,0,0,1,17,115,0,7,0,0,0,0,0,0,37,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,159,31,5 +0,0,0,4,1,16,2,4,26,0,4,0,0,0,4,0,20,0,6,3,0,1,1,1,0,0,0,0,0,0,1,0,0,1,2,0,17,6,60,0,10,0,0,0,1,0,0,6,0,0,0,0,0,135,0,1,0,0,0,1,0,0,0,0,0,3,0,0,2242,16,152,0,1,0,0,0,0,0,26,3,0,0,0,0,1,8,487,0,4,2,1,0,0,0,0,19,0,7,0,0,2,1,24,0,1,0,0,371,0,0,0,0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,325,0,103,0,0,0,0,3,37,14,339,0,0,0,0,1,0,0,0,0,0,0,0,0,770,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,10,4,154,5,0,0,222,0,340,0,0,0,128,13,0,0,0,0,0,0,7,0,0,62,1,0,0,0,6,0,0,0,0,0,98,98,0,0,0,0,0,0,0,0,397,0,0,429,0,0,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,0,0,0,0,0,9,19,291,0,1,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,6,472,77,5 +15,0,0,8,0,86,43,0,99,15,39,0,0,6,33,0,125,0,7,6,0,0,0,8,0,16,29,0,21,0,2,6,0,0,48,1193,86,6,32,0,331,0,0,0,1,0,0,12,0,0,0,0,12,500,0,0,0,0,0,1,0,0,0,0,0,30,0,0,50788,86,479,0,25,0,0,0,0,0,66,0,0,0,0,1,9,51,8209,0,0,48,0,0,2,48,0,663,90,20,2,0,2,0,636,0,19,17,0,5363,0,0,0,0,13,10,9,5,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,13,0,4,5,0,0,0,0,0,0,9,1,1,0,0,0,1,0,6,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,28,12,12,12,0,0,0,6609,0,208,0,0,0,24,146,537,1435,6581,0,0,0,0,1,0,7,0,0,0,0,0,0,1593,0,0,0,0,0,0,0,0,0,3,0,0,11,1,0,0,0,0,0,2,0,84,35,680,8,0,0,784,0,843,1,0,0,610,48,0,0,0,0,0,0,0,0,0,352,1,0,0,0,14,0,0,0,0,7,291,327,0,0,211,0,0,0,0,1,1642,1,0,680,13,0,1,1,1,0,0,0,30,0,0,0,4,0,0,0,0,0,17,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,13,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,134,1,1,1,0,145,0,0,0,0,1,134,945,0,60,14,0,0,0,0,0,252,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,7,2290,213,5 +0,0,0,7,0,51,24,0,65,5,9,0,0,2,10,0,552,0,7,4,0,0,0,7,0,10,0,0,4,0,1,0,0,0,12,978,51,25,0,0,92,0,0,0,1,0,0,14,0,0,0,0,1,526,0,0,0,1,0,1,0,0,0,0,0,14,0,0,50502,51,777,0,2,0,0,0,0,2,78,0,0,0,0,0,10,32,8997,0,0,12,0,0,1,22,0,287,25,28,0,0,2,0,701,0,8,0,0,2788,0,0,0,0,0,0,18,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,6,0,34,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,12,12,12,0,0,0,7342,0,193,0,0,0,0,3,289,666,7309,0,0,0,0,1,0,6,0,0,0,0,0,0,1359,0,0,0,0,0,0,0,0,0,0,0,0,14,1,1,0,0,0,0,1,0,34,18,316,8,0,0,691,0,2215,0,0,0,497,30,0,0,0,0,0,0,8,0,0,669,1,0,0,0,11,0,0,0,0,1,140,413,0,0,62,0,0,0,0,0,2290,1,0,640,10,0,1,1,0,0,0,0,36,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,1,0,0,0,0,11,65,1368,0,3,12,0,0,0,0,0,162,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,14,1257,123,5 +5,0,0,19,2,128,82,2,326,25,35,0,1,13,59,1,1330,0,11,7,0,0,0,9,58,20,51,0,99,0,3,6,0,2,43,8190,130,306,98,1,432,0,0,0,1,0,0,11,0,0,0,0,72,831,0,0,0,0,0,1,0,0,0,7,0,28,0,0,151642,128,2151,0,104,0,0,0,0,0,94,0,0,0,0,1,11,120,26578,0,2,43,2,0,4,12,0,1249,50,15,0,0,6,2,2204,0,21,96,7,13532,0,0,0,0,23,5,3,0,0,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,31,0,0,0,0,0,0,0,0,0,15,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,37,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,12,12,12,0,0,0,22501,0,244,0,0,0,151,449,945,2435,22368,0,0,0,0,1,0,7,0,0,0,0,0,0,2723,3,0,0,0,0,0,0,0,0,0,0,0,29,5,0,0,0,0,0,2,0,333,81,1268,27,0,0,1263,0,3324,0,2,0,712,317,0,0,0,0,0,0,0,0,0,1858,1,0,0,0,74,0,0,0,0,70,451,232,0,0,162,0,6,0,0,0,8105,1,0,1664,30,0,1,1,1,0,0,0,24,0,0,0,4,0,0,0,0,0,37,0,0,0,12,3,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,30,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,195,1,1,1,0,280,0,0,0,1,17,173,986,0,165,14,0,0,0,0,0,435,6,0,0,0,0,0,0,0,0,0,0,0,5,0,1,33,0,0,0,0,0,0,0,0,0,0,0,2,0,8,3428,667,5 +1,0,0,7,1,47,34,1,74,2,10,0,0,9,7,0,1132,0,9,3,0,0,0,7,0,11,3,0,9,0,2,0,0,1,9,5416,48,54,3,0,64,0,0,0,1,0,0,2,0,0,0,0,3,451,0,0,0,0,0,1,0,0,0,2,0,4,0,0,18801,47,1243,0,8,0,0,0,0,0,23,0,0,0,0,0,8,37,3206,0,1,9,1,0,1,0,0,292,30,3,0,0,4,1,1163,0,2,29,0,1707,0,0,0,0,3,1,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,1721,0,66,0,0,0,6,12,416,622,1702,0,0,0,0,1,0,4,0,0,0,0,0,0,2065,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,1,0,216,29,403,8,0,0,447,0,686,0,1,0,166,13,0,0,0,0,0,0,0,0,0,1275,1,0,0,0,10,0,0,0,0,2,166,28,0,0,29,0,0,0,0,0,3693,1,0,2257,8,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,53,1,1,1,0,18,0,0,0,0,9,57,154,0,13,12,0,0,0,0,0,122,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1645,56,5 +0,0,0,4,0,20,2,0,9,0,3,0,0,0,5,0,18,0,7,1,0,0,0,1,1,0,0,0,3,0,1,0,0,0,8,0,20,6,3,0,21,0,2,0,1,0,0,3,0,0,0,0,1,64,0,0,0,0,0,1,0,0,0,5,0,6,0,0,1323,20,61,0,4,0,0,0,0,0,15,0,0,0,0,0,1,9,496,0,0,8,0,0,0,0,0,24,0,5,0,0,2,0,18,0,3,0,0,390,0,0,0,0,3,0,3,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,93,0,44,0,0,0,2,8,48,37,96,0,0,0,0,1,0,0,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,3,0,0,3,0,5,0,0,0,0,0,0,8,6,136,4,0,0,167,0,361,0,0,0,103,20,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,2,111,59,0,0,0,0,0,0,0,0,256,0,0,772,0,0,1,0,1,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,4,0,0,0,0,1,28,187,0,4,0,0,1,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,299,74,5 +1,0,0,5,1,32,6,4,33,24,7,0,0,4,39,0,73,0,7,8,0,1,1,2,3,6,18,0,13,0,1,0,0,1,16,0,33,6,85,0,123,0,0,0,1,0,0,4,0,0,0,0,8,205,0,0,0,0,0,1,0,0,0,2,0,33,0,0,1553,32,296,0,14,0,0,0,0,0,19,3,0,0,0,0,2,7,108,0,4,16,1,0,0,0,0,183,15,8,0,0,2,1,265,0,28,0,0,666,0,0,0,0,12,0,10,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,12,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,165,0,104,0,0,0,16,68,79,157,141,0,0,0,0,1,0,0,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,66,31,249,6,0,0,338,0,564,0,0,0,214,20,0,0,0,0,0,0,0,0,0,169,1,0,0,0,15,0,0,0,0,9,148,142,0,0,0,0,0,0,0,0,845,0,0,95,0,0,1,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,63,0,0,0,0,9,49,368,0,38,0,0,0,0,0,0,125,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,26,0,0,0,0,0,0,0,0,0,0,0,3,0,2,371,86,5 +0,0,0,7,0,36,67,0,123,15,41,0,0,0,21,0,36,0,37,5,0,0,0,2,0,3,9,0,6,0,1,0,0,0,11,0,36,6,16,0,199,0,0,0,1,0,0,4,0,0,0,0,3,208,0,0,0,0,0,1,0,0,5,0,0,29,0,0,9402,36,346,0,7,0,0,0,0,0,18,0,0,0,0,0,3,8,1366,0,0,11,0,0,3,100,0,830,175,8,0,0,2,0,524,0,19,0,0,1537,0,0,0,0,9,0,6,0,4,0,0,1,0,0,0,33,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1248,0,137,0,0,0,6,42,80,1017,1060,0,0,0,0,1,0,0,0,0,0,0,0,0,2371,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,32,253,7,0,0,438,0,782,0,0,0,324,139,0,0,0,0,0,0,0,0,0,325,1,0,0,0,7,0,0,0,0,3,132,370,0,0,413,0,0,0,0,6,595,0,0,1867,0,0,1,0,0,0,0,0,8,0,1,0,6,0,0,0,0,0,15,0,0,5,0,3,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,64,0,0,0,0,1,47,584,0,19,0,0,0,0,0,0,288,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,3,780,165,5 +1,0,0,7,1,46,36,1,65,4,11,0,0,9,9,0,745,0,9,2,0,0,0,8,0,11,0,0,7,0,1,0,0,1,6,5915,47,54,0,0,65,0,0,0,1,0,0,1,0,0,0,0,1,453,0,0,0,0,0,1,0,0,0,2,0,6,0,0,28179,46,846,0,4,0,0,0,0,0,21,0,0,0,0,0,9,35,4656,0,1,6,1,0,1,0,0,298,30,2,0,0,4,1,774,0,4,34,0,2957,0,0,0,0,4,1,3,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,2829,0,59,0,0,0,1,4,453,703,2808,0,0,0,0,1,0,5,0,0,0,0,0,0,284,1,0,0,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,1,0,217,31,449,8,0,0,529,0,895,0,1,0,248,17,0,0,0,0,0,0,0,0,0,884,1,0,0,0,10,0,0,0,0,2,161,115,0,0,36,0,0,0,0,0,11507,1,0,55,12,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,54,1,1,1,0,6,0,0,0,0,9,53,330,0,5,14,0,0,0,0,0,108,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1047,212,5 +0,0,0,1,0,27,5,0,20,0,2,0,0,2,3,0,17,0,6,2,0,0,0,7,0,8,0,0,2,0,1,0,0,0,2,0,27,6,0,0,21,0,4,0,1,0,0,5,0,0,0,0,1,165,0,0,0,0,0,1,0,0,0,0,0,1,0,0,5456,27,82,0,1,0,0,0,0,0,25,0,0,0,0,1,8,21,1046,0,0,2,0,0,0,0,0,83,5,9,0,0,2,0,33,0,0,0,0,702,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,472,0,70,0,0,0,0,3,185,15,473,0,0,0,0,1,0,3,0,0,0,0,0,0,1462,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,32,12,150,1,0,0,181,0,540,0,0,0,75,9,0,0,0,0,0,0,0,0,0,55,1,0,0,0,9,0,0,0,0,0,112,51,0,0,0,0,0,0,0,0,587,0,0,2060,3,0,1,1,1,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,0,0,0,0,0,1,29,235,0,2,9,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,789,144,5 +3,0,0,24,1,51,6286,1,542,35,143,0,1,3,54,0,119,0,9,9,0,0,0,3,1,6,15,0,16,0,1,0,0,1,23,0,52,275,27,0,1075,0,0,0,1,0,0,3,0,0,0,0,8,478,0,0,0,0,0,1,0,0,3,0,0,102,0,0,17807,51,7133,0,17,0,0,0,0,0,6,0,0,0,0,0,4,9,102,0,1,23,1,0,1,463,0,3668,380,2,0,0,4,1,2411,0,33,1,4,8948,0,0,0,0,6,1,4,0,0,0,0,1,4,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,2,1,6,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,760,0,127,0,0,0,16,309,109,46785,193,0,0,0,0,1,0,1,0,0,0,0,0,0,25638,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,131,81,1683,29,0,0,6691,0,9077,0,1,0,6462,275,0,0,0,0,0,0,0,0,0,7157,1,0,0,0,13,0,0,0,0,8,169,1179,0,0,1960,0,0,0,0,10,1145,0,0,21,0,0,1,0,0,0,0,0,3,0,0,0,7,0,0,0,0,0,37,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,65,1,1,1,0,40,0,0,0,0,9,75,145,0,38,0,0,0,0,0,0,1157,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,43,0,0,0,0,0,0,0,0,0,0,0,1,0,1,558,286,5 +0,0,0,11,0,51,36,0,93,53,23,0,0,0,66,0,40,0,7,4,0,0,0,2,2,5,9,0,12,0,1,0,0,0,35,0,51,6,22,0,265,0,0,0,1,0,0,8,0,0,0,0,6,288,0,1,0,0,0,1,0,0,0,0,0,73,0,0,8709,51,334,0,13,0,0,0,0,0,41,0,0,0,0,0,1,11,802,0,0,35,0,0,2,59,0,542,90,15,0,0,2,0,471,0,63,0,0,1937,0,0,0,0,12,0,7,0,0,0,0,1,2,0,0,43,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,11,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,1103,0,174,0,0,0,12,54,97,752,884,0,0,0,0,1,0,0,0,0,5,0,0,0,2757,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,84,1397,14,0,0,1576,0,934,0,0,0,1466,48,0,0,0,0,0,0,6,0,0,265,1,0,0,0,8,0,0,0,0,7,1232,323,0,0,241,0,2,0,2,11,754,0,0,2225,0,0,1,0,0,0,0,0,14,0,0,0,6,0,0,0,0,0,53,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,26,0,0,0,0,1,86,570,0,27,0,0,0,0,0,0,266,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,55,0,0,0,0,0,0,0,0,0,0,0,0,0,5,960,233,5 +3,0,0,23,1,97,47,1,146,33,23,0,1,2,67,1,214,0,9,17,0,0,0,3,6,4,48,0,47,0,11,0,0,1,61,0,98,152,63,0,238,0,0,0,1,0,0,2,0,0,0,0,28,386,0,0,0,0,0,1,0,0,0,12,0,35,0,0,8073,97,613,0,58,0,0,0,0,0,10,0,0,0,0,0,6,10,1271,0,1,61,1,0,3,37,0,560,50,4,0,0,4,1,827,0,24,0,3,4200,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,19,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,10,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,112,0,0,0,0,0,0,989,0,155,0,0,0,56,737,171,535,961,0,0,0,0,1,0,0,0,0,0,0,0,0,1779,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,3,151,63,838,32,0,0,787,0,2594,0,1,0,459,188,0,0,0,0,0,0,0,0,0,510,1,0,0,0,26,0,0,0,0,22,357,186,0,0,121,0,0,0,6,0,1396,0,0,1097,0,0,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,47,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,118,1,1,1,0,94,0,0,0,4,9,159,785,0,110,0,0,0,0,0,0,288,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,35,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1219,147,5 +0,0,0,3,0,10,2,0,3,0,3,0,0,0,3,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,3,0,0,15,10,19,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,8,0,1,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,21,0,0,0,0,3,23,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,35,3,0,0,38,0,56,0,0,0,5,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,92,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,1,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,8,5 +0,0,0,9,1,64,34,1,67,169,9,4,0,2,184,0,695,0,9,6,0,0,0,15,0,12,3,0,7,0,1,0,0,1,21,898,65,151,10,0,420,0,0,0,1,0,0,6,0,0,0,0,3,352,0,0,0,0,0,1,0,0,0,0,0,181,0,0,24279,64,1028,0,5,0,0,0,0,1,33,0,0,0,0,0,18,37,3838,0,1,21,1,0,2,11,0,270,20,11,0,0,4,1,1114,0,176,0,0,3067,0,0,0,0,16,0,9,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,3367,0,291,0,0,0,4,26,304,858,3361,0,0,0,0,1,0,3,0,0,0,0,0,0,1386,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,150,206,709,12,0,0,558,0,2371,0,1,0,259,81,0,0,0,0,0,0,6,0,0,1004,1,0,0,0,21,0,0,0,0,2,180,146,0,0,72,0,0,0,0,0,1983,1,0,309,6,0,1,1,0,0,0,0,15,0,0,0,5,0,0,0,0,0,171,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,77,1,1,1,0,30,0,0,0,0,9,86,266,0,11,12,0,0,0,0,0,316,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,173,0,0,0,0,0,0,0,0,0,0,0,1,0,6,1462,195,5 +0,0,0,7,12,87,204,30,350,29,90,0,0,2,41,0,120,0,18,7,0,6,12,5,8,13,27,0,15,0,2,2,0,12,36,0,99,6,21,0,613,0,0,0,1,0,0,6,0,0,0,0,10,393,0,0,0,0,0,1,0,0,3,1,0,53,0,0,2842,87,1213,0,18,0,0,0,0,0,18,18,0,0,0,0,7,23,251,0,30,36,12,0,5,243,0,2261,360,6,1,0,2,12,1501,0,35,0,0,2594,0,0,0,0,15,0,4,0,0,0,0,1,0,0,0,14,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,36,16,16,16,0,0,6,239,6,149,0,0,12,18,69,285,1529,248,0,0,0,0,1,0,3,0,0,0,0,0,0,1352,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,51,682,20,0,0,822,0,1090,0,0,0,424,67,0,0,0,0,0,0,0,0,0,825,1,0,0,0,38,0,0,0,0,8,208,530,0,0,965,0,0,0,0,4,686,0,0,116,3,0,1,1,0,0,0,0,7,0,1,0,12,0,0,0,0,0,29,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,3,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,95,1,1,1,0,46,0,0,0,0,223,135,334,6,50,9,0,0,0,0,0,782,7,0,0,0,0,0,0,0,0,0,0,0,13,0,1,37,0,0,0,0,0,0,0,0,0,0,0,23,0,2,415,213,5 +4,0,0,14,1,74,48,1,57,9,11,1,0,9,32,11,162,0,9,3,0,0,0,9,0,15,6,0,14,0,2,1,0,1,23,7706,75,86,6,0,176,0,0,0,1,0,0,1,0,0,0,0,7,458,0,0,0,0,0,1,0,0,0,6,0,28,0,0,18609,74,319,0,16,0,0,0,0,0,23,0,0,0,0,0,10,36,3248,0,1,23,1,0,1,0,0,335,30,1,0,0,4,1,346,0,14,30,0,7720,0,0,0,0,51,3,2,0,2,0,0,1,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,38,0,1,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,12,12,12,0,0,0,1117,0,232,0,0,0,10,28,518,890,1112,0,0,0,0,1,0,6,0,0,0,0,0,0,696,3,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,1,0,225,44,1068,15,0,0,542,0,972,0,1,0,232,192,0,0,0,0,0,0,0,0,0,340,1,0,0,0,12,0,0,0,0,7,204,26,0,0,35,0,1,0,0,1,2248,1,0,54,14,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,9,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,14,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,101,1,1,1,0,32,0,0,0,2,9,98,123,0,24,14,0,0,0,0,0,228,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,15,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1260,338,5 +2,0,0,20,0,148,53,0,191,101,49,1,1,6,140,0,94,0,7,11,0,0,0,5,6,16,24,0,40,0,16,0,0,0,91,0,148,373,37,0,622,0,0,0,1,0,0,8,0,0,0,0,29,241,0,0,0,0,0,1,0,0,1,0,0,119,0,0,5237,148,669,0,54,0,0,0,0,0,36,0,0,0,0,0,8,29,650,0,0,91,0,0,5,121,0,1264,205,12,0,0,2,0,1090,0,104,0,8,4181,0,0,0,0,16,0,0,0,0,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,59,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,96,10,10,10,0,0,0,722,0,199,0,0,0,56,127,413,1181,599,0,0,0,0,0,0,3,0,0,0,0,0,0,1358,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,37,130,687,25,0,0,627,0,1025,0,0,0,425,259,0,0,0,0,0,0,0,0,0,542,1,0,0,0,22,0,0,0,0,28,254,271,0,0,486,0,0,0,0,1,898,0,0,277,3,0,1,1,0,0,0,0,15,0,0,0,11,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,3,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,178,1,1,1,0,160,0,0,0,30,1,239,343,0,87,9,0,0,0,0,0,499,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,109,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8413,318,5 +0,0,0,2,0,8,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,2,0,1,0,0,2,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1180,8,50,0,1,0,0,0,0,0,12,0,0,0,0,0,1,7,485,0,0,0,0,0,0,0,0,10,0,4,0,0,2,0,15,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,75,0,32,0,0,0,0,3,22,6,86,0,0,0,0,1,0,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,67,2,0,0,107,0,115,0,0,0,46,2,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,91,35,0,0,0,0,0,0,0,0,224,0,0,808,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,129,0,1,0,0,1,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,272,7,5 +8,0,0,15,1,69,76,1,583,38,141,0,1,2,68,0,133,0,9,10,0,0,0,5,5,10,21,0,26,0,1,0,0,1,35,0,70,283,44,0,1148,0,0,0,1,0,0,1,0,0,0,0,14,247,0,3,0,0,0,1,0,0,0,0,0,148,0,0,4502,69,995,0,27,0,0,0,0,0,6,0,0,0,0,0,5,7,194,0,1,35,1,0,5,497,0,3953,205,2,0,0,10,1,2740,0,50,0,3,5261,0,0,0,0,1,1,3,0,0,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,10,0,0,0,0,0,0,0,0,0,3,0,0,0,0,31,0,1,0,0,0,0,0,0,0,0,6,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,265,0,102,0,0,0,28,103,150,3286,240,0,0,0,0,1,0,6,0,0,0,0,0,0,936,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,154,85,628,17,0,0,532,0,3563,0,1,0,268,162,0,0,0,0,0,0,0,0,0,1013,1,0,0,0,20,0,0,0,0,14,200,1299,0,0,563,0,0,0,0,0,963,0,0,267,0,0,1,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,41,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,97,1,1,1,0,74,0,0,0,0,9,105,196,0,58,0,0,0,0,0,0,1318,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,0,0,0,0,0,0,0,0,0,0,0,1,0,1,609,169,5 +0,0,0,19,0,48,71,0,48,12,6,0,1,10,22,0,88,0,7,6,0,0,0,7,0,13,9,0,10,0,1,0,0,0,10,9541,48,78,10,0,148,0,0,0,1,0,0,3,0,0,0,0,4,872,0,0,0,0,0,1,0,0,0,0,0,9,0,0,234317,48,452,0,6,0,0,0,0,0,145,0,0,0,0,0,9,23,38984,0,0,10,0,0,0,0,0,206,30,5,1,0,2,0,357,0,4,0,3,5640,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,35785,0,65,0,0,0,6,28,416,1074,35777,0,0,0,0,1,0,3,0,0,0,0,0,0,493,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,167,31,610,30,0,0,570,0,485,0,0,0,401,89,0,0,0,0,0,0,0,0,0,253,1,0,0,0,13,0,0,0,0,4,243,90,0,0,0,0,0,0,0,0,2170,1,0,93,71,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,16,0,0,0,0,1,58,151,0,19,14,0,0,0,0,0,87,3,0,0,0,0,0,0,0,0,0,0,0,1,0,2,16,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1827,96,5 +0,0,0,2,0,14,2,0,18,0,2,0,0,0,2,0,17,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,14,46,0,0,11,0,0,0,1,0,0,4,0,0,0,0,0,107,0,1,0,0,0,1,0,0,0,0,0,1,0,0,926,14,67,0,1,0,0,0,0,0,21,0,0,0,0,0,1,6,156,0,0,3,0,0,0,0,0,13,0,8,0,0,2,0,27,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,145,0,92,0,0,0,0,3,33,16,149,0,0,0,0,1,0,0,0,0,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,13,3,139,2,0,0,156,0,272,0,0,0,86,16,0,0,0,0,0,0,2,0,0,47,1,0,0,0,2,0,0,0,0,1,96,61,0,0,0,0,0,0,0,0,111,0,0,147,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,17,292,0,1,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,206,38,5 +3,0,0,6,0,289,104,0,777,23,194,0,1,7,26,0,1211,0,7,18,0,0,0,131,0,16,18,1,42,0,1,0,0,0,150,2387,289,8,27,0,1935,0,0,0,1,0,0,3,0,0,0,0,16,815,0,0,0,0,0,1,0,0,3,29,0,135,0,0,34000,289,2744,0,40,0,0,0,0,0,36,0,0,0,0,0,134,241,5535,0,0,150,0,0,1,724,0,6114,325,4,1,0,2,0,4866,0,19,44,0,10059,0,0,0,0,10,2,145,0,0,0,0,1,0,0,0,159,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,245,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,55,12,12,12,0,0,0,2987,0,1357,0,0,0,40,93,1635,6326,3651,0,0,0,0,1,0,23,0,0,0,0,0,0,5188,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,143,52,1242,7,0,0,1919,0,1803,1,0,0,1461,361,0,44,0,0,0,0,0,0,0,2327,1,0,0,0,149,0,0,0,0,3,456,2421,0,0,833,0,0,0,0,4,4581,1,0,271,17,0,1,1,0,0,0,0,7,0,0,0,8,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,1,0,0,0,0,17,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,548,1,1,1,0,143,0,0,0,0,1,439,858,0,64,14,0,0,0,0,0,2632,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,27,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5616,2070,5 +5,0,0,19,2,104,48,5,154,13,27,0,1,12,46,0,1883,0,9,12,0,1,0,12,6,21,32,0,33,0,1,0,0,2,34,17219,106,207,40,0,266,0,0,0,1,0,0,7,0,0,0,0,12,726,0,0,0,0,0,1,0,0,0,7,0,29,0,0,84247,104,2359,0,31,0,0,0,0,0,57,3,0,0,0,2,15,72,14972,0,5,34,2,0,2,20,0,643,45,13,0,0,4,2,2314,0,15,61,5,5721,0,0,0,0,12,3,3,0,0,0,0,1,1,0,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,1,0,0,0,0,1,0,24,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,2,0,0,0,5,0,0,0,0,0,0,3,0,0,0,0,0,0,0,32,0,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,12,13,12,0,0,0,11360,0,173,0,0,0,26,122,714,2468,11321,0,0,0,0,1,0,5,0,0,0,0,0,0,3531,3,0,0,0,0,0,0,0,0,0,0,0,14,4,2,0,0,0,0,1,0,224,82,755,31,0,0,830,0,1124,0,1,0,440,173,0,0,0,0,0,0,0,0,0,2180,1,0,0,0,31,0,0,0,0,11,283,171,0,0,111,0,5,0,0,0,7389,1,0,2447,31,0,1,1,0,2,1,0,15,0,0,0,3,0,0,0,0,0,11,1,0,4,9,2,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,146,1,2,1,0,98,0,0,0,0,20,140,416,0,73,14,0,0,0,0,0,242,7,0,0,0,0,0,0,0,0,0,0,0,5,0,2,21,0,0,0,0,0,0,0,0,0,0,0,4,0,5,2854,158,5 +0,0,0,9,0,42,58,0,60,3,12,0,0,6,8,0,954,0,7,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,3,7730,42,6,0,0,73,0,1,0,1,0,0,1,0,0,0,0,1,655,0,0,0,0,0,1,0,0,0,0,0,13,0,0,167704,42,1209,0,3,0,0,0,0,0,92,0,0,0,0,0,9,25,29228,0,0,3,0,0,2,16,0,327,45,2,0,0,2,0,1154,0,3,1,0,5065,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,23369,0,45,0,0,0,1,4,440,1673,23348,0,0,0,0,1,0,3,0,0,0,0,0,0,548,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,84,22,310,9,0,0,437,0,362,0,0,0,262,10,0,0,0,0,0,0,0,0,0,1105,1,0,0,0,10,0,0,0,0,2,195,74,0,0,56,0,0,0,0,0,5234,1,0,871,48,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,48,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,5,0,0,0,0,1,45,295,0,4,14,0,0,0,0,0,106,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3019,72,5 +2,0,0,5,0,26,4,0,34,11,7,0,0,0,14,0,18,0,6,2,0,0,0,2,0,1,0,0,2,0,1,0,0,0,5,0,26,6,2,0,62,0,0,0,1,0,0,5,0,0,0,0,1,225,0,0,0,0,0,1,0,0,0,0,0,17,0,0,7297,26,97,0,3,0,1,0,0,1,17,0,0,0,0,2,2,10,1305,0,0,5,0,0,1,13,0,140,15,8,0,0,2,0,106,0,12,0,0,1137,0,0,0,0,3,0,6,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,14,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,1,1,0,0,2,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,752,0,71,0,0,0,2,8,51,223,756,0,0,0,0,1,0,1,0,0,0,0,0,0,1824,0,0,0,0,0,0,0,0,0,0,0,0,5,0,12,0,0,0,0,0,1,8,22,162,5,0,0,295,0,711,0,0,0,194,25,0,0,0,0,0,0,2,0,0,83,1,0,0,0,4,0,0,0,0,2,110,199,0,0,62,0,47,0,0,17,367,0,0,1275,0,0,1,0,1,0,0,0,10,0,0,0,2,0,0,1,0,0,11,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,4,0,0,0,0,1,31,677,0,4,0,0,0,0,0,0,79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,3,724,65,5 +0,0,0,10,2,51,73,2,1696,37,797,0,0,0,51,1,106,0,9,10,0,2,0,1,0,7,12,0,13,0,1,0,0,2,23,0,53,124,70,0,1842,0,0,0,1,0,0,11,0,0,0,0,7,814,0,1,0,0,0,1,0,0,0,21,0,51,0,0,8599,51,2868,0,14,0,0,0,0,0,44,3,0,0,0,0,1,15,1136,0,2,23,2,0,3,1626,0,13149,3910,18,1,0,4,2,6040,0,44,0,0,4008,0,0,0,0,12,0,10,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,815,0,159,0,0,0,14,253,112,3928,808,0,0,0,0,1,0,0,0,0,0,0,0,0,1739,0,0,0,0,0,0,0,0,0,11,0,0,11,0,2,0,0,0,0,0,0,122,61,1575,13,0,0,2109,0,2502,0,1,0,1134,161,0,0,0,0,0,0,2,0,0,2733,1,0,0,0,13,0,0,0,0,7,1063,3249,0,0,12826,0,0,0,0,0,1047,0,0,1670,0,0,1,0,0,0,0,0,19,0,0,0,2,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,63,1,1,1,0,275,0,0,0,0,17,76,2199,0,33,0,0,0,0,0,0,2646,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,45,0,0,0,0,0,0,0,0,0,0,0,4,0,7,942,183,5 +4,0,0,0,4,40,137,13,192,3,11,0,2,0,7,0,45,0,7,19,0,4,0,5,0,0,3,0,0,0,1,0,0,4,22,0,43,161,0,0,397,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0,0,1,0,0,0,1,0,7,0,0,941,40,650,0,1,0,0,0,0,0,1,12,0,0,0,0,11,11,87,0,13,22,4,0,0,150,0,1138,10,0,0,0,2,4,819,0,3,1,0,2820,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,2,0,0,0,0,109,0,78,0,0,0,0,6,103,750,236,0,0,0,0,0,0,2,0,0,0,0,0,0,1128,0,0,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,0,0,0,0,10,51,270,29,0,0,402,0,797,0,0,0,250,21,0,2,0,0,0,0,0,0,0,401,0,0,0,0,28,0,0,0,0,1,126,349,0,0,30,0,0,0,0,0,401,3,0,0,0,0,1,69,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,0,0,0,0,0,25,65,109,0,4,0,0,0,0,0,0,349,4,0,0,0,0,3,0,0,0,0,0,0,3,0,1,3,69,0,0,0,0,0,0,0,0,0,0,5,0,0,190,54,5 +0,0,0,9,0,13,21,0,37,3,11,0,0,0,7,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,13,6,0,0,71,0,0,0,1,0,0,7,0,0,0,0,0,232,0,0,0,0,0,1,0,0,0,0,0,10,0,0,2446,13,130,0,1,0,0,0,0,0,26,0,0,0,0,3,1,13,917,0,0,2,0,0,2,26,0,235,30,11,0,0,2,0,143,0,4,0,0,311,0,0,0,0,2,0,5,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,558,0,79,0,0,0,0,3,32,521,578,0,0,0,0,1,0,0,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,8,16,116,12,0,0,260,0,444,0,0,0,196,12,0,0,0,0,0,0,0,0,0,98,1,0,0,0,2,0,0,0,0,0,99,229,0,0,113,0,0,0,0,2,66,0,0,163,0,0,1,0,0,0,0,0,14,0,0,0,10,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,15,491,0,1,0,0,0,0,0,0,96,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,1,0,0,0,0,0,5,199,86,5 +0,0,0,2,0,15,2,0,7,0,2,0,0,0,2,0,18,0,7,1,0,0,0,1,2,2,0,0,3,0,1,0,0,0,4,0,15,6,11,0,8,0,0,0,1,0,0,2,0,0,0,0,2,60,0,0,0,0,0,1,0,0,0,0,0,1,0,0,355,15,48,0,4,0,0,0,0,0,6,0,0,0,0,1,1,6,68,0,0,4,0,0,0,0,0,29,0,2,0,0,2,0,14,0,0,0,0,262,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,90,0,55,0,0,0,4,17,38,42,81,0,0,0,0,1,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,111,2,0,0,116,0,202,0,0,0,39,12,0,0,0,0,0,0,0,0,0,38,1,0,0,0,4,0,0,0,0,3,112,22,0,0,0,0,0,0,0,0,93,0,0,27,0,0,1,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,17,0,0,0,0,1,19,88,0,6,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,145,46,5 +21,0,0,17,12,98,133,12,980,51,299,1,0,2,79,0,210,0,7,31,0,12,12,7,2,11,21,0,27,0,11,3,0,12,41,0,110,171,9,0,1573,0,0,0,1,0,0,12,0,0,0,0,17,463,1,0,0,0,0,1,0,0,0,2,0,168,0,0,6766,98,3213,0,40,0,0,0,0,0,56,36,0,0,0,4,12,34,886,0,12,41,12,0,11,825,0,6965,985,18,1,0,2,12,4171,0,69,1,0,4160,0,0,0,0,63,0,1,0,0,0,0,1,0,0,0,26,0,0,0,0,0,0,0,0,0,2,0,5,0,0,1,5,0,0,0,17,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,6,0,0,0,0,2,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,444,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,92,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,48,10,10,10,0,0,0,666,0,343,0,0,0,32,63,335,4291,1404,0,0,0,0,1,0,3,0,0,0,0,0,0,3285,0,0,0,0,0,0,0,0,0,0,0,0,12,1,4,0,0,0,0,2,0,34,92,1047,34,0,0,1101,0,872,0,0,0,596,460,0,0,0,0,0,0,4,0,0,1711,1,0,0,0,64,0,0,0,0,16,255,2041,0,0,2888,0,0,0,16,1,896,0,0,566,3,0,1,1,0,0,0,0,26,0,0,0,4,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,3,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,111,1,1,1,0,66,0,0,0,6,97,151,681,0,64,9,0,0,0,0,0,2048,93,0,0,0,0,0,0,0,0,0,0,0,13,0,1,73,0,0,0,0,0,0,0,0,0,0,0,21,0,11,1210,202,5 +1,0,0,5,0,26,34,0,85,29,21,0,0,0,36,1,23,0,7,2,0,0,0,3,0,1,3,0,2,0,1,0,0,0,11,0,26,6,3,0,205,0,0,0,1,0,0,10,2,0,0,0,1,306,0,4,0,0,0,1,0,0,0,0,62,46,0,0,4944,26,459,0,3,0,0,0,1,0,171,0,0,0,0,0,3,15,786,0,0,11,0,0,4,65,0,553,70,20,0,0,2,0,409,0,33,0,0,1108,0,0,0,0,4,0,9,0,0,0,0,1,0,0,0,134,4,0,0,0,0,0,5,0,0,0,0,0,0,0,1,8,0,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,109,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,492,0,213,0,0,0,2,11,66,711,573,0,0,0,0,1,0,1,0,0,1,0,0,0,2056,0,0,0,0,5,0,0,0,0,0,0,0,11,0,6,0,0,0,0,0,0,8,41,315,5,0,0,570,0,1305,0,0,0,486,34,0,0,0,0,0,0,6,0,0,207,1,0,6,0,5,0,0,0,0,2,123,437,0,0,153,0,0,0,0,1,223,0,0,853,0,0,1,12,1,0,0,0,31,0,0,0,17,0,0,0,0,0,29,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,6,0,0,0,0,1,37,702,0,7,0,0,0,0,0,0,244,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,35,8,0,0,0,0,0,0,0,0,0,0,0,0,6,645,490,5 +0,0,0,3,0,12,2,0,6,0,2,0,0,0,3,1,50,0,9,4,0,0,0,0,0,5,1,0,0,0,3,0,0,0,1,0,12,6,190,0,6,0,0,0,1,0,0,0,0,0,0,0,5,39,0,0,0,0,0,1,0,0,0,0,0,1,0,0,133,12,67,0,2,0,0,0,0,0,0,0,0,0,0,0,3,3,9,0,0,1,0,0,0,0,0,25,0,0,0,0,2,0,23,0,0,0,0,854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,27,0,56,0,0,0,2,3,45,392,38,0,0,0,0,1,0,0,0,0,0,0,0,0,234,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,3,80,3,0,0,97,0,201,0,0,0,49,10,0,0,0,0,0,0,0,0,0,73,0,0,0,0,4,0,0,0,0,0,102,35,0,0,0,0,0,0,0,1,265,0,0,37,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,38,0,0,0,0,16,13,72,0,9,0,0,0,0,1,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,55,5 +0,0,0,19,0,45,10,0,35,110,8,0,0,2,113,0,87,0,7,9,0,0,0,7,0,13,9,0,10,0,2,0,0,0,8,4,45,62,10,0,200,0,0,0,1,0,0,1,0,0,0,0,5,358,0,0,0,0,0,1,0,0,0,0,0,11,0,0,4192,45,265,0,9,0,0,0,0,0,11,0,0,0,0,0,12,21,436,0,0,8,0,0,1,11,0,211,20,2,0,0,2,0,421,0,5,0,0,1610,0,0,0,0,2,0,4,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,12,12,12,0,0,0,205,0,68,0,0,0,8,31,245,1318,180,0,0,0,0,1,0,3,0,0,0,0,0,0,378,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,37,191,288,126,0,0,394,0,1664,0,0,0,252,57,0,0,0,0,0,0,0,0,0,262,1,0,0,0,16,0,0,0,0,3,132,325,0,0,178,0,0,0,0,1,1997,1,0,181,5,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,2,0,0,0,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,21,0,0,0,0,1,53,221,0,22,12,0,0,0,0,0,184,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,114,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1254,486,5 +0,0,0,4,0,41,6,0,36,5,3,0,0,2,15,0,549,0,7,3,0,0,0,6,0,10,0,0,3,0,1,0,0,0,9,898,41,6,0,0,59,0,0,0,1,0,0,2,0,0,0,0,1,176,0,0,0,0,0,1,0,0,0,0,0,16,0,0,23902,41,616,0,1,0,0,0,0,0,14,0,0,0,0,0,8,18,4073,0,0,9,0,0,0,0,0,86,5,4,0,0,2,0,588,0,13,0,0,1366,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,3503,0,47,0,0,0,0,3,243,313,3492,0,0,0,0,1,0,3,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,23,221,4,0,0,266,0,259,0,0,0,115,4,0,0,0,0,0,0,0,0,0,618,1,0,0,0,9,0,0,0,0,0,124,50,0,0,0,0,0,0,0,0,1460,1,0,30,5,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,0,0,0,0,0,1,50,451,0,2,12,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,35,5 +5,0,0,23,2,112,46,5,143,39,27,0,1,12,73,0,710,0,9,12,0,1,0,12,6,21,39,0,33,0,2,1,0,2,49,4961,114,191,60,1,379,0,0,0,1,0,0,7,0,0,0,0,15,584,0,0,0,0,0,1,0,0,0,6,0,45,0,0,90369,112,1248,0,32,0,0,0,0,0,65,3,0,0,0,1,15,89,15906,0,5,49,2,0,2,16,0,621,45,11,0,0,4,2,1213,0,31,54,5,6421,0,0,0,0,43,3,3,0,0,0,0,1,1,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,1,0,0,0,0,1,0,26,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,3,0,0,0,6,0,0,0,0,0,0,3,0,0,0,0,0,0,0,52,0,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,12,13,12,0,0,0,12607,0,190,0,0,0,33,201,710,2087,12580,0,0,0,0,1,0,6,0,0,0,0,0,0,4535,3,0,0,0,0,0,0,0,0,0,0,0,14,4,2,0,0,0,0,2,0,225,118,796,42,0,0,828,0,1443,0,1,0,464,134,0,0,0,0,0,0,0,0,0,1021,1,0,0,0,31,0,0,0,0,12,300,167,0,0,103,0,4,0,0,0,4524,1,0,2878,29,0,1,1,0,2,1,0,12,0,0,0,2,0,0,0,0,0,31,1,0,4,9,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,21,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,167,1,2,1,0,206,0,0,0,1,20,163,444,0,82,14,0,0,0,0,0,306,21,0,0,0,0,0,0,0,0,0,0,0,5,0,2,47,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3645,257,5 +0,0,0,14,0,35,103,0,214,49,58,0,1,3,68,0,72,0,7,7,0,0,0,2,1,5,18,0,14,0,1,0,0,0,16,0,35,217,24,0,450,0,0,0,1,0,0,9,0,0,0,0,7,382,0,0,0,0,0,1,0,0,2,1,0,60,0,0,4001,35,611,0,15,0,0,0,0,0,42,0,0,0,0,0,2,14,375,0,0,16,0,0,5,156,0,1322,245,18,1,0,2,0,985,0,46,0,6,1780,0,0,0,0,15,0,7,0,0,0,0,1,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,562,0,175,0,0,0,14,64,77,1389,406,0,0,0,0,1,0,0,0,0,0,0,0,0,1547,0,0,0,0,0,0,0,0,0,0,0,0,9,0,5,0,0,0,0,0,0,13,68,304,15,0,0,506,0,1009,0,0,0,404,98,0,0,0,0,0,0,7,0,0,526,1,0,0,0,10,0,0,0,0,8,148,477,0,0,599,0,0,0,0,3,524,0,0,310,0,0,1,6,1,0,0,0,20,0,1,0,10,0,0,0,0,0,49,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,44,0,0,0,0,1,51,603,0,38,0,0,0,0,0,0,446,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,55,4,0,0,0,0,0,0,0,0,0,0,0,0,6,728,169,5 +0,0,0,5,0,17,1776,0,2984,16,607,0,0,0,23,0,30,0,7,3,0,0,0,1,0,2,6,0,4,0,1,0,0,0,5,0,17,6,11,0,4805,0,0,0,1,0,0,4,0,0,0,0,2,269,0,0,0,0,0,1,0,0,0,0,0,31,0,0,10459,17,5448,0,5,0,0,0,0,0,17,0,0,0,0,0,1,8,1223,0,0,5,0,0,4,2973,0,22093,3005,7,0,0,2,0,13171,0,19,0,0,2029,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,789,0,82,0,0,0,4,26,37,9877,801,0,0,0,0,1,0,0,0,0,0,0,0,0,8917,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,8,22,216,5,0,0,1972,0,489,0,0,0,1891,50,0,0,0,0,0,0,0,0,0,5427,1,0,0,0,4,0,0,0,0,2,129,5619,0,0,6745,0,0,0,0,0,363,0,0,1625,0,0,1,0,0,0,0,0,7,0,0,0,12,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,32,0,0,0,0,1,22,317,0,13,0,0,0,0,0,0,5425,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,3,8012,67,5 +0,0,0,7,1,36,30,1,72,0,5,0,0,2,5,0,1333,0,8,3,0,0,0,6,0,10,0,0,3,0,1,0,0,1,3,71,37,104,0,0,26,0,0,0,1,0,0,1,0,0,0,0,1,188,0,1,0,0,0,1,0,0,0,0,0,5,0,0,6284,36,1411,0,1,0,0,0,0,0,10,0,0,0,2,0,8,17,1114,0,1,3,1,0,1,0,0,123,5,2,0,0,4,1,1314,0,2,0,0,1227,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,12,12,12,0,0,0,344,0,80,0,0,0,0,3,227,103,355,0,0,0,0,1,0,4,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,143,24,367,8,0,0,367,0,897,0,1,0,118,9,0,0,0,0,0,0,0,0,0,1455,1,0,0,0,9,0,0,0,0,0,144,33,0,0,0,0,0,0,0,0,3215,1,0,15,5,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,38,1,1,1,0,0,0,0,0,0,9,40,114,0,2,12,0,0,0,0,0,49,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,632,57,5 +2,0,0,0,2,23,4,8,34,0,4,0,0,0,3,0,39,0,6,5,0,3,2,1,0,5,0,0,5,0,1,0,0,2,11,0,25,6,474,0,59,0,0,0,1,0,0,1,0,0,0,0,5,475,0,2,0,0,0,1,0,0,0,2,0,2,0,0,4226,23,200,0,11,0,0,0,0,0,2,6,0,0,0,0,2,4,17,0,8,11,2,0,0,5,0,65,0,0,0,0,2,2,77,0,0,0,0,656,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,36,0,51,0,0,0,5,8,49,64,777,0,0,0,0,1,0,0,0,0,0,0,0,0,751,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,7,226,2,0,0,188,0,362,0,0,0,98,30,0,0,0,0,0,0,0,0,0,90,1,0,0,0,11,0,0,0,0,6,105,60,0,0,0,0,0,0,0,0,1060,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,5,0,0,0,0,18,36,115,0,11,0,0,0,0,0,0,47,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,173,75,5 +0,0,0,7,0,34,7,0,34,3,11,0,0,0,11,1,27,0,7,8,0,0,0,5,1,54,0,0,18,0,2,0,0,0,10,0,34,14,14,0,53,0,0,0,1,0,0,15,0,0,0,0,7,319,0,26,0,0,0,1,0,0,0,0,0,12,0,0,22781,34,218,0,68,0,0,0,0,1,55,0,0,0,0,0,6,24,723,0,0,10,0,0,1,12,0,307,15,22,2,0,2,0,147,0,7,0,1,4170,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,731,0,337,0,0,0,60,57,97,1482,731,0,0,0,0,1,2,6,0,0,0,0,0,0,1325,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,10,11,422,7,0,0,436,0,1344,0,0,0,326,161,0,0,0,0,0,0,14,0,0,98,1,0,0,0,14,0,0,0,0,43,116,281,0,0,30,0,0,0,0,0,562,0,0,512,0,0,1,8,1,0,0,0,39,0,0,0,3,0,0,0,1,0,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,2,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,32,0,0,0,0,1,44,783,0,74,0,0,0,0,0,0,149,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,7,0,0,0,0,0,0,0,0,0,0,0,0,13,1261,435,5 +0,0,0,5,0,24,59,0,107,25,36,0,0,0,29,0,17,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,9,0,24,6,0,0,182,0,0,0,1,0,0,8,0,0,0,0,0,267,0,0,0,0,0,1,0,0,3,0,0,35,0,0,8255,24,299,0,1,0,0,0,0,0,38,0,0,0,0,0,1,10,619,0,0,9,0,0,2,86,0,695,155,11,0,0,2,0,419,0,27,0,0,2583,0,0,0,0,11,0,10,0,0,0,0,1,0,0,0,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,659,0,180,0,0,0,0,3,50,5925,609,0,0,0,0,1,0,0,0,0,0,0,0,0,1619,0,0,0,0,0,0,0,0,0,0,0,0,8,0,8,0,0,0,0,0,0,8,30,236,5,0,0,411,0,601,0,0,0,273,211,0,0,0,0,0,0,3,0,0,254,1,0,0,0,2,0,0,0,0,1,163,307,0,0,340,0,0,0,0,3,327,0,0,1163,0,0,1,0,0,0,0,0,16,0,1,0,6,0,0,0,0,0,25,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,0,0,0,0,0,1,33,500,0,1,0,0,0,0,0,0,268,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,27,0,0,0,0,0,0,0,0,0,0,0,0,0,8,757,116,5 +0,0,0,28,1,53,81,1,175,40,18,0,0,0,78,0,112,0,9,6,0,0,0,6,2,5,18,0,12,0,1,0,0,1,25,0,54,132,24,0,255,0,0,0,1,0,0,4,0,0,0,0,6,295,0,0,0,0,0,1,0,0,0,7,0,65,0,0,3366,53,454,0,13,0,0,0,0,0,8,0,0,0,0,0,7,12,841,0,1,25,1,0,4,48,0,496,55,2,0,0,4,1,596,0,48,0,0,1797,0,0,0,0,17,0,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,525,0,101,0,0,0,12,65,101,496,508,0,0,0,0,1,0,0,0,0,0,0,0,0,622,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,132,84,489,35,0,0,449,0,1825,0,1,0,210,63,0,0,0,0,0,0,0,0,0,473,1,0,0,0,14,0,0,0,0,6,175,141,0,0,153,0,0,0,0,0,1179,0,0,24,0,0,1,1,0,0,0,0,3,0,0,0,4,0,0,0,0,0,39,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,58,1,1,1,0,62,0,0,0,0,9,79,135,0,36,0,0,0,0,0,0,317,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,0,0,0,0,0,0,0,0,0,0,0,1,0,2,515,93,5 +0,0,0,7,0,28,8,0,71,14,13,0,0,0,20,0,27,0,7,1,0,0,0,1,0,5,0,0,0,0,6,0,0,0,5,0,28,6,0,0,137,0,0,0,1,0,0,3,0,0,0,0,0,371,0,0,0,0,0,1,0,0,0,0,0,24,0,0,4540,28,144,0,1,0,0,0,0,0,10,0,0,0,0,0,1,8,1199,0,0,5,0,0,1,47,0,379,30,3,2,2,2,0,278,0,17,0,0,588,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,715,0,78,0,0,0,0,3,51,444,736,0,0,0,0,1,0,0,0,0,0,0,0,0,697,0,0,0,0,0,0,0,0,0,0,0,0,3,0,6,0,0,0,0,0,0,8,20,294,7,0,0,370,0,481,0,0,0,191,42,0,0,0,1,0,0,4,0,0,146,1,0,0,0,2,0,0,0,0,59,226,606,0,0,66,0,0,0,0,1,154,0,0,507,0,0,1,0,1,0,0,0,4,0,0,0,5,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,50,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,0,0,0,0,0,1,33,401,0,1,10,0,0,0,0,0,154,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4055,74,5 +0,0,0,3,1,11,2,1,11,0,3,0,0,0,3,0,44,0,6,4,0,1,0,1,0,0,0,0,0,0,1,0,0,1,0,0,11,39,0,0,11,0,0,0,1,0,0,1,1,0,0,0,0,30,0,0,0,0,0,1,0,0,0,0,0,3,0,0,117,11,118,0,1,0,0,0,0,0,3,3,0,0,0,0,1,3,10,0,1,0,1,0,0,0,0,8,0,1,0,0,2,1,77,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,20,0,39,0,0,0,0,3,28,4,32,0,0,0,0,1,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,11,3,59,4,0,0,58,0,234,0,0,0,7,1,0,0,0,0,0,0,0,0,0,69,1,0,1,0,6,0,0,0,0,0,93,3,0,0,0,0,0,0,0,0,7746,0,0,8,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,97,63,5 +0,0,0,20,0,40,3,0,52,10,5,64,0,0,24,2,42,0,7,15,0,0,0,3,1,8,9,0,4,0,9,0,0,0,14,0,40,132,14,2,95,0,0,0,1,0,0,2,0,0,0,0,5,1405,0,0,0,0,0,1,0,0,0,2,0,19,0,1,1829,40,114,0,7,0,0,0,0,0,11,0,0,0,0,0,5,26,253,12,0,14,0,0,1,0,0,153,1,4,0,0,3,0,121,0,7,0,0,1453,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,6,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,25,0,2,0,0,0,0,332,0,88,0,0,0,8,30,153,289,247,0,0,0,0,1,0,0,0,0,0,0,1,0,398,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,0,2,0,15,30,282,50,0,0,304,0,4442,0,0,0,178,38,0,0,0,0,0,0,0,0,0,199,1,0,0,0,18,1,0,0,0,130,167,82,0,0,0,0,0,0,0,0,497,0,0,118,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1,6,1,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,31,1,1,1,0,31,0,0,0,0,19,56,329,0,21,9,0,0,0,0,0,216,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,2,490,241,5 +0,0,0,8,0,20,213,0,309,26,88,0,0,0,32,0,25,0,6,2,0,0,0,2,0,1,3,0,2,0,1,0,0,0,8,0,20,33,7,0,554,0,0,0,1,0,0,5,0,0,0,0,1,200,0,0,0,0,0,1,0,0,3,0,0,60,0,0,8861,20,695,0,3,0,0,0,0,0,20,0,0,0,0,2,2,11,2156,0,0,8,0,0,5,297,0,2302,330,9,0,0,2,0,1402,0,29,0,0,897,0,0,0,0,18,0,3,0,0,0,0,1,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1535,0,94,0,0,0,2,17,40,2615,1328,0,0,0,0,1,0,1,0,0,0,0,0,0,3370,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,0,0,0,0,0,0,8,32,166,8,0,0,459,0,702,0,0,0,393,32,0,0,0,0,0,0,7,0,0,673,1,0,0,0,4,0,0,0,0,2,119,707,0,0,851,0,0,0,0,11,508,0,0,1598,0,0,1,0,0,0,0,0,8,0,1,0,16,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,18,0,0,0,0,1,28,296,0,7,0,0,0,0,0,0,661,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,30,0,0,0,0,0,0,0,0,0,0,0,0,0,4,983,88,5 +1,0,0,6,1,41,33,1,58,2,8,0,0,9,6,0,121,0,9,2,0,0,0,7,1,10,0,0,8,0,1,0,0,1,3,1646,42,54,3,0,57,0,0,0,1,0,0,1,0,0,0,0,2,461,0,0,0,0,0,1,0,0,0,2,0,2,0,0,10492,41,201,0,6,0,0,0,0,0,15,0,0,0,0,0,8,30,1599,0,1,3,1,0,1,0,0,290,30,2,0,0,4,1,144,0,1,26,0,1883,0,0,0,0,2,1,0,0,1,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,618,0,67,0,0,0,4,448,419,252,598,0,0,0,0,1,0,4,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,216,28,446,7,0,0,424,0,487,0,1,0,153,34,0,0,0,0,0,0,0,0,0,244,1,0,0,0,10,0,0,0,0,3,162,45,0,0,23,0,0,0,0,0,1850,1,0,52,7,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,60,1,1,1,0,12,0,0,0,0,9,45,153,0,7,12,0,0,0,0,0,110,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,662,66,5 +19,0,0,21,1,87,103,4,433,146,64,0,1,5,181,1,108,0,7,16,0,1,1,8,4,20,31,0,30,0,3,1,0,0,34,0,88,358,44,0,1147,0,0,0,1,0,0,1,0,0,0,0,17,429,0,3,0,0,0,1,0,0,0,2,0,163,0,0,18785,87,1096,0,32,0,0,0,0,0,35,3,0,0,1,0,12,19,3791,0,4,34,0,0,5,361,0,3670,270,1,0,0,2,1,2358,0,154,0,4,6143,0,0,0,0,6,6,2,0,0,0,0,1,2,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,57,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,10,10,10,0,0,0,3088,0,139,0,0,0,32,119,293,3361,2904,0,0,0,0,1,0,2,0,0,0,0,0,0,3860,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,72,185,614,36,0,0,544,0,1586,0,0,0,330,234,0,20,0,0,0,0,0,0,0,903,1,0,0,0,30,0,0,0,0,15,228,729,0,0,715,0,3,0,4,3,2350,0,0,2672,3,0,1,66,0,0,0,0,2,0,0,0,0,0,0,0,0,0,148,1,0,3,3,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,3,4,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,131,1,1,1,0,95,0,0,0,0,9,122,159,0,76,9,0,0,0,0,0,1009,9,0,0,0,0,0,0,0,0,0,0,0,2,0,1,158,66,0,0,0,0,0,0,0,0,0,0,2,0,2,1701,270,5 +5,0,0,8,0,45,22,0,30,8,8,0,0,0,14,0,19,0,7,2,0,0,0,4,0,3,0,0,2,0,1,0,0,0,11,0,45,112,0,0,81,0,0,1,1,1,0,1,0,0,0,0,0,167,0,1,0,0,0,1,0,0,0,0,0,17,0,0,7164,45,96,0,5,0,0,0,0,0,7,0,0,0,0,0,6,27,1706,0,0,11,0,0,1,18,0,169,15,1,0,0,2,0,133,0,12,0,0,3201,0,0,2,0,3,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,1184,0,87,0,0,0,2,5,106,580,939,0,0,0,0,1,0,0,0,0,0,0,0,0,2191,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,15,241,12,0,0,267,0,987,0,0,0,124,61,0,0,0,0,1,0,3,0,0,100,1,0,0,0,6,0,0,0,0,1,141,92,0,0,49,0,1,0,0,3,603,0,0,1552,0,0,1,1,0,0,0,0,3,0,1,0,4,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,1,0,0,71,1,1,1,0,4,0,0,0,0,1,56,218,0,5,1,0,0,0,0,0,209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,2,968,136,5 +3,0,0,12,1,76,42,1,84,18,16,0,0,14,28,0,330,0,9,2,0,0,0,8,0,11,0,0,7,0,1,0,0,1,16,2547,77,60,0,0,141,0,0,0,1,0,0,3,2,0,0,0,1,574,0,0,0,0,0,1,0,0,0,5,0,22,0,0,24744,76,521,0,4,0,0,0,2,0,53,0,0,0,0,0,9,64,4443,0,1,16,1,0,1,0,0,419,45,11,0,0,4,1,446,0,20,56,0,4033,0,0,0,0,3,3,2,0,0,0,0,1,0,0,0,9,1,0,0,0,0,0,6,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,29,0,19,0,1,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,1,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,12,12,12,0,0,0,2166,0,111,0,0,0,2,5,537,1867,2165,0,0,0,0,1,0,4,0,0,3,0,0,0,2075,3,0,0,0,6,0,0,0,0,0,0,0,3,4,0,0,0,0,0,1,0,352,50,606,13,0,0,665,0,893,0,1,0,309,50,0,0,0,0,0,0,0,0,0,523,1,0,6,0,10,0,0,0,0,2,194,152,0,0,66,0,0,0,0,2,2226,1,0,3076,12,0,1,1,0,0,0,0,14,0,0,0,5,0,0,0,0,0,20,0,1,0,5,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,12,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,97,1,1,1,0,9,0,0,0,0,9,93,489,0,5,14,0,0,0,0,0,215,139,0,2,0,0,0,0,0,0,0,0,0,3,0,1,33,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1632,172,5 +0,0,0,7,0,42,196,0,66,2,7,0,0,11,4,0,1170,0,6,1,0,0,0,10,0,11,0,0,8,0,1,0,0,0,4,29382,42,6,0,0,58,0,2,0,1,0,0,3,0,0,0,0,1,1905,0,0,0,0,0,1,0,0,0,0,0,3,0,0,476946,42,2023,0,5,0,0,0,0,0,395,0,0,0,0,0,10,44,110888,0,0,4,0,0,0,0,0,306,40,5,1,0,2,0,1622,0,0,7,0,10154,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,10,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,12,12,12,0,0,0,103394,0,62,0,0,0,2,5,882,2351,103366,0,0,0,0,1,0,3,0,0,0,0,0,0,920,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,175,25,471,7,0,0,981,0,326,0,0,0,790,43,0,0,0,0,0,0,0,0,0,1460,1,0,0,0,11,0,0,0,0,2,242,206,0,0,18,0,3,0,0,0,6555,1,0,400,196,0,1,1,1,0,0,0,5,0,0,0,1,0,0,0,0,0,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,6,0,4,0,0,0,196,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,10,0,0,0,0,1,46,251,0,6,14,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3619,71,5 +2,0,0,12,1,52,43,1,110,4,25,0,0,17,9,0,938,0,9,3,0,0,0,8,0,10,0,0,9,0,1,0,0,1,8,5827,53,54,3,0,123,0,0,0,1,0,0,1,0,0,0,0,2,519,0,0,0,0,0,1,0,0,0,4,0,10,0,0,18777,52,1099,0,7,0,0,0,0,0,20,0,0,0,0,0,9,42,3082,0,1,8,1,0,3,22,0,648,85,2,0,0,4,1,1115,0,1,59,0,3007,0,0,0,0,9,2,4,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,860,0,54,0,0,0,4,8,524,955,841,0,0,0,0,1,0,7,0,0,0,0,0,0,883,2,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,379,37,440,13,0,0,495,0,658,0,1,0,202,56,0,0,0,0,0,0,0,0,0,1151,1,0,0,0,11,0,0,0,0,2,174,109,0,0,143,0,0,0,0,0,15571,1,0,688,10,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,64,1,1,1,0,13,0,0,0,0,9,61,127,0,8,12,0,0,0,0,0,229,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,23,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1499,94,5 +2,0,0,21,0,99,126,0,476,55,152,0,1,3,69,0,101,0,24,11,0,0,0,14,5,9,30,0,37,0,2,0,0,0,47,0,99,97,73,0,1078,0,0,0,1,0,0,2,0,0,0,0,19,306,0,0,0,0,0,1,0,0,1,2,0,103,0,0,4243,99,1085,0,39,0,0,0,0,0,7,0,0,0,0,0,11,15,228,0,0,47,0,0,7,408,0,3367,335,2,0,0,34,0,2304,0,68,36,4,5298,0,0,0,0,25,1,3,0,0,0,0,1,0,0,0,13,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,1,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,277,0,155,0,0,0,38,131,182,2796,253,0,0,0,0,1,0,8,0,2,0,0,0,0,1081,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,65,565,32,0,0,602,0,1094,10,17,0,400,120,0,0,0,0,0,0,0,0,0,952,1,0,0,0,30,0,0,0,0,19,209,960,0,0,861,0,0,0,0,2,776,0,0,25,0,0,1,0,0,0,0,0,4,0,1,0,8,0,0,0,0,0,32,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,138,1,1,1,0,128,0,0,0,0,1,146,172,0,78,0,0,0,0,0,0,1059,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,89,0,0,0,0,0,0,0,0,0,0,0,0,0,3,502,134,5 +0,0,0,22,6,53,346,24,1853,23,204,0,0,0,58,0,3501,0,7,15,0,6,6,2,3,1,6,0,10,0,2,1,0,4,24,0,59,116,31,0,1533,0,0,0,1,0,0,2,0,0,0,0,6,266,0,0,0,0,0,1,0,0,0,0,0,46,0,0,4858,53,6435,0,13,0,0,0,0,0,11,18,0,0,0,0,3,7,579,0,24,24,4,0,4,891,0,7561,945,3,0,0,2,6,7551,0,34,0,0,1832,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1762,0,0,0,0,0,0,483,0,317,0,0,0,12,24,131,3115,780,0,0,0,0,1,0,0,0,0,0,0,0,0,3262,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,16,42,495,56,0,0,844,0,1451,0,0,0,567,79,0,178,0,0,0,0,0,0,0,5969,1,0,0,0,32,0,0,0,0,4,139,1694,0,0,2858,0,0,0,0,1,5764,0,0,79,0,0,1,325,1,0,0,0,4,0,0,0,3,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,72,1,1,1,0,26,0,0,0,0,49,83,298,0,20,0,0,1,0,0,0,1703,19,0,0,0,0,0,0,0,0,0,0,0,6,0,1,29,321,0,0,0,0,0,0,0,0,0,0,12,0,3,1925,79,5 +0,0,0,22,0,68,49,0,105,4,7,0,0,0,51,2,97,0,7,5,0,0,0,4,6,10,15,0,15,0,1,0,0,0,43,0,68,92,82,0,341,0,0,0,1,0,0,4,0,0,0,0,10,222,0,0,0,0,0,1,0,0,0,0,0,19,0,0,5453,68,366,0,16,0,0,0,0,0,17,0,0,0,0,0,4,9,407,0,0,43,0,0,1,54,0,498,15,8,0,0,2,0,622,0,14,0,0,3097,0,0,0,0,14,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,386,0,148,0,0,0,20,376,156,483,371,0,0,0,0,1,0,0,0,0,0,1,1,1,844,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,24,43,469,28,0,0,487,0,1000,0,0,0,365,68,0,0,0,0,0,0,0,0,0,318,1,0,0,0,15,0,0,0,0,9,192,246,0,0,30,0,1,0,0,1,1493,0,0,355,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,27,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,109,1,1,1,0,133,0,0,0,0,1,111,493,0,41,0,0,0,0,0,0,293,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,743,108,5 +0,0,0,21,3,14,4,3,43,2,7,0,0,0,9,0,212,0,6,7,0,6,0,1,0,1,0,0,2,0,1,0,0,3,3,242,17,144,5,0,18,0,0,0,1,0,0,1,1,0,0,0,0,2295,0,0,0,0,0,1,0,0,0,0,0,3,0,0,82543,14,434,0,3,0,0,0,0,0,9,9,0,0,0,0,1,6,9272,0,3,3,3,0,0,0,0,20,0,4,0,0,2,3,385,0,2,0,1,33707,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,28,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,1,0,4608,0,38,0,0,0,1,4,33,1221,4620,0,0,0,0,1,0,2,0,0,1,0,0,0,985,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,23,7,340,35,0,0,287,0,1253,0,0,0,48,33,0,0,0,0,0,0,0,0,0,281,1,0,2,0,14,0,0,0,0,8,95,3,0,0,0,0,0,0,0,0,246710,0,0,505,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,1,0,0,0,0,25,20,3,0,4,0,0,0,0,0,0,341,3,0,0,0,0,0,0,0,0,0,0,0,3,2,1,5,0,0,0,0,0,0,0,2,0,0,0,5,0,2,5134,38,5 +0,0,0,2,0,11,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,11,6,0,0,9,0,0,0,1,0,0,3,0,0,0,0,0,64,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1384,11,46,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,226,0,0,3,0,0,0,0,0,11,0,5,0,0,2,0,6,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,173,0,58,0,0,0,0,3,25,10,182,0,0,0,0,1,0,0,0,0,0,0,0,0,531,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,100,2,0,0,126,0,126,0,0,0,76,5,0,0,0,0,0,0,4,0,0,33,1,0,0,0,2,0,0,0,0,0,105,42,0,0,0,0,0,0,0,0,124,0,0,374,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,14,130,0,1,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,253,22,5 +0,0,0,8,0,33,45,0,132,23,34,0,0,0,55,1,43,0,7,5,0,0,0,3,0,4,12,0,7,0,1,0,0,0,16,0,33,6,25,0,290,0,0,0,1,0,0,5,0,0,0,0,4,217,0,0,0,0,0,1,0,0,0,0,0,38,0,0,5517,33,354,0,8,0,0,0,0,0,25,0,0,0,1,0,3,9,1287,0,0,16,0,0,4,108,0,911,140,10,0,0,2,0,678,0,25,0,0,2087,0,0,0,0,32,0,1,0,0,0,0,1,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,811,0,133,0,0,0,8,186,125,669,806,0,0,0,0,1,0,0,0,0,0,0,0,0,888,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,29,299,9,0,0,356,0,737,0,0,0,268,62,0,0,0,0,0,0,0,0,0,317,1,0,0,0,8,0,0,0,0,4,123,343,0,0,354,0,0,0,0,0,762,0,0,376,0,0,1,0,1,0,0,0,12,0,0,0,1,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,96,1,1,1,0,117,0,0,0,0,1,49,599,0,24,0,0,1,0,0,0,302,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,29,0,0,0,0,0,0,0,0,0,0,0,0,0,3,630,3394,5 +5,0,0,10,1,79,55,1,115,10,27,0,0,9,20,0,1904,0,21,6,0,0,0,11,0,14,15,0,26,0,3,0,0,1,17,20521,80,54,11,0,130,0,0,0,1,0,0,9,0,0,0,0,6,881,0,0,0,0,0,1,0,0,0,5,0,20,0,0,124099,79,2237,0,25,0,0,0,0,0,88,0,0,0,0,0,13,122,20853,0,1,17,1,0,2,7,0,540,45,16,0,0,4,1,2111,0,14,96,0,6741,0,0,0,0,17,5,19,0,0,0,0,1,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,0,1,0,30,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,91,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,1,0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,12,12,12,0,0,0,15856,0,160,0,0,0,19,71,868,2213,15808,0,0,0,0,1,0,8,0,0,0,0,0,0,1465,3,0,0,0,0,0,0,0,0,0,0,0,28,4,2,0,0,0,0,1,0,220,50,654,11,0,0,717,0,880,0,1,0,366,66,0,0,0,0,0,0,4,0,0,2151,1,0,0,0,17,0,0,0,0,6,238,128,0,0,157,0,33,0,0,0,17109,1,0,553,33,0,1,1,0,0,0,0,18,0,0,0,5,0,0,0,0,0,9,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,33,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,115,1,1,1,0,79,0,0,0,0,9,97,402,0,44,14,0,0,0,0,0,202,5,0,0,0,0,0,0,0,0,0,0,0,4,0,1,18,0,0,0,0,0,0,0,0,0,0,0,1,0,7,2811,122,5 +6,0,0,6,0,64,49,0,113,1192,39,0,0,2,1201,0,30,0,7,4,0,0,0,5,0,8,6,0,4,0,2,1,0,0,34,0,64,6,0,0,2563,0,0,0,1,0,0,1,0,0,0,0,3,187,0,0,0,0,0,1,0,0,2,0,0,1213,0,0,14402,64,1436,0,5,0,0,0,0,0,9,0,0,0,0,0,8,15,811,0,0,34,0,0,4,99,0,867,175,2,0,0,2,0,2864,0,1197,0,0,18971,0,0,0,0,8,4,2,2,0,0,0,1,0,0,0,6,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,10,10,10,0,0,0,784,0,104,0,0,0,4,12,258,2279,790,0,0,0,0,1,0,3,0,0,0,0,0,0,3762,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,32,1207,976,6,0,0,299,0,638,0,0,0,184,552,0,0,0,0,0,0,0,0,0,1441,1,0,0,0,9,0,0,0,0,3,150,198,0,0,376,0,0,0,0,1,3427,0,0,2604,3,0,1,1,0,0,0,0,1,0,0,0,5,0,0,0,0,0,1192,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,6,0,0,0,0,1,98,120,0,12,9,0,0,0,0,0,1409,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1198,0,0,0,0,0,0,0,0,0,0,0,0,0,1,25797,320,5 +8,0,0,22,0,73,15,0,123,36,25,1,1,3,68,0,115,0,67,6,0,0,0,1,9,9,48,0,27,0,6,2,0,0,34,0,73,85,40,0,231,0,0,0,1,0,0,2,0,0,0,0,19,575,0,2,0,0,0,1,0,0,0,2,0,42,0,0,13155,73,496,0,36,0,0,0,0,0,10,0,0,0,0,0,3,6,856,0,0,34,0,0,3,41,0,499,70,4,0,0,2,0,703,0,27,0,4,3156,0,0,0,0,9,0,3,0,0,0,0,1,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,34,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,2,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,960,0,111,0,0,0,38,153,142,509,943,0,0,0,0,1,0,1,0,0,0,0,0,0,3230,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,63,533,28,0,0,390,0,962,0,0,0,242,225,0,0,0,0,0,0,0,0,0,418,1,0,0,0,16,0,0,1,0,17,165,182,0,0,166,0,0,0,3,0,1300,0,0,3189,0,0,1,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,38,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,98,1,1,1,0,124,0,0,0,0,1,107,386,0,92,0,0,0,0,0,0,171,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,40,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3092,237,5 +2,0,0,5,2,55,195,1,284,25,79,0,0,0,33,0,55,0,7,9,0,0,0,5,2,4,12,0,7,0,2,0,0,1,24,0,56,16,13,0,496,0,0,0,0,0,0,0,0,0,0,0,5,144,0,2,0,0,0,1,0,0,6,0,0,42,0,0,1980,55,656,0,9,0,0,0,0,0,6,0,0,0,0,0,9,18,539,0,1,24,1,0,5,237,0,1930,330,0,0,0,162,2,1187,0,39,0,0,1527,0,0,1,0,17,0,0,0,1,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,11,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,493,0,183,0,0,0,8,40,112,1960,430,0,0,0,0,1,0,0,0,0,0,0,0,0,2034,0,0,0,0,0,0,94,0,0,0,0,0,1,0,0,0,0,0,0,1,0,8,27,275,8,0,0,424,0,534,0,0,0,292,42,0,11,0,0,0,0,0,0,0,653,0,0,0,0,16,0,0,0,0,5,146,433,0,0,902,0,2,0,0,3,380,0,0,1,0,0,1,6,0,0,0,0,0,0,1,0,13,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,68,1,1,1,1,39,0,0,0,0,9,80,24,0,25,0,0,0,0,0,0,525,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,42,6,0,0,0,0,0,0,0,0,0,0,1,0,0,520,64,5 +0,0,0,17,0,41,73,0,55,2,6,0,0,10,6,0,858,0,6,2,0,0,0,8,0,13,0,0,4,0,1,0,0,0,4,20058,41,14,0,0,73,0,0,0,1,0,0,4,0,0,0,0,1,727,1,0,0,0,0,1,0,0,0,0,0,6,0,0,343218,41,1207,0,3,0,0,0,0,0,149,0,0,0,0,0,9,29,60853,0,0,4,0,0,0,0,0,252,25,7,1,0,2,0,1057,0,5,1,0,4529,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,13,12,0,0,0,55386,0,67,0,0,0,0,5,411,947,55361,0,0,0,0,1,0,3,0,0,0,0,0,0,740,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,97,24,363,27,0,0,577,0,424,0,0,0,390,13,0,0,0,0,0,0,0,0,0,1014,1,0,0,0,10,0,0,0,0,1,212,92,0,0,6,0,2,0,0,0,4672,1,0,318,70,0,1,1,0,0,0,0,5,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,70,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,8,0,0,0,0,1,45,245,0,4,14,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2563,115,5 +3,0,0,17,0,43,67,0,65,0,16,0,0,6,6,0,923,0,7,2,0,0,0,8,0,11,0,0,8,0,1,0,0,0,4,13344,43,6,0,0,86,0,0,0,1,0,0,3,0,0,0,0,1,699,0,0,0,1,0,1,0,0,0,0,0,12,0,0,149018,43,1251,0,5,0,0,0,0,0,129,0,0,0,0,2,9,53,25102,0,0,4,0,0,2,17,0,376,45,5,0,0,2,0,1157,0,1,37,0,3903,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,21751,0,51,0,0,0,3,6,580,1052,21722,0,0,0,0,1,0,3,0,0,0,0,0,0,504,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,84,21,334,27,0,0,499,0,428,0,0,0,326,9,0,0,0,0,0,0,0,0,0,1090,1,0,0,0,10,0,0,0,0,2,190,100,0,0,92,0,0,0,0,0,3688,1,0,670,63,0,1,1,0,0,0,0,4,0,0,0,2,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,13,0,0,0,0,1,47,164,0,6,14,0,0,0,0,0,121,1,0,0,0,0,0,0,0,0,0,0,0,2,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1584,91,5 +0,0,0,0,0,51,5,0,37,4,4,0,2,0,6,0,55,0,7,13,0,0,0,4,0,3,12,0,11,0,1,0,0,0,20,0,51,93,16,0,128,0,0,0,1,0,0,0,0,0,0,0,5,103,0,0,0,0,0,1,0,0,0,1,0,7,0,0,804,51,123,0,12,0,0,0,0,0,0,0,0,0,0,0,11,11,35,0,0,20,0,0,1,14,0,179,0,0,0,0,4,0,227,0,4,0,0,1188,0,0,0,0,3,0,2,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,16,0,1,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,93,0,80,0,0,0,10,43,118,324,84,0,0,0,0,1,0,2,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,27,259,3,0,0,208,0,1754,0,0,0,91,56,0,0,0,0,0,0,0,0,0,116,0,0,0,0,17,0,0,0,0,4,148,64,0,0,0,0,0,0,0,0,297,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,42,0,0,0,0,1,71,62,0,27,0,0,0,0,0,0,123,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,111,5 +15,0,0,7,0,90,15,0,68,17,12,0,0,6,26,0,1152,0,7,5,0,0,0,8,290,16,42,0,322,0,2,7,0,0,52,1718,90,6,302,0,113,0,0,0,1,0,0,7,1,0,0,0,303,343,0,0,0,0,0,1,0,0,0,0,0,24,0,0,89741,90,2279,0,328,0,0,0,0,0,49,0,0,0,0,1,9,51,14319,0,0,52,0,0,0,0,0,3209,20,12,0,0,2,0,1474,0,20,25,0,12476,0,0,0,0,25,9,1,5,0,0,0,1,0,0,0,1,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,20,0,8,4,0,0,0,0,0,0,0,1,1,0,0,0,1,0,5,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,1,0,50,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,70,12,12,12,0,0,0,11434,0,183,0,0,0,606,1265,607,3486,11114,0,0,0,0,1,0,11,0,0,0,0,0,0,1545,0,0,0,0,2,0,0,0,0,0,0,0,7,1,0,0,0,0,0,2,0,84,36,747,7,0,0,676,0,660,1,0,0,512,150,0,0,0,0,0,0,0,0,0,1286,1,0,2,0,303,0,0,0,0,299,363,90,0,0,45,0,0,0,0,0,4902,1,0,769,16,0,1,1,1,0,0,0,19,0,0,0,2,0,0,0,0,0,19,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,16,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,151,1,1,1,0,371,0,0,0,0,1,142,495,0,375,14,0,0,0,0,0,432,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,7,3841,101,5 +0,0,0,3,0,34,9,0,26,0,2,0,0,2,2,0,514,0,6,3,0,0,0,6,0,10,0,0,3,0,1,0,0,0,2,978,34,6,0,0,20,0,0,0,1,0,0,6,0,0,0,0,1,279,0,0,0,0,0,1,0,0,0,0,0,2,0,0,23494,34,599,0,1,0,0,0,0,0,36,0,0,0,0,0,8,23,4145,0,0,2,0,0,0,0,0,96,5,12,0,0,2,0,519,0,0,0,0,1810,0,0,0,0,0,0,10,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,2971,0,124,0,0,0,0,3,253,417,2952,0,0,0,0,1,0,13,0,0,0,0,0,0,598,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,10,207,3,0,0,320,0,574,0,0,0,177,4,0,0,0,0,0,0,0,0,0,561,1,0,0,0,9,0,0,0,0,0,128,108,0,0,0,0,0,0,0,0,1816,1,0,259,6,0,1,1,0,0,0,0,15,0,0,0,1,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,0,0,0,0,0,1,36,180,0,2,12,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,6,903,100,5 +0,0,0,10,0,79,610,0,796,10,75,0,0,0,60,1,75,0,7,6,0,0,0,4,3,8,24,0,15,0,1,0,0,0,56,0,79,6,76,0,1923,0,0,0,1,0,0,1,0,0,0,0,8,305,0,0,0,0,0,1,0,0,0,0,0,17,0,0,12364,79,1657,0,16,0,0,0,0,0,6,0,0,0,0,0,4,6,1469,0,0,56,0,0,1,763,0,5647,355,2,0,0,2,0,3937,0,13,0,0,3245,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,1056,0,155,0,0,0,16,296,153,3334,1082,0,0,0,0,1,0,0,0,0,0,0,0,0,4347,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,17,493,14,0,0,1073,0,896,0,0,0,965,76,0,0,0,0,0,0,0,0,0,1624,1,0,0,0,13,0,0,0,0,5,167,1636,0,0,1113,0,0,0,0,0,1326,0,0,1621,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,112,1,1,1,0,177,0,0,0,0,1,135,472,0,48,0,0,0,0,0,0,1576,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1000,123,5 +0,0,0,4,0,15,6,0,22,0,3,0,0,0,4,0,22,0,7,1,0,0,0,2,0,0,3,0,1,0,1,1,0,0,3,0,15,6,0,0,12,0,0,0,1,0,0,1,0,0,0,0,1,50,2,0,0,0,0,1,0,0,0,0,0,4,0,0,402,15,62,0,3,0,0,0,0,0,10,0,0,0,0,0,2,4,61,0,0,3,0,0,0,0,0,14,0,2,0,0,2,0,46,0,1,0,0,151,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,67,0,39,0,0,0,2,8,38,14,83,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,94,4,0,0,124,0,198,0,0,0,51,3,0,0,0,0,0,0,0,0,0,64,1,0,0,0,3,0,0,0,0,2,97,28,0,0,0,0,0,0,0,0,58,0,0,49,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,4,0,0,0,0,1,18,113,0,6,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,95,13,5 +2,0,0,5,0,24,150,0,244,30,73,0,0,0,35,0,26,0,7,2,0,0,0,2,0,1,3,0,3,0,2,0,0,0,9,0,24,6,5,0,421,0,0,0,1,0,0,2,0,0,0,0,2,178,0,0,0,0,0,1,0,0,4,0,0,56,0,0,1410,24,532,0,5,0,0,0,0,0,9,0,0,0,0,0,2,5,123,0,0,9,0,0,6,221,0,1747,285,4,0,0,2,0,1061,0,33,0,0,824,0,0,2,0,14,0,2,0,0,0,0,1,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,299,0,73,0,0,0,4,15,53,1843,187,0,0,0,0,1,0,1,0,0,0,0,0,0,1175,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,36,207,5,0,0,365,0,808,0,0,0,275,44,0,0,0,0,0,0,0,0,0,535,1,0,0,0,4,0,0,0,0,3,114,503,0,0,687,0,0,0,0,15,267,0,0,33,0,0,1,1,0,0,0,0,2,0,1,0,11,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,15,0,0,0,0,1,33,231,0,9,0,0,0,0,0,0,495,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,111,5 +7,0,0,9,0,23,33,0,91,2,28,0,0,0,7,0,21,0,7,2,0,0,0,1,2,1,0,0,6,0,1,0,0,0,10,0,23,6,25,0,141,0,0,0,1,0,0,12,0,0,0,0,3,205,0,0,0,0,0,1,0,0,0,0,0,15,0,0,1807,23,248,0,7,0,0,0,0,0,40,0,0,0,0,2,1,20,321,0,0,10,0,0,3,77,0,660,110,18,2,0,2,0,357,0,4,0,0,408,0,0,0,0,5,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,4,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,310,0,149,0,0,0,6,47,48,581,303,0,0,0,0,1,0,0,0,0,0,0,0,0,804,0,0,0,0,0,0,0,0,0,4,0,0,12,0,2,0,0,0,0,0,0,10,9,172,12,0,0,340,0,697,0,0,0,250,24,0,0,0,0,0,0,0,0,0,187,1,0,0,0,5,0,0,0,0,3,132,296,0,0,297,0,2,0,1,0,771,0,0,249,0,0,1,0,1,0,0,0,20,0,0,0,6,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,73,0,0,0,0,1,33,376,0,8,0,0,0,0,0,0,213,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,8,428,287,5 +5,0,0,15,2,89,84,2,143,34,32,0,0,10,49,0,2663,0,11,8,0,0,0,8,0,16,24,0,29,0,4,0,0,2,30,38018,91,142,18,0,177,0,0,0,1,0,0,3,0,0,0,0,9,822,0,0,0,0,0,1,0,0,0,28,0,43,0,0,229024,89,3027,0,29,0,0,0,0,0,74,0,0,0,0,0,10,118,47236,0,2,30,2,0,2,0,0,571,35,6,0,0,6,2,2923,0,41,107,0,8816,0,0,0,0,25,5,4,0,0,0,0,1,0,0,0,31,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,4,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,12,12,12,0,0,0,41056,0,105,0,0,0,24,129,934,3170,40983,0,0,0,0,1,0,8,0,0,0,0,0,0,1256,5,0,0,0,0,0,0,0,0,0,0,0,51,6,0,0,0,0,0,1,0,346,80,943,20,0,0,910,0,1167,0,2,0,436,59,0,0,0,0,0,0,0,0,0,2992,1,0,0,0,16,0,0,0,0,9,304,58,0,0,155,0,9,0,0,0,11171,1,0,479,36,0,1,1,0,0,0,0,8,0,0,0,1,0,0,0,0,0,36,0,0,0,25,4,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,36,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,124,1,1,1,0,106,0,0,0,0,17,121,176,0,59,14,0,0,0,0,0,239,2,0,0,0,0,0,0,0,0,0,0,0,5,0,1,40,0,0,0,0,0,0,0,0,0,0,0,2,0,3,3306,125,5 +2,0,0,14,0,73,124,0,243,34,77,1,0,2,50,0,68,0,19,7,0,0,0,6,2,14,21,0,14,0,2,0,0,0,26,0,73,6,22,0,472,0,0,0,1,0,0,1,0,0,0,0,8,265,0,0,0,0,0,1,0,0,4,1,0,75,0,0,4262,73,599,0,14,0,0,0,0,0,9,0,0,0,0,0,8,15,406,0,0,26,0,0,11,216,0,1880,325,2,0,0,2,0,1202,0,43,0,0,2093,0,0,0,0,27,2,6,0,0,0,0,1,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,9,1,0,0,0,0,9,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,10,0,0,0,558,0,108,0,0,0,14,74,264,1853,394,0,0,0,0,1,0,4,0,0,0,0,0,0,1705,1,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,32,67,377,18,0,0,504,0,1475,0,0,0,335,156,0,0,0,0,0,0,0,0,0,584,1,0,0,0,15,0,0,0,0,6,188,496,0,0,720,0,8,0,0,8,470,0,0,598,3,0,1,1,0,0,0,0,2,0,1,0,8,0,0,0,0,0,35,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,3,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,94,1,1,1,0,73,0,0,0,0,1,99,279,0,42,9,0,0,0,0,0,535,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,48,0,0,0,0,0,0,0,0,0,0,0,0,0,2,467,199,5 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,18,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,4,24,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,29,0,0,0,33,0,43,0,0,0,3,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,2,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,3,5 +30,0,0,7,0,124,39,0,54,21,25,0,0,6,33,0,662,0,7,7,0,0,0,8,2,15,45,0,30,0,3,6,0,0,78,1625,124,6,28,0,135,0,0,0,1,0,0,7,0,0,0,0,16,992,0,0,0,0,0,1,0,0,0,0,0,28,0,0,132439,124,998,0,35,0,0,0,0,0,79,0,0,0,0,0,9,129,23199,0,0,78,0,0,0,0,0,430,20,13,0,0,2,0,1026,0,23,100,0,12244,0,0,0,0,19,20,9,18,0,0,0,1,0,0,0,24,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,29,0,8,10,0,0,0,0,0,0,0,1,1,0,0,0,1,0,10,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,58,12,12,12,0,0,0,17918,0,263,0,0,0,36,211,909,2799,17879,0,0,0,0,1,0,16,0,0,0,0,0,0,2127,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,2,0,84,39,1386,7,0,0,1065,0,831,4,0,0,874,105,0,0,0,0,0,0,0,0,0,826,1,0,0,0,17,0,0,0,0,11,668,77,0,0,141,0,0,0,0,0,10291,1,0,1072,33,0,1,1,1,0,0,0,23,0,0,0,4,0,0,0,0,0,24,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,33,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,170,1,1,1,0,104,0,0,0,0,1,202,514,0,85,14,0,0,0,0,0,186,7,0,0,0,0,0,0,0,0,0,0,0,3,0,1,25,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4296,216,5 +0,0,0,21,1,74,123,1,203,37,78,1,1,13,57,0,200,0,11,6,0,0,0,9,2,14,21,0,39,0,1,1,0,1,19,3041,75,235,26,0,314,0,0,0,1,0,0,9,0,0,0,0,8,860,0,0,0,0,0,1,0,0,2,1,0,43,0,0,36867,74,808,0,38,0,0,0,0,0,102,0,0,0,0,0,10,151,6081,0,1,19,1,0,4,100,0,1388,195,15,0,0,4,1,959,0,33,136,5,4455,0,0,0,0,9,0,8,0,0,0,0,1,0,0,0,15,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,12,12,12,0,0,0,970,0,174,0,0,0,30,86,664,2063,953,0,0,0,0,1,0,3,0,0,0,0,0,0,1766,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,1,0,257,89,695,25,0,0,803,0,2125,0,1,0,466,111,0,0,0,0,0,0,0,0,0,687,1,0,0,0,17,0,0,0,0,7,246,293,0,0,604,0,0,0,0,2,3624,1,0,937,35,0,1,1,0,0,0,0,15,0,1,0,7,0,0,0,0,0,40,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,35,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,106,1,1,1,0,138,0,0,0,0,9,94,450,0,64,12,0,0,0,0,0,409,7,0,0,0,0,0,0,0,0,0,0,0,3,0,2,47,0,0,0,0,0,0,0,0,0,0,0,1,0,4,2753,209,5 +3,0,0,7,1,65,186,1,330,26,96,0,0,6,32,0,105,0,9,8,0,0,0,6,0,12,12,0,11,0,2,0,0,1,37,0,66,140,19,0,563,0,0,0,1,0,0,3,0,0,0,0,6,257,0,0,0,0,0,1,0,0,2,7,0,63,0,0,16337,65,749,0,11,0,0,0,0,1,19,0,0,0,0,0,9,18,1608,0,1,37,1,0,9,286,0,2481,370,6,0,0,4,1,1470,0,27,0,0,1935,0,0,0,0,16,3,7,0,0,0,0,1,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,29,0,1,0,0,0,0,0,0,0,0,0,1,10,4,0,0,1,0,10,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,10,10,10,0,0,0,1808,0,174,0,0,0,10,162,274,2678,1585,0,0,0,0,1,0,3,0,0,0,0,0,0,5157,4,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,1,0,194,48,479,8,0,0,645,0,1262,0,1,0,423,203,0,0,0,0,0,0,4,0,0,764,1,0,0,0,14,0,0,0,0,5,164,654,0,0,831,0,4,0,0,10,1983,0,0,4696,3,0,1,1,0,0,0,0,8,0,0,0,9,0,0,0,0,0,24,0,0,0,13,3,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,3,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,111,1,1,1,0,53,0,1,0,0,9,103,225,0,28,9,0,1,0,0,0,701,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,38,0,0,0,0,0,0,0,0,0,0,0,1,0,4,1686,201,5 +0,0,0,4,0,18,36,0,171,7,70,0,0,0,11,0,74,0,7,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,7,0,18,180,0,0,302,0,0,0,1,0,0,2,0,0,0,0,0,202,0,0,0,0,0,1,0,0,0,0,0,16,0,0,1819,18,370,0,1,29,0,1,0,0,11,0,0,0,0,0,2,5,169,0,0,7,0,0,4,163,0,1318,315,2,0,0,2,0,677,0,9,0,0,732,0,0,0,0,0,0,84,0,0,0,0,1,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,1,0,0,0,0,0,0,2,0,0,0,0,0,0,155,0,61,0,0,0,0,3,59,561,485,0,0,0,0,1,0,0,0,0,0,0,0,0,688,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,8,12,474,4,0,0,758,0,504,0,0,0,694,24,0,0,0,0,0,0,0,0,0,369,1,0,0,0,3,0,0,0,0,1,429,510,0,0,986,0,6,0,0,0,163,0,0,110,0,0,1,2,1,0,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0,2,13,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,18,1,1,1,0,0,0,0,0,0,1,25,997,0,1,0,0,0,0,0,0,589,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,2,0,0,0,0,0,0,0,0,0,0,0,0,2,135,91,5 +10,0,0,13,0,121,23,0,243,63,58,0,1,2,79,41,166,0,7,7,0,0,0,12,72,10,30,0,113,0,0,0,0,0,88,0,121,165,143,0,572,0,0,0,1,0,0,6,0,0,0,0,85,257,0,0,0,0,0,1,0,0,0,1,0,128,0,0,4456,121,940,0,114,0,0,0,0,0,23,0,0,0,0,0,5,13,332,0,0,88,0,0,2,169,0,1954,130,8,0,0,2,0,1380,0,59,0,6,3369,0,1,0,0,30,0,0,0,0,0,0,1,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,0,0,0,43,0,1,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,448,0,218,0,0,0,170,341,202,1693,365,0,0,0,0,1,0,22,0,0,0,0,0,0,945,0,0,0,0,0,0,0,0,0,4,0,0,6,0,0,0,0,0,0,0,6,12,76,666,14,0,0,574,0,968,0,0,0,426,110,0,0,0,0,0,0,0,0,0,620,1,0,0,0,91,0,0,0,0,21,230,521,0,0,374,0,0,0,0,0,1181,0,0,131,0,0,1,0,1,0,0,0,10,0,0,0,1,0,0,0,0,0,65,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,155,1,1,1,0,220,0,0,0,0,1,209,460,0,153,0,0,0,0,0,0,649,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,67,0,0,0,0,0,0,0,0,0,0,0,0,0,6,980,204,5 +0,0,0,16,0,35,14,0,75,19,20,1,1,3,38,0,44,0,7,3,0,0,0,1,1,2,9,0,6,0,1,0,0,0,10,0,35,209,11,0,166,0,0,0,1,0,0,8,0,0,0,0,3,387,0,0,0,0,0,1,0,0,5,0,6,27,0,0,5332,35,260,0,7,0,0,0,0,0,37,0,0,0,0,0,1,10,516,0,0,10,0,0,5,30,0,336,48,12,0,0,2,0,337,0,18,2,6,1214,0,0,0,0,2,0,10,0,0,0,0,1,11,0,0,13,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,54,0,0,0,0,0,0,515,0,151,0,0,0,6,31,81,823,534,0,0,0,0,1,0,0,0,0,0,0,0,0,1428,0,0,0,0,0,0,0,0,0,0,0,0,8,0,9,0,0,0,0,0,0,83,28,282,21,0,4,505,0,966,0,0,3,384,64,0,0,0,0,0,0,3,0,0,203,1,0,0,0,5,0,0,0,0,4,134,429,0,0,168,0,2,0,0,5,778,0,0,962,0,0,1,0,0,0,0,0,18,0,0,0,1,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,20,0,0,0,0,1,45,1110,0,18,0,0,0,0,0,0,160,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,0,0,0,0,0,0,0,0,9,743,173,5 +1,0,0,6,1,45,31,1,47,3,7,0,0,6,6,0,125,0,9,3,0,0,0,7,0,10,0,0,5,0,0,0,0,1,3,748,46,54,0,0,53,0,0,0,1,0,0,1,1,0,0,0,1,166,0,0,0,0,0,1,0,0,0,2,0,3,0,0,4236,45,181,0,3,0,0,0,0,0,9,0,0,0,0,0,9,25,828,0,1,3,1,0,1,0,0,226,20,4,1,0,4,1,124,0,1,1,0,1354,0,0,0,0,3,1,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,302,0,54,0,0,0,1,4,378,351,294,0,0,0,0,1,0,4,0,0,0,0,0,0,277,1,0,0,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,1,0,188,31,355,7,0,0,378,0,2751,0,1,0,87,2,0,0,0,0,0,0,0,0,0,231,1,0,3,0,10,0,0,0,0,2,142,11,0,0,6,0,0,0,0,0,11255,1,0,37,5,0,1,1,0,0,0,0,6,0,0,0,2,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,52,1,1,1,0,5,0,0,0,0,9,49,39,0,3,12,0,0,0,0,0,92,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,458,44,5 +0,0,0,6,0,38,86,0,123,32,38,0,0,2,37,0,26,0,6,4,0,0,0,5,0,9,3,0,4,0,1,0,0,0,11,0,38,6,5,0,239,0,0,0,1,0,0,10,0,0,0,0,2,277,0,0,0,0,0,1,0,0,3,1,0,44,0,0,3719,38,387,2,3,0,0,0,0,0,50,0,0,0,0,0,7,26,552,0,0,11,0,0,2,102,0,895,170,19,1,0,2,0,540,0,35,0,0,1244,0,0,0,0,14,0,15,0,0,0,0,1,0,0,0,26,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,599,0,190,0,0,0,2,14,199,931,489,0,0,3,0,1,0,5,0,0,0,0,0,0,1513,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,1,0,32,45,252,6,0,0,473,0,724,0,0,0,364,152,0,0,0,0,0,0,0,0,0,318,1,0,0,0,9,0,0,0,0,2,128,384,0,0,406,0,0,0,0,4,238,0,0,299,3,0,1,1,0,0,0,0,27,0,5,0,10,0,0,0,0,0,32,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,12,0,0,0,0,1,49,415,0,8,9,0,0,0,0,0,335,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,36,0,0,0,0,0,0,0,0,0,0,0,0,0,9,603,133,5 +7,0,0,19,1,79,113,1,530,48,144,0,0,2,86,1,181,0,9,9,0,0,0,15,9,19,53,0,29,0,1,1,0,1,32,0,80,137,49,0,1118,0,0,0,1,0,0,1,0,0,0,0,16,357,0,0,0,0,0,1,0,0,0,10,0,134,0,0,18639,79,1104,0,29,0,0,0,0,0,9,0,0,0,0,0,18,25,1586,0,1,32,1,0,10,466,0,3952,342,1,0,0,4,1,2749,0,57,0,0,7129,0,0,0,0,12,0,2,0,0,0,5,1,0,0,0,20,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,40,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,10,10,10,0,0,0,1557,0,110,0,0,0,30,195,263,3556,1548,0,0,0,0,1,0,6,0,0,0,0,0,0,5306,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,169,90,657,35,0,0,664,0,2266,0,1,0,383,184,0,0,0,0,0,0,0,0,0,1066,1,0,0,0,33,0,0,0,0,16,275,1159,0,0,897,0,4,0,0,2,2210,0,0,5026,3,0,1,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,52,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,95,1,1,1,0,122,0,0,0,0,9,112,125,0,94,9,0,0,0,0,0,1265,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,68,0,0,0,0,0,0,0,0,0,0,0,1,0,0,95547,222,5 +1,0,0,6,1,42,34,1,66,2,9,0,0,9,6,0,716,0,9,2,0,0,0,7,0,10,0,0,6,0,1,0,0,1,7,5479,43,54,0,0,62,0,0,0,1,0,0,2,0,0,0,0,1,440,0,0,0,0,0,1,0,0,0,2,0,2,0,0,11772,42,808,0,4,0,0,0,0,0,17,0,0,0,0,1,8,32,1750,0,1,7,1,0,1,0,0,286,30,4,0,0,4,1,732,0,1,29,0,1943,0,0,0,0,3,1,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,536,0,44,0,0,0,2,5,407,537,527,0,0,0,0,1,0,4,0,0,0,0,0,0,251,1,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,1,0,216,28,383,7,0,0,422,0,523,0,1,0,156,13,0,0,0,0,0,0,0,0,0,849,1,0,0,0,9,0,0,0,0,2,157,26,0,0,29,0,0,0,0,0,2321,1,0,64,8,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,47,1,1,1,0,9,0,0,0,0,9,50,115,0,5,12,0,0,0,0,0,107,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,2,750,38,5 +6,0,0,10,1,69,62,1,136,6,33,0,0,9,18,0,165,0,9,7,0,0,0,9,0,14,15,0,17,0,1,0,0,1,17,4269,70,54,19,0,189,0,0,0,1,0,0,4,0,0,0,0,6,679,0,0,0,0,0,1,0,0,1,3,0,22,0,0,72572,69,427,0,14,0,0,0,0,0,43,0,0,0,0,0,10,55,12056,0,1,17,1,0,3,51,0,776,110,7,0,0,4,1,514,0,12,62,0,3734,0,2,2,0,6,2,2,0,1,0,0,1,0,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,12,12,12,0,0,0,9901,0,134,0,0,0,12,57,585,1059,9812,0,0,0,0,1,0,6,0,0,0,0,0,0,781,2,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,1,0,216,40,532,11,0,0,605,0,807,0,1,0,277,85,0,0,0,0,0,0,0,0,0,432,1,0,0,0,16,0,0,0,0,5,212,166,0,0,248,0,0,0,0,2,2473,1,0,143,19,0,1,1,0,0,0,0,6,0,1,0,6,0,0,0,0,0,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,19,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,87,1,1,1,0,45,0,0,0,0,9,87,338,0,33,14,0,0,0,0,0,264,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,14,0,0,0,0,0,0,0,0,0,0,0,1,0,3,1477,92,5 +0,0,0,16,3,17,4,3,44,2,7,0,0,0,8,0,204,0,6,7,0,6,0,1,0,1,0,0,2,0,3,0,0,3,5,235,20,32,2,0,19,0,1,0,1,0,0,1,1,0,0,0,0,523,0,0,0,0,0,1,0,0,0,0,0,4,0,0,185185,17,428,0,5,0,0,0,0,0,9,9,0,0,0,0,1,7,21097,0,3,5,3,0,0,0,0,23,0,4,0,0,2,3,370,0,3,0,1,80149,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,32,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,21,0,0,0,0,2,0,10811,0,34,0,0,0,2,5,38,1958,10824,0,0,0,0,1,0,2,0,0,1,0,0,0,378,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,15,6,994,27,0,0,904,0,1184,0,0,0,51,40,0,0,0,0,0,0,0,0,0,273,1,0,2,0,14,0,0,0,0,6,97,3,0,0,0,0,0,0,0,0,251470,0,0,1221,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,363,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,2,0,0,0,0,25,25,5,0,6,0,0,0,0,0,0,496,3,0,0,0,0,0,0,0,0,0,0,0,3,2,3,6,0,0,0,0,0,0,0,2,0,0,0,5,0,1,10673,35,5 +0,0,0,6,0,8,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,6,0,0,0,1,0,0,1,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,74,8,28,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,19,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,6,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,26,0,0,0,0,3,21,5,40,0,0,0,0,1,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,54,9,0,0,68,0,91,0,0,0,18,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,90,11,0,0,0,0,0,0,0,0,25,0,0,9,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,40,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,53,7,5 +0,0,0,2,0,9,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,2,0,1,0,0,2,0,0,0,0,0,54,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1262,9,50,0,1,0,0,0,0,0,12,0,0,0,0,0,1,7,506,0,0,1,0,0,0,0,0,10,0,4,0,0,2,0,15,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,77,0,34,0,0,0,0,3,23,6,88,0,0,0,0,1,0,0,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,74,2,0,0,111,0,107,0,0,0,50,5,0,0,0,0,0,0,0,0,0,42,1,0,0,0,2,0,0,0,0,0,92,36,0,0,0,0,0,0,0,0,224,0,0,809,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,132,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,272,8,5 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,9,0,0,0,1,0,0,2,0,0,0,0,0,59,0,0,0,0,0,1,0,0,0,0,0,3,0,0,436,10,41,0,1,0,0,0,0,0,11,0,0,0,0,0,1,4,73,0,0,1,0,0,0,0,0,9,0,4,0,0,2,0,9,0,1,0,0,71,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,71,0,56,0,0,0,0,3,27,9,83,0,0,0,0,1,0,0,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,65,3,0,0,97,0,124,0,0,0,41,3,0,0,0,0,0,0,0,0,0,36,1,0,0,0,2,0,0,0,0,0,92,28,0,0,0,0,0,0,0,0,46,0,0,97,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,126,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,146,11,5 +0,0,0,19,0,180,61,0,226,17,89,0,1,8,34,0,117,0,7,5,0,0,0,7,1,13,12,0,55,0,1,0,0,0,133,3017,180,123,12,0,410,0,0,0,1,0,0,7,0,0,0,0,5,922,0,0,0,0,0,1,0,0,0,12,0,40,0,0,24115,180,733,0,54,0,0,0,0,0,111,0,0,0,0,0,8,217,3128,0,0,133,0,0,2,145,0,1701,85,14,0,0,2,0,1119,0,7,251,5,7436,0,0,0,0,4,0,6,0,0,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,12,12,12,0,0,0,616,0,327,0,0,0,23,51,1255,2744,545,0,0,0,0,1,0,3,0,0,0,0,0,0,1292,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,88,41,997,20,0,0,975,0,871,0,0,0,772,208,0,0,0,0,0,0,0,0,0,543,1,0,0,0,13,0,0,0,0,6,361,524,0,0,529,0,0,0,7,0,2252,1,0,877,43,0,1,1,0,0,0,0,10,0,0,0,3,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,0,43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,190,1,1,1,0,106,0,0,0,0,1,313,559,0,69,12,0,0,0,0,0,495,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,23,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1858,1270,5 +2,0,0,11,0,30,69,0,208,4,70,1,0,0,9,0,31,0,7,3,0,0,0,1,0,2,6,0,3,0,1,0,0,0,12,0,30,6,6,0,308,0,0,0,1,0,0,2,0,0,0,0,2,114,0,0,0,0,0,1,0,0,1,0,0,16,0,0,1033,30,399,0,5,0,0,0,0,0,8,0,0,0,0,0,1,5,87,0,0,12,0,0,3,196,0,1543,315,2,0,0,2,0,868,0,6,0,0,760,0,0,0,0,201,2,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,96,0,71,0,0,0,4,17,60,1115,115,0,0,0,0,1,0,0,0,0,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,14,188,15,0,0,224,0,494,0,0,0,143,21,0,0,0,0,0,0,0,0,0,395,1,0,0,0,4,0,0,0,0,2,118,364,0,0,873,0,0,0,0,1,687,0,0,32,0,0,1,0,0,0,0,0,4,0,1,0,6,0,0,0,0,0,5,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,8,0,0,0,0,1,42,73,0,12,0,0,0,0,0,0,403,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,3,153,351,5 +0,0,0,0,0,44,11,0,47,12,3,0,2,0,6,0,57,0,7,4,0,0,0,4,0,2,9,0,6,0,1,0,0,0,22,0,44,123,16,0,137,0,0,0,0,0,0,0,0,0,0,0,3,94,0,0,0,0,0,1,0,0,0,0,0,0,0,0,775,44,127,0,7,0,0,0,0,0,4,0,0,0,0,0,4,4,75,0,0,22,0,0,1,0,0,36,0,0,0,0,4,0,152,0,0,0,0,2766,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,106,0,65,0,0,0,6,33,94,80,107,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,35,249,0,0,0,203,0,13683,0,0,0,85,56,0,0,0,0,0,0,0,0,0,133,0,0,0,0,8,0,0,0,0,3,129,7,0,0,0,0,0,0,0,0,334,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,28,0,0,0,0,8,66,22,0,18,0,0,0,0,0,0,64,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,86,5 +2,0,0,7,1,15,74,1,109,2,13,0,0,0,9,0,69,0,9,1,0,0,0,1,0,0,0,0,0,0,1,0,0,1,3,0,16,100,0,0,147,0,0,0,1,0,0,4,0,0,0,0,0,476,0,0,0,0,0,1,0,0,0,0,0,9,0,0,43079,15,257,0,1,0,0,0,0,0,21,0,0,0,0,0,1,7,11745,0,1,3,1,0,2,70,0,579,35,6,0,0,4,1,387,0,5,0,0,698,0,0,0,0,0,2,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10348,0,70,0,0,0,0,3,66,2317,10364,0,0,0,0,1,0,0,0,0,0,0,0,0,5015,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,129,20,316,8,0,0,421,0,2001,0,1,0,216,13,0,0,0,0,0,0,4,0,0,283,1,0,0,0,2,0,0,0,0,0,123,254,0,0,68,0,0,0,0,0,3072,0,0,8641,0,0,1,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,1,40,1,1,1,0,0,0,0,0,0,9,19,340,0,1,0,0,0,0,0,0,201,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,1,0,5,3250,629,5 +0,0,0,20,0,52,14,0,50,2,94,0,0,2,98,0,714,0,7,2,0,0,0,8,0,11,15,0,8,0,1,5,0,0,12,900,52,8,0,0,168,0,0,0,1,0,0,6,0,0,0,0,6,467,0,0,0,0,0,1,0,0,0,0,0,13,0,0,27622,52,1025,0,10,0,0,0,0,0,35,0,0,0,0,0,9,28,4106,0,0,12,0,0,1,8,0,195,20,10,0,0,2,0,1122,0,7,0,0,1957,0,0,0,0,6,0,3,0,0,0,0,1,0,0,0,5,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,11,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,3138,0,85,0,0,0,10,37,291,461,3121,0,0,0,0,1,0,3,0,0,0,0,0,0,2988,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,41,295,29,0,0,439,0,744,0,0,0,271,28,0,0,0,0,0,0,0,0,0,979,1,0,0,0,10,0,0,0,0,6,136,192,0,0,32,0,0,0,0,0,3282,1,0,2691,12,0,1,1,1,0,0,0,7,0,0,0,9,0,0,0,0,0,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,12,12,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,41,0,0,0,0,1,64,327,0,26,14,0,0,0,0,0,94,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,1,0,0,0,0,0,5,6670,268,5 +2,0,0,14,0,43,16,0,173,40,44,0,1,4,58,0,91,0,7,6,0,0,0,2,13,5,21,0,33,0,2,0,0,0,20,0,43,169,59,0,423,0,0,0,1,0,0,2,0,0,0,0,19,242,0,0,0,0,0,1,0,0,0,10,0,56,0,0,1896,43,464,0,34,0,0,0,0,0,7,0,0,0,0,0,2,5,53,0,0,20,0,0,2,123,0,1169,95,2,0,0,2,0,933,0,32,0,5,1903,0,0,0,0,66,0,0,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,2,0,0,0,0,6,0,15,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,84,0,0,0,0,0,0,123,0,70,0,0,0,37,123,87,1106,114,0,0,0,0,1,0,3,0,0,0,0,0,0,579,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,18,55,459,16,0,0,259,0,810,0,0,0,160,81,0,0,0,0,0,0,0,0,0,394,1,0,0,0,21,0,0,0,0,18,143,349,0,0,215,0,5,0,0,1,899,0,0,54,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,76,0,0,0,0,1,63,229,0,61,0,0,0,0,0,0,427,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,46,0,0,0,0,0,0,0,0,0,0,0,0,0,1,373,58,5 +0,0,0,5,0,19,26,0,92,6,21,0,0,0,14,0,28,0,7,2,0,0,0,2,0,1,6,0,3,0,2,0,0,0,6,0,19,6,8,0,141,0,0,0,1,0,0,7,0,0,0,0,2,338,0,3,0,0,0,1,0,0,0,0,0,18,0,0,2280,19,209,0,5,0,0,0,0,0,29,0,0,0,0,0,2,11,263,0,0,6,0,0,2,58,0,489,80,12,1,0,2,0,334,0,10,0,0,816,0,0,0,0,0,0,8,0,1,0,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,264,0,131,0,0,0,4,22,39,351,283,0,0,0,0,1,0,0,0,0,0,0,0,0,781,0,0,0,0,0,0,0,0,0,0,0,0,7,0,8,0,0,0,0,0,0,8,20,170,5,0,0,421,0,850,0,0,0,333,49,3,0,0,0,0,0,4,0,0,188,1,0,0,0,4,0,0,0,0,1,121,367,0,0,210,0,0,0,0,0,131,0,0,197,0,0,1,0,0,3,1,0,18,0,0,0,3,0,0,0,0,0,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,30,0,0,0,0,1,25,693,0,12,0,0,0,0,0,0,192,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,8,330,82,5 +0,0,0,6,0,19,47,0,88,10,35,0,0,0,14,0,16,0,7,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,6,0,19,6,0,0,141,0,0,0,1,0,0,1,0,0,0,0,0,103,0,0,0,0,0,1,0,0,2,0,0,21,0,0,582,19,200,0,0,0,0,0,0,0,6,0,0,0,1,0,2,4,74,0,0,6,0,0,2,81,0,646,150,2,0,0,2,0,355,0,12,0,0,456,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,322,0,67,0,0,0,0,3,46,692,118,0,0,0,0,1,0,0,0,0,0,0,0,0,504,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,15,148,6,0,0,191,0,442,0,0,0,124,111,0,0,0,0,0,0,0,0,0,207,1,0,0,0,3,0,0,0,0,1,101,189,0,0,317,0,0,0,0,3,44,0,0,24,0,0,1,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,10,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,0,0,0,0,0,1,25,244,0,1,0,0,0,0,0,0,186,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,145,68,5 +5,0,0,24,1,78,199,1,416,92,105,2,1,4,121,0,304,0,268,7,0,0,0,3,145,8,36,0,177,0,1,0,0,1,46,0,79,996,176,0,913,0,0,0,1,0,0,8,1,0,0,0,150,436,0,0,0,0,0,1,0,0,6,0,0,122,0,0,40509,78,1905,0,178,0,0,0,0,0,31,0,0,0,0,0,4,14,8523,0,1,46,1,0,8,316,0,4006,395,17,0,0,4,1,2115,0,95,0,9,4486,0,0,0,0,18,2,7,0,0,0,0,1,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,1,0,0,0,0,0,0,0,0,0,1,11,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,104,0,0,0,0,0,0,4867,0,234,0,0,0,300,681,155,3822,4703,0,0,0,0,1,0,1,0,0,0,0,0,0,7016,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,122,152,823,30,0,0,970,0,2212,0,1,0,686,189,0,0,0,0,0,0,0,0,0,1420,1,0,4,0,155,0,0,0,0,148,352,769,0,0,987,0,0,0,0,22,5616,0,0,13163,0,0,1,0,0,0,0,0,19,0,1,0,18,0,0,0,0,0,90,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,103,1,1,1,0,275,0,0,0,0,9,125,488,0,222,0,0,0,0,0,0,1014,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,100,0,0,0,0,0,0,0,0,0,0,0,1,0,4,6052,851,5 +0,0,0,11,0,35,181,0,137,30,25,0,1,3,44,0,57,0,7,5,0,0,0,3,1,3,12,0,13,0,4,0,0,0,18,0,35,99,27,0,306,0,0,0,1,0,0,4,0,0,0,0,8,278,1,0,0,0,0,1,0,0,0,0,0,32,0,0,1892,35,478,0,17,0,0,0,0,0,10,0,0,0,0,1,3,9,93,0,0,18,0,0,3,81,0,699,80,3,0,0,2,0,611,0,21,0,4,1035,0,0,0,0,4,0,4,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,125,0,102,0,0,0,16,60,84,2536,158,0,0,0,0,1,0,0,0,0,0,0,0,0,1056,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,15,41,283,14,0,0,450,0,624,0,0,0,361,56,0,0,0,0,0,0,0,0,0,455,1,0,0,0,9,0,0,0,0,5,129,292,0,0,239,0,0,0,0,0,570,0,0,48,0,0,1,0,1,0,0,0,7,0,0,0,1,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,64,0,0,0,4,1,53,404,0,32,0,0,0,0,0,0,245,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,34,0,0,0,0,0,0,0,0,0,0,0,0,0,1,363,141,5 +6,0,0,7,0,12,3,0,17,2,10,5,0,0,5,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,49,0,0,0,1,0,0,26,0,0,0,0,0,145,0,0,0,0,0,1,0,0,0,0,0,5,0,0,39912,12,154,0,1,0,0,0,0,0,65,0,0,0,0,0,1,42,21029,0,0,2,0,0,0,0,0,36,0,26,1,0,2,0,34,0,3,0,0,482,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,37,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15947,0,443,0,0,0,0,3,32,45,15820,0,0,0,0,1,0,0,0,0,0,0,0,0,1341,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,8,6,207,7,0,0,399,0,511,0,0,0,325,14,0,0,0,0,0,0,0,0,0,61,1,0,0,0,2,0,0,0,0,0,94,284,0,0,0,0,0,0,0,0,104,0,0,463,0,0,1,0,1,0,0,0,42,0,0,0,14,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,645,0,1,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1018,101,5 +0,0,0,16,0,75,218,0,87,60,11,0,1,4,81,0,943,0,7,10,0,0,0,7,2,16,21,0,20,0,1,0,0,0,23,945,75,319,30,0,247,0,0,0,1,0,0,5,0,0,0,0,9,437,0,0,0,0,0,1,0,0,0,8,0,52,0,0,52382,75,1440,0,19,0,0,0,0,0,48,0,0,0,0,0,10,24,6954,0,0,23,0,0,1,10,0,262,20,9,0,0,2,0,1315,0,45,0,4,5398,0,0,0,0,49,0,9,0,0,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,12,12,12,0,0,0,5653,0,147,0,0,0,16,81,361,2683,5671,0,0,0,0,1,0,6,0,0,0,0,0,0,1960,0,0,0,0,0,0,0,0,0,0,0,0,5,1,10,0,0,0,0,1,0,32,87,480,29,0,0,794,0,1290,0,0,0,589,261,0,0,0,0,0,0,0,0,0,1352,1,0,0,0,19,0,0,0,0,10,226,237,0,0,68,0,0,0,10,0,40928,1,0,160,16,0,1,3,1,0,0,0,11,0,0,0,1,0,0,0,0,0,55,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,94,1,1,1,0,64,0,0,0,0,1,98,609,0,46,12,0,0,0,0,0,199,11,0,0,0,0,0,0,0,0,0,0,0,2,0,1,64,3,0,0,0,0,0,0,0,0,0,0,0,0,5,1468,308,5 +0,0,0,9,0,101,13,0,68,5,20,0,0,2,15,0,108,0,6,7,0,0,0,30,6,16,6,0,49,0,2,0,0,0,67,4,101,26,123,0,163,0,0,0,1,0,0,3,0,0,0,0,33,293,0,0,0,0,0,1,0,0,0,1,0,23,0,0,3006,101,335,0,48,0,0,0,0,0,13,0,0,0,0,0,11,22,479,0,0,67,0,0,2,52,0,835,50,1,0,0,2,0,436,0,10,0,0,2594,0,0,0,0,16,0,3,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,12,12,0,0,0,268,0,153,0,0,0,64,276,300,771,207,0,0,0,0,1,0,10,0,0,0,0,0,0,387,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,20,522,11,0,0,440,0,727,0,0,0,308,41,0,0,0,0,0,0,0,0,0,232,1,0,0,0,43,0,0,0,0,32,183,195,0,0,115,0,1,0,0,1,1266,1,0,21,6,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,105,1,1,1,0,273,0,0,0,0,1,168,234,0,61,12,0,0,0,0,0,265,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,1,569,89,5 +0,0,0,6,0,22,17,0,67,13,12,0,0,0,24,0,49,0,7,6,0,0,0,1,0,4,15,0,9,0,1,0,0,0,8,0,22,6,24,0,120,0,0,0,1,0,0,3,0,0,0,0,5,145,0,0,0,0,0,1,0,0,0,0,0,30,0,0,861,22,181,0,10,0,0,0,0,0,8,0,0,0,0,2,1,7,68,0,0,8,0,0,2,29,0,271,40,4,0,0,2,0,291,0,18,0,0,679,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,89,0,46,0,0,0,10,51,46,268,85,0,0,0,0,1,0,0,0,0,0,0,0,0,362,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,22,156,6,0,0,141,0,313,0,0,0,63,27,0,0,0,0,0,0,0,0,0,176,1,0,0,0,7,0,0,0,0,2,112,60,0,0,91,0,0,0,0,0,212,0,0,34,0,0,1,0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,13,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,43,0,0,0,0,1,30,95,0,29,0,0,0,0,0,0,138,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,2,139,39,5 +3,0,0,9,1,73,135,1,176,30,58,0,0,7,36,0,402,0,9,5,0,0,0,8,0,14,6,0,15,0,1,0,0,1,31,430,74,54,9,0,307,0,0,0,1,0,0,6,0,0,0,0,3,496,0,0,0,0,0,1,0,0,3,5,0,39,0,0,93876,73,843,0,13,0,0,0,0,0,53,0,0,0,0,0,10,78,16116,0,1,31,1,0,3,118,0,1273,210,10,0,0,4,1,1011,0,30,61,0,3033,0,0,0,0,11,3,9,0,0,0,0,1,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,12,12,12,0,0,0,14046,0,155,0,0,0,9,26,652,1443,13990,0,0,0,0,1,0,5,0,0,0,0,0,0,3210,2,0,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,1,0,211,61,496,10,0,0,633,0,1017,0,1,0,351,52,0,0,0,0,0,0,0,0,0,823,1,0,0,0,13,0,0,0,0,3,183,256,0,0,521,0,3,0,0,4,2829,1,0,3465,18,0,1,1,0,0,0,0,12,0,1,0,7,0,0,0,0,0,28,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,18,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,93,1,1,1,0,41,0,0,0,0,9,105,419,0,22,14,0,0,0,0,0,401,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,36,0,0,0,0,0,0,0,0,0,0,0,1,0,6,1887,192,5 +0,0,0,12,0,14,3,0,8,4,3,0,1,0,10,0,17,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,14,9,0,0,29,0,1,0,1,0,0,2,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1150,14,55,0,1,0,0,0,0,0,11,0,0,0,0,0,1,8,503,0,0,5,0,0,0,0,0,14,0,3,0,0,2,0,30,0,5,0,0,167,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0,79,0,49,0,0,0,0,3,36,7,96,0,0,0,0,1,0,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,8,98,21,0,0,92,0,154,0,0,0,34,7,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,97,8,0,0,0,0,0,2,0,0,231,0,0,769,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,19,78,0,1,0,0,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,305,19,5 +0,0,0,0,0,44,5,0,40,13,4,0,2,0,12,0,62,0,7,6,0,0,0,0,0,2,16,0,7,0,1,0,0,0,21,0,44,100,14,0,120,0,0,0,1,0,0,0,0,0,0,0,4,100,0,0,0,0,0,1,0,0,0,0,0,2,0,0,813,44,141,0,8,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,21,0,0,0,0,0,32,0,0,0,0,2,0,192,0,2,0,1,1452,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,54,0,65,0,0,0,8,34,91,224,56,0,0,0,0,1,0,1,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,24,219,0,0,0,155,0,769,0,0,0,80,65,0,0,0,0,0,0,0,0,0,132,0,0,0,0,6,0,0,0,0,3,131,11,0,0,0,0,0,0,0,0,561,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,15,0,0,0,0,1,65,29,0,26,0,0,0,0,0,0,72,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,98,5 +0,0,0,8,0,52,106,0,244,5,48,0,0,7,10,0,1697,0,7,3,0,0,0,8,1,12,3,0,30,0,1,0,0,0,9,7428,52,6,9,0,87,0,0,0,1,0,0,3,0,0,0,0,3,871,0,0,0,0,0,1,0,0,0,0,0,11,0,0,69464,52,2288,0,27,0,0,0,0,0,202,0,0,0,0,0,9,334,9702,0,0,9,0,0,0,0,0,643,25,5,1,0,2,0,2029,0,5,232,0,7786,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,12,12,12,0,0,0,2372,0,70,0,0,0,18,35,1569,3997,2308,0,0,0,0,1,0,4,0,0,0,0,0,0,1061,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,114,28,483,8,0,0,607,0,494,0,0,0,412,45,0,0,0,0,0,0,0,0,0,2119,1,0,0,0,12,0,0,0,0,3,265,332,0,0,387,0,0,0,0,0,7815,1,0,844,99,0,1,1,0,0,0,0,5,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,99,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,83,0,0,0,0,1,61,480,0,32,14,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3412,116,5 +0,0,0,7,0,39,111,0,56,2,12,0,0,7,5,0,1018,0,7,1,0,0,0,10,0,11,0,0,12,0,1,0,0,0,2,19592,39,6,0,0,47,0,2,0,1,0,0,3,0,0,0,0,1,1359,0,0,0,0,0,1,0,0,0,0,0,3,0,0,212459,39,1529,0,9,0,0,0,0,0,227,0,0,0,0,0,10,79,31826,0,0,2,0,0,0,0,0,278,25,6,1,0,2,0,1283,0,0,42,0,5929,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,12,12,0,0,0,26447,0,48,0,0,0,5,8,761,4662,26408,0,0,0,0,1,0,3,0,0,0,0,0,0,5260,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,111,28,392,7,0,0,669,0,359,0,0,0,487,16,0,0,0,0,0,0,0,0,0,1216,1,0,0,0,11,0,0,0,0,2,218,118,0,0,58,0,0,0,0,0,5333,1,0,5975,112,0,1,1,1,0,0,0,5,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,112,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,23,0,0,0,0,1,41,277,0,10,14,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2749,110,5 +6,0,0,8,0,91,15,0,49,17,12,0,0,6,27,0,128,0,11,6,0,0,0,9,1,16,33,0,20,0,2,6,0,0,49,1246,91,6,25,0,110,0,0,0,1,0,0,6,0,0,0,0,14,330,0,0,0,0,0,1,0,0,0,0,0,25,0,0,78588,91,338,0,25,0,0,0,0,0,44,0,0,0,0,0,10,52,12646,0,0,49,0,0,0,0,0,311,20,9,0,0,2,0,400,0,21,29,0,8100,0,0,0,0,11,6,6,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,16,0,5,5,0,0,0,0,0,0,8,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,28,12,12,12,0,0,0,10177,0,187,0,0,0,28,257,588,1723,10142,0,0,0,0,1,0,7,0,0,0,0,0,0,1298,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,2,0,84,40,688,8,0,0,651,0,603,1,0,0,467,87,0,0,0,0,0,0,0,0,0,248,1,0,0,0,16,0,0,0,0,9,323,106,0,0,47,0,0,0,0,0,4312,1,0,642,14,0,1,1,0,0,0,0,13,0,0,0,1,0,0,0,0,0,19,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,16,1,0,0,0,0,14,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,150,1,1,1,0,118,0,0,0,0,1,140,520,0,63,14,0,0,1,0,0,120,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2629,106,5 +3,0,0,33,3,86,149,3,220,15,28,0,0,11,44,0,1591,0,13,6,0,0,0,10,1,25,15,0,34,0,1,0,0,3,36,18334,89,193,18,0,242,0,0,0,1,0,0,3,0,0,0,0,6,1296,0,0,0,0,0,1,0,0,0,15,0,35,0,0,139387,86,2156,0,31,0,0,0,0,0,143,0,0,0,0,0,11,70,21928,0,3,36,3,0,4,31,0,752,65,5,1,0,8,3,1981,0,23,29,0,7027,0,0,0,0,17,0,1,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,12,12,12,0,0,0,17042,0,111,0,0,0,14,65,732,2071,16984,0,0,0,0,1,0,7,0,0,0,0,0,0,1018,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,467,89,1057,78,0,0,1133,0,1202,0,3,0,570,147,0,0,0,0,0,0,0,0,0,2056,1,0,0,0,17,0,0,0,0,6,278,161,0,0,113,0,7,0,10,0,5928,1,0,260,70,0,1,1,0,0,0,0,4,0,0,0,1,0,0,0,0,0,13,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,70,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,94,1,1,1,0,84,0,0,0,0,25,125,315,0,61,14,0,0,0,0,0,364,4,0,0,0,0,0,0,0,0,0,0,0,6,0,2,23,0,0,0,0,0,0,0,0,0,0,0,3,0,2,2592,186,5 +0,0,0,11,0,33,4,0,66,19,6,0,1,2,32,0,225,0,288,1,0,0,0,1,34,33,95,0,47,0,0,0,0,0,13,0,33,81,113,0,80,0,0,0,1,0,0,1,0,0,0,0,34,285,0,0,0,0,0,1,0,0,0,0,0,17,0,0,16408,33,854,0,48,0,0,0,0,0,6,0,0,0,0,0,1,3,1263,0,0,13,0,0,0,0,0,361,0,1,0,0,2,0,773,0,14,0,3,2248,0,0,0,0,40,0,1,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,1356,0,72,0,0,0,68,2442,95,393,1291,0,0,0,0,1,0,0,0,0,0,0,0,0,4421,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,30,335,12,0,0,248,0,494,0,0,0,132,133,0,0,0,0,0,0,0,0,0,624,1,0,0,0,36,0,0,0,0,35,142,87,0,0,0,0,0,0,0,0,4365,0,0,4838,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,69,1,1,1,0,233,0,0,0,0,1,46,263,0,175,0,0,0,0,0,0,135,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1931,94,5 +0,0,0,3,0,17,2,0,10,2,3,0,0,0,6,0,24,0,7,3,0,0,0,1,0,2,3,0,5,0,2,0,0,0,4,0,17,6,10,0,21,0,0,0,1,0,0,2,1,0,0,0,3,76,0,0,0,0,0,1,0,0,0,0,0,6,0,0,6732,17,57,0,7,0,0,0,0,0,8,0,0,0,0,1,1,5,572,0,0,4,0,0,0,0,0,27,0,8,0,0,2,0,42,0,4,0,0,364,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,597,0,62,0,0,0,6,21,35,93,604,0,0,0,0,1,0,0,0,0,0,0,0,0,2528,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,119,3,0,0,107,0,324,0,0,0,37,21,0,0,0,0,0,0,0,0,0,52,1,0,4,0,4,0,0,0,0,3,101,17,0,0,0,0,0,0,0,0,611,0,0,2143,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,24,0,0,0,0,1,21,65,0,12,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,649,107,5 +2,0,0,16,0,67,123,0,167,31,49,0,1,6,50,1,109,0,25,6,0,0,0,7,1,12,18,0,13,0,1,2,0,0,13,883,67,119,13,0,344,0,0,1,1,1,0,3,0,0,0,0,7,409,0,0,0,0,0,1,0,0,7,0,0,35,0,0,15842,67,558,0,13,0,0,0,0,0,20,0,0,0,0,0,9,21,2406,0,0,13,0,0,3,111,0,1016,205,5,1,0,2,0,788,0,23,0,5,2337,0,1,0,0,13,0,3,0,0,0,0,1,0,0,0,44,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,12,12,12,0,0,0,2263,0,130,0,0,0,12,50,350,2718,2112,0,0,0,0,1,0,3,0,0,0,0,0,0,1872,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,37,54,457,18,0,0,487,0,1089,0,0,0,271,172,0,0,0,0,0,0,0,0,0,531,1,0,0,0,14,0,0,0,0,7,171,244,0,0,710,0,0,0,0,3,737,1,0,765,7,0,1,1,0,0,0,0,4,0,0,0,7,0,0,0,0,0,35,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,7,4,8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,121,1,1,1,0,35,0,0,0,0,1,80,312,0,34,12,0,0,0,0,0,294,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,37,0,0,0,0,0,0,0,0,0,0,0,0,0,1,775,254,5 +0,0,0,2,0,8,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,9,0,1,0,1,0,0,2,0,0,0,0,0,56,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1925,8,40,0,1,0,0,0,0,0,11,0,0,0,0,0,1,8,601,0,0,0,0,0,0,0,0,9,0,3,0,0,2,0,6,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,38,0,28,0,0,0,0,3,22,5,44,0,0,0,0,1,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,101,2,0,0,158,0,2381,0,0,0,105,12,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,91,95,0,0,0,0,0,0,0,0,230,0,0,833,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,321,0,1,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,269,37,5 +3,0,0,11,0,56,273,0,403,47,152,0,0,6,61,0,924,0,7,4,0,0,0,10,0,13,6,0,23,0,5,0,0,0,12,898,56,40,9,0,740,0,0,0,1,0,0,10,0,0,0,0,8,586,0,0,0,0,0,1,0,0,8,2,0,84,0,0,41798,56,2042,0,26,0,0,0,0,0,139,0,0,0,0,0,11,167,5632,0,0,12,0,0,6,348,0,3221,415,20,0,0,2,0,2743,0,47,179,0,4296,0,0,0,0,31,0,10,0,0,0,0,1,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,18,0,0,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,15,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,50,12,12,12,0,0,0,2949,0,200,0,0,0,26,50,715,4899,2918,0,0,0,0,1,0,4,0,0,0,0,0,0,8067,0,0,0,0,0,0,0,0,0,0,0,0,11,1,11,0,0,0,0,1,0,84,68,472,21,0,0,1032,0,1092,0,0,0,845,129,0,0,0,0,0,0,7,0,0,1826,1,0,0,0,14,0,0,0,0,8,199,1065,0,0,1325,0,0,0,0,21,3730,1,0,5677,49,0,1,1,0,0,0,0,27,0,2,0,18,0,0,0,0,0,45,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,49,5,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,91,0,0,0,0,1,68,728,0,35,12,0,0,0,0,0,886,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,57,0,0,0,0,0,0,0,0,0,0,0,0,0,9,2399,396,5 +0,0,0,12,0,32,124,0,221,18,67,0,0,0,24,0,94,0,7,2,0,0,0,6,0,1,3,0,2,0,1,0,0,0,14,0,32,171,5,0,407,0,0,0,1,0,0,1,0,0,0,0,1,184,0,0,0,0,0,1,0,0,3,0,0,40,0,0,2744,32,539,0,3,11,0,1,0,0,6,0,0,0,0,0,6,9,261,0,0,14,0,0,6,192,0,1523,280,1,0,0,2,0,929,0,22,0,0,1147,0,0,0,0,9,0,55,0,0,0,0,1,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,5,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,2,4,3,0,0,0,0,0,0,9,0,0,0,0,0,0,252,0,91,0,0,0,2,14,100,1681,512,0,0,0,0,1,0,1,0,0,0,1,1,0,1390,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,36,368,16,0,0,673,0,968,0,0,0,579,42,0,4,0,0,0,0,0,0,0,537,1,0,0,0,8,0,0,0,0,2,216,594,0,0,688,0,17,0,0,7,317,0,0,177,0,0,1,14,0,0,0,0,2,0,1,0,8,0,0,0,0,0,18,0,0,12,23,1,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,57,1,1,1,0,12,0,0,0,0,1,46,552,0,7,0,0,0,0,0,0,703,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,24,11,0,0,0,0,0,0,0,0,0,0,0,0,1,284,176,5 +0,0,0,5,0,18,86,0,136,18,43,0,0,0,24,0,29,0,7,3,0,0,0,1,0,2,6,0,4,0,1,0,0,0,8,0,18,6,8,0,233,0,0,0,1,0,0,1,0,0,0,0,2,101,0,0,0,0,0,1,0,0,3,1,0,36,0,0,900,18,325,0,5,0,0,0,0,0,4,0,0,0,0,0,1,4,104,0,0,8,0,0,4,125,0,1006,190,1,0,0,2,0,615,0,21,0,0,577,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,111,0,75,0,0,0,4,22,37,799,136,0,0,0,0,1,0,1,0,0,0,0,0,0,740,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,24,176,5,0,0,218,0,300,0,0,0,163,13,0,0,0,0,0,0,0,0,0,325,1,0,0,0,4,0,0,0,0,3,113,249,0,0,460,0,0,0,0,3,121,0,0,15,0,0,1,0,0,0,0,0,2,0,1,0,9,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,18,0,0,0,0,1,26,96,0,13,0,0,0,0,0,0,290,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,22,0,0,0,0,0,0,0,0,0,1,0,0,0,1,202,54,5 +0,0,0,7,0,14,2,0,14,0,3,0,0,0,2,0,36,0,6,4,0,0,0,1,0,3,9,0,6,0,1,0,0,0,5,0,14,6,8,0,11,0,0,0,1,0,0,2,1,0,0,0,3,115,0,0,0,0,0,1,0,0,0,0,0,1,0,0,656,14,78,0,7,0,0,0,1,0,9,0,0,0,0,0,1,4,68,0,0,5,0,0,0,0,0,24,0,5,0,0,2,0,72,0,0,0,0,529,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,87,0,58,0,0,0,6,25,33,64,89,0,0,0,0,1,0,0,0,0,0,0,0,0,267,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,5,140,10,0,0,139,0,319,0,0,0,82,27,0,0,0,0,0,0,0,0,0,63,1,0,2,0,5,0,0,0,0,1,100,56,0,0,0,0,0,0,0,0,139,0,0,60,0,0,1,0,0,0,0,0,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,18,0,0,0,0,1,19,214,0,19,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,133,30,5 +0,0,0,17,0,47,113,0,227,42,63,0,1,3,56,0,76,0,7,6,0,0,0,3,2,5,21,0,15,0,1,0,0,0,15,0,47,89,25,0,451,0,0,0,1,0,0,3,0,0,0,0,7,240,0,1,0,0,0,1,0,0,2,0,0,53,0,0,4655,47,588,0,16,0,0,0,0,0,13,0,0,0,1,0,3,7,418,0,0,15,0,0,6,165,0,1377,245,4,0,0,2,0,1019,0,35,0,4,1688,0,0,0,0,11,0,2,0,0,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,766,0,122,0,0,0,14,69,106,1724,380,0,0,0,0,1,0,1,0,0,0,0,0,0,1417,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,13,55,312,18,0,0,419,0,839,0,0,0,267,71,0,0,0,0,0,0,4,0,0,546,1,0,0,0,11,0,0,0,0,7,161,376,0,0,550,0,0,0,0,7,500,0,0,371,0,0,1,0,0,0,0,0,5,0,1,0,9,0,0,0,0,0,44,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,47,0,0,0,0,1,62,333,0,42,0,0,0,0,0,0,437,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,48,0,0,0,0,0,0,0,1,0,0,0,0,0,2,564,141,5 +0,0,0,7,1,31,31,1,43,0,11,0,0,0,6,0,63,0,9,2,0,0,0,0,0,0,0,0,0,0,1,0,0,1,21,0,32,131,0,0,74,0,0,0,1,0,0,0,0,0,0,0,0,73,0,0,0,0,0,1,0,0,0,0,0,10,0,0,180,31,118,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,1,21,1,0,3,16,0,174,25,0,0,0,4,1,111,0,3,0,0,464,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,11,0,42,0,0,0,0,3,50,139,28,0,0,0,0,1,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,18,300,8,0,0,315,0,1204,0,1,0,158,9,0,0,0,0,0,0,0,0,0,163,0,0,0,0,2,0,0,0,0,0,145,63,0,0,50,0,1,0,0,1,270,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,29,1,1,1,0,0,0,0,0,0,11,53,86,0,1,0,0,0,0,0,0,95,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,233,94,5 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,17,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,19,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,36,0,0,0,2,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,3,5 +0,0,0,9,0,45,23,0,45,0,23,0,0,7,6,0,222,0,7,7,0,0,0,9,0,11,12,0,26,0,1,0,0,0,3,2023,45,6,10,0,72,0,0,0,1,0,0,4,0,0,0,0,5,469,0,0,0,0,0,1,0,0,0,0,0,5,0,0,55256,45,406,0,23,0,0,0,0,0,52,0,0,0,0,0,11,151,9286,0,0,3,0,0,1,9,0,472,40,8,2,0,2,0,399,0,0,116,0,5527,0,0,0,0,0,0,6,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,12,12,12,0,0,0,3706,0,91,0,0,0,20,39,855,2354,3631,0,0,0,0,1,0,5,0,0,0,0,0,0,4034,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,106,21,328,11,0,0,319,0,495,0,0,0,156,39,0,0,0,0,0,0,0,0,0,333,1,0,0,0,16,0,0,0,0,2,173,58,0,0,160,0,0,0,0,0,4182,1,0,4678,23,0,1,1,0,0,0,0,7,0,1,0,2,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,58,0,0,0,0,1,48,69,0,36,14,0,0,0,0,0,143,1,0,0,0,0,0,0,0,0,0,0,0,2,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3046,523,5 +4,0,0,16,15,51,65,32,397,24,84,0,0,0,38,1,203,0,7,19,0,15,29,4,3,4,30,0,18,0,7,3,0,15,19,0,80,64,148,0,389,0,0,0,1,0,0,4,1,0,0,0,14,399,0,0,0,0,0,1,0,0,0,0,0,46,0,0,10484,51,2155,0,28,0,0,0,0,0,20,45,0,0,0,0,4,11,254,0,32,19,15,0,6,181,0,1624,300,13,0,0,2,15,1185,0,30,0,0,5482,0,0,0,0,22,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,13,0,3,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,60,14,14,14,0,0,14,345,14,144,0,0,0,28,92,138,1143,322,0,0,0,0,1,0,0,0,0,0,1,1,0,1433,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,12,46,921,35,0,0,1081,0,1334,0,0,0,467,75,0,0,0,0,0,0,0,0,0,795,1,0,5,0,70,0,0,0,0,14,171,471,0,0,856,0,0,0,0,0,975,0,0,376,0,0,1,0,0,0,0,0,15,0,0,0,9,0,0,0,0,0,28,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,11,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,75,0,0,0,0,533,100,593,0,62,0,0,0,0,0,0,498,20,0,0,0,0,0,0,0,0,0,0,0,29,0,1,34,0,0,0,0,0,0,0,0,0,0,0,25,0,2,1391,132,5 +2,0,0,6,1,42,29,1,55,2,6,0,0,2,12,0,91,0,9,7,0,0,0,5,0,12,12,0,10,0,1,0,0,1,8,0,43,54,19,0,60,0,0,0,1,0,0,1,0,0,0,0,5,156,0,0,0,0,0,1,0,0,0,3,0,11,0,0,23595,42,158,0,9,0,0,0,0,0,9,0,0,0,0,0,7,14,2075,0,1,8,1,0,1,0,0,139,5,2,0,0,4,1,126,0,5,0,0,864,0,0,0,0,2,2,4,0,0,0,0,1,0,0,0,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,6,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,10,10,10,0,0,0,2034,0,67,0,0,0,8,46,212,99,2025,0,0,0,0,1,0,2,0,0,0,0,0,0,6052,2,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,135,31,337,7,0,0,467,0,965,0,1,0,227,38,0,0,0,0,0,0,0,0,0,204,1,0,0,0,12,0,0,0,0,3,147,150,0,0,0,0,0,0,0,0,2433,0,0,7335,3,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,77,1,1,1,0,34,0,0,0,0,9,51,221,0,26,9,0,0,0,0,0,82,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,1,0,3,2129,97,5 +0,0,0,2,0,11,2,0,6,0,2,0,0,0,2,1,45,0,6,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,11,6,0,0,5,0,0,0,0,0,0,1,0,0,1,0,0,40,0,0,0,0,0,1,0,0,0,0,0,1,0,0,34779,11,59,0,1,0,0,0,0,0,1,0,0,0,0,0,2,3,17,0,0,1,0,0,0,0,0,8,0,0,0,0,2,0,19,0,0,0,0,17523,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,29,0,37,0,0,0,0,3,43,7,39,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,3,68,2,0,0,46,0,305,0,0,0,6,4,0,0,0,0,0,0,0,0,0,64,1,0,0,0,3,0,0,0,0,0,93,1,0,0,0,0,0,0,0,0,264,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,13,12,1,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,11,5 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,0,0,0,23,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,10,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,15,0,0,0,0,3,21,4,26,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,23,0,0,0,2,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,2,5 +1,0,0,10,0,48,68,0,138,18,36,0,0,6,24,0,886,0,7,4,0,0,0,9,0,13,6,0,10,0,2,0,0,0,11,904,48,32,9,0,247,0,0,0,1,0,0,4,0,0,0,0,4,247,0,1,0,0,0,1,0,0,2,3,0,27,0,0,17905,48,1170,0,8,0,0,0,0,0,17,0,0,0,0,1,10,24,4504,0,0,11,0,0,2,93,0,939,165,6,0,0,2,0,1392,0,17,1,0,1880,0,0,0,0,10,0,1,0,0,0,0,1,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,2830,0,75,0,0,0,6,27,278,1832,2815,0,0,0,0,1,0,3,0,0,0,0,0,0,2350,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,84,41,334,13,0,0,376,0,722,0,0,0,216,26,0,0,0,0,0,0,0,0,0,1165,1,0,0,0,13,0,0,0,0,3,149,225,0,0,352,0,0,0,0,2,2727,1,0,2061,8,0,1,1,0,0,0,0,4,0,1,0,7,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,8,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,32,0,0,0,0,1,59,348,0,17,14,0,0,0,0,0,286,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1041,146,5 +0,0,0,13,0,41,204,0,463,66,140,0,1,6,80,0,100,0,60,6,0,0,0,6,5,9,30,0,20,0,1,0,0,0,20,0,41,232,39,0,802,0,0,0,1,0,0,27,0,0,0,0,10,508,0,0,0,0,0,1,0,0,3,0,0,69,0,0,13684,41,1248,0,21,0,0,0,0,0,81,0,0,0,0,0,6,42,1331,0,0,20,0,0,5,405,0,3279,645,51,0,0,4,0,2103,0,56,0,10,2165,0,0,0,0,16,0,0,0,0,0,0,1,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,1721,0,250,0,0,0,20,183,104,2507,1327,0,0,0,0,1,0,0,0,0,0,0,0,0,5160,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,20,80,529,14,0,0,836,0,950,0,0,0,585,87,0,0,0,0,0,0,8,0,0,1054,1,0,0,0,17,0,0,0,0,11,343,892,0,0,1778,0,0,0,0,5,1279,0,0,3204,0,0,1,0,0,0,0,0,51,0,1,0,17,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,96,0,0,0,0,1,61,737,0,60,0,0,0,0,0,0,893,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,72,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1807,353,5 +0,0,0,22,0,61,56,0,151,39,47,2,1,4,61,0,65,0,7,8,0,0,0,5,1,13,15,0,14,0,1,0,0,0,19,0,61,93,26,0,386,0,0,0,1,0,0,4,0,0,0,0,7,237,0,0,0,0,0,1,0,0,2,0,0,53,0,0,8718,61,412,0,13,0,0,0,0,0,16,0,0,0,0,0,7,20,1077,0,0,19,0,0,4,98,0,902,180,4,0,0,2,0,695,0,36,0,3,2581,0,0,0,0,4,0,6,0,0,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,667,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,10,10,10,0,0,0,1152,0,111,0,0,0,12,57,260,1394,1112,0,0,0,0,1,0,3,0,2,0,0,0,0,2535,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,38,73,476,28,0,0,460,0,1015,0,0,0,309,109,0,0,0,0,0,0,0,0,0,394,1,0,0,0,14,0,0,0,0,5,251,252,0,0,367,0,0,0,1,3,622,0,0,1967,3,0,1,1,0,0,0,0,4,0,0,0,9,0,0,0,0,0,41,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,3,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,79,1,1,1,0,52,0,0,0,0,1,80,167,0,34,9,0,0,0,0,0,307,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,45,0,0,0,0,0,0,0,0,0,0,0,0,0,2,680,156,5 +0,0,0,14,0,58,31,0,112,4,14,0,0,2,44,0,64,0,10,5,0,0,0,5,0,11,15,0,15,0,0,5,0,0,21,3,58,23,7,0,122,0,0,0,1,0,0,1,1,0,0,0,8,344,0,0,0,0,0,1,0,0,0,0,0,18,0,0,2030,58,289,0,19,0,0,0,0,0,15,0,0,0,0,0,7,14,195,0,0,21,0,0,2,38,0,407,55,4,0,0,2,0,442,0,5,0,0,1652,0,0,0,0,600,0,0,0,0,0,0,1,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,10,10,10,0,0,0,167,0,95,0,0,0,14,55,227,2005,160,0,0,0,0,1,0,3,0,0,0,0,0,0,2830,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,60,26,329,27,0,0,339,0,764,0,0,0,189,61,0,0,0,0,0,0,0,0,0,277,1,0,2,0,10,0,0,0,0,2,191,111,0,0,121,0,0,0,6,1,681,0,0,1478,3,0,1,1,0,0,0,0,4,0,0,0,14,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,25,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,98,0,0,0,0,1,79,183,0,37,9,0,0,0,0,0,138,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1826,72,5 +3,0,0,8,0,34,284,0,234,21,70,0,0,0,48,0,73,0,7,5,0,0,0,6,1,5,24,0,13,0,1,3,0,0,18,0,34,12,19,0,587,0,0,0,1,0,0,2,0,0,0,0,8,228,0,0,0,0,0,1,0,0,0,0,0,31,0,0,6943,34,755,0,17,0,0,0,0,0,9,0,0,0,0,0,6,9,2774,0,0,18,0,0,3,201,0,1681,305,4,0,0,2,0,1123,0,20,0,0,1750,0,1,0,0,17,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,1922,0,102,0,0,0,16,64,78,3585,1959,0,0,0,0,1,0,0,0,0,0,0,0,0,1631,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,28,274,17,0,0,508,0,742,0,0,0,422,66,0,0,0,0,0,0,0,0,0,716,1,0,0,0,12,0,0,0,0,3,132,434,0,0,748,0,0,0,0,2,1098,0,0,134,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,8,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,66,0,0,0,0,1,52,263,0,46,0,0,0,0,0,0,470,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,998,1985,5 +4,0,0,6,0,50,36,0,157,18,46,0,0,0,25,1,212,0,7,26,0,0,0,3,91,2,45,0,180,0,5,0,0,0,25,0,50,6,242,0,280,0,0,0,1,0,0,5,0,0,0,0,120,296,0,1,0,0,0,1,0,0,0,0,0,35,0,0,11920,50,908,0,186,0,0,0,0,0,28,0,0,0,0,0,3,11,2237,0,0,25,0,0,4,130,0,1874,190,10,0,0,2,0,1059,0,21,0,0,2035,0,1,1,0,8,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,1583,0,138,0,0,0,240,512,186,1555,1691,0,0,0,0,1,0,0,0,0,0,0,0,0,3352,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,25,452,9,0,0,385,0,756,0,0,0,281,48,0,0,0,0,0,0,3,0,0,484,1,0,0,0,120,0,0,0,0,17,137,388,0,0,508,0,0,0,0,1,3713,0,0,2585,0,0,1,0,1,0,0,0,13,0,0,0,2,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,152,1,1,1,0,301,0,0,0,0,1,75,542,0,232,0,0,0,0,0,0,475,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1843,204,5 +0,0,0,23,0,12,2,0,65,4,38,0,0,0,325,0,94,0,7,1,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,12,6,194,0,120,0,1,0,1,0,0,1,1,0,0,0,0,207,0,0,0,0,0,1,1,0,0,0,0,5,0,1,3488,12,529,0,1,0,0,0,0,0,8,0,0,0,0,0,1,4,465,2,0,1,0,0,0,0,0,73,2,4,0,0,5,0,818,0,0,0,0,1158,0,0,0,0,0,0,2,0,1,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,54,0,25,0,0,0,0,3,30,38,56,0,0,0,0,1,0,1,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,133,1551,30,0,0,1607,0,9295,1,0,0,1399,36,0,0,0,0,0,0,0,0,0,531,1,0,2,0,2,0,0,0,0,0,1238,154,0,0,0,0,0,0,0,0,3987,0,0,736,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,1475,0,2,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7214,239,5 +7,0,0,7,0,60,43,0,129,36,32,6,0,0,50,0,67,0,35,13,0,0,0,7,6,5,15,0,19,0,1,0,0,0,14,0,60,6,37,0,297,0,0,0,1,0,0,4,0,0,0,0,12,440,0,0,0,0,0,1,0,0,0,0,0,55,0,0,27257,60,396,0,20,0,0,0,0,0,19,0,0,0,0,0,13,19,3456,0,0,14,0,0,3,89,0,845,130,7,0,0,2,0,630,0,41,0,0,1940,0,0,1,0,15,0,2,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,10,1,1,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,3218,0,138,0,0,0,24,115,148,845,3234,0,0,0,0,1,0,6,0,0,0,0,0,0,4211,0,0,0,0,0,0,0,0,0,12,0,0,4,0,8,0,0,0,0,0,2,8,51,420,8,0,0,510,0,961,0,0,0,303,58,0,0,0,0,0,0,0,0,0,362,1,0,0,0,26,0,0,0,0,7,159,371,0,0,359,0,0,0,0,1,1021,0,0,5033,0,0,1,0,1,0,0,0,7,0,0,0,2,0,0,0,0,0,37,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,94,1,1,1,0,106,0,0,0,0,1,74,566,0,40,0,0,0,0,0,0,309,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,40,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1162,390,5 +0,0,0,12,0,32,6,0,59,10,15,0,1,2,23,0,39,0,7,3,0,0,0,1,1,2,9,0,7,0,1,0,0,0,7,0,32,88,9,0,103,0,0,0,1,0,0,4,0,0,0,0,3,198,0,0,0,0,0,1,0,0,0,0,0,11,0,0,1623,32,183,0,8,0,0,0,0,1,19,0,0,0,0,0,1,6,196,0,0,7,0,0,1,27,0,260,40,7,0,0,2,0,249,0,7,0,5,719,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,204,0,89,0,0,0,6,29,77,198,214,0,0,0,0,1,0,0,0,0,0,0,0,0,457,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,18,207,13,0,0,246,0,523,0,0,0,139,30,0,0,0,0,0,0,3,0,0,152,1,0,0,0,5,0,0,0,0,4,130,152,0,0,68,0,0,0,0,0,254,0,0,159,0,0,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,15,0,2,0,0,1,39,249,0,19,0,0,1,0,0,0,109,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3232,62,5 +0,0,0,19,1,50,30,1,101,25,16,0,1,4,48,0,120,0,9,6,0,0,0,1,2,6,12,0,11,0,1,0,0,1,26,0,51,207,24,0,217,0,0,0,1,0,0,1,1,0,0,0,6,409,0,0,0,0,0,1,0,0,0,4,0,25,0,0,997,50,305,0,12,0,0,0,0,0,6,0,0,0,0,0,2,5,59,0,1,26,1,0,2,19,0,266,35,5,1,0,4,1,356,0,19,0,5,1500,0,0,0,0,6,0,1,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,114,0,79,0,0,0,12,53,96,241,127,0,0,0,0,1,0,0,0,0,0,0,0,0,387,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,130,59,445,21,0,0,411,0,4373,0,1,0,170,57,0,0,0,0,0,0,0,0,0,329,1,0,3,0,9,0,0,0,0,6,169,46,0,0,82,0,0,0,8,0,531,0,0,24,0,0,1,0,0,0,0,0,7,0,0,0,4,0,0,0,0,0,26,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,57,1,1,1,0,75,0,0,0,0,16,77,47,0,30,0,0,0,0,0,0,158,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,27,0,0,0,0,0,0,0,0,0,0,0,1,0,1,473,113,5 +1,0,0,22,1,95,44,1,140,41,19,0,1,5,62,0,149,0,9,10,0,0,0,8,19,13,20,0,45,0,4,1,0,1,23,0,96,135,56,0,295,0,0,0,1,0,0,8,0,0,0,0,28,291,0,0,0,0,0,1,0,0,0,2,0,41,0,0,16581,95,509,0,48,0,0,0,0,0,34,0,0,0,0,0,13,29,1356,0,1,23,1,0,3,31,0,632,50,11,1,0,4,1,535,0,30,0,4,7683,0,0,0,0,19,0,6,0,15,0,0,1,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,13,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,100,10,10,10,0,0,0,1332,0,190,0,0,0,54,217,356,2610,1354,0,0,0,0,1,0,8,0,0,0,14,1,1,3767,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,2,0,140,77,649,32,0,0,696,0,2211,0,1,0,333,203,0,0,0,0,0,0,0,0,0,429,1,0,0,0,37,0,0,0,0,26,223,215,0,0,110,0,0,0,0,9,1535,0,0,3041,3,0,1,1,1,0,0,0,15,0,0,0,2,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,126,1,1,1,0,99,0,0,0,0,9,119,488,0,74,9,0,2,0,0,0,243,8,0,0,0,0,0,0,0,0,0,0,0,2,0,1,45,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1520,5782,5 +12,0,0,9,1,99,107,1,241,4,72,0,0,11,21,0,765,0,9,5,0,0,0,8,0,11,3,0,37,0,1,0,0,1,42,30919,100,54,7,0,346,0,0,0,1,0,0,26,0,0,0,0,3,1447,0,0,0,0,0,1,0,0,0,39,0,24,0,0,468916,99,1433,0,35,0,0,0,0,0,178,0,0,0,0,0,10,187,145192,0,1,42,1,0,3,126,0,1577,245,52,0,0,4,1,1446,0,14,175,0,11047,0,0,0,0,37,12,1,0,0,0,0,1,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,40,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,77,0,1,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,35,12,12,12,0,0,0,134722,0,254,0,0,0,24,37,1159,3245,134742,0,0,0,0,1,0,42,0,0,0,0,0,0,2726,0,0,0,0,0,0,0,0,0,0,0,0,26,13,0,0,0,0,0,1,0,256,47,925,10,0,0,1189,0,1279,0,1,0,833,72,0,0,0,0,0,0,0,0,0,1226,1,0,0,0,13,0,0,0,0,2,290,611,0,0,802,0,1,0,0,0,8225,1,0,984,39,0,1,1,1,0,0,0,75,0,0,0,0,0,0,0,0,0,3,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,144,1,1,1,0,109,0,0,0,0,9,142,688,0,40,12,0,0,0,0,0,475,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,12,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5389,227,5 +0,0,0,9,0,28,138,0,227,41,70,0,0,0,50,0,31,0,7,4,0,0,0,2,0,3,6,0,6,0,1,0,0,0,16,0,28,6,12,0,412,0,0,0,1,0,0,9,1,0,0,0,3,235,0,0,0,0,0,1,0,0,3,0,0,63,0,0,3120,28,577,0,7,0,0,0,1,0,36,0,0,0,0,0,2,15,495,0,0,16,0,0,4,205,0,1653,320,10,0,0,2,0,1003,0,47,0,0,1446,0,0,0,0,20,0,8,0,0,0,0,1,0,0,0,21,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,14,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,570,0,176,0,0,0,6,30,53,1550,413,0,0,0,0,1,0,0,0,0,0,0,0,0,1784,0,0,0,0,7,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,8,50,312,10,0,0,376,0,740,0,0,0,303,64,0,0,0,0,0,0,7,0,0,523,1,0,4,0,6,0,0,0,0,4,126,432,0,0,812,0,0,0,0,7,260,0,0,391,0,0,1,0,0,0,0,0,22,0,1,0,11,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,32,0,0,0,0,1,44,317,0,16,0,0,0,0,0,0,500,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,45,0,0,0,0,0,0,0,0,0,0,0,0,0,7,600,143,5 +0,0,0,7,0,19,3,0,12,7,3,0,0,0,18,0,15,0,6,1,0,0,0,1,0,0,0,0,2,0,2,0,0,0,10,0,19,6,0,0,61,0,0,0,1,0,0,1,0,0,0,0,1,90,0,0,0,0,0,1,0,0,0,25,0,15,0,0,238,19,52,0,4,0,0,0,0,0,4,0,0,0,0,0,1,3,26,0,0,10,0,0,0,0,0,13,0,1,0,0,2,0,44,0,12,0,0,383,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,41,0,41,0,0,0,2,5,35,40,70,0,0,0,0,1,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,24,154,8,0,0,163,0,250,0,0,0,73,11,0,0,0,0,0,0,0,0,0,57,1,0,0,0,2,0,0,0,0,2,135,39,0,0,0,0,0,0,0,0,41,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,4,0,0,0,0,1,29,123,0,4,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,79,51,5 +0,0,0,7,0,27,2,0,95,5,44,0,0,0,10,0,23,0,7,1,0,0,0,2,6,0,0,0,9,0,1,0,0,0,11,0,27,6,7,0,129,0,1,0,1,0,0,1,0,0,0,0,6,146,0,0,0,0,0,1,0,0,0,5,0,13,0,0,90178,27,198,0,9,0,0,0,0,0,6,0,0,0,0,0,2,5,7711,0,0,11,0,0,1,82,0,734,195,1,0,0,2,0,334,0,8,0,0,686,0,0,0,0,0,0,1,0,3,0,0,1,0,0,0,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,7740,0,65,0,0,0,12,27,65,729,7561,0,0,0,0,1,0,0,0,1,0,0,0,0,25082,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,11,192,9,0,0,165,0,1448,0,0,0,79,33,0,0,0,0,0,0,0,0,0,181,1,0,0,0,9,0,0,0,0,7,113,184,0,0,1056,0,0,0,0,2,7470,0,0,30254,0,0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,9,0,0,0,0,1,38,123,0,10,0,0,0,0,0,0,183,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7754,973,5 +5,0,0,26,0,101,53,0,114,53,65,0,1,11,84,0,259,0,7,3,0,0,0,11,2,15,44,0,31,0,5,9,0,0,33,3382,101,151,4,0,396,1,0,0,1,0,0,3,0,0,0,0,16,2111,0,2,0,0,0,1,0,0,0,1,0,72,0,0,60354,101,751,0,43,0,0,0,0,0,80,0,0,0,0,0,12,181,9769,0,0,33,0,0,1,55,0,1114,150,5,1,0,2,0,1034,0,66,337,1,6753,0,0,1,0,7,0,0,0,0,0,0,1,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,50,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,5256,0,137,0,0,0,40,102,1252,4261,5211,0,0,0,0,1,0,5,0,0,0,0,0,0,1143,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,2,0,968,144,591,27,0,0,852,0,1666,2,0,0,578,135,0,0,0,0,0,0,0,0,0,594,1,0,0,0,16,0,0,0,0,12,298,359,0,0,660,0,0,0,0,0,4757,1,0,974,40,0,1,1,0,0,0,0,5,0,0,0,1,0,0,0,0,0,55,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,18,0,0,0,0,0,40,20,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,125,1,1,1,0,128,0,0,0,0,8,134,949,0,90,14,0,0,0,0,0,320,13,0,0,0,0,0,0,0,0,0,0,0,3,0,2,63,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3333,199,5 +1,0,0,15,1,126,992,1,3061,91,981,0,1,4,143,1,1812,0,198,11,0,0,0,14,23,35,80,0,56,0,4,0,0,1,68,1263,127,206,86,0,4222,0,0,0,1,0,0,7,0,0,0,0,33,636,0,0,0,0,0,1,0,0,0,3,0,107,0,0,20449,126,7380,0,57,0,0,0,1,0,27,0,0,0,0,0,18,33,1784,0,1,68,1,0,6,2911,0,22827,4825,9,1,0,4,1,14219,0,89,0,5,10372,0,0,0,0,17,0,4,0,0,0,0,1,0,0,0,20,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,1,17,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,56,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,190,12,12,12,0,0,0,1344,0,257,0,0,0,63,792,452,8973,1286,0,0,0,0,1,0,3,0,0,0,0,0,0,8437,0,0,1,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,186,140,1028,25,0,0,1844,0,4103,0,1,0,1484,260,0,0,0,0,0,0,0,0,0,7193,1,0,0,0,48,0,0,0,0,28,301,5137,0,0,11202,0,0,0,0,1,6818,1,0,3564,6,0,1,1,0,0,0,0,9,0,0,0,2,0,0,0,0,0,92,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,6,5,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,220,1,1,1,0,306,0,0,0,0,9,195,732,0,163,12,0,0,0,1,0,5148,9,0,0,0,0,0,0,0,0,0,0,0,2,0,2,101,0,0,0,0,0,0,0,0,0,0,0,1,0,2,9266,481,5 +2,0,0,22,0,97,89,0,288,68,74,0,1,9,104,0,1345,0,7,9,0,0,0,13,13,25,54,0,49,0,2,0,0,0,36,1628,97,236,81,0,537,0,0,0,1,0,0,3,0,0,0,0,23,484,0,0,0,0,0,1,0,0,3,11,0,87,0,0,18363,97,2043,0,46,0,0,0,0,0,23,0,0,0,0,0,13,58,3639,0,0,36,0,0,5,177,0,1860,275,3,0,0,2,0,2680,0,61,14,4,5852,0,0,0,0,34,0,2,0,0,0,0,1,0,0,0,62,13,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,2,0,24,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,156,12,12,12,0,0,0,1736,0,152,0,0,0,46,500,543,2195,1619,0,0,0,0,1,0,7,0,0,0,0,0,0,1297,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,98,102,736,24,0,0,574,0,1405,0,0,0,329,320,0,0,0,0,0,0,0,0,0,1917,1,0,0,0,35,0,0,0,0,23,210,387,0,0,604,0,6,0,0,5,4501,1,0,99,12,0,1,1,1,0,0,0,2,0,0,0,6,0,0,0,0,0,70,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,12,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,121,1,1,1,0,209,0,0,0,0,1,133,257,0,116,14,0,0,0,0,0,616,7,0,0,0,0,0,0,0,0,0,0,0,2,0,1,80,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1435,239,5 +0,0,0,22,2,69,89,2,137,19,49,1,1,10,37,0,1387,0,11,9,0,0,0,8,1,14,15,0,33,0,1,0,0,2,15,12582,71,434,18,0,183,0,0,0,1,0,0,3,0,0,0,0,6,608,0,0,0,0,0,1,0,0,0,0,0,23,0,0,25854,69,1758,0,31,0,0,0,0,0,74,0,0,0,0,2,12,163,4424,0,2,15,2,0,4,18,0,702,55,4,0,0,6,2,1680,0,18,105,4,5381,0,0,0,0,45,0,7,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,12,12,12,0,0,0,1428,0,111,0,0,0,22,58,1011,1881,1415,0,0,0,0,1,0,6,0,0,0,0,0,0,782,0,0,0,0,0,0,1,0,0,0,0,0,4,1,0,0,0,0,0,1,0,352,88,798,29,0,0,847,0,2704,0,2,0,387,87,0,0,0,0,0,0,0,0,0,1722,1,0,0,0,18,0,0,0,0,5,264,106,0,0,263,0,0,0,0,1,5309,1,0,380,35,0,1,1,0,0,0,0,4,0,0,0,2,0,0,0,0,0,20,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,35,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,90,1,1,1,0,88,0,0,0,0,17,86,218,0,51,12,0,0,0,0,0,268,5,0,0,0,0,0,0,0,0,0,0,0,4,0,2,27,0,0,0,0,0,0,0,0,0,0,0,2,0,3,2249,156,5 +2,0,0,11,0,27,12,0,333,17,79,0,1,3,28,0,48,0,7,4,0,0,0,1,0,2,9,0,7,0,2,0,0,0,8,0,27,81,13,0,582,0,0,0,1,0,0,2,0,0,0,0,4,1769,0,0,0,0,0,1,0,0,0,0,0,27,0,0,48558,27,517,0,8,0,0,0,0,0,8,0,0,0,0,0,1,4,605,0,0,8,0,0,1,281,0,2685,290,3,0,0,2,0,1416,0,8,0,4,4662,0,0,2,0,3,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,637,0,66,0,0,0,8,32,84,1209,654,0,0,0,0,1,0,0,0,0,0,0,0,0,2212,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,26,319,12,0,0,221,0,1348,0,0,0,121,100,0,0,0,0,0,0,0,0,0,511,1,0,0,0,5,0,0,0,0,5,128,663,0,0,734,0,0,0,0,0,778,0,0,2811,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,26,0,0,0,0,1,35,192,0,20,0,0,0,0,0,0,593,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,145,5 +0,0,0,5,0,19,58,0,121,7,36,0,0,0,14,0,23,0,7,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,5,0,19,6,5,0,202,0,0,0,1,0,0,2,0,0,0,0,1,188,0,0,0,0,0,1,0,0,1,0,0,27,0,0,1037,19,262,0,3,0,0,0,0,0,11,0,0,0,0,0,1,4,96,0,0,5,0,0,5,111,0,895,150,4,0,0,2,0,535,0,11,0,0,449,0,0,0,0,23,0,2,0,0,0,0,1,1,0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,118,0,94,0,0,0,2,15,49,659,149,0,0,0,0,1,0,0,0,0,0,0,0,0,665,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,14,168,5,0,0,312,0,519,0,0,0,228,30,0,0,0,0,0,0,0,0,0,259,1,0,0,0,3,0,0,0,0,2,133,324,0,0,389,0,0,0,0,2,81,0,0,45,0,0,1,0,0,0,0,0,4,0,0,0,13,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,16,0,0,0,0,1,24,362,0,7,0,0,0,0,0,0,268,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,2,225,89,5 +0,0,0,4,0,13,45,0,140,0,47,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,13,6,0,0,184,0,1,0,1,0,0,1,0,0,0,0,0,61,0,0,0,0,0,1,0,0,0,0,0,4,0,0,9337,13,251,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,633,0,0,1,0,0,1,132,0,1029,220,1,0,0,2,0,541,0,0,0,0,4038,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,194,0,27,0,0,0,0,3,33,12179,204,0,0,0,0,1,0,0,0,1,0,0,0,0,415,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,8,3,125,4,0,0,164,0,131,0,0,0,99,17,0,0,0,0,0,0,0,0,0,255,1,0,0,0,2,0,0,0,0,0,132,230,0,0,566,0,0,0,0,0,247,0,0,888,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,14,28,0,1,0,0,0,0,0,0,235,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,291,31,5 +2,0,0,8,1,55,44,1,77,3,19,0,0,9,7,0,133,0,10,4,0,0,0,7,0,11,0,0,8,0,1,0,0,1,11,6355,56,54,5,0,102,0,0,0,1,0,0,1,1,0,0,0,2,482,0,0,0,0,0,1,0,0,0,4,0,10,0,0,14233,55,257,0,6,0,0,0,0,0,18,0,0,0,0,0,9,43,2584,0,1,11,1,0,3,24,0,499,65,3,1,0,4,1,260,0,1,33,0,2436,0,0,0,0,8,2,2,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,793,0,61,0,0,0,4,11,501,850,777,0,0,0,0,1,0,6,0,0,0,0,0,0,374,2,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,217,31,459,9,0,0,476,0,608,0,1,0,182,28,0,0,0,0,0,0,0,0,0,299,1,0,3,0,11,0,0,0,0,2,173,52,0,0,118,0,0,0,0,0,15136,1,0,68,10,0,1,1,0,0,0,0,6,0,0,0,2,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,66,1,1,1,0,18,0,0,0,0,9,67,39,0,8,12,0,0,0,0,0,157,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,999,56,5 +4,0,0,6,3,45,10,12,79,29,12,0,0,2,42,0,648,0,7,9,0,6,0,5,2,8,56,0,4,0,1,0,0,3,15,0,48,327,3,0,254,0,0,0,1,0,0,2,0,0,0,0,2,157,0,0,0,0,0,1,0,0,0,0,0,50,0,0,2128,45,1100,0,2,0,0,0,0,0,12,9,0,0,0,0,8,19,269,0,12,15,3,0,2,17,0,236,30,4,0,0,2,3,407,0,36,0,0,1266,0,0,0,0,6,0,0,0,0,0,2,1,0,0,0,6,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,1,0,0,0,0,34,0,1,0,0,0,0,0,0,0,1,0,1,3,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,44,10,10,10,0,0,0,168,0,106,0,0,0,2,50,198,298,305,0,0,0,0,1,0,3,0,0,0,0,0,0,1013,0,0,0,0,0,0,0,0,0,8,0,0,2,1,0,0,0,0,0,1,0,32,46,427,9,0,0,537,0,635,0,0,0,350,106,0,0,0,0,0,0,0,0,0,800,1,0,0,0,22,0,0,0,0,2,169,146,0,0,50,0,0,0,0,2,899,0,0,344,3,0,1,1,0,0,0,0,6,0,0,0,9,0,0,0,0,0,29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,65,1,1,1,0,3,0,0,0,0,25,63,59,0,60,9,0,0,0,0,0,788,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,33,0,0,0,0,0,0,0,0,0,0,0,6,0,2,314,99,5 +6,0,0,17,0,98,74,0,107,70,58,0,0,8,55,0,2145,0,18,7,0,0,0,13,0,29,14,0,30,0,4,0,0,0,23,6905,98,6,173,0,134,0,0,0,1,0,0,20,0,0,0,0,3,1163,0,0,0,0,0,1,0,0,0,0,0,38,0,0,108919,98,2733,0,46,0,0,0,0,0,173,0,0,0,0,1,12,278,14850,0,0,23,0,0,0,0,0,696,30,34,0,0,2,0,2399,0,30,175,0,8915,0,0,0,0,8,4,18,0,2,0,0,1,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,2,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,74,12,12,12,0,2,0,7653,0,347,0,0,0,23,68,1515,6811,7600,0,0,0,0,1,0,8,0,0,0,0,0,0,17881,0,0,0,0,0,0,0,0,0,0,0,0,20,1,0,0,0,0,0,1,0,159,180,964,16,0,0,926,0,5661,0,0,0,641,3365,0,0,0,0,0,0,11,0,0,2465,1,0,0,0,20,0,0,0,0,19,244,389,0,0,336,0,0,0,0,0,12378,1,0,17488,36,0,1,1,0,0,0,0,49,0,0,0,37,0,0,0,0,0,31,0,0,0,0,0,0,1,16,0,1,1,31,31,0,16,11,0,0,0,0,0,36,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,121,1,1,1,0,101,0,0,0,0,1,121,612,0,63,14,0,0,0,0,0,232,1,0,0,0,0,0,0,0,0,0,0,0,2,0,8,74,0,0,0,0,0,0,0,0,0,0,0,0,0,17,7503,178,5 +0,0,0,6,0,30,8,0,20,0,7,0,0,2,9,0,28,0,7,4,0,0,0,5,0,8,0,0,3,0,1,0,0,0,4,0,30,6,2,0,44,0,0,0,1,0,0,1,0,0,0,0,2,131,0,0,0,0,0,1,0,0,0,0,0,6,0,0,971,30,72,0,3,0,0,0,0,0,8,0,0,0,0,0,7,13,134,0,0,4,0,0,1,8,0,148,20,2,0,0,2,0,95,0,1,0,0,552,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,99,0,42,0,0,0,2,6,190,91,94,0,0,0,0,1,0,3,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,11,149,6,0,0,180,0,307,0,0,0,81,9,0,0,0,0,0,0,0,0,0,81,1,0,0,0,9,0,0,0,0,1,112,75,0,0,31,0,0,0,0,0,1120,0,0,88,2,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,3,0,0,0,0,1,34,225,0,4,8,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,231,35,5 +0,0,0,10,0,48,150,0,49,0,7,0,0,2,8,0,901,0,6,5,0,0,0,7,0,13,6,0,7,0,1,0,0,0,9,7846,48,63,10,0,61,0,0,0,1,0,0,3,0,0,0,0,3,1624,0,0,0,0,0,1,0,0,0,0,0,13,0,0,232591,48,1558,0,4,0,0,0,0,0,303,0,0,0,0,0,9,23,39231,0,0,9,0,0,1,8,0,176,20,5,1,0,2,0,1277,0,4,0,0,5984,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,34406,0,67,0,0,0,4,21,555,1362,34382,0,0,0,0,1,0,3,0,0,0,0,0,0,674,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,21,388,10,0,0,796,0,469,0,0,0,617,42,0,0,0,0,0,0,0,0,0,1123,1,0,0,0,12,0,0,0,0,1,216,180,0,0,30,0,0,0,0,0,4410,1,0,58,151,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,151,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,21,0,0,0,0,1,57,107,0,13,14,0,0,0,0,0,78,3,0,0,0,0,0,0,0,0,0,0,0,1,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2311,88,5 +7,0,0,8,0,117,44,0,94,27,31,0,0,6,36,0,633,0,7,4,0,0,0,15,0,13,27,0,27,0,7,5,0,0,73,794,117,6,13,0,198,0,0,0,1,0,0,6,0,0,0,0,14,410,0,0,0,0,0,1,0,0,0,0,0,37,0,0,87874,117,976,0,35,0,0,0,0,0,56,0,0,0,0,0,16,84,14259,0,0,73,0,0,1,41,0,661,90,10,0,0,2,0,1076,0,30,41,0,15906,0,0,0,0,19,7,11,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,18,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,4,0,97,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,46,12,12,12,0,0,0,10119,0,210,0,0,0,32,92,701,3325,10098,0,0,0,0,1,0,12,0,0,0,0,0,0,4777,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,3,0,84,50,557,8,0,0,553,0,762,0,0,0,364,59,0,0,0,0,0,0,0,0,0,851,1,0,0,0,19,0,0,0,0,7,217,111,0,0,272,0,0,0,0,0,4311,1,0,3120,20,0,1,1,0,0,0,0,14,0,0,0,3,0,0,0,0,0,28,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,164,1,1,1,0,104,0,0,0,8,1,190,517,0,65,14,0,0,0,0,0,224,7,0,0,0,0,0,0,0,0,0,0,0,3,0,1,33,0,0,0,0,0,0,0,0,0,0,0,0,0,6,3208,130,5 +0,0,0,10,0,41,7,0,65,7,8,0,0,6,12,0,1014,0,7,2,0,0,0,8,0,10,0,0,3,0,1,0,0,0,4,900,41,6,0,0,85,0,1,0,1,0,0,5,0,0,0,0,1,357,0,0,0,0,0,1,0,0,0,0,0,19,0,0,38197,41,1160,0,1,0,0,0,0,0,37,0,0,0,1,1,9,27,6070,0,0,4,0,0,1,9,0,272,40,11,0,0,2,0,1123,0,6,0,0,5336,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,12,12,12,0,0,0,4275,0,102,0,0,0,0,3,268,1240,4292,0,0,0,0,1,0,3,0,1,2,0,0,0,2855,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,1,0,84,19,240,9,0,0,377,0,495,0,0,0,211,10,0,0,0,0,0,0,188,0,0,1119,1,0,0,0,10,0,0,0,0,1,124,163,0,0,45,0,1,0,0,0,3051,1,0,2584,7,0,1,2,1,0,0,0,17,0,1,0,4,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,0,186,0,0,0,7,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,0,0,0,0,0,1,45,844,0,2,12,0,2,0,0,0,82,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,13,0,0,0,0,0,90,0,0,0,0,0,0,0,6,1527,77,5 +3,0,0,17,1,50,197,1,232,12,24,1,0,0,30,0,93,0,9,5,0,0,0,2,1,4,9,0,14,0,1,0,0,1,33,0,51,109,13,0,472,0,0,0,1,0,0,1,0,0,0,0,4,238,0,0,0,0,0,1,0,0,0,6,0,25,0,0,16795,50,568,0,15,0,0,0,0,0,6,0,0,0,0,0,3,5,1373,0,1,33,1,0,3,193,0,1493,45,1,0,0,4,1,1118,0,11,0,0,1854,0,0,0,0,9,0,1,0,0,0,0,1,0,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,1404,0,138,0,0,0,8,195,138,1755,1402,0,0,0,0,1,0,0,0,0,0,0,0,0,5255,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,2,2,146,37,539,32,0,0,588,0,2490,0,1,0,391,139,0,0,0,0,0,0,0,0,0,586,1,0,0,0,8,0,0,0,0,2,181,463,0,0,159,0,0,0,8,1,2018,0,0,4950,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,8,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,93,1,1,1,0,59,0,0,0,0,9,84,130,0,28,0,0,0,0,0,0,510,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,16,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1988,196,5 +4,0,0,7,1,46,36,1,89,3,12,0,0,9,9,0,1093,0,9,3,0,0,0,7,0,10,0,0,6,0,1,0,0,1,6,14925,47,54,0,0,94,0,0,0,1,0,0,5,0,0,0,0,1,507,0,0,0,0,0,1,0,0,0,9,0,4,0,0,77808,46,1252,0,3,0,0,0,0,0,37,0,0,0,0,0,9,37,13349,0,1,6,1,0,2,7,0,443,45,10,1,0,4,1,1182,0,1,26,0,3609,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,10429,0,93,0,0,0,2,5,449,1025,10422,0,0,0,0,1,0,10,0,0,0,0,0,0,914,0,0,0,0,0,0,0,0,0,0,0,0,5,5,4,0,0,0,0,1,0,226,29,455,8,0,0,514,0,606,0,1,0,219,11,0,0,0,0,0,0,0,0,0,1257,1,0,0,0,10,0,0,0,0,2,173,83,0,0,47,0,0,0,0,0,4078,1,0,663,7,0,1,1,0,0,0,0,16,0,0,0,2,0,0,0,0,0,3,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,64,1,1,1,0,9,0,0,0,0,9,53,198,0,5,12,0,0,0,0,0,146,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,4,1675,95,5 +11,0,0,20,0,83,2994,0,3146,39,63,0,1,9,72,1,1062,0,7,6,0,0,0,12,4,15,36,0,26,0,7,4,0,0,31,945,83,254,22,0,6296,0,0,0,1,0,0,5,0,0,0,0,18,7699,0,4,0,0,0,1,0,0,1,1,0,57,0,0,52649,83,7426,0,34,0,0,0,0,0,19,0,0,0,0,0,14,30,1743,0,0,31,0,0,5,3061,0,21869,275,3,0,0,2,0,16645,0,37,0,5,4842,0,0,0,0,26,0,7,0,0,0,0,1,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,4,0,0,0,0,10,0,31,0,0,0,0,0,0,0,0,2,10,1,1,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,12,12,12,0,0,0,808,0,152,0,0,0,34,96,344,13149,825,0,0,0,0,1,0,9,0,0,0,0,0,0,13456,0,0,0,0,0,0,0,0,0,0,0,0,5,1,6,0,0,0,0,1,2,89,65,1073,24,0,0,3765,0,2531,0,0,0,3425,283,0,0,0,0,0,0,2,0,0,7355,1,0,0,0,22,0,0,0,0,13,202,6512,0,0,646,0,6,0,0,2,3243,1,0,970,8,0,1,1,1,0,0,0,8,0,1,0,10,0,0,0,0,0,45,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,8,13,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,109,1,1,1,0,78,0,0,0,0,1,114,1529,0,74,14,0,0,0,0,0,6267,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,49,0,0,0,0,0,0,0,0,0,0,0,0,0,2,121737,412,5 +0,0,0,4,0,14,3,0,21,2,3,0,0,0,10,0,23,0,6,1,0,0,0,1,0,0,3,0,1,0,1,1,0,0,2,0,14,6,0,0,23,0,0,0,1,0,0,12,0,0,0,0,1,125,0,0,0,0,0,1,0,0,0,0,0,11,0,0,2337,14,137,0,3,0,0,0,0,0,48,0,0,0,0,0,1,17,390,0,0,2,0,0,0,0,0,24,0,22,0,0,2,0,57,0,3,0,0,244,0,0,0,0,0,0,6,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,351,0,137,0,0,0,2,11,34,27,332,0,0,0,0,1,0,0,0,0,0,0,0,0,917,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,8,6,127,4,0,0,204,0,322,0,0,0,131,13,0,0,0,0,0,0,10,0,0,66,1,0,0,0,2,0,0,0,0,1,96,92,0,0,0,0,0,0,0,0,58920,0,0,451,0,0,1,0,0,0,0,0,26,0,0,0,5,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,14,0,0,0,0,1,16,268,0,6,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,6,59230,13320,5 +2,0,0,10,12,66,7,48,151,3,16,1,0,2,23,0,865,0,23,43,0,12,0,6,1,13,15,0,12,0,3,1,0,12,25,898,78,18,12,0,67,0,0,0,1,0,0,5,0,0,0,0,8,291,0,0,0,0,0,1,0,0,0,0,0,9,0,0,6640,66,2500,0,13,0,0,0,0,0,20,36,0,0,0,0,9,22,1149,0,48,25,12,0,0,0,0,147,5,7,1,0,2,12,955,0,5,0,0,2560,0,0,0,0,1485,0,3,0,0,0,2,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,12,12,12,0,0,0,481,0,88,0,0,0,14,73,306,3024,471,0,0,0,0,1,0,3,0,0,0,0,0,0,2977,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,19,732,23,0,0,770,0,938,0,0,0,288,60,0,0,0,0,0,0,0,0,0,1088,1,0,0,0,62,0,0,0,0,3,154,71,0,0,0,0,0,0,0,1,2168,1,0,76,6,0,1,1,1,0,0,0,5,0,0,0,1,0,0,0,0,0,16,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,78,1,1,1,0,31,0,0,0,2,97,103,269,0,32,12,0,0,0,0,0,115,12,0,0,0,0,0,0,0,0,0,0,0,13,0,1,5,0,0,0,0,0,0,0,0,0,0,0,13,0,1,775,83,5 +2,0,0,10,1,43,39,1,69,8,16,0,0,9,6,0,843,0,9,3,0,0,0,7,0,10,0,0,8,0,1,0,0,1,5,10127,44,54,0,0,62,0,0,0,1,0,0,4,0,0,0,0,1,510,0,0,0,0,0,1,0,0,0,4,0,4,0,0,27258,43,990,0,6,0,0,0,0,0,39,0,0,0,0,0,9,47,4851,0,1,5,1,0,1,0,0,364,30,6,0,0,4,1,879,0,1,56,0,3984,0,0,0,0,6,2,4,0,1,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,1665,0,74,0,0,0,2,5,499,1033,1653,0,0,0,0,1,0,8,0,0,0,0,0,0,511,2,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,1,0,221,45,412,9,0,0,470,0,520,0,1,0,197,13,0,0,0,0,0,0,0,0,0,991,1,0,0,0,10,0,0,0,0,2,169,36,0,0,74,0,0,0,0,0,3802,1,0,189,14,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,2,0,0,0,8,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,55,1,1,1,0,11,0,0,0,0,9,49,207,0,7,12,0,0,0,0,0,123,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,14,0,0,0,0,0,0,0,0,0,0,0,1,0,5,1747,62,5 +3,0,0,13,0,70,92,0,277,34,93,0,1,3,69,1,126,0,7,6,0,0,0,6,2,6,21,0,20,0,10,0,0,0,39,0,70,304,41,0,554,0,0,0,1,0,0,6,1,0,0,0,16,439,0,0,0,0,0,1,0,0,5,3,0,54,0,0,21163,70,729,0,30,0,0,1,0,0,28,0,0,0,0,2,6,16,5400,0,0,39,0,0,5,218,0,1838,415,13,0,0,2,0,1221,0,41,0,5,5769,0,0,0,0,33,1,3,0,0,0,0,1,0,0,0,154,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,8,0,0,0,3,1,1,0,0,0,0,2,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,1,0,0,0,3,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,50,0,0,0,0,0,0,3902,0,276,0,0,0,32,108,195,2201,4034,0,0,0,0,1,0,0,0,0,0,0,0,0,4728,0,0,0,0,0,0,0,0,0,0,1,0,7,0,0,0,0,0,0,0,0,13,65,618,19,0,0,1049,0,1648,0,0,0,913,494,0,10,0,0,0,0,0,0,0,669,1,0,3,0,14,0,0,0,0,9,299,852,0,0,1221,0,43,0,2,3,1254,0,0,2855,0,0,1,17,1,0,0,0,16,0,5,0,8,0,0,0,0,0,42,1,0,10,20,5,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,10,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,1,0,0,0,0,1,0,0,118,1,1,1,0,160,0,0,0,0,1,109,1040,0,57,0,0,0,0,0,0,864,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,42,16,0,0,0,0,0,0,0,0,0,0,0,0,2,4398,292,5 +1,0,0,13,1,75,10,4,32,46,7,0,0,6,59,0,58,0,11,8,0,2,1,6,1,11,9,0,12,0,1,0,0,1,27,0,76,95,120,0,203,0,0,0,1,0,0,6,0,0,0,0,6,322,0,0,0,0,0,1,0,0,0,2,0,57,0,0,3971,75,347,0,11,0,0,0,1,0,29,3,0,0,0,1,8,24,569,0,4,27,1,0,0,0,0,227,20,11,0,0,2,1,274,0,52,0,0,1609,0,0,0,0,12,0,6,0,0,0,0,1,0,0,0,7,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,21,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,10,10,10,0,0,0,397,0,154,0,0,0,10,38,278,214,391,0,0,0,0,1,0,4,0,0,0,0,0,0,1096,0,0,0,0,1,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,86,68,418,17,0,0,514,0,856,0,0,0,301,29,0,0,0,0,0,0,4,0,0,183,1,0,0,0,18,0,0,0,0,6,194,191,0,0,0,0,0,0,0,0,727,0,0,474,3,0,1,1,1,0,0,0,14,0,0,0,6,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,93,1,1,1,0,35,0,0,0,0,9,103,561,0,24,9,0,1,0,0,0,165,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,50,0,0,0,0,0,0,0,0,0,0,0,2,0,5,726,118,5 +0,0,0,2,0,31,8,0,35,0,6,0,1,2,2,0,67,0,6,3,0,0,0,6,0,10,0,0,2,0,1,0,0,0,2,4,31,25,0,0,43,0,0,0,1,0,0,2,0,0,0,0,1,118,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1694,31,115,0,1,0,0,0,0,0,8,0,0,0,0,0,8,17,360,0,0,2,0,0,3,12,0,196,25,1,0,0,4,0,138,0,0,0,0,786,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,12,12,0,0,0,66,0,38,0,0,0,0,3,212,82,65,0,0,0,0,1,0,4,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,38,22,185,2,0,0,217,0,597,0,0,0,72,3,0,0,0,0,0,0,0,0,0,127,1,0,0,0,9,0,0,0,0,0,114,50,0,0,37,0,0,0,0,0,316,1,0,9,4,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,0,0,0,0,0,1,33,90,0,2,11,0,0,0,0,0,60,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,48,5 +0,0,0,6,1,11,26,1,27,0,5,0,0,0,5,0,61,0,8,2,0,0,0,0,0,0,0,0,0,0,1,0,0,1,2,0,12,96,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,4,0,0,103,11,89,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,1,2,1,0,1,0,0,42,0,0,0,0,4,1,37,0,2,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,18,0,0,0,0,3,28,10,26,0,0,0,0,1,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,17,191,7,0,0,234,0,334,0,1,0,84,2,0,0,0,0,0,0,0,0,0,132,0,0,0,0,2,0,0,0,0,0,114,34,0,0,0,0,0,0,0,1,149,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,1,1,1,0,0,0,0,0,0,9,14,91,0,1,0,0,0,0,0,0,42,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,24,5 +0,0,0,18,0,44,25,0,147,27,40,0,1,8,43,0,79,0,7,7,0,0,0,3,1,3,18,0,12,0,2,1,0,0,20,0,44,186,16,0,385,0,0,0,1,0,0,3,0,0,0,0,7,234,0,0,0,0,0,1,0,0,0,0,0,43,0,0,16406,44,396,0,15,0,0,0,0,0,18,0,0,0,0,0,5,9,1227,0,0,20,0,0,5,96,0,954,115,5,0,0,2,0,766,0,21,0,5,3869,0,0,0,0,5,0,3,0,0,0,0,1,0,0,0,12,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,78,0,0,0,0,0,0,1241,0,185,0,0,0,14,54,106,798,1277,0,0,0,0,1,0,0,0,0,0,0,0,0,4742,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,87,42,879,23,0,0,333,0,2178,0,0,0,229,191,0,0,0,0,0,0,0,0,0,350,1,0,0,0,11,0,0,0,0,7,141,323,0,0,210,0,0,0,0,1,1698,0,0,4329,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,4,4,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,40,0,0,0,0,1,64,283,0,36,0,0,0,0,1,0,345,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,37,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1788,302,5 +2,0,0,20,1,77,47,1,124,84,28,1,1,6,111,0,137,0,21,7,0,0,0,5,9,13,20,0,25,0,4,0,0,1,34,0,78,454,38,0,420,0,0,0,1,0,0,3,0,0,0,0,16,428,0,0,0,0,0,1,0,0,0,0,0,104,0,0,15745,77,504,0,27,0,0,0,0,0,20,0,0,0,0,0,7,18,2056,0,1,34,1,0,3,64,0,765,105,6,0,0,4,1,752,0,93,0,5,5010,0,0,0,0,22,2,3,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,31,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,10,10,10,0,0,0,1994,0,149,0,0,0,30,138,273,688,1969,0,0,0,0,1,0,3,0,2,0,0,0,0,2137,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,166,125,881,24,0,0,843,0,3236,0,1,0,496,115,0,0,0,0,0,0,0,0,0,476,1,0,0,0,21,0,0,0,0,16,392,298,0,0,236,0,0,0,0,0,1188,0,0,1990,3,0,1,1,0,0,0,0,9,0,0,0,5,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,97,1,1,1,0,157,0,0,0,0,9,112,705,0,53,9,0,0,0,0,0,362,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,90,0,0,0,0,0,0,0,0,0,0,0,1,0,3,891,218,5 +1,0,0,2,0,15,2,0,10,0,2,0,0,0,2,0,22,0,6,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,4,0,15,6,3,0,13,0,0,0,1,0,0,2,0,0,0,0,1,77,0,0,0,0,0,1,0,0,0,0,0,1,0,0,292,15,51,0,3,0,0,0,0,0,7,0,0,0,0,1,1,6,40,0,0,4,0,0,0,0,0,12,0,3,0,0,2,0,29,0,0,0,0,187,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,52,0,46,0,0,0,2,10,31,24,52,0,0,0,0,1,0,1,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,4,0,0,2,0,0,0,0,0,0,0,0,8,3,91,2,0,0,117,0,309,0,0,0,58,5,0,0,0,0,0,0,0,0,0,44,1,0,0,0,3,0,0,0,0,1,97,35,0,0,0,0,0,0,0,0,67,0,0,29,0,0,1,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,6,0,0,0,0,1,19,152,0,7,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,27,5 +3,0,0,10,1,80,163,1,264,27,80,0,0,9,38,0,586,0,9,7,0,0,0,8,0,14,24,0,28,0,2,3,0,1,27,6262,81,54,17,0,388,0,0,0,1,0,0,3,0,0,0,0,9,790,0,0,0,0,0,1,0,0,2,5,0,46,0,0,115697,80,1198,0,29,0,0,0,0,0,58,0,0,0,0,0,10,108,18978,0,1,27,1,0,5,174,0,1818,300,6,0,0,4,1,1561,0,31,85,0,5260,0,0,0,0,29,3,2,0,0,0,0,1,0,0,0,31,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,4,3,0,0,0,0,2,0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,12,12,12,0,0,0,16006,0,163,0,0,0,25,99,816,2478,15817,0,0,0,0,1,0,6,0,0,0,0,0,0,1671,3,0,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,1,0,219,58,717,11,0,0,777,0,1071,0,1,0,447,162,0,0,0,0,0,0,0,0,0,1149,1,0,0,0,15,0,0,0,0,6,249,383,0,0,775,0,4,0,0,4,4396,1,0,503,28,0,1,1,0,0,0,0,7,0,1,0,15,0,0,0,0,0,27,0,0,0,9,5,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,28,7,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,105,1,1,1,0,113,0,0,0,0,9,108,538,0,57,14,0,0,0,0,0,513,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,37,0,0,0,0,0,0,0,0,0,0,0,1,0,3,2005,131,5 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,29,8,18,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,28,0,0,0,0,3,21,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,35,0,60,0,0,0,5,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,4,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,4,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,3,5 +0,0,0,16,1,51,32,1,70,33,13,0,1,6,52,0,115,0,9,6,0,0,0,6,2,12,15,0,12,0,1,0,0,1,16,0,52,217,16,0,178,0,0,0,1,0,0,3,1,0,0,0,6,228,0,0,0,0,0,1,0,0,0,0,0,39,0,0,3258,51,283,0,11,0,0,0,0,0,15,0,0,0,0,0,8,17,225,0,1,16,1,0,2,8,0,235,20,7,0,0,6,1,332,0,34,0,5,1920,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,10,10,10,0,0,0,194,0,109,0,0,0,10,50,232,204,201,0,0,0,0,1,0,3,0,0,4,0,0,0,593,0,0,0,0,0,0,0,0,0,1,0,0,7,1,0,0,0,0,0,1,0,168,74,468,19,0,0,404,0,2274,0,1,0,160,70,0,0,0,0,0,0,0,0,0,298,1,0,4,0,14,0,0,0,0,5,177,48,0,0,31,0,0,0,0,0,668,0,0,87,3,0,1,1,0,0,0,0,14,0,0,0,2,0,0,0,0,0,34,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,66,1,1,1,0,32,0,0,0,0,9,68,100,0,31,9,0,0,0,0,0,148,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,37,0,0,0,0,0,0,0,0,0,0,0,1,0,3,730,870,5 +3,0,0,13,1,81,28,1,112,7,7,1,1,4,15,0,114,0,9,4,0,0,0,1,1,2,6,0,6,0,1,0,0,1,15,0,82,118,10,0,88,0,0,0,1,0,0,1,0,0,0,0,3,187,0,0,0,0,0,1,0,0,0,0,0,13,0,0,2077,81,247,0,7,0,0,0,0,0,8,0,0,0,0,0,2,7,355,0,1,15,1,0,1,0,0,168,15,2,0,0,4,1,167,0,9,0,0,1392,0,0,1,0,1,2,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,151,0,94,0,0,0,6,33,136,310,145,0,0,0,0,1,0,0,0,1,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,188,26,640,17,0,0,637,0,6707,0,1,0,228,102,0,0,0,0,0,0,0,0,0,291,1,0,0,0,6,0,0,0,0,5,168,113,0,0,0,0,0,0,0,0,3469,0,0,639,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,35,1,1,1,0,31,0,0,0,0,11,97,207,0,15,0,0,0,0,0,0,103,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,2,321,255,5 +1,0,0,14,0,19,20,0,111,18,45,0,0,0,26,0,14,0,7,3,0,0,0,0,0,0,0,0,2,0,1,0,0,0,8,0,19,42,3,0,205,0,0,0,1,0,0,1,0,0,0,0,1,96,0,0,0,0,0,1,0,0,0,0,0,34,0,0,377,19,216,0,2,0,0,0,0,0,2,0,0,0,0,0,1,3,8,0,0,8,0,0,3,100,0,811,170,0,0,0,2,0,486,0,19,0,0,1015,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,33,0,41,0,0,0,2,7,37,575,44,0,0,0,0,1,0,0,0,0,0,0,0,0,264,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,27,115,18,0,0,115,0,339,0,0,0,73,16,0,0,0,0,0,0,0,0,0,223,1,0,0,0,3,0,0,0,0,2,104,246,0,0,425,0,0,0,0,1,82,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,15,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,3,0,0,0,0,1,27,61,0,3,0,0,0,0,0,0,244,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,52,5 +0,0,0,5,0,43,63,0,74,14,41,0,0,8,4,0,1249,0,6,1,0,0,0,8,0,10,0,0,14,0,1,0,0,0,4,21575,43,6,0,0,47,0,2,0,1,0,0,5,0,0,0,0,1,760,0,0,0,0,0,1,0,0,0,0,0,2,0,0,120510,43,1567,0,12,0,0,0,0,0,103,0,0,0,0,0,8,159,21747,0,0,4,0,0,0,0,0,491,30,9,1,0,2,0,1384,0,0,168,0,19275,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,12,12,12,0,0,0,9135,0,65,0,0,0,8,11,1147,4948,9096,0,0,0,0,1,0,4,0,0,0,0,0,0,9006,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,148,70,1834,5,0,0,1925,0,368,0,0,0,1737,19,0,0,0,0,0,0,0,0,0,1445,1,0,0,0,9,0,0,0,0,1,1656,58,0,0,254,0,0,0,0,0,10401,1,0,5120,41,0,1,1,1,0,0,0,10,0,0,0,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,41,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,35,0,0,0,0,1,47,343,0,13,12,0,1,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,18,0,0,0,0,0,90,0,0,0,0,0,0,0,3,6740,307,5 +0,0,0,6,0,46,196,0,111,44,204,0,0,22,8,0,1543,0,6,1,0,0,0,8,0,10,0,0,192,0,1,0,0,0,1,55874,46,10,0,0,99,0,2,0,1,0,0,2,0,0,0,0,1,1824,0,0,0,0,0,1,0,0,0,0,0,2,0,0,167765,46,2723,0,190,0,0,0,0,0,380,0,0,0,0,0,8,1231,19962,0,0,1,0,0,0,0,0,1965,90,4,0,0,2,0,2101,0,0,673,0,19787,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,12,12,12,0,0,0,3410,0,50,0,0,0,113,116,5428,12961,3103,0,0,0,0,1,0,3,0,0,0,0,0,0,2682,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,1027,173,754,6,0,0,1002,0,614,2,0,0,795,87,0,0,0,0,0,0,0,0,0,2090,1,0,0,0,9,0,0,0,0,1,404,124,0,0,1228,0,0,0,0,0,14547,1,0,3759,183,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,183,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,528,0,0,0,0,1,47,427,0,191,12,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,52,0,0,0,0,0,0,0,0,0,0,0,0,0,2,9309,157,5 +1,0,0,7,1,43,32,1,47,3,9,0,0,9,7,0,114,0,8,3,0,0,0,7,0,10,0,0,5,0,1,0,0,1,8,4450,44,54,0,0,63,0,0,0,1,0,0,2,0,0,0,0,1,374,0,0,0,0,0,1,0,0,0,4,0,4,0,0,10425,43,184,0,3,0,0,0,0,0,15,0,0,0,0,1,9,26,1765,0,1,8,1,0,1,0,0,275,30,3,0,0,4,1,127,0,2,16,0,1854,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,753,0,53,0,0,0,1,4,293,408,751,0,0,0,0,1,0,5,0,0,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,217,32,374,8,0,0,421,0,476,0,1,0,153,9,0,0,0,0,0,0,0,0,0,226,1,0,0,0,10,0,0,0,0,1,154,32,0,0,18,0,2,0,0,0,945,1,0,40,6,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,46,1,1,1,0,5,0,0,0,0,9,52,215,0,4,12,0,0,0,0,0,104,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,2,679,37,5 +1,0,0,13,0,35,21,0,95,22,19,0,1,4,37,0,60,0,7,7,0,0,0,3,0,3,12,0,8,0,1,0,0,0,15,0,35,163,18,0,211,0,0,0,1,0,0,3,0,0,0,0,4,220,0,2,0,0,0,1,0,0,0,0,0,24,0,0,2015,35,282,0,9,0,0,0,0,1,21,0,0,0,0,0,5,11,139,0,0,15,0,0,2,39,0,367,60,3,0,0,2,0,401,0,14,0,5,1193,0,0,0,0,7,1,4,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,176,0,133,0,0,0,8,42,91,326,211,0,0,0,0,1,0,0,0,1,0,0,0,0,647,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,13,34,243,14,0,0,345,0,712,0,0,0,239,50,0,0,0,0,0,0,5,0,0,244,1,0,0,0,10,0,0,0,0,5,154,197,0,0,151,0,1,0,2,1,365,0,0,109,0,0,1,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,34,0,0,0,0,1,50,381,0,24,0,0,0,0,0,0,173,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,2,454,112,5 +1,0,0,21,1,67,81,1,235,48,60,0,1,2,66,1,144,0,17,9,0,0,0,6,3,10,26,0,23,0,3,0,0,1,28,0,68,250,31,0,438,0,0,0,1,0,0,3,0,0,0,0,11,307,0,0,0,0,0,1,0,0,0,1,0,42,0,0,4376,67,630,0,26,0,0,0,0,0,36,0,0,0,0,0,8,12,912,0,1,28,1,0,4,137,0,1225,130,5,0,0,16,1,1061,0,44,14,4,2258,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,43,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,606,0,211,0,0,0,22,93,150,970,673,0,0,0,0,1,0,6,0,0,0,0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,124,91,567,25,0,0,581,0,2005,8,13,0,299,132,0,14,0,0,0,0,0,0,0,607,1,0,0,0,18,0,0,0,0,11,191,348,0,0,359,0,1,0,0,0,697,0,0,82,0,0,1,41,0,0,0,0,4,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,90,1,1,1,0,63,0,0,0,0,9,96,212,0,62,0,0,0,0,0,0,478,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,63,43,0,0,0,0,0,0,1,0,0,0,1,0,3,892,226,5 +1,0,0,21,1,105,142,1,340,83,77,0,1,15,131,1,153,0,9,12,0,0,0,16,2,16,27,0,27,0,4,0,0,1,55,0,106,392,27,0,616,0,0,0,1,0,0,4,0,0,0,0,13,1095,0,0,0,0,0,1,0,0,2,12,0,71,0,0,12647,105,904,0,30,0,0,0,0,0,22,0,0,0,0,0,20,31,1303,0,1,55,1,0,6,220,0,1988,330,7,0,0,4,1,1528,0,55,0,16,16097,0,0,0,0,28,0,2,0,0,0,0,1,0,0,0,20,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,6,0,0,0,0,1,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,52,0,1,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,154,10,10,10,0,0,0,1072,0,237,0,0,0,24,95,326,16671,1125,0,0,0,0,1,0,2,0,0,0,0,0,0,2503,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,165,123,1260,41,0,0,897,0,3358,0,1,0,583,390,0,23,0,0,0,0,0,0,0,869,1,0,0,0,30,0,0,0,0,13,327,554,0,0,1216,0,1,0,7,2,1172,0,0,1173,3,0,1,24,0,0,0,0,7,0,1,0,7,0,0,0,0,0,81,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,3,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,149,1,1,1,0,91,0,0,0,0,9,161,441,0,65,9,0,0,0,0,0,641,18,0,0,0,0,0,0,0,0,0,0,0,2,0,1,91,16,0,0,0,0,0,0,0,0,0,0,1,0,4,1777,339,5 +3,0,0,5,1,62,29,1,42,4,7,0,0,6,19,1,95,0,9,5,0,0,0,5,0,8,8,0,8,0,5,1,0,1,24,0,63,54,3,0,99,0,0,0,1,0,0,3,0,0,0,0,7,168,0,0,0,0,0,1,0,0,0,5,0,7,0,0,2130,62,189,0,12,0,0,0,0,0,15,0,0,0,0,0,8,18,157,0,1,24,1,0,1,0,0,242,20,5,0,0,4,1,174,0,5,0,0,1957,0,0,0,0,7,3,5,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,10,10,10,0,0,0,170,0,114,0,0,0,12,35,251,130,163,0,0,0,0,1,0,2,0,0,0,0,0,0,640,3,0,0,0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,1,0,188,27,926,7,0,0,490,0,8656,0,1,0,235,194,0,0,0,0,0,0,0,0,0,208,1,0,0,0,10,0,0,0,0,7,198,78,0,0,0,0,5,0,0,0,992,0,0,91,3,0,1,1,0,0,0,0,5,0,0,0,1,0,0,0,0,0,13,0,0,0,10,2,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,3,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,97,1,1,1,0,43,0,0,0,0,9,87,296,0,21,9,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,2,339,161,5 +0,0,0,6,0,49,8,0,50,3,11,0,0,9,6,0,890,0,7,3,0,0,0,7,0,10,0,0,13,0,1,0,0,0,9,5559,49,6,0,0,58,0,0,0,1,0,0,8,0,0,0,0,1,449,0,0,0,0,0,1,0,0,0,4,0,2,0,0,34406,49,1020,0,11,0,0,0,0,0,37,0,0,0,2,3,9,64,7371,0,0,9,0,0,0,0,0,286,30,12,0,0,2,0,947,0,0,21,0,4852,0,0,0,0,4,0,4,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,2308,0,116,0,0,0,6,9,492,2065,2296,0,0,0,0,1,0,8,0,0,0,0,0,0,701,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,2,0,113,25,327,6,0,0,360,0,463,0,0,0,187,10,0,0,0,0,0,0,0,0,0,981,1,0,0,0,10,0,0,0,0,2,146,81,0,0,43,0,5,0,0,0,4835,1,0,494,6,0,1,2,0,0,0,0,17,0,0,0,3,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,28,0,0,0,0,1,58,399,0,12,12,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,6,2874,74,5 +12,0,0,33,2,71,31,1,95,21,18,0,0,4,51,3,140,0,9,10,0,0,0,4,1,6,24,0,16,0,5,1,0,1,36,0,72,186,36,0,329,0,0,0,1,0,0,1,0,0,0,0,11,198,0,0,0,0,0,1,0,0,0,2,0,34,0,0,4979,71,332,0,22,0,0,0,0,0,4,0,0,0,0,0,6,8,1806,0,1,36,1,0,3,25,0,465,60,1,0,0,4,2,480,0,25,0,0,2263,0,0,0,0,10,0,2,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,29,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,1169,0,95,0,0,0,22,88,142,1108,1175,0,0,0,0,1,0,0,0,0,0,0,0,0,555,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,186,102,559,52,0,0,525,0,4863,0,1,0,262,269,0,0,0,0,0,0,0,0,0,351,1,0,0,0,15,0,0,0,0,10,233,76,0,0,94,0,0,0,0,0,1012,0,0,24,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,1,0,6,0,0,0,2,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,77,1,1,1,0,76,0,0,0,4,13,108,93,0,52,0,0,0,0,0,0,219,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,29,0,0,0,0,0,0,0,0,0,0,0,1,0,1,573,292,5 +2,0,0,4,0,20,2,0,15,0,3,0,0,0,8,0,23,0,7,4,0,0,0,1,0,1,3,0,2,0,1,0,0,0,6,0,20,62,4,0,33,0,0,0,1,0,0,3,0,0,0,0,1,128,0,0,0,0,0,1,0,0,0,1,0,9,0,0,67900,20,65,0,3,0,0,0,0,0,14,0,0,0,0,0,1,6,5662,0,0,6,0,0,0,0,0,18,0,6,0,0,2,0,43,0,4,0,0,441,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,5670,0,44,0,0,0,2,12,40,111,5671,0,0,0,0,1,0,0,0,0,0,0,0,0,23958,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,14,142,5,0,0,173,0,814,0,0,0,100,28,0,0,0,0,0,0,0,0,0,58,1,0,0,0,5,0,0,0,0,1,108,66,0,0,0,0,0,0,0,1,5701,0,0,22430,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,12,0,0,0,0,1,26,176,0,7,0,0,0,0,0,0,41,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5685,197,5 +8,0,0,19,1,102,348,1,450,57,138,0,0,18,87,0,422,0,9,8,0,0,0,9,13,27,54,0,44,0,1,0,0,1,37,4028,103,54,72,0,881,0,0,0,1,0,0,10,0,0,0,0,20,875,0,0,0,0,0,1,0,0,6,18,0,97,0,0,72418,102,1617,0,41,0,0,0,0,0,71,0,0,0,0,1,10,121,10812,0,1,37,1,0,8,342,0,3465,525,15,0,0,4,1,2454,0,62,98,0,9034,0,0,0,0,53,8,14,0,0,0,0,1,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,63,0,1,0,0,0,0,0,0,0,0,0,1,15,8,0,0,0,0,14,0,0,0,2,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,8387,0,261,0,0,0,47,665,912,4807,8252,0,0,0,0,1,0,6,0,0,0,0,0,0,4893,7,0,0,0,0,0,0,0,0,0,0,0,10,9,0,0,0,0,0,1,0,402,96,954,23,0,0,1214,0,1152,0,1,0,854,369,0,0,0,0,0,0,0,0,0,1472,1,0,0,0,30,0,0,0,0,20,265,927,0,0,1301,0,14,0,0,26,4649,1,0,2418,22,0,1,1,0,0,0,0,21,0,2,0,17,0,0,0,0,0,75,0,0,0,22,6,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,22,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,193,1,1,1,0,170,0,0,0,0,9,140,499,0,112,14,0,0,0,0,0,1078,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,80,0,0,0,0,0,0,0,0,0,0,0,1,0,5,2711,535,5 +0,0,0,0,0,11,3,0,6,1,1,0,0,0,2,0,11,0,6,2,0,0,0,0,0,0,0,0,1,0,2,0,0,0,2,0,11,47,0,0,11,0,0,0,1,0,0,0,0,0,0,0,1,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,124,11,23,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,2,0,0,0,0,0,6,0,0,0,0,2,0,15,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,18,0,42,0,0,0,2,3,28,8,26,0,0,0,0,1,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,48,1,0,0,44,0,235,0,0,0,11,12,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,1,93,4,0,0,0,0,0,0,0,0,63,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,4,0,0,0,0,1,13,10,0,3,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,46,5 +0,0,0,20,1,110,84,1,151,14,34,0,1,9,35,0,972,0,9,5,0,0,0,7,2,18,18,0,28,0,2,1,0,1,53,954,111,357,17,2,187,0,0,0,1,0,0,7,0,0,0,0,12,443,0,0,0,0,0,1,0,0,0,0,0,20,0,0,32743,110,1417,0,29,0,0,0,0,0,96,0,0,0,0,0,8,70,5543,0,1,53,1,0,3,37,0,672,70,16,1,0,4,1,1419,0,10,47,6,4810,0,0,0,0,11,0,2,0,0,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,1,0,114,12,12,12,0,0,0,3634,0,218,0,0,0,22,62,487,1283,3626,0,0,0,0,1,0,4,0,0,0,0,0,0,2222,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,5,0,207,51,699,22,0,0,782,0,1644,0,1,0,429,67,0,0,0,0,0,0,0,0,0,1295,1,0,0,0,14,0,0,0,0,6,234,145,0,0,206,0,0,0,6,0,3840,1,0,1491,34,0,1,1,0,0,0,0,22,0,1,0,3,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,34,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,126,1,1,1,0,79,0,0,0,0,9,164,520,0,55,12,0,0,0,0,0,252,5,0,0,0,0,0,0,0,0,0,0,0,4,0,1,20,0,0,0,0,0,0,0,0,0,0,0,1,0,3,1947,354,5 +0,0,0,15,0,46,315,0,454,41,120,0,0,2,54,0,76,0,7,5,0,0,0,6,29,11,9,0,38,0,1,0,0,0,16,0,46,71,38,0,874,0,0,0,1,0,0,7,0,0,0,0,32,292,0,0,0,0,0,1,0,0,5,0,0,83,0,0,4412,46,1157,0,38,0,0,0,0,0,30,0,0,0,0,1,8,21,415,0,0,16,0,0,5,430,0,3667,430,10,0,0,2,0,2153,0,39,0,0,2342,0,0,0,0,31,0,8,0,0,0,0,1,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,19,0,0,0,3,0,20,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,22,10,10,10,0,0,0,606,0,161,0,0,0,62,154,214,4204,431,0,0,0,0,1,0,4,0,0,0,0,0,0,2515,0,0,1,0,0,0,0,0,0,0,0,0,7,1,6,0,0,0,0,1,0,32,69,344,27,0,0,818,0,1283,0,0,0,695,61,0,0,0,0,0,0,0,0,0,1028,1,0,0,0,40,0,0,0,0,32,183,1138,0,0,1132,0,0,0,0,20,492,0,0,166,2,0,1,9,0,0,0,0,14,0,1,0,21,0,0,0,0,0,35,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,6,0,0,0,0,0,2,1,18,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,73,0,0,0,0,1,62,580,0,51,8,0,0,0,1,0,1014,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,47,0,0,0,0,0,0,0,0,0,0,0,0,0,4,780,225,5 +0,0,0,6,0,31,228,0,374,12,90,2,0,0,18,0,29,0,7,3,0,0,0,3,0,1,6,0,4,0,1,0,0,0,12,0,31,6,6,0,606,0,0,0,1,0,0,22,0,0,0,0,2,1107,0,0,0,0,0,1,0,0,1,0,0,29,0,0,9727,31,928,0,5,0,0,0,0,1,109,0,0,0,0,0,3,27,1125,0,0,12,0,0,5,359,0,2790,420,39,0,0,2,0,1646,0,13,0,0,2218,0,0,0,0,14,0,0,0,0,0,0,1,0,0,0,35,26,0,0,0,0,0,0,0,0,0,0,0,0,0,2,17,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,43,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,3,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,949,0,295,0,0,0,4,18,82,6325,978,0,0,0,0,1,0,0,0,0,0,0,0,0,3445,0,0,0,0,0,0,0,0,0,0,0,0,23,0,13,0,0,0,0,0,0,8,20,303,7,0,0,1894,0,1338,0,0,0,1797,83,0,0,0,0,0,0,21,0,0,748,1,0,0,0,6,0,0,0,0,3,134,2108,0,0,1422,0,0,0,0,1,413,0,0,1159,0,0,1,16,1,0,0,0,62,0,1,0,7,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,8,0,0,0,0,1,43,1059,0,12,0,0,3,0,0,0,826,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,7,0,0,0,0,0,0,0,0,0,0,0,0,22,1131,162,5 +0,0,0,16,0,46,142,0,40,20,13,0,0,15,21,4,201,0,7,4,0,0,0,7,0,11,0,0,4,0,1,0,0,0,8,45950,46,6,0,0,150,0,0,0,1,0,0,3,0,0,0,0,1,1985,0,0,0,0,0,1,0,0,0,0,0,27,0,0,107616,46,846,0,1,0,0,0,0,0,286,0,0,0,0,0,10,23,19405,0,0,8,0,0,1,8,0,427,75,5,0,0,2,0,644,0,19,0,0,8836,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,14,12,12,12,0,0,0,9767,0,80,0,0,0,0,3,551,1808,9756,0,0,0,0,1,0,4,0,0,0,0,0,0,769,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,347,42,463,26,0,0,879,0,535,1,0,0,690,27,0,0,0,0,0,0,0,0,0,443,1,0,0,0,11,0,0,0,0,1,226,218,0,0,30,0,0,0,0,0,5589,1,0,118,141,0,1,1,1,0,0,0,7,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,141,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,0,0,0,0,0,1,54,341,0,2,14,0,0,0,0,0,147,1,0,0,0,0,0,0,0,0,0,0,0,2,0,2,28,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4356,119,5 +0,0,0,11,0,31,11,0,72,18,13,0,1,3,36,0,56,0,7,6,0,0,0,1,1,2,12,0,10,0,1,0,0,0,14,0,31,74,17,0,96,0,0,0,1,0,0,1,0,0,0,0,5,173,0,0,0,0,0,1,0,0,0,0,0,19,0,0,1093,31,211,0,11,0,0,0,0,0,7,0,0,0,0,0,2,4,54,0,0,14,0,0,2,21,0,226,30,2,0,0,2,0,304,0,9,0,4,1154,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,80,0,0,0,0,0,0,787,0,79,0,0,0,10,41,70,900,120,0,0,0,0,1,0,4,0,0,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,28,262,13,0,0,236,0,790,0,0,0,155,91,0,0,0,0,0,0,0,0,0,199,1,0,0,0,8,0,0,0,0,5,132,116,0,0,63,0,0,0,0,1,290,0,0,20,0,0,1,0,0,0,0,0,1,0,2,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,25,0,0,0,0,1,45,255,0,25,0,0,0,0,0,0,114,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,1,250,191,5 +0,0,0,2,0,13,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,13,6,0,0,7,0,0,0,1,0,0,19,0,0,0,0,0,142,0,0,0,0,0,1,0,0,0,0,0,1,0,0,6151,13,188,0,1,0,0,0,0,0,91,0,0,0,0,0,1,26,1289,0,0,1,0,0,0,0,0,43,0,26,0,1,2,0,7,0,0,0,0,335,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,911,0,239,0,0,0,0,3,35,22,893,0,0,0,0,1,0,0,0,0,0,0,0,0,2083,0,0,0,0,0,0,0,0,0,0,0,0,19,0,12,0,0,0,0,0,0,8,3,110,2,0,0,352,0,484,0,0,0,287,13,0,0,0,1,0,0,29,0,0,34,1,0,0,0,2,0,0,0,0,0,96,227,0,0,0,0,0,0,0,0,385,0,0,1283,0,0,1,0,1,0,0,0,45,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,11,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,14,600,0,1,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,1098,74,5 +1,0,0,16,1,96,125,1,245,29,61,0,1,5,76,0,143,0,9,12,0,0,0,9,6,15,27,0,27,0,1,0,0,1,46,0,97,221,42,0,474,0,0,0,1,0,0,3,1,0,0,0,14,344,0,0,0,0,0,1,0,0,2,1,0,73,0,0,4872,96,667,0,26,0,0,0,0,0,15,0,0,0,0,0,13,22,1046,0,1,46,1,0,6,157,0,1500,260,8,0,0,4,1,1087,0,37,0,4,3207,0,0,0,0,26,0,4,0,0,0,0,1,0,0,0,29,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,41,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,66,10,10,10,0,0,0,811,0,168,0,0,0,26,110,311,1448,691,0,0,0,0,1,0,3,0,0,0,0,0,0,1292,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,162,71,629,18,0,0,698,0,2327,0,1,0,407,185,0,0,0,0,0,0,0,0,0,665,1,0,2,0,27,0,0,0,0,13,238,352,0,0,608,0,0,0,0,3,963,0,0,56,3,0,1,1,0,0,0,0,10,0,5,0,7,0,0,0,0,0,31,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,3,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,120,1,1,1,0,93,0,0,0,0,9,143,299,0,61,9,0,0,0,0,0,492,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,37,0,0,0,0,0,0,0,0,0,0,0,1,0,1,802,210,5 +1,0,0,0,0,38,11,0,26,22,5,0,1,0,25,0,42,0,7,5,0,0,0,2,0,2,6,0,5,0,1,1,0,0,15,0,38,25,9,0,175,0,0,0,1,0,0,1,0,0,0,0,3,106,0,0,0,0,0,1,0,0,0,2,0,17,0,0,1053,38,118,0,7,0,0,0,0,0,2,0,0,0,0,0,4,6,94,0,0,15,0,0,2,18,0,176,10,0,0,0,4,0,224,0,16,0,0,1076,0,0,0,0,4,0,1,0,0,0,0,1,20,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,123,0,77,0,0,0,6,31,71,269,157,0,0,0,0,1,0,0,0,0,0,0,0,0,372,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,14,38,210,7,0,0,235,0,1319,0,0,0,155,42,0,0,0,0,0,0,0,0,0,117,1,0,0,0,7,0,0,0,0,4,153,113,0,0,30,0,0,0,0,0,151,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,35,0,0,0,0,1,53,82,0,15,0,0,0,0,0,0,117,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,97,5 +0,0,0,15,0,64,23,0,125,42,23,1,1,5,64,0,73,0,7,9,0,0,0,6,0,12,18,0,13,0,1,1,0,0,25,0,64,167,22,0,320,0,0,0,1,0,0,1,0,0,0,0,7,683,0,0,0,0,0,1,0,0,0,0,0,48,0,0,13308,64,322,0,13,0,0,0,0,0,9,0,0,0,0,0,9,16,138,0,0,25,0,0,3,49,0,524,85,2,0,0,2,0,536,0,36,0,4,3864,0,0,0,0,7,0,2,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,10,10,10,0,0,0,144,0,124,0,0,0,12,61,212,67734,150,0,0,0,0,1,0,17,0,0,0,0,0,0,451,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,37,68,929,18,0,0,368,0,2204,0,0,0,225,186,0,0,0,0,0,0,0,0,0,322,1,0,0,0,15,0,0,0,0,6,179,207,0,0,755,0,1,0,0,1,486,0,0,32,3,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,42,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,78,1,1,1,0,61,0,0,0,0,1,89,249,0,36,9,0,0,0,0,0,214,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,48,0,0,0,0,0,0,0,0,0,0,0,0,0,1,332,221,5 +0,0,0,4,0,13,3,0,24,1,12,0,0,0,4,0,16,0,6,2,0,0,0,2,0,0,0,0,0,0,1,0,0,0,2,0,13,6,0,0,35,0,0,0,1,0,0,2,0,0,0,0,0,81,0,0,0,0,0,1,0,0,0,0,0,7,0,0,249,13,59,0,1,0,0,0,0,0,6,0,0,0,2,0,3,6,31,0,0,2,0,0,2,16,0,158,35,1,0,0,2,0,83,0,2,0,0,203,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,45,0,46,0,0,0,0,3,36,115,76,0,0,0,0,1,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,5,88,4,0,0,119,0,179,0,0,0,58,6,0,0,0,0,0,0,0,0,0,65,1,0,0,0,4,0,0,0,0,1,95,71,0,0,74,0,0,0,0,1,29,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,15,148,0,1,0,0,0,0,0,0,54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,83,22,5 +0,0,0,8,0,48,48,0,101,15,34,0,0,7,22,0,1647,0,7,3,0,0,0,8,0,13,3,0,26,0,1,0,0,0,5,2305,48,6,3,0,127,0,0,0,1,0,0,1,0,0,0,0,2,597,0,0,0,0,0,1,0,0,0,0,0,28,0,0,246194,48,1926,0,24,0,0,0,0,0,58,0,0,0,0,0,9,143,31373,0,0,5,0,0,2,27,0,623,65,2,0,0,2,0,1924,0,17,130,0,54785,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,12,12,12,0,0,0,22600,0,61,0,0,0,17,26,830,12205,22552,0,0,0,0,1,0,3,0,0,0,0,0,0,27393,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,106,33,2750,8,0,0,2793,0,776,0,0,0,2608,125,0,0,0,0,0,0,0,0,0,1866,1,0,0,0,11,0,0,0,0,3,2574,98,0,0,247,0,0,0,0,0,10168,1,0,13376,31,0,1,1,0,0,0,0,5,0,0,0,3,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,72,0,0,0,0,1,53,349,0,29,14,0,0,0,0,0,167,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,3,7401,160,5 +0,0,0,4,0,21,29,0,74,10,19,0,0,0,15,0,16,0,7,1,0,0,0,1,0,0,0,0,7,0,2,0,0,0,8,0,21,6,0,0,128,0,3,0,1,0,0,5,0,0,0,0,1,110,0,0,0,0,0,1,0,0,0,1,0,17,0,0,1976,21,192,0,9,0,0,0,0,0,22,0,0,0,0,0,1,12,591,0,0,8,0,0,1,57,0,462,75,7,0,0,2,0,298,0,13,0,0,349,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,171,0,72,0,0,0,2,3,51,250,169,0,0,0,0,1,0,0,0,0,0,0,0,0,506,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,16,195,4,0,0,201,0,201,0,0,0,125,17,0,0,0,0,0,0,0,0,0,160,1,0,0,0,2,0,0,0,0,1,134,129,0,0,210,0,0,0,0,0,257,0,0,845,0,0,1,0,1,0,0,0,9,0,0,0,2,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,9,0,0,0,0,1,29,270,0,9,0,0,1,0,0,0,155,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,5,395,22,5 +0,0,0,9,0,50,46,0,99,5,24,0,0,2,14,0,75,0,7,5,0,0,0,6,0,12,6,0,7,0,0,0,0,0,13,3465,50,73,7,0,168,0,0,0,1,0,0,6,0,0,0,0,3,1058,0,0,0,0,0,1,0,0,0,0,0,25,0,0,66885,50,327,0,5,0,0,0,0,0,50,0,0,0,0,0,8,23,9957,0,0,13,0,0,3,67,0,638,90,11,1,0,2,0,474,0,11,0,0,3238,0,0,0,0,7,0,7,0,1,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,0,0,0,8651,0,118,0,0,0,4,18,323,18507,8624,0,0,0,0,1,0,6,0,0,0,0,0,0,4933,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,23,517,9,0,0,595,0,1137,0,0,0,432,263,0,0,0,0,0,0,0,0,0,267,1,0,0,0,11,0,0,0,0,2,215,366,0,0,1906,0,0,0,0,1,2299,1,0,5044,17,0,1,1,0,0,0,0,14,0,0,0,4,0,0,0,0,0,5,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,17,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,73,1,1,1,0,12,0,0,0,0,1,63,491,0,13,12,0,0,0,0,0,212,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2099,161,5 +0,0,0,12,0,66,127,0,124,2,34,0,0,2,19,0,1265,0,7,5,0,0,0,8,14,13,0,0,32,0,1,0,0,0,20,11987,66,6,141,0,172,0,5,0,1,0,0,6,0,0,0,0,18,1027,0,0,0,0,0,1,0,0,0,2,0,19,0,0,64300,66,1778,0,29,0,0,0,0,0,113,0,0,0,0,0,9,27,12470,0,0,20,0,0,3,79,0,849,150,9,0,0,2,0,1708,0,7,0,0,7186,0,0,0,0,2,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,5127,0,152,0,0,0,34,268,444,2727,4897,0,0,0,0,1,0,5,0,0,0,0,0,0,3179,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,22,545,22,0,0,594,0,652,0,0,0,402,19,0,0,0,0,0,0,0,0,0,1578,1,0,0,0,27,0,0,0,0,2,189,194,0,0,337,0,0,0,0,0,7881,1,0,2185,50,0,1,1,1,0,0,0,11,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,50,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,102,1,1,1,0,57,0,0,0,0,1,86,468,0,32,14,0,0,0,0,0,254,5,0,0,0,0,0,0,0,0,0,0,0,2,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4082,292,5 +5,0,0,8,0,57,40,0,128,31,40,0,0,0,50,2,125,0,9,7,0,0,0,6,0,3,3,0,6,0,2,0,0,0,30,0,57,7938,13,0,268,0,0,0,1,0,0,12,0,0,0,0,4,454,0,0,0,0,0,1,0,0,0,1,0,49,0,0,4542,57,484,0,8,0,0,0,0,0,52,0,0,0,0,0,9,22,350,0,0,30,0,0,5,99,0,872,155,15,0,0,2,0,4572,0,35,0,0,4137,0,0,0,0,9,0,6,0,0,0,5,1,0,0,0,10,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,1,0,5,1,1,0,0,0,0,0,2,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,23,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,386,0,245,0,0,0,8,34,227,963,416,0,0,0,0,1,0,0,0,0,0,0,0,0,1365,0,0,0,0,0,0,0,0,0,0,0,0,12,0,2,0,0,0,0,0,0,10,39,627,8,0,0,594,0,1488,0,0,0,472,164,0,0,0,0,0,0,0,0,0,394,1,0,0,0,13,0,0,0,0,5,155,466,0,0,438,0,0,0,0,3,8473,0,0,251,0,0,1,4,1,0,0,0,20,0,0,0,6,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,31,31,0,0,53,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,144,1,1,1,0,28,0,0,0,0,21,87,985,0,14,0,0,0,0,0,0,326,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,39,0,0,0,0,0,0,0,0,0,0,0,0,0,5,537,752,5 +0,0,0,12,0,37,30,0,65,5,22,0,0,2,11,1,31,0,7,5,0,0,0,6,0,9,6,0,5,0,2,0,0,0,8,0,37,7,3,0,137,0,0,0,1,0,0,3,0,0,0,0,3,153,0,0,0,0,0,1,0,0,0,0,0,20,0,0,1173,37,170,0,5,0,0,0,0,0,13,0,0,0,0,0,9,18,186,0,0,8,0,0,2,51,0,499,85,2,0,0,2,0,298,0,8,0,0,878,0,0,0,0,8,0,5,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,152,0,98,0,0,0,4,16,237,333,160,0,0,0,0,1,0,3,0,0,0,0,0,0,418,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,36,184,15,0,0,238,0,518,0,0,0,130,19,0,0,0,0,0,0,0,0,0,169,1,0,0,0,11,0,0,0,0,3,129,152,0,0,211,0,2,0,0,1,148,0,0,37,3,0,1,2,0,0,0,0,4,0,0,0,1,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,10,0,0,0,0,1,45,96,0,13,9,0,0,0,0,0,175,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,2,278,101,5 +2,0,0,13,0,83,40,0,164,54,38,0,1,5,77,0,153,0,11,12,0,0,0,9,4,16,18,0,25,0,1,0,0,0,27,4,83,333,39,0,412,0,0,0,1,0,0,9,0,0,0,0,12,422,0,0,0,0,0,1,0,0,0,8,0,70,0,0,19369,83,567,0,23,0,0,0,0,0,40,0,0,0,0,0,13,33,857,0,0,27,0,0,6,92,0,965,145,15,0,0,2,0,869,0,50,0,6,5591,0,0,0,0,55,1,5,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,1,0,0,1,3,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,12,12,12,0,0,0,493,0,189,0,0,0,22,91,321,1433,468,0,0,0,0,1,0,4,0,0,0,0,0,0,1491,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,1,0,37,77,511,14,0,0,556,0,1208,0,0,0,328,186,0,2,0,0,0,0,9,0,0,489,1,0,0,0,25,0,0,0,0,11,215,306,0,0,336,0,0,0,0,0,33192,1,0,377,6,0,1,2,0,0,0,0,22,0,2,0,3,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,6,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,107,1,1,1,0,76,0,0,0,0,1,110,511,0,47,13,0,1,0,0,0,362,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,64,1,0,0,0,0,0,0,0,0,0,0,0,0,6,962,176,5 +17,0,0,7,6,34,18,18,109,26,26,1,0,0,35,1,155,0,7,15,0,5,0,2,3,5,15,0,11,0,1,0,0,5,18,0,40,10,16,0,225,0,0,0,1,0,0,1,0,0,0,0,6,202,0,0,0,0,0,1,0,2,0,0,0,37,0,0,1751,34,576,0,12,0,0,0,0,0,6,13,0,0,0,0,2,4,494,0,18,18,5,0,4,40,0,469,65,1,0,0,3,6,406,0,23,0,0,967,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,24,2,2,2,0,0,2,362,2,143,0,0,2,12,55,83,435,372,0,0,0,0,1,0,0,0,0,0,1,1,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,9,36,378,22,0,0,354,0,703,0,0,0,169,78,0,0,0,0,0,0,0,0,0,352,1,0,0,0,25,0,0,0,0,6,160,90,0,0,144,0,13,0,0,0,18826,0,0,16,0,0,1,1,0,0,0,0,2,0,0,0,2,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,44,0,0,0,0,93,58,111,1,32,0,0,0,0,0,0,205,6,0,0,0,0,0,0,0,0,0,0,0,6,0,1,32,0,0,0,0,0,0,0,0,0,0,0,9,0,1,529,136,5 +0,0,0,5,2,29,37,2,128,3,38,0,0,0,16,0,43,0,7,7,0,4,0,1,0,2,3,0,5,0,1,0,0,2,12,0,31,6,39,0,179,0,0,0,1,0,0,9,0,0,0,0,2,143,0,4,0,0,0,1,0,0,0,14,0,19,0,0,1908,29,432,0,6,0,0,0,0,0,25,6,0,0,0,0,1,17,138,0,2,12,2,0,2,93,0,757,145,10,0,0,2,2,465,0,9,1,0,720,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,209,0,109,0,0,0,4,89,67,581,196,0,0,0,0,1,0,0,0,0,0,0,0,0,758,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,8,12,403,7,0,0,444,0,752,0,0,0,316,79,0,0,0,0,0,0,0,0,0,269,1,0,0,0,12,0,0,0,0,2,253,225,0,0,420,0,0,0,0,1,233,0,0,242,0,0,1,0,0,0,0,0,15,0,5,0,6,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,160,0,0,0,0,17,43,235,0,11,0,0,0,0,0,0,233,3,0,0,0,0,0,0,0,0,0,0,0,2,0,2,5,0,0,0,0,0,0,0,0,0,0,0,4,0,0,348,80,5 +1,0,0,2,0,9,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,1,0,1,0,0,51,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,16,0,0,0,0,3,22,6,22,0,0,0,0,1,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,35,2,0,0,57,0,89,0,0,0,27,1,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,91,23,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,53,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,10,5 +0,0,0,7,0,23,87,0,129,26,42,0,0,0,31,0,29,0,6,3,0,0,0,1,0,1,6,0,4,0,1,0,0,0,10,0,23,6,8,0,250,0,0,0,1,0,0,5,0,0,0,0,2,268,0,0,0,0,0,1,0,0,3,1,0,39,0,0,16252,23,354,0,5,0,0,0,0,0,23,0,0,0,0,0,1,7,1764,0,0,10,0,0,3,118,0,954,180,10,0,0,2,0,602,0,29,0,0,1879,0,0,0,0,10,0,5,0,0,0,0,1,0,0,0,21,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1391,0,121,0,0,0,4,21,46,5322,1393,0,0,0,0,1,0,0,0,1,0,0,0,0,4461,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,0,0,0,0,0,0,8,33,238,8,0,0,306,0,570,0,0,0,239,84,0,1,0,0,0,0,4,0,0,324,1,0,0,0,4,0,0,0,0,3,113,302,0,0,452,0,0,0,0,5,1061,0,0,3507,0,0,1,11,1,0,0,0,13,0,1,0,6,0,0,0,0,0,26,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,14,0,0,0,0,1,33,284,0,12,0,0,0,0,0,0,309,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,30,11,0,0,0,0,0,0,0,0,0,0,0,0,3,1601,106,5 +1,0,0,17,0,58,327,0,371,15,69,0,1,5,45,0,63,0,9,7,0,0,0,8,1,11,12,0,17,0,23,0,0,0,18,0,58,171,19,0,698,0,0,0,1,0,0,6,0,0,0,0,28,289,0,0,0,0,0,1,0,0,0,7,0,15,0,0,5153,58,958,0,38,0,0,0,0,0,30,0,0,0,0,0,10,23,518,0,0,18,0,0,4,314,0,2616,195,9,0,0,2,0,1788,0,9,0,7,2353,0,0,0,0,26,1,1,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,10,10,10,0,0,0,472,0,154,0,0,0,54,106,241,2274,466,0,0,0,0,1,0,12,0,0,0,0,0,0,2135,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,37,42,480,21,0,0,761,0,879,0,0,0,609,111,0,0,0,0,0,0,0,0,0,890,1,0,0,0,16,0,0,0,0,25,199,749,0,0,603,0,0,0,0,0,669,0,0,456,3,0,1,1,0,0,0,0,12,0,0,0,1,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,3,23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,70,1,1,1,0,83,0,0,0,4,1,76,540,0,54,9,0,0,0,0,0,702,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,25,0,0,0,0,0,0,0,0,0,0,0,0,0,5,685,168,5 +0,0,0,18,0,27,7,0,90,38,18,0,1,3,58,0,64,0,7,5,0,0,0,1,1,2,15,0,11,0,2,0,0,0,13,0,27,100,17,0,254,0,0,0,1,0,0,2,0,0,0,0,6,151,0,0,0,2,0,1,0,0,0,0,0,34,0,0,1243,27,264,0,13,0,0,0,0,0,7,0,0,0,0,0,1,5,66,0,0,13,0,0,1,24,0,269,50,4,0,0,2,0,382,0,29,0,4,902,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,93,0,65,0,0,0,12,49,61,302,114,0,0,0,0,1,0,0,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,59,224,23,0,0,189,0,534,0,0,0,106,76,0,0,0,0,0,0,0,0,0,248,1,0,0,0,7,0,0,0,0,7,123,78,0,0,105,0,0,0,0,0,301,0,0,29,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,31,0,0,0,0,8,40,142,0,30,0,0,0,0,0,0,142,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,42,0,0,0,0,0,0,0,0,0,0,0,0,0,2,282,90,5 +0,0,0,4,0,42,2,0,13,2,4,0,0,0,5,0,27,0,8,1,0,0,0,2,0,1,6,0,3,0,2,2,0,0,26,0,42,90,0,0,17,0,0,0,1,0,0,9,0,0,0,0,4,291,0,0,0,0,0,1,0,0,0,0,0,6,0,0,1512,42,101,0,8,0,0,0,0,0,23,0,0,0,0,3,2,18,177,0,0,26,0,0,0,0,0,36,0,9,0,0,2,0,62,0,3,0,0,1010,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,196,0,102,0,0,0,10,34,72,86,208,0,0,0,0,1,0,0,0,0,0,0,0,0,487,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,12,502,4,0,0,666,0,910,0,0,0,321,117,0,1,0,0,0,0,0,0,0,59,1,0,0,0,3,0,0,0,0,5,388,226,0,0,0,0,0,0,0,3,177,0,0,447,0,0,1,0,0,0,0,0,11,0,0,0,9,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,55,0,0,0,0,1,68,848,0,14,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,6,188,90,5 +3,0,0,7,1,51,42,1,99,2,11,0,0,9,9,0,1156,0,9,2,0,0,0,7,0,10,0,0,5,0,1,0,0,1,3,11483,52,54,0,0,124,0,0,0,1,0,0,3,0,0,0,0,1,526,0,0,0,0,0,1,0,0,0,6,0,4,0,0,36868,51,1308,0,3,0,0,0,0,0,29,0,0,0,0,0,8,33,6218,0,1,3,1,0,1,9,0,456,35,5,0,0,4,1,1290,0,2,25,0,3365,0,0,0,0,9,3,3,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,48,12,12,12,0,0,0,3538,0,95,0,0,0,1,4,468,1015,3533,0,0,0,0,1,0,8,0,0,0,0,0,0,527,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,1,0,221,29,487,8,0,0,514,0,617,0,1,0,197,12,0,0,0,0,0,0,0,0,0,1335,1,0,0,0,9,0,0,0,0,2,184,142,0,0,40,0,0,0,0,0,15996,1,0,123,10,0,1,1,0,0,0,0,6,0,0,0,1,0,0,0,0,0,3,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,10,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,67,1,1,1,0,5,0,0,0,0,9,55,202,0,4,12,0,0,0,0,0,144,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,3,1581,74,5 +0,0,0,12,0,56,55,0,309,43,69,0,1,5,65,0,119,0,12,7,0,0,0,2,8,11,43,0,28,0,1,0,0,0,25,0,56,184,44,0,677,0,0,0,1,0,0,8,0,0,0,0,14,336,0,0,0,0,0,1,0,0,1,1,0,78,0,0,4246,56,742,0,29,0,0,0,0,0,31,0,0,0,0,0,2,11,341,0,0,25,0,0,3,227,0,1900,175,12,0,0,2,0,1533,0,42,2,10,2144,0,0,0,0,25,0,8,0,0,0,0,1,0,0,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,44,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,340,0,163,0,0,0,28,150,115,1597,356,0,0,0,0,1,0,29,0,0,0,0,0,0,1445,0,0,0,0,0,0,0,0,0,0,0,0,8,0,4,0,0,0,0,0,0,14,65,468,13,0,0,506,0,1098,0,0,0,365,89,0,0,0,0,0,0,7,0,0,635,1,0,0,0,17,0,0,0,0,14,181,737,0,0,542,0,1,0,0,2,870,0,0,273,0,0,1,0,1,0,0,0,16,0,1,0,11,0,0,0,0,0,44,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,78,1,1,1,0,122,0,0,0,0,1,81,800,0,83,0,0,0,0,0,0,681,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,47,0,0,0,0,0,0,0,0,0,0,0,0,0,5,737,133,5 +0,0,0,0,0,20,4,0,18,0,2,0,0,0,2,0,35,0,7,8,0,0,0,2,0,2,9,0,5,0,1,0,0,0,3,0,20,6,12,0,30,0,0,0,1,0,0,1,0,0,0,0,3,147,0,0,0,0,0,1,0,0,0,0,0,1,0,0,654,20,73,0,6,0,0,0,0,0,5,0,0,0,0,0,6,8,32,0,0,3,0,0,0,6,0,75,0,2,0,0,2,0,99,0,0,0,0,558,0,0,0,0,1,0,3,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,66,0,54,0,0,0,6,64,55,104,78,0,0,0,0,1,0,0,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,143,4,0,0,164,0,429,0,0,0,84,59,0,0,0,0,0,0,2,0,0,68,1,0,0,0,10,0,0,0,0,1,102,84,0,0,0,0,0,0,0,0,136,0,0,15,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,17,0,0,0,0,1,23,222,0,17,0,0,0,0,0,0,75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,76,49,5 +6,0,0,10,1,66,62,1,133,6,33,0,0,9,18,0,162,0,9,7,0,0,0,9,0,14,15,0,18,0,1,0,0,1,17,4530,67,54,16,0,189,0,0,0,1,0,0,4,0,0,0,0,6,590,0,0,0,0,0,1,0,0,1,3,0,22,0,0,64570,66,421,0,15,0,0,0,0,0,41,0,0,0,0,0,10,58,10775,0,1,17,1,0,3,51,0,775,110,6,0,0,4,1,509,0,12,58,0,3295,0,2,2,0,6,2,2,0,1,0,0,1,0,0,0,19,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,12,12,12,0,0,0,8856,0,130,0,0,0,13,58,568,1141,8645,0,0,0,0,1,0,6,0,0,0,0,0,0,773,2,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,1,0,216,40,511,11,0,0,593,0,832,0,1,0,275,37,0,0,0,0,0,0,0,0,0,426,1,0,0,0,16,0,0,0,0,5,200,164,0,0,245,0,0,0,0,2,2305,1,0,163,18,0,1,1,0,0,0,0,6,0,1,0,6,0,0,0,0,0,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,18,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,83,1,1,1,0,49,0,0,0,0,9,84,361,0,34,14,0,0,0,0,0,261,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,14,0,0,0,0,0,0,0,0,0,0,0,1,0,3,1335,90,5 +6,0,0,26,0,78,40,0,317,41,51,1,1,2,65,0,87,0,7,10,0,0,0,3,4,13,18,0,31,0,6,0,0,0,37,0,78,188,89,0,618,0,0,0,1,0,0,8,0,0,0,0,19,457,0,8,0,0,0,1,0,0,0,0,0,59,0,0,6138,78,657,0,37,0,0,0,0,0,44,0,0,0,0,0,2,12,355,0,0,37,0,0,3,229,0,1907,135,15,0,0,2,0,1427,0,38,0,6,4595,0,2,2,0,7,0,9,0,0,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,1,0,0,0,0,3,0,10,0,0,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,525,0,186,0,0,0,38,167,155,1774,445,0,0,0,0,1,0,0,0,0,7,0,0,0,1142,0,0,0,0,0,0,0,0,0,0,0,0,8,0,35,0,0,0,0,0,0,8,74,483,31,0,0,662,0,1606,0,0,0,502,217,0,0,0,0,0,0,0,0,0,571,1,0,0,0,17,0,0,0,0,14,174,817,0,0,426,0,0,0,6,1,795,0,0,255,0,0,1,0,1,0,0,0,22,0,0,0,1,0,0,0,0,0,44,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,103,1,1,1,0,167,0,0,0,0,1,115,880,0,68,0,0,1,0,0,0,687,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,47,0,0,0,0,0,0,0,0,0,0,0,0,0,8,718,313,5 +6,0,0,10,0,55,10,0,65,27,9,0,0,6,42,0,747,0,7,7,0,0,0,8,3,18,21,0,23,0,1,0,0,0,18,1658,55,64,28,0,160,0,0,0,1,0,0,1,0,0,0,0,9,301,0,0,0,0,0,1,0,0,0,10,0,41,0,0,10048,55,909,0,20,0,0,0,0,0,20,0,0,0,0,0,9,52,1681,0,0,18,0,0,0,0,0,284,20,2,0,0,2,0,985,0,34,14,0,2761,0,0,0,0,21,0,3,0,0,0,1,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,1,0,0,0,0,2,0,0,0,2,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,56,12,12,12,0,0,0,685,0,68,0,0,0,19,79,449,661,652,0,0,0,0,1,0,3,0,0,0,0,0,0,437,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,91,55,377,11,0,0,341,0,582,0,0,0,184,41,0,0,0,0,0,0,0,0,0,886,1,0,0,0,18,0,0,0,0,7,151,60,0,0,26,0,5,0,0,0,2473,1,0,93,12,0,1,1,0,0,0,0,2,0,0,0,3,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,12,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,78,0,0,0,0,1,73,288,0,49,14,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,31,0,0,0,0,0,0,0,0,0,0,0,0,0,2,675,145,5 +4,0,0,21,1,80,314,1,707,114,168,1,1,6,229,0,270,0,76,9,0,0,0,9,8,18,39,0,28,0,1,0,0,1,24,0,81,1742,103,0,1446,0,0,0,1,0,0,46,0,0,0,0,14,605,0,2,0,0,0,1,0,0,2,3,0,161,0,0,31704,80,2073,0,27,0,0,0,0,0,149,0,0,0,0,1,12,108,6188,0,1,24,1,0,7,601,0,4878,615,69,12,0,4,1,3695,0,108,0,8,6601,0,0,0,0,116,0,67,0,0,0,0,1,0,0,0,26,5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,15,1,1,0,0,0,1,0,7,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,10,10,10,0,0,0,4778,0,410,0,0,0,26,226,280,5468,4875,0,0,0,0,1,0,2,0,0,0,0,0,0,7398,0,0,0,0,0,0,0,0,0,0,0,0,46,1,2,0,0,0,0,1,3,164,167,2314,123,0,0,1752,0,2691,0,1,0,1416,165,0,0,0,0,0,0,0,0,0,1772,1,0,0,0,26,0,0,0,0,13,515,1792,0,0,1701,0,1,0,0,2,3221,0,0,2952,3,0,1,1,1,0,0,0,89,0,1,0,54,0,0,0,0,0,108,2,0,7,1,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,3,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,115,1,1,1,0,284,0,0,0,0,9,105,758,0,77,9,0,0,0,0,0,1668,11,0,0,0,0,0,0,0,0,0,0,0,2,0,1,124,0,0,0,0,0,0,0,0,0,0,0,1,0,14,5554,1074,5 +0,0,0,12,0,36,46,0,127,16,36,0,1,3,31,0,55,0,9,5,0,0,0,1,1,3,15,0,11,0,2,0,0,0,13,0,36,101,17,0,239,0,0,0,1,0,0,1,1,0,0,0,6,159,0,0,0,0,0,1,0,0,1,0,0,31,0,0,1157,36,319,0,13,0,0,0,0,0,4,0,0,0,0,0,1,3,83,0,0,13,0,0,4,98,0,831,150,4,0,0,2,0,614,0,16,0,4,2663,0,0,0,0,10,0,2,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,112,0,76,0,0,0,12,47,83,609,133,0,0,0,0,1,0,0,0,0,0,0,0,0,524,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,26,234,13,0,0,286,0,742,0,0,0,188,29,0,0,0,0,0,0,0,0,0,308,1,0,2,0,7,0,0,0,0,7,146,242,0,0,359,0,0,0,0,1,360,0,0,17,0,0,1,0,0,0,0,0,5,0,1,0,6,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,31,0,0,0,0,1,49,134,0,31,0,0,0,0,0,0,261,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,2,276,93,5 +1,0,0,8,0,27,5,0,35,14,9,0,1,11,5,0,56,0,8,2,0,0,0,3,0,0,18,0,3,0,2,6,0,0,15,0,27,6,8,0,43,0,0,0,1,0,0,5,0,0,0,0,6,415,0,0,0,0,0,1,0,0,0,0,0,9,0,0,112581,27,174,0,11,0,0,0,0,0,25,0,0,0,1,0,4,13,47245,0,0,15,0,0,14,12,0,219,20,7,0,0,2,0,212,0,4,3,0,77529,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,2,0,30385,0,122,0,0,0,12,32,90,143079,30270,0,0,0,0,1,0,0,0,0,0,0,0,0,757,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,2,402,3,456,11,0,0,486,0,653,0,0,0,412,47,0,0,0,0,0,0,0,0,0,130,1,0,0,0,5,0,0,0,0,1,358,124,0,0,37,0,0,0,0,0,18242,0,0,466,0,0,1,0,0,0,0,0,9,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,33,0,0,0,0,1,42,519,0,29,0,0,1,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,0,24,2,16,0,0,0,0,0,0,0,0,0,0,0,0,0,4,17480,51,5 +0,0,0,4,0,12,3,0,17,0,6,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,20,0,0,0,1,0,0,1,0,0,0,0,0,56,0,0,0,0,0,1,0,0,0,0,0,4,0,0,427,12,44,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,49,0,0,3,0,0,1,8,0,79,15,2,0,0,2,0,44,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,50,0,33,0,0,0,0,3,26,65,62,0,0,0,0,1,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,97,4,0,0,159,0,191,0,0,0,103,5,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,106,88,0,0,33,0,1,0,0,0,35,0,0,57,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,207,0,1,0,0,0,0,0,0,33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,68,23,5 +7,0,0,9,1,67,121,1,220,21,64,0,0,9,32,1,1459,0,9,6,0,0,0,8,1,15,18,0,28,0,1,1,0,1,14,21935,68,54,17,0,307,0,0,0,1,0,0,5,1,0,0,0,7,1036,0,0,0,0,0,1,0,0,2,8,0,37,0,0,184519,67,1986,0,26,0,0,0,0,0,78,0,0,0,0,0,9,118,30931,0,1,14,1,0,6,116,0,1404,215,12,0,0,4,1,2169,0,23,105,0,7734,0,0,0,0,15,4,4,0,0,0,0,1,0,0,0,16,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,4,3,0,0,0,0,2,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,12,12,12,0,0,0,25296,0,124,0,0,0,21,100,890,2904,25234,0,0,0,0,1,0,9,0,0,0,0,0,0,1435,4,0,0,0,0,0,0,0,0,0,0,0,10,6,0,0,0,0,0,1,0,220,54,723,11,0,0,791,0,912,0,1,0,457,90,0,0,0,0,0,0,0,0,0,1915,1,0,3,0,15,0,0,0,0,7,253,337,0,0,564,0,0,0,0,2,7225,1,0,604,38,0,1,1,0,0,0,0,15,0,1,0,9,0,0,0,0,0,24,3,0,0,6,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,38,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,98,1,1,1,0,96,0,0,0,0,9,82,288,0,49,14,0,1,0,0,0,414,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,33,0,0,0,0,0,0,0,0,0,0,0,1,0,4,3070,118,5 +26,0,0,7,0,122,43,0,52,20,26,0,0,6,28,0,647,0,7,6,0,0,0,8,0,16,36,0,29,0,3,5,0,0,74,1735,122,6,15,0,121,0,0,0,1,0,0,7,0,0,0,0,13,668,0,0,0,0,0,1,0,0,0,0,0,26,0,0,136846,122,967,0,34,0,0,0,0,0,81,0,0,0,0,0,9,113,22476,0,0,74,0,0,0,0,0,415,20,13,1,0,2,0,961,0,22,91,0,12898,0,0,0,0,16,18,9,16,0,0,0,1,0,0,0,22,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,29,0,11,8,0,0,0,0,0,0,0,1,1,0,0,0,1,0,8,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,52,12,12,12,0,0,0,17208,0,254,0,0,0,33,113,876,2810,17169,0,0,0,0,1,0,16,0,0,0,0,0,0,1993,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,2,0,84,41,1114,7,0,0,994,0,916,3,0,0,800,76,0,0,0,0,0,0,0,0,0,809,1,0,0,0,14,0,0,0,0,10,599,76,0,0,141,0,0,0,0,0,8424,1,0,987,34,0,1,1,1,0,0,0,19,0,0,0,4,0,0,0,0,0,22,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,34,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,166,1,1,1,0,104,0,0,0,0,1,196,509,0,75,14,0,0,0,0,0,168,7,0,0,0,0,0,0,0,0,0,0,0,3,0,2,24,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3907,190,5 +0,0,0,3,0,21,2,0,36,0,2,0,0,0,2,0,95,0,6,1,0,0,0,1,0,0,48,0,7,0,17,0,0,0,1,0,21,6,0,0,8,0,0,0,1,0,0,3,0,0,0,0,16,64,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1387,21,209,0,24,0,0,0,0,0,16,0,0,0,0,0,1,6,135,0,0,1,0,0,0,0,0,82,0,5,0,0,2,0,310,0,0,0,0,704,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,142,0,60,0,0,0,32,87,35,101,147,0,0,0,0,1,0,0,0,0,0,0,0,0,462,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,9,141,3,0,0,132,0,364,0,0,0,44,10,0,0,0,0,0,0,0,0,0,143,1,0,0,0,2,0,0,0,0,17,103,28,0,0,0,0,0,0,0,0,247,0,0,239,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,55,0,0,0,0,1,22,61,0,72,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,151,163,5 +0,0,0,12,0,24,4,0,53,25,6,0,1,3,37,0,55,0,7,4,0,0,0,1,1,2,12,0,8,0,0,0,0,0,11,0,24,229,14,0,158,0,0,0,1,0,0,4,0,0,0,0,4,113,0,0,0,0,0,1,0,0,0,0,0,20,0,0,1382,24,194,0,9,0,0,0,0,0,13,0,0,0,0,0,1,9,93,0,0,11,0,0,0,0,0,49,0,6,1,0,2,0,228,0,18,0,5,1391,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,115,0,83,0,0,0,8,39,54,122,140,0,0,0,0,1,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,13,35,260,13,0,0,195,0,471,0,0,0,122,44,0,0,0,0,0,0,0,0,0,166,1,0,0,0,6,0,0,0,0,5,118,65,0,0,0,0,0,0,0,0,499,0,0,60,0,0,1,0,0,0,0,0,7,0,0,0,5,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,22,0,0,0,0,1,35,284,0,22,0,0,0,0,0,0,94,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,25,0,0,0,0,0,0,0,0,0,0,0,0,0,2,303,70,5 +0,0,0,8,1,30,27,1,46,9,5,0,0,0,19,0,78,0,9,4,0,0,0,1,0,1,3,0,2,0,1,0,0,1,14,0,31,338,3,0,57,0,0,0,1,0,0,3,0,0,0,0,1,139,0,0,0,0,0,1,0,0,0,0,0,17,0,0,2700,30,148,0,3,0,0,0,0,0,10,0,0,0,0,0,3,7,826,0,1,14,1,0,1,0,0,59,0,6,0,0,4,1,117,0,15,0,0,1157,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,482,0,78,0,0,0,2,11,75,239,509,0,0,0,0,1,0,0,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,141,30,376,10,0,0,339,0,2551,0,1,0,135,71,0,0,0,0,0,0,0,0,0,184,1,0,0,0,5,0,0,0,0,2,142,35,0,0,0,0,0,0,0,0,564,0,0,45,0,0,1,0,0,0,0,0,7,0,0,0,2,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,38,1,1,1,0,6,0,0,0,0,9,45,150,0,7,0,0,0,0,0,0,99,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,2,354,230,5 +0,0,0,6,0,10,2,0,22,2,3,0,0,0,5,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,16,0,0,0,1,0,0,4,0,0,0,0,0,153,0,0,0,0,0,1,0,0,0,0,0,8,0,0,9540,10,76,0,1,0,0,0,0,0,21,0,0,0,0,0,1,7,2353,0,0,1,0,0,0,0,0,11,0,9,0,0,2,0,23,0,3,0,0,269,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1306,0,53,0,0,0,0,3,24,12,1318,0,0,0,0,1,0,1,0,0,0,0,0,0,1237,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,6,114,6,0,0,212,0,653,0,0,0,141,17,0,0,0,0,0,0,0,0,0,52,1,0,0,0,2,0,0,0,0,0,100,117,0,0,0,0,0,0,0,0,574,0,0,2109,0,0,1,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,428,0,1,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,749,82,5 +0,0,0,2,0,14,6,0,15,0,2,0,0,0,2,0,48,0,10,1,0,0,0,1,0,1,0,0,1,0,1,0,0,0,1,3,14,6,0,0,7,0,0,0,1,0,0,1,1,0,0,0,0,5274,0,0,0,0,0,1,0,0,0,0,0,1,0,0,595,14,81,0,3,0,0,0,0,0,10,0,0,0,0,0,1,3,25,0,0,1,0,0,0,0,0,14,0,4,0,0,2,0,110,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,37,0,38,0,0,0,1,4,32,244,49,0,0,0,0,1,0,0,0,0,0,0,0,0,630,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1191,3,111,2,0,0,126,0,1200,0,0,0,49,4,0,0,0,0,0,0,0,0,0,83,1,0,2,0,2,0,0,0,0,5,124,6,0,0,0,0,0,0,0,0,2242,0,0,13,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,0,10,1,1,1,0,1,0,0,0,0,4,15,27,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,85,18,5 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5 +3,0,0,13,0,35,99,0,272,28,98,0,0,0,46,0,49,0,7,5,0,0,0,3,2,4,12,0,13,0,3,0,0,0,12,0,35,15,24,0,444,0,0,0,1,0,0,3,0,0,0,0,8,181,0,0,0,0,0,1,0,0,0,0,0,48,0,0,216044,35,609,0,14,0,0,0,0,0,18,0,0,0,0,0,3,7,100697,0,0,12,0,0,4,252,0,2078,460,5,0,0,2,0,1203,0,31,0,0,2882,0,0,3,0,27,0,6,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,5,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,100738,0,122,0,0,0,14,67,79,3063,100765,0,0,0,0,1,0,0,0,0,0,0,0,0,5304,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,8,37,347,27,0,0,401,0,1175,0,0,0,297,162,0,0,0,0,0,0,0,0,0,571,1,0,0,0,10,0,0,0,0,6,150,539,0,0,1356,0,1,0,0,2,473,0,0,5048,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,25,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,81,0,0,0,0,1,47,326,0,32,0,0,0,0,0,0,556,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,34,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3995,173,5 +5,0,0,8,1,48,42,1,95,3,19,0,0,9,6,0,977,0,9,2,0,0,0,7,0,10,0,0,7,0,1,0,0,1,6,11953,49,54,0,0,95,0,0,0,1,0,0,2,0,0,0,0,1,523,0,0,0,0,0,1,0,0,0,10,0,6,0,0,36273,48,1120,0,5,0,0,0,0,0,28,0,0,0,0,0,8,39,6105,0,1,6,1,0,3,17,0,477,60,2,0,0,4,1,1089,0,1,33,0,3752,0,0,0,0,5,5,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,3301,0,55,0,0,0,3,6,474,1039,3307,0,0,0,0,1,0,10,0,0,0,0,0,0,466,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,1,0,220,31,444,9,0,0,544,0,652,0,1,0,256,19,0,0,0,0,0,0,0,0,0,1157,1,0,0,0,9,0,0,0,0,2,178,132,0,0,109,0,1,0,0,0,3768,1,0,132,13,0,1,2,1,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,62,1,1,1,0,13,0,0,0,0,9,55,234,0,6,12,0,0,0,0,0,144,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,13,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1477,60,5 +1,0,0,5,1,43,8,4,37,30,10,0,0,4,44,0,85,0,8,8,0,1,1,2,8,8,24,0,23,0,1,0,0,1,27,0,44,6,118,0,151,0,0,0,1,0,0,7,0,0,0,0,13,279,0,0,0,0,0,1,0,0,0,2,0,38,0,0,4150,43,373,0,24,0,0,0,0,0,29,3,0,0,0,1,2,12,439,0,4,27,1,0,0,0,0,243,15,13,0,0,2,1,340,0,33,0,0,1126,0,0,0,0,15,0,12,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,14,0,0,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,394,0,147,0,0,0,26,106,93,229,368,0,0,0,0,1,0,0,0,0,0,0,0,0,1074,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,66,36,346,6,0,0,445,0,374,0,0,0,318,40,0,0,0,0,0,0,4,0,0,196,1,0,0,0,20,0,0,0,0,14,159,208,0,0,0,0,0,0,0,0,1037,0,0,423,0,0,1,0,1,0,0,0,13,0,0,0,2,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,92,0,0,0,0,9,71,487,0,56,0,0,0,0,0,0,150,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,32,0,0,0,0,0,0,0,0,0,0,0,2,0,4,647,112,5 +0,0,0,12,2,26,28,5,44,2,8,0,0,0,11,0,81,0,9,4,0,1,1,1,0,1,3,0,2,0,1,0,0,2,11,0,28,109,88,0,46,0,0,0,1,0,0,2,0,0,0,0,1,142,0,0,0,0,0,1,0,0,0,0,0,8,0,0,730,26,208,0,3,0,0,0,0,0,9,3,0,0,0,0,1,4,62,0,5,11,2,0,1,0,0,56,0,3,0,0,4,2,82,0,6,0,0,418,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,75,0,59,0,0,0,2,12,55,39,83,0,0,0,0,1,0,0,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,136,23,329,18,0,0,380,0,1457,0,1,0,170,12,0,0,0,0,0,0,0,0,0,181,1,0,0,0,7,0,0,0,0,2,146,66,0,0,0,0,0,0,0,1,660,0,0,64,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,25,1,1,1,0,6,0,0,0,0,17,39,189,0,7,0,0,0,0,0,0,78,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,509,89,5 +5,0,0,7,0,89,63,0,56,16,18,0,0,6,24,0,861,0,7,3,0,0,0,8,4,15,33,0,31,0,2,6,0,0,49,1338,89,6,16,0,99,0,0,0,1,0,0,2,0,0,0,0,13,1285,0,0,0,0,0,1,0,0,0,0,0,22,0,0,90046,89,1198,0,36,0,0,0,0,0,85,0,0,0,0,0,9,107,15218,0,0,49,0,0,0,0,0,369,20,3,0,0,2,0,1176,0,18,55,0,5727,0,0,0,0,8,5,4,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,16,0,4,5,0,0,0,0,0,0,0,1,1,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,62,12,12,12,0,0,0,12148,0,137,0,0,0,35,99,837,1551,12104,0,0,0,0,1,0,8,0,0,0,0,0,0,880,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,2,0,86,37,668,7,0,0,645,0,597,1,0,0,479,70,0,0,0,0,0,0,0,0,0,1035,1,0,0,0,15,0,0,0,0,10,308,57,0,0,87,0,0,0,0,0,13893,1,0,360,42,0,1,1,1,0,0,0,4,0,0,0,1,0,0,0,0,0,18,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,42,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,135,1,1,1,0,96,0,0,0,0,1,138,427,0,73,14,0,0,0,0,0,139,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2660,108,5 +3,0,0,11,31,53,35,133,316,8,95,0,0,0,27,2,128,0,7,44,0,31,28,1,17,4,15,0,8,0,1,2,0,31,34,0,84,9,18,1,345,0,0,0,1,0,0,2,0,0,0,0,6,248,0,0,0,0,0,1,0,0,0,0,0,41,0,0,1156,53,2455,0,11,0,0,0,0,0,6,87,0,0,0,0,1,4,66,0,133,34,31,0,7,153,0,1468,210,2,0,0,2,31,991,0,19,0,0,1761,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,2,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,72,4,4,4,0,0,4,103,4,85,0,0,4,13,49,151,1059,170,0,0,0,0,1,0,0,0,0,0,0,0,0,627,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,8,26,651,45,0,0,696,0,766,0,0,0,289,111,0,0,0,0,0,0,0,0,0,610,1,0,0,0,121,0,0,0,0,3,140,361,0,0,579,0,0,0,0,0,403,0,0,26,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,54,0,0,0,1,183,118,193,2,30,0,0,0,0,0,0,405,11,0,0,0,0,0,0,0,0,0,0,0,31,0,1,20,0,0,0,0,0,0,0,0,0,0,0,54,0,3,300,148,5 +0,0,0,10,0,21,4,0,25,8,4,0,1,3,20,0,41,0,7,3,0,0,0,1,1,2,9,0,6,0,1,0,0,0,8,0,21,74,11,0,71,0,0,0,1,0,0,1,0,0,0,0,3,110,0,0,0,0,0,1,0,0,0,0,0,9,0,0,1482,21,112,0,7,0,0,0,0,0,6,0,0,0,0,0,1,3,120,0,0,8,0,0,0,0,0,36,0,2,0,0,2,0,138,0,6,0,4,660,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,125,0,44,0,0,0,6,31,50,76,141,0,0,0,0,1,0,1,0,0,0,0,0,0,365,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,16,143,11,0,0,208,0,541,0,0,0,141,31,0,0,0,0,0,0,0,0,0,105,1,0,0,0,5,0,0,0,0,4,125,88,0,0,0,0,0,0,0,0,305,0,0,240,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,20,0,0,0,0,1,29,176,0,18,0,0,0,0,0,0,54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,251,50,5 +0,0,0,11,1,71,70,1,153,23,49,0,0,7,26,0,1256,0,9,8,0,0,0,8,1,16,12,0,38,0,2,0,0,1,23,8376,72,153,15,0,211,0,0,0,1,0,0,11,0,0,0,0,10,583,0,0,0,0,1,1,0,0,0,0,0,30,0,0,29662,71,1680,0,38,0,0,0,0,0,87,0,0,0,0,0,9,137,5858,0,1,23,1,0,4,60,0,957,115,17,1,0,4,1,1702,0,19,59,0,5259,0,0,0,0,5,0,9,0,0,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,70,12,12,12,0,0,0,1069,0,213,0,0,0,24,64,1254,3238,1025,0,0,0,0,1,0,9,0,0,0,0,0,0,1404,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,2,0,234,77,668,12,0,0,826,0,2312,0,1,0,495,51,0,0,0,0,0,0,0,0,0,1570,1,0,0,0,17,0,0,0,0,8,264,253,0,0,331,0,0,0,0,0,5887,1,0,813,25,0,1,1,1,0,0,0,26,0,0,0,5,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,25,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,85,1,1,1,0,100,0,0,0,0,9,95,478,0,56,12,0,0,0,0,0,372,2,0,0,0,0,0,0,0,0,0,0,0,3,0,2,33,0,0,0,0,0,0,0,0,0,0,0,1,0,7,2876,267,5 +0,0,0,17,0,78,106,0,554,10,107,0,0,6,22,0,1069,0,7,5,0,0,0,27,1,15,14,0,18,0,1,0,0,0,29,780,78,462,17033,1,1049,0,0,0,0,0,0,27,1,0,0,0,6,1045,0,0,0,0,0,1,0,0,0,0,0,109,0,0,78601,78,2139,0,19,0,0,0,0,0,118,0,0,0,0,0,29,65,10199,0,0,29,0,0,2,486,0,3837,35,51,0,0,2,0,3629,0,15,0,11,3613,0,0,0,0,23,0,2,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,1,0,84,12,12,12,0,0,0,9049,0,511,0,0,0,11,34,422,3840,8965,0,0,0,0,1,0,4,0,0,0,0,0,0,2848,0,0,0,0,0,0,0,0,0,0,0,0,27,1,12,0,0,0,0,2,0,39,27,508,21,0,0,1296,0,1897,0,0,0,1065,495,0,0,0,0,0,0,0,0,0,1871,1,0,3,0,33,0,0,0,0,4,174,2044,0,0,64,0,0,0,0,0,4730,1,0,1127,8,0,1,1,0,0,0,0,73,0,0,0,1,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,8,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,134,1,1,1,0,31,0,0,0,0,1,107,1408,0,36,12,0,0,0,0,0,1357,2,0,0,0,0,0,0,0,0,0,0,0,1,0,3,16,0,0,0,0,0,0,0,0,0,0,0,0,0,24,2383,1018,5 +0,0,0,12,0,54,26,0,78,14,22,0,0,6,22,0,809,0,6,3,0,0,0,10,0,12,6,0,10,0,2,0,0,0,14,4094,54,6,3,0,161,0,0,0,1,0,0,3,0,0,0,0,3,449,0,0,0,0,0,1,0,0,0,0,0,24,0,0,87915,54,982,0,8,0,0,0,0,0,27,0,0,0,0,0,11,65,14385,0,0,14,0,0,1,37,0,554,85,4,0,0,2,0,1084,0,18,60,0,3420,0,0,0,0,5,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,12822,0,83,0,0,0,6,23,324,975,12785,0,0,0,0,1,0,3,0,0,0,0,0,0,716,4,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,84,34,330,15,0,0,383,0,567,0,0,0,206,39,0,0,0,0,0,0,0,0,0,969,1,0,0,0,13,0,0,0,0,3,162,132,0,0,186,0,0,0,0,0,2609,1,0,294,14,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,14,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,31,0,0,0,0,1,68,238,0,16,14,0,0,0,0,0,162,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,950,57,5 +9,0,0,31,2,105,140,5,299,64,82,0,1,5,128,0,166,0,67,12,0,2,0,9,1,10,30,0,20,0,11,5,0,1,48,0,107,239,17,0,1115,0,0,0,1,0,0,2,0,0,0,0,19,555,0,0,0,0,0,1,0,0,0,16,0,73,0,0,14216,105,1191,0,34,0,0,1,0,0,15,6,0,0,0,0,12,20,965,0,5,48,1,0,6,201,0,1818,340,3,0,0,2,2,1592,0,90,0,4,4146,0,0,0,0,26,0,16,0,0,0,0,1,0,0,0,36,0,0,0,0,0,0,0,0,0,1,0,9,0,0,0,0,0,6,0,8,0,0,0,0,0,0,26,0,0,0,0,0,3,0,0,0,9,0,0,0,0,2,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,70,0,1,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,114,10,10,10,0,0,0,932,0,237,0,0,0,36,96,368,1309,1038,0,0,13,0,1,0,3,0,0,0,0,0,0,4557,0,0,0,0,0,0,0,0,0,0,1,0,2,1,0,0,0,0,0,1,0,37,105,783,39,0,0,872,0,1043,0,0,0,627,330,0,4,0,0,0,0,0,0,0,888,1,0,0,0,24,0,0,0,0,19,260,634,0,0,908,0,29,0,0,0,1656,0,0,2941,3,0,1,6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,55,0,0,0,45,0,0,0,0,0,0,0,2,2,0,0,23,1,0,0,0,0,3,20,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,154,1,1,1,0,93,0,0,0,0,17,155,813,0,67,9,0,0,0,0,0,738,10,0,0,0,0,0,0,0,0,0,0,0,3,0,1,77,2,0,0,0,0,0,0,0,0,0,0,4,0,2,5499,515,5 +0,0,0,12,0,44,21,0,105,32,17,0,1,4,65,1,102,0,7,7,0,0,0,3,7,9,33,0,23,0,2,0,0,0,20,0,44,113,42,0,289,0,0,0,1,0,0,1,0,0,0,0,13,193,0,0,0,0,0,1,0,0,0,0,0,48,0,0,3356,44,365,0,26,0,0,0,0,0,6,0,0,0,0,0,4,6,362,0,0,20,0,0,2,34,0,396,50,2,0,0,2,0,573,0,30,0,5,2330,0,0,0,0,11,0,5,0,0,0,0,1,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,36,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,281,0,86,0,0,0,26,119,100,445,298,0,0,0,0,1,0,7,0,0,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,13,58,274,13,0,0,315,0,743,0,0,0,214,91,0,0,0,0,0,0,4,0,0,323,1,0,0,0,17,0,0,0,0,10,149,168,0,0,121,0,0,0,0,0,595,0,0,298,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,38,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,109,0,0,0,0,1,64,240,0,67,0,0,0,0,0,0,228,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,34,0,0,0,0,0,0,0,0,0,0,0,0,0,1,526,95,5 +8,0,0,8,0,108,36,0,70,22,30,0,0,6,35,0,873,0,7,5,0,0,0,8,3,16,44,0,31,0,2,8,0,0,65,1172,108,6,22,0,135,0,0,0,1,0,0,7,0,0,0,0,16,372,0,0,0,0,0,1,0,0,0,0,0,28,0,0,82257,108,1229,0,37,0,0,0,0,0,80,0,0,0,0,0,9,123,14022,0,0,65,0,0,2,12,0,534,35,13,0,0,2,0,1293,0,22,85,0,5755,0,0,0,0,14,8,4,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,21,0,8,8,0,0,0,0,0,0,3,1,1,0,0,0,1,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,68,12,12,12,0,0,0,11326,0,197,0,0,0,38,135,900,1617,11284,0,0,0,0,1,0,12,0,0,0,0,0,0,1095,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,2,0,84,37,719,8,0,0,669,0,979,0,0,0,492,82,0,0,0,0,0,0,0,0,0,1057,1,0,0,0,16,0,0,0,0,11,206,247,0,0,162,0,0,0,0,0,3704,1,0,522,29,0,1,1,1,0,0,0,15,0,0,0,3,0,0,0,0,0,22,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,29,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,163,1,1,1,0,116,0,0,0,0,1,173,714,0,87,14,0,1,0,0,0,170,6,0,0,0,0,0,0,0,0,0,0,0,3,0,1,28,0,0,0,0,0,0,0,0,0,0,0,0,0,6,2538,135,5 +0,0,0,12,0,33,122,0,201,25,62,0,0,0,36,1,32,0,7,4,0,0,0,1,0,4,6,0,5,0,1,0,0,0,15,0,33,6,12,0,381,0,0,0,1,0,0,3,0,0,0,0,3,208,0,0,0,0,0,1,0,0,3,0,0,52,0,0,2447,33,475,0,7,0,0,0,0,0,14,0,0,0,0,0,1,6,386,0,0,15,0,0,5,180,0,1432,250,4,0,0,2,0,889,0,30,0,0,840,0,0,0,0,14,0,4,0,0,0,0,1,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,494,0,116,0,0,0,6,24,62,1528,312,0,0,0,0,1,0,1,0,0,0,0,0,0,1436,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,8,35,216,15,0,0,330,0,739,0,0,0,245,51,0,0,0,0,0,0,4,0,0,461,1,0,0,0,5,0,0,0,0,2,123,394,0,0,579,0,0,0,6,10,219,0,0,337,0,0,1,0,1,0,0,0,6,0,1,0,9,0,0,0,0,0,27,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,22,0,0,0,0,1,48,242,0,16,0,0,0,0,0,0,446,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,29,0,0,0,0,0,0,0,0,0,0,0,0,0,3,423,88,5 +0,0,0,7,0,40,130,0,221,22,67,0,0,2,28,0,610,0,7,5,0,0,0,6,0,12,6,0,7,0,1,0,0,0,8,1017,40,6,8,0,353,0,0,0,1,0,0,1,0,0,0,0,3,288,0,0,0,0,0,1,0,0,3,0,0,49,0,0,32388,40,1075,0,4,0,0,0,0,0,20,0,0,0,0,0,8,17,5434,0,0,8,0,0,7,189,0,1587,290,2,0,0,2,0,1498,0,25,0,0,1647,0,0,0,0,13,0,2,0,0,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,5005,0,64,0,0,0,4,22,253,1934,4727,0,0,0,0,1,0,3,0,0,0,0,0,0,973,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,35,256,7,0,0,358,0,464,0,0,0,213,11,0,0,0,0,0,0,0,0,0,1065,1,0,0,0,11,0,0,0,0,3,134,346,0,0,655,0,0,0,0,6,1749,1,0,59,10,0,1,1,0,0,0,0,2,0,1,0,8,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,10,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,18,0,0,0,0,1,48,116,0,14,12,0,0,0,0,0,420,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,563,77,5 +0,0,0,0,0,10,2,0,3,0,1,0,0,0,2,0,9,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,0,0,0,19,10,19,0,1,0,0,0,0,0,0,0,0,0,0,0,2,2,6,0,0,1,0,0,0,0,0,7,0,0,0,0,2,0,8,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,26,6,23,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,35,0,0,0,38,0,58,0,0,0,5,2,0,0,0,0,0,0,0,0,0,23,0,0,0,0,3,0,0,0,0,0,92,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,1,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,3,5 +0,0,0,12,0,21,4,0,34,12,6,0,1,2,23,0,42,0,7,5,0,1,0,0,0,2,9,0,6,0,1,0,0,0,8,0,21,135,11,0,116,0,0,0,0,0,0,0,0,0,0,0,3,72,0,0,0,0,0,1,0,0,0,0,0,8,0,0,498,21,124,0,7,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,8,0,0,0,0,0,33,0,0,0,0,2,0,166,0,5,0,3,823,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,32,0,37,0,0,0,6,28,52,75,56,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,21,143,13,0,0,87,0,461,0,0,0,38,22,0,0,0,0,0,0,0,0,0,119,0,0,0,0,5,1,0,0,0,4,111,4,0,0,0,0,0,0,0,0,268,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,16,0,0,0,0,1,29,8,0,18,0,0,0,0,0,0,53,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,1,0,0,1,0,0,125,49,5 +0,0,0,0,0,9,2,0,17,0,1,0,0,0,2,0,22,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,5,0,0,0,1,0,0,1,1,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,69,9,42,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,15,0,0,0,0,0,0,0,0,10,0,4,0,0,2,0,17,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,22,0,25,0,0,0,0,3,25,5,35,0,0,0,0,1,0,1,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,91,0,0,0,103,0,463,0,0,0,24,0,0,0,0,0,0,0,0,0,0,50,1,0,2,0,2,0,0,0,0,0,91,9,0,0,0,0,0,0,0,0,34,0,0,12,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,24,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,31,5 +0,0,0,10,0,21,4,0,45,14,6,0,1,3,24,0,59,0,7,1,0,0,0,1,5,1,15,0,9,0,1,0,0,0,6,0,21,68,14,0,122,0,0,0,1,0,0,2,0,0,0,0,5,105,0,0,0,0,0,1,0,0,0,0,0,7,0,0,825,21,186,0,10,0,0,0,0,0,11,0,0,0,0,0,1,4,65,0,0,6,0,0,0,0,0,63,0,4,0,0,2,0,206,0,4,0,4,777,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,92,0,55,0,0,0,10,45,56,106,111,0,0,0,0,1,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,22,167,11,0,0,124,0,283,0,0,0,50,33,0,0,0,0,0,0,0,0,0,149,1,0,0,0,7,0,0,0,0,6,115,10,0,0,0,0,0,0,0,0,261,0,0,57,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,13,0,0,0,0,1,27,90,0,26,0,0,0,0,0,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,2,257,27,5 +3,0,0,12,0,38,73,0,134,9,43,0,0,0,23,1,54,0,7,7,0,0,0,6,1,2,12,0,10,0,1,0,0,0,19,0,38,81,14,0,261,0,0,0,1,0,0,1,0,0,0,0,5,246,0,0,0,0,0,1,0,0,0,6,0,30,0,0,10150,38,347,0,11,0,0,0,0,0,13,0,0,0,0,0,8,10,2269,0,0,19,0,0,6,101,0,956,170,1,0,0,2,0,608,0,16,0,0,6064,0,0,0,0,6,1,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,1,0,0,0,0,857,0,2601,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,1255,0,86,0,0,0,10,40,88,1067,1284,0,0,0,0,1,0,0,0,0,0,0,0,0,8097,0,0,0,0,0,0,0,0,0,0,0,0,862,0,2,0,0,0,0,0,0,10,22,555,15,0,0,339,0,896,0,0,0,231,172,0,0,0,0,0,0,0,0,0,335,1,0,0,0,14,0,0,0,0,6,162,237,0,0,446,0,0,0,0,0,679,0,0,793,0,0,1,1,0,0,0,0,2,0,2,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,19,0,0,0,0,10,57,168,0,25,0,0,0,0,0,0,304,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,2,471,167,5 +6,0,0,13,1,51,46,1,156,16,29,0,0,2,30,0,83,0,9,5,0,0,0,5,0,9,3,0,6,0,1,0,0,1,22,0,52,211,7,0,219,0,0,0,1,0,0,3,0,0,0,0,3,287,0,0,0,0,0,1,0,0,0,0,0,33,0,0,2234,51,283,0,5,0,0,0,0,0,20,0,0,0,0,0,7,16,209,0,1,22,1,0,4,51,0,567,110,7,0,0,4,1,352,0,25,0,0,1248,0,0,0,0,1,4,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,10,10,10,0,0,0,194,0,94,0,0,0,4,13,188,550,209,0,0,0,0,1,0,2,0,0,0,4,1,0,654,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,144,51,394,17,0,0,555,0,1873,0,1,0,310,61,0,1,0,0,0,0,0,0,0,355,1,0,0,0,10,0,0,0,0,1,162,251,0,0,273,0,6,0,0,0,476,0,0,111,3,0,1,1,1,0,0,0,8,0,0,0,12,0,0,0,0,0,17,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,3,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,57,1,1,1,0,9,0,0,0,0,9,74,511,0,10,9,0,0,0,0,0,252,8,0,0,0,0,0,0,0,0,0,0,0,2,0,1,24,0,0,0,0,0,0,0,0,0,0,0,1,0,2,388,123,5 +0,0,0,21,0,108,45,0,168,28,44,0,2,5,58,0,81,0,7,9,0,0,0,17,1,13,21,0,41,0,1,0,0,0,65,0,108,171,57,0,351,0,0,0,1,0,0,2,0,0,0,0,16,296,0,0,0,0,0,1,0,0,1,7,0,61,0,0,9680,108,471,0,40,0,0,0,0,0,12,0,0,0,0,0,11,19,1511,0,0,65,0,0,6,123,0,1242,160,4,0,0,2,0,895,0,34,0,5,3458,0,0,0,0,19,0,2,0,0,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,36,0,1,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,10,10,10,0,0,0,1070,0,144,0,0,0,30,88,310,998,1040,0,0,0,0,1,0,6,0,0,0,0,0,0,1880,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,37,51,1707,22,0,0,1612,0,855,0,0,0,1451,70,0,0,0,0,0,0,0,0,0,410,1,0,0,0,27,0,0,0,0,16,1354,289,0,0,345,0,1,0,8,1,1221,0,0,1504,3,0,1,1,0,0,0,0,2,0,1,0,8,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,3,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,128,1,1,1,0,79,0,0,0,0,1,173,365,0,67,9,0,0,0,0,0,404,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,412,5 +0,0,0,6,1,22,35,1,107,5,33,0,0,0,10,0,81,0,8,1,0,0,0,1,2,1,6,0,4,0,1,0,0,1,12,0,23,54,5,0,139,0,0,0,1,0,0,3,0,0,0,0,2,274,0,2,0,0,0,1,0,0,0,1,0,10,0,0,1521,22,253,0,5,0,0,0,0,0,12,0,0,0,0,0,1,5,90,0,1,12,1,0,4,57,0,557,115,4,0,0,4,1,323,0,5,0,0,723,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,99,0,70,0,0,0,4,19,41,654,112,0,0,0,0,1,0,0,0,0,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,113,20,325,7,0,0,349,0,738,0,1,0,164,28,0,0,0,0,0,0,0,0,0,274,1,0,0,0,4,0,0,0,0,1,130,172,0,0,272,0,0,0,0,1,397,0,0,56,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,19,1,1,1,0,6,0,0,0,0,21,35,387,0,12,0,0,0,0,0,0,213,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,4,40974,121,5 +29,0,0,21,4,50,90,11,307,32,72,0,0,3,57,0,92,0,7,12,0,4,6,1,0,2,15,0,8,0,6,0,0,4,19,0,55,79,10,0,530,0,0,0,1,0,0,1,0,0,0,0,7,1766,0,1,0,0,0,1,0,0,2,50,0,48,0,0,9965,50,862,0,14,0,0,0,0,0,5,12,0,0,0,0,2,7,115,0,11,19,4,0,3,204,0,1676,200,1,0,0,2,4,1256,0,35,0,0,6225,0,0,0,0,13,0,4,0,0,0,0,1,0,0,0,18,1,0,0,0,0,0,1,0,0,0,0,9,0,0,0,0,0,5,0,20,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,2,0,83,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,60,2,2,2,0,0,2,136,2,86,0,0,0,14,44,227,10006,170,0,0,0,0,1,0,0,0,0,0,1,1,0,1099,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,24,76,443,29,0,0,476,0,1352,0,0,0,231,18999,0,0,0,0,0,0,0,0,0,628,1,0,0,0,21,2,0,0,0,4,162,471,0,0,448,0,0,0,0,2,4235,0,0,102,0,0,1,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,26,0,0,6,0,0,0,0,0,0,11,11,0,0,0,3,11,0,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,47,0,0,0,0,78,74,167,0,31,0,0,0,0,0,0,525,10,0,0,0,0,0,0,0,0,0,0,0,5,0,1,38,0,0,0,0,0,0,0,0,0,0,0,8,0,1,1929,243,5 +8,0,0,11,1,79,37,1,145,38,9,0,0,9,58,0,1133,0,9,3,0,0,0,8,0,10,3,0,9,0,6,1,0,1,36,11544,80,54,0,0,248,0,0,0,1,0,0,3,0,0,0,0,7,425,0,0,0,0,0,1,0,0,0,21,0,48,0,0,97597,79,1371,0,13,0,0,0,0,0,22,0,0,0,0,0,10,35,16199,0,1,36,1,0,1,0,0,319,30,4,0,0,4,1,1282,0,45,28,0,3730,0,0,0,0,8,5,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,0,3,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,2,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,356,12,12,12,0,0,0,13968,0,111,0,0,0,14,19,494,825,13972,0,0,0,0,1,0,8,0,0,0,0,0,0,709,0,0,0,0,0,0,0,0,0,0,0,0,3,7,0,0,0,0,0,1,0,220,96,591,12,0,0,613,0,609,0,1,0,323,66,0,0,0,0,0,0,0,0,0,1400,1,0,0,0,11,0,0,0,0,3,231,51,0,0,24,0,21,0,0,0,3788,1,0,161,7,0,1,1,0,0,0,0,7,0,0,0,1,0,0,0,0,0,39,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,7,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,97,1,1,1,0,40,0,0,0,0,9,116,267,0,17,12,0,0,0,0,0,373,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,44,0,0,0,0,0,0,0,0,0,0,0,1,0,4,1372,245,5 +2,0,0,12,1,48,262,1,1452,45,252,0,0,0,234,175,72,0,17,5,0,2,0,2,8,2,9,0,256,0,177,0,0,1,26,0,49,6,33,0,2199,0,0,0,1,0,0,10,0,0,0,0,186,280,0,0,0,0,0,1,0,0,0,4,0,75,0,0,14220,48,3040,0,433,0,0,0,0,0,40,3,0,0,0,0,2,17,767,0,1,26,1,0,3,1067,0,9061,1150,19,1,0,2,1,6537,0,54,1,0,5728,0,1,0,0,22,0,9,0,6,0,0,1,0,0,0,19,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,3,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,40,3,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,8,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,1028,0,168,0,0,0,372,241,122,8898,742,0,0,0,0,1,0,0,0,0,0,0,0,0,3888,0,0,0,0,0,0,0,0,0,3,0,0,10,0,10,0,0,0,0,0,2,8,66,637,16,0,0,533,0,895,0,0,0,384,546,0,0,0,0,0,0,12,0,0,2464,1,0,0,0,17,0,0,0,0,11,168,2905,0,0,2720,0,0,0,0,1,2318,0,0,2116,0,0,1,0,1,0,0,0,19,0,0,0,7,0,0,0,0,0,45,1,0,5,0,0,0,0,0,0,0,0,2,2,0,0,172,0,0,0,0,0,0,178,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,91,1,1,1,0,640,0,0,0,0,9,75,550,0,444,0,0,0,0,0,0,2645,2,0,0,0,0,0,0,0,0,0,0,0,1,0,9,51,0,0,0,0,0,0,0,0,0,0,0,2,0,4,1897,654,5 +14,0,0,20,0,103,396,0,285,64,81,0,0,3,118,0,34,0,7,6,0,0,0,7,1,9,3,0,4,0,1,0,0,0,73,0,103,184,4,0,811,0,0,0,1,0,0,2,0,0,0,0,2,217,0,2,0,0,0,1,0,0,0,6,0,151,0,0,2900,103,940,0,3,0,0,0,0,0,27,0,0,0,1,0,12,20,248,0,0,73,0,0,9,224,0,1875,205,3,0,0,2,0,1335,0,103,19,0,2686,0,0,0,0,4,5,1,0,0,0,0,1,0,0,1,7,3,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,4,0,1,0,0,0,0,0,0,3,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,106,10,10,10,0,0,0,229,0,197,0,0,0,2,11,257,5463,286,0,0,0,0,1,0,8,0,0,0,0,0,0,2436,0,2,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,2,0,1361,153,538,169,0,0,846,0,1051,0,0,0,726,120,0,0,0,0,0,0,0,0,0,924,1,0,0,0,14,0,0,0,0,1,211,611,0,0,488,0,0,0,0,0,1332,0,0,37,3,0,1,6,0,0,0,0,4,0,4,0,3,0,0,0,0,0,66,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,3,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,112,1,1,1,0,6,0,0,0,0,1,176,296,0,8,9,0,0,0,0,0,837,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,82,1,0,0,0,0,0,0,0,0,0,0,0,0,3,3238,123,5 +0,0,0,11,0,24,8,0,75,14,14,0,1,3,26,0,54,0,7,4,0,0,0,1,1,2,12,0,8,0,1,0,0,0,9,0,24,77,14,0,85,0,0,0,1,0,0,2,0,0,0,0,4,142,0,0,0,0,0,1,0,0,0,0,0,10,0,0,1322,24,207,0,9,0,0,0,0,0,11,0,0,0,0,0,1,4,97,0,0,9,0,0,1,23,0,234,35,4,0,0,2,0,295,0,5,0,4,1068,0,0,0,0,1,0,3,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,111,0,75,0,0,0,8,38,58,220,131,0,0,0,0,1,0,0,0,0,0,0,0,0,329,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,13,23,189,12,0,0,242,0,580,0,0,0,160,56,0,0,0,0,0,0,0,0,0,188,1,0,0,0,6,0,0,0,0,5,120,155,0,0,64,0,0,0,0,0,320,0,0,105,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,1,1,1,0,22,0,0,0,0,1,33,237,0,23,0,0,0,0,0,0,105,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,2,876,63,5 +0,0,0,5,0,20,30,0,91,1,25,0,0,0,5,0,24,0,7,4,0,0,0,1,0,2,3,0,4,0,1,0,0,0,6,0,20,6,22,0,121,0,0,0,1,0,0,4,0,0,0,0,2,161,0,0,0,0,0,1,0,0,0,0,0,13,0,0,1731,20,202,0,5,0,0,0,0,0,17,0,0,0,0,0,2,9,369,0,0,6,0,0,3,71,0,587,100,6,0,0,2,0,352,0,2,0,0,524,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,263,0,106,0,0,0,4,194,46,415,279,0,0,0,0,1,0,0,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,5,142,5,0,0,256,0,603,0,0,0,174,23,0,0,0,0,0,0,3,0,0,182,1,0,0,0,5,0,0,0,0,1,114,230,0,0,247,0,0,0,0,0,509,0,0,319,0,0,1,0,0,0,0,0,10,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,61,0,0,0,0,1,26,453,0,10,0,0,0,0,0,0,181,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,369,30,5 +3,0,0,15,0,49,38,0,126,26,30,0,1,3,49,0,78,0,23,4,0,0,0,4,4,4,21,0,15,0,2,1,0,0,22,0,49,181,24,0,329,0,0,0,1,0,0,2,0,0,0,0,9,204,0,0,0,0,0,1,0,0,1,2,0,32,0,0,9852,49,395,0,18,0,0,0,0,0,11,0,0,0,0,0,4,8,2640,0,0,22,0,0,4,74,0,677,105,2,0,0,2,0,636,0,18,0,5,2223,0,0,0,0,13,0,5,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,2262,0,117,0,0,0,18,79,107,1452,1997,0,0,0,0,1,0,0,0,0,0,0,0,0,1960,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,45,513,25,0,0,369,0,649,0,0,0,257,144,0,0,0,0,0,0,0,0,0,348,1,0,0,0,12,0,0,0,0,9,202,207,0,0,272,0,0,0,0,2,821,0,0,1652,0,0,1,0,0,0,0,0,3,0,0,0,7,0,0,0,0,0,20,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,65,0,0,0,0,1,71,221,0,43,0,0,0,0,0,0,270,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1204,179,5 +0,0,0,7,0,11,2,0,20,1,3,0,0,0,5,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,11,6,0,0,21,0,0,0,1,0,0,2,0,0,0,0,0,177,4,0,0,0,0,1,0,0,0,0,0,5,0,0,1471,11,53,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,300,0,0,2,0,0,0,0,0,8,0,2,0,0,2,0,24,0,3,0,0,379,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,185,0,42,0,0,0,0,3,25,5,212,0,0,0,0,1,0,0,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,8,98,10,0,0,149,0,647,0,0,0,85,9,0,0,0,0,0,0,4,0,0,50,1,0,0,0,2,0,0,0,0,0,96,66,0,0,0,0,0,0,0,0,95,0,0,275,0,0,1,0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,13,243,0,1,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,211,155,5 +4,0,0,16,0,160,76,0,382,86,60,1,1,4,528,11,1134,0,7,10,0,0,0,10,150,84,465,1,239,0,13,1,0,0,108,0,160,188,381,0,963,0,0,0,1,0,0,3,0,0,0,0,171,382,0,0,0,0,0,1,0,0,0,0,0,516,0,0,17337,160,3299,0,254,0,0,0,0,0,18,0,0,0,0,0,10,16,1497,0,0,108,0,0,3,168,0,3084,240,8,0,0,2,0,5321,0,87,0,7,14486,0,0,0,0,26,0,5,0,0,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,31,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0,0,0,1410,0,261,0,0,0,342,1465,245,3235,1410,0,0,0,0,1,0,6,0,0,0,0,0,0,3899,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,14,114,1036,18,0,0,829,0,1270,0,0,0,636,362,0,0,0,0,0,0,0,0,0,2204,1,0,0,0,170,0,0,0,0,171,348,425,0,0,682,0,0,0,0,0,4660,0,0,1914,0,0,1,0,0,0,0,0,8,0,0,0,7,0,0,0,0,0,84,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,182,1,1,1,0,503,0,0,0,0,1,268,355,0,803,0,0,0,0,0,0,793,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,0,0,0,0,0,0,0,0,0,0,0,0,0,6,23801,434,5 +0,0,0,31,0,49,138,0,277,53,70,0,0,4,67,0,83,0,7,10,0,0,0,3,1,3,15,0,11,0,1,0,0,0,17,0,49,295,17,0,648,0,0,0,1,0,0,14,0,0,0,0,5,340,0,0,0,0,0,1,0,0,1,0,0,64,0,0,59720,49,786,0,12,0,0,0,0,0,91,0,0,0,0,0,8,23,14914,0,0,17,0,0,5,229,0,1891,310,24,0,0,2,0,1319,0,53,1,9,2213,0,0,0,0,16,0,12,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,28,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3141,0,49,1,0,78,0,0,0,0,0,0,7194,0,334,0,0,0,10,47,122,2159,7274,0,0,0,0,1,0,0,0,0,0,0,0,0,14969,0,0,0,0,0,0,0,0,0,0,0,0,14,0,19,0,0,0,0,0,0,13,88,589,30,0,0,1003,0,1541,0,0,0,868,61,0,213,0,0,0,0,0,0,0,646,1,0,0,0,14,0,0,0,0,6,334,846,0,0,860,0,0,0,0,1,4653,0,0,16966,0,0,1,41,0,0,0,0,29,0,1,0,7,0,0,0,0,0,54,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,1,0,1,0,0,64,1,1,1,0,29,0,0,0,0,1,66,1468,0,30,0,0,0,0,0,0,674,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,41,0,0,0,0,0,0,0,0,0,0,0,0,13,5609,213,5 +0,0,0,4,0,25,27,0,72,0,12,0,0,0,15,0,21,0,7,3,0,0,0,1,1,1,0,0,5,0,1,0,0,0,5,0,25,6,47,0,140,0,0,0,1,0,0,3,0,0,0,0,3,124,0,0,0,0,0,1,0,0,0,0,0,19,0,0,1689,25,169,0,6,0,0,0,0,0,16,0,0,0,0,0,1,6,275,0,0,5,0,0,2,46,0,410,45,5,0,0,2,0,290,0,0,0,0,523,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,287,0,76,0,0,0,6,91,49,366,290,0,0,0,0,1,0,0,0,0,0,0,0,0,529,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,190,4,0,0,244,0,493,0,0,0,142,20,0,0,0,0,0,0,0,0,0,154,1,0,0,0,5,0,0,0,0,4,120,189,0,0,97,0,0,0,0,0,375,0,0,249,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,38,0,0,0,0,1,30,500,0,7,0,0,0,0,0,0,143,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,717,78,5 +0,0,0,14,0,20,6,0,30,23,8,0,0,0,27,0,20,0,7,2,0,0,0,1,1,0,0,0,3,0,1,0,0,0,2,0,20,6,7,0,83,0,0,0,1,0,0,4,0,0,0,0,2,167,0,0,0,0,0,1,0,0,0,0,0,28,0,0,2009,20,161,0,4,0,0,0,0,0,41,0,0,0,0,0,1,9,244,0,0,2,0,0,1,11,0,125,15,5,0,0,2,0,124,0,24,0,0,695,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,242,0,93,0,0,0,4,14,73,125,269,0,0,0,0,1,0,0,0,0,0,0,0,0,677,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,31,193,17,0,0,407,0,516,0,0,0,309,59,0,0,0,0,0,0,0,0,0,98,1,0,0,0,4,0,0,0,0,3,121,268,0,0,31,0,3,0,0,0,117,0,0,128,0,0,1,4,1,1,1,0,10,0,0,0,3,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,5,0,0,0,0,1,22,729,0,4,0,0,0,0,0,0,99,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,25,3,0,0,0,0,0,0,1,0,0,0,0,0,4,322,68,5 +1,0,0,8,1,21,28,1,54,8,9,0,0,0,20,0,81,0,9,4,0,0,0,2,0,1,3,0,2,0,1,0,0,1,7,0,22,107,6,0,80,0,0,0,1,0,0,1,0,0,0,0,1,119,0,0,0,0,0,1,0,0,0,0,0,13,0,0,376,21,159,0,3,0,0,0,0,0,5,0,0,0,2,0,4,6,66,0,1,7,1,0,2,8,0,131,15,1,0,0,4,1,141,0,8,0,0,486,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,85,0,55,0,0,0,2,21,50,110,113,0,0,0,0,1,0,0,0,0,0,0,0,0,264,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,120,30,319,18,0,0,318,0,2379,0,1,0,114,8,0,0,0,0,0,0,0,0,0,201,1,0,0,0,6,0,0,0,0,2,151,27,0,0,32,0,0,0,0,0,277,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,21,1,1,1,0,24,0,0,0,0,19,31,69,0,7,0,0,0,0,0,0,93,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,359,84,5 +6,0,0,7,1,50,45,1,114,6,11,0,0,9,13,0,1258,0,9,2,0,0,0,8,0,10,0,0,6,0,1,0,0,1,10,21777,51,54,0,0,87,0,0,0,1,0,0,7,0,0,0,0,1,1390,0,0,0,0,0,1,0,0,0,12,0,8,0,0,66581,50,1480,0,4,0,0,0,0,0,68,0,0,0,0,2,9,41,13023,0,1,10,1,0,1,0,0,375,30,14,0,0,4,1,1338,0,6,32,0,5921,0,0,0,0,22,6,6,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,6,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,13,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,12,12,12,0,0,0,8037,0,123,0,0,0,2,5,547,1564,8023,0,0,0,0,1,0,14,0,0,0,0,0,0,966,6,0,0,0,0,0,0,0,0,0,0,0,7,7,2,0,0,0,0,1,0,227,33,536,8,0,0,1581,0,1170,0,1,0,1231,32,0,0,0,0,0,0,4,0,0,1459,1,0,0,0,10,0,0,0,0,2,197,1124,0,0,45,0,0,0,0,0,5675,1,0,310,19,0,1,1,1,0,0,0,17,0,0,0,0,0,0,0,0,0,8,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,76,1,1,1,0,9,0,0,0,0,9,61,1594,0,5,12,0,0,0,0,0,157,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,12,0,0,0,0,0,0,0,0,0,0,0,1,0,7,2601,209,5 +1,0,0,16,1,43,49,1,118,33,23,0,1,2,56,0,122,0,9,7,0,0,0,2,3,6,15,0,15,0,2,0,0,1,15,0,44,273,29,0,233,0,0,0,1,0,0,2,0,0,0,0,8,326,0,0,0,0,0,1,0,0,0,0,0,33,0,0,2025,43,358,0,16,0,0,0,0,0,8,0,0,0,0,0,3,6,80,0,1,15,1,0,3,41,0,860,97,2,0,0,4,1,489,0,25,3,3,2114,0,0,0,0,15,0,2,0,0,0,0,1,0,0,0,15,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,140,0,105,0,0,0,16,87,117,1517,151,0,0,0,0,1,0,0,0,0,0,0,0,0,521,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,140,62,493,26,0,0,516,0,3068,0,1,0,271,101,0,0,0,0,0,0,0,0,0,380,1,0,0,0,12,0,0,0,0,13,187,801,0,0,566,0,0,0,0,0,813,0,0,51,0,0,1,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,30,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,66,1,1,1,0,36,0,0,0,0,9,59,296,0,36,2,0,0,0,0,0,221,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,35,0,0,0,0,0,0,0,0,0,0,0,1,0,1,70022,207,5 +0,0,0,6,0,26,14,0,143,5,37,0,0,2,9,0,17,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,0,0,2,0,26,6,0,0,262,0,12,0,1,0,0,12,0,0,0,0,1,394,0,0,0,0,0,1,0,0,0,0,0,34,0,0,5779,26,313,0,0,0,0,0,0,0,61,0,0,0,0,0,7,28,1079,0,0,2,0,0,1,122,0,1040,65,24,0,0,2,0,621,0,7,0,0,1388,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,14,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,502,0,176,0,0,0,0,3,148,913,513,0,0,0,0,1,0,3,0,0,0,0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,1,0,32,17,392,6,0,0,386,0,837,0,0,0,282,36,0,0,0,0,0,0,0,0,0,228,1,0,0,0,8,0,0,0,0,0,110,530,0,0,165,0,0,0,0,1,398,0,0,1305,3,0,1,1,1,0,0,0,35,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,3,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,0,0,0,0,0,1,28,1126,0,2,9,0,1,0,0,0,372,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,10,742,131,5 +0,0,0,23,2,45,109,2,245,70,45,0,0,0,97,0,154,0,27,4,0,0,0,1,1,3,18,0,10,0,2,1,0,2,15,0,47,102,11,0,372,0,0,0,1,0,0,5,0,0,0,0,6,327,0,0,0,0,0,1,0,0,0,9,0,82,0,0,34519,45,640,0,13,0,0,0,0,0,17,0,0,0,0,3,1,11,4999,0,2,15,2,0,8,109,0,1031,150,8,0,0,6,2,863,0,70,1,0,2144,0,0,0,0,19,0,3,0,0,0,0,1,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,3115,0,103,0,0,0,12,49,97,1397,3097,0,0,0,0,1,0,0,0,0,0,0,0,0,8658,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,218,110,596,39,0,0,713,0,1451,0,2,0,348,92,0,0,0,0,0,0,0,0,0,677,1,0,0,0,6,0,0,0,0,7,167,551,0,0,461,0,0,0,0,1,3799,0,0,10865,0,0,1,0,0,0,0,0,7,0,0,0,5,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,63,1,1,1,0,36,0,0,0,0,17,62,402,0,34,0,0,0,0,0,0,443,11,0,0,0,0,0,0,0,0,0,0,0,2,0,1,78,0,0,0,0,0,0,0,0,0,0,0,2,0,4,47610,308,5 +1,0,0,13,0,16,93,0,222,6,58,0,0,0,27,0,106,0,7,3,0,0,0,2,2,4,48,0,19,0,13,0,0,0,4,0,16,6,25,0,514,0,0,0,1,0,0,1,0,0,0,0,16,170,0,0,0,0,0,1,0,0,0,0,0,4,0,0,16477,16,588,0,32,0,0,0,0,0,6,0,0,0,0,0,2,4,1273,0,0,4,0,0,1,191,0,1600,220,1,0,0,2,0,1291,0,0,0,0,1046,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,1268,0,36,0,0,0,32,190,51,796,1268,0,0,0,0,1,0,0,0,0,0,0,0,0,4511,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,21,144,25,0,0,193,0,514,0,0,0,129,17,0,0,0,0,0,0,0,0,0,513,1,0,0,0,7,0,0,0,0,2,99,630,0,0,706,0,0,0,0,0,1736,0,0,4809,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,75,0,0,0,0,1,20,40,0,84,0,0,0,0,0,0,411,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5237,55,5 +4,0,0,13,1,66,86,1,185,15,43,0,0,25,29,0,1947,0,9,6,0,0,0,8,0,14,12,0,35,0,1,0,0,1,10,23377,67,54,13,0,222,0,0,0,1,0,0,1,0,0,0,0,5,1094,0,0,0,0,0,1,0,0,0,7,0,27,0,0,159570,66,2377,0,32,0,0,0,0,0,92,0,0,0,0,0,9,174,38523,0,1,10,1,0,3,27,0,1143,135,2,0,0,4,1,2408,0,17,171,0,8445,0,0,0,0,10,4,5,0,0,0,0,1,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,4,4,0,0,0,0,2,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,12,12,12,0,0,0,32253,0,73,0,0,0,23,88,1112,2858,32183,0,0,0,0,1,0,8,0,0,0,0,0,0,6005,4,0,0,0,0,0,0,0,0,0,0,0,9,5,0,0,0,0,0,1,0,536,62,675,14,0,0,752,0,1032,0,1,0,403,208,0,0,0,0,0,0,0,0,0,2324,1,0,0,0,14,0,0,0,0,6,262,204,0,0,309,0,0,0,0,0,9711,1,0,6728,53,0,1,1,0,0,0,0,4,0,0,0,3,0,0,0,0,0,21,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,94,1,1,1,0,106,0,0,0,0,9,77,287,0,48,14,0,0,0,0,0,375,4,0,0,0,0,0,0,0,0,0,0,0,4,0,1,34,0,0,0,0,0,0,0,0,0,0,0,1,0,2,4014,178,5 +0,0,0,23,0,47,147,0,324,64,91,0,1,5,86,2,80,0,7,7,0,0,0,1,3,5,21,0,17,0,1,0,0,0,25,0,47,288,28,0,677,0,0,0,1,0,0,6,0,0,0,0,9,340,0,0,0,0,0,1,0,0,4,0,0,92,0,0,4754,47,790,0,18,0,0,0,0,0,22,0,0,0,0,0,1,10,183,0,0,25,0,0,10,251,0,2083,350,9,0,0,2,0,1489,0,61,0,8,3068,0,0,0,0,16,0,3,0,0,0,0,1,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,302,0,156,0,0,0,18,72,94,2041,271,0,0,0,0,1,0,0,0,0,0,0,0,0,1437,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,13,84,372,30,0,0,503,0,1087,0,0,0,390,105,0,0,0,0,0,0,0,0,0,743,1,0,0,0,11,0,0,0,0,9,163,594,0,0,815,0,0,0,6,12,602,0,0,92,0,0,1,0,0,0,0,0,10,0,1,0,11,0,0,0,0,0,67,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,49,0,0,0,0,1,72,363,0,44,0,0,0,0,0,0,657,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,76,0,0,0,0,0,0,0,0,0,0,0,0,0,2,621,148,5 +1,0,0,5,1,33,6,4,32,22,7,0,0,4,36,0,74,0,7,10,0,1,1,2,2,6,18,0,15,0,0,0,0,1,18,0,34,6,97,0,119,0,0,0,1,0,0,4,0,0,0,0,9,227,0,0,0,0,0,1,0,0,0,2,0,30,0,0,1788,33,298,0,16,0,0,0,0,0,19,3,0,0,0,0,2,7,132,0,4,18,1,0,0,0,0,190,15,8,0,0,2,1,261,0,25,0,0,793,0,0,0,0,9,0,10,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,12,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,184,0,109,0,0,0,18,73,77,162,161,0,0,0,0,1,0,0,0,0,0,0,0,0,574,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,66,28,256,6,0,0,342,0,558,0,0,0,221,22,0,0,0,0,0,0,0,0,0,166,1,0,0,0,16,0,0,0,0,10,149,143,0,0,0,0,0,0,0,0,890,0,0,124,0,0,1,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,66,0,0,0,0,9,52,376,0,39,0,0,0,0,0,0,126,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,24,0,0,0,0,0,0,0,0,0,0,0,3,0,2,394,96,5 +0,0,0,11,0,25,3,0,11,35,4,0,0,0,42,0,31,0,7,3,0,0,0,1,0,1,9,0,3,0,3,0,0,0,9,0,25,6,0,0,105,0,0,0,1,0,0,1,0,0,0,0,3,50,0,0,0,0,0,1,0,0,0,16,0,43,0,0,544,25,103,0,7,0,0,0,0,0,5,0,0,0,0,0,3,6,26,0,0,9,0,0,0,0,0,26,0,1,0,0,2,0,147,0,40,0,0,608,0,0,0,0,17,0,0,0,1,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,48,0,71,0,0,0,6,18,50,111,59,0,0,0,0,1,0,0,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,43,167,14,0,0,155,0,401,0,0,0,81,23,0,0,0,0,0,0,0,0,0,98,1,0,0,0,4,0,0,0,0,4,107,47,0,0,0,0,0,0,0,0,5304,0,0,14,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,35,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,15,0,0,0,0,1,34,138,0,16,0,0,0,0,0,0,67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,35,0,0,0,0,0,0,0,0,0,0,0,0,0,1,189,60,5 +0,0,0,11,0,38,37,0,89,5,36,0,0,0,15,0,43,0,24,4,0,0,0,4,0,1,12,0,7,0,2,0,0,0,10,0,38,49,10,0,210,0,0,0,1,0,0,3,0,0,0,0,4,380,0,0,0,0,0,1,0,0,0,5,0,24,0,0,870,38,252,0,9,0,0,0,0,0,11,0,0,0,0,0,4,8,94,0,0,10,0,0,7,74,0,759,130,5,0,0,2,0,458,0,11,0,0,903,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,121,0,94,0,0,0,8,33,84,1163,124,0,0,0,0,1,0,0,0,0,0,0,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,20,220,12,0,0,225,0,527,0,0,0,109,50,0,0,0,0,0,0,0,0,0,244,1,0,0,0,8,0,0,0,0,5,127,186,0,0,385,0,0,0,0,3,199,0,0,36,0,0,1,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,56,1,1,1,0,14,0,0,0,0,1,48,191,0,22,0,0,0,0,0,0,221,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,2,220,35,5 +0,0,0,3,0,21,2,0,22,0,2,0,0,0,4,0,57,0,6,1,0,0,0,1,0,0,18,0,2,0,5,2,0,0,1,0,21,6,0,0,8,0,0,0,1,0,0,3,0,0,0,0,6,67,0,0,0,0,0,1,0,0,0,0,0,1,0,0,893,21,124,0,9,0,0,0,0,0,16,0,0,0,0,0,1,6,114,0,0,1,0,0,0,0,0,37,0,5,0,0,2,0,149,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,126,0,62,0,0,0,12,33,35,45,131,0,0,0,0,1,0,0,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,9,147,3,0,0,132,0,288,0,0,0,44,12,0,0,0,0,0,0,0,0,0,93,1,0,0,0,2,0,0,0,0,7,103,28,0,0,0,0,0,0,0,0,327,0,0,195,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,14,0,0,0,0,1,22,71,0,27,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,183,106,5 +4,0,0,14,1,46,53,4,43,0,4,0,0,10,6,0,150,0,6,6,0,1,1,7,8,12,21,1,15,0,1,0,0,1,10,16231,47,6,15,0,68,0,0,0,1,0,0,2,0,0,0,0,10,1839,0,0,0,0,0,1,0,0,0,0,0,6,0,0,151093,46,576,0,14,0,0,0,0,0,107,3,0,0,0,0,9,21,24705,0,4,10,1,0,0,0,0,328,35,2,0,0,2,1,379,0,1,0,0,4985,0,0,0,0,1,3,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,26,12,12,12,0,0,0,20967,0,67,0,0,0,18,61,400,711,20930,0,0,0,0,1,0,4,0,0,0,0,0,0,533,0,0,0,0,0,0,0,0,0,1,0,0,2,1,0,0,0,0,0,1,0,129,20,437,25,0,0,544,0,950,0,0,0,360,33,0,0,0,0,0,0,0,0,0,272,1,0,0,0,23,0,0,0,0,9,220,78,0,0,0,0,46,0,0,0,2573,1,0,50,55,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,17,0,0,0,0,9,57,106,0,36,14,0,0,0,0,0,106,2,0,0,0,0,0,0,0,0,0,0,0,2,0,2,6,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2009,76,5 +5,0,0,11,0,75,125,0,519,78,157,0,0,0,92,0,92,0,7,5,0,0,0,13,0,3,9,0,27,0,1,0,0,0,42,0,75,189,55,0,1598,0,0,0,1,0,0,5,0,0,0,0,12,316,0,0,0,0,0,1,0,0,3,7,0,154,0,0,10795,75,1121,0,28,0,0,1,0,0,53,0,0,0,0,0,5,11,3586,0,0,42,0,0,6,490,0,4007,500,8,0,0,2,0,2481,0,86,2,0,4003,0,0,0,0,18,5,0,0,0,0,0,1,0,0,0,994,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1015,0,1,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,3,1,0,22,0,0,0,0,0,0,2115,0,237,0,0,0,24,66,199,10319,2239,0,0,0,0,1,0,12,0,3,0,0,0,0,4864,0,0,0,0,0,0,0,0,0,0,1,0,6,0,8,0,0,0,0,0,0,13,89,1820,11,0,0,1057,0,1345,0,0,0,917,216,0,1,0,0,0,0,0,0,0,992,1,0,0,0,18,0,0,0,0,13,472,1407,0,0,1361,0,298,0,11,7,844,0,0,459,0,0,1,17,0,0,0,0,11,0,1,0,8,0,0,0,0,0,78,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,16,1,0,0,0,0,0,1,5,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,125,1,1,1,0,86,0,0,0,0,1,117,699,0,40,0,0,1,0,0,0,1958,41,0,0,0,0,0,0,0,0,0,0,0,0,0,1,88,2,0,0,0,0,0,0,0,0,0,0,0,0,4,1177,1242,5 +4,0,0,7,0,21,3,0,8,6,3,0,0,0,12,1,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,8,0,21,6,0,0,33,0,0,0,1,0,0,6,0,0,0,0,0,165,0,0,0,0,0,1,0,0,0,0,0,11,0,0,1696,21,77,0,1,0,0,0,0,0,25,0,0,0,0,0,1,8,217,0,0,8,0,0,0,0,0,15,0,10,0,0,2,0,33,0,9,0,0,322,0,0,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,9,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,222,0,148,0,0,0,0,3,42,54,231,0,0,0,0,1,0,3,0,0,0,0,0,0,518,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,0,0,0,0,0,8,13,133,10,0,0,173,0,282,0,0,0,105,12,0,0,0,0,0,0,6,0,0,48,1,0,0,0,2,0,0,0,0,0,103,63,0,0,0,0,0,0,0,0,63,0,0,119,0,0,1,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,0,0,0,0,0,1,29,252,0,1,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,330,55,5 +1,0,0,8,1,44,35,1,47,7,11,0,0,9,13,0,119,0,9,2,0,0,0,8,0,10,0,0,5,0,1,0,0,1,5,6079,45,54,0,0,92,0,0,0,1,0,0,1,0,0,0,0,1,456,0,0,0,0,0,1,0,0,0,2,0,10,0,0,11487,44,201,0,3,0,0,0,0,0,18,0,0,0,0,0,9,33,1807,0,1,5,1,0,1,0,0,290,30,1,0,0,4,1,150,0,8,30,0,1893,0,0,0,0,3,1,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,604,0,50,0,0,0,1,4,437,617,596,0,0,0,0,1,0,4,0,0,0,0,0,0,269,1,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,217,35,420,9,0,0,443,0,497,0,1,0,169,6,0,0,0,0,0,0,0,0,0,243,1,0,0,0,10,0,0,0,0,2,178,23,0,0,34,0,0,0,0,0,24383,1,0,45,9,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,51,1,1,1,0,5,0,0,0,0,9,50,66,0,4,12,0,0,0,0,0,113,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,13,0,0,0,0,0,0,0,0,0,0,0,1,0,2,746,48,5 +1,0,0,10,0,101,260,0,395,42,136,0,0,9,45,0,2381,0,7,4,0,0,0,8,0,13,6,0,45,0,1,0,0,0,46,36524,101,6,8,0,640,0,0,0,1,0,0,2,0,0,0,0,3,2390,0,0,0,0,0,1,0,0,4,1,0,67,0,0,222739,101,3372,0,44,0,0,0,0,0,104,0,0,0,0,0,9,262,12003,0,0,46,0,0,8,316,0,3124,425,4,0,0,2,0,4025,0,40,377,0,22378,0,0,0,0,19,1,4,0,0,0,0,1,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,10,1,0,0,0,0,10,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,12,12,12,0,0,0,4283,0,166,0,0,0,28,46,1672,13835,3776,0,0,0,0,1,0,4,0,2,0,0,0,0,2236,1,0,0,0,0,0,0,0,0,0,0,0,2,2,3,0,0,0,0,1,0,162,84,863,10,0,0,967,0,914,0,0,0,731,155,0,16,0,0,0,0,0,0,0,3233,1,0,0,0,12,0,0,0,0,4,329,658,0,0,1395,0,0,0,0,9,9720,1,0,676,48,0,1,77,0,0,0,0,4,0,1,0,13,0,0,0,0,0,38,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,48,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,114,1,1,1,0,129,0,0,0,0,1,147,880,0,53,12,0,0,0,0,0,768,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,54,63,0,0,0,0,0,0,0,0,0,0,0,0,3,4113,166,5 +1,0,0,11,0,15,11,0,31,6,10,0,0,0,9,0,21,0,7,1,0,0,0,1,0,0,3,0,1,0,1,1,0,0,4,0,15,6,0,0,60,0,0,0,1,0,0,4,0,0,0,0,1,207,0,0,0,0,0,1,0,0,0,0,0,11,0,0,16506,15,109,0,3,0,0,0,0,0,18,0,0,0,0,0,1,6,1420,0,0,4,0,0,1,20,0,178,25,5,0,0,2,0,133,0,7,0,0,1057,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1389,0,99,0,0,0,2,9,73,7506,1405,0,0,0,0,1,0,0,0,0,0,0,0,0,6906,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,8,14,385,15,0,0,189,0,632,0,0,0,128,85,0,1833,0,0,0,0,0,0,0,89,1,0,0,0,2,0,0,0,0,2,98,128,0,0,172,0,0,0,0,0,1321,0,0,5340,0,0,1,9,1,0,0,0,8,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,6,0,0,0,0,1,19,298,0,6,0,0,0,0,0,0,77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,9,0,0,0,0,0,0,0,0,0,0,0,0,4,1833,125,5 +3,0,0,14,0,31,7,0,55,6,9,0,0,0,9,3,29,0,7,3,0,0,0,2,0,1,6,0,4,0,1,0,0,0,14,0,31,7,8,0,100,0,0,0,1,0,0,3,0,0,0,0,2,94,0,0,0,0,0,1,0,0,0,0,0,13,0,0,1017,31,140,0,5,0,0,0,0,0,19,0,0,0,0,0,2,6,125,0,0,14,0,0,1,18,0,174,15,8,0,0,2,0,172,0,6,0,0,526,0,0,1,0,1,2,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,147,0,61,0,0,0,4,25,71,212,144,0,0,0,0,1,0,1,0,0,0,0,0,0,420,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,16,194,22,0,0,211,0,430,0,0,0,121,18,0,0,0,0,0,0,0,0,0,119,1,0,0,0,5,0,0,0,0,3,127,94,0,0,30,0,0,0,0,0,140,0,0,154,0,0,1,0,1,0,0,0,8,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,18,0,0,0,0,1,45,216,0,12,0,0,0,0,0,0,84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,163,5 +2,0,0,7,1,30,50,4,146,14,39,0,0,0,29,0,40,0,8,6,0,1,0,1,0,4,7,0,6,0,1,0,0,0,15,0,31,64,7,0,266,0,0,0,1,0,0,8,0,0,0,0,3,708,0,0,0,0,0,1,0,0,0,2,0,42,0,0,10587,30,431,0,9,0,0,0,0,0,36,3,0,0,0,0,1,10,1373,0,4,15,0,0,3,115,0,938,130,13,0,2,2,1,642,0,24,0,0,1533,0,0,0,0,10,2,6,0,0,0,0,1,0,0,0,9,2,0,0,0,0,0,0,0,0,0,0,0,0,0,18,110,0,0,0,0,0,0,0,0,0,1,20,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,1,0,0,0,0,979,0,162,0,0,0,7,21,71,1654,971,0,0,0,0,1,0,0,0,0,0,0,0,0,4300,0,0,0,0,0,0,0,0,0,0,0,0,8,0,82,0,0,0,0,0,0,14,27,591,9,0,0,751,0,765,0,0,0,341,42,0,0,0,1,0,0,13,0,0,312,1,0,0,0,8,0,0,0,0,3,435,437,0,0,341,0,0,0,0,0,1814,0,0,2897,11,0,1,0,0,0,0,0,18,0,0,0,6,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,37,1,2,1,0,32,0,0,0,0,15,46,1462,0,18,0,0,0,0,0,0,341,3,0,0,0,0,0,0,0,0,0,0,0,1,0,2,18,0,0,0,0,0,0,0,0,0,0,0,2,0,5,1441,316,5 +0,0,0,12,0,26,65,0,146,26,51,0,0,2,37,0,37,0,7,3,0,0,0,1,0,1,6,0,4,0,1,0,0,0,11,0,26,61,6,0,297,0,0,0,1,0,0,2,0,0,0,0,2,165,0,0,0,0,0,1,0,0,6,0,0,31,0,0,4570,26,354,0,5,0,0,0,0,0,10,0,0,0,0,0,1,5,429,0,0,11,0,0,5,112,0,925,205,3,1,0,2,0,615,0,20,0,2,1916,0,0,0,0,8,0,2,0,1,0,0,1,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,484,0,74,0,0,0,4,18,60,949,343,0,0,0,0,1,0,0,0,0,0,0,0,0,699,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,36,163,13,0,0,248,0,795,0,0,0,173,193,0,0,0,0,0,0,0,0,0,345,1,0,0,0,4,0,0,0,0,3,114,252,0,0,454,0,0,0,0,7,333,0,0,43,0,0,1,0,0,0,0,0,2,0,0,0,6,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,8,0,0,0,0,1,37,151,0,12,0,0,0,0,0,0,274,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,32,0,0,0,0,0,0,0,0,0,0,0,0,0,2,696,160,5 +0,0,0,6,0,50,8,0,31,18,11,0,0,2,25,0,27,0,9,4,0,0,0,5,2,9,3,0,6,0,1,0,0,0,17,0,50,6,4,0,111,0,0,0,1,0,0,6,0,0,0,0,3,223,0,0,0,0,0,1,0,0,0,0,0,29,0,0,2472,50,143,0,5,0,2,0,0,0,24,0,0,0,0,1,8,23,401,0,0,17,0,0,2,16,0,250,35,8,0,0,2,0,166,0,23,0,0,944,0,0,0,0,0,0,8,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,310,0,130,0,0,0,4,15,223,245,316,0,0,0,0,1,0,10,0,0,0,0,0,0,630,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,33,244,6,0,0,393,0,876,0,0,0,274,29,0,0,0,0,0,0,0,0,0,113,1,0,0,0,11,0,0,0,0,3,145,220,0,0,60,0,0,0,0,0,188,0,0,283,3,0,1,1,1,0,0,0,14,0,0,0,5,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,8,0,0,0,0,1,67,483,0,10,9,0,0,0,0,0,119,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,5,390,127,5 +0,0,0,1,0,29,2,0,4,4,2,0,0,0,7,0,9,0,7,1,0,0,0,2,0,0,0,0,4,0,4,0,0,0,11,0,29,6,0,0,34,0,0,0,0,0,0,0,0,0,0,0,3,37,0,0,0,0,0,1,0,0,0,0,0,6,0,0,1025,29,31,0,8,0,0,0,0,0,0,0,0,0,0,0,2,2,374,0,0,11,0,0,0,0,0,23,0,0,0,0,2,0,23,0,5,0,0,667,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,210,0,44,0,0,0,6,8,56,445,224,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,112,1,0,0,95,0,247,0,0,0,35,10,0,0,0,0,0,0,0,0,0,31,0,0,0,0,3,0,0,0,0,4,111,1,0,0,0,0,1,0,0,0,207,0,0,4,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,10,0,0,0,0,1,40,11,0,8,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,28,5 +0,0,0,13,0,53,659,0,1308,34,328,0,1,3,69,2,73,0,7,5,0,0,0,5,1,6,21,0,17,0,4,2,0,0,23,0,53,83,17,0,2066,0,0,0,1,0,0,3,0,0,0,0,13,243,0,0,0,0,0,1,0,0,3,0,0,44,0,0,15354,53,2496,0,25,0,0,0,0,0,13,0,0,0,0,0,5,11,2715,0,0,23,0,0,5,1262,0,9593,1590,5,1,0,2,0,5722,0,28,0,4,2874,0,0,0,0,17,0,4,0,0,0,0,1,0,0,0,29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,1569,0,159,0,0,0,22,74,717,5380,1500,0,0,0,0,1,0,0,0,0,0,0,0,0,5090,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,12,47,405,16,0,0,1001,0,1068,0,0,0,879,1698,0,0,0,0,0,0,0,0,0,2450,1,0,0,0,11,0,0,0,0,10,162,2330,0,0,3709,0,0,0,0,4,1206,0,0,3119,0,0,1,0,0,0,0,0,7,0,0,0,7,0,0,0,0,0,55,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,25,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,79,1,1,1,0,95,0,0,0,0,1,76,359,0,50,0,0,0,0,0,0,2362,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,40,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1391,132,5 +1,0,0,10,0,38,4,0,29,2,4,0,0,2,11,0,31,0,7,5,0,0,0,5,0,9,6,0,7,0,1,0,0,0,9,0,38,6,10,0,63,0,0,0,1,0,0,1,0,0,0,0,3,111,0,0,0,0,0,1,0,0,0,0,0,13,0,0,1137,38,79,0,6,0,0,0,0,0,12,0,0,0,0,0,7,14,109,0,0,9,0,0,0,0,0,89,5,2,0,0,2,0,80,0,8,0,0,900,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,99,0,62,0,0,0,4,23,166,66,105,0,0,0,0,1,0,2,0,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,27,178,13,0,0,222,0,758,0,0,0,113,27,0,0,0,0,0,0,0,0,0,88,1,0,0,0,10,0,0,0,0,2,125,71,0,0,0,0,0,0,0,0,138,0,0,20,3,0,1,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,25,0,0,0,0,1,47,137,0,14,9,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,174,246,5 +1,0,0,7,1,45,34,1,72,2,10,0,0,9,8,0,1030,0,9,3,0,0,0,7,0,11,3,0,9,0,2,0,0,1,8,5411,46,54,3,0,65,0,0,0,1,0,0,2,0,0,0,0,3,469,0,0,0,0,0,1,0,0,0,1,0,5,0,0,53610,45,1141,0,8,0,0,0,0,0,23,0,0,0,0,0,8,37,3330,0,1,8,1,0,1,0,0,301,30,3,0,0,4,1,1067,0,3,23,0,18979,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,1813,0,65,0,0,0,6,12,398,613,1795,0,0,0,0,1,0,4,0,0,0,0,0,0,2120,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,1,0,218,27,400,8,0,0,442,0,675,0,1,0,162,8,0,0,0,0,0,0,0,0,0,1172,1,0,0,0,10,0,0,0,0,2,165,28,0,0,26,0,0,0,0,0,3492,1,0,2342,8,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,51,1,1,1,0,18,0,0,0,0,9,54,141,0,13,12,0,0,0,0,0,124,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1671,55,5 +0,0,0,5,0,17,201,0,545,35,185,0,0,0,40,0,27,0,7,2,0,0,0,1,0,1,6,0,3,0,2,0,0,0,3,0,17,6,21,0,796,0,0,0,1,0,0,10,0,0,0,0,2,240,0,0,0,0,0,1,0,0,0,0,0,57,0,0,5273,17,1072,0,5,0,0,0,0,0,42,0,0,0,0,0,1,18,369,0,0,3,0,0,3,525,0,4170,855,20,0,0,2,0,2258,0,37,2,0,1095,0,0,0,0,40,0,8,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,19,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,386,0,129,0,0,0,4,53,43,2680,389,0,0,0,0,1,0,0,0,0,0,0,0,0,2315,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,8,40,282,5,0,0,550,0,734,0,0,0,471,29,0,0,0,0,0,0,0,0,0,1005,1,0,0,0,3,0,0,0,0,2,130,1124,0,0,2595,0,0,0,0,0,301,0,0,775,0,0,1,0,1,0,0,0,22,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,106,0,0,0,0,1,20,555,0,12,0,0,0,0,0,0,1007,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,39,0,0,0,0,0,0,0,0,0,0,0,0,0,7,524,126,5 +0,0,0,5,0,22,75,0,114,15,37,0,0,0,20,0,28,0,7,2,0,0,0,1,0,1,6,0,3,0,1,1,0,0,11,0,22,6,5,0,185,0,0,0,1,0,0,3,0,0,0,0,2,156,0,0,0,0,0,1,0,0,2,1,0,26,0,0,2103,22,293,0,5,0,0,0,0,0,13,0,0,0,0,0,1,5,151,0,0,11,0,0,2,97,0,778,160,5,0,0,2,0,489,0,18,0,0,847,0,0,0,0,12,0,2,0,0,0,0,1,0,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,272,0,114,0,0,0,4,18,41,804,191,0,0,0,0,1,0,0,0,0,0,0,0,0,864,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,21,179,5,0,0,316,0,577,0,0,0,246,75,0,0,0,0,0,0,0,0,0,281,1,0,0,0,3,0,0,0,0,2,112,287,0,0,367,0,0,0,0,3,124,0,0,159,0,0,1,0,0,0,0,0,7,0,1,0,6,0,0,0,0,0,15,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,16,0,0,0,0,1,33,356,0,12,0,0,0,0,0,0,242,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,2,271,82,5 +0,0,0,12,1,43,28,1,91,30,9,0,1,2,45,0,113,0,9,6,0,0,0,2,1,3,15,0,11,0,1,0,0,1,22,0,44,370,21,0,137,0,0,0,1,0,0,4,0,0,0,0,5,268,0,0,0,0,0,1,0,0,0,0,0,24,0,0,5221,43,284,0,12,0,0,0,0,0,19,0,0,0,0,0,3,10,1048,0,1,22,1,0,1,0,0,99,0,6,0,0,4,1,282,0,24,0,5,2097,0,0,0,0,2,0,4,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,690,0,147,0,0,0,10,52,103,301,689,0,0,0,0,1,0,0,0,0,0,0,0,0,1171,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,146,58,463,14,0,0,451,0,2834,0,1,0,230,75,0,0,0,0,0,0,0,0,0,298,1,0,0,0,9,0,0,0,0,5,186,81,0,0,0,0,0,0,0,0,921,0,0,656,0,0,1,0,0,0,0,0,9,0,0,0,3,0,0,0,0,0,33,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,59,1,1,1,0,49,0,0,0,0,9,66,232,0,30,0,0,0,0,0,0,135,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,30,0,0,0,0,0,0,0,0,0,0,0,1,0,4,942,136,5 +0,0,0,12,0,55,184,0,315,50,88,0,0,8,59,5,958,0,7,4,0,0,0,7,0,12,6,0,14,0,1,0,0,0,16,3065,55,38,8,0,584,0,0,0,1,0,0,15,0,0,0,0,3,910,0,0,0,0,0,1,0,0,3,1,0,74,0,0,20577,55,1748,0,12,0,0,0,0,0,96,0,0,0,0,0,8,102,3713,0,0,16,0,0,7,246,0,2256,355,25,0,0,2,0,2266,0,53,44,0,3692,0,0,0,0,14,0,5,0,0,0,0,1,0,0,0,11,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,14,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,12,12,12,0,0,0,1607,0,227,0,0,0,9,27,627,2476,1570,0,0,0,0,1,0,4,0,0,0,0,0,0,2553,0,0,0,0,0,0,0,0,0,0,0,0,15,1,10,0,0,0,0,1,0,128,75,430,12,0,0,763,0,1087,0,0,0,580,50,0,0,0,0,0,0,5,0,0,1624,1,0,0,0,11,0,0,0,0,4,171,668,0,0,906,0,0,0,0,3,3443,1,0,1008,19,0,1,1,0,0,0,0,41,0,1,0,11,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,19,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,40,0,0,0,0,1,71,1463,0,21,12,0,0,0,0,0,680,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,64,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1843,148,5 +0,0,0,2,0,8,2,0,4,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,1,0,0,17,8,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,7,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,15,0,0,0,0,3,21,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,33,2,0,0,36,0,64,0,0,0,3,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,6,5 +0,0,0,19,0,73,14,0,171,43,32,1,1,7,64,0,152,0,7,10,0,0,0,13,8,11,42,0,50,0,1,0,0,0,40,0,73,286,101,0,446,0,0,0,1,0,0,9,1,0,0,0,25,366,0,0,0,0,0,1,0,0,0,1,0,65,0,0,4914,73,616,0,51,0,0,0,1,0,37,0,0,0,0,0,5,17,377,0,0,40,0,0,1,89,0,1049,65,17,0,0,2,0,1006,0,37,0,6,5070,0,0,0,0,8,0,5,0,2,0,0,1,0,0,0,12,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,11,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,34,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,668,0,205,0,0,0,50,186,157,1344,424,0,0,0,0,1,0,10,0,0,0,0,0,0,1128,0,0,0,0,2,0,0,0,0,0,0,0,9,0,2,0,0,0,0,0,0,71,86,507,21,0,0,490,0,1408,0,0,0,336,161,0,0,0,0,0,0,0,0,0,449,1,0,3,0,31,0,0,0,0,21,191,375,0,0,153,0,0,0,0,2,1174,0,0,218,0,0,1,0,0,0,0,0,23,0,0,0,3,0,0,0,0,0,37,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,98,1,1,1,0,183,0,0,0,0,8,113,476,0,104,0,0,0,0,0,0,442,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,47,0,0,0,0,0,0,0,0,0,0,0,0,0,9,908,229,5 +0,0,0,11,0,30,40,0,144,23,38,0,1,3,38,0,61,0,7,5,0,0,0,1,1,3,15,0,10,0,1,0,0,0,14,0,30,84,21,0,290,0,0,0,1,0,0,1,0,0,0,0,5,205,0,0,0,0,0,1,0,0,2,0,0,28,0,0,1232,30,331,0,11,0,0,0,0,0,4,0,0,0,0,0,1,3,63,0,0,14,0,0,3,84,0,718,150,1,0,0,2,0,574,0,16,0,4,1311,0,0,0,0,5,0,4,0,0,0,0,1,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,103,0,68,0,0,0,10,52,60,634,122,0,0,0,0,1,0,0,0,0,0,0,0,0,504,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,39,246,12,0,0,205,0,534,0,0,0,128,44,0,0,0,0,0,0,0,0,0,332,1,0,0,0,7,0,0,0,0,5,131,180,0,0,355,0,0,0,0,2,341,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,24,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,44,0,0,0,0,1,44,80,0,29,0,0,0,0,0,0,238,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,27,0,0,0,0,0,0,0,0,0,0,0,0,0,1,267,60,5 +0,0,0,12,0,60,171,0,285,40,83,0,1,3,55,0,50,0,7,4,0,0,0,1,1,3,12,0,8,0,1,0,0,0,28,0,60,175,15,0,546,0,0,0,1,0,0,9,0,0,0,0,4,269,0,0,0,0,0,1,0,0,6,0,0,71,0,0,5363,60,711,0,9,0,0,0,0,0,33,0,0,0,0,0,1,16,302,0,0,28,0,0,7,254,0,2016,320,18,1,0,2,0,1334,0,42,0,5,2032,0,0,0,0,13,0,6,0,0,0,0,1,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,724,0,159,0,0,0,8,43,102,2320,369,0,0,0,0,1,0,1,0,0,0,0,0,0,1742,0,0,0,0,0,0,0,0,0,0,0,0,9,0,2,0,0,0,0,0,0,13,51,381,13,0,0,637,0,1147,0,0,0,507,61,0,0,0,0,0,0,0,0,0,655,1,0,0,0,6,0,0,0,0,5,163,694,0,0,764,0,0,0,0,14,361,0,0,195,0,0,1,0,0,0,0,0,20,0,1,0,26,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,68,1,1,1,0,32,0,0,0,0,1,88,352,0,24,0,0,0,0,0,0,614,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,46,0,0,0,0,0,0,0,0,0,0,0,0,0,1,506,116,5 +11,0,0,21,6,89,190,12,332,91,76,0,0,0,161,0,195,0,9,21,0,9,3,4,0,6,8,0,13,0,11,0,0,5,58,0,95,308,10,1,1001,0,0,0,1,0,0,1,0,0,0,0,14,283,0,11,0,0,0,1,0,0,0,0,0,123,0,0,2960,89,1409,0,25,0,0,0,0,0,8,15,0,0,2,0,10,12,200,0,12,58,5,0,10,217,0,1885,229,3,0,0,4,6,1622,0,102,2,0,2808,0,0,0,1,6,3,1,0,0,0,0,1,1,0,0,189,0,0,0,1,0,0,0,2,0,2,0,6,0,0,0,0,0,4,0,4,0,0,0,0,0,0,20,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,5,0,0,0,4,0,2,0,0,0,0,0,0,0,4,0,0,0,0,65,2,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,2,1,0,30,0,0,0,0,0,0,10215,10001,152,0,0,8,22,60,178,2511,393,0,0,0,0,1,0,1,0,0,0,2,2,0,2073,0,2,0,0,0,0,0,0,0,1,0,0,4,0,0,0,0,0,0,2,0,123,126,844,64,0,0,1101,0,2096,0,1,0,742,207,0,84,0,0,0,0,0,0,0,963,1,0,0,0,33,4,0,0,0,10,262,703,0,0,565,0,13,0,3,3,11940,0,0,198,0,0,1,16,0,0,0,0,2,0,0,0,0,0,0,0,0,0,110,0,0,6,28,0,0,0,0,0,0,0,0,0,0,0,21,1,0,0,0,0,0,34,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,112,1,1,1,0,111,0,0,0,0,49,153,466,0,38,0,0,0,0,0,0,1012,15,0,0,0,0,0,0,0,0,0,0,0,6,0,2,106,11,0,0,0,0,0,0,0,4,0,0,11,0,2,1141,185,5 +0,0,0,10,0,23,4,0,43,14,6,0,1,3,24,0,53,0,7,4,0,0,0,1,1,2,12,0,8,0,1,0,0,0,7,0,23,65,13,0,124,0,0,0,1,0,0,1,0,0,0,0,4,82,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1611,23,153,0,9,0,0,0,0,0,6,0,0,0,0,0,1,3,294,0,0,7,0,0,0,0,0,45,0,1,0,0,2,0,182,0,4,0,4,620,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,195,0,46,0,0,0,8,38,57,90,217,0,0,0,0,1,0,0,0,0,0,0,0,0,479,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,13,22,143,11,0,0,130,0,309,0,0,0,51,42,0,0,0,0,0,0,4,0,0,141,1,0,0,0,6,0,0,0,0,5,120,11,0,0,0,0,0,0,0,0,359,0,0,268,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,22,0,0,0,0,1,30,17,0,23,0,0,0,0,0,0,54,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,1,340,27,5 +0,0,0,14,0,49,71,0,207,54,60,0,1,18,69,0,63,0,7,6,0,0,0,11,2,4,15,0,12,0,1,0,0,0,28,0,49,227,27,0,392,0,0,0,1,0,0,2,0,0,0,0,6,214,0,0,0,0,0,1,0,0,2,1,0,58,0,0,2175,49,534,0,13,0,0,0,0,0,14,0,0,0,0,0,12,28,465,0,0,28,0,0,3,148,0,1365,265,4,0,0,2,0,965,0,91,0,4,2912,0,0,0,0,9,0,2,0,0,0,0,1,0,0,0,20,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,11,0,0,0,0,486,0,134,0,0,0,12,59,122,1185,282,0,0,0,0,1,0,0,0,0,0,0,0,0,1054,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,118,66,322,15,0,0,342,0,1326,0,0,0,246,50,0,0,0,0,0,0,0,0,0,496,1,0,0,0,19,0,0,0,0,6,156,307,0,0,683,0,0,0,0,3,609,0,0,559,0,0,1,0,1,0,0,0,2,0,7,0,9,0,0,0,0,0,43,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,10,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,68,1,1,1,0,62,0,0,0,0,1,77,230,0,32,0,0,0,0,0,0,448,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,602,126,5 +1,0,0,7,0,51,97,0,148,12,40,0,0,2,17,0,32,0,15,4,0,0,0,6,0,9,6,0,5,0,2,0,0,0,13,0,51,6,5,0,194,0,0,0,1,0,0,1,1,0,0,0,3,205,0,0,0,0,0,1,0,0,1,1,0,25,0,0,34009,51,375,0,5,0,0,0,0,0,38,0,0,0,0,0,8,16,221,0,0,13,0,0,3,99,0,876,175,7,1,0,2,0,532,0,15,0,0,17429,0,0,0,0,14,1,48,0,0,0,0,1,0,0,0,12,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,509,0,140,0,0,0,4,19,228,1119,234,0,0,0,0,1,0,3,0,0,0,0,0,0,1182,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,49,233,7,0,0,388,0,675,0,0,0,254,53,0,0,0,0,0,0,0,0,0,351,1,0,6,0,10,0,0,0,0,3,141,273,0,0,374,0,96,0,0,2,140,0,0,25,3,0,1,1,0,0,0,0,11,0,5,0,7,0,0,0,0,0,12,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,16,0,0,0,0,1,64,229,0,13,9,0,0,0,0,0,246,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,1,363,78,5 +0,0,0,4,0,33,7,0,20,6,3,0,0,0,11,0,18,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,6,0,33,12,0,0,38,0,0,0,1,0,0,3,2,0,0,0,0,137,0,0,0,0,0,1,0,0,0,0,0,10,0,0,3445,33,100,0,1,0,0,0,1,0,32,0,0,0,0,0,1,18,507,0,0,6,0,0,0,0,0,9,0,11,0,0,2,0,38,0,8,0,0,587,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,406,0,117,0,0,0,0,3,69,484,423,0,0,0,0,1,0,0,0,0,2,0,0,0,1235,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,9,11,202,4,0,0,289,0,485,0,0,0,166,12,0,0,0,0,0,0,0,0,0,66,1,0,6,0,2,0,0,0,0,0,116,124,0,0,0,0,0,0,0,2,182,0,0,1050,0,0,1,0,0,0,0,0,14,0,0,0,3,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,0,0,0,0,0,1,39,484,0,1,0,0,0,0,0,0,48,67,0,2,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,489,117,5 +0,0,0,5,0,18,85,0,120,14,41,0,0,0,19,0,23,0,6,2,0,0,0,1,0,1,3,0,3,0,2,0,0,0,8,0,18,6,4,0,199,0,1,0,1,0,0,2,0,0,0,0,2,127,0,0,0,0,0,1,0,0,2,0,0,25,0,0,1637,18,304,0,5,0,0,0,0,0,12,0,0,0,0,0,1,8,507,0,0,8,0,0,2,110,0,881,180,3,1,0,2,0,514,0,17,0,0,577,0,0,0,0,8,0,1,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,428,0,64,0,0,0,4,15,36,1041,134,0,0,0,0,1,0,0,0,0,0,0,0,0,697,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,20,141,5,0,0,247,0,508,0,0,0,180,14,0,0,0,0,0,0,0,0,0,294,1,0,0,0,3,0,0,0,0,3,120,239,0,0,409,0,0,0,0,3,265,0,0,748,0,0,1,0,1,0,0,0,2,0,2,0,7,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,362,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,16,0,0,0,0,1,26,105,0,9,0,0,1,0,0,0,254,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,2,341,69,5 +15,0,0,10,1,284,191,1,403,2,73,0,0,9,8,0,1215,0,9,2,0,0,0,8,0,10,0,0,6,0,1,0,0,1,216,42447,285,54,0,0,498,0,0,0,1,0,0,23,0,0,0,0,1,1032,0,0,0,0,0,1,0,0,0,28,0,4,0,0,149156,284,2074,0,4,0,0,0,0,0,171,0,0,0,0,3,9,62,36706,0,1,216,1,0,2,254,0,2451,335,40,0,0,4,1,2448,0,1,53,0,16787,0,0,0,0,16,13,0,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,184,0,15,0,2,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,45,0,1,0,0,0,0,0,0,0,0,0,1,0,14,0,0,0,0,0,9,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,12,12,12,0,0,0,25648,0,1049,0,0,0,2,5,1004,4948,25278,0,0,0,0,1,0,30,0,0,0,0,0,0,4893,0,0,0,0,0,0,0,0,0,0,0,0,23,15,179,0,0,0,0,1,0,242,25,1296,13,0,0,1732,0,1927,0,1,0,1366,35,0,0,0,0,0,4,65,0,0,1908,1,0,0,0,10,0,0,0,0,2,467,910,0,0,1131,0,0,0,0,0,9668,1,0,1842,36,0,1,1,0,0,0,0,63,0,0,0,3,0,0,0,0,0,3,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,328,1,1,1,0,9,0,0,0,0,9,501,853,0,5,12,0,0,0,0,0,713,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,20,7679,222,5 +12,0,0,18,2,117,263,2,571,110,115,1,3,10,152,0,2083,0,9,13,0,1,1,9,20,30,99,0,59,0,7,1,0,2,38,8733,119,557,117,0,1287,0,0,0,1,0,0,14,4,0,0,0,35,792,0,0,0,0,0,1,1,0,6,75,0,138,0,0,41196,117,3555,0,62,0,0,0,0,0,88,3,0,0,0,2,11,82,5791,0,2,38,2,0,5,362,0,3463,360,30,1,0,4,2,4607,0,105,42,8,10824,0,0,0,0,93,12,11,0,0,0,0,1,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,11,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,78,0,1,0,0,0,0,0,0,0,0,0,1,13,11,0,0,0,0,12,0,0,0,1,26,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,252,12,12,12,0,0,0,2437,0,296,0,0,0,71,620,797,5601,2429,0,0,0,0,1,0,5,0,0,0,0,0,0,5104,10,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,1,0,220,225,1109,27,0,0,1254,0,2533,0,1,0,778,2316,0,0,0,0,0,0,0,0,0,3207,1,0,12,0,44,0,0,0,0,33,270,1034,0,0,956,0,22,0,0,21,8663,1,0,1390,16,0,1,1,0,0,0,0,46,0,0,0,15,0,0,0,0,0,110,0,0,2,37,8,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,0,16,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,238,1,1,1,0,371,0,0,0,0,17,157,681,0,182,14,0,0,0,0,0,1182,6,0,0,0,0,0,0,0,0,0,0,0,4,0,1,120,0,0,0,0,0,0,0,0,0,0,0,3,0,8,3404,1015,5 +0,0,0,9,0,42,48,0,101,13,35,0,0,0,40,0,51,0,7,3,0,0,0,1,1,3,18,0,8,0,1,3,0,0,29,0,42,6,11,0,154,0,0,0,1,0,0,2,0,0,0,0,6,317,0,0,0,0,0,1,0,0,2,0,0,24,0,0,2090,42,306,0,12,0,0,0,0,0,11,0,0,0,0,0,1,4,216,0,0,29,0,0,2,81,0,665,150,4,0,0,2,0,530,0,15,0,0,1727,0,0,0,0,93,0,3,0,0,0,0,1,0,0,0,19,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,441,0,137,0,0,0,12,53,67,2051,210,0,0,0,0,1,0,0,0,0,0,0,0,0,1714,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,8,22,333,24,0,0,287,0,660,0,0,0,215,205,0,0,0,0,0,0,2,0,0,282,1,0,0,0,5,0,0,0,0,1,129,207,0,0,317,0,0,0,0,4,184,0,0,986,0,0,1,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,12,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,16,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,65,0,0,0,0,1,71,340,0,33,0,0,0,0,0,0,235,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1597,103,5 +1,0,0,28,0,49,39,0,106,16,29,0,0,2,25,0,48,0,7,6,0,0,0,5,4,13,15,0,12,0,1,0,0,0,21,0,49,6,14,0,236,0,0,0,1,0,0,1,0,0,0,0,7,245,0,1,0,0,0,1,0,0,0,1,0,35,0,0,29617,49,270,0,12,0,0,0,0,0,9,0,0,0,0,0,9,16,276,0,0,21,0,0,4,74,0,742,120,1,0,0,2,0,500,0,22,0,0,5554,0,0,0,0,9,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,16,10,10,10,0,0,0,295,0,110,0,0,0,11,49,210,22903,266,0,0,0,0,1,0,3,0,0,0,0,0,0,1204,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,43,281,25,0,0,281,0,9398,0,0,0,150,26,0,4,0,0,0,0,0,0,0,256,1,0,0,0,15,0,0,0,0,4,143,165,0,0,283,1,0,0,0,0,460,0,0,588,3,0,1,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,16,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,3,1,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,22,0,0,0,0,1,70,117,0,32,9,0,0,0,0,0,196,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,24,1,0,0,0,0,0,0,0,0,0,0,0,0,1,420,63,5 +0,0,0,0,0,10,2,0,3,0,1,0,0,0,2,0,9,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,19,10,19,0,1,0,0,0,0,0,0,0,0,0,0,0,2,2,6,0,0,1,0,0,0,0,0,7,0,0,0,0,2,0,8,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,18,0,0,0,0,3,26,6,23,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,35,0,0,0,38,0,56,0,0,0,5,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,3,0,0,0,0,0,92,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,1,0,1,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,3,5 +5,0,0,14,0,58,124,0,245,65,70,0,1,5,84,0,77,0,7,6,0,0,0,4,1,5,18,0,12,0,3,0,0,0,35,0,58,232,32,0,553,0,0,0,1,0,0,4,0,0,0,0,8,247,0,0,0,0,0,1,0,0,3,0,0,81,0,0,3196,58,645,0,15,0,0,0,0,0,13,0,0,0,0,0,4,10,342,0,0,35,0,0,6,190,0,1572,270,4,0,0,2,0,1199,0,60,0,6,2277,0,0,0,0,19,0,4,0,0,0,0,1,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,376,0,182,0,0,0,16,93,112,1601,347,0,0,0,0,1,0,1,0,0,0,0,0,0,1528,0,0,0,0,0,0,0,0,0,12,0,0,4,0,2,0,0,0,0,0,4,26,82,485,15,0,0,447,0,1243,0,0,0,328,108,0,0,0,0,0,0,4,0,0,613,1,0,0,0,11,0,0,0,0,9,190,414,0,0,620,0,2,0,1,10,645,0,0,235,0,0,1,0,0,0,0,0,5,0,2,0,9,0,0,0,0,0,64,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,70,1,1,1,0,90,0,0,0,0,1,93,195,0,38,0,0,0,0,0,0,535,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,71,0,0,0,0,0,0,0,0,0,0,0,0,0,3,671,160,5 +4,0,0,7,1,46,36,1,87,3,12,0,0,9,9,0,1028,0,9,2,0,0,0,7,0,10,0,0,6,0,1,0,0,1,5,14644,47,54,0,0,92,0,0,0,1,0,0,5,0,0,0,0,1,541,0,0,0,0,0,1,0,0,0,8,0,4,0,0,85872,46,1185,0,4,0,0,0,0,0,37,0,0,0,0,0,8,36,14464,0,1,5,1,0,2,7,0,429,45,10,1,0,4,1,1114,0,1,26,0,3855,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,11373,0,91,0,0,0,2,5,452,1018,11364,0,0,0,0,1,0,10,0,0,0,0,0,0,859,0,0,0,0,0,0,0,0,0,0,0,0,5,5,4,0,0,0,0,1,0,224,29,452,8,0,0,518,0,686,0,1,0,224,10,0,0,0,0,0,0,0,0,0,1190,1,0,0,0,9,0,0,0,0,2,179,84,0,0,47,0,0,0,0,0,4018,1,0,645,7,0,1,1,0,0,0,0,16,0,0,0,2,0,0,0,0,0,3,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,63,1,1,1,0,9,0,0,0,0,9,52,208,0,5,12,0,0,0,0,0,144,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,4,1713,89,5 +0,0,0,12,0,36,24,0,115,22,16,0,1,3,52,0,74,0,7,6,0,0,0,1,1,5,18,0,14,0,1,0,0,0,18,0,36,95,25,0,249,0,0,0,1,0,0,2,0,0,0,0,6,183,0,0,0,0,0,1,0,0,0,0,0,30,0,0,2195,36,288,0,15,0,0,0,0,0,9,0,0,0,0,0,1,4,369,0,0,18,0,0,2,38,0,373,50,4,0,0,2,0,442,0,17,0,4,1427,0,0,0,0,9,0,2,0,0,0,0,1,0,0,0,14,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,328,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,2,2,2,0,1,0,270,0,53,0,0,0,13,62,71,488,280,0,0,0,0,1,0,0,0,0,0,0,0,0,1086,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,20,57,258,13,0,0,258,0,1895,0,0,0,167,74,0,0,0,0,0,0,0,0,0,292,1,0,0,0,8,0,0,0,0,36,144,127,0,0,121,0,0,0,0,0,1301,0,0,81,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,38,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,58,0,0,0,0,1,54,215,0,38,0,0,0,0,0,0,169,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,510,392,5 +4,0,0,29,0,33,10,0,90,57,3,0,0,0,98,0,114,0,11,6,0,0,0,1,5,9,42,0,22,0,5,0,0,0,11,4,33,6,163,0,246,0,0,0,1,0,0,2,2,0,0,0,14,277,0,0,0,0,0,1,0,0,0,28,0,65,0,0,4176,33,408,0,27,0,0,0,0,0,19,0,0,0,1,0,1,4,188,0,0,11,0,0,0,0,0,127,0,7,0,0,2,0,521,0,62,0,0,5217,0,0,0,0,28,2,0,0,0,0,0,1,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0,0,0,194,0,159,0,0,0,28,515,71,631,191,0,0,0,0,1,0,0,0,0,0,0,0,0,1705,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,191,704,50,0,0,332,0,434,0,0,0,156,170,0,0,0,0,0,0,0,0,0,326,1,0,5,0,12,0,0,0,0,15,192,104,0,0,0,0,1,0,0,0,1367,0,0,38,0,0,1,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,57,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,163,0,0,0,0,1,44,466,0,78,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,0,0,0,0,0,0,0,0,0,0,0,0,0,2,599,391,5 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,83,0,0,0,0,0,1,0,0,0,0,0,1,0,0,8507,9,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,2004,0,0,1,0,0,0,0,0,7,0,1,0,0,2,0,7,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1157,0,102,0,0,0,0,3,23,5,1201,0,0,0,0,1,0,0,0,0,0,0,0,0,2950,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,62,2,0,0,88,0,167,0,0,0,35,4,0,0,0,0,0,0,184,0,0,34,1,0,0,0,2,0,0,0,0,0,91,25,0,0,0,0,0,0,0,1,520,0,0,2597,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,182,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,177,0,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,101,0,0,0,0,0,0,0,1,1144,8,5 +3,0,0,14,0,53,83,0,365,88,134,1,1,4,235,3,69,0,7,10,0,0,0,5,1,8,18,0,18,0,1,0,0,0,21,0,53,472,283,0,1181,0,0,0,1,0,0,14,0,0,0,0,9,555,0,0,0,0,0,1,0,0,2,1,0,112,0,0,12778,53,1020,0,19,0,0,0,0,0,58,0,0,0,0,0,6,27,1292,0,0,21,0,0,4,316,0,2619,580,21,0,0,2,0,1920,0,94,0,8,5388,0,0,0,0,19,1,19,0,0,0,0,1,0,0,0,36,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,1,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,1286,0,272,0,0,0,18,450,123,2566,1138,0,0,0,0,1,0,0,0,0,0,0,0,0,3966,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,21,104,775,17,0,0,950,0,2058,0,0,0,816,182,0,0,0,0,0,0,7,0,0,902,1,0,0,0,16,0,0,0,0,9,461,968,0,0,2096,0,0,0,0,3,1751,0,0,1152,0,0,1,0,0,0,0,0,36,0,5,0,12,0,0,0,0,0,218,0,0,0,19,5,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,0,76,1,1,1,0,810,0,0,0,0,1,74,641,0,45,0,0,0,0,0,0,972,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,94,0,0,0,0,0,0,0,0,0,0,0,0,0,13,2033,282,5 +0,0,0,25,3,14,4,3,43,4,7,0,0,0,11,0,216,0,6,7,0,6,0,1,0,1,0,0,2,0,1,0,0,3,3,247,17,64,5,0,20,0,0,0,1,0,0,1,1,0,0,0,0,2296,0,0,0,0,0,1,0,0,0,0,0,3,0,0,81928,14,440,0,3,0,0,0,0,0,9,9,0,0,0,0,1,6,9229,0,3,3,3,0,0,0,0,20,0,4,0,0,2,3,401,0,2,0,1,33425,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,27,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,1,0,4590,0,38,0,0,0,1,4,33,1675,4602,0,0,0,0,1,0,2,0,0,1,0,0,0,947,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,50,9,339,41,0,0,286,0,1270,0,0,0,48,31,0,0,0,0,0,0,0,0,0,287,1,0,2,0,14,0,0,0,0,8,95,3,0,0,0,0,0,0,0,0,246773,0,0,506,0,0,1,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,1,0,0,0,0,25,20,3,0,4,0,0,0,0,0,0,345,3,0,0,0,0,0,0,0,0,0,0,0,3,2,1,7,0,0,0,0,0,0,0,2,0,0,0,5,0,2,5168,38,5 +11,0,0,24,1,97,57,1,608,34,253,0,0,5,66,1,891,0,9,14,0,0,0,7,0,17,38,0,27,0,9,1,0,1,42,898,98,349,49,0,762,0,2,0,1,0,0,13,0,0,0,0,20,1140,0,0,0,0,0,1,0,1,0,6,0,53,0,0,13652,97,1999,0,34,0,0,0,0,0,65,0,0,0,0,0,10,40,2067,0,1,42,1,0,4,519,0,4411,1230,23,2,0,4,1,3092,0,41,0,3,8682,0,0,0,0,32,8,13,0,0,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,12,0,0,0,0,1,0,0,0,1,14,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,12,12,12,0,0,0,1179,0,270,0,0,0,38,203,334,2230,1139,0,0,0,0,1,0,5,0,0,0,0,0,0,2013,0,0,0,0,0,0,0,0,0,2,0,0,12,1,2,0,0,0,0,1,1,169,68,691,28,0,0,979,0,2809,0,1,0,576,163,0,0,0,0,0,0,4,0,0,1890,1,0,0,0,21,0,0,0,0,14,219,1173,0,0,3716,0,2,0,10,0,3354,1,0,1085,5,0,1,1,1,0,0,0,33,0,0,0,11,0,0,0,0,0,47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,2,0,0,0,5,195,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,120,1,1,1,0,121,0,0,0,0,9,140,1446,0,80,12,0,0,0,0,0,1016,3,0,0,0,0,0,0,0,0,0,1,0,2,0,1,40,0,0,0,0,0,0,0,0,0,0,0,1,0,10,1437,369,5 +1,0,0,15,0,77,25,0,340,18,23,0,1,11,21,0,1217,0,7,5,0,0,0,9,1,12,9,0,16,0,1,0,0,0,12,2383,77,93,237,0,125,0,2,0,1,0,0,5,1,0,0,0,4,352,0,0,0,0,0,1,0,0,0,0,0,11,0,0,16738,77,1480,0,14,0,0,0,0,0,57,0,0,0,0,0,10,94,3189,0,0,12,0,0,1,9,0,396,45,18,1,0,2,0,1473,0,17,41,5,7154,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,12,0,12,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,12,12,12,35,0,0,1303,0,119,0,0,0,11,36,613,11466,1332,0,0,0,0,1,1,5,0,0,0,0,0,0,1323,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,809,63,466,19,0,0,502,0,571,0,0,0,262,40,0,0,0,0,0,0,0,0,0,1645,1,0,8,0,15,0,0,0,0,5,204,86,0,0,116,0,0,0,0,0,6056,1,0,1594,16,0,1,1,1,0,0,0,25,0,0,0,3,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,16,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,42,0,0,0,0,1,89,433,0,26,12,0,0,0,0,0,129,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2780,78,5 +0,0,0,3,0,19,2,0,23,1,3,0,0,0,4,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,9,0,19,6,0,0,24,0,0,0,1,0,0,3,0,0,0,0,0,218,0,0,0,0,0,1,0,0,0,0,0,4,0,0,3845,19,55,0,1,0,0,0,0,0,13,0,0,0,0,0,1,5,41,0,0,9,0,0,0,0,0,8,0,6,0,0,2,0,26,0,2,0,0,396,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,57,0,41,0,0,0,0,3,36,527,65,0,0,0,0,1,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,8,5,148,3,0,0,220,0,978,0,0,0,146,12,0,0,0,0,0,0,0,0,0,52,1,0,0,0,2,0,0,0,0,0,102,105,0,0,0,0,0,0,0,1,27,0,0,24,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,0,0,0,0,0,1,28,380,0,1,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,40,5 +3,0,0,10,1,56,77,1,168,46,26,1,0,0,64,0,145,0,17,4,0,0,0,1,6,7,35,0,23,0,7,1,0,1,30,0,57,124,30,0,329,0,0,0,1,0,0,1,0,0,0,0,15,278,0,0,0,0,0,1,0,0,0,21,0,70,0,0,2723,56,522,0,31,0,0,0,0,0,14,0,0,0,0,0,2,4,164,0,1,30,1,0,4,93,0,864,90,2,0,0,4,1,838,0,58,0,0,2304,0,1,0,0,26,0,1,0,0,0,1,1,0,0,0,14,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,1,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,191,0,106,0,0,0,30,135,109,4369,214,0,0,0,0,1,0,0,0,0,0,0,0,0,1147,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,135,79,608,12,0,0,472,0,2351,0,1,0,238,193,0,3,0,0,0,0,0,0,0,498,1,0,0,0,11,0,0,0,0,10,174,206,0,0,268,0,0,0,0,0,718,0,0,275,0,0,1,37,0,0,0,0,2,0,0,0,5,0,0,0,0,0,48,0,0,5,10,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,12,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,77,1,1,1,0,83,0,0,0,0,9,87,150,0,73,0,0,0,0,0,0,373,4,0,0,0,0,0,0,0,0,0,0,0,1,0,2,50,37,0,0,0,0,0,0,0,0,0,0,1,0,2,633,211,5 +1,0,0,32,0,58,36,0,49,11,37,0,0,2,44,0,61,0,7,7,0,0,0,6,11,9,12,0,28,0,1,3,0,0,17,0,58,6,33,0,352,0,0,0,1,0,0,2,0,0,0,0,19,263,0,0,0,0,0,1,0,0,0,2,0,22,0,0,14025,58,267,0,30,0,0,0,0,0,12,0,0,0,0,0,9,17,1513,0,0,17,0,0,1,26,0,407,50,4,0,0,2,0,345,0,15,0,0,2270,0,0,0,0,11,1,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,1,13,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,18,10,10,10,0,0,0,1387,0,82,0,0,0,36,114,256,498,1380,0,0,0,0,1,0,4,0,0,0,0,0,0,4489,0,0,1,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,54,497,36,0,0,472,0,1320,0,0,0,291,86,0,0,0,0,0,0,0,0,0,236,1,0,0,0,24,0,0,0,0,7,221,199,0,0,127,0,0,0,0,1,1361,0,0,3399,3,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,9,0,0,0,0,0,3,24,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,89,1,1,1,0,115,0,0,0,0,1,75,497,0,44,9,0,0,0,1,0,224,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,0,0,0,0,0,0,0,23,0,0,0,0,0,0,1253,262,5 +0,0,0,0,0,15,7,0,23,7,1,0,0,0,9,0,51,0,7,1,0,0,0,1,0,0,21,0,6,0,8,0,0,0,2,0,15,6,0,0,39,0,0,0,1,0,0,22,1,0,0,0,7,97,0,0,0,0,0,1,0,0,0,0,0,7,0,0,7423,15,234,0,14,0,0,0,0,0,65,0,0,0,0,0,1,35,1474,0,0,2,0,0,0,0,0,75,0,42,0,0,2,0,171,0,7,0,0,720,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,1029,0,262,0,0,0,14,38,44,61,1016,0,0,0,0,1,0,0,0,0,0,0,0,0,2321,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,8,10,206,0,0,0,236,0,199,0,0,0,158,17,0,0,0,0,0,0,2,0,0,98,1,0,7,0,2,0,0,0,0,8,97,118,0,0,0,0,0,0,0,0,478,0,0,1694,0,0,1,0,0,0,0,0,47,0,0,0,12,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,13,0,0,0,0,1,17,338,0,35,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,14,1130,124,5 +0,0,0,13,0,60,99,0,218,33,57,0,1,6,62,0,62,0,7,9,0,0,0,7,1,14,15,0,15,0,1,0,0,0,23,0,60,252,25,0,440,0,0,0,1,0,0,6,1,0,0,0,8,342,0,0,0,0,0,1,0,0,2,1,0,53,0,0,5811,60,578,0,14,0,0,0,1,0,39,0,0,0,0,0,9,29,515,0,0,23,0,0,5,164,0,1440,255,13,0,0,2,0,974,0,38,0,7,2559,0,0,0,0,14,0,8,0,0,0,0,1,0,0,0,12,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,23,0,1,0,0,0,0,0,0,0,0,0,1,4,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,10,10,10,0,0,0,459,0,158,0,0,0,14,59,246,1187,433,0,0,0,0,1,1,4,0,0,0,0,0,0,1513,0,0,0,0,3,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,38,66,383,15,0,0,553,0,1355,0,0,0,404,75,0,0,0,0,0,0,0,0,0,512,1,0,4,0,17,0,0,0,0,8,174,468,0,0,623,0,0,0,0,3,650,0,0,349,3,0,1,1,0,0,0,0,20,0,1,0,13,0,0,0,0,0,35,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,3,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,77,1,1,1,0,45,0,0,0,0,8,83,575,0,36,9,0,0,0,0,0,435,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,41,0,0,0,0,0,0,0,0,0,0,0,0,0,7,703,233,5 +15,0,0,24,30,98,147,114,565,76,115,1,0,0,120,0,484,0,130,63,0,28,28,8,48,17,39,0,83,0,5,0,0,30,54,0,128,421,88,0,724,0,0,0,1,0,0,8,0,0,0,0,66,557,0,0,0,0,0,1,0,0,0,2,0,105,0,0,24505,98,4510,0,91,0,0,0,0,0,24,84,0,0,0,0,9,23,2569,0,114,54,30,0,8,220,0,2476,350,7,2,0,6,30,1809,0,88,0,0,15949,0,0,0,0,141,4,5,0,1,0,0,1,0,0,0,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,6,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,38,0,0,0,0,0,0,0,0,0,20,0,0,0,0,31,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,1,0,98,0,0,0,0,0,0,2139,0,233,0,0,0,118,325,254,5237,2088,0,0,0,0,1,0,1,0,0,0,1,1,0,3485,0,0,0,0,0,0,0,0,0,72,0,0,21,0,0,0,0,0,0,7,0,262,144,2763,73,0,0,1851,0,5104,0,2,0,744,705,0,0,0,0,0,0,0,0,0,1562,1,0,0,0,175,0,0,0,0,58,306,483,0,0,1030,0,0,0,0,2,26862,0,0,1144,0,0,1,0,0,0,0,0,9,0,0,0,13,0,0,0,0,0,70,2,0,6,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,10,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,112,1,1,1,0,211,0,0,0,0,253,183,317,0,144,0,0,0,0,0,0,723,39,0,0,0,0,0,0,0,0,0,0,0,30,0,1,86,0,0,0,0,0,0,0,0,0,0,0,43,0,5,2977,621,5 +0,0,0,3,0,13,2,0,12,0,2,0,0,0,2,0,18,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,13,6,0,0,6,0,0,0,1,0,0,1,1,0,0,0,0,26,0,0,0,0,0,1,0,0,0,0,0,2,0,0,101,13,37,0,1,0,0,0,0,0,4,0,0,0,0,0,1,4,33,0,0,0,0,0,0,0,0,6,0,8,1,0,2,0,8,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,39,0,38,0,0,0,0,3,31,5,51,0,0,0,0,1,0,0,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,3,87,3,0,0,98,0,2659,0,0,0,20,4,0,0,0,0,0,0,0,0,0,42,1,0,6,0,2,0,0,0,0,0,95,7,0,0,0,0,0,0,0,0,34,0,0,15,0,0,1,0,0,0,0,0,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,13,16,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,78,16,5 +0,0,0,6,0,25,12,0,71,15,25,0,0,0,22,0,27,0,7,3,0,0,0,2,2,1,3,0,7,0,2,0,0,0,7,0,25,26,8,0,155,0,0,0,1,0,0,3,0,0,0,0,4,105,0,0,0,0,0,1,0,0,0,8,0,30,0,0,895,25,188,0,9,0,0,0,0,0,15,0,0,0,0,0,3,9,116,0,0,7,0,0,2,55,0,498,65,5,0,0,2,0,332,0,19,0,0,545,0,0,0,0,1,0,0,0,6,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,142,0,81,0,0,0,8,23,58,543,136,0,0,0,0,1,0,4,0,0,0,0,0,0,433,0,0,0,0,0,0,0,0,0,2,0,0,3,0,0,0,0,0,0,0,0,8,22,193,6,0,0,225,0,357,0,0,0,100,23,0,0,0,0,0,0,0,0,0,164,1,0,0,0,7,0,0,0,0,4,149,176,0,0,177,0,0,0,0,0,156,0,0,116,0,0,1,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,19,0,0,0,0,1,32,218,0,13,0,0,0,0,0,0,184,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,5,209,61,5 +0,0,0,3,0,10,3,0,37,0,18,0,0,0,2,0,15,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,41,0,0,0,1,0,0,2,0,0,0,0,0,62,0,0,0,0,0,1,0,0,0,0,0,3,0,0,473,10,76,0,1,0,0,0,0,0,5,0,0,0,0,0,1,4,24,0,0,1,0,0,1,31,0,265,75,1,0,0,2,0,122,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,51,0,0,0,0,3,26,108,49,0,0,0,0,1,0,0,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,79,3,0,0,132,0,225,0,0,0,79,6,0,12,0,0,0,0,0,0,0,82,1,0,0,0,2,0,0,0,0,0,93,116,0,0,163,0,0,0,0,0,25,0,0,13,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,172,0,1,0,0,0,0,0,0,69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,99,15,5 +0,0,0,4,0,27,2,0,20,17,3,0,0,0,25,0,74,0,7,2,0,0,0,1,2,5,9,0,6,0,1,0,0,0,12,0,27,211,28,0,112,0,0,0,1,0,0,7,0,0,0,0,5,163,0,0,0,0,0,1,0,0,0,0,0,26,0,0,3897,27,171,0,9,0,0,0,0,0,25,0,0,0,0,0,1,10,318,0,0,12,0,0,0,0,0,39,0,12,0,0,2,0,139,0,17,0,0,1181,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,3,1,1,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,362,0,108,0,0,0,8,60,47,171,386,0,0,0,0,1,0,0,0,0,0,0,0,0,1711,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,14,35,259,4,0,0,318,0,1024,0,0,0,246,60,0,0,0,0,0,0,0,0,0,131,1,0,0,0,5,0,0,0,0,3,147,120,0,0,0,0,422,0,0,0,562,0,0,819,0,0,1,0,1,0,0,0,15,0,0,0,1,0,0,0,0,0,12,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,104,0,0,0,0,1,39,305,0,21,0,0,0,0,0,0,237,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,4,444,109,5 +0,0,0,3,0,9,2,0,3,4,3,0,0,0,7,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,7,0,0,57,9,23,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,16,0,5,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,18,0,0,0,0,3,23,4,24,0,0,0,0,1,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,51,3,0,0,42,0,78,0,0,0,10,2,0,0,0,0,0,0,0,0,0,29,0,0,0,0,2,0,0,0,0,0,94,5,0,0,0,0,0,0,0,1,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,10,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,9,5 +1,0,0,14,1,46,64,1,151,36,31,0,1,3,54,0,118,0,9,8,0,0,0,1,25,6,3,0,39,0,2,0,0,1,24,0,47,264,42,0,252,0,0,0,1,0,0,4,0,0,0,0,31,303,1,0,0,0,0,1,0,0,0,0,0,38,0,0,11545,46,493,0,41,0,0,0,0,0,20,0,0,0,0,0,3,9,1485,0,1,24,1,0,4,72,0,931,100,8,0,0,4,1,561,0,29,0,5,2687,0,1,0,0,16,0,5,0,0,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,0,0,1243,0,133,0,0,0,62,133,106,868,1203,0,0,0,0,1,0,0,0,0,0,0,0,0,2905,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,128,64,488,16,0,0,574,0,2145,0,1,0,352,57,0,0,0,0,0,0,0,0,0,431,1,0,0,0,34,0,0,0,0,31,193,277,0,0,268,0,0,0,0,0,1258,0,0,2639,0,0,1,0,1,0,0,0,7,0,0,0,4,0,0,0,0,0,38,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,62,1,1,1,0,65,0,0,0,0,9,71,464,0,50,0,0,0,0,0,0,307,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,40,0,0,0,0,0,0,0,0,0,0,0,1,0,3,1216,196,5 +0,0,0,0,0,25,4,0,19,0,2,0,0,0,4,0,39,0,27,5,0,0,0,7,0,2,9,0,6,0,1,0,0,0,11,0,25,6,10,0,40,0,0,0,1,0,0,3,0,0,0,0,3,109,0,0,0,0,0,1,0,0,0,0,0,3,0,0,3701,25,133,0,7,0,0,0,0,0,14,0,0,0,0,0,8,13,394,0,0,11,0,0,0,4,0,73,0,6,0,0,2,0,105,0,0,0,0,778,0,0,0,0,3,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,406,0,133,0,0,0,6,60,74,680,444,0,0,0,0,1,0,0,0,0,0,0,0,0,1237,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,158,0,0,0,179,0,421,0,0,0,108,27,0,0,0,0,0,0,5,0,0,95,1,0,0,0,12,0,0,0,0,2,107,72,0,0,0,0,0,0,0,1,351,0,0,723,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,32,0,0,0,0,1,36,192,0,18,0,0,0,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,429,149,5 +1,0,0,11,0,17,2,0,15,13,4,0,0,0,17,0,32,0,6,4,0,0,0,3,2,1,6,0,4,0,1,0,0,0,6,0,17,6,6,0,49,0,0,0,1,0,0,2,0,0,0,0,2,106,0,0,0,0,0,1,1,0,0,0,0,17,0,0,475,17,84,0,5,0,0,0,0,0,7,0,0,0,0,0,3,9,58,0,0,6,0,0,0,0,0,38,0,4,0,0,2,0,84,0,14,0,0,319,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,71,0,53,0,0,0,4,22,40,54,73,0,0,0,0,1,0,0,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,18,122,22,0,0,123,0,1411,0,0,0,52,22,0,0,0,0,0,0,0,0,0,76,1,0,0,0,9,0,0,0,0,3,98,20,0,0,0,0,0,0,0,0,116,0,0,71,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,6,0,0,0,0,1,23,91,0,12,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,141,43,5 +0,0,0,3,0,11,2,0,8,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,11,6,0,0,8,0,1,0,1,0,0,1,0,0,0,0,0,39,0,0,0,0,0,1,0,0,0,0,0,3,0,0,963,11,32,0,1,0,0,0,0,0,6,0,0,0,0,0,1,4,464,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,9,0,1,0,0,80,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,42,0,23,0,0,0,0,3,28,5,54,0,0,0,0,1,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,65,3,0,0,107,0,134,0,0,0,48,2,0,0,0,0,0,0,0,0,0,36,1,0,0,0,2,0,0,0,0,0,91,40,0,0,0,0,0,0,0,0,208,0,0,740,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,176,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,229,6,5 +1,0,0,12,1,47,153,1,97,2,17,0,0,9,7,0,907,0,9,3,0,0,0,8,0,11,0,0,9,0,1,0,0,1,9,10232,48,54,2,0,108,0,0,0,1,0,0,2,0,0,0,0,2,1031,0,0,0,0,0,1,0,0,0,2,0,11,0,0,153948,47,1455,0,6,0,0,0,0,0,220,0,0,0,0,0,9,39,26328,0,1,9,1,0,3,22,0,486,60,4,0,0,4,1,1225,0,1,32,0,5926,0,0,0,0,6,1,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,20988,0,55,0,0,0,4,8,642,1789,20965,0,0,0,0,1,0,5,0,0,0,0,0,0,838,1,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,1,0,217,32,515,24,0,0,823,0,678,0,1,0,533,24,0,0,0,0,0,0,0,0,0,1199,1,0,0,0,11,0,0,0,0,2,216,154,0,0,98,0,0,0,0,0,5142,1,0,612,109,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,109,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,55,1,1,1,0,12,0,0,0,0,9,57,411,0,7,14,0,1,0,0,0,163,2,0,0,0,0,0,0,0,0,0,0,0,4,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2678,190,5 +7,0,0,8,0,37,6,0,70,22,10,0,0,4,29,0,45,0,7,2,0,0,0,4,1,0,9,0,10,0,5,0,0,0,11,0,37,138,10,0,138,0,0,0,1,0,0,13,0,0,0,0,6,247,0,3,0,0,0,1,0,0,0,0,0,34,0,0,7746,37,268,0,15,0,0,0,0,0,53,0,0,0,0,0,4,20,690,0,0,11,0,0,1,23,0,354,30,23,1,0,2,0,322,0,25,0,0,1736,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,19,7,0,1,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,5,0,0,0,0,26,0,12,0,0,0,0,0,0,0,0,0,16,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,693,0,216,0,0,0,12,34,95,374,673,0,0,0,0,1,0,0,0,0,0,0,0,0,2190,0,0,0,0,0,0,0,0,0,0,0,0,13,0,10,0,0,0,0,0,2,68,28,279,10,0,0,558,0,1397,0,0,0,439,20,0,0,0,0,0,0,6,0,0,171,1,0,0,0,7,0,0,0,0,7,123,416,0,0,36,0,0,0,0,1,672,0,0,1438,0,0,1,0,1,0,0,0,28,0,0,0,4,0,0,0,0,0,22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,22,0,0,0,0,1,48,1185,0,24,0,0,0,0,0,0,168,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,26,0,0,0,0,0,0,0,0,0,0,0,0,0,7,850,328,5 +0,0,0,8,0,48,17,0,46,8,16,0,0,6,15,0,711,0,7,1,0,0,0,9,0,10,9,0,19,0,1,3,0,0,10,898,48,9,0,0,72,0,3,0,1,0,0,4,0,0,0,0,4,282,0,0,0,0,0,1,0,0,0,0,0,15,0,0,28236,48,878,0,20,0,0,0,0,0,41,0,0,0,0,0,9,73,4270,0,0,10,0,0,0,0,0,290,20,6,0,0,2,0,841,0,11,42,0,2086,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,2164,0,76,0,0,0,16,28,453,844,2025,0,0,0,0,1,0,4,0,0,0,0,0,0,5917,0,0,0,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,1,0,84,27,269,8,0,0,345,0,695,0,0,0,185,40,0,0,0,0,0,0,0,0,0,818,1,0,0,0,10,0,0,0,0,5,135,91,0,0,67,0,2,0,0,1,3459,1,0,5428,15,0,1,1,1,0,0,0,7,0,0,0,2,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,2,0,0,0,15,364,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,55,1,1,1,0,49,0,0,0,0,1,58,318,0,30,12,0,1,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2631,81,5 +0,0,0,3,0,14,2,0,7,0,3,0,0,0,6,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,14,6,0,0,18,0,0,0,1,0,0,2,0,0,0,0,0,75,0,0,0,0,0,1,0,0,0,0,0,6,0,0,491,14,40,0,1,0,0,0,0,0,9,0,0,0,0,0,1,5,52,0,0,5,0,0,0,0,0,9,0,3,0,0,2,0,14,0,4,0,0,217,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,57,0,41,0,0,0,0,3,29,6,70,0,0,0,0,1,0,0,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,93,3,0,0,141,0,266,0,0,0,80,5,0,0,0,0,0,0,0,0,0,38,1,0,0,0,2,0,0,0,0,0,102,57,0,0,0,0,0,0,0,0,39,0,0,56,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,19,174,0,1,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,89,41,5 +5,0,0,15,0,52,23,0,118,38,23,0,1,3,62,0,93,0,31,7,0,0,0,4,3,6,30,0,17,0,1,3,0,0,22,0,52,117,23,0,303,0,0,0,1,0,0,4,0,0,0,0,10,668,0,0,0,0,0,1,0,0,0,0,0,48,0,0,20602,52,413,0,21,0,0,0,0,0,16,0,0,0,0,0,6,12,1541,0,0,22,0,0,4,51,0,525,80,7,0,0,2,0,623,0,32,0,4,4614,0,1,2,0,14,0,2,0,0,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,1583,0,144,0,0,0,20,94,136,514,1612,0,0,0,0,0,0,0,0,0,0,0,0,0,5446,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,13,52,716,16,0,0,327,0,974,0,0,0,198,333,0,0,0,0,0,0,0,0,0,354,1,0,0,0,14,0,0,0,0,11,149,175,0,0,188,0,2,0,0,0,1863,0,0,5795,0,0,1,0,0,0,0,0,7,0,0,0,7,0,0,0,0,0,37,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,95,1,1,1,0,70,0,0,0,0,1,74,338,0,57,0,0,0,0,0,0,243,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,42,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1864,156,5 +0,0,0,0,0,8,2,0,7,0,1,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,214,8,30,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,37,0,0,0,0,0,0,0,0,7,0,2,0,0,2,0,6,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,37,0,17,0,0,0,0,3,22,13,49,0,0,0,0,1,0,0,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,57,0,0,0,66,0,85,0,0,0,14,2,0,0,0,0,0,0,0,0,0,32,1,0,0,0,2,0,0,0,0,0,90,7,0,0,0,0,0,0,0,0,37,0,0,52,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,59,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,52,5,5 +0,0,0,1,0,10,2,0,2,0,1,2,0,0,3,0,10,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,14,0,0,0,1,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,45,10,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,14,0,0,0,0,70,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,20,0,0,0,0,3,25,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,43,2,0,0,53,0,65,0,0,0,18,2,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,94,14,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,36,0,1,0,0,0,0,0,0,16,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,4,5 +0,0,0,0,0,8,2,0,17,0,1,0,0,0,2,0,22,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,1,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,0,0,0,70,8,42,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,16,0,0,0,0,0,0,0,0,10,0,4,0,0,2,0,17,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,21,0,24,0,0,0,0,3,21,5,34,0,0,0,0,1,0,1,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,88,0,0,0,100,0,462,0,0,0,24,1,0,0,0,0,0,0,0,0,0,50,1,0,2,0,2,0,0,0,0,0,90,9,0,0,0,0,0,0,0,0,35,0,0,12,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,24,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,31,5 +0,0,0,11,0,26,37,0,121,13,35,0,0,2,25,0,44,0,7,4,0,0,0,1,0,2,9,0,6,0,1,0,0,0,10,0,26,72,9,0,255,0,0,0,1,0,0,3,0,0,0,0,3,157,0,0,0,0,0,1,0,0,1,0,0,23,0,0,1641,26,289,0,7,0,0,0,0,1,14,0,0,0,0,0,1,6,157,0,0,10,0,0,4,84,0,705,135,5,0,0,2,0,502,0,8,0,2,1117,0,0,0,0,8,0,3,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,164,0,101,0,0,0,6,26,60,478,218,0,0,0,0,1,0,0,0,0,0,0,0,0,675,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,13,23,199,12,0,0,265,0,531,0,0,0,189,58,0,0,0,0,0,0,5,0,0,271,1,0,0,0,5,0,0,0,0,4,120,246,0,0,318,0,0,0,0,1,226,0,0,111,0,0,1,16,0,0,0,0,8,0,0,0,8,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,14,0,0,0,0,1,36,289,0,18,0,0,0,0,0,0,233,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,3,324,67,5 +0,0,0,17,0,65,33,0,96,14,37,0,1,9,28,0,1537,0,15,5,0,0,0,9,1,12,15,0,33,0,1,2,0,0,12,18638,65,221,14,0,169,0,0,0,1,0,0,7,0,0,0,0,7,495,0,0,0,0,0,1,0,0,0,0,0,11,0,0,72020,65,1891,0,33,0,0,0,0,0,84,0,0,0,0,0,10,157,8467,0,0,12,0,0,1,7,0,608,35,14,0,0,2,0,1844,0,6,303,5,4541,0,0,0,0,2,0,7,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,12,12,12,0,0,0,4229,0,127,0,0,0,30,64,474,2027,4219,0,0,0,0,1,0,5,0,0,0,0,0,0,6232,0,0,0,0,0,0,0,0,0,2,0,0,7,1,0,0,0,0,0,1,0,97,36,520,18,0,0,644,0,1154,0,0,0,418,95,0,0,0,0,0,0,0,0,0,1756,1,0,0,0,15,0,0,0,0,7,246,168,0,0,295,0,0,0,0,0,8384,1,0,13592,31,0,1,1,0,0,0,0,15,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,31,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,99,1,1,1,0,105,0,0,0,0,1,77,317,0,51,12,0,0,0,0,0,139,4,0,0,0,0,0,0,0,0,0,0,0,2,0,2,20,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6126,176,5 +0,0,0,30,0,47,21,0,92,49,23,0,1,6,74,0,57,0,7,9,0,0,0,2,0,8,9,0,14,0,1,0,0,0,21,0,47,276,47,0,274,0,0,0,1,0,0,4,0,0,0,0,8,275,0,4,0,0,0,1,0,0,0,0,0,51,0,0,7118,47,315,0,15,0,0,0,0,0,22,0,0,0,0,0,2,7,432,0,0,21,0,0,1,32,0,360,70,8,0,0,2,0,448,0,44,0,7,3550,0,0,0,0,1,0,8,0,0,0,0,1,2,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,13,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,475,0,133,0,0,0,16,201,88,529,506,0,0,0,0,1,0,1,0,0,0,0,0,0,1480,1,0,0,0,0,0,0,0,0,0,0,0,47,0,2,0,0,0,0,0,0,13,83,535,39,0,0,409,0,1377,0,0,0,275,95,0,0,0,0,0,0,0,0,0,281,1,0,0,0,11,0,0,0,0,8,206,187,0,0,153,0,1,0,0,0,798,0,0,953,0,0,1,0,0,0,0,0,12,0,0,0,6,0,0,0,0,0,51,0,0,3,4,0,0,5,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,98,0,0,0,0,1,68,521,0,32,0,0,1,0,0,0,219,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,51,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1357,409,5 +1,0,0,11,0,26,4,0,398,21,174,0,1,2,37,0,63,0,7,5,0,0,0,1,1,3,15,0,10,0,1,0,0,0,9,0,26,170,21,0,447,0,0,0,1,0,0,1,0,0,0,0,5,165,0,0,0,0,0,1,0,0,0,0,0,23,0,0,12830,26,682,0,11,0,0,0,0,0,6,0,0,0,0,0,1,3,994,0,0,9,0,0,1,341,0,2781,820,1,0,0,2,0,1457,0,14,0,3,1400,0,1,0,0,3,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,1037,0,60,0,0,0,10,74,90,938,1052,0,0,0,0,1,0,0,0,0,0,0,0,0,3270,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,19,34,258,12,0,0,143,0,994,0,0,0,63,111,0,0,0,0,0,0,0,0,0,686,1,0,0,0,7,0,0,0,0,5,123,545,0,0,2536,0,0,0,0,0,1367,0,0,3854,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,40,0,0,0,0,1,35,48,0,29,0,0,0,0,0,0,612,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1202,101,5 +0,0,0,7,0,37,63,0,58,0,15,0,0,10,4,0,879,0,6,1,0,0,0,8,0,10,0,0,14,0,1,0,0,0,1,18009,37,6,0,0,52,0,1,0,1,0,0,1,0,0,0,0,1,1190,0,0,0,0,0,1,0,0,0,0,0,2,0,0,168288,37,1174,0,12,0,0,0,0,0,111,0,0,0,0,0,8,151,29466,0,0,1,0,0,0,0,0,370,35,2,0,0,2,0,1046,0,0,139,0,5802,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,22524,0,39,0,0,0,8,11,861,2368,22489,0,0,0,0,1,0,3,0,0,0,0,0,0,430,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,796,16,406,7,0,0,502,0,326,2,0,0,311,14,0,0,0,0,0,0,0,0,0,1035,1,0,0,0,9,0,0,0,0,1,216,46,0,0,120,0,0,0,0,0,6139,1,0,881,55,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,55,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,35,0,0,0,0,1,38,228,0,13,12,0,1,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3943,43,5 +0,0,0,0,0,9,2,0,17,0,1,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,11,0,2,0,1,0,0,2,0,0,0,0,0,94,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1071,9,48,0,1,0,0,0,0,0,11,0,0,0,0,0,1,7,514,0,0,1,0,0,0,0,0,10,0,3,0,0,2,0,18,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,57,0,33,0,0,0,0,3,23,7,72,0,0,0,0,1,0,0,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,76,0,0,0,92,0,168,0,0,0,28,2,0,0,0,0,0,0,0,0,0,43,1,0,0,0,2,0,0,0,0,0,91,18,0,0,0,0,1,0,0,0,216,0,0,756,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,271,0,1,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,257,28,5 +0,0,0,0,0,9,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,26,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,19,0,0,0,0,3,22,4,27,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,0,0,0,35,0,26,0,0,0,5,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,2,5 +6,0,0,6,1,55,41,1,93,2,10,0,0,9,7,0,982,0,9,3,0,0,0,8,0,11,3,0,7,0,1,0,0,1,9,14022,56,54,3,0,75,0,0,0,1,0,0,5,0,0,0,0,2,884,0,0,0,0,0,1,0,0,0,12,0,2,0,0,54669,55,1156,0,5,0,0,0,0,0,51,0,0,0,0,0,9,37,9490,0,1,9,1,0,1,0,0,335,30,10,0,0,4,1,1045,0,1,34,0,5033,0,0,0,0,19,6,6,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,5758,0,108,0,0,0,3,11,540,1164,5747,0,0,0,0,1,0,12,0,0,0,0,0,0,960,6,0,0,0,0,0,0,0,0,0,0,0,5,7,0,0,0,0,0,1,0,221,28,502,7,0,0,597,0,764,0,1,0,257,20,0,0,0,0,0,0,0,0,0,1151,1,0,0,0,11,0,0,0,0,2,199,129,0,0,42,0,0,0,0,0,15459,1,0,395,15,0,1,1,0,0,0,0,13,0,0,0,0,0,0,0,0,0,3,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,81,1,1,1,0,11,0,0,0,0,9,65,1097,0,10,12,0,0,0,0,0,143,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,5,2023,95,5 +4,0,0,19,2,92,95,2,328,49,88,0,1,3,86,0,224,0,11,14,0,0,0,11,7,13,39,0,30,0,2,0,0,2,49,0,94,437,65,0,604,0,0,0,1,0,0,4,0,0,0,0,16,475,0,0,0,0,0,1,0,0,0,0,0,78,0,0,11923,92,863,0,32,0,0,0,0,0,19,0,0,0,0,0,16,21,1508,0,2,49,2,0,13,202,0,1926,345,8,0,0,6,2,1405,0,53,0,5,6251,0,0,0,0,39,2,8,0,0,0,0,1,0,0,0,15,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,3,0,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,44,0,1,0,0,0,0,0,1,0,0,0,1,4,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,1060,0,246,0,0,0,32,186,212,1453,1139,0,0,0,0,1,0,0,0,0,0,0,0,0,3117,0,0,0,0,0,0,0,0,0,6,0,0,3,0,0,0,0,0,0,0,0,241,99,917,26,0,0,883,0,4102,0,2,0,484,272,0,24,0,0,0,0,0,0,0,836,1,0,0,0,32,0,0,0,0,12,250,505,0,0,836,0,0,0,0,0,2184,0,0,1583,0,0,1,53,1,0,0,0,8,0,0,0,3,0,0,0,0,0,49,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,121,1,1,1,0,168,0,0,0,0,29,143,434,0,84,0,0,0,0,0,0,676,8,0,0,0,0,0,0,0,0,0,0,0,2,0,1,67,22,0,0,0,0,0,0,0,0,0,0,2,0,3,1557,356,5 +4,0,0,9,1,75,67,1,150,2,32,0,0,9,8,0,1755,0,9,6,0,0,0,8,0,13,9,0,17,0,1,0,0,1,20,18037,76,54,14,0,149,0,0,0,1,0,0,3,0,0,0,0,5,667,0,0,0,0,0,1,0,0,0,7,0,17,0,0,182339,75,2045,0,15,0,0,0,0,0,59,0,0,0,0,0,9,67,28413,0,1,20,1,0,5,42,0,752,90,4,0,0,4,1,2047,0,2,79,0,5910,0,0,0,0,16,4,4,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,12,12,12,0,0,0,23687,0,107,0,0,0,12,60,751,2033,23649,0,0,0,0,1,0,11,0,0,2,0,0,0,7859,4,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,1,0,219,29,650,10,0,0,696,0,732,0,1,0,365,31,0,0,0,0,0,0,0,0,0,2030,1,0,0,0,14,0,0,0,0,5,249,188,0,0,224,0,0,0,0,0,18007,1,0,8811,24,0,1,1,1,0,0,0,7,0,0,0,2,0,0,0,0,0,2,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,105,1,1,1,0,49,0,0,0,0,9,96,228,0,28,12,0,1,0,0,0,226,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,12,0,0,0,0,0,0,0,0,0,0,0,1,0,3,4309,100,5 +0,0,0,18,0,41,28,0,103,35,22,0,0,2,75,0,85,0,75,7,0,0,0,1,4,8,24,0,16,0,1,0,0,0,17,0,41,199,33,0,318,0,0,0,1,0,0,3,0,0,0,0,9,199,0,0,0,0,0,1,0,0,0,0,0,43,0,0,15222,41,436,0,17,0,0,0,0,0,14,0,0,0,0,0,2,7,1228,0,0,17,0,0,3,53,0,499,75,4,0,0,2,0,615,0,31,0,2,1617,0,0,0,0,3,0,4,0,6,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,1259,0,101,0,0,0,18,186,97,849,1281,0,0,0,0,1,0,0,0,0,0,0,0,0,4480,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,19,84,356,22,0,0,279,0,1220,0,0,0,172,107,0,0,0,0,0,0,0,0,0,390,1,0,0,0,12,0,0,0,0,3,146,185,0,0,214,0,2,0,0,0,1694,0,0,4536,0,0,1,0,1,0,0,0,5,0,0,0,1,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,95,0,0,0,0,1,58,179,0,49,0,0,0,0,0,0,265,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,39,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1555,123,5 +2,0,0,7,1,55,45,1,80,2,16,0,0,9,7,0,1052,0,9,4,0,0,0,8,0,12,6,0,15,0,1,0,0,1,6,13620,56,54,5,0,64,0,0,0,1,0,0,4,0,0,0,0,3,702,0,0,0,0,0,1,0,0,0,3,0,4,0,0,132891,55,1228,0,12,0,0,0,0,0,49,0,0,0,0,0,9,65,21442,0,1,6,1,0,1,0,0,366,30,7,0,0,4,1,1126,0,2,59,0,3945,0,0,0,0,2,2,3,0,0,0,0,1,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,18502,0,100,0,0,0,8,34,606,1380,18460,0,0,0,0,1,0,5,0,0,0,0,0,0,1870,2,0,0,0,0,0,0,0,0,0,0,0,17,3,0,0,0,0,0,1,0,218,29,523,8,0,0,587,0,897,0,1,0,273,34,0,0,0,0,0,0,0,0,0,1218,1,0,0,0,12,0,0,0,0,4,193,99,0,0,74,0,0,0,0,0,4703,1,0,1666,21,0,1,1,0,0,0,0,9,0,0,0,1,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,70,1,1,1,0,31,0,0,0,0,9,62,271,0,20,14,0,0,0,0,0,137,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,4,1970,99,5 +0,0,0,0,0,22,35,0,55,1,8,0,0,0,29,0,12,0,7,5,0,0,0,4,0,0,0,0,0,0,1,0,0,0,4,0,22,6,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,1,0,0,0,1,0,6,0,0,2256,22,135,0,1,0,0,0,0,0,0,0,0,0,1,0,8,8,779,0,0,4,0,0,0,50,0,388,10,0,0,0,2,0,308,0,1,0,0,629,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,424,0,40,0,0,0,0,3,62,462,448,0,0,0,0,0,0,1,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,197,1,0,0,187,0,275,0,0,0,117,63,0,0,0,0,0,0,0,0,0,146,0,0,0,0,9,0,0,0,0,1,115,190,0,0,53,0,0,0,0,0,29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,0,0,0,0,0,1,26,141,0,1,0,0,0,0,0,0,135,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,112,5 +5,0,0,13,0,41,17,0,109,29,30,0,1,2,45,0,64,0,7,9,0,0,0,2,1,3,15,0,16,0,1,0,0,0,23,0,41,33,25,0,201,0,0,0,1,0,0,2,0,0,0,0,8,164,0,0,0,0,0,1,0,0,0,3,0,38,0,0,1374,41,305,0,17,0,0,0,0,0,9,0,0,0,0,0,3,7,119,0,0,23,0,0,6,58,0,573,95,2,0,0,2,0,499,0,21,0,3,1360,0,0,1,0,9,0,0,0,0,0,0,1,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,166,0,79,0,0,0,16,54,98,522,190,0,0,0,0,1,0,0,0,0,0,0,0,0,466,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,41,263,16,0,0,237,0,395,0,0,0,154,64,0,0,0,0,0,0,0,0,0,275,1,0,0,0,12,0,0,0,0,7,151,136,0,0,207,0,0,0,0,0,437,0,0,88,0,0,1,0,1,0,0,0,3,0,0,0,1,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,31,0,0,0,0,1,64,99,0,35,0,0,0,0,0,0,248,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,37,0,0,0,0,0,0,0,0,0,0,0,0,0,2,295,39,5 +0,0,0,1,0,14,4,0,15,3,5,0,1,0,4,0,15,0,6,1,0,0,0,4,0,0,0,0,0,0,1,0,0,0,6,0,14,25,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1,0,0,0,0,0,3,0,0,162,14,52,0,1,0,0,0,0,0,0,0,0,0,0,0,4,4,38,0,0,6,0,0,2,7,0,78,15,0,0,0,4,0,64,0,2,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,39,0,36,0,0,0,0,3,37,74,55,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,18,88,1,0,0,54,0,229,0,0,0,21,9,0,0,0,0,0,0,0,0,0,50,0,0,0,0,5,0,0,0,0,0,97,13,0,0,31,0,0,0,0,0,65,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,14,1,1,1,0,0,0,0,0,0,1,20,6,0,1,0,0,0,0,0,0,39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,45,5 +7,0,0,4,0,35,7,0,20,33,3,0,0,2,39,0,18,0,6,3,0,0,0,6,0,8,0,0,2,0,1,0,0,0,7,0,35,6,0,0,99,0,0,0,1,0,0,14,0,0,0,0,1,227,0,0,0,0,0,1,0,0,0,0,0,40,0,0,3142,35,151,0,1,0,0,0,0,0,48,0,0,0,30,0,8,27,426,0,0,7,0,0,0,0,0,89,5,26,0,0,2,0,106,0,37,0,0,1024,0,0,6,0,0,0,6,0,0,0,0,1,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,376,0,150,0,0,0,0,3,198,131,505,0,0,0,0,1,0,3,0,0,0,0,0,0,1226,0,2,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,1,0,32,47,192,4,0,0,353,0,984,0,0,0,236,35,0,0,0,0,0,0,0,0,0,95,1,0,0,0,9,0,0,0,0,1,117,185,0,0,0,0,0,0,0,4,166,0,0,365,3,0,1,2,1,0,0,0,25,0,1,0,2,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,0,0,0,0,0,1,42,260,0,2,9,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,35,0,0,0,0,0,0,0,0,0,0,0,0,0,2,513,632,5 +0,0,0,0,0,9,3,0,18,0,1,0,1,0,2,0,27,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,25,0,0,10,0,0,0,1,0,0,1,1,0,0,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,122,9,48,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,15,0,0,1,0,0,1,0,0,12,0,4,0,0,4,0,35,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,22,0,25,0,0,0,0,3,23,5,36,0,0,0,0,1,0,1,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,15,104,0,0,0,111,0,529,0,0,0,32,1,0,0,0,0,0,0,0,0,0,58,1,0,2,0,2,0,0,0,0,0,92,13,0,0,0,0,0,0,0,0,51,0,0,12,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,33,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,38,5 +0,0,0,12,1,46,156,1,147,59,31,0,0,0,71,5,89,0,9,4,0,0,0,6,0,0,9,0,4,0,3,0,0,1,18,0,47,136,6,0,386,0,0,0,1,0,0,5,0,0,0,0,4,314,0,0,0,0,0,1,0,0,0,11,0,73,0,0,13649,46,500,0,5,0,0,0,0,0,23,0,0,0,0,0,7,13,2074,0,1,18,1,0,4,103,0,1051,105,8,0,0,4,1,716,0,64,0,0,2562,0,0,0,0,9,0,7,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,7,0,0,0,0,0,0,0,1,29,0,0,0,0,0,0,0,0,0,6,1,1,0,0,3,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,18,0,0,0,0,0,0,1511,0,148,0,0,0,4,22,119,1296,1538,0,0,0,0,1,0,44,0,0,0,0,0,0,3474,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,118,88,613,17,0,0,706,0,1616,0,1,0,476,75,0,0,0,0,0,0,0,0,0,508,1,0,0,0,10,0,0,0,0,3,163,408,0,0,266,0,0,0,0,3,1121,0,0,3017,0,0,1,0,1,0,0,0,11,3,2,0,2,0,0,0,0,0,61,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,6,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,67,1,1,1,0,21,0,0,0,0,9,65,445,0,16,0,0,0,0,1,0,368,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,65,0,0,0,0,0,0,0,0,0,0,0,1,0,5,1308,323,5 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1,0,0,0,0,0,0,0,0,18,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,16,0,0,0,0,3,21,4,22,0,0,0,0,1,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,44,0,59,0,0,0,14,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,13,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,20,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,3,5 +0,0,0,5,0,19,39,0,123,10,35,0,0,0,19,0,32,0,7,2,0,0,0,1,1,1,3,0,4,0,1,0,0,0,7,0,19,6,7,0,245,0,4,0,1,0,0,4,0,0,0,0,2,559,0,0,0,0,0,1,0,0,0,0,0,33,0,0,1984,19,276,0,5,0,0,0,0,0,20,0,0,0,0,0,1,9,586,0,0,7,0,0,3,111,0,901,105,7,0,0,2,0,580,0,13,0,0,683,0,0,0,0,8,0,3,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,160,0,72,0,0,0,4,16,40,760,167,0,0,0,0,1,0,0,0,0,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,23,16,166,5,0,0,265,0,494,0,0,0,177,18,0,0,0,0,0,0,0,0,0,255,1,0,0,0,4,0,0,0,0,3,129,326,0,0,276,0,0,0,0,0,3481,0,0,836,0,0,1,0,1,0,0,0,8,0,0,0,1,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,9,0,0,0,0,1,26,439,0,9,0,0,1,0,0,0,302,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7994,51,5 +0,0,0,17,0,44,65,0,270,38,70,0,0,4,57,20,80,0,7,4,0,0,0,1,2,3,24,0,13,0,4,0,0,0,24,0,44,362,16,0,650,0,0,0,0,0,0,17,0,0,0,0,8,416,0,0,0,0,0,1,0,0,0,0,0,76,0,0,6333,44,703,0,17,0,0,0,0,0,64,0,0,0,0,0,1,20,746,0,0,24,0,0,4,210,0,1822,100,27,1,0,2,0,1480,0,38,0,9,2737,0,0,0,0,7,0,15,0,1,0,0,1,8,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,8,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,679,0,261,0,0,0,16,64,109,2205,707,0,0,0,0,1,0,0,0,0,0,0,0,0,1926,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,15,101,423,19,0,0,666,0,1375,0,0,0,569,79,0,0,0,0,0,0,4,0,0,573,1,0,0,0,7,0,0,0,0,9,142,918,0,0,244,0,0,0,0,0,802,0,0,802,0,0,1,0,1,0,0,0,42,0,0,0,10,0,0,0,0,0,39,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,40,0,0,0,0,1,68,1158,0,44,0,0,0,0,0,0,689,6,0,0,0,0,0,0,0,0,0,1,0,0,0,1,44,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1167,178,5 +4,0,0,20,1,77,99,1,455,38,128,0,0,2,76,1,155,0,9,14,0,14,0,14,5,15,37,0,21,0,7,1,0,1,30,0,78,138,41,0,957,0,0,0,1,0,0,1,0,0,0,0,12,396,0,0,0,0,0,1,0,0,0,9,0,110,0,0,16675,77,957,0,21,0,0,0,0,0,9,0,0,0,0,0,18,25,1376,0,1,30,1,0,10,393,0,3395,332,1,0,0,4,1,2292,0,47,0,0,6087,0,0,0,0,8,0,2,0,0,0,3,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,32,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,16,16,16,0,0,0,1369,0,109,0,0,0,22,139,251,3091,1371,0,0,0,0,1,0,4,0,0,0,0,0,0,4208,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,164,80,568,36,0,0,614,0,2523,0,1,0,332,278,0,0,0,0,0,0,0,0,0,925,1,0,0,0,33,14,0,0,0,108,231,978,0,0,871,0,4,0,0,2,1886,0,0,4332,3,0,1,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,42,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,3,92,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,90,1,1,1,0,82,0,0,0,0,16,108,134,0,72,9,0,0,0,0,0,1091,6,0,0,0,0,0,0,0,0,0,0,0,2,0,1,58,0,0,0,0,0,0,0,0,14,0,0,16,0,1,29326,238,5 +1,0,0,28,1,89,57,1,180,57,39,1,1,8,88,0,1005,0,9,5,0,0,0,9,5,14,42,0,28,0,8,4,0,1,37,1754,90,242,28,0,403,0,0,0,1,0,0,4,0,0,0,0,19,394,0,0,0,0,0,1,0,0,1,0,0,69,0,0,9279,89,1413,0,37,0,0,0,0,0,30,0,0,0,0,0,11,30,1485,0,1,37,1,0,4,66,0,874,125,5,0,0,4,1,1692,0,58,10,3,4003,0,0,0,0,26,0,1,0,0,0,0,1,0,0,0,31,1,0,6,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,109,12,12,12,0,0,0,644,0,162,0,0,0,37,111,361,990,676,0,0,0,0,1,0,4,0,0,0,0,0,0,978,0,0,0,0,0,0,0,0,0,0,0,0,4,1,2,0,0,0,0,1,0,202,111,747,45,0,0,766,0,1835,1,1,0,393,113,0,0,0,0,0,0,0,0,0,1388,1,0,0,0,19,0,0,0,0,12,255,239,0,0,249,0,5,0,0,1,2947,1,0,123,8,0,1,1,0,0,0,0,6,0,1,0,6,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,8,12,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,103,1,1,1,0,91,0,0,0,2,9,127,453,0,84,12,0,1,0,0,0,462,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,65,0,0,0,0,0,0,0,0,0,0,0,1,0,6,1019,378,5 +28,0,0,46,1,99,32,1,267,146,7,0,1,101,243,0,141,0,9,7,0,0,0,21,3,17,22,0,24,0,4,0,0,1,42,0,100,531,334,0,1012,0,0,1,1,0,0,4,0,0,0,0,12,943,0,0,0,0,0,1,0,0,0,0,0,95,0,0,8067,99,752,0,32,0,0,0,0,0,27,0,0,0,0,0,14,26,480,0,1,42,1,0,1,82,0,1830,5,7,0,0,4,1,1321,0,425,17,7,4072,0,0,2,0,78,4,3,1,0,0,6,1,0,0,0,12,0,0,0,0,4,0,1,2,0,0,0,3,0,0,0,2,0,0,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,12,2,0,0,0,0,0,0,0,1,0,0,0,1,0,42,0,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,126,12,12,12,0,5,0,507,0,289,0,0,0,21,76,1382,1153,452,0,0,0,0,1,0,5,0,0,10,0,0,0,1395,0,0,0,0,1,0,0,0,0,4,0,0,4,3,2,0,0,0,0,4,3,1319,133,770,66,0,0,1182,0,19214,0,1,0,842,135,0,0,0,0,0,0,4,1,1,801,1,0,0,0,31,0,0,0,0,131,213,557,0,0,0,0,1,0,0,1,2845,0,0,383,3,0,1,3,0,0,0,0,11,0,0,0,1,0,0,0,0,0,87,5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,3,19,0,0,0,1,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,1,0,1,2,0,1,0,0,0,0,0,0,0,0,1,0,1,128,1,1,1,0,66,0,0,0,0,14,142,1581,0,58,9,0,0,0,0,0,390,6,0,0,0,0,0,0,0,0,0,0,0,2,164,1,184,0,0,0,0,0,0,0,0,0,0,0,1,0,3,3212,271,5 +0,0,0,14,0,40,139,0,32,0,7,0,0,11,4,0,103,0,6,2,0,0,0,8,0,11,0,0,7,0,1,0,0,0,4,7520,40,6,0,0,60,0,0,0,1,0,0,3,0,0,0,0,1,724,0,0,0,0,0,1,0,0,0,0,0,4,0,0,177899,40,696,0,4,0,0,0,0,0,280,0,0,0,0,0,9,44,30237,0,0,4,0,0,0,0,0,292,40,3,1,0,2,0,431,0,0,36,0,5681,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,12,12,0,0,0,25096,0,51,0,0,0,2,5,557,1344,25076,0,0,0,0,1,0,3,0,0,0,0,0,0,602,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,915,20,494,24,0,0,855,0,311,13,0,0,686,19,0,0,0,0,0,0,0,0,0,302,1,0,0,0,10,0,0,0,0,1,362,136,0,0,32,0,0,0,0,0,3390,1,0,93,140,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,140,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,9,0,0,0,0,1,44,267,0,5,14,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3034,77,5 +0,0,0,4,0,17,2,0,18,1,3,0,0,0,5,0,22,0,7,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,5,0,17,6,4,0,18,0,0,0,1,0,0,7,0,0,0,0,1,227,0,0,0,0,0,1,0,0,0,0,0,6,0,0,1845,17,103,0,3,0,0,0,0,0,32,0,0,0,0,0,1,10,226,0,0,5,0,0,0,0,0,27,0,12,0,0,2,0,44,0,3,0,0,660,0,0,0,0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,239,0,97,0,0,0,2,15,39,37,240,0,0,0,0,1,0,0,0,0,0,0,0,0,594,0,0,0,0,0,0,0,0,0,0,0,0,7,0,6,0,0,0,0,0,0,8,6,130,4,0,0,247,0,489,0,0,0,170,16,0,0,0,0,0,0,0,0,0,57,1,0,0,0,3,0,0,0,0,2,99,136,0,0,0,0,0,0,0,0,136,0,0,292,0,0,1,0,1,0,0,0,20,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,10,0,0,0,0,1,22,495,0,7,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,281,75,5 +3,0,0,16,1,97,72,1,185,25,54,0,0,6,39,0,198,0,51,4,0,0,0,19,0,14,26,1,15,0,5,4,0,1,29,853,98,57,9,0,320,0,0,0,1,0,0,3,0,0,0,0,10,675,0,0,0,0,0,1,0,0,0,7,0,35,0,0,11454,97,636,0,21,0,0,0,0,0,21,0,0,0,0,0,20,47,1694,0,1,29,1,0,4,123,0,1318,220,5,0,0,4,1,916,0,28,25,0,4074,0,0,0,0,7,3,7,0,0,0,0,1,0,0,0,18,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,49,0,1,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,1,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,12,12,12,0,0,0,865,0,232,0,0,0,19,67,566,1386,962,0,0,2,0,1,0,4,0,0,0,0,0,0,1473,3,0,0,0,0,0,0,0,0,0,0,0,3,4,2,0,0,0,0,1,0,195,60,698,20,0,0,709,0,1869,0,1,0,344,196,0,29,0,0,0,0,0,0,0,605,1,0,0,0,23,0,0,0,0,8,233,322,0,0,563,0,0,0,0,0,2468,1,0,298,10,0,1,66,0,0,0,0,5,0,0,0,5,0,0,0,0,0,25,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,10,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,160,1,1,1,0,76,0,0,0,0,9,127,323,0,51,14,0,0,0,0,0,397,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,37,28,0,0,0,0,0,0,0,0,0,0,1,0,2,1065,420,5 +10,0,0,29,0,83,14,0,125,35,28,0,1,5,66,2,146,0,7,7,0,0,0,6,4,15,33,0,24,0,8,2,0,0,48,0,83,216,27,0,326,0,0,0,1,0,0,6,0,0,0,0,19,333,1,0,0,0,0,1,0,0,0,0,0,40,0,0,7707,83,502,0,32,0,0,0,0,0,37,0,0,0,0,0,9,21,949,0,0,48,0,0,4,45,0,589,75,10,0,0,2,0,724,0,30,0,4,3490,0,0,3,0,11,0,6,0,0,0,0,1,0,0,0,36,6,0,0,0,0,0,0,0,0,0,0,2,0,0,1,7,0,0,0,6,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,0,0,4,0,0,0,0,66,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,1,0,161,10,10,10,0,0,0,720,0,183,0,0,0,32,112,273,773,803,0,0,0,0,1,0,2,0,0,0,0,0,0,1965,0,0,0,0,0,0,0,0,0,0,0,0,7,1,6,0,0,0,0,1,0,37,87,563,35,0,0,694,0,954,0,0,0,556,148,0,0,0,0,0,0,11,0,0,394,1,0,0,0,17,0,0,0,0,16,261,352,0,0,144,0,45,0,0,0,4080,0,0,1361,3,0,1,10,0,0,0,0,12,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,1,0,1,0,0,108,1,1,1,0,95,0,0,0,0,1,131,930,0,73,9,0,0,0,0,0,522,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,45,6,0,0,0,0,0,0,0,0,0,0,0,0,6,4228,276,5 +0,0,0,10,0,55,297,0,241,24,174,0,0,16,28,0,898,0,7,3,0,0,0,11,0,13,6,0,59,0,2,0,0,0,10,69471,55,6,8,0,290,0,2,0,1,0,0,3,0,0,0,0,4,2542,0,2,0,0,0,1,0,0,1,3,0,31,0,0,296506,55,2104,0,57,0,0,0,0,0,340,0,0,0,0,1,11,571,53605,0,0,10,0,0,2,93,0,2356,205,6,0,0,2,0,1816,0,21,965,0,14510,0,0,0,0,10,0,1,0,0,0,0,1,0,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,36465,0,104,0,0,0,39,61,2954,10070,36299,0,0,0,0,1,0,3,0,0,0,0,0,0,5950,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,234,60,988,13,0,0,1289,0,793,18,0,0,1063,45,0,0,0,0,0,0,0,0,0,1661,1,0,0,0,14,0,0,0,0,4,557,361,0,0,1491,0,0,0,0,3,11545,1,0,6196,163,0,1,1,1,0,0,0,4,0,1,0,7,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,8,0,0,0,163,185,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,183,0,0,0,0,1,65,755,0,66,14,0,0,0,0,0,415,3,0,0,0,0,0,0,0,0,0,0,0,3,0,2,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7746,167,5 +13,0,0,17,0,40,67,0,220,31,191,0,0,0,171,1,100,0,7,2,0,0,0,3,0,0,12,0,5,0,3,2,0,0,21,0,40,272,0,0,586,0,0,0,1,0,0,7,0,0,0,0,4,137,0,5,0,0,0,1,0,0,0,26,0,42,0,0,2615,40,824,0,10,0,0,0,0,0,33,0,0,0,0,0,4,14,338,0,0,21,0,0,1,194,0,1552,330,8,0,0,2,0,1523,0,37,0,0,1160,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,6,0,0,1,3,0,0,0,13,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,30,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,98,0,0,0,0,0,0,293,0,186,0,0,0,8,21,80,743,350,0,0,0,0,1,0,0,0,0,0,0,0,0,1269,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,65,112,518,20,0,0,510,0,439,0,0,0,426,43,0,0,0,0,0,0,7,0,0,757,1,0,0,0,5,0,0,0,0,3,319,409,0,0,1254,0,0,0,0,0,2163,0,0,244,0,0,1,3,0,0,0,0,17,0,3,0,2,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,9,0,0,0,0,1,61,681,0,22,0,0,0,0,0,0,488,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,33,0,0,0,0,0,0,0,0,0,0,0,0,0,6,886,335,5 +0,0,0,0,0,9,2,0,3,0,2,0,0,0,2,0,10,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,16,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,9,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,1,0,0,0,0,0,42,0,0,0,0,2,0,16,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,19,0,0,0,0,3,22,11,18,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,34,0,0,0,37,0,59,0,0,0,6,34,0,0,0,0,0,0,0,0,0,25,0,0,0,0,2,0,0,0,0,0,93,2,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,11,5 +0,0,0,16,0,99,92,0,153,42,59,0,0,1,149,1,59,0,7,8,0,0,0,6,1,8,18,0,23,0,6,0,0,0,36,0,99,69,61,0,630,0,0,0,1,0,0,6,0,0,0,0,13,316,0,0,0,0,0,1,0,0,0,19,0,40,0,0,20543,99,541,0,29,0,0,0,0,0,20,0,0,0,0,0,6,13,1903,0,0,36,0,0,3,98,0,1035,162,10,0,0,2,0,884,0,31,0,1,22142,0,0,0,0,19,0,5,0,0,0,0,1,2,0,0,15,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,48,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,0,0,0,0,0,0,1516,0,251,0,0,0,26,1326,206,1854,1539,0,0,0,0,1,0,0,0,0,0,0,0,0,3696,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,272,781,34,0,0,598,0,2385,0,0,0,363,360,0,0,0,0,0,0,0,0,0,521,1,0,0,0,15,0,0,0,0,11,221,312,0,0,444,0,0,0,0,2,2211,0,0,2421,0,0,1,0,0,0,0,0,15,0,3,0,2,0,0,0,0,0,134,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,43,4,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,148,1,1,1,0,182,0,0,0,0,1,135,947,0,55,0,0,0,0,0,0,434,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,48,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2847,383,5 +0,0,0,2,0,9,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,1,0,0,14,9,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,18,0,0,0,0,3,22,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,2,0,0,35,0,33,0,0,0,5,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,91,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,1,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,3,5 +5,0,0,0,0,68,14,0,40,17,12,1,2,0,21,0,50,0,7,11,0,0,0,5,0,10,0,0,4,0,5,0,0,0,26,0,68,85,0,0,202,0,0,0,1,0,0,0,0,0,0,0,7,101,0,0,0,0,0,1,0,0,0,1,0,20,0,0,3754,68,148,0,9,0,0,0,0,0,6,0,0,0,0,0,15,20,115,0,0,26,0,0,2,28,0,344,45,0,0,0,4,0,230,0,18,0,0,1524,0,0,1,0,14,0,0,0,0,0,0,0,0,0,0,49,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,108,0,89,0,0,0,10,13,491,196,188,0,0,0,0,1,0,3,0,0,0,0,0,0,586,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,17,84,281,0,0,0,301,0,549,0,0,0,174,67,0,0,0,0,0,0,0,0,0,147,0,0,0,0,16,0,0,0,0,5,167,100,0,0,100,0,47,0,0,5,332,0,0,4,3,0,1,1,0,0,0,0,0,0,2,0,2,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,315,1,1,1,0,10,0,0,0,0,1,94,118,0,10,9,0,0,0,0,0,274,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,79,5 +0,0,0,19,1,43,31,1,64,11,7,1,1,4,26,0,108,0,10,5,0,0,0,5,1,10,15,0,10,0,3,0,0,1,11,0,44,212,9,0,92,0,0,0,1,0,0,4,0,0,0,0,6,196,0,0,0,0,0,1,0,0,0,3,0,11,0,0,1401,43,233,0,11,0,0,0,0,0,13,0,0,0,0,1,7,18,295,0,1,11,1,0,1,0,0,149,5,6,0,0,4,1,232,0,9,0,4,917,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,56,10,10,10,0,0,0,220,0,74,0,0,0,10,37,222,107,231,0,0,0,0,1,0,3,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,2,0,146,54,368,22,0,0,361,0,1162,0,1,0,125,35,0,0,0,0,0,0,0,0,0,252,1,0,0,0,11,0,0,0,0,5,155,28,0,0,0,0,0,0,0,0,534,0,0,47,3,0,1,1,0,0,0,0,7,0,0,0,1,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,57,1,1,1,0,19,0,0,0,0,9,55,145,0,29,9,0,0,0,0,0,87,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,13,0,0,0,0,0,0,0,0,0,0,0,1,0,2,391,126,5 +0,0,0,18,0,40,100,0,101,127,23,0,0,2,156,0,70,0,53,7,0,0,0,1,1,5,18,0,10,0,1,0,0,0,17,0,40,199,23,0,487,0,0,0,1,0,0,3,0,0,0,0,6,200,0,0,0,0,0,1,0,0,0,0,0,135,0,0,15674,40,531,0,11,0,0,0,0,0,14,0,0,0,0,0,2,7,1270,0,0,17,0,0,3,52,0,473,80,5,0,0,2,0,723,0,123,0,2,6375,0,0,0,0,3,0,4,0,5,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,1287,0,102,0,0,0,12,83,94,1384,1315,0,0,0,0,1,0,0,0,0,0,0,0,0,4927,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,19,158,391,22,0,0,343,0,1177,0,0,0,239,113,0,0,0,0,0,0,0,0,0,505,1,0,0,0,9,0,0,0,0,3,141,182,0,0,264,0,2,0,0,0,1625,0,0,4631,0,0,1,0,1,0,0,0,5,0,0,0,1,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,64,0,0,0,0,1,57,188,0,34,0,0,0,0,0,0,333,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,131,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1613,140,5 +1,0,0,5,0,38,18,0,538,37,213,0,0,0,47,0,62,0,7,3,0,0,0,2,1,3,24,0,11,0,5,1,0,0,28,0,38,6,9,0,860,0,0,0,1,0,0,8,0,0,0,0,9,254,0,0,0,0,0,1,0,0,0,0,0,66,0,0,6799,38,975,0,18,0,0,0,0,0,36,0,0,0,0,0,2,14,765,0,0,28,0,0,1,511,0,4134,900,15,1,0,2,0,2298,0,32,0,0,1655,0,0,0,0,12,0,0,0,0,0,1,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,14,1,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,37,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,20,0,0,0,0,0,0,743,0,165,0,0,0,17,75,73,2276,759,0,0,0,0,1,0,1,0,0,0,0,0,0,1830,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,51,348,18,0,0,394,0,662,1,0,0,326,88,0,0,0,0,0,0,0,0,0,885,1,0,0,0,6,0,0,0,0,10,153,1261,0,0,2042,0,3,0,0,0,514,0,0,1244,0,0,1,0,1,0,0,0,15,0,0,0,6,0,0,0,0,0,30,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,76,0,0,0,0,1,66,767,0,44,0,0,0,0,0,0,1025,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,39,0,0,0,0,0,0,0,0,0,0,0,0,0,4,912,393,5 +1,0,0,14,0,62,320,0,624,90,166,0,1,6,135,0,118,0,7,8,0,0,0,10,14,11,33,0,33,0,1,0,0,0,39,0,62,460,55,0,1234,0,0,0,1,0,0,8,0,0,0,0,21,407,0,0,0,0,0,1,0,0,7,0,0,126,0,0,8672,62,1538,0,34,0,0,0,0,1,39,0,0,0,0,0,10,25,733,0,0,39,0,0,9,524,0,4271,680,12,0,0,2,0,2844,0,87,0,10,3466,0,1,0,0,27,0,11,0,0,0,0,1,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,1,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0,0,0,819,0,264,0,0,0,42,144,137,4221,792,0,0,0,0,1,0,1,0,0,0,0,0,0,3440,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,17,122,618,19,0,0,919,0,1288,0,0,0,805,67,0,0,0,0,0,0,2,0,0,1377,1,0,0,0,32,0,0,0,0,18,191,1279,0,0,1840,0,0,0,0,25,1399,0,0,879,0,0,1,0,0,0,0,0,16,0,1,0,24,0,0,0,0,0,90,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,79,1,1,1,0,91,0,0,0,0,1,101,694,0,78,0,0,0,0,0,0,1298,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,100,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1272,223,5 +0,0,0,11,0,30,29,0,312,0,94,0,0,0,3,0,42,0,7,3,0,0,0,6,1,1,6,0,6,0,1,0,0,0,12,3052,30,128,9,0,523,0,0,0,1,0,0,4,0,0,0,0,3,216,0,0,0,0,0,1,0,0,0,0,0,51,0,0,1588,30,523,0,7,0,0,0,0,0,19,0,0,0,0,0,6,15,506,0,0,12,0,0,5,285,0,2280,225,5,0,0,2,0,1411,0,1,0,0,1472,0,0,0,0,13,0,11,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,254,0,112,0,0,0,6,22,70,1964,303,0,0,0,0,1,0,0,0,4,0,0,0,0,694,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,16,8,413,15,0,0,406,0,2609,0,0,0,262,465,0,8,0,0,0,0,0,0,0,487,1,0,0,0,10,0,0,0,0,2,194,739,0,0,541,0,0,0,0,1,354,0,0,1662,0,0,1,35,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,30,1,1,1,0,11,0,0,0,0,1,42,177,0,14,0,0,0,0,0,0,697,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,2,0,0,0,0,0,0,0,0,0,0,0,0,5,274,166,5 +0,0,0,15,0,38,30,0,105,19,23,1,1,3,39,0,39,0,7,6,0,0,0,1,1,6,0,0,12,0,1,0,0,0,13,0,38,127,22,0,260,0,0,0,1,0,0,4,0,0,0,0,6,186,0,0,0,0,0,1,0,0,0,0,0,22,0,0,2241,38,260,0,13,0,0,0,0,0,16,0,0,0,0,0,1,6,208,0,0,13,0,0,2,53,0,482,80,5,0,0,2,0,375,0,13,0,5,1219,0,0,0,0,7,0,6,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,203,0,106,0,0,0,12,35,72,441,230,0,0,0,0,1,0,1,0,0,0,0,0,0,682,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,13,43,213,19,0,0,357,0,2283,0,0,0,249,38,0,0,0,0,0,0,7,0,0,248,1,0,0,0,8,0,0,0,0,6,137,244,0,0,211,0,0,0,0,0,378,0,0,170,0,0,1,0,1,0,0,0,9,0,0,0,4,0,0,0,0,0,20,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,40,0,0,0,0,1,51,277,0,19,0,0,0,0,0,0,199,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,3,440,95,5 +0,0,0,9,0,55,62,0,64,13,42,0,0,7,22,0,1066,0,7,4,0,0,0,8,0,13,6,0,18,0,1,0,0,0,12,8788,55,6,6,0,105,0,0,0,1,0,0,1,0,0,0,0,3,679,1,0,0,0,0,1,0,0,0,0,0,23,0,0,76819,55,1404,0,15,0,0,0,0,0,110,0,0,0,0,0,9,114,13389,0,0,12,0,0,0,0,0,478,25,2,0,0,2,0,1281,0,16,172,0,4941,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,9193,0,56,0,0,0,11,28,500,2024,9075,0,0,0,0,1,0,3,0,0,0,0,0,0,534,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,106,45,360,9,0,0,429,0,442,0,0,0,245,14,0,0,0,0,0,0,0,0,0,1270,1,0,0,0,12,0,0,0,0,1,171,25,0,0,249,0,0,0,0,1,4615,1,0,319,57,0,1,1,0,0,0,0,2,0,0,0,2,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,59,1,1,1,0,53,0,0,0,0,1,67,227,0,24,14,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,17,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2045,119,5 +5,0,0,16,1,92,146,1,318,128,79,1,1,5,184,0,232,0,9,8,0,0,0,7,67,18,42,0,96,0,6,0,0,1,47,0,93,313,103,0,810,0,0,0,1,0,0,12,0,0,0,0,79,524,0,0,0,0,0,1,0,0,2,3,0,141,0,0,21199,92,1275,0,101,0,0,0,0,0,62,0,0,0,0,0,9,27,4435,0,1,47,1,0,6,215,0,2568,340,22,0,0,4,1,1720,0,124,0,6,6191,0,1,0,0,30,0,9,0,0,0,2,0,0,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,5,0,0,0,0,16,1,1,0,0,0,0,0,3,0,0,0,31,0,0,0,0,0,0,0,0,0,16,0,0,0,0,69,0,1,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,10,10,10,0,0,0,3655,0,228,0,0,0,156,387,320,3323,3536,0,0,0,0,1,0,3,0,0,0,0,0,0,6250,0,0,0,0,0,0,0,0,0,1,0,0,12,1,0,0,0,0,0,1,4,144,173,801,52,0,0,1030,0,1742,0,1,0,735,215,0,3,0,0,0,0,0,0,0,975,1,0,0,0,82,0,0,0,0,77,386,627,0,0,917,0,1,0,0,3,1830,0,0,3333,3,0,1,8,1,0,0,0,31,0,1,0,7,0,0,0,0,0,122,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,3,27,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,125,1,1,1,0,216,0,0,0,6,9,140,784,0,153,9,0,2,0,0,0,769,7,0,0,0,0,0,0,0,0,0,0,0,2,0,1,136,2,0,0,0,0,0,0,0,0,0,0,1,0,9,2666,314,5 +0,0,0,3,0,11,2,0,6,0,2,0,0,0,2,0,10,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,11,6,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,401,0,0,0,0,0,1,0,0,0,0,0,2,0,0,26,11,22,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,10,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,8,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,18,0,0,0,0,3,26,7,27,0,0,0,0,1,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,195,3,0,0,204,0,102345,0,0,0,10,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,2,0,0,0,0,0,95,7,0,0,0,0,0,0,0,1,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,16,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,30,5 +4,0,0,14,1,56,42,1,90,2,17,0,0,9,10,1,147,0,9,4,0,0,0,7,0,11,9,0,10,0,3,2,0,1,15,7815,57,54,7,0,113,0,0,0,1,0,0,2,0,0,0,0,6,475,0,0,0,0,0,1,0,0,0,6,0,10,0,0,26038,56,294,0,12,0,0,0,0,0,19,0,0,0,0,0,9,33,4240,0,1,15,1,0,3,25,0,523,65,3,0,0,4,1,340,0,1,26,0,2740,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,12,12,12,0,0,0,2534,0,66,0,0,0,12,30,452,901,2527,0,0,0,0,1,0,6,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,1,0,219,31,477,19,0,0,502,0,768,0,1,0,212,39,0,0,0,0,0,0,0,0,0,325,1,0,0,0,11,0,0,0,0,6,173,86,0,0,101,0,0,0,0,0,1517,1,0,112,7,0,1,1,0,0,0,0,4,0,0,0,1,0,0,0,0,0,5,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,7,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,65,1,1,1,0,41,0,0,0,0,9,72,268,0,23,12,0,1,0,0,0,176,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,3,995,111,5 +5,0,0,7,1,74,78,1,169,25,55,0,0,7,42,0,109,0,9,7,0,0,0,5,0,11,12,0,10,0,3,0,0,1,30,0,75,54,12,0,292,0,0,0,1,0,0,5,0,0,0,0,6,248,0,0,0,0,0,1,0,0,1,9,0,45,0,0,12436,74,461,0,11,0,0,0,0,0,26,0,0,0,0,0,8,20,1061,0,1,30,1,0,7,123,0,1252,245,9,0,0,4,1,756,0,28,0,0,2161,0,0,0,0,12,5,9,0,4,0,0,1,0,0,0,30,7,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,31,0,1,0,0,0,0,0,0,0,0,0,1,1,5,0,0,0,0,1,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,10,10,10,0,0,0,1267,0,144,0,0,0,10,48,302,1024,1049,0,0,0,0,1,0,3,0,0,0,0,0,0,3786,5,0,0,0,0,0,0,0,0,0,0,0,5,6,0,0,0,0,0,1,0,210,49,471,8,0,0,550,0,909,0,1,0,277,799,0,0,0,0,0,0,0,0,0,469,1,0,0,0,12,0,0,0,0,4,174,291,0,0,457,0,8,0,0,3,2540,0,0,3297,3,0,1,1,0,0,0,0,8,0,0,0,4,0,0,0,0,0,23,0,0,0,14,5,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,3,8,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,102,1,1,1,0,58,0,0,0,0,9,105,169,0,27,9,0,0,0,0,0,377,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,37,0,0,0,0,0,0,0,0,0,0,0,1,0,4,1249,165,5 +1,0,0,3,0,18,12,0,46,0,11,0,0,0,2,0,15,0,6,6,0,0,0,2,0,0,0,0,0,0,1,0,0,0,5,0,18,6,0,0,57,0,2,0,1,0,0,2,0,0,0,0,0,160,0,1,0,0,0,1,0,0,0,0,0,4,0,0,1670,18,98,0,0,0,0,0,0,0,10,0,0,0,1,0,7,13,530,0,0,5,0,0,1,30,0,268,35,3,0,0,2,0,150,0,0,0,0,260,0,0,0,0,3,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,100,0,59,0,0,0,0,3,40,182,143,0,0,0,0,1,0,0,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,8,3,121,3,0,0,152,0,315,0,0,0,76,14,0,5,0,0,0,0,0,0,0,92,1,0,0,0,8,0,0,0,0,0,100,103,0,0,77,0,0,0,0,0,225,0,0,761,0,0,1,10,1,0,0,0,4,0,5,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,0,0,0,0,0,1,23,306,0,1,0,0,1,0,0,0,91,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,9,0,0,0,0,0,0,0,0,0,0,0,0,2,298,20,5 +0,0,0,3,0,10,3,0,11,1,2,0,0,1,4,0,15,0,16,3,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,10,10,6,0,0,14,0,1,0,1,0,0,1,0,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,2,0,0,3235,10,44,0,1,0,0,0,0,0,6,0,0,0,0,0,2,8,1040,0,0,0,0,0,0,0,0,13,0,1,0,0,2,0,7,0,0,0,0,410,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,26,0,19,0,0,0,0,3,24,8,37,0,0,0,0,1,0,0,0,0,0,0,0,0,3296,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,8,721,16,0,0,758,0,179,0,0,0,63,9118,0,0,0,0,0,0,0,0,0,52,1,0,0,0,6,0,0,0,0,0,745,32,0,0,0,0,0,0,0,0,438,0,0,240,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,117,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,10,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,345,108777,5 +1,0,0,10,1,39,35,1,81,2,17,0,0,17,8,0,817,0,9,2,0,0,0,7,0,10,0,0,7,0,1,0,0,1,3,5387,40,54,0,0,77,0,0,0,1,0,0,1,0,0,0,0,1,442,0,0,0,0,0,1,0,0,0,2,0,2,0,0,13673,39,933,0,5,0,0,0,0,0,19,0,0,0,0,0,8,42,2015,0,1,3,1,0,1,0,0,465,55,2,0,0,4,1,885,0,1,78,0,3166,0,0,0,0,3,1,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,502,0,68,0,0,0,3,6,441,746,491,0,0,0,0,1,0,4,0,0,0,0,0,0,259,1,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,378,31,510,11,0,0,429,0,546,0,1,0,159,27,0,0,0,0,0,0,0,0,0,984,1,0,0,0,9,0,0,0,0,2,153,52,0,0,84,0,0,0,0,0,2750,1,0,94,9,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,1,1,1,0,13,0,0,0,0,9,43,92,0,6,12,0,0,0,0,0,173,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,19,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1049,188,5 +1,0,0,10,0,31,5,0,90,18,20,0,1,2,26,9,121,0,7,4,0,0,0,1,17,2,39,0,32,0,1,0,0,0,18,0,31,174,28,0,110,0,0,0,1,0,0,9,0,0,0,0,20,208,0,0,0,0,0,1,0,0,0,0,0,10,0,0,12615,31,441,0,33,0,0,0,0,0,42,0,0,0,0,0,1,12,3180,0,0,18,0,0,2,15,0,366,30,13,0,0,2,0,481,0,7,0,6,771,0,0,0,0,0,0,8,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,9,4,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,6,1,0,183,0,0,0,0,0,0,1807,0,146,0,0,0,40,126,77,475,1792,0,0,0,0,1,0,6,0,0,0,0,0,0,1636,0,0,0,0,0,0,0,0,0,0,0,0,9,0,5,0,0,0,0,0,1,8,26,270,12,0,0,269,0,816,0,0,0,200,59,0,0,0,0,0,0,2,0,0,281,1,0,0,0,22,0,0,0,0,21,134,123,0,0,61,0,0,0,0,0,1350,0,0,2436,0,0,1,0,0,0,0,0,23,0,0,0,1,0,0,0,0,0,20,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,56,0,0,0,0,1,49,454,0,74,0,0,0,0,0,0,238,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,9,1418,368,5 +1,0,0,29,3,69,96,3,235,45,34,0,0,0,97,0,214,0,13,6,0,0,0,15,1,5,15,0,38,0,4,0,0,3,47,0,72,153,61,0,303,0,0,0,1,0,0,7,0,0,0,0,20,377,0,0,0,0,0,1,0,0,0,14,0,63,0,0,10119,69,682,0,42,0,0,0,0,0,28,0,0,0,0,0,4,16,1020,0,3,47,3,0,7,67,0,887,105,10,0,0,8,3,654,0,50,0,0,2796,0,0,0,0,46,0,5,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,973,0,176,0,0,0,40,77,123,1014,924,0,0,0,0,1,0,2,0,0,0,0,0,0,3125,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,322,122,1207,94,0,0,867,0,1695,0,3,0,414,298,0,0,0,0,0,0,0,0,0,689,1,0,0,0,22,0,0,0,0,21,209,248,0,0,294,0,1,0,0,0,1500,0,0,2450,0,0,1,0,1,0,0,0,12,0,0,0,5,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,72,1,1,1,0,60,0,0,0,0,25,119,503,0,62,0,0,0,0,0,0,450,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,51,0,0,0,0,0,0,0,0,0,0,0,3,0,8,1347,280,5 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1,0,0,0,0,0,1,0,0,14,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,86,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,35,5 +0,0,0,7,0,40,9,0,60,5,7,0,0,6,9,0,1330,0,7,4,0,0,0,8,1,13,9,0,11,0,1,0,0,0,6,898,40,6,11,0,77,0,0,0,1,0,0,1,0,0,0,0,4,196,0,0,0,0,0,1,0,0,0,2,0,5,0,0,25942,40,1440,0,9,0,0,0,0,0,16,0,0,0,0,0,9,24,4372,0,0,6,0,0,0,0,0,224,20,2,0,0,2,0,1429,0,1,2,0,4377,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,12,12,12,0,0,0,2441,0,44,0,0,0,7,35,268,756,2419,0,0,0,0,1,0,3,0,0,0,0,0,0,2469,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,84,29,254,11,0,0,247,0,414,0,0,0,99,89,0,0,0,0,0,0,4,0,0,1428,1,0,0,0,13,0,0,0,0,4,151,13,0,0,11,0,0,0,0,0,3893,1,0,2168,8,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,29,0,0,0,0,1,46,114,0,22,12,0,0,0,0,0,82,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1706,62,5 +0,0,0,38,0,52,13,0,139,33,25,0,1,7,49,0,109,0,7,5,0,0,0,6,12,4,24,0,26,0,0,0,0,0,22,0,52,200,45,0,375,0,0,0,1,0,0,4,0,0,0,0,16,251,0,0,0,0,0,1,0,0,0,0,0,26,0,0,2383,52,420,0,27,0,0,0,0,0,9,0,0,0,0,0,6,11,157,0,0,22,0,0,4,57,0,745,80,4,0,0,2,0,673,0,14,0,4,2818,0,0,0,0,5,0,4,0,3,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,199,0,132,0,0,0,32,121,130,676,247,0,0,0,0,1,0,0,0,0,0,0,0,0,503,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,71,75,351,43,0,0,377,0,1356,0,0,0,257,76,0,0,0,0,0,0,0,0,0,350,1,0,0,0,23,0,0,0,0,17,152,268,0,0,127,0,0,0,0,0,1501,0,0,49,0,0,1,6,0,0,0,0,9,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,69,1,1,1,0,74,0,0,0,0,1,74,332,0,54,0,0,0,0,0,0,301,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,43,2,0,0,0,0,0,0,0,0,0,0,0,0,2,903,80,5 +0,0,0,19,0,69,56,0,597,117,239,0,1,5,129,0,174,0,7,9,0,0,0,7,3,15,45,0,27,0,2,7,0,0,28,103,69,413,56,0,1220,0,0,0,1,0,0,11,0,0,0,0,17,2207,0,0,0,0,0,1,0,0,0,0,0,100,0,0,16645,69,1357,0,33,0,0,0,0,0,57,0,0,0,0,0,10,39,2143,0,0,28,0,0,3,511,0,4490,1055,16,4,0,2,0,2770,0,89,1,7,4764,0,0,0,0,11,0,5,0,0,0,0,1,8,0,0,22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,12,12,12,0,0,0,1169,0,296,0,0,0,32,202,449,57173,1253,0,0,0,0,1,0,5,0,0,0,0,0,0,5598,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,1,0,32,136,1170,31,0,0,671,0,994,0,0,0,508,307,8,331,0,0,0,0,0,0,0,1208,1,0,0,0,19,0,0,0,0,15,284,19090,0,0,14041,0,12,0,0,0,1959,1,0,2540,9,0,1,18,0,0,0,0,14,0,1,0,10,0,0,0,0,0,101,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,8,0,0,0,0,0,9,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,211,1,1,1,0,170,0,0,0,0,1,97,478,0,84,12,0,0,0,0,0,1146,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,121,17,0,0,0,0,0,0,0,0,0,0,0,0,7,15997,725,5 +2,0,0,21,1,124,41,1,177,81,27,1,1,25,110,0,293,0,9,10,0,0,0,10,3,17,24,0,33,0,23,0,0,1,52,864,125,836,44,0,372,0,0,0,1,0,0,3,0,0,0,0,31,412,0,0,0,0,0,1,0,0,0,0,0,71,0,0,22552,124,722,0,52,0,0,0,0,0,27,0,0,0,0,0,14,29,2578,0,1,52,1,0,5,46,0,818,105,4,1,0,4,1,978,0,58,0,21,5383,0,0,0,0,36,0,7,0,0,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,35,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,152,12,12,12,0,0,0,1735,0,191,0,0,0,60,156,412,1745,1747,0,0,0,0,1,0,7,0,0,0,0,0,0,3935,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,263,128,834,26,0,0,803,0,5069,0,1,0,415,172,0,0,0,0,0,0,0,0,0,684,1,0,0,0,23,0,0,0,0,29,298,180,0,0,176,0,1,0,0,0,2529,1,0,3377,7,0,1,4,0,0,0,0,5,0,0,0,3,0,0,0,0,0,83,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,7,26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,158,1,1,1,0,206,0,0,0,0,9,177,374,0,83,14,0,0,0,0,0,343,21,0,0,0,0,0,0,0,0,0,0,0,2,0,1,91,0,0,0,0,0,0,0,0,0,0,0,1,0,3,2422,336,5 +3,0,0,18,1,75,41,1,111,8,23,0,0,18,16,0,2305,0,9,4,0,0,0,9,0,13,12,0,17,0,1,1,0,1,18,5673,76,54,2234,0,1243,0,0,0,1,0,0,2,0,0,0,0,5,561,0,0,0,0,0,1,0,0,0,5,0,11,0,0,289079,75,2510,0,16,0,0,0,0,0,32,0,0,0,0,0,10,62,32869,0,1,18,1,0,1,0,0,551,60,3,0,0,4,1,2472,0,8,86,0,87801,0,0,0,0,3354,3,2,0,0,0,0,1,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,5,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,1133,0,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,12,12,12,0,0,0,21625,0,89,0,0,0,12,4484,1726,21789,23836,0,0,0,0,1,0,5,0,0,0,0,0,0,16914,3,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,1,0,404,52,729,22,0,0,602,0,1197,2,1,0,269,130,0,0,0,0,0,0,0,0,0,2523,1,0,0,0,13,0,0,0,0,4,222,94,0,0,107,0,0,0,0,0,13703,1,0,483,18,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,9,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1212,1,1,1,0,11169,0,0,0,0,9,94,238,0,30,14,0,0,0,0,0,218,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,25,0,0,0,0,0,0,0,0,0,0,0,1,0,3,8959,1348,5 +1,0,0,4,0,13,4,0,4,6,4,0,0,0,10,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,13,6,0,0,26,0,0,0,1,0,0,0,0,0,0,0,0,37,0,0,0,0,0,1,0,0,0,0,0,10,0,0,207,13,30,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,4,0,0,0,0,0,5,0,0,0,0,2,0,26,0,8,0,0,193,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,16,0,25,0,0,0,0,3,28,12,32,0,0,0,0,1,0,1,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,11,59,4,0,0,86,0,323,0,0,0,53,6,0,0,0,0,0,0,0,0,0,37,0,0,0,0,2,0,0,0,0,1,95,40,0,0,0,0,0,0,0,2,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,17,60,0,1,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,51,5 +16,0,0,14,1,67,100,1,143,26,21,0,0,7,39,0,174,0,9,4,0,0,0,7,8,15,44,0,22,0,2,6,0,1,28,0,68,161,19,0,300,0,0,0,1,0,0,6,0,0,0,0,16,421,0,0,0,0,0,1,0,0,0,0,0,40,0,0,4251,67,564,0,28,0,0,0,0,0,26,0,0,0,0,0,10,24,340,0,1,28,1,0,3,70,0,972,90,9,0,0,4,1,823,0,34,0,0,3219,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,8,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,8,15,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,43,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,10,10,10,0,0,0,302,0,112,0,0,0,30,115,270,957,294,0,0,0,0,1,0,4,0,0,2,0,0,0,1165,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,244,66,610,18,0,0,767,0,2608,0,1,0,485,96,0,0,0,0,0,0,0,0,0,493,1,0,0,0,19,0,0,0,0,15,211,374,0,0,239,0,0,0,2,0,1580,0,0,184,3,0,1,1,0,0,0,0,12,0,0,0,2,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,73,1,1,1,0,47,0,0,0,0,16,96,659,0,80,9,0,0,0,0,0,321,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,34,0,0,0,0,0,0,0,0,0,0,0,1,0,7,824,205,5 +0,0,0,4,0,14,4,0,93,1,42,0,0,0,4,0,26,0,7,1,0,0,0,1,0,0,6,0,1,0,1,2,0,0,3,0,14,6,0,0,106,0,0,0,1,0,0,4,0,0,0,0,2,129,0,0,0,0,0,1,0,0,0,0,0,8,0,0,1752,14,194,0,4,0,0,0,0,0,15,0,0,0,0,2,1,9,342,0,0,3,0,0,1,83,0,679,180,6,0,0,2,0,362,0,2,0,0,205,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,261,0,49,0,0,0,4,17,36,293,261,0,0,0,0,1,0,0,0,0,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,5,84,4,0,0,124,0,264,0,0,0,59,4,0,0,0,0,0,0,0,0,0,176,1,0,0,0,2,0,0,0,0,1,96,178,0,0,394,0,0,0,0,0,117,0,0,447,0,0,1,0,1,0,0,0,7,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,22,0,0,0,0,1,17,172,0,10,0,0,0,0,0,0,160,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,210,69,5 +3,0,0,0,3,59,102,6,187,3,17,0,0,0,5,0,276,0,11,5,0,1,0,3,2,1,6,0,6,0,5,1,0,2,37,0,62,122,4,0,325,0,0,0,1,0,1,8,0,0,0,0,5,256,0,1,0,0,0,1,1,0,0,0,0,5,0,0,2212,59,640,0,12,0,0,0,0,0,35,3,0,0,3,0,4,14,241,0,6,37,2,0,0,85,0,720,45,13,0,0,2,3,674,0,2,0,0,1019,0,0,0,0,16,0,0,0,0,0,0,1,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,2,0,0,0,2,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,0,10,0,0,0,0,0,0,0,0,4,4,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,2,0,14,1,2,20,1,1,1,0,0,1,267,1,194,0,0,0,10,22,113,505,493,0,0,0,0,1,0,0,0,0,0,0,0,0,1389,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,106,11,649,3,0,0,841,0,4155,0,0,0,518,39,0,7,0,0,0,0,0,0,0,598,1,0,0,0,11,0,0,0,0,4,178,350,0,0,100,0,2,0,0,0,578,0,0,137,1,0,1,14,0,0,0,0,17,0,0,0,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,11,1,0,0,0,0,0,8,18,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,1,17,0,0,0,1,48,99,701,0,19,0,0,0,0,0,0,421,2,0,0,0,0,0,0,0,0,0,0,0,3,0,2,3,0,0,0,0,9,0,0,0,0,0,0,3,0,9,369,141,5 +1,0,0,9,1,38,236,1,356,43,97,0,0,2,60,0,88,0,9,5,0,0,0,7,0,10,6,0,6,0,1,0,0,1,11,0,39,143,8,0,650,0,0,0,1,0,0,8,0,0,0,0,3,340,0,0,0,0,0,1,0,0,9,2,0,78,0,0,8483,38,867,0,5,0,0,0,0,0,43,0,0,0,0,0,9,23,3298,0,1,11,1,0,7,309,0,2521,360,14,0,0,4,1,1573,0,46,0,0,1446,0,0,0,0,27,0,10,0,0,0,0,1,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,2550,0,178,0,0,0,4,25,174,3509,2403,0,0,0,0,1,0,3,0,0,0,0,0,0,2340,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,156,73,482,21,0,0,766,0,2096,0,1,0,533,61,0,0,0,0,0,0,0,0,0,848,1,0,0,0,12,0,0,0,0,3,188,780,0,0,881,0,0,0,0,24,575,0,0,320,3,0,1,1,0,0,0,0,23,0,0,0,12,0,0,0,0,0,41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,1,1,1,0,22,0,0,0,0,9,50,324,0,14,9,0,0,0,0,0,791,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,51,0,0,0,0,0,0,0,0,0,0,0,1,0,10,1127,198,5 +1,0,0,15,1,28,8,5,42,21,10,0,0,0,32,0,40,0,7,10,0,1,0,1,0,5,9,0,7,0,2,0,0,1,10,0,29,144,13,0,116,0,0,0,1,0,0,2,0,0,0,0,5,133,0,0,0,0,0,1,0,0,0,2,0,35,0,0,796,28,220,0,11,0,0,0,0,0,8,3,0,0,0,0,3,6,72,0,5,10,1,0,2,16,0,183,25,3,0,0,2,1,224,0,26,0,0,783,0,0,0,0,6,0,1,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,94,0,56,0,0,0,10,32,65,190,98,0,0,0,0,1,0,0,0,0,0,0,0,0,335,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,16,30,197,17,0,0,172,0,1212,0,0,0,75,30,0,0,0,0,0,0,0,0,0,139,1,0,0,0,12,0,0,0,0,5,119,56,0,0,50,0,0,0,0,0,324,0,0,69,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,28,0,0,0,0,1,39,84,0,23,0,0,0,0,0,0,129,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,23,0,0,0,0,0,0,0,0,0,0,0,2,0,1,391,77,5 +1,0,0,7,0,25,3,0,10,13,3,0,0,0,23,0,36,0,7,2,0,0,0,1,2,2,9,0,6,0,2,0,0,0,14,0,25,6,6,0,95,0,1,0,1,0,0,1,0,0,0,0,4,564,0,0,0,0,0,1,0,0,0,0,0,20,0,0,190986,25,100,0,9,0,0,0,0,0,7,0,0,0,0,0,2,7,37928,0,0,14,0,0,0,0,0,44,0,2,0,0,2,0,118,0,17,0,0,680,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,8,0,0,0,0,0,0,21205,0,43,0,0,0,8,28,56,70,21210,0,0,0,0,0,0,0,0,0,0,0,0,0,30544,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,20,199,7,0,0,145,0,449,0,0,0,81,16,0,0,0,0,0,0,0,0,0,82,1,0,0,0,5,0,0,0,0,5,116,22,0,0,0,0,0,0,0,0,21007,0,0,68448,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,13,0,0,0,0,1,39,86,0,19,0,0,1,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21180,58,5 +1,0,0,6,1,38,35,1,64,2,10,0,0,9,6,0,717,0,9,2,0,0,0,7,0,10,0,0,6,0,1,0,0,1,3,5475,39,54,0,0,54,0,0,0,1,0,0,1,0,0,0,0,1,429,0,0,0,0,0,1,0,0,0,2,0,2,0,0,13574,38,810,0,4,0,0,0,0,0,19,0,0,0,0,0,8,34,2006,0,1,3,1,0,1,0,0,291,30,2,0,0,4,1,733,0,1,32,0,2505,0,0,0,0,3,1,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,12,12,12,0,0,0,707,0,64,0,0,0,2,5,407,564,697,0,0,0,0,1,0,4,0,0,0,0,0,0,246,1,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,216,28,491,7,0,0,432,0,592,0,1,0,164,38,0,0,0,0,0,0,0,0,0,850,1,0,0,0,9,0,0,0,0,2,156,42,0,0,35,0,0,0,0,0,2368,1,0,66,9,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,43,1,1,1,0,9,0,0,0,0,9,42,92,0,5,12,0,0,0,0,0,103,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,2,799,169,5 +5,0,0,9,0,49,26,0,105,23,39,0,0,0,30,0,19,0,7,3,0,0,0,3,0,2,0,0,3,0,1,0,0,0,16,0,49,106,0,0,221,0,0,1,1,1,0,1,0,0,0,0,0,216,0,1,0,0,0,1,0,0,1,0,0,39,0,0,7093,49,221,0,5,0,0,0,0,0,7,0,0,0,0,0,6,30,1704,0,0,16,0,0,4,95,0,786,160,1,0,0,2,0,476,0,28,0,0,966,0,0,2,0,2,0,0,0,0,0,0,1,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,1025,0,107,0,0,0,2,5,110,661,986,0,0,0,0,1,0,0,0,0,0,0,0,0,2402,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,13,31,271,11,0,0,279,0,1022,0,0,0,140,46,0,0,0,0,2,0,4,0,0,226,1,0,0,0,6,0,0,0,0,1,146,214,0,0,320,0,1,0,0,3,584,0,0,1540,0,0,1,1,0,0,0,0,4,0,1,0,14,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,11,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,1,0,0,72,1,1,1,0,4,0,0,0,0,1,65,207,0,5,1,0,0,0,0,0,245,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,29,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1004,95,5 +0,0,0,1,0,9,4,0,12,0,5,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9,6,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,2,0,0,15,9,33,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0,0,0,0,0,1,9,0,84,15,0,0,0,2,0,48,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,13,0,0,0,0,3,22,79,20,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,32,1,0,0,40,0,66,0,0,0,7,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,2,0,0,0,0,0,91,20,0,0,33,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,9,0,0,1,0,0,0,0,0,0,28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,4,5 +0,0,0,3,0,10,2,0,7,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,8,0,0,0,1,0,0,1,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,3,0,0,382,10,31,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,56,0,0,1,0,0,0,0,0,7,0,2,0,0,2,0,8,0,1,0,0,157,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,55,0,28,0,0,0,0,3,25,6,68,0,0,0,0,1,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,73,3,0,0,101,0,142,0,0,0,46,1,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,92,36,0,0,0,0,0,0,0,0,41,0,0,72,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,116,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,76,14,5 +0,0,0,3,0,12,2,0,7,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,10,0,3,0,1,0,0,3,0,0,0,0,0,92,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1380,12,41,0,1,0,0,0,0,0,12,0,0,0,0,0,1,6,546,0,0,2,0,0,0,0,0,11,0,4,0,0,2,0,8,0,1,0,0,427,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,85,0,42,0,0,0,0,3,29,6,98,0,0,0,0,1,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,83,3,0,0,136,0,309,0,0,0,74,6,0,0,0,0,0,0,0,0,0,35,1,0,0,0,2,0,0,0,0,0,98,59,0,0,0,0,0,0,0,0,223,0,0,785,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,14,195,0,1,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,282,58,5 +0,0,0,16,2,25,12,8,51,21,14,0,0,0,31,0,32,0,7,6,0,3,2,0,0,1,0,0,2,0,1,0,0,2,10,0,27,60,60,0,125,0,0,0,1,0,0,0,0,0,0,0,1,148,0,0,0,0,0,1,0,0,0,2,0,36,0,0,349,25,235,0,3,0,0,0,0,0,0,6,0,0,0,0,1,1,3,0,8,10,2,0,2,22,0,197,35,0,0,0,2,2,190,0,25,0,0,620,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,35,0,44,0,0,0,2,7,53,179,770,0,0,0,0,1,0,0,0,0,0,0,0,0,815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,31,187,18,0,0,173,0,532,0,0,0,74,16,0,0,0,0,0,0,0,0,0,147,0,0,0,0,11,0,0,0,0,2,107,58,0,0,80,0,0,0,0,2,599,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,4,0,0,0,0,18,37,14,0,4,0,0,0,0,0,0,106,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,23,0,0,0,0,0,0,0,0,0,0,0,4,0,0,492,75,5 +0,0,0,0,0,37,27,0,60,7,14,0,1,0,11,0,34,0,7,3,0,0,0,2,0,1,3,0,2,0,1,0,0,0,5,0,37,25,5,0,130,0,0,0,1,0,0,3,0,0,0,0,1,129,0,0,0,0,0,1,0,0,0,0,0,6,0,0,1755,37,162,0,3,0,0,0,0,0,14,0,0,0,0,0,3,7,157,0,0,5,0,0,2,38,0,319,40,5,0,0,4,0,253,0,5,0,0,541,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,197,0,95,0,0,0,2,23,96,270,197,0,0,0,0,1,0,0,0,0,0,0,0,0,750,2,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,14,27,208,2,0,0,246,0,1291,0,0,0,115,27,0,0,0,0,0,0,0,0,0,154,1,0,0,0,5,0,0,0,0,2,130,132,0,0,120,0,0,0,0,0,196,0,0,387,0,0,1,1,0,0,0,0,5,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,24,0,0,0,0,1,42,182,0,7,0,0,0,0,0,0,144,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,289,111,5 +0,0,0,16,0,51,8,0,57,18,10,0,1,5,31,0,115,0,7,6,0,0,0,7,1,13,12,0,12,0,3,0,0,0,11,4,51,494,14,0,212,0,0,0,1,0,0,6,0,0,0,0,7,273,0,0,0,0,0,1,0,0,0,0,0,14,0,0,3404,51,278,0,13,0,0,0,0,0,26,0,0,0,0,0,9,28,426,0,0,11,0,0,0,8,0,216,20,5,2,0,2,0,356,0,9,0,5,2129,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,12,12,12,0,0,0,215,0,152,0,0,0,12,42,260,338,201,0,0,0,0,1,0,3,0,0,0,1,1,0,550,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,41,48,421,20,0,0,351,0,887,0,0,0,198,7335,0,0,0,0,0,0,0,0,0,234,1,0,0,0,14,0,0,0,0,7,148,137,0,0,37,0,0,0,0,0,4753,1,0,177,4,0,1,1,0,0,0,0,8,0,0,0,4,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,28,0,0,0,0,1,62,289,0,28,12,0,0,0,0,0,108,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,22,0,0,0,0,0,0,0,0,0,0,0,0,0,6,576,128,5 +6,0,0,17,1,185,150,1,233,34,56,0,0,10,48,0,3012,0,47,9,0,0,0,8,1,17,18,0,28,0,1,0,0,1,95,10260,186,54,62,0,350,0,0,0,1,0,0,11,2,0,0,0,7,834,0,0,0,0,0,1,0,0,6,6,0,47,0,0,59229,185,3711,0,25,0,0,0,0,0,173,0,0,0,0,0,11,84,10254,0,1,95,1,0,3,114,0,1362,215,23,0,0,4,1,3721,0,39,65,0,8546,0,0,0,0,27,6,5,0,0,0,0,1,0,0,0,60,15,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,4,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,36,0,1,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,1,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,93,12,12,12,0,0,0,6433,0,425,0,0,0,18,3336,892,2290,6315,0,0,0,0,1,0,7,0,0,0,0,0,0,5333,3,0,0,0,0,0,0,0,0,0,0,0,12,4,2,0,0,0,0,1,0,243,92,1254,29,0,0,1195,0,1159,0,1,0,765,298,0,0,0,0,0,0,4,0,0,3556,1,0,8,0,18,0,0,0,0,8,321,448,0,0,559,0,5,0,0,6,10866,1,0,1789,21,0,1,1,1,0,0,0,35,0,7,0,10,0,0,0,0,0,35,0,0,0,9,7,0,2,0,0,0,0,0,0,0,0,23,0,0,0,0,0,21,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0,0,0,0,0,0,0,1,0,1,236,1,1,1,0,86,0,0,0,0,9,281,1223,0,50,14,0,0,0,0,0,484,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,42,0,0,0,0,0,0,0,0,0,0,0,1,0,8,3098,309,5 +0,0,0,5,0,17,8,0,20,9,10,0,0,0,13,0,17,0,7,3,0,0,0,0,0,0,3,0,2,0,1,0,0,0,7,0,17,6,3,0,59,0,0,0,1,0,0,0,0,0,0,0,1,53,0,0,0,0,0,1,0,0,0,0,0,19,0,0,190,17,70,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,7,0,0,2,16,0,146,25,0,0,0,2,0,124,0,11,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,25,0,27,0,0,0,2,10,34,100,34,0,0,0,0,1,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,14,79,5,0,0,84,0,245,0,0,0,48,6,0,0,0,0,0,0,0,0,0,75,0,0,0,0,3,0,0,0,0,2,99,50,0,0,50,0,0,0,0,2,53,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,2,0,0,0,0,1,24,55,0,6,0,0,0,0,0,0,73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,29,5 +0,0,0,2,1,10,26,1,25,2,4,0,0,0,4,0,58,0,9,2,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,11,54,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,1,0,0,108,10,84,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,1,1,1,0,1,0,0,42,0,0,0,0,4,1,16,0,1,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,21,0,0,0,0,3,31,11,28,0,0,0,0,1,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,15,189,3,0,0,206,0,354,0,1,0,54,9,0,0,0,0,0,0,0,0,0,126,0,0,0,0,2,0,0,0,0,1,109,13,0,0,0,0,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,1,1,1,0,0,0,0,0,0,9,12,37,0,1,0,0,0,0,0,0,35,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,64,5 +42,0,0,0,0,58,279,0,526,104,127,0,1,0,109,0,34,0,6,4,0,0,0,17,0,3,6,0,4,0,1,0,0,0,47,0,58,25,32,0,1145,0,0,0,0,0,0,0,0,0,0,0,3,140,0,0,0,0,0,1,0,0,0,0,0,112,0,0,2274,58,1125,0,5,0,0,0,0,0,0,0,0,0,0,0,18,18,178,0,0,47,0,0,4,519,0,3976,605,0,0,0,4,0,2548,0,109,0,0,2600,0,0,0,0,14,2,0,0,0,0,26,0,0,0,0,26,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,0,6,0,0,0,0,0,0,162,0,210,0,0,0,4,74,142,2178,175,0,0,0,0,0,0,0,0,0,0,0,0,0,2116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,14,123,363,0,0,0,516,0,374,0,0,0,474,89,0,0,0,0,0,0,0,0,0,1082,0,0,0,0,21,0,0,0,0,3,197,921,0,0,1321,0,0,0,0,25,260,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,72,1,1,1,0,149,0,0,0,0,1,105,47,0,14,0,0,0,0,0,0,1083,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,521,34,5 +0,0,0,14,0,85,59,0,182,59,59,0,1,5,79,0,96,0,7,11,0,0,0,5,2,26,20,0,15,0,13,1,0,0,21,0,85,66,24,0,384,0,0,0,1,0,0,2,0,0,0,0,8,224,0,0,0,0,0,1,0,0,0,0,0,76,0,0,17418,85,518,0,15,0,0,0,0,0,14,0,0,0,0,0,11,20,1916,0,0,21,0,0,4,138,0,1248,240,4,0,0,2,0,940,0,56,1,4,3157,0,0,0,0,63,0,3,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,56,10,10,10,0,0,0,1744,0,145,0,0,0,14,74,294,1050,1787,0,0,0,0,1,0,4,0,0,0,0,0,0,4837,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,2,0,32,84,656,19,0,0,569,0,998,0,0,0,360,271,0,0,0,0,0,0,0,0,0,488,1,0,0,0,18,0,0,0,0,201,260,361,0,0,655,0,0,0,0,0,1586,0,0,5053,3,0,1,1,0,0,0,0,6,0,0,0,4,0,0,0,0,0,60,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,3,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,113,1,1,1,0,73,0,0,0,0,1,106,519,0,42,33,0,0,0,0,0,386,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,67,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1743,390,5 +0,0,0,11,0,32,6,0,69,31,16,0,1,3,45,0,60,0,7,5,0,0,0,3,2,4,12,0,11,0,1,0,0,0,15,0,32,154,24,0,207,0,0,0,1,0,0,6,0,0,0,0,6,728,0,1,0,0,0,1,0,0,0,0,0,30,0,0,2708,32,261,0,12,0,0,0,0,0,25,0,0,0,0,0,3,11,287,0,0,15,0,0,2,23,0,280,40,7,0,0,2,0,335,0,27,0,6,1504,0,0,0,0,29,0,6,0,0,0,0,1,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,304,0,130,0,0,0,12,53,71,393,325,0,0,0,0,1,0,0,0,0,0,0,0,0,804,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,13,43,251,12,0,0,248,0,8861,0,0,0,141,60,0,2,0,0,0,0,0,0,0,207,1,0,0,0,10,0,0,0,0,7,132,111,0,0,123,0,0,0,0,0,465,0,0,328,0,0,1,0,0,0,0,0,12,0,2,0,3,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,37,0,0,0,0,1,47,184,0,28,0,0,0,0,0,0,163,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,35,0,0,0,0,0,0,0,0,0,0,0,0,0,6,554,82,5 +0,0,0,4,0,23,2,0,25,3,3,0,0,0,12,0,26,0,6,8,0,0,0,1,0,1,3,0,7,0,1,0,0,0,6,0,23,6,24,0,50,0,0,0,1,0,0,4,0,0,0,0,4,149,0,0,0,0,0,1,0,0,0,0,0,13,0,0,2713,23,81,0,8,0,0,0,0,0,18,0,0,0,0,0,4,9,372,0,0,6,0,0,0,0,0,50,0,5,0,0,2,0,53,0,8,0,0,971,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,26,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,279,0,91,0,0,0,8,54,46,95,275,0,0,0,0,1,0,0,0,0,0,0,0,0,721,0,0,0,0,0,0,0,0,0,0,0,0,4,0,18,0,0,0,0,0,0,8,12,195,4,0,0,237,0,564,0,0,0,154,17,0,0,0,0,0,0,0,0,0,74,1,0,0,0,9,0,0,0,0,4,112,119,0,0,0,0,0,0,0,0,238,0,0,380,0,0,1,0,1,0,0,0,7,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,92,0,0,0,0,1,29,448,0,12,0,0,1,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,350,70,5 +1,0,0,8,1,30,85,1,155,17,48,0,0,0,30,0,83,0,9,3,0,0,0,1,0,2,6,0,4,0,1,0,0,1,16,0,31,106,10,0,238,0,0,0,1,0,0,4,0,0,0,0,2,234,0,0,0,0,0,1,0,0,2,0,0,40,0,0,2046,30,384,0,5,0,0,0,0,0,16,0,0,0,0,0,1,6,181,0,1,16,1,0,5,114,0,964,200,7,0,0,4,1,597,0,25,0,0,900,0,0,0,0,12,0,4,0,0,0,0,1,0,0,0,21,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,332,0,146,0,0,0,4,26,70,831,217,0,0,0,0,1,0,0,0,0,0,0,0,0,1020,0,0,0,0,0,0,0,0,0,0,0,0,4,0,6,0,0,0,0,0,0,128,48,340,9,0,0,489,0,1701,0,1,0,298,107,0,0,0,0,0,0,3,0,0,410,1,0,0,0,4,0,0,0,0,2,150,311,0,0,438,0,0,0,0,3,371,0,0,182,0,0,1,0,0,0,0,0,6,0,0,0,5,0,0,0,0,0,18,1,0,4,0,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,34,1,1,1,0,32,0,0,0,0,9,47,398,0,13,0,0,0,0,0,0,322,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,21,0,0,0,0,0,0,0,0,0,0,0,1,0,1,574,140,5 +3,0,0,10,1,82,120,1,211,16,58,0,0,9,26,0,2362,0,9,7,0,0,0,8,0,14,12,0,19,0,1,0,0,1,25,16975,83,54,14,0,271,0,0,0,1,0,0,4,0,0,0,0,5,758,0,0,0,0,0,1,0,0,2,6,0,30,0,0,134696,82,2808,0,15,0,0,0,0,0,51,0,0,0,0,0,10,79,22452,0,1,25,1,0,4,108,0,1268,205,8,0,0,4,1,2960,0,20,79,0,7806,0,0,0,0,16,3,4,0,0,0,0,1,0,0,0,26,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,1,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,1,0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,12,12,12,0,0,0,17104,0,121,0,0,0,12,63,712,2686,17012,0,0,0,0,1,0,7,0,0,0,0,0,0,3379,3,0,0,0,0,0,0,0,0,0,0,0,82,4,0,0,0,0,0,1,0,219,47,697,11,0,0,749,0,2818,0,1,0,405,205,0,0,0,0,0,0,3,0,0,2795,1,0,0,0,15,0,0,0,0,6,232,291,0,0,493,0,4,0,0,4,9088,1,0,1691,24,0,1,1,0,0,0,0,4,0,5,0,7,0,0,0,0,0,16,0,0,0,6,5,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,24,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,110,1,1,1,0,53,0,0,0,0,9,108,301,0,32,14,0,0,0,0,0,378,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,26,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3278,154,5 +0,0,0,4,0,16,9,0,46,0,13,0,0,0,3,0,15,0,7,1,0,0,0,3,0,0,0,0,0,0,1,0,0,0,3,0,16,6,0,0,84,0,0,0,1,0,0,4,0,0,0,0,0,114,0,0,0,0,0,1,0,0,0,0,0,11,0,0,2950,16,111,0,1,0,0,0,0,0,19,0,0,0,0,0,3,9,941,0,0,3,0,0,1,38,0,311,15,6,0,0,2,0,197,0,1,0,0,459,0,0,0,0,1,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,541,0,67,0,0,0,0,3,47,271,560,0,0,0,0,1,0,0,0,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,4,107,4,0,0,192,0,394,0,0,0,121,4,0,0,0,0,0,0,0,0,0,93,1,0,0,0,4,0,0,0,0,0,100,183,0,0,31,0,0,0,0,1,70,0,0,121,0,0,1,0,1,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,0,0,0,0,0,1,19,293,0,1,0,0,0,0,0,0,126,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,5,174,44,5 +0,0,0,18,0,16,2,0,72,0,31,0,0,0,317,0,77,0,7,3,0,0,0,1,0,0,2,0,0,0,1,0,0,0,1,0,16,9,5396,0,88,0,2,0,1,0,0,2,0,0,0,0,0,216,0,0,0,0,0,1,1,0,0,0,0,3,0,1,44164,16,15908,0,1,0,0,0,0,0,10282,0,0,0,0,0,3,9,10559,3,0,1,0,0,0,0,0,69,0,3,0,0,2,0,797,0,0,0,0,11826,0,0,0,0,0,0,2,0,2,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5164,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,5202,0,11374,0,0,0,0,3,46,6,5211,0,0,0,0,1,0,2,0,0,0,0,0,0,51572,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,145,1734,21,0,0,6781,0,1837,1,0,0,6565,22,0,0,0,0,0,0,0,0,0,506,1,0,0,0,4,0,0,0,0,0,1324,160,0,0,0,0,0,0,0,1,13759,0,0,1216,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,0,181,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,0,0,0,0,0,1,17,1550,0,3,0,0,0,0,0,1,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,39672,238,5 +0,0,0,3,0,9,3,0,9,0,2,0,0,0,2,0,19,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,92,0,0,8,0,0,0,1,0,0,2,0,0,0,0,0,67,0,0,0,0,0,1,0,0,0,0,0,2,0,0,266,9,39,0,1,0,0,0,0,0,7,0,0,0,0,0,1,5,35,0,0,1,0,0,0,0,0,9,0,2,0,0,2,0,20,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,46,0,36,0,0,0,0,3,22,9,62,0,0,0,0,1,0,1,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,8,113,3,0,0,105,0,575,0,0,0,45,17,0,0,0,0,0,0,0,0,0,41,1,0,0,0,2,0,0,0,0,1,96,31,0,0,0,0,0,0,0,0,129,0,0,20,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,104,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,62,27,5 +3,0,0,11,1,98,140,1,225,20,68,0,0,9,32,0,1790,0,9,7,0,0,0,8,0,15,12,0,27,0,1,0,0,1,38,18971,99,54,14,0,325,0,0,0,1,0,0,3,0,0,0,0,5,777,0,0,0,0,0,1,0,0,2,6,0,40,0,0,73725,98,2304,0,24,0,0,0,0,0,58,0,0,0,0,0,10,121,11819,0,1,38,1,0,5,134,0,1498,240,5,0,0,4,1,2519,0,25,71,0,6480,0,0,0,0,22,3,4,0,0,0,0,1,0,0,0,33,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,47,0,1,0,0,0,0,0,0,0,0,0,1,4,3,0,0,0,0,3,0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,12,12,12,0,0,0,8149,0,180,0,0,0,18,77,909,2705,8074,0,0,0,0,1,0,6,0,0,0,0,0,0,1522,3,0,0,0,0,0,0,0,0,2,0,0,25,4,0,0,0,0,0,1,0,219,54,680,12,0,0,890,0,1107,0,1,0,542,136,0,0,0,0,0,0,0,0,0,2273,1,0,0,0,15,0,0,0,0,6,248,394,0,0,604,0,4,0,0,4,7320,1,0,411,27,0,1,1,0,0,0,0,9,0,1,0,10,0,0,0,0,0,20,0,0,1,9,5,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,27,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,131,1,1,1,0,87,0,0,0,0,9,137,572,0,41,14,0,1,0,0,0,443,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,30,0,0,0,0,0,0,0,0,0,0,0,1,0,3,2287,175,5 +0,0,0,23,1,67,109,1,399,45,95,0,1,6,72,0,142,0,26,11,0,0,0,5,4,11,21,0,26,0,2,0,0,1,25,0,68,221,35,0,817,0,0,0,1,0,0,7,1,0,0,0,15,289,0,0,0,0,0,1,0,0,0,0,0,118,0,0,10911,67,890,0,29,0,0,0,0,0,30,0,0,0,0,0,6,17,2169,0,1,25,1,0,7,327,0,2786,195,15,0,0,10,1,1957,0,53,0,3,4849,0,0,0,0,16,0,8,0,0,0,0,1,0,0,0,26,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,31,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,1465,0,193,0,0,0,29,105,180,2719,1330,0,0,0,0,1,0,0,0,0,0,0,0,0,2758,0,0,0,0,1,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,197,82,646,28,0,0,695,0,2646,0,1,0,399,195,0,0,0,0,0,0,4,0,0,850,1,0,3,0,20,0,0,0,0,13,205,921,0,0,466,0,0,0,0,4,1221,0,0,1801,0,0,1,0,0,0,0,0,22,0,13,0,6,0,0,0,0,0,48,0,0,2,0,5,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,106,1,1,1,0,66,0,0,0,0,9,93,390,0,60,0,0,0,0,0,0,972,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,55,0,0,0,0,0,0,0,0,0,0,0,1,0,8,1432,251,5 +0,0,0,4,0,18,96,0,261,4,83,0,0,0,8,0,24,0,7,2,0,0,0,4,0,1,3,0,2,0,1,0,0,0,6,0,18,29,10,0,828,0,0,0,1,0,0,2,0,0,0,0,1,83,0,0,0,0,0,1,0,0,0,0,0,10,0,0,19504,18,492,0,3,0,0,0,0,0,10,0,0,0,0,0,4,8,1521,0,0,6,0,0,1,253,0,1962,395,3,0,0,2,0,1077,0,6,0,0,3081,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1526,0,57,0,0,0,2,54,55,815,1543,0,0,0,0,1,0,0,0,0,0,0,0,0,6860,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,9,476,4,0,0,238,0,552,0,0,0,174,235,0,0,0,0,0,0,0,0,0,479,1,0,0,0,6,0,0,0,0,2,105,476,0,0,1099,0,0,0,0,0,1548,0,0,5742,0,0,1,0,1,0,0,0,3,0,3,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,23,1,1,1,0,90,0,0,0,0,1,24,152,0,7,0,0,0,0,0,0,478,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1550,416,5 +0,0,0,9,0,10,2,0,8,2,3,0,0,0,5,0,14,0,6,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,17,0,0,0,1,0,0,2,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,5,0,0,789,10,38,0,1,0,0,0,0,0,7,0,0,0,0,0,2,5,165,0,0,2,0,0,0,0,0,9,0,4,0,0,2,0,12,0,3,0,0,118,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,112,0,30,0,0,0,0,3,27,15,130,0,0,0,0,1,0,0,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,10,73,10,0,0,113,0,140,0,0,0,60,9,0,0,0,0,0,0,0,0,0,38,1,0,0,0,3,0,0,0,0,0,93,46,0,0,0,0,0,0,0,0,91,0,0,233,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,12,159,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,11,5 +0,0,0,5,0,19,104,0,207,13,59,0,0,0,20,0,30,0,7,3,0,0,0,1,0,2,6,0,4,0,1,0,0,0,6,0,19,6,15,0,343,0,0,0,1,0,0,7,0,0,0,0,2,751,0,0,0,0,0,1,0,0,0,0,0,28,0,0,4613,19,461,0,5,0,0,0,0,0,24,0,0,0,0,0,1,11,769,0,0,6,0,0,4,196,0,1567,265,8,1,0,2,0,922,0,16,0,0,870,0,0,0,0,19,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,534,0,102,0,0,0,4,34,41,1173,564,0,0,0,0,1,0,0,0,0,0,0,0,0,1731,0,0,0,0,0,0,0,0,0,0,0,0,6,0,4,0,0,0,0,0,0,8,19,241,5,0,0,369,0,413,0,0,0,267,39,0,0,0,0,0,0,0,0,0,427,1,0,0,0,4,0,0,0,0,2,157,17860,0,0,721,0,0,0,0,0,276,0,0,971,0,0,1,0,0,0,0,0,10,0,0,0,16,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,52,0,0,0,0,1,25,490,0,13,0,0,0,0,0,0,425,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,4,8114,56,5 +0,0,0,0,0,28,19,0,58,23,6,0,0,3,22,0,57,0,7,4,0,0,0,1,0,2,9,0,6,0,1,0,0,0,12,0,28,133,12,0,119,0,0,0,1,0,0,3,0,0,0,0,3,249,0,0,0,0,0,1,0,0,1,0,0,7,0,0,1854,28,179,0,7,0,0,0,0,0,6,0,0,0,0,0,1,6,232,0,0,12,0,0,1,14,0,136,0,2,0,0,2,0,249,0,7,0,3,990,0,0,0,0,2,0,5,0,0,0,0,1,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,202,0,77,0,0,0,6,27,61,215,230,0,0,0,0,1,0,0,0,0,0,0,0,0,438,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,13,27,219,0,0,0,239,0,620,0,0,0,159,147,0,0,0,0,0,0,2,0,0,172,1,0,0,0,5,0,0,0,0,3,118,133,0,0,0,0,0,0,0,2,278,0,0,105,0,0,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,20,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,16,0,0,0,0,1,40,271,0,18,0,0,0,0,0,0,112,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,110,5 +0,0,0,2,0,8,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,3,0,0,0,0,0,51,0,0,0,0,0,1,0,0,0,0,0,1,0,0,292,8,35,0,1,0,0,0,0,0,11,0,0,0,0,0,1,5,56,0,0,0,0,0,0,0,0,9,0,5,0,0,2,0,6,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,34,0,0,0,0,3,22,6,76,0,0,0,0,1,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,66,2,0,0,101,0,125,0,0,0,46,2,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,90,39,0,0,0,0,0,0,0,0,37,0,0,56,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,201,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,76,16,5 +2,0,0,7,0,51,18,0,44,2,7,0,0,6,15,1,855,0,7,2,0,0,0,9,0,10,6,0,7,0,3,2,0,0,7,2613,51,6,0,0,72,0,0,0,1,0,0,5,0,0,0,0,5,540,0,0,0,0,0,1,0,0,0,0,0,9,0,0,81089,51,990,0,9,0,0,0,0,0,38,0,0,0,0,0,10,44,13880,0,0,7,0,0,0,0,0,224,20,7,0,0,2,0,968,0,6,8,0,2448,0,0,0,0,3,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,12450,0,101,0,0,0,10,19,442,1090,12424,0,0,0,0,1,0,3,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,4,0,0,5,1,0,0,0,0,0,1,0,84,23,361,8,0,0,369,0,597,1,0,0,184,32,0,0,0,0,0,0,0,0,0,953,1,0,0,0,11,0,0,0,0,6,154,72,0,0,14,0,0,0,0,0,2397,1,0,117,14,0,1,1,1,0,0,0,8,0,0,0,5,0,0,0,0,0,9,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,14,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,16,0,0,0,0,1,58,265,0,16,12,0,0,0,0,0,95,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,804,163,5 +0,0,0,15,0,52,124,0,105,3,13,0,0,12,12,0,1072,0,7,6,0,0,0,7,0,14,9,0,9,0,1,0,0,0,10,22638,52,25,13,0,160,0,0,0,1,0,0,5,0,0,0,0,4,806,1,0,0,0,0,1,0,0,0,0,0,20,0,0,88605,52,1655,0,6,0,0,0,0,0,228,0,0,0,0,0,9,24,15802,0,0,10,0,0,2,30,0,515,70,7,1,0,2,0,1548,0,15,0,0,7308,0,0,0,0,6,0,2,0,0,0,0,1,0,0,0,10,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,13,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,12,14,12,0,0,0,9323,0,79,0,0,0,6,29,545,1656,9284,0,0,0,0,1,0,3,0,1,0,0,0,0,932,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,111,28,413,25,0,0,751,0,491,0,0,0,546,32,0,0,0,0,0,0,0,0,0,1345,1,0,0,0,13,0,0,0,0,2,198,217,0,0,91,0,0,0,0,1,6107,1,0,186,109,0,1,1,1,0,0,0,7,0,0,0,4,0,0,0,0,0,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,109,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,27,0,0,0,0,1,62,307,0,19,14,0,0,0,0,0,172,3,0,0,0,0,0,0,0,0,0,0,0,2,0,2,13,0,0,0,0,0,0,0,0,0,0,0,0,0,6,3299,143,5 +0,0,0,2,0,9,2,0,8,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,6,0,0,7,0,1,0,1,0,0,1,0,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,1,0,0,898,9,33,0,1,0,0,0,0,0,7,0,0,0,0,0,1,6,464,0,0,1,0,0,0,0,0,8,0,2,0,0,2,0,7,0,0,0,0,51,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,35,0,21,0,0,0,0,3,22,4,45,0,0,0,0,1,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,58,2,0,0,75,0,218,0,0,0,22,0,0,0,0,0,0,0,0,0,0,34,1,0,0,0,2,0,0,0,0,0,91,12,0,0,0,0,0,0,0,0,206,0,0,740,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,48,0,1,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,224,34,5 +4,0,0,22,0,119,88,0,257,57,65,1,1,5,87,0,95,0,7,10,0,0,0,6,7,15,24,0,32,0,1,0,0,0,73,0,119,117,40,0,609,0,0,0,1,0,0,4,0,0,0,0,16,325,0,0,0,0,0,1,0,0,2,1,0,82,0,0,4937,119,652,0,32,0,0,0,0,0,16,0,0,0,0,0,8,17,249,0,0,73,0,0,6,167,0,1548,240,5,0,0,5,0,1159,0,62,4,5,3410,0,1,0,0,18,3,7,0,0,0,0,1,0,0,0,19,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,49,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,10,10,10,0,0,0,274,0,195,0,0,0,28,108,326,1302,290,0,0,0,0,1,0,3,0,0,0,0,0,0,1251,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,2,0,37,102,621,27,0,0,623,0,1269,2,4,0,448,104,0,0,0,0,0,0,0,0,0,606,1,0,0,0,23,0,0,0,0,14,270,365,0,0,570,0,0,0,6,4,575,0,0,145,2,0,1,1,0,0,0,0,8,0,1,0,13,0,0,0,0,0,59,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,2,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,138,1,1,1,0,94,0,0,0,0,1,192,279,0,64,8,0,0,0,0,0,517,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,70,0,0,0,0,0,0,0,0,0,0,0,0,0,3,630,173,5 +0,0,0,8,0,47,66,0,154,11,23,0,0,2,21,0,749,0,6,7,0,0,0,6,4,10,0,0,17,0,1,0,0,0,14,898,47,23,21,0,253,0,0,0,1,0,0,4,0,0,0,0,9,327,0,0,0,0,0,1,0,0,0,24,0,29,0,0,23457,47,1050,0,15,0,0,0,0,0,26,0,0,0,0,0,8,20,3886,0,0,14,0,0,4,94,0,882,85,8,0,0,2,0,1244,0,16,0,0,1562,0,0,0,0,2,0,6,0,12,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,12,12,12,0,0,0,3327,0,97,0,0,0,16,36,245,1308,3288,0,0,0,0,1,0,3,0,0,0,0,0,0,675,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,26,276,9,0,0,398,0,653,0,0,0,250,35,0,0,0,0,0,0,0,0,0,1021,1,0,0,0,17,0,0,0,0,6,130,280,0,0,182,0,0,0,0,0,2022,1,0,92,6,0,1,1,1,0,0,0,10,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,49,1,1,1,0,22,0,0,0,0,1,61,573,0,16,12,0,0,0,0,0,259,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,19,0,0,0,0,1,0,0,0,0,0,0,0,0,3,567,59,5 +0,0,0,8,1,46,302,1,457,58,119,0,0,0,77,0,104,0,9,7,0,0,0,2,1,7,12,0,13,0,0,0,0,1,26,0,47,133,29,0,858,0,0,0,1,0,0,7,0,0,0,0,7,504,0,0,0,0,0,1,0,0,6,0,0,113,0,0,7364,46,1070,0,14,0,0,0,0,0,28,0,0,0,0,0,2,10,552,0,1,26,1,0,8,408,0,3258,445,11,0,0,4,1,2070,0,68,0,0,3405,0,0,0,0,33,0,6,0,0,0,0,1,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,37,0,1,0,0,0,0,0,0,0,0,0,1,18,0,0,0,1,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,714,0,190,0,0,0,14,119,110,3343,612,0,0,0,0,1,0,1,0,0,0,0,0,0,3165,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,120,105,659,9,0,0,873,0,3279,0,1,0,650,138,0,0,0,0,0,0,2,0,0,1068,1,0,0,0,10,0,0,0,0,6,194,998,0,0,1171,0,0,0,0,25,863,0,0,1098,0,0,1,0,0,0,0,0,14,0,1,0,22,0,0,0,0,0,55,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,82,1,1,1,0,73,0,0,0,0,9,73,582,0,32,0,0,0,0,0,0,1008,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,64,0,0,0,0,0,0,0,0,0,0,0,1,0,5,1664,280,5 +2,0,0,5,0,23,32,0,88,13,22,0,0,0,20,0,30,0,7,3,0,0,0,1,0,2,6,0,4,0,1,0,0,0,9,0,23,6,9,0,153,0,0,0,1,0,0,3,0,0,0,0,2,172,0,0,0,0,0,1,0,0,0,0,0,27,0,0,2875,23,199,0,5,0,0,0,0,0,14,0,0,0,0,0,1,5,924,0,0,9,0,0,2,60,0,496,90,5,0,0,2,0,340,0,17,0,0,622,0,1,0,0,6,0,5,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,543,0,72,0,0,0,4,22,45,390,557,0,0,0,0,1,0,0,0,0,0,0,0,0,606,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,24,182,5,0,0,280,0,527,0,0,0,207,23,0,0,0,0,0,0,3,0,0,199,1,0,0,0,4,0,0,0,0,2,115,233,0,0,241,0,0,0,0,0,144,0,0,158,0,0,1,0,1,0,0,0,8,0,0,0,6,0,0,0,0,0,13,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,22,0,0,0,0,1,32,397,0,13,0,0,0,0,0,0,182,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,4,196,94,5 +2,0,0,5,1,49,33,1,113,2,8,0,0,6,6,0,179,0,9,2,0,0,0,8,0,11,0,0,6,0,1,0,0,1,4,915,50,222,0,0,109,0,0,0,1,0,0,2,0,0,0,0,1,203,0,0,0,0,0,1,0,0,0,3,0,2,0,0,17615,49,318,0,3,0,0,0,0,0,19,0,0,0,0,0,9,31,2783,0,1,4,1,0,1,0,0,240,20,4,0,0,4,1,333,0,1,6,0,1811,0,0,0,0,2,2,2,0,0,0,0,1,0,0,0,82,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,82,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,1480,0,60,0,0,0,1,4,415,594,1555,0,0,0,0,1,0,3,0,0,0,0,0,0,4295,2,0,0,0,0,0,0,0,0,0,0,0,2,3,2,0,0,0,0,1,0,189,28,422,6,0,0,610,0,774,0,1,0,315,56,0,0,0,0,0,0,2,0,0,354,1,0,0,0,10,0,0,0,0,2,177,137,0,0,13,0,0,0,0,0,1536,1,0,3261,9,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,66,1,1,1,0,5,0,0,0,0,9,54,334,0,4,14,0,0,0,0,0,456,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1464,95,5 +11,0,0,25,0,111,35,0,205,45,44,0,1,2,69,0,78,0,7,8,0,0,0,1,1,6,21,0,36,0,7,0,0,0,82,0,111,194,28,0,419,0,0,0,1,0,0,8,0,0,0,0,13,412,0,0,0,0,0,1,0,0,0,6,0,59,0,0,5555,111,538,0,43,0,0,0,0,0,39,0,0,0,0,0,2,12,314,0,0,82,0,0,3,124,0,1095,100,15,0,0,2,0,950,0,39,0,6,4528,0,5,5,0,9,0,9,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,51,0,0,0,0,0,0,0,0,3,0,9,0,0,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,456,0,216,0,0,0,26,73,204,1188,421,0,0,0,0,1,0,0,0,0,0,0,0,0,1235,0,0,0,0,0,0,0,0,0,0,0,0,8,0,47,0,0,0,0,0,0,12,77,580,29,0,0,680,0,1348,0,0,0,564,176,0,0,0,0,0,0,0,0,0,441,1,0,0,0,10,0,0,0,0,7,206,549,0,0,331,0,0,0,8,1,503,0,0,220,0,0,1,0,1,0,0,0,23,0,0,0,1,0,0,0,0,0,47,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,133,1,1,1,0,120,0,0,0,0,1,193,1001,0,70,0,0,1,0,0,0,426,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,51,0,0,0,0,0,0,0,0,0,0,0,0,0,7,629,233,5 +0,0,0,17,0,47,20,0,94,20,19,0,1,3,40,0,71,0,7,7,0,0,0,3,1,4,18,0,13,0,1,0,0,0,23,0,47,173,21,0,244,0,0,0,1,0,0,4,1,0,0,0,6,202,0,0,0,0,0,1,0,0,0,0,0,30,0,0,3485,47,287,0,14,0,0,0,0,0,17,0,0,0,0,2,4,11,843,0,0,23,0,0,3,36,0,368,55,9,0,0,2,0,439,0,19,0,4,1840,0,0,0,0,6,0,4,0,0,0,0,1,0,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,549,0,98,0,0,0,12,54,105,482,546,0,0,0,0,1,0,0,0,0,0,0,0,0,560,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,18,37,304,18,0,0,302,0,1011,0,0,0,183,57,0,0,0,0,0,0,0,0,0,255,1,0,3,0,11,0,0,0,0,6,155,137,0,0,126,0,0,0,0,0,449,0,0,51,0,0,1,0,0,0,0,0,10,0,0,0,7,0,0,0,0,0,21,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,35,0,0,0,0,1,70,255,0,36,0,0,0,0,0,0,190,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,331,88,5 +0,0,0,5,0,40,48,0,62,19,3,0,1,23,3,0,861,0,7,3,0,0,0,6,1,10,0,0,5,0,1,0,0,0,4,1059,40,6,3,0,177,0,0,0,1,0,0,12,0,0,0,0,2,411,0,0,0,0,0,1,0,0,0,0,0,4,0,0,45013,40,1107,0,3,0,0,0,0,0,69,0,0,0,0,0,8,28,8616,0,0,4,0,0,0,0,0,490,5,25,0,0,2,0,1085,0,57,0,0,2539,0,0,0,0,1,0,18,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,21,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,31,12,0,0,0,7226,0,183,0,0,0,2,9,282,1234,7235,0,0,0,0,1,0,5,0,0,0,0,0,0,1336,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,1,0,372,16,247,6,0,0,580,0,735,0,0,0,414,19,0,0,0,0,0,0,0,0,0,1008,1,0,0,0,10,0,0,0,0,1,130,283,0,0,0,0,0,0,0,0,2983,1,0,586,8,0,1,1,1,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,53,1,1,1,0,3,0,0,0,0,1,44,981,0,4,12,0,0,0,0,0,103,5,0,0,0,0,0,0,0,0,0,0,0,1,38,1,25,0,0,0,0,0,0,0,0,0,0,0,0,0,11,1527,105,5 +0,0,0,0,0,22,33,0,55,5,8,2,0,0,7,74,21,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,8,0,22,6,0,0,264,0,0,0,1,0,0,4,0,0,0,0,0,205,0,0,0,0,0,1,0,0,1,0,0,8,0,0,639,22,204,0,1,0,0,0,0,0,11,0,0,0,0,0,1,6,46,0,0,8,0,0,0,37,0,285,15,8,0,0,2,0,362,0,5,0,0,802,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,67,0,56,0,0,0,0,3,43,392,91,0,0,0,0,1,0,0,0,0,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,8,161,0,0,0,162,0,511,0,0,0,80,19,0,0,0,0,0,0,0,0,0,206,1,0,0,0,2,0,0,0,0,1,104,110,0,0,45,0,2,0,0,5,37,0,0,25,0,0,1,0,0,0,0,0,5,0,0,0,2,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,0,0,0,0,0,1,30,159,0,1,0,0,0,0,0,0,275,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,291,5 +4,0,0,15,1,74,52,1,109,2,26,0,0,9,11,0,418,0,9,4,0,0,0,8,4,17,6,0,24,0,1,0,0,1,19,8984,75,54,10,0,148,0,0,0,1,0,0,5,0,0,0,0,7,823,0,0,0,0,0,1,0,0,0,12,0,12,0,0,78075,74,675,0,21,0,0,0,0,0,57,0,0,0,0,0,9,67,12769,0,1,19,1,0,2,28,0,654,45,8,0,0,4,1,666,0,2,61,0,5792,0,0,0,0,8,4,6,0,0,0,0,1,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,32,0,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,2,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,12,12,12,0,0,0,8856,0,127,0,0,0,16,50,677,1709,8785,0,0,0,0,1,0,7,0,0,4,0,0,0,1291,3,0,0,0,0,0,0,0,0,0,0,0,14,5,0,0,0,0,0,1,0,220,29,606,17,0,0,658,0,879,0,1,0,333,90,0,0,0,0,0,0,0,0,0,634,1,0,0,0,16,0,0,0,0,4,259,160,0,0,111,0,2,0,6,0,3796,1,0,870,26,0,1,1,0,0,0,0,11,0,0,0,1,0,0,0,0,0,2,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,100,1,1,1,0,64,0,0,0,0,9,94,226,0,34,14,0,0,0,0,0,211,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,3,2300,122,5 +0,0,0,16,3,14,4,3,156,0,7,0,0,0,7,0,210,0,6,7,0,6,0,1,0,1,0,0,2,0,1,0,0,3,3,352,17,24,5,0,17,0,1,0,1,0,0,1,2,0,0,0,0,608,0,0,0,0,0,1,0,0,0,0,0,3,0,0,212557,14,461,0,3,0,0,0,0,0,10,9,0,0,0,0,1,7,22789,0,3,3,3,0,0,0,0,20,0,6,0,0,2,3,401,0,2,0,1,100231,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,18,0,0,0,0,1,0,11373,0,30,0,0,0,1,4,33,46271,11383,0,0,0,0,1,0,2,0,0,1,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,23,9,455,27,0,0,378,0,1403,0,0,0,80,37,0,0,0,0,0,0,0,0,0,390,1,0,4,0,14,0,0,0,0,8,95,4,0,0,0,0,0,0,0,0,253234,0,0,1225,0,0,1,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,1,0,0,0,0,25,20,96,0,4,0,0,0,0,0,0,333,3,0,0,0,0,0,0,0,0,0,0,0,3,2,3,3,0,0,0,0,0,0,0,2,0,0,0,5,0,1,11806,44,5 +4,0,0,4,0,37,10,0,37,0,28,0,0,0,3,0,21,0,6,2,0,0,0,1,0,0,0,0,2,0,1,0,0,0,26,0,37,6,3,0,83,0,0,0,1,0,0,1,0,0,0,0,1,99,0,2,0,0,0,1,0,0,0,0,0,9,0,0,434,37,80,0,3,0,0,0,0,0,6,0,0,0,0,0,1,3,44,0,0,26,0,0,2,24,0,209,35,2,0,0,2,0,119,0,0,0,0,554,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,60,0,69,0,0,0,2,6,58,152,73,0,1,0,0,1,0,0,0,0,0,1,1,0,244,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,209,4,0,0,238,0,500,0,0,0,167,9,0,0,0,0,0,0,0,0,0,105,1,0,0,0,3,0,0,0,0,1,129,103,0,0,78,0,0,0,0,0,64,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,3,0,0,0,0,1,63,382,0,3,0,0,0,0,0,0,118,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,83,77,5 +5,0,0,9,1,82,59,1,137,3,24,0,0,9,21,0,2403,0,9,8,0,0,0,13,52,18,24,0,85,0,2,0,0,1,19,34952,83,54,76,0,111,0,0,0,1,0,0,4,0,0,0,0,59,932,0,0,0,0,0,1,0,0,0,9,0,18,0,0,213020,82,2905,0,83,0,0,0,0,0,83,0,0,0,0,0,15,134,41147,0,1,19,1,0,1,0,0,1024,30,7,0,0,4,1,2654,0,5,101,0,10314,0,0,0,0,9,5,4,0,0,0,0,1,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,38,0,1,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,12,12,12,0,0,0,33521,0,118,0,0,0,126,338,991,3472,33400,0,0,0,0,1,0,11,0,0,6,0,0,0,1003,5,0,0,0,0,0,0,0,0,0,0,0,16,6,0,0,0,0,0,2,0,220,35,753,10,0,0,800,0,1082,0,1,0,427,80,0,0,0,0,0,0,0,0,0,2662,1,0,0,0,73,0,0,0,0,57,237,175,0,0,138,0,0,0,0,0,14983,1,0,396,43,0,1,1,1,0,0,0,6,0,0,0,2,0,0,0,0,0,3,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,43,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,135,1,1,1,0,162,0,0,0,0,9,102,405,0,115,14,0,2,0,0,0,250,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,3,4048,132,5 +0,0,0,12,0,35,26,0,119,22,26,0,1,2,38,0,69,0,7,6,0,0,0,1,1,4,18,0,12,0,1,0,0,0,16,0,35,207,23,0,187,0,0,0,1,0,0,5,0,0,0,0,6,236,0,0,0,0,0,1,0,0,0,0,0,26,0,0,3069,35,315,0,13,0,0,0,0,0,22,0,0,0,0,0,1,7,326,0,0,16,0,0,3,54,0,500,85,9,0,0,2,0,494,0,15,0,4,6054,0,0,0,0,7,0,6,0,0,0,0,1,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,299,0,110,0,0,0,12,58,78,538,310,0,0,0,0,1,0,0,0,0,0,0,0,0,843,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,0,0,0,0,0,0,14,39,396,13,0,0,413,0,1438,0,0,0,318,85,0,0,0,0,0,0,4,0,0,288,1,0,0,0,8,0,0,0,0,6,209,248,0,0,236,0,0,0,0,0,598,0,0,379,0,0,1,1,0,0,0,0,7,0,1,0,3,0,0,0,0,0,24,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,48,0,0,0,0,1,51,404,0,35,0,0,0,0,0,0,219,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,26,0,0,0,0,0,0,0,0,0,0,0,0,0,1,469,144,5 +1,0,0,10,0,23,4,0,45,15,6,0,1,3,27,0,55,0,7,4,0,0,0,1,1,2,12,0,9,0,2,0,0,0,10,0,23,182,14,0,130,0,0,0,1,0,0,1,0,0,0,0,5,110,0,0,0,0,0,1,0,0,0,0,0,10,0,0,729,23,159,0,11,0,0,0,0,0,5,0,0,0,0,0,1,3,35,0,0,10,0,0,0,0,0,50,0,1,0,0,2,0,203,0,7,0,4,888,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,63,0,51,0,0,0,10,40,52,104,85,0,0,0,0,1,0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,19,25,194,11,0,0,136,0,713,0,0,0,66,41,0,0,0,0,0,0,0,0,0,148,1,0,0,0,6,0,0,0,0,6,125,12,0,0,0,0,0,0,0,0,403,0,0,13,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,25,0,0,0,2,1,33,70,0,25,0,0,0,0,0,0,62,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,1,197,41,5 +1,0,0,18,1,53,33,1,144,57,46,1,1,2,84,0,96,0,9,6,0,0,0,4,2,5,12,0,13,0,1,1,0,1,26,0,54,221,19,0,387,0,0,0,0,0,0,0,0,0,0,0,6,371,0,0,0,0,0,1,0,0,0,2,0,85,0,0,3425,53,388,0,16,0,0,0,0,0,0,0,0,0,0,0,5,5,804,0,1,26,1,0,8,94,0,909,150,0,0,0,4,1,737,0,68,0,3,2411,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,19,0,1,0,0,1,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,493,0,84,0,0,0,12,47,108,1981,482,0,0,0,0,0,0,2,0,0,0,0,0,0,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,94,491,20,0,0,391,0,1634,0,1,0,179,100,0,0,0,0,0,0,0,0,0,416,0,0,0,0,12,0,0,0,0,8,205,280,0,0,710,0,0,0,0,1,531,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,64,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,68,1,1,1,0,31,0,0,0,0,9,80,39,0,32,0,0,0,0,0,0,350,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,69,0,0,0,0,0,0,0,0,0,0,0,1,0,0,403,139,5 +0,0,0,21,1,106,189,1,416,105,132,0,1,26,246,1,1436,0,28,17,0,0,0,13,15,29,15,0,53,0,1,0,0,1,23,898,107,331,154,0,987,0,0,0,1,0,0,6,0,0,0,0,27,691,0,0,0,0,0,1,0,0,6,0,0,156,0,0,46582,106,2524,0,51,0,0,0,0,1,38,0,0,0,0,0,15,81,6097,0,1,23,1,0,6,219,0,2521,380,10,0,0,180,1,3144,0,113,49,6,12597,0,0,0,0,17,0,6,0,0,0,0,1,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,12,12,12,0,0,0,4889,0,198,0,0,0,55,596,829,4021,4647,0,0,0,0,1,0,4,0,0,0,0,0,0,7408,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,598,170,1846,41,27,0,2063,0,3303,4,9,0,1630,195,0,0,0,0,0,0,4,0,0,2475,1,0,0,0,45,0,0,0,0,27,1189,655,0,0,698,0,0,0,0,17,6528,1,0,5621,9,0,1,1,0,0,0,0,10,0,2,0,11,0,0,0,0,0,169,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,9,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,161,1,1,1,0,275,0,0,0,0,11,130,1461,0,86,12,0,0,0,0,0,907,5,0,0,0,0,0,0,0,0,0,0,0,4,0,1,113,0,0,0,0,0,0,0,0,0,0,0,1,0,4,3600,335,5 +2,0,0,19,1,18,38,1,56,6,13,0,0,0,11,0,61,0,9,2,0,0,0,0,0,0,0,0,0,0,1,0,0,1,3,0,19,54,0,0,83,0,0,0,1,0,0,0,0,0,0,0,0,54,0,0,0,0,0,1,0,0,0,0,0,16,0,0,173,18,140,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,1,3,1,0,3,26,0,253,35,0,0,0,4,1,147,0,7,0,0,187,0,0,0,0,4,2,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,19,0,27,0,0,0,0,3,45,143,38,0,0,0,0,1,0,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,29,217,22,0,0,242,0,2254,0,1,0,66,5,0,0,0,0,0,0,0,0,0,188,0,0,0,0,2,0,0,0,0,1,114,53,0,0,80,0,1,0,0,0,103,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,1,1,1,0,0,0,0,0,0,9,22,20,0,1,0,0,0,0,0,0,94,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,73,5 +0,0,0,4,0,28,5,0,30,0,6,0,0,2,2,0,18,0,6,2,0,0,0,6,0,8,0,0,2,0,1,0,0,0,2,0,28,6,0,0,30,0,13,0,1,0,0,14,0,0,0,0,1,288,0,0,0,0,0,1,0,0,0,0,0,4,0,0,4094,28,165,0,1,0,0,0,0,0,67,0,0,0,0,0,7,31,1228,0,0,2,0,0,1,7,0,166,20,20,0,0,2,0,64,0,0,0,0,896,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,532,0,183,0,0,0,0,3,183,73,531,0,0,0,0,1,0,5,0,0,0,0,0,0,1207,0,0,0,0,0,0,0,0,0,0,0,0,14,1,7,0,0,0,0,1,0,32,10,151,4,0,0,229,0,225,0,0,0,119,12,0,0,0,0,0,0,13,0,0,69,1,0,0,0,8,0,0,0,0,0,110,86,0,0,30,0,0,0,0,0,446,0,0,1315,3,0,1,1,1,0,0,0,34,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,3,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0,1,0,0,29,1,1,1,0,0,0,0,0,0,1,30,518,0,2,9,0,2,0,0,0,99,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,14,870,92,5 +1,0,0,12,0,55,67,0,102,27,18,0,0,11,38,0,1553,0,7,2,0,0,0,10,4,13,9,0,15,0,1,0,0,0,13,20533,55,6,9,0,188,0,2,0,1,0,0,3,0,0,0,0,6,620,1,0,0,0,0,1,0,0,0,0,0,44,0,0,473966,55,1927,0,12,0,0,0,0,0,91,0,0,0,0,0,10,32,76241,0,0,13,0,0,2,32,0,604,80,5,1,0,2,0,1951,0,32,9,0,41041,0,0,0,0,7,0,1,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,12,12,12,0,0,0,70908,0,93,0,0,0,11,38,397,4982,70664,0,0,0,0,1,0,3,0,0,0,0,0,0,10896,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,155,48,469,12,0,0,503,0,466,0,0,0,309,440,0,0,0,0,0,0,0,0,0,1796,1,0,0,0,16,0,0,0,0,6,208,112,0,0,110,0,2,0,0,1,7147,1,0,7032,44,0,1,1,1,0,0,0,4,0,0,0,5,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,2,0,0,0,44,181,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,20,0,0,0,0,1,68,199,0,24,14,0,0,0,0,0,224,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,35,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4337,249,5 +0,0,0,16,0,80,66,0,191,24,58,0,0,2,39,0,65,0,7,11,0,0,0,7,3,13,18,0,23,0,6,1,0,0,45,0,80,42,38,0,377,0,0,0,1,0,0,19,0,0,0,0,15,416,0,0,0,0,0,1,0,0,0,0,0,55,0,0,12277,80,619,0,28,0,0,0,0,1,99,0,0,0,0,3,12,49,2762,0,0,45,0,0,4,165,0,1478,225,31,1,0,2,0,964,0,35,0,0,4221,0,0,0,0,19,0,4,0,9,0,0,1,0,0,0,43,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,10,10,10,0,0,0,1736,0,293,0,0,0,28,189,249,2440,1718,0,0,0,0,1,0,2,0,0,0,0,0,0,4405,0,0,0,0,0,0,0,0,0,0,0,0,19,1,0,0,0,0,0,2,0,32,63,562,20,0,0,771,0,978,0,0,0,640,843,0,0,0,0,0,0,4,0,0,428,1,0,0,0,21,0,0,0,0,5,247,610,0,0,594,0,2,0,1,0,5690,0,0,2242,3,0,1,1,1,0,0,0,46,0,1,0,6,0,0,0,0,0,24,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,102,1,1,1,0,105,0,2,0,0,1,125,855,0,52,9,0,1,0,0,0,502,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,32,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1890,333,5 +2,0,0,9,1,61,53,1,128,3,28,0,0,9,10,0,861,0,9,5,0,0,0,7,1,10,0,0,10,0,1,0,0,1,16,5317,62,54,5,0,164,0,0,0,1,0,0,4,0,0,0,0,4,565,0,0,0,0,0,1,0,0,0,4,0,18,0,0,16044,61,1070,0,8,0,0,0,0,0,30,0,0,0,0,0,9,38,2476,0,1,16,1,0,5,50,0,725,100,8,0,0,4,1,1114,0,2,35,0,3061,0,0,0,0,9,2,3,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,4,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,12,12,12,0,0,0,773,0,114,0,0,0,7,14,485,984,759,0,0,0,0,1,0,7,0,0,0,0,0,0,687,2,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,1,0,217,48,488,10,0,0,646,0,913,0,1,0,336,40,0,0,0,0,0,0,0,0,0,1098,1,0,0,0,13,0,0,0,0,2,176,250,0,0,197,0,0,0,0,0,12936,1,0,129,9,0,1,1,0,0,0,0,6,0,0,0,1,0,0,0,0,0,3,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,9,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,75,1,1,1,0,13,0,0,0,0,9,78,518,0,9,12,0,0,0,0,0,238,6,0,0,0,0,0,0,0,0,0,0,0,3,0,1,13,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1190,337,5 +0,0,0,7,0,23,92,0,150,17,53,0,0,0,24,0,25,0,7,3,0,0,0,1,0,2,3,0,4,0,1,0,0,0,9,0,23,6,7,0,256,0,0,0,1,0,0,3,0,0,0,0,2,513,0,0,0,0,0,1,0,0,2,0,0,35,0,0,9163,23,358,0,5,0,0,0,0,0,12,0,0,0,0,0,1,6,704,0,0,9,0,0,5,140,0,1126,225,4,0,0,2,0,655,0,20,0,0,654,0,0,0,0,9,0,2,0,0,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,808,0,68,0,0,0,4,18,47,1028,738,0,0,0,0,1,0,1,0,0,0,0,0,0,3182,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,23,398,8,0,0,309,0,679,0,0,0,229,16,0,0,0,0,0,0,0,0,0,351,1,0,0,0,4,0,0,0,0,3,121,339,0,0,492,0,0,0,0,7,692,0,0,2485,0,0,1,0,0,0,0,0,4,0,1,0,9,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,16,0,0,0,0,1,32,227,0,10,0,0,0,0,0,0,327,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,774,65,5 +0,0,0,5,0,16,26,0,159,12,41,0,0,0,31,0,24,0,7,2,0,0,0,2,0,1,3,0,2,0,1,0,0,0,4,0,16,6,4,0,324,0,16,0,1,0,0,16,0,0,0,0,1,336,0,0,0,0,0,1,0,0,0,2,0,37,0,0,7517,16,411,0,3,0,0,0,0,0,76,0,0,0,0,0,2,20,1576,0,0,4,0,0,1,140,0,1111,80,25,0,0,2,0,757,0,11,0,0,1134,0,0,0,0,19,0,16,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,36,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,983,0,199,0,0,0,2,14,55,920,964,0,0,0,0,1,0,0,0,0,0,0,0,0,1899,0,0,0,0,0,0,0,0,0,0,0,0,16,0,30,0,0,0,0,0,0,8,19,248,23,0,0,665,0,1224,0,0,0,590,34,0,0,0,0,0,3,12,0,0,288,1,0,0,0,4,0,0,0,0,2,167,766,0,0,231,0,0,0,0,3,565,0,0,1561,0,0,1,0,1,0,0,0,47,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,10,0,0,0,0,1,20,814,0,7,0,0,0,0,0,0,446,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1374,205,5 +0,0,0,3,0,23,3,0,12,7,3,0,0,0,14,0,20,0,7,1,0,0,0,1,0,0,3,0,1,0,2,0,0,0,11,0,23,6,0,0,43,0,0,0,1,0,0,6,0,0,0,0,1,138,0,0,0,0,0,1,0,0,0,0,0,14,0,0,777,23,79,0,3,0,0,0,0,0,25,0,0,0,0,1,1,9,92,0,0,11,0,0,0,0,0,14,0,11,0,0,2,0,54,0,12,0,0,521,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,115,0,65,0,0,0,2,8,44,19,111,0,0,0,0,1,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,6,0,4,0,0,0,0,0,0,8,15,155,3,0,0,250,0,637,0,0,0,170,11,0,0,0,0,0,0,0,0,0,59,1,0,0,0,2,0,0,0,0,1,112,122,0,0,0,0,0,0,0,0,53,0,0,95,0,0,1,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,6,0,0,0,0,1,34,451,0,6,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,118,132,5 +3,0,0,18,1,91,38,1,133,24,21,0,4,3,69,1,241,0,9,11,0,0,0,4,8,16,80,0,42,0,10,11,0,1,62,0,92,450,58,0,335,0,0,0,1,0,0,2,0,0,0,0,37,355,0,2,0,0,0,1,0,0,0,1,0,36,0,0,8289,91,618,0,63,0,0,0,0,0,10,0,0,0,0,0,5,8,1015,0,1,62,1,0,3,30,0,558,50,4,0,0,4,1,939,0,28,0,6,9633,0,0,0,0,2,0,1,0,0,0,2,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,122,0,0,0,0,0,0,681,0,165,0,0,0,74,822,204,1026,679,0,0,0,0,1,0,1,0,0,0,0,0,0,773,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,156,77,838,20,0,0,663,0,4420,0,1,0,387,242,0,0,0,0,0,0,0,0,0,519,1,0,0,0,23,0,0,0,0,37,248,176,0,0,126,0,0,0,0,0,1763,0,0,272,0,0,1,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,158,1,1,1,0,180,0,0,0,0,9,154,499,0,159,0,0,0,0,0,0,287,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,28,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1498,300,5 +0,0,0,0,0,12,2,0,4,0,1,0,0,0,2,0,12,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,12,172,0,0,15,0,0,0,1,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,255,12,21,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,3,0,0,0,0,0,5,0,0,0,0,2,0,21,0,0,0,0,376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,11,0,31,0,0,0,0,3,27,6,29,0,0,0,0,1,0,0,0,0,0,0,0,0,74,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,3,111,0,0,0,96,0,996,0,0,0,61,20,0,0,0,0,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,99,48,0,0,0,0,0,0,0,0,202,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,15,143,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,55,5 +0,0,0,4,0,145,4,0,32,30,7,0,0,0,36,0,57,0,7,2,0,0,0,1,2,1,21,0,39,0,66,1,0,0,132,0,145,58,8,0,105,0,0,0,1,0,0,12,0,0,0,0,7,369,0,0,0,0,0,1,0,0,0,0,0,38,0,0,4798,145,332,0,106,0,0,0,0,0,43,0,0,0,0,1,1,17,444,0,0,132,0,0,1,8,0,175,15,16,0,0,2,0,359,0,34,0,0,3143,0,0,0,0,1,0,11,0,6,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,422,0,283,0,0,0,76,108,170,719,419,0,0,0,0,1,0,0,0,0,0,0,0,0,1297,0,0,0,0,0,0,0,0,0,0,0,0,12,0,2,0,0,0,0,0,0,8,37,618,4,0,0,780,0,1062,0,0,0,678,46,0,0,0,0,0,0,3,0,0,143,1,0,0,0,5,0,0,0,0,7,264,259,0,0,30,0,0,0,0,0,585,0,0,800,0,0,1,0,1,0,0,0,22,0,0,0,5,0,0,0,0,0,30,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,147,1,1,1,0,47,0,0,0,0,1,277,982,0,128,0,0,0,0,0,0,130,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,32,0,0,0,0,0,0,0,0,0,0,0,0,0,10,599,276,5 +3,0,0,20,1,104,237,1,409,51,68,0,1,12,70,1,2678,0,9,7,0,0,0,10,3,15,15,0,19,0,1,0,0,1,33,9471,105,681,31,0,567,0,0,0,1,0,0,9,6,0,0,0,9,578,0,0,0,0,0,1,0,0,0,5,0,55,0,0,65041,104,3559,0,17,0,0,0,0,0,155,0,0,0,0,0,12,50,8030,0,1,33,1,0,3,191,0,1943,290,48,1,0,4,1,3674,0,47,25,6,9526,0,0,0,0,38,3,5,0,0,0,0,1,0,0,0,27,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,3,3,0,0,0,0,1,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,12,12,12,0,0,0,6218,0,545,0,0,0,16,80,621,1906,6160,0,0,0,0,1,0,3,0,0,0,0,0,0,8563,3,0,0,0,0,0,0,0,0,0,0,0,9,4,0,0,0,0,0,1,0,228,87,1039,22,0,0,1129,0,1817,0,1,0,652,3453,0,0,0,0,0,0,0,0,0,3485,1,0,34,0,20,0,0,0,0,10,263,577,0,0,774,0,3,0,0,0,8539,1,0,5602,11,0,1,1,0,0,0,0,69,0,0,0,25,0,0,0,0,0,52,0,0,0,9,2,0,0,0,0,0,0,82,82,0,0,25,0,0,0,0,0,11,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,148,1,1,1,0,97,0,0,0,0,59,138,472,0,36,14,0,0,0,0,0,579,5,0,0,0,0,0,0,0,0,0,0,0,3,0,1,59,0,0,0,0,0,0,0,0,0,0,0,1,0,7,2653,483,5 +4,0,0,11,1,61,43,1,81,2,23,0,0,18,9,0,151,0,9,4,0,0,0,8,0,13,6,0,13,0,1,0,0,1,10,7269,62,54,6,0,98,0,0,0,1,0,0,3,0,0,0,0,3,624,0,0,0,0,0,1,0,0,0,9,0,4,0,0,45564,61,322,0,10,0,0,0,0,0,46,0,0,0,0,0,9,68,7858,0,1,10,1,0,1,0,0,577,60,5,0,0,4,1,287,0,2,110,0,5070,0,0,0,0,5,4,7,0,0,0,0,1,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,0,0,0,4463,0,132,0,0,0,7,45,679,1135,4424,0,0,0,0,1,0,6,0,0,0,0,0,0,877,5,0,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,1,0,420,32,634,12,0,0,582,0,1019,0,1,0,267,88,0,0,0,0,0,0,0,0,0,334,1,0,0,0,12,0,0,0,0,4,193,133,0,0,127,0,0,0,0,0,3195,1,0,519,22,0,1,1,1,0,0,0,4,0,0,0,1,0,0,0,0,0,4,0,0,0,7,0,0,0,0,0,0,0,1,1,0,0,24,0,0,0,0,0,22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,87,1,1,1,0,34,0,0,0,0,9,72,161,0,19,14,0,0,0,0,0,219,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,19,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2091,186,5 +0,0,0,9,0,55,809,0,62,26,19,0,0,12,22,14,1529,0,7,3,0,0,0,8,0,11,0,0,6,0,1,0,0,0,11,50938,55,6,0,0,117,0,0,0,1,0,0,5,0,0,0,0,1,3261,0,0,0,0,0,1,0,0,0,0,0,23,0,0,194988,55,4889,0,3,0,0,0,0,0,1626,0,0,0,0,0,10,37,34460,0,0,11,0,0,0,0,0,325,45,7,1,0,2,0,3177,0,18,3,0,25797,0,0,0,0,4,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,12,12,12,0,0,0,9683,0,180,0,0,0,1,4,2104,5916,9627,0,0,0,0,1,0,3,0,0,0,0,0,0,3094,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,293,48,733,9,0,0,3051,0,523,2,0,0,2843,73,0,0,0,0,0,0,0,0,0,2474,1,0,0,0,11,0,0,0,0,1,339,888,0,0,7,0,0,0,0,0,17678,1,0,356,809,0,1,1,1,0,0,0,10,0,0,0,2,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,46,46,0,0,10,0,0,0,0,0,808,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,5,0,0,0,0,41,66,362,0,4,14,0,0,0,0,0,156,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,32,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11915,127,5 +1,0,0,5,0,33,4,0,24,9,7,0,0,0,16,0,38,0,7,3,0,0,0,3,2,3,9,0,6,0,1,0,0,0,11,0,33,41,15,0,87,0,0,0,1,0,0,2,0,0,0,0,3,111,0,0,0,0,0,1,0,0,0,2,0,11,0,0,6110,33,105,0,7,0,0,0,0,0,8,0,0,0,0,0,4,7,1944,0,0,11,0,0,1,8,0,112,15,4,0,0,2,0,141,0,6,0,0,1192,1,0,0,0,6,0,3,0,0,0,0,1,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,1226,0,53,0,0,0,6,43,67,510,1226,0,0,0,0,1,0,0,0,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,26,214,13,0,0,259,0,815,0,0,0,162,26,0,0,0,0,0,0,0,0,0,96,1,0,0,0,8,0,0,0,0,3,147,103,0,0,37,0,0,0,0,0,207,0,0,51,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,46,0,0,0,0,1,44,247,0,19,0,0,0,0,0,0,69,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,119,5 +2,0,0,12,0,129,48,0,197,25,44,0,0,7,41,0,1050,0,7,13,0,0,0,21,0,20,12,0,51,0,1,0,0,0,79,898,129,6,96,0,426,0,0,0,1,0,0,7,0,0,0,0,24,545,0,0,0,0,0,1,0,0,0,4,0,63,0,0,13553,129,1486,0,49,0,0,0,0,0,38,0,0,0,0,0,10,49,2267,0,0,79,0,0,4,127,0,1509,115,11,0,0,2,0,1880,0,35,29,0,6348,0,0,0,0,19,0,9,0,1,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,55,12,12,12,0,0,0,1165,0,199,0,0,0,48,114,586,1790,1075,0,0,0,0,1,0,12,0,0,0,0,0,0,1743,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,2,0,106,64,685,14,0,0,710,0,1651,0,0,0,495,226,0,0,0,0,0,0,0,0,0,1394,1,0,0,0,34,0,0,0,0,25,218,575,2,0,254,0,1,0,0,2,3481,1,0,1078,8,0,1,1,0,0,0,0,13,0,0,0,2,0,0,0,0,0,27,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,146,1,1,1,0,139,0,0,0,0,3,208,612,0,72,12,0,0,0,0,0,532,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,35,0,0,0,0,0,0,0,0,0,0,0,0,0,7,2295,513,5 +1,0,0,0,0,42,18,0,77,19,8,0,1,2,18,0,68,0,7,3,0,0,0,1,3,6,15,0,11,0,2,0,0,0,19,0,42,92,17,0,217,0,0,0,1,0,0,1,0,0,0,0,6,143,0,0,0,0,0,1,0,0,0,0,0,10,0,0,1041,42,225,0,13,0,0,0,0,0,4,0,0,0,0,0,1,3,33,0,0,19,0,0,0,31,0,295,10,1,0,0,2,0,369,0,7,0,2,1484,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,81,0,67,0,0,0,12,48,81,372,93,0,0,0,0,1,0,0,0,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,22,257,0,0,0,215,0,710,0,0,0,109,63,0,0,0,0,0,0,0,0,0,199,1,0,0,0,7,0,0,0,0,7,136,100,0,0,30,0,0,0,0,0,385,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,21,0,0,0,0,1,61,100,0,34,0,0,0,0,0,0,152,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,1,164,131,5 +0,0,0,4,0,12,2,0,12,2,3,0,0,0,5,0,14,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,18,0,2,0,1,0,0,2,1,0,0,0,0,57,0,0,0,0,0,1,0,0,0,0,0,6,0,0,546,12,39,0,1,0,0,0,0,0,7,0,0,0,0,0,2,5,163,0,0,3,0,0,0,0,0,9,0,6,0,0,2,0,13,0,3,0,0,99,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,47,0,28,0,0,0,0,3,29,47,64,0,0,0,0,1,0,1,0,0,0,0,0,0,198,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,6,77,8,0,0,98,0,164,0,0,0,41,5,0,0,0,0,0,0,0,0,0,42,1,0,2,0,3,0,0,0,0,0,94,25,0,0,0,0,0,0,0,0,34,0,0,349,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,181,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,15,117,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,10,5 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5 +0,0,0,19,0,48,118,0,61,12,6,0,1,10,22,0,251,0,7,6,0,0,0,7,0,13,9,0,10,0,1,0,0,0,9,6005,48,78,11,0,148,0,0,0,1,0,0,3,0,0,0,0,4,1012,0,0,0,0,0,1,0,0,0,0,0,9,0,0,213078,48,817,0,7,0,0,0,0,0,238,0,0,0,0,0,9,23,35393,0,0,9,0,0,0,0,0,206,30,5,1,0,2,0,626,0,4,1,3,6044,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,12,12,12,0,0,0,31717,0,67,0,0,0,6,28,515,1121,31710,0,0,0,0,1,0,3,0,0,0,0,0,0,589,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,166,31,409,30,0,0,696,0,478,0,0,0,517,85,0,0,0,0,0,0,0,0,0,476,1,0,0,0,13,0,0,0,0,4,222,136,0,0,0,0,0,0,0,0,2689,1,0,54,118,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,118,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,16,0,0,0,0,1,57,162,0,19,14,0,0,0,0,0,87,3,0,0,0,0,0,0,0,0,0,0,0,1,0,2,16,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2175,94,5 +0,0,0,5,0,12,14,0,30,6,11,0,0,0,10,0,11,0,7,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,62,0,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0,0,0,1,0,0,0,0,0,17,0,0,48,12,74,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,2,0,0,2,26,0,221,35,0,0,0,2,0,139,0,7,0,0,140,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,16,0,19,0,0,0,0,3,28,137,30,0,0,0,0,1,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,48,5,0,0,60,0,189,0,0,0,21,1,0,0,0,0,0,0,0,0,0,83,0,0,0,0,2,0,0,0,0,1,94,48,0,0,80,0,0,0,0,0,19,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,14,2,0,1,0,0,0,0,0,0,75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,18,5 +4,0,0,26,1,83,335,1,719,208,171,1,1,8,320,0,329,0,75,9,0,0,0,9,7,19,36,0,26,0,1,0,0,1,28,0,84,2358,105,0,1681,0,0,0,1,0,0,45,0,0,0,0,13,562,0,2,0,0,0,1,0,0,2,3,0,248,0,0,35019,83,2274,0,25,0,0,0,0,0,161,0,0,0,0,0,12,106,6134,0,1,28,1,0,7,610,0,4927,625,68,11,0,4,1,4039,0,178,0,16,7303,0,0,0,0,134,0,67,0,0,0,0,1,0,0,0,30,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,15,1,1,0,0,0,1,0,5,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,10,10,10,0,0,0,4885,0,415,0,0,0,24,226,280,5647,4955,0,0,0,0,1,0,2,0,0,0,0,0,0,8184,0,0,0,0,0,0,0,0,0,0,0,0,45,1,2,0,0,0,0,1,3,180,279,2447,128,0,0,2001,0,3398,0,1,0,1674,195,0,0,0,0,0,0,0,0,0,1959,1,0,0,0,25,0,0,0,0,11,550,1987,0,0,1694,0,1,0,0,3,3718,0,0,3229,3,0,1,1,1,0,0,0,92,0,1,0,52,0,0,0,0,0,172,2,0,6,2,0,0,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,3,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,117,1,1,1,0,298,0,0,0,0,9,112,902,0,73,9,0,0,0,0,0,1746,11,0,0,0,0,0,0,0,0,0,0,0,2,0,1,218,0,0,0,0,0,0,0,0,0,0,0,1,0,14,6488,1167,5 +4,0,0,20,0,79,31,0,96,26,26,0,0,8,47,0,1325,0,7,7,0,0,0,9,2,15,27,0,43,0,1,4,0,0,31,27521,79,6,28,0,205,0,0,0,1,0,0,6,1,0,0,0,11,760,0,0,0,0,0,1,0,0,0,6,0,28,0,0,80781,79,1647,0,44,0,0,0,0,0,71,0,0,0,0,1,11,178,13456,0,0,31,0,0,0,0,0,481,30,13,1,0,2,0,1641,0,21,107,0,5809,0,0,0,0,12,0,0,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,98,12,12,12,0,0,0,7760,0,107,0,0,0,37,108,932,2080,7669,0,0,0,0,0,0,4,0,0,0,0,0,0,2461,0,0,0,0,0,0,0,0,0,0,0,0,6,1,2,0,0,0,0,1,0,130,80,596,34,0,0,638,0,1156,0,0,0,414,94,0,0,0,0,0,0,0,0,0,1540,1,0,3,0,18,0,0,0,0,9,307,57,0,0,149,0,0,0,8,0,5961,1,0,2295,30,0,1,1,1,0,0,0,13,0,0,0,4,0,0,0,0,0,20,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,30,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,175,0,0,0,0,1,110,515,0,76,14,0,0,0,0,0,154,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,30,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3478,176,5 +1,0,0,5,0,24,11,0,52,12,15,0,0,0,18,0,50,0,7,5,0,0,0,4,12,1,3,0,25,0,3,0,0,0,3,0,24,32,26,0,92,0,0,0,1,0,0,8,0,0,0,0,16,338,0,0,0,0,0,1,0,0,0,1,0,21,0,0,3556,24,233,0,28,0,0,0,0,0,31,0,0,0,0,0,6,16,421,0,0,3,0,0,1,28,0,406,55,12,0,0,2,0,229,0,13,0,0,747,0,0,0,0,10,1,3,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,384,0,134,0,0,0,32,104,70,659,388,0,0,0,0,1,0,1,0,1,0,0,0,0,842,0,0,0,0,0,0,0,0,0,0,0,0,8,0,2,0,0,0,0,0,0,8,16,218,5,0,0,368,0,591,0,0,0,259,28,0,0,0,0,0,0,4,0,0,153,1,0,0,0,21,0,0,0,0,15,106,284,0,0,164,0,0,0,0,0,422,0,0,396,0,0,1,0,0,0,0,0,16,0,0,0,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,33,1,1,1,0,132,0,0,0,4,1,27,599,0,32,0,0,0,0,0,0,292,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,6,492,98,5 +3,0,0,9,1,71,117,1,194,21,57,0,0,9,31,0,1230,0,9,6,0,0,0,8,0,14,9,0,15,0,1,0,0,1,21,9950,72,54,12,0,289,0,0,0,0,0,0,3,0,0,0,0,4,682,0,0,0,0,0,1,0,0,2,6,0,36,0,0,87406,71,1650,0,12,0,0,0,0,0,41,0,0,0,0,0,10,59,14254,0,1,21,1,0,4,115,0,1280,205,5,0,0,4,1,1847,0,25,69,0,5024,0,0,0,0,11,3,3,0,0,0,0,1,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,1,0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,12027,0,106,0,0,0,9,57,619,2169,11682,0,0,0,0,1,0,5,0,0,0,0,0,0,1833,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,1,0,217,52,595,10,0,0,731,0,1119,0,1,0,413,134,0,0,0,0,0,0,0,0,0,1647,1,0,0,0,14,0,0,0,0,5,209,324,0,0,475,0,4,0,0,3,5350,1,0,879,20,0,1,1,0,0,0,0,7,0,1,0,7,0,0,0,0,0,21,0,0,0,8,3,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,20,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,92,1,1,1,0,46,0,0,0,0,9,93,477,0,25,14,0,0,0,0,0,380,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,31,0,0,0,0,0,0,0,0,0,0,0,1,0,4,1771,179,5 +13,0,0,31,1,42,48,1,862,21,292,0,1,3,125,0,65,0,7,8,0,1,0,4,2,3,9,0,11,0,1,0,0,0,16,0,43,132,20,0,1710,0,0,0,1,0,0,3,1,0,0,0,6,176,0,0,0,0,0,1,0,0,0,0,0,168,0,0,10217,42,1500,0,12,0,0,0,0,0,11,3,0,0,0,0,4,9,1445,0,1,16,0,0,1,801,0,6104,280,6,0,0,3,1,4393,0,100,1,4,2317,0,0,0,0,1,1,2,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,1586,0,111,0,0,0,12,46,99,5397,1154,0,0,0,0,1,0,0,0,0,0,1,1,0,2356,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,13,44,382,109,0,0,322,0,770,0,0,0,185,140,0,0,0,0,0,0,0,0,0,1403,1,0,3,0,15,0,0,0,0,7,135,2154,0,0,838,0,0,0,0,2,861,0,0,2009,0,0,1,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,62,1,1,1,0,35,0,0,0,0,9,59,188,0,24,0,0,0,0,0,0,2151,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,23,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1306,123,5 +0,0,0,7,0,33,5,0,45,39,3,0,0,0,87,0,170,0,147,6,0,0,0,2,5,8,63,0,30,0,7,5,0,0,11,0,33,66,46,0,292,0,0,0,1,0,0,8,0,0,0,0,22,198,0,0,0,0,0,1,0,0,0,0,0,46,0,0,18492,33,613,0,43,0,0,0,0,0,33,0,0,0,0,0,1,11,465,0,0,11,0,0,0,0,0,155,0,15,0,0,2,0,689,0,43,0,0,3676,0,0,0,0,141,0,4,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,501,0,126,0,0,0,44,200,70,824,465,0,0,0,0,1,0,0,0,0,0,0,0,0,1789,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,46,434,8,0,0,396,0,1038,0,0,0,288,126,0,0,0,0,0,0,0,0,0,457,1,0,0,0,13,0,0,0,0,17,151,198,0,0,0,0,0,0,0,0,11726,0,0,1041,0,0,1,0,0,0,0,0,13,0,0,0,3,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,239,0,0,0,0,1,44,512,0,113,0,0,0,0,0,0,141,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,39,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1052,358,5 +2,0,0,3,1,35,30,1,34,2,4,0,0,2,4,0,90,0,9,3,0,0,0,5,0,8,0,0,2,0,1,0,0,1,4,0,36,117,0,0,57,0,0,0,1,0,0,4,0,0,0,0,1,142,0,0,0,0,0,1,0,0,0,4,0,2,0,0,2675,35,146,0,1,0,0,0,0,0,19,0,0,0,0,0,7,18,295,0,1,4,1,0,1,0,0,114,5,7,0,0,4,1,33,0,1,0,0,548,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,274,0,59,0,0,0,0,3,205,22,326,0,0,0,0,1,0,4,0,0,0,0,0,0,1042,3,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,1,0,136,22,291,4,0,0,419,0,518,0,1,0,190,16,0,0,0,0,0,0,0,0,0,173,1,0,0,0,8,0,0,0,0,1,149,86,0,0,0,0,1,0,0,0,9968,0,0,601,3,0,1,1,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,42,1,1,1,0,0,0,0,0,0,9,40,321,0,2,9,0,0,0,0,0,179,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,1,0,2,314,55,5 +0,0,0,3,0,12,4,0,635,0,309,0,0,0,2,0,18,0,9,1,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,0,12,6,0,0,625,0,0,0,1,0,0,10,1,0,0,0,0,126,0,0,0,0,0,1,0,0,0,0,0,3,0,0,10239,12,1080,0,3,0,0,0,1,0,69,0,0,0,0,0,1,13,1965,0,0,0,0,0,1,615,0,4952,1530,17,0,0,2,0,2185,0,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1323,0,203,0,0,0,0,3,33,1292,1294,0,0,0,0,1,0,0,0,0,0,0,0,0,2650,0,0,0,0,1,0,0,0,0,0,0,0,10,0,9,0,0,0,0,0,0,8,3,162,3,0,0,230,0,425,0,0,0,152,10,0,0,0,0,0,0,13,0,0,977,1,0,2,0,2,0,0,0,0,1,112,1013,0,0,4588,0,0,0,0,0,446,0,0,2526,0,0,1,0,0,0,0,0,23,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,2,0,0,0,0,1,12,256,0,2,0,0,0,0,0,0,973,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1159,76,5 +6,0,0,18,0,76,33,0,105,24,20,1,1,9,46,1,968,0,7,10,0,0,0,11,1,16,15,0,18,0,3,0,0,0,18,898,76,117,23,0,283,0,0,0,1,0,0,3,0,0,0,0,9,289,0,0,0,0,0,1,0,0,0,2,0,37,0,0,16506,76,1207,0,17,0,0,0,0,0,15,0,0,0,0,0,15,29,3756,0,0,18,0,0,2,49,0,649,90,3,0,0,2,0,1410,0,25,0,4,4571,0,0,0,0,8,0,5,0,2,0,0,1,0,0,0,13,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,76,12,12,12,0,0,0,1736,0,105,0,0,0,16,62,374,3585,1749,0,0,0,0,1,0,6,0,0,0,0,0,0,1032,0,0,1,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,89,60,417,20,0,0,489,0,1123,0,0,0,269,87,0,0,0,0,0,0,0,0,0,1191,1,0,0,0,22,0,0,0,0,8,175,226,0,0,181,0,0,0,0,3,2995,1,0,1109,7,0,1,9,1,0,0,0,5,0,0,0,5,0,0,0,0,0,29,6,0,2,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,7,3,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,103,1,1,1,0,44,0,0,0,0,1,94,467,0,38,14,0,0,0,1,0,221,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,30,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1148,332,5 +0,0,0,6,0,20,96,0,145,21,49,0,0,0,27,0,23,0,7,3,0,0,0,1,0,1,3,0,3,0,2,0,0,0,8,0,20,6,4,0,255,0,0,0,1,0,0,2,0,0,0,0,2,135,1,0,0,0,0,1,0,0,2,0,0,39,0,0,911,20,345,0,4,0,0,0,0,0,7,0,0,0,0,0,2,5,67,0,0,8,0,0,4,136,0,1092,215,4,0,0,2,0,646,0,24,0,0,887,0,0,0,0,11,0,2,0,0,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,319,0,53,0,0,0,3,15,42,1114,107,0,0,0,0,1,0,0,0,0,0,0,0,0,744,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,27,154,6,0,0,258,0,526,0,0,0,193,19,0,0,0,0,0,0,0,0,0,347,1,0,0,0,4,0,0,0,0,2,110,293,0,0,497,0,0,0,0,3,88,0,0,44,0,0,1,0,0,0,0,0,2,0,1,0,7,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,16,0,0,0,0,1,28,159,0,9,0,0,0,0,1,0,304,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,93,5 +11,0,0,16,0,80,23,0,121,106,24,0,1,4,129,1,114,0,8,8,0,0,0,4,9,11,33,0,25,0,1,0,0,0,48,0,80,241,80,0,497,0,0,0,1,0,0,8,0,0,0,0,13,286,0,0,0,0,0,1,0,0,0,0,0,116,0,0,10605,80,542,0,26,0,0,0,0,0,36,0,0,0,0,0,5,28,1147,0,0,48,0,0,2,37,0,456,50,8,0,0,19,0,771,0,107,2,7,6719,0,0,0,0,52,0,16,0,0,0,0,1,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,87,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,823,0,219,0,0,0,26,197,161,720,851,0,0,0,0,1,0,0,0,0,0,0,0,0,1484,0,0,0,0,0,0,0,0,0,9,0,0,9,0,2,0,0,0,0,0,2,15,140,721,18,4,0,724,0,1349,1,0,0,585,207,0,0,0,0,0,0,2,0,0,425,1,0,0,0,19,2,0,0,0,11,193,434,0,0,127,0,0,0,0,0,823,0,0,244,0,0,1,0,0,0,0,0,16,0,0,0,9,0,0,0,0,0,100,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,104,1,1,1,0,277,0,0,0,0,1,128,556,0,70,0,0,0,0,0,0,378,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,108,0,0,0,0,0,0,0,0,0,0,0,0,0,8,903,391,5 +1,0,0,11,0,29,34,0,104,11,28,0,1,3,32,0,53,0,7,5,0,0,0,1,1,4,12,0,10,0,1,0,0,0,11,0,29,155,18,0,210,0,0,0,1,0,0,4,0,0,0,0,5,206,0,0,0,0,0,1,0,0,0,0,0,18,0,0,7642,29,283,0,11,0,0,0,0,5,14,0,0,0,0,0,1,9,1589,0,0,11,0,0,2,67,0,609,99,6,0,0,2,0,488,0,10,2,5,1175,0,1,0,0,6,0,6,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,892,0,90,0,0,0,10,44,68,648,909,0,0,0,0,1,0,0,0,0,0,0,0,0,2291,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,13,19,269,12,0,0,262,0,1332,0,0,0,171,47,0,0,0,0,0,0,5,0,0,262,1,0,0,0,7,0,0,0,0,6,129,242,0,0,258,0,0,0,0,0,771,0,0,1561,0,0,1,0,1,0,0,0,9,0,0,0,7,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,30,0,0,0,0,8,41,253,0,27,0,0,0,0,0,0,213,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1064,72,5 +0,0,0,0,0,15,2,0,6,2,1,0,0,0,4,0,18,0,6,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,5,0,15,6,3,0,16,0,0,0,0,0,0,0,0,0,0,0,1,38,0,0,0,0,0,1,0,0,0,0,0,2,0,0,152,15,36,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,5,0,0,0,0,0,14,0,0,0,0,2,0,36,0,2,0,0,276,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,27,0,25,0,0,0,2,11,31,27,35,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,79,0,0,0,53,0,197,0,0,0,17,15,0,0,0,0,0,0,0,0,0,37,0,0,0,0,3,0,0,0,0,2,97,1,0,0,0,0,0,0,0,0,93,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,6,0,0,0,0,1,20,5,0,7,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,18,5 +4,0,0,13,1,51,41,1,128,3,19,0,0,23,11,0,1284,0,10,3,0,0,0,7,0,12,3,0,7,0,1,0,0,1,8,15600,52,54,0,0,110,0,0,0,1,0,0,4,0,0,0,0,3,516,0,0,0,0,0,1,0,0,0,8,0,5,0,0,64030,51,1488,0,5,0,0,0,0,0,47,0,0,0,0,0,9,51,13709,0,1,8,1,0,1,0,0,637,85,7,0,0,4,1,1424,0,2,84,0,4718,0,0,0,0,12,4,8,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,12,12,12,0,0,0,8404,0,92,0,0,0,4,9,535,1463,8404,0,0,0,0,1,0,10,0,0,0,0,0,0,661,4,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,2,0,498,35,474,16,0,0,544,0,766,0,1,0,251,17,0,0,0,0,0,0,0,0,0,1516,1,0,0,0,10,0,0,0,0,2,167,139,0,0,104,0,0,0,0,0,4990,1,0,202,15,0,1,1,1,0,0,0,9,0,0,0,1,0,0,0,0,0,6,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,71,1,1,1,0,19,0,0,0,0,9,60,201,0,11,12,0,0,0,0,0,235,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,20,0,0,0,0,0,0,0,0,0,0,0,1,0,5,2246,132,5 +2,0,0,19,1,65,172,4,245,27,60,0,1,3,57,0,108,0,32,13,0,1,1,7,6,10,34,0,82,0,110,0,0,1,31,0,66,138,50,0,446,0,0,0,1,0,0,1,0,0,0,0,124,354,0,0,0,0,0,1,0,0,0,3,0,37,0,0,30507,65,962,0,192,0,0,0,0,0,6,3,0,0,0,0,7,9,6254,0,4,31,1,0,7,153,0,1946,225,2,0,0,2,1,1253,0,25,0,4,7319,0,0,0,0,9,0,4,0,0,0,0,1,0,0,0,14,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,102,0,0,0,0,0,0,3440,0,158,0,0,0,246,405,152,2810,3505,0,0,0,0,1,0,0,0,0,0,0,0,0,5120,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,60,1145,24,0,0,1187,0,1315,0,0,0,1005,191,0,22,0,0,0,0,0,0,0,678,1,0,0,0,28,0,0,0,0,120,785,377,0,0,579,0,0,0,0,0,5301,0,0,9907,0,0,1,47,0,0,0,0,1,0,0,0,0,0,0,0,0,0,28,1,0,6,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,110,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,101,1,1,1,0,366,0,0,0,216,9,97,263,0,236,0,0,0,0,0,0,435,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,41,12,0,0,0,0,0,0,0,0,0,0,2,0,1,8537,747,5 +1,0,0,10,1,52,101,1,159,49,43,0,0,2,57,0,89,0,43,5,0,0,0,6,0,9,9,0,6,0,3,0,0,1,13,0,53,101,5,0,284,0,0,0,1,0,0,28,0,0,0,0,4,566,0,0,0,0,0,1,0,0,2,1,1,64,0,0,11475,52,658,0,7,0,0,0,0,0,123,0,0,0,0,0,9,42,1614,0,1,13,1,0,4,104,0,995,180,54,0,0,4,1,660,0,54,0,0,2057,0,0,0,0,47,1,44,0,0,0,0,1,0,0,0,21,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,14,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,1705,0,282,0,0,0,6,22,240,1244,1336,0,0,0,0,1,0,3,0,0,0,0,0,0,3988,0,0,0,0,0,0,0,0,0,0,0,0,27,1,8,0,0,0,0,1,0,148,98,512,11,0,0,805,0,2396,0,1,0,534,208,0,0,0,0,0,0,2,0,0,494,1,0,0,0,11,0,0,0,0,4,165,463,0,0,397,0,87,0,0,3,858,0,0,2060,3,0,1,1,0,0,0,0,71,0,5,0,6,0,0,0,0,0,50,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,63,1,1,1,0,25,0,0,0,0,9,66,917,0,18,9,0,0,0,0,0,390,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,55,0,0,0,0,0,0,0,0,0,0,0,1,0,12,1628,220,5 +5,0,0,13,0,28,80,0,138,26,51,0,0,0,32,0,35,0,7,4,0,0,0,1,0,3,9,0,6,0,1,0,0,0,10,0,28,10,11,0,273,0,0,0,1,0,0,1,0,0,0,0,3,150,0,0,0,0,0,1,0,0,1,1,0,42,0,0,8636,28,351,0,7,0,0,0,0,0,6,0,0,0,0,0,1,4,860,0,0,10,0,0,4,125,0,1017,205,2,0,0,2,0,665,0,26,0,0,694,0,0,0,0,18,0,1,0,0,0,3,1,11,0,0,12,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1069,0,117,0,0,0,6,29,59,1057,880,0,0,0,0,1,0,0,0,0,0,0,0,0,3296,0,0,0,0,0,0,0,0,0,4,0,0,2,0,2,0,0,0,0,0,1,8,52,181,13,0,0,242,0,435,0,0,0,163,386,0,0,0,0,0,0,4,0,0,343,1,0,0,0,5,0,0,0,0,3,122,246,0,0,467,0,0,0,0,2,738,0,0,2467,0,0,1,0,0,0,0,0,4,0,5,0,8,0,0,0,0,0,25,2,0,0,0,5,0,2,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,24,0,0,0,0,1,38,142,0,19,0,0,0,0,0,0,354,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,30,0,0,0,0,0,0,0,2,0,0,0,0,0,1,900,149,5 +6,0,0,20,1,71,50,1,146,6,21,0,0,9,18,0,1055,0,10,6,0,0,0,8,1,12,15,0,16,0,1,3,0,1,25,9051,72,56,17,0,200,0,0,0,1,0,0,2,0,0,0,0,8,491,0,0,0,0,0,1,0,0,0,6,0,22,0,0,56756,71,1280,0,17,0,0,0,0,0,24,0,0,0,0,0,10,36,9138,0,1,25,1,0,4,35,0,648,75,3,0,0,4,1,1344,0,10,27,0,4000,0,0,0,0,8,4,3,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,12,12,12,0,0,0,7395,0,98,0,0,0,16,46,464,1666,7400,0,0,0,0,1,0,6,0,0,0,0,0,0,625,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,1,0,220,88,546,24,0,0,635,0,1845,0,1,0,328,42,0,0,0,0,0,0,0,0,0,1309,1,0,0,0,15,0,0,0,0,6,194,177,0,0,125,0,0,0,0,0,3458,1,0,116,9,0,1,1,1,0,0,0,6,0,0,0,1,0,0,0,0,0,6,0,0,6,14,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,9,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,80,1,1,1,0,42,0,0,0,0,16,97,301,0,35,12,0,0,0,0,0,273,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,16,0,0,0,0,0,0,0,0,0,0,0,1,0,3,5394,113,5 +0,0,0,0,0,10,2,0,8,0,1,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,9,0,0,0,1,0,0,1,0,0,0,0,0,56,0,0,0,0,0,1,0,0,0,0,0,0,0,0,187,10,29,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,24,0,0,2,0,0,0,0,0,7,0,2,0,0,2,0,7,0,0,0,0,128,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,43,0,0,0,0,3,24,5,44,0,0,0,0,1,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,76,0,0,0,100,0,211,0,0,0,49,5,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,92,36,0,0,0,0,0,0,0,0,27,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,125,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,81,58,5 +0,0,0,13,0,29,9,0,65,17,12,0,1,2,45,2,55,0,7,7,0,0,0,1,0,4,12,0,10,0,1,0,0,0,9,0,29,69,33,0,243,0,0,0,1,0,0,1,0,0,0,0,5,118,0,0,0,0,0,1,0,0,0,0,0,6,0,0,6100,29,205,0,11,0,0,0,0,0,7,0,0,0,0,0,2,4,556,0,0,9,0,0,1,15,0,169,15,1,0,0,2,0,301,0,2,0,3,1785,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,440,0,55,0,0,0,10,214,73,528,471,0,0,0,0,1,0,0,0,0,0,0,0,0,1641,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,32,204,19,0,0,205,0,746,0,0,0,117,113,0,0,0,0,0,0,0,0,0,198,1,0,0,0,8,0,0,0,0,6,122,99,0,0,38,0,0,0,0,0,954,0,0,1372,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,114,0,0,0,0,1,38,219,0,27,0,0,0,0,0,0,127,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,1,769,53,5 +0,0,0,6,0,33,32,0,99,8,28,0,0,2,12,0,38,0,7,8,0,0,0,5,13,8,0,0,22,0,2,0,0,0,6,0,33,6,36,0,160,0,0,0,1,0,0,4,0,0,0,0,20,200,0,0,0,0,0,1,0,0,0,0,0,20,0,0,2058,33,274,0,22,0,0,0,0,0,22,0,0,0,0,0,7,16,248,0,0,6,0,0,2,78,0,787,125,7,0,0,2,0,391,0,9,0,0,744,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,211,0,85,0,0,0,38,71,194,530,195,0,0,0,0,1,0,3,0,0,0,0,0,0,616,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,19,227,6,0,0,272,0,295,0,0,0,163,32,0,0,0,0,0,0,0,0,0,218,1,0,0,0,26,0,0,0,0,1,119,231,0,0,329,0,0,0,0,0,340,0,0,192,2,0,1,1,1,0,0,0,9,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,41,0,0,0,0,1,39,367,0,24,8,0,0,0,0,0,219,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,4,397,165,5 +0,0,0,5,0,36,55,0,40,0,2,0,0,2,2,0,804,0,6,2,0,0,0,8,0,11,0,0,4,0,1,0,0,0,2,12884,36,6,0,0,22,0,3,0,1,0,0,5,0,0,0,0,1,618,0,0,0,0,0,1,0,0,0,0,0,3,0,0,212690,36,1077,0,1,0,0,0,0,0,125,0,0,0,0,0,9,26,35716,0,0,2,0,0,0,0,0,98,5,9,1,0,2,0,913,0,0,0,0,3694,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,32424,0,54,0,0,0,0,3,352,862,32394,0,0,0,0,1,0,3,0,0,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,32,10,311,5,0,0,488,0,364,0,0,0,317,15,0,0,0,0,0,0,0,0,0,911,1,0,0,0,10,0,0,0,0,1,188,88,0,0,0,0,0,0,0,1,3443,1,0,1033,56,0,1,1,1,0,0,0,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,56,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,0,0,0,0,0,1,38,268,0,2,14,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1649,161,5 +2,0,0,0,0,74,131,0,184,19,24,1,3,2,23,0,56,0,7,5,0,0,0,13,0,10,6,0,6,0,1,0,0,0,23,0,74,161,9,0,467,0,0,0,1,0,0,3,1,0,0,0,3,274,0,0,0,0,0,1,0,0,2,0,0,19,0,0,9840,74,502,0,5,0,0,0,1,0,53,0,0,0,0,0,15,25,2264,0,0,23,0,0,3,146,0,1178,55,7,0,0,6,0,882,0,9,0,2,2441,0,1,1,0,5,0,6,0,0,0,0,1,0,0,0,33,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,22,0,1,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,10,10,10,0,0,0,1256,0,173,0,0,0,4,22,279,1115,1301,0,0,0,0,1,0,7,0,0,0,0,0,0,3709,0,0,0,0,4,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,34,60,462,0,0,0,577,0,2143,0,0,0,396,64,0,0,0,0,0,0,3,0,0,431,1,0,2,0,18,0,0,0,0,2,161,510,0,0,169,0,0,0,0,5,850,0,0,1675,3,0,1,1,0,0,0,0,9,0,0,0,6,0,0,0,0,0,16,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,3,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,98,1,1,1,0,22,0,0,0,0,1,97,387,0,14,9,0,0,0,0,0,398,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1186,282,5 +4,0,0,7,1,46,36,1,89,3,12,0,0,9,9,0,1115,0,9,2,0,0,0,7,0,10,0,0,6,0,1,0,0,1,5,14802,47,54,0,0,94,0,0,0,1,0,0,5,0,0,0,0,1,624,0,0,0,0,0,1,0,0,0,8,0,4,0,0,100855,46,1275,0,4,0,0,0,0,0,37,0,0,0,0,0,8,37,17630,0,1,5,1,0,2,7,0,441,45,10,1,0,4,1,1204,0,1,26,0,3785,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,14601,0,90,0,0,0,2,5,452,1015,14592,0,0,0,0,1,0,10,0,0,0,0,0,0,807,0,0,0,0,0,0,0,0,0,0,0,0,5,5,4,0,0,0,0,1,0,226,29,461,8,0,0,521,0,626,0,1,0,230,18,0,0,0,0,0,0,0,0,0,1279,1,0,0,0,9,0,0,0,0,2,176,86,0,0,47,0,0,0,0,0,4225,1,0,698,7,0,1,1,0,0,0,0,15,0,0,0,3,0,0,0,0,0,3,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,63,1,1,1,0,9,0,0,0,0,9,52,214,0,5,12,0,0,0,0,0,146,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,4,1672,86,5 +3,0,0,14,0,31,15,0,130,19,46,0,1,2,26,0,48,0,7,5,0,0,0,2,1,2,9,0,10,0,1,0,0,0,14,0,31,89,16,0,163,0,0,0,1,0,0,1,0,0,0,0,5,249,0,0,0,0,0,1,0,0,0,0,0,15,0,0,973,31,285,0,11,0,0,0,0,0,6,0,0,0,0,0,2,4,39,0,0,14,0,0,3,87,0,754,180,1,0,0,2,0,502,0,4,0,3,2843,0,0,0,0,4,0,0,0,0,0,1,1,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,93,0,85,0,0,0,10,35,74,1555,116,0,0,0,0,1,0,1,0,0,0,0,0,0,335,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,8,28,231,19,0,0,243,0,636,0,0,0,149,107,0,2,0,0,0,0,0,0,0,275,1,0,0,0,8,0,0,0,0,4,133,240,0,0,540,0,0,0,0,1,256,0,0,16,0,0,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,20,0,0,0,0,1,45,256,0,22,0,0,0,0,0,0,228,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,23,1,0,0,0,0,0,0,0,0,0,0,0,0,1,258,57,5 +0,0,0,6,0,40,94,0,240,11,83,0,0,0,21,1,55,0,7,5,0,0,0,1,2,5,18,0,11,0,1,0,0,0,26,0,40,6,18,0,367,0,0,0,1,0,0,8,0,0,0,0,6,225,0,2,0,0,0,1,0,0,1,0,0,31,0,0,2059,40,560,0,12,0,0,0,0,0,28,0,0,0,0,0,1,14,155,0,0,26,0,0,5,226,0,1837,385,16,0,0,2,0,1090,0,15,0,0,1027,0,0,0,0,10,0,3,0,0,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,193,0,110,0,0,0,12,69,68,1205,201,0,0,0,0,1,0,2,0,0,0,0,0,0,1055,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,19,314,6,0,0,512,0,704,0,0,0,439,42,0,0,0,0,0,0,0,0,0,501,1,0,0,0,8,0,0,0,0,6,156,596,0,0,1041,0,0,0,0,1,258,0,0,140,0,0,1,0,0,0,0,0,13,0,1,0,15,0,0,0,0,0,14,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,49,0,0,0,0,1,66,761,0,35,0,0,0,0,0,0,493,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,62,5 +8,0,0,0,0,51,36,0,71,14,24,0,2,0,20,0,791,0,7,2,0,0,0,10,0,11,3,0,21,0,2,0,0,0,11,9262,51,9,0,0,138,0,0,0,1,0,0,4,0,0,0,0,2,572,0,0,0,0,0,1,0,0,0,12,0,14,0,0,22178,51,1064,0,19,0,0,0,0,0,71,0,0,0,0,0,11,91,4072,0,0,11,0,0,1,15,0,447,10,7,0,0,2,0,1004,0,13,92,0,3704,0,0,0,0,6,2,4,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,9,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,60,12,12,12,0,0,0,1501,0,85,0,0,0,14,20,388,1230,1495,0,0,0,0,1,0,3,0,0,0,0,0,0,766,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,41,33,367,0,0,0,537,0,660,0,0,0,359,16,0,0,0,0,0,0,0,0,0,951,1,0,0,0,12,0,0,0,0,2,170,198,0,0,166,0,2,0,4,2,3217,1,0,313,27,0,1,1,1,0,0,0,11,0,0,0,1,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,27,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,58,1,1,1,0,54,0,0,0,0,1,62,578,0,23,14,0,0,0,0,0,132,1,0,0,0,0,0,0,0,0,0,0,0,2,0,2,14,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1308,105,5 +45,0,0,7,1,87,34,1,79,2,10,0,0,9,6,0,1490,0,9,2,0,0,0,8,0,10,0,0,6,0,1,0,0,1,43,109411,88,54,0,0,255,0,0,0,1,0,0,1,0,0,0,0,1,1280,0,0,0,0,0,1,0,0,0,90,0,4,0,0,1205325,87,1593,0,4,0,0,0,0,0,17,0,0,0,0,0,9,33,341947,0,1,43,1,0,1,0,0,954,30,2,0,0,4,1,1672,0,2,43,0,33338,0,0,0,0,45,45,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,95,0,1,0,0,0,0,0,0,0,0,0,1,0,45,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,12,12,12,0,0,0,313634,0,86,0,0,0,2,5,1045,7169,313627,0,0,0,0,1,0,92,0,0,0,0,0,0,1929,0,0,0,0,0,0,0,0,0,0,0,0,1,46,0,0,0,0,0,1,0,326,29,979,8,0,0,791,0,604,0,1,0,482,28,0,0,0,0,0,0,0,0,0,1637,1,0,0,0,10,0,0,0,0,2,371,48,0,0,36,0,0,0,0,0,20106,1,0,67,8,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,224,1,1,1,0,9,0,0,0,0,9,131,306,0,5,12,0,0,0,0,0,214,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,2,13487,312,5 +6,0,0,39,5,119,94,5,478,57,154,1,1,5,97,1,504,0,29,13,0,2,2,11,3,17,135,0,18,0,1,21,0,5,72,0,124,455,21,0,648,0,0,0,1,0,0,2,0,0,0,0,30,1572,0,0,0,0,0,1,0,0,0,1,0,83,0,0,119096,119,1699,0,39,0,0,0,0,0,18,6,0,0,0,0,14,23,3353,0,5,72,5,0,7,293,0,2673,695,2,0,0,8,5,2420,0,69,0,5,18464,0,1,1,0,13,1,0,0,0,0,2,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,14,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,162,10,12,10,0,0,0,1808,0,182,0,0,0,39,252,1812,131449,1836,0,0,0,0,1,0,3,0,0,0,0,0,0,2657,1,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,2,0,433,146,1320,53,0,0,1102,0,6451,0,3,0,530,261,0,0,0,0,0,0,0,0,0,1364,1,0,0,0,31,0,0,0,0,8616,379,535,0,0,2482,0,0,0,0,0,2710,0,0,1172,32,0,1,3,0,0,0,0,3,0,1,0,1,0,0,0,0,0,60,0,0,0,3,0,0,2,2,0,1,1,0,0,0,1,32,1,0,0,0,0,13,767,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,150,1,3,1,0,138,0,0,0,0,54,196,205,0,183,9,0,0,0,0,0,832,5,0,0,0,0,0,0,0,0,0,0,0,6,0,3,65,0,0,0,0,0,0,0,0,0,0,0,7,0,2,2789,283,5 +6,0,0,14,3,55,99,3,309,56,86,1,2,2,81,0,113,0,9,14,0,2,0,8,0,4,12,0,8,0,1,0,0,2,27,0,58,293,21,0,559,0,0,0,1,0,0,4,0,0,0,0,4,405,0,4,0,0,0,1,0,0,2,1,0,81,0,0,4559,55,847,0,9,0,0,0,0,0,23,6,0,0,0,0,11,17,1010,0,3,27,2,0,13,182,0,1623,304,4,0,0,4,3,1109,0,60,2,4,2682,0,0,1,0,8,2,8,0,0,0,0,1,0,0,49,15,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,2,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,671,0,163,0,0,0,8,46,138,1683,766,0,0,0,0,1,0,51,0,0,0,1,1,0,1383,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,130,90,647,19,0,0,647,0,1932,0,1,0,361,91,0,0,0,0,0,0,0,0,0,702,1,0,0,0,24,0,0,0,0,4,202,453,0,0,772,0,4,0,0,2,1254,0,0,100,0,0,1,8,0,0,0,0,9,0,2,0,7,0,0,0,0,0,59,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,74,1,1,1,0,48,0,0,0,0,25,85,303,0,25,0,0,0,0,0,0,764,9,0,0,0,0,0,0,0,0,0,0,0,3,0,1,74,3,0,0,0,0,0,0,0,0,0,0,3,0,5,609,180,5 +0,0,0,0,0,29,7,0,25,2,6,0,2,0,2,5,29,0,7,4,0,0,0,1,0,0,0,0,3,0,1,0,0,0,11,0,28,34,2,0,106,0,0,0,0,0,0,0,0,0,0,0,2,133,0,0,0,0,0,1,0,0,0,3,0,3,0,0,210,29,72,0,4,0,0,0,0,0,0,0,0,0,0,0,2,2,12,0,0,11,0,0,2,17,0,158,0,0,0,0,6,0,152,0,0,0,0,407,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,30,0,36,0,0,0,4,9,50,195,48,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,29,141,0,0,0,127,0,944,0,0,0,61,31,0,0,0,0,0,0,0,0,0,83,0,0,0,0,5,0,0,0,0,3,137,57,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,5,0,0,0,0,1,39,11,0,4,0,0,0,0,0,0,96,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41,45,5 +4,0,0,18,1,111,94,1,457,98,103,0,1,11,132,0,1064,0,20,9,0,0,0,17,11,24,48,0,51,0,1,0,0,1,52,898,112,281,91,0,904,0,0,0,1,0,0,13,0,0,0,0,25,528,0,0,0,0,0,1,0,0,0,1,0,136,0,0,18386,111,2016,0,49,0,0,0,0,0,51,0,0,0,0,0,12,48,2121,0,1,52,1,0,5,293,0,2794,310,18,0,0,4,1,2959,0,86,7,8,5351,0,2,0,0,17,0,9,0,0,0,0,1,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,2,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,73,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,12,12,12,0,0,0,1364,0,199,0,0,0,49,355,538,2758,1365,0,0,0,0,1,0,36,0,0,0,0,0,0,4148,0,0,0,0,0,0,0,0,0,0,0,0,13,1,4,0,0,0,0,1,0,213,149,943,20,0,0,913,0,1837,0,1,0,565,141,0,0,0,0,0,0,1,0,0,1882,1,0,0,0,37,0,0,0,0,24,235,891,0,0,859,0,15,0,0,0,4416,1,0,2797,8,0,1,1,1,0,0,0,25,0,0,0,5,0,0,0,0,0,97,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,155,1,1,1,0,175,0,0,0,0,9,164,667,0,112,12,0,0,0,0,0,996,36,0,0,0,0,0,0,0,0,0,0,0,3,0,1,108,0,0,0,0,0,0,0,0,0,0,0,1,0,4,2558,445,5 +1,0,0,3,1,35,30,1,37,2,4,0,0,2,4,0,72,0,9,3,0,0,0,5,0,8,3,0,3,0,1,1,0,1,6,0,36,54,0,0,30,0,0,0,1,0,0,5,0,0,0,0,2,193,0,0,0,0,0,1,0,0,0,4,0,2,0,0,6279,35,131,0,3,0,0,0,0,0,24,0,0,0,0,0,7,18,1057,0,1,6,1,0,1,0,0,115,5,10,0,0,4,1,50,0,1,0,0,784,0,0,0,0,6,1,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,1056,0,87,0,0,0,2,14,213,40,1052,0,0,0,0,1,0,4,0,0,0,0,0,0,1544,2,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,1,0,135,22,310,4,0,0,389,0,579,0,1,0,152,52,0,0,0,0,0,0,0,0,0,158,1,0,0,0,8,0,0,0,0,1,143,78,0,0,0,0,0,0,0,0,186,0,0,872,3,0,1,1,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,50,1,1,1,0,25,0,0,0,0,9,42,300,0,7,9,0,0,0,0,0,50,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,247,120,5 +0,0,0,9,0,24,4,0,48,14,6,0,1,3,24,0,60,0,7,4,0,0,0,1,1,2,12,0,8,0,1,0,0,0,9,0,24,33,14,0,58,0,0,0,1,0,0,1,1,0,0,0,4,283,0,0,0,0,0,1,0,0,0,0,0,7,0,0,699,24,163,0,9,0,0,0,0,0,5,0,0,0,0,0,1,6,59,0,0,9,0,0,0,0,0,45,0,5,1,0,2,0,181,0,4,0,4,982,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,95,0,78,0,0,0,8,39,62,97,106,0,0,0,0,1,0,0,0,0,2,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,21,260,10,0,0,142,0,4105,0,0,0,54,1637,0,0,0,0,0,0,0,0,0,153,1,0,5,0,6,0,0,0,0,5,110,10,0,0,0,0,0,0,0,0,278,0,0,29,0,0,1,0,0,0,0,0,10,0,0,0,2,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,22,0,0,0,0,4,33,199,0,23,0,0,0,0,0,0,57,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,1,286,83,5 +1,0,0,7,1,41,34,1,57,4,11,0,0,9,9,1,290,0,9,3,0,0,0,7,0,10,0,0,5,0,1,0,0,1,5,5498,42,54,0,0,67,0,0,0,1,0,0,1,0,0,0,0,1,442,0,0,0,0,0,1,0,0,0,2,0,6,0,0,11754,41,376,0,3,0,0,0,0,0,17,0,0,0,0,0,9,31,1639,0,1,5,1,0,1,0,0,282,30,2,0,0,4,1,226,0,4,23,0,1898,0,0,0,0,3,1,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,12,12,0,0,0,505,0,90,0,0,0,1,4,439,561,494,0,0,0,0,1,0,4,0,0,0,0,0,0,375,1,0,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,1,0,217,31,396,8,0,0,447,0,523,0,1,0,172,15,0,0,0,0,0,0,0,0,0,420,1,0,0,0,10,0,0,0,0,2,157,44,0,0,26,0,0,0,0,0,4474,1,0,83,8,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,38,38,0,0,1,0,0,0,0,0,8,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,47,1,1,1,0,5,0,0,0,0,33,47,196,0,4,12,0,0,0,0,0,114,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,734,42,5 +5,0,0,13,0,45,35,0,326,9,85,0,0,2,19,1,172,0,7,4,0,0,0,7,1,9,9,0,7,0,1,2,0,0,13,4694,45,78,7,0,586,0,0,0,1,0,0,5,0,0,0,0,5,320,0,0,0,0,0,1,0,0,0,2,0,68,0,0,15345,45,678,0,8,0,0,0,0,0,29,0,0,0,0,0,9,26,3344,0,0,13,0,0,4,281,0,2251,180,7,0,0,2,0,1521,0,10,0,0,5581,0,0,0,0,14,0,6,0,0,0,1,1,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,11,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,10,10,10,0,0,0,2254,0,137,0,0,0,8,31,236,3043,2229,0,0,0,0,1,0,3,0,5,0,0,0,0,806,0,0,0,0,3,0,0,0,0,0,0,0,5,1,0,0,0,0,0,2,1,42,29,523,22,0,0,717,0,3005,0,0,0,497,882,0,0,0,0,0,0,0,0,0,647,1,0,0,0,12,0,0,0,0,5,233,947,0,0,402,0,0,0,0,1,759,0,0,548,3,0,1,1,1,0,0,0,13,0,0,0,1,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,33,33,0,0,4,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,47,1,1,1,0,25,0,0,0,0,25,58,1337,0,19,9,0,0,0,0,0,723,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,5,531,313,5 +0,0,0,12,0,31,24,0,81,19,17,0,1,5,37,0,67,0,7,5,0,0,0,3,1,4,15,0,10,0,1,0,0,0,12,0,31,135,17,0,177,0,0,0,1,0,0,3,1,0,0,0,6,234,0,0,0,0,0,1,0,0,0,0,0,29,0,0,1725,31,265,0,12,0,0,0,2,0,16,0,0,0,0,0,3,9,191,0,0,12,0,0,2,40,0,382,60,8,0,0,2,0,398,0,19,0,6,1020,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,187,0,76,0,0,0,11,47,73,351,183,0,0,0,0,1,0,6,0,0,0,0,0,0,533,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,16,39,220,13,0,0,266,0,1840,0,0,0,156,79,0,0,0,0,0,0,0,0,0,239,1,0,4,0,9,0,0,0,0,6,129,136,0,0,151,0,0,0,0,0,589,0,0,180,0,0,1,0,0,0,0,0,12,0,0,0,2,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,28,0,0,0,0,8,43,282,0,30,0,0,0,0,0,0,164,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,3,347,128,5 +0,0,0,14,0,38,84,0,45,1,5,0,0,9,4,0,816,0,6,1,0,0,0,9,0,11,0,0,6,0,1,0,0,0,2,6935,38,6,0,0,61,0,1,0,1,0,0,2,0,0,0,0,1,480,0,0,0,0,0,1,0,0,0,0,0,4,0,0,152567,38,1150,0,3,0,0,0,0,0,145,0,0,0,0,0,9,27,26298,0,0,2,0,0,0,0,0,232,30,3,1,0,2,0,1001,0,0,1,0,5593,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,20417,0,41,0,0,0,1,4,412,1702,20399,0,0,0,0,1,0,3,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,111,25,250,24,0,0,462,0,267,0,0,0,292,11,0,0,0,0,0,0,0,0,0,969,1,0,0,0,10,0,0,0,0,0,152,73,0,0,6,0,0,0,0,0,5199,1,0,784,73,0,1,1,1,0,0,0,3,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,73,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,5,0,0,0,0,1,40,242,0,4,14,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2889,53,5 +15,0,0,4,0,22,75,0,98,1,12,0,0,0,4,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,11,0,22,6,0,0,186,0,0,0,1,0,0,4,0,0,0,0,0,105,0,0,0,0,0,1,0,0,0,0,0,8,0,0,7227,22,242,0,1,0,0,0,0,0,43,0,0,0,0,0,1,5,637,0,0,11,0,0,2,91,0,681,30,4,0,0,2,0,460,0,2,0,0,366,0,0,15,0,0,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,653,0,120,0,0,0,0,3,53,449,675,0,0,0,0,1,0,0,0,0,0,0,0,0,2365,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,5,152,4,0,0,219,0,595,0,0,0,154,10,0,0,0,0,0,0,0,0,0,212,1,0,0,0,2,0,0,0,0,1,108,218,0,0,58,0,0,0,0,0,498,0,0,1978,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,0,0,0,0,0,1,33,229,0,1,0,0,0,0,0,0,216,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,769,327,5 +1,0,0,0,0,32,7,0,110,27,8,0,1,5,28,0,69,0,7,3,0,0,0,2,2,4,12,0,8,0,1,0,0,0,15,0,32,151,21,0,305,0,0,0,1,0,0,5,0,0,0,0,4,179,0,0,0,0,0,1,0,0,0,2,0,3,0,0,3044,32,293,0,9,0,0,0,0,0,26,0,0,0,0,0,2,12,469,0,0,15,0,0,1,74,0,587,10,10,2,0,4,0,595,0,0,0,4,1812,0,0,0,0,8,0,5,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,402,0,121,0,0,0,8,63,70,467,407,0,0,0,0,1,0,0,0,0,0,0,0,0,786,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,19,47,344,14,0,0,304,0,638,0,0,0,215,212,0,0,0,0,0,0,0,0,0,235,1,0,0,0,7,0,0,0,0,5,195,236,0,0,14,0,0,0,0,0,476,0,0,332,0,0,1,0,0,0,0,0,13,0,0,0,4,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,42,1,1,1,0,64,0,0,0,0,1,47,123,0,25,0,0,0,0,0,0,238,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,27,0,0,0,0,0,0,0,0,0,0,0,0,0,5,853,132,5 +1,0,0,0,0,38,22,0,86,1,17,0,0,0,5,0,13,0,7,1,0,0,0,2,0,0,0,0,4,0,1,0,0,0,23,0,38,6,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1,0,0,0,14,0,16,0,0,662,38,148,0,5,0,0,0,0,0,0,0,0,0,0,0,2,2,22,0,0,23,0,0,1,80,0,603,5,0,0,0,2,0,423,0,1,0,0,6603,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,52,0,52,0,0,0,0,3,66,533,52,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,137,1,0,0,140,0,289,0,0,0,89,55,0,0,0,0,0,0,0,0,0,150,0,0,0,0,3,0,0,0,0,1,120,216,0,0,27,0,0,0,6,0,31,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,4,0,0,0,0,1,61,23,0,5,0,0,0,0,0,0,210,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,16,5 +0,0,0,5,1,71,13,1,58,0,9,0,0,2,10,2,1181,0,7,7,0,2,0,6,1,11,6,0,9,0,2,0,0,1,31,1085,72,6,6,0,86,0,0,0,1,0,0,13,1,0,0,0,4,521,0,0,0,0,0,1,0,0,0,4,0,10,0,0,114668,71,1578,0,8,0,0,0,2,0,114,3,0,0,0,0,9,36,19358,0,1,31,1,0,0,0,0,132,5,20,0,0,2,1,1255,0,5,0,0,3135,0,0,0,0,4,0,12,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,9,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,12,12,12,0,0,0,17792,0,222,0,0,0,6,22,330,742,17786,0,0,0,0,1,0,8,0,0,0,0,0,0,1278,0,0,0,0,3,0,0,0,0,0,0,0,13,1,0,0,0,0,0,1,0,32,22,513,6,0,0,613,0,820,0,0,0,408,22,0,0,0,0,0,0,0,0,0,1282,1,0,5,0,16,0,0,0,0,3,198,167,0,0,0,0,0,0,0,0,3438,1,0,387,12,0,1,1,1,0,0,0,29,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,12,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,76,1,1,1,0,16,0,0,0,0,9,103,886,0,16,12,0,0,0,0,0,122,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,2,0,9,1282,136,5 +2,0,0,4,1,82,67,4,134,11,37,0,5,0,15,0,75,0,7,21,0,1,1,8,0,14,12,0,13,0,1,0,0,1,24,0,83,524,17,0,323,0,0,0,0,0,0,0,0,0,0,0,7,225,0,0,0,0,0,1,0,0,2,0,0,13,0,0,3046,82,456,0,13,0,0,0,0,0,3,3,0,0,0,0,21,26,669,0,4,24,1,0,10,95,0,951,52,0,0,0,6,1,736,0,3,10,1,8017,0,0,0,0,8,2,1,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,10,10,10,0,0,0,442,0,111,0,0,0,12,42,322,1014,450,0,0,0,0,0,0,3,0,0,0,0,0,0,599,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,80,46,414,6,0,0,376,0,2366,0,0,0,167,236,0,0,0,0,0,0,0,0,0,340,0,0,0,0,31,0,0,0,0,6,187,295,0,0,99,0,0,0,0,5,1470,0,0,0,3,0,1,4,0,0,0,0,0,0,1,0,4,0,0,0,0,0,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,128,1,1,1,0,31,0,0,0,0,9,107,24,0,31,9,0,0,0,0,0,337,5,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,0,0,0,0,0,0,0,0,0,0,2,0,0,263,131,5 +2,0,0,31,4,57,37,4,89,8,14,0,0,9,14,0,749,0,9,8,0,6,0,8,0,10,0,0,12,0,5,0,0,4,14,8370,61,1141,0,0,83,0,1,0,1,0,0,1,1,0,0,0,1,727,0,0,0,0,0,1,0,0,0,3,0,4,0,0,79110,57,1062,0,21,0,0,0,0,0,33,9,0,0,0,0,9,37,7914,0,4,14,4,0,1,0,0,383,30,11,0,0,4,4,959,0,2,21,0,26239,0,0,0,0,2,2,4,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,3,0,59,3,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,39,12,12,12,0,0,0,5620,0,97,0,0,0,6,17,446,2406,5609,0,0,0,0,1,0,8,0,0,1,0,0,0,6639,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,250,36,1780,49,0,0,1574,0,2102,0,1,0,279,48,0,0,0,0,0,0,0,0,0,921,1,0,12,0,22,0,0,0,0,14,8174,7,0,0,25,0,0,0,0,0,204746,1,0,725,9,0,1,1,1,0,0,0,17,0,0,0,0,0,0,0,0,0,2,0,0,0,8,0,0,0,1,0,0,0,0,0,0,0,3,0,3,0,0,0,9,97,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,54,1,1,1,0,19,0,0,0,4,33,75,30,0,15,12,0,0,0,0,0,352,4,0,0,0,0,0,0,0,0,0,0,0,6,0,5,15,0,0,0,0,0,0,0,0,0,0,0,6,0,2,2648,106,5 +0,0,0,5,0,12,21,0,46,3,15,0,0,0,7,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,12,6,0,0,74,0,0,0,1,0,0,1,0,0,0,0,0,76,0,0,0,0,0,1,0,0,0,0,0,14,0,0,271,12,103,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,25,0,0,2,0,0,2,38,0,310,55,1,0,0,2,0,183,0,4,0,0,165,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,32,0,54,0,0,0,0,3,29,202,51,0,0,0,0,1,0,0,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,7,84,5,0,0,127,0,307,0,0,0,70,5,0,0,0,0,0,0,0,0,0,112,1,0,0,0,2,0,0,0,0,1,96,104,0,0,140,0,0,0,0,1,30,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,14,100,0,1,0,0,0,0,0,0,96,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,111,29,5 +0,0,0,4,0,27,7,0,22,6,3,0,0,0,11,1,75,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,6,0,27,12,0,0,38,0,1,0,1,0,0,3,2,0,0,0,0,301,0,0,0,0,0,1,0,0,0,0,0,10,0,0,4602,27,161,0,1,0,0,0,1,0,33,0,0,0,0,0,1,21,1151,0,0,6,0,0,0,0,0,10,0,11,0,0,2,0,57,0,8,0,0,485,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,330,0,92,0,0,0,0,3,70,928,345,0,0,0,0,1,0,0,0,0,2,0,0,0,1693,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,11,11,163,4,0,0,263,0,517,0,0,0,158,8,0,0,0,0,0,0,0,0,0,126,1,0,6,0,2,0,0,0,0,0,109,117,0,0,0,0,0,0,0,2,702,0,0,3438,0,0,1,0,1,0,0,0,13,0,0,0,3,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,18,18,0,0,2,0,2,0,0,0,0,361,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,0,0,15,33,456,0,1,0,0,1,0,0,0,46,141,0,2,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,756,71,5 +1,0,0,7,1,40,34,1,55,2,10,0,0,6,7,0,116,0,9,2,0,0,0,7,0,10,0,0,6,0,1,0,0,1,3,865,41,54,0,0,51,0,0,0,1,0,0,3,1,0,0,0,1,448,0,0,0,0,0,1,0,0,0,2,0,4,0,0,12485,40,204,0,4,0,0,0,0,0,26,0,0,0,0,0,8,35,2163,0,1,3,1,0,1,0,0,251,20,8,0,0,4,1,132,0,2,27,0,1623,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,992,0,79,0,0,0,2,5,406,251,976,0,0,0,0,1,0,4,0,0,0,0,0,0,526,0,0,0,0,1,0,0,0,0,0,0,0,3,2,0,0,0,0,0,1,0,187,29,483,8,0,0,560,0,417,0,1,0,286,40,0,0,0,0,0,0,0,0,0,237,1,0,2,0,9,0,0,0,0,2,222,114,0,0,28,0,0,0,0,0,751,1,0,293,8,0,1,1,0,0,0,0,6,0,1,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,1,1,1,0,9,0,0,0,0,9,44,653,0,5,12,0,0,0,0,0,107,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,712,65,5 +0,0,0,9,0,22,107,0,172,22,58,0,0,0,27,0,32,0,7,4,0,0,0,1,0,2,6,0,4,0,1,0,0,0,7,0,22,35,9,0,299,0,0,0,1,0,0,2,0,0,0,0,2,121,0,0,0,0,0,1,0,0,2,0,0,42,0,0,6934,22,409,0,5,0,0,0,0,0,9,0,0,0,0,0,2,6,80,0,0,7,0,0,5,160,0,1278,240,2,0,0,2,0,774,0,25,0,0,1684,0,0,0,0,12,0,3,0,0,0,0,1,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,140,0,110,0,0,0,4,23,46,1165,131,0,0,0,0,1,0,1,0,0,0,0,0,0,856,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,35,304,12,0,0,264,0,1117,0,0,0,193,82,0,0,0,0,0,0,0,0,0,403,1,0,0,0,5,0,0,0,0,3,112,337,0,0,537,0,0,0,0,7,164,0,0,29,0,0,1,0,0,0,0,0,3,0,1,0,10,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,18,0,0,0,0,1,29,111,0,13,0,0,0,0,0,0,371,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,26,0,0,0,0,0,0,0,0,0,0,0,0,0,2,181,196,5 +0,0,0,3,0,8,4,0,21,0,7,0,0,0,2,0,16,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,21,0,0,29,0,0,0,1,0,0,3,0,0,0,0,0,78,0,0,0,0,0,1,0,0,0,0,0,4,0,0,767,8,67,0,1,0,0,0,0,0,14,0,0,0,0,0,1,6,88,0,0,0,0,0,1,13,0,120,15,5,0,0,2,0,72,0,0,0,0,155,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,89,0,69,0,0,0,0,3,22,95,101,0,0,0,0,1,0,0,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,83,3,0,0,183,0,364,0,0,0,130,7,0,0,0,0,0,0,0,0,0,56,1,0,0,0,2,0,0,0,0,0,90,144,0,0,30,0,0,0,0,0,62,0,0,85,0,0,1,0,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,249,0,1,0,0,0,0,0,0,58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,169,37,5 +2,0,0,15,0,105,17,0,99,64,19,0,1,5,92,0,148,0,7,10,0,0,0,16,6,21,20,0,43,0,1,0,0,0,54,879,105,428,78,0,365,0,0,0,1,0,0,1,0,0,0,0,22,362,0,0,0,0,0,1,0,0,0,2,0,90,0,0,17147,105,454,0,42,0,0,0,0,0,14,0,0,0,0,0,11,20,1090,0,0,54,0,0,2,44,0,660,45,2,0,0,2,0,703,0,73,0,4,4717,0,0,0,0,70,1,1,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,28,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,12,12,12,0,0,0,694,0,129,0,0,0,41,128,340,1823,634,0,0,0,0,1,0,8,0,0,0,0,0,0,840,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,37,91,686,16,0,0,464,0,1091,0,0,0,262,75,0,0,0,0,0,0,0,0,0,388,1,0,0,0,32,0,0,0,0,20,218,142,0,0,129,0,0,0,0,0,39054,1,0,32,7,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,119,1,1,1,0,129,0,0,0,0,1,159,171,0,73,12,0,0,0,0,0,319,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,70,0,0,0,0,0,0,0,0,0,0,0,0,0,2,704,209,5 +0,0,0,24,0,67,223,0,379,45,99,0,1,5,65,2,213,0,7,12,0,0,0,5,1,13,18,0,14,0,1,0,0,0,26,0,67,212,21,0,734,0,0,0,1,0,0,6,0,0,0,0,7,353,0,9,0,0,0,1,0,0,5,0,0,82,0,0,9798,67,1048,0,13,0,0,0,0,0,34,0,0,0,0,0,11,25,1980,0,0,26,0,0,8,327,0,2665,385,11,0,0,2,0,1808,0,50,0,6,2954,0,0,0,0,25,0,9,0,0,0,0,1,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,14,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,10,10,10,0,0,0,1378,0,247,0,0,0,12,57,298,2528,1350,0,0,0,0,1,0,5,0,4,0,0,0,0,2850,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,39,69,378,28,0,0,756,0,1186,0,0,0,600,103,0,0,0,0,0,0,0,0,0,994,1,0,0,0,18,0,0,0,0,6,172,881,0,0,932,0,3,0,0,17,1030,0,0,950,3,0,1,1,0,0,0,0,17,0,1,0,17,0,0,0,0,0,47,0,0,2,0,0,0,0,0,0,0,0,44,44,0,0,11,0,0,0,0,0,3,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,88,1,1,1,0,44,0,0,0,0,29,93,566,0,37,9,0,7,0,0,0,793,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,55,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1097,228,5 +0,0,0,6,0,47,74,0,78,13,80,0,0,10,8,0,1330,0,7,7,0,0,0,7,3,16,14,0,55,0,4,0,0,0,6,28679,47,35,29,0,73,0,0,0,1,0,0,8,0,0,0,0,12,1120,0,0,0,0,0,1,0,0,0,0,0,7,0,0,84319,47,1890,0,56,0,0,0,0,0,182,0,0,0,0,0,8,318,13979,0,0,6,0,0,0,0,0,892,40,15,0,0,2,0,1643,0,4,361,0,8732,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,12,12,12,0,0,0,5668,0,150,0,0,0,44,84,1938,4694,5529,0,0,0,0,1,0,4,0,0,0,0,0,0,911,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,184,50,846,6,0,0,980,0,893,2,0,0,761,79,0,0,0,0,0,0,4,0,0,1587,1,0,0,0,17,0,0,0,0,5,451,214,0,0,519,0,0,0,0,0,8224,1,0,840,73,0,1,1,0,0,0,0,23,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,73,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,167,0,0,0,0,1,53,798,0,77,12,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,17,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4327,161,5 +0,0,0,4,0,15,4,0,24,15,7,0,0,0,18,0,21,0,7,1,0,0,0,1,0,0,3,0,1,0,2,0,0,0,4,0,15,6,0,0,53,0,0,0,1,0,0,7,0,0,0,0,1,185,0,0,0,0,0,1,0,0,0,0,0,20,0,0,3430,15,125,0,3,0,0,0,0,0,31,0,0,0,0,0,1,11,399,0,0,4,0,0,1,8,0,95,15,11,0,0,2,0,103,0,16,0,0,568,0,0,0,0,0,0,6,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,365,0,113,0,0,0,2,9,35,170,364,0,0,0,0,1,0,0,0,0,0,0,0,0,1069,0,0,0,0,0,0,0,0,0,0,0,0,7,0,2,0,0,0,0,0,0,8,19,174,4,0,0,271,0,318,0,0,0,192,17,0,0,0,0,0,0,7,0,0,81,1,0,0,0,2,0,0,0,0,2,119,163,0,0,52,0,0,0,0,0,224,0,0,774,0,0,1,0,0,0,0,0,15,0,0,0,4,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,6,0,0,0,0,1,19,440,0,6,0,0,0,0,0,0,68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,0,0,0,0,0,0,0,0,0,0,0,0,0,6,452,109,5 +0,0,0,3,0,15,3,0,8,0,2,0,0,0,2,0,19,0,15,1,0,0,0,1,4,0,0,0,5,0,1,0,0,0,1,0,15,6,4,0,7,0,0,0,1,0,0,3,0,0,0,0,4,68,0,0,0,0,0,1,0,0,0,0,0,1,0,0,623,15,65,0,6,0,0,0,0,0,11,0,0,0,0,0,1,6,68,0,0,1,0,0,0,0,0,51,0,6,0,0,2,0,12,0,0,0,0,153,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,92,0,40,0,0,0,8,19,38,26,90,0,0,0,0,1,0,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,84,3,0,0,130,0,318,0,0,0,60,7,0,0,0,0,0,0,0,0,0,49,1,0,0,0,6,0,0,0,0,5,97,47,0,0,0,0,0,0,0,0,61,0,0,114,0,0,1,0,1,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,5,0,0,0,0,1,16,112,0,6,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,118,31,5 +1,0,0,6,0,16,11,0,55,1,22,0,0,4,5,0,30,0,8,3,0,0,0,2,0,1,0,0,2,0,1,0,0,0,2,1858,16,6,4,0,118,0,0,0,1,0,0,2,0,0,0,0,1,199,0,0,0,0,0,1,0,0,0,0,0,14,0,0,1092,16,133,0,3,0,0,0,0,0,11,0,0,0,0,0,3,6,160,0,0,2,0,0,4,43,0,486,80,3,0,0,2,0,262,0,2,0,0,1540,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,165,0,77,0,0,0,2,10,55,4152,163,0,0,0,0,1,0,0,0,2,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,60,5,337,6,0,0,214,0,411,0,0,0,111,557,0,0,0,0,0,0,0,0,0,135,1,0,0,0,5,0,0,0,0,2,131,152,0,0,189,0,0,0,0,0,418,0,0,85,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,7,0,0,0,0,1,18,184,0,4,0,0,0,0,0,0,130,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,2,286,91,5 +0,0,0,5,0,27,7,0,26,0,7,0,0,2,4,0,20,0,6,3,0,0,0,5,0,8,0,0,2,0,1,0,0,0,2,0,27,9,0,0,38,0,0,0,1,0,0,5,0,0,0,0,1,191,0,0,0,0,0,1,0,0,0,0,0,5,0,0,1700,27,93,0,1,0,0,0,0,0,26,0,0,0,0,0,7,18,265,0,0,2,0,0,1,5,0,141,15,9,0,0,4,0,65,0,1,0,0,657,0,0,0,0,0,0,6,0,0,0,0,1,0,0,0,23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,192,0,78,0,0,0,0,3,179,96,202,0,0,0,0,1,0,3,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,38,14,179,5,0,0,216,0,1171,0,0,0,114,28,0,0,0,0,0,0,0,0,0,72,1,0,0,0,8,0,0,0,0,0,112,101,0,0,18,0,0,0,0,0,128,0,0,170,3,0,1,1,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,0,0,0,0,0,1,29,327,0,2,9,0,0,0,0,0,3808,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,6,542,115,5 +0,0,0,4,2,21,66,8,31,10,6,0,0,0,16,2,81,0,7,5,0,2,2,1,0,0,0,0,0,0,1,0,0,2,5,0,23,171,304,0,113,0,0,0,1,0,0,3,0,0,0,0,0,471,0,0,0,0,0,1,0,0,0,0,10,18,0,0,6395,21,507,0,1,0,1,0,0,0,78,6,0,0,0,0,1,5,440,0,8,5,2,0,0,0,0,15,0,5,0,0,2,2,58,0,13,0,0,498,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,449,0,429,0,0,0,0,3,57,65,534,0,0,2,0,1,0,0,0,0,0,0,0,0,2875,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,12,22,303,6,0,0,522,0,906,1,0,0,406,21,0,0,0,0,0,0,0,0,0,209,1,0,0,0,10,0,0,0,0,0,144,209,0,0,0,0,1,0,0,0,1157,0,0,1415,0,0,1,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,9,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,0,0,0,0,0,17,28,426,0,1,0,0,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,10,0,0,0,0,0,0,0,0,0,0,0,4,0,3,1523,119,5 +0,0,0,6,0,38,20,0,55,2,7,0,0,6,4,0,780,0,6,2,0,0,0,8,0,11,0,0,8,0,1,0,0,0,2,4319,38,6,0,0,42,0,0,0,1,0,0,1,0,0,0,0,1,386,0,0,0,0,0,1,0,0,0,0,0,3,0,0,94277,38,900,0,5,0,0,0,0,0,34,0,0,0,0,0,9,30,15803,0,0,2,0,0,0,0,0,208,20,2,0,0,2,0,856,0,0,3,0,2052,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,12,12,12,0,0,0,14211,0,42,0,0,0,2,5,411,603,14186,0,0,0,0,1,0,3,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,84,25,256,6,0,0,287,0,292,0,0,0,115,5,0,0,0,0,0,0,0,0,0,878,1,0,0,0,10,0,0,0,0,1,142,19,0,0,16,0,0,0,0,0,2478,1,0,45,19,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,10,0,0,0,0,1,40,105,0,6,14,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,903,57,5 +1,0,0,13,1,28,32,1,56,8,12,0,1,1,24,0,79,0,9,3,0,0,0,2,0,1,6,0,4,0,1,0,0,1,11,0,29,231,6,0,131,0,0,0,0,0,0,0,0,0,0,0,2,114,0,0,0,0,0,1,0,0,0,2,0,21,0,0,452,28,175,0,5,0,0,0,0,0,0,0,0,0,0,0,2,2,35,0,1,11,1,0,3,16,0,194,25,0,0,0,4,1,208,0,13,0,2,1031,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,56,0,37,0,0,0,4,18,65,132,75,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,31,281,15,0,0,266,0,1377,0,1,0,91,28,0,0,0,0,0,0,0,0,0,214,0,0,0,0,5,0,0,0,0,3,139,31,0,0,50,0,0,0,0,0,493,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,35,1,1,1,0,8,0,0,0,0,9,40,12,0,12,0,0,0,0,0,0,108,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,0,323,50,5 +3,0,0,19,1,51,108,1,233,74,54,0,1,6,94,0,135,0,9,6,0,0,0,2,4,5,21,0,18,0,1,0,0,1,29,0,52,271,27,0,498,0,0,0,1,0,0,5,0,0,0,0,9,317,0,0,0,0,0,1,0,0,2,1,0,81,0,0,3592,51,657,0,19,0,0,0,0,0,19,0,0,0,0,0,2,9,257,0,1,29,1,0,6,133,0,1193,200,7,1,0,4,1,1014,0,67,0,8,2487,0,0,0,0,13,2,6,0,0,0,0,1,0,0,0,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,316,0,153,0,0,0,18,74,108,1061,300,0,0,0,0,1,0,6,0,0,0,0,0,0,1274,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,0,0,0,0,0,0,127,104,500,24,0,0,1129,0,2188,0,1,0,899,111,0,0,0,0,0,0,4,0,0,640,1,0,0,0,12,0,0,0,0,10,186,868,0,0,482,0,4,0,0,3,1269,0,0,190,0,0,1,0,1,0,0,0,13,0,1,0,8,0,0,0,0,0,76,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,66,1,1,1,0,50,0,0,0,0,9,81,347,0,45,0,0,0,0,0,0,450,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,80,0,0,0,0,0,0,0,0,0,0,0,1,0,5,821,214,5 +2,0,0,6,0,40,144,0,61,0,10,0,0,7,5,0,1336,0,6,1,0,0,0,9,0,11,0,0,12,0,1,0,0,0,3,5586,40,6,0,0,47,0,1,0,1,0,0,1,0,0,0,0,1,701,0,0,0,0,0,1,0,0,0,0,0,3,0,0,452343,40,1743,0,9,0,0,0,0,0,172,0,0,0,0,0,9,62,58503,0,0,3,0,0,0,0,0,263,25,2,0,0,2,0,1544,0,0,40,0,49014,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,12,12,12,0,0,0,49219,0,38,0,0,0,5,8,672,12178,49193,0,0,0,0,1,0,3,0,0,0,0,0,0,11927,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,106,22,317,6,0,0,577,0,317,0,0,0,363,11,0,0,0,0,0,0,0,0,0,1569,1,0,0,0,10,0,0,0,0,1,185,87,0,0,48,0,0,0,0,0,9281,1,0,8162,86,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,86,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,23,0,0,0,0,1,43,373,0,10,14,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6171,321,5 +0,0,0,7,0,10,2,0,47,4,18,0,0,0,8,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,65,0,0,0,1,0,0,4,0,0,0,0,0,138,0,0,0,0,0,1,0,0,0,0,0,11,0,0,1140,10,112,0,1,0,0,0,0,0,17,0,0,0,0,0,1,6,143,0,0,1,0,0,1,30,0,266,70,8,0,0,2,0,141,0,5,0,0,375,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,125,0,72,0,0,0,0,3,27,189,134,0,0,0,0,1,0,0,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,12,128,7,0,0,214,0,896,0,0,0,152,17,0,0,0,0,0,0,0,0,0,96,1,0,0,0,2,0,0,0,0,0,93,181,0,0,197,0,16,0,0,2,67,0,0,138,0,0,1,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,456,0,1,0,0,0,0,0,0,86,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,207,224,5 +12,0,0,1,0,50,59,0,110,17,38,0,3,2,16,0,47,0,7,3,0,0,0,13,1,1,6,0,4,0,1,0,0,0,26,0,50,267,6,0,344,0,0,0,1,0,0,2,0,0,0,0,2,454,0,2,0,0,0,1,0,0,0,0,0,11,0,0,1447,50,327,0,5,0,0,0,0,0,28,0,0,0,0,0,14,18,194,0,0,26,0,0,6,65,0,1035,135,3,0,0,6,0,601,0,11,2,2,1404,0,3,9,0,1,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,206,0,165,0,0,0,4,20,139,2000,307,0,0,0,0,1,0,0,0,0,0,0,0,0,900,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,27,51,427,2,0,0,307,0,1493,0,0,0,196,220,0,10,0,0,0,0,0,0,0,282,1,0,0,0,17,0,0,0,0,3,150,444,0,0,614,0,0,0,0,1,673,0,0,80,0,0,1,30,1,0,0,0,4,0,2,0,3,0,0,0,0,0,9,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,77,1,1,1,0,8,0,0,0,0,1,76,244,0,12,0,0,0,0,0,0,268,2,0,0,0,0,0,2,0,0,0,0,0,0,0,1,25,26,0,0,0,0,0,0,0,0,0,0,0,0,3,566,125,5 +0,0,0,3,0,21,3,0,18,0,2,0,0,0,5,0,52,0,6,1,0,0,0,1,0,2,11,0,3,0,2,2,0,0,1,0,21,6,0,0,8,0,0,0,1,0,0,3,0,0,0,0,4,69,0,0,0,0,0,1,0,0,0,0,0,1,0,0,860,21,112,0,8,0,0,0,0,0,16,0,0,0,0,0,1,6,111,0,0,1,0,0,0,0,0,30,0,5,0,0,2,0,126,0,0,0,0,335,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,127,0,60,0,0,0,8,24,35,35,132,0,0,0,0,1,0,0,0,0,0,0,0,0,396,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,9,141,3,0,0,133,0,262,0,0,0,45,8,0,0,0,0,0,0,0,0,0,86,1,0,0,0,2,0,0,0,0,5,103,29,0,0,0,0,0,0,0,0,479,0,0,235,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,15,0,0,0,0,1,22,81,0,20,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,231,73,5 +0,0,0,19,0,45,56,0,75,5,66,0,0,18,8,0,1096,0,6,2,0,0,0,8,0,13,0,0,24,0,1,0,0,0,3,21530,45,6,0,0,121,0,0,0,1,0,0,3,0,0,0,0,1,971,0,0,0,0,0,1,0,0,0,0,0,4,0,0,56791,45,1474,0,23,0,0,0,0,0,117,0,0,0,0,0,9,222,9193,0,0,3,0,0,0,0,0,1102,60,5,1,0,2,0,1321,0,0,859,0,7558,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,2512,0,57,0,0,0,15,18,1527,3293,2461,0,0,0,0,1,0,3,0,0,0,0,0,0,2851,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,305,46,406,30,0,0,458,0,421,0,0,0,276,47,0,0,0,0,0,0,0,0,0,1325,1,0,0,0,10,0,0,0,0,2,160,116,0,0,702,0,2,0,0,0,6568,1,0,2262,57,0,1,1,0,0,0,0,3,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,67,0,0,0,0,1,48,107,0,24,14,0,0,0,0,0,227,2,0,0,0,0,0,0,0,0,0,0,0,3,0,2,22,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3761,152,5 +10,0,0,18,1,72,29,1,89,8,16,0,1,3,37,0,453,0,29,4,0,0,0,2,14,3,36,0,29,0,1,0,0,1,44,0,73,369,32,0,788,0,0,0,1,0,0,3,0,0,0,0,17,488,0,0,0,0,0,1,0,0,0,0,0,24,0,0,110741,72,699,0,30,0,0,0,0,0,13,0,0,0,0,0,2,6,113,0,1,44,1,0,3,16,0,366,35,6,0,0,4,1,1064,0,12,0,4,18525,0,0,0,0,3,4,3,0,0,0,0,1,0,0,0,14,4,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,63,0,0,0,0,0,0,303,0,92,0,0,0,34,117,132,492,157,0,0,0,0,1,0,3,0,0,0,0,0,0,642,0,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,164,42,732,22,0,0,510,0,3247,0,1,0,268,146,0,0,0,0,0,0,0,0,0,657,1,0,0,0,20,0,0,0,0,17,212,83,0,0,75,0,47,0,0,2,1407,0,0,101,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,10,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,89,1,1,1,0,47,0,0,0,0,9,117,242,0,69,0,0,0,0,0,0,1096,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,0,0,0,0,0,0,0,0,0,0,0,1,0,0,967,176,5 +0,0,0,9,0,22,8,0,47,14,18,0,0,0,20,0,28,0,6,3,0,0,0,2,0,1,6,0,3,0,2,0,0,0,11,0,22,6,4,0,123,0,0,0,1,0,0,2,0,0,0,0,2,95,0,0,0,0,0,1,0,0,0,0,0,23,0,0,775,22,131,0,5,0,0,0,0,0,9,0,0,0,0,0,3,6,48,0,0,11,0,0,1,36,0,323,65,4,0,0,2,0,236,0,18,0,0,605,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,77,0,66,0,0,0,4,22,42,203,70,0,0,0,0,1,0,0,0,0,0,0,0,0,266,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,21,140,12,0,0,176,0,443,0,0,0,111,22,0,0,0,0,0,0,0,0,0,127,1,0,0,0,5,0,0,0,0,3,106,125,0,0,146,0,0,0,0,0,76,0,0,48,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,20,1,1,1,0,22,0,0,0,0,1,33,211,0,12,0,0,0,0,0,0,117,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,42,5 +0,0,0,12,0,74,274,0,492,36,101,0,0,2,46,0,1187,0,7,6,0,0,0,14,3,14,9,0,20,0,13,0,0,0,24,2381,74,34,26,0,868,0,0,0,1,0,0,3,0,0,0,0,19,569,0,0,0,0,0,1,0,0,0,11,0,57,0,0,63344,74,2185,0,28,0,0,0,0,0,30,0,0,0,0,0,16,30,7901,0,0,24,0,0,6,444,0,3638,450,5,0,0,2,0,3353,0,41,0,0,10934,0,0,0,0,15,0,13,0,4,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,23,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,12,12,12,0,0,0,6831,0,188,0,0,0,36,91,343,4091,6879,0,0,0,0,1,0,7,0,0,0,0,0,0,5235,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,59,596,15,0,0,789,0,1350,0,0,0,586,207,0,32,0,0,0,0,0,0,0,2109,1,0,0,0,23,0,0,0,0,15,177,982,0,0,1285,0,0,0,0,1,3620,1,0,4163,13,0,1,62,1,0,0,0,5,0,0,0,1,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,13,19,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,93,1,1,1,0,113,0,0,0,0,1,98,381,0,42,14,0,0,0,0,0,946,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,52,24,0,0,0,0,0,0,0,0,0,0,0,0,3,1376,664,5 +0,0,0,3,0,21,2,0,36,0,2,0,0,0,2,0,95,0,6,1,0,0,0,1,0,0,48,0,6,0,17,0,0,0,1,0,21,6,0,0,8,0,0,0,1,0,0,3,0,0,0,0,16,62,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1318,21,200,0,23,0,0,0,0,0,16,0,0,0,0,0,1,6,140,0,0,1,0,0,0,0,0,81,0,5,0,0,2,0,301,0,0,0,0,697,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,144,0,60,0,0,0,32,79,35,101,149,0,0,0,0,1,0,0,0,0,0,0,0,0,462,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,9,116,3,0,0,132,0,376,0,0,0,44,14,0,0,0,0,0,0,0,0,0,143,1,0,0,0,2,0,0,0,0,17,103,28,0,0,0,0,0,0,0,0,256,0,0,247,0,0,1,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,54,0,0,0,0,1,22,56,0,71,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,156,160,5 +0,0,0,2,0,19,2,0,16,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,7,0,19,6,0,0,20,0,0,0,1,0,0,2,0,0,0,0,0,61,0,0,0,0,0,1,0,0,0,0,0,1,0,0,5432,19,48,0,1,0,0,0,0,0,11,0,0,0,0,0,1,4,1343,0,0,7,0,0,0,0,0,9,0,3,0,0,2,0,15,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,717,0,53,0,0,0,0,3,41,6,728,0,0,0,0,1,0,0,0,0,0,0,0,0,1604,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,8,3,100,2,0,0,133,0,137,0,0,0,60,8,0,0,0,0,0,0,4,0,0,42,1,0,0,0,2,0,0,0,0,0,101,29,0,0,0,0,0,0,0,0,369,0,0,1348,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,0,0,0,0,0,1,26,167,0,1,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,749,10,5 +13,0,0,7,1,83,110,1,158,19,24,0,0,9,25,0,1873,0,9,5,0,0,0,8,0,14,9,0,25,0,1,0,0,1,28,28584,84,54,12,0,137,0,0,0,1,0,0,10,0,0,0,0,4,1047,0,0,0,0,0,1,0,0,0,26,0,22,0,0,362594,83,2381,0,22,0,0,0,0,0,161,0,0,0,0,0,9,123,73113,0,1,28,1,0,1,0,0,526,30,19,0,0,4,1,2135,0,20,111,0,24396,0,0,0,0,13,13,18,0,0,0,0,1,0,0,0,27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,65,0,1,0,0,0,0,0,0,0,0,0,1,1,14,0,0,0,0,1,0,0,0,3,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,12,12,12,0,0,0,60328,0,149,0,0,0,15,79,1199,5259,60219,0,0,0,0,1,0,21,0,0,0,0,0,0,8251,12,0,0,0,0,0,0,0,0,0,0,0,27,14,0,0,0,0,0,1,0,226,47,804,8,0,0,913,0,1112,0,1,0,582,42,0,0,0,0,0,0,0,0,0,2208,1,0,0,0,13,0,0,0,0,5,276,257,0,0,155,0,0,0,0,0,13148,1,0,6889,77,0,1,1,1,0,0,0,18,0,0,0,7,0,0,0,0,0,19,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,158,1,1,1,0,76,0,0,0,0,9,112,583,0,35,14,0,0,0,0,0,207,1,0,0,0,0,0,0,0,0,0,0,0,4,0,1,25,0,0,0,0,0,0,0,0,0,0,0,1,0,9,7615,234,5 +3,0,0,9,1,63,145,1,1647,3,489,0,0,10,9,0,2377,0,9,4,0,0,0,8,0,13,24,0,35,0,5,2,0,1,7,29177,64,54,7,0,2719,0,0,0,1,0,0,6,0,0,0,0,9,828,0,0,0,0,0,1,0,0,0,5,0,263,0,0,170834,63,4774,0,38,0,0,0,0,0,79,0,0,0,0,0,9,139,48283,0,1,7,1,0,2,1525,0,12104,1055,10,0,0,4,1,9606,0,2,100,0,7688,0,0,0,0,3,3,6,0,0,0,0,1,0,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,12,12,12,0,0,0,42623,0,88,0,0,0,31,89,940,11096,42554,0,0,0,0,1,0,9,0,0,0,0,0,0,1277,3,0,0,0,0,0,0,0,0,0,0,0,21,4,0,0,0,0,0,1,0,242,34,614,10,0,0,826,0,1003,0,1,0,483,45,0,0,0,0,0,0,0,0,0,4686,1,0,0,0,12,0,0,0,0,4,219,4332,0,0,3939,0,0,0,0,0,8670,1,0,508,38,0,1,1,1,0,0,0,10,0,0,0,0,0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,38,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,88,1,1,1,0,102,0,0,0,0,9,71,431,0,65,14,0,0,0,0,0,3512,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2979,127,5 +2,0,0,4,0,22,11,0,17,10,12,9,0,0,21,1,42,0,6,2,0,0,0,1,1,0,68,0,96,0,1,0,0,0,8,0,22,41,0,0,45,0,0,0,1,0,0,2,0,0,0,0,0,198,0,0,0,0,0,1,0,0,0,0,0,19,0,0,2033,22,255,0,165,0,0,0,0,0,8,0,0,0,0,0,2,224,290,0,0,8,0,0,0,0,0,109,0,3,0,0,2,0,159,0,12,0,0,2268,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,49,0,1,0,0,0,0,0,2,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,12,0,0,0,0,1364,0,47,0,0,0,0,20,334,1559,83,0,0,0,0,2,0,0,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,329,22,155,4,0,0,187,0,14970,0,0,0,92,10,0,0,0,0,0,0,0,0,0,119,1,0,0,0,4,0,0,0,0,17,97,61,0,0,0,0,0,0,0,0,1785,0,0,30,0,0,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,16,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,96,0,0,0,0,8,30,297,0,165,0,0,0,0,0,0,48,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,511,42,5 +0,0,0,11,0,26,24,0,133,17,50,0,0,0,26,0,23,0,7,3,0,0,0,1,0,1,3,0,2,0,1,0,0,0,11,0,26,6,3,0,232,0,0,0,1,0,0,1,0,0,0,0,1,153,0,0,0,0,0,1,0,0,1,0,0,43,0,0,751,26,256,0,3,0,0,0,0,0,6,0,0,0,0,0,2,4,81,0,0,11,0,0,6,120,0,979,215,2,0,0,2,0,570,0,22,0,0,804,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,247,0,63,0,0,0,2,15,50,606,117,0,0,0,0,1,0,1,0,0,0,0,0,0,411,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,25,206,14,0,0,185,0,440,0,0,0,104,42,0,0,0,0,0,0,0,0,0,263,1,0,0,0,4,0,0,0,0,2,115,243,0,0,394,0,0,0,2,6,82,0,0,40,0,0,1,1,1,0,0,0,2,0,0,0,2,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,1,1,1,0,10,0,0,0,0,1,37,207,0,7,0,0,0,0,0,0,281,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,0,0,0,0,0,0,0,0,2,133,77,5 +0,0,0,4,0,11,150,0,325,0,44,0,0,0,2,0,21,0,7,1,0,0,0,1,0,0,3,0,1,0,2,0,0,0,1,0,11,6,0,0,585,0,0,0,1,0,0,2,0,0,0,0,1,274,0,0,0,0,0,1,0,0,0,0,0,32,0,0,7644,11,549,0,3,0,0,0,0,0,9,0,0,0,0,0,1,4,872,0,0,1,0,0,1,300,0,2255,60,4,0,0,2,0,1513,0,0,0,0,289,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,640,0,32,0,0,0,2,10,33,1847,652,0,0,0,0,1,0,0,0,0,0,0,0,0,3404,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,7,114,4,0,0,294,0,361,0,0,0,221,7,0,0,0,0,0,0,0,0,0,549,1,0,0,0,2,0,0,0,0,1,93,819,0,0,190,0,0,0,0,0,629,0,0,2395,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,13,0,0,0,0,1,12,301,0,6,0,0,0,0,0,0,663,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,36,5 +13,0,0,16,1,76,56,1,175,20,44,0,0,9,45,0,514,0,9,3,0,0,0,8,15,11,6,0,34,0,5,0,0,1,35,13483,77,54,61,0,448,0,0,0,1,0,0,8,0,0,0,0,21,588,0,0,0,0,0,1,0,0,0,24,0,46,0,0,72829,76,929,0,36,0,0,0,0,0,54,0,0,0,0,0,9,39,16508,0,1,35,1,0,2,98,0,1303,45,13,0,0,4,1,1189,0,23,26,0,7348,0,0,0,0,10,7,0,0,0,0,0,1,15,0,0,7,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,7,0,6,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,2,0,0,0,0,38,0,1,0,0,0,0,0,0,0,0,0,1,0,8,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,63,12,12,12,0,0,0,11038,0,190,0,0,0,42,119,519,2104,11041,0,0,0,0,1,0,12,0,0,1,0,0,0,5990,0,0,0,0,0,0,0,0,0,0,0,0,8,9,0,0,0,0,0,1,0,230,56,736,20,0,0,882,0,1124,0,1,0,580,1597,0,0,0,0,0,0,0,0,0,852,1,0,0,0,26,0,0,0,0,22,243,509,0,0,57,0,0,0,0,0,8379,1,0,2036,7,0,1,1,0,1,1,0,19,0,0,0,1,0,0,0,0,0,33,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,110,1,1,1,0,63,0,0,0,0,9,112,1076,0,44,12,0,0,0,0,0,498,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,28,0,0,0,0,0,0,0,0,0,0,0,1,0,10,3814,226,5 +1,0,0,13,1,56,41,1,111,19,20,0,1,3,39,0,124,0,17,6,0,0,0,1,2,3,18,0,16,0,5,0,0,1,18,0,57,235,30,0,148,0,0,0,1,0,0,3,0,0,0,0,11,219,0,0,0,0,0,1,0,0,0,8,0,22,0,0,1349,56,343,0,21,0,0,0,0,0,10,0,0,0,0,0,1,6,85,0,1,18,1,0,4,34,0,407,45,4,0,0,4,1,442,0,14,0,5,1399,0,0,0,0,11,0,1,0,0,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,137,0,138,0,0,0,22,72,118,469,140,0,0,0,0,1,0,0,0,0,0,0,0,0,501,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,128,43,457,15,0,0,450,0,5289,0,1,0,186,152,0,0,0,0,0,0,0,0,0,356,1,0,0,0,9,0,0,0,0,10,176,111,0,0,93,0,0,0,0,2,676,0,0,35,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,78,1,1,1,0,73,0,0,0,0,11,75,149,0,42,0,0,0,0,0,0,207,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,23,0,0,0,0,0,0,0,0,0,0,0,1,0,3,1625,101,5 +3,0,0,7,0,39,101,0,271,108,103,0,0,0,120,0,50,0,7,4,0,0,0,1,0,3,9,0,8,0,5,0,0,0,13,0,39,6,15,0,577,0,0,0,1,0,0,17,0,0,0,0,7,526,0,0,0,0,0,1,0,0,4,2,5,128,0,0,66996,39,789,0,13,0,0,0,0,3,81,0,0,0,2,0,1,19,15125,0,0,13,0,0,3,243,0,1998,485,26,0,0,2,0,1285,0,104,0,0,2819,0,0,3,0,12,0,18,0,0,0,0,1,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,8232,0,352,0,0,0,14,36,87,1585,8172,0,0,0,0,1,0,0,0,0,0,0,0,0,10281,0,0,0,0,0,0,0,0,0,0,0,0,17,0,5,0,0,0,0,0,0,8,129,634,7,0,0,678,0,911,0,0,0,556,87,0,40,0,0,0,0,1,0,0,652,1,0,0,0,5,0,0,0,0,6,138,750,0,0,1131,0,0,0,0,4,7644,0,0,22996,0,0,1,12,0,0,0,0,42,0,2,0,8,0,0,0,0,0,95,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,44,0,0,0,0,1,52,675,0,25,0,0,3,0,0,0,968,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,112,0,0,0,0,0,0,0,0,0,0,0,0,0,16,8303,331,5 +3,0,0,5,1,37,31,1,47,4,10,0,0,2,8,0,71,0,9,4,0,0,0,5,0,9,0,0,5,0,2,0,0,1,6,0,38,54,5,0,55,0,0,0,1,0,0,1,0,0,0,0,3,131,0,0,0,0,0,1,0,0,0,4,0,8,0,0,9692,37,132,0,5,0,0,0,0,0,9,0,0,0,0,0,7,14,957,0,1,6,1,0,2,10,0,209,20,2,0,0,4,1,92,0,4,0,0,678,0,0,0,0,8,2,3,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,929,0,51,0,0,0,4,14,205,129,918,0,0,0,0,1,0,3,0,0,0,0,0,0,2769,2,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,135,25,316,6,0,0,342,0,733,0,1,0,112,47,0,0,0,0,0,0,0,0,0,178,1,0,0,0,9,0,0,0,0,2,133,70,0,0,28,0,0,0,0,0,1154,0,0,3221,3,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,44,1,1,1,0,12,0,0,0,0,9,44,118,0,7,9,0,0,0,0,0,80,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,991,64,5 +0,0,0,17,0,58,43,0,190,30,50,0,0,5,67,0,687,0,7,5,0,0,0,7,0,12,6,0,7,0,1,0,0,0,18,898,58,358,5,0,427,0,0,0,1,0,0,4,0,0,0,0,3,328,0,3,0,0,0,1,0,0,0,0,0,59,0,0,36208,58,1073,0,5,0,0,0,0,0,26,0,0,0,0,1,9,23,5206,0,0,18,0,0,5,137,0,1191,200,6,0,0,2,0,1422,0,37,0,4,2941,0,0,0,0,5,0,4,0,0,0,0,1,4,0,0,10,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,8,0,0,0,1,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,102,66,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,12,12,12,0,0,0,4438,0,182,0,0,0,4,19,288,1092,4569,0,0,0,0,1,0,3,0,0,0,0,0,0,4377,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,42,54,574,20,0,0,669,0,897,0,0,0,492,95,0,0,0,0,0,0,0,0,0,1049,1,0,0,0,12,0,0,0,0,3,256,439,0,0,396,0,0,0,0,3,2999,1,0,3997,7,0,1,1,0,0,0,0,8,0,0,0,7,0,0,0,0,0,33,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,7,1,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,72,1,1,1,0,12,0,0,0,0,1,76,652,0,14,12,0,0,0,0,0,603,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,38,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2237,156,5 +1,0,0,5,0,38,18,0,537,36,213,0,0,0,46,0,63,0,7,3,0,0,0,2,1,3,24,0,11,0,5,1,0,0,28,0,38,6,10,0,861,0,0,0,1,0,0,8,0,0,0,0,9,214,0,0,0,0,0,1,0,0,0,0,0,65,0,0,6763,38,974,0,18,0,0,0,0,0,36,0,0,0,0,0,2,14,765,0,0,28,0,0,1,511,0,4162,900,15,1,0,2,0,2299,0,31,0,0,1660,0,0,0,0,11,0,0,0,0,0,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,14,1,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,37,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,20,0,0,0,0,0,0,740,0,171,0,0,0,17,75,70,2277,756,0,0,0,0,1,0,1,0,0,0,0,0,0,1791,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,50,368,18,0,0,400,0,690,2,0,0,332,100,0,0,0,0,0,0,0,0,0,884,1,0,0,0,6,0,0,0,0,10,158,1268,0,0,2042,0,3,0,0,0,517,0,0,1235,0,0,1,0,1,0,0,0,15,0,0,0,6,0,0,0,0,0,29,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,76,0,0,0,0,1,66,765,0,44,0,0,0,0,0,0,1025,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,38,0,0,0,0,0,0,0,0,0,0,0,0,0,5,911,397,5 +0,0,0,13,0,19,4,0,19,6,4,0,0,0,12,0,17,0,7,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,5,0,19,6,0,0,42,0,0,0,1,0,0,1,0,0,0,0,1,92,0,0,0,0,0,1,0,0,0,0,0,13,0,0,3822,19,61,0,3,0,0,0,0,0,9,0,0,0,0,0,1,3,337,0,0,5,0,0,0,0,0,12,0,3,0,0,2,0,34,0,8,0,0,336,0,0,0,0,1,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,346,0,41,0,0,0,2,4,43,62,351,0,0,0,0,1,0,0,0,0,0,0,0,0,1103,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,16,113,20,0,0,167,0,651,0,0,0,93,8,0,0,0,0,0,0,0,0,0,63,1,0,0,0,2,0,0,0,0,2,103,65,0,0,0,0,0,0,0,0,744,0,0,1155,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,3,0,0,0,0,1,24,227,0,3,0,0,0,0,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,374,264,5 +0,0,0,9,1,38,64,1,116,11,36,0,0,7,20,0,83,0,9,4,0,0,0,5,0,8,0,0,2,0,2,0,0,1,8,0,39,227,0,0,180,0,0,0,1,0,0,2,0,0,0,0,2,192,0,0,0,0,0,1,0,0,1,0,0,26,0,0,9062,38,290,0,3,0,0,0,0,0,13,0,0,0,0,0,8,17,1775,0,1,8,1,0,3,76,0,825,170,4,0,0,4,1,442,0,17,0,0,942,0,0,0,0,3,0,1,0,0,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6,10,10,10,0,0,0,1729,0,67,0,0,0,2,4,206,1138,1083,0,0,0,0,1,0,3,0,0,0,0,0,0,2500,0,0,1,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,1,0,223,39,349,10,0,0,507,0,2014,0,1,0,277,26,0,0,0,0,0,0,0,0,0,335,1,0,0,0,9,0,0,0,0,2,143,291,0,0,294,0,0,0,0,4,777,0,0,2364,2,0,1,1,0,0,0,0,2,0,0,0,3,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,2,2,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,41,1,1,1,0,3,0,0,0,0,9,47,298,0,4,8,0,0,0,1,0,228,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,17,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1009,115,5 +0,0,0,7,0,47,47,0,69,7,23,0,0,7,7,0,1587,0,6,2,0,0,0,8,0,11,0,0,29,0,1,0,0,0,5,12399,47,6,0,0,57,0,0,0,1,0,0,3,0,0,0,0,1,826,0,0,0,0,0,1,0,0,0,0,0,7,0,0,234917,47,1885,0,26,0,0,0,0,0,100,0,0,0,0,0,9,162,37125,0,0,5,0,0,0,0,0,364,25,5,1,0,2,0,1741,0,3,76,0,16621,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,12,12,12,0,0,0,31220,0,61,0,0,0,13,16,935,2278,31155,0,0,0,0,1,0,3,0,0,0,0,0,0,3549,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,106,34,453,7,0,0,486,0,529,0,0,0,298,15,0,0,0,0,0,0,0,0,0,1746,1,0,0,0,10,0,0,0,0,2,237,48,0,0,120,0,2,0,0,0,6795,1,0,2674,47,0,1,1,0,0,0,0,4,0,0,0,6,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,64,0,0,0,0,1,52,180,0,27,14,0,1,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3405,120,5 +0,0,0,14,0,71,32,0,112,26,32,0,1,14,43,0,2009,0,7,6,0,0,0,9,4,17,27,0,35,0,2,0,0,0,21,3644,71,42,21,0,172,0,0,0,1,0,0,1,0,0,0,0,10,521,0,0,0,0,0,1,0,1,0,0,0,28,0,0,268314,71,2342,0,34,0,0,0,0,0,55,0,0,0,0,0,11,148,5287,0,0,21,0,0,0,0,0,526,45,1,0,0,2,0,2344,0,23,99,3,12524,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,40,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,12,12,12,0,0,0,1475,0,71,0,0,0,28,84,988,15728,1439,0,0,0,0,1,0,3,0,0,0,0,0,0,830,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,194,79,407,15,0,0,433,0,507,0,0,0,244,210,0,0,0,0,0,0,0,0,0,2250,1,0,0,0,19,0,0,0,0,7,200,43,0,0,163,0,0,0,0,0,6726,1,0,644,27,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,26,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,27,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,87,1,1,1,0,96,0,0,0,0,1,92,368,0,67,14,0,0,0,0,0,201,2,0,0,0,0,0,0,0,0,0,0,0,3,0,2,32,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2211,93,5 +0,0,0,4,0,10,3,0,33,0,11,0,0,0,3,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,36,0,0,0,1,0,0,3,0,0,0,0,0,105,0,0,0,0,0,1,0,0,0,0,0,7,0,0,3360,10,73,0,1,0,0,0,0,0,14,0,0,0,0,0,1,5,801,0,0,1,0,0,2,17,0,160,25,6,0,0,2,0,99,0,1,0,0,242,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,440,0,26,0,0,0,0,3,24,124,443,0,0,0,0,1,0,0,0,0,0,0,0,0,983,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,4,103,4,0,0,146,0,471,0,0,0,76,11,0,0,0,0,0,0,0,0,0,71,1,0,0,0,2,0,0,0,0,0,95,95,0,0,47,0,0,0,0,0,221,0,0,812,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,265,0,1,0,0,0,0,0,0,52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,425,39,5 +0,0,0,5,0,12,3,0,20,1,7,0,0,0,4,0,18,0,6,2,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,12,6,0,0,25,0,0,0,1,0,0,1,0,0,0,0,0,56,0,0,0,0,0,1,0,0,0,0,0,7,0,0,168,12,51,0,1,0,0,0,0,0,5,0,0,0,2,0,3,5,29,0,0,1,0,0,1,8,0,83,15,1,0,0,2,0,52,0,2,0,0,92,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,44,0,43,0,0,0,0,3,32,76,73,0,0,0,0,1,0,0,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,82,5,0,0,101,0,2315,0,0,0,31,3,0,0,0,0,0,0,0,0,0,58,1,0,0,0,4,0,0,0,0,1,94,32,0,0,32,0,0,0,0,1,31,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,13,69,0,1,0,0,0,0,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,82,17,5 +55,0,0,21,1,83,286,4,420,90,82,2,0,0,151,0,160,0,7,8,0,1,1,8,5,5,21,0,21,0,7,0,0,1,50,0,84,240,37,0,1017,0,0,1,1,0,0,9,0,0,0,0,15,348,0,0,0,0,0,1,0,0,0,8,137,129,0,0,15389,83,1257,0,28,0,0,0,0,0,37,3,0,0,0,0,9,19,1637,0,4,50,1,0,4,347,0,2754,370,15,0,0,2,1,2095,0,102,0,0,3118,0,0,7,1,14,4,8,0,0,0,0,1,0,0,0,340,3,1,0,0,0,0,0,4,0,3,0,1,0,0,0,2,0,0,2,6,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,4,0,6,0,6,0,0,0,0,2,0,7,0,0,55,0,5,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,46,0,0,0,0,0,0,1469,0,220,0,0,0,30,88,178,2382,1642,0,0,0,0,1,0,0,0,0,0,1,1,0,5813,0,0,0,0,0,0,0,0,0,0,0,0,10,0,2,0,0,0,0,1,0,8,117,564,23,0,0,1034,0,1451,0,0,0,865,87,0,0,0,0,0,0,4,0,0,1108,1,0,0,0,23,0,0,0,0,12,249,885,0,0,1506,0,7,0,0,1,1425,0,0,3483,0,0,1,0,0,0,0,0,24,0,3,0,8,0,0,0,0,0,82,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,14,10,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,114,1,1,1,0,88,0,0,0,0,9,134,775,0,54,0,0,0,0,0,0,1188,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,96,0,0,0,0,0,0,0,0,0,0,0,2,0,8,1474,300,5 +0,0,0,14,0,31,24,0,94,23,19,0,1,3,37,0,61,0,7,5,0,0,0,1,1,3,15,0,11,0,1,0,0,0,13,0,31,116,17,0,145,0,0,0,1,0,0,4,0,0,0,0,5,237,0,0,0,0,0,1,0,0,0,0,0,27,0,0,2189,31,281,0,12,0,0,0,0,0,16,0,0,0,0,0,1,7,153,0,0,13,0,0,3,43,0,408,55,6,0,0,2,0,433,0,17,0,5,873,0,0,0,0,12,0,4,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,1,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,70,0,0,0,0,0,0,186,0,107,0,0,0,10,46,71,403,213,0,0,0,0,1,0,0,0,0,0,0,0,0,609,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,13,36,250,17,0,0,364,0,955,0,0,0,272,31,0,0,0,0,0,0,0,0,0,246,1,0,0,0,7,0,0,0,0,6,136,257,0,0,139,0,0,0,0,1,366,0,0,124,0,0,1,0,0,0,0,0,7,0,0,0,4,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,38,1,1,1,0,29,0,0,0,0,1,44,564,0,30,0,0,0,0,1,0,177,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,27,0,0,0,0,0,0,0,0,0,0,0,0,0,3,399,106,5 +3,0,0,11,0,56,32,0,97,29,23,0,0,6,41,0,762,0,7,6,0,0,0,8,0,11,6,0,14,0,5,0,0,0,13,898,56,49,5,0,211,0,0,0,1,0,0,5,0,0,0,0,7,334,0,0,0,0,0,1,0,0,0,0,0,42,0,0,9911,56,1017,0,16,0,0,0,0,0,37,0,0,0,0,0,11,48,1499,0,0,13,0,0,2,44,0,625,80,8,0,0,2,0,1131,0,31,56,0,2212,0,0,0,0,15,0,5,0,0,0,0,1,0,0,0,5,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,48,12,12,12,0,0,0,606,0,117,0,0,0,14,25,313,836,589,0,0,0,0,1,0,3,0,0,0,0,0,0,1132,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,84,50,331,15,0,0,438,0,808,0,0,0,256,72,0,0,0,0,0,0,0,0,0,968,1,0,0,0,14,0,0,0,0,4,147,211,0,0,198,0,0,0,0,1,2201,1,0,698,10,0,1,1,1,0,0,0,8,0,0,0,3,0,0,0,0,0,28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,68,1,1,1,0,29,0,0,0,0,1,69,392,0,24,12,0,0,0,0,0,223,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,35,0,0,0,0,0,0,0,0,0,0,0,0,0,2,798,146,5 +0,0,0,3,0,10,2,0,8,0,3,0,0,0,3,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,8,0,2,0,1,0,0,2,0,0,0,0,0,45,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1383,10,41,0,1,0,0,0,0,0,11,0,0,0,0,0,1,5,575,0,0,1,0,0,0,0,0,9,0,4,0,0,2,0,9,0,1,0,0,66,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,86,0,32,0,0,0,0,3,24,6,98,0,0,0,0,1,0,0,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,4,62,3,0,0,116,0,137,0,0,0,60,6,0,0,0,0,0,0,0,0,0,36,1,0,0,0,2,0,0,0,0,0,90,49,0,0,0,0,0,0,0,0,231,0,0,833,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,11,186,0,1,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,282,8,5 +0,0,0,35,3,55,101,3,190,33,13,0,0,3,74,0,229,0,13,7,0,0,0,4,6,4,21,0,19,0,1,0,0,3,29,0,58,458,25,0,164,0,0,0,1,0,0,2,0,0,0,0,11,208,0,0,0,0,0,1,0,0,0,6,0,31,0,0,4973,55,554,0,20,0,0,0,0,0,7,0,0,0,0,0,5,9,819,0,3,29,3,0,3,0,0,234,0,3,0,0,8,3,435,0,30,0,3,3784,0,0,0,0,14,0,1,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,0,0,740,0,81,0,0,0,22,80,120,487,507,0,0,0,0,1,0,0,0,0,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,328,89,853,76,0,0,705,0,1918,0,3,0,245,197,0,0,0,0,0,0,0,0,0,623,1,0,0,0,17,0,0,0,0,12,199,25,0,0,0,0,0,0,0,0,1470,0,0,30,0,0,1,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,73,1,1,1,0,43,0,0,0,0,25,87,93,0,45,0,0,0,0,0,0,249,15,0,0,0,0,0,0,0,0,0,0,0,3,0,1,33,0,0,0,0,0,0,0,0,0,0,0,3,0,0,427,146,5 +0,0,0,17,1,18,54,1,102,19,23,0,0,0,27,1,78,0,9,2,0,0,0,1,0,1,3,0,2,0,1,0,0,1,6,0,19,241,4,0,171,0,0,0,1,0,0,4,0,0,0,0,1,183,0,0,0,0,0,1,0,0,0,0,0,33,0,0,3125,18,264,0,3,0,0,0,0,0,16,0,0,0,0,0,1,6,520,0,1,6,1,0,4,56,0,527,80,6,0,0,4,1,356,0,23,0,0,737,0,0,0,0,11,0,2,0,0,0,0,1,0,0,0,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,86,0,0,0,0,0,0,456,0,92,0,0,0,2,15,43,718,458,0,0,0,0,1,0,1,0,0,0,0,0,0,1063,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,128,76,296,15,0,0,328,0,1601,0,1,0,141,24,0,0,0,0,0,0,0,0,0,294,1,0,0,0,3,0,0,0,0,2,137,130,0,0,196,0,0,0,0,0,616,0,0,725,0,0,1,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,20,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,17,1,1,1,0,16,0,0,0,0,9,25,168,0,7,0,0,0,0,0,0,215,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,23,0,0,0,0,0,0,0,0,0,0,0,1,0,3,686,149,5 +0,0,0,13,0,66,201,0,346,46,174,0,1,12,53,0,1358,0,7,6,0,0,0,10,1,15,36,0,78,0,20,0,0,0,16,18003,66,114,28,0,516,0,3,0,1,0,0,3,0,0,0,0,26,1251,0,0,0,0,0,1,0,0,2,1,0,57,0,0,66704,66,2501,0,95,0,0,0,0,0,180,0,0,0,0,0,10,519,10094,0,0,16,0,0,7,248,0,3023,440,6,0,0,2,0,2936,0,36,439,5,9062,0,0,0,0,21,0,3,0,0,0,0,1,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,12,12,12,0,0,0,2791,0,132,0,0,0,87,169,2478,6340,2681,0,0,0,0,1,0,7,0,0,0,0,0,0,2847,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,187,99,756,14,0,0,790,0,795,1,0,0,580,56,0,1,0,0,0,0,0,0,0,2152,1,0,0,0,17,0,0,0,0,27,258,522,0,0,1595,0,0,0,0,2,8066,1,0,3184,82,0,1,1,1,0,0,0,13,0,1,0,7,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,2,0,0,0,82,380,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,100,1,1,1,0,294,0,0,0,0,1,82,640,0,137,12,0,0,0,0,0,712,3,0,0,0,0,0,0,0,0,0,0,0,3,0,2,60,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4100,354,5 +3,0,0,6,0,32,7,0,32,3,7,0,0,2,6,0,33,0,7,5,0,0,0,6,0,11,6,0,6,0,1,0,0,0,5,0,32,6,8,0,80,0,0,0,1,0,0,1,0,0,0,0,4,156,0,0,0,0,0,1,0,0,0,0,0,7,0,0,2334,32,92,0,5,0,0,0,0,0,9,0,0,0,0,0,8,15,160,0,0,5,0,0,1,9,0,173,20,2,0,0,2,0,121,0,1,0,0,813,0,1,1,0,3,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,132,0,43,0,0,0,4,25,155,116,132,0,0,0,0,1,0,2,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,32,16,168,9,0,0,210,0,663,0,0,0,99,12,0,0,0,0,0,0,0,0,0,94,1,0,0,0,11,0,0,0,0,3,127,77,0,0,31,0,2,0,0,1,164,0,0,24,3,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,21,0,0,0,0,1,37,255,0,15,9,0,0,0,0,0,66,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,204,94,5 +0,0,0,4,0,36,37,0,26,0,2,0,0,2,2,0,90,0,6,3,0,0,0,7,0,11,0,0,4,0,1,0,0,0,2,3250,36,6,0,0,21,0,0,0,1,0,0,2,0,0,0,0,1,2087,0,0,0,0,0,1,0,0,0,0,0,3,0,0,207395,36,252,0,1,0,0,0,0,0,75,0,0,0,0,0,9,22,34740,0,0,2,0,0,0,0,0,95,5,3,1,0,2,0,163,0,0,0,0,2546,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,32627,0,50,0,0,0,0,3,318,354,32609,0,0,0,0,1,0,3,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,34,10,298,4,0,0,386,0,265,0,0,0,230,14,0,0,0,0,0,0,0,0,0,165,1,0,0,0,10,0,0,0,0,0,206,38,0,0,0,0,0,0,0,0,1568,1,0,19,39,0,1,1,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,0,0,0,0,0,1,38,42,0,2,14,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1099,52,5 +0,0,0,19,0,48,119,0,50,12,6,0,1,11,22,0,131,0,7,6,0,0,0,7,0,13,9,0,10,0,1,0,0,0,10,9585,48,78,10,0,150,0,0,0,1,0,0,3,0,0,0,0,4,920,0,0,0,0,0,1,0,0,0,0,0,9,0,0,192471,48,690,0,7,0,0,0,0,0,241,0,0,0,0,0,9,23,31955,0,0,10,0,0,0,0,0,222,35,5,1,0,2,0,501,0,4,1,3,6299,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,12,12,12,0,0,0,28048,0,69,0,0,0,6,28,512,1329,28040,0,0,0,0,1,0,3,0,0,0,0,0,0,605,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,201,31,594,30,0,0,715,0,471,0,0,0,545,153,0,0,0,0,0,0,0,0,0,347,1,0,0,0,13,0,0,0,0,4,245,138,0,0,0,0,0,0,0,0,2518,1,0,49,119,0,1,1,0,0,0,0,3,0,0,0,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,119,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,61,1,1,1,0,16,0,0,0,0,1,58,151,0,19,14,0,0,0,0,0,90,3,0,0,0,0,0,0,0,0,0,0,0,1,0,2,16,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2258,91,5 +7,0,0,17,0,98,61,0,138,54,54,0,1,11,62,0,2282,0,7,8,0,0,0,10,3,17,21,0,56,0,1,0,0,0,31,17738,98,129,53,0,328,0,0,0,1,0,0,5,0,0,0,0,9,1417,0,0,0,0,0,1,0,0,0,0,0,45,0,0,77701,98,2789,0,53,0,0,0,0,0,119,0,0,0,0,0,12,323,12323,0,0,31,0,0,0,0,0,696,30,9,0,0,2,0,2701,0,39,240,5,12930,0,0,0,0,10,0,14,0,0,0,0,1,0,0,0,63,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,11,0,23,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,12,12,12,0,0,0,4547,0,172,0,0,0,40,153,1864,3564,4394,0,0,0,0,1,0,9,0,0,0,0,0,0,2875,0,0,0,0,0,0,0,0,0,2,0,0,5,1,0,0,0,0,0,1,0,177,110,747,18,0,0,888,0,1062,0,0,0,599,233,0,0,0,0,0,0,0,0,0,2616,1,0,0,0,21,0,0,0,0,9,354,195,0,0,326,0,0,0,0,1,9651,1,0,1784,49,0,1,1,1,0,0,0,16,0,0,0,2,0,0,0,0,0,45,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,120,1,1,1,0,312,0,0,0,0,1,129,817,0,81,14,0,0,0,0,0,252,6,0,0,0,0,0,0,0,0,0,0,0,3,0,2,58,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4227,684,5 +0,0,0,14,0,41,117,0,243,31,72,0,1,3,52,0,76,0,7,6,0,0,0,2,3,7,24,0,15,0,1,0,0,0,22,0,41,125,31,0,450,0,0,0,1,0,0,1,0,0,0,0,8,250,0,0,0,0,0,1,0,0,3,0,0,63,0,0,1579,41,592,0,16,0,0,0,0,0,4,0,0,0,0,0,2,4,111,0,0,22,0,0,8,196,0,1622,290,1,0,0,2,0,1157,0,36,0,4,1550,0,0,0,0,13,0,2,0,0,0,0,1,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,302,0,85,0,0,0,16,79,78,1649,163,0,0,0,0,1,0,1,0,0,0,0,0,0,982,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,53,253,15,0,0,316,0,577,0,0,0,223,69,0,0,0,0,0,0,0,0,0,571,1,0,0,0,11,0,0,0,0,6,150,363,0,0,658,0,0,0,0,6,471,0,0,12,0,0,1,0,0,0,0,0,2,0,1,0,8,0,0,0,0,0,32,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,65,0,0,0,0,1,63,73,0,47,0,0,0,0,0,0,498,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,39,0,0,0,0,0,0,0,0,0,0,0,0,0,2,298,95,5 +0,0,0,5,0,15,105,0,161,17,55,0,0,0,21,0,23,0,6,2,0,0,0,1,0,1,3,0,2,0,1,0,0,0,5,0,15,6,5,0,269,0,2,0,1,0,0,2,0,0,0,0,1,115,0,0,0,0,0,1,0,0,3,0,0,35,0,0,821,15,372,0,3,0,0,0,0,0,7,0,0,0,0,0,1,4,117,0,0,5,0,0,5,152,0,1203,230,4,0,0,2,0,703,0,19,0,0,395,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,199,0,70,0,0,0,2,14,33,1228,142,0,0,0,0,1,0,0,0,0,0,0,0,0,858,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,22,117,5,0,0,211,0,369,0,0,0,155,8,0,0,0,0,0,0,0,0,0,371,1,0,0,0,3,0,0,0,0,2,105,290,0,0,535,0,0,0,0,6,99,0,0,64,0,0,1,0,0,0,0,0,6,0,1,0,7,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,12,0,0,0,0,1,20,97,0,7,0,0,0,0,0,0,340,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,59,5 +0,0,0,71,3,16,4,3,157,29,6,0,0,0,35,0,262,0,6,7,0,6,0,1,0,1,0,0,2,0,3,0,0,3,5,336,19,1963,3,0,45,0,0,0,1,0,0,1,1,0,0,0,0,631,0,0,0,0,0,1,0,0,0,0,0,3,0,0,10907,16,542,0,5,0,0,0,0,0,8,9,0,0,0,0,1,5,925,0,3,5,3,0,0,0,0,23,0,4,0,0,2,3,624,0,2,0,1,6066,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,6,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,33,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,0,0,0,0,2,0,482,0,49,0,0,0,2,5,34,3776,497,0,0,0,0,1,0,2,0,0,1,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,94,33,1357,110,0,0,1105,0,1574,0,0,0,94,128,0,0,0,0,0,0,0,0,0,470,1,0,2,0,14,0,0,0,0,7,100,3,0,0,0,0,0,0,0,0,245376,0,0,73,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,2,0,0,0,0,25,24,98,0,6,0,0,0,0,0,0,567,3,0,0,0,0,0,0,0,0,0,0,0,3,2,3,33,0,0,0,0,0,0,0,2,0,0,0,5,0,1,1818,132,5 +0,0,0,0,0,10,2,0,2,0,1,0,0,0,2,0,10,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,16,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,0,37,10,20,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,19,0,0,1,0,0,0,0,0,5,0,0,0,0,2,0,15,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,21,0,20,0,0,0,0,3,25,5,34,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,39,0,0,0,42,0,63,0,0,0,6,5,0,0,0,0,0,0,0,0,0,24,0,0,0,0,2,0,0,0,0,0,96,1,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,1,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,6,5 +0,0,0,6,1,26,3,4,2026,10,16,0,0,0,4,0,148,0,6,4,0,1,0,2,0,2,0,0,1,0,3,0,0,1,10,46351,27,2872,0,0,128,0,0,0,1,0,0,2,0,0,0,0,0,2134,0,0,0,0,0,1,0,0,0,0,0,4,0,1,4629,26,380,0,4,0,0,0,0,0,11,3,0,0,0,0,1,4,87,0,4,10,1,0,0,9,0,187,36,4,0,0,2,1,100,0,0,0,0,1966,0,0,0,0,0,0,3,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,4,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,244,7,45,0,0,0,0,95,0,63,0,0,112,0,3,801,15151,111,0,0,0,0,1,0,0,0,2,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,2,0,5,0,0,0,0,0,0,20,121,571,7,0,0,438,0,4360,5,0,0,265,1425,0,0,0,0,0,0,0,0,0,2203,1,0,0,0,7,0,0,0,0,38,138,97,0,0,130,0,0,0,0,0,1003,1,0,82,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,7,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,10,0,0,0,3,21,37,207,1,6,0,0,0,0,0,0,169,3,0,0,0,0,0,0,0,0,0,0,0,2,0,3,12,0,0,0,0,0,0,0,0,0,0,0,2,0,3,2415,70,5 +15,0,0,18,3,85,84,3,183,36,53,1,1,4,77,0,227,0,11,11,0,1,0,11,2,14,22,0,13,0,1,0,0,3,35,4,87,282,17,0,315,0,0,0,1,0,0,3,0,0,0,0,6,374,0,0,0,0,0,1,0,0,1,1,0,50,0,0,5129,85,747,0,11,0,0,0,0,0,15,3,0,0,0,0,15,28,452,0,3,35,3,0,4,72,0,814,135,3,0,0,6,3,717,0,36,8,3,2888,0,0,0,0,9,0,5,0,0,0,3,1,0,0,0,22,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,0,0,6,0,0,0,0,0,0,0,0,0,6,0,0,0,0,37,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,90,12,12,12,0,0,0,274,0,164,0,0,0,10,54,316,518,270,0,0,0,0,1,0,3,0,0,0,0,0,0,803,0,0,0,0,0,0,0,0,0,8,0,0,3,1,0,0,0,0,0,3,0,319,87,789,23,0,0,796,0,7957,0,5,0,357,115,0,0,0,0,0,0,0,0,0,641,1,0,0,0,25,0,0,0,0,6,247,202,0,0,273,0,0,0,0,1,1475,1,0,28,6,0,1,1,1,0,0,0,3,0,0,0,4,0,0,0,0,0,43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,6,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,2,104,1,1,1,0,33,0,0,0,0,17,122,192,0,37,13,0,0,0,0,0,295,7,0,0,0,0,0,0,0,0,0,0,0,3,0,1,40,0,0,0,0,0,0,0,0,0,0,0,5,0,2,1568,151,5 +2,0,0,5,0,26,32,0,117,0,39,0,0,5,2,0,40,0,7,3,0,0,0,10,1,2,6,0,6,0,3,0,0,0,10,0,26,6,9,0,178,0,0,0,1,0,0,2,0,0,0,0,4,105,0,0,0,0,0,1,0,0,0,2,0,7,0,0,8108,26,276,0,9,0,0,0,0,0,10,0,0,0,0,0,10,13,1594,0,0,10,0,0,3,104,0,1002,190,3,0,0,2,0,533,0,0,0,0,651,0,0,0,0,5,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1056,0,122,0,0,0,8,27,93,483,1148,0,0,0,0,1,0,0,0,0,0,0,0,0,2355,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,82,3,145,5,0,0,177,0,381,0,0,0,99,50,0,26,0,0,0,0,0,0,0,242,1,0,0,0,14,0,0,0,0,3,112,205,0,0,462,0,0,0,0,0,461,0,0,2107,0,0,1,63,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,28,0,0,0,0,1,36,125,0,17,0,0,0,0,0,0,258,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,26,0,0,0,0,0,0,0,0,0,0,0,0,1,938,56,5 +1,0,0,17,1,69,51,1,97,7,19,0,0,0,50,1,101,0,9,5,0,0,0,5,0,3,12,0,16,0,6,1,0,1,45,0,70,322,13,0,259,0,0,0,1,0,0,4,0,0,0,0,9,298,0,0,0,0,0,1,0,0,0,5,0,23,0,0,5904,69,337,0,23,0,0,0,0,1,22,0,0,0,0,0,6,11,1123,0,1,45,1,0,3,47,0,484,50,6,0,0,4,1,472,0,17,0,0,2228,0,0,0,0,6,0,5,0,0,0,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,729,0,161,0,0,0,18,47,146,600,726,0,0,0,0,1,0,0,0,0,0,0,0,0,968,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,140,54,514,19,0,0,728,0,3056,0,1,0,508,83,0,4,0,0,0,0,4,0,0,328,1,0,0,0,10,0,0,0,0,7,183,366,0,0,143,0,2,0,9,0,781,0,0,427,0,0,1,0,1,0,0,0,9,0,1,0,2,0,0,0,0,0,29,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,89,1,1,1,0,74,0,0,0,0,9,115,577,0,38,0,0,1,0,0,0,253,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,11,0,0,0,0,0,0,0,0,0,0,0,1,0,4,648,160,5 +5,0,0,0,0,26,4,0,5,19,1,0,0,0,22,0,12,0,6,2,0,0,0,1,0,4,0,0,1,0,2,0,0,0,9,0,26,6,0,0,62,0,0,0,0,0,0,0,0,0,0,0,5,24,0,0,0,0,0,1,0,0,0,0,0,20,0,0,139,26,54,0,6,0,0,0,0,0,2,0,0,0,0,0,2,2,26,0,0,9,0,0,0,0,0,12,0,0,0,0,2,0,62,0,20,0,0,408,0,0,1,0,11,0,0,0,0,0,0,0,0,0,0,7,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,45,0,43,0,0,0,6,8,56,30,60,0,0,0,0,1,0,0,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,23,98,0,0,0,89,0,161,0,0,0,32,4,0,0,0,0,0,0,0,0,0,50,0,0,0,0,3,0,0,0,0,2,108,2,0,0,0,0,0,0,0,2,31,0,0,1,0,0,1,0,0,0,0,0,0,0,2,0,5,0,0,0,0,0,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,1,1,1,0,3,0,0,0,0,1,35,9,0,7,0,0,0,0,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,7,5 +0,0,0,10,0,51,48,0,79,0,19,0,0,10,7,0,918,0,7,2,0,0,0,9,0,11,0,0,12,0,1,0,0,0,10,13910,51,6,0,0,89,0,0,0,1,0,0,6,1,0,0,0,1,666,0,0,0,0,0,1,0,0,0,0,0,15,0,0,242405,51,1227,0,9,0,0,0,1,0,104,0,0,0,0,0,10,53,40543,0,0,10,0,0,3,20,0,497,70,9,1,0,2,0,1162,0,2,81,0,3583,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,37516,0,103,0,0,0,5,8,398,1281,37487,0,0,0,0,1,0,3,0,0,0,0,0,0,781,0,0,0,0,1,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,129,18,367,10,0,0,545,0,432,0,0,0,355,13,0,0,0,0,0,0,0,0,0,1088,1,0,2,0,11,0,0,0,0,1,207,131,0,0,130,0,0,0,0,0,3776,1,0,299,46,0,1,1,0,0,0,0,11,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,23,0,0,0,0,1,61,267,0,10,14,0,0,0,0,0,128,1,0,0,0,0,0,0,0,0,0,0,0,2,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1809,112,5 +1,0,0,18,0,38,233,0,380,23,59,1,0,0,40,0,99,0,7,3,0,0,0,4,5,2,9,0,15,0,4,0,0,0,17,0,38,208,19,0,1357,0,0,0,1,0,0,4,0,0,0,0,9,282,0,0,0,0,0,1,0,0,0,0,0,50,0,0,21549,38,856,0,19,0,0,0,0,0,21,0,0,0,0,0,5,10,2475,0,0,17,0,0,6,321,0,2470,250,7,0,0,2,0,1673,0,29,0,0,1777,0,0,0,0,17,0,10,0,0,0,0,1,1,0,0,74,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,122,63,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0,0,0,1404,0,162,0,0,0,18,45,85,1902,1541,0,0,0,0,1,0,0,0,0,0,0,0,0,5167,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,9,58,394,22,0,0,740,0,952,0,0,0,636,118,0,0,0,0,0,0,0,0,0,819,1,0,0,0,12,0,0,0,0,6,187,850,0,0,711,0,4,0,0,0,597,0,0,692,0,0,1,0,1,0,0,0,10,0,0,0,8,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12358,0,0,0,0,0,0,8,7,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,30,0,0,0,0,1,55,601,0,30,0,0,0,0,0,0,1014,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,27,0,0,0,0,0,0,0,1,0,0,0,0,0,5,883,178,5 +0,0,0,14,0,21,4,0,24,9,8,0,0,0,17,1,16,0,6,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,10,0,21,6,0,0,73,0,0,0,1,0,0,2,0,0,0,0,1,77,0,0,0,0,0,1,0,0,0,17,0,17,0,0,752,21,81,0,3,0,0,0,0,0,11,0,0,0,0,0,1,4,101,0,0,10,0,0,1,8,0,86,15,4,0,0,2,0,82,0,12,0,0,442,0,0,0,0,2,0,4,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,16,0,0,0,0,0,0,106,0,55,0,0,0,2,5,41,126,135,0,0,0,0,1,0,0,0,0,0,0,0,0,362,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,29,131,17,0,0,149,0,477,0,0,0,87,14,0,0,0,0,0,0,0,0,0,76,1,0,0,0,2,0,0,0,0,2,107,56,0,0,36,0,0,0,0,13,62,0,0,117,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,3,0,0,0,0,1,31,78,0,3,0,0,0,0,0,0,63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,141,109,5 +0,0,0,0,0,10,7,0,10,0,2,0,0,0,2,0,9,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,10,6,0,0,23,0,0,0,1,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,29,10,31,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0,0,1,0,0,1,8,0,63,0,0,0,0,2,0,48,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,15,0,17,0,0,0,0,3,25,51,34,0,0,0,0,1,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,35,0,0,0,48,0,142,0,0,0,15,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,2,0,0,0,0,0,92,26,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,0,0,0,0,0,1,11,5,0,1,0,0,0,0,0,0,36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,14,5 +4,0,0,26,1,85,335,1,720,206,171,1,1,5,319,0,335,0,82,9,0,0,0,9,10,20,45,0,32,0,1,0,0,1,29,0,86,2006,108,0,1689,0,0,0,1,0,0,45,0,0,0,0,16,573,0,2,0,0,0,1,0,0,2,3,0,250,0,0,33072,85,2308,0,31,0,0,0,0,0,161,0,0,0,0,0,12,106,5892,0,1,29,1,0,7,609,0,4953,625,69,12,1,4,1,4066,0,175,0,9,10568,0,0,0,0,138,0,66,0,0,0,0,1,0,0,0,33,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,2,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,15,1,1,0,0,0,1,0,6,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,10,10,10,0,0,0,4650,0,410,0,0,0,30,244,289,5654,4732,0,0,0,0,1,0,2,0,0,0,0,0,0,7298,0,0,0,0,0,0,0,0,0,0,0,0,45,1,2,0,0,0,0,1,3,181,277,2277,128,0,0,1972,0,3434,0,1,0,1643,219,0,0,0,1,0,0,0,0,0,1969,1,0,0,0,28,0,0,0,0,14,524,1979,0,0,1702,0,1,0,0,3,3544,0,0,2574,3,0,1,1,1,0,0,0,91,0,1,0,51,0,0,0,0,0,172,2,0,6,2,0,0,1,0,0,0,0,0,0,0,0,15,0,0,0,0,0,3,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,122,1,1,1,0,294,0,0,0,0,9,115,804,0,89,9,0,0,0,0,0,1762,11,0,0,0,0,0,0,0,0,0,0,0,2,0,1,216,0,0,0,0,0,0,0,0,0,0,0,1,0,14,5959,1210,5 +4,0,0,6,0,40,6,0,20,2,3,0,0,2,6,0,65,0,7,5,0,0,0,8,0,10,3,0,4,0,3,0,0,0,6,4,40,6,0,0,70,0,0,0,1,0,0,11,0,0,0,0,3,195,0,0,0,0,0,1,0,0,0,0,0,7,0,0,3061,40,180,0,5,0,0,0,0,0,53,0,0,0,0,0,12,32,456,0,0,6,0,0,0,0,0,117,5,19,0,0,2,0,93,0,2,0,0,904,0,0,2,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,14,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,12,12,12,0,0,0,332,0,141,0,0,0,4,9,235,40,296,0,0,0,0,1,0,4,0,0,0,0,0,0,841,0,0,0,0,0,0,0,0,0,0,0,0,11,1,0,0,0,0,0,1,0,32,13,201,7,0,0,370,0,550,0,0,0,233,13,0,0,0,0,0,0,0,0,0,109,1,0,0,0,13,0,0,0,0,3,123,164,0,0,0,0,0,0,0,0,266,1,0,285,4,0,1,1,1,0,0,0,21,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,45,1,1,1,0,5,0,0,0,0,1,46,376,0,9,11,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8,466,61,5 +0,0,0,24,2,45,91,2,197,30,22,0,0,0,83,0,178,0,61,6,0,0,0,1,4,8,27,0,18,0,1,0,0,2,19,0,47,102,35,0,222,0,0,0,1,0,0,6,0,0,0,0,9,319,2,0,0,0,0,1,0,0,0,7,0,44,0,0,7775,45,611,0,19,0,0,0,0,0,20,0,0,0,0,0,1,10,1547,0,2,19,2,0,4,46,0,537,70,9,0,0,6,2,607,0,35,0,0,1905,0,0,0,0,28,0,4,0,0,0,0,1,0,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,726,0,116,0,0,0,18,211,92,583,704,0,0,0,0,1,0,0,0,1,0,0,0,0,1518,0,0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,0,0,0,218,73,687,64,0,0,740,0,1306,0,2,0,399,72,0,0,0,0,0,0,0,0,0,632,1,0,0,0,11,0,0,0,0,9,206,261,0,0,181,0,0,0,0,0,1258,0,0,1554,0,0,1,0,0,0,0,0,10,0,0,0,6,0,0,0,0,0,26,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,55,1,1,1,0,104,0,0,0,0,17,66,552,0,54,0,0,0,0,0,0,316,7,0,0,0,0,0,0,0,0,0,0,0,2,0,1,32,0,0,0,0,0,0,0,0,0,0,0,2,0,2,1019,187,5 +1,0,0,8,1,43,38,1,80,2,15,0,0,9,7,0,794,0,9,2,0,0,0,7,0,10,0,0,6,0,1,0,0,1,8,5415,44,54,0,0,77,0,0,0,1,0,0,1,0,0,0,0,1,502,0,0,0,0,0,1,0,0,0,2,0,10,0,0,11692,43,907,0,4,0,0,0,0,0,17,0,0,0,0,0,8,34,1719,0,1,8,1,0,3,12,0,393,50,1,0,0,4,1,865,0,1,32,0,1921,0,0,0,0,2,1,3,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,12,12,12,0,0,0,467,0,46,0,0,0,2,5,414,640,465,0,0,0,0,1,0,5,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,216,28,392,9,0,0,455,0,650,0,1,0,190,10,0,0,0,0,0,0,0,0,0,952,1,0,0,0,9,0,0,0,0,2,159,73,0,0,72,0,0,0,0,1,2504,1,0,56,9,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,48,1,1,1,0,9,0,0,0,0,9,52,179,0,5,12,0,0,0,0,0,130,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,776,117,5 +18,0,0,7,0,82,11,0,33,19,7,0,0,6,31,0,122,0,7,4,0,0,0,9,0,14,30,0,17,0,2,6,0,0,45,1107,82,6,8,0,122,0,0,0,1,0,0,2,0,0,0,0,11,238,0,0,0,0,0,1,0,0,0,0,0,25,0,0,49368,82,265,0,21,0,0,0,0,0,20,0,0,0,0,0,9,28,7629,0,0,45,0,0,0,0,0,249,20,4,0,0,2,0,366,0,21,8,0,11566,0,0,0,0,10,12,3,10,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,13,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,26,12,12,12,0,0,0,6311,0,136,0,0,0,21,76,400,1097,6302,0,0,0,0,1,0,6,0,0,0,0,0,0,1126,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,2,0,84,37,543,7,0,0,485,0,674,1,0,0,329,65,0,0,0,0,0,0,0,0,0,217,1,0,0,0,13,0,0,0,0,7,269,48,0,0,14,0,0,0,0,0,3749,1,0,515,9,0,1,1,0,0,0,0,4,0,0,0,2,0,0,0,0,0,21,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,9,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,119,1,1,1,0,51,0,0,0,0,1,127,232,0,55,14,0,0,0,0,0,118,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,23,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2058,120,5 +0,0,0,3,0,9,3,0,16,0,6,0,0,0,2,0,15,0,6,1,0,0,0,1,0,2,0,0,0,0,1,0,0,0,0,0,9,6,0,0,17,0,0,0,1,0,0,3,0,0,0,0,2,76,0,0,0,0,0,1,0,0,0,0,0,3,0,0,1631,9,56,0,1,0,0,0,0,0,12,0,0,0,0,0,1,5,373,0,0,0,0,0,1,8,0,81,15,5,0,0,2,0,44,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,219,0,56,0,0,0,0,3,22,60,228,0,0,0,0,1,0,0,0,0,0,0,0,0,504,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,8,3,66,3,0,0,118,0,174,0,0,0,64,7,0,0,0,0,0,0,2,0,0,48,1,0,0,0,2,0,0,0,0,0,91,64,0,0,29,0,0,0,0,0,119,0,0,374,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,4,0,0,0,0,1,9,184,0,3,0,0,0,0,0,0,38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,286,13,5 +1,0,0,5,0,14,9,0,50,1,18,0,0,0,4,0,15,0,6,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,2,0,14,6,0,0,88,0,0,0,1,0,0,1,0,0,0,0,0,95,0,0,0,0,0,1,0,0,0,0,0,12,0,0,6409,14,97,0,1,0,0,0,0,0,6,0,0,0,0,0,2,4,1276,0,0,2,0,0,2,42,0,349,45,1,0,0,2,0,206,0,2,0,0,618,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,791,0,41,0,0,0,0,3,34,3026,802,0,0,0,0,1,0,0,0,2,0,0,0,0,1560,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,8,5,187,5,0,0,141,0,347,0,0,0,75,29,0,0,0,0,0,0,0,0,0,102,1,0,0,0,3,0,0,0,0,0,99,184,0,0,218,0,0,0,0,0,308,0,0,1650,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,1,16,204,0,1,0,0,0,0,0,0,111,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,570,51,5 +0,0,0,9,4,31,7,10,45,0,11,1,0,0,6,0,48,0,7,7,0,2,0,1,3,3,9,0,4,0,1,1,0,2,13,0,35,6,11,1,63,0,0,0,1,0,0,9,0,0,0,0,4,171,0,0,0,0,0,1,0,0,0,0,0,9,0,0,2446,31,307,0,6,0,0,0,0,0,45,6,0,0,0,0,2,13,382,0,10,13,2,0,1,12,0,175,15,16,0,0,3,4,148,0,3,0,0,695,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,14,2,2,2,0,0,2,345,2,144,0,0,2,9,31,67,208,352,0,0,0,0,1,0,0,0,0,0,0,0,0,973,0,0,0,0,0,0,0,0,0,0,0,0,9,0,2,0,0,0,0,2,0,9,8,243,16,0,0,334,0,475,0,0,0,194,31,0,0,0,0,0,0,4,0,0,125,1,0,0,0,13,0,0,0,0,2,114,125,0,0,31,0,0,0,0,0,389,0,0,421,0,0,1,0,0,0,0,0,24,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,25,0,0,0,1,141,48,546,1,18,0,0,0,0,0,0,106,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,2,0,0,0,0,0,0,0,0,17,0,0,20,0,9,461,90,5 +0,0,0,21,3,21,4,3,164,3,6,0,0,0,9,0,212,0,7,7,0,6,0,1,0,1,0,0,4,0,5,0,0,3,10,491,24,54,9,0,23,0,0,0,1,0,0,1,1,0,0,0,0,653,0,0,0,0,0,1,0,0,0,0,0,3,0,0,12547,21,472,0,9,0,0,0,0,0,9,9,0,0,0,0,1,4,592,0,3,10,3,0,0,0,0,29,0,4,0,0,2,3,419,0,2,0,1,6000,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,27,0,0,0,0,4,0,557,0,39,0,0,0,4,7,37,4295,571,0,0,0,0,1,0,2,0,0,1,0,0,0,1384,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,25,7,466,35,0,0,351,0,1699,0,0,0,96,52,0,0,0,0,0,0,0,0,0,402,1,0,2,0,14,0,0,0,0,17,96,3,0,0,0,0,0,0,0,0,242106,0,0,114,0,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,8,1,1,1,0,4,0,0,0,0,25,34,102,0,10,0,0,0,0,0,0,879,3,0,0,0,0,0,0,0,0,0,0,0,3,2,5,11,0,0,0,0,0,0,0,2,0,0,0,6,0,1,634,40,5 +4,0,0,13,0,49,10,0,76,52,13,0,0,4,72,1,110,0,7,8,0,0,0,5,1,4,18,0,17,0,4,0,0,0,20,3058,49,1572,30,0,179,0,0,0,1,0,0,8,0,0,0,0,10,398,0,5,0,0,0,1,0,0,0,0,0,46,0,0,10800,49,378,0,21,0,0,0,0,0,40,0,0,0,0,0,6,20,920,0,0,20,0,0,1,16,0,238,25,13,1,0,2,0,466,0,43,0,6,3712,0,1,1,0,36,0,8,0,0,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0,0,0,868,0,157,0,0,0,20,72,112,2267,856,0,0,0,0,1,0,0,0,0,0,0,0,0,3379,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,68,1096,22,0,0,778,0,1878,0,0,0,467,170,0,0,0,0,0,0,3,0,0,293,1,0,0,0,14,0,0,0,0,10,225,314,0,0,83,0,0,0,0,0,202678,0,0,1478,0,0,1,0,1,0,0,0,18,0,2,0,3,0,0,0,0,0,56,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,16,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,63,1,1,1,0,60,0,1,0,0,2,69,1042,0,43,0,0,0,0,0,0,201,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,0,0,0,0,0,0,0,0,0,0,0,0,1,7,1122,297,5 +0,0,0,7,0,8,4,0,15,0,2,0,0,0,5,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,14,0,0,0,1,0,0,3,0,0,0,0,0,55,0,0,0,0,0,1,0,0,0,0,0,2,0,0,518,8,53,0,1,0,0,0,0,0,12,0,0,0,0,0,1,6,86,0,0,0,0,0,0,0,0,9,0,5,0,0,2,0,24,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,29,0,34,0,0,0,0,3,22,12,34,0,0,0,0,1,0,0,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,3,71,10,0,0,89,0,143,0,0,0,28,1,0,0,0,0,0,0,0,0,0,46,1,0,0,0,2,0,0,0,0,0,90,18,0,0,0,0,0,0,0,0,55,0,0,118,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,119,0,1,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,107,23,5 +0,0,0,8,0,31,129,0,296,24,78,0,0,0,31,0,31,0,7,3,0,0,0,3,0,2,6,0,4,0,1,0,0,0,17,0,31,44,8,0,541,0,0,0,1,0,0,1,0,0,0,0,2,219,0,0,0,0,0,1,0,0,2,1,0,68,0,0,1606,31,573,0,4,0,0,0,0,0,6,0,0,0,0,0,3,5,173,0,0,17,0,0,5,273,0,2105,235,2,0,0,2,0,1375,0,29,0,0,1204,0,0,0,0,19,0,1,0,0,0,0,1,0,0,0,20,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,213,0,99,0,0,0,4,22,67,2036,236,0,0,0,0,1,0,0,0,0,0,0,0,0,1149,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,32,207,8,0,0,369,0,743,0,0,0,283,45,0,0,0,0,0,0,0,0,0,572,1,0,0,0,6,0,0,0,0,3,127,665,0,0,556,0,0,0,0,3,187,0,0,92,0,0,1,0,0,0,0,0,2,0,7,0,10,0,0,0,0,0,24,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,13,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,18,0,0,0,0,1,48,293,0,13,0,0,0,0,0,0,671,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,30,0,0,0,0,0,0,0,0,0,0,0,0,0,2,247,123,5 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1,0,0,0,0,0,0,0,0,23,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,10,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,15,0,0,0,0,3,21,4,26,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,23,0,0,0,2,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,2,5 +0,0,0,32,3,68,144,3,463,46,87,0,0,0,103,0,242,0,13,8,0,0,0,4,6,10,33,0,27,0,2,0,0,3,29,0,71,218,47,0,787,0,0,0,1,0,0,2,0,0,0,0,14,279,0,0,0,0,0,1,0,0,0,8,0,124,0,0,2396,68,995,0,29,0,0,0,0,0,8,0,0,0,0,0,4,7,139,0,3,29,3,0,7,304,0,2567,125,3,0,0,8,3,1945,0,51,0,0,2683,0,0,0,0,89,0,1,0,0,0,0,1,0,0,0,17,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,42,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,193,0,100,0,0,0,28,144,127,2364,159,0,0,0,0,1,0,1,0,0,0,0,0,0,1058,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,330,100,788,83,0,0,826,0,2114,0,3,0,326,322,0,0,0,0,0,0,0,0,0,1052,1,0,0,0,18,0,0,0,0,14,221,758,0,0,291,0,0,0,0,0,881,0,0,53,0,0,1,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,39,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,76,1,1,1,0,153,0,0,0,0,25,100,183,0,72,0,0,0,0,0,0,966,4,0,0,0,0,0,0,0,0,0,0,0,3,0,1,52,0,0,0,0,0,0,0,0,0,0,0,3,0,1,546,173,5 +2,0,0,8,1,52,40,1,75,3,16,0,0,9,9,0,1081,0,9,3,0,0,0,8,0,12,3,0,11,0,1,0,0,1,6,8980,53,120,3,0,68,0,0,0,1,0,0,5,0,0,0,0,2,517,0,0,0,0,0,1,0,0,0,3,0,5,0,0,59840,52,1244,0,8,0,0,0,0,0,43,0,0,0,0,0,9,57,10070,0,1,6,1,0,1,0,0,354,30,6,0,0,4,1,1149,0,2,61,0,5304,0,0,0,0,3,2,3,0,0,0,0,1,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,12,12,12,0,0,0,7550,0,96,0,0,0,4,25,551,979,7524,0,0,0,0,1,0,5,0,0,0,0,0,0,530,2,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,1,0,224,32,450,9,0,0,522,0,1027,0,1,0,224,18,0,0,0,0,0,0,0,0,0,1239,1,0,0,0,11,0,0,0,0,3,181,54,0,0,73,0,0,0,0,0,4381,1,0,169,18,0,1,1,1,0,0,0,10,0,0,0,3,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,66,1,1,1,0,21,0,0,0,0,9,59,170,0,13,14,0,0,0,0,0,136,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,5,1495,80,5 +0,0,0,6,0,37,12,0,37,0,4,0,0,2,3,0,811,0,6,1,0,0,0,9,0,11,0,0,4,0,1,0,0,0,2,11559,37,6,0,0,26,0,2,0,1,0,0,3,0,0,0,0,1,450,0,0,0,0,0,1,0,0,0,0,0,3,0,0,275892,37,897,0,1,0,0,0,0,0,31,0,0,0,0,0,9,23,46906,0,0,2,0,0,0,0,0,97,5,6,1,0,2,0,830,0,0,0,0,2044,0,0,0,0,2,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,45218,0,45,0,0,0,0,3,283,454,45198,0,0,0,0,1,0,4,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,13,274,6,0,0,319,0,271,0,0,0,155,5,0,0,0,0,0,0,0,0,0,875,1,0,0,0,10,0,0,0,0,0,167,31,0,0,1,0,0,0,0,0,2585,1,0,441,14,0,1,1,1,0,0,0,4,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,0,0,0,0,0,1,39,108,0,2,14,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,861,47,5 +0,0,0,18,0,37,17,0,83,14,19,1,1,3,27,0,55,0,7,7,0,0,0,1,4,3,12,0,13,0,1,0,0,0,14,0,37,82,20,0,197,0,0,0,1,0,0,2,0,0,0,0,8,144,0,0,0,0,0,1,0,0,0,0,0,20,0,0,15744,37,233,0,14,0,0,0,0,0,9,0,0,0,0,0,3,6,2874,0,0,14,0,0,4,35,0,383,45,3,0,0,2,0,357,0,4,0,4,4370,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,1842,0,78,0,0,0,16,59,89,326,1846,0,0,0,0,1,0,0,0,0,0,0,0,0,3481,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,26,285,22,0,0,291,0,676,0,0,0,190,118,0,0,0,0,0,0,0,0,0,213,1,0,0,0,12,0,0,0,0,9,133,179,0,0,89,0,0,0,0,0,851,0,0,4020,0,0,1,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,37,0,0,0,0,1,51,345,0,29,0,0,0,0,0,0,141,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1349,73,5 +1,0,0,13,0,62,29,0,108,39,19,0,1,7,55,0,105,0,23,6,0,0,0,5,2,12,36,0,17,0,4,4,0,0,19,0,62,133,20,0,270,0,0,0,1,0,0,6,0,0,0,0,13,197,0,0,0,0,0,1,0,0,0,0,0,41,0,0,3579,62,427,0,23,0,0,0,0,0,28,0,0,0,0,2,7,23,380,0,0,19,0,0,2,44,0,522,65,10,0,0,2,0,635,0,30,0,6,2449,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,10,10,10,0,0,0,330,0,149,0,0,0,24,93,249,459,332,0,0,0,0,1,0,3,0,0,0,0,0,0,996,0,0,0,0,0,0,0,0,0,0,0,0,6,1,4,0,0,0,0,1,0,42,59,331,14,0,0,371,0,718,0,0,0,220,70,0,0,0,0,0,0,0,0,0,347,1,0,0,0,13,0,0,0,0,13,169,174,0,0,151,0,0,0,0,0,580,0,0,352,3,0,1,1,0,0,0,0,10,0,0,0,5,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,83,1,1,1,0,71,0,0,0,0,1,81,326,0,64,9,0,0,0,0,0,194,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,43,0,0,0,0,0,0,0,0,0,0,0,0,0,4,701,141,5 +17,0,0,15,0,72,28,0,142,17,41,1,0,0,40,1,78,0,7,6,0,0,0,8,20,8,21,0,33,0,1,0,0,0,36,0,72,55,33,0,291,0,0,0,1,0,0,2,0,0,0,0,20,275,0,0,0,0,0,1,0,0,0,0,0,50,0,0,10105,72,437,0,34,0,0,0,0,0,10,0,0,0,0,0,13,17,2363,0,0,36,0,0,6,94,0,1003,165,3,0,0,2,0,678,0,30,0,0,8398,1,0,7,0,12,6,4,0,0,0,1,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,1341,0,147,0,0,0,40,131,156,1160,1338,0,0,0,0,1,0,1,0,0,0,0,0,0,2433,0,0,0,0,0,0,0,0,0,6,0,0,2,0,0,0,0,0,0,0,1,8,47,489,22,0,0,413,0,1181,0,0,0,261,145,0,0,0,0,0,0,4,0,0,338,1,0,0,0,34,0,0,0,0,17,176,299,0,0,450,0,0,0,0,2,784,0,0,1536,0,0,1,1,0,0,0,0,4,0,0,0,5,0,0,0,0,0,21,3,0,6,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,93,1,1,1,0,65,0,0,0,0,1,108,281,0,63,0,0,0,0,0,0,335,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,25,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1061,201,5 +0,0,0,3,0,19,4,0,11,0,2,0,0,0,17,1,30,0,7,1,0,0,0,3,0,1,9,0,3,0,0,3,0,0,3,0,19,6,0,0,40,0,0,0,1,0,0,4,0,0,0,0,3,73,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3397,19,99,0,7,0,0,0,0,0,16,0,0,0,1,0,3,11,1007,0,0,3,0,0,0,0,0,21,0,8,0,0,2,0,96,0,0,0,0,758,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,587,0,56,0,0,0,6,22,56,40,596,0,0,0,0,1,0,0,0,0,0,0,0,0,438,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,4,141,4,0,0,144,0,243,0,0,0,67,22,0,0,0,0,0,0,0,0,0,72,1,0,0,0,4,0,0,0,0,2,101,42,0,0,0,0,0,0,0,0,132,0,0,248,0,0,1,0,0,0,0,0,6,0,0,0,4,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,30,0,0,0,0,1,22,187,0,16,0,0,0,0,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,243,46,5 +1,0,0,19,0,92,78,0,197,66,55,0,1,10,90,0,741,0,7,5,0,0,0,8,5,18,57,0,51,0,4,8,0,0,39,12213,92,113,26,0,505,0,0,0,1,0,0,4,0,0,0,0,20,714,0,0,0,0,0,1,0,0,0,0,0,69,0,0,88993,92,1342,0,60,0,0,0,0,0,69,0,0,0,0,0,9,185,14815,0,0,39,0,0,3,77,0,1157,110,6,0,0,2,0,1704,0,52,180,5,10356,0,0,0,0,25,0,7,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,12,12,12,0,0,0,9327,0,168,0,0,0,53,165,969,2637,9338,0,0,0,0,1,0,13,0,0,0,0,0,0,1494,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,2,0,113,141,830,23,0,0,652,0,1175,0,0,0,431,158,0,0,0,0,0,0,0,0,0,1179,1,0,0,0,18,0,0,0,0,13,281,233,0,0,426,0,3,0,0,0,5477,1,0,1159,31,0,1,31,0,0,0,0,8,0,0,0,3,0,0,0,0,0,59,0,0,4,3,3,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,31,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,147,1,1,1,0,198,0,0,0,0,1,131,580,0,124,14,0,0,0,0,0,390,6,0,0,0,0,0,0,0,0,0,0,0,2,0,1,74,24,0,0,0,0,0,0,0,0,0,0,0,0,4,11856,444,5 +2,0,0,16,1,74,115,1,101,7,24,0,0,10,12,0,2082,0,9,5,0,0,0,8,0,13,9,0,29,0,1,0,0,1,28,13952,75,54,10,0,103,0,0,0,1,0,0,4,0,0,0,0,4,817,0,0,0,0,0,1,0,0,0,3,0,10,0,0,173325,74,2577,0,27,0,0,0,0,0,188,0,0,0,0,0,10,113,32041,0,1,28,1,0,1,0,0,434,35,7,0,0,4,1,2337,0,4,82,0,6603,0,0,0,0,4,2,3,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,12,12,12,0,0,0,23810,0,83,0,0,0,17,36,915,2130,23763,0,0,0,0,1,0,4,0,0,0,0,0,0,839,2,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,1,0,242,60,609,27,0,0,831,0,709,0,1,0,500,63,0,0,0,0,0,0,0,0,0,2353,1,0,0,0,13,0,0,0,0,2,245,86,0,0,114,0,2,0,0,0,8569,1,0,898,92,0,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,2,0,0,6,6,1,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,92,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,92,1,1,1,0,79,0,0,0,0,9,103,211,0,38,14,0,0,0,0,0,148,3,0,0,0,0,0,0,0,0,0,0,0,3,0,2,13,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2609,113,5 +0,0,0,2,0,31,8,0,35,0,6,0,1,2,2,0,67,0,6,3,0,0,0,6,0,10,0,0,2,0,1,0,0,0,2,4,31,25,0,0,43,0,0,0,1,0,0,2,0,0,0,0,1,115,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1650,31,115,0,1,0,0,0,0,0,8,0,0,0,0,0,8,17,349,0,0,2,0,0,3,12,0,196,25,1,0,0,4,0,138,0,0,0,0,975,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,12,12,0,0,0,61,0,30,0,0,0,0,3,212,82,61,0,0,0,0,1,0,4,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,38,22,183,2,0,0,216,0,630,0,0,0,71,3,0,0,0,0,0,0,0,0,0,127,1,0,0,0,9,0,0,0,0,0,114,49,0,0,37,0,0,0,0,0,311,1,0,9,4,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,32,1,1,1,0,0,0,0,0,0,1,33,87,0,2,11,0,0,0,0,0,58,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,50,5 +4,0,0,5,0,18,40,0,261,12,85,0,0,0,17,0,26,0,7,1,0,0,0,2,9,0,0,0,15,0,2,0,0,0,6,0,18,6,25,0,418,0,0,0,1,0,0,2,0,0,0,0,10,174,0,0,0,0,0,1,0,0,0,0,0,38,0,0,1162,18,470,0,17,0,0,0,0,0,8,0,0,0,0,1,2,6,78,0,0,6,0,0,3,248,0,2069,305,3,0,0,2,0,1132,0,14,0,0,805,0,0,0,0,48,0,0,0,0,0,0,1,0,0,0,7,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,106,0,39,0,0,0,20,49,40,1267,102,0,0,0,0,1,0,0,0,0,0,0,0,0,476,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,8,21,147,5,0,0,197,0,350,0,0,0,131,23,0,0,0,0,0,0,0,0,0,436,1,0,0,0,12,0,0,0,0,10,100,611,0,0,913,0,0,0,0,0,287,0,0,54,0,0,1,0,1,0,0,0,3,0,0,0,1,0,0,0,0,0,12,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,15,1,1,1,0,26,0,0,0,0,1,24,257,0,17,0,0,0,0,0,0,549,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,2,164,28,5 +1,0,0,5,0,36,9,0,76,0,25,0,0,2,3,0,471,0,7,5,0,0,0,6,1,11,0,0,9,0,1,0,0,0,3,898,36,6,14,0,79,0,0,0,1,0,0,9,0,0,0,0,4,288,0,1,0,0,0,1,0,0,0,0,0,5,0,0,21102,36,685,0,7,0,0,0,0,0,60,0,0,0,0,0,8,31,5625,0,0,3,0,0,1,48,0,513,115,20,0,0,2,0,663,0,0,0,0,1301,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,12,12,12,0,0,0,4957,0,201,0,0,0,6,25,236,724,4929,0,0,0,0,1,0,4,0,0,0,0,0,0,1432,0,0,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,1,0,32,10,263,5,0,0,439,0,778,0,0,0,286,16,0,0,0,0,0,0,11,0,0,593,1,0,0,0,12,0,0,0,0,1,122,287,0,0,331,0,0,0,0,0,1527,1,0,810,5,0,1,1,1,0,0,0,37,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,27,0,0,0,0,1,39,665,0,9,12,0,1,0,0,0,165,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,15,1041,90,5 +0,0,0,4,0,16,2,0,5,0,3,0,0,0,5,0,16,0,7,3,0,0,0,0,0,1,3,0,2,0,1,0,0,0,6,0,16,6,3,0,18,0,0,0,1,0,0,0,0,0,0,0,1,41,0,0,0,0,0,1,0,0,0,4,0,6,0,0,111,16,35,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,6,0,0,0,0,0,14,0,0,0,0,2,0,34,0,3,0,0,173,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,20,0,19,0,0,0,2,11,36,34,27,0,0,0,0,1,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,68,4,0,0,61,0,173,0,0,0,25,16,0,0,0,0,0,0,0,0,0,38,0,0,0,0,3,0,0,0,0,2,102,2,0,0,0,0,0,0,0,1,47,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,13,1,1,1,0,6,0,0,0,0,1,22,6,0,7,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,8,5 +2,0,0,20,0,148,30,0,121,109,25,1,1,10,150,0,98,0,7,11,0,0,0,5,6,16,24,0,41,0,19,0,0,0,91,0,148,340,38,0,555,0,0,0,1,0,0,8,0,0,0,0,32,220,0,0,0,0,0,1,0,0,0,0,0,113,0,0,4486,148,562,0,58,0,0,0,0,0,28,0,0,0,0,0,8,29,635,0,0,91,0,0,3,53,0,745,90,9,0,0,2,0,856,0,103,0,12,5207,0,0,0,0,13,0,0,0,0,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,58,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,112,10,10,10,0,0,0,674,0,205,0,0,0,62,134,427,907,561,0,0,0,0,0,0,3,0,0,0,0,0,0,1064,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,1,0,37,137,770,25,0,0,530,0,925,0,0,0,341,256,0,0,0,0,0,0,0,0,0,443,1,0,0,0,22,0,0,0,0,31,250,109,0,0,199,0,0,0,0,0,856,0,0,146,3,0,1,1,0,0,0,0,16,0,0,0,10,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,190,1,1,1,0,176,0,0,0,36,1,239,165,0,91,9,0,0,0,0,0,384,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,115,0,0,0,0,0,0,0,0,0,0,0,0,0,8,11865,339,5 +0,0,0,5,0,19,26,0,61,7,18,0,0,0,16,0,26,0,7,4,0,0,0,1,0,1,3,0,6,0,1,0,0,0,6,0,19,25,9,0,113,0,0,0,1,0,0,1,0,0,0,0,3,87,0,0,0,0,0,1,0,0,0,9,0,20,0,0,543,19,147,0,7,0,0,0,0,0,4,0,0,0,0,0,1,3,27,0,0,6,0,0,2,44,0,391,60,2,0,0,2,0,255,0,10,0,0,726,0,0,0,0,7,0,0,0,4,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,58,0,44,0,0,0,6,19,38,308,53,0,0,0,0,1,0,8,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,8,17,123,5,0,0,180,0,577,0,0,0,115,19,0,0,0,0,0,0,0,0,0,154,1,0,0,0,5,0,0,0,0,4,106,140,0,0,151,0,0,0,0,0,125,0,0,12,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,17,1,1,1,0,12,0,0,0,0,1,25,190,0,11,0,0,0,0,0,0,129,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,39,5 +4,0,0,9,1,90,134,1,113,10,93,0,0,13,13,0,2248,0,9,8,0,0,0,8,2,15,24,0,62,0,2,0,0,1,31,39765,91,54,20,0,106,0,0,0,1,0,0,6,0,0,0,0,9,1300,0,0,0,0,0,1,0,0,0,9,0,11,0,0,366651,90,2873,0,60,0,0,0,0,0,176,0,0,0,0,0,10,362,67130,0,1,31,1,0,1,0,0,1014,45,11,1,0,4,1,2577,0,7,305,0,19424,0,0,0,0,7,4,5,0,0,0,0,1,0,0,0,23,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,5,0,0,2,0,0,0,0,23,0,1,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,4,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,12,12,12,0,0,0,46804,0,141,0,0,0,47,140,3892,6618,46696,0,0,0,0,1,0,9,0,0,0,0,0,0,4100,4,0,0,0,0,0,0,0,0,0,0,0,29,6,0,0,0,0,0,1,0,268,46,843,10,0,0,942,0,689,0,1,0,575,177,0,0,0,0,0,0,0,0,0,2623,1,0,0,0,18,0,0,0,0,9,337,91,0,0,542,0,7,0,0,0,19174,1,0,2595,85,0,1,1,0,0,0,0,8,0,0,0,3,0,0,0,0,0,6,0,0,0,16,3,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,85,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,136,1,1,1,0,185,0,0,0,0,9,122,542,0,89,14,0,0,0,0,0,209,1,0,0,0,0,0,0,0,0,0,0,0,4,0,2,18,0,0,0,0,0,0,0,0,0,0,0,1,0,3,9475,210,5 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,1,0,0,1,0,0,0,0,0,35,0,0,0,0,0,1,0,0,0,0,0,1,0,0,103,8,20,0,1,0,0,0,0,0,2,0,0,0,0,0,1,3,3,0,0,0,0,0,0,0,0,6,0,0,0,0,2,0,6,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,10,0,19,0,0,0,0,3,22,4,23,0,0,0,0,1,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,35,2,0,0,65,0,90,0,0,0,35,1,0,0,0,0,0,0,0,0,0,23,1,0,0,0,2,0,0,0,0,0,90,34,0,0,0,0,0,0,0,1,16,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,80,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,8,5 +0,0,0,5,0,18,2,0,21,8,6,0,0,0,15,0,22,0,7,1,0,0,0,1,1,1,0,0,2,0,1,0,0,0,5,0,18,6,4,0,55,0,0,0,1,0,0,1,0,0,0,0,1,119,0,0,0,0,0,1,0,0,0,2,0,16,0,0,6713,18,69,0,3,0,0,0,0,0,6,0,0,0,0,0,1,3,1533,0,0,5,0,0,0,5,0,77,10,2,0,0,2,0,68,0,9,0,0,436,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,820,0,38,0,0,0,2,10,41,93,828,0,0,0,0,1,0,0,0,1,0,0,0,0,1853,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,12,13,131,5,0,0,171,0,482,0,0,0,102,13,0,0,0,0,0,0,2,0,0,73,1,0,0,0,3,0,0,0,0,2,102,87,0,0,19,0,0,0,0,0,791,0,0,1552,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,16,1,1,1,0,7,0,0,0,0,1,23,262,0,4,0,0,0,0,0,0,49,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,2,852,52,5 +4,0,0,7,1,60,37,1,56,2,11,0,0,9,8,0,136,0,9,3,0,0,0,8,0,12,3,0,8,0,1,0,0,1,13,6606,61,54,7,0,75,0,0,0,1,0,0,1,0,0,0,0,2,471,0,0,0,0,0,1,0,0,0,7,0,5,0,0,97150,60,232,0,5,0,0,0,0,0,23,0,0,0,0,0,9,35,16391,0,1,13,1,0,1,0,0,313,30,1,0,0,4,1,184,0,3,28,0,3330,0,0,0,0,13,4,4,0,0,0,0,1,0,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,1,0,0,29,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,12,12,0,0,0,14242,0,62,0,0,0,3,19,508,956,14220,0,0,0,0,1,0,5,0,0,0,0,0,0,455,4,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,1,0,220,30,503,8,0,0,506,0,791,0,1,0,201,50,0,0,0,0,0,0,0,0,0,266,1,0,0,0,11,0,0,0,0,2,177,40,0,0,35,0,0,0,0,0,2069,1,0,53,15,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,84,1,1,1,0,31,0,0,0,0,9,74,99,0,10,14,0,0,0,0,0,122,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,2,1219,89,5 +0,0,0,19,0,80,189,0,1001,16,94,0,1,9,38,1,67,0,7,7,0,0,0,11,3,10,12,0,26,0,15,0,0,0,35,0,80,249,17,0,1944,0,0,0,1,0,0,4,0,0,0,0,21,305,0,0,0,0,0,1,0,0,0,1,0,27,0,0,11025,80,1479,0,39,0,2,0,0,0,25,0,0,0,0,0,14,25,853,0,0,35,0,0,5,947,0,7168,425,9,1,0,2,0,4809,0,11,0,5,3060,0,0,0,0,44,0,0,0,0,0,0,1,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,10,10,10,0,0,0,860,0,176,0,0,0,40,78,333,4441,885,0,0,0,0,1,0,6,0,0,0,0,0,0,3044,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,89,35,435,24,0,0,626,0,1231,0,0,0,461,228,0,0,0,0,0,0,0,0,0,1407,1,0,0,0,21,0,0,0,0,4,195,1955,0,0,1390,0,0,0,0,0,906,0,0,2043,3,0,1,1,1,0,0,0,11,0,2,0,3,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,3,39,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,121,1,1,1,0,140,0,0,0,10,1,115,398,0,54,9,0,0,0,0,0,1968,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,28,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1103,177,5 +0,0,0,13,0,43,23,0,124,20,43,0,0,7,35,0,54,0,7,7,0,0,0,7,0,11,12,0,9,0,2,0,0,0,12,0,43,6,9,0,242,0,0,0,1,0,0,4,0,0,0,0,5,347,0,0,0,0,0,1,0,0,0,0,0,43,0,0,4349,43,321,0,9,0,0,0,0,0,24,0,0,0,0,0,10,20,515,0,0,12,0,0,8,89,0,997,175,8,0,0,2,0,633,0,23,0,0,1171,0,0,0,0,5,0,0,0,1,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,22,10,10,10,0,0,0,419,0,132,0,0,0,8,36,212,665,431,0,0,0,0,1,0,3,0,0,0,0,0,0,1488,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,106,35,230,16,0,0,336,0,486,0,0,0,208,58,0,0,0,0,0,0,4,0,0,293,1,0,0,0,14,0,0,0,0,5,127,300,0,0,310,0,0,0,0,0,406,0,0,814,3,0,1,2,1,0,0,0,6,0,0,0,1,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,50,1,1,1,0,24,0,0,0,0,1,55,758,0,25,9,0,0,0,0,0,302,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,40,0,0,0,0,0,0,0,0,0,0,0,0,0,4,665,162,5 +1,0,0,12,1,50,40,1,197,35,40,1,0,7,50,0,131,0,9,6,0,0,0,8,2,6,18,0,24,0,1,0,0,1,30,0,51,217,49,0,283,0,0,0,1,0,0,8,0,0,0,0,12,295,0,0,0,0,0,1,0,0,0,2,0,36,0,0,2394,50,519,0,25,0,0,0,0,0,28,0,0,0,0,0,3,12,199,0,1,30,1,0,2,105,0,991,75,16,0,0,4,1,828,0,17,0,7,1776,0,0,0,0,3,0,4,0,0,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,0,0,0,1,0,0,0,0,5,0,8,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,20,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0,0,0,274,0,134,0,0,0,24,80,100,896,258,0,0,0,0,1,0,12,0,0,0,0,0,0,770,0,0,0,0,0,0,0,0,0,0,0,0,8,0,14,0,0,0,0,0,0,125,59,461,16,0,0,518,0,2273,0,1,0,298,96,0,0,0,0,0,0,0,0,0,475,1,0,0,0,16,0,0,0,0,13,160,387,0,0,228,0,0,0,0,0,730,0,0,120,0,0,1,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,62,1,1,1,0,71,0,0,0,0,9,81,426,0,49,0,0,0,0,0,0,397,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,37,0,0,0,0,0,0,0,0,0,0,0,1,0,0,620,125,5 +4,0,0,0,5,62,43,17,102,7,12,0,1,0,11,0,117,0,9,11,0,6,4,4,0,18,3,0,8,0,2,0,0,5,25,0,67,54,1006,0,122,0,0,0,1,0,0,3,0,0,0,0,12,708,0,0,0,0,0,1,0,0,0,11,0,5,0,0,8302,62,652,0,18,0,0,0,0,0,6,12,0,0,0,0,7,15,82,0,17,25,5,0,2,23,0,326,20,0,0,0,4,5,230,0,3,0,0,1893,0,0,0,0,13,4,8,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,2,43,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,9,4,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,10,10,10,0,0,0,88,0,92,0,0,0,13,45,264,278,1551,0,0,0,0,1,0,6,0,0,0,0,0,0,1144,4,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,1,0,129,31,563,8,0,0,558,0,940,0,1,0,235,160,0,0,0,0,0,0,0,0,0,295,1,0,0,0,25,0,0,0,0,11,166,122,0,0,56,0,0,0,0,1,2019,0,0,8,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,79,1,1,1,0,45,0,0,0,0,43,92,213,0,23,8,0,0,0,0,0,106,6,0,0,0,0,0,0,0,0,0,0,0,6,0,1,7,0,0,0,0,0,0,0,0,0,0,0,9,0,0,401,189,5 +0,0,0,11,0,28,21,0,68,14,17,0,1,3,28,0,49,0,7,4,0,0,0,1,1,3,12,0,8,0,1,0,0,0,13,0,28,87,14,0,153,0,0,0,1,0,0,2,0,0,0,0,4,167,0,0,0,0,0,1,0,0,0,0,0,24,0,0,1326,28,205,0,8,0,0,0,0,0,8,0,0,0,0,1,1,5,102,0,0,13,0,0,3,39,0,366,55,3,0,0,2,0,353,0,13,0,4,870,0,0,0,0,4,0,2,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,129,0,51,0,0,0,8,39,64,320,140,0,0,0,0,1,0,0,0,0,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,23,179,12,0,0,240,0,602,0,0,0,164,37,0,0,0,0,0,0,0,0,0,194,1,0,0,0,6,0,0,0,0,5,133,149,0,0,125,0,0,0,0,0,364,0,0,119,0,0,1,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,34,1,1,1,0,26,0,0,0,0,1,41,226,0,24,0,0,0,0,0,0,145,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,0,0,0,0,0,0,0,0,0,0,0,0,0,2,231,117,5 +5,0,0,3,0,19,16,0,25,1,3,0,0,0,4,0,15,0,6,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,19,6,0,0,10,0,2,0,1,0,0,3,2,0,0,0,0,114,0,0,0,0,0,1,0,0,0,0,0,4,0,0,7872,19,91,0,1,0,0,0,1,0,31,0,0,0,0,0,2,15,4072,0,0,4,0,0,0,0,0,13,0,9,0,0,2,0,26,0,2,0,0,685,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,2037,0,83,0,0,0,0,3,47,992,2054,0,0,0,0,1,0,0,0,0,0,0,0,0,544,0,0,0,0,7,0,0,0,0,10,0,0,3,0,0,0,0,0,0,0,0,8,5,144,3,0,0,250,0,962,0,0,0,168,13,0,0,0,0,0,0,0,0,0,69,1,0,5,0,3,0,0,0,0,0,107,131,0,0,0,0,0,0,0,2,32,0,0,1669,0,0,1,0,1,0,0,0,13,0,0,0,1,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,0,0,0,0,0,1,23,419,0,1,0,0,0,0,0,0,32,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,166,340,5 +0,0,0,5,0,8,2,0,19,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,7,0,2,0,1,0,0,2,1,0,0,0,0,61,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1554,8,50,0,1,0,0,0,0,0,12,0,0,0,0,0,1,7,664,0,0,0,0,0,0,0,0,10,0,5,0,0,2,0,15,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,171,0,77,0,0,0,0,3,22,7,189,0,0,0,0,1,0,0,0,0,0,0,0,0,485,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,3,77,5,0,0,103,0,199,0,0,0,37,4,0,0,0,0,0,0,0,0,0,45,1,0,3,0,2,0,0,0,0,0,92,31,0,0,0,0,0,0,0,1,253,0,0,824,0,0,1,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,153,0,1,0,0,1,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,392,14,5 +0,0,0,7,0,38,64,0,63,7,11,0,0,9,4,2,1298,0,6,1,0,0,0,9,0,11,0,0,12,0,1,0,0,0,3,30882,38,6,0,0,48,0,2,0,1,0,0,2,0,0,0,0,1,1203,0,0,0,0,0,1,0,0,0,0,0,3,0,0,182684,38,1630,0,9,0,0,0,0,0,132,0,0,0,0,0,9,29,30701,0,0,3,0,0,0,0,0,268,30,4,0,0,2,0,1302,0,0,7,0,5419,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,12,12,12,0,0,0,24890,0,111,0,0,0,2,5,575,1505,24836,0,0,0,0,1,0,3,0,0,0,0,0,0,431,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,113,40,348,7,0,0,503,0,329,0,0,0,328,38,0,0,0,0,0,0,0,0,0,1457,1,0,0,0,10,0,0,0,0,1,172,74,0,0,36,0,0,0,0,0,5746,1,0,543,67,0,1,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,72,72,0,0,5,0,2,0,0,0,66,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,14,0,0,0,0,57,41,133,0,10,14,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2629,160,5 +0,0,0,7,0,45,36,0,60,10,43,0,0,10,8,0,1095,0,7,2,0,0,0,8,0,12,3,0,47,0,1,1,0,0,4,23222,45,6,0,0,62,0,0,0,1,0,0,3,0,0,0,0,2,1089,0,0,0,0,0,1,0,0,0,0,0,6,0,0,43843,45,1382,0,46,0,0,0,0,0,76,0,0,0,0,0,9,276,6703,0,0,4,0,0,0,0,0,605,35,6,0,0,2,0,1265,0,3,230,0,4591,0,0,0,0,1,0,4,0,0,0,0,1,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,12,12,12,0,0,0,2030,0,60,0,0,0,25,36,1452,2305,1964,0,0,0,0,1,0,5,0,0,0,0,0,0,3079,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,139,163,432,7,0,0,436,0,473,0,0,0,251,10,0,0,0,0,0,0,0,0,0,1259,1,0,0,0,10,0,0,0,0,2,201,40,0,0,287,0,0,0,0,0,5320,1,0,2814,37,0,1,1,0,0,0,0,6,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,37,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,52,1,1,1,0,131,0,0,0,0,1,49,312,0,50,14,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2565,102,5 +0,0,0,15,0,46,66,0,59,11,8,0,0,2,16,0,1220,0,7,3,0,0,0,9,0,11,0,0,4,0,1,0,0,0,7,11817,46,6,0,0,89,0,0,0,1,0,0,6,1,0,0,0,1,2175,0,0,0,0,0,1,0,0,0,0,0,22,0,0,57218,46,1672,0,1,0,0,0,1,0,206,0,0,0,0,0,11,29,9197,0,0,7,0,0,1,13,0,213,20,13,1,0,2,0,1434,0,14,0,0,6538,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,11,0,1,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,12,12,12,0,0,0,2923,0,159,0,0,0,0,3,399,943,2893,0,0,0,0,1,0,4,0,0,0,0,0,0,7657,0,0,0,0,2,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,32,28,700,25,0,0,677,0,485,0,0,0,493,228,0,0,0,0,0,0,0,0,0,1378,1,0,2,0,12,0,0,0,0,1,238,177,0,0,29,0,1,0,0,0,6315,1,0,4893,65,0,1,1,1,0,0,0,14,0,0,0,4,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,54,1,1,1,0,0,0,0,0,0,1,53,311,0,2,14,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,0,0,0,1,0,2,15,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4524,293,5 +4,0,0,16,0,94,30,0,338,39,111,0,1,5,59,1,410,0,7,8,0,0,0,21,4,16,27,0,44,0,1,0,0,0,47,0,94,208,80,0,1238,0,0,0,1,0,0,8,0,0,0,0,23,691,0,0,0,0,0,1,0,0,0,4,0,71,0,0,7233,94,1093,0,43,0,0,0,0,0,41,0,0,0,0,1,10,25,959,0,0,47,0,0,7,291,0,2665,425,15,0,0,2,0,2256,0,43,2,6,6667,0,1,0,0,10,3,5,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,10,10,10,0,0,0,726,0,200,0,0,0,44,115,259,1693,667,0,0,0,0,1,0,12,0,0,0,0,0,0,1594,0,0,0,0,0,0,0,0,0,0,0,0,8,1,2,0,0,0,0,1,0,37,67,543,17,0,0,510,0,1038,0,0,0,338,194,0,0,0,0,0,0,16,0,0,962,1,0,0,0,33,0,0,0,0,23,188,700,0,0,1011,0,0,0,0,0,1409,0,0,723,3,0,1,1,1,0,0,0,22,0,0,0,3,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,3,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,1,0,0,116,1,1,1,0,77,0,0,0,0,1,141,419,0,79,9,0,0,0,0,0,1696,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,55,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1092,186,5 +4,0,0,12,0,48,27,0,114,29,25,0,1,3,44,0,79,0,7,7,0,0,0,1,5,8,21,0,22,0,1,0,0,0,28,0,48,136,39,0,269,0,0,0,1,0,0,5,0,0,0,0,11,274,0,0,0,0,0,1,0,0,0,0,0,32,0,0,14513,48,368,0,23,0,0,0,0,1,23,0,0,0,0,0,1,7,3670,0,0,28,0,0,2,61,0,585,90,6,0,0,2,0,553,0,22,0,5,1899,0,0,0,0,11,0,6,0,0,0,2,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,0,0,3243,0,132,0,0,0,22,88,93,551,3240,0,0,0,0,1,0,0,0,0,0,0,0,0,1765,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,0,0,0,0,0,0,13,39,304,13,0,0,320,0,902,0,0,0,223,62,0,0,0,0,0,0,3,0,0,300,1,0,0,0,13,0,0,0,0,8,159,186,0,0,243,0,0,0,0,0,784,0,0,1436,0,0,1,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,59,0,1,0,0,1,76,303,0,52,0,0,1,0,0,0,246,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,31,0,0,0,0,0,0,0,0,0,0,0,0,0,5,964,131,5 +0,0,0,15,1,37,57,1,154,12,45,0,1,1,31,0,90,0,9,4,0,0,0,1,0,1,9,0,6,0,1,0,0,1,18,0,38,411,9,0,261,0,0,0,0,0,0,0,0,0,0,0,3,249,0,0,0,0,0,1,0,0,1,0,0,36,0,0,806,37,337,0,7,0,0,0,0,0,0,0,0,0,0,0,1,1,46,0,1,18,1,0,9,100,0,895,165,0,0,0,4,1,623,0,19,0,2,1080,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,65,0,69,0,0,0,6,25,93,666,96,0,0,0,0,0,0,0,0,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,46,388,17,0,0,347,0,2728,0,1,0,154,46,0,0,0,0,0,0,0,0,0,388,0,0,0,0,5,0,0,0,0,4,157,187,0,0,367,0,0,0,0,1,838,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,63,1,1,1,0,10,0,0,0,0,16,56,19,0,17,0,0,0,0,0,0,317,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,24,0,0,0,0,0,0,0,0,0,0,0,1,0,0,543,86,5 +3,0,0,27,0,67,39,0,395,13,102,0,0,0,50,0,188,0,7,6,0,0,0,2,18,23,75,0,37,0,1,3,0,0,47,9973,67,98,89,0,738,0,0,0,1,0,0,5,0,0,0,0,26,298,0,0,0,0,0,1,0,0,0,6,0,85,0,0,5887,67,959,0,41,0,0,0,0,0,23,0,0,0,0,0,2,13,1764,0,0,47,0,0,5,323,0,2709,205,6,0,0,2,0,2181,0,17,0,0,6205,0,0,0,0,39,0,6,0,0,0,1,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,2,0,0,0,0,15,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,1117,0,140,0,0,0,52,329,120,3421,911,0,0,0,0,1,0,0,0,5,0,0,0,0,1029,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,15,24,665,30,0,0,728,0,3102,0,0,0,501,1319,0,0,0,0,0,0,0,0,0,781,1,0,0,0,26,0,0,0,0,12,257,925,0,0,471,0,0,0,10,0,1788,0,0,497,0,0,1,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,13,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,64,1,1,1,0,152,0,0,0,0,1,114,715,0,139,0,0,0,0,0,0,906,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,21,0,0,0,0,0,0,0,0,0,0,0,0,0,5,989,542,5 +1,0,0,4,0,13,5,0,22,2,8,0,0,0,6,0,26,0,7,1,0,0,0,1,0,0,6,0,1,0,1,2,0,0,3,0,13,6,0,0,33,0,0,0,1,0,0,3,0,0,0,0,2,145,0,0,0,0,0,1,0,0,0,0,0,8,0,0,1442,13,94,0,4,0,0,0,0,0,15,0,0,0,1,0,1,6,238,0,0,3,0,0,1,12,0,121,20,5,0,0,2,0,109,0,4,0,0,305,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,184,0,72,0,0,0,4,13,32,180,188,0,0,0,0,1,0,0,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,8,7,98,4,0,0,175,0,302,0,0,0,116,18,0,0,0,0,0,0,4,0,0,74,1,0,0,0,2,0,0,0,0,3,95,112,0,0,50,0,0,0,0,0,108,0,0,264,0,0,1,0,1,0,0,0,5,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,3,0,0,0,0,1,16,347,0,10,0,0,0,0,0,0,55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,248,99,5 +1,0,0,3,1,32,28,1,32,2,4,0,0,2,4,0,68,0,9,3,0,0,0,5,0,8,0,0,1,0,1,0,0,1,3,0,33,54,0,0,26,0,0,0,1,0,0,1,0,0,0,0,1,96,0,0,0,0,0,1,0,0,0,2,0,2,0,0,504,32,100,0,1,0,0,0,0,0,6,0,0,0,0,0,7,13,68,0,1,3,1,0,1,0,0,108,5,1,0,0,4,1,29,0,1,0,0,431,0,0,0,0,3,1,1,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,10,10,0,0,0,63,0,71,0,0,0,0,3,171,18,69,0,0,0,0,1,0,2,0,0,0,0,0,0,249,1,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,135,22,267,4,0,0,287,0,435,0,1,0,64,29,0,0,0,0,0,0,0,0,0,147,1,0,0,0,8,0,0,0,0,1,128,12,0,0,0,0,0,0,0,0,477,0,0,8,2,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,41,1,1,1,0,0,0,0,0,0,9,36,32,0,2,8,0,0,0,0,0,46,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,183,49,5 +0,0,0,9,0,15,100,0,153,2,16,1,0,0,8,2,46,0,7,1,0,0,0,1,0,0,15,0,4,0,4,2,0,0,3,0,15,9,0,0,295,0,0,0,1,0,0,5,0,0,0,0,5,101,1,0,0,0,0,1,0,0,0,0,0,13,0,0,1428,15,376,0,10,0,0,0,0,0,22,0,0,0,0,0,1,9,141,0,0,3,0,0,1,139,0,1040,30,8,0,0,2,0,824,0,3,0,0,592,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,145,0,93,0,0,0,10,30,41,2156,352,0,0,0,0,1,0,0,0,0,0,0,0,0,1080,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,23,12,165,13,0,0,247,0,343,0,0,0,181,11,0,0,0,0,0,0,0,0,0,333,1,0,0,0,2,0,0,0,0,4,97,352,0,0,72,0,0,0,0,0,206,0,0,185,0,0,1,3,0,0,0,0,10,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,19,0,0,0,0,1,18,250,0,25,0,0,0,0,0,0,329,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,3,0,0,0,0,0,0,0,0,0,0,0,0,4,278,362,5 +0,0,0,13,0,35,32,0,127,15,23,0,0,2,27,0,95,0,7,3,0,0,0,1,11,9,30,0,23,0,4,0,0,0,19,0,35,255,25,0,295,0,0,0,1,0,0,4,0,0,0,0,16,316,0,0,0,0,0,1,0,0,0,0,0,26,0,0,2111,35,384,0,27,0,0,0,0,0,13,0,0,0,0,0,1,6,143,0,0,19,0,0,2,78,0,681,30,6,0,0,2,0,713,0,11,0,2,1557,0,0,0,0,25,0,6,0,0,0,0,1,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,246,0,113,0,0,0,32,113,73,702,217,0,0,0,0,1,0,0,0,0,0,0,0,0,675,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,18,26,308,14,0,0,317,0,1699,0,0,0,234,136,0,0,0,0,0,0,0,0,0,313,1,0,0,0,15,0,0,0,0,17,129,307,0,0,64,0,0,0,0,0,616,0,0,69,0,0,1,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,51,0,0,0,0,1,54,321,0,66,0,0,0,0,0,0,286,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,4,345,131,5 +1,0,0,5,0,13,6,0,337,1,165,0,0,0,5,0,31,0,7,1,0,0,0,1,0,0,9,0,3,0,3,1,0,0,3,0,13,6,0,0,346,0,0,0,1,0,0,1,0,0,0,0,3,89,0,0,0,0,0,1,0,0,0,0,0,6,0,0,5875,13,560,0,6,0,0,0,0,0,6,0,0,0,0,0,1,3,1025,0,0,3,0,0,1,327,0,2631,805,1,0,0,2,0,1231,0,2,0,0,1148,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,640,0,111,0,0,0,6,18,143,2038,652,0,0,0,0,1,0,0,0,0,0,0,0,0,1563,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,5,450,5,0,0,110,0,289,0,0,0,52,90,0,141,0,0,0,0,0,0,0,551,1,0,0,0,2,0,0,0,0,1,99,526,0,0,2442,0,0,0,0,0,281,0,0,1404,0,0,1,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,122,1,1,1,0,9,0,0,0,0,1,16,60,0,16,0,0,0,0,0,0,518,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,4,0,0,0,0,0,0,0,0,0,0,0,0,1,628,195,5 +0,0,0,5,0,8,30,0,80,0,15,0,0,0,2,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,8,6,0,0,122,0,0,0,1,0,0,1,0,0,0,0,0,159,0,0,0,0,0,1,0,0,0,0,0,8,0,0,1836,8,134,0,1,0,0,0,0,0,6,0,0,0,0,0,1,3,180,0,0,0,0,0,1,64,0,492,35,2,0,0,2,0,320,0,0,0,0,136,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,178,0,29,0,0,0,0,3,22,426,191,0,0,0,0,1,0,0,0,0,0,0,0,0,686,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,226,6,0,0,281,0,161,0,0,0,215,7,0,0,0,0,0,0,0,0,0,148,1,0,0,0,2,0,0,0,0,0,234,181,0,0,96,0,0,0,0,1,172,0,0,596,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,159,0,0,0,0,0,0,0,0,153,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,211,39,5 +0,0,0,0,0,10,15,0,19,0,2,0,0,0,2,0,9,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,40,0,0,0,1,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,50,10,47,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,2,0,0,1,16,0,119,0,0,0,0,2,0,88,0,0,0,0,118,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,13,0,22,0,0,0,0,3,25,101,30,0,0,0,0,1,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,42,0,0,0,58,0,140,0,0,0,28,1,0,0,0,0,0,0,0,0,0,53,0,0,0,0,2,0,0,0,0,0,92,45,0,0,0,0,0,0,0,1,17,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,18,0,1,0,0,0,0,0,0,50,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,9,5 +7,0,0,17,3,107,244,6,455,25,90,1,0,2,49,0,144,0,9,17,0,3,1,15,4,18,21,0,29,0,1,0,0,3,49,0,110,172,282,0,816,0,0,0,1,0,0,4,0,0,0,0,16,414,1,2,0,0,0,1,0,0,2,6,0,75,0,0,5935,107,1342,0,28,0,0,0,0,0,26,6,0,0,0,0,16,26,693,0,6,49,3,0,5,363,0,3016,285,7,0,0,4,3,1993,0,41,0,0,3705,0,2,2,0,34,2,8,0,0,0,0,1,0,0,0,28,7,0,0,0,0,0,0,0,0,0,0,3,0,0,1,5,0,0,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,32,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,41,10,10,10,0,0,0,818,0,215,0,0,0,30,131,366,2935,597,0,0,0,0,1,0,17,0,0,1,0,0,0,2561,0,0,0,0,0,0,0,0,0,2,0,0,7,1,4,0,0,0,0,2,0,145,84,815,23,0,0,976,0,2265,0,1,0,599,260,0,0,0,0,0,0,6,0,0,994,1,0,0,0,40,0,0,0,0,14,259,881,0,0,753,0,0,0,0,4,1393,0,0,639,3,0,1,3,1,4,0,0,13,0,3,0,6,0,0,0,0,0,26,0,0,7,1,3,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,3,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,137,1,1,1,0,149,0,0,0,0,25,159,449,0,60,9,0,0,0,0,0,963,12,0,0,0,0,0,0,0,0,0,0,0,4,0,1,33,0,0,0,0,0,0,0,0,0,0,0,4,0,3,941,223,5 +0,0,0,7,0,23,31,0,81,5,19,0,0,0,13,0,31,0,7,3,0,0,0,2,0,2,6,0,5,0,2,0,0,0,8,0,23,28,11,0,130,0,0,0,1,0,0,5,0,0,0,0,2,122,0,0,0,0,0,1,0,0,0,0,0,20,0,0,18507,23,198,0,7,0,0,0,0,0,21,0,0,0,0,0,1,7,2949,0,0,8,0,0,2,53,0,452,75,10,0,0,2,0,307,0,10,0,0,661,0,0,0,0,10,0,1,0,0,0,0,1,0,0,0,8,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,1704,0,89,0,0,0,5,28,45,361,1707,0,0,0,0,1,0,0,0,0,0,0,0,0,2643,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,17,193,7,0,0,228,0,486,0,0,0,154,22,0,0,0,0,0,0,0,0,0,182,1,0,0,0,5,0,0,0,0,12,126,157,0,0,192,0,0,0,0,0,1711,0,0,6377,0,0,1,0,0,0,0,0,9,0,0,0,8,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,21,1,1,1,0,33,0,0,0,0,1,31,241,0,15,0,0,0,0,0,0,162,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3042,49,5 +0,0,0,15,1,46,142,1,340,27,101,0,0,0,44,0,155,0,9,3,0,0,0,2,11,2,42,0,25,0,3,0,0,1,26,3049,47,102,38,0,522,0,0,0,1,0,0,7,0,0,0,0,15,263,0,0,0,0,0,1,0,0,2,0,0,56,0,0,4874,46,868,0,28,0,0,0,0,0,28,0,0,0,0,0,2,13,401,0,1,26,1,0,7,281,0,2450,435,12,1,0,4,1,1578,0,35,0,0,9648,0,0,0,0,28,0,0,0,0,0,0,1,0,0,0,22,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,549,0,153,0,0,0,30,162,95,1890,444,0,0,0,0,1,0,0,0,0,0,0,0,0,2149,0,0,0,0,0,0,0,0,0,2,0,0,7,0,0,0,0,0,0,0,0,119,59,509,19,0,0,545,0,7511,0,1,0,321,309,0,0,0,0,0,0,0,0,0,791,1,0,0,0,16,0,0,0,0,13,164,558,0,0,1129,0,0,0,0,3,810,0,0,924,0,0,1,0,0,0,0,0,10,0,3,0,9,0,0,0,0,0,27,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,52,1,1,1,0,66,0,0,0,0,9,73,1896,0,72,0,0,0,0,0,0,651,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,35,0,0,0,0,0,0,0,0,0,0,0,1,0,3,723,297,5 +0,0,0,0,0,9,3,0,18,0,1,0,1,0,2,0,27,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,25,0,0,10,0,0,0,1,0,0,1,1,0,0,0,0,38,0,0,0,0,0,1,0,0,0,0,0,0,0,0,124,9,48,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,15,0,0,1,0,0,1,0,0,12,0,4,0,0,4,0,35,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,22,0,25,0,0,0,0,3,23,5,36,0,0,0,0,1,0,1,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,14,15,104,0,0,0,111,0,527,0,0,0,32,1,0,0,0,0,0,0,0,0,0,58,1,0,3,0,2,0,0,0,0,0,92,13,0,0,0,0,0,0,0,0,52,0,0,12,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,33,0,1,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,38,5 +10,0,0,24,1,93,82,1,638,34,157,1,1,2,73,0,134,0,9,12,0,0,0,6,9,10,21,0,30,0,1,0,0,1,52,0,94,262,42,0,1263,0,0,0,1,0,0,1,0,0,0,0,17,296,0,3,0,0,0,1,0,0,0,0,0,154,0,0,5531,93,1098,0,31,0,0,0,0,0,6,0,0,0,0,0,9,11,293,0,1,52,1,0,6,545,0,4369,290,2,0,0,4,1,2954,0,52,0,3,2873,0,0,0,0,8,3,3,0,0,0,0,1,0,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,32,0,1,0,0,0,0,0,0,0,0,6,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,389,0,150,0,0,0,34,108,198,3604,377,0,0,0,0,1,0,6,0,0,0,0,0,0,1408,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,128,95,626,32,0,0,609,0,2098,0,1,0,325,123,0,0,0,0,0,0,0,0,0,1097,1,0,0,0,27,0,0,0,0,16,222,1390,0,0,817,0,1,0,0,2,939,0,0,603,0,0,1,0,0,0,0,0,3,0,0,0,7,0,0,0,0,0,38,1,0,10,0,0,0,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,131,1,1,1,0,82,0,0,0,0,9,146,219,0,62,0,0,0,0,0,0,1463,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,42,0,0,0,0,0,0,0,0,0,0,0,1,0,2,651,173,5 +7,0,0,14,1,84,68,1,132,9,26,0,1,12,26,0,2381,0,9,8,0,0,0,8,2,17,21,0,23,0,1,0,0,1,22,35700,85,124,31,0,124,0,0,0,1,0,0,1,0,0,0,0,8,700,0,0,0,0,0,1,0,0,0,13,0,10,0,0,201255,84,2694,0,20,0,0,0,0,0,57,0,0,0,0,0,10,81,41820,0,1,22,1,0,1,0,0,510,30,2,0,0,4,1,2630,0,7,81,4,12527,0,0,0,0,7,7,7,0,0,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,7,0,0,0,0,0,0,0,0,6,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,12,12,12,0,0,0,31232,0,99,0,0,0,18,147,845,3677,31155,0,0,0,0,1,0,10,0,0,0,0,0,0,4316,6,0,0,0,0,0,0,0,0,0,0,0,570,8,0,0,0,0,0,1,0,230,38,892,16,0,0,709,0,951,0,1,0,361,195,0,0,0,0,0,0,4,0,0,2655,1,0,0,0,18,0,0,0,0,9,282,90,0,0,126,0,12,0,0,0,13903,1,0,1921,35,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,11,0,0,0,20,6,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,1,142,1,1,1,0,109,0,0,0,0,9,107,203,0,48,14,0,0,0,0,0,181,2,0,0,0,0,0,0,0,0,0,0,0,4,0,1,15,0,0,0,0,0,0,0,0,0,0,0,1,0,2,5787,178,5 +0,0,0,9,0,52,76,0,79,2,16,0,0,9,9,0,1031,0,7,1,0,0,0,10,0,12,0,0,12,0,1,0,0,0,9,40128,52,6,0,0,89,0,5,0,1,0,0,6,0,0,0,0,1,1340,0,0,0,0,0,1,0,0,0,0,0,14,0,0,914484,52,1427,0,10,0,0,0,0,0,152,0,0,0,0,0,10,69,245240,0,0,9,0,0,2,18,0,436,55,11,1,0,2,0,1308,0,4,37,0,17643,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,238887,0,111,0,0,0,6,9,635,4749,238867,0,0,0,0,1,0,4,0,0,0,0,0,0,3507,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,1,0,111,20,1021,9,0,0,1221,0,394,0,0,0,1015,37,0,0,0,0,0,0,0,0,0,1227,1,0,0,0,11,0,0,0,0,2,804,159,0,0,94,0,2,0,0,0,6261,1,0,2646,68,0,1,1,1,0,0,0,12,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,4,0,0,0,68,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,27,0,0,0,0,1,61,426,0,11,14,0,0,0,0,0,157,1,0,0,0,0,0,0,0,0,0,0,0,3,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,6,4062,207,5 +10,0,0,3,0,31,2,0,18,7,3,0,0,0,12,0,15,0,7,3,0,0,0,11,0,0,0,0,0,0,1,0,0,0,19,0,31,6,0,0,29,0,0,0,1,0,0,1,0,0,0,0,0,191,0,2,0,0,0,1,0,0,0,0,0,12,0,0,1133,31,108,0,1,0,0,0,0,0,19,0,0,0,0,0,13,15,176,0,0,19,0,0,0,0,0,31,0,2,0,0,2,0,37,0,10,0,0,1102,0,0,4,0,0,0,2,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,12,1,1,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,6,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,177,0,104,0,0,0,0,3,88,278,230,0,0,0,0,1,0,0,0,0,0,0,0,0,569,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,10,13,168,3,0,0,268,0,973,0,0,0,191,18,0,0,0,0,0,0,0,0,0,57,1,0,0,0,14,0,0,0,0,0,117,112,0,0,0,0,0,0,0,0,229,0,0,27,0,0,1,0,1,0,0,0,2,0,1,0,0,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,0,0,0,0,0,1,50,364,0,1,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,196,58,5 +1,0,0,6,1,41,33,1,66,2,8,0,0,9,6,0,809,0,9,2,0,0,0,7,0,10,0,0,6,0,1,0,0,1,5,9368,42,54,0,0,60,0,0,0,1,0,0,5,0,0,0,0,1,563,0,0,0,0,0,1,0,0,0,4,0,2,0,0,27305,41,915,0,4,0,0,0,0,0,27,0,0,0,0,0,8,35,4565,0,1,5,1,0,1,0,0,307,30,7,0,0,4,1,828,0,1,18,0,2765,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,2710,0,82,0,0,0,2,5,406,640,2708,0,0,0,0,1,0,6,0,0,0,0,0,0,449,0,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,1,0,220,28,432,7,0,0,438,0,483,0,1,0,170,11,0,0,0,0,0,0,0,0,0,940,1,0,0,0,9,0,0,0,0,2,164,28,0,0,19,0,0,0,0,0,2881,1,0,133,7,0,1,1,0,0,0,0,10,0,0,0,1,0,0,0,0,0,2,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,48,1,1,1,0,9,0,0,0,0,9,47,117,0,5,12,0,0,0,0,0,123,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,6,1125,65,5 +0,0,0,0,0,8,2,0,3,0,1,0,0,0,2,0,8,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,27,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,13,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,14,0,15,0,0,0,0,3,21,4,28,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,0,0,0,32,0,74,0,0,0,2,1,0,0,0,0,0,0,0,0,0,22,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,8,5 +1,0,0,10,0,49,77,0,135,18,39,0,0,6,25,0,697,0,7,4,0,0,0,9,0,13,6,0,12,0,2,0,0,0,11,904,49,32,9,0,250,0,0,0,1,0,0,3,0,0,0,0,4,333,0,1,0,0,0,1,0,0,2,3,0,28,0,0,21989,49,1001,0,10,0,0,0,0,0,25,0,0,0,0,1,10,80,5609,0,0,11,0,0,2,93,0,969,165,6,0,0,2,0,1213,0,18,26,0,2635,0,0,0,0,12,0,1,0,0,0,0,1,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,12,12,12,0,0,0,2843,0,82,0,0,0,8,30,461,1981,2821,0,0,0,0,1,0,3,0,0,0,0,0,0,1985,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,84,39,345,13,0,0,385,0,744,0,0,0,221,35,0,0,0,0,0,0,0,0,0,986,1,0,0,0,13,0,0,0,0,4,155,214,0,0,378,0,0,0,0,2,2776,1,0,1458,12,0,1,1,0,0,0,0,4,0,1,0,7,0,0,0,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,12,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,1,1,1,0,43,0,0,0,0,1,60,252,0,19,14,0,0,0,0,0,296,3,0,0,0,0,0,0,0,0,0,0,0,3,0,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1442,139,5 +4,0,0,14,0,49,21,0,67,10,8,0,1,3,29,0,55,0,7,7,0,0,0,3,2,5,12,0,14,0,1,0,0,0,21,0,49,153,29,0,142,0,0,0,1,0,0,6,0,0,0,0,7,257,0,0,0,0,0,1,0,0,0,0,0,14,0,0,1856,49,217,0,15,0,0,0,0,0,24,0,0,0,0,0,4,12,157,0,0,21,0,0,1,24,0,265,15,11,0,0,2,0,311,0,8,0,4,1815,0,0,2,0,22,0,5,0,0,0,0,1,0,0,0,14,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,209,0,107,0,0,0,14,59,111,461,213,0,0,0,0,1,0,4,0,0,0,0,0,0,694,0,0,0,0,0,0,0,0,0,2,0,0,6,0,4,0,0,0,0,0,2,13,26,312,20,0,0,332,0,1110,0,0,0,200,79,0,0,0,0,0,0,0,0,0,191,1,0,0,0,12,0,0,0,0,7,156,157,0,0,69,0,0,0,0,1,414,0,0,125,0,0,1,17,1,0,0,0,7,0,0,0,1,0,0,0,0,0,8,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,57,0,0,0,0,1,70,316,0,32,0,0,0,0,0,0,141,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,17,0,0,0,0,0,0,0,0,0,0,0,0,1,435,98,5 +0,0,0,4,0,10,2,0,14,0,7,0,0,0,3,0,15,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,10,6,0,0,18,0,0,0,1,0,0,1,0,0,0,0,0,70,0,0,0,0,0,1,0,0,0,0,0,5,0,0,147,10,41,0,1,0,0,0,0,0,5,0,0,0,0,0,1,3,23,0,0,2,0,0,1,6,0,65,15,2,0,0,2,0,36,0,1,0,0,72,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,30,0,28,0,0,0,0,3,24,43,44,0,0,0,0,1,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,68,4,0,0,115,0,126,0,0,0,60,2,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,95,57,0,0,29,0,0,0,0,0,26,0,0,12,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,1,1,1,0,0,0,0,0,0,1,12,121,0,1,0,0,0,0,0,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,7,5 +0,0,0,7,0,12,2,0,13,0,3,0,0,0,3,0,19,0,7,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,12,6,0,0,38,0,0,0,1,0,0,5,0,0,0,0,0,76,0,0,0,0,0,1,0,0,0,0,0,3,0,0,526,12,58,0,1,0,0,0,0,0,17,0,0,0,0,0,2,8,104,0,0,3,0,0,0,0,0,16,0,10,0,0,2,0,19,0,1,0,0,147,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,106,0,48,0,0,0,0,3,29,8,118,0,0,0,0,1,0,0,0,0,0,0,0,0,366,0,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,30,106,10,0,0,118,0,412,0,0,0,42,2,0,0,0,0,0,0,0,0,0,47,1,0,0,0,3,0,0,0,0,0,94,17,0,0,0,0,0,0,0,0,53,0,0,100,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,15,82,0,1,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,33,5 +0,0,0,12,0,28,371,0,383,45,37,0,1,2,55,0,72,0,7,6,0,0,0,3,2,3,21,0,13,0,2,0,0,0,8,0,28,142,18,0,725,0,0,0,1,0,0,6,0,0,0,0,7,364,0,0,0,0,0,1,0,0,0,1,0,38,0,0,3490,28,987,0,15,0,0,0,0,0,23,0,0,0,0,0,4,15,226,0,0,8,0,0,3,321,0,2472,135,7,0,0,2,0,1852,0,33,0,5,1466,0,0,0,0,47,0,3,0,0,0,0,1,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,280,0,109,0,0,0,14,60,80,2595,328,0,0,0,0,1,0,2,0,0,0,0,0,0,2239,0,0,0,0,0,0,0,0,0,0,0,0,6,0,6,0,0,0,0,0,0,12,62,340,13,0,0,703,0,594,0,0,0,597,88,0,0,0,0,0,0,3,0,0,928,1,0,0,0,11,0,0,0,0,5,156,806,0,0,566,0,0,0,0,0,372,0,0,145,0,0,1,39,1,0,0,0,12,0,0,0,4,0,0,0,0,0,46,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,39,1,1,1,0,44,0,0,0,0,1,36,473,0,39,0,0,0,0,0,0,747,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,51,44,0,0,0,0,0,0,0,0,0,0,0,0,3,496,115,5 +2,0,0,23,2,55,124,2,269,38,38,0,0,0,96,0,154,0,32,5,0,0,0,7,7,5,12,0,23,0,2,0,0,2,27,0,57,102,41,0,330,0,0,0,1,0,0,6,0,0,0,0,12,245,0,0,0,0,0,1,0,0,0,10,0,66,0,0,2207,55,697,0,25,0,0,0,0,0,17,0,0,0,0,0,7,17,247,0,2,27,2,0,5,112,0,1083,140,9,0,0,6,2,848,0,33,0,0,2286,0,2,0,0,61,0,6,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,44,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,262,0,187,0,0,0,24,107,176,931,268,0,0,0,0,1,0,0,0,0,0,0,0,0,1149,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,218,73,744,63,0,0,647,0,1376,0,2,0,293,188,0,0,0,0,0,0,0,0,0,713,1,0,0,0,19,0,0,0,0,12,196,259,0,0,369,0,0,0,1,0,863,0,0,83,0,0,1,0,0,0,0,0,14,0,0,0,4,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,123,1,1,1,0,120,0,0,0,0,17,84,126,0,42,0,0,0,0,0,0,456,7,0,0,0,0,0,0,0,0,0,0,0,2,0,1,42,0,0,0,0,0,0,0,0,0,0,0,2,0,4,703,166,5 +0,0,0,5,0,50,5,0,24,4,3,0,0,2,12,0,36,0,7,5,0,0,0,6,0,1832,9,0,4,0,1,0,0,0,6,0,50,6,12617,0,80,0,0,0,1,0,0,1,0,0,0,0,3,128,0,0,0,0,0,1,0,0,0,2,0,8,0,0,21788,50,1896,0,1826,0,0,0,0,0,9,0,0,0,0,0,9,16,2032,0,0,6,0,0,0,0,0,3737,5,2,0,0,2,0,104,0,4,0,0,619,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,8,10,10,10,0,0,0,1925,0,44,0,0,0,2,36,163,34,1926,0,0,0,0,1,0,3,0,0,0,0,0,0,5829,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,32,19,240,11,0,0,298,0,521,0,0,0,143,9016,0,0,0,0,0,0,0,0,0,89,2,0,0,0,11,0,0,0,0,2,161,67,0,0,0,0,1,0,0,0,1865,0,0,7094,3,0,1,1,1,0,0,0,2,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,3,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,13,0,0,0,0,1,56,282,0,1837,9,0,0,0,0,0,47,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2069,56,5 +1,0,0,0,0,41,21,0,86,1,17,0,0,0,5,0,13,0,7,1,0,0,0,2,0,0,0,0,5,0,1,0,0,0,26,0,41,6,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,1,0,0,0,14,0,16,0,0,634,41,148,0,6,0,0,0,0,0,0,0,0,0,0,0,2,2,23,0,0,26,0,0,1,80,0,604,5,0,0,0,2,0,422,0,1,0,0,6040,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,52,0,55,0,0,0,0,3,66,533,52,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,144,1,0,0,149,0,290,0,0,0,98,33,0,0,0,0,0,0,0,0,0,149,0,0,0,0,3,0,0,0,0,1,123,216,0,0,27,0,0,0,6,0,31,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,5,0,0,0,0,1,67,26,0,6,0,0,0,0,0,0,210,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,15,5 +2,0,0,14,1,55,44,1,125,45,26,0,0,9,57,0,180,0,9,8,0,0,0,7,0,15,27,0,19,0,5,1,0,1,12,5454,56,54,21,0,281,0,0,0,1,0,0,1,0,0,0,0,10,571,0,0,0,0,0,1,0,0,0,22,0,62,0,0,31890,55,436,0,22,0,0,0,0,0,18,0,0,0,0,0,9,34,3217,0,1,12,1,0,2,53,0,771,70,1,0,0,4,1,676,0,48,21,0,3271,0,0,0,0,31,2,1,0,0,0,0,1,1,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,16,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,19,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,12,12,12,0,0,0,2075,0,96,0,0,0,20,94,428,6108,2164,0,0,0,0,1,0,4,0,0,0,0,0,0,7933,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,218,79,685,18,0,0,566,0,1568,0,1,0,276,44,0,0,0,0,0,0,0,0,0,450,1,0,0,0,15,0,0,0,0,11,183,1173,0,0,419,0,1,0,0,0,2671,1,0,7125,8,0,1,1,1,0,0,0,2,0,0,0,60,0,0,0,0,0,47,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,63,1,1,1,0,72,0,0,0,0,9,68,409,0,55,12,0,0,0,0,0,305,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,53,0,0,0,1,0,0,0,0,0,0,0,1,0,2,3004,153,5 +2,0,0,10,1,63,48,1,103,2,21,0,0,9,17,0,172,0,77,4,0,0,0,8,0,14,24,0,21,0,4,6,0,1,17,9746,64,84,11,0,139,0,0,0,1,0,0,10,0,0,0,0,15,652,0,0,0,0,0,1,0,0,0,4,0,12,0,0,44482,63,503,0,31,0,0,0,0,0,52,0,0,0,0,0,9,44,9636,0,1,17,1,0,3,36,0,676,80,17,1,0,4,1,502,0,2,23,0,5790,0,0,0,0,18,2,4,0,1,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,13,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,12,12,12,0,0,0,7779,0,175,0,0,0,29,71,483,1157,7740,0,0,0,0,1,0,7,0,0,0,0,0,0,4259,0,0,0,0,0,0,0,0,0,0,0,0,9,3,4,0,0,0,0,1,0,222,29,558,11,0,0,633,0,727,0,1,0,314,74,0,0,0,0,0,0,7,0,0,447,1,0,0,0,12,0,0,0,0,10,184,198,0,0,146,0,0,0,0,0,2171,1,0,3436,9,0,1,1,0,0,0,0,20,0,0,0,3,0,0,0,0,0,3,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,9,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,1,98,1,1,1,0,83,0,0,0,0,9,81,496,0,57,12,0,0,0,0,0,229,2,0,0,0,0,0,0,0,0,0,0,0,3,0,1,10,0,0,0,0,0,0,0,0,0,0,0,1,0,5,1941,195,5 +0,0,0,20,1,65,56,1,316,19,37,1,1,3,77,0,250,0,9,6,0,0,0,4,4,4,12,0,18,0,2,0,0,1,33,0,66,737,29,0,742,0,0,0,1,0,0,13,0,0,0,0,10,455,0,8,0,0,0,1,0,0,0,0,0,60,0,0,4508,65,663,0,20,0,0,0,0,1,52,0,0,0,0,1,4,19,467,0,1,33,1,0,5,81,0,805,125,22,0,0,4,1,696,0,14,0,6,5811,0,0,0,0,5,0,10,0,0,0,0,1,0,0,0,156,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,480,0,211,0,0,0,20,65,140,906,597,0,0,0,0,1,0,2,0,2,7,0,0,0,1356,0,0,0,0,0,0,0,0,0,0,0,0,13,0,12,0,0,0,0,0,0,156,49,674,150,0,0,1073,0,3848,0,1,0,799,125,0,0,0,0,0,0,5,0,0,750,1,0,0,0,14,0,0,0,0,9,297,500,0,0,328,0,0,0,0,2,1185,0,0,342,0,0,1,0,0,0,0,0,27,0,0,0,1,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,84,1,1,1,0,46,0,0,0,0,9,99,748,0,36,0,0,0,0,0,0,838,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,25,0,0,0,0,0,0,0,0,0,0,0,1,0,5,1318,371,5 +4,0,0,38,0,45,11,0,61,28,14,0,0,0,39,0,33,0,15,5,0,0,0,1,0,1,6,0,15,0,3,0,0,0,23,0,45,6,4,0,183,0,0,0,1,0,0,6,1,0,0,0,3,196,0,1,0,0,0,1,0,0,0,43,0,49,0,0,3398,45,210,0,18,0,0,0,0,0,21,0,0,0,0,0,4,13,410,0,0,23,0,0,2,16,0,193,30,11,2,0,2,0,222,0,36,0,0,1877,0,0,0,0,18,2,0,0,0,0,0,1,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,348,0,120,0,0,0,6,17,88,380,354,0,0,0,0,1,0,0,0,0,0,0,0,0,1275,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,12,87,246,32,0,0,248,0,2545,0,0,0,147,41,0,0,0,0,0,0,5,0,0,173,1,0,4,0,6,0,0,0,0,3,137,86,0,0,112,0,0,0,0,0,582,0,0,630,0,0,1,0,0,0,0,0,18,0,1,0,5,0,0,0,0,0,28,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,26,0,1,0,0,1,68,169,0,25,0,0,1,0,0,0,140,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,32,0,0,0,0,0,1,0,0,0,0,0,0,0,5,474,68,5 +0,0,0,2,0,8,2,0,7,0,2,0,0,0,2,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,0,0,0,0,0,36,0,0,0,0,0,1,0,0,0,0,0,1,0,0,195,8,28,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,20,0,0,0,0,0,0,0,0,7,0,1,0,0,2,0,6,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,27,0,31,0,0,0,0,3,22,5,41,0,0,0,0,1,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,84,2,0,0,98,0,121,0,0,0,48,5,0,0,0,0,0,0,0,0,0,33,1,0,0,0,2,0,0,0,0,0,95,36,0,0,0,0,0,0,0,0,25,0,0,8,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,80,0,1,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,16,5 +0,0,0,15,1,45,29,1,67,19,12,0,1,1,43,0,106,0,9,7,0,0,0,2,1,5,18,0,12,0,1,0,0,1,24,0,46,430,19,0,190,0,0,0,0,0,0,0,0,0,0,0,6,176,0,0,0,0,0,1,0,0,0,0,1,34,0,0,3043,45,234,0,13,0,0,0,0,0,0,0,0,0,0,0,3,3,800,0,1,24,1,0,2,9,0,185,20,0,0,0,4,1,305,0,30,0,2,3712,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,461,0,54,0,0,0,12,55,91,245,475,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,48,390,17,0,0,330,0,1915,0,1,0,140,92,0,0,0,0,0,0,0,0,0,268,0,0,0,0,10,0,0,0,0,5,164,27,0,0,38,0,0,0,0,0,832,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,24,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,55,1,1,1,0,46,0,0,0,0,9,70,25,0,36,0,0,0,0,0,0,148,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,23,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2081,86,5 +0,0,0,8,0,28,26,0,86,6,26,0,0,0,14,0,30,0,7,4,0,0,0,2,0,4,6,0,3,0,1,0,0,0,11,0,28,6,6,0,171,0,0,0,1,0,0,2,0,0,0,0,3,118,0,1,0,0,0,1,0,0,0,0,0,26,0,0,10312,28,191,0,6,0,0,0,0,0,9,0,0,0,0,0,3,6,843,0,0,11,0,0,3,72,0,600,75,5,0,0,2,0,401,0,10,0,0,766,0,0,0,0,9,0,2,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,0,877,0,63,0,0,0,5,20,71,649,872,0,0,0,0,1,0,1,0,0,0,0,0,0,3607,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,13,179,10,0,0,230,0,798,0,0,0,148,56,0,0,0,0,0,0,0,0,0,189,1,0,0,0,6,0,0,0,0,4,116,225,0,0,193,0,0,0,0,0,870,0,0,3207,0,0,1,0,1,0,0,0,3,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,12,0,0,0,0,1,39,201,0,14,0,0,0,0,0,0,209,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,67,5 +3,0,0,35,1,99,51,4,173,49,40,1,0,2,159,0,59,0,7,6,0,1,1,7,4,13,6,0,20,0,1,0,0,1,52,0,100,6,7,0,434,0,0,0,1,0,0,1,0,0,0,0,7,760,0,0,0,0,0,1,0,0,0,0,0,86,0,0,13662,99,483,0,21,0,0,0,0,0,10,3,0,0,0,0,10,67,1877,0,4,52,1,0,1,47,0,651,105,1,0,0,2,1,571,1,69,6,0,2432,0,0,0,0,19,1,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,26,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,12,12,12,0,0,0,1628,0,124,0,0,0,9,29,293,2651,1608,0,0,0,0,1,0,2,0,0,0,0,0,0,2991,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,38,113,490,221,0,0,478,0,1282,0,0,0,248,18,0,0,0,0,0,0,0,0,0,492,1,0,0,0,19,0,0,0,0,5,188,105,0,0,280,0,4,0,0,3,1892,0,0,2499,3,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,64,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,113,1,1,1,0,15,0,0,0,6,20,154,917,0,31,9,0,0,0,0,0,263,5,0,0,0,0,0,0,0,1,29,0,0,2,2,1,67,0,0,0,0,0,0,0,0,0,0,0,2,0,2,1871,195,5 +0,0,0,6,0,36,10,0,35,2,5,0,0,12,2,0,118,0,7,3,0,0,0,8,0,11,0,0,4,0,1,0,0,0,1,28889,36,6,0,0,110,0,0,0,1,0,0,1,0,0,0,0,1,1307,0,0,0,0,0,1,0,0,0,0,0,3,0,0,218209,36,187,0,1,0,0,0,0,0,18,0,0,0,0,0,10,21,35003,0,0,1,0,0,0,0,0,435,46,2,0,0,2,0,277,0,0,0,0,2463,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,12,12,0,0,0,33273,0,42,0,0,0,0,3,280,322,33260,0,0,0,0,1,0,3,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,237,12,444,6,0,0,457,0,224,0,0,0,285,10,0,0,0,0,0,0,0,0,0,189,1,0,0,0,11,0,0,0,0,0,333,13,0,0,0,0,0,0,0,0,1360,1,0,12,15,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,40,1,1,1,0,0,0,0,0,0,1,37,60,0,2,14,0,0,0,0,0,149,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1087,26,5 +0,0,0,9,0,35,14,0,54,3,14,0,0,2,9,0,26,0,7,2,0,0,0,6,1,8,3,0,5,0,2,0,0,0,9,0,35,6,4,0,111,0,0,0,1,0,0,4,1,0,0,0,3,175,0,0,0,0,0,1,0,0,0,0,0,17,0,0,1689,35,146,0,5,0,0,0,0,0,23,0,0,0,0,0,7,19,276,0,0,9,0,0,1,36,0,371,20,9,1,0,2,0,236,0,6,0,0,975,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,10,10,0,0,0,196,0,83,0,0,0,4,13,196,420,198,0,0,0,0,1,0,5,0,0,0,0,0,0,498,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,32,20,187,8,0,0,227,0,368,0,0,0,107,26,0,0,0,0,0,0,0,0,0,126,1,0,4,0,9,0,0,0,0,2,136,144,0,0,42,0,0,0,0,0,170,0,0,142,3,0,1,1,0,0,0,0,12,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,37,1,1,1,0,6,0,0,0,0,1,44,217,0,9,9,0,0,0,0,0,147,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,4,288,53,5 +5,0,0,22,1,126,100,1,1050,122,373,0,1,0,178,0,187,0,64,11,0,0,0,13,3,10,30,0,22,0,12,2,0,1,55,0,127,224,12,0,1998,0,0,0,1,0,0,2,4,0,0,0,18,352,1,2,0,0,0,1,0,0,0,0,0,166,0,0,112017,126,1997,0,34,0,0,1,0,0,32,0,0,0,0,0,22,31,936,0,1,55,1,0,8,992,0,9686,1725,10,1,0,4,1,4844,0,138,2,0,4617,0,0,0,0,13,2,50,0,2,0,0,1,0,2,0,114,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,24,0,0,0,0,0,0,0,1,0,2,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,86,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,36,1,0,0,0,1,1,0,56,10,10,10,0,0,0,736,0,392,0,0,0,34,90,534,10227,844,0,0,4,29,1,0,2,0,0,0,0,0,0,9596,0,0,0,0,0,0,0,0,0,2,0,0,2,1,0,0,0,0,0,3,0,128,173,1139,27,0,0,1070,0,2280,0,1,0,704,1015,0,18,0,0,0,0,0,0,0,1953,1,0,10,0,27,0,0,0,0,18,375,2291,0,0,3933,0,52,0,1,1,2189,0,0,273,3,0,1,48,0,0,0,0,13,0,0,0,3,0,0,0,0,0,126,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,27,4,0,0,0,0,3,23,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,156,1,1,1,0,88,0,0,0,0,9,182,763,0,67,9,0,0,0,0,0,2148,5,0,0,1,0,0,0,0,0,0,0,0,2,0,1,136,43,0,0,0,0,0,0,0,0,0,0,1,0,1,5202,1020,5 +6,0,0,15,0,75,144,0,279,53,81,0,1,4,82,0,100,0,20,8,0,0,0,7,3,8,30,0,20,0,2,1,0,0,23,0,75,216,43,0,580,0,0,0,1,0,0,2,0,0,0,0,11,346,0,0,0,0,0,1,0,0,2,13,0,72,0,0,5918,75,738,0,23,0,0,0,0,0,10,0,0,0,0,0,8,11,279,0,0,23,0,0,8,203,0,1831,345,4,0,0,2,0,1298,0,57,0,5,3473,0,0,1,0,73,0,1,0,0,0,0,1,0,0,0,26,7,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,2,0,0,0,0,0,0,0,0,0,8,0,0,0,0,48,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,92,0,0,0,0,0,0,726,0,133,0,0,0,22,113,188,3133,375,0,0,0,0,1,0,0,0,0,0,0,0,0,1730,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,73,596,16,0,0,561,0,863,0,0,0,362,160,0,0,0,0,0,0,0,0,0,711,1,0,0,0,18,0,0,0,0,10,225,426,0,0,855,0,0,0,1,2,9731,0,0,418,0,0,1,0,0,0,0,0,3,0,4,0,6,0,0,0,0,0,55,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,111,1,1,1,0,114,0,0,0,0,1,98,335,0,61,0,0,0,0,0,0,541,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,67,0,0,0,0,0,0,0,0,0,0,0,0,0,1,554,156,5 +0,0,0,13,1,25,949,1,3968,5,1501,0,1,2,23,0,93,0,9,3,0,0,0,1,1,2,9,0,6,0,1,0,0,1,10,0,26,182,9,0,4880,0,0,0,1,0,0,2,0,0,0,0,3,248,0,0,0,0,0,1,0,0,0,0,0,11,0,0,3023,25,6520,0,7,0,0,0,0,0,7,0,0,0,0,0,1,5,60,0,1,10,1,0,2,3910,0,30443,7470,2,0,0,4,1,15251,0,7,5,3,931,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,802,0,60,0,0,0,6,28,59,13720,102,0,0,0,0,1,0,0,0,0,0,0,0,0,3918,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,130,27,428,15,0,0,1306,0,990,0,1,0,1095,52,0,0,0,0,0,0,0,0,0,6546,1,0,0,0,5,0,0,0,0,4,201,6383,0,0,22484,0,0,0,0,0,434,0,0,31,0,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,31,1,1,1,0,14,0,0,0,0,9,36,237,0,18,0,0,0,0,0,0,6407,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7,0,0,0,0,0,0,0,0,0,0,0,1,0,3,334,111,5 +0,0,0,7,0,17,3,0,7,0,3,0,0,0,3,0,16,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,3,0,17,41,0,0,15,0,0,0,1,0,0,1,0,0,0,0,0,55,0,0,0,0,0,1,0,2,0,0,0,4,0,0,272,17,32,0,1,0,0,0,0,0,4,0,0,0,0,0,1,3,20,0,0,3,0,0,0,0,0,7,0,1,0,0,2,0,19,0,1,0,0,238,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,26,0,38,0,0,0,0,3,35,5,40,0,0,0,0,1,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,4,117,7,0,0,147,0,356,0,0,0,79,10,0,0,0,0,0,0,0,0,0,39,1,0,0,0,2,0,0,0,0,0,99,63,0,0,0,0,0,0,0,0,60,0,0,8,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,19,1,1,1,0,0,0,0,0,0,1,20,175,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,41,5 +0,0,0,12,0,13,3,0,8,4,3,0,1,0,10,0,17,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,5,0,13,9,0,0,29,0,1,0,1,0,0,2,0,0,0,0,0,34,0,0,0,0,0,1,0,0,0,0,0,7,0,0,1141,13,53,0,1,0,0,0,0,0,10,0,0,0,0,0,1,8,507,0,0,5,0,0,0,0,0,14,0,3,0,0,2,0,30,0,5,0,0,161,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0,75,0,47,0,0,0,0,3,32,7,93,0,0,0,0,1,0,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,8,95,21,0,0,88,0,153,0,0,0,33,4,0,0,0,0,0,0,0,0,0,49,1,0,0,0,2,0,0,0,0,0,96,8,0,0,0,0,0,2,0,0,231,0,0,766,0,0,1,0,1,0,0,0,7,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,361,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,18,78,0,1,0,0,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,306,20,5 +0,0,0,2,0,8,2,0,3,0,2,0,0,0,2,0,8,0,6,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,1,0,0,16,8,18,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,5,0,0,0,0,2,0,6,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,8,0,15,0,0,0,0,3,21,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,29,2,0,0,32,0,35,0,0,0,2,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,2,0,0,0,0,0,90,1,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,3,5 +1,0,0,10,0,47,7,0,44,24,6,0,0,2,40,0,58,0,7,6,0,0,0,2,1,8,15,0,18,0,9,0,0,0,28,0,47,73,20,0,200,0,0,0,1,0,0,2,0,0,0,0,13,207,0,0,0,0,0,1,0,0,0,14,0,19,0,0,1555,47,208,0,23,0,0,0,0,0,11,0,0,0,0,0,3,6,167,0,0,28,0,0,0,0,0,72,0,2,0,0,2,0,244,0,15,0,2,1671,0,0,0,0,28,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,184,0,105,0,0,0,18,59,95,161,209,0,0,0,0,1,0,0,0,0,0,0,0,0,539,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,40,514,19,0,0,411,0,803,0,0,0,291,66,0,0,0,0,0,0,0,0,0,164,1,0,0,0,9,0,0,0,0,5,180,172,0,0,0,0,2,0,4,7,425,0,0,44,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,19,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,60,1,1,1,0,74,0,0,0,0,1,75,219,0,50,0,0,0,0,0,0,102,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,2,445,131,5 +1,0,0,13,0,37,10,0,80,43,21,0,1,3,60,0,56,0,7,4,0,0,0,3,1,3,12,0,8,0,1,0,0,0,21,0,37,85,17,0,290,0,0,0,1,0,0,2,0,0,0,0,4,157,0,0,0,0,0,1,0,0,0,0,0,48,0,0,1458,37,262,0,9,0,0,0,0,0,11,0,0,0,0,0,3,6,148,0,0,21,0,0,3,36,0,382,55,4,0,0,2,0,432,0,40,0,4,1595,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,157,0,109,0,0,0,8,56,78,654,183,0,0,0,0,1,0,0,0,0,0,0,0,0,472,0,0,0,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,0,14,57,255,14,0,0,212,0,346,0,0,0,135,60,0,0,0,0,0,0,3,0,0,238,1,0,0,0,8,0,0,0,0,5,137,106,0,0,124,0,0,0,0,0,317,0,0,118,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,36,0,0,0,0,1,58,145,0,24,0,0,0,0,0,0,209,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,49,0,0,0,0,0,0,0,0,0,0,0,0,0,2,390,54,5 +6,0,0,15,1,53,42,1,167,18,19,0,1,13,32,0,1102,0,9,5,0,0,0,7,1,12,12,0,18,0,5,0,0,1,9,9429,54,143,16,0,251,0,0,0,1,0,0,3,0,0,0,0,9,640,0,0,0,0,0,1,0,0,0,9,0,10,0,0,45832,53,1378,0,20,0,0,0,0,0,27,0,0,0,0,0,8,35,7370,0,1,9,1,0,2,40,0,661,55,5,0,0,4,1,1477,0,5,31,5,3343,0,0,0,0,11,6,3,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,17,0,1,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,12,12,12,0,0,0,5491,0,81,0,0,0,18,47,456,1097,5494,0,0,0,0,1,0,7,0,0,0,0,0,0,563,0,0,0,0,0,0,0,0,0,0,0,0,3,7,0,0,0,0,0,1,0,223,49,500,17,0,0,545,0,1025,0,1,0,245,36,0,0,0,0,0,0,0,0,0,1385,1,0,0,0,13,0,0,0,0,6,186,331,0,0,78,0,0,0,0,0,3716,1,0,100,9,0,1,1,0,0,0,0,6,0,0,0,1,0,0,0,0,0,19,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,72,1,1,1,0,49,0,0,0,0,9,63,249,0,35,12,0,0,0,0,0,236,5,0,0,0,0,0,0,0,0,0,0,0,3,0,1,26,0,0,0,0,0,0,0,0,0,0,0,1,0,3,1724,121,5 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5 +2,0,0,16,1,18,27,1,50,13,13,0,0,0,20,0,75,0,9,2,0,0,0,1,0,0,3,0,1,0,1,1,0,1,6,0,19,127,0,0,70,0,0,0,1,0,0,3,0,0,0,0,1,175,0,0,0,0,0,1,0,0,0,0,0,22,0,0,16013,18,168,0,3,0,0,0,0,0,13,0,0,0,0,0,2,6,1365,0,1,6,1,0,2,15,0,182,25,4,0,0,4,1,155,0,17,0,0,1025,0,0,0,0,3,2,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1346,0,101,0,0,0,2,8,85,17423,1358,0,0,0,0,1,0,0,0,0,0,0,0,0,5031,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,123,38,413,22,0,0,298,0,1002,0,1,0,118,76,0,0,0,0,0,0,0,0,0,194,1,0,0,0,3,0,0,0,0,2,124,72,0,0,103,0,0,0,0,0,2096,0,0,5400,0,0,1,0,0,0,0,0,6,0,0,0,2,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,61,1,1,1,0,4,0,0,0,0,9,25,115,0,6,0,0,0,0,0,0,104,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,15,0,0,0,0,0,0,0,0,0,0,0,1,0,3,1610,653,5 +1,0,0,5,0,44,9,0,31,29,11,0,0,2,34,0,31,0,7,5,0,0,0,6,0,9,6,0,6,0,1,0,0,0,12,0,44,6,7,0,147,0,0,0,1,0,0,5,0,0,0,0,3,230,0,0,0,0,0,1,0,0,0,0,0,37,0,0,3319,44,148,0,5,0,0,0,0,0,24,0,0,0,0,0,8,19,332,0,0,12,0,0,1,17,0,251,35,8,0,0,2,0,202,0,32,0,0,961,0,0,0,0,5,0,5,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,10,10,0,0,0,309,0,107,0,0,0,4,20,208,225,305,0,0,0,0,1,0,4,0,0,0,0,0,0,1026,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,1,0,32,42,253,5,0,0,345,0,992,0,0,0,225,21,0,0,0,0,0,0,0,0,0,125,1,0,0,0,11,0,0,0,0,3,128,199,0,0,62,0,0,0,0,0,263,0,0,559,3,0,1,1,0,0,0,0,12,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,48,1,1,1,0,13,0,0,0,0,1,56,383,0,13,9,0,0,0,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,35,0,0,0,0,0,0,0,0,0,0,0,0,0,3,422,75,5 +0,0,0,3,0,12,2,0,7,62,3,0,0,0,65,0,14,0,7,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,12,6,0,0,133,0,0,0,1,0,0,2,0,0,0,0,0,55,0,0,0,0,0,1,0,0,0,0,0,65,0,0,2714,12,95,0,1,0,0,0,0,0,7,0,0,0,0,0,1,4,226,0,0,1,0,0,0,0,0,8,0,1,0,0,2,0,133,0,63,0,0,426,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,241,0,36,0,0,0,0,3,33,6,254,0,0,0,0,1,0,0,0,0,0,0,0,0,800,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,71,884,3,0,0,885,0,752,0,0,0,823,10,0,0,0,0,0,0,0,0,0,98,1,0,0,0,2,0,0,0,0,0,860,47,0,0,0,0,0,0,0,0,230,0,0,838,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,62,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,1,1,1,0,0,0,0,0,0,1,13,118,0,1,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,62,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1709,64,5 +0,0,0,22,6,52,192,24,1446,23,122,0,0,0,59,0,3510,0,7,14,0,6,6,3,3,1,6,0,10,0,2,1,0,6,24,0,58,116,34,0,907,0,0,0,1,0,0,2,0,0,0,0,6,267,0,0,0,0,0,1,0,0,0,0,0,46,0,0,3432,52,5816,0,13,0,0,0,0,0,11,18,0,0,0,0,3,7,363,0,24,24,6,0,4,488,0,4159,530,3,0,0,2,6,5796,0,34,0,0,1733,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1764,0,0,0,0,0,0,354,0,232,0,0,0,12,23,134,1840,497,0,0,0,0,1,0,0,0,0,0,0,0,0,1950,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,16,42,492,56,0,0,716,0,1338,0,0,0,444,73,0,96,0,0,0,0,0,0,0,5336,1,0,0,0,32,0,0,0,0,4,138,999,0,0,1582,0,0,0,0,1,5875,0,0,84,0,0,1,172,1,0,0,0,5,0,0,0,3,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,77,1,1,1,0,27,0,0,0,0,49,82,375,0,20,0,0,1,0,0,0,981,19,0,0,0,0,0,0,0,0,0,0,0,6,0,1,29,171,0,0,0,0,0,0,0,0,0,0,12,0,2,1261,79,5 +2,0,0,15,0,62,151,0,240,66,46,0,1,2,91,0,101,0,7,11,0,0,0,3,7,14,30,0,27,0,1,0,0,0,37,0,62,172,61,0,502,0,0,0,1,0,0,3,0,0,0,0,17,424,0,0,0,0,0,1,0,0,0,4,0,80,0,0,4777,62,698,0,29,0,0,0,0,1,14,0,0,0,0,0,3,7,262,0,0,37,0,0,4,159,0,1392,175,5,0,0,2,0,1173,0,67,0,4,6342,0,0,0,0,10,0,8,0,0,0,0,1,0,0,0,39,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,349,0,152,0,0,0,34,164,148,1833,327,0,0,0,0,1,0,0,0,0,0,0,0,0,1409,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,12,90,435,16,0,0,599,0,1288,0,0,0,470,323,0,11,0,0,0,0,6,0,0,639,1,0,0,0,21,0,0,0,0,15,170,513,0,0,439,0,0,0,0,1,774,0,0,141,0,0,1,5,0,0,0,0,9,0,0,0,3,0,0,0,0,0,68,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,97,1,1,1,0,118,0,1,0,0,1,99,578,0,72,0,0,1,0,0,0,526,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,72,2,0,0,0,0,0,0,0,0,0,0,0,0,3,584,222,5 +1,0,0,18,0,138,377,0,463,83,171,0,1,13,66,6,2562,0,131,3,0,0,0,10,5,16,33,0,41,0,2,4,0,0,70,28630,138,241,27,0,490,0,0,0,1,0,0,8,0,0,0,0,12,584,0,3,0,0,0,1,0,0,27,1,0,60,0,0,654936,138,4166,0,45,0,0,0,0,0,306,0,0,0,0,0,11,362,105089,0,0,70,0,0,4,201,0,2678,370,14,0,0,2,0,4086,0,52,411,9,73408,0,0,0,0,110,1,28,0,0,0,0,1,0,0,0,133,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,2,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,12,12,12,0,0,0,80268,0,260,0,0,0,35,153,1905,26571,80229,0,0,0,0,1,0,50,1,0,0,0,0,0,4670,0,0,0,0,0,0,0,0,0,0,0,0,8,1,2,0,0,0,0,1,0,140,215,977,19,0,0,1310,0,1370,0,0,0,1067,131,0,0,0,0,0,0,0,0,0,3790,1,0,0,0,18,0,0,0,0,13,296,717,0,0,1706,0,50,0,0,28,19745,1,0,1612,129,0,1,16,0,0,0,0,17,0,6,0,14,0,0,0,0,0,45,0,0,1,0,5,0,2,0,0,0,0,0,0,0,0,14,0,0,0,0,0,129,48,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,248,1,1,1,0,259,0,0,0,0,1,208,735,0,84,12,0,0,0,0,0,691,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,93,4,0,0,0,0,0,0,0,0,0,0,0,0,7,12390,583,5 +0,0,0,0,0,9,5,0,20,0,1,0,3,0,2,0,33,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,9,43,0,0,10,0,0,0,1,0,0,1,1,0,0,0,0,32,0,0,0,0,0,1,0,0,0,0,0,0,0,0,134,9,56,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,15,0,0,1,0,0,3,0,0,16,0,4,0,0,8,0,53,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,22,0,25,0,0,0,0,3,23,5,38,0,0,0,0,1,0,1,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,26,39,111,0,0,0,115,0,486,0,0,0,30,1,0,0,0,0,0,0,0,0,0,70,1,0,2,0,2,0,0,0,0,0,94,9,0,0,0,0,0,0,0,0,77,0,0,12,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,6,1,1,1,0,0,0,0,0,0,1,10,25,0,1,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,38,5 +0,0,0,6,0,27,3,0,24,0,3,0,0,0,7,0,30,0,7,3,0,0,0,3,0,2,6,0,4,0,1,0,0,0,9,0,27,45,7,0,38,0,0,0,1,0,0,2,0,0,0,0,2,110,0,0,0,0,0,1,0,0,0,0,0,7,0,0,2909,27,84,0,5,0,0,0,0,0,11,0,0,0,0,0,3,6,882,0,0,9,0,0,0,0,0,27,0,3,0,0,2,0,78,0,4,0,0,1002,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,518,0,66,0,0,0,4,18,68,178,519,0,0,0,0,1,0,0,0,0,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,7,236,7,0,0,239,0,765,0,0,0,143,19,0,0,0,0,0,0,0,0,0,74,1,0,0,0,6,0,0,0,0,2,143,78,0,0,0,0,0,0,0,0,176,0,0,117,0,0,1,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,12,0,0,0,0,1,36,218,0,13,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,146,47,5 +0,0,0,4,0,17,61,0,185,6,63,0,0,0,10,0,15,0,7,1,0,0,0,4,0,0,0,0,0,0,1,0,0,0,5,0,17,6,0,0,265,0,0,0,1,0,0,2,0,0,0,0,0,60,0,0,0,0,0,1,0,0,0,0,0,12,0,0,1960,17,352,0,1,0,0,0,0,0,10,0,0,0,0,0,4,8,202,0,0,5,0,0,1,179,0,1400,295,3,0,0,2,0,746,0,8,0,0,581,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,209,0,54,0,0,0,0,3,53,531,237,0,0,0,0,1,0,0,0,0,0,0,0,0,969,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,11,105,4,0,0,203,0,358,0,0,0,139,7,0,0,0,0,0,0,0,0,0,341,1,0,0,0,5,0,0,0,0,0,106,349,0,0,849,0,0,0,0,0,156,0,0,509,0,0,1,0,1,0,0,0,3,0,2,0,4,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,22,1,1,1,0,0,0,0,0,0,1,22,147,0,1,0,0,0,0,0,0,344,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,3,232,151,5 +0,0,0,13,0,18,2,0,20,0,3,0,0,0,17,0,46,0,6,1,0,0,0,2,0,0,0,0,0,0,1,0,0,0,3,0,18,6,0,0,16,0,0,0,1,0,0,2,1,0,0,0,0,333,0,0,0,0,0,1,0,0,0,0,0,4,0,0,361,18,81,0,1,0,0,0,0,0,8,0,0,0,0,0,2,5,60,0,0,3,0,0,0,0,0,10,0,6,0,0,2,0,47,0,1,0,0,1008,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,61,0,45,0,0,0,0,3,37,8,71,0,0,0,0,1,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,185,6,133,17,0,0,156,0,3016,0,0,0,53,3,0,0,0,0,0,0,0,0,0,94,1,0,2,0,3,0,0,0,0,0,122,29,0,0,0,0,0,0,0,0,527,0,0,67,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,11,1,1,1,0,0,0,0,0,0,3,21,146,0,1,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1116,16,5 +0,0,0,11,0,56,17,0,80,37,13,0,1,3,73,1,74,0,7,7,0,0,0,3,6,8,21,0,20,0,2,0,0,0,28,0,56,99,39,0,260,0,0,0,1,0,0,1,0,0,0,0,12,192,0,0,0,0,0,1,0,0,0,0,0,63,0,0,3069,56,298,0,22,0,0,0,0,0,6,0,0,0,0,0,4,7,378,0,0,28,0,0,2,28,0,337,40,2,0,0,2,0,465,0,44,0,4,2895,0,0,0,0,4,0,5,0,0,0,0,1,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,31,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,300,0,102,0,0,0,24,94,109,399,300,0,0,0,0,2,0,6,0,0,0,0,0,0,846,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,13,65,292,12,0,0,313,0,656,0,0,0,203,97,0,0,0,0,0,0,4,0,0,269,0,0,0,0,16,0,0,0,0,9,159,125,0,0,91,0,0,0,0,0,597,0,0,299,0,0,1,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,43,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,69,1,1,1,0,78,0,0,0,0,1,84,215,0,51,0,0,0,0,0,0,216,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,39,0,0,0,0,0,0,0,0,0,0,0,0,0,1,507,84,5 +15,0,0,11,22,114,37,23,303,13,34,0,0,0,22,0,273,0,7,19,0,11,9,1,2,1,19,0,16,0,19,2,0,21,100,0,134,87,0,0,130,0,0,0,1,0,0,5,1,0,0,0,16,270,0,0,0,0,0,1,0,0,0,0,0,14,0,0,8560,114,1329,0,37,0,0,0,1,0,24,42,0,0,0,3,1,10,401,0,23,100,21,0,1,17,0,324,15,10,0,0,2,22,377,0,10,0,0,1925,0,0,0,0,33,0,0,0,0,0,0,1,0,0,0,7,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,15,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,66,21,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,98,2,2,2,0,4,2,540,2,188,0,0,24,36,38,262,316,475,0,0,0,0,1,0,4,0,0,0,0,0,0,1725,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,21,35,1071,36,0,0,1672,0,2174,0,0,0,1125,30,0,0,0,0,0,0,0,0,0,676,1,0,3,0,42,0,0,0,0,45,207,646,0,0,36,0,1,0,0,0,33965,0,0,900,0,0,1,0,0,0,0,0,11,0,0,0,4,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,126,1,1,1,0,47,0,0,0,22,271,234,558,12,57,0,0,2,0,0,0,324,44,0,0,0,0,0,0,0,0,0,0,0,20,0,1,15,0,0,0,0,0,0,0,0,0,0,0,34,0,3,794,59,5 +1,0,0,5,1,37,8,4,37,33,9,0,0,4,48,0,86,0,7,8,0,2,1,2,4,8,24,0,17,0,1,0,0,1,22,0,38,6,110,0,154,0,0,0,1,0,0,7,0,0,0,0,10,366,0,0,0,0,0,1,0,0,0,2,0,41,0,0,4364,37,363,0,18,0,0,0,0,0,29,3,0,0,0,1,2,12,425,0,4,22,1,0,0,0,0,208,15,13,0,0,2,1,339,0,36,0,0,1290,0,0,0,0,15,0,12,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,26,0,0,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,360,0,121,0,0,0,20,90,84,198,332,0,0,0,0,1,0,0,0,0,0,0,0,0,1018,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,66,40,291,6,0,0,431,0,364,0,0,0,307,28,0,0,0,0,0,0,4,0,0,199,1,0,0,0,17,0,0,0,0,11,153,212,0,0,0,0,0,0,0,0,1009,0,0,421,0,0,1,0,1,0,0,0,13,0,0,0,2,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,36,1,1,1,0,83,0,0,0,0,9,60,525,0,50,0,0,0,0,0,0,139,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,35,0,0,0,0,0,0,0,0,0,0,0,2,0,4,587,106,5 +0,0,0,3,0,38,6,0,41,0,2,0,0,7,2,0,573,0,7,3,0,0,0,8,1,11,0,0,6,0,2,0,0,0,3,898,38,6,3,0,47,0,0,0,1,0,0,2,0,0,0,0,3,217,0,0,0,0,0,1,0,0,0,0,0,2,0,0,5968,38,647,0,4,0,0,0,0,0,18,0,0,0,0,0,10,22,1111,0,0,3,0,0,0,0,0,214,25,3,0,0,2,0,629,0,0,0,0,1250,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,12,12,12,0,0,0,501,0,58,0,0,0,4,8,248,388,478,0,0,0,0,1,0,3,0,1,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,0,106,10,219,3,0,0,264,0,333,0,0,0,105,10,0,0,0,0,0,0,0,0,0,638,1,0,0,0,12,0,0,0,0,1,121,57,0,0,0,0,0,0,0,0,1578,1,0,192,8,0,1,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,8,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,1,1,1,0,5,0,0,0,0,1,41,271,0,5,14,0,1,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,541,48,5 +2,0,0,8,1,46,30,1,50,8,5,0,0,0,24,19,178,0,35,1,0,0,0,2,2,1,28,0,8,0,3,3,0,1,21,0,47,177,6,0,197,0,0,0,1,0,0,10,0,0,0,0,7,231,0,0,0,0,0,1,0,0,0,0,0,13,0,0,36333,46,411,0,21,0,0,0,0,0,46,0,0,0,0,1,2,14,15515,0,1,21,1,0,1,0,0,102,0,15,0,0,4,1,376,0,11,0,0,1683,0,1,0,0,6,0,1,0,1,0,0,1,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,74,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,0,0,26,0,0,0,0,0,0,15499,0,170,0,0,0,14,63,102,326,15554,0,0,0,0,1,0,0,0,0,0,0,0,0,2965,0,0,0,0,0,0,0,2,0,0,0,0,10,0,2,0,0,0,0,0,0,116,52,627,20,0,0,696,0,1275,0,1,0,472,84,0,0,0,0,0,0,0,0,0,341,1,0,0,0,5,0,0,0,0,8,282,175,0,0,0,0,70,12,0,0,769,0,0,1270,28,0,1,0,0,0,0,0,25,0,0,0,1,0,0,0,0,0,13,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,28,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,56,1,1,1,0,61,0,0,0,0,9,68,609,0,43,0,0,0,0,0,0,219,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,792,238,5 +1,0,0,0,0,28,68,0,114,13,11,0,3,0,14,1,38,0,7,2,0,0,0,1,0,0,3,0,2,0,1,0,0,0,14,0,28,322,3,0,291,0,0,1,0,1,0,0,0,0,0,0,1,114,0,0,0,0,0,1,0,0,0,0,0,6,0,0,816,28,244,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,24,0,0,14,0,0,2,91,0,771,15,0,0,0,4,0,585,0,4,0,1,1781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,37,0,55,0,0,0,2,10,62,686,58,0,0,0,0,0,0,1,0,0,0,0,0,0,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,30,323,2,0,0,165,0,1869,0,0,0,112,240,0,0,0,0,0,0,0,0,0,256,0,0,0,0,3,0,0,0,0,2,118,211,0,0,51,0,0,0,0,0,444,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,44,1,1,1,0,2,0,0,0,0,1,42,14,0,6,0,0,0,0,0,0,238,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,158,5 +0,0,0,14,0,19,37,0,86,5,29,0,0,0,12,0,23,0,7,2,0,0,0,1,0,1,3,0,3,0,2,0,0,0,7,0,19,6,3,0,151,0,0,0,1,0,0,2,0,0,0,0,2,109,0,0,0,0,0,1,0,0,0,0,0,21,0,0,642,19,195,0,4,0,0,0,0,0,9,0,0,0,0,0,1,4,52,0,0,7,0,0,3,75,0,618,110,4,0,0,2,0,375,0,9,0,0,394,0,0,0,0,7,0,2,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,62,0,41,0,0,0,3,12,38,450,77,0,0,0,0,1,0,0,0,0,0,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,16,131,18,0,0,186,0,408,0,0,0,118,14,0,0,0,0,0,0,0,0,0,194,1,0,0,0,3,0,0,0,0,2,105,186,0,0,277,0,1,0,0,0,83,0,0,60,0,0,1,1,1,0,0,0,2,0,0,0,4,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,10,0,0,0,0,1,26,181,0,9,0,0,0,0,0,0,185,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,97,5 +0,0,0,8,0,47,73,0,55,0,8,0,0,2,3,0,1048,0,6,1,0,0,0,10,0,14,0,0,4,0,5,0,0,0,3,8023,47,6,0,0,44,0,1,0,1,0,0,1,0,0,0,0,8,505,0,0,0,0,0,1,0,0,0,0,0,5,0,0,259396,47,1383,0,1,0,0,0,0,0,142,0,0,0,0,0,10,23,46396,0,0,3,0,0,1,11,0,204,20,1,0,0,2,0,1238,0,0,0,0,8929,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,12,12,12,0,0,0,37369,0,53,0,0,0,4,3,444,2043,37359,0,0,0,0,1,0,3,0,0,0,0,0,0,419,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,34,13,378,8,0,0,556,0,354,0,0,0,366,15,0,0,0,0,0,0,0,0,0,1195,1,0,0,0,11,0,0,0,0,1,226,93,0,0,31,0,0,0,0,0,7754,1,0,1258,72,0,1,3,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,72,366,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,51,1,1,1,0,28,0,0,0,0,1,50,166,0,9,14,0,0,0,0,0,71,1,0,0,0,0,0,0,0,0,0,0,0,3,0,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,1,4334,113,5 +1,0,0,13,0,90,28,0,81,144,9,0,0,2,157,1,1339,0,7,10,0,0,0,27,0,15,9,0,15,0,1,0,0,0,40,898,90,86,28,0,407,0,0,0,1,0,0,13,0,0,0,0,7,523,0,0,0,0,0,1,0,0,0,1,0,158,0,0,28589,90,1795,0,13,0,0,0,0,2,70,0,0,0,0,0,30,51,4402,0,0,40,0,0,1,27,0,454,25,26,0,0,2,0,1843,0,151,0,0,5640,0,0,0,0,15,1,16,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,12,12,12,0,0,0,3747,0,390,0,0,0,12,65,373,1182,3746,0,0,0,0,1,0,3,0,0,0,0,0,0,2462,0,0,0,0,0,0,0,0,0,0,0,0,13,1,5,0,0,0,0,1,0,32,167,766,15,0,0,726,0,1597,0,0,0,515,120,0,0,0,0,0,0,12,0,0,1624,1,0,0,0,37,0,0,0,0,7,182,377,0,0,80,0,2,0,0,0,3500,1,0,921,6,0,1,1,1,0,0,0,37,0,0,0,0,0,0,0,0,0,143,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0,0,127,1,1,1,0,52,0,1,0,0,1,130,550,0,28,12,0,0,0,0,0,388,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,148,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1653,346,5 +0,0,0,4,0,37,12,0,35,0,2,0,0,2,2,0,831,0,7,3,0,0,0,8,0,12,3,0,6,0,1,0,0,0,3,7113,37,6,2,0,24,0,2,0,1,0,0,2,0,0,0,0,2,558,0,0,0,0,0,1,0,0,0,0,0,3,0,0,176398,37,911,0,3,0,0,0,0,0,26,0,0,0,0,0,9,21,29510,0,0,3,0,0,0,0,0,103,5,4,0,0,2,0,864,0,0,0,0,1889,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,12,12,12,0,0,0,28101,0,40,0,0,0,2,12,268,418,28076,0,0,0,0,1,0,3,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,32,10,249,4,0,0,279,0,322,0,0,0,127,11,0,0,0,0,0,0,0,0,0,891,1,0,0,0,11,0,0,0,0,2,141,29,0,0,0,0,0,0,0,0,2472,1,0,405,14,0,1,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,14,181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,41,1,1,1,0,10,0,0,0,0,1,40,102,0,8,14,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,700,25,5 +1,0,0,18,1,90,121,1,309,66,79,1,1,5,96,0,191,0,9,9,0,0,0,22,17,25,42,0,53,0,1,0,0,1,41,0,91,241,114,0,659,0,0,0,1,0,0,2,0,0,0,0,31,463,0,2,0,0,0,1,0,0,2,2,0,101,0,0,4129,90,889,0,52,0,0,0,0,0,14,0,0,0,0,0,17,25,385,0,1,41,1,0,8,212,0,2098,290,4,0,0,4,1,1516,0,72,0,4,6670,0,0,0,0,23,0,1,0,0,0,0,1,0,0,0,18,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,10,10,10,0,0,0,410,0,227,0,0,0,60,230,302,1751,356,0,0,0,0,1,0,13,0,0,1,0,0,0,1312,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,157,112,805,21,0,0,650,0,1841,0,1,0,343,112,0,0,0,0,0,0,0,0,0,812,1,0,0,0,48,0,0,0,0,26,253,445,0,0,724,0,1,0,0,1,1382,0,0,179,3,0,1,1,0,0,0,0,5,0,1,0,7,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,3,1,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,115,1,1,1,0,142,0,0,0,0,9,132,143,0,112,9,0,0,0,0,0,692,9,0,0,0,0,0,0,0,0,0,0,0,2,0,1,78,0,0,0,0,0,0,0,0,0,0,0,1,0,3,989,227,5 +0,0,0,9,0,27,5,0,14,2,74,0,0,2,76,0,53,0,6,2,0,0,0,6,0,8,3,0,3,0,1,1,0,0,3,0,27,6,0,0,434,0,2,0,1,0,0,3,0,0,0,0,2,169,0,0,0,0,0,1,0,0,0,0,0,7,0,0,9989,27,244,0,3,0,0,0,0,0,19,0,0,0,0,0,7,18,1983,0,0,3,0,0,0,0,0,83,5,5,0,0,2,0,320,0,3,0,0,771,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,48,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,10,0,0,0,1203,0,137,0,0,0,2,9,179,20,1229,0,0,0,0,1,0,4,0,0,0,0,0,0,2985,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,1,0,32,13,216,12,0,0,322,0,973,0,0,0,229,14,0,0,0,0,0,0,186,0,0,230,1,0,0,0,8,0,0,0,0,2,118,197,0,0,0,0,0,0,0,0,1093,0,0,2530,3,0,1,2,1,0,0,0,5,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,183,0,0,0,3,363,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,7,0,0,0,0,1,30,441,0,7,9,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,0,0,0,0,0,99,0,0,0,0,0,0,0,3,1333,56,5 +1,0,0,13,0,37,12,0,169,33,53,0,1,3,48,0,77,0,7,5,0,0,0,2,20,6,12,0,34,0,1,0,0,0,17,0,37,302,55,0,357,0,3,0,1,0,0,7,0,0,0,0,23,222,0,0,0,0,0,1,0,0,0,0,0,49,0,0,4120,37,457,0,35,0,0,0,0,0,19,0,0,0,0,0,3,15,351,0,0,17,0,0,1,117,0,1107,60,7,1,0,2,0,835,0,27,0,7,1578,0,0,1,0,31,0,7,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,376,0,145,0,0,0,46,170,113,2501,375,0,0,0,0,1,0,0,0,0,0,0,0,0,794,0,0,0,0,0,0,0,0,0,0,0,0,7,0,2,0,0,0,0,0,0,19,45,353,15,0,0,321,0,1295,0,0,0,216,68,0,13,0,0,0,0,4,0,0,370,1,0,0,0,27,0,0,0,0,9,143,426,0,0,189,0,0,0,0,6,781,0,0,206,0,0,1,0,1,0,0,0,10,0,0,0,4,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,72,1,1,1,0,77,0,0,0,0,1,54,359,0,53,0,0,0,0,0,0,405,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,35,0,0,0,0,0,0,0,0,0,0,0,0,0,3,804,414,5 +0,0,0,4,0,38,138,0,262,48,71,0,1,3,58,0,91,0,7,7,0,0,0,3,3,7,24,0,16,0,1,0,0,0,19,0,38,111,32,0,579,0,0,0,1,0,0,4,1,0,0,0,8,215,0,0,0,0,0,1,0,0,4,2,0,47,0,0,2747,38,691,0,17,0,0,0,0,0,17,0,0,0,0,0,4,9,350,0,0,19,0,0,6,209,0,1726,280,9,0,0,2,0,1256,0,29,0,5,2101,0,0,0,0,20,0,0,0,0,0,0,1,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,416,0,142,0,0,0,16,117,90,1761,390,0,0,0,0,1,0,1,0,0,0,0,0,0,1423,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,14,57,314,14,0,0,419,0,477,0,0,0,336,84,0,0,0,0,0,0,0,0,0,631,1,0,3,0,13,0,0,0,0,9,174,464,0,0,653,0,0,0,0,12,556,0,0,101,0,0,1,0,1,0,0,0,14,0,0,0,9,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,46,1,1,1,0,102,0,0,0,0,1,57,211,0,48,0,0,0,0,0,0,539,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,0,0,0,0,0,0,0,0,0,0,0,0,0,2,756,236,5 +0,0,0,9,0,21,3,0,31,12,5,0,1,2,23,0,38,0,7,3,0,0,0,1,1,2,9,0,6,0,1,0,0,0,7,0,21,30,9,0,55,0,0,0,1,0,0,1,0,0,0,0,3,115,0,2,0,0,0,1,0,0,0,0,0,10,0,0,510,21,119,0,7,0,0,0,0,0,6,0,0,0,0,0,1,3,53,0,0,7,0,0,0,0,0,36,0,2,0,0,2,0,131,0,7,0,3,533,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,86,0,44,0,0,0,6,28,54,75,105,0,0,0,0,1,0,2,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,26,138,10,0,0,134,0,334,0,0,0,63,37,0,0,0,0,0,0,0,0,0,110,1,0,0,0,5,0,0,0,0,4,110,28,0,0,0,0,0,0,0,0,152,0,0,20,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,14,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,27,1,1,1,0,14,0,0,0,0,1,28,91,0,18,0,0,0,0,0,0,57,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,2,171,18,5 +0,0,0,6,0,27,23,0,70,0,20,0,0,0,5,0,25,0,7,3,0,0,0,4,0,1,3,0,4,0,1,0,0,0,7,0,27,6,6,0,103,0,0,0,1,0,0,2,0,0,0,0,2,141,0,2,0,0,0,1,0,0,0,1,0,18,0,0,2643,27,149,0,5,0,0,0,0,0,10,0,0,0,0,0,4,8,532,0,0,7,0,0,5,54,0,476,70,3,0,0,2,0,283,0,1,0,0,747,0,0,0,0,2,0,3,0,0,0,0,1,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,395,0,68,0,0,0,4,18,69,334,428,0,0,0,0,1,0,0,0,0,0,0,0,0,745,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,10,9,219,6,0,0,241,0,618,0,0,0,145,147,0,0,0,0,0,0,0,0,0,150,1,0,0,0,7,0,0,0,0,2,127,180,0,0,145,0,0,0,0,0,378,0,0,468,0,0,1,5,1,0,0,0,5,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,35,1,1,1,0,13,0,0,0,0,1,34,199,0,9,0,0,0,0,0,0,152,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,4,0,0,0,0,0,0,0,0,0,0,0,0,4,243,67,5 +40,0,0,7,0,129,38,0,55,21,22,0,0,6,31,0,740,0,7,6,0,0,0,8,4,19,47,0,32,0,3,6,0,0,81,1612,129,6,41,0,138,0,0,0,1,0,0,7,0,0,0,0,17,751,0,0,0,0,0,1,0,0,0,0,0,28,0,0,127056,129,1078,0,38,0,0,0,0,0,73,0,0,0,0,0,9,104,21334,0,0,81,0,0,0,0,0,421,20,14,0,0,2,0,1116,0,23,85,0,10933,0,0,0,0,21,20,9,18,0,0,0,1,0,0,0,11,8,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,29,0,11,11,0,0,0,0,0,0,0,1,1,0,0,0,1,0,10,0,0,0,26,0,0,0,0,0,0,0,0,9,0,0,0,0,0,87,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,62,12,12,12,0,0,0,16651,0,258,0,0,0,36,278,907,2372,16610,0,0,0,0,1,0,16,0,0,0,0,0,0,2140,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,2,0,84,39,1190,7,0,0,1043,0,869,4,0,0,847,72,0,0,0,0,0,0,0,0,0,899,1,0,0,0,18,0,0,0,0,12,649,68,0,0,120,0,0,0,0,0,9337,1,0,950,30,0,1,1,1,0,0,0,23,0,0,0,4,0,0,0,0,0,24,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,30,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,186,1,1,1,0,171,0,0,0,0,1,210,589,0,93,14,0,0,0,0,0,193,8,0,0,0,0,0,0,0,0,0,0,0,3,0,1,25,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3856,190,5 +4,0,0,15,0,42,22,0,46,8,8,0,0,0,14,0,31,0,7,3,0,0,0,3,0,2,0,0,3,0,1,0,0,0,9,0,42,112,0,0,111,0,0,0,1,0,0,1,0,0,0,0,0,157,0,1,0,0,0,1,0,0,0,0,0,17,0,0,7165,42,124,0,5,0,0,0,0,0,7,0,0,0,0,0,6,30,1709,0,0,9,0,0,1,18,0,169,15,1,0,0,2,0,145,0,12,0,0,2522,0,0,2,0,2,0,0,0,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,47,0,0,0,0,0,0,1149,0,78,0,0,0,2,5,103,553,949,0,0,0,0,1,0,0,0,0,0,0,0,0,2231,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,13,15,233,24,0,0,258,0,1036,0,0,0,118,40,0,0,0,0,0,0,4,0,0,128,1,0,0,0,6,0,0,0,0,1,138,92,0,0,49,0,1,0,0,3,624,0,0,1544,0,0,1,1,0,0,0,0,4,0,1,0,7,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,72,1,1,1,0,4,0,0,0,0,1,51,216,0,5,1,0,0,0,0,0,239,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,2,948,151,5 +0,0,0,3,0,15,2,0,24,1,3,0,0,0,4,0,50,0,6,1,0,0,0,1,0,0,21,0,2,0,7,1,0,0,4,0,15,6,0,0,10,0,3,0,1,0,0,4,0,0,0,0,7,73,0,0,0,0,0,1,0,0,0,0,0,4,0,0,54571,15,135,0,10,0,0,0,0,1,19,0,0,0,0,0,1,7,4736,0,0,4,0,0,0,0,0,13,0,8,0,0,2,0,155,0,2,0,0,448,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,6,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,4614,0,51,0,0,0,14,38,31,26,4607,0,0,0,0,1,0,0,0,0,0,0,0,0,18228,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,8,5,118,3,0,0,169,0,336,0,0,0,96,16,0,0,0,0,0,0,4,0,0,89,1,0,0,0,2,0,0,0,0,1,98,70,0,0,0,0,0,0,0,0,4538,0,0,18074,0,0,1,0,1,0,0,0,5,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,189,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,12,1,1,1,0,18,0,0,0,0,1,19,216,0,31,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4637,84,5 +0,0,0,6,0,25,8,0,65,10,13,0,0,9,18,0,57,0,7,1,0,0,0,2,2,0,12,0,6,0,5,0,0,0,11,0,25,6,7,0,157,0,0,0,0,0,0,4,0,0,0,0,6,120,0,0,0,0,0,1,0,0,0,0,0,24,0,0,1912,25,216,0,11,0,0,0,0,0,20,0,0,0,0,0,2,10,190,0,0,11,0,0,1,35,0,486,60,5,2,0,2,0,367,0,13,0,0,1389,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,165,0,67,0,0,0,12,35,86,544,168,0,0,0,0,1,0,2,0,0,0,0,0,0,422,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,180,16,190,6,0,0,186,0,436,0,0,0,110,42,0,0,0,0,0,0,0,0,0,177,1,0,0,0,5,0,0,0,0,3,107,146,0,0,44,0,0,0,0,0,1471,0,0,154,0,0,1,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,28,1,1,1,0,16,0,0,0,0,1,36,221,0,23,0,0,0,0,0,0,167,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4301,43,5 +17,0,0,7,0,196,129,0,45,25,131,0,0,7,33,0,466,0,7,6,0,0,0,9,0,16,26,0,40,0,2,4,0,0,150,1408,196,6,33,0,155,0,0,0,1,0,0,7,0,0,0,0,10,1385,0,0,0,0,0,1,0,0,0,0,0,30,0,0,150974,196,1239,0,42,0,0,0,0,0,287,0,0,0,0,0,10,419,28620,0,0,150,0,0,0,0,0,1229,25,14,0,0,2,0,919,0,26,720,0,12111,0,0,0,0,30,17,13,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,29,0,17,14,0,0,0,0,0,0,0,1,1,0,0,0,1,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,38,12,12,12,0,0,0,13758,0,276,0,0,0,35,196,2518,4592,13729,0,0,0,0,1,0,23,0,0,0,0,0,0,2836,0,0,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,2,0,106,45,1050,7,0,0,1100,0,1106,0,0,0,916,40,0,0,0,0,0,0,0,0,0,818,1,0,0,0,15,0,0,0,0,7,312,171,0,0,928,0,1,0,0,0,9195,1,0,2389,132,0,1,1,1,0,0,0,19,0,0,0,0,0,0,0,0,0,27,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,132,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,258,1,1,1,0,247,0,0,0,0,1,346,630,0,74,14,0,0,0,0,0,205,14,0,0,0,0,0,0,0,0,0,0,0,2,0,1,29,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7659,163,5 +5,0,0,15,0,72,20,0,100,48,31,1,0,2,77,1,54,0,7,15,0,0,0,7,2,13,12,0,18,0,1,0,0,0,27,0,72,94,33,0,391,0,0,0,1,0,0,1,0,0,0,0,10,330,0,1,0,0,0,1,0,0,0,2,0,72,0,0,2394,72,297,0,17,0,0,0,0,0,7,0,0,0,0,0,14,21,285,0,0,27,0,0,4,67,0,801,115,1,0,0,2,0,625,0,55,0,0,3024,0,0,4,0,50,0,2,0,0,0,0,1,4,0,0,10,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,28,10,10,10,0,0,0,308,0,124,0,0,0,18,78,234,1013,324,0,0,0,0,1,0,2,0,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,33,90,449,31,0,0,428,0,1132,0,0,0,260,141,0,5,0,0,0,0,0,0,0,293,1,0,0,0,24,0,0,0,0,9,235,250,0,0,413,0,2,0,0,0,428,0,0,8,3,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,46,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,3,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,84,1,1,1,0,57,0,0,0,0,11,101,196,0,35,9,0,0,0,0,0,289,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,56,0,0,0,0,0,0,0,0,0,0,0,0,0,1,725,370,5 +0,0,0,16,1,59,71,1,167,44,39,0,1,9,55,0,1199,0,9,8,0,0,0,8,2,16,21,0,30,0,1,0,0,1,14,11651,60,120,24,0,256,0,0,0,1,0,0,1,0,0,0,0,9,771,0,0,0,0,0,1,0,0,0,2,0,31,0,0,22910,59,1584,0,28,0,0,0,0,0,42,0,0,0,0,0,9,107,4237,0,1,14,1,0,3,45,0,786,85,2,0,0,4,1,1682,0,21,59,3,4024,0,0,0,0,14,0,4,0,0,0,0,1,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,12,12,12,0,0,0,1500,0,69,0,0,0,23,80,803,1504,1465,0,0,0,0,1,0,4,0,0,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,212,100,608,26,0,0,677,0,1330,0,1,0,356,94,0,0,0,0,0,0,0,0,0,1550,1,0,0,0,18,0,0,0,0,9,247,160,0,0,249,0,0,0,0,0,4267,1,0,194,21,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,73,1,1,1,0,84,0,0,0,0,9,74,306,0,56,12,0,0,0,0,0,300,8,0,0,0,0,0,0,0,0,0,0,0,4,0,1,50,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1747,129,5 +0,0,0,3,0,12,2,0,18,1,3,0,0,0,4,0,14,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,4,0,12,6,0,0,16,0,0,0,1,0,0,2,0,0,0,0,0,165,0,2,0,0,0,1,0,0,0,0,0,4,0,0,1146,12,46,0,1,0,0,0,0,0,9,0,0,0,0,0,1,4,44,0,0,4,0,0,0,0,0,7,0,4,0,0,2,0,21,0,2,0,0,235,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,54,0,29,0,0,0,0,3,26,12,79,0,0,0,0,1,0,0,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,8,5,96,3,0,0,184,0,313,0,0,0,118,2,0,0,0,0,0,0,0,0,0,47,1,0,0,0,2,0,0,0,0,0,100,93,0,0,0,0,0,0,0,0,28,0,0,32,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,1,1,1,0,0,0,0,0,0,1,16,454,0,1,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,19,5 +0,0,0,0,0,8,2,0,17,0,1,0,0,0,2,0,22,0,6,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,8,6,0,0,5,0,0,0,1,0,0,1,1,0,0,0,0,27,0,0,0,0,0,1,0,0,0,0,0,0,0,0,67,8,42,0,1,0,0,0,0,0,3,0,0,0,0,0,1,3,15,0,0,0,0,0,0,0,0,10,0,4,0,0,2,0,17,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,21,0,24,0,0,0,0,3,21,5,34,0,0,0,0,1,0,1,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,3,88,0,0,0,100,0,462,0,0,0,24,1,0,0,0,0,0,0,0,0,0,50,1,0,2,0,2,0,0,0,0,0,90,9,0,0,0,0,0,0,0,0,34,0,0,12,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,5,1,1,1,0,0,0,0,0,0,1,8,24,0,1,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,31,5 +2,0,0,11,0,61,13,0,66,17,11,0,0,7,30,2,1392,0,7,6,0,0,0,10,7,20,18,0,29,0,1,0,0,0,16,3120,61,12,34,0,772,0,0,0,1,0,0,15,0,0,0,0,12,667,0,15,0,0,0,1,0,0,0,0,0,19,0,0,29634,61,1688,0,27,0,0,0,0,0,79,0,0,0,0,0,11,74,3604,0,0,16,0,0,0,0,0,377,25,28,2,0,2,0,1908,0,15,17,0,3232,0,0,0,0,5,0,17,0,0,0,0,1,2,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,12,12,12,0,0,0,2268,0,226,0,0,0,25,128,517,863,2230,0,0,0,0,1,0,4,0,0,0,0,0,0,5493,0,0,0,0,0,0,0,0,0,0,0,0,15,1,0,0,0,0,0,1,0,106,46,587,12,0,0,674,0,1082,0,0,0,449,122,0,0,0,0,0,0,2,0,0,1528,1,0,0,0,23,0,0,0,0,13,175,274,1,0,32,0,1,0,0,0,4887,1,0,5769,9,0,1,1,0,0,0,0,36,0,0,0,6,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,70,1,1,1,0,79,0,0,0,0,3,77,893,0,56,12,0,1,0,0,0,1179,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,21,0,0,0,0,0,0,0,0,0,0,0,0,0,10,2764,236,5 +6,0,0,10,1,69,50,1,118,15,22,0,0,9,26,0,1809,0,9,8,0,0,0,8,1,16,21,0,31,0,1,0,0,1,15,38979,70,66,20,0,147,0,0,0,1,0,0,4,0,0,0,0,8,995,0,0,0,0,0,1,0,0,0,11,0,20,0,0,233169,69,2108,0,28,0,0,0,0,0,63,0,0,0,0,0,9,115,44978,0,1,15,1,0,1,0,0,482,30,8,0,0,4,1,2031,0,17,72,0,11143,0,0,0,0,15,6,5,0,0,0,0,1,0,0,0,14,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,6,0,6,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,33,0,1,0,0,0,0,0,0,0,0,0,1,1,6,0,0,0,0,1,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,12,12,12,0,0,0,36518,0,107,0,0,0,24,116,912,3226,36464,0,0,0,0,1,0,11,0,0,0,0,0,0,1995,6,0,0,0,0,0,0,0,0,0,0,0,81,7,6,0,0,0,0,1,0,224,62,685,12,0,0,780,0,4226,0,1,0,437,170,0,0,0,0,0,0,3,0,0,2043,1,0,0,0,17,0,0,0,0,6,238,176,0,0,104,0,0,0,0,4,9844,1,0,1143,32,0,1,1,1,0,0,0,10,0,0,0,2,0,0,0,0,0,18,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,32,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,112,1,1,1,0,93,0,0,0,0,9,85,660,0,55,14,0,2,0,0,0,208,1,0,1,0,0,0,0,0,0,0,0,0,3,0,1,21,0,0,0,0,0,0,0,0,0,0,0,1,0,5,4417,295,5 +0,0,0,0,0,21,16,0,48,9,7,0,0,0,11,0,24,0,6,2,0,0,0,1,0,1,0,0,2,0,1,0,0,0,9,0,21,112,9,0,97,0,0,0,1,0,0,4,0,0,0,0,1,194,0,0,0,0,0,1,0,0,0,0,0,11,0,0,1939,21,132,0,3,0,0,0,0,0,21,0,0,0,0,0,1,6,229,0,0,9,0,0,0,31,0,252,20,7,0,0,2,0,199,0,9,0,0,628,0,0,0,0,1,0,5,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,206,0,84,0,0,0,2,15,39,209,210,0,0,0,0,1,0,0,0,0,0,0,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,14,12,190,0,0,0,304,0,1097,0,0,0,227,36,0,0,0,0,0,0,6,0,0,112,1,0,0,0,3,0,0,0,0,1,111,237,0,0,56,0,0,0,0,0,237,0,0,226,0,0,1,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,1,0,0,18,1,1,1,0,21,0,0,0,0,1,30,526,0,4,0,0,0,0,0,0,119,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,0,5,241,67,5 +1,0,0,15,0,90,80,0,239,50,58,0,1,5,117,1,161,0,104,8,0,0,0,7,11,22,60,0,37,0,4,3,0,0,41,0,90,115,75,0,525,0,0,0,1,0,0,6,0,0,0,0,23,349,0,0,0,0,0,1,0,0,2,0,0,71,0,0,15547,90,886,0,42,0,0,0,0,0,21,0,0,0,0,0,9,21,1718,0,0,41,0,0,4,152,0,1464,255,8,0,0,2,0,1360,0,54,0,5,5147,0,0,0,0,18,0,6,0,0,0,0,1,0,0,0,18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,32,0,1,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,10,10,10,0,0,0,1422,0,202,0,0,0,44,562,364,1520,1420,0,0,0,0,1,0,3,0,0,0,0,0,0,5120,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,1,0,37,84,576,17,0,0,571,0,2009,0,0,0,398,161,0,0,0,0,0,0,0,0,0,766,1,0,0,0,26,0,0,0,0,20,207,413,0,0,608,0,0,0,0,2,1645,0,0,3484,3,0,1,1,0,0,0,0,13,0,0,0,7,0,0,0,0,0,64,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,3,9,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,182,1,1,1,0,237,0,0,0,0,1,131,578,0,117,9,0,0,0,0,0,479,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,56,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1703,774,5 +0,0,0,10,0,47,6,0,44,11,4,0,1,5,34,0,65,0,7,5,0,0,0,9,14,13,12,0,34,0,1,0,0,0,13,0,47,204,26,0,172,0,14,0,1,0,0,15,0,0,0,0,20,270,0,0,0,0,0,1,0,0,0,2,0,13,0,0,25610,47,342,0,35,0,0,0,0,0,77,0,0,0,0,0,10,33,3158,0,0,13,0,0,0,0,0,237,5,30,0,0,2,0,233,0,12,0,7,1525,0,0,0,0,16,0,0,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,30,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,10,10,10,0,0,0,3233,0,245,0,0,0,36,84,240,662,2752,0,0,0,0,1,0,3,0,0,0,0,0,0,7937,0,0,0,0,0,0,0,0,0,0,0,0,15,1,2,0,0,0,0,1,0,34,30,387,26,0,0,529,0,1089,0,0,0,398,105,0,0,0,0,0,0,185,0,0,166,1,0,0,0,28,0,0,0,0,6,204,234,0,0,0,0,0,0,0,1,2205,0,0,7425,3,0,1,2,1,0,0,0,33,0,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,183,0,0,0,3,361,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,1,0,0,67,1,1,1,0,68,0,0,0,0,1,60,487,0,51,9,0,0,0,0,0,144,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,13,0,0,0,0,0,94,0,0,0,0,0,0,0,13,3102,186,5 diff --git a/pytorch/个人教程/SUMMARY.md b/pytorch/其他教程/00SUMMARY.md similarity index 100% rename from pytorch/个人教程/SUMMARY.md rename to pytorch/其他教程/00SUMMARY.md diff --git a/pytorch/个人教程/01.md b/pytorch/其他教程/01.md similarity index 100% rename from pytorch/个人教程/01.md rename to pytorch/其他教程/01.md diff --git a/pytorch/个人教程/02.md b/pytorch/其他教程/02.md similarity index 100% rename from pytorch/个人教程/02.md rename to pytorch/其他教程/02.md diff --git a/pytorch/个人教程/03.md b/pytorch/其他教程/03.md similarity index 100% rename from pytorch/个人教程/03.md rename to pytorch/其他教程/03.md diff --git a/pytorch/个人教程/04.md b/pytorch/其他教程/04.md similarity index 100% rename from pytorch/个人教程/04.md rename to pytorch/其他教程/04.md diff --git a/pytorch/个人教程/05.md b/pytorch/其他教程/05.md similarity index 100% rename from pytorch/个人教程/05.md rename to pytorch/其他教程/05.md diff --git a/pytorch/个人教程/06.md b/pytorch/其他教程/06.md similarity index 100% rename from pytorch/个人教程/06.md rename to pytorch/其他教程/06.md diff --git a/pytorch/个人教程/07.md b/pytorch/其他教程/07.md similarity index 100% rename from pytorch/个人教程/07.md rename to pytorch/其他教程/07.md diff --git a/pytorch/个人教程/08.md b/pytorch/其他教程/08.md similarity index 100% rename from pytorch/个人教程/08.md rename to pytorch/其他教程/08.md diff --git a/pytorch/个人教程/09.md b/pytorch/其他教程/09.md similarity index 100% rename from pytorch/个人教程/09.md rename to pytorch/其他教程/09.md diff --git a/pytorch/个人教程/10.md b/pytorch/其他教程/10.md similarity index 100% rename from pytorch/个人教程/10.md rename to pytorch/其他教程/10.md diff --git a/pytorch/个人教程/11.md b/pytorch/其他教程/11.md similarity index 100% rename from pytorch/个人教程/11.md rename to pytorch/其他教程/11.md diff --git a/pytorch/个人教程/12.md b/pytorch/其他教程/12.md similarity index 100% rename from pytorch/个人教程/12.md rename to pytorch/其他教程/12.md diff --git a/pytorch/个人教程/13.md b/pytorch/其他教程/13.md similarity index 100% rename from pytorch/个人教程/13.md rename to pytorch/其他教程/13.md diff --git a/pytorch/个人教程/14.md b/pytorch/其他教程/14.md similarity index 100% rename from pytorch/个人教程/14.md rename to pytorch/其他教程/14.md diff --git a/pytorch/个人教程/15.md b/pytorch/其他教程/15.md similarity index 100% rename from pytorch/个人教程/15.md rename to pytorch/其他教程/15.md diff --git a/pytorch/个人教程/16.md b/pytorch/其他教程/16.md similarity index 100% rename from pytorch/个人教程/16.md rename to pytorch/其他教程/16.md diff --git a/pytorch/个人教程/17.md b/pytorch/其他教程/17.md similarity index 100% rename from pytorch/个人教程/17.md rename to pytorch/其他教程/17.md diff --git a/pytorch/个人教程/18.md b/pytorch/其他教程/18.md similarity index 100% rename from pytorch/个人教程/18.md rename to pytorch/其他教程/18.md diff --git a/pytorch/个人教程/19.md b/pytorch/其他教程/19.md similarity index 100% rename from pytorch/个人教程/19.md rename to pytorch/其他教程/19.md diff --git a/pytorch/个人教程/20.md b/pytorch/其他教程/20.md similarity index 100% rename from pytorch/个人教程/20.md rename to pytorch/其他教程/20.md diff --git a/pytorch/个人教程/21.md b/pytorch/其他教程/21.md similarity index 100% rename from pytorch/个人教程/21.md rename to pytorch/其他教程/21.md diff --git a/pytorch/个人教程/22.md b/pytorch/其他教程/22.md similarity index 100% rename from pytorch/个人教程/22.md rename to pytorch/其他教程/22.md diff --git a/pytorch/个人教程/23.md b/pytorch/其他教程/23.md similarity index 100% rename from pytorch/个人教程/23.md rename to pytorch/其他教程/23.md diff --git a/pytorch/个人教程/24.md b/pytorch/其他教程/24.md similarity index 100% rename from pytorch/个人教程/24.md rename to pytorch/其他教程/24.md diff --git a/pytorch/个人教程/25.md b/pytorch/其他教程/25.md similarity index 100% rename from pytorch/个人教程/25.md rename to pytorch/其他教程/25.md diff --git a/pytorch/个人教程/26.md b/pytorch/其他教程/26.md similarity index 100% rename from pytorch/个人教程/26.md rename to pytorch/其他教程/26.md diff --git a/pytorch/个人教程/img/03f4667f9aae4918338a56b74865a389.png b/pytorch/其他教程/img/03f4667f9aae4918338a56b74865a389.png similarity index 100% rename from pytorch/个人教程/img/03f4667f9aae4918338a56b74865a389.png rename to pytorch/其他教程/img/03f4667f9aae4918338a56b74865a389.png diff --git a/pytorch/个人教程/img/04a6040ad4f06a69a92f440ea17dde44.png b/pytorch/其他教程/img/04a6040ad4f06a69a92f440ea17dde44.png similarity index 100% rename from pytorch/个人教程/img/04a6040ad4f06a69a92f440ea17dde44.png rename to pytorch/其他教程/img/04a6040ad4f06a69a92f440ea17dde44.png diff --git a/pytorch/个人教程/img/13e0473ef73a9de2569a81c62e30d054.png b/pytorch/其他教程/img/13e0473ef73a9de2569a81c62e30d054.png similarity index 100% rename from pytorch/个人教程/img/13e0473ef73a9de2569a81c62e30d054.png rename to pytorch/其他教程/img/13e0473ef73a9de2569a81c62e30d054.png diff --git a/pytorch/个人教程/img/1b292936f4a0c3be1d04e43a994fd48c.png b/pytorch/其他教程/img/1b292936f4a0c3be1d04e43a994fd48c.png similarity index 100% rename from pytorch/个人教程/img/1b292936f4a0c3be1d04e43a994fd48c.png rename to pytorch/其他教程/img/1b292936f4a0c3be1d04e43a994fd48c.png diff --git a/pytorch/个人教程/img/1f0b990d5a8d78692d3730d855fe44ea.png b/pytorch/其他教程/img/1f0b990d5a8d78692d3730d855fe44ea.png similarity index 100% rename from pytorch/个人教程/img/1f0b990d5a8d78692d3730d855fe44ea.png rename to pytorch/其他教程/img/1f0b990d5a8d78692d3730d855fe44ea.png diff --git a/pytorch/个人教程/img/20e2ebdf112e4aa3202e951e072c2dc2.png b/pytorch/其他教程/img/20e2ebdf112e4aa3202e951e072c2dc2.png similarity index 100% rename from pytorch/个人教程/img/20e2ebdf112e4aa3202e951e072c2dc2.png rename to pytorch/其他教程/img/20e2ebdf112e4aa3202e951e072c2dc2.png diff --git a/pytorch/个人教程/img/22309cd02ee52b3a65e1f0022e8b964e.png b/pytorch/其他教程/img/22309cd02ee52b3a65e1f0022e8b964e.png similarity index 100% rename from pytorch/个人教程/img/22309cd02ee52b3a65e1f0022e8b964e.png rename to pytorch/其他教程/img/22309cd02ee52b3a65e1f0022e8b964e.png diff --git a/pytorch/个人教程/img/25959870b2b1e7d6fd61229cb20bed29.png b/pytorch/其他教程/img/25959870b2b1e7d6fd61229cb20bed29.png similarity index 100% rename from pytorch/个人教程/img/25959870b2b1e7d6fd61229cb20bed29.png rename to pytorch/其他教程/img/25959870b2b1e7d6fd61229cb20bed29.png diff --git a/pytorch/个人教程/img/25ed82d9ef8a8b1c9c60445c7c08c732.png b/pytorch/其他教程/img/25ed82d9ef8a8b1c9c60445c7c08c732.png similarity index 100% rename from pytorch/个人教程/img/25ed82d9ef8a8b1c9c60445c7c08c732.png rename to pytorch/其他教程/img/25ed82d9ef8a8b1c9c60445c7c08c732.png diff --git a/pytorch/个人教程/img/2fc34594dcb247d4a3414467eed4a109.png b/pytorch/其他教程/img/2fc34594dcb247d4a3414467eed4a109.png similarity index 100% rename from pytorch/个人教程/img/2fc34594dcb247d4a3414467eed4a109.png rename to pytorch/其他教程/img/2fc34594dcb247d4a3414467eed4a109.png diff --git a/pytorch/个人教程/img/388ca39bf710c8f053f533ad10872cd7.png b/pytorch/其他教程/img/388ca39bf710c8f053f533ad10872cd7.png similarity index 100% rename from pytorch/个人教程/img/388ca39bf710c8f053f533ad10872cd7.png rename to pytorch/其他教程/img/388ca39bf710c8f053f533ad10872cd7.png diff --git a/pytorch/个人教程/img/4d69c0a49be83a66f774caf12e64c3a7.png b/pytorch/其他教程/img/4d69c0a49be83a66f774caf12e64c3a7.png similarity index 100% rename from pytorch/个人教程/img/4d69c0a49be83a66f774caf12e64c3a7.png rename to pytorch/其他教程/img/4d69c0a49be83a66f774caf12e64c3a7.png diff --git a/pytorch/个人教程/img/5a415b795ebbb116db6d4a2394d93b27.png b/pytorch/其他教程/img/5a415b795ebbb116db6d4a2394d93b27.png similarity index 100% rename from pytorch/个人教程/img/5a415b795ebbb116db6d4a2394d93b27.png rename to pytorch/其他教程/img/5a415b795ebbb116db6d4a2394d93b27.png diff --git a/pytorch/个人教程/img/6730e1145d2a40e8ced1fda4d453d9c6.png b/pytorch/其他教程/img/6730e1145d2a40e8ced1fda4d453d9c6.png similarity index 100% rename from pytorch/个人教程/img/6730e1145d2a40e8ced1fda4d453d9c6.png rename to pytorch/其他教程/img/6730e1145d2a40e8ced1fda4d453d9c6.png diff --git a/pytorch/个人教程/img/68f39521fc6853acdf26440e7d5a2861.png b/pytorch/其他教程/img/68f39521fc6853acdf26440e7d5a2861.png similarity index 100% rename from pytorch/个人教程/img/68f39521fc6853acdf26440e7d5a2861.png rename to pytorch/其他教程/img/68f39521fc6853acdf26440e7d5a2861.png diff --git a/pytorch/个人教程/img/7345448d48d8d6c6c1b03fda91334e3e.png b/pytorch/其他教程/img/7345448d48d8d6c6c1b03fda91334e3e.png similarity index 100% rename from pytorch/个人教程/img/7345448d48d8d6c6c1b03fda91334e3e.png rename to pytorch/其他教程/img/7345448d48d8d6c6c1b03fda91334e3e.png diff --git a/pytorch/个人教程/img/761c210ceb0fdd69c7e0f8bd85e39698.png b/pytorch/其他教程/img/761c210ceb0fdd69c7e0f8bd85e39698.png similarity index 100% rename from pytorch/个人教程/img/761c210ceb0fdd69c7e0f8bd85e39698.png rename to pytorch/其他教程/img/761c210ceb0fdd69c7e0f8bd85e39698.png diff --git a/pytorch/个人教程/img/7a8716c377832b032ee24276b7ddcc31.png b/pytorch/其他教程/img/7a8716c377832b032ee24276b7ddcc31.png similarity index 100% rename from pytorch/个人教程/img/7a8716c377832b032ee24276b7ddcc31.png rename to pytorch/其他教程/img/7a8716c377832b032ee24276b7ddcc31.png diff --git a/pytorch/个人教程/img/7eca2f8318f254b17ca0bc215ec4f5a0.png b/pytorch/其他教程/img/7eca2f8318f254b17ca0bc215ec4f5a0.png similarity index 100% rename from pytorch/个人教程/img/7eca2f8318f254b17ca0bc215ec4f5a0.png rename to pytorch/其他教程/img/7eca2f8318f254b17ca0bc215ec4f5a0.png diff --git a/pytorch/个人教程/img/90e1ab65f286c889d94c9f6c57d596c9.png b/pytorch/其他教程/img/90e1ab65f286c889d94c9f6c57d596c9.png similarity index 100% rename from pytorch/个人教程/img/90e1ab65f286c889d94c9f6c57d596c9.png rename to pytorch/其他教程/img/90e1ab65f286c889d94c9f6c57d596c9.png diff --git a/pytorch/个人教程/img/94268b7d9687d039d872da203453c97b.png b/pytorch/其他教程/img/94268b7d9687d039d872da203453c97b.png similarity index 100% rename from pytorch/个人教程/img/94268b7d9687d039d872da203453c97b.png rename to pytorch/其他教程/img/94268b7d9687d039d872da203453c97b.png diff --git a/pytorch/个人教程/img/99c72d57612c137b62599837526f0e0e.png b/pytorch/其他教程/img/99c72d57612c137b62599837526f0e0e.png similarity index 100% rename from pytorch/个人教程/img/99c72d57612c137b62599837526f0e0e.png rename to pytorch/其他教程/img/99c72d57612c137b62599837526f0e0e.png diff --git a/pytorch/个人教程/img/9e1df524980c8f42ab4353070c2a1b74.png b/pytorch/其他教程/img/9e1df524980c8f42ab4353070c2a1b74.png similarity index 100% rename from pytorch/个人教程/img/9e1df524980c8f42ab4353070c2a1b74.png rename to pytorch/其他教程/img/9e1df524980c8f42ab4353070c2a1b74.png diff --git a/pytorch/个人教程/img/a545e4a49909bd7a80e042fd6d8267cb.png b/pytorch/其他教程/img/a545e4a49909bd7a80e042fd6d8267cb.png similarity index 100% rename from pytorch/个人教程/img/a545e4a49909bd7a80e042fd6d8267cb.png rename to pytorch/其他教程/img/a545e4a49909bd7a80e042fd6d8267cb.png diff --git a/pytorch/个人教程/img/a577eb2dc81a64cfc4f6d04ff9a25873.png b/pytorch/其他教程/img/a577eb2dc81a64cfc4f6d04ff9a25873.png similarity index 100% rename from pytorch/个人教程/img/a577eb2dc81a64cfc4f6d04ff9a25873.png rename to pytorch/其他教程/img/a577eb2dc81a64cfc4f6d04ff9a25873.png diff --git a/pytorch/个人教程/img/b708f231f544bd7bcefa1d55c82653dd.png b/pytorch/其他教程/img/b708f231f544bd7bcefa1d55c82653dd.png similarity index 100% rename from pytorch/个人教程/img/b708f231f544bd7bcefa1d55c82653dd.png rename to pytorch/其他教程/img/b708f231f544bd7bcefa1d55c82653dd.png diff --git a/pytorch/个人教程/img/bbd3ae66e0235fac8745c37306e74a52.png b/pytorch/其他教程/img/bbd3ae66e0235fac8745c37306e74a52.png similarity index 100% rename from pytorch/个人教程/img/bbd3ae66e0235fac8745c37306e74a52.png rename to pytorch/其他教程/img/bbd3ae66e0235fac8745c37306e74a52.png diff --git a/pytorch/个人教程/img/bce7313d5ac6f2600b62a4962a6daf3a.png b/pytorch/其他教程/img/bce7313d5ac6f2600b62a4962a6daf3a.png similarity index 100% rename from pytorch/个人教程/img/bce7313d5ac6f2600b62a4962a6daf3a.png rename to pytorch/其他教程/img/bce7313d5ac6f2600b62a4962a6daf3a.png diff --git a/pytorch/个人教程/img/c2914d88b6f17b84982e162cf6930a88.png b/pytorch/其他教程/img/c2914d88b6f17b84982e162cf6930a88.png similarity index 100% rename from pytorch/个人教程/img/c2914d88b6f17b84982e162cf6930a88.png rename to pytorch/其他教程/img/c2914d88b6f17b84982e162cf6930a88.png diff --git a/pytorch/个人教程/img/c429fb827df769a542339e200e2ea20c.png b/pytorch/其他教程/img/c429fb827df769a542339e200e2ea20c.png similarity index 100% rename from pytorch/个人教程/img/c429fb827df769a542339e200e2ea20c.png rename to pytorch/其他教程/img/c429fb827df769a542339e200e2ea20c.png diff --git a/pytorch/个人教程/img/c42f3cec435a83431d5a1737e99b8b8c.png b/pytorch/其他教程/img/c42f3cec435a83431d5a1737e99b8b8c.png similarity index 100% rename from pytorch/个人教程/img/c42f3cec435a83431d5a1737e99b8b8c.png rename to pytorch/其他教程/img/c42f3cec435a83431d5a1737e99b8b8c.png diff --git a/pytorch/个人教程/img/c8011979fa20046cbfa36e46cf508689.png b/pytorch/其他教程/img/c8011979fa20046cbfa36e46cf508689.png similarity index 100% rename from pytorch/个人教程/img/c8011979fa20046cbfa36e46cf508689.png rename to pytorch/其他教程/img/c8011979fa20046cbfa36e46cf508689.png diff --git a/pytorch/个人教程/img/cb2138c3f800c7ca4b5ae38076d09429.png b/pytorch/其他教程/img/cb2138c3f800c7ca4b5ae38076d09429.png similarity index 100% rename from pytorch/个人教程/img/cb2138c3f800c7ca4b5ae38076d09429.png rename to pytorch/其他教程/img/cb2138c3f800c7ca4b5ae38076d09429.png diff --git a/pytorch/个人教程/img/f1108a1b6941305fa7a39e488c023fe9.png b/pytorch/其他教程/img/f1108a1b6941305fa7a39e488c023fe9.png similarity index 100% rename from pytorch/个人教程/img/f1108a1b6941305fa7a39e488c023fe9.png rename to pytorch/其他教程/img/f1108a1b6941305fa7a39e488c023fe9.png diff --git a/pytorch/个人教程/img/f38868821469cadc36810cfd827511d1.png b/pytorch/其他教程/img/f38868821469cadc36810cfd827511d1.png similarity index 100% rename from pytorch/个人教程/img/f38868821469cadc36810cfd827511d1.png rename to pytorch/其他教程/img/f38868821469cadc36810cfd827511d1.png diff --git a/pytorch/个人教程/img/f790e22ee4be05f818e52467c2f13b37.png b/pytorch/其他教程/img/f790e22ee4be05f818e52467c2f13b37.png similarity index 100% rename from pytorch/个人教程/img/f790e22ee4be05f818e52467c2f13b37.png rename to pytorch/其他教程/img/f790e22ee4be05f818e52467c2f13b37.png diff --git a/pytorch/个人教程/img/febe7e5dc5d5b9a5004d15c50d3228c1.png b/pytorch/其他教程/img/febe7e5dc5d5b9a5004d15c50d3228c1.png similarity index 100% rename from pytorch/个人教程/img/febe7e5dc5d5b9a5004d15c50d3228c1.png rename to pytorch/其他教程/img/febe7e5dc5d5b9a5004d15c50d3228c1.png diff --git a/pytorch/个人教程/img/fedaa24e2fcad876c77a2038c2d8d14d.png b/pytorch/其他教程/img/fedaa24e2fcad876c77a2038c2d8d14d.png similarity index 100% rename from pytorch/个人教程/img/fedaa24e2fcad876c77a2038c2d8d14d.png rename to pytorch/其他教程/img/fedaa24e2fcad876c77a2038c2d8d14d.png diff --git a/pytorch/个人教程/img/ffeedc89cc695e61aa6e941c1c696a39.png b/pytorch/其他教程/img/ffeedc89cc695e61aa6e941c1c696a39.png similarity index 100% rename from pytorch/个人教程/img/ffeedc89cc695e61aa6e941c1c696a39.png rename to pytorch/其他教程/img/ffeedc89cc695e61aa6e941c1c696a39.png diff --git a/pytorch/官方教程/0SUMMARY.md b/pytorch/官方教程/00目录.md similarity index 100% rename from pytorch/官方教程/0SUMMARY.md rename to pytorch/官方教程/00目录.md diff --git a/pytorch/实战/.gitignore b/pytorch/殷康龙的笔记/.gitignore similarity index 100% rename from pytorch/实战/.gitignore rename to pytorch/殷康龙的笔记/.gitignore diff --git a/pytorch/实战/1.ipynb b/pytorch/殷康龙的笔记/1.ipynb similarity index 100% rename from pytorch/实战/1.ipynb rename to pytorch/殷康龙的笔记/1.ipynb diff --git a/pytorch/实战/6.ipynb b/pytorch/殷康龙的笔记/6.ipynb similarity index 100% rename from pytorch/实战/6.ipynb rename to pytorch/殷康龙的笔记/6.ipynb diff --git a/pytorch/实战/7.ipynb b/pytorch/殷康龙的笔记/7.ipynb similarity index 100% rename from pytorch/实战/7.ipynb rename to pytorch/殷康龙的笔记/7.ipynb diff --git a/pytorch/实战/8.ipynb b/pytorch/殷康龙的笔记/8.ipynb similarity index 100% rename from pytorch/实战/8.ipynb rename to pytorch/殷康龙的笔记/8.ipynb diff --git a/pytorch/实战/8nn_tutorial.ipynb b/pytorch/殷康龙的笔记/8nn_tutorial.ipynb similarity index 100% rename from pytorch/实战/8nn_tutorial.ipynb rename to pytorch/殷康龙的笔记/8nn_tutorial.ipynb diff --git a/pytorch/殷康龙的笔记/9.ipynb b/pytorch/殷康龙的笔记/9.ipynb new file mode 100644 index 00000000..e69de29b diff --git a/pytorch/实战/cifar_net.pth b/pytorch/殷康龙的笔记/cifar_net.pth similarity index 100% rename from pytorch/实战/cifar_net.pth rename to pytorch/殷康龙的笔记/cifar_net.pth diff --git a/工作日志/2021年4月19日-今日任务.md b/工作日志/2021年4月19日-今日任务.md index 2abae0b2..3ee54451 100644 --- a/工作日志/2021年4月19日-今日任务.md +++ b/工作日志/2021年4月19日-今日任务.md @@ -1,10 +1,10 @@ ## 计划 -- [ ] 看完C++面经 -- [ ] 复习一遍面试的基础知识。 -- [ ] LeetCode三道题计划正式开启。 -- [ ] tensorflow针对两个数据集的训练完成 -- [ ] 蚂蚁金服4点的面试 -- [ ] 快手6点的面试 +- [x] 看完C++面经 +- [x] 复习一遍面试的基础知识。 +- [x] ~~LeetCode三道题计划正式开启。~~ +- [x] tensorflow针对两个数据集的训练完成 +- [x] 蚂蚁金服4点的面试 +- [x] 快手6点的面试 ## 收获 \ No newline at end of file diff --git a/工作日志/2021年4月20日-今日计划.md b/工作日志/2021年4月20日-今日计划.md index e037f93f..17c6dfb7 100644 --- a/工作日志/2021年4月20日-今日计划.md +++ b/工作日志/2021年4月20日-今日计划.md @@ -2,12 +2,9 @@ > 第八周任务:接受学弟的论文工作内容。完成基础三篇论文的复现工作。 -- [ ] 打理好生活(洗衣服、洗澡、准备开始跑步)。吃饭时间会宿舍洗衣服洗澡。 -- [ ] 面试中相关问题的处理。协程?数据库性能优化?C++性能优化?服务器性能优化。 -- [ ] 晚上回宿舍洗衣服。 -- [ ] 完成之前所有的任务。跑通TensorFlow。 -- [ ] 完成pysyft框架学习 -- [ ] 完成TensorFlow federated框架的学习。 +- [x] 打理好生活(洗衣服、洗澡、准备开始跑步)。吃饭时间会宿舍洗衣服洗澡。 +- [x] 面试中相关问题的处理。协程?数据库性能优化?C++性能优化?服务器性能优化。 +- [x] 晚上回宿舍洗衣服。 ## 收获 \ No newline at end of file diff --git a/工作日志/2021年4月21日-今日计划.md b/工作日志/2021年4月21日-今日计划.md new file mode 100644 index 00000000..29ed7892 --- /dev/null +++ b/工作日志/2021年4月21日-今日计划.md @@ -0,0 +1,26 @@ +## 安排 +> 果然时隔太久会忘记之前做过什么。现在的任务应该是从上到下,完成对上一次工作的会议。我发现现在的脑子很不清醒。下去去跑步。享受跑步的过程吧。出点汗。能够让自己更加清醒的工作。 + +* 第一轮:主要处理maldroid数据集 +* 第二轮:开始andmal数据集 +* 第三轮:完成数据的生成 + +### sklearn + +- [ ] 复习教程(包括tutorial、API、code) + +### pytorch + +- [ ] 复习教程(包括tutorial、API、code) +- [ ] pytorch 数据流水线技术 +- [ ] 学习pysyft框架并应用 + + +### TensorFlow + +- [x] 复习教程(包括tutorial、API、code) +- [ ] TensorFlow 数据流水线技术 +- [ ] 学习TensorFlow框架并应用 +- [ ] 学习TensorFlow federated框架并应用 + +## 收获 \ No newline at end of file diff --git a/工作日志/2021年4月8日-简历投递记录.md b/工作日志/2021年4月8日-简历投递记录.md index 76bf35ec..68b23286 100644 --- a/工作日志/2021年4月8日-简历投递记录.md +++ b/工作日志/2021年4月8日-简历投递记录.md @@ -102,6 +102,7 @@ 5. 善于交流,有良好的团队合作精神和协调沟通能力,有一定推动能力。 * 流程 - [x] 简历投递https://campus.meituan.com/apply-record + - [ ] 2021-04-25 10:00 星期天 在线笔试。登录路径:https://meituan.acmcoder.com/cand/login?8nuw9pj4登录帐号:meituan登录密码:haurna ## 快手